timer.c 6.7 KB
Newer Older
1
/*
2 3
 *
 * Copyright (C) 2007 Google, Inc.
4
 * Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

17 18
#include <linux/clocksource.h>
#include <linux/clockchips.h>
19 20 21
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
22
#include <linux/io.h>
23 24

#include <asm/mach/time.h>
S
Stephen Boyd 已提交
25
#include <asm/hardware/gic.h>
26
#include <asm/localtimer.h>
S
Stephen Boyd 已提交
27

28
#include <mach/msm_iomap.h>
29
#include <mach/cpu.h>
30
#include <mach/board.h>
31 32 33 34

#define TIMER_MATCH_VAL         0x0000
#define TIMER_COUNT_VAL         0x0004
#define TIMER_ENABLE            0x0008
35 36
#define TIMER_ENABLE_CLR_ON_MATCH_EN    BIT(1)
#define TIMER_ENABLE_EN                 BIT(0)
37
#define TIMER_CLEAR             0x000C
J
Jeff Ohlstein 已提交
38
#define DGT_CLK_CTL             0x0034
39
#define DGT_CLK_CTL_DIV_4	0x3
40 41

#define GPT_HZ 32768
J
Jeff Ohlstein 已提交
42

43
#define MSM_DGT_SHIFT 5
44

45
static void __iomem *event_base;
46

47 48
static irqreturn_t msm_timer_interrupt(int irq, void *dev_id)
{
49
	struct clock_event_device *evt = *(struct clock_event_device **)dev_id;
50 51
	if (evt->event_handler == NULL)
		return IRQ_HANDLED;
52 53
	/* Stop the timer tick */
	if (evt->mode == CLOCK_EVT_MODE_ONESHOT) {
54
		u32 ctrl = readl_relaxed(event_base + TIMER_ENABLE);
55
		ctrl &= ~TIMER_ENABLE_EN;
56
		writel_relaxed(ctrl, event_base + TIMER_ENABLE);
57
	}
58 59 60 61 62 63 64
	evt->event_handler(evt);
	return IRQ_HANDLED;
}

static int msm_timer_set_next_event(unsigned long cycles,
				    struct clock_event_device *evt)
{
65
	u32 ctrl = readl_relaxed(event_base + TIMER_ENABLE);
66

67 68 69
	writel_relaxed(0, event_base + TIMER_CLEAR);
	writel_relaxed(cycles, event_base + TIMER_MATCH_VAL);
	writel_relaxed(ctrl | TIMER_ENABLE_EN, event_base + TIMER_ENABLE);
70 71 72 73 74 75
	return 0;
}

static void msm_timer_set_mode(enum clock_event_mode mode,
			      struct clock_event_device *evt)
{
76 77
	u32 ctrl;

78
	ctrl = readl_relaxed(event_base + TIMER_ENABLE);
79
	ctrl &= ~(TIMER_ENABLE_EN | TIMER_ENABLE_CLR_ON_MATCH_EN);
80

81 82 83 84 85
	switch (mode) {
	case CLOCK_EVT_MODE_RESUME:
	case CLOCK_EVT_MODE_PERIODIC:
		break;
	case CLOCK_EVT_MODE_ONESHOT:
86
		/* Timer is enabled in set_next_event */
87 88 89 90 91
		break;
	case CLOCK_EVT_MODE_UNUSED:
	case CLOCK_EVT_MODE_SHUTDOWN:
		break;
	}
92
	writel_relaxed(ctrl, event_base + TIMER_ENABLE);
93 94
}

95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
static struct clock_event_device msm_clockevent = {
	.name		= "gp_timer",
	.features	= CLOCK_EVT_FEAT_ONESHOT,
	.shift		= 32,
	.rating		= 200,
	.set_next_event	= msm_timer_set_next_event,
	.set_mode	= msm_timer_set_mode,
};

static union {
	struct clock_event_device *evt;
	struct clock_event_device __percpu **percpu_evt;
} msm_evt;

static void __iomem *source_base;

static cycle_t msm_read_timer_count(struct clocksource *cs)
112 113 114 115 116
{
	return readl_relaxed(source_base + TIMER_COUNT_VAL);
}

static cycle_t msm_read_timer_count_shift(struct clocksource *cs)
117 118 119 120 121
{
	/*
	 * Shift timer count down by a constant due to unreliable lower bits
	 * on some targets.
	 */
122
	return msm_read_timer_count(cs) >> MSM_DGT_SHIFT;
123 124 125 126 127 128
}

static struct clocksource msm_clocksource = {
	.name	= "dg_timer",
	.rating	= 300,
	.read	= msm_read_timer_count,
129
	.mask	= CLOCKSOURCE_MASK(32),
130
	.flags	= CLOCK_SOURCE_IS_CONTINUOUS,
131 132 133 134
};

static void __init msm_timer_init(void)
{
135 136
	struct clock_event_device *ce = &msm_clockevent;
	struct clocksource *cs = &msm_clocksource;
137
	int res;
138
	u32 dgt_hz;
139

140
	if (cpu_is_msm7x01()) {
141 142
		event_base = MSM_CSR_BASE;
		source_base = MSM_CSR_BASE + 0x10;
143 144 145
		dgt_hz = 19200000 >> MSM_DGT_SHIFT; /* 600 KHz */
		cs->read = msm_read_timer_count_shift;
		cs->mask = CLOCKSOURCE_MASK((32 - MSM_DGT_SHIFT));
146
	} else if (cpu_is_msm7x30()) {
147 148
		event_base = MSM_CSR_BASE + 0x04;
		source_base = MSM_CSR_BASE + 0x24;
149
		dgt_hz = 24576000 / 4;
150
	} else if (cpu_is_qsd8x50()) {
151 152
		event_base = MSM_CSR_BASE;
		source_base = MSM_CSR_BASE + 0x10;
153
		dgt_hz = 19200000 / 4;
154
	} else if (cpu_is_msm8x60() || cpu_is_msm8960()) {
155 156 157
		event_base = MSM_TMR_BASE + 0x04;
		/* Use CPU0's timer as the global clock source. */
		source_base = MSM_TMR0_BASE + 0x24;
158 159
		dgt_hz = 27000000 / 4;
		writel_relaxed(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL);
160 161
	} else
		BUG();
162

163 164 165 166
	writel_relaxed(0, event_base + TIMER_ENABLE);
	writel_relaxed(0, event_base + TIMER_CLEAR);
	writel_relaxed(~0, event_base + TIMER_MATCH_VAL);
	ce->mult = div_sc(GPT_HZ, NSEC_PER_SEC, ce->shift);
167 168 169 170
	/*
	 * allow at least 10 seconds to notice that the timer
	 * wrapped
	 */
171
	ce->max_delta_ns = clockevent_delta2ns(0xf0000000, ce);
172 173 174 175
	/* 4 gets rounded down to 3 */
	ce->min_delta_ns = clockevent_delta2ns(4, ce);
	ce->cpumask = cpumask_of(0);

176
	ce->irq = INT_GP_TIMER_EXP;
177
	if (cpu_is_msm8x60() || cpu_is_msm8960()) {
178 179
		msm_evt.percpu_evt = alloc_percpu(struct clock_event_device *);
		if (!msm_evt.percpu_evt) {
180 181
			pr_err("memory allocation failed for %s\n", ce->name);
			goto err;
182
		}
183
		*__this_cpu_ptr(msm_evt.percpu_evt) = ce;
184
		res = request_percpu_irq(ce->irq, msm_timer_interrupt,
185
					 ce->name, msm_evt.percpu_evt);
186 187 188
		if (!res)
			enable_percpu_irq(ce->irq, 0);
	} else {
189
		msm_evt.evt = ce;
190 191
		res = request_irq(ce->irq, msm_timer_interrupt,
				  IRQF_TIMER | IRQF_NOBALANCING |
192
				  IRQF_TRIGGER_RISING, ce->name, &msm_evt.evt);
193
	}
194 195 196 197 198

	if (res)
		pr_err("request_irq failed for %s\n", ce->name);
	clockevents_register_device(ce);
err:
199
	writel_relaxed(TIMER_ENABLE_EN, source_base + TIMER_ENABLE);
200
	res = clocksource_register_hz(cs, dgt_hz);
201
	if (res)
202
		pr_err("clocksource_register failed\n");
203 204
}

205
#ifdef CONFIG_LOCAL_TIMERS
206
int __cpuinit local_timer_setup(struct clock_event_device *evt)
207 208 209
{
	/* Use existing clock_event for cpu 0 */
	if (!smp_processor_id())
210
		return 0;
211

212 213 214 215
	writel_relaxed(0, event_base + TIMER_ENABLE);
	writel_relaxed(0, event_base + TIMER_CLEAR);
	writel_relaxed(~0, event_base + TIMER_MATCH_VAL);
	evt->irq = msm_clockevent.irq;
216
	evt->name = "local_timer";
217 218
	evt->features = msm_clockevent.features;
	evt->rating = msm_clockevent.rating;
219 220
	evt->set_mode = msm_timer_set_mode;
	evt->set_next_event = msm_timer_set_next_event;
221 222 223
	evt->shift = msm_clockevent.shift;
	evt->mult = div_sc(GPT_HZ, NSEC_PER_SEC, evt->shift);
	evt->max_delta_ns = clockevent_delta2ns(0xf0000000, evt);
224 225
	evt->min_delta_ns = clockevent_delta2ns(4, evt);

226
	*__this_cpu_ptr(msm_evt.percpu_evt) = evt;
227
	enable_percpu_irq(evt->irq, 0);
228
	clockevents_register_device(evt);
229
	return 0;
230 231
}

232
void local_timer_stop(struct clock_event_device *evt)
233
{
234 235
	evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
	disable_percpu_irq(evt->irq);
236
}
237
#endif /* CONFIG_LOCAL_TIMERS */
238

239 240 241
struct sys_timer msm_timer = {
	.init = msm_timer_init
};