46 lines
		
	
	
		
			702 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			702 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
 | 
						|
/*
 | 
						|
 * Copyright (c) 2021 SUSE LLC
 | 
						|
 * Copyright 2019-2021, 2024 NXP
 | 
						|
 */
 | 
						|
 | 
						|
/dts-v1/;
 | 
						|
 | 
						|
#include "s32g2.dtsi"
 | 
						|
 | 
						|
/ {
 | 
						|
	model = "NXP S32G2 Reference Design Board 2 (S32G-VNP-RDB2)";
 | 
						|
	compatible = "nxp,s32g274a-rdb2", "nxp,s32g2";
 | 
						|
 | 
						|
	aliases {
 | 
						|
		serial0 = &uart0;
 | 
						|
		serial1 = &uart1;
 | 
						|
	};
 | 
						|
 | 
						|
	chosen {
 | 
						|
		stdout-path = "serial0:115200n8";
 | 
						|
	};
 | 
						|
 | 
						|
	/* 4GiB RAM */
 | 
						|
	memory@80000000 {
 | 
						|
		device_type = "memory";
 | 
						|
		reg = <0x0 0x80000000 0 0x80000000>,
 | 
						|
		      <0x8 0x80000000 0 0x80000000>;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
/* UART (J2) to Micro USB port */
 | 
						|
&uart0 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
/* UART (J1) to Micro USB port */
 | 
						|
&uart1 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&usdhc0 {
 | 
						|
	disable-wp;
 | 
						|
	status = "okay";
 | 
						|
};
 |