blob: 89fb05f9060959d49d79493dce5f231af2f741c8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
David S. Millercf3d7c12008-03-26 01:11:55 -07002/* time.c: UltraSparc timer and TOD clock support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David S. Millercf3d7c12008-03-26 01:11:55 -07004 * Copyright (C) 1997, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
6 *
7 * Based largely on code which is:
8 *
9 * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/errno.h>
Paul Gortmaker066bcac2011-07-22 13:18:16 -040013#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/sched.h>
15#include <linux/kernel.h>
16#include <linux/param.h>
17#include <linux/string.h>
18#include <linux/mm.h>
19#include <linux/interrupt.h>
20#include <linux/time.h>
21#include <linux/timex.h>
22#include <linux/init.h>
23#include <linux/ioport.h>
24#include <linux/mc146818rtc.h>
25#include <linux/delay.h>
26#include <linux/profile.h>
27#include <linux/bcd.h>
28#include <linux/jiffies.h>
29#include <linux/cpufreq.h>
30#include <linux/percpu.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 Tatashineea98332017-06-15 10:40:59 -0400165/* Searches for cpu clock frequency with given cpuid in OpenBoot tree */
166static unsigned long cpuid_to_freq(phandle node, int cpuid)
167{
168 bool is_cpu_node = false;
169 unsigned long freq = 0;
170 char type[128];
171
172 if (!node)
173 return freq;
174
175 if (prom_getproperty(node, "device_type", type, sizeof(type)) != -1)
176 is_cpu_node = (strcmp(type, "cpu") == 0);
177
Pavel Tatashina718d132017-06-25 19:27:06 -0400178 /* try upa-portid then cpuid to get cpuid, see prom_64.c */
179 if (is_cpu_node && (prom_getint(node, "upa-portid") == cpuid ||
Pavel Tatashineea98332017-06-15 10:40:59 -0400180 prom_getint(node, "cpuid") == cpuid))
181 freq = prom_getintdefault(node, "clock-frequency", 0);
182 if (!freq)
183 freq = cpuid_to_freq(prom_getchild(node), cpuid);
184 if (!freq)
185 freq = cpuid_to_freq(prom_getsibling(node), cpuid);
186
187 return freq;
188}
189
Pavel Tatashin89108c32017-06-12 16:41:45 -0400190static unsigned long tick_get_frequency(void)
191{
Pavel Tatashineea98332017-06-15 10:40:59 -0400192 return cpuid_to_freq(prom_root_node, hard_smp_processor_id());
Pavel Tatashin89108c32017-06-12 16:41:45 -0400193}
194
Pavel Tatashin178bf2b2017-06-12 16:41:44 -0400195static struct sparc64_tick_ops tick_operations __cacheline_aligned = {
David S. Miller112f4872007-03-05 15:28:37 -0800196 .name = "tick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .init_tick = tick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800198 .disable_irq = tick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 .get_tick = tick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .add_tick = tick_add_tick,
201 .add_compare = tick_add_compare,
Pavel Tatashin89108c32017-06-12 16:41:45 -0400202 .get_frequency = tick_get_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .softint_mask = 1UL << 0,
204};
205
David S. Millerfc321492005-11-07 14:10:10 -0800206struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations;
Sam Ravnborg917c3662009-01-08 16:58:20 -0800207EXPORT_SYMBOL(tick_ops);
David S. Millerfc321492005-11-07 14:10:10 -0800208
David S. Miller112f4872007-03-05 15:28:37 -0800209static void stick_disable_irq(void)
210{
211 __asm__ __volatile__(
212 "wr %0, 0x0, %%asr25"
213 : /* no outputs */
214 : "r" (TICKCMP_IRQ_BIT));
215}
216
217static void stick_init_tick(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
David S. Miller7aa62642006-02-11 23:14:59 -0800219 /* Writes to the %tick and %stick register are not
220 * allowed on sun4v. The Hypervisor controls that
221 * bit, per-strand.
222 */
223 if (tlb_type != hypervisor) {
224 tick_disable_protection();
David S. Miller112f4872007-03-05 15:28:37 -0800225 tick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
David S. Miller7aa62642006-02-11 23:14:59 -0800227 /* Let the user get at STICK too. */
228 __asm__ __volatile__(
229 " rd %%asr24, %%g2\n"
230 " andn %%g2, %0, %%g2\n"
231 " wr %%g2, 0, %%asr24"
232 : /* no outputs */
233 : "r" (TICK_PRIV_BIT)
234 : "g1", "g2");
235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
David S. Miller112f4872007-03-05 15:28:37 -0800237 stick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Sam Ravnborg90181132009-01-06 13:19:28 -0800240static unsigned long long stick_get_tick(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 unsigned long ret;
243
244 __asm__ __volatile__("rd %%asr24, %0"
245 : "=r" (ret));
246
247 return ret & ~TICK_PRIV_BIT;
248}
249
David S. Miller112f4872007-03-05 15:28:37 -0800250static unsigned long stick_add_tick(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
David S. Miller112f4872007-03-05 15:28:37 -0800252 unsigned long new_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 __asm__ __volatile__("rd %%asr24, %0\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800255 "add %0, %1, %0\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 "wr %0, 0, %%asr24\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800257 : "=&r" (new_tick)
258 : "r" (adj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 return new_tick;
261}
262
David S. Miller112f4872007-03-05 15:28:37 -0800263static int stick_add_compare(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
David S. Miller112f4872007-03-05 15:28:37 -0800265 unsigned long orig_tick, new_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
David S. Miller112f4872007-03-05 15:28:37 -0800267 __asm__ __volatile__("rd %%asr24, %0"
268 : "=r" (orig_tick));
269 orig_tick &= ~TICKCMP_IRQ_BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
David S. Miller112f4872007-03-05 15:28:37 -0800271 __asm__ __volatile__("wr %0, 0, %%asr25"
272 : /* no outputs */
273 : "r" (orig_tick + adj));
274
275 __asm__ __volatile__("rd %%asr24, %0"
276 : "=r" (new_tick));
277 new_tick &= ~TICKCMP_IRQ_BIT;
278
279 return ((long)(new_tick - (orig_tick+adj))) > 0L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Pavel Tatashin89108c32017-06-12 16:41:45 -0400282static unsigned long stick_get_frequency(void)
283{
Pavel Tatashinfca4afe2017-06-15 10:40:58 -0400284 return prom_getintdefault(prom_root_node, "stick-frequency", 0);
Pavel Tatashin89108c32017-06-12 16:41:45 -0400285}
286
David S. Millerd369ddd2005-07-10 15:45:11 -0700287static struct sparc64_tick_ops stick_operations __read_mostly = {
David S. Miller112f4872007-03-05 15:28:37 -0800288 .name = "stick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 .init_tick = stick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800290 .disable_irq = stick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 .get_tick = stick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 .add_tick = stick_add_tick,
293 .add_compare = stick_add_compare,
Pavel Tatashin89108c32017-06-12 16:41:45 -0400294 .get_frequency = stick_get_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 .softint_mask = 1UL << 16,
296};
297
298/* On Hummingbird the STICK/STICK_CMPR register is implemented
299 * in I/O space. There are two 64-bit registers each, the
300 * first holds the low 32-bits of the value and the second holds
301 * the high 32-bits.
302 *
303 * Since STICK is constantly updating, we have to access it carefully.
304 *
305 * The sequence we use to read is:
Richard Mortimer9eb33942006-01-17 15:21:01 -0800306 * 1) read high
307 * 2) read low
308 * 3) read high again, if it rolled re-read both low and high again.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 *
310 * Writing STICK safely is also tricky:
311 * 1) write low to zero
312 * 2) write high
313 * 3) write low
314 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315static unsigned long __hbird_read_stick(void)
316{
317 unsigned long ret, tmp1, tmp2, tmp3;
Richard Mortimer9eb33942006-01-17 15:21:01 -0800318 unsigned long addr = HBIRD_STICK_ADDR+8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Richard Mortimer9eb33942006-01-17 15:21:01 -0800320 __asm__ __volatile__("ldxa [%1] %5, %2\n"
321 "1:\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 "sub %1, 0x8, %1\n\t"
Richard Mortimer9eb33942006-01-17 15:21:01 -0800323 "ldxa [%1] %5, %3\n\t"
324 "add %1, 0x8, %1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 "ldxa [%1] %5, %4\n\t"
326 "cmp %4, %2\n\t"
Richard Mortimer9eb33942006-01-17 15:21:01 -0800327 "bne,a,pn %%xcc, 1b\n\t"
328 " mov %4, %2\n\t"
329 "sllx %4, 32, %4\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 "or %3, %4, %0\n\t"
331 : "=&r" (ret), "=&r" (addr),
332 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3)
333 : "i" (ASI_PHYS_BYPASS_EC_E), "1" (addr));
334
335 return ret;
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static void __hbird_write_stick(unsigned long val)
339{
340 unsigned long low = (val & 0xffffffffUL);
341 unsigned long high = (val >> 32UL);
342 unsigned long addr = HBIRD_STICK_ADDR;
343
344 __asm__ __volatile__("stxa %%g0, [%0] %4\n\t"
345 "add %0, 0x8, %0\n\t"
346 "stxa %3, [%0] %4\n\t"
347 "sub %0, 0x8, %0\n\t"
348 "stxa %2, [%0] %4"
349 : "=&r" (addr)
350 : "0" (addr), "r" (low), "r" (high),
351 "i" (ASI_PHYS_BYPASS_EC_E));
352}
353
354static void __hbird_write_compare(unsigned long val)
355{
356 unsigned long low = (val & 0xffffffffUL);
357 unsigned long high = (val >> 32UL);
358 unsigned long addr = HBIRD_STICKCMP_ADDR + 0x8UL;
359
360 __asm__ __volatile__("stxa %3, [%0] %4\n\t"
361 "sub %0, 0x8, %0\n\t"
362 "stxa %2, [%0] %4"
363 : "=&r" (addr)
364 : "0" (addr), "r" (low), "r" (high),
365 "i" (ASI_PHYS_BYPASS_EC_E));
366}
367
David S. Miller112f4872007-03-05 15:28:37 -0800368static void hbtick_disable_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
David S. Miller112f4872007-03-05 15:28:37 -0800370 __hbird_write_compare(TICKCMP_IRQ_BIT);
371}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
David S. Miller112f4872007-03-05 15:28:37 -0800373static void hbtick_init_tick(void)
374{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 tick_disable_protection();
376
377 /* XXX This seems to be necessary to 'jumpstart' Hummingbird
378 * XXX into actually sending STICK interrupts. I think because
379 * XXX of how we store %tick_cmpr in head.S this somehow resets the
380 * XXX {TICK + STICK} interrupt mux. -DaveM
381 */
382 __hbird_write_stick(__hbird_read_stick());
383
David S. Miller112f4872007-03-05 15:28:37 -0800384 hbtick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Sam Ravnborg90181132009-01-06 13:19:28 -0800387static unsigned long long hbtick_get_tick(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 return __hbird_read_stick() & ~TICK_PRIV_BIT;
390}
391
David S. Miller112f4872007-03-05 15:28:37 -0800392static unsigned long hbtick_add_tick(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 unsigned long val;
395
396 val = __hbird_read_stick() + adj;
397 __hbird_write_stick(val);
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return val;
400}
401
David S. Miller112f4872007-03-05 15:28:37 -0800402static int hbtick_add_compare(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
David S. Miller112f4872007-03-05 15:28:37 -0800404 unsigned long val = __hbird_read_stick();
405 unsigned long val2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
David S. Miller112f4872007-03-05 15:28:37 -0800407 val &= ~TICKCMP_IRQ_BIT;
408 val += adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 __hbird_write_compare(val);
410
David S. Miller112f4872007-03-05 15:28:37 -0800411 val2 = __hbird_read_stick() & ~TICKCMP_IRQ_BIT;
412
413 return ((long)(val2 - val)) > 0L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Pavel Tatashin89108c32017-06-12 16:41:45 -0400416static unsigned long hbtick_get_frequency(void)
417{
Pavel Tatashinfca4afe2017-06-15 10:40:58 -0400418 return prom_getintdefault(prom_root_node, "stick-frequency", 0);
Pavel Tatashin89108c32017-06-12 16:41:45 -0400419}
420
David S. Millerd369ddd2005-07-10 15:45:11 -0700421static struct sparc64_tick_ops hbtick_operations __read_mostly = {
David S. Miller112f4872007-03-05 15:28:37 -0800422 .name = "hbtick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 .init_tick = hbtick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800424 .disable_irq = hbtick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 .get_tick = hbtick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 .add_tick = hbtick_add_tick,
427 .add_compare = hbtick_add_compare,
Pavel Tatashin89108c32017-06-12 16:41:45 -0400428 .get_frequency = hbtick_get_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 .softint_mask = 1UL << 0,
430};
431
David S. Millerda867832008-08-28 22:16:15 -0700432unsigned long cmos_regs;
433EXPORT_SYMBOL(cmos_regs);
David S. Miller690c8fd2006-06-22 19:12:03 -0700434
David S. Millerd8ada0a2008-09-11 23:39:11 -0700435static struct resource rtc_cmos_resource;
David S. Millerda867832008-08-28 22:16:15 -0700436
437static struct platform_device rtc_cmos_device = {
438 .name = "rtc_cmos",
439 .id = -1,
440 .resource = &rtc_cmos_resource,
441 .num_resources = 1,
442};
David S. Miller690c8fd2006-06-22 19:12:03 -0700443
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800444static int rtc_probe(struct platform_device *op)
David S. Miller690c8fd2006-06-22 19:12:03 -0700445{
David S. Millerda867832008-08-28 22:16:15 -0700446 struct resource *r;
447
Rob Herringa412c852018-11-16 15:06:54 -0600448 printk(KERN_INFO "%pOF: RTC regs at 0x%llx\n",
449 op->dev.of_node, op->resource[0].start);
David S. Millerda867832008-08-28 22:16:15 -0700450
451 /* The CMOS RTC driver only accepts IORESOURCE_IO, so cons
452 * up a fake resource so that the probe works for all cases.
453 * When the RTC is behind an ISA bus it will have IORESOURCE_IO
454 * already, whereas when it's behind EBUS is will be IORESOURCE_MEM.
455 */
456
457 r = &rtc_cmos_resource;
458 r->flags = IORESOURCE_IO;
459 r->name = op->resource[0].name;
460 r->start = op->resource[0].start;
461 r->end = op->resource[0].end;
462
463 cmos_regs = op->resource[0].start;
464 return platform_device_register(&rtc_cmos_device);
465}
466
David S. Miller3628aa02011-03-30 17:37:56 -0700467static const struct of_device_id rtc_match[] = {
David S. Millerda867832008-08-28 22:16:15 -0700468 {
469 .name = "rtc",
470 .compatible = "m5819",
471 },
472 {
473 .name = "rtc",
474 .compatible = "isa-m5819p",
475 },
476 {
477 .name = "rtc",
478 .compatible = "isa-m5823p",
479 },
480 {
481 .name = "rtc",
482 .compatible = "ds1287",
483 },
484 {},
485};
486
Grant Likely4ebb24f2011-02-22 20:01:33 -0700487static struct platform_driver rtc_driver = {
David S. Millerda867832008-08-28 22:16:15 -0700488 .probe = rtc_probe,
Grant Likely40182942010-04-13 16:13:02 -0700489 .driver = {
490 .name = "rtc",
Grant Likely40182942010-04-13 16:13:02 -0700491 .of_match_table = rtc_match,
David S. Millerda867832008-08-28 22:16:15 -0700492 },
493};
494
David S. Miller29b503f2008-08-28 21:54:34 -0700495static struct platform_device rtc_bq4802_device = {
496 .name = "rtc-bq4802",
497 .id = -1,
498 .num_resources = 1,
499};
500
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800501static int bq4802_probe(struct platform_device *op)
David S. Millerda867832008-08-28 22:16:15 -0700502{
David S. Miller690c8fd2006-06-22 19:12:03 -0700503
Rob Herringa412c852018-11-16 15:06:54 -0600504 printk(KERN_INFO "%pOF: BQ4802 regs at 0x%llx\n",
505 op->dev.of_node, op->resource[0].start);
David S. Miller690c8fd2006-06-22 19:12:03 -0700506
David S. Miller29b503f2008-08-28 21:54:34 -0700507 rtc_bq4802_device.resource = &op->resource[0];
508 return platform_device_register(&rtc_bq4802_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
David S. Miller3628aa02011-03-30 17:37:56 -0700511static const struct of_device_id bq4802_match[] = {
David S. Milleree5caf02006-06-29 14:36:52 -0700512 {
513 .name = "rtc",
David S. Millerda867832008-08-28 22:16:15 -0700514 .compatible = "bq4802",
David S. Milleree5caf02006-06-29 14:36:52 -0700515 },
David S. Miller770a4242008-10-30 22:58:06 -0700516 {},
David S. Milleree5caf02006-06-29 14:36:52 -0700517};
518
Grant Likely4ebb24f2011-02-22 20:01:33 -0700519static struct platform_driver bq4802_driver = {
David S. Millerda867832008-08-28 22:16:15 -0700520 .probe = bq4802_probe,
Grant Likely40182942010-04-13 16:13:02 -0700521 .driver = {
522 .name = "bq4802",
Grant Likely40182942010-04-13 16:13:02 -0700523 .of_match_table = bq4802_match,
David S. Miller1518e7e2008-08-28 21:06:27 -0700524 },
525};
526
527static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
528{
529 struct platform_device *pdev = to_platform_device(dev);
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700530 void __iomem *regs = (void __iomem *) pdev->resource[0].start;
David S. Miller1518e7e2008-08-28 21:06:27 -0700531
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700532 return readb(regs + ofs);
David S. Miller1518e7e2008-08-28 21:06:27 -0700533}
534
535static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
536{
537 struct platform_device *pdev = to_platform_device(dev);
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700538 void __iomem *regs = (void __iomem *) pdev->resource[0].start;
David S. Miller1518e7e2008-08-28 21:06:27 -0700539
David S. Miller1518e7e2008-08-28 21:06:27 -0700540 writeb(val, regs + ofs);
541}
542
543static struct m48t59_plat_data m48t59_data = {
544 .read_byte = mostek_read_byte,
545 .write_byte = mostek_write_byte,
546};
547
548static struct platform_device m48t59_rtc = {
549 .name = "rtc-m48t59",
550 .id = 0,
551 .num_resources = 1,
552 .dev = {
553 .platform_data = &m48t59_data,
554 },
555};
556
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800557static int mostek_probe(struct platform_device *op)
David S. Miller1518e7e2008-08-28 21:06:27 -0700558{
Grant Likely61c7a082010-04-13 16:12:29 -0700559 struct device_node *dp = op->dev.of_node;
David S. Miller1518e7e2008-08-28 21:06:27 -0700560
561 /* On an Enterprise system there can be multiple mostek clocks.
562 * We should only match the one that is on the central FHC bus.
563 */
Rob Herring29c990d2018-11-16 15:06:58 -0600564 if (of_node_name_eq(dp->parent, "fhc") &&
565 !of_node_name_eq(dp->parent->parent, "central"))
David S. Miller1518e7e2008-08-28 21:06:27 -0700566 return -ENODEV;
567
Rob Herringa412c852018-11-16 15:06:54 -0600568 printk(KERN_INFO "%pOF: Mostek regs at 0x%llx\n",
569 dp, op->resource[0].start);
David S. Miller1518e7e2008-08-28 21:06:27 -0700570
571 m48t59_rtc.resource = &op->resource[0];
572 return platform_device_register(&m48t59_rtc);
573}
574
David S. Miller3628aa02011-03-30 17:37:56 -0700575static const struct of_device_id mostek_match[] = {
David S. Miller1518e7e2008-08-28 21:06:27 -0700576 {
577 .name = "eeprom",
578 },
579 {},
580};
581
Grant Likely4ebb24f2011-02-22 20:01:33 -0700582static struct platform_driver mostek_driver = {
David S. Miller1518e7e2008-08-28 21:06:27 -0700583 .probe = mostek_probe,
Grant Likely40182942010-04-13 16:13:02 -0700584 .driver = {
585 .name = "mostek",
Grant Likely40182942010-04-13 16:13:02 -0700586 .of_match_table = mostek_match,
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700587 },
David S. Milleree5caf02006-06-29 14:36:52 -0700588};
589
David S. Miller84d6bd52008-08-29 01:34:27 -0700590static struct platform_device rtc_sun4v_device = {
591 .name = "rtc-sun4v",
592 .id = -1,
593};
594
David S. Millerf2be6de2008-08-29 01:35:19 -0700595static struct platform_device rtc_starfire_device = {
596 .name = "rtc-starfire",
597 .id = -1,
598};
599
David S. Milleree5caf02006-06-29 14:36:52 -0700600static int __init clock_init(void)
601{
David S. Millerf2be6de2008-08-29 01:35:19 -0700602 if (this_is_starfire)
603 return platform_device_register(&rtc_starfire_device);
604
David S. Miller84d6bd52008-08-29 01:34:27 -0700605 if (tlb_type == hypervisor)
606 return platform_device_register(&rtc_sun4v_device);
David S. Milleree5caf02006-06-29 14:36:52 -0700607
Grant Likely4ebb24f2011-02-22 20:01:33 -0700608 (void) platform_driver_register(&rtc_driver);
609 (void) platform_driver_register(&mostek_driver);
610 (void) platform_driver_register(&bq4802_driver);
David S. Miller1518e7e2008-08-28 21:06:27 -0700611
612 return 0;
David S. Milleree5caf02006-06-29 14:36:52 -0700613}
614
615/* Must be after subsys_initcall() so that busses are probed. Must
616 * be before device_initcall() because things like the RTC driver
617 * need to see the clock registers.
618 */
619fs_initcall(clock_init);
620
Pavel Tatashin89108c32017-06-12 16:41:45 -0400621/* Return true if this is Hummingbird, aka Ultra-IIe */
622static bool is_hummingbird(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Pavel Tatashin89108c32017-06-12 16:41:45 -0400624 unsigned long ver, manuf, impl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Pavel Tatashin89108c32017-06-12 16:41:45 -0400626 __asm__ __volatile__ ("rdpr %%ver, %0"
627 : "=&r" (ver));
628 manuf = ((ver >> 48) & 0xffff);
629 impl = ((ver >> 32) & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Pavel Tatashin89108c32017-06-12 16:41:45 -0400631 return (manuf == 0x17 && impl == 0x13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634struct freq_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 unsigned long clock_tick_ref;
636 unsigned int ref_freq;
637};
David S. Miller3763be32006-02-17 12:33:13 -0800638static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640unsigned long sparc64_get_clock_tick(unsigned int cpu)
641{
642 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
643
644 if (ft->clock_tick_ref)
645 return ft->clock_tick_ref;
646 return cpu_data(cpu).clock_tick;
647}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800648EXPORT_SYMBOL(sparc64_get_clock_tick);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650#ifdef CONFIG_CPU_FREQ
651
652static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
653 void *data)
654{
655 struct cpufreq_freqs *freq = data;
Viresh Kumardf240142019-04-29 15:03:58 +0530656 unsigned int cpu;
657 struct freq_table *ft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Viresh Kumardf240142019-04-29 15:03:58 +0530659 for_each_cpu(cpu, freq->policy->cpus) {
660 ft = &per_cpu(sparc64_freq_table, cpu);
661
662 if (!ft->ref_freq) {
663 ft->ref_freq = freq->old;
664 ft->clock_tick_ref = cpu_data(cpu).clock_tick;
665 }
666
667 if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
668 (val == CPUFREQ_POSTCHANGE && freq->old > freq->new)) {
669 cpu_data(cpu).clock_tick =
670 cpufreq_scale(ft->clock_tick_ref, ft->ref_freq,
671 freq->new);
672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 return 0;
676}
677
678static struct notifier_block sparc64_cpufreq_notifier_block = {
679 .notifier_call = sparc64_cpufreq_notifier
680};
681
David S. Miller7ae93f52008-07-23 16:21:07 -0700682static int __init register_sparc64_cpufreq_notifier(void)
683{
684
685 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block,
686 CPUFREQ_TRANSITION_NOTIFIER);
687 return 0;
688}
689
690core_initcall(register_sparc64_cpufreq_notifier);
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692#endif /* CONFIG_CPU_FREQ */
693
David S. Miller112f4872007-03-05 15:28:37 -0800694static int sparc64_next_event(unsigned long delta,
695 struct clock_event_device *evt)
696{
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400697 return tick_operations.add_compare(delta) ? -ETIME : 0;
David S. Miller112f4872007-03-05 15:28:37 -0800698}
699
Viresh Kumarff4aea42015-07-16 16:56:29 +0530700static int sparc64_timer_shutdown(struct clock_event_device *evt)
David S. Miller112f4872007-03-05 15:28:37 -0800701{
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400702 tick_operations.disable_irq();
Viresh Kumarff4aea42015-07-16 16:56:29 +0530703 return 0;
David S. Miller112f4872007-03-05 15:28:37 -0800704}
705
706static struct clock_event_device sparc64_clockevent = {
Viresh Kumarff4aea42015-07-16 16:56:29 +0530707 .features = CLOCK_EVT_FEAT_ONESHOT,
708 .set_state_shutdown = sparc64_timer_shutdown,
709 .set_next_event = sparc64_next_event,
710 .rating = 100,
711 .shift = 30,
712 .irq = -1,
David S. Miller112f4872007-03-05 15:28:37 -0800713};
714static DEFINE_PER_CPU(struct clock_event_device, sparc64_events);
715
David S. Miller9960e9e2010-04-07 04:41:33 -0700716void __irq_entry timer_interrupt(int irq, struct pt_regs *regs)
David S. Miller112f4872007-03-05 15:28:37 -0800717{
718 struct pt_regs *old_regs = set_irq_regs(regs);
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400719 unsigned long tick_mask = tick_operations.softint_mask;
David S. Miller112f4872007-03-05 15:28:37 -0800720 int cpu = smp_processor_id();
721 struct clock_event_device *evt = &per_cpu(sparc64_events, cpu);
722
723 clear_softint(tick_mask);
724
725 irq_enter();
726
David S. Millerdaecbf52010-04-06 17:38:52 -0700727 local_cpu_data().irq0_irqs++;
Thomas Gleixner87a69ad2014-02-23 21:40:15 +0000728 kstat_incr_irq_this_cpu(0);
David S. Miller112f4872007-03-05 15:28:37 -0800729
730 if (unlikely(!evt->event_handler)) {
731 printk(KERN_WARNING
732 "Spurious SPARC64 timer interrupt on cpu %d\n", cpu);
733 } else
734 evt->event_handler(evt);
735
736 irq_exit();
737
738 set_irq_regs(old_regs);
739}
740
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800741void setup_sparc64_timer(void)
David S. Miller112f4872007-03-05 15:28:37 -0800742{
743 struct clock_event_device *sevt;
744 unsigned long pstate;
745
746 /* Guarantee that the following sequences execute
747 * uninterrupted.
748 */
749 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
750 "wrpr %0, %1, %%pstate"
751 : "=r" (pstate)
752 : "i" (PSTATE_IE));
753
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400754 tick_operations.init_tick();
David S. Miller112f4872007-03-05 15:28:37 -0800755
756 /* Restore PSTATE_IE. */
757 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
758 : /* no outputs */
759 : "r" (pstate));
760
Christoph Lameter494fc422014-08-17 12:30:54 -0500761 sevt = this_cpu_ptr(&sparc64_events);
David S. Miller112f4872007-03-05 15:28:37 -0800762
763 memcpy(sevt, &sparc64_clockevent, sizeof(*sevt));
Rusty Russell320ab2b2008-12-13 21:20:26 +1030764 sevt->cpumask = cpumask_of(smp_processor_id());
David S. Miller112f4872007-03-05 15:28:37 -0800765
766 clockevents_register_device(sevt);
767}
768
David S. Miller03983ab2007-05-17 22:55:26 -0700769#define SPARC64_NSEC_PER_CYC_SHIFT 10UL
David S. Miller112f4872007-03-05 15:28:37 -0800770
771static struct clocksource clocksource_tick = {
772 .rating = 100,
773 .mask = CLOCKSOURCE_MASK(64),
David S. Miller112f4872007-03-05 15:28:37 -0800774 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775};
776
David S. Miller8b99cfb2007-07-14 02:23:37 -0700777static unsigned long tb_ticks_per_usec __read_mostly;
778
779void __delay(unsigned long loops)
780{
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400781 unsigned long bclock = get_tick();
David S. Miller8b99cfb2007-07-14 02:23:37 -0700782
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400783 while ((get_tick() - bclock) < loops)
784 ;
David S. Miller8b99cfb2007-07-14 02:23:37 -0700785}
786EXPORT_SYMBOL(__delay);
787
788void udelay(unsigned long usecs)
789{
790 __delay(tb_ticks_per_usec * usecs);
791}
792EXPORT_SYMBOL(udelay);
793
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100794static u64 clocksource_tick_read(struct clocksource *cs)
Magnus Damm8e196082009-04-21 12:24:00 -0700795{
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400796 return get_tick();
Magnus Damm8e196082009-04-21 12:24:00 -0700797}
798
Pavel Tatashin4929c832017-06-12 16:41:47 -0400799static void __init get_tick_patch(void)
800{
801 unsigned int *addr, *instr, i;
802 struct get_tick_patch *p;
803
804 if (tlb_type == spitfire && is_hummingbird())
805 return;
806
807 for (p = &__get_tick_patch; p < &__get_tick_patch_end; p++) {
808 instr = (tlb_type == spitfire) ? p->tick : p->stick;
809 addr = (unsigned int *)(unsigned long)p->addr;
810 for (i = 0; i < GET_TICK_NINSTR; i++) {
811 addr[i] = instr[i];
812 /* ensure that address is modified before flush */
813 wmb();
814 flushi(&addr[i]);
815 }
816 }
817}
818
Steven Rostedt (VMware)6f57ed62018-06-06 10:11:10 -0400819static void __init init_tick_ops(struct sparc64_tick_ops *ops)
Pavel Tatashin89108c32017-06-12 16:41:45 -0400820{
821 unsigned long freq, quotient, tick;
822
823 freq = ops->get_frequency();
824 quotient = clocksource_hz2mult(freq, SPARC64_NSEC_PER_CYC_SHIFT);
825 tick = ops->get_tick();
826
827 ops->offset = (tick * quotient) >> SPARC64_NSEC_PER_CYC_SHIFT;
828 ops->ticks_per_nsec_quotient = quotient;
829 ops->frequency = freq;
830 tick_operations = *ops;
Pavel Tatashin4929c832017-06-12 16:41:47 -0400831 get_tick_patch();
Pavel Tatashin89108c32017-06-12 16:41:45 -0400832}
833
Pavel Tatashin83e8eb92017-06-12 16:41:46 -0400834void __init time_init_early(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Pavel Tatashin89108c32017-06-12 16:41:45 -0400836 if (tlb_type == spitfire) {
Nagarathnam Muthusamy9a088622017-09-21 11:05:31 -0400837 if (is_hummingbird()) {
Pavel Tatashin89108c32017-06-12 16:41:45 -0400838 init_tick_ops(&hbtick_operations);
Nagarathnam Muthusamy9a088622017-09-21 11:05:31 -0400839 clocksource_tick.archdata.vclock_mode = VCLOCK_NONE;
840 } else {
Pavel Tatashin89108c32017-06-12 16:41:45 -0400841 init_tick_ops(&tick_operations);
Nagarathnam Muthusamy9a088622017-09-21 11:05:31 -0400842 clocksource_tick.archdata.vclock_mode = VCLOCK_TICK;
Nagarathnam Muthusamy9a088622017-09-21 11:05:31 -0400843 }
Pavel Tatashin89108c32017-06-12 16:41:45 -0400844 } else {
845 init_tick_ops(&stick_operations);
Nagarathnam Muthusamy9a088622017-09-21 11:05:31 -0400846 clocksource_tick.archdata.vclock_mode = VCLOCK_STICK;
Pavel Tatashin89108c32017-06-12 16:41:45 -0400847 }
Pavel Tatashin83e8eb92017-06-12 16:41:46 -0400848}
849
850void __init time_init(void)
851{
852 unsigned long freq;
Pavel Tatashin89108c32017-06-12 16:41:45 -0400853
854 freq = tick_operations.frequency;
David S. Millerd8ada0a2008-09-11 23:39:11 -0700855 tb_ticks_per_usec = freq / USEC_PER_SEC;
David S. Miller8b99cfb2007-07-14 02:23:37 -0700856
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400857 clocksource_tick.name = tick_operations.name;
Magnus Damm8e196082009-04-21 12:24:00 -0700858 clocksource_tick.read = clocksource_tick_read;
David S. Miller112f4872007-03-05 15:28:37 -0800859
John Stultz81043e82011-02-23 13:08:21 -0800860 clocksource_register_hz(&clocksource_tick, freq);
David S. Miller112f4872007-03-05 15:28:37 -0800861 printk("clocksource: mult[%x] shift[%d]\n",
862 clocksource_tick.mult, clocksource_tick.shift);
863
Pavel Tatashinb8a83fc2017-06-12 16:41:42 -0400864 sparc64_clockevent.name = tick_operations.name;
David S. Miller6865b7f2009-12-11 01:27:29 -0800865 clockevents_calc_mult_shift(&sparc64_clockevent, freq, 4);
David S. Miller112f4872007-03-05 15:28:37 -0800866
867 sparc64_clockevent.max_delta_ns =
David S. Millercf3d7c12008-03-26 01:11:55 -0700868 clockevent_delta2ns(0x7fffffffffffffffUL, &sparc64_clockevent);
Nicolai Stange7fd53422017-03-30 21:56:47 +0200869 sparc64_clockevent.max_delta_ticks = 0x7fffffffffffffffUL;
David S. Miller112f4872007-03-05 15:28:37 -0800870 sparc64_clockevent.min_delta_ns =
871 clockevent_delta2ns(0xF, &sparc64_clockevent);
Nicolai Stange7fd53422017-03-30 21:56:47 +0200872 sparc64_clockevent.min_delta_ticks = 0xF;
David S. Miller112f4872007-03-05 15:28:37 -0800873
David S. Miller7466bd32009-12-11 02:05:05 -0800874 printk("clockevent: mult[%x] shift[%d]\n",
David S. Miller112f4872007-03-05 15:28:37 -0800875 sparc64_clockevent.mult, sparc64_clockevent.shift);
876
877 setup_sparc64_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
880unsigned long long sched_clock(void)
881{
Pavel Tatashin178bf2b2017-06-12 16:41:44 -0400882 unsigned long quotient = tick_operations.ticks_per_nsec_quotient;
883 unsigned long offset = tick_operations.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400885 /* Use barrier so the compiler emits the loads first and overlaps load
886 * latency with reading tick, because reading %tick/%stick is a
887 * post-sync instruction that will flush and restart subsequent
888 * instructions after it commits.
889 */
890 barrier();
891
892 return ((get_tick() * quotient) >> SPARC64_NSEC_PER_CYC_SHIFT) - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -0800895int read_current_timer(unsigned long *timer_val)
Andrew Morton941e4922008-02-06 01:36:42 -0800896{
Pavel Tatashineae3fc92017-06-12 16:41:48 -0400897 *timer_val = get_tick();
Andrew Morton941e4922008-02-06 01:36:42 -0800898 return 0;
899}