Merge branch 'next' into for-linus
[deliverable/linux.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 14
f887b93e 15#include <asm/smtc_ipi.h>
42f77542 16#include <asm/time.h>
8531a35e
KK
17#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
42f77542
RB
25
26static int mips_next_event(unsigned long delta,
27 struct clock_event_device *evt)
28{
29 unsigned int cnt;
30 int res;
31
42f77542
RB
32 cnt = read_c0_count();
33 cnt += delta;
34 write_c0_compare(cnt);
5878fc93 35 res = ((int)(read_c0_count() - cnt) >= 0) ? -ETIME : 0;
42f77542
RB
36 return res;
37}
38
8531a35e
KK
39#endif /* CONFIG_MIPS_MT_SMTC */
40
41void mips_set_clock_mode(enum clock_event_mode mode,
42 struct clock_event_device *evt)
42f77542
RB
43{
44 /* Nothing to do ... */
45}
46
8531a35e
KK
47DEFINE_PER_CPU(struct clock_event_device, mips_clockevent_device);
48int cp0_timer_irq_installed;
42f77542 49
8531a35e 50#ifndef CONFIG_MIPS_MT_SMTC
42f77542 51
8531a35e 52irqreturn_t c0_compare_interrupt(int irq, void *dev_id)
42f77542
RB
53{
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))) {
8531a35e
KK
73 /* Clear Count/Compare Interrupt */
74 write_c0_compare(read_c0_compare());
42f77542
RB
75 cd = &per_cpu(mips_clockevent_device, cpu);
76 cd->event_handler(cd);
77 }
78
79out:
80 return IRQ_HANDLED;
81}
82
8531a35e
KK
83#endif /* Not CONFIG_MIPS_MT_SMTC */
84
85struct irqaction c0_compare_irqaction = {
42f77542 86 .handler = c0_compare_interrupt,
f45e5183 87 .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER,
42f77542
RB
88 .name = "timer",
89};
90
42f77542 91
8531a35e 92void mips_event_handler(struct clock_event_device *dev)
42f77542
RB
93{
94}
95
96/*
97 * FIXME: This doesn't hold for the relocated E9000 compare interrupt.
98 */
99static int c0_compare_int_pending(void)
100{
010c108d 101 return (read_c0_cause() >> cp0_compare_irq_shift) & (1ul << CAUSEB_IP);
42f77542
RB
102}
103
8531a35e
KK
104/*
105 * Compare interrupt can be routed and latched outside the core,
4f1a1eb5
AC
106 * so wait up to worst case number of cycle counter ticks for timer interrupt
107 * changes to propagate to the cause register.
8531a35e 108 */
4f1a1eb5 109#define COMPARE_INT_SEEN_TICKS 50
8531a35e
KK
110
111int c0_compare_int_usable(void)
42f77542 112{
3a6c43a7 113 unsigned int delta;
42f77542
RB
114 unsigned int cnt;
115
116 /*
117 * IP7 already pending? Try to clear it by acking the timer.
118 */
119 if (c0_compare_int_pending()) {
4f1a1eb5
AC
120 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;
42f77542
RB
126 if (c0_compare_int_pending())
127 return 0;
128 }
129
3a6c43a7
AN
130 for (delta = 0x10; delta <= 0x400000; delta <<= 1) {
131 cnt = read_c0_count();
132 cnt += delta;
133 write_c0_compare(cnt);
4f1a1eb5 134 back_to_back_c0_hazard();
3a6c43a7
AN
135 if ((int)(read_c0_count() - cnt) < 0)
136 break;
137 /* increase delta if the timer was already expired */
138 }
42f77542 139
c637fecb 140 while ((int)(read_c0_count() - cnt) <= 0)
42f77542
RB
141 ; /* Wait for expiry */
142
4f1a1eb5
AC
143 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
144 if (c0_compare_int_pending())
145 break;
42f77542
RB
146 if (!c0_compare_int_pending())
147 return 0;
4f1a1eb5
AC
148 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;
42f77542
RB
154 if (c0_compare_int_pending())
155 return 0;
156
157 /*
158 * Feels like a real count / compare timer.
159 */
160 return 1;
161}
162
8531a35e
KK
163#ifndef CONFIG_MIPS_MT_SMTC
164
779e7d41 165int __cpuinit r4k_clockevent_init(void)
42f77542 166{
42f77542
RB
167 unsigned int cpu = smp_processor_id();
168 struct clock_event_device *cd;
38760d40 169 unsigned int irq;
42f77542 170
22df3f53 171 if (!cpu_has_counter || !mips_hpt_frequency)
5aa85c9f 172 return -ENXIO;
42f77542 173
42f77542 174 if (!c0_compare_int_usable())
5aa85c9f 175 return -ENXIO;
42f77542 176
38760d40
RB
177 /*
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
42f77542
RB
186 cd = &per_cpu(mips_clockevent_device, cpu);
187
188 cd->name = "MIPS";
189 cd->features = CLOCK_EVT_FEAT_ONESHOT;
190
4d2b1125
DD
191 clockevent_set_clock(cd, mips_hpt_frequency);
192
42f77542 193 /* Calculate the min / max delta */
42f77542
RB
194 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;
320ab2b0 199 cd->cpumask = cpumask_of(cpu);
42f77542 200 cd->set_next_event = mips_next_event;
8531a35e 201 cd->set_mode = mips_set_clock_mode;
42f77542
RB
202 cd->event_handler = mips_event_handler;
203
204 clockevents_register_device(cd);
205
aea68639 206 if (cp0_timer_irq_installed)
5aa85c9f 207 return 0;
38760d40
RB
208
209 cp0_timer_irq_installed = 1;
210
38760d40 211 setup_irq(irq, &c0_compare_irqaction);
5aa85c9f
RB
212
213 return 0;
42f77542 214}
8531a35e
KK
215
216#endif /* Not CONFIG_MIPS_MT_SMTC */
This page took 0.310232 seconds and 5 git commands to generate.