1 /* time.c: UltraSparc timer and TOD clock support.
3 * Copyright (C) 1997, 2008 David S. Miller (davem@davemloft.net)
4 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
6 * Based largely on code which is:
8 * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
11 #include <linux/errno.h>
12 #include <linux/export.h>
13 #include <linux/sched.h>
14 #include <linux/kernel.h>
15 #include <linux/param.h>
16 #include <linux/string.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>
30 #include <linux/miscdevice.h>
31 #include <linux/rtc.h>
32 #include <linux/rtc/m48t59.h>
33 #include <linux/kernel_stat.h>
34 #include <linux/clockchips.h>
35 #include <linux/clocksource.h>
36 #include <linux/of_device.h>
37 #include <linux/platform_device.h>
38 #include <linux/ftrace.h>
40 #include <asm/oplib.h>
41 #include <asm/timer.h>
45 #include <asm/starfire.h>
47 #include <asm/sections.h>
48 #include <asm/cpudata.h>
49 #include <asm/uaccess.h>
50 #include <asm/irq_regs.h>
54 DEFINE_SPINLOCK(rtc_lock
);
56 #define TICK_PRIV_BIT (1UL << 63)
57 #define TICKCMP_IRQ_BIT (1UL << 63)
60 unsigned long profile_pc(struct pt_regs
*regs
)
62 unsigned long pc
= instruction_pointer(regs
);
64 if (in_lock_functions(pc
))
65 return regs
->u_regs
[UREG_RETPC
];
68 EXPORT_SYMBOL(profile_pc
);
71 static void tick_disable_protection(void)
73 /* Set things up so user can access tick register for profiling
74 * purposes. Also workaround BB_ERRATA_1 by doing a dummy
75 * read back of %tick after writing it.
81 "1: rd %%tick, %%g2\n"
82 " add %%g2, 6, %%g2\n"
83 " andn %%g2, %0, %%g2\n"
84 " wrpr %%g2, 0, %%tick\n"
91 static void tick_disable_irq(void)
97 "1: wr %0, 0x0, %%tick_cmpr\n"
98 " rd %%tick_cmpr, %%g0"
100 : "r" (TICKCMP_IRQ_BIT
));
103 static void tick_init_tick(void)
105 tick_disable_protection();
109 static unsigned long long tick_get_tick(void)
113 __asm__
__volatile__("rd %%tick, %0\n\t"
117 return ret
& ~TICK_PRIV_BIT
;
120 static int tick_add_compare(unsigned long adj
)
122 unsigned long orig_tick
, new_tick
, new_compare
;
124 __asm__
__volatile__("rd %%tick, %0"
127 orig_tick
&= ~TICKCMP_IRQ_BIT
;
129 /* Workaround for Spitfire Errata (#54 I think??), I discovered
130 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch
133 * On Blackbird writes to %tick_cmpr can fail, the
134 * workaround seems to be to execute the wr instruction
135 * at the start of an I-cache line, and perform a dummy
136 * read back from %tick_cmpr right after writing to it. -DaveM
138 __asm__
__volatile__("ba,pt %%xcc, 1f\n\t"
139 " add %1, %2, %0\n\t"
142 "wr %0, 0, %%tick_cmpr\n\t"
143 "rd %%tick_cmpr, %%g0\n\t"
145 : "r" (orig_tick
), "r" (adj
));
147 __asm__
__volatile__("rd %%tick, %0"
149 new_tick
&= ~TICKCMP_IRQ_BIT
;
151 return ((long)(new_tick
- (orig_tick
+adj
))) > 0L;
154 static unsigned long tick_add_tick(unsigned long adj
)
156 unsigned long new_tick
;
158 /* Also need to handle Blackbird bug here too. */
159 __asm__
__volatile__("rd %%tick, %0\n\t"
161 "wrpr %0, 0, %%tick\n\t"
168 static struct sparc64_tick_ops tick_operations __read_mostly
= {
170 .init_tick
= tick_init_tick
,
171 .disable_irq
= tick_disable_irq
,
172 .get_tick
= tick_get_tick
,
173 .add_tick
= tick_add_tick
,
174 .add_compare
= tick_add_compare
,
175 .softint_mask
= 1UL << 0,
178 struct sparc64_tick_ops
*tick_ops __read_mostly
= &tick_operations
;
179 EXPORT_SYMBOL(tick_ops
);
181 static void stick_disable_irq(void)
183 __asm__
__volatile__(
184 "wr %0, 0x0, %%asr25"
186 : "r" (TICKCMP_IRQ_BIT
));
189 static void stick_init_tick(void)
191 /* Writes to the %tick and %stick register are not
192 * allowed on sun4v. The Hypervisor controls that
195 if (tlb_type
!= hypervisor
) {
196 tick_disable_protection();
199 /* Let the user get at STICK too. */
200 __asm__
__volatile__(
201 " rd %%asr24, %%g2\n"
202 " andn %%g2, %0, %%g2\n"
203 " wr %%g2, 0, %%asr24"
205 : "r" (TICK_PRIV_BIT
)
212 static unsigned long long stick_get_tick(void)
216 __asm__
__volatile__("rd %%asr24, %0"
219 return ret
& ~TICK_PRIV_BIT
;
222 static unsigned long stick_add_tick(unsigned long adj
)
224 unsigned long new_tick
;
226 __asm__
__volatile__("rd %%asr24, %0\n\t"
228 "wr %0, 0, %%asr24\n\t"
235 static int stick_add_compare(unsigned long adj
)
237 unsigned long orig_tick
, new_tick
;
239 __asm__
__volatile__("rd %%asr24, %0"
241 orig_tick
&= ~TICKCMP_IRQ_BIT
;
243 __asm__
__volatile__("wr %0, 0, %%asr25"
245 : "r" (orig_tick
+ adj
));
247 __asm__
__volatile__("rd %%asr24, %0"
249 new_tick
&= ~TICKCMP_IRQ_BIT
;
251 return ((long)(new_tick
- (orig_tick
+adj
))) > 0L;
254 static struct sparc64_tick_ops stick_operations __read_mostly
= {
256 .init_tick
= stick_init_tick
,
257 .disable_irq
= stick_disable_irq
,
258 .get_tick
= stick_get_tick
,
259 .add_tick
= stick_add_tick
,
260 .add_compare
= stick_add_compare
,
261 .softint_mask
= 1UL << 16,
264 /* On Hummingbird the STICK/STICK_CMPR register is implemented
265 * in I/O space. There are two 64-bit registers each, the
266 * first holds the low 32-bits of the value and the second holds
269 * Since STICK is constantly updating, we have to access it carefully.
271 * The sequence we use to read is:
274 * 3) read high again, if it rolled re-read both low and high again.
276 * Writing STICK safely is also tricky:
277 * 1) write low to zero
281 #define HBIRD_STICKCMP_ADDR 0x1fe0000f060UL
282 #define HBIRD_STICK_ADDR 0x1fe0000f070UL
284 static unsigned long __hbird_read_stick(void)
286 unsigned long ret
, tmp1
, tmp2
, tmp3
;
287 unsigned long addr
= HBIRD_STICK_ADDR
+8;
289 __asm__
__volatile__("ldxa [%1] %5, %2\n"
291 "sub %1, 0x8, %1\n\t"
292 "ldxa [%1] %5, %3\n\t"
293 "add %1, 0x8, %1\n\t"
294 "ldxa [%1] %5, %4\n\t"
296 "bne,a,pn %%xcc, 1b\n\t"
298 "sllx %4, 32, %4\n\t"
300 : "=&r" (ret
), "=&r" (addr
),
301 "=&r" (tmp1
), "=&r" (tmp2
), "=&r" (tmp3
)
302 : "i" (ASI_PHYS_BYPASS_EC_E
), "1" (addr
));
307 static void __hbird_write_stick(unsigned long val
)
309 unsigned long low
= (val
& 0xffffffffUL
);
310 unsigned long high
= (val
>> 32UL);
311 unsigned long addr
= HBIRD_STICK_ADDR
;
313 __asm__
__volatile__("stxa %%g0, [%0] %4\n\t"
314 "add %0, 0x8, %0\n\t"
315 "stxa %3, [%0] %4\n\t"
316 "sub %0, 0x8, %0\n\t"
319 : "0" (addr
), "r" (low
), "r" (high
),
320 "i" (ASI_PHYS_BYPASS_EC_E
));
323 static void __hbird_write_compare(unsigned long val
)
325 unsigned long low
= (val
& 0xffffffffUL
);
326 unsigned long high
= (val
>> 32UL);
327 unsigned long addr
= HBIRD_STICKCMP_ADDR
+ 0x8UL
;
329 __asm__
__volatile__("stxa %3, [%0] %4\n\t"
330 "sub %0, 0x8, %0\n\t"
333 : "0" (addr
), "r" (low
), "r" (high
),
334 "i" (ASI_PHYS_BYPASS_EC_E
));
337 static void hbtick_disable_irq(void)
339 __hbird_write_compare(TICKCMP_IRQ_BIT
);
342 static void hbtick_init_tick(void)
344 tick_disable_protection();
346 /* XXX This seems to be necessary to 'jumpstart' Hummingbird
347 * XXX into actually sending STICK interrupts. I think because
348 * XXX of how we store %tick_cmpr in head.S this somehow resets the
349 * XXX {TICK + STICK} interrupt mux. -DaveM
351 __hbird_write_stick(__hbird_read_stick());
353 hbtick_disable_irq();
356 static unsigned long long hbtick_get_tick(void)
358 return __hbird_read_stick() & ~TICK_PRIV_BIT
;
361 static unsigned long hbtick_add_tick(unsigned long adj
)
365 val
= __hbird_read_stick() + adj
;
366 __hbird_write_stick(val
);
371 static int hbtick_add_compare(unsigned long adj
)
373 unsigned long val
= __hbird_read_stick();
376 val
&= ~TICKCMP_IRQ_BIT
;
378 __hbird_write_compare(val
);
380 val2
= __hbird_read_stick() & ~TICKCMP_IRQ_BIT
;
382 return ((long)(val2
- val
)) > 0L;
385 static struct sparc64_tick_ops hbtick_operations __read_mostly
= {
387 .init_tick
= hbtick_init_tick
,
388 .disable_irq
= hbtick_disable_irq
,
389 .get_tick
= hbtick_get_tick
,
390 .add_tick
= hbtick_add_tick
,
391 .add_compare
= hbtick_add_compare
,
392 .softint_mask
= 1UL << 0,
395 static unsigned long timer_ticks_per_nsec_quotient __read_mostly
;
397 int update_persistent_clock(struct timespec now
)
399 struct rtc_device
*rtc
= rtc_class_open("rtc0");
403 err
= rtc_set_mmss(rtc
, now
.tv_sec
);
404 rtc_class_close(rtc
);
410 unsigned long cmos_regs
;
411 EXPORT_SYMBOL(cmos_regs
);
413 static struct resource rtc_cmos_resource
;
415 static struct platform_device rtc_cmos_device
= {
418 .resource
= &rtc_cmos_resource
,
422 static int rtc_probe(struct platform_device
*op
)
426 printk(KERN_INFO
"%s: RTC regs at 0x%llx\n",
427 op
->dev
.of_node
->full_name
, op
->resource
[0].start
);
429 /* The CMOS RTC driver only accepts IORESOURCE_IO, so cons
430 * up a fake resource so that the probe works for all cases.
431 * When the RTC is behind an ISA bus it will have IORESOURCE_IO
432 * already, whereas when it's behind EBUS is will be IORESOURCE_MEM.
435 r
= &rtc_cmos_resource
;
436 r
->flags
= IORESOURCE_IO
;
437 r
->name
= op
->resource
[0].name
;
438 r
->start
= op
->resource
[0].start
;
439 r
->end
= op
->resource
[0].end
;
441 cmos_regs
= op
->resource
[0].start
;
442 return platform_device_register(&rtc_cmos_device
);
445 static const struct of_device_id rtc_match
[] = {
448 .compatible
= "m5819",
452 .compatible
= "isa-m5819p",
456 .compatible
= "isa-m5823p",
460 .compatible
= "ds1287",
465 static struct platform_driver rtc_driver
= {
469 .owner
= THIS_MODULE
,
470 .of_match_table
= rtc_match
,
474 static struct platform_device rtc_bq4802_device
= {
475 .name
= "rtc-bq4802",
480 static int bq4802_probe(struct platform_device
*op
)
483 printk(KERN_INFO
"%s: BQ4802 regs at 0x%llx\n",
484 op
->dev
.of_node
->full_name
, op
->resource
[0].start
);
486 rtc_bq4802_device
.resource
= &op
->resource
[0];
487 return platform_device_register(&rtc_bq4802_device
);
490 static const struct of_device_id bq4802_match
[] = {
493 .compatible
= "bq4802",
498 static struct platform_driver bq4802_driver
= {
499 .probe
= bq4802_probe
,
502 .owner
= THIS_MODULE
,
503 .of_match_table
= bq4802_match
,
507 static unsigned char mostek_read_byte(struct device
*dev
, u32 ofs
)
509 struct platform_device
*pdev
= to_platform_device(dev
);
510 void __iomem
*regs
= (void __iomem
*) pdev
->resource
[0].start
;
512 return readb(regs
+ ofs
);
515 static void mostek_write_byte(struct device
*dev
, u32 ofs
, u8 val
)
517 struct platform_device
*pdev
= to_platform_device(dev
);
518 void __iomem
*regs
= (void __iomem
*) pdev
->resource
[0].start
;
520 writeb(val
, regs
+ ofs
);
523 static struct m48t59_plat_data m48t59_data
= {
524 .read_byte
= mostek_read_byte
,
525 .write_byte
= mostek_write_byte
,
528 static struct platform_device m48t59_rtc
= {
529 .name
= "rtc-m48t59",
533 .platform_data
= &m48t59_data
,
537 static int mostek_probe(struct platform_device
*op
)
539 struct device_node
*dp
= op
->dev
.of_node
;
541 /* On an Enterprise system there can be multiple mostek clocks.
542 * We should only match the one that is on the central FHC bus.
544 if (!strcmp(dp
->parent
->name
, "fhc") &&
545 strcmp(dp
->parent
->parent
->name
, "central") != 0)
548 printk(KERN_INFO
"%s: Mostek regs at 0x%llx\n",
549 dp
->full_name
, op
->resource
[0].start
);
551 m48t59_rtc
.resource
= &op
->resource
[0];
552 return platform_device_register(&m48t59_rtc
);
555 static const struct of_device_id mostek_match
[] = {
562 static struct platform_driver mostek_driver
= {
563 .probe
= mostek_probe
,
566 .owner
= THIS_MODULE
,
567 .of_match_table
= mostek_match
,
571 static struct platform_device rtc_sun4v_device
= {
576 static struct platform_device rtc_starfire_device
= {
577 .name
= "rtc-starfire",
581 static int __init
clock_init(void)
583 if (this_is_starfire
)
584 return platform_device_register(&rtc_starfire_device
);
586 if (tlb_type
== hypervisor
)
587 return platform_device_register(&rtc_sun4v_device
);
589 (void) platform_driver_register(&rtc_driver
);
590 (void) platform_driver_register(&mostek_driver
);
591 (void) platform_driver_register(&bq4802_driver
);
596 /* Must be after subsys_initcall() so that busses are probed. Must
597 * be before device_initcall() because things like the RTC driver
598 * need to see the clock registers.
600 fs_initcall(clock_init
);
602 /* This is gets the master TICK_INT timer going. */
603 static unsigned long sparc64_init_timers(void)
605 struct device_node
*dp
;
608 dp
= of_find_node_by_path("/");
609 if (tlb_type
== spitfire
) {
610 unsigned long ver
, manuf
, impl
;
612 __asm__
__volatile__ ("rdpr %%ver, %0"
614 manuf
= ((ver
>> 48) & 0xffff);
615 impl
= ((ver
>> 32) & 0xffff);
616 if (manuf
== 0x17 && impl
== 0x13) {
617 /* Hummingbird, aka Ultra-IIe */
618 tick_ops
= &hbtick_operations
;
619 freq
= of_getintprop_default(dp
, "stick-frequency", 0);
621 tick_ops
= &tick_operations
;
622 freq
= local_cpu_data().clock_tick
;
625 tick_ops
= &stick_operations
;
626 freq
= of_getintprop_default(dp
, "stick-frequency", 0);
633 unsigned long clock_tick_ref
;
634 unsigned int ref_freq
;
636 static DEFINE_PER_CPU(struct freq_table
, sparc64_freq_table
) = { 0, 0 };
638 unsigned long sparc64_get_clock_tick(unsigned int cpu
)
640 struct freq_table
*ft
= &per_cpu(sparc64_freq_table
, cpu
);
642 if (ft
->clock_tick_ref
)
643 return ft
->clock_tick_ref
;
644 return cpu_data(cpu
).clock_tick
;
646 EXPORT_SYMBOL(sparc64_get_clock_tick
);
648 #ifdef CONFIG_CPU_FREQ
650 static int sparc64_cpufreq_notifier(struct notifier_block
*nb
, unsigned long val
,
653 struct cpufreq_freqs
*freq
= data
;
654 unsigned int cpu
= freq
->cpu
;
655 struct freq_table
*ft
= &per_cpu(sparc64_freq_table
, cpu
);
658 ft
->ref_freq
= freq
->old
;
659 ft
->clock_tick_ref
= cpu_data(cpu
).clock_tick
;
661 if ((val
== CPUFREQ_PRECHANGE
&& freq
->old
< freq
->new) ||
662 (val
== CPUFREQ_POSTCHANGE
&& freq
->old
> freq
->new) ||
663 (val
== CPUFREQ_RESUMECHANGE
)) {
664 cpu_data(cpu
).clock_tick
=
665 cpufreq_scale(ft
->clock_tick_ref
,
673 static struct notifier_block sparc64_cpufreq_notifier_block
= {
674 .notifier_call
= sparc64_cpufreq_notifier
677 static int __init
register_sparc64_cpufreq_notifier(void)
680 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block
,
681 CPUFREQ_TRANSITION_NOTIFIER
);
685 core_initcall(register_sparc64_cpufreq_notifier
);
687 #endif /* CONFIG_CPU_FREQ */
689 static int sparc64_next_event(unsigned long delta
,
690 struct clock_event_device
*evt
)
692 return tick_ops
->add_compare(delta
) ? -ETIME
: 0;
695 static void sparc64_timer_setup(enum clock_event_mode mode
,
696 struct clock_event_device
*evt
)
699 case CLOCK_EVT_MODE_ONESHOT
:
700 case CLOCK_EVT_MODE_RESUME
:
703 case CLOCK_EVT_MODE_SHUTDOWN
:
704 tick_ops
->disable_irq();
707 case CLOCK_EVT_MODE_PERIODIC
:
708 case CLOCK_EVT_MODE_UNUSED
:
714 static struct clock_event_device sparc64_clockevent
= {
715 .features
= CLOCK_EVT_FEAT_ONESHOT
,
716 .set_mode
= sparc64_timer_setup
,
717 .set_next_event
= sparc64_next_event
,
722 static DEFINE_PER_CPU(struct clock_event_device
, sparc64_events
);
724 void __irq_entry
timer_interrupt(int irq
, struct pt_regs
*regs
)
726 struct pt_regs
*old_regs
= set_irq_regs(regs
);
727 unsigned long tick_mask
= tick_ops
->softint_mask
;
728 int cpu
= smp_processor_id();
729 struct clock_event_device
*evt
= &per_cpu(sparc64_events
, cpu
);
731 clear_softint(tick_mask
);
735 local_cpu_data().irq0_irqs
++;
736 kstat_incr_irqs_this_cpu(0, irq_to_desc(0));
738 if (unlikely(!evt
->event_handler
)) {
740 "Spurious SPARC64 timer interrupt on cpu %d\n", cpu
);
742 evt
->event_handler(evt
);
746 set_irq_regs(old_regs
);
749 void setup_sparc64_timer(void)
751 struct clock_event_device
*sevt
;
752 unsigned long pstate
;
754 /* Guarantee that the following sequences execute
757 __asm__
__volatile__("rdpr %%pstate, %0\n\t"
758 "wrpr %0, %1, %%pstate"
762 tick_ops
->init_tick();
764 /* Restore PSTATE_IE. */
765 __asm__
__volatile__("wrpr %0, 0x0, %%pstate"
769 sevt
= &__get_cpu_var(sparc64_events
);
771 memcpy(sevt
, &sparc64_clockevent
, sizeof(*sevt
));
772 sevt
->cpumask
= cpumask_of(smp_processor_id());
774 clockevents_register_device(sevt
);
777 #define SPARC64_NSEC_PER_CYC_SHIFT 10UL
779 static struct clocksource clocksource_tick
= {
781 .mask
= CLOCKSOURCE_MASK(64),
782 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
785 static unsigned long tb_ticks_per_usec __read_mostly
;
787 void __delay(unsigned long loops
)
789 unsigned long bclock
, now
;
791 bclock
= tick_ops
->get_tick();
793 now
= tick_ops
->get_tick();
794 } while ((now
-bclock
) < loops
);
796 EXPORT_SYMBOL(__delay
);
798 void udelay(unsigned long usecs
)
800 __delay(tb_ticks_per_usec
* usecs
);
802 EXPORT_SYMBOL(udelay
);
804 static cycle_t
clocksource_tick_read(struct clocksource
*cs
)
806 return tick_ops
->get_tick();
809 void __init
time_init(void)
811 unsigned long freq
= sparc64_init_timers();
813 tb_ticks_per_usec
= freq
/ USEC_PER_SEC
;
815 timer_ticks_per_nsec_quotient
=
816 clocksource_hz2mult(freq
, SPARC64_NSEC_PER_CYC_SHIFT
);
818 clocksource_tick
.name
= tick_ops
->name
;
819 clocksource_tick
.read
= clocksource_tick_read
;
821 clocksource_register_hz(&clocksource_tick
, freq
);
822 printk("clocksource: mult[%x] shift[%d]\n",
823 clocksource_tick
.mult
, clocksource_tick
.shift
);
825 sparc64_clockevent
.name
= tick_ops
->name
;
826 clockevents_calc_mult_shift(&sparc64_clockevent
, freq
, 4);
828 sparc64_clockevent
.max_delta_ns
=
829 clockevent_delta2ns(0x7fffffffffffffffUL
, &sparc64_clockevent
);
830 sparc64_clockevent
.min_delta_ns
=
831 clockevent_delta2ns(0xF, &sparc64_clockevent
);
833 printk("clockevent: mult[%x] shift[%d]\n",
834 sparc64_clockevent
.mult
, sparc64_clockevent
.shift
);
836 setup_sparc64_timer();
839 unsigned long long sched_clock(void)
841 unsigned long ticks
= tick_ops
->get_tick();
843 return (ticks
* timer_ticks_per_nsec_quotient
)
844 >> SPARC64_NSEC_PER_CYC_SHIFT
;
847 int read_current_timer(unsigned long *timer_val
)
849 *timer_val
= tick_ops
->get_tick();