mm: hugetlb: fix non-atomic enqueue of huge page
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-nuc93x / time.c
blob2f90f9dc6e300d698e1e7f0b9409565bc13021b7
1 /*
2 * linux/arch/arm/mach-nuc93x/time.c
4 * Copyright (c) 2009 Nuvoton technology corporation.
6 * Wan ZongShun <mcuos.com@gmail.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
15 #include <linux/kernel.h>
16 #include <linux/sched.h>
17 #include <linux/init.h>
18 #include <linux/interrupt.h>
19 #include <linux/err.h>
20 #include <linux/clk.h>
21 #include <linux/io.h>
22 #include <linux/leds.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/irq.h>
26 #include <asm/mach/time.h>
28 #include <mach/system.h>
29 #include <mach/map.h>
30 #include <mach/regs-timer.h>
32 #define RESETINT 0x01
33 #define PERIOD (0x01 << 27)
34 #define ONESHOT (0x00 << 27)
35 #define COUNTEN (0x01 << 30)
36 #define INTEN (0x01 << 29)
38 #define TICKS_PER_SEC 100
39 #define PRESCALE 0x63 /* Divider = prescale + 1 */
41 unsigned int timer0_load;
43 static unsigned long nuc93x_gettimeoffset(void)
45 return 0;
48 /*IRQ handler for the timer*/
50 static irqreturn_t nuc93x_timer_interrupt(int irq, void *dev_id)
52 timer_tick();
53 __raw_writel(0x01, REG_TISR); /* clear TIF0 */
54 return IRQ_HANDLED;
57 static struct irqaction nuc93x_timer_irq = {
58 .name = "nuc93x Timer Tick",
59 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
60 .handler = nuc93x_timer_interrupt,
63 /*Set up timer reg.*/
65 static void nuc93x_timer_setup(void)
67 struct clk *ck_ext = clk_get(NULL, "ext");
68 struct clk *ck_timer = clk_get(NULL, "timer");
69 unsigned int rate, val = 0;
71 BUG_ON(IS_ERR(ck_ext) || IS_ERR(ck_timer));
73 clk_enable(ck_timer);
74 rate = clk_get_rate(ck_ext);
75 clk_put(ck_ext);
76 rate = rate / (PRESCALE + 0x01);
78 /* set a known state */
79 __raw_writel(0x00, REG_TCSR0);
80 __raw_writel(RESETINT, REG_TISR);
82 timer0_load = (rate / TICKS_PER_SEC);
83 __raw_writel(timer0_load, REG_TICR0);
85 val |= (PERIOD | COUNTEN | INTEN | PRESCALE);;
86 __raw_writel(val, REG_TCSR0);
90 static void __init nuc93x_timer_init(void)
92 nuc93x_timer_setup();
93 setup_irq(IRQ_TIMER0, &nuc93x_timer_irq);
96 struct sys_timer nuc93x_timer = {
97 .init = nuc93x_timer_init,
98 .offset = nuc93x_gettimeoffset,
99 .resume = nuc93x_timer_setup