mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +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
		
	
	
		
			864 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			864 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Copyright (C) 2015 Purna Chandra Mandal, purna.mandal@microchip.com
 | |
|  */
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| #include "pic32mzda.dtsi"
 | |
| 
 | |
| / {
 | |
| 	model = "Microchip PIC32MZDASK";
 | |
| 	compatible = "microchip,pic32mzdask", "microchip,pic32mzda";
 | |
| 
 | |
| 	aliases {
 | |
| 		console = &uart2;
 | |
| 		serial0 = &uart2;
 | |
| 	};
 | |
| 
 | |
| 	chosen {
 | |
| 		stdout-path = "serial0:115200n8";
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &clock {
 | |
| 	microchip,refo2-frequency = <50000000>;
 | |
| 	microchip,refo4-frequency = <25000000>;
 | |
| 	microchip,refo5-frequency = <40000000>;
 | |
| 	status = "okay";
 | |
| 	bootph-all;
 | |
| };
 | |
| 
 | |
| &pinctrl {
 | |
| 	status = "okay";
 | |
| 	bootph-all;
 | |
| };
 | |
| 
 | |
| &uart2 {
 | |
| 	status = "okay";
 | |
| 	bootph-all;
 | |
| };
 | |
| 
 | |
| &sdhci {
 | |
| 	microchip,use-sdcd;
 | |
| 	status = "okay";
 | |
| };
 | |
| 
 | |
| ðernet {
 | |
| 	reset-gpios = <&gpioJ 15 0>;
 | |
| 	status = "okay";
 | |
| 	phy-mode = "rmii";
 | |
| 	phy-handle = <ðernet_phy>;
 | |
| 	ethernet_phy: lan8740_phy@0 {
 | |
| 		reg = <0>;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &usb {
 | |
| 	status = "okay";
 | |
| }; |