Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux
[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 17#include <asm/cevt-r4k.h>
98b67c37 18#include <asm/gic.h>
8531a35e
KK
19
20/*
21 * The SMTC Kernel for the 34K, 1004K, et. al. replaces several
22 * of these routines with SMTC-specific variants.
23 */
24
25#ifndef CONFIG_MIPS_MT_SMTC
42f77542
RB
26
27static int mips_next_event(unsigned long delta,
28 struct clock_event_device *evt)
29{
30 unsigned int cnt;
31 int res;
32
42f77542
RB
33 cnt = read_c0_count();
34 cnt += delta;
35 write_c0_compare(cnt);
5878fc93 36 res = ((int)(read_c0_count() - cnt) >= 0) ? -ETIME : 0;
42f77542
RB
37 return res;
38}
39
8531a35e
KK
40#endif /* CONFIG_MIPS_MT_SMTC */
41
42void mips_set_clock_mode(enum clock_event_mode mode,
43 struct clock_event_device *evt)
42f77542
RB
44{
45 /* Nothing to do ... */
46}
47
8531a35e
KK
48DEFINE_PER_CPU(struct clock_event_device, mips_clockevent_device);
49int cp0_timer_irq_installed;
42f77542 50
8531a35e 51#ifndef CONFIG_MIPS_MT_SMTC
42f77542 52
8531a35e 53irqreturn_t c0_compare_interrupt(int irq, void *dev_id)
42f77542
RB
54{
55 const int r2 = cpu_has_mips_r2;
56 struct clock_event_device *cd;
57 int cpu = smp_processor_id();
58
59 /*
60 * Suckage alert:
61 * Before R2 of the architecture there was no way to see if a
62 * performance counter interrupt was pending, so we have to run
63 * the performance counter interrupt handler anyway.
64 */
65 if (handle_perf_irq(r2))
66 goto out;
67
68 /*
69 * The same applies to performance counter interrupts. But with the
70 * above we now know that the reason we got here must be a timer
71 * interrupt. Being the paranoiacs we are we check anyway.
72 */
73 if (!r2 || (read_c0_cause() & (1 << 30))) {
8531a35e
KK
74 /* Clear Count/Compare Interrupt */
75 write_c0_compare(read_c0_compare());
42f77542
RB
76 cd = &per_cpu(mips_clockevent_device, cpu);
77 cd->event_handler(cd);
78 }
79
80out:
81 return IRQ_HANDLED;
82}
83
8531a35e
KK
84#endif /* Not CONFIG_MIPS_MT_SMTC */
85
86struct irqaction c0_compare_irqaction = {
42f77542 87 .handler = c0_compare_interrupt,
8b5690f8 88 .flags = IRQF_PERCPU | IRQF_TIMER,
42f77542
RB
89 .name = "timer",
90};
91
42f77542 92
8531a35e 93void mips_event_handler(struct clock_event_device *dev)
42f77542
RB
94{
95}
96
97/*
98 * FIXME: This doesn't hold for the relocated E9000 compare interrupt.
99 */
100static int c0_compare_int_pending(void)
101{
98b67c37
SH
102#ifdef CONFIG_IRQ_GIC
103 if (cpu_has_veic)
104 return gic_get_timer_pending();
105#endif
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
121 /*
122 * IP7 already pending? Try to clear it by acking the timer.
123 */
124 if (c0_compare_int_pending()) {
4f1a1eb5
AC
125 cnt = read_c0_count();
126 write_c0_compare(cnt);
127 back_to_back_c0_hazard();
128 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
129 if (!c0_compare_int_pending())
130 break;
42f77542
RB
131 if (c0_compare_int_pending())
132 return 0;
133 }
134
3a6c43a7
AN
135 for (delta = 0x10; delta <= 0x400000; delta <<= 1) {
136 cnt = read_c0_count();
137 cnt += delta;
138 write_c0_compare(cnt);
4f1a1eb5 139 back_to_back_c0_hazard();
3a6c43a7
AN
140 if ((int)(read_c0_count() - cnt) < 0)
141 break;
142 /* increase delta if the timer was already expired */
143 }
42f77542 144
c637fecb 145 while ((int)(read_c0_count() - cnt) <= 0)
42f77542
RB
146 ; /* Wait for expiry */
147
4f1a1eb5
AC
148 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
149 if (c0_compare_int_pending())
150 break;
42f77542
RB
151 if (!c0_compare_int_pending())
152 return 0;
4f1a1eb5
AC
153 cnt = read_c0_count();
154 write_c0_compare(cnt);
155 back_to_back_c0_hazard();
156 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
157 if (!c0_compare_int_pending())
158 break;
42f77542
RB
159 if (c0_compare_int_pending())
160 return 0;
161
162 /*
163 * Feels like a real count / compare timer.
164 */
165 return 1;
166}
167
8531a35e
KK
168#ifndef CONFIG_MIPS_MT_SMTC
169
779e7d41 170int __cpuinit r4k_clockevent_init(void)
42f77542 171{
42f77542
RB
172 unsigned int cpu = smp_processor_id();
173 struct clock_event_device *cd;
38760d40 174 unsigned int irq;
42f77542 175
22df3f53 176 if (!cpu_has_counter || !mips_hpt_frequency)
5aa85c9f 177 return -ENXIO;
42f77542 178
42f77542 179 if (!c0_compare_int_usable())
5aa85c9f 180 return -ENXIO;
42f77542 181
38760d40
RB
182 /*
183 * With vectored interrupts things are getting platform specific.
184 * get_c0_compare_int is a hook to allow a platform to return the
185 * interrupt number of it's liking.
186 */
187 irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
188 if (get_c0_compare_int)
189 irq = get_c0_compare_int();
190
42f77542
RB
191 cd = &per_cpu(mips_clockevent_device, cpu);
192
193 cd->name = "MIPS";
194 cd->features = CLOCK_EVT_FEAT_ONESHOT;
195
4d2b1125
DD
196 clockevent_set_clock(cd, mips_hpt_frequency);
197
42f77542 198 /* Calculate the min / max delta */
42f77542
RB
199 cd->max_delta_ns = clockevent_delta2ns(0x7fffffff, cd);
200 cd->min_delta_ns = clockevent_delta2ns(0x300, cd);
201
202 cd->rating = 300;
203 cd->irq = irq;
320ab2b0 204 cd->cpumask = cpumask_of(cpu);
42f77542 205 cd->set_next_event = mips_next_event;
8531a35e 206 cd->set_mode = mips_set_clock_mode;
42f77542
RB
207 cd->event_handler = mips_event_handler;
208
209 clockevents_register_device(cd);
210
aea68639 211 if (cp0_timer_irq_installed)
5aa85c9f 212 return 0;
38760d40
RB
213
214 cp0_timer_irq_installed = 1;
215
38760d40 216 setup_irq(irq, &c0_compare_irqaction);
5aa85c9f
RB
217
218 return 0;
42f77542 219}
8531a35e
KK
220
221#endif /* Not CONFIG_MIPS_MT_SMTC */
This page took 0.368621 seconds and 5 git commands to generate.