2 * linux/arch/arm/mach-integrator/integrator_cp.c
4 * Copyright (C) 2003 Deep Blue Solutions Ltd
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.
10 #include <linux/types.h>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/list.h>
14 #include <linux/platform_device.h>
15 #include <linux/dma-mapping.h>
16 #include <linux/string.h>
17 #include <linux/sysdev.h>
18 #include <linux/amba/bus.h>
19 #include <linux/amba/kmi.h>
20 #include <linux/amba/clcd.h>
21 #include <linux/amba/mmci.h>
23 #include <linux/gfp.h>
24 #include <linux/clkdev.h>
26 #include <mach/hardware.h>
27 #include <mach/platform.h>
29 #include <asm/setup.h>
30 #include <asm/mach-types.h>
31 #include <asm/hardware/arm_timer.h>
32 #include <asm/hardware/icst.h>
37 #include <asm/mach/arch.h>
38 #include <asm/mach/flash.h>
39 #include <asm/mach/irq.h>
40 #include <asm/mach/map.h>
41 #include <asm/mach/time.h>
43 #include <asm/hardware/timer-sp.h>
47 #define INTCP_PA_FLASH_BASE 0x24000000
48 #define INTCP_FLASH_SIZE SZ_32M
50 #define INTCP_PA_CLCD_BASE 0xc0000000
52 #define INTCP_VA_CIC_BASE IO_ADDRESS(INTEGRATOR_HDR_BASE + 0x40)
53 #define INTCP_VA_PIC_BASE IO_ADDRESS(INTEGRATOR_IC_BASE)
54 #define INTCP_VA_SIC_BASE IO_ADDRESS(INTEGRATOR_CP_SIC_BASE)
56 #define INTCP_ETH_SIZE 0x10
58 #define INTCP_VA_CTRL_BASE IO_ADDRESS(INTEGRATOR_CP_CTL_BASE)
59 #define INTCP_FLASHPROG 0x04
60 #define CINTEGRATOR_FLASHPROG_FLVPPEN (1 << 0)
61 #define CINTEGRATOR_FLASHPROG_FLWREN (1 << 1)
65 * f1000000 10000000 Core module registers
66 * f1100000 11000000 System controller registers
67 * f1200000 12000000 EBI registers
68 * f1300000 13000000 Counter/Timer
69 * f1400000 14000000 Interrupt controller
70 * f1600000 16000000 UART 0
71 * f1700000 17000000 UART 1
72 * f1a00000 1a000000 Debug LEDs
73 * fc900000 c9000000 GPIO
74 * fca00000 ca000000 SIC
75 * fcb00000 cb000000 CP system control
78 static struct map_desc intcp_io_desc
[] __initdata
= {
80 .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE
),
81 .pfn
= __phys_to_pfn(INTEGRATOR_HDR_BASE
),
85 .virtual = IO_ADDRESS(INTEGRATOR_SC_BASE
),
86 .pfn
= __phys_to_pfn(INTEGRATOR_SC_BASE
),
90 .virtual = IO_ADDRESS(INTEGRATOR_EBI_BASE
),
91 .pfn
= __phys_to_pfn(INTEGRATOR_EBI_BASE
),
95 .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE
),
96 .pfn
= __phys_to_pfn(INTEGRATOR_CT_BASE
),
100 .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE
),
101 .pfn
= __phys_to_pfn(INTEGRATOR_IC_BASE
),
105 .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE
),
106 .pfn
= __phys_to_pfn(INTEGRATOR_UART0_BASE
),
110 .virtual = IO_ADDRESS(INTEGRATOR_UART1_BASE
),
111 .pfn
= __phys_to_pfn(INTEGRATOR_UART1_BASE
),
115 .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE
),
116 .pfn
= __phys_to_pfn(INTEGRATOR_DBG_BASE
),
120 .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE
),
121 .pfn
= __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE
),
125 .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE
),
126 .pfn
= __phys_to_pfn(INTEGRATOR_CP_SIC_BASE
),
130 .virtual = IO_ADDRESS(INTEGRATOR_CP_CTL_BASE
),
131 .pfn
= __phys_to_pfn(INTEGRATOR_CP_CTL_BASE
),
137 static void __init
intcp_map_io(void)
139 iotable_init(intcp_io_desc
, ARRAY_SIZE(intcp_io_desc
));
142 #define cic_writel __raw_writel
143 #define cic_readl __raw_readl
144 #define pic_writel __raw_writel
145 #define pic_readl __raw_readl
146 #define sic_writel __raw_writel
147 #define sic_readl __raw_readl
149 static void cic_mask_irq(struct irq_data
*d
)
151 unsigned int irq
= d
->irq
- IRQ_CIC_START
;
152 cic_writel(1 << irq
, INTCP_VA_CIC_BASE
+ IRQ_ENABLE_CLEAR
);
155 static void cic_unmask_irq(struct irq_data
*d
)
157 unsigned int irq
= d
->irq
- IRQ_CIC_START
;
158 cic_writel(1 << irq
, INTCP_VA_CIC_BASE
+ IRQ_ENABLE_SET
);
161 static struct irq_chip cic_chip
= {
163 .irq_ack
= cic_mask_irq
,
164 .irq_mask
= cic_mask_irq
,
165 .irq_unmask
= cic_unmask_irq
,
168 static void pic_mask_irq(struct irq_data
*d
)
170 unsigned int irq
= d
->irq
- IRQ_PIC_START
;
171 pic_writel(1 << irq
, INTCP_VA_PIC_BASE
+ IRQ_ENABLE_CLEAR
);
174 static void pic_unmask_irq(struct irq_data
*d
)
176 unsigned int irq
= d
->irq
- IRQ_PIC_START
;
177 pic_writel(1 << irq
, INTCP_VA_PIC_BASE
+ IRQ_ENABLE_SET
);
180 static struct irq_chip pic_chip
= {
182 .irq_ack
= pic_mask_irq
,
183 .irq_mask
= pic_mask_irq
,
184 .irq_unmask
= pic_unmask_irq
,
187 static void sic_mask_irq(struct irq_data
*d
)
189 unsigned int irq
= d
->irq
- IRQ_SIC_START
;
190 sic_writel(1 << irq
, INTCP_VA_SIC_BASE
+ IRQ_ENABLE_CLEAR
);
193 static void sic_unmask_irq(struct irq_data
*d
)
195 unsigned int irq
= d
->irq
- IRQ_SIC_START
;
196 sic_writel(1 << irq
, INTCP_VA_SIC_BASE
+ IRQ_ENABLE_SET
);
199 static struct irq_chip sic_chip
= {
201 .irq_ack
= sic_mask_irq
,
202 .irq_mask
= sic_mask_irq
,
203 .irq_unmask
= sic_unmask_irq
,
207 sic_handle_irq(unsigned int irq
, struct irq_desc
*desc
)
209 unsigned long status
= sic_readl(INTCP_VA_SIC_BASE
+ IRQ_STATUS
);
212 do_bad_IRQ(irq
, desc
);
217 irq
= ffs(status
) - 1;
218 status
&= ~(1 << irq
);
220 irq
+= IRQ_SIC_START
;
222 generic_handle_irq(irq
);
226 static void __init
intcp_init_irq(void)
231 * Disable all interrupt sources
233 pic_writel(0xffffffff, INTCP_VA_PIC_BASE
+ IRQ_ENABLE_CLEAR
);
234 pic_writel(0xffffffff, INTCP_VA_PIC_BASE
+ FIQ_ENABLE_CLEAR
);
236 for (i
= IRQ_PIC_START
; i
<= IRQ_PIC_END
; i
++) {
241 set_irq_chip(i
, &pic_chip
);
242 set_irq_handler(i
, handle_level_irq
);
243 set_irq_flags(i
, IRQF_VALID
| IRQF_PROBE
);
246 cic_writel(0xffffffff, INTCP_VA_CIC_BASE
+ IRQ_ENABLE_CLEAR
);
247 cic_writel(0xffffffff, INTCP_VA_CIC_BASE
+ FIQ_ENABLE_CLEAR
);
249 for (i
= IRQ_CIC_START
; i
<= IRQ_CIC_END
; i
++) {
250 set_irq_chip(i
, &cic_chip
);
251 set_irq_handler(i
, handle_level_irq
);
252 set_irq_flags(i
, IRQF_VALID
);
255 sic_writel(0x00000fff, INTCP_VA_SIC_BASE
+ IRQ_ENABLE_CLEAR
);
256 sic_writel(0x00000fff, INTCP_VA_SIC_BASE
+ FIQ_ENABLE_CLEAR
);
258 for (i
= IRQ_SIC_START
; i
<= IRQ_SIC_END
; i
++) {
259 set_irq_chip(i
, &sic_chip
);
260 set_irq_handler(i
, handle_level_irq
);
261 set_irq_flags(i
, IRQF_VALID
| IRQF_PROBE
);
264 set_irq_chained_handler(IRQ_CP_CPPLDINT
, sic_handle_irq
);
270 #define CM_LOCK (__io_address(INTEGRATOR_HDR_BASE)+INTEGRATOR_HDR_LOCK_OFFSET)
271 #define CM_AUXOSC (__io_address(INTEGRATOR_HDR_BASE)+0x1c)
273 static const struct icst_params cp_auxvco_params
= {
275 .vco_max
= ICST525_VCO_MAX_5V
,
276 .vco_min
= ICST525_VCO_MIN
,
281 .s2div
= icst525_s2div
,
282 .idx2s
= icst525_idx2s
,
285 static void cp_auxvco_set(struct clk
*clk
, struct icst_vco vco
)
289 val
= readl(clk
->vcoreg
) & ~0x7ffff;
290 val
|= vco
.v
| (vco
.r
<< 9) | (vco
.s
<< 16);
292 writel(0xa05f, CM_LOCK
);
293 writel(val
, clk
->vcoreg
);
297 static const struct clk_ops cp_auxclk_ops
= {
298 .round
= icst_clk_round
,
300 .setvco
= cp_auxvco_set
,
303 static struct clk cp_auxclk
= {
304 .ops
= &cp_auxclk_ops
,
305 .params
= &cp_auxvco_params
,
309 static struct clk_lookup cp_lookups
[] = {
319 static int intcp_flash_init(void)
323 val
= readl(INTCP_VA_CTRL_BASE
+ INTCP_FLASHPROG
);
324 val
|= CINTEGRATOR_FLASHPROG_FLWREN
;
325 writel(val
, INTCP_VA_CTRL_BASE
+ INTCP_FLASHPROG
);
330 static void intcp_flash_exit(void)
334 val
= readl(INTCP_VA_CTRL_BASE
+ INTCP_FLASHPROG
);
335 val
&= ~(CINTEGRATOR_FLASHPROG_FLVPPEN
|CINTEGRATOR_FLASHPROG_FLWREN
);
336 writel(val
, INTCP_VA_CTRL_BASE
+ INTCP_FLASHPROG
);
339 static void intcp_flash_set_vpp(int on
)
343 val
= readl(INTCP_VA_CTRL_BASE
+ INTCP_FLASHPROG
);
345 val
|= CINTEGRATOR_FLASHPROG_FLVPPEN
;
347 val
&= ~CINTEGRATOR_FLASHPROG_FLVPPEN
;
348 writel(val
, INTCP_VA_CTRL_BASE
+ INTCP_FLASHPROG
);
351 static struct flash_platform_data intcp_flash_data
= {
352 .map_name
= "cfi_probe",
354 .init
= intcp_flash_init
,
355 .exit
= intcp_flash_exit
,
356 .set_vpp
= intcp_flash_set_vpp
,
359 static struct resource intcp_flash_resource
= {
360 .start
= INTCP_PA_FLASH_BASE
,
361 .end
= INTCP_PA_FLASH_BASE
+ INTCP_FLASH_SIZE
- 1,
362 .flags
= IORESOURCE_MEM
,
365 static struct platform_device intcp_flash_device
= {
369 .platform_data
= &intcp_flash_data
,
372 .resource
= &intcp_flash_resource
,
375 static struct resource smc91x_resources
[] = {
377 .start
= INTEGRATOR_CP_ETH_BASE
,
378 .end
= INTEGRATOR_CP_ETH_BASE
+ INTCP_ETH_SIZE
- 1,
379 .flags
= IORESOURCE_MEM
,
382 .start
= IRQ_CP_ETHINT
,
383 .end
= IRQ_CP_ETHINT
,
384 .flags
= IORESOURCE_IRQ
,
388 static struct platform_device smc91x_device
= {
391 .num_resources
= ARRAY_SIZE(smc91x_resources
),
392 .resource
= smc91x_resources
,
395 static struct platform_device
*intcp_devs
[] __initdata
= {
401 * It seems that the card insertion interrupt remains active after
402 * we've acknowledged it. We therefore ignore the interrupt, and
403 * rely on reading it from the SIC. This also means that we must
404 * clear the latched interrupt.
406 static unsigned int mmc_status(struct device
*dev
)
408 unsigned int status
= readl(IO_ADDRESS(0xca000000 + 4));
409 writel(8, IO_ADDRESS(INTEGRATOR_CP_CTL_BASE
+ 8));
414 static struct mmci_platform_data mmc_data
= {
415 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
416 .status
= mmc_status
,
421 static struct amba_device mmc_device
= {
423 .init_name
= "mb:1c",
424 .platform_data
= &mmc_data
,
427 .start
= INTEGRATOR_CP_MMC_BASE
,
428 .end
= INTEGRATOR_CP_MMC_BASE
+ SZ_4K
- 1,
429 .flags
= IORESOURCE_MEM
,
431 .irq
= { IRQ_CP_MMCIINT0
, IRQ_CP_MMCIINT1
},
435 static struct amba_device aaci_device
= {
437 .init_name
= "mb:1d",
440 .start
= INTEGRATOR_CP_AACI_BASE
,
441 .end
= INTEGRATOR_CP_AACI_BASE
+ SZ_4K
- 1,
442 .flags
= IORESOURCE_MEM
,
444 .irq
= { IRQ_CP_AACIINT
, NO_IRQ
},
452 static struct clcd_panel vga
= {
466 .vmode
= FB_VMODE_NONINTERLACED
,
470 .tim2
= TIM2_BCD
| TIM2_IPC
,
471 .cntl
= CNTL_LCDTFT
| CNTL_LCDVCOMP(1),
477 * Ensure VGA is selected.
479 static void cp_clcd_enable(struct clcd_fb
*fb
)
483 if (fb
->fb
.var
.bits_per_pixel
<= 8)
484 val
= CM_CTRL_LCDMUXSEL_VGA_8421BPP
;
485 else if (fb
->fb
.var
.bits_per_pixel
<= 16)
486 val
= CM_CTRL_LCDMUXSEL_VGA_16BPP
487 | CM_CTRL_LCDEN0
| CM_CTRL_LCDEN1
488 | CM_CTRL_STATIC1
| CM_CTRL_STATIC2
;
490 val
= 0; /* no idea for this, don't trust the docs */
492 cm_control(CM_CTRL_LCDMUXSEL_MASK
|
498 CM_CTRL_n24BITEN
, val
);
501 static unsigned long framesize
= SZ_1M
;
503 static int cp_clcd_setup(struct clcd_fb
*fb
)
509 fb
->fb
.screen_base
= dma_alloc_writecombine(&fb
->dev
->dev
, framesize
,
511 if (!fb
->fb
.screen_base
) {
512 printk(KERN_ERR
"CLCD: unable to map framebuffer\n");
516 fb
->fb
.fix
.smem_start
= dma
;
517 fb
->fb
.fix
.smem_len
= framesize
;
522 static int cp_clcd_mmap(struct clcd_fb
*fb
, struct vm_area_struct
*vma
)
524 return dma_mmap_writecombine(&fb
->dev
->dev
, vma
,
526 fb
->fb
.fix
.smem_start
,
527 fb
->fb
.fix
.smem_len
);
530 static void cp_clcd_remove(struct clcd_fb
*fb
)
532 dma_free_writecombine(&fb
->dev
->dev
, fb
->fb
.fix
.smem_len
,
533 fb
->fb
.screen_base
, fb
->fb
.fix
.smem_start
);
536 static struct clcd_board clcd_data
= {
537 .name
= "Integrator/CP",
538 .check
= clcdfb_check
,
539 .decode
= clcdfb_decode
,
540 .enable
= cp_clcd_enable
,
541 .setup
= cp_clcd_setup
,
542 .mmap
= cp_clcd_mmap
,
543 .remove
= cp_clcd_remove
,
546 static struct amba_device clcd_device
= {
548 .init_name
= "mb:c0",
549 .coherent_dma_mask
= ~0,
550 .platform_data
= &clcd_data
,
553 .start
= INTCP_PA_CLCD_BASE
,
554 .end
= INTCP_PA_CLCD_BASE
+ SZ_4K
- 1,
555 .flags
= IORESOURCE_MEM
,
558 .irq
= { IRQ_CP_CLCDCINT
, NO_IRQ
},
562 static struct amba_device
*amba_devs
[] __initdata
= {
568 static void __init
intcp_init(void)
572 clkdev_add_table(cp_lookups
, ARRAY_SIZE(cp_lookups
));
573 platform_add_devices(intcp_devs
, ARRAY_SIZE(intcp_devs
));
575 for (i
= 0; i
< ARRAY_SIZE(amba_devs
); i
++) {
576 struct amba_device
*d
= amba_devs
[i
];
577 amba_device_register(d
, &iomem_resource
);
581 #define TIMER0_VA_BASE __io_address(INTEGRATOR_TIMER0_BASE)
582 #define TIMER1_VA_BASE __io_address(INTEGRATOR_TIMER1_BASE)
583 #define TIMER2_VA_BASE __io_address(INTEGRATOR_TIMER2_BASE)
585 static void __init
intcp_timer_init(void)
587 writel(0, TIMER0_VA_BASE
+ TIMER_CTRL
);
588 writel(0, TIMER1_VA_BASE
+ TIMER_CTRL
);
589 writel(0, TIMER2_VA_BASE
+ TIMER_CTRL
);
591 sp804_clocksource_init(TIMER2_VA_BASE
);
592 sp804_clockevents_init(TIMER1_VA_BASE
, IRQ_TIMERINT1
);
595 static struct sys_timer cp_timer
= {
596 .init
= intcp_timer_init
,
599 MACHINE_START(CINTEGRATOR
, "ARM-IntegratorCP")
600 /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
601 .boot_params
= 0x00000100,
602 .map_io
= intcp_map_io
,
603 .reserve
= integrator_reserve
,
604 .init_irq
= intcp_init_irq
,
606 .init_machine
= intcp_init
,