mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +01:00 
			
		
		
		
	Synopsys DesignWare ARC EM Development Kit (ARC EMDK) is an FPGA-based development platform from Synopsys aimed to speed-up development of software for ARC EM cores and entire subsystems based on ARC EM like Data Fusion, Secure and Sensor & Control subsystems. U-Boot is supposed to be used as a primary bootloader on EMDK allowing users to easily load and start their application from micro-SD card. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			551 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			551 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Copyright (C) 2018 Synopsys, Inc. All rights reserved.
 | |
|  */
 | |
| /dts-v1/;
 | |
| 
 | |
| #include "skeleton.dtsi"
 | |
| 
 | |
| / {
 | |
| 	#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>;
 | |
| 	};
 | |
| };
 |