1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| // SPDX-License-Identifier: GPL-2.0
| /dts-v1/;
|
| #include "tegra234.dtsi"
|
| / {
| model = "NVIDIA Tegra234 VDK";
| compatible = "nvidia,tegra234-vdk", "nvidia,tegra234";
|
| aliases {
| mmc3 = "/bus@0/mmc@3460000";
| serial0 = &uarta;
| };
|
| chosen {
| bootargs = "console=ttyS0,115200n8 earlycon=uart8250,mmio32,0x03100000";
| stdout-path = "serial0:115200n8";
| };
|
| bus@0 {
| serial@3100000 {
| status = "okay";
| };
|
| mmc@3460000 {
| status = "okay";
| bus-width = <8>;
| non-removable;
| only-1-8-v;
| };
|
| rtc@c2a0000 {
| status = "okay";
| };
|
| pmc@c360000 {
| nvidia,invert-interrupt;
| };
| };
| };
|
|