blob: 05db40e3c4f75a7fcf661718269cdcf330d7f9cc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-integrator/integrator_cp.c
3 *
4 * Copyright (C) 2003 Deep Blue Solutions Ltd
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License.
9 */
10#include <linux/types.h>
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/list.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010014#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
17#include <linux/sysdev.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000018#include <linux/amba/bus.h>
19#include <linux/amba/kmi.h>
20#include <linux/amba/clcd.h>
Linus Walleij6ef297f2009-09-22 14:29:36 +010021#include <linux/amba/mmci.h>
Russell Kingfced80c2008-09-06 12:10:45 +010022#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Russell Kingd72fbdf2008-11-08 20:08:08 +000025#include <asm/clkdev.h>
26#include <mach/clkdev.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/hardware.h>
Russell Kinga285edc2010-01-14 19:59:37 +000028#include <mach/platform.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/irq.h>
30#include <asm/setup.h>
31#include <asm/mach-types.h>
Russell King5a463342010-01-16 23:52:12 +000032#include <asm/hardware/arm_timer.h>
Russell Kingc5a0adb2010-01-16 20:16:10 +000033#include <asm/hardware/icst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/cm.h>
36#include <mach/lm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/mach/arch.h>
39#include <asm/mach/flash.h>
40#include <asm/mach/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/mach/map.h>
42#include <asm/mach/time.h>
43
Russell King5a463342010-01-16 23:52:12 +000044#include <plat/timer-sp.h>
45
Russell King98c672c2010-05-22 18:18:57 +010046#include "common.h"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define INTCP_PA_FLASH_BASE 0x24000000
49#define INTCP_FLASH_SIZE SZ_32M
50
51#define INTCP_PA_CLCD_BASE 0xc0000000
52
Russell Kingb830b9b2010-01-17 20:45:12 +000053#define INTCP_VA_CIC_BASE IO_ADDRESS(INTEGRATOR_HDR_BASE + 0x40)
Catalin Marinas365f7a42009-07-24 12:34:57 +010054#define INTCP_VA_PIC_BASE IO_ADDRESS(INTEGRATOR_IC_BASE)
Russell Kingda7ba952010-01-17 19:59:58 +000055#define INTCP_VA_SIC_BASE IO_ADDRESS(INTEGRATOR_CP_SIC_BASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define INTCP_ETH_SIZE 0x10
58
Russell Kingda7ba952010-01-17 19:59:58 +000059#define INTCP_VA_CTRL_BASE IO_ADDRESS(INTEGRATOR_CP_CTL_BASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define INTCP_FLASHPROG 0x04
61#define CINTEGRATOR_FLASHPROG_FLVPPEN (1 << 0)
62#define CINTEGRATOR_FLASHPROG_FLWREN (1 << 1)
63
64/*
65 * Logical Physical
66 * f1000000 10000000 Core module registers
67 * f1100000 11000000 System controller registers
68 * f1200000 12000000 EBI registers
69 * f1300000 13000000 Counter/Timer
70 * f1400000 14000000 Interrupt controller
71 * f1600000 16000000 UART 0
72 * f1700000 17000000 UART 1
73 * f1a00000 1a000000 Debug LEDs
Russell Kingda7ba952010-01-17 19:59:58 +000074 * fc900000 c9000000 GPIO
75 * fca00000 ca000000 SIC
76 * fcb00000 cb000000 CP system control
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
78
79static struct map_desc intcp_io_desc[] __initdata = {
Deepak Saxenac8d27292005-10-28 15:19:10 +010080 {
81 .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE),
82 .pfn = __phys_to_pfn(INTEGRATOR_HDR_BASE),
83 .length = SZ_4K,
84 .type = MT_DEVICE
85 }, {
86 .virtual = IO_ADDRESS(INTEGRATOR_SC_BASE),
87 .pfn = __phys_to_pfn(INTEGRATOR_SC_BASE),
88 .length = SZ_4K,
89 .type = MT_DEVICE
90 }, {
91 .virtual = IO_ADDRESS(INTEGRATOR_EBI_BASE),
92 .pfn = __phys_to_pfn(INTEGRATOR_EBI_BASE),
93 .length = SZ_4K,
94 .type = MT_DEVICE
95 }, {
96 .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE),
97 .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE),
98 .length = SZ_4K,
99 .type = MT_DEVICE
100 }, {
101 .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE),
102 .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE),
103 .length = SZ_4K,
104 .type = MT_DEVICE
105 }, {
106 .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE),
107 .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE),
108 .length = SZ_4K,
109 .type = MT_DEVICE
110 }, {
111 .virtual = IO_ADDRESS(INTEGRATOR_UART1_BASE),
112 .pfn = __phys_to_pfn(INTEGRATOR_UART1_BASE),
113 .length = SZ_4K,
114 .type = MT_DEVICE
115 }, {
116 .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE),
117 .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE),
118 .length = SZ_4K,
119 .type = MT_DEVICE
120 }, {
Russell Kingda7ba952010-01-17 19:59:58 +0000121 .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE),
122 .pfn = __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE),
Deepak Saxenac8d27292005-10-28 15:19:10 +0100123 .length = SZ_4K,
124 .type = MT_DEVICE
125 }, {
Russell Kingda7ba952010-01-17 19:59:58 +0000126 .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE),
127 .pfn = __phys_to_pfn(INTEGRATOR_CP_SIC_BASE),
Deepak Saxenac8d27292005-10-28 15:19:10 +0100128 .length = SZ_4K,
129 .type = MT_DEVICE
130 }, {
Russell Kingda7ba952010-01-17 19:59:58 +0000131 .virtual = IO_ADDRESS(INTEGRATOR_CP_CTL_BASE),
132 .pfn = __phys_to_pfn(INTEGRATOR_CP_CTL_BASE),
Deepak Saxenac8d27292005-10-28 15:19:10 +0100133 .length = SZ_4K,
134 .type = MT_DEVICE
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
138static void __init intcp_map_io(void)
139{
140 iotable_init(intcp_io_desc, ARRAY_SIZE(intcp_io_desc));
141}
142
143#define cic_writel __raw_writel
144#define cic_readl __raw_readl
145#define pic_writel __raw_writel
146#define pic_readl __raw_readl
147#define sic_writel __raw_writel
148#define sic_readl __raw_readl
149
150static void cic_mask_irq(unsigned int irq)
151{
152 irq -= IRQ_CIC_START;
153 cic_writel(1 << irq, INTCP_VA_CIC_BASE + IRQ_ENABLE_CLEAR);
154}
155
156static void cic_unmask_irq(unsigned int irq)
157{
158 irq -= IRQ_CIC_START;
159 cic_writel(1 << irq, INTCP_VA_CIC_BASE + IRQ_ENABLE_SET);
160}
161
David Brownell38c677c2006-08-01 22:26:25 +0100162static struct irq_chip cic_chip = {
163 .name = "CIC",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 .ack = cic_mask_irq,
165 .mask = cic_mask_irq,
166 .unmask = cic_unmask_irq,
167};
168
169static void pic_mask_irq(unsigned int irq)
170{
171 irq -= IRQ_PIC_START;
172 pic_writel(1 << irq, INTCP_VA_PIC_BASE + IRQ_ENABLE_CLEAR);
173}
174
175static void pic_unmask_irq(unsigned int irq)
176{
177 irq -= IRQ_PIC_START;
178 pic_writel(1 << irq, INTCP_VA_PIC_BASE + IRQ_ENABLE_SET);
179}
180
David Brownell38c677c2006-08-01 22:26:25 +0100181static struct irq_chip pic_chip = {
182 .name = "PIC",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 .ack = pic_mask_irq,
184 .mask = pic_mask_irq,
185 .unmask = pic_unmask_irq,
186};
187
188static void sic_mask_irq(unsigned int irq)
189{
190 irq -= IRQ_SIC_START;
191 sic_writel(1 << irq, INTCP_VA_SIC_BASE + IRQ_ENABLE_CLEAR);
192}
193
194static void sic_unmask_irq(unsigned int irq)
195{
196 irq -= IRQ_SIC_START;
197 sic_writel(1 << irq, INTCP_VA_SIC_BASE + IRQ_ENABLE_SET);
198}
199
David Brownell38c677c2006-08-01 22:26:25 +0100200static struct irq_chip sic_chip = {
201 .name = "SIC",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 .ack = sic_mask_irq,
203 .mask = sic_mask_irq,
204 .unmask = sic_unmask_irq,
205};
206
207static void
Russell King10dd5ce2006-11-23 11:41:32 +0000208sic_handle_irq(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 unsigned long status = sic_readl(INTCP_VA_SIC_BASE + IRQ_STATUS);
211
212 if (status == 0) {
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700213 do_bad_IRQ(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return;
215 }
216
217 do {
218 irq = ffs(status) - 1;
219 status &= ~(1 << irq);
220
221 irq += IRQ_SIC_START;
222
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100223 generic_handle_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 } while (status);
225}
226
227static void __init intcp_init_irq(void)
228{
229 unsigned int i;
230
231 /*
232 * Disable all interrupt sources
233 */
234 pic_writel(0xffffffff, INTCP_VA_PIC_BASE + IRQ_ENABLE_CLEAR);
235 pic_writel(0xffffffff, INTCP_VA_PIC_BASE + FIQ_ENABLE_CLEAR);
236
237 for (i = IRQ_PIC_START; i <= IRQ_PIC_END; i++) {
238 if (i == 11)
239 i = 22;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (i == 29)
241 break;
242 set_irq_chip(i, &pic_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000243 set_irq_handler(i, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
245 }
246
247 cic_writel(0xffffffff, INTCP_VA_CIC_BASE + IRQ_ENABLE_CLEAR);
248 cic_writel(0xffffffff, INTCP_VA_CIC_BASE + FIQ_ENABLE_CLEAR);
249
250 for (i = IRQ_CIC_START; i <= IRQ_CIC_END; i++) {
251 set_irq_chip(i, &cic_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000252 set_irq_handler(i, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 set_irq_flags(i, IRQF_VALID);
254 }
255
256 sic_writel(0x00000fff, INTCP_VA_SIC_BASE + IRQ_ENABLE_CLEAR);
257 sic_writel(0x00000fff, INTCP_VA_SIC_BASE + FIQ_ENABLE_CLEAR);
258
259 for (i = IRQ_SIC_START; i <= IRQ_SIC_END; i++) {
260 set_irq_chip(i, &sic_chip);
Russell King10dd5ce2006-11-23 11:41:32 +0000261 set_irq_handler(i, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
263 }
264
Russell King56f1319e2006-06-10 12:42:12 +0100265 set_irq_chained_handler(IRQ_CP_CPPLDINT, sic_handle_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268/*
269 * Clock handling
270 */
Russell Kingd1914c72010-01-14 20:09:34 +0000271#define CM_LOCK (__io_address(INTEGRATOR_HDR_BASE)+INTEGRATOR_HDR_LOCK_OFFSET)
272#define CM_AUXOSC (__io_address(INTEGRATOR_HDR_BASE)+0x1c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Russell King39c0cb02010-01-16 16:27:28 +0000274static const struct icst_params cp_auxvco_params = {
Russell King64fceb12010-01-16 17:28:44 +0000275 .ref = 24000000,
Russell King4de2edb2010-01-16 18:08:47 +0000276 .vco_max = ICST525_VCO_MAX_5V,
Russell Kinge73a46a2010-01-16 19:49:39 +0000277 .vco_min = ICST525_VCO_MIN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 .vd_min = 8,
279 .vd_max = 263,
280 .rd_min = 3,
281 .rd_max = 65,
Russell King232eaf72010-01-16 19:46:19 +0000282 .s2div = icst525_s2div,
283 .idx2s = icst525_idx2s,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
Russell King39c0cb02010-01-16 16:27:28 +0000286static void cp_auxvco_set(struct clk *clk, struct icst_vco vco)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 u32 val;
289
Russell Kingd1914c72010-01-14 20:09:34 +0000290 val = readl(clk->vcoreg) & ~0x7ffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 val |= vco.v | (vco.r << 9) | (vco.s << 16);
292
293 writel(0xa05f, CM_LOCK);
Russell Kingd1914c72010-01-14 20:09:34 +0000294 writel(val, clk->vcoreg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 writel(0, CM_LOCK);
296}
297
Russell King9bf5b2e2010-03-01 16:18:39 +0000298static const struct clk_ops cp_auxclk_ops = {
299 .round = icst_clk_round,
300 .set = icst_clk_set,
301 .setvco = cp_auxvco_set,
302};
303
Russell Kingd72fbdf2008-11-08 20:08:08 +0000304static struct clk cp_auxclk = {
Russell King9bf5b2e2010-03-01 16:18:39 +0000305 .ops = &cp_auxclk_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .params = &cp_auxvco_params,
Russell Kingd1914c72010-01-14 20:09:34 +0000307 .vcoreg = CM_AUXOSC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308};
309
Russell Kingd72fbdf2008-11-08 20:08:08 +0000310static struct clk_lookup cp_lookups[] = {
311 { /* CLCD */
312 .dev_id = "mb:c0",
313 .clk = &cp_auxclk,
314 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
317/*
318 * Flash handling.
319 */
320static int intcp_flash_init(void)
321{
322 u32 val;
323
324 val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
325 val |= CINTEGRATOR_FLASHPROG_FLWREN;
326 writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
327
328 return 0;
329}
330
331static void intcp_flash_exit(void)
332{
333 u32 val;
334
335 val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
336 val &= ~(CINTEGRATOR_FLASHPROG_FLVPPEN|CINTEGRATOR_FLASHPROG_FLWREN);
337 writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
338}
339
340static void intcp_flash_set_vpp(int on)
341{
342 u32 val;
343
344 val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
345 if (on)
346 val |= CINTEGRATOR_FLASHPROG_FLVPPEN;
347 else
348 val &= ~CINTEGRATOR_FLASHPROG_FLVPPEN;
349 writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
350}
351
352static struct flash_platform_data intcp_flash_data = {
353 .map_name = "cfi_probe",
354 .width = 4,
355 .init = intcp_flash_init,
356 .exit = intcp_flash_exit,
357 .set_vpp = intcp_flash_set_vpp,
358};
359
360static struct resource intcp_flash_resource = {
361 .start = INTCP_PA_FLASH_BASE,
362 .end = INTCP_PA_FLASH_BASE + INTCP_FLASH_SIZE - 1,
363 .flags = IORESOURCE_MEM,
364};
365
366static struct platform_device intcp_flash_device = {
367 .name = "armflash",
368 .id = 0,
369 .dev = {
370 .platform_data = &intcp_flash_data,
371 },
372 .num_resources = 1,
373 .resource = &intcp_flash_resource,
374};
375
376static struct resource smc91x_resources[] = {
377 [0] = {
Russell Kingda7ba952010-01-17 19:59:58 +0000378 .start = INTEGRATOR_CP_ETH_BASE,
379 .end = INTEGRATOR_CP_ETH_BASE + INTCP_ETH_SIZE - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 .flags = IORESOURCE_MEM,
381 },
382 [1] = {
383 .start = IRQ_CP_ETHINT,
384 .end = IRQ_CP_ETHINT,
385 .flags = IORESOURCE_IRQ,
386 },
387};
388
389static struct platform_device smc91x_device = {
390 .name = "smc91x",
391 .id = 0,
392 .num_resources = ARRAY_SIZE(smc91x_resources),
393 .resource = smc91x_resources,
394};
395
396static struct platform_device *intcp_devs[] __initdata = {
397 &intcp_flash_device,
398 &smc91x_device,
399};
400
401/*
402 * It seems that the card insertion interrupt remains active after
403 * we've acknowledged it. We therefore ignore the interrupt, and
404 * rely on reading it from the SIC. This also means that we must
405 * clear the latched interrupt.
406 */
407static unsigned int mmc_status(struct device *dev)
408{
Russell Kingb830b9b2010-01-17 20:45:12 +0000409 unsigned int status = readl(IO_ADDRESS(0xca000000 + 4));
410 writel(8, IO_ADDRESS(INTEGRATOR_CP_CTL_BASE + 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 return status & 8;
413}
414
Linus Walleij6ef297f2009-09-22 14:29:36 +0100415static struct mmci_platform_data mmc_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
417 .status = mmc_status,
Russell King7fb2bbf2009-07-09 15:15:12 +0100418 .gpio_wp = -1,
419 .gpio_cd = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
422static struct amba_device mmc_device = {
423 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800424 .init_name = "mb:1c",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 .platform_data = &mmc_data,
426 },
427 .res = {
Russell Kingda7ba952010-01-17 19:59:58 +0000428 .start = INTEGRATOR_CP_MMC_BASE,
429 .end = INTEGRATOR_CP_MMC_BASE + SZ_4K - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 .flags = IORESOURCE_MEM,
431 },
432 .irq = { IRQ_CP_MMCIINT0, IRQ_CP_MMCIINT1 },
433 .periphid = 0,
434};
435
436static struct amba_device aaci_device = {
437 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800438 .init_name = "mb:1d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 },
440 .res = {
Russell Kingda7ba952010-01-17 19:59:58 +0000441 .start = INTEGRATOR_CP_AACI_BASE,
442 .end = INTEGRATOR_CP_AACI_BASE + SZ_4K - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .flags = IORESOURCE_MEM,
444 },
445 .irq = { IRQ_CP_AACIINT, NO_IRQ },
446 .periphid = 0,
447};
448
449
450/*
451 * CLCD support
452 */
453static struct clcd_panel vga = {
454 .mode = {
455 .name = "VGA",
456 .refresh = 60,
457 .xres = 640,
458 .yres = 480,
459 .pixclock = 39721,
460 .left_margin = 40,
461 .right_margin = 24,
462 .upper_margin = 32,
463 .lower_margin = 11,
464 .hsync_len = 96,
465 .vsync_len = 2,
466 .sync = 0,
467 .vmode = FB_VMODE_NONINTERLACED,
468 },
469 .width = -1,
470 .height = -1,
471 .tim2 = TIM2_BCD | TIM2_IPC,
472 .cntl = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
473 .bpp = 16,
474 .grayscale = 0,
475};
476
477/*
478 * Ensure VGA is selected.
479 */
480static void cp_clcd_enable(struct clcd_fb *fb)
481{
Russell King4774e222005-04-30 23:32:38 +0100482 u32 val;
483
484 if (fb->fb.var.bits_per_pixel <= 8)
485 val = CM_CTRL_LCDMUXSEL_VGA_8421BPP;
486 else if (fb->fb.var.bits_per_pixel <= 16)
Catalin Marinas14e54cc2006-01-28 20:54:50 +0000487 val = CM_CTRL_LCDMUXSEL_VGA_16BPP
488 | CM_CTRL_LCDEN0 | CM_CTRL_LCDEN1
489 | CM_CTRL_STATIC1 | CM_CTRL_STATIC2;
Russell King4774e222005-04-30 23:32:38 +0100490 else
491 val = 0; /* no idea for this, don't trust the docs */
492
493 cm_control(CM_CTRL_LCDMUXSEL_MASK|
494 CM_CTRL_LCDEN0|
495 CM_CTRL_LCDEN1|
496 CM_CTRL_STATIC1|
497 CM_CTRL_STATIC2|
498 CM_CTRL_STATIC|
499 CM_CTRL_n24BITEN, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502static unsigned long framesize = SZ_1M;
503
504static int cp_clcd_setup(struct clcd_fb *fb)
505{
506 dma_addr_t dma;
507
508 fb->panel = &vga;
509
510 fb->fb.screen_base = dma_alloc_writecombine(&fb->dev->dev, framesize,
511 &dma, GFP_KERNEL);
512 if (!fb->fb.screen_base) {
513 printk(KERN_ERR "CLCD: unable to map framebuffer\n");
514 return -ENOMEM;
515 }
516
517 fb->fb.fix.smem_start = dma;
518 fb->fb.fix.smem_len = framesize;
519
520 return 0;
521}
522
523static int cp_clcd_mmap(struct clcd_fb *fb, struct vm_area_struct *vma)
524{
525 return dma_mmap_writecombine(&fb->dev->dev, vma,
526 fb->fb.screen_base,
527 fb->fb.fix.smem_start,
528 fb->fb.fix.smem_len);
529}
530
531static void cp_clcd_remove(struct clcd_fb *fb)
532{
533 dma_free_writecombine(&fb->dev->dev, fb->fb.fix.smem_len,
534 fb->fb.screen_base, fb->fb.fix.smem_start);
535}
536
537static struct clcd_board clcd_data = {
538 .name = "Integrator/CP",
539 .check = clcdfb_check,
540 .decode = clcdfb_decode,
541 .enable = cp_clcd_enable,
542 .setup = cp_clcd_setup,
543 .mmap = cp_clcd_mmap,
544 .remove = cp_clcd_remove,
545};
546
547static struct amba_device clcd_device = {
548 .dev = {
Kay Sievers1d559e22009-01-06 10:44:43 -0800549 .init_name = "mb:c0",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 .coherent_dma_mask = ~0,
551 .platform_data = &clcd_data,
552 },
553 .res = {
554 .start = INTCP_PA_CLCD_BASE,
555 .end = INTCP_PA_CLCD_BASE + SZ_4K - 1,
556 .flags = IORESOURCE_MEM,
557 },
558 .dma_mask = ~0,
559 .irq = { IRQ_CP_CLCDCINT, NO_IRQ },
560 .periphid = 0,
561};
562
563static struct amba_device *amba_devs[] __initdata = {
564 &mmc_device,
565 &aaci_device,
566 &clcd_device,
567};
568
569static void __init intcp_init(void)
570{
571 int i;
572
Russell King0a0300d2010-01-12 12:28:00 +0000573 clkdev_add_table(cp_lookups, ARRAY_SIZE(cp_lookups));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 platform_add_devices(intcp_devs, ARRAY_SIZE(intcp_devs));
575
576 for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
577 struct amba_device *d = amba_devs[i];
578 amba_device_register(d, &iomem_resource);
579 }
580}
581
Russell King5a463342010-01-16 23:52:12 +0000582#define TIMER0_VA_BASE __io_address(INTEGRATOR_TIMER0_BASE)
583#define TIMER1_VA_BASE __io_address(INTEGRATOR_TIMER1_BASE)
584#define TIMER2_VA_BASE __io_address(INTEGRATOR_TIMER2_BASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586static void __init intcp_timer_init(void)
587{
Russell King5a463342010-01-16 23:52:12 +0000588 writel(0, TIMER0_VA_BASE + TIMER_CTRL);
589 writel(0, TIMER1_VA_BASE + TIMER_CTRL);
590 writel(0, TIMER2_VA_BASE + TIMER_CTRL);
591
592 sp804_clocksource_init(TIMER2_VA_BASE);
593 sp804_clockevents_init(TIMER1_VA_BASE, IRQ_TIMERINT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596static struct sys_timer cp_timer = {
597 .init = intcp_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598};
599
600MACHINE_START(CINTEGRATOR, "ARM-IntegratorCP")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100601 /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
Russell Kinge9dea0c2005-07-03 17:38:58 +0100602 .phys_io = 0x16000000,
603 .io_pg_offst = ((0xf1600000) >> 18) & 0xfffc,
604 .boot_params = 0x00000100,
605 .map_io = intcp_map_io,
Russell King98c672c2010-05-22 18:18:57 +0100606 .reserve = integrator_reserve,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100607 .init_irq = intcp_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 .timer = &cp_timer,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100609 .init_machine = intcp_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610MACHINE_END