Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 1 | /* |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 2 | * |
| 3 | * Copyright (C) 2007 Google, Inc. |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 4 | * Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved. |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 5 | * |
| 6 | * This software is licensed under the terms of the GNU General Public |
| 7 | * License version 2, as published by the Free Software Foundation, and |
| 8 | * may be copied, distributed, and modified under those terms. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | */ |
| 16 | |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 17 | #include <linux/clocksource.h> |
| 18 | #include <linux/clockchips.h> |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 19 | #include <linux/init.h> |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 20 | #include <linux/interrupt.h> |
| 21 | #include <linux/irq.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 22 | #include <linux/io.h> |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 23 | |
| 24 | #include <asm/mach/time.h> |
Stephen Boyd | ebf30dc | 2011-05-31 16:10:00 -0700 | [diff] [blame] | 25 | #include <asm/hardware/gic.h> |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 26 | #include <asm/localtimer.h> |
Stephen Boyd | ebf30dc | 2011-05-31 16:10:00 -0700 | [diff] [blame] | 27 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 28 | #include <mach/msm_iomap.h> |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 29 | #include <mach/cpu.h> |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 30 | #include <mach/board.h> |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 31 | |
| 32 | #define TIMER_MATCH_VAL 0x0000 |
| 33 | #define TIMER_COUNT_VAL 0x0004 |
| 34 | #define TIMER_ENABLE 0x0008 |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 35 | #define TIMER_ENABLE_CLR_ON_MATCH_EN BIT(1) |
| 36 | #define TIMER_ENABLE_EN BIT(0) |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 37 | #define TIMER_CLEAR 0x000C |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 38 | #define DGT_CLK_CTL 0x0034 |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 39 | #define DGT_CLK_CTL_DIV_4 0x3 |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 40 | |
| 41 | #define GPT_HZ 32768 |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 42 | |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 43 | /* TODO: Remove these ifdefs */ |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 44 | #if defined(CONFIG_ARCH_QSD8X50) |
| 45 | #define DGT_HZ (19200000 / 4) /* 19.2 MHz / 4 by default */ |
| 46 | #define MSM_DGT_SHIFT (0) |
Stephen Boyd | fdb9c3c | 2011-04-21 23:09:11 +0000 | [diff] [blame] | 47 | #elif defined(CONFIG_ARCH_MSM7X30) |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 48 | #define DGT_HZ (24576000 / 4) /* 24.576 MHz (LPXO) / 4 by default */ |
| 49 | #define MSM_DGT_SHIFT (0) |
Stephen Boyd | fdb9c3c | 2011-04-21 23:09:11 +0000 | [diff] [blame] | 50 | #elif defined(CONFIG_ARCH_MSM8X60) || defined(CONFIG_ARCH_MSM8960) |
| 51 | #define DGT_HZ (27000000 / 4) /* 27 MHz (PXO) / 4 by default */ |
| 52 | #define MSM_DGT_SHIFT (0) |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 53 | #else |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 54 | #define DGT_HZ 19200000 /* 19.2 MHz or 600 KHz after shift */ |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 55 | #define MSM_DGT_SHIFT (5) |
| 56 | #endif |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 57 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 58 | static void __iomem *event_base; |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 59 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 60 | static irqreturn_t msm_timer_interrupt(int irq, void *dev_id) |
| 61 | { |
Marc Zyngier | 28af690 | 2011-07-22 12:52:37 +0100 | [diff] [blame] | 62 | struct clock_event_device *evt = *(struct clock_event_device **)dev_id; |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 63 | if (evt->event_handler == NULL) |
| 64 | return IRQ_HANDLED; |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 65 | /* Stop the timer tick */ |
| 66 | if (evt->mode == CLOCK_EVT_MODE_ONESHOT) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 67 | u32 ctrl = readl_relaxed(event_base + TIMER_ENABLE); |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 68 | ctrl &= ~TIMER_ENABLE_EN; |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 69 | writel_relaxed(ctrl, event_base + TIMER_ENABLE); |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 70 | } |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 71 | evt->event_handler(evt); |
| 72 | return IRQ_HANDLED; |
| 73 | } |
| 74 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 75 | static int msm_timer_set_next_event(unsigned long cycles, |
| 76 | struct clock_event_device *evt) |
| 77 | { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 78 | u32 ctrl = readl_relaxed(event_base + TIMER_ENABLE); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 79 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 80 | writel_relaxed(0, event_base + TIMER_CLEAR); |
| 81 | writel_relaxed(cycles, event_base + TIMER_MATCH_VAL); |
| 82 | writel_relaxed(ctrl | TIMER_ENABLE_EN, event_base + TIMER_ENABLE); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | static void msm_timer_set_mode(enum clock_event_mode mode, |
| 87 | struct clock_event_device *evt) |
| 88 | { |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 89 | u32 ctrl; |
| 90 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 91 | ctrl = readl_relaxed(event_base + TIMER_ENABLE); |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 92 | ctrl &= ~(TIMER_ENABLE_EN | TIMER_ENABLE_CLR_ON_MATCH_EN); |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 93 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 94 | switch (mode) { |
| 95 | case CLOCK_EVT_MODE_RESUME: |
| 96 | case CLOCK_EVT_MODE_PERIODIC: |
| 97 | break; |
| 98 | case CLOCK_EVT_MODE_ONESHOT: |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 99 | /* Timer is enabled in set_next_event */ |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 100 | break; |
| 101 | case CLOCK_EVT_MODE_UNUSED: |
| 102 | case CLOCK_EVT_MODE_SHUTDOWN: |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 103 | break; |
| 104 | } |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 105 | writel_relaxed(ctrl, event_base + TIMER_ENABLE); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 106 | } |
| 107 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 108 | static struct clock_event_device msm_clockevent = { |
| 109 | .name = "gp_timer", |
| 110 | .features = CLOCK_EVT_FEAT_ONESHOT, |
| 111 | .shift = 32, |
| 112 | .rating = 200, |
| 113 | .set_next_event = msm_timer_set_next_event, |
| 114 | .set_mode = msm_timer_set_mode, |
| 115 | }; |
| 116 | |
| 117 | static union { |
| 118 | struct clock_event_device *evt; |
| 119 | struct clock_event_device __percpu **percpu_evt; |
| 120 | } msm_evt; |
| 121 | |
| 122 | static void __iomem *source_base; |
| 123 | |
| 124 | static cycle_t msm_read_timer_count(struct clocksource *cs) |
| 125 | { |
| 126 | /* |
| 127 | * Shift timer count down by a constant due to unreliable lower bits |
| 128 | * on some targets. |
| 129 | */ |
| 130 | return readl_relaxed(source_base + TIMER_COUNT_VAL) >> MSM_DGT_SHIFT; |
| 131 | } |
| 132 | |
| 133 | static struct clocksource msm_clocksource = { |
| 134 | .name = "dg_timer", |
| 135 | .rating = 300, |
| 136 | .read = msm_read_timer_count, |
| 137 | .mask = CLOCKSOURCE_MASK((32 - MSM_DGT_SHIFT)), |
| 138 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | static void __init msm_timer_init(void) |
| 142 | { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 143 | struct clock_event_device *ce = &msm_clockevent; |
| 144 | struct clocksource *cs = &msm_clocksource; |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 145 | int res; |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 146 | |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 147 | if (cpu_is_msm7x01()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 148 | event_base = MSM_CSR_BASE; |
| 149 | source_base = MSM_CSR_BASE + 0x10; |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 150 | } else if (cpu_is_msm7x30()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 151 | event_base = MSM_CSR_BASE + 0x04; |
| 152 | source_base = MSM_CSR_BASE + 0x24; |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 153 | } else if (cpu_is_qsd8x50()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 154 | event_base = MSM_CSR_BASE; |
| 155 | source_base = MSM_CSR_BASE + 0x10; |
Stepan Moskovchenko | a81c8c3 | 2010-12-01 19:25:14 -0800 | [diff] [blame] | 156 | } else if (cpu_is_msm8x60() || cpu_is_msm8960()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 157 | event_base = MSM_TMR_BASE + 0x04; |
| 158 | /* Use CPU0's timer as the global clock source. */ |
| 159 | source_base = MSM_TMR0_BASE + 0x24; |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 160 | } else |
| 161 | BUG(); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 162 | |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 163 | #ifdef CONFIG_ARCH_MSM_SCORPIONMP |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 164 | writel(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL); |
| 165 | #endif |
| 166 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 167 | writel_relaxed(0, event_base + TIMER_ENABLE); |
| 168 | writel_relaxed(0, event_base + TIMER_CLEAR); |
| 169 | writel_relaxed(~0, event_base + TIMER_MATCH_VAL); |
| 170 | ce->mult = div_sc(GPT_HZ, NSEC_PER_SEC, ce->shift); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 171 | /* |
| 172 | * allow at least 10 seconds to notice that the timer |
| 173 | * wrapped |
| 174 | */ |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 175 | ce->max_delta_ns = clockevent_delta2ns(0xf0000000, ce); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 176 | /* 4 gets rounded down to 3 */ |
| 177 | ce->min_delta_ns = clockevent_delta2ns(4, ce); |
| 178 | ce->cpumask = cpumask_of(0); |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 179 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 180 | ce->irq = INT_GP_TIMER_EXP; |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 181 | if (cpu_is_msm8x60() || cpu_is_msm8960()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 182 | msm_evt.percpu_evt = alloc_percpu(struct clock_event_device *); |
| 183 | if (!msm_evt.percpu_evt) { |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 184 | pr_err("memory allocation failed for %s\n", ce->name); |
| 185 | goto err; |
Marc Zyngier | 28af690 | 2011-07-22 12:52:37 +0100 | [diff] [blame] | 186 | } |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 187 | *__this_cpu_ptr(msm_evt.percpu_evt) = ce; |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 188 | res = request_percpu_irq(ce->irq, msm_timer_interrupt, |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 189 | ce->name, msm_evt.percpu_evt); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 190 | if (!res) |
| 191 | enable_percpu_irq(ce->irq, 0); |
| 192 | } else { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 193 | msm_evt.evt = ce; |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 194 | res = request_irq(ce->irq, msm_timer_interrupt, |
| 195 | IRQF_TIMER | IRQF_NOBALANCING | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 196 | IRQF_TRIGGER_RISING, ce->name, &msm_evt.evt); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 197 | } |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 198 | |
| 199 | if (res) |
| 200 | pr_err("request_irq failed for %s\n", ce->name); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 201 | clockevents_register_device(ce); |
| 202 | err: |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 203 | writel_relaxed(TIMER_ENABLE_EN, source_base + TIMER_ENABLE); |
| 204 | res = clocksource_register_hz(cs, DGT_HZ >> MSM_DGT_SHIFT); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 205 | if (res) |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 206 | pr_err("clocksource_register failed\n"); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 207 | } |
| 208 | |
Stephen Boyd | 2852cca | 2011-11-08 10:34:03 -0800 | [diff] [blame] | 209 | #ifdef CONFIG_LOCAL_TIMERS |
Santosh Shilimkar | af90f10 | 2011-02-23 18:53:15 +0100 | [diff] [blame] | 210 | int __cpuinit local_timer_setup(struct clock_event_device *evt) |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 211 | { |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 212 | /* Use existing clock_event for cpu 0 */ |
| 213 | if (!smp_processor_id()) |
David Brown | 893b66c | 2011-03-30 11:26:57 -0700 | [diff] [blame] | 214 | return 0; |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 215 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 216 | writel_relaxed(0, event_base + TIMER_ENABLE); |
| 217 | writel_relaxed(0, event_base + TIMER_CLEAR); |
| 218 | writel_relaxed(~0, event_base + TIMER_MATCH_VAL); |
| 219 | evt->irq = msm_clockevent.irq; |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 220 | evt->name = "local_timer"; |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 221 | evt->features = msm_clockevent.features; |
| 222 | evt->rating = msm_clockevent.rating; |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 223 | evt->set_mode = msm_timer_set_mode; |
| 224 | evt->set_next_event = msm_timer_set_next_event; |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 225 | evt->shift = msm_clockevent.shift; |
| 226 | evt->mult = div_sc(GPT_HZ, NSEC_PER_SEC, evt->shift); |
| 227 | evt->max_delta_ns = clockevent_delta2ns(0xf0000000, evt); |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 228 | evt->min_delta_ns = clockevent_delta2ns(4, evt); |
| 229 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame^] | 230 | *__this_cpu_ptr(msm_evt.percpu_evt) = evt; |
Marc Zyngier | 28af690 | 2011-07-22 12:52:37 +0100 | [diff] [blame] | 231 | enable_percpu_irq(evt->irq, 0); |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 232 | clockevents_register_device(evt); |
Santosh Shilimkar | af90f10 | 2011-02-23 18:53:15 +0100 | [diff] [blame] | 233 | return 0; |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 234 | } |
| 235 | |
Marc Zyngier | 28af690 | 2011-07-22 12:52:37 +0100 | [diff] [blame] | 236 | void local_timer_stop(struct clock_event_device *evt) |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 237 | { |
Marc Zyngier | 28af690 | 2011-07-22 12:52:37 +0100 | [diff] [blame] | 238 | evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt); |
| 239 | disable_percpu_irq(evt->irq); |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 240 | } |
Stephen Boyd | 2852cca | 2011-11-08 10:34:03 -0800 | [diff] [blame] | 241 | #endif /* CONFIG_LOCAL_TIMERS */ |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 242 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 243 | struct sys_timer msm_timer = { |
| 244 | .init = msm_timer_init |
| 245 | }; |