blob: a62758ce9e19ad8018d64505da2880efba17ad21 [file] [log] [blame]
David S. Millercf3d7c12008-03-26 01:11:55 -07001/* time.c: UltraSparc timer and TOD clock support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Millercf3d7c12008-03-26 01:11:55 -07003 * Copyright (C) 1997, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
5 *
6 * Based largely on code which is:
7 *
8 * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
Paul Gortmaker066bcac2011-07-22 13:18:16 -040012#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/sched.h>
14#include <linux/kernel.h>
15#include <linux/param.h>
16#include <linux/string.h>
17#include <linux/mm.h>
18#include <linux/interrupt.h>
19#include <linux/time.h>
20#include <linux/timex.h>
21#include <linux/init.h>
22#include <linux/ioport.h>
23#include <linux/mc146818rtc.h>
24#include <linux/delay.h>
25#include <linux/profile.h>
26#include <linux/bcd.h>
27#include <linux/jiffies.h>
28#include <linux/cpufreq.h>
29#include <linux/percpu.h>
David S. Miller8ba706a2006-03-01 17:32:46 -080030#include <linux/miscdevice.h>
David S. Miller1518e7e2008-08-28 21:06:27 -070031#include <linux/rtc/m48t59.h>
David S. Miller777a4472007-02-22 06:24:10 -080032#include <linux/kernel_stat.h>
David S. Miller112f4872007-03-05 15:28:37 -080033#include <linux/clockchips.h>
34#include <linux/clocksource.h>
David S. Miller1518e7e2008-08-28 21:06:27 -070035#include <linux/platform_device.h>
David S. Miller9960e9e2010-04-07 04:41:33 -070036#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/oplib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/timer.h>
Ingo Molnar82268da2009-03-28 04:21:18 +010040#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
David S. Millerff0d2fc2006-06-29 15:28:05 -070042#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/starfire.h>
44#include <asm/smp.h>
45#include <asm/sections.h>
46#include <asm/cpudata.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080047#include <linux/uaccess.h>
Al Viro63540ba2006-10-09 11:51:14 +010048#include <asm/irq_regs.h>
Pavel Tatashin4929c832017-06-12 16:41:47 -040049#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
David S. Millercf3d7c12008-03-26 01:11:55 -070051#include "entry.h"
Pavel Tatashin83e8eb92017-06-12 16:41:46 -040052#include "kernel.h"
David S. Millercf3d7c12008-03-26 01:11:55 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054DEFINE_SPINLOCK(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#ifdef CONFIG_SMP
57unsigned long profile_pc(struct pt_regs *regs)
58{
59 unsigned long pc = instruction_pointer(regs);
60
61 if (in_lock_functions(pc))
62 return regs->u_regs[UREG_RETPC];
63 return pc;
64}
65EXPORT_SYMBOL(profile_pc);
66#endif
67
68static void tick_disable_protection(void)
69{
70 /* Set things up so user can access tick register for profiling
71 * purposes. Also workaround BB_ERRATA_1 by doing a dummy
72 * read back of %tick after writing it.
73 */
74 __asm__ __volatile__(
75 " ba,pt %%xcc, 1f\n"
76 " nop\n"
77 " .align 64\n"
78 "1: rd %%tick, %%g2\n"
79 " add %%g2, 6, %%g2\n"
80 " andn %%g2, %0, %%g2\n"
81 " wrpr %%g2, 0, %%tick\n"
82 " rdpr %%tick, %%g0"
83 : /* no outputs */
84 : "r" (TICK_PRIV_BIT)
85 : "g2");
86}
87
David S. Miller112f4872007-03-05 15:28:37 -080088static void tick_disable_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 __asm__ __volatile__(
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 " ba,pt %%xcc, 1f\n"
David S. Miller112f4872007-03-05 15:28:37 -080092 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 " .align 64\n"
David S. Miller112f4872007-03-05 15:28:37 -080094 "1: wr %0, 0x0, %%tick_cmpr\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 " rd %%tick_cmpr, %%g0"
96 : /* no outputs */
David S. Miller112f4872007-03-05 15:28:37 -080097 : "r" (TICKCMP_IRQ_BIT));
98}
99
100static void tick_init_tick(void)
101{
102 tick_disable_protection();
103 tick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Sam Ravnborg90181132009-01-06 13:19:28 -0800106static unsigned long long tick_get_tick(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 unsigned long ret;
109
110 __asm__ __volatile__("rd %%tick, %0\n\t"
111 "mov %0, %0"
112 : "=r" (ret));
113
114 return ret & ~TICK_PRIV_BIT;
115}
116
David S. Miller112f4872007-03-05 15:28:37 -0800117static int tick_add_compare(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
David S. Miller112f4872007-03-05 15:28:37 -0800119 unsigned long orig_tick, new_tick, new_compare;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
David S. Miller112f4872007-03-05 15:28:37 -0800121 __asm__ __volatile__("rd %%tick, %0"
122 : "=r" (orig_tick));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
David S. Miller112f4872007-03-05 15:28:37 -0800124 orig_tick &= ~TICKCMP_IRQ_BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* Workaround for Spitfire Errata (#54 I think??), I discovered
127 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch
128 * number 103640.
129 *
130 * On Blackbird writes to %tick_cmpr can fail, the
131 * workaround seems to be to execute the wr instruction
132 * at the start of an I-cache line, and perform a dummy
133 * read back from %tick_cmpr right after writing to it. -DaveM
134 */
David S. Miller112f4872007-03-05 15:28:37 -0800135 __asm__ __volatile__("ba,pt %%xcc, 1f\n\t"
136 " add %1, %2, %0\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 ".align 64\n"
138 "1:\n\t"
139 "wr %0, 0, %%tick_cmpr\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800140 "rd %%tick_cmpr, %%g0\n\t"
141 : "=r" (new_compare)
142 : "r" (orig_tick), "r" (adj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
David S. Miller112f4872007-03-05 15:28:37 -0800144 __asm__ __volatile__("rd %%tick, %0"
145 : "=r" (new_tick));
146 new_tick &= ~TICKCMP_IRQ_BIT;
147
148 return ((long)(new_tick - (orig_tick+adj))) > 0L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
David S. Miller112f4872007-03-05 15:28:37 -0800151static unsigned long tick_add_tick(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
David S. Miller112f4872007-03-05 15:28:37 -0800153 unsigned long new_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /* Also need to handle Blackbird bug here too. */
156 __asm__ __volatile__("rd %%tick, %0\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800157 "add %0, %1, %0\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 "wrpr %0, 0, %%tick\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800159 : "=&r" (new_tick)
160 : "r" (adj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 return new_tick;
163}
164
Pavel Tatashin89108c32017-06-12 16:41:45 -0400165static unsigned long tick_get_frequency(void)
166{
167 return local_cpu_data().clock_tick;
168}
169
Pavel Tatashin178bf2b2017-06-12 16:41:44 -0400170static struct sparc64_tick_ops tick_operations __cacheline_aligned = {
David S. Miller112f4872007-03-05 15:28:37 -0800171 .name = "tick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 .init_tick = tick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800173 .disable_irq = tick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 .get_tick = tick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 .add_tick = tick_add_tick,
176 .add_compare = tick_add_compare,
Pavel Tatashin89108c32017-06-12 16:41:45 -0400177 .get_frequency = tick_get_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .softint_mask = 1UL << 0,
179};
180
David S. Millerfc321492005-11-07 14:10:10 -0800181struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations;
Sam Ravnborg917c3662009-01-08 16:58:20 -0800182EXPORT_SYMBOL(tick_ops);
David S. Millerfc321492005-11-07 14:10:10 -0800183
David S. Miller112f4872007-03-05 15:28:37 -0800184static void stick_disable_irq(void)
185{
186 __asm__ __volatile__(
187 "wr %0, 0x0, %%asr25"
188 : /* no outputs */
189 : "r" (TICKCMP_IRQ_BIT));
190}
191
192static void stick_init_tick(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
David S. Miller7aa62642006-02-11 23:14:59 -0800194 /* Writes to the %tick and %stick register are not
195 * allowed on sun4v. The Hypervisor controls that
196 * bit, per-strand.
197 */
198 if (tlb_type != hypervisor) {
199 tick_disable_protection();
David S. Miller112f4872007-03-05 15:28:37 -0800200 tick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
David S. Miller7aa62642006-02-11 23:14:59 -0800202 /* Let the user get at STICK too. */
203 __asm__ __volatile__(
204 " rd %%asr24, %%g2\n"
205 " andn %%g2, %0, %%g2\n"
206 " wr %%g2, 0, %%asr24"
207 : /* no outputs */
208 : "r" (TICK_PRIV_BIT)
209 : "g1", "g2");
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
David S. Miller112f4872007-03-05 15:28:37 -0800212 stick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Sam Ravnborg90181132009-01-06 13:19:28 -0800215static unsigned long long stick_get_tick(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 unsigned long ret;
218
219 __asm__ __volatile__("rd %%asr24, %0"
220 : "=r" (ret));
221
222 return ret & ~TICK_PRIV_BIT;
223}
224
David S. Miller112f4872007-03-05 15:28:37 -0800225static unsigned long stick_add_tick(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
David S. Miller112f4872007-03-05 15:28:37 -0800227 unsigned long new_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 __asm__ __volatile__("rd %%asr24, %0\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800230 "add %0, %1, %0\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 "wr %0, 0, %%asr24\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800232 : "=&r" (new_tick)
233 : "r" (adj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 return new_tick;
236}
237
David S. Miller112f4872007-03-05 15:28:37 -0800238static int stick_add_compare(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
David S. Miller112f4872007-03-05 15:28:37 -0800240 unsigned long orig_tick, new_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
David S. Miller112f4872007-03-05 15:28:37 -0800242 __asm__ __volatile__("rd %%asr24, %0"
243 : "=r" (orig_tick));
244 orig_tick &= ~TICKCMP_IRQ_BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
David S. Miller112f4872007-03-05 15:28:37 -0800246 __asm__ __volatile__("wr %0, 0, %%asr25"
247 : /* no outputs */
248 : "r" (orig_tick + adj));
249
250 __asm__ __volatile__("rd %%asr24, %0"
251 : "=r" (new_tick));
252 new_tick &= ~TICKCMP_IRQ_BIT;
253
254 return ((long)(new_tick - (orig_tick+adj))) > 0L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Pavel Tatashin89108c32017-06-12 16:41:45 -0400257static unsigned long stick_get_frequency(void)
258{
Pavel Tatashinfca4afe2017-06-15 10:40:58 -0400259 return prom_getintdefault(prom_root_node, "stick-frequency", 0);
Pavel Tatashin89108c32017-06-12 16:41:45 -0400260}
261
David S. Millerd369ddd2005-07-10 15:45:11 -0700262static struct sparc64_tick_ops stick_operations __read_mostly = {
David S. Miller112f4872007-03-05 15:28:37 -0800263 .name = "stick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 .init_tick = stick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800265 .disable_irq = stick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 .get_tick = stick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 .add_tick = stick_add_tick,
268 .add_compare = stick_add_compare,
Pavel Tatashin89108c32017-06-12 16:41:45 -0400269 .get_frequency = stick_get_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 .softint_mask = 1UL << 16,
271};
272
273/* On Hummingbird the STICK/STICK_CMPR register is implemented
274 * in I/O space. There are two 64-bit registers each, the
275 * first holds the low 32-bits of the value and the second holds
276 * the high 32-bits.
277 *
278 * Since STICK is constantly updating, we have to access it carefully.
279 *
280 * The sequence we use to read is:
Richard Mortimer9eb33942006-01-17 15:21:01 -0800281 * 1) read high
282 * 2) read low
283 * 3) read high again, if it rolled re-read both low and high again.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *
285 * Writing STICK safely is also tricky:
286 * 1) write low to zero
287 * 2) write high
288 * 3) write low
289 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290static unsigned long __hbird_read_stick(void)
291{
292 unsigned long ret, tmp1, tmp2, tmp3;
Richard Mortimer9eb33942006-01-17 15:21:01 -0800293 unsigned long addr = HBIRD_STICK_ADDR+8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Richard Mortimer9eb33942006-01-17 15:21:01 -0800295 __asm__ __volatile__("ldxa [%1] %5, %2\n"
296 "1:\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 "sub %1, 0x8, %1\n\t"
Richard Mortimer9eb33942006-01-17 15:21:01 -0800298 "ldxa [%1] %5, %3\n\t"
299 "add %1, 0x8, %1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 "ldxa [%1] %5, %4\n\t"
301 "cmp %4, %2\n\t"
Richard Mortimer9eb33942006-01-17 15:21:01 -0800302 "bne,a,pn %%xcc, 1b\n\t"
303 " mov %4, %2\n\t"
304 "sllx %4, 32, %4\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 "or %3, %4, %0\n\t"
306 : "=&r" (ret), "=&r" (addr),
307 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3)
308 : "i" (ASI_PHYS_BYPASS_EC_E), "1" (addr));
309
310 return ret;
311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313static void __hbird_write_stick(unsigned long val)
314{
315 unsigned long low = (val & 0xffffffffUL);
316 unsigned long high = (val >> 32UL);
317 unsigned long addr = HBIRD_STICK_ADDR;
318
319 __asm__ __volatile__("stxa %%g0, [%0] %4\n\t"
320 "add %0, 0x8, %0\n\t"
321 "stxa %3, [%0] %4\n\t"
322 "sub %0, 0x8, %0\n\t"
323 "stxa %2, [%0] %4"
324 : "=&r" (addr)
325 : "0" (addr), "r" (low), "r" (high),
326 "i" (ASI_PHYS_BYPASS_EC_E));
327}
328
329static void __hbird_write_compare(unsigned long val)
330{
331 unsigned long low = (val & 0xffffffffUL);
332 unsigned long high = (val >> 32UL);
333 unsigned long addr = HBIRD_STICKCMP_ADDR + 0x8UL;
334
335 __asm__ __volatile__("stxa %3, [%0] %4\n\t"
336 "sub %0, 0x8, %0\n\t"
337 "stxa %2, [%0] %4"
338 : "=&r" (addr)
339 : "0" (addr), "r" (low), "r" (high),
340 "i" (ASI_PHYS_BYPASS_EC_E));
341}
342
David S. Miller112f4872007-03-05 15:28:37 -0800343static void hbtick_disable_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
David S. Miller112f4872007-03-05 15:28:37 -0800345 __hbird_write_compare(TICKCMP_IRQ_BIT);
346}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
David S. Miller112f4872007-03-05 15:28:37 -0800348static void hbtick_init_tick(void)
349{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 tick_disable_protection();
351
352 /* XXX This seems to be necessary to 'jumpstart' Hummingbird
353 * XXX into actually sending STICK interrupts. I think because
354 * XXX of how we store %tick_cmpr in head.S this somehow resets the
355 * XXX {TICK + STICK} interrupt mux. -DaveM
356 */
357 __hbird_write_stick(__hbird_read_stick());
358
David S. Miller112f4872007-03-05 15:28:37 -0800359 hbtick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
Sam Ravnborg90181132009-01-06 13:19:28 -0800362static unsigned long long hbtick_get_tick(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 return __hbird_read_stick() & ~TICK_PRIV_BIT;
365}
366
David S. Miller112f4872007-03-05 15:28:37 -0800367static unsigned long hbtick_add_tick(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 unsigned long val;
370
371 val = __hbird_read_stick() + adj;
372 __hbird_write_stick(val);
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return val;
375}
376
David S. Miller112f4872007-03-05 15:28:37 -0800377static int hbtick_add_compare(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
David S. Miller112f4872007-03-05 15:28:37 -0800379 unsigned long val = __hbird_read_stick();
380 unsigned long val2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
David S. Miller112f4872007-03-05 15:28:37 -0800382 val &= ~TICKCMP_IRQ_BIT;
383 val += adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 __hbird_write_compare(val);
385
David S. Miller112f4872007-03-05 15:28:37 -0800386 val2 = __hbird_read_stick() & ~TICKCMP_IRQ_BIT;
387
388 return ((long)(val2 - val)) > 0L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Pavel Tatashin89108c32017-06-12 16:41:45 -0400391static unsigned long hbtick_get_frequency(void)
392{
Pavel Tatashinfca4afe2017-06-15 10:40:58 -0400393 return prom_getintdefault(prom_root_node, "stick-frequency", 0);
Pavel Tatashin89108c32017-06-12 16:41:45 -0400394}
395
David S. Millerd369ddd2005-07-10 15:45:11 -0700396static struct sparc64_tick_ops hbtick_operations __read_mostly = {
David S. Miller112f4872007-03-05 15:28:37 -0800397 .name = "hbtick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 .init_tick = hbtick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800399 .disable_irq = hbtick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 .get_tick = hbtick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 .add_tick = hbtick_add_tick,
402 .add_compare = hbtick_add_compare,
Pavel Tatashin89108c32017-06-12 16:41:45 -0400403 .get_frequency = hbtick_get_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 .softint_mask = 1UL << 0,
405};
406
David S. Millerda867832008-08-28 22:16:15 -0700407unsigned long cmos_regs;
408EXPORT_SYMBOL(cmos_regs);
David S. Miller690c8fd2006-06-22 19:12:03 -0700409
David S. Millerd8ada0a2008-09-11 23:39:11 -0700410static struct resource rtc_cmos_resource;
David S. Millerda867832008-08-28 22:16:15 -0700411
412static struct platform_device rtc_cmos_device = {
413 .name = "rtc_cmos",
414 .id = -1,
415 .resource = &rtc_cmos_resource,
416 .num_resources = 1,
417};
David S. Miller690c8fd2006-06-22 19:12:03 -0700418
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800419static int rtc_probe(struct platform_device *op)
David S. Miller690c8fd2006-06-22 19:12:03 -0700420{
David S. Millerda867832008-08-28 22:16:15 -0700421 struct resource *r;
422
Sam Ravnborg90181132009-01-06 13:19:28 -0800423 printk(KERN_INFO "%s: RTC regs at 0x%llx\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700424 op->dev.of_node->full_name, op->resource[0].start);
David S. Millerda867832008-08-28 22:16:15 -0700425
426 /* The CMOS RTC driver only accepts IORESOURCE_IO, so cons
427 * up a fake resource so that the probe works for all cases.
428 * When the RTC is behind an ISA bus it will have IORESOURCE_IO
429 * already, whereas when it's behind EBUS is will be IORESOURCE_MEM.
430 */
431
432 r = &rtc_cmos_resource;
433 r->flags = IORESOURCE_IO;
434 r->name = op->resource[0].name;
435 r->start = op->resource[0].start;
436 r->end = op->resource[0].end;
437
438 cmos_regs = op->resource[0].start;
439 return platform_device_register(&rtc_cmos_device);
440}
441
David S. Miller3628aa02011-03-30 17:37:56 -0700442static const struct of_device_id rtc_match[] = {
David S. Millerda867832008-08-28 22:16:15 -0700443 {
444 .name = "rtc",
445 .compatible = "m5819",
446 },
447 {
448 .name = "rtc",
449 .compatible = "isa-m5819p",
450 },
451 {
452 .name = "rtc",
453 .compatible = "isa-m5823p",
454 },
455 {
456 .name = "rtc",
457 .compatible = "ds1287",
458 },
459 {},
460};
461
Grant Likely4ebb24f2011-02-22 20:01:33 -0700462static struct platform_driver rtc_driver = {
David S. Millerda867832008-08-28 22:16:15 -0700463 .probe = rtc_probe,
Grant Likely40182942010-04-13 16:13:02 -0700464 .driver = {
465 .name = "rtc",
Grant Likely40182942010-04-13 16:13:02 -0700466 .of_match_table = rtc_match,
David S. Millerda867832008-08-28 22:16:15 -0700467 },
468};
469
David S. Miller29b503f2008-08-28 21:54:34 -0700470static struct platform_device rtc_bq4802_device = {
471 .name = "rtc-bq4802",
472 .id = -1,
473 .num_resources = 1,
474};
475
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800476static int bq4802_probe(struct platform_device *op)
David S. Millerda867832008-08-28 22:16:15 -0700477{
David S. Miller690c8fd2006-06-22 19:12:03 -0700478
Sam Ravnborg90181132009-01-06 13:19:28 -0800479 printk(KERN_INFO "%s: BQ4802 regs at 0x%llx\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700480 op->dev.of_node->full_name, op->resource[0].start);
David S. Miller690c8fd2006-06-22 19:12:03 -0700481
David S. Miller29b503f2008-08-28 21:54:34 -0700482 rtc_bq4802_device.resource = &op->resource[0];
483 return platform_device_register(&rtc_bq4802_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
David S. Miller3628aa02011-03-30 17:37:56 -0700486static const struct of_device_id bq4802_match[] = {
David S. Milleree5caf02006-06-29 14:36:52 -0700487 {
488 .name = "rtc",
David S. Millerda867832008-08-28 22:16:15 -0700489 .compatible = "bq4802",
David S. Milleree5caf02006-06-29 14:36:52 -0700490 },
David S. Miller770a4242008-10-30 22:58:06 -0700491 {},
David S. Milleree5caf02006-06-29 14:36:52 -0700492};
493
Grant Likely4ebb24f2011-02-22 20:01:33 -0700494static struct platform_driver bq4802_driver = {
David S. Millerda867832008-08-28 22:16:15 -0700495 .probe = bq4802_probe,
Grant Likely40182942010-04-13 16:13:02 -0700496 .driver = {
497 .name = "bq4802",
Grant Likely40182942010-04-13 16:13:02 -0700498 .of_match_table = bq4802_match,
David S. Miller1518e7e2008-08-28 21:06:27 -0700499 },
500};
501
502static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
503{
504 struct platform_device *pdev = to_platform_device(dev);
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700505 void __iomem *regs = (void __iomem *) pdev->resource[0].start;
David S. Miller1518e7e2008-08-28 21:06:27 -0700506
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700507 return readb(regs + ofs);
David S. Miller1518e7e2008-08-28 21:06:27 -0700508}
509
510static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
511{
512 struct platform_device *pdev = to_platform_device(dev);
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700513 void __iomem *regs = (void __iomem *) pdev->resource[0].start;
David S. Miller1518e7e2008-08-28 21:06:27 -0700514
David S. Miller1518e7e2008-08-28 21:06:27 -0700515 writeb(val, regs + ofs);
516}
517
518static struct m48t59_plat_data m48t59_data = {
519 .read_byte = mostek_read_byte,
520 .write_byte = mostek_write_byte,
521};
522
523static struct platform_device m48t59_rtc = {
524 .name = "rtc-m48t59",
525 .id = 0,
526 .num_resources = 1,
527 .dev = {
528 .platform_data = &m48t59_data,
529 },
530};
531
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800532static int mostek_probe(struct platform_device *op)
David S. Miller1518e7e2008-08-28 21:06:27 -0700533{
Grant Likely61c7a082010-04-13 16:12:29 -0700534 struct device_node *dp = op->dev.of_node;
David S. Miller1518e7e2008-08-28 21:06:27 -0700535
536 /* On an Enterprise system there can be multiple mostek clocks.
537 * We should only match the one that is on the central FHC bus.
538 */
539 if (!strcmp(dp->parent->name, "fhc") &&
540 strcmp(dp->parent->parent->name, "central") != 0)
541 return -ENODEV;
542
Sam Ravnborg90181132009-01-06 13:19:28 -0800543 printk(KERN_INFO "%s: Mostek regs at 0x%llx\n",
David S. Miller1518e7e2008-08-28 21:06:27 -0700544 dp->full_name, op->resource[0].start);
545
546 m48t59_rtc.resource = &op->resource[0];
547 return platform_device_register(&m48t59_rtc);
548}
549
David S. Miller3628aa02011-03-30 17:37:56 -0700550static const struct of_device_id mostek_match[] = {
David S. Miller1518e7e2008-08-28 21:06:27 -0700551 {
552 .name = "eeprom",
553 },
554 {},
555};
556
Grant Likely4ebb24f2011-02-22 20:01:33 -0700557static struct platform_driver mostek_driver = {
David S. Miller1518e7e2008-08-28 21:06:27 -0700558 .probe = mostek_probe,
Grant Likely40182942010-04-13 16:13:02 -0700559 .driver = {
560 .name = "mostek",
Grant Likely40182942010-04-13 16:13:02 -0700561 .of_match_table = mostek_match,
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700562 },
David S. Milleree5caf02006-06-29 14:36:52 -0700563};
564
David S. Miller84d6bd52008-08-29 01:34:27 -0700565static struct platform_device rtc_sun4v_device = {
566 .name = "rtc-sun4v",
567 .id = -1,
568};
569
David S. Millerf2be6de2008-08-29 01:35:19 -0700570static struct platform_device rtc_starfire_device = {
571 .name = "rtc-starfire",
572 .id = -1,
573};
574
David S. Milleree5caf02006-06-29 14:36:52 -0700575static int __init clock_init(void)
576{
David S. Millerf2be6de2008-08-29 01:35:19 -0700577 if (this_is_starfire)
578 return platform_device_register(&rtc_starfire_device);
579
David S. Miller84d6bd52008-08-29 01:34:27 -0700580 if (tlb_type == hypervisor)
581 return platform_device_register(&rtc_sun4v_device);
David S. Milleree5caf02006-06-29 14:36:52 -0700582
Grant Likely4ebb24f2011-02-22 20:01:33 -0700583 (void) platform_driver_register(&rtc_driver);
584 (void) platform_driver_register(&mostek_driver);
585 (void) platform_driver_register(&bq4802_driver);
David S. Miller1518e7e2008-08-28 21:06:27 -0700586
587 return 0;
David S. Milleree5caf02006-06-29 14:36:52 -0700588}
589
590/* Must be after subsys_initcall() so that busses are probed. Must
591 * be before device_initcall() because things like the RTC driver
592 * need to see the clock registers.
593 */
594fs_initcall(clock_init);
595
Pavel Tatashin89108c32017-06-12 16:41:45 -0400596/* Return true if this is Hummingbird, aka Ultra-IIe */
597static bool is_hummingbird(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Pavel Tatashin89108c32017-06-12 16:41:45 -0400599 unsigned long ver, manuf, impl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Pavel Tatashin89108c32017-06-12 16:41:45 -0400601 __asm__ __volatile__ ("rdpr %%ver, %0"
602 : "=&r" (ver));
603 manuf = ((ver >> 48) & 0xffff);
604 impl = ((ver >> 32) & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Pavel Tatashin89108c32017-06-12 16:41:45 -0400606 return (manuf == 0x17 && impl == 0x13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609struct freq_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 unsigned long clock_tick_ref;
611 unsigned int ref_freq;
612};
David S. Miller3763be32006-02-17 12:33:13 -0800613static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615unsigned long sparc64_get_clock_tick(unsigned int cpu)
616{
617 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
618
619 if (ft->clock_tick_ref)
620 return ft->clock_tick_ref;
621 return cpu_data(cpu).clock_tick;
622}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800623EXPORT_SYMBOL(sparc64_get_clock_tick);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625#ifdef CONFIG_CPU_FREQ
626
627static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
628 void *data)
629{
630 struct cpufreq_freqs *freq = data;
631 unsigned int cpu = freq->cpu;
632 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
633
634 if (!ft->ref_freq) {
635 ft->ref_freq = freq->old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 ft->clock_tick_ref = cpu_data(cpu).clock_tick;
637 }
638 if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
Viresh Kumar0b443ea2014-03-19 11:24:58 +0530639 (val == CPUFREQ_POSTCHANGE && freq->old > freq->new)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 cpu_data(cpu).clock_tick =
641 cpufreq_scale(ft->clock_tick_ref,
642 ft->ref_freq,
643 freq->new);
644 }
645
646 return 0;
647}
648
649static struct notifier_block sparc64_cpufreq_notifier_block = {
650 .notifier_call = sparc64_cpufreq_notifier
651};
652
David S. Miller7ae93f52008-07-23 16:21:07 -0700653static int __init register_sparc64_cpufreq_notifier(void)
654{
655
656 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block,
657 CPUFREQ_TRANSITION_NOTIFIER);
658 return 0;
659}
660
661core_initcall(register_sparc64_cpufreq_notifier);
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663#endif /* CONFIG_CPU_FREQ */
664
David S. Miller112f4872007-03-05 15:28:37 -0800665static int sparc64_next_event(unsigned long delta,
666 struct clock_event_device *evt)
667{
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400668 return tick_operations.add_compare(delta) ? -ETIME : 0;
David S. Miller112f4872007-03-05 15:28:37 -0800669}
670
Viresh Kumarff4aea42015-07-16 16:56:29 +0530671static int sparc64_timer_shutdown(struct clock_event_device *evt)
David S. Miller112f4872007-03-05 15:28:37 -0800672{
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400673 tick_operations.disable_irq();
Viresh Kumarff4aea42015-07-16 16:56:29 +0530674 return 0;
David S. Miller112f4872007-03-05 15:28:37 -0800675}
676
677static struct clock_event_device sparc64_clockevent = {
Viresh Kumarff4aea42015-07-16 16:56:29 +0530678 .features = CLOCK_EVT_FEAT_ONESHOT,
679 .set_state_shutdown = sparc64_timer_shutdown,
680 .set_next_event = sparc64_next_event,
681 .rating = 100,
682 .shift = 30,
683 .irq = -1,
David S. Miller112f4872007-03-05 15:28:37 -0800684};
685static DEFINE_PER_CPU(struct clock_event_device, sparc64_events);
686
David S. Miller9960e9e2010-04-07 04:41:33 -0700687void __irq_entry timer_interrupt(int irq, struct pt_regs *regs)
David S. Miller112f4872007-03-05 15:28:37 -0800688{
689 struct pt_regs *old_regs = set_irq_regs(regs);
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400690 unsigned long tick_mask = tick_operations.softint_mask;
David S. Miller112f4872007-03-05 15:28:37 -0800691 int cpu = smp_processor_id();
692 struct clock_event_device *evt = &per_cpu(sparc64_events, cpu);
693
694 clear_softint(tick_mask);
695
696 irq_enter();
697
David S. Millerdaecbf52010-04-06 17:38:52 -0700698 local_cpu_data().irq0_irqs++;
Thomas Gleixner87a69ad2014-02-23 21:40:15 +0000699 kstat_incr_irq_this_cpu(0);
David S. Miller112f4872007-03-05 15:28:37 -0800700
701 if (unlikely(!evt->event_handler)) {
702 printk(KERN_WARNING
703 "Spurious SPARC64 timer interrupt on cpu %d\n", cpu);
704 } else
705 evt->event_handler(evt);
706
707 irq_exit();
708
709 set_irq_regs(old_regs);
710}
711
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800712void setup_sparc64_timer(void)
David S. Miller112f4872007-03-05 15:28:37 -0800713{
714 struct clock_event_device *sevt;
715 unsigned long pstate;
716
717 /* Guarantee that the following sequences execute
718 * uninterrupted.
719 */
720 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
721 "wrpr %0, %1, %%pstate"
722 : "=r" (pstate)
723 : "i" (PSTATE_IE));
724
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400725 tick_operations.init_tick();
David S. Miller112f4872007-03-05 15:28:37 -0800726
727 /* Restore PSTATE_IE. */
728 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
729 : /* no outputs */
730 : "r" (pstate));
731
Christoph Lameter494fc422014-08-17 12:30:54 -0500732 sevt = this_cpu_ptr(&sparc64_events);
David S. Miller112f4872007-03-05 15:28:37 -0800733
734 memcpy(sevt, &sparc64_clockevent, sizeof(*sevt));
Rusty Russell320ab2b2008-12-13 21:20:26 +1030735 sevt->cpumask = cpumask_of(smp_processor_id());
David S. Miller112f4872007-03-05 15:28:37 -0800736
737 clockevents_register_device(sevt);
738}
739
David S. Miller03983ab2007-05-17 22:55:26 -0700740#define SPARC64_NSEC_PER_CYC_SHIFT 10UL
David S. Miller112f4872007-03-05 15:28:37 -0800741
742static struct clocksource clocksource_tick = {
743 .rating = 100,
744 .mask = CLOCKSOURCE_MASK(64),
David S. Miller112f4872007-03-05 15:28:37 -0800745 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746};
747
David S. Miller8b99cfb2007-07-14 02:23:37 -0700748static unsigned long tb_ticks_per_usec __read_mostly;
749
750void __delay(unsigned long loops)
751{
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400752 unsigned long bclock = get_tick();
David S. Miller8b99cfb2007-07-14 02:23:37 -0700753
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400754 while ((get_tick() - bclock) < loops)
755 ;
David S. Miller8b99cfb2007-07-14 02:23:37 -0700756}
757EXPORT_SYMBOL(__delay);
758
759void udelay(unsigned long usecs)
760{
761 __delay(tb_ticks_per_usec * usecs);
762}
763EXPORT_SYMBOL(udelay);
764
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100765static u64 clocksource_tick_read(struct clocksource *cs)
Magnus Damm8e196082009-04-21 12:24:00 -0700766{
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400767 return get_tick();
Magnus Damm8e196082009-04-21 12:24:00 -0700768}
769
Pavel Tatashin4929c832017-06-12 16:41:47 -0400770static void __init get_tick_patch(void)
771{
772 unsigned int *addr, *instr, i;
773 struct get_tick_patch *p;
774
775 if (tlb_type == spitfire && is_hummingbird())
776 return;
777
778 for (p = &__get_tick_patch; p < &__get_tick_patch_end; p++) {
779 instr = (tlb_type == spitfire) ? p->tick : p->stick;
780 addr = (unsigned int *)(unsigned long)p->addr;
781 for (i = 0; i < GET_TICK_NINSTR; i++) {
782 addr[i] = instr[i];
783 /* ensure that address is modified before flush */
784 wmb();
785 flushi(&addr[i]);
786 }
787 }
788}
789
Pavel Tatashin89108c32017-06-12 16:41:45 -0400790static void init_tick_ops(struct sparc64_tick_ops *ops)
791{
792 unsigned long freq, quotient, tick;
793
794 freq = ops->get_frequency();
795 quotient = clocksource_hz2mult(freq, SPARC64_NSEC_PER_CYC_SHIFT);
796 tick = ops->get_tick();
797
798 ops->offset = (tick * quotient) >> SPARC64_NSEC_PER_CYC_SHIFT;
799 ops->ticks_per_nsec_quotient = quotient;
800 ops->frequency = freq;
801 tick_operations = *ops;
Pavel Tatashin4929c832017-06-12 16:41:47 -0400802 get_tick_patch();
Pavel Tatashin89108c32017-06-12 16:41:45 -0400803}
804
Pavel Tatashin83e8eb92017-06-12 16:41:46 -0400805void __init time_init_early(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Pavel Tatashin89108c32017-06-12 16:41:45 -0400807 if (tlb_type == spitfire) {
808 if (is_hummingbird())
809 init_tick_ops(&hbtick_operations);
810 else
811 init_tick_ops(&tick_operations);
812 } else {
813 init_tick_ops(&stick_operations);
814 }
Pavel Tatashin83e8eb92017-06-12 16:41:46 -0400815}
816
817void __init time_init(void)
818{
819 unsigned long freq;
Pavel Tatashin89108c32017-06-12 16:41:45 -0400820
821 freq = tick_operations.frequency;
David S. Millerd8ada0a2008-09-11 23:39:11 -0700822 tb_ticks_per_usec = freq / USEC_PER_SEC;
David S. Miller8b99cfb2007-07-14 02:23:37 -0700823
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400824 clocksource_tick.name = tick_operations.name;
Magnus Damm8e196082009-04-21 12:24:00 -0700825 clocksource_tick.read = clocksource_tick_read;
David S. Miller112f4872007-03-05 15:28:37 -0800826
John Stultz81043e82011-02-23 13:08:21 -0800827 clocksource_register_hz(&clocksource_tick, freq);
David S. Miller112f4872007-03-05 15:28:37 -0800828 printk("clocksource: mult[%x] shift[%d]\n",
829 clocksource_tick.mult, clocksource_tick.shift);
830
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400831 sparc64_clockevent.name = tick_operations.name;
David S. Miller6865b7f2009-12-11 01:27:29 -0800832 clockevents_calc_mult_shift(&sparc64_clockevent, freq, 4);
David S. Miller112f4872007-03-05 15:28:37 -0800833
834 sparc64_clockevent.max_delta_ns =
David S. Millercf3d7c12008-03-26 01:11:55 -0700835 clockevent_delta2ns(0x7fffffffffffffffUL, &sparc64_clockevent);
Nicolai Stange7fd53422017-03-30 21:56:47 +0200836 sparc64_clockevent.max_delta_ticks = 0x7fffffffffffffffUL;
David S. Miller112f4872007-03-05 15:28:37 -0800837 sparc64_clockevent.min_delta_ns =
838 clockevent_delta2ns(0xF, &sparc64_clockevent);
Nicolai Stange7fd53422017-03-30 21:56:47 +0200839 sparc64_clockevent.min_delta_ticks = 0xF;
David S. Miller112f4872007-03-05 15:28:37 -0800840
David S. Miller7466bd32009-12-11 02:05:05 -0800841 printk("clockevent: mult[%x] shift[%d]\n",
David S. Miller112f4872007-03-05 15:28:37 -0800842 sparc64_clockevent.mult, sparc64_clockevent.shift);
843
844 setup_sparc64_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
847unsigned long long sched_clock(void)
848{
Pavel Tatashin178bf2b2017-06-12 16:41:44 -0400849 unsigned long quotient = tick_operations.ticks_per_nsec_quotient;
850 unsigned long offset = tick_operations.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400852 /* Use barrier so the compiler emits the loads first and overlaps load
853 * latency with reading tick, because reading %tick/%stick is a
854 * post-sync instruction that will flush and restart subsequent
855 * instructions after it commits.
856 */
857 barrier();
858
859 return ((get_tick() * quotient) >> SPARC64_NSEC_PER_CYC_SHIFT) - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800862int read_current_timer(unsigned long *timer_val)
Andrew Morton941e4922008-02-06 01:36:42 -0800863{
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400864 *timer_val = get_tick();
Andrew Morton941e4922008-02-06 01:36:42 -0800865 return 0;
866}