blob: 51095dd9599d307605caeb8c2aca9e99a0e8dce1 [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>
David Howellsca4d3e672010-10-07 14:08:54 +010013#include <linux/irq.h>
Ralf Baechle42f77542007-10-18 17:48:11 +010014
Ralf Baechlef887b932007-10-19 07:55:48 +010015#include <asm/smtc_ipi.h>
Ralf Baechle42f77542007-10-18 17:48:11 +010016#include <asm/time.h>
Kevin D. Kissell8531a352008-09-09 21:48:52 +020017#include <asm/cevt-r4k.h>
18
19/*
20 * The SMTC Kernel for the 34K, 1004K, et. al. replaces several
21 * of these routines with SMTC-specific variants.
22 */
23
24#ifndef CONFIG_MIPS_MT_SMTC
Ralf Baechle42f77542007-10-18 17:48:11 +010025
26static int mips_next_event(unsigned long delta,
27 struct clock_event_device *evt)
28{
29 unsigned int cnt;
30 int res;
31
Ralf Baechle42f77542007-10-18 17:48:11 +010032 cnt = read_c0_count();
33 cnt += delta;
34 write_c0_compare(cnt);
Kevin Cernekee5878fc92010-11-23 10:26:44 -080035 res = ((int)(read_c0_count() - cnt) >= 0) ? -ETIME : 0;
Ralf Baechle42f77542007-10-18 17:48:11 +010036 return res;
37}
38
Kevin D. Kissell8531a352008-09-09 21:48:52 +020039#endif /* CONFIG_MIPS_MT_SMTC */
40
41void mips_set_clock_mode(enum clock_event_mode mode,
42 struct clock_event_device *evt)
Ralf Baechle42f77542007-10-18 17:48:11 +010043{
44 /* Nothing to do ... */
45}
46
Kevin D. Kissell8531a352008-09-09 21:48:52 +020047DEFINE_PER_CPU(struct clock_event_device, mips_clockevent_device);
48int cp0_timer_irq_installed;
Ralf Baechle42f77542007-10-18 17:48:11 +010049
Kevin D. Kissell8531a352008-09-09 21:48:52 +020050#ifndef CONFIG_MIPS_MT_SMTC
Ralf Baechle42f77542007-10-18 17:48:11 +010051
Kevin D. Kissell8531a352008-09-09 21:48:52 +020052irqreturn_t c0_compare_interrupt(int irq, void *dev_id)
Ralf Baechle42f77542007-10-18 17:48:11 +010053{
54 const int r2 = cpu_has_mips_r2;
55 struct clock_event_device *cd;
56 int cpu = smp_processor_id();
57
58 /*
59 * Suckage alert:
60 * Before R2 of the architecture there was no way to see if a
61 * performance counter interrupt was pending, so we have to run
62 * the performance counter interrupt handler anyway.
63 */
64 if (handle_perf_irq(r2))
65 goto out;
66
67 /*
68 * The same applies to performance counter interrupts. But with the
69 * above we now know that the reason we got here must be a timer
70 * interrupt. Being the paranoiacs we are we check anyway.
71 */
72 if (!r2 || (read_c0_cause() & (1 << 30))) {
Kevin D. Kissell8531a352008-09-09 21:48:52 +020073 /* Clear Count/Compare Interrupt */
74 write_c0_compare(read_c0_compare());
Ralf Baechle42f77542007-10-18 17:48:11 +010075 cd = &per_cpu(mips_clockevent_device, cpu);
76 cd->event_handler(cd);
77 }
78
79out:
80 return IRQ_HANDLED;
81}
82
Kevin D. Kissell8531a352008-09-09 21:48:52 +020083#endif /* Not CONFIG_MIPS_MT_SMTC */
84
85struct irqaction c0_compare_irqaction = {
Ralf Baechle42f77542007-10-18 17:48:11 +010086 .handler = c0_compare_interrupt,
Yong Zhang8b5690f2011-11-22 14:38:03 +000087 .flags = IRQF_PERCPU | IRQF_TIMER,
Ralf Baechle42f77542007-10-18 17:48:11 +010088 .name = "timer",
89};
90
Ralf Baechle42f77542007-10-18 17:48:11 +010091
Kevin D. Kissell8531a352008-09-09 21:48:52 +020092void mips_event_handler(struct clock_event_device *dev)
Ralf Baechle42f77542007-10-18 17:48:11 +010093{
94}
95
96/*
97 * FIXME: This doesn't hold for the relocated E9000 compare interrupt.
98 */
99static int c0_compare_int_pending(void)
100{
David VomLehn010c1082009-12-21 17:49:22 -0800101 return (read_c0_cause() >> cp0_compare_irq_shift) & (1ul << CAUSEB_IP);
Ralf Baechle42f77542007-10-18 17:48:11 +0100102}
103
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200104/*
105 * Compare interrupt can be routed and latched outside the core,
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500106 * so wait up to worst case number of cycle counter ticks for timer interrupt
107 * changes to propagate to the cause register.
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200108 */
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500109#define COMPARE_INT_SEEN_TICKS 50
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200110
111int c0_compare_int_usable(void)
Ralf Baechle42f77542007-10-18 17:48:11 +0100112{
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900113 unsigned int delta;
Ralf Baechle42f77542007-10-18 17:48:11 +0100114 unsigned int cnt;
115
116 /*
117 * IP7 already pending? Try to clear it by acking the timer.
118 */
119 if (c0_compare_int_pending()) {
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500120 cnt = read_c0_count();
121 write_c0_compare(cnt);
122 back_to_back_c0_hazard();
123 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
124 if (!c0_compare_int_pending())
125 break;
Ralf Baechle42f77542007-10-18 17:48:11 +0100126 if (c0_compare_int_pending())
127 return 0;
128 }
129
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900130 for (delta = 0x10; delta <= 0x400000; delta <<= 1) {
131 cnt = read_c0_count();
132 cnt += delta;
133 write_c0_compare(cnt);
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500134 back_to_back_c0_hazard();
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900135 if ((int)(read_c0_count() - cnt) < 0)
136 break;
137 /* increase delta if the timer was already expired */
138 }
Ralf Baechle42f77542007-10-18 17:48:11 +0100139
Atsushi Nemotoc637fec2007-10-23 21:51:19 +0900140 while ((int)(read_c0_count() - cnt) <= 0)
Ralf Baechle42f77542007-10-18 17:48:11 +0100141 ; /* Wait for expiry */
142
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500143 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
144 if (c0_compare_int_pending())
145 break;
Ralf Baechle42f77542007-10-18 17:48:11 +0100146 if (!c0_compare_int_pending())
147 return 0;
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500148 cnt = read_c0_count();
149 write_c0_compare(cnt);
150 back_to_back_c0_hazard();
151 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
152 if (!c0_compare_int_pending())
153 break;
Ralf Baechle42f77542007-10-18 17:48:11 +0100154 if (c0_compare_int_pending())
155 return 0;
156
157 /*
158 * Feels like a real count / compare timer.
159 */
160 return 1;
161}
162
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200163#ifndef CONFIG_MIPS_MT_SMTC
164
Manuel Lauss779e7d42008-12-21 09:26:22 +0100165int __cpuinit r4k_clockevent_init(void)
Ralf Baechle42f77542007-10-18 17:48:11 +0100166{
Ralf Baechle42f77542007-10-18 17:48:11 +0100167 unsigned int cpu = smp_processor_id();
168 struct clock_event_device *cd;
Ralf Baechle38760d42007-10-29 14:23:43 +0000169 unsigned int irq;
Ralf Baechle42f77542007-10-18 17:48:11 +0100170
Yoichi Yuasa22df3f52007-10-26 22:27:05 +0900171 if (!cpu_has_counter || !mips_hpt_frequency)
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000172 return -ENXIO;
Ralf Baechle42f77542007-10-18 17:48:11 +0100173
Ralf Baechle42f77542007-10-18 17:48:11 +0100174 if (!c0_compare_int_usable())
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000175 return -ENXIO;
Ralf Baechle42f77542007-10-18 17:48:11 +0100176
Ralf Baechle38760d42007-10-29 14:23:43 +0000177 /*
178 * With vectored interrupts things are getting platform specific.
179 * get_c0_compare_int is a hook to allow a platform to return the
180 * interrupt number of it's liking.
181 */
182 irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
183 if (get_c0_compare_int)
184 irq = get_c0_compare_int();
185
Ralf Baechle42f77542007-10-18 17:48:11 +0100186 cd = &per_cpu(mips_clockevent_device, cpu);
187
188 cd->name = "MIPS";
189 cd->features = CLOCK_EVT_FEAT_ONESHOT;
190
David Daney4d2b1122010-05-19 10:40:53 -0700191 clockevent_set_clock(cd, mips_hpt_frequency);
192
Ralf Baechle42f77542007-10-18 17:48:11 +0100193 /* Calculate the min / max delta */
Ralf Baechle42f77542007-10-18 17:48:11 +0100194 cd->max_delta_ns = clockevent_delta2ns(0x7fffffff, cd);
195 cd->min_delta_ns = clockevent_delta2ns(0x300, cd);
196
197 cd->rating = 300;
198 cd->irq = irq;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030199 cd->cpumask = cpumask_of(cpu);
Ralf Baechle42f77542007-10-18 17:48:11 +0100200 cd->set_next_event = mips_next_event;
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200201 cd->set_mode = mips_set_clock_mode;
Ralf Baechle42f77542007-10-18 17:48:11 +0100202 cd->event_handler = mips_event_handler;
203
204 clockevents_register_device(cd);
205
Ralf Baechleaea68632007-10-30 02:21:08 +0000206 if (cp0_timer_irq_installed)
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000207 return 0;
Ralf Baechle38760d42007-10-29 14:23:43 +0000208
209 cp0_timer_irq_installed = 1;
210
Ralf Baechle38760d42007-10-29 14:23:43 +0000211 setup_irq(irq, &c0_compare_irqaction);
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000212
213 return 0;
Ralf Baechle42f77542007-10-18 17:48:11 +0100214}
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200215
216#endif /* Not CONFIG_MIPS_MT_SMTC */