2 * linux/arch/arm/mach-realview/core.c
4 * Copyright (C) 1999 - 2003 ARM Limited
5 * Copyright (C) 2000 Deep Blue Solutions Ltd
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.
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.
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
21 #include <linux/init.h>
22 #include <linux/platform_device.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/sysdev.h>
25 #include <linux/interrupt.h>
26 #include <linux/amba/bus.h>
27 #include <linux/amba/clcd.h>
28 #include <linux/clocksource.h>
29 #include <linux/clockchips.h>
32 #include <asm/system.h>
33 #include <mach/hardware.h>
36 #include <asm/mach-types.h>
37 #include <asm/hardware/arm_timer.h>
38 #include <asm/hardware/icst307.h>
40 #include <asm/mach/arch.h>
41 #include <asm/mach/flash.h>
42 #include <asm/mach/irq.h>
43 #include <asm/mach/map.h>
44 #include <asm/mach/mmc.h>
46 #include <asm/hardware/gic.h>
51 #define REALVIEW_REFCOUNTER (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_24MHz_OFFSET)
53 /* used by entry-macro.S */
54 void __iomem *gic_cpu_base_addr;
57 * This is the RealView sched_clock implementation. This has
58 * a resolution of 41.7ns, and a maximum value of about 179s.
60 unsigned long long sched_clock(void)
64 v = (unsigned long long)readl(REALVIEW_REFCOUNTER) * 125;
71 #define REALVIEW_FLASHCTRL (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_FLASH_OFFSET)
73 static int realview_flash_init(void)
77 val = __raw_readl(REALVIEW_FLASHCTRL);
78 val &= ~REALVIEW_FLASHPROG_FLVPPEN;
79 __raw_writel(val, REALVIEW_FLASHCTRL);
84 static void realview_flash_exit(void)
88 val = __raw_readl(REALVIEW_FLASHCTRL);
89 val &= ~REALVIEW_FLASHPROG_FLVPPEN;
90 __raw_writel(val, REALVIEW_FLASHCTRL);
93 static void realview_flash_set_vpp(int on)
97 val = __raw_readl(REALVIEW_FLASHCTRL);
99 val |= REALVIEW_FLASHPROG_FLVPPEN;
101 val &= ~REALVIEW_FLASHPROG_FLVPPEN;
102 __raw_writel(val, REALVIEW_FLASHCTRL);
105 static struct flash_platform_data realview_flash_data = {
106 .map_name = "cfi_probe",
108 .init = realview_flash_init,
109 .exit = realview_flash_exit,
110 .set_vpp = realview_flash_set_vpp,
113 struct platform_device realview_flash_device = {
117 .platform_data = &realview_flash_data,
121 int realview_flash_register(struct resource *res, u32 num)
123 realview_flash_device.resource = res;
124 realview_flash_device.num_resources = num;
125 return platform_device_register(&realview_flash_device);
128 static struct resource realview_i2c_resource = {
129 .start = REALVIEW_I2C_BASE,
130 .end = REALVIEW_I2C_BASE + SZ_4K - 1,
131 .flags = IORESOURCE_MEM,
134 struct platform_device realview_i2c_device = {
135 .name = "versatile-i2c",
138 .resource = &realview_i2c_resource,
141 #define REALVIEW_SYSMCI (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_MCI_OFFSET)
143 static unsigned int realview_mmc_status(struct device *dev)
145 struct amba_device *adev = container_of(dev, struct amba_device, dev);
148 if (adev->res.start == REALVIEW_MMCI0_BASE)
153 return readl(REALVIEW_SYSMCI) & mask;
156 struct mmc_platform_data realview_mmc0_plat_data = {
157 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
158 .status = realview_mmc_status,
161 struct mmc_platform_data realview_mmc1_plat_data = {
162 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
163 .status = realview_mmc_status,
169 static const struct icst307_params realview_oscvco_params = {
178 static void realview_oscvco_set(struct clk *clk, struct icst307_vco vco)
180 void __iomem *sys_lock = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_LOCK_OFFSET;
181 void __iomem *sys_osc;
184 if (machine_is_realview_pb1176())
185 sys_osc = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_OSC0_OFFSET;
187 sys_osc = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_OSC4_OFFSET;
189 val = readl(sys_osc) & ~0x7ffff;
190 val |= vco.v | (vco.r << 9) | (vco.s << 16);
192 writel(0xa05f, sys_lock);
193 writel(val, sys_osc);
197 struct clk realview_clcd_clk = {
199 .params = &realview_oscvco_params,
200 .setvco = realview_oscvco_set,
206 #define SYS_CLCD_NLCDIOON (1 << 2)
207 #define SYS_CLCD_VDDPOSSWITCH (1 << 3)
208 #define SYS_CLCD_PWR3V5SWITCH (1 << 4)
209 #define SYS_CLCD_ID_MASK (0x1f << 8)
210 #define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8)
211 #define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8)
212 #define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8)
213 #define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8)
214 #define SYS_CLCD_ID_VGA (0x1f << 8)
216 static struct clcd_panel vga = {
230 .vmode = FB_VMODE_NONINTERLACED,
234 .tim2 = TIM2_BCD | TIM2_IPC,
235 .cntl = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
239 static struct clcd_panel sanyo_3_8_in = {
241 .name = "Sanyo QVGA",
253 .vmode = FB_VMODE_NONINTERLACED,
258 .cntl = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
262 static struct clcd_panel sanyo_2_5_in = {
264 .name = "Sanyo QVGA Portrait",
275 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
276 .vmode = FB_VMODE_NONINTERLACED,
280 .tim2 = TIM2_IVS | TIM2_IHS | TIM2_IPC,
281 .cntl = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
285 static struct clcd_panel epson_2_2_in = {
287 .name = "Epson QCIF",
299 .vmode = FB_VMODE_NONINTERLACED,
303 .tim2 = TIM2_BCD | TIM2_IPC,
304 .cntl = CNTL_LCDTFT | CNTL_LCDVCOMP(1),
309 * Detect which LCD panel is connected, and return the appropriate
310 * clcd_panel structure. Note: we do not have any information on
311 * the required timings for the 8.4in panel, so we presently assume
314 static struct clcd_panel *realview_clcd_panel(void)
316 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
317 struct clcd_panel *panel = &vga;
320 val = readl(sys_clcd) & SYS_CLCD_ID_MASK;
321 if (val == SYS_CLCD_ID_SANYO_3_8)
322 panel = &sanyo_3_8_in;
323 else if (val == SYS_CLCD_ID_SANYO_2_5)
324 panel = &sanyo_2_5_in;
325 else if (val == SYS_CLCD_ID_EPSON_2_2)
326 panel = &epson_2_2_in;
327 else if (val == SYS_CLCD_ID_VGA)
330 printk(KERN_ERR "CLCD: unknown LCD panel ID 0x%08x, using VGA\n",
339 * Disable all display connectors on the interface module.
341 static void realview_clcd_disable(struct clcd_fb *fb)
343 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
346 val = readl(sys_clcd);
347 val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
348 writel(val, sys_clcd);
352 * Enable the relevant connector on the interface module.
354 static void realview_clcd_enable(struct clcd_fb *fb)
356 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
362 val = readl(sys_clcd);
363 val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
364 writel(val, sys_clcd);
367 static unsigned long framesize = SZ_1M;
369 static int realview_clcd_setup(struct clcd_fb *fb)
373 fb->panel = realview_clcd_panel();
375 fb->fb.screen_base = dma_alloc_writecombine(&fb->dev->dev, framesize,
377 if (!fb->fb.screen_base) {
378 printk(KERN_ERR "CLCD: unable to map framebuffer\n");
382 fb->fb.fix.smem_start = dma;
383 fb->fb.fix.smem_len = framesize;
388 static int realview_clcd_mmap(struct clcd_fb *fb, struct vm_area_struct *vma)
390 return dma_mmap_writecombine(&fb->dev->dev, vma,
392 fb->fb.fix.smem_start,
393 fb->fb.fix.smem_len);
396 static void realview_clcd_remove(struct clcd_fb *fb)
398 dma_free_writecombine(&fb->dev->dev, fb->fb.fix.smem_len,
399 fb->fb.screen_base, fb->fb.fix.smem_start);
402 struct clcd_board clcd_plat_data = {
404 .check = clcdfb_check,
405 .decode = clcdfb_decode,
406 .disable = realview_clcd_disable,
407 .enable = realview_clcd_enable,
408 .setup = realview_clcd_setup,
409 .mmap = realview_clcd_mmap,
410 .remove = realview_clcd_remove,
414 #define VA_LEDS_BASE (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_LED_OFFSET)
416 void realview_leds_event(led_event_t ledevt)
421 local_irq_save(flags);
422 val = readl(VA_LEDS_BASE);
426 val = val & ~REALVIEW_SYS_LED0;
430 val = val | REALVIEW_SYS_LED0;
434 val = val ^ REALVIEW_SYS_LED1;
445 writel(val, VA_LEDS_BASE);
446 local_irq_restore(flags);
448 #endif /* CONFIG_LEDS */
451 * Where is the timer (VA)?
453 void __iomem *timer0_va_base;
454 void __iomem *timer1_va_base;
455 void __iomem *timer2_va_base;
456 void __iomem *timer3_va_base;
459 * How long is the timer interval?
461 #define TIMER_INTERVAL (TICKS_PER_uSEC * mSEC_10)
462 #if TIMER_INTERVAL >= 0x100000
463 #define TIMER_RELOAD (TIMER_INTERVAL >> 8)
464 #define TIMER_DIVISOR (TIMER_CTRL_DIV256)
465 #define TICKS2USECS(x) (256 * (x) / TICKS_PER_uSEC)
466 #elif TIMER_INTERVAL >= 0x10000
467 #define TIMER_RELOAD (TIMER_INTERVAL >> 4) /* Divide by 16 */
468 #define TIMER_DIVISOR (TIMER_CTRL_DIV16)
469 #define TICKS2USECS(x) (16 * (x) / TICKS_PER_uSEC)
471 #define TIMER_RELOAD (TIMER_INTERVAL)
472 #define TIMER_DIVISOR (TIMER_CTRL_DIV1)
473 #define TICKS2USECS(x) ((x) / TICKS_PER_uSEC)
476 static void timer_set_mode(enum clock_event_mode mode,
477 struct clock_event_device *clk)
482 case CLOCK_EVT_MODE_PERIODIC:
483 writel(TIMER_RELOAD, timer0_va_base + TIMER_LOAD);
485 ctrl = TIMER_CTRL_PERIODIC;
486 ctrl |= TIMER_CTRL_32BIT | TIMER_CTRL_IE | TIMER_CTRL_ENABLE;
488 case CLOCK_EVT_MODE_ONESHOT:
489 /* period set, and timer enabled in 'next_event' hook */
490 ctrl = TIMER_CTRL_ONESHOT;
491 ctrl |= TIMER_CTRL_32BIT | TIMER_CTRL_IE;
493 case CLOCK_EVT_MODE_UNUSED:
494 case CLOCK_EVT_MODE_SHUTDOWN:
499 writel(ctrl, timer0_va_base + TIMER_CTRL);
502 static int timer_set_next_event(unsigned long evt,
503 struct clock_event_device *unused)
505 unsigned long ctrl = readl(timer0_va_base + TIMER_CTRL);
507 writel(evt, timer0_va_base + TIMER_LOAD);
508 writel(ctrl | TIMER_CTRL_ENABLE, timer0_va_base + TIMER_CTRL);
513 static struct clock_event_device timer0_clockevent = {
516 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
517 .set_mode = timer_set_mode,
518 .set_next_event = timer_set_next_event,
520 .cpumask = CPU_MASK_ALL,
523 static void __init realview_clockevents_init(unsigned int timer_irq)
525 timer0_clockevent.irq = timer_irq;
526 timer0_clockevent.mult =
527 div_sc(1000000, NSEC_PER_SEC, timer0_clockevent.shift);
528 timer0_clockevent.max_delta_ns =
529 clockevent_delta2ns(0xffffffff, &timer0_clockevent);
530 timer0_clockevent.min_delta_ns =
531 clockevent_delta2ns(0xf, &timer0_clockevent);
533 clockevents_register_device(&timer0_clockevent);
537 * IRQ handler for the timer
539 static irqreturn_t realview_timer_interrupt(int irq, void *dev_id)
541 struct clock_event_device *evt = &timer0_clockevent;
543 /* clear the interrupt */
544 writel(1, timer0_va_base + TIMER_INTCLR);
546 evt->event_handler(evt);
551 static struct irqaction realview_timer_irq = {
552 .name = "RealView Timer Tick",
553 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
554 .handler = realview_timer_interrupt,
557 static cycle_t realview_get_cycles(void)
559 return ~readl(timer3_va_base + TIMER_VALUE);
562 static struct clocksource clocksource_realview = {
565 .read = realview_get_cycles,
566 .mask = CLOCKSOURCE_MASK(32),
568 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
571 static void __init realview_clocksource_init(void)
573 /* setup timer 0 as free-running clocksource */
574 writel(0, timer3_va_base + TIMER_CTRL);
575 writel(0xffffffff, timer3_va_base + TIMER_LOAD);
576 writel(0xffffffff, timer3_va_base + TIMER_VALUE);
577 writel(TIMER_CTRL_32BIT | TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC,
578 timer3_va_base + TIMER_CTRL);
580 clocksource_realview.mult =
581 clocksource_khz2mult(1000, clocksource_realview.shift);
582 clocksource_register(&clocksource_realview);
586 * Set up the clock source and clock events devices
588 void __init realview_timer_init(unsigned int timer_irq)
592 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
594 * The dummy clock device has to be registered before the main device
595 * so that the latter will broadcast the clock events
597 local_timer_setup(smp_processor_id());
601 * set clock frequency:
602 * REALVIEW_REFCLK is 32KHz
603 * REALVIEW_TIMCLK is 1MHz
605 val = readl(__io_address(REALVIEW_SCTL_BASE));
606 writel((REALVIEW_TIMCLK << REALVIEW_TIMER1_EnSel) |
607 (REALVIEW_TIMCLK << REALVIEW_TIMER2_EnSel) |
608 (REALVIEW_TIMCLK << REALVIEW_TIMER3_EnSel) |
609 (REALVIEW_TIMCLK << REALVIEW_TIMER4_EnSel) | val,
610 __io_address(REALVIEW_SCTL_BASE));
613 * Initialise to a known state (all timers off)
615 writel(0, timer0_va_base + TIMER_CTRL);
616 writel(0, timer1_va_base + TIMER_CTRL);
617 writel(0, timer2_va_base + TIMER_CTRL);
618 writel(0, timer3_va_base + TIMER_CTRL);
621 * Make irqs happen for the system timer
623 setup_irq(timer_irq, &realview_timer_irq);
625 realview_clocksource_init();
626 realview_clockevents_init(timer_irq);