blob: 5f5a49ec7a3eb0f815c25bbe242e26a706294ad6 [file] [log] [blame]
Stephen Boyddd15ab82011-11-08 10:34:05 -08001/*
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08002 * Copyright (C) 2007 Google, Inc.
Jeff Ohlsteinf0a31e42012-01-06 19:03:05 -08003 * Copyright (c) 2009-2012, Code Aurora Forum. All rights reserved.
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08004 *
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 */
15
Steve Mucklef132c6c2012-06-06 18:30:57 -070016#include <linux/module.h>
Stephen Boyd4a184072011-11-08 10:34:04 -080017#include <linux/clocksource.h>
18#include <linux/clockchips.h>
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080019#include <linux/init.h>
20#include <linux/time.h>
21#include <linux/interrupt.h>
22#include <linux/irq.h>
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080023#include <linux/delay.h>
Russell Kingfced80c2008-09-06 12:10:45 +010024#include <linux/io.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070025#include <linux/percpu.h>
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080026
Steve Mucklef132c6c2012-06-06 18:30:57 -070027#include <asm/localtimer.h>
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080028#include <asm/mach/time.h>
Stephen Boydebf30dc2011-05-31 16:10:00 -070029#include <asm/hardware/gic.h>
Stephen Boydf8e56c42012-02-22 01:39:37 +000030#include <asm/sched_clock.h>
Taniya Das36057be2011-10-28 13:02:17 +053031#include <asm/smp_plat.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/msm_iomap.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070033#include <mach/irqs.h>
34#include <mach/socinfo.h>
35
36#if defined(CONFIG_MSM_SMD)
37#include "smd_private.h"
38#endif
39#include "timer.h"
40
41enum {
42 MSM_TIMER_DEBUG_SYNC = 1U << 0,
43};
44static int msm_timer_debug_mask;
45module_param_named(debug_mask, msm_timer_debug_mask, int, S_IRUGO | S_IWUSR | S_IWGRP);
46
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070047#ifdef CONFIG_MSM7X00A_USE_GP_TIMER
48 #define DG_TIMER_RATING 100
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070049#else
50 #define DG_TIMER_RATING 300
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070051#endif
52
Jeff Ohlstein7e538f02011-11-01 17:36:22 -070053#ifndef MSM_TMR0_BASE
54#define MSM_TMR0_BASE MSM_TMR_BASE
55#endif
56
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070057#define MSM_DGT_SHIFT (5)
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080058
59#define TIMER_MATCH_VAL 0x0000
60#define TIMER_COUNT_VAL 0x0004
61#define TIMER_ENABLE 0x0008
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080062#define TIMER_CLEAR 0x000C
Jeff Ohlstein672039f2010-10-05 15:23:57 -070063#define DGT_CLK_CTL 0x0034
64enum {
65 DGT_CLK_CTL_DIV_1 = 0,
66 DGT_CLK_CTL_DIV_2 = 1,
67 DGT_CLK_CTL_DIV_3 = 2,
68 DGT_CLK_CTL_DIV_4 = 3,
69};
Jeff Ohlstein6c47a272012-02-24 14:48:55 -080070#define TIMER_STATUS 0x0088
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070071#define TIMER_ENABLE_EN 1
72#define TIMER_ENABLE_CLR_ON_MATCH_EN 2
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080073
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070074#define LOCAL_TIMER 0
75#define GLOBAL_TIMER 1
Jeff Ohlstein672039f2010-10-05 15:23:57 -070076
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070077/*
Jeff Ohlsteine1a7e402011-09-07 12:52:36 -070078 * global_timer_offset is added to the regbase of a timer to force the memory
79 * access to come from the CPU0 region.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070080 */
Jeff Ohlsteine1a7e402011-09-07 12:52:36 -070081static int global_timer_offset;
Jeff Ohlstein7a018322011-09-28 12:44:06 -070082static int msm_global_timer;
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080083
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070084#define NR_TIMERS ARRAY_SIZE(msm_clocks)
85
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -070086unsigned int gpt_hz = 32768;
87unsigned int sclk_hz = 32768;
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -080088
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070089static struct msm_clock *clockevent_to_clock(struct clock_event_device *evt);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070090static irqreturn_t msm_timer_interrupt(int irq, void *dev_id);
91static cycle_t msm_gpt_read(struct clocksource *cs);
92static cycle_t msm_dgt_read(struct clocksource *cs);
93static void msm_timer_set_mode(enum clock_event_mode mode,
94 struct clock_event_device *evt);
95static int msm_timer_set_next_event(unsigned long cycles,
96 struct clock_event_device *evt);
97
98enum {
99 MSM_CLOCK_FLAGS_UNSTABLE_COUNT = 1U << 0,
100 MSM_CLOCK_FLAGS_ODD_MATCH_WRITE = 1U << 1,
101 MSM_CLOCK_FLAGS_DELAYED_WRITE_POST = 1U << 2,
102};
103
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800104struct msm_clock {
105 struct clock_event_device clockevent;
106 struct clocksource clocksource;
Trilok Sonieecb28c2011-07-20 16:24:14 +0100107 unsigned int irq;
Brian Swetlandbcc0f6a2008-09-10 14:00:53 -0700108 void __iomem *regbase;
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800109 uint32_t freq;
110 uint32_t shift;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700111 uint32_t flags;
112 uint32_t write_delay;
113 uint32_t rollover_offset;
114 uint32_t index;
Trilok Sonieecb28c2011-07-20 16:24:14 +0100115 void __iomem *global_counter;
116 void __iomem *local_counter;
Jeff Ohlstein6c47a272012-02-24 14:48:55 -0800117 uint32_t status_mask;
Trilok Sonieecb28c2011-07-20 16:24:14 +0100118 union {
119 struct clock_event_device *evt;
120 struct clock_event_device __percpu **percpu_evt;
121 };
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800122};
123
Jeff Ohlstein94790ec2010-12-02 12:05:12 -0800124enum {
125 MSM_CLOCK_GPT,
126 MSM_CLOCK_DGT,
Jeff Ohlstein94790ec2010-12-02 12:05:12 -0800127};
128
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700129struct msm_clock_percpu_data {
130 uint32_t last_set;
131 uint32_t sleep_offset;
132 uint32_t alarm_vtime;
133 uint32_t alarm;
134 uint32_t non_sleep_offset;
135 uint32_t in_sync;
136 cycle_t stopped_tick;
137 int stopped;
138 uint32_t last_sync_gpt;
139 u64 last_sync_jiffies;
140};
Jeff Ohlstein94790ec2010-12-02 12:05:12 -0800141
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700142struct msm_timer_sync_data_t {
143 struct msm_clock *clock;
144 uint32_t timeout;
145 int exit_sleep;
146};
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800147
148static struct msm_clock msm_clocks[] = {
Jeff Ohlstein94790ec2010-12-02 12:05:12 -0800149 [MSM_CLOCK_GPT] = {
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800150 .clockevent = {
151 .name = "gp_timer",
152 .features = CLOCK_EVT_FEAT_ONESHOT,
153 .shift = 32,
154 .rating = 200,
155 .set_next_event = msm_timer_set_next_event,
156 .set_mode = msm_timer_set_mode,
157 },
158 .clocksource = {
159 .name = "gp_timer",
160 .rating = 200,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700161 .read = msm_gpt_read,
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800162 .mask = CLOCKSOURCE_MASK(32),
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800163 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
164 },
Trilok Sonieecb28c2011-07-20 16:24:14 +0100165 .irq = INT_GP_TIMER_EXP,
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700166 .regbase = MSM_TMR_BASE + 0x4,
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700167 .freq = 32768,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700168 .index = MSM_CLOCK_GPT,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700169 .write_delay = 9,
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800170 },
Jeff Ohlstein94790ec2010-12-02 12:05:12 -0800171 [MSM_CLOCK_DGT] = {
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800172 .clockevent = {
173 .name = "dg_timer",
174 .features = CLOCK_EVT_FEAT_ONESHOT,
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700175 .shift = 32,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700176 .rating = DG_TIMER_RATING,
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800177 .set_next_event = msm_timer_set_next_event,
178 .set_mode = msm_timer_set_mode,
179 },
180 .clocksource = {
181 .name = "dg_timer",
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700182 .rating = DG_TIMER_RATING,
183 .read = msm_dgt_read,
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700184 .mask = CLOCKSOURCE_MASK(32),
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800185 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
186 },
Trilok Sonieecb28c2011-07-20 16:24:14 +0100187 .irq = INT_DEBUG_TIMER_EXP,
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700188 .regbase = MSM_TMR_BASE + 0x24,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700189 .index = MSM_CLOCK_DGT,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700190 .write_delay = 9,
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800191 }
192};
193
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700194static DEFINE_PER_CPU(struct msm_clock_percpu_data[NR_TIMERS],
195 msm_clocks_percpu);
196
197static DEFINE_PER_CPU(struct msm_clock *, msm_active_clock);
Stephen Boyda850c3f2011-11-08 10:34:06 -0800198
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800199static irqreturn_t msm_timer_interrupt(int irq, void *dev_id)
200{
Marc Zyngier28af6902011-07-22 12:52:37 +0100201 struct clock_event_device *evt = *(struct clock_event_device **)dev_id;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700202 if (evt->event_handler == NULL)
203 return IRQ_HANDLED;
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800204 evt->event_handler(evt);
205 return IRQ_HANDLED;
206}
207
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700208static uint32_t msm_read_timer_count(struct msm_clock *clock, int global)
209{
Jeff Ohlstein5d90e252011-11-04 19:00:50 -0700210 uint32_t t1, t2, t3;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700211 int loop_count = 0;
Jeff Ohlstein5d90e252011-11-04 19:00:50 -0700212 void __iomem *addr = clock->regbase + TIMER_COUNT_VAL +
213 global*global_timer_offset;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700214
215 if (!(clock->flags & MSM_CLOCK_FLAGS_UNSTABLE_COUNT))
Jeff Ohlstein60b68702012-03-30 16:35:25 -0700216 return __raw_readl_no_log(addr);
Jeff Ohlstein5d90e252011-11-04 19:00:50 -0700217
Jeff Ohlstein60b68702012-03-30 16:35:25 -0700218 t1 = __raw_readl_no_log(addr);
Laura Abbott1d506042012-01-23 13:21:34 -0800219 t2 = __raw_readl_no_log(addr);
Jeff Ohlstein5d90e252011-11-04 19:00:50 -0700220 if ((t2-t1) <= 1)
221 return t2;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700222 while (1) {
Laura Abbott1d506042012-01-23 13:21:34 -0800223 t1 = __raw_readl_no_log(addr);
224 t2 = __raw_readl_no_log(addr);
225 t3 = __raw_readl_no_log(addr);
Jeff Ohlstein10206eb2011-11-30 19:18:49 -0800226 cpu_relax();
Jeff Ohlstein5d90e252011-11-04 19:00:50 -0700227 if ((t3-t2) <= 1)
228 return t3;
229 if ((t2-t1) <= 1)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700230 return t2;
Jeff Ohlsteinfdd87082011-12-09 13:40:08 -0800231 if ((t2 >= t1) && (t3 >= t2))
232 return t2;
Jeff Ohlstein10206eb2011-11-30 19:18:49 -0800233 if (++loop_count == 5) {
Jeff Ohlstein5d90e252011-11-04 19:00:50 -0700234 pr_err("msm_read_timer_count timer %s did not "
235 "stabilize: %u -> %u -> %u\n",
236 clock->clockevent.name, t1, t2, t3);
237 return t3;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700238 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700239 }
240}
241
242static cycle_t msm_gpt_read(struct clocksource *cs)
243{
244 struct msm_clock *clock = &msm_clocks[MSM_CLOCK_GPT];
245 struct msm_clock_percpu_data *clock_state =
246 &per_cpu(msm_clocks_percpu, 0)[MSM_CLOCK_GPT];
247
248 if (clock_state->stopped)
249 return clock_state->stopped_tick;
250
251 return msm_read_timer_count(clock, GLOBAL_TIMER) +
252 clock_state->sleep_offset;
253}
254
255static cycle_t msm_dgt_read(struct clocksource *cs)
256{
257 struct msm_clock *clock = &msm_clocks[MSM_CLOCK_DGT];
258 struct msm_clock_percpu_data *clock_state =
259 &per_cpu(msm_clocks_percpu, 0)[MSM_CLOCK_DGT];
260
261 if (clock_state->stopped)
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700262 return clock_state->stopped_tick >> clock->shift;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700263
264 return (msm_read_timer_count(clock, GLOBAL_TIMER) +
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700265 clock_state->sleep_offset) >> clock->shift;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700266}
267
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700268static struct msm_clock *clockevent_to_clock(struct clock_event_device *evt)
269{
270 int i;
Taniya Das36057be2011-10-28 13:02:17 +0530271
272 if (!is_smp())
273 return container_of(evt, struct msm_clock, clockevent);
274
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700275 for (i = 0; i < NR_TIMERS; i++)
276 if (evt == &(msm_clocks[i].clockevent))
277 return &msm_clocks[i];
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700278 return &msm_clocks[msm_global_timer];
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700279}
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700280
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800281static int msm_timer_set_next_event(unsigned long cycles,
282 struct clock_event_device *evt)
283{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700284 int i;
285 struct msm_clock *clock;
286 struct msm_clock_percpu_data *clock_state;
287 uint32_t now;
288 uint32_t alarm;
289 int late;
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800290
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700291 clock = clockevent_to_clock(evt);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700292 clock_state = &__get_cpu_var(msm_clocks_percpu)[clock->index];
293 if (clock_state->stopped)
294 return 0;
295 now = msm_read_timer_count(clock, LOCAL_TIMER);
296 alarm = now + (cycles << clock->shift);
297 if (clock->flags & MSM_CLOCK_FLAGS_ODD_MATCH_WRITE)
298 while (now == clock_state->last_set)
299 now = msm_read_timer_count(clock, LOCAL_TIMER);
300
301 clock_state->alarm = alarm;
302 __raw_writel(alarm, clock->regbase + TIMER_MATCH_VAL);
303
304 if (clock->flags & MSM_CLOCK_FLAGS_DELAYED_WRITE_POST) {
305 /* read the counter four extra times to make sure write posts
306 before reading the time */
307 for (i = 0; i < 4; i++)
Laura Abbott1d506042012-01-23 13:21:34 -0800308 __raw_readl_no_log(clock->regbase + TIMER_COUNT_VAL);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700309 }
310 now = msm_read_timer_count(clock, LOCAL_TIMER);
311 clock_state->last_set = now;
312 clock_state->alarm_vtime = alarm + clock_state->sleep_offset;
313 late = now - alarm;
314 if (late >= (int)(-clock->write_delay << clock->shift) &&
315 late < clock->freq*5)
316 return -ETIME;
317
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800318 return 0;
319}
320
321static void msm_timer_set_mode(enum clock_event_mode mode,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700322 struct clock_event_device *evt)
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800323{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700324 struct msm_clock *clock;
325 struct msm_clock_percpu_data *clock_state, *gpt_state;
326 unsigned long irq_flags;
Jin Hongeecb1e02011-10-21 14:36:32 -0700327 struct irq_chip *chip;
Stephen Boyda850c3f2011-11-08 10:34:06 -0800328
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700329 clock = clockevent_to_clock(evt);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700330 clock_state = &__get_cpu_var(msm_clocks_percpu)[clock->index];
331 gpt_state = &__get_cpu_var(msm_clocks_percpu)[MSM_CLOCK_GPT];
332
333 local_irq_save(irq_flags);
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800334
335 switch (mode) {
336 case CLOCK_EVT_MODE_RESUME:
337 case CLOCK_EVT_MODE_PERIODIC:
338 break;
339 case CLOCK_EVT_MODE_ONESHOT:
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700340 clock_state->stopped = 0;
341 clock_state->sleep_offset =
342 -msm_read_timer_count(clock, LOCAL_TIMER) +
343 clock_state->stopped_tick;
344 get_cpu_var(msm_active_clock) = clock;
345 put_cpu_var(msm_active_clock);
346 __raw_writel(TIMER_ENABLE_EN, clock->regbase + TIMER_ENABLE);
Trilok Sonieecb28c2011-07-20 16:24:14 +0100347 chip = irq_get_chip(clock->irq);
Jin Hongeecb1e02011-10-21 14:36:32 -0700348 if (chip && chip->irq_unmask)
Trilok Sonieecb28c2011-07-20 16:24:14 +0100349 chip->irq_unmask(irq_get_irq_data(clock->irq));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700350 if (clock != &msm_clocks[MSM_CLOCK_GPT])
351 __raw_writel(TIMER_ENABLE_EN,
352 msm_clocks[MSM_CLOCK_GPT].regbase +
353 TIMER_ENABLE);
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800354 break;
355 case CLOCK_EVT_MODE_UNUSED:
356 case CLOCK_EVT_MODE_SHUTDOWN:
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700357 get_cpu_var(msm_active_clock) = NULL;
358 put_cpu_var(msm_active_clock);
359 clock_state->in_sync = 0;
360 clock_state->stopped = 1;
361 clock_state->stopped_tick =
362 msm_read_timer_count(clock, LOCAL_TIMER) +
363 clock_state->sleep_offset;
364 __raw_writel(0, clock->regbase + TIMER_MATCH_VAL);
Trilok Sonieecb28c2011-07-20 16:24:14 +0100365 chip = irq_get_chip(clock->irq);
Jin Hongeecb1e02011-10-21 14:36:32 -0700366 if (chip && chip->irq_mask)
Trilok Sonieecb28c2011-07-20 16:24:14 +0100367 chip->irq_mask(irq_get_irq_data(clock->irq));
Taniya Das36057be2011-10-28 13:02:17 +0530368
369 if (!is_smp() || clock != &msm_clocks[MSM_CLOCK_DGT]
370 || smp_processor_id())
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700371 __raw_writel(0, clock->regbase + TIMER_ENABLE);
Taniya Das36057be2011-10-28 13:02:17 +0530372
Steve Mucklef132c6c2012-06-06 18:30:57 -0700373 if (msm_global_timer == MSM_CLOCK_DGT &&
374 clock != &msm_clocks[MSM_CLOCK_GPT]) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700375 gpt_state->in_sync = 0;
376 __raw_writel(0, msm_clocks[MSM_CLOCK_GPT].regbase +
377 TIMER_ENABLE);
378 }
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800379 break;
380 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700381 wmb();
382 local_irq_restore(irq_flags);
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800383}
384
Jeff Ohlstein973871d2011-09-28 11:46:26 -0700385void __iomem *msm_timer_get_timer0_base(void)
Stephen Boyd2a00c102011-11-08 10:34:07 -0800386{
Jeff Ohlstein973871d2011-09-28 11:46:26 -0700387 return MSM_TMR_BASE + global_timer_offset;
Stephen Boyd2081a6b2011-11-08 10:34:08 -0800388}
389
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700390#define MPM_SCLK_COUNT_VAL 0x0024
391
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700392#ifdef CONFIG_PM
393/*
394 * Retrieve the cycle count from sclk and optionally synchronize local clock
395 * with the sclk value.
396 *
397 * time_start and time_expired are callbacks that must be specified. The
398 * protocol uses them to detect timeout. The update callback is optional.
399 * If not NULL, update will be called so that it can update local clock.
400 *
401 * The function does not use the argument data directly; it passes data to
402 * the callbacks.
403 *
404 * Return value:
405 * 0: the operation failed
406 * >0: the slow clock value after time-sync
407 */
408static void (*msm_timer_sync_timeout)(void);
409#if defined(CONFIG_MSM_DIRECT_SCLK_ACCESS)
Jeff Ohlsteinecefdc02012-01-13 12:37:44 -0800410uint32_t msm_timer_get_sclk_ticks(void)
Stephen Boyd2081a6b2011-11-08 10:34:08 -0800411{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700412 uint32_t t1, t2;
413 int loop_count = 10;
414 int loop_zero_count = 3;
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700415 int tmp = USEC_PER_SEC;
416 do_div(tmp, sclk_hz);
417 tmp /= (loop_zero_count-1);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700418
419 while (loop_zero_count--) {
Laura Abbott1d506042012-01-23 13:21:34 -0800420 t1 = __raw_readl_no_log(MSM_RPM_MPM_BASE + MPM_SCLK_COUNT_VAL);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700421 do {
422 udelay(1);
423 t2 = t1;
Laura Abbott1d506042012-01-23 13:21:34 -0800424 t1 = __raw_readl_no_log(
425 MSM_RPM_MPM_BASE + MPM_SCLK_COUNT_VAL);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700426 } while ((t2 != t1) && --loop_count);
427
428 if (!loop_count) {
429 printk(KERN_EMERG "SCLK did not stabilize\n");
430 return 0;
431 }
432
433 if (t1)
434 break;
435
436 udelay(tmp);
437 }
438
439 if (!loop_zero_count) {
440 printk(KERN_EMERG "SCLK reads zero\n");
441 return 0;
442 }
443
Jeff Ohlsteinecefdc02012-01-13 12:37:44 -0800444 return t1;
Stephen Boyd2a00c102011-11-08 10:34:07 -0800445}
446
Jeff Ohlsteinecefdc02012-01-13 12:37:44 -0800447static uint32_t msm_timer_do_sync_to_sclk(
448 void (*time_start)(struct msm_timer_sync_data_t *data),
449 bool (*time_expired)(struct msm_timer_sync_data_t *data),
450 void (*update)(struct msm_timer_sync_data_t *, uint32_t, uint32_t),
451 struct msm_timer_sync_data_t *data)
452{
453 unsigned t1 = msm_timer_get_sclk_ticks();
454
455 if (t1 && update != NULL)
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700456 update(data, t1, sclk_hz);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700457 return t1;
458}
459#elif defined(CONFIG_MSM_N_WAY_SMSM)
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700460
461/* Time Master State Bits */
462#define MASTER_BITS_PER_CPU 1
463#define MASTER_TIME_PENDING \
464 (0x01UL << (MASTER_BITS_PER_CPU * SMSM_APPS_STATE))
465
466/* Time Slave State Bits */
467#define SLAVE_TIME_REQUEST 0x0400
468#define SLAVE_TIME_POLL 0x0800
469#define SLAVE_TIME_INIT 0x1000
470
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700471static uint32_t msm_timer_do_sync_to_sclk(
472 void (*time_start)(struct msm_timer_sync_data_t *data),
473 bool (*time_expired)(struct msm_timer_sync_data_t *data),
474 void (*update)(struct msm_timer_sync_data_t *, uint32_t, uint32_t),
475 struct msm_timer_sync_data_t *data)
476{
477 uint32_t *smem_clock;
478 uint32_t smem_clock_val;
479 uint32_t state;
480
481 smem_clock = smem_alloc(SMEM_SMEM_SLOW_CLOCK_VALUE, sizeof(uint32_t));
482 if (smem_clock == NULL) {
483 printk(KERN_ERR "no smem clock\n");
484 return 0;
485 }
486
487 state = smsm_get_state(SMSM_MODEM_STATE);
488 if ((state & SMSM_INIT) == 0) {
489 printk(KERN_ERR "smsm not initialized\n");
490 return 0;
491 }
492
493 time_start(data);
494 while ((state = smsm_get_state(SMSM_TIME_MASTER_DEM)) &
495 MASTER_TIME_PENDING) {
496 if (time_expired(data)) {
497 printk(KERN_EMERG "get_smem_clock: timeout 1 still "
498 "invalid state %x\n", state);
499 msm_timer_sync_timeout();
500 }
501 }
502
503 smsm_change_state(SMSM_APPS_DEM, SLAVE_TIME_POLL | SLAVE_TIME_INIT,
504 SLAVE_TIME_REQUEST);
505
506 time_start(data);
507 while (!((state = smsm_get_state(SMSM_TIME_MASTER_DEM)) &
508 MASTER_TIME_PENDING)) {
509 if (time_expired(data)) {
510 printk(KERN_EMERG "get_smem_clock: timeout 2 still "
511 "invalid state %x\n", state);
512 msm_timer_sync_timeout();
513 }
514 }
515
516 smsm_change_state(SMSM_APPS_DEM, SLAVE_TIME_REQUEST, SLAVE_TIME_POLL);
517
518 time_start(data);
519 do {
520 smem_clock_val = *smem_clock;
521 } while (smem_clock_val == 0 && !time_expired(data));
522
523 state = smsm_get_state(SMSM_TIME_MASTER_DEM);
524
525 if (smem_clock_val) {
526 if (update != NULL)
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700527 update(data, smem_clock_val, sclk_hz);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700528
529 if (msm_timer_debug_mask & MSM_TIMER_DEBUG_SYNC)
530 printk(KERN_INFO
531 "get_smem_clock: state %x clock %u\n",
532 state, smem_clock_val);
533 } else {
534 printk(KERN_EMERG
535 "get_smem_clock: timeout state %x clock %u\n",
536 state, smem_clock_val);
537 msm_timer_sync_timeout();
538 }
539
540 smsm_change_state(SMSM_APPS_DEM, SLAVE_TIME_REQUEST | SLAVE_TIME_POLL,
541 SLAVE_TIME_INIT);
542 return smem_clock_val;
543}
544#else /* CONFIG_MSM_N_WAY_SMSM */
545static uint32_t msm_timer_do_sync_to_sclk(
546 void (*time_start)(struct msm_timer_sync_data_t *data),
547 bool (*time_expired)(struct msm_timer_sync_data_t *data),
548 void (*update)(struct msm_timer_sync_data_t *, uint32_t, uint32_t),
549 struct msm_timer_sync_data_t *data)
550{
551 uint32_t *smem_clock;
552 uint32_t smem_clock_val;
553 uint32_t last_state;
554 uint32_t state;
555
556 smem_clock = smem_alloc(SMEM_SMEM_SLOW_CLOCK_VALUE,
557 sizeof(uint32_t));
558
559 if (smem_clock == NULL) {
560 printk(KERN_ERR "no smem clock\n");
561 return 0;
562 }
563
564 last_state = state = smsm_get_state(SMSM_MODEM_STATE);
565 smem_clock_val = *smem_clock;
566 if (smem_clock_val) {
567 printk(KERN_INFO "get_smem_clock: invalid start state %x "
568 "clock %u\n", state, smem_clock_val);
569 smsm_change_state(SMSM_APPS_STATE,
570 SMSM_TIMEWAIT, SMSM_TIMEINIT);
571
572 time_start(data);
573 while (*smem_clock != 0 && !time_expired(data))
574 ;
575
576 smem_clock_val = *smem_clock;
577 if (smem_clock_val) {
578 printk(KERN_EMERG "get_smem_clock: timeout still "
579 "invalid state %x clock %u\n",
580 state, smem_clock_val);
581 msm_timer_sync_timeout();
582 }
583 }
584
585 time_start(data);
586 smsm_change_state(SMSM_APPS_STATE, SMSM_TIMEINIT, SMSM_TIMEWAIT);
587 do {
588 smem_clock_val = *smem_clock;
589 state = smsm_get_state(SMSM_MODEM_STATE);
590 if (state != last_state) {
591 last_state = state;
592 if (msm_timer_debug_mask & MSM_TIMER_DEBUG_SYNC)
593 printk(KERN_INFO
594 "get_smem_clock: state %x clock %u\n",
595 state, smem_clock_val);
596 }
597 } while (smem_clock_val == 0 && !time_expired(data));
598
599 if (smem_clock_val) {
600 if (update != NULL)
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700601 update(data, smem_clock_val, sclk_hz);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700602 } else {
603 printk(KERN_EMERG
604 "get_smem_clock: timeout state %x clock %u\n",
605 state, smem_clock_val);
606 msm_timer_sync_timeout();
607 }
608
609 smsm_change_state(SMSM_APPS_STATE, SMSM_TIMEWAIT, SMSM_TIMEINIT);
610 return smem_clock_val;
611}
612#endif /* CONFIG_MSM_N_WAY_SMSM */
613
614/*
615 * Callback function that initializes the timeout value.
616 */
617static void msm_timer_sync_to_sclk_time_start(
618 struct msm_timer_sync_data_t *data)
619{
620 /* approx 2 seconds */
621 uint32_t delta = data->clock->freq << data->clock->shift << 1;
622 data->timeout = msm_read_timer_count(data->clock, LOCAL_TIMER) + delta;
623}
624
625/*
626 * Callback function that checks the timeout.
627 */
628static bool msm_timer_sync_to_sclk_time_expired(
629 struct msm_timer_sync_data_t *data)
630{
631 uint32_t delta = msm_read_timer_count(data->clock, LOCAL_TIMER) -
632 data->timeout;
633 return ((int32_t) delta) > 0;
634}
635
636/*
637 * Callback function that updates local clock from the specified source clock
638 * value and frequency.
639 */
640static void msm_timer_sync_update(struct msm_timer_sync_data_t *data,
641 uint32_t src_clk_val, uint32_t src_clk_freq)
642{
643 struct msm_clock *dst_clk = data->clock;
644 struct msm_clock_percpu_data *dst_clk_state =
645 &__get_cpu_var(msm_clocks_percpu)[dst_clk->index];
646 uint32_t dst_clk_val = msm_read_timer_count(dst_clk, LOCAL_TIMER);
647 uint32_t new_offset;
648
649 if ((dst_clk->freq << dst_clk->shift) == src_clk_freq) {
650 new_offset = src_clk_val - dst_clk_val;
651 } else {
652 uint64_t temp;
653
654 /* separate multiplication and division steps to reduce
655 rounding error */
656 temp = src_clk_val;
657 temp *= dst_clk->freq << dst_clk->shift;
658 do_div(temp, src_clk_freq);
659
660 new_offset = (uint32_t)(temp) - dst_clk_val;
661 }
662
663 if (dst_clk_state->sleep_offset + dst_clk_state->non_sleep_offset !=
664 new_offset) {
665 if (data->exit_sleep)
666 dst_clk_state->sleep_offset =
667 new_offset - dst_clk_state->non_sleep_offset;
668 else
669 dst_clk_state->non_sleep_offset =
670 new_offset - dst_clk_state->sleep_offset;
671
672 if (msm_timer_debug_mask & MSM_TIMER_DEBUG_SYNC)
673 printk(KERN_INFO "sync clock %s: "
674 "src %u, new offset %u + %u\n",
675 dst_clk->clocksource.name, src_clk_val,
676 dst_clk_state->sleep_offset,
677 dst_clk_state->non_sleep_offset);
678 }
679}
680
681/*
682 * Synchronize GPT clock with sclk.
683 */
684static void msm_timer_sync_gpt_to_sclk(int exit_sleep)
685{
686 struct msm_clock *gpt_clk = &msm_clocks[MSM_CLOCK_GPT];
687 struct msm_clock_percpu_data *gpt_clk_state =
688 &__get_cpu_var(msm_clocks_percpu)[MSM_CLOCK_GPT];
689 struct msm_timer_sync_data_t data;
690 uint32_t ret;
691
692 if (gpt_clk_state->in_sync)
693 return;
694
695 data.clock = gpt_clk;
696 data.timeout = 0;
697 data.exit_sleep = exit_sleep;
698
699 ret = msm_timer_do_sync_to_sclk(
700 msm_timer_sync_to_sclk_time_start,
701 msm_timer_sync_to_sclk_time_expired,
702 msm_timer_sync_update,
703 &data);
704
705 if (ret)
706 gpt_clk_state->in_sync = 1;
707}
708
709/*
710 * Synchronize clock with GPT clock.
711 */
712static void msm_timer_sync_to_gpt(struct msm_clock *clock, int exit_sleep)
713{
714 struct msm_clock *gpt_clk = &msm_clocks[MSM_CLOCK_GPT];
715 struct msm_clock_percpu_data *gpt_clk_state =
716 &__get_cpu_var(msm_clocks_percpu)[MSM_CLOCK_GPT];
717 struct msm_clock_percpu_data *clock_state =
718 &__get_cpu_var(msm_clocks_percpu)[clock->index];
719 struct msm_timer_sync_data_t data;
720 uint32_t gpt_clk_val;
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700721 u64 gpt_period = (1ULL << 32) * HZ;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700722 u64 now = get_jiffies_64();
723
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700724 do_div(gpt_period, gpt_hz);
725
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700726 BUG_ON(clock == gpt_clk);
727
728 if (clock_state->in_sync &&
729 (now - clock_state->last_sync_jiffies < (gpt_period >> 1)))
730 return;
731
732 gpt_clk_val = msm_read_timer_count(gpt_clk, LOCAL_TIMER)
733 + gpt_clk_state->sleep_offset + gpt_clk_state->non_sleep_offset;
734
735 if (exit_sleep && gpt_clk_val < clock_state->last_sync_gpt)
736 clock_state->non_sleep_offset -= clock->rollover_offset;
737
738 data.clock = clock;
739 data.timeout = 0;
740 data.exit_sleep = exit_sleep;
741
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700742 msm_timer_sync_update(&data, gpt_clk_val, gpt_hz);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700743
744 clock_state->in_sync = 1;
745 clock_state->last_sync_gpt = gpt_clk_val;
746 clock_state->last_sync_jiffies = now;
747}
748
749static void msm_timer_reactivate_alarm(struct msm_clock *clock)
750{
751 struct msm_clock_percpu_data *clock_state =
752 &__get_cpu_var(msm_clocks_percpu)[clock->index];
753 long alarm_delta = clock_state->alarm_vtime -
754 clock_state->sleep_offset -
755 msm_read_timer_count(clock, LOCAL_TIMER);
756 alarm_delta >>= clock->shift;
757 if (alarm_delta < (long)clock->write_delay + 4)
758 alarm_delta = clock->write_delay + 4;
759 while (msm_timer_set_next_event(alarm_delta, &clock->clockevent))
760 ;
761}
762
763int64_t msm_timer_enter_idle(void)
764{
765 struct msm_clock *gpt_clk = &msm_clocks[MSM_CLOCK_GPT];
766 struct msm_clock *clock = __get_cpu_var(msm_active_clock);
767 struct msm_clock_percpu_data *clock_state =
768 &__get_cpu_var(msm_clocks_percpu)[clock->index];
769 uint32_t alarm;
770 uint32_t count;
771 int32_t delta;
772
773 BUG_ON(clock != &msm_clocks[MSM_CLOCK_GPT] &&
774 clock != &msm_clocks[MSM_CLOCK_DGT]);
775
776 msm_timer_sync_gpt_to_sclk(0);
777 if (clock != gpt_clk)
778 msm_timer_sync_to_gpt(clock, 0);
779
780 count = msm_read_timer_count(clock, LOCAL_TIMER);
781 if (clock_state->stopped++ == 0)
782 clock_state->stopped_tick = count + clock_state->sleep_offset;
783 alarm = clock_state->alarm;
784 delta = alarm - count;
785 if (delta <= -(int32_t)((clock->freq << clock->shift) >> 10)) {
786 /* timer should have triggered 1ms ago */
787 printk(KERN_ERR "msm_timer_enter_idle: timer late %d, "
788 "reprogram it\n", delta);
789 msm_timer_reactivate_alarm(clock);
790 }
791 if (delta <= 0)
792 return 0;
793 return clocksource_cyc2ns((alarm - count) >> clock->shift,
794 clock->clocksource.mult,
795 clock->clocksource.shift);
796}
797
798void msm_timer_exit_idle(int low_power)
799{
800 struct msm_clock *gpt_clk = &msm_clocks[MSM_CLOCK_GPT];
801 struct msm_clock *clock = __get_cpu_var(msm_active_clock);
802 struct msm_clock_percpu_data *gpt_clk_state =
803 &__get_cpu_var(msm_clocks_percpu)[MSM_CLOCK_GPT];
804 struct msm_clock_percpu_data *clock_state =
805 &__get_cpu_var(msm_clocks_percpu)[clock->index];
806 uint32_t enabled;
807
808 BUG_ON(clock != &msm_clocks[MSM_CLOCK_GPT] &&
809 clock != &msm_clocks[MSM_CLOCK_DGT]);
810
811 if (!low_power)
812 goto exit_idle_exit;
813
814 enabled = __raw_readl(gpt_clk->regbase + TIMER_ENABLE) &
815 TIMER_ENABLE_EN;
816 if (!enabled)
817 __raw_writel(TIMER_ENABLE_EN, gpt_clk->regbase + TIMER_ENABLE);
818
819#if defined(CONFIG_ARCH_MSM_SCORPION) || defined(CONFIG_ARCH_MSM_KRAIT)
820 gpt_clk_state->in_sync = 0;
821#else
822 gpt_clk_state->in_sync = gpt_clk_state->in_sync && enabled;
823#endif
824 /* Make sure timer is actually enabled before we sync it */
825 wmb();
826 msm_timer_sync_gpt_to_sclk(1);
827
828 if (clock == gpt_clk)
829 goto exit_idle_alarm;
830
831 enabled = __raw_readl(clock->regbase + TIMER_ENABLE) & TIMER_ENABLE_EN;
832 if (!enabled)
833 __raw_writel(TIMER_ENABLE_EN, clock->regbase + TIMER_ENABLE);
834
835#if defined(CONFIG_ARCH_MSM_SCORPION) || defined(CONFIG_ARCH_MSM_KRAIT)
836 clock_state->in_sync = 0;
837#else
838 clock_state->in_sync = clock_state->in_sync && enabled;
839#endif
840 /* Make sure timer is actually enabled before we sync it */
841 wmb();
842 msm_timer_sync_to_gpt(clock, 1);
843
844exit_idle_alarm:
845 msm_timer_reactivate_alarm(clock);
846
847exit_idle_exit:
848 clock_state->stopped--;
849}
850
851/*
852 * Callback function that initializes the timeout value.
853 */
854static void msm_timer_get_sclk_time_start(
855 struct msm_timer_sync_data_t *data)
856{
857 data->timeout = 200000;
858}
859
860/*
861 * Callback function that checks the timeout.
862 */
863static bool msm_timer_get_sclk_time_expired(
864 struct msm_timer_sync_data_t *data)
865{
866 udelay(10);
867 return --data->timeout <= 0;
868}
869
870/*
871 * Retrieve the cycle count from the sclk and convert it into
872 * nanoseconds.
873 *
874 * On exit, if period is not NULL, it contains the period of the
875 * sclk in nanoseconds, i.e. how long the cycle count wraps around.
876 *
877 * Return value:
878 * 0: the operation failed; period is not set either
879 * >0: time in nanoseconds
880 */
881int64_t msm_timer_get_sclk_time(int64_t *period)
882{
883 struct msm_timer_sync_data_t data;
884 uint32_t clock_value;
885 int64_t tmp;
886
887 memset(&data, 0, sizeof(data));
888 clock_value = msm_timer_do_sync_to_sclk(
889 msm_timer_get_sclk_time_start,
890 msm_timer_get_sclk_time_expired,
891 NULL,
892 &data);
893
894 if (!clock_value)
895 return 0;
896
897 if (period) {
898 tmp = 1LL << 32;
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700899 tmp *= NSEC_PER_SEC;
900 do_div(tmp, sclk_hz);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700901 *period = tmp;
902 }
903
904 tmp = (int64_t)clock_value;
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -0700905 tmp *= NSEC_PER_SEC;
906 do_div(tmp, sclk_hz);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700907 return tmp;
908}
909
910int __init msm_timer_init_time_sync(void (*timeout)(void))
911{
912#if defined(CONFIG_MSM_N_WAY_SMSM) && !defined(CONFIG_MSM_DIRECT_SCLK_ACCESS)
913 int ret = smsm_change_intr_mask(SMSM_TIME_MASTER_DEM, 0xFFFFFFFF, 0);
914
915 if (ret) {
916 printk(KERN_ERR "%s: failed to clear interrupt mask, %d\n",
917 __func__, ret);
918 return ret;
919 }
920
921 smsm_change_state(SMSM_APPS_DEM,
922 SLAVE_TIME_REQUEST | SLAVE_TIME_POLL, SLAVE_TIME_INIT);
923#endif
924
925 BUG_ON(timeout == NULL);
926 msm_timer_sync_timeout = timeout;
927
928 return 0;
929}
930
931#endif
932
Steve Mucklef132c6c2012-06-06 18:30:57 -0700933static u32 notrace msm_read_sched_clock(void)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700934{
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700935 struct msm_clock *clock = &msm_clocks[msm_global_timer];
Jeff Ohlstein4e93ae12011-09-26 18:22:26 -0700936 struct clocksource *cs = &clock->clocksource;
Steve Mucklef132c6c2012-06-06 18:30:57 -0700937 return cs->read(NULL);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700938}
939
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700940int read_current_timer(unsigned long *timer_val)
941{
942 struct msm_clock *dgt = &msm_clocks[MSM_CLOCK_DGT];
943 *timer_val = msm_read_timer_count(dgt, GLOBAL_TIMER);
944 return 0;
945}
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700946
Jeff Ohlstein4e93ae12011-09-26 18:22:26 -0700947static void __init msm_sched_clock_init(void)
948{
Jeff Ohlstein7a018322011-09-28 12:44:06 -0700949 struct msm_clock *clock = &msm_clocks[msm_global_timer];
Jeff Ohlstein4e93ae12011-09-26 18:22:26 -0700950
Steve Mucklef132c6c2012-06-06 18:30:57 -0700951 setup_sched_clock(msm_read_sched_clock, 32 - clock->shift, clock->freq);
Jeff Ohlstein4e93ae12011-09-26 18:22:26 -0700952}
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -0800953
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000954#ifdef CONFIG_LOCAL_TIMERS
Steve Mucklef132c6c2012-06-06 18:30:57 -0700955int __cpuinit local_timer_setup(struct clock_event_device *evt)
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000956{
Steve Mucklef132c6c2012-06-06 18:30:57 -0700957 static DEFINE_PER_CPU(bool, first_boot) = true;
958 struct msm_clock *clock = &msm_clocks[msm_global_timer];
959
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000960 /* Use existing clock_event for cpu 0 */
961 if (!smp_processor_id())
962 return 0;
963
Steve Mucklef132c6c2012-06-06 18:30:57 -0700964 if (cpu_is_msm8x60() || cpu_is_msm8960() || cpu_is_apq8064()
965 || cpu_is_msm8930())
966 __raw_writel(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL);
967
968 if (__get_cpu_var(first_boot)) {
969 __raw_writel(0, clock->regbase + TIMER_ENABLE);
970 __raw_writel(0, clock->regbase + TIMER_CLEAR);
971 __raw_writel(~0, clock->regbase + TIMER_MATCH_VAL);
972 __get_cpu_var(first_boot) = false;
973 if (clock->status_mask)
974 while (__raw_readl(MSM_TMR_BASE + TIMER_STATUS) &
975 clock->status_mask)
976 ;
977 }
978 evt->irq = clock->irq;
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000979 evt->name = "local_timer";
Steve Mucklef132c6c2012-06-06 18:30:57 -0700980 evt->features = CLOCK_EVT_FEAT_ONESHOT;
981 evt->rating = clock->clockevent.rating;
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000982 evt->set_mode = msm_timer_set_mode;
983 evt->set_next_event = msm_timer_set_next_event;
Steve Mucklef132c6c2012-06-06 18:30:57 -0700984 evt->shift = clock->clockevent.shift;
985 evt->mult = div_sc(clock->freq, NSEC_PER_SEC, evt->shift);
986 evt->max_delta_ns =
987 clockevent_delta2ns(0xf0000000 >> clock->shift, evt);
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000988 evt->min_delta_ns = clockevent_delta2ns(4, evt);
989
Steve Mucklef132c6c2012-06-06 18:30:57 -0700990 *__this_cpu_ptr(clock->percpu_evt) = evt;
991
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000992 clockevents_register_device(evt);
Steve Mucklef132c6c2012-06-06 18:30:57 -0700993 enable_percpu_irq(evt->irq, IRQ_TYPE_EDGE_RISING);
994
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000995 return 0;
996}
997
Steve Mucklef132c6c2012-06-06 18:30:57 -0700998void local_timer_stop(struct clock_event_device *evt)
Marc Zyngier5ca709c2012-01-10 19:44:19 +0000999{
1000 evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
1001 disable_percpu_irq(evt->irq);
1002}
1003
Steve Mucklef132c6c2012-06-06 18:30:57 -07001004static struct local_timer_ops msm_lt_ops = {
1005 local_timer_setup,
1006 local_timer_stop,
Marc Zyngier5ca709c2012-01-10 19:44:19 +00001007};
1008#endif /* CONFIG_LOCAL_TIMERS */
1009
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001010static void __init msm_timer_init(void)
1011{
1012 int i;
1013 int res;
Jin Hongeecb1e02011-10-21 14:36:32 -07001014 struct irq_chip *chip;
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001015 struct msm_clock *dgt = &msm_clocks[MSM_CLOCK_DGT];
1016 struct msm_clock *gpt = &msm_clocks[MSM_CLOCK_GPT];
Stephen Boyddd15ab82011-11-08 10:34:05 -08001017
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001018 if (cpu_is_msm7x01() || cpu_is_msm7x25() || cpu_is_msm7x27() ||
1019 cpu_is_msm7x25a() || cpu_is_msm7x27a() || cpu_is_msm7x25aa() ||
Pankaj Kumarfee56a82012-04-17 14:26:49 +05301020 cpu_is_msm7x27aa() || cpu_is_msm8625() || cpu_is_msm7x25ab()) {
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001021 dgt->shift = MSM_DGT_SHIFT;
1022 dgt->freq = 19200000 >> MSM_DGT_SHIFT;
1023 dgt->clockevent.shift = 32 + MSM_DGT_SHIFT;
1024 dgt->clocksource.mask = CLOCKSOURCE_MASK(32 - MSM_DGT_SHIFT);
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001025 gpt->regbase = MSM_TMR_BASE;
1026 dgt->regbase = MSM_TMR_BASE + 0x10;
Jeff Ohlstein5d90e252011-11-04 19:00:50 -07001027 gpt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT
1028 | MSM_CLOCK_FLAGS_ODD_MATCH_WRITE
1029 | MSM_CLOCK_FLAGS_DELAYED_WRITE_POST;
Taniya Das5eb25142011-11-17 21:53:34 +05301030 if (cpu_is_msm8625()) {
1031 dgt->irq = MSM8625_INT_DEBUG_TIMER_EXP;
1032 gpt->irq = MSM8625_INT_GP_TIMER_EXP;
1033 global_timer_offset = MSM_TMR0_BASE - MSM_TMR_BASE;
Marc Zyngier28af6902011-07-22 12:52:37 +01001034 }
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001035 } else if (cpu_is_qsd8x50()) {
1036 dgt->freq = 4800000;
1037 gpt->regbase = MSM_TMR_BASE;
1038 dgt->regbase = MSM_TMR_BASE + 0x10;
1039 } else if (cpu_is_fsm9xxx())
1040 dgt->freq = 4800000;
Jeff Ohlstein6c47a272012-02-24 14:48:55 -08001041 else if (cpu_is_msm7x30() || cpu_is_msm8x55()) {
1042 gpt->status_mask = BIT(10);
1043 dgt->status_mask = BIT(2);
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001044 dgt->freq = 6144000;
Jeff Ohlstein6c47a272012-02-24 14:48:55 -08001045 } else if (cpu_is_msm8x60()) {
Jeff Ohlstein7e538f02011-11-01 17:36:22 -07001046 global_timer_offset = MSM_TMR0_BASE - MSM_TMR_BASE;
Jeff Ohlstein6c47a272012-02-24 14:48:55 -08001047 gpt->status_mask = BIT(10);
1048 dgt->status_mask = BIT(2);
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001049 dgt->freq = 6750000;
1050 __raw_writel(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL);
Jeff Ohlstein7e538f02011-11-01 17:36:22 -07001051 } else if (cpu_is_msm9615()) {
1052 dgt->freq = 6750000;
1053 __raw_writel(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL);
Jeff Ohlstein6c47a272012-02-24 14:48:55 -08001054 gpt->status_mask = BIT(10);
1055 dgt->status_mask = BIT(2);
Jeff Ohlstein7e538f02011-11-01 17:36:22 -07001056 gpt->freq = 32765;
1057 gpt_hz = 32765;
1058 sclk_hz = 32765;
Jeff Ohlsteind47f96a2011-11-04 19:00:50 -07001059 gpt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT;
1060 dgt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT;
Jeff Ohlstein7e538f02011-11-01 17:36:22 -07001061 } else if (cpu_is_msm8960() || cpu_is_apq8064() || cpu_is_msm8930()) {
1062 global_timer_offset = MSM_TMR0_BASE - MSM_TMR_BASE;
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -07001063 dgt->freq = 6750000;
1064 __raw_writel(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL);
Jeff Ohlstein6c47a272012-02-24 14:48:55 -08001065 gpt->status_mask = BIT(10);
1066 dgt->status_mask = BIT(2);
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -07001067 gpt->freq = 32765;
1068 gpt_hz = 32765;
1069 sclk_hz = 32765;
Jeff Ohlstein42d59202012-03-28 15:39:22 -07001070 if (!cpu_is_msm8930()) {
Jeff Ohlstein391a3ee2011-12-01 16:44:45 -08001071 gpt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT;
1072 dgt->flags |= MSM_CLOCK_FLAGS_UNSTABLE_COUNT;
Marc Zyngier5ca709c2012-01-10 19:44:19 +00001073 }
Stephen Boyddd15ab82011-11-08 10:34:05 -08001074 } else {
Jeff Ohlsteinf0a31e42012-01-06 19:03:05 -08001075 WARN(1, "Timer running on unknown hardware. Configure this! "
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001076 "Assuming default configuration.\n");
1077 dgt->freq = 6750000;
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001078 }
Stephen Boyddd15ab82011-11-08 10:34:05 -08001079
Jeff Ohlstein7a018322011-09-28 12:44:06 -07001080 if (msm_clocks[MSM_CLOCK_GPT].clocksource.rating > DG_TIMER_RATING)
1081 msm_global_timer = MSM_CLOCK_GPT;
1082 else
1083 msm_global_timer = MSM_CLOCK_DGT;
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001084
1085 for (i = 0; i < ARRAY_SIZE(msm_clocks); i++) {
1086 struct msm_clock *clock = &msm_clocks[i];
1087 struct clock_event_device *ce = &clock->clockevent;
1088 struct clocksource *cs = &clock->clocksource;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001089 __raw_writel(0, clock->regbase + TIMER_ENABLE);
Jeff Ohlstein6c47a272012-02-24 14:48:55 -08001090 __raw_writel(0, clock->regbase + TIMER_CLEAR);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001091 __raw_writel(~0, clock->regbase + TIMER_MATCH_VAL);
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001092
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -07001093 if ((clock->freq << clock->shift) == gpt_hz) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001094 clock->rollover_offset = 0;
1095 } else {
1096 uint64_t temp;
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001097
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001098 temp = clock->freq << clock->shift;
1099 temp <<= 32;
Jeff Ohlsteinc83811b2011-10-21 14:24:04 -07001100 do_div(temp, gpt_hz);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001101
1102 clock->rollover_offset = (uint32_t) temp;
1103 }
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001104
1105 ce->mult = div_sc(clock->freq, NSEC_PER_SEC, ce->shift);
1106 /* allow at least 10 seconds to notice that the timer wrapped */
1107 ce->max_delta_ns =
1108 clockevent_delta2ns(0xf0000000 >> clock->shift, ce);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001109 /* ticks gets rounded down by one */
1110 ce->min_delta_ns =
1111 clockevent_delta2ns(clock->write_delay + 4, ce);
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001112 ce->cpumask = cpumask_of(0);
1113
Jeff Ohlstein711a7142012-05-23 11:57:33 -07001114 res = clocksource_register_hz(cs, clock->freq);
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001115 if (res)
1116 printk(KERN_ERR "msm_timer_init: clocksource_register "
1117 "failed for %s\n", cs->name);
1118
Trilok Sonieecb28c2011-07-20 16:24:14 +01001119 ce->irq = clock->irq;
1120 if (cpu_is_msm8x60() || cpu_is_msm8960() || cpu_is_apq8064() ||
Taniya Das5eb25142011-11-17 21:53:34 +05301121 cpu_is_msm8930() || cpu_is_msm9615() ||
1122 cpu_is_msm8625()) {
Trilok Sonieecb28c2011-07-20 16:24:14 +01001123 clock->percpu_evt = alloc_percpu(struct clock_event_device *);
1124 if (!clock->percpu_evt) {
1125 pr_err("msm_timer_init: memory allocation "
1126 "failed for %s\n", ce->name);
1127 continue;
1128 }
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001129
Trilok Sonieecb28c2011-07-20 16:24:14 +01001130 *__this_cpu_ptr(clock->percpu_evt) = ce;
1131 res = request_percpu_irq(ce->irq, msm_timer_interrupt,
1132 ce->name, clock->percpu_evt);
1133 if (!res)
Trilok Soni1e52e432012-01-13 18:06:14 +05301134 enable_percpu_irq(ce->irq,
1135 IRQ_TYPE_EDGE_RISING);
Trilok Sonieecb28c2011-07-20 16:24:14 +01001136 } else {
1137 clock->evt = ce;
1138 res = request_irq(ce->irq, msm_timer_interrupt,
1139 IRQF_TIMER | IRQF_NOBALANCING | IRQF_TRIGGER_RISING,
1140 ce->name, &clock->evt);
1141 }
1142
1143 if (res)
1144 pr_err("msm_timer_init: request_irq failed for %s\n",
1145 ce->name);
1146
1147 chip = irq_get_chip(clock->irq);
Jin Hongeecb1e02011-10-21 14:36:32 -07001148 if (chip && chip->irq_mask)
Trilok Sonieecb28c2011-07-20 16:24:14 +01001149 chip->irq_mask(irq_get_irq_data(clock->irq));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001150
Jeff Ohlstein6c47a272012-02-24 14:48:55 -08001151 if (clock->status_mask)
1152 while (__raw_readl(MSM_TMR_BASE + TIMER_STATUS) &
1153 clock->status_mask)
1154 ;
1155
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001156 clockevents_register_device(ce);
1157 }
Jeff Ohlstein4e93ae12011-09-26 18:22:26 -07001158 msm_sched_clock_init();
Taniya Das36057be2011-10-28 13:02:17 +05301159
Taniya Dasc43e6872012-03-21 16:41:14 +05301160#ifdef ARCH_HAS_READ_CURRENT_TIMER
1161 if (is_smp()) {
Taniya Dasbb0b6db2012-03-19 14:09:55 +05301162 __raw_writel(1,
1163 msm_clocks[MSM_CLOCK_DGT].regbase + TIMER_ENABLE);
1164 set_delay_fn(read_current_timer_delay_loop);
1165 }
Taniya Dasc43e6872012-03-21 16:41:14 +05301166#endif
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001167
Steve Mucklef132c6c2012-06-06 18:30:57 -07001168#ifdef CONFIG_LOCAL_TIMERS
1169 local_timer_register(&msm_lt_ops);
Jeff Ohlstein94790ec2010-12-02 12:05:12 -08001170#endif
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001171}
1172
Arve Hjønnevåg3e4ea372007-11-26 04:11:58 -08001173struct sys_timer msm_timer = {
1174 .init = msm_timer_init
1175};