ARM: AMBA: Add pclk definition for platforms using primecells
[sfrench/cifs-2.6.git] / arch / arm / mach-versatile / core.c
1 /*
2  *  linux/arch/arm/mach-versatile/core.c
3  *
4  *  Copyright (C) 1999 - 2003 ARM Limited
5  *  Copyright (C) 2000 Deep Blue Solutions Ltd
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21 #include <linux/init.h>
22 #include <linux/device.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/platform_device.h>
25 #include <linux/sysdev.h>
26 #include <linux/interrupt.h>
27 #include <linux/amba/bus.h>
28 #include <linux/amba/clcd.h>
29 #include <linux/amba/pl061.h>
30 #include <linux/amba/mmci.h>
31 #include <linux/io.h>
32 #include <linux/gfp.h>
33
34 #include <asm/clkdev.h>
35 #include <asm/system.h>
36 #include <asm/irq.h>
37 #include <asm/leds.h>
38 #include <asm/hardware/arm_timer.h>
39 #include <asm/hardware/icst.h>
40 #include <asm/hardware/vic.h>
41 #include <asm/mach-types.h>
42
43 #include <asm/mach/arch.h>
44 #include <asm/mach/flash.h>
45 #include <asm/mach/irq.h>
46 #include <asm/mach/time.h>
47 #include <asm/mach/map.h>
48 #include <mach/clkdev.h>
49 #include <mach/hardware.h>
50 #include <mach/platform.h>
51 #include <plat/timer-sp.h>
52
53 #include "core.h"
54
55 /*
56  * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
57  * is the (PA >> 12).
58  *
59  * Setup a VA for the Versatile Vectored Interrupt Controller.
60  */
61 #define VA_VIC_BASE             __io_address(VERSATILE_VIC_BASE)
62 #define VA_SIC_BASE             __io_address(VERSATILE_SIC_BASE)
63
64 static void sic_mask_irq(unsigned int irq)
65 {
66         irq -= IRQ_SIC_START;
67         writel(1 << irq, VA_SIC_BASE + SIC_IRQ_ENABLE_CLEAR);
68 }
69
70 static void sic_unmask_irq(unsigned int irq)
71 {
72         irq -= IRQ_SIC_START;
73         writel(1 << irq, VA_SIC_BASE + SIC_IRQ_ENABLE_SET);
74 }
75
76 static struct irq_chip sic_chip = {
77         .name   = "SIC",
78         .ack    = sic_mask_irq,
79         .mask   = sic_mask_irq,
80         .unmask = sic_unmask_irq,
81 };
82
83 static void
84 sic_handle_irq(unsigned int irq, struct irq_desc *desc)
85 {
86         unsigned long status = readl(VA_SIC_BASE + SIC_IRQ_STATUS);
87
88         if (status == 0) {
89                 do_bad_IRQ(irq, desc);
90                 return;
91         }
92
93         do {
94                 irq = ffs(status) - 1;
95                 status &= ~(1 << irq);
96
97                 irq += IRQ_SIC_START;
98
99                 generic_handle_irq(irq);
100         } while (status);
101 }
102
103 #if 1
104 #define IRQ_MMCI0A      IRQ_VICSOURCE22
105 #define IRQ_AACI        IRQ_VICSOURCE24
106 #define IRQ_ETH         IRQ_VICSOURCE25
107 #define PIC_MASK        0xFFD00000
108 #else
109 #define IRQ_MMCI0A      IRQ_SIC_MMCI0A
110 #define IRQ_AACI        IRQ_SIC_AACI
111 #define IRQ_ETH         IRQ_SIC_ETH
112 #define PIC_MASK        0
113 #endif
114
115 void __init versatile_init_irq(void)
116 {
117         unsigned int i;
118
119         vic_init(VA_VIC_BASE, IRQ_VIC_START, ~0, 0);
120
121         set_irq_chained_handler(IRQ_VICSOURCE31, sic_handle_irq);
122
123         /* Do second interrupt controller */
124         writel(~0, VA_SIC_BASE + SIC_IRQ_ENABLE_CLEAR);
125
126         for (i = IRQ_SIC_START; i <= IRQ_SIC_END; i++) {
127                 if ((PIC_MASK & (1 << (i - IRQ_SIC_START))) == 0) {
128                         set_irq_chip(i, &sic_chip);
129                         set_irq_handler(i, handle_level_irq);
130                         set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
131                 }
132         }
133
134         /*
135          * Interrupts on secondary controller from 0 to 8 are routed to
136          * source 31 on PIC.
137          * Interrupts from 21 to 31 are routed directly to the VIC on
138          * the corresponding number on primary controller. This is controlled
139          * by setting PIC_ENABLEx.
140          */
141         writel(PIC_MASK, VA_SIC_BASE + SIC_INT_PIC_ENABLE);
142 }
143
144 static struct map_desc versatile_io_desc[] __initdata = {
145         {
146                 .virtual        =  IO_ADDRESS(VERSATILE_SYS_BASE),
147                 .pfn            = __phys_to_pfn(VERSATILE_SYS_BASE),
148                 .length         = SZ_4K,
149                 .type           = MT_DEVICE
150         }, {
151                 .virtual        =  IO_ADDRESS(VERSATILE_SIC_BASE),
152                 .pfn            = __phys_to_pfn(VERSATILE_SIC_BASE),
153                 .length         = SZ_4K,
154                 .type           = MT_DEVICE
155         }, {
156                 .virtual        =  IO_ADDRESS(VERSATILE_VIC_BASE),
157                 .pfn            = __phys_to_pfn(VERSATILE_VIC_BASE),
158                 .length         = SZ_4K,
159                 .type           = MT_DEVICE
160         }, {
161                 .virtual        =  IO_ADDRESS(VERSATILE_SCTL_BASE),
162                 .pfn            = __phys_to_pfn(VERSATILE_SCTL_BASE),
163                 .length         = SZ_4K * 9,
164                 .type           = MT_DEVICE
165         },
166 #ifdef CONFIG_MACH_VERSATILE_AB
167         {
168                 .virtual        =  IO_ADDRESS(VERSATILE_GPIO0_BASE),
169                 .pfn            = __phys_to_pfn(VERSATILE_GPIO0_BASE),
170                 .length         = SZ_4K,
171                 .type           = MT_DEVICE
172         }, {
173                 .virtual        =  IO_ADDRESS(VERSATILE_IB2_BASE),
174                 .pfn            = __phys_to_pfn(VERSATILE_IB2_BASE),
175                 .length         = SZ_64M,
176                 .type           = MT_DEVICE
177         },
178 #endif
179 #ifdef CONFIG_DEBUG_LL
180         {
181                 .virtual        =  IO_ADDRESS(VERSATILE_UART0_BASE),
182                 .pfn            = __phys_to_pfn(VERSATILE_UART0_BASE),
183                 .length         = SZ_4K,
184                 .type           = MT_DEVICE
185         },
186 #endif
187 #ifdef CONFIG_PCI
188         {
189                 .virtual        =  IO_ADDRESS(VERSATILE_PCI_CORE_BASE),
190                 .pfn            = __phys_to_pfn(VERSATILE_PCI_CORE_BASE),
191                 .length         = SZ_4K,
192                 .type           = MT_DEVICE
193         }, {
194                 .virtual        =  (unsigned long)VERSATILE_PCI_VIRT_BASE,
195                 .pfn            = __phys_to_pfn(VERSATILE_PCI_BASE),
196                 .length         = VERSATILE_PCI_BASE_SIZE,
197                 .type           = MT_DEVICE
198         }, {
199                 .virtual        =  (unsigned long)VERSATILE_PCI_CFG_VIRT_BASE,
200                 .pfn            = __phys_to_pfn(VERSATILE_PCI_CFG_BASE),
201                 .length         = VERSATILE_PCI_CFG_BASE_SIZE,
202                 .type           = MT_DEVICE
203         },
204 #if 0
205         {
206                 .virtual        =  VERSATILE_PCI_VIRT_MEM_BASE0,
207                 .pfn            = __phys_to_pfn(VERSATILE_PCI_MEM_BASE0),
208                 .length         = SZ_16M,
209                 .type           = MT_DEVICE
210         }, {
211                 .virtual        =  VERSATILE_PCI_VIRT_MEM_BASE1,
212                 .pfn            = __phys_to_pfn(VERSATILE_PCI_MEM_BASE1),
213                 .length         = SZ_16M,
214                 .type           = MT_DEVICE
215         }, {
216                 .virtual        =  VERSATILE_PCI_VIRT_MEM_BASE2,
217                 .pfn            = __phys_to_pfn(VERSATILE_PCI_MEM_BASE2),
218                 .length         = SZ_16M,
219                 .type           = MT_DEVICE
220         },
221 #endif
222 #endif
223 };
224
225 void __init versatile_map_io(void)
226 {
227         iotable_init(versatile_io_desc, ARRAY_SIZE(versatile_io_desc));
228 }
229
230
231 #define VERSATILE_FLASHCTRL    (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_FLASH_OFFSET)
232
233 static int versatile_flash_init(void)
234 {
235         u32 val;
236
237         val = __raw_readl(VERSATILE_FLASHCTRL);
238         val &= ~VERSATILE_FLASHPROG_FLVPPEN;
239         __raw_writel(val, VERSATILE_FLASHCTRL);
240
241         return 0;
242 }
243
244 static void versatile_flash_exit(void)
245 {
246         u32 val;
247
248         val = __raw_readl(VERSATILE_FLASHCTRL);
249         val &= ~VERSATILE_FLASHPROG_FLVPPEN;
250         __raw_writel(val, VERSATILE_FLASHCTRL);
251 }
252
253 static void versatile_flash_set_vpp(int on)
254 {
255         u32 val;
256
257         val = __raw_readl(VERSATILE_FLASHCTRL);
258         if (on)
259                 val |= VERSATILE_FLASHPROG_FLVPPEN;
260         else
261                 val &= ~VERSATILE_FLASHPROG_FLVPPEN;
262         __raw_writel(val, VERSATILE_FLASHCTRL);
263 }
264
265 static struct flash_platform_data versatile_flash_data = {
266         .map_name               = "cfi_probe",
267         .width                  = 4,
268         .init                   = versatile_flash_init,
269         .exit                   = versatile_flash_exit,
270         .set_vpp                = versatile_flash_set_vpp,
271 };
272
273 static struct resource versatile_flash_resource = {
274         .start                  = VERSATILE_FLASH_BASE,
275         .end                    = VERSATILE_FLASH_BASE + VERSATILE_FLASH_SIZE - 1,
276         .flags                  = IORESOURCE_MEM,
277 };
278
279 static struct platform_device versatile_flash_device = {
280         .name                   = "armflash",
281         .id                     = 0,
282         .dev                    = {
283                 .platform_data  = &versatile_flash_data,
284         },
285         .num_resources          = 1,
286         .resource               = &versatile_flash_resource,
287 };
288
289 static struct resource smc91x_resources[] = {
290         [0] = {
291                 .start          = VERSATILE_ETH_BASE,
292                 .end            = VERSATILE_ETH_BASE + SZ_64K - 1,
293                 .flags          = IORESOURCE_MEM,
294         },
295         [1] = {
296                 .start          = IRQ_ETH,
297                 .end            = IRQ_ETH,
298                 .flags          = IORESOURCE_IRQ,
299         },
300 };
301
302 static struct platform_device smc91x_device = {
303         .name           = "smc91x",
304         .id             = 0,
305         .num_resources  = ARRAY_SIZE(smc91x_resources),
306         .resource       = smc91x_resources,
307 };
308
309 static struct resource versatile_i2c_resource = {
310         .start                  = VERSATILE_I2C_BASE,
311         .end                    = VERSATILE_I2C_BASE + SZ_4K - 1,
312         .flags                  = IORESOURCE_MEM,
313 };
314
315 static struct platform_device versatile_i2c_device = {
316         .name                   = "versatile-i2c",
317         .id                     = 0,
318         .num_resources          = 1,
319         .resource               = &versatile_i2c_resource,
320 };
321
322 static struct i2c_board_info versatile_i2c_board_info[] = {
323         {
324                 I2C_BOARD_INFO("ds1338", 0xd0 >> 1),
325         },
326 };
327
328 static int __init versatile_i2c_init(void)
329 {
330         return i2c_register_board_info(0, versatile_i2c_board_info,
331                                        ARRAY_SIZE(versatile_i2c_board_info));
332 }
333 arch_initcall(versatile_i2c_init);
334
335 #define VERSATILE_SYSMCI        (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_MCI_OFFSET)
336
337 unsigned int mmc_status(struct device *dev)
338 {
339         struct amba_device *adev = container_of(dev, struct amba_device, dev);
340         u32 mask;
341
342         if (adev->res.start == VERSATILE_MMCI0_BASE)
343                 mask = 1;
344         else
345                 mask = 2;
346
347         return readl(VERSATILE_SYSMCI) & mask;
348 }
349
350 static struct mmci_platform_data mmc0_plat_data = {
351         .ocr_mask       = MMC_VDD_32_33|MMC_VDD_33_34,
352         .status         = mmc_status,
353         .gpio_wp        = -1,
354         .gpio_cd        = -1,
355 };
356
357 /*
358  * Clock handling
359  */
360 static const struct icst_params versatile_oscvco_params = {
361         .ref            = 24000000,
362         .vco_max        = ICST307_VCO_MAX,
363         .vco_min        = ICST307_VCO_MIN,
364         .vd_min         = 4 + 8,
365         .vd_max         = 511 + 8,
366         .rd_min         = 1 + 2,
367         .rd_max         = 127 + 2,
368         .s2div          = icst307_s2div,
369         .idx2s          = icst307_idx2s,
370 };
371
372 static void versatile_oscvco_set(struct clk *clk, struct icst_vco vco)
373 {
374         void __iomem *sys_lock = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LOCK_OFFSET;
375         u32 val;
376
377         val = readl(clk->vcoreg) & ~0x7ffff;
378         val |= vco.v | (vco.r << 9) | (vco.s << 16);
379
380         writel(0xa05f, sys_lock);
381         writel(val, clk->vcoreg);
382         writel(0, sys_lock);
383 }
384
385 static const struct clk_ops osc4_clk_ops = {
386         .round  = icst_clk_round,
387         .set    = icst_clk_set,
388         .setvco = versatile_oscvco_set,
389 };
390
391 static struct clk osc4_clk = {
392         .ops    = &osc4_clk_ops,
393         .params = &versatile_oscvco_params,
394 };
395
396 /*
397  * These are fixed clocks.
398  */
399 static struct clk ref24_clk = {
400         .rate   = 24000000,
401 };
402
403 static struct clk dummy_apb_pclk;
404
405 static struct clk_lookup lookups[] = {
406         {       /* AMBA bus clock */
407                 .con_id         = "apb_pclk",
408                 .clk            = &dummy_apb_pclk,
409         }, {    /* UART0 */
410                 .dev_id         = "dev:f1",
411                 .clk            = &ref24_clk,
412         }, {    /* UART1 */
413                 .dev_id         = "dev:f2",
414                 .clk            = &ref24_clk,
415         }, {    /* UART2 */
416                 .dev_id         = "dev:f3",
417                 .clk            = &ref24_clk,
418         }, {    /* UART3 */
419                 .dev_id         = "fpga:09",
420                 .clk            = &ref24_clk,
421         }, {    /* KMI0 */
422                 .dev_id         = "fpga:06",
423                 .clk            = &ref24_clk,
424         }, {    /* KMI1 */
425                 .dev_id         = "fpga:07",
426                 .clk            = &ref24_clk,
427         }, {    /* MMC0 */
428                 .dev_id         = "fpga:05",
429                 .clk            = &ref24_clk,
430         }, {    /* MMC1 */
431                 .dev_id         = "fpga:0b",
432                 .clk            = &ref24_clk,
433         }, {    /* CLCD */
434                 .dev_id         = "dev:20",
435                 .clk            = &osc4_clk,
436         }
437 };
438
439 /*
440  * CLCD support.
441  */
442 #define SYS_CLCD_MODE_MASK      (3 << 0)
443 #define SYS_CLCD_MODE_888       (0 << 0)
444 #define SYS_CLCD_MODE_5551      (1 << 0)
445 #define SYS_CLCD_MODE_565_RLSB  (2 << 0)
446 #define SYS_CLCD_MODE_565_BLSB  (3 << 0)
447 #define SYS_CLCD_NLCDIOON       (1 << 2)
448 #define SYS_CLCD_VDDPOSSWITCH   (1 << 3)
449 #define SYS_CLCD_PWR3V5SWITCH   (1 << 4)
450 #define SYS_CLCD_ID_MASK        (0x1f << 8)
451 #define SYS_CLCD_ID_SANYO_3_8   (0x00 << 8)
452 #define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8)
453 #define SYS_CLCD_ID_EPSON_2_2   (0x02 << 8)
454 #define SYS_CLCD_ID_SANYO_2_5   (0x07 << 8)
455 #define SYS_CLCD_ID_VGA         (0x1f << 8)
456
457 static struct clcd_panel vga = {
458         .mode           = {
459                 .name           = "VGA",
460                 .refresh        = 60,
461                 .xres           = 640,
462                 .yres           = 480,
463                 .pixclock       = 39721,
464                 .left_margin    = 40,
465                 .right_margin   = 24,
466                 .upper_margin   = 32,
467                 .lower_margin   = 11,
468                 .hsync_len      = 96,
469                 .vsync_len      = 2,
470                 .sync           = 0,
471                 .vmode          = FB_VMODE_NONINTERLACED,
472         },
473         .width          = -1,
474         .height         = -1,
475         .tim2           = TIM2_BCD | TIM2_IPC,
476         .cntl           = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
477         .bpp            = 16,
478 };
479
480 static struct clcd_panel sanyo_3_8_in = {
481         .mode           = {
482                 .name           = "Sanyo QVGA",
483                 .refresh        = 116,
484                 .xres           = 320,
485                 .yres           = 240,
486                 .pixclock       = 100000,
487                 .left_margin    = 6,
488                 .right_margin   = 6,
489                 .upper_margin   = 5,
490                 .lower_margin   = 5,
491                 .hsync_len      = 6,
492                 .vsync_len      = 6,
493                 .sync           = 0,
494                 .vmode          = FB_VMODE_NONINTERLACED,
495         },
496         .width          = -1,
497         .height         = -1,
498         .tim2           = TIM2_BCD,
499         .cntl           = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
500         .bpp            = 16,
501 };
502
503 static struct clcd_panel sanyo_2_5_in = {
504         .mode           = {
505                 .name           = "Sanyo QVGA Portrait",
506                 .refresh        = 116,
507                 .xres           = 240,
508                 .yres           = 320,
509                 .pixclock       = 100000,
510                 .left_margin    = 20,
511                 .right_margin   = 10,
512                 .upper_margin   = 2,
513                 .lower_margin   = 2,
514                 .hsync_len      = 10,
515                 .vsync_len      = 2,
516                 .sync           = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
517                 .vmode          = FB_VMODE_NONINTERLACED,
518         },
519         .width          = -1,
520         .height         = -1,
521         .tim2           = TIM2_IVS | TIM2_IHS | TIM2_IPC,
522         .cntl           = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
523         .bpp            = 16,
524 };
525
526 static struct clcd_panel epson_2_2_in = {
527         .mode           = {
528                 .name           = "Epson QCIF",
529                 .refresh        = 390,
530                 .xres           = 176,
531                 .yres           = 220,
532                 .pixclock       = 62500,
533                 .left_margin    = 3,
534                 .right_margin   = 2,
535                 .upper_margin   = 1,
536                 .lower_margin   = 0,
537                 .hsync_len      = 3,
538                 .vsync_len      = 2,
539                 .sync           = 0,
540                 .vmode          = FB_VMODE_NONINTERLACED,
541         },
542         .width          = -1,
543         .height         = -1,
544         .tim2           = TIM2_BCD | TIM2_IPC,
545         .cntl           = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
546         .bpp            = 16,
547 };
548
549 /*
550  * Detect which LCD panel is connected, and return the appropriate
551  * clcd_panel structure.  Note: we do not have any information on
552  * the required timings for the 8.4in panel, so we presently assume
553  * VGA timings.
554  */
555 static struct clcd_panel *versatile_clcd_panel(void)
556 {
557         void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
558         struct clcd_panel *panel = &vga;
559         u32 val;
560
561         val = readl(sys_clcd) & SYS_CLCD_ID_MASK;
562         if (val == SYS_CLCD_ID_SANYO_3_8)
563                 panel = &sanyo_3_8_in;
564         else if (val == SYS_CLCD_ID_SANYO_2_5)
565                 panel = &sanyo_2_5_in;
566         else if (val == SYS_CLCD_ID_EPSON_2_2)
567                 panel = &epson_2_2_in;
568         else if (val == SYS_CLCD_ID_VGA)
569                 panel = &vga;
570         else {
571                 printk(KERN_ERR "CLCD: unknown LCD panel ID 0x%08x, using VGA\n",
572                         val);
573                 panel = &vga;
574         }
575
576         return panel;
577 }
578
579 /*
580  * Disable all display connectors on the interface module.
581  */
582 static void versatile_clcd_disable(struct clcd_fb *fb)
583 {
584         void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
585         u32 val;
586
587         val = readl(sys_clcd);
588         val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
589         writel(val, sys_clcd);
590
591 #ifdef CONFIG_MACH_VERSATILE_AB
592         /*
593          * If the LCD is Sanyo 2x5 in on the IB2 board, turn the back-light off
594          */
595         if (machine_is_versatile_ab() && fb->panel == &sanyo_2_5_in) {
596                 void __iomem *versatile_ib2_ctrl = __io_address(VERSATILE_IB2_CTRL);
597                 unsigned long ctrl;
598
599                 ctrl = readl(versatile_ib2_ctrl);
600                 ctrl &= ~0x01;
601                 writel(ctrl, versatile_ib2_ctrl);
602         }
603 #endif
604 }
605
606 /*
607  * Enable the relevant connector on the interface module.
608  */
609 static void versatile_clcd_enable(struct clcd_fb *fb)
610 {
611         void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
612         u32 val;
613
614         val = readl(sys_clcd);
615         val &= ~SYS_CLCD_MODE_MASK;
616
617         switch (fb->fb.var.green.length) {
618         case 5:
619                 val |= SYS_CLCD_MODE_5551;
620                 break;
621         case 6:
622                 val |= SYS_CLCD_MODE_565_RLSB;
623                 break;
624         case 8:
625                 val |= SYS_CLCD_MODE_888;
626                 break;
627         }
628
629         /*
630          * Set the MUX
631          */
632         writel(val, sys_clcd);
633
634         /*
635          * And now enable the PSUs
636          */
637         val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
638         writel(val, sys_clcd);
639
640 #ifdef CONFIG_MACH_VERSATILE_AB
641         /*
642          * If the LCD is Sanyo 2x5 in on the IB2 board, turn the back-light on
643          */
644         if (machine_is_versatile_ab() && fb->panel == &sanyo_2_5_in) {
645                 void __iomem *versatile_ib2_ctrl = __io_address(VERSATILE_IB2_CTRL);
646                 unsigned long ctrl;
647
648                 ctrl = readl(versatile_ib2_ctrl);
649                 ctrl |= 0x01;
650                 writel(ctrl, versatile_ib2_ctrl);
651         }
652 #endif
653 }
654
655 static unsigned long framesize = SZ_1M;
656
657 static int versatile_clcd_setup(struct clcd_fb *fb)
658 {
659         dma_addr_t dma;
660
661         fb->panel               = versatile_clcd_panel();
662
663         fb->fb.screen_base = dma_alloc_writecombine(&fb->dev->dev, framesize,
664                                                     &dma, GFP_KERNEL);
665         if (!fb->fb.screen_base) {
666                 printk(KERN_ERR "CLCD: unable to map framebuffer\n");
667                 return -ENOMEM;
668         }
669
670         fb->fb.fix.smem_start   = dma;
671         fb->fb.fix.smem_len     = framesize;
672
673         return 0;
674 }
675
676 static int versatile_clcd_mmap(struct clcd_fb *fb, struct vm_area_struct *vma)
677 {
678         return dma_mmap_writecombine(&fb->dev->dev, vma,
679                                      fb->fb.screen_base,
680                                      fb->fb.fix.smem_start,
681                                      fb->fb.fix.smem_len);
682 }
683
684 static void versatile_clcd_remove(struct clcd_fb *fb)
685 {
686         dma_free_writecombine(&fb->dev->dev, fb->fb.fix.smem_len,
687                               fb->fb.screen_base, fb->fb.fix.smem_start);
688 }
689
690 static struct clcd_board clcd_plat_data = {
691         .name           = "Versatile",
692         .check          = clcdfb_check,
693         .decode         = clcdfb_decode,
694         .disable        = versatile_clcd_disable,
695         .enable         = versatile_clcd_enable,
696         .setup          = versatile_clcd_setup,
697         .mmap           = versatile_clcd_mmap,
698         .remove         = versatile_clcd_remove,
699 };
700
701 static struct pl061_platform_data gpio0_plat_data = {
702         .gpio_base      = 0,
703         .irq_base       = IRQ_GPIO0_START,
704 };
705
706 static struct pl061_platform_data gpio1_plat_data = {
707         .gpio_base      = 8,
708         .irq_base       = IRQ_GPIO1_START,
709 };
710
711 #define AACI_IRQ        { IRQ_AACI, NO_IRQ }
712 #define AACI_DMA        { 0x80, 0x81 }
713 #define MMCI0_IRQ       { IRQ_MMCI0A,IRQ_SIC_MMCI0B }
714 #define MMCI0_DMA       { 0x84, 0 }
715 #define KMI0_IRQ        { IRQ_SIC_KMI0, NO_IRQ }
716 #define KMI0_DMA        { 0, 0 }
717 #define KMI1_IRQ        { IRQ_SIC_KMI1, NO_IRQ }
718 #define KMI1_DMA        { 0, 0 }
719
720 /*
721  * These devices are connected directly to the multi-layer AHB switch
722  */
723 #define SMC_IRQ         { NO_IRQ, NO_IRQ }
724 #define SMC_DMA         { 0, 0 }
725 #define MPMC_IRQ        { NO_IRQ, NO_IRQ }
726 #define MPMC_DMA        { 0, 0 }
727 #define CLCD_IRQ        { IRQ_CLCDINT, NO_IRQ }
728 #define CLCD_DMA        { 0, 0 }
729 #define DMAC_IRQ        { IRQ_DMAINT, NO_IRQ }
730 #define DMAC_DMA        { 0, 0 }
731
732 /*
733  * These devices are connected via the core APB bridge
734  */
735 #define SCTL_IRQ        { NO_IRQ, NO_IRQ }
736 #define SCTL_DMA        { 0, 0 }
737 #define WATCHDOG_IRQ    { IRQ_WDOGINT, NO_IRQ }
738 #define WATCHDOG_DMA    { 0, 0 }
739 #define GPIO0_IRQ       { IRQ_GPIOINT0, NO_IRQ }
740 #define GPIO0_DMA       { 0, 0 }
741 #define GPIO1_IRQ       { IRQ_GPIOINT1, NO_IRQ }
742 #define GPIO1_DMA       { 0, 0 }
743 #define RTC_IRQ         { IRQ_RTCINT, NO_IRQ }
744 #define RTC_DMA         { 0, 0 }
745
746 /*
747  * These devices are connected via the DMA APB bridge
748  */
749 #define SCI_IRQ         { IRQ_SCIINT, NO_IRQ }
750 #define SCI_DMA         { 7, 6 }
751 #define UART0_IRQ       { IRQ_UARTINT0, NO_IRQ }
752 #define UART0_DMA       { 15, 14 }
753 #define UART1_IRQ       { IRQ_UARTINT1, NO_IRQ }
754 #define UART1_DMA       { 13, 12 }
755 #define UART2_IRQ       { IRQ_UARTINT2, NO_IRQ }
756 #define UART2_DMA       { 11, 10 }
757 #define SSP_IRQ         { IRQ_SSPINT, NO_IRQ }
758 #define SSP_DMA         { 9, 8 }
759
760 /* FPGA Primecells */
761 AMBA_DEVICE(aaci,  "fpga:04", AACI,     NULL);
762 AMBA_DEVICE(mmc0,  "fpga:05", MMCI0,    &mmc0_plat_data);
763 AMBA_DEVICE(kmi0,  "fpga:06", KMI0,     NULL);
764 AMBA_DEVICE(kmi1,  "fpga:07", KMI1,     NULL);
765
766 /* DevChip Primecells */
767 AMBA_DEVICE(smc,   "dev:00",  SMC,      NULL);
768 AMBA_DEVICE(mpmc,  "dev:10",  MPMC,     NULL);
769 AMBA_DEVICE(clcd,  "dev:20",  CLCD,     &clcd_plat_data);
770 AMBA_DEVICE(dmac,  "dev:30",  DMAC,     NULL);
771 AMBA_DEVICE(sctl,  "dev:e0",  SCTL,     NULL);
772 AMBA_DEVICE(wdog,  "dev:e1",  WATCHDOG, NULL);
773 AMBA_DEVICE(gpio0, "dev:e4",  GPIO0,    &gpio0_plat_data);
774 AMBA_DEVICE(gpio1, "dev:e5",  GPIO1,    &gpio1_plat_data);
775 AMBA_DEVICE(rtc,   "dev:e8",  RTC,      NULL);
776 AMBA_DEVICE(sci0,  "dev:f0",  SCI,      NULL);
777 AMBA_DEVICE(uart0, "dev:f1",  UART0,    NULL);
778 AMBA_DEVICE(uart1, "dev:f2",  UART1,    NULL);
779 AMBA_DEVICE(uart2, "dev:f3",  UART2,    NULL);
780 AMBA_DEVICE(ssp0,  "dev:f4",  SSP,      NULL);
781
782 static struct amba_device *amba_devs[] __initdata = {
783         &dmac_device,
784         &uart0_device,
785         &uart1_device,
786         &uart2_device,
787         &smc_device,
788         &mpmc_device,
789         &clcd_device,
790         &sctl_device,
791         &wdog_device,
792         &gpio0_device,
793         &gpio1_device,
794         &rtc_device,
795         &sci0_device,
796         &ssp0_device,
797         &aaci_device,
798         &mmc0_device,
799         &kmi0_device,
800         &kmi1_device,
801 };
802
803 #ifdef CONFIG_LEDS
804 #define VA_LEDS_BASE (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LED_OFFSET)
805
806 static void versatile_leds_event(led_event_t ledevt)
807 {
808         unsigned long flags;
809         u32 val;
810
811         local_irq_save(flags);
812         val = readl(VA_LEDS_BASE);
813
814         switch (ledevt) {
815         case led_idle_start:
816                 val = val & ~VERSATILE_SYS_LED0;
817                 break;
818
819         case led_idle_end:
820                 val = val | VERSATILE_SYS_LED0;
821                 break;
822
823         case led_timer:
824                 val = val ^ VERSATILE_SYS_LED1;
825                 break;
826
827         case led_halted:
828                 val = 0;
829                 break;
830
831         default:
832                 break;
833         }
834
835         writel(val, VA_LEDS_BASE);
836         local_irq_restore(flags);
837 }
838 #endif  /* CONFIG_LEDS */
839
840 void __init versatile_init(void)
841 {
842         int i;
843
844         osc4_clk.vcoreg = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_OSCCLCD_OFFSET;
845
846         clkdev_add_table(lookups, ARRAY_SIZE(lookups));
847
848         platform_device_register(&versatile_flash_device);
849         platform_device_register(&versatile_i2c_device);
850         platform_device_register(&smc91x_device);
851
852         for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
853                 struct amba_device *d = amba_devs[i];
854                 amba_device_register(d, &iomem_resource);
855         }
856
857 #ifdef CONFIG_LEDS
858         leds_event = versatile_leds_event;
859 #endif
860 }
861
862 /*
863  * Where is the timer (VA)?
864  */
865 #define TIMER0_VA_BASE           __io_address(VERSATILE_TIMER0_1_BASE)
866 #define TIMER1_VA_BASE          (__io_address(VERSATILE_TIMER0_1_BASE) + 0x20)
867 #define TIMER2_VA_BASE           __io_address(VERSATILE_TIMER2_3_BASE)
868 #define TIMER3_VA_BASE          (__io_address(VERSATILE_TIMER2_3_BASE) + 0x20)
869
870 /*
871  * Set up timer interrupt, and return the current time in seconds.
872  */
873 static void __init versatile_timer_init(void)
874 {
875         u32 val;
876
877         /* 
878          * set clock frequency: 
879          *      VERSATILE_REFCLK is 32KHz
880          *      VERSATILE_TIMCLK is 1MHz
881          */
882         val = readl(__io_address(VERSATILE_SCTL_BASE));
883         writel((VERSATILE_TIMCLK << VERSATILE_TIMER1_EnSel) |
884                (VERSATILE_TIMCLK << VERSATILE_TIMER2_EnSel) | 
885                (VERSATILE_TIMCLK << VERSATILE_TIMER3_EnSel) |
886                (VERSATILE_TIMCLK << VERSATILE_TIMER4_EnSel) | val,
887                __io_address(VERSATILE_SCTL_BASE));
888
889         /*
890          * Initialise to a known state (all timers off)
891          */
892         writel(0, TIMER0_VA_BASE + TIMER_CTRL);
893         writel(0, TIMER1_VA_BASE + TIMER_CTRL);
894         writel(0, TIMER2_VA_BASE + TIMER_CTRL);
895         writel(0, TIMER3_VA_BASE + TIMER_CTRL);
896
897         sp804_clocksource_init(TIMER3_VA_BASE);
898         sp804_clockevents_init(TIMER0_VA_BASE, IRQ_TIMERINT0_1);
899 }
900
901 struct sys_timer versatile_timer = {
902         .init           = versatile_timer_init,
903 };
904