add basic support for the Magicbox boards
[10.03/openwrt.git] / target / linux / magicbox-2.6 / patches / 001-magicbox_support.patch
1 diff -Nur linux-2.6.17/arch/ppc/platforms/4xx/Kconfig linux-2.6.17-owrt/arch/ppc/platforms/4xx/Kconfig
2 --- linux-2.6.17/arch/ppc/platforms/4xx/Kconfig 2006-06-18 03:49:35.000000000 +0200
3 +++ linux-2.6.17-owrt/arch/ppc/platforms/4xx/Kconfig    2006-08-25 23:33:05.000000000 +0200
4 @@ -52,6 +52,12 @@
5         help
6           This option enables support for the IBM PPC405GP evaluation board.
7  
8 +config MAGICBOX
9 +       bool "MagicBox"
10 +       select WANT_EARLY_SERIAL
11 +       help
12 +         This option enables support for the IBM PPC405EP evaluation board.
13 +
14  config XILINX_ML300
15         bool "Xilinx-ML300"
16         help
17 @@ -173,7 +179,7 @@
18  
19  config IBM_OCP
20         bool
21 -       depends on ASH || BAMBOO || BUBINGA || CPCI405 || EBONY || EP405 || LUAN || YUCCA || OCOTEA || REDWOOD_5 || REDWOOD_6 || SYCAMORE || WALNUT
22 +       depends on ASH || BAMBOO || BUBINGA || CPCI405 || EBONY || EP405 || LUAN || YUCCA || OCOTEA || REDWOOD_5 || REDWOOD_6 || SYCAMORE || WALNUT || MAGICBOX
23         default y
24  
25  config IBM_EMAC4
26 @@ -183,7 +189,7 @@
27  
28  config BIOS_FIXUP
29         bool
30 -       depends on BUBINGA || EP405 || SYCAMORE || WALNUT
31 +       depends on BUBINGA || EP405 || SYCAMORE || WALNUT || MAGICBOX
32         default y
33  
34  # OAK doesn't exist but wanted to keep this around for any future 403GCX boards
35 @@ -194,7 +200,7 @@
36  
37  config 405EP
38         bool
39 -       depends on BUBINGA
40 +       depends on BUBINGA || MAGICBOX
41         default y
42  
43  config 405GP
44 diff -Nur linux-2.6.17/arch/ppc/platforms/4xx/magicbox.c linux-2.6.17-owrt/arch/ppc/platforms/4xx/magicbox.c
45 --- linux-2.6.17/arch/ppc/platforms/4xx/magicbox.c      1970-01-01 01:00:00.000000000 +0100
46 +++ linux-2.6.17-owrt/arch/ppc/platforms/4xx/magicbox.c 2006-08-25 23:33:05.000000000 +0200
47 @@ -0,0 +1,249 @@
48 +/*
49 + * Support for IBM PPC 405EP-based MagicBox board 
50 + * Copyright (C) 2006  Karol Lewandowski
51 + *
52 + * Heavily based on bubinga.c
53 + *
54 + * Author: SAW (IBM), derived from walnut.c.
55 + *         Maintained by MontaVista Software <source@mvista.com>
56 + *
57 + * 2003 (c) MontaVista Softare Inc.  This file is licensed under the
58 + * terms of the GNU General Public License version 2. This program is
59 + * licensed "as is" without any warranty of any kind, whether express
60 + * or implied.
61 + */
62 +
63 +#include <linux/config.h>
64 +#include <linux/init.h>
65 +#include <linux/smp.h>
66 +#include <linux/threads.h>
67 +#include <linux/param.h>
68 +#include <linux/string.h>
69 +#include <linux/blkdev.h>
70 +#include <linux/pci.h>
71 +#include <linux/tty.h>
72 +#include <linux/serial.h>
73 +#include <linux/serial_core.h>
74 +
75 +#include <asm/system.h>
76 +#include <asm/pci-bridge.h>
77 +#include <asm/processor.h>
78 +#include <asm/machdep.h>
79 +#include <asm/page.h>
80 +#include <asm/time.h>
81 +#include <asm/io.h>
82 +#include <asm/kgdb.h>
83 +#include <asm/ocp.h>
84 +#include <asm/ibm_ocp_pci.h>
85 +
86 +#include <platforms/4xx/ibm405ep.h>
87 +
88 +#undef DEBUG
89 +
90 +#ifdef DEBUG
91 +#define DBG(x...) printk(x)
92 +#else
93 +#define DBG(x...)
94 +#endif
95 +
96 +extern bd_t __res;
97 +
98 +/* Some IRQs unique to board
99 + * Used by the generic 405 PCI setup functions in ppc4xx_pci.c
100 + */
101 +int __init
102 +ppc405_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin)
103 +{
104 +       static char pci_irq_table[][4] =
105 +           /*
106 +            *      PCI IDSEL/INTPIN->INTLINE
107 +            *      A       B       C       D
108 +            */
109 +       {
110 +               {28, 28, 28, 28},       /* IDSEL 1 - PCI slot 1 */
111 +               {29, 29, 29, 29},       /* IDSEL 2 - PCI slot 2 */
112 +               {30, 30, 30, 30},       /* IDSEL 3 - PCI slot 3 */
113 +               {31, 31, 31, 31},       /* IDSEL 4 - PCI slot 4 */
114 +       };
115 +
116 +       const long min_idsel = 1, max_idsel = 4, irqs_per_slot = 4;
117 +       return PCI_IRQ_TABLE_LOOKUP;
118 +};
119 +
120 +
121 +/* The serial clock for the chip is an internal clock determined by
122 + * different clock speeds/dividers.
123 + * Calculate the proper input baud rate and setup the serial driver.
124 + */
125 +static void __init
126 +magicbox_early_serial_map(void)
127 +{
128 +       u32 uart_div;
129 +       int uart_clock;
130 +       struct uart_port port;
131 +
132 +         /* Calculate the serial clock input frequency
133 +          *
134 +          * The base baud is the PLL OUTA (provided in the board info
135 +          * structure) divided by the external UART Divisor, divided
136 +          * by 16.
137 +          */
138 +       uart_div = (mfdcr(DCRN_CPC0_UCR_BASE) & DCRN_CPC0_UCR_U0DIV);
139 +       uart_clock = __res.bi_procfreq / uart_div;
140 +
141 +       /* Setup serial port access */
142 +       memset(&port, 0, sizeof(port));
143 +       port.membase = (void*)ACTING_UART0_IO_BASE;
144 +       port.irq = ACTING_UART0_INT;
145 +       port.uartclk = uart_clock;
146 +       port.regshift = 0;
147 +       port.iotype = SERIAL_IO_MEM;
148 +       port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
149 +       port.line = 0;
150 +
151 +       if (early_serial_setup(&port) != 0) {
152 +               printk("Early serial init of port 0 failed\n");
153 +       }
154 +
155 +       port.membase = (void*)ACTING_UART1_IO_BASE;
156 +       port.irq = ACTING_UART1_INT;
157 +       port.line = 1;
158 +
159 +       if (early_serial_setup(&port) != 0) {
160 +               printk("Early serial init of port 1 failed\n");
161 +       }
162 +}
163 +
164 +void __init
165 +bios_fixup(struct pci_controller *hose, struct pcil0_regs *pcip)
166 +{
167 +       unsigned int bar_response, bar;
168 +       /*
169 +        * Expected PCI mapping:
170 +        *
171 +        *  PLB addr             PCI memory addr
172 +        *  ---------------------       ---------------------
173 +        *  0000'0000 - 7fff'ffff <---  0000'0000 - 7fff'ffff
174 +        *  8000'0000 - Bfff'ffff --->  8000'0000 - Bfff'ffff
175 +        *
176 +        *  PLB addr             PCI io addr
177 +        *  ---------------------       ---------------------
178 +        *  e800'0000 - e800'ffff --->  0000'0000 - 0001'0000
179 +        *
180 +        * The following code is simplified by assuming that the bootrom
181 +        * has been well behaved in following this mapping.
182 +        */
183 +
184 +#ifdef DEBUG
185 +       int i;
186 +
187 +       printk("ioremap PCLIO_BASE = 0x%x\n", pcip);
188 +       printk("PCI bridge regs before fixup \n");
189 +       for (i = 0; i <= 3; i++) {
190 +               printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].ma)));
191 +               printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].la)));
192 +               printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].pcila)));
193 +               printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].pciha)));
194 +       }
195 +       printk(" ptm1ms\t0x%x\n", in_le32(&(pcip->ptm1ms)));
196 +       printk(" ptm1la\t0x%x\n", in_le32(&(pcip->ptm1la)));
197 +       printk(" ptm2ms\t0x%x\n", in_le32(&(pcip->ptm2ms)));
198 +       printk(" ptm2la\t0x%x\n", in_le32(&(pcip->ptm2la)));
199 +
200 +#endif
201 +
202 +       /* added for IBM boot rom version 1.15 bios bar changes  -AK */
203 +
204 +       /* Disable region first */
205 +       out_le32((void *) &(pcip->pmm[0].ma), 0x00000000);
206 +       /* PLB starting addr, PCI: 0x80000000 */
207 +       out_le32((void *) &(pcip->pmm[0].la), 0x80000000);
208 +       /* PCI start addr, 0x80000000 */
209 +       out_le32((void *) &(pcip->pmm[0].pcila), PPC405_PCI_MEM_BASE);
210 +       /* 512MB range of PLB to PCI */
211 +       out_le32((void *) &(pcip->pmm[0].pciha), 0x00000000);
212 +       /* Enable no pre-fetch, enable region */
213 +       out_le32((void *) &(pcip->pmm[0].ma), ((0xffffffff -
214 +                                               (PPC405_PCI_UPPER_MEM -
215 +                                                PPC405_PCI_MEM_BASE)) | 0x01));
216 +
217 +       /* Disable region one */
218 +       out_le32((void *) &(pcip->pmm[1].ma), 0x00000000);
219 +       out_le32((void *) &(pcip->pmm[1].la), 0x00000000);
220 +       out_le32((void *) &(pcip->pmm[1].pcila), 0x00000000);
221 +       out_le32((void *) &(pcip->pmm[1].pciha), 0x00000000);
222 +       out_le32((void *) &(pcip->pmm[1].ma), 0x00000000);
223 +       out_le32((void *) &(pcip->ptm1ms), 0x00000001);
224 +
225 +       /* Disable region two */
226 +       out_le32((void *) &(pcip->pmm[2].ma), 0x00000000);
227 +       out_le32((void *) &(pcip->pmm[2].la), 0x00000000);
228 +       out_le32((void *) &(pcip->pmm[2].pcila), 0x00000000);
229 +       out_le32((void *) &(pcip->pmm[2].pciha), 0x00000000);
230 +       out_le32((void *) &(pcip->pmm[2].ma), 0x00000000);
231 +       out_le32((void *) &(pcip->ptm2ms), 0x00000000);
232 +       out_le32((void *) &(pcip->ptm2la), 0x00000000);
233 +
234 +       /* Zero config bars */
235 +       for (bar = PCI_BASE_ADDRESS_1; bar <= PCI_BASE_ADDRESS_2; bar += 4) {
236 +               early_write_config_dword(hose, hose->first_busno,
237 +                                        PCI_FUNC(hose->first_busno), bar,
238 +                                        0x00000000);
239 +               early_read_config_dword(hose, hose->first_busno,
240 +                                       PCI_FUNC(hose->first_busno), bar,
241 +                                       &bar_response);
242 +               DBG("BUS %d, device %d, Function %d bar 0x%8.8x is 0x%8.8x\n",
243 +                   hose->first_busno, PCI_SLOT(hose->first_busno),
244 +                   PCI_FUNC(hose->first_busno), bar, bar_response);
245 +       }
246 +       /* end work arround */
247 +
248 +#ifdef DEBUG
249 +       printk("PCI bridge regs after fixup \n");
250 +       for (i = 0; i <= 3; i++) {
251 +               printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].ma)));
252 +               printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].la)));
253 +               printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].pcila)));
254 +               printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].pciha)));
255 +       }
256 +       printk(" ptm1ms\t0x%x\n", in_le32(&(pcip->ptm1ms)));
257 +       printk(" ptm1la\t0x%x\n", in_le32(&(pcip->ptm1la)));
258 +       printk(" ptm2ms\t0x%x\n", in_le32(&(pcip->ptm2ms)));
259 +       printk(" ptm2la\t0x%x\n", in_le32(&(pcip->ptm2la)));
260 +
261 +#endif /* DEBUG */
262 +}
263 +
264 +void __init
265 +magicbox_setup_arch(void)
266 +{
267 +       ppc4xx_setup_arch();
268 +
269 +       ibm_ocp_set_emac(0, 1);
270 +
271 +       magicbox_early_serial_map();
272 +
273 +       /* Identify the system */
274 +       printk("MagicBox port (C) 2005 Karol Lewandowski <kl@jasmine.eu.org>\n");
275 +}
276 +
277 +void __init
278 +magicbox_map_io(void)
279 +{
280 +       ppc4xx_map_io();
281 +}
282 +
283 +void __init
284 +platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
285 +             unsigned long r6, unsigned long r7)
286 +{
287 +       ppc4xx_init(r3, r4, r5, r6, r7);
288 +
289 +       ppc_md.setup_arch = magicbox_setup_arch;
290 +       ppc_md.setup_io_mappings = magicbox_map_io;
291 +
292 +#ifdef CONFIG_KGDB
293 +       ppc_md.early_serial_map = bubinga_early_serial_map;
294 +#endif
295 +
296 +}
297 diff -Nur linux-2.6.17/arch/ppc/platforms/4xx/magicbox.h linux-2.6.17-owrt/arch/ppc/platforms/4xx/magicbox.h
298 --- linux-2.6.17/arch/ppc/platforms/4xx/magicbox.h      1970-01-01 01:00:00.000000000 +0100
299 +++ linux-2.6.17-owrt/arch/ppc/platforms/4xx/magicbox.h 2006-08-25 23:33:05.000000000 +0200
300 @@ -0,0 +1,47 @@
301 +/*
302 + * Support for IBM PPC 405EP-based MagicBox board
303 + *
304 + * Heavily based on bubinga.h
305 + *
306 + *
307 + * Author: SAW (IBM), derived from walnut.h.
308 + *         Maintained by MontaVista Software <source@mvista.com>
309 + *
310 + * 2003 (c) MontaVista Softare Inc.  This file is licensed under the
311 + * terms of the GNU General Public License version 2. This program is
312 + * licensed "as is" without any warranty of any kind, whether express
313 + * or implied.
314 + */
315 +
316 +#ifdef __KERNEL__
317 +#ifndef __MAGICBOX_H__
318 +#define __MAGICBOX_H__
319 +
320 +#include <linux/config.h>
321 +#include <platforms/4xx/ibm405ep.h>
322 +#include <asm/ppcboot.h>
323 +
324 +/* Memory map for the "MagicBox" 405EP evaluation board -- generic 4xx. */
325 +
326 +/* The UART clock is based off an internal clock -
327 + * define BASE_BAUD based on the internal clock and divider(s).
328 + * Since BASE_BAUD must be a constant, we will initialize it
329 + * using clock/divider values which OpenBIOS initializes
330 + * for typical configurations at various CPU speeds.
331 + * The base baud is calculated as (FWDA / EXT UART DIV / 16)
332 + */
333 +#define BASE_BAUD       0
334 +
335 +/* Flash */
336 +#define PPC40x_FPGA_BASE       0xF0300000
337 +#define PPC40x_FPGA_REG_OFFS   1       /* offset to flash map reg */
338 +#define PPC40x_FLASH_ONBD_N(x) (x & 0x02)
339 +#define PPC40x_FLASH_SRAM_SEL(x) (x & 0x01)
340 +#define PPC40x_FLASH_LOW       0xFFF00000
341 +#define PPC40x_FLASH_HIGH      0xFFF80000
342 +#define PPC40x_FLASH_SIZE      0x80000
343 +
344 +#define PPC4xx_MACHINE_NAME    "MagicBox"
345 +
346 +#endif /* __MAGICBOX_H__ */
347 +#endif /* __KERNEL__ */
348 diff -Nur linux-2.6.17/arch/ppc/platforms/4xx/Makefile linux-2.6.17-owrt/arch/ppc/platforms/4xx/Makefile
349 --- linux-2.6.17/arch/ppc/platforms/4xx/Makefile        2006-06-18 03:49:35.000000000 +0200
350 +++ linux-2.6.17-owrt/arch/ppc/platforms/4xx/Makefile   2006-08-25 23:33:05.000000000 +0200
351 @@ -13,6 +13,7 @@
352  obj-$(CONFIG_REDWOOD_6)                += redwood6.o
353  obj-$(CONFIG_SYCAMORE)         += sycamore.o
354  obj-$(CONFIG_WALNUT)           += walnut.o
355 +obj-$(CONFIG_MAGICBOX)         += magicbox.o
356  obj-$(CONFIG_XILINX_ML300)     += xilinx_ml300.o
357  obj-$(CONFIG_XILINX_ML403)     += xilinx_ml403.o
358  
359 diff -Nur linux-2.6.17/drivers/mtd/maps/Kconfig linux-2.6.17-owrt/drivers/mtd/maps/Kconfig
360 --- linux-2.6.17/drivers/mtd/maps/Kconfig       2006-06-18 03:49:35.000000000 +0200
361 +++ linux-2.6.17-owrt/drivers/mtd/maps/Kconfig  2006-08-25 23:33:05.000000000 +0200
362 @@ -323,6 +323,15 @@
363           Walnut board. If you have one of these boards and would like to
364           use the flash chips on it, say 'Y'.
365  
366 +config MTD_MAGICMAP
367 +       tristate "Flash device mapped on IBM 405EP MagicBox"
368 +       depends on MTD_CFI && MTD_PARTITIONS && 40x && MAGICBOX
369 +       help
370 +         This enables access routines for the flash chips on the IBM 405EP
371 +         MagicBox board. If you have one of these boards and would like to
372 +         use the flash chips on it, say 'Y'.
373 +
374 +
375  config MTD_EBONY
376         tristate "Flash devices mapped on IBM 440GP Ebony"
377         depends on MTD_JEDECPROBE && EBONY
378 diff -Nur linux-2.6.17/drivers/mtd/maps/magicmap.c linux-2.6.17-owrt/drivers/mtd/maps/magicmap.c
379 --- linux-2.6.17/drivers/mtd/maps/magicmap.c    1970-01-01 01:00:00.000000000 +0100
380 +++ linux-2.6.17-owrt/drivers/mtd/maps/magicmap.c       2006-08-25 23:33:05.000000000 +0200
381 @@ -0,0 +1,102 @@
382 +/*
383 + * magicmap.c: Copyleft 2005  Karol Lewandowski
384 + *
385 + * Mapping for MagicBox flash.
386 + * Based on walnut.c.
387 + *
388 + * Heikki Lindholm <holindho@infradead.org>
389 + *
390 + *
391 + * This program is free software; you can redistribute  it and/or modify it
392 + * under  the terms of  the GNU General  Public License as published by the
393 + * Free Software Foundation;  either version 2 of the  License, or (at your
394 + * option) any later version.
395 + */
396 +
397 +#include <linux/module.h>
398 +#include <linux/types.h>
399 +#include <linux/kernel.h>
400 +#include <linux/init.h>
401 +#include <linux/mtd/mtd.h>
402 +#include <linux/mtd/map.h>
403 +#include <linux/mtd/partitions.h>
404 +#include <linux/config.h>
405 +#include <asm/io.h>
406 +
407 +static struct mtd_info *flash;
408 +
409 +static struct map_info magic_map = {
410 +       .name =         "Magically mapped flash",
411 +       .phys =         0xffc00000,
412 +       .size =         0x400000,
413 +       .bankwidth =    2,
414 +};
415 +
416 +static struct mtd_partition magic_partitions[] = {
417 +       {
418 +               .name =   "kernel",
419 +               .offset = 0x0,
420 +               .size =   0x0e0000,
421 +       },
422 +       {
423 +               .name =   "ramdisk",
424 +               .offset = 0x0e0000,
425 +               .size =   0x2c0000,
426 +       },
427 +       {
428 +               .name =   "persistent",
429 +               .offset = 0x3a0000,
430 +               .size =   0x020000,
431 +       },
432 +       {
433 +               .name =   "bootloader",
434 +               .offset = 0x3c0000,
435 +               .size =   0x040000,
436 +               .mask_flags = MTD_WRITEABLE,
437 +       },
438 +};
439 +
440 +int __init init_magic(void)
441 +{
442 +       magic_map.virt =
443 +               (void __iomem *)ioremap(magic_map.phys, magic_map.size);
444 +
445 +       if (!magic_map.virt) {
446 +               printk("Failed to ioremap flash.\n");
447 +               return -EIO;
448 +       }
449 +
450 +       simple_map_init(&magic_map);
451 +
452 +       flash = do_map_probe("cfi_probe", &magic_map);
453 +       if (flash) {
454 +               flash->owner = THIS_MODULE;
455 +               add_mtd_partitions(flash, magic_partitions,
456 +                                       ARRAY_SIZE(magic_partitions));
457 +       } else {
458 +               printk("map probe failed for flash\n");
459 +               return -ENXIO;
460 +       }
461 +
462 +       return 0;
463 +}
464 +
465 +static void __exit cleanup_magic(void)
466 +{
467 +       if (flash) {
468 +               del_mtd_partitions(flash);
469 +               map_destroy(flash);
470 +       }
471 +
472 +       if (magic_map.virt) {
473 +               iounmap((void *)magic_map.virt);
474 +               magic_map.virt = NULL;
475 +       }
476 +}
477 +
478 +module_init(init_magic);
479 +module_exit(cleanup_magic);
480 +
481 +MODULE_LICENSE("GPL");
482 +MODULE_AUTHOR("Karol Lewandowski");
483 +MODULE_DESCRIPTION("MTD map and partitions for IBM 405EP MagicBox boards");
484 diff -Nur linux-2.6.17/drivers/mtd/maps/Makefile linux-2.6.17-owrt/drivers/mtd/maps/Makefile
485 --- linux-2.6.17/drivers/mtd/maps/Makefile      2006-06-18 03:49:35.000000000 +0200
486 +++ linux-2.6.17-owrt/drivers/mtd/maps/Makefile 2006-08-25 23:33:05.000000000 +0200
487 @@ -58,6 +58,7 @@
488  obj-$(CONFIG_MTD_BEECH)                += beech-mtd.o
489  obj-$(CONFIG_MTD_ARCTIC)       += arctic-mtd.o
490  obj-$(CONFIG_MTD_WALNUT)        += walnut.o
491 +obj-$(CONFIG_MTD_MAGICMAP)      += magicmap.o
492  obj-$(CONFIG_MTD_H720X)                += h720x-flash.o
493  obj-$(CONFIG_MTD_SBC8240)      += sbc8240.o
494  obj-$(CONFIG_MTD_NOR_TOTO)     += omap-toto-flash.o
495 diff -Nur linux-2.6.17/include/asm-ppc/ibm4xx.h linux-2.6.17-owrt/include/asm-ppc/ibm4xx.h
496 --- linux-2.6.17/include/asm-ppc/ibm4xx.h       2006-06-18 03:49:35.000000000 +0200
497 +++ linux-2.6.17-owrt/include/asm-ppc/ibm4xx.h  2006-08-25 23:33:05.000000000 +0200
498 @@ -19,6 +19,10 @@
499  
500  #ifdef CONFIG_40x
501  
502 +#if defined(CONFIG_MAGICBOX)
503 +#include <platforms/4xx/magicbox.h>
504 +#endif
505 +
506  #if defined(CONFIG_BUBINGA)
507  #include <platforms/4xx/bubinga.h>
508  #endif