blob: 0613f468f1ad445aed31605139d82adeaa12902c [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>
Steven J. Hill98b67c32012-08-31 16:18:49 -050018#include <asm/gic.h>
Kevin D. Kissell8531a352008-09-09 21:48:52 +020019
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
Ralf Baechle42f77542007-10-18 17:48:11 +010026static int mips_next_event(unsigned long delta,
Ralf Baechle70342282013-01-22 12:59:30 +010027 struct clock_event_device *evt)
Ralf Baechle42f77542007-10-18 17:48:11 +010028{
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
Kevin D. Kissell8531a352008-09-09 21:48:52 +020051irqreturn_t c0_compare_interrupt(int irq, void *dev_id)
Ralf Baechle42f77542007-10-18 17:48:11 +010052{
53 const int r2 = cpu_has_mips_r2;
54 struct clock_event_device *cd;
55 int cpu = smp_processor_id();
56
57 /*
58 * Suckage alert:
59 * Before R2 of the architecture there was no way to see if a
60 * performance counter interrupt was pending, so we have to run
61 * the performance counter interrupt handler anyway.
62 */
63 if (handle_perf_irq(r2))
64 goto out;
65
66 /*
Ralf Baechle70342282013-01-22 12:59:30 +010067 * The same applies to performance counter interrupts. But with the
Ralf Baechle42f77542007-10-18 17:48:11 +010068 * above we now know that the reason we got here must be a timer
69 * interrupt. Being the paranoiacs we are we check anyway.
70 */
71 if (!r2 || (read_c0_cause() & (1 << 30))) {
Kevin D. Kissell8531a352008-09-09 21:48:52 +020072 /* Clear Count/Compare Interrupt */
73 write_c0_compare(read_c0_compare());
Ralf Baechle42f77542007-10-18 17:48:11 +010074 cd = &per_cpu(mips_clockevent_device, cpu);
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -050075#ifdef CONFIG_CEVT_GIC
76 if (!gic_present)
77#endif
Ralf Baechle42f77542007-10-18 17:48:11 +010078 cd->event_handler(cd);
79 }
80
81out:
82 return IRQ_HANDLED;
83}
84
Kevin D. Kissell8531a352008-09-09 21:48:52 +020085#endif /* Not CONFIG_MIPS_MT_SMTC */
86
87struct irqaction c0_compare_irqaction = {
Ralf Baechle42f77542007-10-18 17:48:11 +010088 .handler = c0_compare_interrupt,
Yong Zhang8b5690f2011-11-22 14:38:03 +000089 .flags = IRQF_PERCPU | IRQF_TIMER,
Ralf Baechle42f77542007-10-18 17:48:11 +010090 .name = "timer",
91};
92
Ralf Baechle42f77542007-10-18 17:48:11 +010093
Kevin D. Kissell8531a352008-09-09 21:48:52 +020094void mips_event_handler(struct clock_event_device *dev)
Ralf Baechle42f77542007-10-18 17:48:11 +010095{
96}
97
98/*
99 * FIXME: This doesn't hold for the relocated E9000 compare interrupt.
100 */
101static int c0_compare_int_pending(void)
102{
Steven J. Hill98b67c32012-08-31 16:18:49 -0500103#ifdef CONFIG_IRQ_GIC
104 if (cpu_has_veic)
105 return gic_get_timer_pending();
106#endif
David VomLehn010c1082009-12-21 17:49:22 -0800107 return (read_c0_cause() >> cp0_compare_irq_shift) & (1ul << CAUSEB_IP);
Ralf Baechle42f77542007-10-18 17:48:11 +0100108}
109
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200110/*
111 * Compare interrupt can be routed and latched outside the core,
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500112 * so wait up to worst case number of cycle counter ticks for timer interrupt
113 * changes to propagate to the cause register.
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200114 */
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500115#define COMPARE_INT_SEEN_TICKS 50
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200116
117int c0_compare_int_usable(void)
Ralf Baechle42f77542007-10-18 17:48:11 +0100118{
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900119 unsigned int delta;
Ralf Baechle42f77542007-10-18 17:48:11 +0100120 unsigned int cnt;
121
122 /*
Ralf Baechle70342282013-01-22 12:59:30 +0100123 * IP7 already pending? Try to clear it by acking the timer.
Ralf Baechle42f77542007-10-18 17:48:11 +0100124 */
125 if (c0_compare_int_pending()) {
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500126 cnt = read_c0_count();
127 write_c0_compare(cnt);
128 back_to_back_c0_hazard();
129 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
130 if (!c0_compare_int_pending())
131 break;
Ralf Baechle42f77542007-10-18 17:48:11 +0100132 if (c0_compare_int_pending())
133 return 0;
134 }
135
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900136 for (delta = 0x10; delta <= 0x400000; delta <<= 1) {
137 cnt = read_c0_count();
138 cnt += delta;
139 write_c0_compare(cnt);
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500140 back_to_back_c0_hazard();
Atsushi Nemoto3a6c43a2007-10-23 21:55:42 +0900141 if ((int)(read_c0_count() - cnt) < 0)
142 break;
143 /* increase delta if the timer was already expired */
144 }
Ralf Baechle42f77542007-10-18 17:48:11 +0100145
Atsushi Nemotoc637fec2007-10-23 21:51:19 +0900146 while ((int)(read_c0_count() - cnt) <= 0)
Ralf Baechle42f77542007-10-18 17:48:11 +0100147 ; /* Wait for expiry */
148
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500149 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
150 if (c0_compare_int_pending())
151 break;
Ralf Baechle42f77542007-10-18 17:48:11 +0100152 if (!c0_compare_int_pending())
153 return 0;
Al Cooper4f1a1eb2011-11-08 09:59:01 -0500154 cnt = read_c0_count();
155 write_c0_compare(cnt);
156 back_to_back_c0_hazard();
157 while (read_c0_count() < (cnt + COMPARE_INT_SEEN_TICKS))
158 if (!c0_compare_int_pending())
159 break;
Ralf Baechle42f77542007-10-18 17:48:11 +0100160 if (c0_compare_int_pending())
161 return 0;
162
163 /*
164 * Feels like a real count / compare timer.
165 */
166 return 1;
167}
168
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200169#ifndef CONFIG_MIPS_MT_SMTC
Manuel Lauss779e7d42008-12-21 09:26:22 +0100170int __cpuinit r4k_clockevent_init(void)
Ralf Baechle42f77542007-10-18 17:48:11 +0100171{
Ralf Baechle42f77542007-10-18 17:48:11 +0100172 unsigned int cpu = smp_processor_id();
173 struct clock_event_device *cd;
Ralf Baechle38760d42007-10-29 14:23:43 +0000174 unsigned int irq;
Ralf Baechle42f77542007-10-18 17:48:11 +0100175
Yoichi Yuasa22df3f52007-10-26 22:27:05 +0900176 if (!cpu_has_counter || !mips_hpt_frequency)
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000177 return -ENXIO;
Ralf Baechle42f77542007-10-18 17:48:11 +0100178
Ralf Baechle42f77542007-10-18 17:48:11 +0100179 if (!c0_compare_int_usable())
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000180 return -ENXIO;
Ralf Baechle42f77542007-10-18 17:48:11 +0100181
Ralf Baechle38760d42007-10-29 14:23:43 +0000182 /*
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
Ralf Baechle42f77542007-10-18 17:48:11 +0100191 cd = &per_cpu(mips_clockevent_device, cpu);
192
193 cd->name = "MIPS";
194 cd->features = CLOCK_EVT_FEAT_ONESHOT;
195
David Daney4d2b1122010-05-19 10:40:53 -0700196 clockevent_set_clock(cd, mips_hpt_frequency);
197
Ralf Baechle42f77542007-10-18 17:48:11 +0100198 /* Calculate the min / max delta */
Ralf Baechle42f77542007-10-18 17:48:11 +0100199 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;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030204 cd->cpumask = cpumask_of(cpu);
Ralf Baechle42f77542007-10-18 17:48:11 +0100205 cd->set_next_event = mips_next_event;
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200206 cd->set_mode = mips_set_clock_mode;
Ralf Baechle42f77542007-10-18 17:48:11 +0100207 cd->event_handler = mips_event_handler;
208
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500209#ifdef CONFIG_CEVT_GIC
210 if (!gic_present)
211#endif
Ralf Baechle42f77542007-10-18 17:48:11 +0100212 clockevents_register_device(cd);
213
Ralf Baechleaea68632007-10-30 02:21:08 +0000214 if (cp0_timer_irq_installed)
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000215 return 0;
Ralf Baechle38760d42007-10-29 14:23:43 +0000216
217 cp0_timer_irq_installed = 1;
218
Ralf Baechle38760d42007-10-29 14:23:43 +0000219 setup_irq(irq, &c0_compare_irqaction);
Ralf Baechle5aa85c92007-11-21 16:39:44 +0000220
221 return 0;
Ralf Baechle42f77542007-10-18 17:48:11 +0100222}
Kevin D. Kissell8531a352008-09-09 21:48:52 +0200223
224#endif /* Not CONFIG_MIPS_MT_SMTC */