mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 18:35:42 +01:00 
			
		
		
		
	As the ownership is now Hitachi Power Grids, change the license string and adapt the compatible string in DTS files. For kmeter1.dts we change it to "keymile,KMETER1" for now, as this is then compliant with what is submitted to the linux kernel. All other boards don't have a upstreamed version in linux mainline. Signed-off-by: Holger Brunck <holger.brunck@hitachi-powergrids.com> CC: Valentin Longchamp <valentin.longchamp@hitachi-powergrids.com> CC: Heiko Schocher <hs@denx.de> CC: Marek Vasut <marex@denx.de> CC: Tom Rini <trini@konsulko.com> Reviewed-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			68 lines
		
	
	
		
			916 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			916 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Hitachi Power Grids 8321 U-Boot specific Device Tree Source parts
 | |
|  *
 | |
|  * Copyright (C) 2020 Heiko Schocher <hs@denx.de>
 | |
|  *
 | |
|  */
 | |
| 
 | |
| / {
 | |
| 	cpus {
 | |
| 		u-boot,dm-pre-reloc;
 | |
| 		PowerPC,8321@0 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	chosen {
 | |
| 		stdout-path = &serial0;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &enet_piggy2 {
 | |
| 	status = "okay";
 | |
| };
 | |
| 
 | |
| &qe {
 | |
| 	compatible = "fsl,qe", "simple-bus";
 | |
| };
 | |
| 
 | |
| &serial0 {
 | |
| 	clock-frequency = <132000000>;
 | |
| 	u-boot,dm-pre-reloc;
 | |
| };
 | |
| 
 | |
| &soc {
 | |
| 	u-boot,dm-pre-reloc;
 | |
| 
 | |
| 	par_io@1400 {
 | |
| 		compatible = "fsl,mpc8360-par_io";
 | |
| 		u-boot,dm-pre-reloc;
 | |
| 
 | |
| 		serial_pin@0 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 		ucc_pin@0 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 		ucc_pin@1 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 		ucc_pin@3 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 		ucc_pin@4 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 		ucc_pin@5 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 		ucc_pin@6 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 		ucc_pin@7 {
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 	};
 | |
| };
 |