mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Now that Linux has accepted these tags, move the device tree files in U-Boot over to use them. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			45 lines
		
	
	
		
			559 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			559 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * U-Boot addition to handle Dragonboard 820c pins
 | 
						|
 *
 | 
						|
 * (C) Copyright 2017 Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
 | 
						|
 */
 | 
						|
 | 
						|
/ {
 | 
						|
	smem {
 | 
						|
		bootph-all;
 | 
						|
	};
 | 
						|
 | 
						|
	soc {
 | 
						|
		bootph-all;
 | 
						|
 | 
						|
		pinctrl@1010000 {
 | 
						|
			bootph-all;
 | 
						|
 | 
						|
			uart {
 | 
						|
				bootph-all;
 | 
						|
			};
 | 
						|
		};
 | 
						|
 | 
						|
		clock-controller@300000 {
 | 
						|
			bootph-all;
 | 
						|
		};
 | 
						|
 | 
						|
		serial@75b0000 {
 | 
						|
			bootph-all;
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&pm8994_pon {
 | 
						|
	key_vol_down {
 | 
						|
		gpios = <&pm8994_pon 1 0>;
 | 
						|
		label = "key_vol_down";
 | 
						|
	};
 | 
						|
 | 
						|
	key_power {
 | 
						|
		gpios = <&pm8994_pon 0 0>;
 | 
						|
		label = "key_power";
 | 
						|
	};
 | 
						|
};
 |