1 // SPDX-License-Identifier: GPL-2.0
2 /* time.c: UltraSparc timer and TOD clock support.
4 * Copyright (C) 1997, 2008 David S. Miller (davem@davemloft.net)
5 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
7 * Based largely on code which is:
9 * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
12 #include <linux/errno.h>
13 #include <linux/export.h>
14 #include <linux/sched.h>
15 #include <linux/kernel.h>
16 #include <linux/param.h>
17 #include <linux/string.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>
31 #include <linux/rtc/m48t59.h>
32 #include <linux/kernel_stat.h>
33 #include <linux/clockchips.h>
34 #include <linux/clocksource.h>
35 #include <linux/platform_device.h>
36 #include <linux/ftrace.h>
38 #include <asm/oplib.h>
39 #include <asm/timer.h>
43 #include <asm/starfire.h>
45 #include <asm/sections.h>
46 #include <asm/cpudata.h>
47 #include <linux/uaccess.h>
48 #include <asm/irq_regs.h>
49 #include <asm/cacheflush.h>
54 DEFINE_SPINLOCK(rtc_lock
);
57 unsigned long profile_pc(struct pt_regs
*regs
)
59 unsigned long pc
= instruction_pointer(regs
);
61 if (in_lock_functions(pc
))
62 return regs
->u_regs
[UREG_RETPC
];
65 EXPORT_SYMBOL(profile_pc
);
68 static void tick_disable_protection(void)
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.
78 "1: rd %%tick, %%g2\n"
79 " add %%g2, 6, %%g2\n"
80 " andn %%g2, %0, %%g2\n"
81 " wrpr %%g2, 0, %%tick\n"
88 static void tick_disable_irq(void)
94 "1: wr %0, 0x0, %%tick_cmpr\n"
95 " rd %%tick_cmpr, %%g0"
97 : "r" (TICKCMP_IRQ_BIT
));
100 static void tick_init_tick(void)
102 tick_disable_protection();
106 static unsigned long long tick_get_tick(void)
110 __asm__
__volatile__("rd %%tick, %0\n\t"
114 return ret
& ~TICK_PRIV_BIT
;
117 static int tick_add_compare(unsigned long adj
)
119 unsigned long orig_tick
, new_tick
, new_compare
;
121 __asm__
__volatile__("rd %%tick, %0"
124 orig_tick
&= ~TICKCMP_IRQ_BIT
;
126 /* Workaround for Spitfire Errata (#54 I think??), I discovered
127 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch
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
135 __asm__
__volatile__("ba,pt %%xcc, 1f\n\t"
136 " add %1, %2, %0\n\t"
139 "wr %0, 0, %%tick_cmpr\n\t"
140 "rd %%tick_cmpr, %%g0\n\t"
142 : "r" (orig_tick
), "r" (adj
));
144 __asm__
__volatile__("rd %%tick, %0"
146 new_tick
&= ~TICKCMP_IRQ_BIT
;
148 return ((long)(new_tick
- (orig_tick
+adj
))) > 0L;
151 static unsigned long tick_add_tick(unsigned long adj
)
153 unsigned long new_tick
;
155 /* Also need to handle Blackbird bug here too. */
156 __asm__
__volatile__("rd %%tick, %0\n\t"
158 "wrpr %0, 0, %%tick\n\t"
165 /* Searches for cpu clock frequency with given cpuid in OpenBoot tree */
166 static unsigned long cpuid_to_freq(phandle node
, int cpuid
)
168 bool is_cpu_node
= false;
169 unsigned long freq
= 0;
175 if (prom_getproperty(node
, "device_type", type
, sizeof(type
)) != -1)
176 is_cpu_node
= (strcmp(type
, "cpu") == 0);
178 /* try upa-portid then cpuid to get cpuid, see prom_64.c */
179 if (is_cpu_node
&& (prom_getint(node
, "upa-portid") == cpuid
||
180 prom_getint(node
, "cpuid") == cpuid
))
181 freq
= prom_getintdefault(node
, "clock-frequency", 0);
183 freq
= cpuid_to_freq(prom_getchild(node
), cpuid
);
185 freq
= cpuid_to_freq(prom_getsibling(node
), cpuid
);
190 static unsigned long tick_get_frequency(void)
192 return cpuid_to_freq(prom_root_node
, hard_smp_processor_id());
195 static struct sparc64_tick_ops tick_operations __cacheline_aligned
= {
197 .init_tick
= tick_init_tick
,
198 .disable_irq
= tick_disable_irq
,
199 .get_tick
= tick_get_tick
,
200 .add_tick
= tick_add_tick
,
201 .add_compare
= tick_add_compare
,
202 .get_frequency
= tick_get_frequency
,
203 .softint_mask
= 1UL << 0,
206 struct sparc64_tick_ops
*tick_ops __read_mostly
= &tick_operations
;
207 EXPORT_SYMBOL(tick_ops
);
209 static void stick_disable_irq(void)
211 __asm__
__volatile__(
212 "wr %0, 0x0, %%asr25"
214 : "r" (TICKCMP_IRQ_BIT
));
217 static void stick_init_tick(void)
219 /* Writes to the %tick and %stick register are not
220 * allowed on sun4v. The Hypervisor controls that
223 if (tlb_type
!= hypervisor
) {
224 tick_disable_protection();
227 /* 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"
233 : "r" (TICK_PRIV_BIT
)
240 static unsigned long long stick_get_tick(void)
244 __asm__
__volatile__("rd %%asr24, %0"
247 return ret
& ~TICK_PRIV_BIT
;
250 static unsigned long stick_add_tick(unsigned long adj
)
252 unsigned long new_tick
;
254 __asm__
__volatile__("rd %%asr24, %0\n\t"
256 "wr %0, 0, %%asr24\n\t"
263 static int stick_add_compare(unsigned long adj
)
265 unsigned long orig_tick
, new_tick
;
267 __asm__
__volatile__("rd %%asr24, %0"
269 orig_tick
&= ~TICKCMP_IRQ_BIT
;
271 __asm__
__volatile__("wr %0, 0, %%asr25"
273 : "r" (orig_tick
+ adj
));
275 __asm__
__volatile__("rd %%asr24, %0"
277 new_tick
&= ~TICKCMP_IRQ_BIT
;
279 return ((long)(new_tick
- (orig_tick
+adj
))) > 0L;
282 static unsigned long stick_get_frequency(void)
284 return prom_getintdefault(prom_root_node
, "stick-frequency", 0);
287 static struct sparc64_tick_ops stick_operations __read_mostly
= {
289 .init_tick
= stick_init_tick
,
290 .disable_irq
= stick_disable_irq
,
291 .get_tick
= stick_get_tick
,
292 .add_tick
= stick_add_tick
,
293 .add_compare
= stick_add_compare
,
294 .get_frequency
= stick_get_frequency
,
295 .softint_mask
= 1UL << 16,
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
303 * Since STICK is constantly updating, we have to access it carefully.
305 * The sequence we use to read is:
308 * 3) read high again, if it rolled re-read both low and high again.
310 * Writing STICK safely is also tricky:
311 * 1) write low to zero
315 static unsigned long __hbird_read_stick(void)
317 unsigned long ret
, tmp1
, tmp2
, tmp3
;
318 unsigned long addr
= HBIRD_STICK_ADDR
+8;
320 __asm__
__volatile__("ldxa [%1] %5, %2\n"
322 "sub %1, 0x8, %1\n\t"
323 "ldxa [%1] %5, %3\n\t"
324 "add %1, 0x8, %1\n\t"
325 "ldxa [%1] %5, %4\n\t"
327 "bne,a,pn %%xcc, 1b\n\t"
329 "sllx %4, 32, %4\n\t"
331 : "=&r" (ret
), "=&r" (addr
),
332 "=&r" (tmp1
), "=&r" (tmp2
), "=&r" (tmp3
)
333 : "i" (ASI_PHYS_BYPASS_EC_E
), "1" (addr
));
338 static void __hbird_write_stick(unsigned long val
)
340 unsigned long low
= (val
& 0xffffffffUL
);
341 unsigned long high
= (val
>> 32UL);
342 unsigned long addr
= HBIRD_STICK_ADDR
;
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"
350 : "0" (addr
), "r" (low
), "r" (high
),
351 "i" (ASI_PHYS_BYPASS_EC_E
));
354 static void __hbird_write_compare(unsigned long val
)
356 unsigned long low
= (val
& 0xffffffffUL
);
357 unsigned long high
= (val
>> 32UL);
358 unsigned long addr
= HBIRD_STICKCMP_ADDR
+ 0x8UL
;
360 __asm__
__volatile__("stxa %3, [%0] %4\n\t"
361 "sub %0, 0x8, %0\n\t"
364 : "0" (addr
), "r" (low
), "r" (high
),
365 "i" (ASI_PHYS_BYPASS_EC_E
));
368 static void hbtick_disable_irq(void)
370 __hbird_write_compare(TICKCMP_IRQ_BIT
);
373 static void hbtick_init_tick(void)
375 tick_disable_protection();
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
382 __hbird_write_stick(__hbird_read_stick());
384 hbtick_disable_irq();
387 static unsigned long long hbtick_get_tick(void)
389 return __hbird_read_stick() & ~TICK_PRIV_BIT
;
392 static unsigned long hbtick_add_tick(unsigned long adj
)
396 val
= __hbird_read_stick() + adj
;
397 __hbird_write_stick(val
);
402 static int hbtick_add_compare(unsigned long adj
)
404 unsigned long val
= __hbird_read_stick();
407 val
&= ~TICKCMP_IRQ_BIT
;
409 __hbird_write_compare(val
);
411 val2
= __hbird_read_stick() & ~TICKCMP_IRQ_BIT
;
413 return ((long)(val2
- val
)) > 0L;
416 static unsigned long hbtick_get_frequency(void)
418 return prom_getintdefault(prom_root_node
, "stick-frequency", 0);
421 static struct sparc64_tick_ops hbtick_operations __read_mostly
= {
423 .init_tick
= hbtick_init_tick
,
424 .disable_irq
= hbtick_disable_irq
,
425 .get_tick
= hbtick_get_tick
,
426 .add_tick
= hbtick_add_tick
,
427 .add_compare
= hbtick_add_compare
,
428 .get_frequency
= hbtick_get_frequency
,
429 .softint_mask
= 1UL << 0,
432 unsigned long cmos_regs
;
433 EXPORT_SYMBOL(cmos_regs
);
435 static struct resource rtc_cmos_resource
;
437 static struct platform_device rtc_cmos_device
= {
440 .resource
= &rtc_cmos_resource
,
444 static int rtc_probe(struct platform_device
*op
)
448 printk(KERN_INFO
"%pOF: RTC regs at 0x%llx\n",
449 op
->dev
.of_node
, op
->resource
[0].start
);
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.
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
;
463 cmos_regs
= op
->resource
[0].start
;
464 return platform_device_register(&rtc_cmos_device
);
467 static const struct of_device_id rtc_match
[] = {
470 .compatible
= "m5819",
474 .compatible
= "isa-m5819p",
478 .compatible
= "isa-m5823p",
482 .compatible
= "ds1287",
487 static struct platform_driver rtc_driver
= {
491 .of_match_table
= rtc_match
,
495 static struct platform_device rtc_bq4802_device
= {
496 .name
= "rtc-bq4802",
501 static int bq4802_probe(struct platform_device
*op
)
504 printk(KERN_INFO
"%pOF: BQ4802 regs at 0x%llx\n",
505 op
->dev
.of_node
, op
->resource
[0].start
);
507 rtc_bq4802_device
.resource
= &op
->resource
[0];
508 return platform_device_register(&rtc_bq4802_device
);
511 static const struct of_device_id bq4802_match
[] = {
514 .compatible
= "bq4802",
519 static struct platform_driver bq4802_driver
= {
520 .probe
= bq4802_probe
,
523 .of_match_table
= bq4802_match
,
527 static unsigned char mostek_read_byte(struct device
*dev
, u32 ofs
)
529 struct platform_device
*pdev
= to_platform_device(dev
);
530 void __iomem
*regs
= (void __iomem
*) pdev
->resource
[0].start
;
532 return readb(regs
+ ofs
);
535 static void mostek_write_byte(struct device
*dev
, u32 ofs
, u8 val
)
537 struct platform_device
*pdev
= to_platform_device(dev
);
538 void __iomem
*regs
= (void __iomem
*) pdev
->resource
[0].start
;
540 writeb(val
, regs
+ ofs
);
543 static struct m48t59_plat_data m48t59_data
= {
544 .read_byte
= mostek_read_byte
,
545 .write_byte
= mostek_write_byte
,
548 static struct platform_device m48t59_rtc
= {
549 .name
= "rtc-m48t59",
553 .platform_data
= &m48t59_data
,
557 static int mostek_probe(struct platform_device
*op
)
559 struct device_node
*dp
= op
->dev
.of_node
;
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.
564 if (of_node_name_eq(dp
->parent
, "fhc") &&
565 !of_node_name_eq(dp
->parent
->parent
, "central"))
568 printk(KERN_INFO
"%pOF: Mostek regs at 0x%llx\n",
569 dp
, op
->resource
[0].start
);
571 m48t59_rtc
.resource
= &op
->resource
[0];
572 return platform_device_register(&m48t59_rtc
);
575 static const struct of_device_id mostek_match
[] = {
582 static struct platform_driver mostek_driver
= {
583 .probe
= mostek_probe
,
586 .of_match_table
= mostek_match
,
590 static struct platform_device rtc_sun4v_device
= {
595 static struct platform_device rtc_starfire_device
= {
596 .name
= "rtc-starfire",
600 static int __init
clock_init(void)
602 if (this_is_starfire
)
603 return platform_device_register(&rtc_starfire_device
);
605 if (tlb_type
== hypervisor
)
606 return platform_device_register(&rtc_sun4v_device
);
608 (void) platform_driver_register(&rtc_driver
);
609 (void) platform_driver_register(&mostek_driver
);
610 (void) platform_driver_register(&bq4802_driver
);
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.
619 fs_initcall(clock_init
);
621 /* Return true if this is Hummingbird, aka Ultra-IIe */
622 static bool is_hummingbird(void)
624 unsigned long ver
, manuf
, impl
;
626 __asm__
__volatile__ ("rdpr %%ver, %0"
628 manuf
= ((ver
>> 48) & 0xffff);
629 impl
= ((ver
>> 32) & 0xffff);
631 return (manuf
== 0x17 && impl
== 0x13);
635 unsigned long clock_tick_ref
;
636 unsigned int ref_freq
;
638 static DEFINE_PER_CPU(struct freq_table
, sparc64_freq_table
) = { 0, 0 };
640 unsigned long sparc64_get_clock_tick(unsigned int cpu
)
642 struct freq_table
*ft
= &per_cpu(sparc64_freq_table
, cpu
);
644 if (ft
->clock_tick_ref
)
645 return ft
->clock_tick_ref
;
646 return cpu_data(cpu
).clock_tick
;
648 EXPORT_SYMBOL(sparc64_get_clock_tick
);
650 #ifdef CONFIG_CPU_FREQ
652 static int sparc64_cpufreq_notifier(struct notifier_block
*nb
, unsigned long val
,
655 struct cpufreq_freqs
*freq
= data
;
657 struct freq_table
*ft
;
659 for_each_cpu(cpu
, freq
->policy
->cpus
) {
660 ft
= &per_cpu(sparc64_freq_table
, cpu
);
663 ft
->ref_freq
= freq
->old
;
664 ft
->clock_tick_ref
= cpu_data(cpu
).clock_tick
;
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
,
678 static struct notifier_block sparc64_cpufreq_notifier_block
= {
679 .notifier_call
= sparc64_cpufreq_notifier
682 static int __init
register_sparc64_cpufreq_notifier(void)
685 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block
,
686 CPUFREQ_TRANSITION_NOTIFIER
);
690 core_initcall(register_sparc64_cpufreq_notifier
);
692 #endif /* CONFIG_CPU_FREQ */
694 static int sparc64_next_event(unsigned long delta
,
695 struct clock_event_device
*evt
)
697 return tick_operations
.add_compare(delta
) ? -ETIME
: 0;
700 static int sparc64_timer_shutdown(struct clock_event_device
*evt
)
702 tick_operations
.disable_irq();
706 static struct clock_event_device sparc64_clockevent
= {
707 .features
= CLOCK_EVT_FEAT_ONESHOT
,
708 .set_state_shutdown
= sparc64_timer_shutdown
,
709 .set_next_event
= sparc64_next_event
,
714 static DEFINE_PER_CPU(struct clock_event_device
, sparc64_events
);
716 void __irq_entry
timer_interrupt(int irq
, struct pt_regs
*regs
)
718 struct pt_regs
*old_regs
= set_irq_regs(regs
);
719 unsigned long tick_mask
= tick_operations
.softint_mask
;
720 int cpu
= smp_processor_id();
721 struct clock_event_device
*evt
= &per_cpu(sparc64_events
, cpu
);
723 clear_softint(tick_mask
);
727 local_cpu_data().irq0_irqs
++;
728 kstat_incr_irq_this_cpu(0);
730 if (unlikely(!evt
->event_handler
)) {
732 "Spurious SPARC64 timer interrupt on cpu %d\n", cpu
);
734 evt
->event_handler(evt
);
738 set_irq_regs(old_regs
);
741 void setup_sparc64_timer(void)
743 struct clock_event_device
*sevt
;
744 unsigned long pstate
;
746 /* Guarantee that the following sequences execute
749 __asm__
__volatile__("rdpr %%pstate, %0\n\t"
750 "wrpr %0, %1, %%pstate"
754 tick_operations
.init_tick();
756 /* Restore PSTATE_IE. */
757 __asm__
__volatile__("wrpr %0, 0x0, %%pstate"
761 sevt
= this_cpu_ptr(&sparc64_events
);
763 memcpy(sevt
, &sparc64_clockevent
, sizeof(*sevt
));
764 sevt
->cpumask
= cpumask_of(smp_processor_id());
766 clockevents_register_device(sevt
);
769 #define SPARC64_NSEC_PER_CYC_SHIFT 10UL
771 static struct clocksource clocksource_tick
= {
773 .mask
= CLOCKSOURCE_MASK(64),
774 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
777 static unsigned long tb_ticks_per_usec __read_mostly
;
779 void __delay(unsigned long loops
)
781 unsigned long bclock
= get_tick();
783 while ((get_tick() - bclock
) < loops
)
786 EXPORT_SYMBOL(__delay
);
788 void udelay(unsigned long usecs
)
790 __delay(tb_ticks_per_usec
* usecs
);
792 EXPORT_SYMBOL(udelay
);
794 static u64
clocksource_tick_read(struct clocksource
*cs
)
799 static void __init
get_tick_patch(void)
801 unsigned int *addr
, *instr
, i
;
802 struct get_tick_patch
*p
;
804 if (tlb_type
== spitfire
&& is_hummingbird())
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
++) {
812 /* ensure that address is modified before flush */
819 static void __init
init_tick_ops(struct sparc64_tick_ops
*ops
)
821 unsigned long freq
, quotient
, tick
;
823 freq
= ops
->get_frequency();
824 quotient
= clocksource_hz2mult(freq
, SPARC64_NSEC_PER_CYC_SHIFT
);
825 tick
= ops
->get_tick();
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
;
834 void __init
time_init_early(void)
836 if (tlb_type
== spitfire
) {
837 if (is_hummingbird()) {
838 init_tick_ops(&hbtick_operations
);
839 clocksource_tick
.archdata
.vclock_mode
= VCLOCK_NONE
;
841 init_tick_ops(&tick_operations
);
842 clocksource_tick
.archdata
.vclock_mode
= VCLOCK_TICK
;
845 init_tick_ops(&stick_operations
);
846 clocksource_tick
.archdata
.vclock_mode
= VCLOCK_STICK
;
850 void __init
time_init(void)
854 freq
= tick_operations
.frequency
;
855 tb_ticks_per_usec
= freq
/ USEC_PER_SEC
;
857 clocksource_tick
.name
= tick_operations
.name
;
858 clocksource_tick
.read
= clocksource_tick_read
;
860 clocksource_register_hz(&clocksource_tick
, freq
);
861 printk("clocksource: mult[%x] shift[%d]\n",
862 clocksource_tick
.mult
, clocksource_tick
.shift
);
864 sparc64_clockevent
.name
= tick_operations
.name
;
865 clockevents_calc_mult_shift(&sparc64_clockevent
, freq
, 4);
867 sparc64_clockevent
.max_delta_ns
=
868 clockevent_delta2ns(0x7fffffffffffffffUL
, &sparc64_clockevent
);
869 sparc64_clockevent
.max_delta_ticks
= 0x7fffffffffffffffUL
;
870 sparc64_clockevent
.min_delta_ns
=
871 clockevent_delta2ns(0xF, &sparc64_clockevent
);
872 sparc64_clockevent
.min_delta_ticks
= 0xF;
874 printk("clockevent: mult[%x] shift[%d]\n",
875 sparc64_clockevent
.mult
, sparc64_clockevent
.shift
);
877 setup_sparc64_timer();
880 unsigned long long sched_clock(void)
882 unsigned long quotient
= tick_operations
.ticks_per_nsec_quotient
;
883 unsigned long offset
= tick_operations
.offset
;
885 /* 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.
892 return ((get_tick() * quotient
) >> SPARC64_NSEC_PER_CYC_SHIFT
) - offset
;
895 int read_current_timer(unsigned long *timer_val
)
897 *timer_val
= get_tick();