Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-pxa/time.c |
| 3 | * |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 4 | * PXA clocksource, clockevents, and OST interrupt handlers. |
| 5 | * Copyright (c) 2007 by Bill Gatliff <bgat@billgatliff.com>. |
| 6 | * |
| 7 | * Derived from Nicolas Pitre's PXA timer handler Copyright (c) 2001 |
| 8 | * by MontaVista Software, Inc. (Nico, your code rocks!) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. |
| 13 | */ |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/kernel.h> |
| 16 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/interrupt.h> |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 18 | #include <linux/clockchips.h> |
Nicolas Pitre | 6c3a158 | 2007-08-17 16:55:22 +0100 | [diff] [blame] | 19 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Nicolas Pitre | 6c3a158 | 2007-08-17 16:55:22 +0100 | [diff] [blame] | 21 | #include <asm/div64.h> |
| 22 | #include <asm/cnt32_to_63.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/mach/irq.h> |
| 24 | #include <asm/mach/time.h> |
| 25 | #include <asm/arch/pxa-regs.h> |
Russell King | 08197f6 | 2007-09-01 21:12:50 +0100 | [diff] [blame] | 26 | #include <asm/mach-types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Nicolas Pitre | 6c3a158 | 2007-08-17 16:55:22 +0100 | [diff] [blame] | 28 | /* |
| 29 | * This is PXA's sched_clock implementation. This has a resolution |
| 30 | * of at least 308 ns and a maximum value of 208 days. |
| 31 | * |
| 32 | * The return value is guaranteed to be monotonic in that range as |
| 33 | * long as there is always less than 582 seconds between successive |
| 34 | * calls to sched_clock() which should always be the case in practice. |
| 35 | */ |
| 36 | |
| 37 | #define OSCR2NS_SCALE_FACTOR 10 |
| 38 | |
| 39 | static unsigned long oscr2ns_scale; |
| 40 | |
| 41 | static void __init set_oscr2ns_scale(unsigned long oscr_rate) |
| 42 | { |
| 43 | unsigned long long v = 1000000000ULL << OSCR2NS_SCALE_FACTOR; |
| 44 | do_div(v, oscr_rate); |
| 45 | oscr2ns_scale = v; |
| 46 | /* |
| 47 | * We want an even value to automatically clear the top bit |
| 48 | * returned by cnt32_to_63() without an additional run time |
| 49 | * instruction. So if the LSB is 1 then round it up. |
| 50 | */ |
| 51 | if (oscr2ns_scale & 1) |
| 52 | oscr2ns_scale++; |
| 53 | } |
| 54 | |
| 55 | unsigned long long sched_clock(void) |
| 56 | { |
| 57 | unsigned long long v = cnt32_to_63(OSCR); |
| 58 | return (v * oscr2ns_scale) >> OSCR2NS_SCALE_FACTOR; |
| 59 | } |
| 60 | |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | static irqreturn_t |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 63 | pxa_ost0_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
| 65 | int next_match; |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 66 | struct clock_event_device *c = dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 68 | if (c->mode == CLOCK_EVT_MODE_ONESHOT) { |
| 69 | /* Disarm the compare/match, signal the event. */ |
| 70 | OIER &= ~OIER_E0; |
| 71 | c->event_handler(c); |
| 72 | } else if (c->mode == CLOCK_EVT_MODE_PERIODIC) { |
| 73 | /* Call the event handler as many times as necessary |
| 74 | * to recover missed events, if any (if we update |
| 75 | * OSMR0 and OSCR0 is still ahead of us, we've missed |
| 76 | * the event). As we're dealing with that, re-arm the |
| 77 | * compare/match for the next event. |
| 78 | * |
| 79 | * HACK ALERT: |
| 80 | * |
| 81 | * There's a latency between the instruction that |
| 82 | * writes to OSMR0 and the actual commit to the |
| 83 | * physical hardware, because the CPU doesn't (have |
| 84 | * to) run at bus speed, there's a write buffer |
| 85 | * between the CPU and the bus, etc. etc. So if the |
| 86 | * target OSCR0 is "very close", to the OSMR0 load |
| 87 | * value, the update to OSMR0 might not get to the |
| 88 | * hardware in time and we'll miss that interrupt. |
| 89 | * |
| 90 | * To be safe, if the new OSMR0 is "very close" to the |
| 91 | * target OSCR0 value, we call the event_handler as |
| 92 | * though the event actually happened. According to |
| 93 | * Nico's comment in the previous version of this |
| 94 | * code, experience has shown that 6 OSCR ticks is |
| 95 | * "very close" but he went with 8. We will use 16, |
| 96 | * based on the results of testing on PXA270. |
| 97 | * |
| 98 | * To be doubly sure, we also tell clkevt via |
| 99 | * clockevents_register_device() not to ask for |
| 100 | * anything that might put us "very close". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | */ |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 102 | #define MIN_OSCR_DELTA 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | do { |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 104 | OSSR = OSSR_M0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | next_match = (OSMR0 += LATCH); |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 106 | c->event_handler(c); |
| 107 | } while (((signed long)(next_match - OSCR) <= MIN_OSCR_DELTA) |
| 108 | && (c->mode == CLOCK_EVT_MODE_PERIODIC)); |
| 109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | return IRQ_HANDLED; |
| 112 | } |
| 113 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 114 | static int |
| 115 | pxa_osmr0_set_next_event(unsigned long delta, struct clock_event_device *dev) |
| 116 | { |
| 117 | unsigned long irqflags; |
| 118 | |
| 119 | raw_local_irq_save(irqflags); |
| 120 | OSMR0 = OSCR + delta; |
| 121 | OSSR = OSSR_M0; |
| 122 | OIER |= OIER_E0; |
| 123 | raw_local_irq_restore(irqflags); |
| 124 | return 0; |
| 125 | } |
| 126 | |
| 127 | static void |
| 128 | pxa_osmr0_set_mode(enum clock_event_mode mode, struct clock_event_device *dev) |
| 129 | { |
| 130 | unsigned long irqflags; |
| 131 | |
| 132 | switch (mode) { |
| 133 | case CLOCK_EVT_MODE_PERIODIC: |
| 134 | raw_local_irq_save(irqflags); |
| 135 | OSMR0 = OSCR + LATCH; |
| 136 | OSSR = OSSR_M0; |
| 137 | OIER |= OIER_E0; |
| 138 | raw_local_irq_restore(irqflags); |
| 139 | break; |
| 140 | |
| 141 | case CLOCK_EVT_MODE_ONESHOT: |
| 142 | raw_local_irq_save(irqflags); |
| 143 | OIER &= ~OIER_E0; |
| 144 | raw_local_irq_restore(irqflags); |
| 145 | break; |
| 146 | |
| 147 | case CLOCK_EVT_MODE_UNUSED: |
| 148 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 149 | /* initializing, released, or preparing for suspend */ |
| 150 | raw_local_irq_save(irqflags); |
| 151 | OIER &= ~OIER_E0; |
| 152 | raw_local_irq_restore(irqflags); |
| 153 | break; |
Russell King | df43309 | 2007-10-27 15:15:49 +0100 | [diff] [blame^] | 154 | |
| 155 | case CLOCK_EVT_MODE_RESUME: |
| 156 | break; |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | |
| 160 | static struct clock_event_device ckevt_pxa_osmr0 = { |
| 161 | .name = "osmr0", |
| 162 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
| 163 | .shift = 32, |
| 164 | .rating = 200, |
| 165 | .cpumask = CPU_MASK_CPU0, |
| 166 | .set_next_event = pxa_osmr0_set_next_event, |
| 167 | .set_mode = pxa_osmr0_set_mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | }; |
| 169 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 170 | static cycle_t pxa_read_oscr(void) |
Sascha Hauer | c80204e | 2006-12-12 09:21:50 +0100 | [diff] [blame] | 171 | { |
| 172 | return OSCR; |
| 173 | } |
| 174 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 175 | static struct clocksource cksrc_pxa_oscr0 = { |
| 176 | .name = "oscr0", |
Sascha Hauer | c80204e | 2006-12-12 09:21:50 +0100 | [diff] [blame] | 177 | .rating = 200, |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 178 | .read = pxa_read_oscr, |
Sascha Hauer | c80204e | 2006-12-12 09:21:50 +0100 | [diff] [blame] | 179 | .mask = CLOCKSOURCE_MASK(32), |
| 180 | .shift = 20, |
Thomas Gleixner | c66699a | 2007-02-16 01:27:37 -0800 | [diff] [blame] | 181 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Sascha Hauer | c80204e | 2006-12-12 09:21:50 +0100 | [diff] [blame] | 182 | }; |
| 183 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 184 | static struct irqaction pxa_ost0_irq = { |
| 185 | .name = "ost0", |
| 186 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
| 187 | .handler = pxa_ost0_interrupt, |
| 188 | .dev_id = &ckevt_pxa_osmr0, |
| 189 | }; |
| 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | static void __init pxa_timer_init(void) |
| 192 | { |
Russell King | 08197f6 | 2007-09-01 21:12:50 +0100 | [diff] [blame] | 193 | unsigned long clock_tick_rate; |
| 194 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 195 | OIER = 0; |
| 196 | OSSR = OSSR_M0 | OSSR_M1 | OSSR_M2 | OSSR_M3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Russell King | 08197f6 | 2007-09-01 21:12:50 +0100 | [diff] [blame] | 198 | if (cpu_is_pxa21x() || cpu_is_pxa25x()) |
| 199 | clock_tick_rate = 3686400; |
| 200 | else if (machine_is_mainstone()) |
| 201 | clock_tick_rate = 3249600; |
| 202 | else |
| 203 | clock_tick_rate = 3250000; |
| 204 | |
| 205 | set_oscr2ns_scale(clock_tick_rate); |
Nicolas Pitre | 6c3a158 | 2007-08-17 16:55:22 +0100 | [diff] [blame] | 206 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 207 | ckevt_pxa_osmr0.mult = |
Russell King | 08197f6 | 2007-09-01 21:12:50 +0100 | [diff] [blame] | 208 | div_sc(clock_tick_rate, NSEC_PER_SEC, ckevt_pxa_osmr0.shift); |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 209 | ckevt_pxa_osmr0.max_delta_ns = |
| 210 | clockevent_delta2ns(0x7fffffff, &ckevt_pxa_osmr0); |
| 211 | ckevt_pxa_osmr0.min_delta_ns = |
| 212 | clockevent_delta2ns(MIN_OSCR_DELTA, &ckevt_pxa_osmr0) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 214 | cksrc_pxa_oscr0.mult = |
Russell King | 08197f6 | 2007-09-01 21:12:50 +0100 | [diff] [blame] | 215 | clocksource_hz2mult(clock_tick_rate, cksrc_pxa_oscr0.shift); |
Sascha Hauer | c80204e | 2006-12-12 09:21:50 +0100 | [diff] [blame] | 216 | |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 217 | setup_irq(IRQ_OST0, &pxa_ost0_irq); |
| 218 | |
| 219 | clocksource_register(&cksrc_pxa_oscr0); |
| 220 | clockevents_register_device(&ckevt_pxa_osmr0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | #ifdef CONFIG_PM |
| 224 | static unsigned long osmr[4], oier; |
| 225 | |
| 226 | static void pxa_timer_suspend(void) |
| 227 | { |
| 228 | osmr[0] = OSMR0; |
| 229 | osmr[1] = OSMR1; |
| 230 | osmr[2] = OSMR2; |
| 231 | osmr[3] = OSMR3; |
| 232 | oier = OIER; |
| 233 | } |
| 234 | |
| 235 | static void pxa_timer_resume(void) |
| 236 | { |
| 237 | OSMR0 = osmr[0]; |
| 238 | OSMR1 = osmr[1]; |
| 239 | OSMR2 = osmr[2]; |
| 240 | OSMR3 = osmr[3]; |
| 241 | OIER = oier; |
| 242 | |
| 243 | /* |
Bill Gatliff | 7bbb18c | 2007-07-21 03:39:36 +0100 | [diff] [blame] | 244 | * OSCR0 is the system timer, which has to increase |
| 245 | * monotonically until it rolls over in hardware. The value |
| 246 | * (OSMR0 - LATCH) is OSCR0 at the most recent system tick, |
| 247 | * which is a handy value to restore to OSCR0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | */ |
| 249 | OSCR = OSMR0 - LATCH; |
| 250 | } |
| 251 | #else |
| 252 | #define pxa_timer_suspend NULL |
| 253 | #define pxa_timer_resume NULL |
| 254 | #endif |
| 255 | |
| 256 | struct sys_timer pxa_timer = { |
| 257 | .init = pxa_timer_init, |
| 258 | .suspend = pxa_timer_suspend, |
| 259 | .resume = pxa_timer_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | }; |