MIPS: cevt-r4k: Use CAUSEF_TI, CAUSEF_PCI constants
[linux-2.6-block.git] / arch / mips / kernel / cevt-r4k.c
CommitLineData
42f77542
RB
1/*
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>
631330f5 12#include <linux/smp.h>
ca4d3e67 13#include <linux/irq.h>
42f77542
RB
14
15#include <asm/time.h>
8531a35e
KK
16#include <asm/cevt-r4k.h>
17
42f77542 18static int mips_next_event(unsigned long delta,
70342287 19 struct clock_event_device *evt)
42f77542
RB
20{
21 unsigned int cnt;
22 int res;
23
42f77542
RB
24 cnt = read_c0_count();
25 cnt += delta;
26 write_c0_compare(cnt);
5878fc93 27 res = ((int)(read_c0_count() - cnt) >= 0) ? -ETIME : 0;
42f77542
RB
28 return res;
29}
30
8531a35e
KK
31void mips_set_clock_mode(enum clock_event_mode mode,
32 struct clock_event_device *evt)
42f77542
RB
33{
34 /* Nothing to do ... */
35}
36
8531a35e
KK
37DEFINE_PER_CPU(struct clock_event_device, mips_clockevent_device);
38int cp0_timer_irq_installed;
42f77542 39
19971c0b
JH
40/*
41 * Possibly handle a performance counter interrupt.
42 * Return true if the timer interrupt should not be checked
43 */
44static inline int handle_perf_irq(int r2)
45{
46 /*
47 * The performance counter overflow interrupt may be shared with the
48 * timer interrupt (cp0_perfcount_irq < 0). If it is and a
49 * performance counter has overflowed (perf_irq() == IRQ_HANDLED)
50 * and we can't reliably determine if a counter interrupt has also
51 * happened (!r2) then don't check for a timer interrupt.
52 */
53 return (cp0_perfcount_irq < 0) &&
54 perf_irq() == IRQ_HANDLED &&
55 !r2;
56}
57
8531a35e 58irqreturn_t c0_compare_interrupt(int irq, void *dev_id)
42f77542 59{
54dac950 60 const int r2 = cpu_has_mips_r2_r6;
42f77542
RB
61 struct clock_event_device *cd;
62 int cpu = smp_processor_id();
63
64 /*
65 * Suckage alert:
66 * Before R2 of the architecture there was no way to see if a
67 * performance counter interrupt was pending, so we have to run
68 * the performance counter interrupt handler anyway.
69 */
70 if (handle_perf_irq(r2))
71 goto out;
72
73 /*
70342287 74 * The same applies to performance counter interrupts. But with the
42f77542
RB
75 * above we now know that the reason we got here must be a timer
76 * interrupt. Being the paranoiacs we are we check anyway.
77 */
3ba5040a 78 if (!r2 || (read_c0_cause() & CAUSEF_TI)) {
8531a35e
KK
79 /* Clear Count/Compare Interrupt */
80 write_c0_compare(read_c0_compare());
42f77542
RB
81 cd = &per_cpu(mips_clockevent_device, cpu);
82 cd->event_handler(cd);
83 }
84
85out:
86 return IRQ_HANDLED;
87}
88
8531a35e 89struct irqaction c0_compare_irqaction = {
42f77542 90 .handler = c0_compare_interrupt,
8b5690f8 91 .flags = IRQF_PERCPU | IRQF_TIMER,
42f77542
RB
92 .name = "timer",
93};
94
42f77542 95
8531a35e 96void mips_event_handler(struct clock_event_device *dev)
42f77542
RB
97{
98}
99
100/*
101 * FIXME: This doesn't hold for the relocated E9000 compare interrupt.
102 */
103static int c0_compare_int_pending(void)
104{
ae58d882 105 /* When cpu_has_mips_r2, this checks Cause.TI instead of Cause.IP7 */
010c108d 106 return (read_c0_cause() >> cp0_compare_irq_shift) & (1ul << CAUSEB_IP);
42f77542
RB
107}
108
8531a35e
KK
109/*
110 * Compare interrupt can be routed and latched outside the core,
4f1a1eb5
AC
111 * so wait up to worst case number of cycle counter ticks for timer interrupt
112 * changes to propagate to the cause register.
8531a35e 113 */
4f1a1eb5 114#define COMPARE_INT_SEEN_TICKS 50
8531a35e
KK
115
116int c0_compare_int_usable(void)
42f77542 117{
3a6c43a7 118 unsigned int delta;
42f77542
RB
119 unsigned int cnt;
120
9843b030
SL
121#ifdef CONFIG_KVM_GUEST
122 return 1;
123#endif
124
42f77542 125 /*
70342287 126 * IP7 already pending? Try to clear it by acking the timer.
42f77542
RB
127 */
128 if (c0_compare_int_pending()) {
4f1a1eb5
AC
129 cnt = read_c0_count();
130 write_c0_compare(cnt);
131 back_to_back_c0_hazard();
132 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
133 if (!c0_compare_int_pending())
134 break;
42f77542
RB
135 if (c0_compare_int_pending())
136 return 0;
137 }
138
3a6c43a7
AN
139 for (delta = 0x10; delta <= 0x400000; delta <<= 1) {
140 cnt = read_c0_count();
141 cnt += delta;
142 write_c0_compare(cnt);
4f1a1eb5 143 back_to_back_c0_hazard();
3a6c43a7
AN
144 if ((int)(read_c0_count() - cnt) < 0)
145 break;
146 /* increase delta if the timer was already expired */
147 }
42f77542 148
c637fecb 149 while ((int)(read_c0_count() - cnt) <= 0)
42f77542
RB
150 ; /* Wait for expiry */
151
4f1a1eb5
AC
152 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
153 if (c0_compare_int_pending())
154 break;
42f77542
RB
155 if (!c0_compare_int_pending())
156 return 0;
4f1a1eb5
AC
157 cnt = read_c0_count();
158 write_c0_compare(cnt);
159 back_to_back_c0_hazard();
160 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
161 if (!c0_compare_int_pending())
162 break;
42f77542
RB
163 if (c0_compare_int_pending())
164 return 0;
165
166 /*
167 * Feels like a real count / compare timer.
168 */
169 return 1;
170}
171
078a55fc 172int r4k_clockevent_init(void)
42f77542 173{
42f77542
RB
174 unsigned int cpu = smp_processor_id();
175 struct clock_event_device *cd;
38760d40 176 unsigned int irq;
42f77542 177
22df3f53 178 if (!cpu_has_counter || !mips_hpt_frequency)
5aa85c9f 179 return -ENXIO;
42f77542 180
42f77542 181 if (!c0_compare_int_usable())
5aa85c9f 182 return -ENXIO;
42f77542 183
38760d40
RB
184 /*
185 * With vectored interrupts things are getting platform specific.
186 * get_c0_compare_int is a hook to allow a platform to return the
187 * interrupt number of it's liking.
188 */
189 irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
190 if (get_c0_compare_int)
191 irq = get_c0_compare_int();
192
42f77542
RB
193 cd = &per_cpu(mips_clockevent_device, cpu);
194
195 cd->name = "MIPS";
5977d682 196 cd->features = CLOCK_EVT_FEAT_ONESHOT |
d8107efd
PB
197 CLOCK_EVT_FEAT_C3STOP |
198 CLOCK_EVT_FEAT_PERCPU;
42f77542 199
4d2b1125
DD
200 clockevent_set_clock(cd, mips_hpt_frequency);
201
42f77542 202 /* Calculate the min / max delta */
42f77542
RB
203 cd->max_delta_ns = clockevent_delta2ns(0x7fffffff, cd);
204 cd->min_delta_ns = clockevent_delta2ns(0x300, cd);
205
206 cd->rating = 300;
207 cd->irq = irq;
320ab2b0 208 cd->cpumask = cpumask_of(cpu);
42f77542 209 cd->set_next_event = mips_next_event;
8531a35e 210 cd->set_mode = mips_set_clock_mode;
42f77542
RB
211 cd->event_handler = mips_event_handler;
212
213 clockevents_register_device(cd);
214
aea68639 215 if (cp0_timer_irq_installed)
5aa85c9f 216 return 0;
38760d40
RB
217
218 cp0_timer_irq_installed = 1;
219
38760d40 220 setup_irq(irq, &c0_compare_irqaction);
5aa85c9f
RB
221
222 return 0;
42f77542 223}
8531a35e 224