blob: 2a4d50ff5e2c17e8ad56e86593e48b70f29ee4df [file] [log] [blame]
Ralf Baechle42f77542007-10-18 17:48:11 +01001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2007 MIPS Technologies, Inc.
7 * Copyright (C) 2007 Ralf Baechle <ralf@linux-mips.org>
8 */
9#include <linux/clockchips.h>
10#include <linux/interrupt.h>
11#include <linux/percpu.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010012#include <linux/smp.h>
Ralf Baechle42f77542007-10-18 17:48:11 +010013
Ralf Baechlef887b932007-10-19 07:55:48 +010014#include <asm/smtc_ipi.h>
Ralf Baechle42f77542007-10-18 17:48:11 +010015#include <asm/time.h>
Kevin D. Kissell8531a352008-09-09 21:48:52 +020016#include <asm/cevt-r4k.h>
17
18/*
19 * The SMTC Kernel for the 34K, 1004K, et. al. replaces several
20 * of these routines with SMTC-specific variants.
21 */
22
23#ifndef CONFIG_MIPS_MT_SMTC
Ralf Baechle42f77542007-10-18 17:48:11 +010024
25static int mips_next_event(unsigned long delta,
26 struct clock_event_device *evt)
27{
28 unsigned int cnt;
29 int res;
30
Ralf Baechle42f77542007-10-18 17:48:11 +010031 cnt = read_c0_count();
32 cnt += delta;
33 write_c0_compare(cnt);
Atsushi Nemotoc637fec2007-10-23 21:51:19 +090034 res = ((int)(read_c0_count() - cnt) > 0) ? -ETIME : 0;
Ralf Baechle42f77542007-10-18 17:48:11 +010035 return res;
36}
37
Kevin D. Kissell8531a352008-09-09 21:48:52 +020038#endif /* CONFIG_MIPS_MT_SMTC */
39
40void mips_set_clock_mode(enum clock_event_mode mode,
41 struct clock_event_device *evt)
Ralf Baechle42f77542007-10-18 17:48:11 +010042{
43 /* Nothing to do ... */
44}
45
Kevin D. Kissell8531a352008-09-09 21:48:52 +020046DEFINE_PER_CPU(struct clock_event_device, mips_clockevent_device);
47int cp0_timer_irq_installed;
Ralf Baechle42f77542007-10-18 17:48:11 +010048
Kevin D. Kissell8531a352008-09-09 21:48:52 +020049#ifndef CONFIG_MIPS_MT_SMTC
Ralf Baechle42f77542007-10-18 17:48:11 +010050
Kevin D. Kissell8531a352008-09-09 21:48:52 +020051irqreturn_t c0_compare_interrupt(int irq, void *dev_id)
Ralf Baechle42f77542007-10-18 17:48:11 +010052{
53 const int r2 = cpu_has_mips_r2;
54 struct clock_event_device *cd;
55 int cpu = smp_processor_id();
56
57 /*
58 * Suckage alert:
59 * Before R2 of the architecture there was no way to see if a
60 * performance counter interrupt was pending, so we have to run
61 * the performance counter interrupt handler anyway.
62 */
63 if (handle_perf_irq(r2))
64 goto out;
65
66 /*
67 * The same applies to performance counter interrupts. But with the
68 * above we now know that the reason we got here must be a timer
69 * interrupt. Being the paranoiacs we are we check anyway.
70 */
71 if (!r2 || (read_c0_cause() & (1 << 30))) {
Kevin D. Kissell8531a352008-09-09 21:48:52 +020072 /* Clear Count/Compare Interrupt */
73 write_c0_compare(read_c0_compare());
Ralf Baechle42f77542007-10-18 17:48:11 +010074 cd = &per_cpu(mips_clockevent_device, cpu);
75 cd->event_handler(cd);
76 }
77
78out:
79 return IRQ_HANDLED;
80}
81
Kevin D. Kissell8531a352008-09-09 21:48:52 +020082#endif /* Not CONFIG_MIPS_MT_SMTC */
83
84struct irqaction c0_compare_irqaction = {
Ralf Baechle42f77542007-10-18 17:48:11 +010085 .handler = c0_compare_interrupt,
Wu Zhangjinf45e5182009-10-08 21:17:54 +080086 .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER,
Ralf Baechle42f77542007-10-18 17:48:11 +010087 .name = "timer",
88};
89
Ralf Baechle42f77542007-10-18 17:48:11 +010090
Kevin D. Kissell8531a352008-09-09 21:48:52 +020091void mips_event_handler(struct clock_event_device *dev)
Ralf Baechle42f77542007-10-18 17:48:11 +010092{
93}
94
95/*
96 * FIXME: This doesn't hold for the relocated E9000 compare interrupt.
97 */
98static int c0_compare_int_pending(void)
99{
David VomLehn010c1082009-12-21 17:49:22 -0800100 return (read_c0_cause() >> cp0_compare_irq_shift) & (1ul << CAUSEB_IP);
Ralf Baechle42f77542007-10-18 17:48:11 +0100101}
102
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200103/*
104 * Compare interrupt can be routed and latched outside the core,
105 * so a single execution hazard barrier may not be enough to give
106 * it time to clear as seen in the Cause register. 4 time the
107 * pipeline depth seems reasonably conservative, and empirically
108 * works better in configurations with high CPU/bus clock ratios.
109 */
110
111#define compare_change_hazard() \
112 do { \
113 irq_disable_hazard(); \
114 irq_disable_hazard(); \
115 irq_disable_hazard(); \
116 irq_disable_hazard(); \
117 } while (0)
118
119int c0_compare_int_usable(void)
Ralf Baechle42f77542007-10-18 17:48:11 +0100120{
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900121 unsigned int delta;
Ralf Baechle42f77542007-10-18 17:48:11 +0100122 unsigned int cnt;
123
124 /*
125 * IP7 already pending? Try to clear it by acking the timer.
126 */
127 if (c0_compare_int_pending()) {
Atsushi Nemotodab969c2007-10-23 01:14:06 +0900128 write_c0_compare(read_c0_count());
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200129 compare_change_hazard();
Ralf Baechle42f77542007-10-18 17:48:11 +0100130 if (c0_compare_int_pending())
131 return 0;
132 }
133
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900134 for (delta = 0x10; delta <= 0x400000; delta <<= 1) {
135 cnt = read_c0_count();
136 cnt += delta;
137 write_c0_compare(cnt);
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200138 compare_change_hazard();
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900139 if ((int)(read_c0_count() - cnt) < 0)
140 break;
141 /* increase delta if the timer was already expired */
142 }
Ralf Baechle42f77542007-10-18 17:48:11 +0100143
Atsushi Nemotoc637fec2007-10-23 21:51:19 +0900144 while ((int)(read_c0_count() - cnt) <= 0)
Ralf Baechle42f77542007-10-18 17:48:11 +0100145 ; /* Wait for expiry */
146
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200147 compare_change_hazard();
Ralf Baechle42f77542007-10-18 17:48:11 +0100148 if (!c0_compare_int_pending())
149 return 0;
150
Atsushi Nemotodab969c2007-10-23 01:14:06 +0900151 write_c0_compare(read_c0_count());
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200152 compare_change_hazard();
Ralf Baechle42f77542007-10-18 17:48:11 +0100153 if (c0_compare_int_pending())
154 return 0;
155
156 /*
157 * Feels like a real count / compare timer.
158 */
159 return 1;
160}
161
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200162#ifndef CONFIG_MIPS_MT_SMTC
163
Manuel Lauss779e7d42008-12-21 09:26:22 +0100164int __cpuinit r4k_clockevent_init(void)
Ralf Baechle42f77542007-10-18 17:48:11 +0100165{
Ralf Baechle42f77542007-10-18 17:48:11 +0100166 unsigned int cpu = smp_processor_id();
167 struct clock_event_device *cd;
Ralf Baechle38760d42007-10-29 14:23:43 +0000168 unsigned int irq;
Ralf Baechle42f77542007-10-18 17:48:11 +0100169
Yoichi Yuasa22df3f52007-10-26 22:27:05 +0900170 if (!cpu_has_counter || !mips_hpt_frequency)
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000171 return -ENXIO;
Ralf Baechle42f77542007-10-18 17:48:11 +0100172
Ralf Baechle42f77542007-10-18 17:48:11 +0100173 if (!c0_compare_int_usable())
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000174 return -ENXIO;
Ralf Baechle42f77542007-10-18 17:48:11 +0100175
Ralf Baechle38760d42007-10-29 14:23:43 +0000176 /*
177 * With vectored interrupts things are getting platform specific.
178 * get_c0_compare_int is a hook to allow a platform to return the
179 * interrupt number of it's liking.
180 */
181 irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
182 if (get_c0_compare_int)
183 irq = get_c0_compare_int();
184
Ralf Baechle42f77542007-10-18 17:48:11 +0100185 cd = &per_cpu(mips_clockevent_device, cpu);
186
187 cd->name = "MIPS";
188 cd->features = CLOCK_EVT_FEAT_ONESHOT;
189
David Daney4d2b1122010-05-19 10:40:53 -0700190 clockevent_set_clock(cd, mips_hpt_frequency);
191
Ralf Baechle42f77542007-10-18 17:48:11 +0100192 /* Calculate the min / max delta */
Ralf Baechle42f77542007-10-18 17:48:11 +0100193 cd->max_delta_ns = clockevent_delta2ns(0x7fffffff, cd);
194 cd->min_delta_ns = clockevent_delta2ns(0x300, cd);
195
196 cd->rating = 300;
197 cd->irq = irq;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030198 cd->cpumask = cpumask_of(cpu);
Ralf Baechle42f77542007-10-18 17:48:11 +0100199 cd->set_next_event = mips_next_event;
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200200 cd->set_mode = mips_set_clock_mode;
Ralf Baechle42f77542007-10-18 17:48:11 +0100201 cd->event_handler = mips_event_handler;
202
203 clockevents_register_device(cd);
204
Ralf Baechleaea68632007-10-30 02:21:08 +0000205 if (cp0_timer_irq_installed)
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000206 return 0;
Ralf Baechle38760d42007-10-29 14:23:43 +0000207
208 cp0_timer_irq_installed = 1;
209
Ralf Baechle38760d42007-10-29 14:23:43 +0000210 setup_irq(irq, &c0_compare_irqaction);
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000211
212 return 0;
Ralf Baechle42f77542007-10-18 17:48:11 +0100213}
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200214
215#endif /* Not CONFIG_MIPS_MT_SMTC */