Merge branch 'release' of git://lm-sensors.org/kernel/mhoffman/hwmon-2.6
[pandora-kernel.git] / arch / mips / gt64120 / wrppmc / time.c
1 /*
2  * time.c: MIPS CPU Count/Compare timer hookup
3  *
4  * Author: Mark.Zhan, <rongkai.zhan@windriver.com>
5  *
6  * This file is subject to the terms and conditions of the GNU General Public
7  * License.  See the file "COPYING" in the main directory of this archive
8  * for more details.
9  *
10  * Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org)
11  * Copyright (C) 2006, Wind River System Inc.
12  */
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
15 #include <linux/irq.h>
16
17 #include <asm/gt64120.h>
18 #include <asm/time.h>
19
20 #define WRPPMC_CPU_CLK_FREQ 40000000 /* 40MHZ */
21
22 void __init plat_timer_setup(struct irqaction *irq)
23 {
24         /* Install ISR for timer interrupt */
25         setup_irq(WRPPMC_MIPS_TIMER_IRQ, irq);
26 }
27
28 /*
29  * Estimate CPU frequency.  Sets mips_hpt_frequency as a side-effect
30  *
31  * NOTE: We disable all GT64120 timers, and use MIPS processor internal
32  * timer as the source of kernel clock tick.
33  */
34 void __init plat_time_init(void)
35 {
36         /* Disable GT64120 timers */
37         GT_WRITE(GT_TC_CONTROL_OFS, 0x00);
38         GT_WRITE(GT_TC0_OFS, 0x00);
39         GT_WRITE(GT_TC1_OFS, 0x00);
40         GT_WRITE(GT_TC2_OFS, 0x00);
41         GT_WRITE(GT_TC3_OFS, 0x00);
42
43         /* Use MIPS compare/count internal timer */
44         mips_hpt_frequency = WRPPMC_CPU_CLK_FREQ;
45 }