blob: ad8169afd4e004e4fb92355b333f8e6999d05629 [file] [log] [blame]
Simon Glass92c8ccc2012-02-27 10:52:39 +00001/dts-v1/;
2
3/memreserve/ 0x1c000000 0x04000000;
4/include/ ARCH_CPU_DTS
5
6/ {
7 model = "NVIDIA Seaboard";
8 compatible = "nvidia,seaboard", "nvidia,tegra20";
9
10 chosen {
11 bootargs = "vmalloc=192M video=tegrafb console=ttyS0,115200n8 root=/dev/mmcblk1p3 rw rootwait";
12 };
13
Simon Glass0cb83172012-02-27 10:52:46 +000014 aliases {
15 /* This defines the order of our USB ports */
16 usb0 = "/usb@c5008000";
17 usb1 = "/usb@c5000000";
18 };
19
Simon Glass92c8ccc2012-02-27 10:52:39 +000020 memory {
21 device_type = "memory";
22 reg = < 0x00000000 0x40000000 >;
23 };
24
Simon Glass975a0f92012-02-28 08:07:49 +000025 /* This is not used in U-Boot, but is expected to be in kernel .dts */
26 i2c@7000d000 {
27 pmic@34 {
28 compatible = "ti,tps6586x";
29 reg = <0x34>;
30
31 clk_32k: clock {
32 compatible = "fixed-clock";
33 /*
34 * leave out for now due to CPP:
35 * #clock-cells = <0>;
36 */
37 clock-frequency = <32768>;
38 };
39 };
40 };
41
42 clocks {
43 osc {
44 clock-frequency = <12000000>;
45 };
46 };
47
48 clock@60006000 {
49 clocks = <&clk_32k &osc>;
50 };
51
Simon Glass92c8ccc2012-02-27 10:52:39 +000052 serial@70006300 {
53 clock-frequency = < 216000000 >;
54 };
55
56 sdhci@c8000400 {
57 cd-gpios = <&gpio 69 0>; /* gpio PI5 */
58 wp-gpios = <&gpio 57 0>; /* gpio PH1 */
59 power-gpios = <&gpio 70 0>; /* gpio PI6 */
60 };
61
62 sdhci@c8000600 {
63 support-8bit;
64 };
65
66 usb@c5000000 {
67 nvidia,vbus-gpio = <&gpio 24 0>; /* PD0 */
Simon Glass0cb83172012-02-27 10:52:46 +000068 dr_mode = "otg";
69 };
70
71 usb@c5004000 {
72 status = "disabled";
Simon Glass92c8ccc2012-02-27 10:52:39 +000073 };
74};