time.c 4.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * arch/arm/mach-pxa/time.c
 *
4 5 6 7 8
 * PXA clocksource, clockevents, and OST interrupt handlers.
 * Copyright (c) 2007 by Bill Gatliff <bgat@billgatliff.com>.
 *
 * Derived from Nicolas Pitre's PXA timer handler Copyright (c) 2001
 * by MontaVista Software, Inc.  (Nico, your code rocks!)
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/interrupt.h>
18 19
#include <linux/clockchips.h>

20
#include <asm/div64.h>
L
Linus Torvalds 已提交
21 22
#include <asm/mach/irq.h>
#include <asm/mach/time.h>
23
#include <asm/sched_clock.h>
24
#include <mach/regs-ost.h>
R
Rob Herring 已提交
25
#include <mach/irqs.h>
L
Linus Torvalds 已提交
26

27 28 29 30 31 32 33 34 35
/*
 * This is PXA's sched_clock implementation. This has a resolution
 * of at least 308 ns and a maximum value of 208 days.
 *
 * The return value is guaranteed to be monotonic in that range as
 * long as there is always less than 582 seconds between successive
 * calls to sched_clock() which should always be the case in practice.
 */

36
static u32 notrace pxa_read_sched_clock(void)
37
{
38
	return OSCR;
39 40 41
}


42 43
#define MIN_OSCR_DELTA 16

L
Linus Torvalds 已提交
44
static irqreturn_t
45
pxa_ost0_interrupt(int irq, void *dev_id)
L
Linus Torvalds 已提交
46
{
47 48
	struct clock_event_device *c = dev_id;

49 50 51 52
	/* Disarm the compare/match, signal the event. */
	OIER &= ~OIER_E0;
	OSSR = OSSR_M0;
	c->event_handler(c);
L
Linus Torvalds 已提交
53 54 55 56

	return IRQ_HANDLED;
}

57 58 59
static int
pxa_osmr0_set_next_event(unsigned long delta, struct clock_event_device *dev)
{
60
	unsigned long next, oscr;
61 62

	OIER |= OIER_E0;
R
Russell King 已提交
63 64 65 66 67
	next = OSCR + delta;
	OSMR0 = next;
	oscr = OSCR;

	return (signed)(next - oscr) <= MIN_OSCR_DELTA ? -ETIME : 0;
68 69 70 71 72 73 74 75
}

static void
pxa_osmr0_set_mode(enum clock_event_mode mode, struct clock_event_device *dev)
{
	switch (mode) {
	case CLOCK_EVT_MODE_ONESHOT:
		OIER &= ~OIER_E0;
R
Russell King 已提交
76
		OSSR = OSSR_M0;
77 78 79 80 81 82
		break;

	case CLOCK_EVT_MODE_UNUSED:
	case CLOCK_EVT_MODE_SHUTDOWN:
		/* initializing, released, or preparing for suspend */
		OIER &= ~OIER_E0;
R
Russell King 已提交
83
		OSSR = OSSR_M0;
84
		break;
85 86

	case CLOCK_EVT_MODE_RESUME:
87
	case CLOCK_EVT_MODE_PERIODIC:
88
		break;
89 90 91 92 93
	}
}

static struct clock_event_device ckevt_pxa_osmr0 = {
	.name		= "osmr0",
94
	.features	= CLOCK_EVT_FEAT_ONESHOT,
95 96 97
	.rating		= 200,
	.set_next_event	= pxa_osmr0_set_next_event,
	.set_mode	= pxa_osmr0_set_mode,
L
Linus Torvalds 已提交
98 99
};

100 101 102 103 104 105 106
static struct irqaction pxa_ost0_irq = {
	.name		= "ost0",
	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
	.handler	= pxa_ost0_interrupt,
	.dev_id		= &ckevt_pxa_osmr0,
};

L
Linus Torvalds 已提交
107 108
static void __init pxa_timer_init(void)
{
109
	unsigned long clock_tick_rate = get_clock_tick_rate();
110

111 112
	OIER = 0;
	OSSR = OSSR_M0 | OSSR_M1 | OSSR_M2 | OSSR_M3;
L
Linus Torvalds 已提交
113

114
	setup_sched_clock(pxa_read_sched_clock, 32, clock_tick_rate);
115

116
	clockevents_calc_mult_shift(&ckevt_pxa_osmr0, clock_tick_rate, 4);
117 118 119
	ckevt_pxa_osmr0.max_delta_ns =
		clockevent_delta2ns(0x7fffffff, &ckevt_pxa_osmr0);
	ckevt_pxa_osmr0.min_delta_ns =
R
Russell King 已提交
120
		clockevent_delta2ns(MIN_OSCR_DELTA * 2, &ckevt_pxa_osmr0) + 1;
121
	ckevt_pxa_osmr0.cpumask = cpumask_of(0);
L
Linus Torvalds 已提交
122

123
	setup_irq(IRQ_OST0, &pxa_ost0_irq);
124

125 126
	clocksource_mmio_init(&OSCR, "oscr0", clock_tick_rate, 200, 32,
		clocksource_mmio_readl_up);
127
	clockevents_register_device(&ckevt_pxa_osmr0);
128 129
}

L
Linus Torvalds 已提交
130
#ifdef CONFIG_PM
131
static unsigned long osmr[4], oier, oscr;
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139

static void pxa_timer_suspend(void)
{
	osmr[0] = OSMR0;
	osmr[1] = OSMR1;
	osmr[2] = OSMR2;
	osmr[3] = OSMR3;
	oier = OIER;
140
	oscr = OSCR;
L
Linus Torvalds 已提交
141 142 143 144
}

static void pxa_timer_resume(void)
{
145 146 147 148 149 150 151 152 153
	/*
	 * Ensure that we have at least MIN_OSCR_DELTA between match
	 * register 0 and the OSCR, to guarantee that we will receive
	 * the one-shot timer interrupt.  We adjust OSMR0 in preference
	 * to OSCR to guarantee that OSCR is monotonically incrementing.
	 */
	if (osmr[0] - oscr < MIN_OSCR_DELTA)
		osmr[0] += MIN_OSCR_DELTA;

L
Linus Torvalds 已提交
154 155 156 157 158
	OSMR0 = osmr[0];
	OSMR1 = osmr[1];
	OSMR2 = osmr[2];
	OSMR3 = osmr[3];
	OIER = oier;
159
	OSCR = oscr;
L
Linus Torvalds 已提交
160 161 162 163 164 165 166 167 168 169 170
}
#else
#define pxa_timer_suspend NULL
#define pxa_timer_resume NULL
#endif

struct sys_timer pxa_timer = {
	.init		= pxa_timer_init,
	.suspend	= pxa_timer_suspend,
	.resume		= pxa_timer_resume,
};