mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Only add basic support for CPU, PLIC UART and Timer. Reviewed-by: Wei Fu <wefu@redhat.com> Signed-off-by: Yixun Lan <dlan@gentoo.org>
		
			
				
	
	
		
			33 lines
		
	
	
		
			551 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			551 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * Copyright (C) 2023 Jisheng Zhang <jszhang@kernel.org>
 | 
						|
 */
 | 
						|
 | 
						|
#include "th1520-lichee-module-4a.dtsi"
 | 
						|
 | 
						|
/ {
 | 
						|
	model = "Sipeed Lichee Pi 4A";
 | 
						|
	compatible = "sipeed,lichee-pi-4a", "sipeed,lichee-module-4a", "thead,th1520";
 | 
						|
 | 
						|
	aliases {
 | 
						|
		gpio0 = &gpio0;
 | 
						|
		gpio1 = &gpio1;
 | 
						|
		gpio2 = &gpio2;
 | 
						|
		gpio3 = &gpio3;
 | 
						|
		serial0 = &uart0;
 | 
						|
		serial1 = &uart1;
 | 
						|
		serial2 = &uart2;
 | 
						|
		serial3 = &uart3;
 | 
						|
		serial4 = &uart4;
 | 
						|
		serial5 = &uart5;
 | 
						|
	};
 | 
						|
 | 
						|
	chosen {
 | 
						|
		stdout-path = "serial0:115200n8";
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&uart0 {
 | 
						|
	status = "okay";
 | 
						|
};
 |