mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01: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>
		
			
				
	
	
		
			59 lines
		
	
	
		
			716 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			716 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: (GPL-2.0+ OR X11)
 | |
| /*
 | |
|  * U-Boot additions
 | |
|  *
 | |
|  * Copyright (C) 2015 Marek Vasut <marex@denx.de>
 | |
|  * Copyright (c) 2018 Simon Goldschmidt
 | |
|  */
 | |
| 
 | |
| #include "socfpga-common-u-boot.dtsi"
 | |
| 
 | |
| /{
 | |
| 	aliases {
 | |
| 		spi0 = "/soc/spi@ff705000";
 | |
| 		udc0 = &usb1;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &mmc {
 | |
| 	status = "disabled";
 | |
| };
 | |
| 
 | |
| &qspi {
 | |
| 	bootph-all;
 | |
| 
 | |
| 	n25q128@0 {
 | |
| 		compatible = "n25q128", "jedec,spi-nor";
 | |
| 		bootph-all;
 | |
| 	};
 | |
| 	n25q00@1 {
 | |
| 		compatible = "n25q00", "jedec,spi-nor";
 | |
| 		bootph-all;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &uart0 {
 | |
| 	clock-frequency = <100000000>;
 | |
| 	bootph-all;
 | |
| };
 | |
| 
 | |
| &uart1 {
 | |
| 	clock-frequency = <100000000>;
 | |
| };
 | |
| 
 | |
| &porta {
 | |
| 	bank-name = "porta";
 | |
| };
 | |
| 
 | |
| &portb {
 | |
| 	bank-name = "portb";
 | |
| };
 | |
| 
 | |
| &portc {
 | |
| 	bank-name = "portc";
 | |
| };
 | |
| 
 | |
| &watchdog0 {
 | |
| 	bootph-all;
 | |
| };
 |