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>
		
			
				
	
	
		
			49 lines
		
	
	
		
			645 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			645 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * Copyright 2019
 | 
						|
 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:     GPL-2.0+ or X11
 | 
						|
 */
 | 
						|
 | 
						|
/*
 | 
						|
 * The minimal augmentation DTS U-Boot file to allow eMMC driver
 | 
						|
 * configuration in SPL for falcon boot.
 | 
						|
 */
 | 
						|
#include "imx28-u-boot.dtsi"
 | 
						|
/ {
 | 
						|
	apb@80000000 {
 | 
						|
		bootph-pre-ram;
 | 
						|
 | 
						|
		apbh@80000000 {
 | 
						|
			bootph-pre-ram;
 | 
						|
		};
 | 
						|
 | 
						|
		apbx@80040000 {
 | 
						|
			bootph-pre-ram;
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&clks {
 | 
						|
	bootph-pre-ram;
 | 
						|
};
 | 
						|
 | 
						|
&gpio0 {
 | 
						|
	bootph-pre-ram;
 | 
						|
};
 | 
						|
 | 
						|
&pinctrl {
 | 
						|
	bootph-pre-ram;
 | 
						|
};
 | 
						|
 | 
						|
&ssp0 {
 | 
						|
	bootph-pre-ram;
 | 
						|
};
 | 
						|
 | 
						|
&ssp3 {
 | 
						|
	num-cs = <2>;
 | 
						|
	spi-max-frequency = <40000000>;
 | 
						|
	bootph-pre-ram;
 | 
						|
};
 |