Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /***************************************************************************/ |
| 2 | |
| 3 | /* |
| 4 | * timers.c -- generic ColdFire hardware timer support. |
| 5 | * |
| 6 | * Copyright (C) 1999-2003, Greg Ungerer (gerg@snapgear.com) |
| 7 | */ |
| 8 | |
| 9 | /***************************************************************************/ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/sched.h> |
| 13 | #include <linux/param.h> |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/init.h> |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 16 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/irq.h> |
| 18 | #include <asm/traps.h> |
| 19 | #include <asm/machdep.h> |
| 20 | #include <asm/coldfire.h> |
| 21 | #include <asm/mcftimer.h> |
| 22 | #include <asm/mcfsim.h> |
| 23 | |
| 24 | /***************************************************************************/ |
| 25 | |
| 26 | /* |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 27 | * By default use timer1 as the system clock timer. |
| 28 | */ |
| 29 | #define TA(a) (MCF_MBAR + MCFTIMER_BASE1 + (a)) |
| 30 | |
| 31 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | * Default the timer and vector to use for ColdFire. Some ColdFire |
| 33 | * CPU's and some boards may want different. Their sub-architecture |
| 34 | * startup code (in config.c) can change these if they want. |
| 35 | */ |
| 36 | unsigned int mcf_timervector = 29; |
| 37 | unsigned int mcf_profilevector = 31; |
| 38 | unsigned int mcf_timerlevel = 5; |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | /* |
| 41 | * These provide the underlying interrupt vector support. |
| 42 | * Unfortunately it is a little different on each ColdFire. |
| 43 | */ |
| 44 | extern void mcf_settimericr(int timer, int level); |
| 45 | extern int mcf_timerirqpending(int timer); |
| 46 | |
| 47 | /***************************************************************************/ |
| 48 | |
| 49 | void coldfire_tick(void) |
| 50 | { |
| 51 | /* Reset the ColdFire timer */ |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 52 | __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, TA(MCFTIMER_TER)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | /***************************************************************************/ |
| 56 | |
| 57 | void coldfire_timer_init(irqreturn_t (*handler)(int, void *, struct pt_regs *)) |
| 58 | { |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 59 | __raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR)); |
| 60 | __raw_writew(((MCF_BUSCLK / 16) / HZ), TA(MCFTIMER_TRR)); |
| 61 | __raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 | |
| 62 | MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, TA(MCFTIMER_TMR)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | request_irq(mcf_timervector, handler, SA_INTERRUPT, "timer", NULL); |
| 65 | mcf_settimericr(1, mcf_timerlevel); |
| 66 | |
| 67 | #ifdef CONFIG_HIGHPROFILE |
| 68 | coldfire_profile_init(); |
| 69 | #endif |
| 70 | } |
| 71 | |
| 72 | /***************************************************************************/ |
| 73 | |
| 74 | unsigned long coldfire_timer_offset(void) |
| 75 | { |
| 76 | unsigned long trr, tcn, offset; |
| 77 | |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 78 | tcn = __raw_readw(TA(MCFTIMER_TCN)); |
| 79 | trr = __raw_readw(TA(MCFTIMER_TRR)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | offset = (tcn * (1000000 / HZ)) / trr; |
| 81 | |
| 82 | /* Check if we just wrapped the counters and maybe missed a tick */ |
| 83 | if ((offset < (1000000 / HZ / 2)) && mcf_timerirqpending(1)) |
| 84 | offset += 1000000 / HZ; |
| 85 | return offset; |
| 86 | } |
| 87 | |
| 88 | /***************************************************************************/ |
| 89 | #ifdef CONFIG_HIGHPROFILE |
| 90 | /***************************************************************************/ |
| 91 | |
| 92 | /* |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 93 | * By default use timer2 as the profiler clock timer. |
| 94 | */ |
| 95 | #define PA(a) (MCF_MBAR + MCFTIMER_BASE2 + (a)) |
| 96 | |
| 97 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | * Choose a reasonably fast profile timer. Make it an odd value to |
| 99 | * try and get good coverage of kernal operations. |
| 100 | */ |
| 101 | #define PROFILEHZ 1013 |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | /* |
| 104 | * Use the other timer to provide high accuracy profiling info. |
| 105 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | void coldfire_profile_tick(int irq, void *dummy, struct pt_regs *regs) |
| 107 | { |
| 108 | /* Reset ColdFire timer2 */ |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 109 | __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | if (current->pid) |
| 111 | profile_tick(CPU_PROFILING, regs); |
| 112 | } |
| 113 | |
| 114 | /***************************************************************************/ |
| 115 | |
| 116 | void coldfire_profile_init(void) |
| 117 | { |
| 118 | printk(KERN_INFO "PROFILE: lodging TIMER2 @ %dHz as profile timer\n", PROFILEHZ); |
| 119 | |
| 120 | /* Set up TIMER 2 as high speed profile clock */ |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 121 | __raw_writew(MCFTIMER_TMR_DISABLE, PA(MCFTIMER_TMR)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Greg Ungerer | 0b7ac8e | 2006-06-26 10:33:10 +1000 | [diff] [blame] | 123 | __raw_writew(((MCF_CLK / 16) / PROFILEHZ), PA(MCFTIMER_TRR)); |
| 124 | __raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 | |
| 125 | MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, PA(MCFTIMER_TMR)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
| 127 | request_irq(mcf_profilevector, coldfire_profile_tick, |
| 128 | (SA_INTERRUPT | IRQ_FLG_FAST), "profile timer", NULL); |
| 129 | mcf_settimericr(2, 7); |
| 130 | } |
| 131 | |
| 132 | /***************************************************************************/ |
| 133 | #endif /* CONFIG_HIGHPROFILE */ |
| 134 | /***************************************************************************/ |