1// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) 2/* 3 * Copyright 2021-2024 NXP 4 * 5 * NXP S32G3 Reference Design Board 3 (S32G-VNP-RDB3) 6 */ 7 8/dts-v1/; 9 10#include "s32g3.dtsi" 11 12/ { 13 model = "NXP S32G3 Reference Design Board 3 (S32G-VNP-RDB3)"; 14 compatible = "nxp,s32g399a-rdb3", "nxp,s32g3"; 15 16 aliases { 17 mmc0 = &usdhc0; 18 serial0 = &uart0; 19 serial1 = &uart1; 20 }; 21 22 chosen { 23 stdout-path = "serial0:115200n8"; 24 }; 25 26 /* 4GiB RAM */ 27 memory@80000000 { 28 device_type = "memory"; 29 reg = <0x0 0x80000000 0 0x80000000>, 30 <0x8 0x80000000 0 0x80000000>; 31 }; 32}; 33 34&uart0 { 35 status = "okay"; 36}; 37 38&uart1 { 39 status = "okay"; 40}; 41 42&usdhc0 { 43 pinctrl-names = "default", "state_100mhz", "state_200mhz"; 44 pinctrl-0 = <&pinctrl_usdhc0>; 45 pinctrl-1 = <&pinctrl_usdhc0_100mhz>; 46 pinctrl-2 = <&pinctrl_usdhc0_200mhz>; 47 bus-width = <8>; 48 disable-wp; 49 status = "okay"; 50}; 51