merge 2.6.28 patches
[librecmc/librecmc.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,259 @@
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 +
202 +                       GPIO: gpio@ef600700 {
203 +                               compatible = "ibm,gpio-405ep";
204 +                               reg = <0xef600700 0x00000020>;
205 +                       };
206 +
207 +                       EMAC0: ethernet@ef600800 {
208 +                               linux,network-index = <0x0>;
209 +                               device_type = "network";
210 +                               compatible = "ibm,emac-405ep", "ibm,emac";
211 +                               interrupt-parent = <&UIC0>;
212 +                               interrupts = <
213 +                                       0xf 0x4 /* Ethernet */
214 +                                       0x9 0x4 /* Ethernet Wake Up */>;
215 +                               local-mac-address = [000000000000]; /* Filled in by zImage */
216 +                               reg = <0xef600800 0x00000070>;
217 +                               mal-device = <&MAL>;
218 +                               mal-tx-channel = <0>;
219 +                               mal-rx-channel = <0>;
220 +                               cell-index = <0>;
221 +                               max-frame-size = <0x5dc>;
222 +                               rx-fifo-size = <0x1000>;
223 +                               tx-fifo-size = <0x800>;
224 +                               phy-mode = "mii";
225 +                               phy-map = <0x00000000>;
226 +                       };
227 +                       EMAC1: ethernet@ef600900 {
228 +                               linux,network-index = <0x1>;
229 +                               device_type = "network";
230 +                               compatible = "ibm,emac-405ep", "ibm,emac";
231 +                               interrupt-parent = <&UIC0>;
232 +                               interrupts = <
233 +                                       0x11 0x4 /* Ethernet */
234 +                                       0x09 0x4 /* Ethernet Wake Up */>;
235 +                               local-mac-address = [000000000000]; /* Filled in by zImage */
236 +                               reg = <0xef600900 0x00000070>;
237 +                               mal-device = <&MAL>;
238 +                               mal-tx-channel = <2>;
239 +                               mal-rx-channel = <1>;
240 +                               cell-index = <1>;
241 +                               max-frame-size = <0x5dc>;
242 +                               rx-fifo-size = <0x1000>;
243 +                               tx-fifo-size = <0x800>;
244 +                               mdio-device = <&EMAC0>;
245 +                               phy-mode = "mii";
246 +                               phy-map = <0x00000001>;
247 +                       };
248 +
249 +               };
250 +
251 +               EBC0: ebc {
252 +                       compatible = "ibm,ebc-405ep", "ibm,ebc";
253 +                       dcr-reg = <0x012 0x002>;
254 +                       #address-cells = <2>;
255 +                       #size-cells = <1>;
256 +                       /* The ranges property is supplied by the bootwrapper
257 +                        * and is based on the firmware's configuration of the
258 +                        * EBC bridge
259 +                        */
260 +                       clock-frequency = <0>; /* Filled in by zImage */
261 +
262 +                       cf_card@ff100000 {
263 +                               compatible = "magicbox-cf";
264 +                               reg = <0x00000000 0xff100000 0x00001000
265 +                                      0x00000000 0xff200000 0x00001000>;
266 +                               interrupt-parent = <&UIC0>;
267 +                               interrupts = <0x19 0x1 /* IRQ_TYPE_EDGE_RISING */ >;
268 +                       };
269 +
270 +                       nor_flash@ffc00000 {
271 +                               compatible = "cfi-flash";
272 +                               bank-width = <2>;
273 +                               reg = <0x00000000 0xffc00000 0x00400000>;
274 +                               #address-cells = <1>;
275 +                               #size-cells = <1>;
276 +                               partition@0 {
277 +                                       label = "linux";
278 +                                       reg = <0x0 0x120000>;
279 +                               };
280 +                               partition@120000 {
281 +                                       label = "rootfs";
282 +                                       reg = <0x120000 0x2a0000>;
283 +                               };
284 +                               partition@3c0000 {
285 +                                       label = "u-boot";
286 +                                       reg = <0x3c0000 0x30000>;
287 +                                       read-only;
288 +                               };
289 +                       };
290 +               };
291 +
292 +               PCI0: pci@ec000000 {
293 +                       device_type = "pci";
294 +                       #interrupt-cells = <1>;
295 +                       #size-cells = <2>;
296 +                       #address-cells = <3>;
297 +                       compatible = "ibm,plb405ep-pci", "ibm,plb-pci";
298 +                       primary;
299 +                       reg = <0xeec00000 0x00000008    /* Config space access */
300 +                              0xeed80000 0x00000004    /* IACK */
301 +                              0xeed80000 0x00000004    /* Special cycle */
302 +                              0xef480000 0x00000040>;  /* Internal registers */
303 +
304 +                       /* Outbound ranges, one memory and one IO,
305 +                        * later cannot be changed. Chip supports a second
306 +                        * IO range but we don't use it for now
307 +                        */
308 +                       ranges = <0x02000000 0x00000000 0x80000000 0x80000000 0x00000000 0x20000000
309 +                                 0x01000000 0x00000000 0x00000000 0xe8000000 0x00000000 0x00010000>;
310 +
311 +                       /* Inbound 2GB range starting at 0 */
312 +                       dma-ranges = <0x42000000 0x0 0x0 0x0 0x0 0x80000000>;
313 +
314 +                       interrupt-map-mask = <0xf800 0x0 0x0 0x0>;
315 +                       interrupt-map = <
316 +                               /* IDSEL 1 */
317 +                               0x800 0x0 0x0 0x0 &UIC0 0x1c 0x8
318 +
319 +                               /* IDSEL 2 */
320 +                               0x1000 0x0 0x0 0x0 &UIC0 0x1d 0x8
321 +
322 +                               /* IDSEL 3 */
323 +                               0x1800 0x0 0x0 0x0 &UIC0 0x1e 0x8
324 +
325 +                               /* IDSEL 4 */
326 +                               0x2000 0x0 0x0 0x0 &UIC0 0x1f 0x8
327 +                       >;
328 +               };
329 +       };
330 +
331 +       chosen {
332 +               linux,stdout-path = "/plb/opb/serial@ef600300";
333 +       };
334 +};
335 --- a/arch/powerpc/boot/Makefile
336 +++ b/arch/powerpc/boot/Makefile
337 @@ -70,7 +70,7 @@ src-plat := of.c cuboot-52xx.c cuboot-82
338                 cuboot-katmai.c cuboot-rainier.c redboot-8xx.c ep8248e.c \
339                 cuboot-warp.c cuboot-85xx-cpm2.c cuboot-yosemite.c simpleboot.c \
340                 virtex405-head.S virtex.c redboot-83xx.c cuboot-sam440ep.c \
341 -               cuboot-acadia.c cuboot-magicboxv1.c
342 +               cuboot-acadia.c cuboot-magicboxv1.c cuboot-magicboxv2.c
343  src-boot := $(src-wlib) $(src-plat) empty.c
344  
345  src-boot := $(addprefix $(obj)/, $(src-boot))
346 @@ -215,6 +215,7 @@ image-$(CONFIG_EP405)                       += dtbImage.ep40
347  image-$(CONFIG_WALNUT)                 += treeImage.walnut
348  image-$(CONFIG_ACADIA)                 += cuImage.acadia
349  image-$(CONFIG_MAGICBOXV1)             += cuImage.magicboxv1
350 +image-$(CONFIG_MAGICBOXV2)             += cuImage.magicboxv2
351  
352  # Board ports in arch/powerpc/platform/44x/Kconfig
353  image-$(CONFIG_EBONY)                  += treeImage.ebony cuImage.ebony
354 --- a/arch/powerpc/platforms/40x/Kconfig
355 +++ b/arch/powerpc/platforms/40x/Kconfig
356 @@ -59,6 +59,16 @@ config MAGICBOXV1
357         help
358           This option enables support for the Magicbox v1 board.
359  
360 +config MAGICBOXV2
361 +       bool "Magicbox v2"
362 +       depends on 40x
363 +       default n
364 +       select PPC40x_SIMPLE
365 +       select 405EP
366 +       select PCI
367 +       help
368 +         This option enables support for the Magicbox v2 board.
369 +
370  config MAKALU
371         bool "Makalu"
372         depends on 40x
373 --- a/arch/powerpc/platforms/40x/ppc40x_simple.c
374 +++ b/arch/powerpc/platforms/40x/ppc40x_simple.c
375 @@ -52,7 +52,8 @@ machine_device_initcall(ppc40x_simple, p
376   */
377  static char *board[] __initdata = {
378         "amcc,acadia",
379 -       "magicboxv1"
380 +       "magicboxv1",
381 +       "magicboxv2",
382  };
383  
384  static int __init ppc40x_probe(void)