mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Real marketing name of the board was recently updated so to accommodate that change renaming the board and all related to it. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			575 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			575 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Copyright (C) 2018 Synopsys, Inc. All rights reserved.
 | |
|  */
 | |
| /dts-v1/;
 | |
| 
 | |
| #include "skeleton.dtsi"
 | |
| 
 | |
| / {
 | |
| 	model = "snps,emsdp";
 | |
| 
 | |
| 	#address-cells = <1>;
 | |
| 	#size-cells = <1>;
 | |
| 
 | |
| 	aliases {
 | |
| 		console = &uart0;
 | |
| 	};
 | |
| 
 | |
| 	cpu_card {
 | |
| 		core_clk: core_clk {
 | |
| 			#clock-cells = <0>;
 | |
| 			compatible = "fixed-clock";
 | |
| 			clock-frequency = <40000000>;
 | |
| 			u-boot,dm-pre-reloc;
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	uart0: serial0@f0004000 {
 | |
| 		compatible = "snps,dw-apb-uart";
 | |
| 		clock-frequency = <100000000>;
 | |
| 		reg = <0xf0004000 0x1000>;
 | |
| 		reg-shift = <2>;
 | |
| 		reg-io-width = <4>;
 | |
| 	};
 | |
| };
 |