blob: 293e40aeaf29d2b7ce2bc3c8b33477b2a1bef4cc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/arm/mach-pxa/time.c
3 *
Bill Gatliff7bbb18c2007-07-21 03:39:36 +01004 * 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 Torvalds1da177e2005-04-16 15:20:36 -07009 *
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 Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/interrupt.h>
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010018#include <linux/clockchips.h>
Nicolas Pitre6c3a1582007-08-17 16:55:22 +010019#include <linux/sched.h>
David Howellsb4f151f2008-09-24 17:48:26 +010020#include <linux/cnt32_to_63.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Nicolas Pitre6c3a1582007-08-17 16:55:22 +010022#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/mach/irq.h>
24#include <asm/mach/time.h>
Eric Miao5bf3df32009-01-20 11:04:16 +080025#include <mach/regs-ost.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Nicolas Pitre6c3a1582007-08-17 16:55:22 +010027/*
28 * This is PXA's sched_clock implementation. This has a resolution
29 * of at least 308 ns and a maximum value of 208 days.
30 *
31 * The return value is guaranteed to be monotonic in that range as
32 * long as there is always less than 582 seconds between successive
33 * calls to sched_clock() which should always be the case in practice.
34 */
35
36#define OSCR2NS_SCALE_FACTOR 10
37
38static unsigned long oscr2ns_scale;
39
40static void __init set_oscr2ns_scale(unsigned long oscr_rate)
41{
42 unsigned long long v = 1000000000ULL << OSCR2NS_SCALE_FACTOR;
43 do_div(v, oscr_rate);
44 oscr2ns_scale = v;
45 /*
46 * We want an even value to automatically clear the top bit
47 * returned by cnt32_to_63() without an additional run time
48 * instruction. So if the LSB is 1 then round it up.
49 */
50 if (oscr2ns_scale & 1)
51 oscr2ns_scale++;
52}
53
54unsigned long long sched_clock(void)
55{
56 unsigned long long v = cnt32_to_63(OSCR);
57 return (v * oscr2ns_scale) >> OSCR2NS_SCALE_FACTOR;
58}
59
60
Russell Kinga88264c2007-11-12 22:45:16 +000061#define MIN_OSCR_DELTA 16
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static irqreturn_t
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010064pxa_ost0_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010066 struct clock_event_device *c = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Russell Kinga88264c2007-11-12 22:45:16 +000068 /* Disarm the compare/match, signal the event. */
69 OIER &= ~OIER_E0;
70 OSSR = OSSR_M0;
71 c->event_handler(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 return IRQ_HANDLED;
74}
75
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010076static int
77pxa_osmr0_set_next_event(unsigned long delta, struct clock_event_device *dev)
78{
Uwe Kleine-Königa602f0f2009-12-17 12:43:29 +010079 unsigned long next, oscr;
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010080
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010081 OIER |= OIER_E0;
Russell King91bc51d2007-11-08 23:35:46 +000082 next = OSCR + delta;
83 OSMR0 = next;
84 oscr = OSCR;
Russell King91bc51d2007-11-08 23:35:46 +000085
86 return (signed)(next - oscr) <= MIN_OSCR_DELTA ? -ETIME : 0;
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010087}
88
89static void
90pxa_osmr0_set_mode(enum clock_event_mode mode, struct clock_event_device *dev)
91{
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010092 switch (mode) {
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010093 case CLOCK_EVT_MODE_ONESHOT:
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010094 OIER &= ~OIER_E0;
Russell King91bc51d2007-11-08 23:35:46 +000095 OSSR = OSSR_M0;
Bill Gatliff7bbb18c2007-07-21 03:39:36 +010096 break;
97
98 case CLOCK_EVT_MODE_UNUSED:
99 case CLOCK_EVT_MODE_SHUTDOWN:
100 /* initializing, released, or preparing for suspend */
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100101 OIER &= ~OIER_E0;
Russell King91bc51d2007-11-08 23:35:46 +0000102 OSSR = OSSR_M0;
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100103 break;
Russell Kingdf433092007-10-27 15:15:49 +0100104
105 case CLOCK_EVT_MODE_RESUME:
Russell Kinga88264c2007-11-12 22:45:16 +0000106 case CLOCK_EVT_MODE_PERIODIC:
Russell Kingdf433092007-10-27 15:15:49 +0100107 break;
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100108 }
109}
110
111static struct clock_event_device ckevt_pxa_osmr0 = {
112 .name = "osmr0",
Russell Kinga88264c2007-11-12 22:45:16 +0000113 .features = CLOCK_EVT_FEAT_ONESHOT,
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100114 .shift = 32,
115 .rating = 200,
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100116 .set_next_event = pxa_osmr0_set_next_event,
117 .set_mode = pxa_osmr0_set_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
Magnus Damm8e196082009-04-21 12:24:00 -0700120static cycle_t pxa_read_oscr(struct clocksource *cs)
Sascha Hauerc80204e2006-12-12 09:21:50 +0100121{
122 return OSCR;
123}
124
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100125static struct clocksource cksrc_pxa_oscr0 = {
126 .name = "oscr0",
Sascha Hauerc80204e2006-12-12 09:21:50 +0100127 .rating = 200,
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100128 .read = pxa_read_oscr,
Sascha Hauerc80204e2006-12-12 09:21:50 +0100129 .mask = CLOCKSOURCE_MASK(32),
130 .shift = 20,
Thomas Gleixnerc66699a2007-02-16 01:27:37 -0800131 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Sascha Hauerc80204e2006-12-12 09:21:50 +0100132};
133
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100134static struct irqaction pxa_ost0_irq = {
135 .name = "ost0",
136 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
137 .handler = pxa_ost0_interrupt,
138 .dev_id = &ckevt_pxa_osmr0,
139};
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static void __init pxa_timer_init(void)
142{
Eric Miao67697172008-12-18 11:10:32 +0800143 unsigned long clock_tick_rate = get_clock_tick_rate();
Russell King08197f62007-09-01 21:12:50 +0100144
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100145 OIER = 0;
146 OSSR = OSSR_M0 | OSSR_M1 | OSSR_M2 | OSSR_M3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Russell King08197f62007-09-01 21:12:50 +0100148 set_oscr2ns_scale(clock_tick_rate);
Nicolas Pitre6c3a1582007-08-17 16:55:22 +0100149
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100150 ckevt_pxa_osmr0.mult =
Russell King08197f62007-09-01 21:12:50 +0100151 div_sc(clock_tick_rate, NSEC_PER_SEC, ckevt_pxa_osmr0.shift);
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100152 ckevt_pxa_osmr0.max_delta_ns =
153 clockevent_delta2ns(0x7fffffff, &ckevt_pxa_osmr0);
154 ckevt_pxa_osmr0.min_delta_ns =
Russell Kingdd01b2f2008-01-23 12:34:16 +0000155 clockevent_delta2ns(MIN_OSCR_DELTA * 2, &ckevt_pxa_osmr0) + 1;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030156 ckevt_pxa_osmr0.cpumask = cpumask_of(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100158 cksrc_pxa_oscr0.mult =
Russell King08197f62007-09-01 21:12:50 +0100159 clocksource_hz2mult(clock_tick_rate, cksrc_pxa_oscr0.shift);
Sascha Hauerc80204e2006-12-12 09:21:50 +0100160
Bill Gatliff7bbb18c2007-07-21 03:39:36 +0100161 setup_irq(IRQ_OST0, &pxa_ost0_irq);
162
163 clocksource_register(&cksrc_pxa_oscr0);
164 clockevents_register_device(&ckevt_pxa_osmr0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
167#ifdef CONFIG_PM
Russell King4ae78062007-11-12 22:48:12 +0000168static unsigned long osmr[4], oier, oscr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170static void pxa_timer_suspend(void)
171{
172 osmr[0] = OSMR0;
173 osmr[1] = OSMR1;
174 osmr[2] = OSMR2;
175 osmr[3] = OSMR3;
176 oier = OIER;
Russell King4ae78062007-11-12 22:48:12 +0000177 oscr = OSCR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180static void pxa_timer_resume(void)
181{
Russell King4ae78062007-11-12 22:48:12 +0000182 /*
183 * Ensure that we have at least MIN_OSCR_DELTA between match
184 * register 0 and the OSCR, to guarantee that we will receive
185 * the one-shot timer interrupt. We adjust OSMR0 in preference
186 * to OSCR to guarantee that OSCR is monotonically incrementing.
187 */
188 if (osmr[0] - oscr < MIN_OSCR_DELTA)
189 osmr[0] += MIN_OSCR_DELTA;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 OSMR0 = osmr[0];
192 OSMR1 = osmr[1];
193 OSMR2 = osmr[2];
194 OSMR3 = osmr[3];
195 OIER = oier;
Russell King4ae78062007-11-12 22:48:12 +0000196 OSCR = oscr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198#else
199#define pxa_timer_suspend NULL
200#define pxa_timer_resume NULL
201#endif
202
203struct sys_timer pxa_timer = {
204 .init = pxa_timer_init,
205 .suspend = pxa_timer_suspend,
206 .resume = pxa_timer_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};