blob: 75cb6b4dc14ff1fce160c3f5c40934c4ef16abf1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: time.c,v 1.42 2002/01/23 14:33:55 davem Exp $
2 * time.c: UltraSparc timer and TOD clock support.
3 *
4 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
6 *
7 * Based largely on code which is:
8 *
9 * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
10 */
11
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>
19#include <linux/mm.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>
David S. Miller8ba706a2006-03-01 17:32:46 -080033#include <linux/miscdevice.h>
34#include <linux/rtc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <asm/oplib.h>
37#include <asm/mostek.h>
38#include <asm/timer.h>
39#include <asm/irq.h>
40#include <asm/io.h>
41#include <asm/sbus.h>
42#include <asm/fhc.h>
43#include <asm/pbm.h>
44#include <asm/ebus.h>
45#include <asm/isa.h>
46#include <asm/starfire.h>
47#include <asm/smp.h>
48#include <asm/sections.h>
49#include <asm/cpudata.h>
David S. Miller8ba706a2006-03-01 17:32:46 -080050#include <asm/uaccess.h>
David S. Miller07f8e5f2006-06-21 23:34:02 -070051#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53DEFINE_SPINLOCK(mostek_lock);
54DEFINE_SPINLOCK(rtc_lock);
Al Viroef0299b2005-04-24 12:28:36 -070055void __iomem *mstk48t02_regs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#ifdef CONFIG_PCI
57unsigned long ds1287_regs = 0UL;
58#endif
59
60extern unsigned long wall_jiffies;
61
Al Viroef0299b2005-04-24 12:28:36 -070062static void __iomem *mstk48t08_regs;
63static void __iomem *mstk48t59_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65static int set_rtc_mmss(unsigned long);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define TICK_PRIV_BIT (1UL << 63)
68
69#ifdef CONFIG_SMP
70unsigned long profile_pc(struct pt_regs *regs)
71{
72 unsigned long pc = instruction_pointer(regs);
73
74 if (in_lock_functions(pc))
75 return regs->u_regs[UREG_RETPC];
76 return pc;
77}
78EXPORT_SYMBOL(profile_pc);
79#endif
80
81static void tick_disable_protection(void)
82{
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.
86 */
87 __asm__ __volatile__(
88 " ba,pt %%xcc, 1f\n"
89 " nop\n"
90 " .align 64\n"
91 "1: rd %%tick, %%g2\n"
92 " add %%g2, 6, %%g2\n"
93 " andn %%g2, %0, %%g2\n"
94 " wrpr %%g2, 0, %%tick\n"
95 " rdpr %%tick, %%g0"
96 : /* no outputs */
97 : "r" (TICK_PRIV_BIT)
98 : "g2");
99}
100
101static void tick_init_tick(unsigned long offset)
102{
103 tick_disable_protection();
104
105 __asm__ __volatile__(
106 " rd %%tick, %%g1\n"
107 " andn %%g1, %1, %%g1\n"
108 " ba,pt %%xcc, 1f\n"
109 " add %%g1, %0, %%g1\n"
110 " .align 64\n"
111 "1: wr %%g1, 0x0, %%tick_cmpr\n"
112 " rd %%tick_cmpr, %%g0"
113 : /* no outputs */
114 : "r" (offset), "r" (TICK_PRIV_BIT)
115 : "g1");
116}
117
118static unsigned long tick_get_tick(void)
119{
120 unsigned long ret;
121
122 __asm__ __volatile__("rd %%tick, %0\n\t"
123 "mov %0, %0"
124 : "=r" (ret));
125
126 return ret & ~TICK_PRIV_BIT;
127}
128
129static unsigned long tick_get_compare(void)
130{
131 unsigned long ret;
132
133 __asm__ __volatile__("rd %%tick_cmpr, %0\n\t"
134 "mov %0, %0"
135 : "=r" (ret));
136
137 return ret;
138}
139
140static unsigned long tick_add_compare(unsigned long adj)
141{
142 unsigned long new_compare;
143
144 /* Workaround for Spitfire Errata (#54 I think??), I discovered
145 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch
146 * number 103640.
147 *
148 * On Blackbird writes to %tick_cmpr can fail, the
149 * workaround seems to be to execute the wr instruction
150 * at the start of an I-cache line, and perform a dummy
151 * read back from %tick_cmpr right after writing to it. -DaveM
152 */
153 __asm__ __volatile__("rd %%tick_cmpr, %0\n\t"
154 "ba,pt %%xcc, 1f\n\t"
155 " add %0, %1, %0\n\t"
156 ".align 64\n"
157 "1:\n\t"
158 "wr %0, 0, %%tick_cmpr\n\t"
159 "rd %%tick_cmpr, %%g0"
160 : "=&r" (new_compare)
161 : "r" (adj));
162
163 return new_compare;
164}
165
166static unsigned long tick_add_tick(unsigned long adj, unsigned long offset)
167{
168 unsigned long new_tick, tmp;
169
170 /* Also need to handle Blackbird bug here too. */
171 __asm__ __volatile__("rd %%tick, %0\n\t"
172 "add %0, %2, %0\n\t"
173 "wrpr %0, 0, %%tick\n\t"
174 "andn %0, %4, %1\n\t"
175 "ba,pt %%xcc, 1f\n\t"
176 " add %1, %3, %1\n\t"
177 ".align 64\n"
178 "1:\n\t"
179 "wr %1, 0, %%tick_cmpr\n\t"
180 "rd %%tick_cmpr, %%g0"
181 : "=&r" (new_tick), "=&r" (tmp)
182 : "r" (adj), "r" (offset), "r" (TICK_PRIV_BIT));
183
184 return new_tick;
185}
186
David S. Millerd369ddd2005-07-10 15:45:11 -0700187static struct sparc64_tick_ops tick_operations __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 .init_tick = tick_init_tick,
189 .get_tick = tick_get_tick,
190 .get_compare = tick_get_compare,
191 .add_tick = tick_add_tick,
192 .add_compare = tick_add_compare,
193 .softint_mask = 1UL << 0,
194};
195
David S. Millerfc321492005-11-07 14:10:10 -0800196struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations;
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static void stick_init_tick(unsigned long offset)
199{
David S. Miller7aa62642006-02-11 23:14:59 -0800200 /* Writes to the %tick and %stick register are not
201 * allowed on sun4v. The Hypervisor controls that
202 * bit, per-strand.
203 */
204 if (tlb_type != hypervisor) {
205 tick_disable_protection();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
David S. Miller7aa62642006-02-11 23:14:59 -0800207 /* Let the user get at STICK too. */
208 __asm__ __volatile__(
209 " rd %%asr24, %%g2\n"
210 " andn %%g2, %0, %%g2\n"
211 " wr %%g2, 0, %%asr24"
212 : /* no outputs */
213 : "r" (TICK_PRIV_BIT)
214 : "g1", "g2");
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 __asm__ __volatile__(
218 " rd %%asr24, %%g1\n"
219 " andn %%g1, %1, %%g1\n"
220 " add %%g1, %0, %%g1\n"
221 " wr %%g1, 0x0, %%asr25"
222 : /* no outputs */
223 : "r" (offset), "r" (TICK_PRIV_BIT)
224 : "g1");
225}
226
227static unsigned long stick_get_tick(void)
228{
229 unsigned long ret;
230
231 __asm__ __volatile__("rd %%asr24, %0"
232 : "=r" (ret));
233
234 return ret & ~TICK_PRIV_BIT;
235}
236
237static unsigned long stick_get_compare(void)
238{
239 unsigned long ret;
240
241 __asm__ __volatile__("rd %%asr25, %0"
242 : "=r" (ret));
243
244 return ret;
245}
246
247static unsigned long stick_add_tick(unsigned long adj, unsigned long offset)
248{
249 unsigned long new_tick, tmp;
250
251 __asm__ __volatile__("rd %%asr24, %0\n\t"
252 "add %0, %2, %0\n\t"
253 "wr %0, 0, %%asr24\n\t"
254 "andn %0, %4, %1\n\t"
255 "add %1, %3, %1\n\t"
256 "wr %1, 0, %%asr25"
257 : "=&r" (new_tick), "=&r" (tmp)
258 : "r" (adj), "r" (offset), "r" (TICK_PRIV_BIT));
259
260 return new_tick;
261}
262
263static unsigned long stick_add_compare(unsigned long adj)
264{
265 unsigned long new_compare;
266
267 __asm__ __volatile__("rd %%asr25, %0\n\t"
268 "add %0, %1, %0\n\t"
269 "wr %0, 0, %%asr25"
270 : "=&r" (new_compare)
271 : "r" (adj));
272
273 return new_compare;
274}
275
David S. Millerd369ddd2005-07-10 15:45:11 -0700276static struct sparc64_tick_ops stick_operations __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 .init_tick = stick_init_tick,
278 .get_tick = stick_get_tick,
279 .get_compare = stick_get_compare,
280 .add_tick = stick_add_tick,
281 .add_compare = stick_add_compare,
282 .softint_mask = 1UL << 16,
283};
284
285/* On Hummingbird the STICK/STICK_CMPR register is implemented
286 * in I/O space. There are two 64-bit registers each, the
287 * first holds the low 32-bits of the value and the second holds
288 * the high 32-bits.
289 *
290 * Since STICK is constantly updating, we have to access it carefully.
291 *
292 * The sequence we use to read is:
Richard Mortimer9eb33942006-01-17 15:21:01 -0800293 * 1) read high
294 * 2) read low
295 * 3) read high again, if it rolled re-read both low and high again.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 *
297 * Writing STICK safely is also tricky:
298 * 1) write low to zero
299 * 2) write high
300 * 3) write low
301 */
302#define HBIRD_STICKCMP_ADDR 0x1fe0000f060UL
303#define HBIRD_STICK_ADDR 0x1fe0000f070UL
304
305static unsigned long __hbird_read_stick(void)
306{
307 unsigned long ret, tmp1, tmp2, tmp3;
Richard Mortimer9eb33942006-01-17 15:21:01 -0800308 unsigned long addr = HBIRD_STICK_ADDR+8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Richard Mortimer9eb33942006-01-17 15:21:01 -0800310 __asm__ __volatile__("ldxa [%1] %5, %2\n"
311 "1:\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 "sub %1, 0x8, %1\n\t"
Richard Mortimer9eb33942006-01-17 15:21:01 -0800313 "ldxa [%1] %5, %3\n\t"
314 "add %1, 0x8, %1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 "ldxa [%1] %5, %4\n\t"
316 "cmp %4, %2\n\t"
Richard Mortimer9eb33942006-01-17 15:21:01 -0800317 "bne,a,pn %%xcc, 1b\n\t"
318 " mov %4, %2\n\t"
319 "sllx %4, 32, %4\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 "or %3, %4, %0\n\t"
321 : "=&r" (ret), "=&r" (addr),
322 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3)
323 : "i" (ASI_PHYS_BYPASS_EC_E), "1" (addr));
324
325 return ret;
326}
327
328static unsigned long __hbird_read_compare(void)
329{
330 unsigned long low, high;
331 unsigned long addr = HBIRD_STICKCMP_ADDR;
332
333 __asm__ __volatile__("ldxa [%2] %3, %0\n\t"
334 "add %2, 0x8, %2\n\t"
335 "ldxa [%2] %3, %1"
336 : "=&r" (low), "=&r" (high), "=&r" (addr)
337 : "i" (ASI_PHYS_BYPASS_EC_E), "2" (addr));
338
339 return (high << 32UL) | low;
340}
341
342static void __hbird_write_stick(unsigned long val)
343{
344 unsigned long low = (val & 0xffffffffUL);
345 unsigned long high = (val >> 32UL);
346 unsigned long addr = HBIRD_STICK_ADDR;
347
348 __asm__ __volatile__("stxa %%g0, [%0] %4\n\t"
349 "add %0, 0x8, %0\n\t"
350 "stxa %3, [%0] %4\n\t"
351 "sub %0, 0x8, %0\n\t"
352 "stxa %2, [%0] %4"
353 : "=&r" (addr)
354 : "0" (addr), "r" (low), "r" (high),
355 "i" (ASI_PHYS_BYPASS_EC_E));
356}
357
358static void __hbird_write_compare(unsigned long val)
359{
360 unsigned long low = (val & 0xffffffffUL);
361 unsigned long high = (val >> 32UL);
362 unsigned long addr = HBIRD_STICKCMP_ADDR + 0x8UL;
363
364 __asm__ __volatile__("stxa %3, [%0] %4\n\t"
365 "sub %0, 0x8, %0\n\t"
366 "stxa %2, [%0] %4"
367 : "=&r" (addr)
368 : "0" (addr), "r" (low), "r" (high),
369 "i" (ASI_PHYS_BYPASS_EC_E));
370}
371
372static void hbtick_init_tick(unsigned long offset)
373{
374 unsigned long val;
375
376 tick_disable_protection();
377
378 /* XXX This seems to be necessary to 'jumpstart' Hummingbird
379 * XXX into actually sending STICK interrupts. I think because
380 * XXX of how we store %tick_cmpr in head.S this somehow resets the
381 * XXX {TICK + STICK} interrupt mux. -DaveM
382 */
383 __hbird_write_stick(__hbird_read_stick());
384
385 val = __hbird_read_stick() & ~TICK_PRIV_BIT;
386 __hbird_write_compare(val + offset);
387}
388
389static unsigned long hbtick_get_tick(void)
390{
391 return __hbird_read_stick() & ~TICK_PRIV_BIT;
392}
393
394static unsigned long hbtick_get_compare(void)
395{
396 return __hbird_read_compare();
397}
398
399static unsigned long hbtick_add_tick(unsigned long adj, unsigned long offset)
400{
401 unsigned long val;
402
403 val = __hbird_read_stick() + adj;
404 __hbird_write_stick(val);
405
406 val &= ~TICK_PRIV_BIT;
407 __hbird_write_compare(val + offset);
408
409 return val;
410}
411
412static unsigned long hbtick_add_compare(unsigned long adj)
413{
414 unsigned long val = __hbird_read_compare() + adj;
415
416 val &= ~TICK_PRIV_BIT;
417 __hbird_write_compare(val);
418
419 return val;
420}
421
David S. Millerd369ddd2005-07-10 15:45:11 -0700422static struct sparc64_tick_ops hbtick_operations __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 .init_tick = hbtick_init_tick,
424 .get_tick = hbtick_get_tick,
425 .get_compare = hbtick_get_compare,
426 .add_tick = hbtick_add_tick,
427 .add_compare = hbtick_add_compare,
428 .softint_mask = 1UL << 0,
429};
430
431/* timer_interrupt() needs to keep up the real-time clock,
432 * as well as call the "do_timer()" routine every clocktick
433 *
434 * NOTE: On SUN5 systems the ticker interrupt comes in using 2
435 * interrupts, one at level14 and one with softint bit 0.
436 */
David S. Millerd369ddd2005-07-10 15:45:11 -0700437unsigned long timer_tick_offset __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
David S. Millerd369ddd2005-07-10 15:45:11 -0700439static unsigned long timer_ticks_per_nsec_quotient __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441#define TICK_SIZE (tick_nsec / 1000)
442
443static inline void timer_check_rtc(void)
444{
445 /* last time the cmos clock got updated */
446 static long last_rtc_update;
447
448 /* Determine when to update the Mostek clock. */
john stultzb149ee22005-09-06 15:17:46 -0700449 if (ntp_synced() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 xtime.tv_sec > last_rtc_update + 660 &&
451 (xtime.tv_nsec / 1000) >= 500000 - ((unsigned) TICK_SIZE) / 2 &&
452 (xtime.tv_nsec / 1000) <= 500000 + ((unsigned) TICK_SIZE) / 2) {
453 if (set_rtc_mmss(xtime.tv_sec) == 0)
454 last_rtc_update = xtime.tv_sec;
455 else
456 last_rtc_update = xtime.tv_sec - 600;
457 /* do it again in 60 s */
458 }
459}
460
David S. Millerfd0504c32006-06-20 01:20:00 -0700461irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
David S. Millerd369ddd2005-07-10 15:45:11 -0700463 unsigned long ticks, compare, pstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 write_seqlock(&xtime_lock);
466
467 do {
468#ifndef CONFIG_SMP
469 profile_tick(CPU_PROFILING, regs);
470 update_process_times(user_mode(regs));
471#endif
472 do_timer(regs);
473
474 /* Guarantee that the following sequences execute
475 * uninterrupted.
476 */
477 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
478 "wrpr %0, %1, %%pstate"
479 : "=r" (pstate)
480 : "i" (PSTATE_IE));
481
David S. Millerd369ddd2005-07-10 15:45:11 -0700482 compare = tick_ops->add_compare(timer_tick_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 ticks = tick_ops->get_tick();
484
485 /* Restore PSTATE_IE. */
486 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
487 : /* no outputs */
488 : "r" (pstate));
David S. Millerd369ddd2005-07-10 15:45:11 -0700489 } while (time_after_eq(ticks, compare));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 timer_check_rtc();
492
493 write_sequnlock(&xtime_lock);
494
495 return IRQ_HANDLED;
496}
497
498#ifdef CONFIG_SMP
499void timer_tick_interrupt(struct pt_regs *regs)
500{
501 write_seqlock(&xtime_lock);
502
503 do_timer(regs);
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 timer_check_rtc();
506
507 write_sequnlock(&xtime_lock);
508}
509#endif
510
511/* Kick start a stopped clock (procedure from the Sun NVRAM/hostid FAQ). */
512static void __init kick_start_clock(void)
513{
Al Viroef0299b2005-04-24 12:28:36 -0700514 void __iomem *regs = mstk48t02_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 u8 sec, tmp;
516 int i, count;
517
518 prom_printf("CLOCK: Clock was stopped. Kick start ");
519
520 spin_lock_irq(&mostek_lock);
521
522 /* Turn on the kick start bit to start the oscillator. */
523 tmp = mostek_read(regs + MOSTEK_CREG);
524 tmp |= MSTK_CREG_WRITE;
525 mostek_write(regs + MOSTEK_CREG, tmp);
526 tmp = mostek_read(regs + MOSTEK_SEC);
527 tmp &= ~MSTK_STOP;
528 mostek_write(regs + MOSTEK_SEC, tmp);
529 tmp = mostek_read(regs + MOSTEK_HOUR);
530 tmp |= MSTK_KICK_START;
531 mostek_write(regs + MOSTEK_HOUR, tmp);
532 tmp = mostek_read(regs + MOSTEK_CREG);
533 tmp &= ~MSTK_CREG_WRITE;
534 mostek_write(regs + MOSTEK_CREG, tmp);
535
536 spin_unlock_irq(&mostek_lock);
537
538 /* Delay to allow the clock oscillator to start. */
539 sec = MSTK_REG_SEC(regs);
540 for (i = 0; i < 3; i++) {
541 while (sec == MSTK_REG_SEC(regs))
542 for (count = 0; count < 100000; count++)
543 /* nothing */ ;
544 prom_printf(".");
545 sec = MSTK_REG_SEC(regs);
546 }
547 prom_printf("\n");
548
549 spin_lock_irq(&mostek_lock);
550
551 /* Turn off kick start and set a "valid" time and date. */
552 tmp = mostek_read(regs + MOSTEK_CREG);
553 tmp |= MSTK_CREG_WRITE;
554 mostek_write(regs + MOSTEK_CREG, tmp);
555 tmp = mostek_read(regs + MOSTEK_HOUR);
556 tmp &= ~MSTK_KICK_START;
557 mostek_write(regs + MOSTEK_HOUR, tmp);
558 MSTK_SET_REG_SEC(regs,0);
559 MSTK_SET_REG_MIN(regs,0);
560 MSTK_SET_REG_HOUR(regs,0);
561 MSTK_SET_REG_DOW(regs,5);
562 MSTK_SET_REG_DOM(regs,1);
563 MSTK_SET_REG_MONTH(regs,8);
564 MSTK_SET_REG_YEAR(regs,1996 - MSTK_YEAR_ZERO);
565 tmp = mostek_read(regs + MOSTEK_CREG);
566 tmp &= ~MSTK_CREG_WRITE;
567 mostek_write(regs + MOSTEK_CREG, tmp);
568
569 spin_unlock_irq(&mostek_lock);
570
571 /* Ensure the kick start bit is off. If it isn't, turn it off. */
572 while (mostek_read(regs + MOSTEK_HOUR) & MSTK_KICK_START) {
573 prom_printf("CLOCK: Kick start still on!\n");
574
575 spin_lock_irq(&mostek_lock);
576
577 tmp = mostek_read(regs + MOSTEK_CREG);
578 tmp |= MSTK_CREG_WRITE;
579 mostek_write(regs + MOSTEK_CREG, tmp);
580
581 tmp = mostek_read(regs + MOSTEK_HOUR);
582 tmp &= ~MSTK_KICK_START;
583 mostek_write(regs + MOSTEK_HOUR, tmp);
584
585 tmp = mostek_read(regs + MOSTEK_CREG);
586 tmp &= ~MSTK_CREG_WRITE;
587 mostek_write(regs + MOSTEK_CREG, tmp);
588
589 spin_unlock_irq(&mostek_lock);
590 }
591
592 prom_printf("CLOCK: Kick start procedure successful.\n");
593}
594
595/* Return nonzero if the clock chip battery is low. */
596static int __init has_low_battery(void)
597{
Al Viroef0299b2005-04-24 12:28:36 -0700598 void __iomem *regs = mstk48t02_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 u8 data1, data2;
600
601 spin_lock_irq(&mostek_lock);
602
603 data1 = mostek_read(regs + MOSTEK_EEPROM); /* Read some data. */
604 mostek_write(regs + MOSTEK_EEPROM, ~data1); /* Write back the complement. */
605 data2 = mostek_read(regs + MOSTEK_EEPROM); /* Read back the complement. */
606 mostek_write(regs + MOSTEK_EEPROM, data1); /* Restore original value. */
607
608 spin_unlock_irq(&mostek_lock);
609
610 return (data1 == data2); /* Was the write blocked? */
611}
612
613/* Probe for the real time clock chip. */
614static void __init set_system_time(void)
615{
616 unsigned int year, mon, day, hour, min, sec;
Al Viroef0299b2005-04-24 12:28:36 -0700617 void __iomem *mregs = mstk48t02_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#ifdef CONFIG_PCI
619 unsigned long dregs = ds1287_regs;
620#else
621 unsigned long dregs = 0UL;
622#endif
623 u8 tmp;
624
625 if (!mregs && !dregs) {
626 prom_printf("Something wrong, clock regs not mapped yet.\n");
627 prom_halt();
628 }
629
630 if (mregs) {
631 spin_lock_irq(&mostek_lock);
632
633 /* Traditional Mostek chip. */
634 tmp = mostek_read(mregs + MOSTEK_CREG);
635 tmp |= MSTK_CREG_READ;
636 mostek_write(mregs + MOSTEK_CREG, tmp);
637
638 sec = MSTK_REG_SEC(mregs);
639 min = MSTK_REG_MIN(mregs);
640 hour = MSTK_REG_HOUR(mregs);
641 day = MSTK_REG_DOM(mregs);
642 mon = MSTK_REG_MONTH(mregs);
643 year = MSTK_CVT_YEAR( MSTK_REG_YEAR(mregs) );
644 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* Dallas 12887 RTC chip. */
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 do {
648 sec = CMOS_READ(RTC_SECONDS);
649 min = CMOS_READ(RTC_MINUTES);
650 hour = CMOS_READ(RTC_HOURS);
651 day = CMOS_READ(RTC_DAY_OF_MONTH);
652 mon = CMOS_READ(RTC_MONTH);
653 year = CMOS_READ(RTC_YEAR);
654 } while (sec != CMOS_READ(RTC_SECONDS));
Matt Mackall3dedf532006-03-28 01:56:01 -0800655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
657 BCD_TO_BIN(sec);
658 BCD_TO_BIN(min);
659 BCD_TO_BIN(hour);
660 BCD_TO_BIN(day);
661 BCD_TO_BIN(mon);
662 BCD_TO_BIN(year);
663 }
664 if ((year += 1900) < 1970)
665 year += 100;
666 }
667
668 xtime.tv_sec = mktime(year, mon, day, hour, min, sec);
669 xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
670 set_normalized_timespec(&wall_to_monotonic,
671 -xtime.tv_sec, -xtime.tv_nsec);
672
673 if (mregs) {
674 tmp = mostek_read(mregs + MOSTEK_CREG);
675 tmp &= ~MSTK_CREG_READ;
676 mostek_write(mregs + MOSTEK_CREG, tmp);
677
678 spin_unlock_irq(&mostek_lock);
679 }
680}
681
David S. Miller4bdff412006-02-11 01:01:55 -0800682/* davem suggests we keep this within the 4M locked kernel image */
683static u32 starfire_get_time(void)
684{
685 static char obp_gettod[32];
686 static u32 unix_tod;
687
688 sprintf(obp_gettod, "h# %08x unix-gettod",
689 (unsigned int) (long) &unix_tod);
690 prom_feval(obp_gettod);
691
692 return unix_tod;
693}
694
David S. Miller8ba706a2006-03-01 17:32:46 -0800695static int starfire_set_time(u32 val)
696{
697 /* Do nothing, time is set using the service processor
698 * console on this platform.
699 */
700 return 0;
701}
702
David S. Miller4bdff412006-02-11 01:01:55 -0800703static u32 hypervisor_get_time(void)
704{
705 register unsigned long func asm("%o5");
706 register unsigned long arg0 asm("%o0");
707 register unsigned long arg1 asm("%o1");
708 int retries = 10000;
709
710retry:
711 func = HV_FAST_TOD_GET;
712 arg0 = 0;
713 arg1 = 0;
714 __asm__ __volatile__("ta %6"
715 : "=&r" (func), "=&r" (arg0), "=&r" (arg1)
716 : "0" (func), "1" (arg0), "2" (arg1),
717 "i" (HV_FAST_TRAP));
718 if (arg0 == HV_EOK)
719 return arg1;
720 if (arg0 == HV_EWOULDBLOCK) {
721 if (--retries > 0) {
722 udelay(100);
723 goto retry;
724 }
725 printk(KERN_WARNING "SUN4V: tod_get() timed out.\n");
726 return 0;
727 }
728 printk(KERN_WARNING "SUN4V: tod_get() not supported.\n");
729 return 0;
730}
731
David S. Miller8ba706a2006-03-01 17:32:46 -0800732static int hypervisor_set_time(u32 secs)
733{
734 register unsigned long func asm("%o5");
735 register unsigned long arg0 asm("%o0");
736 int retries = 10000;
737
738retry:
739 func = HV_FAST_TOD_SET;
740 arg0 = secs;
741 __asm__ __volatile__("ta %4"
742 : "=&r" (func), "=&r" (arg0)
743 : "0" (func), "1" (arg0),
744 "i" (HV_FAST_TRAP));
745 if (arg0 == HV_EOK)
746 return 0;
747 if (arg0 == HV_EWOULDBLOCK) {
748 if (--retries > 0) {
749 udelay(100);
750 goto retry;
751 }
752 printk(KERN_WARNING "SUN4V: tod_set() timed out.\n");
753 return -EAGAIN;
754 }
755 printk(KERN_WARNING "SUN4V: tod_set() not supported.\n");
756 return -EOPNOTSUPP;
757}
758
David S. Miller690c8fd2006-06-22 19:12:03 -0700759static int __init clock_model_matches(char *model)
760{
761 if (strcmp(model, "mk48t02") &&
762 strcmp(model, "mk48t08") &&
763 strcmp(model, "mk48t59") &&
764 strcmp(model, "m5819") &&
765 strcmp(model, "m5819p") &&
766 strcmp(model, "m5823") &&
767 strcmp(model, "ds1287"))
768 return 0;
769
770 return 1;
771}
772
David S. Milleree5caf02006-06-29 14:36:52 -0700773static int __devinit clock_probe(struct of_device *op, const struct of_device_id *match)
David S. Miller690c8fd2006-06-22 19:12:03 -0700774{
David S. Milleree5caf02006-06-29 14:36:52 -0700775 struct device_node *dp = op->node;
776 char *model = of_get_property(dp, "model", NULL);
777 unsigned long size, flags;
778 void __iomem *regs;
David S. Miller690c8fd2006-06-22 19:12:03 -0700779
David S. Milleree5caf02006-06-29 14:36:52 -0700780 if (!model || !clock_model_matches(model))
781 return -ENODEV;
David S. Miller690c8fd2006-06-22 19:12:03 -0700782
David S. Miller91521482006-06-29 14:39:40 -0700783 /* On an Enterprise system there can be multiple mostek clocks.
784 * We should only match the one that is on the central FHC bus.
785 */
786 if (!strcmp(dp->parent, "fhc") &&
787 strcmp(dp->parent->parent, "central") != 0)
788 return -ENODEV;
789
David S. Milleree5caf02006-06-29 14:36:52 -0700790 size = (op->resource[0].end - op->resource[0].start) + 1;
791 regs = of_ioremap(&op->resource[0], 0, size, "clock");
792 if (!regs)
793 return -ENOMEM;
David S. Miller690c8fd2006-06-22 19:12:03 -0700794
David S. Miller690c8fd2006-06-22 19:12:03 -0700795 if (!strcmp(model, "ds1287") ||
796 !strcmp(model, "m5819") ||
797 !strcmp(model, "m5819p") ||
798 !strcmp(model, "m5823")) {
David S. Milleree5caf02006-06-29 14:36:52 -0700799 ds1287_regs = (unsigned long) regs;
800 } else if (model[5] == '0' && model[6] == '2') {
801 mstk48t02_regs = regs;
802 } else if(model[5] == '0' && model[6] == '8') {
803 mstk48t08_regs = regs;
804 mstk48t02_regs = mstk48t08_regs + MOSTEK_48T08_48T02;
David S. Miller690c8fd2006-06-22 19:12:03 -0700805 } else {
David S. Milleree5caf02006-06-29 14:36:52 -0700806 mstk48t59_regs = regs;
David S. Miller690c8fd2006-06-22 19:12:03 -0700807 mstk48t02_regs = mstk48t59_regs + MOSTEK_48T59_48T02;
808 }
David S. Miller690c8fd2006-06-22 19:12:03 -0700809
David S. Milleree5caf02006-06-29 14:36:52 -0700810 printk(KERN_INFO "%s: Clock regs at %p\n", dp->full_name, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
David S. Miller690c8fd2006-06-22 19:12:03 -0700812 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
David S. Millerb4bca262005-04-21 21:42:34 -0700814 if (mstk48t02_regs != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /* Report a low battery voltage condition. */
816 if (has_low_battery())
817 prom_printf("NVRAM: Low battery voltage!\n");
818
819 /* Kick start the clock if it is completely stopped. */
820 if (mostek_read(mstk48t02_regs + MOSTEK_SEC) & MSTK_STOP)
821 kick_start_clock();
822 }
823
824 set_system_time();
825
826 local_irq_restore(flags);
David S. Milleree5caf02006-06-29 14:36:52 -0700827
828 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
David S. Milleree5caf02006-06-29 14:36:52 -0700831static struct of_device_id clock_match[] = {
832 {
833 .name = "eeprom",
834 },
835 {
836 .name = "rtc",
837 },
838 {},
839};
840
841static struct of_platform_driver clock_driver = {
842 .name = "clock",
843 .match_table = clock_match,
844 .probe = clock_probe,
845};
846
847static int __init clock_init(void)
848{
849 if (this_is_starfire) {
850 xtime.tv_sec = starfire_get_time();
851 xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
852 set_normalized_timespec(&wall_to_monotonic,
853 -xtime.tv_sec, -xtime.tv_nsec);
854 return 0;
855 }
856 if (tlb_type == hypervisor) {
857 xtime.tv_sec = hypervisor_get_time();
858 xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
859 set_normalized_timespec(&wall_to_monotonic,
860 -xtime.tv_sec, -xtime.tv_nsec);
861 return 0;
862 }
863
864 return of_register_driver(&clock_driver, &of_bus_type);
865}
866
867/* Must be after subsys_initcall() so that busses are probed. Must
868 * be before device_initcall() because things like the RTC driver
869 * need to see the clock registers.
870 */
871fs_initcall(clock_init);
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873/* This is gets the master TICK_INT timer going. */
874static unsigned long sparc64_init_timers(void)
875{
David S. Miller07f8e5f2006-06-21 23:34:02 -0700876 struct device_node *dp;
877 struct property *prop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 unsigned long clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879#ifdef CONFIG_SMP
880 extern void smp_tick_init(void);
881#endif
882
David S. Miller07f8e5f2006-06-21 23:34:02 -0700883 dp = of_find_node_by_path("/");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (tlb_type == spitfire) {
885 unsigned long ver, manuf, impl;
886
887 __asm__ __volatile__ ("rdpr %%ver, %0"
888 : "=&r" (ver));
889 manuf = ((ver >> 48) & 0xffff);
890 impl = ((ver >> 32) & 0xffff);
891 if (manuf == 0x17 && impl == 0x13) {
892 /* Hummingbird, aka Ultra-IIe */
893 tick_ops = &hbtick_operations;
David S. Miller07f8e5f2006-06-21 23:34:02 -0700894 prop = of_find_property(dp, "stick-frequency", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 } else {
896 tick_ops = &tick_operations;
David S. Miller07f8e5f2006-06-21 23:34:02 -0700897 cpu_find_by_instance(0, &dp, NULL);
898 prop = of_find_property(dp, "clock-frequency", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900 } else {
901 tick_ops = &stick_operations;
David S. Miller07f8e5f2006-06-21 23:34:02 -0700902 prop = of_find_property(dp, "stick-frequency", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
David S. Miller07f8e5f2006-06-21 23:34:02 -0700904 clock = *(unsigned int *) prop->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 timer_tick_offset = clock / HZ;
906
907#ifdef CONFIG_SMP
908 smp_tick_init();
909#endif
910
911 return clock;
912}
913
David S. Millerfd0504c32006-06-20 01:20:00 -0700914static void sparc64_start_timers(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 unsigned long pstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 /* Guarantee that the following sequences execute
919 * uninterrupted.
920 */
921 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
922 "wrpr %0, %1, %%pstate"
923 : "=r" (pstate)
924 : "i" (PSTATE_IE));
925
926 tick_ops->init_tick(timer_tick_offset);
927
928 /* Restore PSTATE_IE. */
929 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
930 : /* no outputs */
931 : "r" (pstate));
932
933 local_irq_enable();
934}
935
936struct freq_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 unsigned long clock_tick_ref;
938 unsigned int ref_freq;
939};
David S. Miller3763be32006-02-17 12:33:13 -0800940static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942unsigned long sparc64_get_clock_tick(unsigned int cpu)
943{
944 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
945
946 if (ft->clock_tick_ref)
947 return ft->clock_tick_ref;
948 return cpu_data(cpu).clock_tick;
949}
950
951#ifdef CONFIG_CPU_FREQ
952
953static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
954 void *data)
955{
956 struct cpufreq_freqs *freq = data;
957 unsigned int cpu = freq->cpu;
958 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
959
960 if (!ft->ref_freq) {
961 ft->ref_freq = freq->old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 ft->clock_tick_ref = cpu_data(cpu).clock_tick;
963 }
964 if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
965 (val == CPUFREQ_POSTCHANGE && freq->old > freq->new) ||
966 (val == CPUFREQ_RESUMECHANGE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 cpu_data(cpu).clock_tick =
968 cpufreq_scale(ft->clock_tick_ref,
969 ft->ref_freq,
970 freq->new);
971 }
972
973 return 0;
974}
975
976static struct notifier_block sparc64_cpufreq_notifier_block = {
977 .notifier_call = sparc64_cpufreq_notifier
978};
979
980#endif /* CONFIG_CPU_FREQ */
981
982static struct time_interpolator sparc64_cpu_interpolator = {
983 .source = TIME_SOURCE_CPU,
984 .shift = 16,
985 .mask = 0xffffffffffffffffLL
986};
987
988/* The quotient formula is taken from the IA64 port. */
989#define SPARC64_NSEC_PER_CYC_SHIFT 30UL
990void __init time_init(void)
991{
992 unsigned long clock = sparc64_init_timers();
993
994 sparc64_cpu_interpolator.frequency = clock;
995 register_time_interpolator(&sparc64_cpu_interpolator);
996
997 /* Now that the interpolator is registered, it is
998 * safe to start the timer ticking.
999 */
David S. Millerfd0504c32006-06-20 01:20:00 -07001000 sparc64_start_timers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 timer_ticks_per_nsec_quotient =
1003 (((NSEC_PER_SEC << SPARC64_NSEC_PER_CYC_SHIFT) +
1004 (clock / 2)) / clock);
1005
1006#ifdef CONFIG_CPU_FREQ
1007 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block,
1008 CPUFREQ_TRANSITION_NOTIFIER);
1009#endif
1010}
1011
1012unsigned long long sched_clock(void)
1013{
1014 unsigned long ticks = tick_ops->get_tick();
1015
1016 return (ticks * timer_ticks_per_nsec_quotient)
1017 >> SPARC64_NSEC_PER_CYC_SHIFT;
1018}
1019
1020static int set_rtc_mmss(unsigned long nowtime)
1021{
1022 int real_seconds, real_minutes, chip_minutes;
Al Viroef0299b2005-04-24 12:28:36 -07001023 void __iomem *mregs = mstk48t02_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024#ifdef CONFIG_PCI
1025 unsigned long dregs = ds1287_regs;
1026#else
1027 unsigned long dregs = 0UL;
1028#endif
1029 unsigned long flags;
1030 u8 tmp;
1031
1032 /*
1033 * Not having a register set can lead to trouble.
1034 * Also starfire doesn't have a tod clock.
1035 */
1036 if (!mregs && !dregs)
1037 return -1;
1038
1039 if (mregs) {
1040 spin_lock_irqsave(&mostek_lock, flags);
1041
1042 /* Read the current RTC minutes. */
1043 tmp = mostek_read(mregs + MOSTEK_CREG);
1044 tmp |= MSTK_CREG_READ;
1045 mostek_write(mregs + MOSTEK_CREG, tmp);
1046
1047 chip_minutes = MSTK_REG_MIN(mregs);
1048
1049 tmp = mostek_read(mregs + MOSTEK_CREG);
1050 tmp &= ~MSTK_CREG_READ;
1051 mostek_write(mregs + MOSTEK_CREG, tmp);
1052
1053 /*
1054 * since we're only adjusting minutes and seconds,
1055 * don't interfere with hour overflow. This avoids
1056 * messing with unknown time zones but requires your
1057 * RTC not to be off by more than 15 minutes
1058 */
1059 real_seconds = nowtime % 60;
1060 real_minutes = nowtime / 60;
1061 if (((abs(real_minutes - chip_minutes) + 15)/30) & 1)
1062 real_minutes += 30; /* correct for half hour time zone */
1063 real_minutes %= 60;
1064
1065 if (abs(real_minutes - chip_minutes) < 30) {
1066 tmp = mostek_read(mregs + MOSTEK_CREG);
1067 tmp |= MSTK_CREG_WRITE;
1068 mostek_write(mregs + MOSTEK_CREG, tmp);
1069
1070 MSTK_SET_REG_SEC(mregs,real_seconds);
1071 MSTK_SET_REG_MIN(mregs,real_minutes);
1072
1073 tmp = mostek_read(mregs + MOSTEK_CREG);
1074 tmp &= ~MSTK_CREG_WRITE;
1075 mostek_write(mregs + MOSTEK_CREG, tmp);
1076
1077 spin_unlock_irqrestore(&mostek_lock, flags);
1078
1079 return 0;
1080 } else {
1081 spin_unlock_irqrestore(&mostek_lock, flags);
1082
1083 return -1;
1084 }
1085 } else {
1086 int retval = 0;
1087 unsigned char save_control, save_freq_select;
1088
1089 /* Stolen from arch/i386/kernel/time.c, see there for
1090 * credits and descriptive comments.
1091 */
1092 spin_lock_irqsave(&rtc_lock, flags);
1093 save_control = CMOS_READ(RTC_CONTROL); /* tell the clock it's being set */
1094 CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL);
1095
1096 save_freq_select = CMOS_READ(RTC_FREQ_SELECT); /* stop and reset prescaler */
1097 CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
1098
1099 chip_minutes = CMOS_READ(RTC_MINUTES);
1100 if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
1101 BCD_TO_BIN(chip_minutes);
1102 real_seconds = nowtime % 60;
1103 real_minutes = nowtime / 60;
1104 if (((abs(real_minutes - chip_minutes) + 15)/30) & 1)
1105 real_minutes += 30;
1106 real_minutes %= 60;
1107
1108 if (abs(real_minutes - chip_minutes) < 30) {
1109 if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
1110 BIN_TO_BCD(real_seconds);
1111 BIN_TO_BCD(real_minutes);
1112 }
1113 CMOS_WRITE(real_seconds,RTC_SECONDS);
1114 CMOS_WRITE(real_minutes,RTC_MINUTES);
1115 } else {
1116 printk(KERN_WARNING
1117 "set_rtc_mmss: can't update from %d to %d\n",
1118 chip_minutes, real_minutes);
1119 retval = -1;
1120 }
1121
1122 CMOS_WRITE(save_control, RTC_CONTROL);
1123 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
1124 spin_unlock_irqrestore(&rtc_lock, flags);
1125
1126 return retval;
1127 }
1128}
David S. Miller8ba706a2006-03-01 17:32:46 -08001129
1130#define RTC_IS_OPEN 0x01 /* means /dev/rtc is in use */
1131static unsigned char mini_rtc_status; /* bitmapped status byte. */
1132
1133/* months start at 0 now */
1134static unsigned char days_in_mo[] =
1135{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
1136
1137#define FEBRUARY 2
1138#define STARTOFTIME 1970
1139#define SECDAY 86400L
1140#define SECYR (SECDAY * 365)
1141#define leapyear(year) ((year) % 4 == 0 && \
1142 ((year) % 100 != 0 || (year) % 400 == 0))
1143#define days_in_year(a) (leapyear(a) ? 366 : 365)
1144#define days_in_month(a) (month_days[(a) - 1])
1145
1146static int month_days[12] = {
1147 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
1148};
1149
1150/*
1151 * This only works for the Gregorian calendar - i.e. after 1752 (in the UK)
1152 */
1153static void GregorianDay(struct rtc_time * tm)
1154{
1155 int leapsToDate;
1156 int lastYear;
1157 int day;
1158 int MonthOffset[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
1159
1160 lastYear = tm->tm_year - 1;
1161
1162 /*
1163 * Number of leap corrections to apply up to end of last year
1164 */
1165 leapsToDate = lastYear / 4 - lastYear / 100 + lastYear / 400;
1166
1167 /*
1168 * This year is a leap year if it is divisible by 4 except when it is
1169 * divisible by 100 unless it is divisible by 400
1170 *
1171 * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 was
1172 */
1173 day = tm->tm_mon > 2 && leapyear(tm->tm_year);
1174
1175 day += lastYear*365 + leapsToDate + MonthOffset[tm->tm_mon-1] +
1176 tm->tm_mday;
1177
1178 tm->tm_wday = day % 7;
1179}
1180
1181static void to_tm(int tim, struct rtc_time *tm)
1182{
1183 register int i;
1184 register long hms, day;
1185
1186 day = tim / SECDAY;
1187 hms = tim % SECDAY;
1188
1189 /* Hours, minutes, seconds are easy */
1190 tm->tm_hour = hms / 3600;
1191 tm->tm_min = (hms % 3600) / 60;
1192 tm->tm_sec = (hms % 3600) % 60;
1193
1194 /* Number of years in days */
1195 for (i = STARTOFTIME; day >= days_in_year(i); i++)
1196 day -= days_in_year(i);
1197 tm->tm_year = i;
1198
1199 /* Number of months in days left */
1200 if (leapyear(tm->tm_year))
1201 days_in_month(FEBRUARY) = 29;
1202 for (i = 1; day >= days_in_month(i); i++)
1203 day -= days_in_month(i);
1204 days_in_month(FEBRUARY) = 28;
1205 tm->tm_mon = i;
1206
1207 /* Days are what is left over (+1) from all that. */
1208 tm->tm_mday = day + 1;
1209
1210 /*
1211 * Determine the day of week
1212 */
1213 GregorianDay(tm);
1214}
1215
1216/* Both Starfire and SUN4V give us seconds since Jan 1st, 1970,
1217 * aka Unix time. So we have to convert to/from rtc_time.
1218 */
1219static inline void mini_get_rtc_time(struct rtc_time *time)
1220{
1221 unsigned long flags;
1222 u32 seconds;
1223
1224 spin_lock_irqsave(&rtc_lock, flags);
1225 seconds = 0;
1226 if (this_is_starfire)
1227 seconds = starfire_get_time();
1228 else if (tlb_type == hypervisor)
1229 seconds = hypervisor_get_time();
1230 spin_unlock_irqrestore(&rtc_lock, flags);
1231
1232 to_tm(seconds, time);
David S. Millerc4f8ef72006-03-02 20:28:34 -08001233 time->tm_year -= 1900;
1234 time->tm_mon -= 1;
David S. Miller8ba706a2006-03-01 17:32:46 -08001235}
1236
1237static inline int mini_set_rtc_time(struct rtc_time *time)
1238{
1239 u32 seconds = mktime(time->tm_year + 1900, time->tm_mon + 1,
1240 time->tm_mday, time->tm_hour,
1241 time->tm_min, time->tm_sec);
1242 unsigned long flags;
1243 int err;
1244
1245 spin_lock_irqsave(&rtc_lock, flags);
1246 err = -ENODEV;
1247 if (this_is_starfire)
1248 err = starfire_set_time(seconds);
1249 else if (tlb_type == hypervisor)
1250 err = hypervisor_set_time(seconds);
1251 spin_unlock_irqrestore(&rtc_lock, flags);
1252
1253 return err;
1254}
1255
1256static int mini_rtc_ioctl(struct inode *inode, struct file *file,
1257 unsigned int cmd, unsigned long arg)
1258{
1259 struct rtc_time wtime;
1260 void __user *argp = (void __user *)arg;
1261
1262 switch (cmd) {
1263
1264 case RTC_PLL_GET:
1265 return -EINVAL;
1266
1267 case RTC_PLL_SET:
1268 return -EINVAL;
1269
1270 case RTC_UIE_OFF: /* disable ints from RTC updates. */
1271 return 0;
1272
1273 case RTC_UIE_ON: /* enable ints for RTC updates. */
1274 return -EINVAL;
1275
1276 case RTC_RD_TIME: /* Read the time/date from RTC */
1277 /* this doesn't get week-day, who cares */
1278 memset(&wtime, 0, sizeof(wtime));
1279 mini_get_rtc_time(&wtime);
1280
1281 return copy_to_user(argp, &wtime, sizeof(wtime)) ? -EFAULT : 0;
1282
1283 case RTC_SET_TIME: /* Set the RTC */
1284 {
1285 int year;
1286 unsigned char leap_yr;
1287
1288 if (!capable(CAP_SYS_TIME))
1289 return -EACCES;
1290
1291 if (copy_from_user(&wtime, argp, sizeof(wtime)))
1292 return -EFAULT;
1293
1294 year = wtime.tm_year + 1900;
1295 leap_yr = ((!(year % 4) && (year % 100)) ||
1296 !(year % 400));
1297
1298 if ((wtime.tm_mon < 0 || wtime.tm_mon > 11) || (wtime.tm_mday < 1))
1299 return -EINVAL;
1300
1301 if (wtime.tm_mday < 0 || wtime.tm_mday >
1302 (days_in_mo[wtime.tm_mon] + ((wtime.tm_mon == 1) && leap_yr)))
1303 return -EINVAL;
1304
1305 if (wtime.tm_hour < 0 || wtime.tm_hour >= 24 ||
1306 wtime.tm_min < 0 || wtime.tm_min >= 60 ||
1307 wtime.tm_sec < 0 || wtime.tm_sec >= 60)
1308 return -EINVAL;
1309
1310 return mini_set_rtc_time(&wtime);
1311 }
1312 }
1313
1314 return -EINVAL;
1315}
1316
1317static int mini_rtc_open(struct inode *inode, struct file *file)
1318{
1319 if (mini_rtc_status & RTC_IS_OPEN)
1320 return -EBUSY;
1321
1322 mini_rtc_status |= RTC_IS_OPEN;
1323
1324 return 0;
1325}
1326
1327static int mini_rtc_release(struct inode *inode, struct file *file)
1328{
1329 mini_rtc_status &= ~RTC_IS_OPEN;
1330 return 0;
1331}
1332
1333
1334static struct file_operations mini_rtc_fops = {
1335 .owner = THIS_MODULE,
1336 .ioctl = mini_rtc_ioctl,
1337 .open = mini_rtc_open,
1338 .release = mini_rtc_release,
1339};
1340
1341static struct miscdevice rtc_mini_dev =
1342{
1343 .minor = RTC_MINOR,
1344 .name = "rtc",
1345 .fops = &mini_rtc_fops,
1346};
1347
1348static int __init rtc_mini_init(void)
1349{
1350 int retval;
1351
1352 if (tlb_type != hypervisor && !this_is_starfire)
1353 return -ENODEV;
1354
1355 printk(KERN_INFO "Mini RTC Driver\n");
1356
1357 retval = misc_register(&rtc_mini_dev);
1358 if (retval < 0)
1359 return retval;
1360
1361 return 0;
1362}
1363
1364static void __exit rtc_mini_exit(void)
1365{
1366 misc_deregister(&rtc_mini_dev);
1367}
1368
1369
1370module_init(rtc_mini_init);
1371module_exit(rtc_mini_exit);