1 /* $Id: time.c,v 1.42 2002/01/23 14:33:55 davem Exp $
2 * time.c: UltraSparc timer and TOD clock support.
4 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
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/module.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/profile.h>
32 #include <linux/miscdevice.h>
33 #include <linux/rtc.h>
34 #include <linux/kernel_stat.h>
35 #include <linux/clockchips.h>
36 #include <linux/clocksource.h>
38 #include <asm/oplib.h>
39 #include <asm/mostek.h>
40 #include <asm/timer.h>
44 #include <asm/of_device.h>
45 #include <asm/starfire.h>
47 #include <asm/sections.h>
48 #include <asm/cpudata.h>
49 #include <asm/uaccess.h>
51 #include <asm/irq_regs.h>
53 DEFINE_SPINLOCK(mostek_lock);
54 DEFINE_SPINLOCK(rtc_lock);
55 void __iomem *mstk48t02_regs = NULL;
57 unsigned long ds1287_regs = 0UL;
58 static void __iomem *bq4802_regs;
61 static void __iomem *mstk48t08_regs;
62 static void __iomem *mstk48t59_regs;
64 static int set_rtc_mmss(unsigned long);
66 #define TICK_PRIV_BIT (1UL << 63)
67 #define TICKCMP_IRQ_BIT (1UL << 63)
70 unsigned long profile_pc(struct pt_regs *regs)
72 unsigned long pc = instruction_pointer(regs);
74 if (in_lock_functions(pc))
75 return regs->u_regs[UREG_RETPC];
78 EXPORT_SYMBOL(profile_pc);
81 static void tick_disable_protection(void)
83 /* Set things up so user can access tick register for profiling
84 * purposes. Also workaround BB_ERRATA_1 by doing a dummy
85 * read back of %tick after writing it.
91 "1: rd %%tick, %%g2\n"
92 " add %%g2, 6, %%g2\n"
93 " andn %%g2, %0, %%g2\n"
94 " wrpr %%g2, 0, %%tick\n"
101 static void tick_disable_irq(void)
103 __asm__ __volatile__(
107 "1: wr %0, 0x0, %%tick_cmpr\n"
108 " rd %%tick_cmpr, %%g0"
110 : "r" (TICKCMP_IRQ_BIT));
113 static void tick_init_tick(void)
115 tick_disable_protection();
119 static unsigned long tick_get_tick(void)
123 __asm__ __volatile__("rd %%tick, %0\n\t"
127 return ret & ~TICK_PRIV_BIT;
130 static int tick_add_compare(unsigned long adj)
132 unsigned long orig_tick, new_tick, new_compare;
134 __asm__ __volatile__("rd %%tick, %0"
137 orig_tick &= ~TICKCMP_IRQ_BIT;
139 /* Workaround for Spitfire Errata (#54 I think??), I discovered
140 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch
143 * On Blackbird writes to %tick_cmpr can fail, the
144 * workaround seems to be to execute the wr instruction
145 * at the start of an I-cache line, and perform a dummy
146 * read back from %tick_cmpr right after writing to it. -DaveM
148 __asm__ __volatile__("ba,pt %%xcc, 1f\n\t"
149 " add %1, %2, %0\n\t"
152 "wr %0, 0, %%tick_cmpr\n\t"
153 "rd %%tick_cmpr, %%g0\n\t"
155 : "r" (orig_tick), "r" (adj));
157 __asm__ __volatile__("rd %%tick, %0"
159 new_tick &= ~TICKCMP_IRQ_BIT;
161 return ((long)(new_tick - (orig_tick+adj))) > 0L;
164 static unsigned long tick_add_tick(unsigned long adj)
166 unsigned long new_tick;
168 /* Also need to handle Blackbird bug here too. */
169 __asm__ __volatile__("rd %%tick, %0\n\t"
171 "wrpr %0, 0, %%tick\n\t"
178 static struct sparc64_tick_ops tick_operations __read_mostly = {
180 .init_tick = tick_init_tick,
181 .disable_irq = tick_disable_irq,
182 .get_tick = tick_get_tick,
183 .add_tick = tick_add_tick,
184 .add_compare = tick_add_compare,
185 .softint_mask = 1UL << 0,
188 struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations;
190 static void stick_disable_irq(void)
192 __asm__ __volatile__(
193 "wr %0, 0x0, %%asr25"
195 : "r" (TICKCMP_IRQ_BIT));
198 static void stick_init_tick(void)
200 /* Writes to the %tick and %stick register are not
201 * allowed on sun4v. The Hypervisor controls that
204 if (tlb_type != hypervisor) {
205 tick_disable_protection();
208 /* Let the user get at STICK too. */
209 __asm__ __volatile__(
210 " rd %%asr24, %%g2\n"
211 " andn %%g2, %0, %%g2\n"
212 " wr %%g2, 0, %%asr24"
214 : "r" (TICK_PRIV_BIT)
221 static unsigned long stick_get_tick(void)
225 __asm__ __volatile__("rd %%asr24, %0"
228 return ret & ~TICK_PRIV_BIT;
231 static unsigned long stick_add_tick(unsigned long adj)
233 unsigned long new_tick;
235 __asm__ __volatile__("rd %%asr24, %0\n\t"
237 "wr %0, 0, %%asr24\n\t"
244 static int stick_add_compare(unsigned long adj)
246 unsigned long orig_tick, new_tick;
248 __asm__ __volatile__("rd %%asr24, %0"
250 orig_tick &= ~TICKCMP_IRQ_BIT;
252 __asm__ __volatile__("wr %0, 0, %%asr25"
254 : "r" (orig_tick + adj));
256 __asm__ __volatile__("rd %%asr24, %0"
258 new_tick &= ~TICKCMP_IRQ_BIT;
260 return ((long)(new_tick - (orig_tick+adj))) > 0L;
263 static struct sparc64_tick_ops stick_operations __read_mostly = {
265 .init_tick = stick_init_tick,
266 .disable_irq = stick_disable_irq,
267 .get_tick = stick_get_tick,
268 .add_tick = stick_add_tick,
269 .add_compare = stick_add_compare,
270 .softint_mask = 1UL << 16,
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
278 * Since STICK is constantly updating, we have to access it carefully.
280 * The sequence we use to read is:
283 * 3) read high again, if it rolled re-read both low and high again.
285 * Writing STICK safely is also tricky:
286 * 1) write low to zero
290 #define HBIRD_STICKCMP_ADDR 0x1fe0000f060UL
291 #define HBIRD_STICK_ADDR 0x1fe0000f070UL
293 static unsigned long __hbird_read_stick(void)
295 unsigned long ret, tmp1, tmp2, tmp3;
296 unsigned long addr = HBIRD_STICK_ADDR+8;
298 __asm__ __volatile__("ldxa [%1] %5, %2\n"
300 "sub %1, 0x8, %1\n\t"
301 "ldxa [%1] %5, %3\n\t"
302 "add %1, 0x8, %1\n\t"
303 "ldxa [%1] %5, %4\n\t"
305 "bne,a,pn %%xcc, 1b\n\t"
307 "sllx %4, 32, %4\n\t"
309 : "=&r" (ret), "=&r" (addr),
310 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3)
311 : "i" (ASI_PHYS_BYPASS_EC_E), "1" (addr));
316 static void __hbird_write_stick(unsigned long val)
318 unsigned long low = (val & 0xffffffffUL);
319 unsigned long high = (val >> 32UL);
320 unsigned long addr = HBIRD_STICK_ADDR;
322 __asm__ __volatile__("stxa %%g0, [%0] %4\n\t"
323 "add %0, 0x8, %0\n\t"
324 "stxa %3, [%0] %4\n\t"
325 "sub %0, 0x8, %0\n\t"
328 : "0" (addr), "r" (low), "r" (high),
329 "i" (ASI_PHYS_BYPASS_EC_E));
332 static void __hbird_write_compare(unsigned long val)
334 unsigned long low = (val & 0xffffffffUL);
335 unsigned long high = (val >> 32UL);
336 unsigned long addr = HBIRD_STICKCMP_ADDR + 0x8UL;
338 __asm__ __volatile__("stxa %3, [%0] %4\n\t"
339 "sub %0, 0x8, %0\n\t"
342 : "0" (addr), "r" (low), "r" (high),
343 "i" (ASI_PHYS_BYPASS_EC_E));
346 static void hbtick_disable_irq(void)
348 __hbird_write_compare(TICKCMP_IRQ_BIT);
351 static void hbtick_init_tick(void)
353 tick_disable_protection();
355 /* XXX This seems to be necessary to 'jumpstart' Hummingbird
356 * XXX into actually sending STICK interrupts. I think because
357 * XXX of how we store %tick_cmpr in head.S this somehow resets the
358 * XXX {TICK + STICK} interrupt mux. -DaveM
360 __hbird_write_stick(__hbird_read_stick());
362 hbtick_disable_irq();
365 static unsigned long hbtick_get_tick(void)
367 return __hbird_read_stick() & ~TICK_PRIV_BIT;
370 static unsigned long hbtick_add_tick(unsigned long adj)
374 val = __hbird_read_stick() + adj;
375 __hbird_write_stick(val);
380 static int hbtick_add_compare(unsigned long adj)
382 unsigned long val = __hbird_read_stick();
385 val &= ~TICKCMP_IRQ_BIT;
387 __hbird_write_compare(val);
389 val2 = __hbird_read_stick() & ~TICKCMP_IRQ_BIT;
391 return ((long)(val2 - val)) > 0L;
394 static struct sparc64_tick_ops hbtick_operations __read_mostly = {
396 .init_tick = hbtick_init_tick,
397 .disable_irq = hbtick_disable_irq,
398 .get_tick = hbtick_get_tick,
399 .add_tick = hbtick_add_tick,
400 .add_compare = hbtick_add_compare,
401 .softint_mask = 1UL << 0,
404 static unsigned long timer_ticks_per_nsec_quotient __read_mostly;
406 #define TICK_SIZE (tick_nsec / 1000)
408 #define USEC_AFTER 500000
409 #define USEC_BEFORE 500000
411 static void sync_cmos_clock(unsigned long dummy);
413 static DEFINE_TIMER(sync_cmos_timer, sync_cmos_clock, 0, 0);
415 static void sync_cmos_clock(unsigned long dummy)
417 struct timeval now, next;
421 * If we have an externally synchronized Linux clock, then update
422 * CMOS clock accordingly every ~11 minutes. Set_rtc_mmss() has to be
423 * called as close as possible to 500 ms before the new second starts.
424 * This code is run on a timer. If the clock is set, that timer
425 * may not expire at the correct time. Thus, we adjust...
429 * Not synced, exit, do not restart a timer (if one is
430 * running, let it run out).
434 do_gettimeofday(&now);
435 if (now.tv_usec >= USEC_AFTER - ((unsigned) TICK_SIZE) / 2 &&
436 now.tv_usec <= USEC_BEFORE + ((unsigned) TICK_SIZE) / 2)
437 fail = set_rtc_mmss(now.tv_sec);
439 next.tv_usec = USEC_AFTER - now.tv_usec;
440 if (next.tv_usec <= 0)
441 next.tv_usec += USEC_PER_SEC;
448 if (next.tv_usec >= USEC_PER_SEC) {
450 next.tv_usec -= USEC_PER_SEC;
452 mod_timer(&sync_cmos_timer, jiffies + timeval_to_jiffies(&next));
455 void notify_arch_cmos_timer(void)
457 mod_timer(&sync_cmos_timer, jiffies + 1);
460 /* Kick start a stopped clock (procedure from the Sun NVRAM/hostid FAQ). */
461 static void __init kick_start_clock(void)
463 void __iomem *regs = mstk48t02_regs;
467 prom_printf("CLOCK: Clock was stopped. Kick start ");
469 spin_lock_irq(&mostek_lock);
471 /* Turn on the kick start bit to start the oscillator. */
472 tmp = mostek_read(regs + MOSTEK_CREG);
473 tmp |= MSTK_CREG_WRITE;
474 mostek_write(regs + MOSTEK_CREG, tmp);
475 tmp = mostek_read(regs + MOSTEK_SEC);
477 mostek_write(regs + MOSTEK_SEC, tmp);
478 tmp = mostek_read(regs + MOSTEK_HOUR);
479 tmp |= MSTK_KICK_START;
480 mostek_write(regs + MOSTEK_HOUR, tmp);
481 tmp = mostek_read(regs + MOSTEK_CREG);
482 tmp &= ~MSTK_CREG_WRITE;
483 mostek_write(regs + MOSTEK_CREG, tmp);
485 spin_unlock_irq(&mostek_lock);
487 /* Delay to allow the clock oscillator to start. */
488 sec = MSTK_REG_SEC(regs);
489 for (i = 0; i < 3; i++) {
490 while (sec == MSTK_REG_SEC(regs))
491 for (count = 0; count < 100000; count++)
494 sec = MSTK_REG_SEC(regs);
498 spin_lock_irq(&mostek_lock);
500 /* Turn off kick start and set a "valid" time and date. */
501 tmp = mostek_read(regs + MOSTEK_CREG);
502 tmp |= MSTK_CREG_WRITE;
503 mostek_write(regs + MOSTEK_CREG, tmp);
504 tmp = mostek_read(regs + MOSTEK_HOUR);
505 tmp &= ~MSTK_KICK_START;
506 mostek_write(regs + MOSTEK_HOUR, tmp);
507 MSTK_SET_REG_SEC(regs,0);
508 MSTK_SET_REG_MIN(regs,0);
509 MSTK_SET_REG_HOUR(regs,0);
510 MSTK_SET_REG_DOW(regs,5);
511 MSTK_SET_REG_DOM(regs,1);
512 MSTK_SET_REG_MONTH(regs,8);
513 MSTK_SET_REG_YEAR(regs,1996 - MSTK_YEAR_ZERO);
514 tmp = mostek_read(regs + MOSTEK_CREG);
515 tmp &= ~MSTK_CREG_WRITE;
516 mostek_write(regs + MOSTEK_CREG, tmp);
518 spin_unlock_irq(&mostek_lock);
520 /* Ensure the kick start bit is off. If it isn't, turn it off. */
521 while (mostek_read(regs + MOSTEK_HOUR) & MSTK_KICK_START) {
522 prom_printf("CLOCK: Kick start still on!\n");
524 spin_lock_irq(&mostek_lock);
526 tmp = mostek_read(regs + MOSTEK_CREG);
527 tmp |= MSTK_CREG_WRITE;
528 mostek_write(regs + MOSTEK_CREG, tmp);
530 tmp = mostek_read(regs + MOSTEK_HOUR);
531 tmp &= ~MSTK_KICK_START;
532 mostek_write(regs + MOSTEK_HOUR, tmp);
534 tmp = mostek_read(regs + MOSTEK_CREG);
535 tmp &= ~MSTK_CREG_WRITE;
536 mostek_write(regs + MOSTEK_CREG, tmp);
538 spin_unlock_irq(&mostek_lock);
541 prom_printf("CLOCK: Kick start procedure successful.\n");
544 /* Return nonzero if the clock chip battery is low. */
545 static int __init has_low_battery(void)
547 void __iomem *regs = mstk48t02_regs;
550 spin_lock_irq(&mostek_lock);
552 data1 = mostek_read(regs + MOSTEK_EEPROM); /* Read some data. */
553 mostek_write(regs + MOSTEK_EEPROM, ~data1); /* Write back the complement. */
554 data2 = mostek_read(regs + MOSTEK_EEPROM); /* Read back the complement. */
555 mostek_write(regs + MOSTEK_EEPROM, data1); /* Restore original value. */
557 spin_unlock_irq(&mostek_lock);
559 return (data1 == data2); /* Was the write blocked? */
562 /* Probe for the real time clock chip. */
563 static void __init set_system_time(void)
565 unsigned int year, mon, day, hour, min, sec;
566 void __iomem *mregs = mstk48t02_regs;
568 unsigned long dregs = ds1287_regs;
569 void __iomem *bregs = bq4802_regs;
571 unsigned long dregs = 0UL;
572 void __iomem *bregs = 0UL;
576 if (!mregs && !dregs && !bregs) {
577 prom_printf("Something wrong, clock regs not mapped yet.\n");
582 spin_lock_irq(&mostek_lock);
584 /* Traditional Mostek chip. */
585 tmp = mostek_read(mregs + MOSTEK_CREG);
586 tmp |= MSTK_CREG_READ;
587 mostek_write(mregs + MOSTEK_CREG, tmp);
589 sec = MSTK_REG_SEC(mregs);
590 min = MSTK_REG_MIN(mregs);
591 hour = MSTK_REG_HOUR(mregs);
592 day = MSTK_REG_DOM(mregs);
593 mon = MSTK_REG_MONTH(mregs);
594 year = MSTK_CVT_YEAR( MSTK_REG_YEAR(mregs) );
596 unsigned char val = readb(bregs + 0x0e);
597 unsigned int century;
599 /* BQ4802 RTC chip. */
601 writeb(val | 0x08, bregs + 0x0e);
603 sec = readb(bregs + 0x00);
604 min = readb(bregs + 0x02);
605 hour = readb(bregs + 0x04);
606 day = readb(bregs + 0x06);
607 mon = readb(bregs + 0x09);
608 year = readb(bregs + 0x0a);
609 century = readb(bregs + 0x0f);
611 writeb(val, bregs + 0x0e);
621 year += (century * 100);
623 /* Dallas 12887 RTC chip. */
626 sec = CMOS_READ(RTC_SECONDS);
627 min = CMOS_READ(RTC_MINUTES);
628 hour = CMOS_READ(RTC_HOURS);
629 day = CMOS_READ(RTC_DAY_OF_MONTH);
630 mon = CMOS_READ(RTC_MONTH);
631 year = CMOS_READ(RTC_YEAR);
632 } while (sec != CMOS_READ(RTC_SECONDS));
634 if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
642 if ((year += 1900) < 1970)
646 xtime.tv_sec = mktime(year, mon, day, hour, min, sec);
647 xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
648 set_normalized_timespec(&wall_to_monotonic,
649 -xtime.tv_sec, -xtime.tv_nsec);
652 tmp = mostek_read(mregs + MOSTEK_CREG);
653 tmp &= ~MSTK_CREG_READ;
654 mostek_write(mregs + MOSTEK_CREG, tmp);
656 spin_unlock_irq(&mostek_lock);
660 /* davem suggests we keep this within the 4M locked kernel image */
661 static u32 starfire_get_time(void)
663 static char obp_gettod[32];
666 sprintf(obp_gettod, "h# %08x unix-gettod",
667 (unsigned int) (long) &unix_tod);
668 prom_feval(obp_gettod);
673 static int starfire_set_time(u32 val)
675 /* Do nothing, time is set using the service processor
676 * console on this platform.
681 static u32 hypervisor_get_time(void)
683 unsigned long ret, time;
687 ret = sun4v_tod_get(&time);
690 if (ret == HV_EWOULDBLOCK) {
695 printk(KERN_WARNING "SUN4V: tod_get() timed out.\n");
698 printk(KERN_WARNING "SUN4V: tod_get() not supported.\n");
702 static int hypervisor_set_time(u32 secs)
708 ret = sun4v_tod_set(secs);
711 if (ret == HV_EWOULDBLOCK) {
716 printk(KERN_WARNING "SUN4V: tod_set() timed out.\n");
719 printk(KERN_WARNING "SUN4V: tod_set() not supported.\n");
723 static int __init clock_model_matches(const char *model)
725 if (strcmp(model, "mk48t02") &&
726 strcmp(model, "mk48t08") &&
727 strcmp(model, "mk48t59") &&
728 strcmp(model, "m5819") &&
729 strcmp(model, "m5819p") &&
730 strcmp(model, "m5823") &&
731 strcmp(model, "ds1287") &&
732 strcmp(model, "bq4802"))
738 static int __devinit clock_probe(struct of_device *op, const struct of_device_id *match)
740 struct device_node *dp = op->node;
741 const char *model = of_get_property(dp, "model", NULL);
742 const char *compat = of_get_property(dp, "compatible", NULL);
743 unsigned long size, flags;
749 if (!model || !clock_model_matches(model))
752 /* On an Enterprise system there can be multiple mostek clocks.
753 * We should only match the one that is on the central FHC bus.
755 if (!strcmp(dp->parent->name, "fhc") &&
756 strcmp(dp->parent->parent->name, "central") != 0)
759 size = (op->resource[0].end - op->resource[0].start) + 1;
760 regs = of_ioremap(&op->resource[0], 0, size, "clock");
765 if (!strcmp(model, "ds1287") ||
766 !strcmp(model, "m5819") ||
767 !strcmp(model, "m5819p") ||
768 !strcmp(model, "m5823")) {
769 ds1287_regs = (unsigned long) regs;
770 } else if (!strcmp(model, "bq4802")) {
774 if (model[5] == '0' && model[6] == '2') {
775 mstk48t02_regs = regs;
776 } else if(model[5] == '0' && model[6] == '8') {
777 mstk48t08_regs = regs;
778 mstk48t02_regs = mstk48t08_regs + MOSTEK_48T08_48T02;
780 mstk48t59_regs = regs;
781 mstk48t02_regs = mstk48t59_regs + MOSTEK_48T59_48T02;
784 printk(KERN_INFO "%s: Clock regs at %p\n", dp->full_name, regs);
786 local_irq_save(flags);
788 if (mstk48t02_regs != NULL) {
789 /* Report a low battery voltage condition. */
790 if (has_low_battery())
791 prom_printf("NVRAM: Low battery voltage!\n");
793 /* Kick start the clock if it is completely stopped. */
794 if (mostek_read(mstk48t02_regs + MOSTEK_SEC) & MSTK_STOP)
800 local_irq_restore(flags);
805 static struct of_device_id clock_match[] = {
815 static struct of_platform_driver clock_driver = {
817 .match_table = clock_match,
818 .probe = clock_probe,
821 static int __init clock_init(void)
823 if (this_is_starfire) {
824 xtime.tv_sec = starfire_get_time();
825 xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
826 set_normalized_timespec(&wall_to_monotonic,
827 -xtime.tv_sec, -xtime.tv_nsec);
830 if (tlb_type == hypervisor) {
831 xtime.tv_sec = hypervisor_get_time();
832 xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
833 set_normalized_timespec(&wall_to_monotonic,
834 -xtime.tv_sec, -xtime.tv_nsec);
838 return of_register_driver(&clock_driver, &of_platform_bus_type);
841 /* Must be after subsys_initcall() so that busses are probed. Must
842 * be before device_initcall() because things like the RTC driver
843 * need to see the clock registers.
845 fs_initcall(clock_init);
847 /* This is gets the master TICK_INT timer going. */
848 static unsigned long sparc64_init_timers(void)
850 struct device_node *dp;
853 dp = of_find_node_by_path("/");
854 if (tlb_type == spitfire) {
855 unsigned long ver, manuf, impl;
857 __asm__ __volatile__ ("rdpr %%ver, %0"
859 manuf = ((ver >> 48) & 0xffff);
860 impl = ((ver >> 32) & 0xffff);
861 if (manuf == 0x17 && impl == 0x13) {
862 /* Hummingbird, aka Ultra-IIe */
863 tick_ops = &hbtick_operations;
864 clock = of_getintprop_default(dp, "stick-frequency", 0);
866 tick_ops = &tick_operations;
867 clock = local_cpu_data().clock_tick;
870 tick_ops = &stick_operations;
871 clock = of_getintprop_default(dp, "stick-frequency", 0);
878 unsigned long clock_tick_ref;
879 unsigned int ref_freq;
881 static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 };
883 unsigned long sparc64_get_clock_tick(unsigned int cpu)
885 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
887 if (ft->clock_tick_ref)
888 return ft->clock_tick_ref;
889 return cpu_data(cpu).clock_tick;
892 #ifdef CONFIG_CPU_FREQ
894 static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
897 struct cpufreq_freqs *freq = data;
898 unsigned int cpu = freq->cpu;
899 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
902 ft->ref_freq = freq->old;
903 ft->clock_tick_ref = cpu_data(cpu).clock_tick;
905 if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
906 (val == CPUFREQ_POSTCHANGE && freq->old > freq->new) ||
907 (val == CPUFREQ_RESUMECHANGE)) {
908 cpu_data(cpu).clock_tick =
909 cpufreq_scale(ft->clock_tick_ref,
917 static struct notifier_block sparc64_cpufreq_notifier_block = {
918 .notifier_call = sparc64_cpufreq_notifier
921 #endif /* CONFIG_CPU_FREQ */
923 static int sparc64_next_event(unsigned long delta,
924 struct clock_event_device *evt)
926 return tick_ops->add_compare(delta) ? -ETIME : 0;
929 static void sparc64_timer_setup(enum clock_event_mode mode,
930 struct clock_event_device *evt)
933 case CLOCK_EVT_MODE_ONESHOT:
936 case CLOCK_EVT_MODE_SHUTDOWN:
937 tick_ops->disable_irq();
940 case CLOCK_EVT_MODE_PERIODIC:
941 case CLOCK_EVT_MODE_UNUSED:
947 static struct clock_event_device sparc64_clockevent = {
948 .features = CLOCK_EVT_FEAT_ONESHOT,
949 .set_mode = sparc64_timer_setup,
950 .set_next_event = sparc64_next_event,
955 static DEFINE_PER_CPU(struct clock_event_device, sparc64_events);
957 void timer_interrupt(int irq, struct pt_regs *regs)
959 struct pt_regs *old_regs = set_irq_regs(regs);
960 unsigned long tick_mask = tick_ops->softint_mask;
961 int cpu = smp_processor_id();
962 struct clock_event_device *evt = &per_cpu(sparc64_events, cpu);
964 clear_softint(tick_mask);
968 kstat_this_cpu.irqs[0]++;
970 if (unlikely(!evt->event_handler)) {
972 "Spurious SPARC64 timer interrupt on cpu %d\n", cpu);
974 evt->event_handler(evt);
978 set_irq_regs(old_regs);
981 void __devinit setup_sparc64_timer(void)
983 struct clock_event_device *sevt;
984 unsigned long pstate;
986 /* Guarantee that the following sequences execute
989 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
990 "wrpr %0, %1, %%pstate"
994 tick_ops->init_tick();
996 /* Restore PSTATE_IE. */
997 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
1001 sevt = &__get_cpu_var(sparc64_events);
1003 memcpy(sevt, &sparc64_clockevent, sizeof(*sevt));
1004 sevt->cpumask = cpumask_of_cpu(smp_processor_id());
1006 clockevents_register_device(sevt);
1009 #define SPARC64_NSEC_PER_CYC_SHIFT 10UL
1011 static struct clocksource clocksource_tick = {
1013 .mask = CLOCKSOURCE_MASK(64),
1015 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
1018 static void __init setup_clockevent_multiplier(unsigned long hz)
1020 unsigned long mult, shift = 32;
1023 mult = div_sc(hz, NSEC_PER_SEC, shift);
1024 if (mult && (mult >> 32UL) == 0UL)
1030 sparc64_clockevent.shift = shift;
1031 sparc64_clockevent.mult = mult;
1034 static unsigned long tb_ticks_per_usec __read_mostly;
1036 void __delay(unsigned long loops)
1038 unsigned long bclock, now;
1040 bclock = tick_ops->get_tick();
1042 now = tick_ops->get_tick();
1043 } while ((now-bclock) < loops);
1045 EXPORT_SYMBOL(__delay);
1047 void udelay(unsigned long usecs)
1049 __delay(tb_ticks_per_usec * usecs);
1051 EXPORT_SYMBOL(udelay);
1053 void __init time_init(void)
1055 unsigned long clock = sparc64_init_timers();
1057 tb_ticks_per_usec = clock / USEC_PER_SEC;
1059 timer_ticks_per_nsec_quotient =
1060 clocksource_hz2mult(clock, SPARC64_NSEC_PER_CYC_SHIFT);
1062 clocksource_tick.name = tick_ops->name;
1063 clocksource_tick.mult =
1064 clocksource_hz2mult(clock,
1065 clocksource_tick.shift);
1066 clocksource_tick.read = tick_ops->get_tick;
1068 printk("clocksource: mult[%x] shift[%d]\n",
1069 clocksource_tick.mult, clocksource_tick.shift);
1071 clocksource_register(&clocksource_tick);
1073 sparc64_clockevent.name = tick_ops->name;
1075 setup_clockevent_multiplier(clock);
1077 sparc64_clockevent.max_delta_ns =
1078 clockevent_delta2ns(0x7fffffffffffffff, &sparc64_clockevent);
1079 sparc64_clockevent.min_delta_ns =
1080 clockevent_delta2ns(0xF, &sparc64_clockevent);
1082 printk("clockevent: mult[%lx] shift[%d]\n",
1083 sparc64_clockevent.mult, sparc64_clockevent.shift);
1085 setup_sparc64_timer();
1087 #ifdef CONFIG_CPU_FREQ
1088 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block,
1089 CPUFREQ_TRANSITION_NOTIFIER);
1093 unsigned long long sched_clock(void)
1095 unsigned long ticks = tick_ops->get_tick();
1097 return (ticks * timer_ticks_per_nsec_quotient)
1098 >> SPARC64_NSEC_PER_CYC_SHIFT;
1101 static int set_rtc_mmss(unsigned long nowtime)
1103 int real_seconds, real_minutes, chip_minutes;
1104 void __iomem *mregs = mstk48t02_regs;
1106 unsigned long dregs = ds1287_regs;
1107 void __iomem *bregs = bq4802_regs;
1109 unsigned long dregs = 0UL;
1110 void __iomem *bregs = 0UL;
1112 unsigned long flags;
1116 * Not having a register set can lead to trouble.
1117 * Also starfire doesn't have a tod clock.
1119 if (!mregs && !dregs & !bregs)
1123 spin_lock_irqsave(&mostek_lock, flags);
1125 /* Read the current RTC minutes. */
1126 tmp = mostek_read(mregs + MOSTEK_CREG);
1127 tmp |= MSTK_CREG_READ;
1128 mostek_write(mregs + MOSTEK_CREG, tmp);
1130 chip_minutes = MSTK_REG_MIN(mregs);
1132 tmp = mostek_read(mregs + MOSTEK_CREG);
1133 tmp &= ~MSTK_CREG_READ;
1134 mostek_write(mregs + MOSTEK_CREG, tmp);
1137 * since we're only adjusting minutes and seconds,
1138 * don't interfere with hour overflow. This avoids
1139 * messing with unknown time zones but requires your
1140 * RTC not to be off by more than 15 minutes
1142 real_seconds = nowtime % 60;
1143 real_minutes = nowtime / 60;
1144 if (((abs(real_minutes - chip_minutes) + 15)/30) & 1)
1145 real_minutes += 30; /* correct for half hour time zone */
1148 if (abs(real_minutes - chip_minutes) < 30) {
1149 tmp = mostek_read(mregs + MOSTEK_CREG);
1150 tmp |= MSTK_CREG_WRITE;
1151 mostek_write(mregs + MOSTEK_CREG, tmp);
1153 MSTK_SET_REG_SEC(mregs,real_seconds);
1154 MSTK_SET_REG_MIN(mregs,real_minutes);
1156 tmp = mostek_read(mregs + MOSTEK_CREG);
1157 tmp &= ~MSTK_CREG_WRITE;
1158 mostek_write(mregs + MOSTEK_CREG, tmp);
1160 spin_unlock_irqrestore(&mostek_lock, flags);
1164 spin_unlock_irqrestore(&mostek_lock, flags);
1170 unsigned char val = readb(bregs + 0x0e);
1172 /* BQ4802 RTC chip. */
1174 writeb(val | 0x08, bregs + 0x0e);
1176 chip_minutes = readb(bregs + 0x02);
1177 BCD_TO_BIN(chip_minutes);
1178 real_seconds = nowtime % 60;
1179 real_minutes = nowtime / 60;
1180 if (((abs(real_minutes - chip_minutes) + 15)/30) & 1)
1184 if (abs(real_minutes - chip_minutes) < 30) {
1185 BIN_TO_BCD(real_seconds);
1186 BIN_TO_BCD(real_minutes);
1187 writeb(real_seconds, bregs + 0x00);
1188 writeb(real_minutes, bregs + 0x02);
1191 "set_rtc_mmss: can't update from %d to %d\n",
1192 chip_minutes, real_minutes);
1196 writeb(val, bregs + 0x0e);
1201 unsigned char save_control, save_freq_select;
1203 /* Stolen from arch/i386/kernel/time.c, see there for
1204 * credits and descriptive comments.
1206 spin_lock_irqsave(&rtc_lock, flags);
1207 save_control = CMOS_READ(RTC_CONTROL); /* tell the clock it's being set */
1208 CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL);
1210 save_freq_select = CMOS_READ(RTC_FREQ_SELECT); /* stop and reset prescaler */
1211 CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
1213 chip_minutes = CMOS_READ(RTC_MINUTES);
1214 if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
1215 BCD_TO_BIN(chip_minutes);
1216 real_seconds = nowtime % 60;
1217 real_minutes = nowtime / 60;
1218 if (((abs(real_minutes - chip_minutes) + 15)/30) & 1)
1222 if (abs(real_minutes - chip_minutes) < 30) {
1223 if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
1224 BIN_TO_BCD(real_seconds);
1225 BIN_TO_BCD(real_minutes);
1227 CMOS_WRITE(real_seconds,RTC_SECONDS);
1228 CMOS_WRITE(real_minutes,RTC_MINUTES);
1231 "set_rtc_mmss: can't update from %d to %d\n",
1232 chip_minutes, real_minutes);
1236 CMOS_WRITE(save_control, RTC_CONTROL);
1237 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
1238 spin_unlock_irqrestore(&rtc_lock, flags);
1244 #define RTC_IS_OPEN 0x01 /* means /dev/rtc is in use */
1245 static unsigned char mini_rtc_status; /* bitmapped status byte. */
1248 #define STARTOFTIME 1970
1249 #define SECDAY 86400L
1250 #define SECYR (SECDAY * 365)
1251 #define leapyear(year) ((year) % 4 == 0 && \
1252 ((year) % 100 != 0 || (year) % 400 == 0))
1253 #define days_in_year(a) (leapyear(a) ? 366 : 365)
1254 #define days_in_month(a) (month_days[(a) - 1])
1256 static int month_days[12] = {
1257 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
1261 * This only works for the Gregorian calendar - i.e. after 1752 (in the UK)
1263 static void GregorianDay(struct rtc_time * tm)
1268 int MonthOffset[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
1270 lastYear = tm->tm_year - 1;
1273 * Number of leap corrections to apply up to end of last year
1275 leapsToDate = lastYear / 4 - lastYear / 100 + lastYear / 400;
1278 * This year is a leap year if it is divisible by 4 except when it is
1279 * divisible by 100 unless it is divisible by 400
1281 * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 was
1283 day = tm->tm_mon > 2 && leapyear(tm->tm_year);
1285 day += lastYear*365 + leapsToDate + MonthOffset[tm->tm_mon-1] +
1288 tm->tm_wday = day % 7;
1291 static void to_tm(int tim, struct rtc_time *tm)
1294 register long hms, day;
1299 /* Hours, minutes, seconds are easy */
1300 tm->tm_hour = hms / 3600;
1301 tm->tm_min = (hms % 3600) / 60;
1302 tm->tm_sec = (hms % 3600) % 60;
1304 /* Number of years in days */
1305 for (i = STARTOFTIME; day >= days_in_year(i); i++)
1306 day -= days_in_year(i);
1309 /* Number of months in days left */
1310 if (leapyear(tm->tm_year))
1311 days_in_month(FEBRUARY) = 29;
1312 for (i = 1; day >= days_in_month(i); i++)
1313 day -= days_in_month(i);
1314 days_in_month(FEBRUARY) = 28;
1317 /* Days are what is left over (+1) from all that. */
1318 tm->tm_mday = day + 1;
1321 * Determine the day of week
1326 /* Both Starfire and SUN4V give us seconds since Jan 1st, 1970,
1327 * aka Unix time. So we have to convert to/from rtc_time.
1329 static void starfire_get_rtc_time(struct rtc_time *time)
1331 u32 seconds = starfire_get_time();
1333 to_tm(seconds, time);
1334 time->tm_year -= 1900;
1338 static int starfire_set_rtc_time(struct rtc_time *time)
1340 u32 seconds = mktime(time->tm_year + 1900, time->tm_mon + 1,
1341 time->tm_mday, time->tm_hour,
1342 time->tm_min, time->tm_sec);
1344 return starfire_set_time(seconds);
1347 static void hypervisor_get_rtc_time(struct rtc_time *time)
1349 u32 seconds = hypervisor_get_time();
1351 to_tm(seconds, time);
1352 time->tm_year -= 1900;
1356 static int hypervisor_set_rtc_time(struct rtc_time *time)
1358 u32 seconds = mktime(time->tm_year + 1900, time->tm_mon + 1,
1359 time->tm_mday, time->tm_hour,
1360 time->tm_min, time->tm_sec);
1362 return hypervisor_set_time(seconds);
1366 static void bq4802_get_rtc_time(struct rtc_time *time)
1368 unsigned char val = readb(bq4802_regs + 0x0e);
1369 unsigned int century;
1371 writeb(val | 0x08, bq4802_regs + 0x0e);
1373 time->tm_sec = readb(bq4802_regs + 0x00);
1374 time->tm_min = readb(bq4802_regs + 0x02);
1375 time->tm_hour = readb(bq4802_regs + 0x04);
1376 time->tm_mday = readb(bq4802_regs + 0x06);
1377 time->tm_mon = readb(bq4802_regs + 0x09);
1378 time->tm_year = readb(bq4802_regs + 0x0a);
1379 time->tm_wday = readb(bq4802_regs + 0x08);
1380 century = readb(bq4802_regs + 0x0f);
1382 writeb(val, bq4802_regs + 0x0e);
1384 BCD_TO_BIN(time->tm_sec);
1385 BCD_TO_BIN(time->tm_min);
1386 BCD_TO_BIN(time->tm_hour);
1387 BCD_TO_BIN(time->tm_mday);
1388 BCD_TO_BIN(time->tm_mon);
1389 BCD_TO_BIN(time->tm_year);
1390 BCD_TO_BIN(time->tm_wday);
1391 BCD_TO_BIN(century);
1393 time->tm_year += (century * 100);
1394 time->tm_year -= 1900;
1399 static int bq4802_set_rtc_time(struct rtc_time *time)
1401 unsigned char val = readb(bq4802_regs + 0x0e);
1402 unsigned char sec, min, hrs, day, mon, yrs, century;
1405 year = time->tm_year + 1900;
1406 century = year / 100;
1409 mon = time->tm_mon + 1; /* tm_mon starts at zero */
1410 day = time->tm_mday;
1411 hrs = time->tm_hour;
1421 BIN_TO_BCD(century);
1423 writeb(val | 0x08, bq4802_regs + 0x0e);
1425 writeb(sec, bq4802_regs + 0x00);
1426 writeb(min, bq4802_regs + 0x02);
1427 writeb(hrs, bq4802_regs + 0x04);
1428 writeb(day, bq4802_regs + 0x06);
1429 writeb(mon, bq4802_regs + 0x09);
1430 writeb(yrs, bq4802_regs + 0x0a);
1431 writeb(century, bq4802_regs + 0x0f);
1433 writeb(val, bq4802_regs + 0x0e);
1437 #endif /* CONFIG_PCI */
1439 struct mini_rtc_ops {
1440 void (*get_rtc_time)(struct rtc_time *);
1441 int (*set_rtc_time)(struct rtc_time *);
1444 static struct mini_rtc_ops starfire_rtc_ops = {
1445 .get_rtc_time = starfire_get_rtc_time,
1446 .set_rtc_time = starfire_set_rtc_time,
1449 static struct mini_rtc_ops hypervisor_rtc_ops = {
1450 .get_rtc_time = hypervisor_get_rtc_time,
1451 .set_rtc_time = hypervisor_set_rtc_time,
1455 static struct mini_rtc_ops bq4802_rtc_ops = {
1456 .get_rtc_time = bq4802_get_rtc_time,
1457 .set_rtc_time = bq4802_set_rtc_time,
1459 #endif /* CONFIG_PCI */
1461 static struct mini_rtc_ops *mini_rtc_ops;
1463 static inline void mini_get_rtc_time(struct rtc_time *time)
1465 unsigned long flags;
1467 spin_lock_irqsave(&rtc_lock, flags);
1468 mini_rtc_ops->get_rtc_time(time);
1469 spin_unlock_irqrestore(&rtc_lock, flags);
1472 static inline int mini_set_rtc_time(struct rtc_time *time)
1474 unsigned long flags;
1477 spin_lock_irqsave(&rtc_lock, flags);
1478 err = mini_rtc_ops->set_rtc_time(time);
1479 spin_unlock_irqrestore(&rtc_lock, flags);
1484 static int mini_rtc_ioctl(struct inode *inode, struct file *file,
1485 unsigned int cmd, unsigned long arg)
1487 struct rtc_time wtime;
1488 void __user *argp = (void __user *)arg;
1498 case RTC_UIE_OFF: /* disable ints from RTC updates. */
1501 case RTC_UIE_ON: /* enable ints for RTC updates. */
1504 case RTC_RD_TIME: /* Read the time/date from RTC */
1505 /* this doesn't get week-day, who cares */
1506 memset(&wtime, 0, sizeof(wtime));
1507 mini_get_rtc_time(&wtime);
1509 return copy_to_user(argp, &wtime, sizeof(wtime)) ? -EFAULT : 0;
1511 case RTC_SET_TIME: /* Set the RTC */
1515 if (!capable(CAP_SYS_TIME))
1518 if (copy_from_user(&wtime, argp, sizeof(wtime)))
1521 year = wtime.tm_year + 1900;
1522 days = month_days[wtime.tm_mon] +
1523 ((wtime.tm_mon == 1) && leapyear(year));
1525 if ((wtime.tm_mon < 0 || wtime.tm_mon > 11) ||
1526 (wtime.tm_mday < 1))
1529 if (wtime.tm_mday < 0 || wtime.tm_mday > days)
1532 if (wtime.tm_hour < 0 || wtime.tm_hour >= 24 ||
1533 wtime.tm_min < 0 || wtime.tm_min >= 60 ||
1534 wtime.tm_sec < 0 || wtime.tm_sec >= 60)
1537 return mini_set_rtc_time(&wtime);
1544 static int mini_rtc_open(struct inode *inode, struct file *file)
1546 if (mini_rtc_status & RTC_IS_OPEN)
1549 mini_rtc_status |= RTC_IS_OPEN;
1554 static int mini_rtc_release(struct inode *inode, struct file *file)
1556 mini_rtc_status &= ~RTC_IS_OPEN;
1561 static const struct file_operations mini_rtc_fops = {
1562 .owner = THIS_MODULE,
1563 .ioctl = mini_rtc_ioctl,
1564 .open = mini_rtc_open,
1565 .release = mini_rtc_release,
1568 static struct miscdevice rtc_mini_dev =
1572 .fops = &mini_rtc_fops,
1575 static int __init rtc_mini_init(void)
1579 if (tlb_type == hypervisor)
1580 mini_rtc_ops = &hypervisor_rtc_ops;
1581 else if (this_is_starfire)
1582 mini_rtc_ops = &starfire_rtc_ops;
1584 else if (bq4802_regs)
1585 mini_rtc_ops = &bq4802_rtc_ops;
1586 #endif /* CONFIG_PCI */
1590 printk(KERN_INFO "Mini RTC Driver\n");
1592 retval = misc_register(&rtc_mini_dev);
1599 static void __exit rtc_mini_exit(void)
1601 misc_deregister(&rtc_mini_dev);
1605 module_init(rtc_mini_init);
1606 module_exit(rtc_mini_exit);