GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-pnx4008 / time.c
bloba021e298e529cad285a7088476f43b29a2563742
1 /*
2 * arch/arm/mach-pnx4008/time.c
4 * PNX4008 Timers
6 * Authors: Vitaly Wool, Dmitry Chigirev, Grigory Tolstolytkin <source@mvista.com>
8 * 2005 (c) MontaVista Software, Inc. This file is licensed under
9 * the terms of the GNU General Public License version 2. This program
10 * is licensed "as is" without any warranty of any kind, whether express
11 * or implied.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/interrupt.h>
18 #include <linux/sched.h>
19 #include <linux/spinlock.h>
20 #include <linux/module.h>
21 #include <linux/kallsyms.h>
22 #include <linux/time.h>
23 #include <linux/timex.h>
24 #include <linux/irq.h>
25 #include <linux/io.h>
27 #include <asm/system.h>
28 #include <mach/hardware.h>
29 #include <asm/leds.h>
30 #include <asm/mach/time.h>
31 #include <asm/errno.h>
33 #include "time.h"
35 /*! Note: all timers are UPCOUNTING */
37 /*!
38 * Returns number of us since last clock interrupt. Note that interrupts
39 * will have been disabled by do_gettimeoffset()
41 static unsigned long pnx4008_gettimeoffset(void)
43 u32 ticks_to_match =
44 __raw_readl(HSTIM_MATCH0) - __raw_readl(HSTIM_COUNTER);
45 u32 elapsed = LATCH - ticks_to_match;
46 return (elapsed * (tick_nsec / 1000)) / LATCH;
49 /*!
50 * IRQ handler for the timer
52 static irqreturn_t pnx4008_timer_interrupt(int irq, void *dev_id)
54 if (__raw_readl(HSTIM_INT) & MATCH0_INT) {
56 do {
57 timer_tick();
60 * this algorithm takes care of possible delay
61 * for this interrupt handling longer than a normal
62 * timer period
64 __raw_writel(__raw_readl(HSTIM_MATCH0) + LATCH,
65 HSTIM_MATCH0);
66 __raw_writel(MATCH0_INT, HSTIM_INT); /* clear interrupt */
69 * The goal is to keep incrementing HSTIM_MATCH0
70 * register until HSTIM_MATCH0 indicates time after
71 * what HSTIM_COUNTER indicates.
73 } while ((signed)
74 (__raw_readl(HSTIM_MATCH0) -
75 __raw_readl(HSTIM_COUNTER)) < 0);
78 return IRQ_HANDLED;
81 static struct irqaction pnx4008_timer_irq = {
82 .name = "PNX4008 Tick Timer",
83 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
84 .handler = pnx4008_timer_interrupt
87 /*!
88 * Set up timer and timer interrupt.
90 static __init void pnx4008_setup_timer(void)
92 __raw_writel(RESET_COUNT, MSTIM_CTRL);
93 while (__raw_readl(MSTIM_COUNTER)) ; /* wait for reset to complete. 100% guarantee event */
94 __raw_writel(0, MSTIM_CTRL); /* stop the timer */
95 __raw_writel(0, MSTIM_MCTRL);
97 __raw_writel(RESET_COUNT, HSTIM_CTRL);
98 while (__raw_readl(HSTIM_COUNTER)) ; /* wait for reset to complete. 100% guarantee event */
99 __raw_writel(0, HSTIM_CTRL);
100 __raw_writel(0, HSTIM_MCTRL);
101 __raw_writel(0, HSTIM_CCR);
102 __raw_writel(12, HSTIM_PMATCH); /* scale down to 1 MHZ */
103 __raw_writel(LATCH, HSTIM_MATCH0);
104 __raw_writel(MR0_INT, HSTIM_MCTRL);
106 setup_irq(HSTIMER_INT, &pnx4008_timer_irq);
108 __raw_writel(COUNT_ENAB | DEBUG_EN, HSTIM_CTRL); /*start timer, stop when JTAG active */
111 /* Timer Clock Control in PM register */
112 #define TIMCLK_CTRL_REG IO_ADDRESS((PNX4008_PWRMAN_BASE + 0xBC))
113 #define WATCHDOG_CLK_EN 1
114 #define TIMER_CLK_EN 2 /* HS and MS timers? */
116 static u32 timclk_ctrl_reg_save;
118 void pnx4008_timer_suspend(void)
120 timclk_ctrl_reg_save = __raw_readl(TIMCLK_CTRL_REG);
121 __raw_writel(0, TIMCLK_CTRL_REG); /* disable timers */
124 void pnx4008_timer_resume(void)
126 __raw_writel(timclk_ctrl_reg_save, TIMCLK_CTRL_REG); /* enable timers */
129 struct sys_timer pnx4008_timer = {
130 .init = pnx4008_setup_timer,
131 .offset = pnx4008_gettimeoffset,
132 .suspend = pnx4008_timer_suspend,
133 .resume = pnx4008_timer_resume,