blob: 209e7d28c3a548d21640d39ca2cd9829ea77ed03 [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. Millerda867832008-08-28 22:16:15 -0700406unsigned long cmos_regs;
407EXPORT_SYMBOL(cmos_regs);
David S. Miller690c8fd2006-06-22 19:12:03 -0700408
David S. Millerda867832008-08-28 22:16:15 -0700409struct resource rtc_cmos_resource;
410
411static struct platform_device rtc_cmos_device = {
412 .name = "rtc_cmos",
413 .id = -1,
414 .resource = &rtc_cmos_resource,
415 .num_resources = 1,
416};
David S. Miller690c8fd2006-06-22 19:12:03 -0700417
David S. Miller1518e7e2008-08-28 21:06:27 -0700418static int __devinit rtc_probe(struct of_device *op, const struct of_device_id *match)
David S. Miller690c8fd2006-06-22 19:12:03 -0700419{
David S. Millerda867832008-08-28 22:16:15 -0700420 struct resource *r;
421
422 printk(KERN_INFO "%s: RTC regs at 0x%lx\n",
423 op->node->full_name, op->resource[0].start);
424
425 /* The CMOS RTC driver only accepts IORESOURCE_IO, so cons
426 * up a fake resource so that the probe works for all cases.
427 * When the RTC is behind an ISA bus it will have IORESOURCE_IO
428 * already, whereas when it's behind EBUS is will be IORESOURCE_MEM.
429 */
430
431 r = &rtc_cmos_resource;
432 r->flags = IORESOURCE_IO;
433 r->name = op->resource[0].name;
434 r->start = op->resource[0].start;
435 r->end = op->resource[0].end;
436
437 cmos_regs = op->resource[0].start;
438 return platform_device_register(&rtc_cmos_device);
439}
440
David S. Millerfd098312008-08-31 01:23:17 -0700441static struct of_device_id __initdata rtc_match[] = {
David S. Millerda867832008-08-28 22:16:15 -0700442 {
443 .name = "rtc",
444 .compatible = "m5819",
445 },
446 {
447 .name = "rtc",
448 .compatible = "isa-m5819p",
449 },
450 {
451 .name = "rtc",
452 .compatible = "isa-m5823p",
453 },
454 {
455 .name = "rtc",
456 .compatible = "ds1287",
457 },
458 {},
459};
460
461static struct of_platform_driver rtc_driver = {
462 .match_table = rtc_match,
463 .probe = rtc_probe,
464 .driver = {
465 .name = "rtc",
466 },
467};
468
David S. Miller29b503f2008-08-28 21:54:34 -0700469static struct platform_device rtc_bq4802_device = {
470 .name = "rtc-bq4802",
471 .id = -1,
472 .num_resources = 1,
473};
474
David S. Millerda867832008-08-28 22:16:15 -0700475static int __devinit bq4802_probe(struct of_device *op, const struct of_device_id *match)
476{
David S. Miller690c8fd2006-06-22 19:12:03 -0700477
David S. Miller29b503f2008-08-28 21:54:34 -0700478 printk(KERN_INFO "%s: BQ4802 regs at 0x%lx\n",
479 op->node->full_name, op->resource[0].start);
David S. Miller690c8fd2006-06-22 19:12:03 -0700480
David S. Miller29b503f2008-08-28 21:54:34 -0700481 rtc_bq4802_device.resource = &op->resource[0];
482 return platform_device_register(&rtc_bq4802_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
David S. Millerfd098312008-08-31 01:23:17 -0700485static struct of_device_id __initdata bq4802_match[] = {
David S. Milleree5caf02006-06-29 14:36:52 -0700486 {
487 .name = "rtc",
David S. Millerda867832008-08-28 22:16:15 -0700488 .compatible = "bq4802",
David S. Milleree5caf02006-06-29 14:36:52 -0700489 },
David S. Milleree5caf02006-06-29 14:36:52 -0700490};
491
David S. Millerda867832008-08-28 22:16:15 -0700492static struct of_platform_driver bq4802_driver = {
493 .match_table = bq4802_match,
494 .probe = bq4802_probe,
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700495 .driver = {
David S. Millerda867832008-08-28 22:16:15 -0700496 .name = "bq4802",
David S. Miller1518e7e2008-08-28 21:06:27 -0700497 },
498};
499
500static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
501{
502 struct platform_device *pdev = to_platform_device(dev);
503 void __iomem *regs;
504 unsigned char val;
505
506 regs = (void __iomem *) pdev->resource[0].start;
507 val = readb(regs + ofs);
508
509 /* the year 0 is 1968 */
510 if (ofs == M48T59_YEAR) {
511 val += 0x68;
512 if ((val & 0xf) > 9)
513 val += 6;
514 }
515 return val;
516}
517
518static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
519{
520 struct platform_device *pdev = to_platform_device(dev);
521 void __iomem *regs;
522
523 regs = (void __iomem *) pdev->resource[0].start;
524 if (ofs == M48T59_YEAR) {
525 if (val < 0x68)
526 val += 0x32;
527 else
528 val -= 0x68;
529 if ((val & 0xf) > 9)
530 val += 6;
531 if ((val & 0xf0) > 0x9A)
532 val += 0x60;
533 }
534 writeb(val, regs + ofs);
535}
536
537static struct m48t59_plat_data m48t59_data = {
538 .read_byte = mostek_read_byte,
539 .write_byte = mostek_write_byte,
540};
541
542static struct platform_device m48t59_rtc = {
543 .name = "rtc-m48t59",
544 .id = 0,
545 .num_resources = 1,
546 .dev = {
547 .platform_data = &m48t59_data,
548 },
549};
550
551static int __devinit mostek_probe(struct of_device *op, const struct of_device_id *match)
552{
553 struct device_node *dp = op->node;
554
555 /* On an Enterprise system there can be multiple mostek clocks.
556 * We should only match the one that is on the central FHC bus.
557 */
558 if (!strcmp(dp->parent->name, "fhc") &&
559 strcmp(dp->parent->parent->name, "central") != 0)
560 return -ENODEV;
561
562 printk(KERN_INFO "%s: Mostek regs at 0x%lx\n",
563 dp->full_name, op->resource[0].start);
564
565 m48t59_rtc.resource = &op->resource[0];
566 return platform_device_register(&m48t59_rtc);
567}
568
David S. Millerfd098312008-08-31 01:23:17 -0700569static struct of_device_id __initdata mostek_match[] = {
David S. Miller1518e7e2008-08-28 21:06:27 -0700570 {
571 .name = "eeprom",
572 },
573 {},
574};
575
576static struct of_platform_driver mostek_driver = {
577 .match_table = mostek_match,
578 .probe = mostek_probe,
579 .driver = {
580 .name = "mostek",
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700581 },
David S. Milleree5caf02006-06-29 14:36:52 -0700582};
583
David S. Miller84d6bd52008-08-29 01:34:27 -0700584static struct platform_device rtc_sun4v_device = {
585 .name = "rtc-sun4v",
586 .id = -1,
587};
588
David S. Millerf2be6de2008-08-29 01:35:19 -0700589static struct platform_device rtc_starfire_device = {
590 .name = "rtc-starfire",
591 .id = -1,
592};
593
David S. Milleree5caf02006-06-29 14:36:52 -0700594static int __init clock_init(void)
595{
David S. Millerf2be6de2008-08-29 01:35:19 -0700596 if (this_is_starfire)
597 return platform_device_register(&rtc_starfire_device);
598
David S. Miller84d6bd52008-08-29 01:34:27 -0700599 if (tlb_type == hypervisor)
600 return platform_device_register(&rtc_sun4v_device);
David S. Milleree5caf02006-06-29 14:36:52 -0700601
David S. Miller1518e7e2008-08-28 21:06:27 -0700602 (void) of_register_driver(&rtc_driver, &of_platform_bus_type);
603 (void) of_register_driver(&mostek_driver, &of_platform_bus_type);
David S. Millerda867832008-08-28 22:16:15 -0700604 (void) of_register_driver(&bq4802_driver, &of_platform_bus_type);
David S. Miller1518e7e2008-08-28 21:06:27 -0700605
606 return 0;
David S. Milleree5caf02006-06-29 14:36:52 -0700607}
608
609/* Must be after subsys_initcall() so that busses are probed. Must
610 * be before device_initcall() because things like the RTC driver
611 * need to see the clock registers.
612 */
613fs_initcall(clock_init);
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615/* This is gets the master TICK_INT timer going. */
616static unsigned long sparc64_init_timers(void)
617{
David S. Miller07f8e5f2006-06-21 23:34:02 -0700618 struct device_node *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 unsigned long clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
David S. Miller07f8e5f2006-06-21 23:34:02 -0700621 dp = of_find_node_by_path("/");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (tlb_type == spitfire) {
623 unsigned long ver, manuf, impl;
624
625 __asm__ __volatile__ ("rdpr %%ver, %0"
626 : "=&r" (ver));
627 manuf = ((ver >> 48) & 0xffff);
628 impl = ((ver >> 32) & 0xffff);
629 if (manuf == 0x17 && impl == 0x13) {
630 /* Hummingbird, aka Ultra-IIe */
631 tick_ops = &hbtick_operations;
David S. Miller5cbc3072007-05-25 15:49:59 -0700632 clock = of_getintprop_default(dp, "stick-frequency", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 } else {
634 tick_ops = &tick_operations;
David S. Miller5cbc3072007-05-25 15:49:59 -0700635 clock = local_cpu_data().clock_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 } else {
638 tick_ops = &stick_operations;
David S. Miller5cbc3072007-05-25 15:49:59 -0700639 clock = of_getintprop_default(dp, "stick-frequency", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return clock;
643}
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645struct freq_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 unsigned long clock_tick_ref;
647 unsigned int ref_freq;
648};
David S. Miller3763be32006-02-17 12:33:13 -0800649static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651unsigned long sparc64_get_clock_tick(unsigned int cpu)
652{
653 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
654
655 if (ft->clock_tick_ref)
656 return ft->clock_tick_ref;
657 return cpu_data(cpu).clock_tick;
658}
659
660#ifdef CONFIG_CPU_FREQ
661
662static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
663 void *data)
664{
665 struct cpufreq_freqs *freq = data;
666 unsigned int cpu = freq->cpu;
667 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
668
669 if (!ft->ref_freq) {
670 ft->ref_freq = freq->old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 ft->clock_tick_ref = cpu_data(cpu).clock_tick;
672 }
673 if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
674 (val == CPUFREQ_POSTCHANGE && freq->old > freq->new) ||
675 (val == CPUFREQ_RESUMECHANGE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 cpu_data(cpu).clock_tick =
677 cpufreq_scale(ft->clock_tick_ref,
678 ft->ref_freq,
679 freq->new);
680 }
681
682 return 0;
683}
684
685static struct notifier_block sparc64_cpufreq_notifier_block = {
686 .notifier_call = sparc64_cpufreq_notifier
687};
688
David S. Miller7ae93f52008-07-23 16:21:07 -0700689static int __init register_sparc64_cpufreq_notifier(void)
690{
691
692 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block,
693 CPUFREQ_TRANSITION_NOTIFIER);
694 return 0;
695}
696
697core_initcall(register_sparc64_cpufreq_notifier);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699#endif /* CONFIG_CPU_FREQ */
700
David S. Miller112f4872007-03-05 15:28:37 -0800701static int sparc64_next_event(unsigned long delta,
702 struct clock_event_device *evt)
703{
David S. Millerd62c6f02007-03-27 01:20:14 -0700704 return tick_ops->add_compare(delta) ? -ETIME : 0;
David S. Miller112f4872007-03-05 15:28:37 -0800705}
706
707static void sparc64_timer_setup(enum clock_event_mode mode,
708 struct clock_event_device *evt)
709{
710 switch (mode) {
711 case CLOCK_EVT_MODE_ONESHOT:
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700712 case CLOCK_EVT_MODE_RESUME:
David S. Miller112f4872007-03-05 15:28:37 -0800713 break;
714
715 case CLOCK_EVT_MODE_SHUTDOWN:
716 tick_ops->disable_irq();
717 break;
718
719 case CLOCK_EVT_MODE_PERIODIC:
720 case CLOCK_EVT_MODE_UNUSED:
721 WARN_ON(1);
722 break;
723 };
724}
725
726static struct clock_event_device sparc64_clockevent = {
727 .features = CLOCK_EVT_FEAT_ONESHOT,
728 .set_mode = sparc64_timer_setup,
729 .set_next_event = sparc64_next_event,
730 .rating = 100,
731 .shift = 30,
732 .irq = -1,
733};
734static DEFINE_PER_CPU(struct clock_event_device, sparc64_events);
735
736void timer_interrupt(int irq, struct pt_regs *regs)
737{
738 struct pt_regs *old_regs = set_irq_regs(regs);
739 unsigned long tick_mask = tick_ops->softint_mask;
740 int cpu = smp_processor_id();
741 struct clock_event_device *evt = &per_cpu(sparc64_events, cpu);
742
743 clear_softint(tick_mask);
744
745 irq_enter();
746
747 kstat_this_cpu.irqs[0]++;
748
749 if (unlikely(!evt->event_handler)) {
750 printk(KERN_WARNING
751 "Spurious SPARC64 timer interrupt on cpu %d\n", cpu);
752 } else
753 evt->event_handler(evt);
754
755 irq_exit();
756
757 set_irq_regs(old_regs);
758}
759
760void __devinit setup_sparc64_timer(void)
761{
762 struct clock_event_device *sevt;
763 unsigned long pstate;
764
765 /* Guarantee that the following sequences execute
766 * uninterrupted.
767 */
768 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
769 "wrpr %0, %1, %%pstate"
770 : "=r" (pstate)
771 : "i" (PSTATE_IE));
772
773 tick_ops->init_tick();
774
775 /* Restore PSTATE_IE. */
776 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
777 : /* no outputs */
778 : "r" (pstate));
779
780 sevt = &__get_cpu_var(sparc64_events);
781
782 memcpy(sevt, &sparc64_clockevent, sizeof(*sevt));
783 sevt->cpumask = cpumask_of_cpu(smp_processor_id());
784
785 clockevents_register_device(sevt);
786}
787
David S. Miller03983ab2007-05-17 22:55:26 -0700788#define SPARC64_NSEC_PER_CYC_SHIFT 10UL
David S. Miller112f4872007-03-05 15:28:37 -0800789
790static struct clocksource clocksource_tick = {
791 .rating = 100,
792 .mask = CLOCKSOURCE_MASK(64),
793 .shift = 16,
794 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795};
796
David S. Miller112f4872007-03-05 15:28:37 -0800797static void __init setup_clockevent_multiplier(unsigned long hz)
798{
799 unsigned long mult, shift = 32;
800
801 while (1) {
802 mult = div_sc(hz, NSEC_PER_SEC, shift);
803 if (mult && (mult >> 32UL) == 0UL)
804 break;
805
806 shift--;
807 }
808
809 sparc64_clockevent.shift = shift;
810 sparc64_clockevent.mult = mult;
811}
812
David S. Miller8b99cfb2007-07-14 02:23:37 -0700813static unsigned long tb_ticks_per_usec __read_mostly;
814
815void __delay(unsigned long loops)
816{
817 unsigned long bclock, now;
818
819 bclock = tick_ops->get_tick();
820 do {
821 now = tick_ops->get_tick();
822 } while ((now-bclock) < loops);
823}
824EXPORT_SYMBOL(__delay);
825
826void udelay(unsigned long usecs)
827{
828 __delay(tb_ticks_per_usec * usecs);
829}
830EXPORT_SYMBOL(udelay);
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832void __init time_init(void)
833{
834 unsigned long clock = sparc64_init_timers();
835
David S. Miller8b99cfb2007-07-14 02:23:37 -0700836 tb_ticks_per_usec = clock / USEC_PER_SEC;
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 timer_ticks_per_nsec_quotient =
David S. Miller112f4872007-03-05 15:28:37 -0800839 clocksource_hz2mult(clock, SPARC64_NSEC_PER_CYC_SHIFT);
840
841 clocksource_tick.name = tick_ops->name;
842 clocksource_tick.mult =
843 clocksource_hz2mult(clock,
844 clocksource_tick.shift);
845 clocksource_tick.read = tick_ops->get_tick;
846
847 printk("clocksource: mult[%x] shift[%d]\n",
848 clocksource_tick.mult, clocksource_tick.shift);
849
850 clocksource_register(&clocksource_tick);
851
852 sparc64_clockevent.name = tick_ops->name;
853
854 setup_clockevent_multiplier(clock);
855
856 sparc64_clockevent.max_delta_ns =
David S. Millercf3d7c12008-03-26 01:11:55 -0700857 clockevent_delta2ns(0x7fffffffffffffffUL, &sparc64_clockevent);
David S. Miller112f4872007-03-05 15:28:37 -0800858 sparc64_clockevent.min_delta_ns =
859 clockevent_delta2ns(0xF, &sparc64_clockevent);
860
861 printk("clockevent: mult[%lx] shift[%d]\n",
862 sparc64_clockevent.mult, sparc64_clockevent.shift);
863
864 setup_sparc64_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
867unsigned long long sched_clock(void)
868{
869 unsigned long ticks = tick_ops->get_tick();
870
871 return (ticks * timer_ticks_per_nsec_quotient)
872 >> SPARC64_NSEC_PER_CYC_SHIFT;
873}
874
Andrew Morton941e4922008-02-06 01:36:42 -0800875int __devinit read_current_timer(unsigned long *timer_val)
876{
877 *timer_val = tick_ops->get_tick();
878 return 0;
879}