1
2
3
4
5
6
7
8
9#include <linux/clockchips.h>
10#include <linux/interrupt.h>
11#include <linux/percpu.h>
12#include <linux/smp.h>
13#include <linux/irq.h>
14
15#include <asm/smtc_ipi.h>
16#include <asm/time.h>
17#include <asm/cevt-r4k.h>
18
19
20
21
22
23
24#ifndef CONFIG_MIPS_MT_SMTC
25
26static int mips_next_event(unsigned long delta,
27 struct clock_event_device *evt)
28{
29 unsigned int cnt;
30 int res;
31
32 cnt = read_c0_count();
33 cnt += delta;
34 write_c0_compare(cnt);
35 res = ((int)(read_c0_count() - cnt) >= 0) ? -ETIME : 0;
36 return res;
37}
38
39#endif
40
41void mips_set_clock_mode(enum clock_event_mode mode,
42 struct clock_event_device *evt)
43{
44
45}
46
47DEFINE_PER_CPU(struct clock_event_device, mips_clockevent_device);
48int cp0_timer_irq_installed;
49
50#ifndef CONFIG_MIPS_MT_SMTC
51
52irqreturn_t c0_compare_interrupt(int irq, void *dev_id)
53{
54 const int r2 = cpu_has_mips_r2;
55 struct clock_event_device *cd;
56 int cpu = smp_processor_id();
57
58
59
60
61
62
63
64 if (handle_perf_irq(r2))
65 goto out;
66
67
68
69
70
71
72 if (!r2 || (read_c0_cause() & (1 << 30))) {
73
74 write_c0_compare(read_c0_compare());
75 cd = &per_cpu(mips_clockevent_device, cpu);
76 cd->event_handler(cd);
77 }
78
79out:
80 return IRQ_HANDLED;
81}
82
83#endif
84
85struct irqaction c0_compare_irqaction = {
86 .handler = c0_compare_interrupt,
87 .flags = IRQF_PERCPU | IRQF_TIMER,
88 .name = "timer",
89};
90
91
92void mips_event_handler(struct clock_event_device *dev)
93{
94}
95
96
97
98
99static int c0_compare_int_pending(void)
100{
101 return (read_c0_cause() >> cp0_compare_irq_shift) & (1ul << CAUSEB_IP);
102}
103
104
105
106
107
108
109#define COMPARE_INT_SEEN_TICKS 50
110
111int c0_compare_int_usable(void)
112{
113 unsigned int delta;
114 unsigned int cnt;
115
116
117
118
119 if (c0_compare_int_pending()) {
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;
126 if (c0_compare_int_pending())
127 return 0;
128 }
129
130 for (delta = 0x10; delta <= 0x400000; delta <<= 1) {
131 cnt = read_c0_count();
132 cnt += delta;
133 write_c0_compare(cnt);
134 back_to_back_c0_hazard();
135 if ((int)(read_c0_count() - cnt) < 0)
136 break;
137
138 }
139
140 while ((int)(read_c0_count() - cnt) <= 0)
141 ;
142
143 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
144 if (c0_compare_int_pending())
145 break;
146 if (!c0_compare_int_pending())
147 return 0;
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;
154 if (c0_compare_int_pending())
155 return 0;
156
157
158
159
160 return 1;
161}
162
163#ifndef CONFIG_MIPS_MT_SMTC
164
165int __cpuinit r4k_clockevent_init(void)
166{
167 unsigned int cpu = smp_processor_id();
168 struct clock_event_device *cd;
169 unsigned int irq;
170
171 if (!cpu_has_counter || !mips_hpt_frequency)
172 return -ENXIO;
173
174 if (!c0_compare_int_usable())
175 return -ENXIO;
176
177
178
179
180
181
182 irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
183 if (get_c0_compare_int)
184 irq = get_c0_compare_int();
185
186 cd = &per_cpu(mips_clockevent_device, cpu);
187
188 cd->name = "MIPS";
189 cd->features = CLOCK_EVT_FEAT_ONESHOT;
190
191 clockevent_set_clock(cd, mips_hpt_frequency);
192
193
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;
199 cd->cpumask = cpumask_of(cpu);
200 cd->set_next_event = mips_next_event;
201 cd->set_mode = mips_set_clock_mode;
202 cd->event_handler = mips_event_handler;
203
204 clockevents_register_device(cd);
205
206 if (cp0_timer_irq_installed)
207 return 0;
208
209 cp0_timer_irq_installed = 1;
210
211 setup_irq(irq, &c0_compare_irqaction);
212
213 return 0;
214}
215
216#endif
217