blob: fd4271296f85d6ae24d596d391ffa81613171e01 [file] [log] [blame]
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +05301/*
2 * P2020 RDB Device Tree Source
3 *
Prabhakar Kushwahad2f98922011-03-25 10:17:45 +05304 * Copyright 2009-2011 Freescale Semiconductor Inc.
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +05305 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
Kumar Gala941d71c2011-11-04 00:48:57 -050012/include/ "fsl/p2020si-pre.dtsi"
Prabhakar Kushwahaeb2c5d92011-04-08 17:57:05 +053013
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +053014/ {
Prabhakar Kushwahaeb2c5d92011-04-08 17:57:05 +053015 model = "fsl,P2020RDB";
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +053016 compatible = "fsl,P2020RDB";
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +053017
18 aliases {
19 ethernet0 = &enet0;
20 ethernet1 = &enet1;
21 ethernet2 = &enet2;
22 serial0 = &serial0;
23 serial1 = &serial1;
24 pci0 = &pci0;
25 pci1 = &pci1;
26 };
27
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +053028 memory {
29 device_type = "memory";
30 };
31
Kumar Gala941d71c2011-11-04 00:48:57 -050032 lbc: localbus@ffe05000 {
33 reg = <0 0xffe05000 0 0x1000>;
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +053034
35 /* NOR and NAND Flashes */
36 ranges = <0x0 0x0 0x0 0xef000000 0x01000000
37 0x1 0x0 0x0 0xffa00000 0x00040000
38 0x2 0x0 0x0 0xffb00000 0x00020000>;
39
40 nor@0,0 {
41 #address-cells = <1>;
42 #size-cells = <1>;
43 compatible = "cfi-flash";
44 reg = <0x0 0x0 0x1000000>;
45 bank-width = <2>;
46 device-width = <1>;
47
48 partition@0 {
49 /* This location must not be altered */
50 /* 256KB for Vitesse 7385 Switch firmware */
51 reg = <0x0 0x00040000>;
52 label = "NOR (RO) Vitesse-7385 Firmware";
53 read-only;
54 };
55
56 partition@40000 {
57 /* 256KB for DTB Image */
58 reg = <0x00040000 0x00040000>;
59 label = "NOR (RO) DTB Image";
60 read-only;
61 };
62
63 partition@80000 {
64 /* 3.5 MB for Linux Kernel Image */
65 reg = <0x00080000 0x00380000>;
66 label = "NOR (RO) Linux Kernel Image";
67 read-only;
68 };
69
70 partition@400000 {
71 /* 11MB for JFFS2 based Root file System */
72 reg = <0x00400000 0x00b00000>;
73 label = "NOR (RW) JFFS2 Root File System";
74 };
75
76 partition@f00000 {
77 /* This location must not be altered */
78 /* 512KB for u-boot Bootloader Image */
79 /* 512KB for u-boot Environment Variables */
80 reg = <0x00f00000 0x00100000>;
81 label = "NOR (RO) U-Boot Image";
82 read-only;
83 };
84 };
85
86 nand@1,0 {
87 #address-cells = <1>;
88 #size-cells = <1>;
89 compatible = "fsl,p2020-fcm-nand",
90 "fsl,elbc-fcm-nand";
91 reg = <0x1 0x0 0x40000>;
92
93 partition@0 {
94 /* This location must not be altered */
95 /* 1MB for u-boot Bootloader Image */
96 reg = <0x0 0x00100000>;
97 label = "NAND (RO) U-Boot Image";
98 read-only;
99 };
100
101 partition@100000 {
102 /* 1MB for DTB Image */
103 reg = <0x00100000 0x00100000>;
104 label = "NAND (RO) DTB Image";
105 read-only;
106 };
107
108 partition@200000 {
109 /* 4MB for Linux Kernel Image */
110 reg = <0x00200000 0x00400000>;
111 label = "NAND (RO) Linux Kernel Image";
112 read-only;
113 };
114
115 partition@600000 {
116 /* 4MB for Compressed Root file System Image */
117 reg = <0x00600000 0x00400000>;
118 label = "NAND (RO) Compressed RFS Image";
119 read-only;
120 };
121
122 partition@a00000 {
123 /* 7MB for JFFS2 based Root file System */
124 reg = <0x00a00000 0x00700000>;
125 label = "NAND (RW) JFFS2 Root File System";
126 };
127
128 partition@1100000 {
129 /* 15MB for JFFS2 based Root file System */
130 reg = <0x01100000 0x00f00000>;
131 label = "NAND (RW) Writable User area";
132 };
133 };
134
135 L2switch@2,0 {
136 #address-cells = <1>;
137 #size-cells = <1>;
138 compatible = "vitesse-7385";
139 reg = <0x2 0x0 0x20000>;
140 };
141
142 };
143
Kumar Gala941d71c2011-11-04 00:48:57 -0500144 soc: soc@ffe00000 {
145 ranges = <0x0 0x0 0xffe00000 0x100000>;
146
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530147 i2c@3000 {
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530148 rtc@68 {
149 compatible = "dallas,ds1339";
150 reg = <0x68>;
151 };
152 };
153
Kumar Gala941d71c2011-11-04 00:48:57 -0500154 spi@7000 {
155 flash@0 {
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530156 #address-cells = <1>;
157 #size-cells = <1>;
Kumar Gala941d71c2011-11-04 00:48:57 -0500158 compatible = "spansion,s25sl12801";
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530159 reg = <0>;
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530160 spi-max-frequency = <50000000>;
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530161
162 partition@0 {
163 /* 512KB for u-boot Bootloader Image */
164 reg = <0x0 0x00080000>;
165 label = "SPI (RO) U-Boot Image";
166 read-only;
167 };
168
169 partition@80000 {
170 /* 512KB for DTB Image */
171 reg = <0x00080000 0x00080000>;
172 label = "SPI (RO) DTB Image";
173 read-only;
174 };
175
176 partition@100000 {
177 /* 4MB for Linux Kernel Image */
178 reg = <0x00100000 0x00400000>;
179 label = "SPI (RO) Linux Kernel Image";
180 read-only;
181 };
182
183 partition@500000 {
184 /* 4MB for Compressed RFS Image */
185 reg = <0x00500000 0x00400000>;
186 label = "SPI (RO) Compressed RFS Image";
187 read-only;
188 };
189
190 partition@900000 {
191 /* 7MB for JFFS2 based RFS */
192 reg = <0x00900000 0x00700000>;
193 label = "SPI (RW) JFFS2 RFS";
194 };
195 };
196 };
197
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530198 usb@22000 {
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530199 phy_type = "ulpi";
200 };
201
Prabhakar Kushwahaeb2c5d92011-04-08 17:57:05 +0530202 mdio@24520 {
203 phy0: ethernet-phy@0 {
Kumar Gala941d71c2011-11-04 00:48:57 -0500204 interrupts = <3 1 0 0>;
Prabhakar Kushwahaeb2c5d92011-04-08 17:57:05 +0530205 reg = <0x0>;
206 };
207 phy1: ethernet-phy@1 {
Kumar Gala941d71c2011-11-04 00:48:57 -0500208 interrupts = <3 1 0 0>;
Prabhakar Kushwahaeb2c5d92011-04-08 17:57:05 +0530209 reg = <0x1>;
210 };
211 };
212
213 mdio@25520 {
214 tbi0: tbi-phy@11 {
215 reg = <0x11>;
216 device_type = "tbi-phy";
217 };
218 };
219
220 mdio@26520 {
221 status = "disabled";
222 };
223
Kumar Gala941d71c2011-11-04 00:48:57 -0500224 ptp_clock@24e00 {
Richard Cochranc78275f2011-04-22 12:03:54 +0200225 fsl,tclk-period = <5>;
226 fsl,tmr-prsc = <200>;
227 fsl,tmr-add = <0xCCCCCCCD>;
228 fsl,tmr-fiper1 = <0x3B9AC9FB>;
229 fsl,tmr-fiper2 = <0x0001869B>;
230 fsl,max-adj = <249999999>;
231 };
232
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530233 enet0: ethernet@24000 {
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530234 fixed-link = <1 1 1000 0 0>;
235 phy-connection-type = "rgmii-id";
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530236 };
237
238 enet1: ethernet@25000 {
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530239 tbi-handle = <&tbi0>;
240 phy-handle = <&phy0>;
241 phy-connection-type = "sgmii";
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530242 };
243
244 enet2: ethernet@26000 {
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530245 phy-handle = <&phy1>;
246 phy-connection-type = "rgmii-id";
247 };
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530248 };
249
Prabhakar Kushwahaeb2c5d92011-04-08 17:57:05 +0530250 pci0: pcie@ffe08000 {
Kumar Gala941d71c2011-11-04 00:48:57 -0500251 reg = <0 0xffe08000 0 0x1000>;
Prabhakar Kushwahaeb2c5d92011-04-08 17:57:05 +0530252 status = "disabled";
253 };
254
255 pci1: pcie@ffe09000 {
Kumar Gala941d71c2011-11-04 00:48:57 -0500256 reg = <0 0xffe09000 0 0x1000>;
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530257 ranges = <0x2000000 0x0 0xa0000000 0 0xa0000000 0x0 0x20000000
Prabhakar Kushwahad2f98922011-03-25 10:17:45 +0530258 0x1000000 0x0 0x00000000 0 0xffc10000 0x0 0x10000>;
Kumar Gala941d71c2011-11-04 00:48:57 -0500259 pcie@0 {
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530260 ranges = <0x2000000 0x0 0xa0000000
261 0x2000000 0x0 0xa0000000
262 0x0 0x20000000
263
264 0x1000000 0x0 0x0
265 0x1000000 0x0 0x0
266 0x0 0x100000>;
267 };
268 };
269
Prabhakar Kushwahaeb2c5d92011-04-08 17:57:05 +0530270 pci2: pcie@ffe0a000 {
Kumar Gala941d71c2011-11-04 00:48:57 -0500271 reg = <0 0xffe0a000 0 0x1000>;
Prabhakar Kushwahad2f98922011-03-25 10:17:45 +0530272 ranges = <0x2000000 0x0 0x80000000 0 0x80000000 0x0 0x20000000
273 0x1000000 0x0 0x00000000 0 0xffc00000 0x0 0x10000>;
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530274 pcie@0 {
Prabhakar Kushwahad2f98922011-03-25 10:17:45 +0530275 ranges = <0x2000000 0x0 0x80000000
276 0x2000000 0x0 0x80000000
Poonam Aggrwalfb8e3e12009-08-07 21:05:16 +0530277 0x0 0x20000000
278
279 0x1000000 0x0 0x0
280 0x1000000 0x0 0x0
281 0x0 0x100000>;
282 };
283 };
284};
Kumar Gala941d71c2011-11-04 00:48:57 -0500285
286/include/ "fsl/p2020si-post.dtsi"