[ppc40x] update dts of Magicbox V2 for 2.6.28
[openwrt.git] / target / linux / ppc40x / patches / 006-magicboxv2.patch
1 --- /dev/null
2 +++ b/arch/powerpc/boot/cuboot-magicboxv2.c
3 @@ -0,0 +1,69 @@
4 +/*
5 + * Old U-boot compatibility for Magicbox v2
6 + *
7 + * Author: Imre Kaloz <kaloz@openwrt.org>
8 + *         Gabor Juhos <juhosg@openwrt.org>
9 + *
10 + * This program is free software; you can redistribute it and/or modify it
11 + * under the terms of the GNU General Public License version 2 as published
12 + * by the Free Software Foundation.
13 + */
14 +
15 +#include "ops.h"
16 +#include "io.h"
17 +#include "dcr.h"
18 +#include "stdio.h"
19 +#include "4xx.h"
20 +#include "44x.h"
21 +#include "cuboot.h"
22 +
23 +#define TARGET_4xx
24 +#define TARGET_405EP
25 +#include "ppcboot.h"
26 +
27 +static bd_t bd;
28 +
29 +static void fixup_cf_card(void)
30 +{
31 +#define DCRN_CPC0_PCI_BASE     0xf9
32 +#define CF_CS0_BASE    0xff100000
33 +#define CF_CS1_BASE    0xff200000
34 +
35 +       /* Turn on PerWE instead of PCIsomething */
36 +       mtdcr(DCRN_CPC0_PCI_BASE,
37 +             mfdcr(DCRN_CPC0_PCI_BASE) | (0x80000000L >> 27));
38 +
39 +       /* PerCS1 (CF's CS0): base 0xff100000, 16-bit, rw */
40 +       mtdcr(DCRN_EBC0_CFGADDR, EBC_B1CR);
41 +       mtdcr(DCRN_EBC0_CFGDATA, CF_CS0_BASE | EBC_BXCR_BU_RW | EBC_BXCR_BW_16);
42 +       mtdcr(DCRN_EBC0_CFGADDR, EBC_B1AP);
43 +       mtdcr(DCRN_EBC0_CFGDATA, 0x080bd800);
44 +
45 +       /* PerCS2 (CF's CS1): base 0xff200000, 16-bit, rw */
46 +       mtdcr(DCRN_EBC0_CFGADDR, EBC_B2CR);
47 +       mtdcr(DCRN_EBC0_CFGDATA, CF_CS1_BASE | EBC_BXCR_BU_RW | EBC_BXCR_BW_16);
48 +       mtdcr(DCRN_EBC0_CFGADDR, EBC_B2AP);
49 +       mtdcr(DCRN_EBC0_CFGDATA, 0x080bd800);
50 +
51 +#undef DCRN_CPC0_PCI_BASE
52 +#undef CF_CS0_BASE
53 +#undef CF_CS1_BASE
54 +}
55 +
56 +static void magicboxv2_fixups(void)
57 +{
58 +       fixup_cf_card();
59 +       ibm405ep_fixup_clocks(25000000);
60 +       ibm4xx_sdram_fixup_memsize();
61 +       dt_fixup_mac_addresses(&bd.bi_enetaddr, &bd.bi_enet1addr);
62 +}
63 +
64 +void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
65 +               unsigned long r6, unsigned long r7)
66 +{
67 +       CUBOOT_INIT();
68 +       platform_ops.fixups = magicboxv2_fixups;
69 +       platform_ops.exit = ibm40x_dbcr_reset;
70 +       fdt_init(_dtb_start);
71 +       serial_console_init();
72 +}
73 --- /dev/null
74 +++ b/arch/powerpc/boot/dts/magicboxv2.dts
75 @@ -0,0 +1,279 @@
76 +/*
77 + * Device Tree Source for Magicbox v2
78 + *
79 + * Copyright 2008 Imre Kaloz <kaloz@openwrt.org>
80 + * Copyright 2009 Gabor Juhos <juhosg@openwrt.org>
81 + *
82 + * Based on walnut.dts
83 + *
84 + * This file is licensed under the terms of the GNU General Public
85 + * License version 2.  This program is licensed "as is" without
86 + * any warranty of any kind, whether express or implied.
87 + */
88 +
89 +/dts-v1/;
90 +
91 +/ {
92 +       #address-cells = <1>;
93 +       #size-cells = <1>;
94 +       model = "magicboxv2";
95 +       compatible = "magicboxv2";
96 +       dcr-parent = <&{/cpus/cpu@0}>;
97 +
98 +       aliases {
99 +               ethernet0 = &EMAC0;
100 +               ethernet1 = &EMAC1;
101 +               serial0 = &UART0;
102 +               serial1 = &UART1;
103 +       };
104 +
105 +       cpus {
106 +               #address-cells = <1>;
107 +               #size-cells = <0>;
108 +
109 +               cpu@0 {
110 +                       device_type = "cpu";
111 +                       model = "PowerPC,405EP";
112 +                       reg = <0x00000000>;
113 +                       clock-frequency = <0xbebc200>; /* Filled in by zImage */
114 +                       timebase-frequency = <0>; /* Filled in by zImage */
115 +                       i-cache-line-size = <20>;
116 +                       d-cache-line-size = <20>;
117 +                       i-cache-size = <4000>;
118 +                       d-cache-size = <4000>;
119 +                       dcr-controller;
120 +                       dcr-access-method = "native";
121 +               };
122 +       };
123 +
124 +       memory {
125 +               device_type = "memory";
126 +               reg = <0x00000000 0x00000000>; /* Filled in by zImage */
127 +       };
128 +
129 +       UIC0: interrupt-controller {
130 +               compatible = "ibm,uic";
131 +               interrupt-controller;
132 +               cell-index = <0>;
133 +               dcr-reg = <0x0c0 0x009>;
134 +               #address-cells = <0>;
135 +               #size-cells = <0>;
136 +               #interrupt-cells = <2>;
137 +       };
138 +
139 +       plb {
140 +               compatible = "ibm,plb3";
141 +               #address-cells = <1>;
142 +               #size-cells = <1>;
143 +               ranges;
144 +               clock-frequency = <0>; /* Filled in by zImage */
145 +
146 +               SDRAM0: memory-controller {
147 +                       compatible = "ibm,sdram-405ep";
148 +                       dcr-reg = <0x010 0x002>;
149 +               };
150 +
151 +               MAL: mcmal {
152 +                       compatible = "ibm,mcmal-405ep", "ibm,mcmal";
153 +                       dcr-reg = <0x180 0x062>;
154 +                       num-tx-chans = <4>;
155 +                       num-rx-chans = <2>;
156 +                       interrupt-parent = <&UIC0>;
157 +                       interrupts = <
158 +                               0xb 0x4 /* TXEOB */
159 +                               0xc 0x4 /* RXEOB */
160 +                               0xa 0x4 /* SERR */
161 +                               0xd 0x4 /* TXDE */
162 +                               0xe 0x4 /* RXDE */>;
163 +               };
164 +
165 +               POB0: opb {
166 +                       compatible = "ibm,opb-405ep", "ibm,opb";
167 +                       #address-cells = <1>;
168 +                       #size-cells = <1>;
169 +                       ranges = <0xef600000 0xef600000 0x00a00000>;
170 +                       dcr-reg = <0x0a0 0x005>;
171 +                       clock-frequency = <0>; /* Filled in by zImage */
172 +
173 +                       UART0: serial@ef600300 {
174 +                               device_type = "serial";
175 +                               compatible = "ns16550";
176 +                               reg = <0xef600300 0x00000008>;
177 +                               virtual-reg = <0xef600300>;
178 +                               clock-frequency = <0>; /* Filled in by zImage */
179 +                               current-speed = <115200>;
180 +                               interrupt-parent = <&UIC0>;
181 +                               interrupts = <0x0 0x4>;
182 +                       };
183 +
184 +                       UART1: serial@ef600400 {
185 +                               device_type = "serial";
186 +                               compatible = "ns16550";
187 +                               reg = <0xef600400 0x00000008>;
188 +                               virtual-reg = <0xef600400>;
189 +                               clock-frequency = <0>; /* Filled in by zImage */
190 +                               current-speed = <115200>;
191 +                               interrupt-parent = <&UIC0>;
192 +                               interrupts = <0x1 0x4>;
193 +                       };
194 +
195 +                       IIC: i2c@ef600500 {
196 +                               compatible = "ibm,iic-405ep", "ibm,iic";
197 +                               reg = <0xef600500 0x00000011>;
198 +                               interrupt-parent = <&UIC0>;
199 +                               interrupts = <0x2 0x4>;
200 +
201 +                               dtt@48 {
202 +                                       compatible = "national,lm75";
203 +                                       reg = <0x48>;
204 +                               };
205 +
206 +                               eeprom@50 {
207 +                                       compatible = "at24,24c16";
208 +                                       reg = <0x50>;
209 +                               };
210 +                       };
211 +
212 +                       GPIO0: gpio-controller@ef600700 {
213 +                               compatible = "ibm,ppc4xx-gpio";
214 +                               reg = <0xef600700 0x00000020>;
215 +                               #gpio-cells = <2>;
216 +                               gpio-controller;
217 +                       };
218 +
219 +                       EMAC0: ethernet@ef600800 {
220 +                               linux,network-index = <0x0>;
221 +                               device_type = "network";
222 +                               compatible = "ibm,emac-405ep", "ibm,emac";
223 +                               interrupt-parent = <&UIC0>;
224 +                               interrupts = <
225 +                                       0xf 0x4 /* Ethernet */
226 +                                       0x9 0x4 /* Ethernet Wake Up */>;
227 +                               local-mac-address = [000000000000]; /* Filled in by zImage */
228 +                               reg = <0xef600800 0x00000070>;
229 +                               mal-device = <&MAL>;
230 +                               mal-tx-channel = <0>;
231 +                               mal-rx-channel = <0>;
232 +                               cell-index = <0>;
233 +                               max-frame-size = <0x5dc>;
234 +                               rx-fifo-size = <0x1000>;
235 +                               tx-fifo-size = <0x800>;
236 +                               phy-mode = "mii";
237 +                               phy-map = <0x00000000>;
238 +                       };
239 +
240 +                       EMAC1: ethernet@ef600900 {
241 +                               linux,network-index = <0x1>;
242 +                               device_type = "network";
243 +                               compatible = "ibm,emac-405ep", "ibm,emac";
244 +                               interrupt-parent = <&UIC0>;
245 +                               interrupts = <
246 +                                       0x11 0x4 /* Ethernet */
247 +                                       0x09 0x4 /* Ethernet Wake Up */>;
248 +                               local-mac-address = [000000000000]; /* Filled in by zImage */
249 +                               reg = <0xef600900 0x00000070>;
250 +                               mal-device = <&MAL>;
251 +                               mal-tx-channel = <2>;
252 +                               mal-rx-channel = <1>;
253 +                               cell-index = <1>;
254 +                               max-frame-size = <0x5dc>;
255 +                               rx-fifo-size = <0x1000>;
256 +                               tx-fifo-size = <0x800>;
257 +                               mdio-device = <&EMAC0>;
258 +                               phy-mode = "mii";
259 +                               phy-map = <0x00000001>;
260 +                       };
261 +
262 +                       leds {
263 +                               compatible = "gpio-leds";
264 +                               user {
265 +                                       label = "magicbox:red:user";
266 +                                       gpios = <&GPIO0 2 1>;
267 +                               };
268 +                       };
269 +               };
270 +
271 +               EBC0: ebc {
272 +                       compatible = "ibm,ebc-405ep", "ibm,ebc";
273 +                       dcr-reg = <0x012 0x002>;
274 +                       #address-cells = <2>;
275 +                       #size-cells = <1>;
276 +                       /* The ranges property is supplied by the bootwrapper
277 +                        * and is based on the firmware's configuration of the
278 +                        * EBC bridge
279 +                        */
280 +                       clock-frequency = <0>; /* Filled in by zImage */
281 +
282 +                       cf_card@ff100000 {
283 +                               compatible = "magicbox-cf";
284 +                               reg = <0x00000000 0xff100000 0x00001000
285 +                                      0x00000000 0xff200000 0x00001000>;
286 +                               interrupt-parent = <&UIC0>;
287 +                               interrupts = <0x19 0x1 /* IRQ_TYPE_EDGE_RISING */ >;
288 +                       };
289 +
290 +                       nor_flash@ffc00000 {
291 +                               compatible = "cfi-flash";
292 +                               bank-width = <2>;
293 +                               reg = <0x00000000 0xffc00000 0x00400000>;
294 +                               #address-cells = <1>;
295 +                               #size-cells = <1>;
296 +                               partition@0 {
297 +                                       label = "linux";
298 +                                       reg = <0x0 0x120000>;
299 +                               };
300 +                               partition@120000 {
301 +                                       label = "rootfs";
302 +                                       reg = <0x120000 0x2a0000>;
303 +                               };
304 +                               partition@3c0000 {
305 +                                       label = "u-boot";
306 +                                       reg = <0x3c0000 0x30000>;
307 +                                       read-only;
308 +                               };
309 +                       };
310 +               };
311 +
312 +               PCI0: pci@ec000000 {
313 +                       device_type = "pci";
314 +                       #interrupt-cells = <1>;
315 +                       #size-cells = <2>;
316 +                       #address-cells = <3>;
317 +                       compatible = "ibm,plb405ep-pci", "ibm,plb-pci";
318 +                       primary;
319 +                       reg = <0xeec00000 0x00000008    /* Config space access */
320 +                              0xeed80000 0x00000004    /* IACK */
321 +                              0xeed80000 0x00000004    /* Special cycle */
322 +                              0xef480000 0x00000040>;  /* Internal registers */
323 +
324 +                       /* Outbound ranges, one memory and one IO,
325 +                        * later cannot be changed. Chip supports a second
326 +                        * IO range but we don't use it for now
327 +                        */
328 +                       ranges = <0x02000000 0x00000000 0x80000000 0x80000000 0x00000000 0x20000000
329 +                                 0x01000000 0x00000000 0x00000000 0xe8000000 0x00000000 0x00010000>;
330 +
331 +                       /* Inbound 2GB range starting at 0 */
332 +                       dma-ranges = <0x42000000 0x0 0x0 0x0 0x0 0x80000000>;
333 +
334 +                       interrupt-map-mask = <0xf800 0x0 0x0 0x0>;
335 +                       interrupt-map = <
336 +                               /* IDSEL 1 */
337 +                               0x800 0x0 0x0 0x0 &UIC0 0x1c 0x8
338 +
339 +                               /* IDSEL 2 */
340 +                               0x1000 0x0 0x0 0x0 &UIC0 0x1d 0x8
341 +
342 +                               /* IDSEL 3 */
343 +                               0x1800 0x0 0x0 0x0 &UIC0 0x1e 0x8
344 +
345 +                               /* IDSEL 4 */
346 +                               0x2000 0x0 0x0 0x0 &UIC0 0x1f 0x8
347 +                       >;
348 +               };
349 +       };
350 +
351 +       chosen {
352 +               linux,stdout-path = "/plb/opb/serial@ef600300";
353 +       };
354 +};
355 --- a/arch/powerpc/boot/Makefile
356 +++ b/arch/powerpc/boot/Makefile
357 @@ -70,7 +70,7 @@ src-plat := of.c cuboot-52xx.c cuboot-82
358                 cuboot-katmai.c cuboot-rainier.c redboot-8xx.c ep8248e.c \
359                 cuboot-warp.c cuboot-85xx-cpm2.c cuboot-yosemite.c simpleboot.c \
360                 virtex405-head.S virtex.c redboot-83xx.c cuboot-sam440ep.c \
361 -               cuboot-acadia.c cuboot-magicboxv1.c
362 +               cuboot-acadia.c cuboot-magicboxv1.c cuboot-magicboxv2.c
363  src-boot := $(src-wlib) $(src-plat) empty.c
364  
365  src-boot := $(addprefix $(obj)/, $(src-boot))
366 @@ -215,6 +215,7 @@ image-$(CONFIG_EP405)                       += dtbImage.ep40
367  image-$(CONFIG_WALNUT)                 += treeImage.walnut
368  image-$(CONFIG_ACADIA)                 += cuImage.acadia
369  image-$(CONFIG_MAGICBOXV1)             += cuImage.magicboxv1
370 +image-$(CONFIG_MAGICBOXV2)             += cuImage.magicboxv2
371  
372  # Board ports in arch/powerpc/platform/44x/Kconfig
373  image-$(CONFIG_EBONY)                  += treeImage.ebony cuImage.ebony
374 --- a/arch/powerpc/platforms/40x/Kconfig
375 +++ b/arch/powerpc/platforms/40x/Kconfig
376 @@ -59,6 +59,16 @@ config MAGICBOXV1
377         help
378           This option enables support for the Magicbox v1 board.
379  
380 +config MAGICBOXV2
381 +       bool "Magicbox v2"
382 +       depends on 40x
383 +       default n
384 +       select PPC40x_SIMPLE
385 +       select 405EP
386 +       select PCI
387 +       help
388 +         This option enables support for the Magicbox v2 board.
389 +
390  config MAKALU
391         bool "Makalu"
392         depends on 40x
393 --- a/arch/powerpc/platforms/40x/ppc40x_simple.c
394 +++ b/arch/powerpc/platforms/40x/ppc40x_simple.c
395 @@ -52,7 +52,8 @@ machine_device_initcall(ppc40x_simple, p
396   */
397  static char *board[] __initdata = {
398         "amcc,acadia",
399 -       "magicboxv1"
400 +       "magicboxv1",
401 +       "magicboxv2",
402  };
403  
404  static int __init ppc40x_probe(void)