mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Synchronize the Linux Device Tree for Amlogic Meson GX boards from Linux 4.17.0 This will enable USB on Amlogic Meson GXL Boards like Khadas VIM, P212 or LibreTech-CC. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			375 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			375 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
 | 
						|
/*
 | 
						|
 * Copyright (c) 2016 Endless Computers, Inc.
 | 
						|
 * Author: Carlo Caione <carlo@endlessm.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include "meson-gxl.dtsi"
 | 
						|
#include "meson-gxl-mali.dtsi"
 | 
						|
 | 
						|
/ {
 | 
						|
	compatible = "amlogic,s905x", "amlogic,meson-gxl";
 | 
						|
};
 | 
						|
 | 
						|
/* S905X only has access to its internal PHY */
 | 
						|
ðmac {
 | 
						|
	phy-mode = "rmii";
 | 
						|
	phy-handle = <&internal_phy>;
 | 
						|
};
 |