blob: 5e199a0e43786d18bbf49565898dc6b38cec8337 [file] [log] [blame]
David S. Millercf3d7c12008-03-26 01:11:55 -07001/* time.c: UltraSparc timer and TOD clock support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Millercf3d7c12008-03-26 01:11:55 -07003 * Copyright (C) 1997, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
5 *
6 * Based largely on code which is:
7 *
8 * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
12#include <linux/module.h>
13#include <linux/sched.h>
Arnd Bergmann09de3612008-05-20 19:16:50 +020014#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/param.h>
17#include <linux/string.h>
18#include <linux/mm.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>
David S. Miller8ba706a2006-03-01 17:32:46 -080031#include <linux/miscdevice.h>
32#include <linux/rtc.h>
David S. Miller1518e7e2008-08-28 21:06:27 -070033#include <linux/rtc/m48t59.h>
David S. Miller777a4472007-02-22 06:24:10 -080034#include <linux/kernel_stat.h>
David S. Miller112f4872007-03-05 15:28:37 -080035#include <linux/clockchips.h>
36#include <linux/clocksource.h>
Stephen Rothwell764f2572008-08-07 15:33:36 -070037#include <linux/of_device.h>
David S. Miller1518e7e2008-08-28 21:06:27 -070038#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <asm/oplib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/timer.h>
42#include <asm/irq.h>
43#include <asm/io.h>
David S. Millerff0d2fc2006-06-29 15:28:05 -070044#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/starfire.h>
46#include <asm/smp.h>
47#include <asm/sections.h>
48#include <asm/cpudata.h>
David S. Miller8ba706a2006-03-01 17:32:46 -080049#include <asm/uaccess.h>
Al Viro63540ba2006-10-09 11:51:14 +010050#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David S. Millercf3d7c12008-03-26 01:11:55 -070052#include "entry.h"
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054DEFINE_SPINLOCK(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define TICK_PRIV_BIT (1UL << 63)
David S. Miller112f4872007-03-05 15:28:37 -080057#define TICKCMP_IRQ_BIT (1UL << 63)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#ifdef CONFIG_SMP
60unsigned long profile_pc(struct pt_regs *regs)
61{
62 unsigned long pc = instruction_pointer(regs);
63
64 if (in_lock_functions(pc))
65 return regs->u_regs[UREG_RETPC];
66 return pc;
67}
68EXPORT_SYMBOL(profile_pc);
69#endif
70
71static void tick_disable_protection(void)
72{
73 /* Set things up so user can access tick register for profiling
74 * purposes. Also workaround BB_ERRATA_1 by doing a dummy
75 * read back of %tick after writing it.
76 */
77 __asm__ __volatile__(
78 " ba,pt %%xcc, 1f\n"
79 " nop\n"
80 " .align 64\n"
81 "1: rd %%tick, %%g2\n"
82 " add %%g2, 6, %%g2\n"
83 " andn %%g2, %0, %%g2\n"
84 " wrpr %%g2, 0, %%tick\n"
85 " rdpr %%tick, %%g0"
86 : /* no outputs */
87 : "r" (TICK_PRIV_BIT)
88 : "g2");
89}
90
David S. Miller112f4872007-03-05 15:28:37 -080091static void tick_disable_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 __asm__ __volatile__(
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 " ba,pt %%xcc, 1f\n"
David S. Miller112f4872007-03-05 15:28:37 -080095 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 " .align 64\n"
David S. Miller112f4872007-03-05 15:28:37 -080097 "1: wr %0, 0x0, %%tick_cmpr\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 " rd %%tick_cmpr, %%g0"
99 : /* no outputs */
David S. Miller112f4872007-03-05 15:28:37 -0800100 : "r" (TICKCMP_IRQ_BIT));
101}
102
103static void tick_init_tick(void)
104{
105 tick_disable_protection();
106 tick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109static unsigned long tick_get_tick(void)
110{
111 unsigned long ret;
112
113 __asm__ __volatile__("rd %%tick, %0\n\t"
114 "mov %0, %0"
115 : "=r" (ret));
116
117 return ret & ~TICK_PRIV_BIT;
118}
119
David S. Miller112f4872007-03-05 15:28:37 -0800120static int tick_add_compare(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
David S. Miller112f4872007-03-05 15:28:37 -0800122 unsigned long orig_tick, new_tick, new_compare;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
David S. Miller112f4872007-03-05 15:28:37 -0800124 __asm__ __volatile__("rd %%tick, %0"
125 : "=r" (orig_tick));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
David S. Miller112f4872007-03-05 15:28:37 -0800127 orig_tick &= ~TICKCMP_IRQ_BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* Workaround for Spitfire Errata (#54 I think??), I discovered
130 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch
131 * number 103640.
132 *
133 * On Blackbird writes to %tick_cmpr can fail, the
134 * workaround seems to be to execute the wr instruction
135 * at the start of an I-cache line, and perform a dummy
136 * read back from %tick_cmpr right after writing to it. -DaveM
137 */
David S. Miller112f4872007-03-05 15:28:37 -0800138 __asm__ __volatile__("ba,pt %%xcc, 1f\n\t"
139 " add %1, %2, %0\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 ".align 64\n"
141 "1:\n\t"
142 "wr %0, 0, %%tick_cmpr\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800143 "rd %%tick_cmpr, %%g0\n\t"
144 : "=r" (new_compare)
145 : "r" (orig_tick), "r" (adj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
David S. Miller112f4872007-03-05 15:28:37 -0800147 __asm__ __volatile__("rd %%tick, %0"
148 : "=r" (new_tick));
149 new_tick &= ~TICKCMP_IRQ_BIT;
150
151 return ((long)(new_tick - (orig_tick+adj))) > 0L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
David S. Miller112f4872007-03-05 15:28:37 -0800154static unsigned long tick_add_tick(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
David S. Miller112f4872007-03-05 15:28:37 -0800156 unsigned long new_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* Also need to handle Blackbird bug here too. */
159 __asm__ __volatile__("rd %%tick, %0\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800160 "add %0, %1, %0\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 "wrpr %0, 0, %%tick\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800162 : "=&r" (new_tick)
163 : "r" (adj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 return new_tick;
166}
167
David S. Millerd369ddd2005-07-10 15:45:11 -0700168static struct sparc64_tick_ops tick_operations __read_mostly = {
David S. Miller112f4872007-03-05 15:28:37 -0800169 .name = "tick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .init_tick = tick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800171 .disable_irq = tick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 .get_tick = tick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .add_tick = tick_add_tick,
174 .add_compare = tick_add_compare,
175 .softint_mask = 1UL << 0,
176};
177
David S. Millerfc321492005-11-07 14:10:10 -0800178struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations;
179
David S. Miller112f4872007-03-05 15:28:37 -0800180static void stick_disable_irq(void)
181{
182 __asm__ __volatile__(
183 "wr %0, 0x0, %%asr25"
184 : /* no outputs */
185 : "r" (TICKCMP_IRQ_BIT));
186}
187
188static void stick_init_tick(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
David S. Miller7aa62642006-02-11 23:14:59 -0800190 /* Writes to the %tick and %stick register are not
191 * allowed on sun4v. The Hypervisor controls that
192 * bit, per-strand.
193 */
194 if (tlb_type != hypervisor) {
195 tick_disable_protection();
David S. Miller112f4872007-03-05 15:28:37 -0800196 tick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
David S. Miller7aa62642006-02-11 23:14:59 -0800198 /* Let the user get at STICK too. */
199 __asm__ __volatile__(
200 " rd %%asr24, %%g2\n"
201 " andn %%g2, %0, %%g2\n"
202 " wr %%g2, 0, %%asr24"
203 : /* no outputs */
204 : "r" (TICK_PRIV_BIT)
205 : "g1", "g2");
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
David S. Miller112f4872007-03-05 15:28:37 -0800208 stick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211static unsigned long stick_get_tick(void)
212{
213 unsigned long ret;
214
215 __asm__ __volatile__("rd %%asr24, %0"
216 : "=r" (ret));
217
218 return ret & ~TICK_PRIV_BIT;
219}
220
David S. Miller112f4872007-03-05 15:28:37 -0800221static unsigned long stick_add_tick(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
David S. Miller112f4872007-03-05 15:28:37 -0800223 unsigned long new_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 __asm__ __volatile__("rd %%asr24, %0\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800226 "add %0, %1, %0\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 "wr %0, 0, %%asr24\n\t"
David S. Miller112f4872007-03-05 15:28:37 -0800228 : "=&r" (new_tick)
229 : "r" (adj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 return new_tick;
232}
233
David S. Miller112f4872007-03-05 15:28:37 -0800234static int stick_add_compare(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
David S. Miller112f4872007-03-05 15:28:37 -0800236 unsigned long orig_tick, new_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
David S. Miller112f4872007-03-05 15:28:37 -0800238 __asm__ __volatile__("rd %%asr24, %0"
239 : "=r" (orig_tick));
240 orig_tick &= ~TICKCMP_IRQ_BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
David S. Miller112f4872007-03-05 15:28:37 -0800242 __asm__ __volatile__("wr %0, 0, %%asr25"
243 : /* no outputs */
244 : "r" (orig_tick + adj));
245
246 __asm__ __volatile__("rd %%asr24, %0"
247 : "=r" (new_tick));
248 new_tick &= ~TICKCMP_IRQ_BIT;
249
250 return ((long)(new_tick - (orig_tick+adj))) > 0L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
David S. Millerd369ddd2005-07-10 15:45:11 -0700253static struct sparc64_tick_ops stick_operations __read_mostly = {
David S. Miller112f4872007-03-05 15:28:37 -0800254 .name = "stick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 .init_tick = stick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800256 .disable_irq = stick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 .get_tick = stick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .add_tick = stick_add_tick,
259 .add_compare = stick_add_compare,
260 .softint_mask = 1UL << 16,
261};
262
263/* On Hummingbird the STICK/STICK_CMPR register is implemented
264 * in I/O space. There are two 64-bit registers each, the
265 * first holds the low 32-bits of the value and the second holds
266 * the high 32-bits.
267 *
268 * Since STICK is constantly updating, we have to access it carefully.
269 *
270 * The sequence we use to read is:
Richard Mortimer9eb33942006-01-17 15:21:01 -0800271 * 1) read high
272 * 2) read low
273 * 3) read high again, if it rolled re-read both low and high again.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 *
275 * Writing STICK safely is also tricky:
276 * 1) write low to zero
277 * 2) write high
278 * 3) write low
279 */
280#define HBIRD_STICKCMP_ADDR 0x1fe0000f060UL
281#define HBIRD_STICK_ADDR 0x1fe0000f070UL
282
283static unsigned long __hbird_read_stick(void)
284{
285 unsigned long ret, tmp1, tmp2, tmp3;
Richard Mortimer9eb33942006-01-17 15:21:01 -0800286 unsigned long addr = HBIRD_STICK_ADDR+8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Richard Mortimer9eb33942006-01-17 15:21:01 -0800288 __asm__ __volatile__("ldxa [%1] %5, %2\n"
289 "1:\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 "sub %1, 0x8, %1\n\t"
Richard Mortimer9eb33942006-01-17 15:21:01 -0800291 "ldxa [%1] %5, %3\n\t"
292 "add %1, 0x8, %1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 "ldxa [%1] %5, %4\n\t"
294 "cmp %4, %2\n\t"
Richard Mortimer9eb33942006-01-17 15:21:01 -0800295 "bne,a,pn %%xcc, 1b\n\t"
296 " mov %4, %2\n\t"
297 "sllx %4, 32, %4\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 "or %3, %4, %0\n\t"
299 : "=&r" (ret), "=&r" (addr),
300 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3)
301 : "i" (ASI_PHYS_BYPASS_EC_E), "1" (addr));
302
303 return ret;
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static void __hbird_write_stick(unsigned long val)
307{
308 unsigned long low = (val & 0xffffffffUL);
309 unsigned long high = (val >> 32UL);
310 unsigned long addr = HBIRD_STICK_ADDR;
311
312 __asm__ __volatile__("stxa %%g0, [%0] %4\n\t"
313 "add %0, 0x8, %0\n\t"
314 "stxa %3, [%0] %4\n\t"
315 "sub %0, 0x8, %0\n\t"
316 "stxa %2, [%0] %4"
317 : "=&r" (addr)
318 : "0" (addr), "r" (low), "r" (high),
319 "i" (ASI_PHYS_BYPASS_EC_E));
320}
321
322static void __hbird_write_compare(unsigned long val)
323{
324 unsigned long low = (val & 0xffffffffUL);
325 unsigned long high = (val >> 32UL);
326 unsigned long addr = HBIRD_STICKCMP_ADDR + 0x8UL;
327
328 __asm__ __volatile__("stxa %3, [%0] %4\n\t"
329 "sub %0, 0x8, %0\n\t"
330 "stxa %2, [%0] %4"
331 : "=&r" (addr)
332 : "0" (addr), "r" (low), "r" (high),
333 "i" (ASI_PHYS_BYPASS_EC_E));
334}
335
David S. Miller112f4872007-03-05 15:28:37 -0800336static void hbtick_disable_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
David S. Miller112f4872007-03-05 15:28:37 -0800338 __hbird_write_compare(TICKCMP_IRQ_BIT);
339}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
David S. Miller112f4872007-03-05 15:28:37 -0800341static void hbtick_init_tick(void)
342{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 tick_disable_protection();
344
345 /* XXX This seems to be necessary to 'jumpstart' Hummingbird
346 * XXX into actually sending STICK interrupts. I think because
347 * XXX of how we store %tick_cmpr in head.S this somehow resets the
348 * XXX {TICK + STICK} interrupt mux. -DaveM
349 */
350 __hbird_write_stick(__hbird_read_stick());
351
David S. Miller112f4872007-03-05 15:28:37 -0800352 hbtick_disable_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355static unsigned long hbtick_get_tick(void)
356{
357 return __hbird_read_stick() & ~TICK_PRIV_BIT;
358}
359
David S. Miller112f4872007-03-05 15:28:37 -0800360static unsigned long hbtick_add_tick(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 unsigned long val;
363
364 val = __hbird_read_stick() + adj;
365 __hbird_write_stick(val);
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return val;
368}
369
David S. Miller112f4872007-03-05 15:28:37 -0800370static int hbtick_add_compare(unsigned long adj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
David S. Miller112f4872007-03-05 15:28:37 -0800372 unsigned long val = __hbird_read_stick();
373 unsigned long val2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
David S. Miller112f4872007-03-05 15:28:37 -0800375 val &= ~TICKCMP_IRQ_BIT;
376 val += adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 __hbird_write_compare(val);
378
David S. Miller112f4872007-03-05 15:28:37 -0800379 val2 = __hbird_read_stick() & ~TICKCMP_IRQ_BIT;
380
381 return ((long)(val2 - val)) > 0L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
David S. Millerd369ddd2005-07-10 15:45:11 -0700384static struct sparc64_tick_ops hbtick_operations __read_mostly = {
David S. Miller112f4872007-03-05 15:28:37 -0800385 .name = "hbtick",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 .init_tick = hbtick_init_tick,
David S. Miller112f4872007-03-05 15:28:37 -0800387 .disable_irq = hbtick_disable_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 .get_tick = hbtick_get_tick,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .add_tick = hbtick_add_tick,
390 .add_compare = hbtick_add_compare,
391 .softint_mask = 1UL << 0,
392};
393
David S. Millerd369ddd2005-07-10 15:45:11 -0700394static unsigned long timer_ticks_per_nsec_quotient __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Thomas Gleixner82644452007-07-21 04:37:37 -0700396int update_persistent_clock(struct timespec now)
David S. Millera58c9f32007-02-22 04:16:21 -0800397{
David S. Millera0b31b52008-08-28 17:34:31 -0700398 struct rtc_device *rtc = rtc_class_open("rtc0");
399
400 if (rtc)
401 return rtc_set_mmss(rtc, now.tv_sec);
402
David S. Miller29b503f2008-08-28 21:54:34 -0700403 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
David S. Miller4bdff412006-02-11 01:01:55 -0800406/* davem suggests we keep this within the 4M locked kernel image */
407static u32 starfire_get_time(void)
408{
409 static char obp_gettod[32];
410 static u32 unix_tod;
411
412 sprintf(obp_gettod, "h# %08x unix-gettod",
413 (unsigned int) (long) &unix_tod);
414 prom_feval(obp_gettod);
415
416 return unix_tod;
417}
418
David S. Miller8ba706a2006-03-01 17:32:46 -0800419static int starfire_set_time(u32 val)
420{
421 /* Do nothing, time is set using the service processor
422 * console on this platform.
423 */
424 return 0;
425}
426
David S. Miller4bdff412006-02-11 01:01:55 -0800427static u32 hypervisor_get_time(void)
428{
David S. Miller7db35f32007-05-29 02:22:14 -0700429 unsigned long ret, time;
David S. Miller4bdff412006-02-11 01:01:55 -0800430 int retries = 10000;
431
432retry:
David S. Miller7db35f32007-05-29 02:22:14 -0700433 ret = sun4v_tod_get(&time);
434 if (ret == HV_EOK)
435 return time;
436 if (ret == HV_EWOULDBLOCK) {
David S. Miller4bdff412006-02-11 01:01:55 -0800437 if (--retries > 0) {
438 udelay(100);
439 goto retry;
440 }
441 printk(KERN_WARNING "SUN4V: tod_get() timed out.\n");
442 return 0;
443 }
444 printk(KERN_WARNING "SUN4V: tod_get() not supported.\n");
445 return 0;
446}
447
David S. Miller8ba706a2006-03-01 17:32:46 -0800448static int hypervisor_set_time(u32 secs)
449{
David S. Miller7db35f32007-05-29 02:22:14 -0700450 unsigned long ret;
David S. Miller8ba706a2006-03-01 17:32:46 -0800451 int retries = 10000;
452
453retry:
David S. Miller7db35f32007-05-29 02:22:14 -0700454 ret = sun4v_tod_set(secs);
455 if (ret == HV_EOK)
David S. Miller8ba706a2006-03-01 17:32:46 -0800456 return 0;
David S. Miller7db35f32007-05-29 02:22:14 -0700457 if (ret == HV_EWOULDBLOCK) {
David S. Miller8ba706a2006-03-01 17:32:46 -0800458 if (--retries > 0) {
459 udelay(100);
460 goto retry;
461 }
462 printk(KERN_WARNING "SUN4V: tod_set() timed out.\n");
463 return -EAGAIN;
464 }
465 printk(KERN_WARNING "SUN4V: tod_set() not supported.\n");
466 return -EOPNOTSUPP;
467}
468
David S. Millerda867832008-08-28 22:16:15 -0700469unsigned long cmos_regs;
470EXPORT_SYMBOL(cmos_regs);
David S. Miller690c8fd2006-06-22 19:12:03 -0700471
David S. Millerda867832008-08-28 22:16:15 -0700472struct resource rtc_cmos_resource;
473
474static struct platform_device rtc_cmos_device = {
475 .name = "rtc_cmos",
476 .id = -1,
477 .resource = &rtc_cmos_resource,
478 .num_resources = 1,
479};
David S. Miller690c8fd2006-06-22 19:12:03 -0700480
David S. Miller1518e7e2008-08-28 21:06:27 -0700481static int __devinit rtc_probe(struct of_device *op, const struct of_device_id *match)
David S. Miller690c8fd2006-06-22 19:12:03 -0700482{
David S. Millerda867832008-08-28 22:16:15 -0700483 struct resource *r;
484
485 printk(KERN_INFO "%s: RTC regs at 0x%lx\n",
486 op->node->full_name, op->resource[0].start);
487
488 /* The CMOS RTC driver only accepts IORESOURCE_IO, so cons
489 * up a fake resource so that the probe works for all cases.
490 * When the RTC is behind an ISA bus it will have IORESOURCE_IO
491 * already, whereas when it's behind EBUS is will be IORESOURCE_MEM.
492 */
493
494 r = &rtc_cmos_resource;
495 r->flags = IORESOURCE_IO;
496 r->name = op->resource[0].name;
497 r->start = op->resource[0].start;
498 r->end = op->resource[0].end;
499
500 cmos_regs = op->resource[0].start;
501 return platform_device_register(&rtc_cmos_device);
502}
503
504static struct of_device_id rtc_match[] = {
505 {
506 .name = "rtc",
507 .compatible = "m5819",
508 },
509 {
510 .name = "rtc",
511 .compatible = "isa-m5819p",
512 },
513 {
514 .name = "rtc",
515 .compatible = "isa-m5823p",
516 },
517 {
518 .name = "rtc",
519 .compatible = "ds1287",
520 },
521 {},
522};
523
524static struct of_platform_driver rtc_driver = {
525 .match_table = rtc_match,
526 .probe = rtc_probe,
527 .driver = {
528 .name = "rtc",
529 },
530};
531
David S. Miller29b503f2008-08-28 21:54:34 -0700532static struct platform_device rtc_bq4802_device = {
533 .name = "rtc-bq4802",
534 .id = -1,
535 .num_resources = 1,
536};
537
David S. Millerda867832008-08-28 22:16:15 -0700538static int __devinit bq4802_probe(struct of_device *op, const struct of_device_id *match)
539{
David S. Miller690c8fd2006-06-22 19:12:03 -0700540
David S. Miller29b503f2008-08-28 21:54:34 -0700541 printk(KERN_INFO "%s: BQ4802 regs at 0x%lx\n",
542 op->node->full_name, op->resource[0].start);
David S. Miller690c8fd2006-06-22 19:12:03 -0700543
David S. Miller29b503f2008-08-28 21:54:34 -0700544 rtc_bq4802_device.resource = &op->resource[0];
545 return platform_device_register(&rtc_bq4802_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
David S. Millerda867832008-08-28 22:16:15 -0700548static struct of_device_id bq4802_match[] = {
David S. Milleree5caf02006-06-29 14:36:52 -0700549 {
550 .name = "rtc",
David S. Millerda867832008-08-28 22:16:15 -0700551 .compatible = "bq4802",
David S. Milleree5caf02006-06-29 14:36:52 -0700552 },
David S. Milleree5caf02006-06-29 14:36:52 -0700553};
554
David S. Millerda867832008-08-28 22:16:15 -0700555static struct of_platform_driver bq4802_driver = {
556 .match_table = bq4802_match,
557 .probe = bq4802_probe,
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700558 .driver = {
David S. Millerda867832008-08-28 22:16:15 -0700559 .name = "bq4802",
David S. Miller1518e7e2008-08-28 21:06:27 -0700560 },
561};
562
563static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
564{
565 struct platform_device *pdev = to_platform_device(dev);
566 void __iomem *regs;
567 unsigned char val;
568
569 regs = (void __iomem *) pdev->resource[0].start;
570 val = readb(regs + ofs);
571
572 /* the year 0 is 1968 */
573 if (ofs == M48T59_YEAR) {
574 val += 0x68;
575 if ((val & 0xf) > 9)
576 val += 6;
577 }
578 return val;
579}
580
581static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
582{
583 struct platform_device *pdev = to_platform_device(dev);
584 void __iomem *regs;
585
586 regs = (void __iomem *) pdev->resource[0].start;
587 if (ofs == M48T59_YEAR) {
588 if (val < 0x68)
589 val += 0x32;
590 else
591 val -= 0x68;
592 if ((val & 0xf) > 9)
593 val += 6;
594 if ((val & 0xf0) > 0x9A)
595 val += 0x60;
596 }
597 writeb(val, regs + ofs);
598}
599
600static struct m48t59_plat_data m48t59_data = {
601 .read_byte = mostek_read_byte,
602 .write_byte = mostek_write_byte,
603};
604
605static struct platform_device m48t59_rtc = {
606 .name = "rtc-m48t59",
607 .id = 0,
608 .num_resources = 1,
609 .dev = {
610 .platform_data = &m48t59_data,
611 },
612};
613
614static int __devinit mostek_probe(struct of_device *op, const struct of_device_id *match)
615{
616 struct device_node *dp = op->node;
617
618 /* On an Enterprise system there can be multiple mostek clocks.
619 * We should only match the one that is on the central FHC bus.
620 */
621 if (!strcmp(dp->parent->name, "fhc") &&
622 strcmp(dp->parent->parent->name, "central") != 0)
623 return -ENODEV;
624
625 printk(KERN_INFO "%s: Mostek regs at 0x%lx\n",
626 dp->full_name, op->resource[0].start);
627
628 m48t59_rtc.resource = &op->resource[0];
629 return platform_device_register(&m48t59_rtc);
630}
631
632static struct of_device_id mostek_match[] = {
633 {
634 .name = "eeprom",
635 },
636 {},
637};
638
639static struct of_platform_driver mostek_driver = {
640 .match_table = mostek_match,
641 .probe = mostek_probe,
642 .driver = {
643 .name = "mostek",
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700644 },
David S. Milleree5caf02006-06-29 14:36:52 -0700645};
646
647static int __init clock_init(void)
648{
649 if (this_is_starfire) {
650 xtime.tv_sec = starfire_get_time();
651 xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
652 set_normalized_timespec(&wall_to_monotonic,
653 -xtime.tv_sec, -xtime.tv_nsec);
654 return 0;
655 }
656 if (tlb_type == hypervisor) {
657 xtime.tv_sec = hypervisor_get_time();
658 xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
659 set_normalized_timespec(&wall_to_monotonic,
660 -xtime.tv_sec, -xtime.tv_nsec);
661 return 0;
662 }
663
David S. Miller1518e7e2008-08-28 21:06:27 -0700664 (void) of_register_driver(&rtc_driver, &of_platform_bus_type);
665 (void) of_register_driver(&mostek_driver, &of_platform_bus_type);
David S. Millerda867832008-08-28 22:16:15 -0700666 (void) of_register_driver(&bq4802_driver, &of_platform_bus_type);
David S. Miller1518e7e2008-08-28 21:06:27 -0700667
668 return 0;
David S. Milleree5caf02006-06-29 14:36:52 -0700669}
670
671/* Must be after subsys_initcall() so that busses are probed. Must
672 * be before device_initcall() because things like the RTC driver
673 * need to see the clock registers.
674 */
675fs_initcall(clock_init);
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677/* This is gets the master TICK_INT timer going. */
678static unsigned long sparc64_init_timers(void)
679{
David S. Miller07f8e5f2006-06-21 23:34:02 -0700680 struct device_node *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 unsigned long clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
David S. Miller07f8e5f2006-06-21 23:34:02 -0700683 dp = of_find_node_by_path("/");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (tlb_type == spitfire) {
685 unsigned long ver, manuf, impl;
686
687 __asm__ __volatile__ ("rdpr %%ver, %0"
688 : "=&r" (ver));
689 manuf = ((ver >> 48) & 0xffff);
690 impl = ((ver >> 32) & 0xffff);
691 if (manuf == 0x17 && impl == 0x13) {
692 /* Hummingbird, aka Ultra-IIe */
693 tick_ops = &hbtick_operations;
David S. Miller5cbc3072007-05-25 15:49:59 -0700694 clock = of_getintprop_default(dp, "stick-frequency", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 } else {
696 tick_ops = &tick_operations;
David S. Miller5cbc3072007-05-25 15:49:59 -0700697 clock = local_cpu_data().clock_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699 } else {
700 tick_ops = &stick_operations;
David S. Miller5cbc3072007-05-25 15:49:59 -0700701 clock = of_getintprop_default(dp, "stick-frequency", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return clock;
705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707struct freq_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 unsigned long clock_tick_ref;
709 unsigned int ref_freq;
710};
David S. Miller3763be32006-02-17 12:33:13 -0800711static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713unsigned long sparc64_get_clock_tick(unsigned int cpu)
714{
715 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
716
717 if (ft->clock_tick_ref)
718 return ft->clock_tick_ref;
719 return cpu_data(cpu).clock_tick;
720}
721
722#ifdef CONFIG_CPU_FREQ
723
724static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
725 void *data)
726{
727 struct cpufreq_freqs *freq = data;
728 unsigned int cpu = freq->cpu;
729 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
730
731 if (!ft->ref_freq) {
732 ft->ref_freq = freq->old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 ft->clock_tick_ref = cpu_data(cpu).clock_tick;
734 }
735 if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
736 (val == CPUFREQ_POSTCHANGE && freq->old > freq->new) ||
737 (val == CPUFREQ_RESUMECHANGE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 cpu_data(cpu).clock_tick =
739 cpufreq_scale(ft->clock_tick_ref,
740 ft->ref_freq,
741 freq->new);
742 }
743
744 return 0;
745}
746
747static struct notifier_block sparc64_cpufreq_notifier_block = {
748 .notifier_call = sparc64_cpufreq_notifier
749};
750
David S. Miller7ae93f52008-07-23 16:21:07 -0700751static int __init register_sparc64_cpufreq_notifier(void)
752{
753
754 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block,
755 CPUFREQ_TRANSITION_NOTIFIER);
756 return 0;
757}
758
759core_initcall(register_sparc64_cpufreq_notifier);
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761#endif /* CONFIG_CPU_FREQ */
762
David S. Miller112f4872007-03-05 15:28:37 -0800763static int sparc64_next_event(unsigned long delta,
764 struct clock_event_device *evt)
765{
David S. Millerd62c6f02007-03-27 01:20:14 -0700766 return tick_ops->add_compare(delta) ? -ETIME : 0;
David S. Miller112f4872007-03-05 15:28:37 -0800767}
768
769static void sparc64_timer_setup(enum clock_event_mode mode,
770 struct clock_event_device *evt)
771{
772 switch (mode) {
773 case CLOCK_EVT_MODE_ONESHOT:
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700774 case CLOCK_EVT_MODE_RESUME:
David S. Miller112f4872007-03-05 15:28:37 -0800775 break;
776
777 case CLOCK_EVT_MODE_SHUTDOWN:
778 tick_ops->disable_irq();
779 break;
780
781 case CLOCK_EVT_MODE_PERIODIC:
782 case CLOCK_EVT_MODE_UNUSED:
783 WARN_ON(1);
784 break;
785 };
786}
787
788static struct clock_event_device sparc64_clockevent = {
789 .features = CLOCK_EVT_FEAT_ONESHOT,
790 .set_mode = sparc64_timer_setup,
791 .set_next_event = sparc64_next_event,
792 .rating = 100,
793 .shift = 30,
794 .irq = -1,
795};
796static DEFINE_PER_CPU(struct clock_event_device, sparc64_events);
797
798void timer_interrupt(int irq, struct pt_regs *regs)
799{
800 struct pt_regs *old_regs = set_irq_regs(regs);
801 unsigned long tick_mask = tick_ops->softint_mask;
802 int cpu = smp_processor_id();
803 struct clock_event_device *evt = &per_cpu(sparc64_events, cpu);
804
805 clear_softint(tick_mask);
806
807 irq_enter();
808
809 kstat_this_cpu.irqs[0]++;
810
811 if (unlikely(!evt->event_handler)) {
812 printk(KERN_WARNING
813 "Spurious SPARC64 timer interrupt on cpu %d\n", cpu);
814 } else
815 evt->event_handler(evt);
816
817 irq_exit();
818
819 set_irq_regs(old_regs);
820}
821
822void __devinit setup_sparc64_timer(void)
823{
824 struct clock_event_device *sevt;
825 unsigned long pstate;
826
827 /* Guarantee that the following sequences execute
828 * uninterrupted.
829 */
830 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
831 "wrpr %0, %1, %%pstate"
832 : "=r" (pstate)
833 : "i" (PSTATE_IE));
834
835 tick_ops->init_tick();
836
837 /* Restore PSTATE_IE. */
838 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
839 : /* no outputs */
840 : "r" (pstate));
841
842 sevt = &__get_cpu_var(sparc64_events);
843
844 memcpy(sevt, &sparc64_clockevent, sizeof(*sevt));
845 sevt->cpumask = cpumask_of_cpu(smp_processor_id());
846
847 clockevents_register_device(sevt);
848}
849
David S. Miller03983ab2007-05-17 22:55:26 -0700850#define SPARC64_NSEC_PER_CYC_SHIFT 10UL
David S. Miller112f4872007-03-05 15:28:37 -0800851
852static struct clocksource clocksource_tick = {
853 .rating = 100,
854 .mask = CLOCKSOURCE_MASK(64),
855 .shift = 16,
856 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857};
858
David S. Miller112f4872007-03-05 15:28:37 -0800859static void __init setup_clockevent_multiplier(unsigned long hz)
860{
861 unsigned long mult, shift = 32;
862
863 while (1) {
864 mult = div_sc(hz, NSEC_PER_SEC, shift);
865 if (mult && (mult >> 32UL) == 0UL)
866 break;
867
868 shift--;
869 }
870
871 sparc64_clockevent.shift = shift;
872 sparc64_clockevent.mult = mult;
873}
874
David S. Miller8b99cfb2007-07-14 02:23:37 -0700875static unsigned long tb_ticks_per_usec __read_mostly;
876
877void __delay(unsigned long loops)
878{
879 unsigned long bclock, now;
880
881 bclock = tick_ops->get_tick();
882 do {
883 now = tick_ops->get_tick();
884 } while ((now-bclock) < loops);
885}
886EXPORT_SYMBOL(__delay);
887
888void udelay(unsigned long usecs)
889{
890 __delay(tb_ticks_per_usec * usecs);
891}
892EXPORT_SYMBOL(udelay);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894void __init time_init(void)
895{
896 unsigned long clock = sparc64_init_timers();
897
David S. Miller8b99cfb2007-07-14 02:23:37 -0700898 tb_ticks_per_usec = clock / USEC_PER_SEC;
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 timer_ticks_per_nsec_quotient =
David S. Miller112f4872007-03-05 15:28:37 -0800901 clocksource_hz2mult(clock, SPARC64_NSEC_PER_CYC_SHIFT);
902
903 clocksource_tick.name = tick_ops->name;
904 clocksource_tick.mult =
905 clocksource_hz2mult(clock,
906 clocksource_tick.shift);
907 clocksource_tick.read = tick_ops->get_tick;
908
909 printk("clocksource: mult[%x] shift[%d]\n",
910 clocksource_tick.mult, clocksource_tick.shift);
911
912 clocksource_register(&clocksource_tick);
913
914 sparc64_clockevent.name = tick_ops->name;
915
916 setup_clockevent_multiplier(clock);
917
918 sparc64_clockevent.max_delta_ns =
David S. Millercf3d7c12008-03-26 01:11:55 -0700919 clockevent_delta2ns(0x7fffffffffffffffUL, &sparc64_clockevent);
David S. Miller112f4872007-03-05 15:28:37 -0800920 sparc64_clockevent.min_delta_ns =
921 clockevent_delta2ns(0xF, &sparc64_clockevent);
922
923 printk("clockevent: mult[%lx] shift[%d]\n",
924 sparc64_clockevent.mult, sparc64_clockevent.shift);
925
926 setup_sparc64_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
929unsigned long long sched_clock(void)
930{
931 unsigned long ticks = tick_ops->get_tick();
932
933 return (ticks * timer_ticks_per_nsec_quotient)
934 >> SPARC64_NSEC_PER_CYC_SHIFT;
935}
936
David S. Miller8ba706a2006-03-01 17:32:46 -0800937#define RTC_IS_OPEN 0x01 /* means /dev/rtc is in use */
938static unsigned char mini_rtc_status; /* bitmapped status byte. */
939
David S. Miller8ba706a2006-03-01 17:32:46 -0800940#define FEBRUARY 2
941#define STARTOFTIME 1970
942#define SECDAY 86400L
943#define SECYR (SECDAY * 365)
944#define leapyear(year) ((year) % 4 == 0 && \
945 ((year) % 100 != 0 || (year) % 400 == 0))
946#define days_in_year(a) (leapyear(a) ? 366 : 365)
947#define days_in_month(a) (month_days[(a) - 1])
948
949static int month_days[12] = {
950 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
951};
952
953/*
954 * This only works for the Gregorian calendar - i.e. after 1752 (in the UK)
955 */
956static void GregorianDay(struct rtc_time * tm)
957{
958 int leapsToDate;
959 int lastYear;
960 int day;
961 int MonthOffset[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
962
963 lastYear = tm->tm_year - 1;
964
965 /*
966 * Number of leap corrections to apply up to end of last year
967 */
968 leapsToDate = lastYear / 4 - lastYear / 100 + lastYear / 400;
969
970 /*
971 * This year is a leap year if it is divisible by 4 except when it is
972 * divisible by 100 unless it is divisible by 400
973 *
974 * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 was
975 */
976 day = tm->tm_mon > 2 && leapyear(tm->tm_year);
977
978 day += lastYear*365 + leapsToDate + MonthOffset[tm->tm_mon-1] +
979 tm->tm_mday;
980
981 tm->tm_wday = day % 7;
982}
983
984static void to_tm(int tim, struct rtc_time *tm)
985{
986 register int i;
987 register long hms, day;
988
989 day = tim / SECDAY;
990 hms = tim % SECDAY;
991
992 /* Hours, minutes, seconds are easy */
993 tm->tm_hour = hms / 3600;
994 tm->tm_min = (hms % 3600) / 60;
995 tm->tm_sec = (hms % 3600) % 60;
996
997 /* Number of years in days */
998 for (i = STARTOFTIME; day >= days_in_year(i); i++)
999 day -= days_in_year(i);
1000 tm->tm_year = i;
1001
1002 /* Number of months in days left */
1003 if (leapyear(tm->tm_year))
1004 days_in_month(FEBRUARY) = 29;
1005 for (i = 1; day >= days_in_month(i); i++)
1006 day -= days_in_month(i);
1007 days_in_month(FEBRUARY) = 28;
1008 tm->tm_mon = i;
1009
1010 /* Days are what is left over (+1) from all that. */
1011 tm->tm_mday = day + 1;
1012
1013 /*
1014 * Determine the day of week
1015 */
1016 GregorianDay(tm);
1017}
1018
1019/* Both Starfire and SUN4V give us seconds since Jan 1st, 1970,
1020 * aka Unix time. So we have to convert to/from rtc_time.
1021 */
David S. Millerd037e052007-05-11 21:18:50 -07001022static void starfire_get_rtc_time(struct rtc_time *time)
David S. Miller8ba706a2006-03-01 17:32:46 -08001023{
David S. Millerd037e052007-05-11 21:18:50 -07001024 u32 seconds = starfire_get_time();
David S. Miller8ba706a2006-03-01 17:32:46 -08001025
1026 to_tm(seconds, time);
David S. Millerc4f8ef72006-03-02 20:28:34 -08001027 time->tm_year -= 1900;
1028 time->tm_mon -= 1;
David S. Miller8ba706a2006-03-01 17:32:46 -08001029}
1030
David S. Millerd037e052007-05-11 21:18:50 -07001031static int starfire_set_rtc_time(struct rtc_time *time)
David S. Miller8ba706a2006-03-01 17:32:46 -08001032{
1033 u32 seconds = mktime(time->tm_year + 1900, time->tm_mon + 1,
1034 time->tm_mday, time->tm_hour,
1035 time->tm_min, time->tm_sec);
David S. Millerd037e052007-05-11 21:18:50 -07001036
1037 return starfire_set_time(seconds);
1038}
1039
1040static void hypervisor_get_rtc_time(struct rtc_time *time)
1041{
1042 u32 seconds = hypervisor_get_time();
1043
1044 to_tm(seconds, time);
1045 time->tm_year -= 1900;
1046 time->tm_mon -= 1;
1047}
1048
1049static int hypervisor_set_rtc_time(struct rtc_time *time)
1050{
1051 u32 seconds = mktime(time->tm_year + 1900, time->tm_mon + 1,
1052 time->tm_mday, time->tm_hour,
1053 time->tm_min, time->tm_sec);
1054
1055 return hypervisor_set_time(seconds);
1056}
1057
David S. Millerd037e052007-05-11 21:18:50 -07001058struct mini_rtc_ops {
1059 void (*get_rtc_time)(struct rtc_time *);
1060 int (*set_rtc_time)(struct rtc_time *);
1061};
1062
1063static struct mini_rtc_ops starfire_rtc_ops = {
1064 .get_rtc_time = starfire_get_rtc_time,
1065 .set_rtc_time = starfire_set_rtc_time,
1066};
1067
1068static struct mini_rtc_ops hypervisor_rtc_ops = {
1069 .get_rtc_time = hypervisor_get_rtc_time,
1070 .set_rtc_time = hypervisor_set_rtc_time,
1071};
1072
David S. Millerd037e052007-05-11 21:18:50 -07001073static struct mini_rtc_ops *mini_rtc_ops;
1074
1075static inline void mini_get_rtc_time(struct rtc_time *time)
1076{
1077 unsigned long flags;
1078
1079 spin_lock_irqsave(&rtc_lock, flags);
1080 mini_rtc_ops->get_rtc_time(time);
1081 spin_unlock_irqrestore(&rtc_lock, flags);
1082}
1083
1084static inline int mini_set_rtc_time(struct rtc_time *time)
1085{
David S. Miller8ba706a2006-03-01 17:32:46 -08001086 unsigned long flags;
1087 int err;
1088
1089 spin_lock_irqsave(&rtc_lock, flags);
David S. Millerd037e052007-05-11 21:18:50 -07001090 err = mini_rtc_ops->set_rtc_time(time);
David S. Miller8ba706a2006-03-01 17:32:46 -08001091 spin_unlock_irqrestore(&rtc_lock, flags);
1092
1093 return err;
1094}
1095
1096static int mini_rtc_ioctl(struct inode *inode, struct file *file,
1097 unsigned int cmd, unsigned long arg)
1098{
1099 struct rtc_time wtime;
1100 void __user *argp = (void __user *)arg;
1101
1102 switch (cmd) {
1103
1104 case RTC_PLL_GET:
1105 return -EINVAL;
1106
1107 case RTC_PLL_SET:
1108 return -EINVAL;
1109
1110 case RTC_UIE_OFF: /* disable ints from RTC updates. */
1111 return 0;
1112
1113 case RTC_UIE_ON: /* enable ints for RTC updates. */
1114 return -EINVAL;
1115
1116 case RTC_RD_TIME: /* Read the time/date from RTC */
1117 /* this doesn't get week-day, who cares */
1118 memset(&wtime, 0, sizeof(wtime));
1119 mini_get_rtc_time(&wtime);
1120
1121 return copy_to_user(argp, &wtime, sizeof(wtime)) ? -EFAULT : 0;
1122
1123 case RTC_SET_TIME: /* Set the RTC */
1124 {
Tony Breeds644923d2007-03-28 19:10:12 -07001125 int year, days;
David S. Miller8ba706a2006-03-01 17:32:46 -08001126
1127 if (!capable(CAP_SYS_TIME))
1128 return -EACCES;
1129
1130 if (copy_from_user(&wtime, argp, sizeof(wtime)))
1131 return -EFAULT;
1132
1133 year = wtime.tm_year + 1900;
Tony Breeds644923d2007-03-28 19:10:12 -07001134 days = month_days[wtime.tm_mon] +
1135 ((wtime.tm_mon == 1) && leapyear(year));
David S. Miller8ba706a2006-03-01 17:32:46 -08001136
Tony Breeds644923d2007-03-28 19:10:12 -07001137 if ((wtime.tm_mon < 0 || wtime.tm_mon > 11) ||
1138 (wtime.tm_mday < 1))
David S. Miller8ba706a2006-03-01 17:32:46 -08001139 return -EINVAL;
1140
Tony Breeds644923d2007-03-28 19:10:12 -07001141 if (wtime.tm_mday < 0 || wtime.tm_mday > days)
David S. Miller8ba706a2006-03-01 17:32:46 -08001142 return -EINVAL;
1143
1144 if (wtime.tm_hour < 0 || wtime.tm_hour >= 24 ||
1145 wtime.tm_min < 0 || wtime.tm_min >= 60 ||
1146 wtime.tm_sec < 0 || wtime.tm_sec >= 60)
1147 return -EINVAL;
1148
1149 return mini_set_rtc_time(&wtime);
1150 }
1151 }
1152
1153 return -EINVAL;
1154}
1155
1156static int mini_rtc_open(struct inode *inode, struct file *file)
1157{
Arnd Bergmann09de3612008-05-20 19:16:50 +02001158 lock_kernel();
1159 if (mini_rtc_status & RTC_IS_OPEN) {
1160 unlock_kernel();
David S. Miller8ba706a2006-03-01 17:32:46 -08001161 return -EBUSY;
Arnd Bergmann09de3612008-05-20 19:16:50 +02001162 }
David S. Miller8ba706a2006-03-01 17:32:46 -08001163
1164 mini_rtc_status |= RTC_IS_OPEN;
Arnd Bergmann09de3612008-05-20 19:16:50 +02001165 unlock_kernel();
David S. Miller8ba706a2006-03-01 17:32:46 -08001166
1167 return 0;
1168}
1169
1170static int mini_rtc_release(struct inode *inode, struct file *file)
1171{
1172 mini_rtc_status &= ~RTC_IS_OPEN;
1173 return 0;
1174}
1175
1176
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001177static const struct file_operations mini_rtc_fops = {
David S. Miller8ba706a2006-03-01 17:32:46 -08001178 .owner = THIS_MODULE,
1179 .ioctl = mini_rtc_ioctl,
1180 .open = mini_rtc_open,
1181 .release = mini_rtc_release,
1182};
1183
1184static struct miscdevice rtc_mini_dev =
1185{
1186 .minor = RTC_MINOR,
1187 .name = "rtc",
1188 .fops = &mini_rtc_fops,
1189};
1190
1191static int __init rtc_mini_init(void)
1192{
1193 int retval;
1194
David S. Millerd037e052007-05-11 21:18:50 -07001195 if (tlb_type == hypervisor)
1196 mini_rtc_ops = &hypervisor_rtc_ops;
1197 else if (this_is_starfire)
1198 mini_rtc_ops = &starfire_rtc_ops;
David S. Millerd037e052007-05-11 21:18:50 -07001199 else
David S. Miller8ba706a2006-03-01 17:32:46 -08001200 return -ENODEV;
1201
1202 printk(KERN_INFO "Mini RTC Driver\n");
1203
1204 retval = misc_register(&rtc_mini_dev);
1205 if (retval < 0)
1206 return retval;
1207
1208 return 0;
1209}
1210
1211static void __exit rtc_mini_exit(void)
1212{
1213 misc_deregister(&rtc_mini_dev);
1214}
1215
Andrew Morton941e4922008-02-06 01:36:42 -08001216int __devinit read_current_timer(unsigned long *timer_val)
1217{
1218 *timer_val = tick_ops->get_tick();
1219 return 0;
1220}
David S. Miller8ba706a2006-03-01 17:32:46 -08001221
1222module_init(rtc_mini_init);
1223module_exit(rtc_mini_exit);