blob: 9d674819876e7f565907c58d042dfc9e38b96264 [file] [log] [blame]
Tom Rini762f85b2024-07-20 11:15:10 -06001// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
2/*
3 * Copyright 2021-2023 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 bus-width = <8>;
44 status = "okay";
45};