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/config.h>
13 #include <linux/errno.h>
14 #include <linux/module.h>
15 #include <linux/sched.h>
16 #include <linux/kernel.h>
17 #include <linux/param.h>
18 #include <linux/string.h>
20 #include <linux/interrupt.h>
21 #include <linux/time.h>
22 #include <linux/timex.h>
23 #include <linux/init.h>
24 #include <linux/ioport.h>
25 #include <linux/mc146818rtc.h>
26 #include <linux/delay.h>
27 #include <linux/profile.h>
28 #include <linux/bcd.h>
29 #include <linux/jiffies.h>
30 #include <linux/cpufreq.h>
31 #include <linux/percpu.h>
32 #include <linux/profile.h>
34 #include <asm/oplib.h>
35 #include <asm/mostek.h>
36 #include <asm/timer.h>
44 #include <asm/starfire.h>
46 #include <asm/sections.h>
47 #include <asm/cpudata.h>
49 DEFINE_SPINLOCK(mostek_lock
);
50 DEFINE_SPINLOCK(rtc_lock
);
51 void __iomem
*mstk48t02_regs
= NULL
;
53 unsigned long ds1287_regs
= 0UL;
56 extern unsigned long wall_jiffies
;
58 u64 jiffies_64
= INITIAL_JIFFIES
;
60 EXPORT_SYMBOL(jiffies_64
);
62 static void __iomem
*mstk48t08_regs
;
63 static void __iomem
*mstk48t59_regs
;
65 static int set_rtc_mmss(unsigned long);
67 static __init
unsigned long dummy_get_tick(void)
72 static __initdata
struct sparc64_tick_ops dummy_tick_ops
= {
73 .get_tick
= dummy_get_tick
,
76 struct sparc64_tick_ops
*tick_ops
= &dummy_tick_ops
;
78 #define TICK_PRIV_BIT (1UL << 63)
81 unsigned long profile_pc(struct pt_regs
*regs
)
83 unsigned long pc
= instruction_pointer(regs
);
85 if (in_lock_functions(pc
))
86 return regs
->u_regs
[UREG_RETPC
];
89 EXPORT_SYMBOL(profile_pc
);
92 static void tick_disable_protection(void)
94 /* Set things up so user can access tick register for profiling
95 * purposes. Also workaround BB_ERRATA_1 by doing a dummy
96 * read back of %tick after writing it.
102 "1: rd %%tick, %%g2\n"
103 " add %%g2, 6, %%g2\n"
104 " andn %%g2, %0, %%g2\n"
105 " wrpr %%g2, 0, %%tick\n"
108 : "r" (TICK_PRIV_BIT
)
112 static void tick_init_tick(unsigned long offset
)
114 tick_disable_protection();
116 __asm__
__volatile__(
118 " andn %%g1, %1, %%g1\n"
120 " add %%g1, %0, %%g1\n"
122 "1: wr %%g1, 0x0, %%tick_cmpr\n"
123 " rd %%tick_cmpr, %%g0"
125 : "r" (offset
), "r" (TICK_PRIV_BIT
)
129 static unsigned long tick_get_tick(void)
133 __asm__
__volatile__("rd %%tick, %0\n\t"
137 return ret
& ~TICK_PRIV_BIT
;
140 static unsigned long tick_get_compare(void)
144 __asm__
__volatile__("rd %%tick_cmpr, %0\n\t"
151 static unsigned long tick_add_compare(unsigned long adj
)
153 unsigned long new_compare
;
155 /* Workaround for Spitfire Errata (#54 I think??), I discovered
156 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch
159 * On Blackbird writes to %tick_cmpr can fail, the
160 * workaround seems to be to execute the wr instruction
161 * at the start of an I-cache line, and perform a dummy
162 * read back from %tick_cmpr right after writing to it. -DaveM
164 __asm__
__volatile__("rd %%tick_cmpr, %0\n\t"
165 "ba,pt %%xcc, 1f\n\t"
166 " add %0, %1, %0\n\t"
169 "wr %0, 0, %%tick_cmpr\n\t"
170 "rd %%tick_cmpr, %%g0"
171 : "=&r" (new_compare
)
177 static unsigned long tick_add_tick(unsigned long adj
, unsigned long offset
)
179 unsigned long new_tick
, tmp
;
181 /* Also need to handle Blackbird bug here too. */
182 __asm__
__volatile__("rd %%tick, %0\n\t"
184 "wrpr %0, 0, %%tick\n\t"
185 "andn %0, %4, %1\n\t"
186 "ba,pt %%xcc, 1f\n\t"
187 " add %1, %3, %1\n\t"
190 "wr %1, 0, %%tick_cmpr\n\t"
191 "rd %%tick_cmpr, %%g0"
192 : "=&r" (new_tick
), "=&r" (tmp
)
193 : "r" (adj
), "r" (offset
), "r" (TICK_PRIV_BIT
));
198 static struct sparc64_tick_ops tick_operations
= {
199 .init_tick
= tick_init_tick
,
200 .get_tick
= tick_get_tick
,
201 .get_compare
= tick_get_compare
,
202 .add_tick
= tick_add_tick
,
203 .add_compare
= tick_add_compare
,
204 .softint_mask
= 1UL << 0,
207 static void stick_init_tick(unsigned long offset
)
209 tick_disable_protection();
211 /* Let the user get at STICK too. */
212 __asm__
__volatile__(
213 " rd %%asr24, %%g2\n"
214 " andn %%g2, %0, %%g2\n"
215 " wr %%g2, 0, %%asr24"
217 : "r" (TICK_PRIV_BIT
)
220 __asm__
__volatile__(
221 " rd %%asr24, %%g1\n"
222 " andn %%g1, %1, %%g1\n"
223 " add %%g1, %0, %%g1\n"
224 " wr %%g1, 0x0, %%asr25"
226 : "r" (offset
), "r" (TICK_PRIV_BIT
)
230 static unsigned long stick_get_tick(void)
234 __asm__
__volatile__("rd %%asr24, %0"
237 return ret
& ~TICK_PRIV_BIT
;
240 static unsigned long stick_get_compare(void)
244 __asm__
__volatile__("rd %%asr25, %0"
250 static unsigned long stick_add_tick(unsigned long adj
, unsigned long offset
)
252 unsigned long new_tick
, tmp
;
254 __asm__
__volatile__("rd %%asr24, %0\n\t"
256 "wr %0, 0, %%asr24\n\t"
257 "andn %0, %4, %1\n\t"
260 : "=&r" (new_tick
), "=&r" (tmp
)
261 : "r" (adj
), "r" (offset
), "r" (TICK_PRIV_BIT
));
266 static unsigned long stick_add_compare(unsigned long adj
)
268 unsigned long new_compare
;
270 __asm__
__volatile__("rd %%asr25, %0\n\t"
273 : "=&r" (new_compare
)
279 static struct sparc64_tick_ops stick_operations
= {
280 .init_tick
= stick_init_tick
,
281 .get_tick
= stick_get_tick
,
282 .get_compare
= stick_get_compare
,
283 .add_tick
= stick_add_tick
,
284 .add_compare
= stick_add_compare
,
285 .softint_mask
= 1UL << 16,
288 /* On Hummingbird the STICK/STICK_CMPR register is implemented
289 * in I/O space. There are two 64-bit registers each, the
290 * first holds the low 32-bits of the value and the second holds
293 * Since STICK is constantly updating, we have to access it carefully.
295 * The sequence we use to read is:
298 * 3) read low again, if it rolled over increment high by 1
300 * Writing STICK safely is also tricky:
301 * 1) write low to zero
305 #define HBIRD_STICKCMP_ADDR 0x1fe0000f060UL
306 #define HBIRD_STICK_ADDR 0x1fe0000f070UL
308 static unsigned long __hbird_read_stick(void)
310 unsigned long ret
, tmp1
, tmp2
, tmp3
;
311 unsigned long addr
= HBIRD_STICK_ADDR
;
313 __asm__
__volatile__("ldxa [%1] %5, %2\n\t"
314 "add %1, 0x8, %1\n\t"
315 "ldxa [%1] %5, %3\n\t"
316 "sub %1, 0x8, %1\n\t"
317 "ldxa [%1] %5, %4\n\t"
319 "blu,a,pn %%xcc, 1f\n\t"
322 "sllx %3, 32, %3\n\t"
324 : "=&r" (ret
), "=&r" (addr
),
325 "=&r" (tmp1
), "=&r" (tmp2
), "=&r" (tmp3
)
326 : "i" (ASI_PHYS_BYPASS_EC_E
), "1" (addr
));
331 static unsigned long __hbird_read_compare(void)
333 unsigned long low
, high
;
334 unsigned long addr
= HBIRD_STICKCMP_ADDR
;
336 __asm__
__volatile__("ldxa [%2] %3, %0\n\t"
337 "add %2, 0x8, %2\n\t"
339 : "=&r" (low
), "=&r" (high
), "=&r" (addr
)
340 : "i" (ASI_PHYS_BYPASS_EC_E
), "2" (addr
));
342 return (high
<< 32UL) | low
;
345 static void __hbird_write_stick(unsigned long val
)
347 unsigned long low
= (val
& 0xffffffffUL
);
348 unsigned long high
= (val
>> 32UL);
349 unsigned long addr
= HBIRD_STICK_ADDR
;
351 __asm__
__volatile__("stxa %%g0, [%0] %4\n\t"
352 "add %0, 0x8, %0\n\t"
353 "stxa %3, [%0] %4\n\t"
354 "sub %0, 0x8, %0\n\t"
357 : "0" (addr
), "r" (low
), "r" (high
),
358 "i" (ASI_PHYS_BYPASS_EC_E
));
361 static void __hbird_write_compare(unsigned long val
)
363 unsigned long low
= (val
& 0xffffffffUL
);
364 unsigned long high
= (val
>> 32UL);
365 unsigned long addr
= HBIRD_STICKCMP_ADDR
+ 0x8UL
;
367 __asm__
__volatile__("stxa %3, [%0] %4\n\t"
368 "sub %0, 0x8, %0\n\t"
371 : "0" (addr
), "r" (low
), "r" (high
),
372 "i" (ASI_PHYS_BYPASS_EC_E
));
375 static void hbtick_init_tick(unsigned long offset
)
379 tick_disable_protection();
381 /* XXX This seems to be necessary to 'jumpstart' Hummingbird
382 * XXX into actually sending STICK interrupts. I think because
383 * XXX of how we store %tick_cmpr in head.S this somehow resets the
384 * XXX {TICK + STICK} interrupt mux. -DaveM
386 __hbird_write_stick(__hbird_read_stick());
388 val
= __hbird_read_stick() & ~TICK_PRIV_BIT
;
389 __hbird_write_compare(val
+ offset
);
392 static unsigned long hbtick_get_tick(void)
394 return __hbird_read_stick() & ~TICK_PRIV_BIT
;
397 static unsigned long hbtick_get_compare(void)
399 return __hbird_read_compare();
402 static unsigned long hbtick_add_tick(unsigned long adj
, unsigned long offset
)
406 val
= __hbird_read_stick() + adj
;
407 __hbird_write_stick(val
);
409 val
&= ~TICK_PRIV_BIT
;
410 __hbird_write_compare(val
+ offset
);
415 static unsigned long hbtick_add_compare(unsigned long adj
)
417 unsigned long val
= __hbird_read_compare() + adj
;
419 val
&= ~TICK_PRIV_BIT
;
420 __hbird_write_compare(val
);
425 static struct sparc64_tick_ops hbtick_operations
= {
426 .init_tick
= hbtick_init_tick
,
427 .get_tick
= hbtick_get_tick
,
428 .get_compare
= hbtick_get_compare
,
429 .add_tick
= hbtick_add_tick
,
430 .add_compare
= hbtick_add_compare
,
431 .softint_mask
= 1UL << 0,
434 /* timer_interrupt() needs to keep up the real-time clock,
435 * as well as call the "do_timer()" routine every clocktick
437 * NOTE: On SUN5 systems the ticker interrupt comes in using 2
438 * interrupts, one at level14 and one with softint bit 0.
440 unsigned long timer_tick_offset
;
441 unsigned long timer_tick_compare
;
443 static unsigned long timer_ticks_per_nsec_quotient
;
445 #define TICK_SIZE (tick_nsec / 1000)
447 static inline void timer_check_rtc(void)
449 /* last time the cmos clock got updated */
450 static long last_rtc_update
;
452 /* Determine when to update the Mostek clock. */
453 if ((time_status
& STA_UNSYNC
) == 0 &&
454 xtime
.tv_sec
> last_rtc_update
+ 660 &&
455 (xtime
.tv_nsec
/ 1000) >= 500000 - ((unsigned) TICK_SIZE
) / 2 &&
456 (xtime
.tv_nsec
/ 1000) <= 500000 + ((unsigned) TICK_SIZE
) / 2) {
457 if (set_rtc_mmss(xtime
.tv_sec
) == 0)
458 last_rtc_update
= xtime
.tv_sec
;
460 last_rtc_update
= xtime
.tv_sec
- 600;
461 /* do it again in 60 s */
465 static irqreturn_t
timer_interrupt(int irq
, void *dev_id
, struct pt_regs
* regs
)
467 unsigned long ticks
, pstate
;
469 write_seqlock(&xtime_lock
);
473 profile_tick(CPU_PROFILING
, regs
);
474 update_process_times(user_mode(regs
));
478 /* Guarantee that the following sequences execute
481 __asm__
__volatile__("rdpr %%pstate, %0\n\t"
482 "wrpr %0, %1, %%pstate"
486 timer_tick_compare
= tick_ops
->add_compare(timer_tick_offset
);
487 ticks
= tick_ops
->get_tick();
489 /* Restore PSTATE_IE. */
490 __asm__
__volatile__("wrpr %0, 0x0, %%pstate"
493 } while (time_after_eq(ticks
, timer_tick_compare
));
497 write_sequnlock(&xtime_lock
);
503 void timer_tick_interrupt(struct pt_regs
*regs
)
505 write_seqlock(&xtime_lock
);
510 * Only keep timer_tick_offset uptodate, but don't set TICK_CMPR.
512 timer_tick_compare
= tick_ops
->get_compare() + timer_tick_offset
;
516 write_sequnlock(&xtime_lock
);
520 /* Kick start a stopped clock (procedure from the Sun NVRAM/hostid FAQ). */
521 static void __init
kick_start_clock(void)
523 void __iomem
*regs
= mstk48t02_regs
;
527 prom_printf("CLOCK: Clock was stopped. Kick start ");
529 spin_lock_irq(&mostek_lock
);
531 /* Turn on the kick start bit to start the oscillator. */
532 tmp
= mostek_read(regs
+ MOSTEK_CREG
);
533 tmp
|= MSTK_CREG_WRITE
;
534 mostek_write(regs
+ MOSTEK_CREG
, tmp
);
535 tmp
= mostek_read(regs
+ MOSTEK_SEC
);
537 mostek_write(regs
+ MOSTEK_SEC
, tmp
);
538 tmp
= mostek_read(regs
+ MOSTEK_HOUR
);
539 tmp
|= MSTK_KICK_START
;
540 mostek_write(regs
+ MOSTEK_HOUR
, tmp
);
541 tmp
= mostek_read(regs
+ MOSTEK_CREG
);
542 tmp
&= ~MSTK_CREG_WRITE
;
543 mostek_write(regs
+ MOSTEK_CREG
, tmp
);
545 spin_unlock_irq(&mostek_lock
);
547 /* Delay to allow the clock oscillator to start. */
548 sec
= MSTK_REG_SEC(regs
);
549 for (i
= 0; i
< 3; i
++) {
550 while (sec
== MSTK_REG_SEC(regs
))
551 for (count
= 0; count
< 100000; count
++)
554 sec
= MSTK_REG_SEC(regs
);
558 spin_lock_irq(&mostek_lock
);
560 /* Turn off kick start and set a "valid" time and date. */
561 tmp
= mostek_read(regs
+ MOSTEK_CREG
);
562 tmp
|= MSTK_CREG_WRITE
;
563 mostek_write(regs
+ MOSTEK_CREG
, tmp
);
564 tmp
= mostek_read(regs
+ MOSTEK_HOUR
);
565 tmp
&= ~MSTK_KICK_START
;
566 mostek_write(regs
+ MOSTEK_HOUR
, tmp
);
567 MSTK_SET_REG_SEC(regs
,0);
568 MSTK_SET_REG_MIN(regs
,0);
569 MSTK_SET_REG_HOUR(regs
,0);
570 MSTK_SET_REG_DOW(regs
,5);
571 MSTK_SET_REG_DOM(regs
,1);
572 MSTK_SET_REG_MONTH(regs
,8);
573 MSTK_SET_REG_YEAR(regs
,1996 - MSTK_YEAR_ZERO
);
574 tmp
= mostek_read(regs
+ MOSTEK_CREG
);
575 tmp
&= ~MSTK_CREG_WRITE
;
576 mostek_write(regs
+ MOSTEK_CREG
, tmp
);
578 spin_unlock_irq(&mostek_lock
);
580 /* Ensure the kick start bit is off. If it isn't, turn it off. */
581 while (mostek_read(regs
+ MOSTEK_HOUR
) & MSTK_KICK_START
) {
582 prom_printf("CLOCK: Kick start still on!\n");
584 spin_lock_irq(&mostek_lock
);
586 tmp
= mostek_read(regs
+ MOSTEK_CREG
);
587 tmp
|= MSTK_CREG_WRITE
;
588 mostek_write(regs
+ MOSTEK_CREG
, tmp
);
590 tmp
= mostek_read(regs
+ MOSTEK_HOUR
);
591 tmp
&= ~MSTK_KICK_START
;
592 mostek_write(regs
+ MOSTEK_HOUR
, tmp
);
594 tmp
= mostek_read(regs
+ MOSTEK_CREG
);
595 tmp
&= ~MSTK_CREG_WRITE
;
596 mostek_write(regs
+ MOSTEK_CREG
, tmp
);
598 spin_unlock_irq(&mostek_lock
);
601 prom_printf("CLOCK: Kick start procedure successful.\n");
604 /* Return nonzero if the clock chip battery is low. */
605 static int __init
has_low_battery(void)
607 void __iomem
*regs
= mstk48t02_regs
;
610 spin_lock_irq(&mostek_lock
);
612 data1
= mostek_read(regs
+ MOSTEK_EEPROM
); /* Read some data. */
613 mostek_write(regs
+ MOSTEK_EEPROM
, ~data1
); /* Write back the complement. */
614 data2
= mostek_read(regs
+ MOSTEK_EEPROM
); /* Read back the complement. */
615 mostek_write(regs
+ MOSTEK_EEPROM
, data1
); /* Restore original value. */
617 spin_unlock_irq(&mostek_lock
);
619 return (data1
== data2
); /* Was the write blocked? */
622 /* Probe for the real time clock chip. */
623 static void __init
set_system_time(void)
625 unsigned int year
, mon
, day
, hour
, min
, sec
;
626 void __iomem
*mregs
= mstk48t02_regs
;
628 unsigned long dregs
= ds1287_regs
;
630 unsigned long dregs
= 0UL;
634 if (!mregs
&& !dregs
) {
635 prom_printf("Something wrong, clock regs not mapped yet.\n");
640 spin_lock_irq(&mostek_lock
);
642 /* Traditional Mostek chip. */
643 tmp
= mostek_read(mregs
+ MOSTEK_CREG
);
644 tmp
|= MSTK_CREG_READ
;
645 mostek_write(mregs
+ MOSTEK_CREG
, tmp
);
647 sec
= MSTK_REG_SEC(mregs
);
648 min
= MSTK_REG_MIN(mregs
);
649 hour
= MSTK_REG_HOUR(mregs
);
650 day
= MSTK_REG_DOM(mregs
);
651 mon
= MSTK_REG_MONTH(mregs
);
652 year
= MSTK_CVT_YEAR( MSTK_REG_YEAR(mregs
) );
656 /* Dallas 12887 RTC chip. */
658 /* Stolen from arch/i386/kernel/time.c, see there for
659 * credits and descriptive comments.
661 for (i
= 0; i
< 1000000; i
++) {
662 if (CMOS_READ(RTC_FREQ_SELECT
) & RTC_UIP
)
666 for (i
= 0; i
< 1000000; i
++) {
667 if (!(CMOS_READ(RTC_FREQ_SELECT
) & RTC_UIP
))
672 sec
= CMOS_READ(RTC_SECONDS
);
673 min
= CMOS_READ(RTC_MINUTES
);
674 hour
= CMOS_READ(RTC_HOURS
);
675 day
= CMOS_READ(RTC_DAY_OF_MONTH
);
676 mon
= CMOS_READ(RTC_MONTH
);
677 year
= CMOS_READ(RTC_YEAR
);
678 } while (sec
!= CMOS_READ(RTC_SECONDS
));
679 if (!(CMOS_READ(RTC_CONTROL
) & RTC_DM_BINARY
) || RTC_ALWAYS_BCD
) {
687 if ((year
+= 1900) < 1970)
691 xtime
.tv_sec
= mktime(year
, mon
, day
, hour
, min
, sec
);
692 xtime
.tv_nsec
= (INITIAL_JIFFIES
% HZ
) * (NSEC_PER_SEC
/ HZ
);
693 set_normalized_timespec(&wall_to_monotonic
,
694 -xtime
.tv_sec
, -xtime
.tv_nsec
);
697 tmp
= mostek_read(mregs
+ MOSTEK_CREG
);
698 tmp
&= ~MSTK_CREG_READ
;
699 mostek_write(mregs
+ MOSTEK_CREG
, tmp
);
701 spin_unlock_irq(&mostek_lock
);
705 void __init
clock_probe(void)
707 struct linux_prom_registers clk_reg
[2];
709 int node
, busnd
= -1, err
;
711 struct linux_central
*cbus
;
713 struct linux_ebus
*ebus
= NULL
;
714 struct sparc_isa_bridge
*isa_br
= NULL
;
723 if (this_is_starfire
) {
724 /* davem suggests we keep this within the 4M locked kernel image */
725 static char obp_gettod
[256];
728 sprintf(obp_gettod
, "h# %08x unix-gettod",
729 (unsigned int) (long) &unix_tod
);
730 prom_feval(obp_gettod
);
731 xtime
.tv_sec
= unix_tod
;
732 xtime
.tv_nsec
= (INITIAL_JIFFIES
% HZ
) * (NSEC_PER_SEC
/ HZ
);
733 set_normalized_timespec(&wall_to_monotonic
,
734 -xtime
.tv_sec
, -xtime
.tv_nsec
);
738 local_irq_save(flags
);
742 busnd
= central_bus
->child
->prom_node
;
744 /* Check FHC Central then EBUSs then ISA bridges then SBUSs.
745 * That way we handle the presence of multiple properly.
747 * As a special case, machines with Central must provide the
751 if (ebus_chain
!= NULL
) {
754 busnd
= ebus
->prom_node
;
756 if (isa_chain
!= NULL
) {
759 busnd
= isa_br
->prom_node
;
762 if (sbus_root
!= NULL
&& busnd
== -1)
763 busnd
= sbus_root
->prom_node
;
766 prom_printf("clock_probe: problem, cannot find bus to search.\n");
770 node
= prom_getchild(busnd
);
776 prom_getstring(node
, "model", model
, sizeof(model
));
777 if (strcmp(model
, "mk48t02") &&
778 strcmp(model
, "mk48t08") &&
779 strcmp(model
, "mk48t59") &&
780 strcmp(model
, "m5819") &&
781 strcmp(model
, "m5819p") &&
782 strcmp(model
, "m5823") &&
783 strcmp(model
, "ds1287")) {
785 prom_printf("clock_probe: Central bus lacks timer chip.\n");
790 node
= prom_getsibling(node
);
792 while ((node
== 0) && ebus
!= NULL
) {
795 busnd
= ebus
->prom_node
;
796 node
= prom_getchild(busnd
);
799 while ((node
== 0) && isa_br
!= NULL
) {
800 isa_br
= isa_br
->next
;
801 if (isa_br
!= NULL
) {
802 busnd
= isa_br
->prom_node
;
803 node
= prom_getchild(busnd
);
808 prom_printf("clock_probe: Cannot find timer chip\n");
814 err
= prom_getproperty(node
, "reg", (char *)clk_reg
,
817 prom_printf("clock_probe: Cannot get Mostek reg property\n");
822 apply_fhc_ranges(central_bus
->child
, clk_reg
, 1);
823 apply_central_ranges(central_bus
, clk_reg
, 1);
826 else if (ebus
!= NULL
) {
827 struct linux_ebus_device
*edev
;
829 for_each_ebusdev(edev
, ebus
)
830 if (edev
->prom_node
== node
)
833 if (isa_chain
!= NULL
)
835 prom_printf("%s: Mostek not probed by EBUS\n",
840 if (!strcmp(model
, "ds1287") ||
841 !strcmp(model
, "m5819") ||
842 !strcmp(model
, "m5819p") ||
843 !strcmp(model
, "m5823")) {
844 ds1287_regs
= edev
->resource
[0].start
;
846 mstk48t59_regs
= (void __iomem
*)
847 edev
->resource
[0].start
;
848 mstk48t02_regs
= mstk48t59_regs
+ MOSTEK_48T59_48T02
;
852 else if (isa_br
!= NULL
) {
853 struct sparc_isa_device
*isadev
;
856 for_each_isadev(isadev
, isa_br
)
857 if (isadev
->prom_node
== node
)
859 if (isadev
== NULL
) {
860 prom_printf("%s: Mostek not probed by ISA\n");
863 if (!strcmp(model
, "ds1287") ||
864 !strcmp(model
, "m5819") ||
865 !strcmp(model
, "m5819p") ||
866 !strcmp(model
, "m5823")) {
867 ds1287_regs
= isadev
->resource
.start
;
869 mstk48t59_regs
= (void __iomem
*)
870 isadev
->resource
.start
;
871 mstk48t02_regs
= mstk48t59_regs
+ MOSTEK_48T59_48T02
;
877 if (sbus_root
->num_sbus_ranges
) {
878 int nranges
= sbus_root
->num_sbus_ranges
;
881 for (rngc
= 0; rngc
< nranges
; rngc
++)
882 if (clk_reg
[0].which_io
==
883 sbus_root
->sbus_ranges
[rngc
].ot_child_space
)
885 if (rngc
== nranges
) {
886 prom_printf("clock_probe: Cannot find ranges for "
890 clk_reg
[0].which_io
=
891 sbus_root
->sbus_ranges
[rngc
].ot_parent_space
;
892 clk_reg
[0].phys_addr
+=
893 sbus_root
->sbus_ranges
[rngc
].ot_parent_base
;
897 if(model
[5] == '0' && model
[6] == '2') {
898 mstk48t02_regs
= (void __iomem
*)
899 (((u64
)clk_reg
[0].phys_addr
) |
900 (((u64
)clk_reg
[0].which_io
)<<32UL));
901 } else if(model
[5] == '0' && model
[6] == '8') {
902 mstk48t08_regs
= (void __iomem
*)
903 (((u64
)clk_reg
[0].phys_addr
) |
904 (((u64
)clk_reg
[0].which_io
)<<32UL));
905 mstk48t02_regs
= mstk48t08_regs
+ MOSTEK_48T08_48T02
;
907 mstk48t59_regs
= (void __iomem
*)
908 (((u64
)clk_reg
[0].phys_addr
) |
909 (((u64
)clk_reg
[0].which_io
)<<32UL));
910 mstk48t02_regs
= mstk48t59_regs
+ MOSTEK_48T59_48T02
;
915 if (mstk48t02_regs
!= NULL
) {
916 /* Report a low battery voltage condition. */
917 if (has_low_battery())
918 prom_printf("NVRAM: Low battery voltage!\n");
920 /* Kick start the clock if it is completely stopped. */
921 if (mostek_read(mstk48t02_regs
+ MOSTEK_SEC
) & MSTK_STOP
)
927 local_irq_restore(flags
);
930 /* This is gets the master TICK_INT timer going. */
931 static unsigned long sparc64_init_timers(void)
936 extern void smp_tick_init(void);
939 if (tlb_type
== spitfire
) {
940 unsigned long ver
, manuf
, impl
;
942 __asm__
__volatile__ ("rdpr %%ver, %0"
944 manuf
= ((ver
>> 48) & 0xffff);
945 impl
= ((ver
>> 32) & 0xffff);
946 if (manuf
== 0x17 && impl
== 0x13) {
947 /* Hummingbird, aka Ultra-IIe */
948 tick_ops
= &hbtick_operations
;
949 node
= prom_root_node
;
950 clock
= prom_getint(node
, "stick-frequency");
952 tick_ops
= &tick_operations
;
953 cpu_find_by_instance(0, &node
, NULL
);
954 clock
= prom_getint(node
, "clock-frequency");
957 tick_ops
= &stick_operations
;
958 node
= prom_root_node
;
959 clock
= prom_getint(node
, "stick-frequency");
961 timer_tick_offset
= clock
/ HZ
;
970 static void sparc64_start_timers(irqreturn_t (*cfunc
)(int, void *, struct pt_regs
*))
972 unsigned long pstate
;
975 /* Register IRQ handler. */
976 err
= request_irq(build_irq(0, 0, 0UL, 0UL), cfunc
, SA_STATIC_ALLOC
,
980 prom_printf("Serious problem, cannot register TICK_INT\n");
984 /* Guarantee that the following sequences execute
987 __asm__
__volatile__("rdpr %%pstate, %0\n\t"
988 "wrpr %0, %1, %%pstate"
992 tick_ops
->init_tick(timer_tick_offset
);
994 /* Restore PSTATE_IE. */
995 __asm__
__volatile__("wrpr %0, 0x0, %%pstate"
1003 unsigned long udelay_val_ref
;
1004 unsigned long clock_tick_ref
;
1005 unsigned int ref_freq
;
1007 static DEFINE_PER_CPU(struct freq_table
, sparc64_freq_table
) = { 0, 0, 0 };
1009 unsigned long sparc64_get_clock_tick(unsigned int cpu
)
1011 struct freq_table
*ft
= &per_cpu(sparc64_freq_table
, cpu
);
1013 if (ft
->clock_tick_ref
)
1014 return ft
->clock_tick_ref
;
1015 return cpu_data(cpu
).clock_tick
;
1018 #ifdef CONFIG_CPU_FREQ
1020 static int sparc64_cpufreq_notifier(struct notifier_block
*nb
, unsigned long val
,
1023 struct cpufreq_freqs
*freq
= data
;
1024 unsigned int cpu
= freq
->cpu
;
1025 struct freq_table
*ft
= &per_cpu(sparc64_freq_table
, cpu
);
1027 if (!ft
->ref_freq
) {
1028 ft
->ref_freq
= freq
->old
;
1029 ft
->udelay_val_ref
= cpu_data(cpu
).udelay_val
;
1030 ft
->clock_tick_ref
= cpu_data(cpu
).clock_tick
;
1032 if ((val
== CPUFREQ_PRECHANGE
&& freq
->old
< freq
->new) ||
1033 (val
== CPUFREQ_POSTCHANGE
&& freq
->old
> freq
->new) ||
1034 (val
== CPUFREQ_RESUMECHANGE
)) {
1035 cpu_data(cpu
).udelay_val
=
1036 cpufreq_scale(ft
->udelay_val_ref
,
1039 cpu_data(cpu
).clock_tick
=
1040 cpufreq_scale(ft
->clock_tick_ref
,
1048 static struct notifier_block sparc64_cpufreq_notifier_block
= {
1049 .notifier_call
= sparc64_cpufreq_notifier
1052 #endif /* CONFIG_CPU_FREQ */
1054 static struct time_interpolator sparc64_cpu_interpolator
= {
1055 .source
= TIME_SOURCE_CPU
,
1057 .mask
= 0xffffffffffffffffLL
1060 /* The quotient formula is taken from the IA64 port. */
1061 #define SPARC64_NSEC_PER_CYC_SHIFT 30UL
1062 void __init
time_init(void)
1064 unsigned long clock
= sparc64_init_timers();
1066 sparc64_cpu_interpolator
.frequency
= clock
;
1067 register_time_interpolator(&sparc64_cpu_interpolator
);
1069 /* Now that the interpolator is registered, it is
1070 * safe to start the timer ticking.
1072 sparc64_start_timers(timer_interrupt
);
1074 timer_ticks_per_nsec_quotient
=
1075 (((NSEC_PER_SEC
<< SPARC64_NSEC_PER_CYC_SHIFT
) +
1076 (clock
/ 2)) / clock
);
1078 #ifdef CONFIG_CPU_FREQ
1079 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block
,
1080 CPUFREQ_TRANSITION_NOTIFIER
);
1084 unsigned long long sched_clock(void)
1086 unsigned long ticks
= tick_ops
->get_tick();
1088 return (ticks
* timer_ticks_per_nsec_quotient
)
1089 >> SPARC64_NSEC_PER_CYC_SHIFT
;
1092 static int set_rtc_mmss(unsigned long nowtime
)
1094 int real_seconds
, real_minutes
, chip_minutes
;
1095 void __iomem
*mregs
= mstk48t02_regs
;
1097 unsigned long dregs
= ds1287_regs
;
1099 unsigned long dregs
= 0UL;
1101 unsigned long flags
;
1105 * Not having a register set can lead to trouble.
1106 * Also starfire doesn't have a tod clock.
1108 if (!mregs
&& !dregs
)
1112 spin_lock_irqsave(&mostek_lock
, flags
);
1114 /* Read the current RTC minutes. */
1115 tmp
= mostek_read(mregs
+ MOSTEK_CREG
);
1116 tmp
|= MSTK_CREG_READ
;
1117 mostek_write(mregs
+ MOSTEK_CREG
, tmp
);
1119 chip_minutes
= MSTK_REG_MIN(mregs
);
1121 tmp
= mostek_read(mregs
+ MOSTEK_CREG
);
1122 tmp
&= ~MSTK_CREG_READ
;
1123 mostek_write(mregs
+ MOSTEK_CREG
, tmp
);
1126 * since we're only adjusting minutes and seconds,
1127 * don't interfere with hour overflow. This avoids
1128 * messing with unknown time zones but requires your
1129 * RTC not to be off by more than 15 minutes
1131 real_seconds
= nowtime
% 60;
1132 real_minutes
= nowtime
/ 60;
1133 if (((abs(real_minutes
- chip_minutes
) + 15)/30) & 1)
1134 real_minutes
+= 30; /* correct for half hour time zone */
1137 if (abs(real_minutes
- chip_minutes
) < 30) {
1138 tmp
= mostek_read(mregs
+ MOSTEK_CREG
);
1139 tmp
|= MSTK_CREG_WRITE
;
1140 mostek_write(mregs
+ MOSTEK_CREG
, tmp
);
1142 MSTK_SET_REG_SEC(mregs
,real_seconds
);
1143 MSTK_SET_REG_MIN(mregs
,real_minutes
);
1145 tmp
= mostek_read(mregs
+ MOSTEK_CREG
);
1146 tmp
&= ~MSTK_CREG_WRITE
;
1147 mostek_write(mregs
+ MOSTEK_CREG
, tmp
);
1149 spin_unlock_irqrestore(&mostek_lock
, flags
);
1153 spin_unlock_irqrestore(&mostek_lock
, flags
);
1159 unsigned char save_control
, save_freq_select
;
1161 /* Stolen from arch/i386/kernel/time.c, see there for
1162 * credits and descriptive comments.
1164 spin_lock_irqsave(&rtc_lock
, flags
);
1165 save_control
= CMOS_READ(RTC_CONTROL
); /* tell the clock it's being set */
1166 CMOS_WRITE((save_control
|RTC_SET
), RTC_CONTROL
);
1168 save_freq_select
= CMOS_READ(RTC_FREQ_SELECT
); /* stop and reset prescaler */
1169 CMOS_WRITE((save_freq_select
|RTC_DIV_RESET2
), RTC_FREQ_SELECT
);
1171 chip_minutes
= CMOS_READ(RTC_MINUTES
);
1172 if (!(save_control
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
)
1173 BCD_TO_BIN(chip_minutes
);
1174 real_seconds
= nowtime
% 60;
1175 real_minutes
= nowtime
/ 60;
1176 if (((abs(real_minutes
- chip_minutes
) + 15)/30) & 1)
1180 if (abs(real_minutes
- chip_minutes
) < 30) {
1181 if (!(save_control
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
) {
1182 BIN_TO_BCD(real_seconds
);
1183 BIN_TO_BCD(real_minutes
);
1185 CMOS_WRITE(real_seconds
,RTC_SECONDS
);
1186 CMOS_WRITE(real_minutes
,RTC_MINUTES
);
1189 "set_rtc_mmss: can't update from %d to %d\n",
1190 chip_minutes
, real_minutes
);
1194 CMOS_WRITE(save_control
, RTC_CONTROL
);
1195 CMOS_WRITE(save_freq_select
, RTC_FREQ_SELECT
);
1196 spin_unlock_irqrestore(&rtc_lock
, flags
);