]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/sparc/kernel/time_64.c
Merge branch 'master' of /repos/git/net-next-2.6
[net-next-2.6.git] / arch / sparc / kernel / time_64.c
CommitLineData
cf3d7c1e 1/* time.c: UltraSparc timer and TOD clock support.
1da177e4 2 *
cf3d7c1e 3 * Copyright (C) 1997, 2008 David S. Miller (davem@davemloft.net)
1da177e4
LT
4 * 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
1da177e4
LT
11#include <linux/errno.h>
12#include <linux/module.h>
13#include <linux/sched.h>
14#include <linux/kernel.h>
15#include <linux/param.h>
16#include <linux/string.h>
17#include <linux/mm.h>
18#include <linux/interrupt.h>
19#include <linux/time.h>
20#include <linux/timex.h>
21#include <linux/init.h>
22#include <linux/ioport.h>
23#include <linux/mc146818rtc.h>
24#include <linux/delay.h>
25#include <linux/profile.h>
26#include <linux/bcd.h>
27#include <linux/jiffies.h>
28#include <linux/cpufreq.h>
29#include <linux/percpu.h>
8ba706a9
DM
30#include <linux/miscdevice.h>
31#include <linux/rtc.h>
1518e7ed 32#include <linux/rtc/m48t59.h>
777a4475 33#include <linux/kernel_stat.h>
112f4871
DM
34#include <linux/clockchips.h>
35#include <linux/clocksource.h>
764f2579 36#include <linux/of_device.h>
1518e7ed 37#include <linux/platform_device.h>
9960e9e8 38#include <linux/ftrace.h>
1da177e4
LT
39
40#include <asm/oplib.h>
1da177e4 41#include <asm/timer.h>
82268da1 42#include <asm/irq.h>
1da177e4 43#include <asm/io.h>
ff0d2fc6 44#include <asm/prom.h>
1da177e4
LT
45#include <asm/starfire.h>
46#include <asm/smp.h>
47#include <asm/sections.h>
48#include <asm/cpudata.h>
8ba706a9 49#include <asm/uaccess.h>
63540ba3 50#include <asm/irq_regs.h>
1da177e4 51
cf3d7c1e
DM
52#include "entry.h"
53
1da177e4 54DEFINE_SPINLOCK(rtc_lock);
1da177e4 55
1da177e4 56#define TICK_PRIV_BIT (1UL << 63)
112f4871 57#define TICKCMP_IRQ_BIT (1UL << 63)
1da177e4
LT
58
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
112f4871 91static void tick_disable_irq(void)
1da177e4 92{
1da177e4 93 __asm__ __volatile__(
1da177e4 94 " ba,pt %%xcc, 1f\n"
112f4871 95 " nop\n"
1da177e4 96 " .align 64\n"
112f4871 97 "1: wr %0, 0x0, %%tick_cmpr\n"
1da177e4
LT
98 " rd %%tick_cmpr, %%g0"
99 : /* no outputs */
112f4871
DM
100 : "r" (TICKCMP_IRQ_BIT));
101}
102
103static void tick_init_tick(void)
104{
105 tick_disable_protection();
106 tick_disable_irq();
1da177e4
LT
107}
108
90181136 109static unsigned long long tick_get_tick(void)
1da177e4
LT
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
112f4871 120static int tick_add_compare(unsigned long adj)
1da177e4 121{
112f4871 122 unsigned long orig_tick, new_tick, new_compare;
1da177e4 123
112f4871
DM
124 __asm__ __volatile__("rd %%tick, %0"
125 : "=r" (orig_tick));
1da177e4 126
112f4871 127 orig_tick &= ~TICKCMP_IRQ_BIT;
1da177e4
LT
128
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 */
112f4871
DM
138 __asm__ __volatile__("ba,pt %%xcc, 1f\n\t"
139 " add %1, %2, %0\n\t"
1da177e4
LT
140 ".align 64\n"
141 "1:\n\t"
142 "wr %0, 0, %%tick_cmpr\n\t"
112f4871
DM
143 "rd %%tick_cmpr, %%g0\n\t"
144 : "=r" (new_compare)
145 : "r" (orig_tick), "r" (adj));
146
147 __asm__ __volatile__("rd %%tick, %0"
148 : "=r" (new_tick));
149 new_tick &= ~TICKCMP_IRQ_BIT;
1da177e4 150
112f4871 151 return ((long)(new_tick - (orig_tick+adj))) > 0L;
1da177e4
LT
152}
153
112f4871 154static unsigned long tick_add_tick(unsigned long adj)
1da177e4 155{
112f4871 156 unsigned long new_tick;
1da177e4
LT
157
158 /* Also need to handle Blackbird bug here too. */
159 __asm__ __volatile__("rd %%tick, %0\n\t"
112f4871 160 "add %0, %1, %0\n\t"
1da177e4 161 "wrpr %0, 0, %%tick\n\t"
112f4871
DM
162 : "=&r" (new_tick)
163 : "r" (adj));
1da177e4
LT
164
165 return new_tick;
166}
167
d369ddd2 168static struct sparc64_tick_ops tick_operations __read_mostly = {
112f4871 169 .name = "tick",
1da177e4 170 .init_tick = tick_init_tick,
112f4871 171 .disable_irq = tick_disable_irq,
1da177e4 172 .get_tick = tick_get_tick,
1da177e4
LT
173 .add_tick = tick_add_tick,
174 .add_compare = tick_add_compare,
175 .softint_mask = 1UL << 0,
176};
177
fc321495 178struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations;
917c3660 179EXPORT_SYMBOL(tick_ops);
fc321495 180
112f4871
DM
181static void stick_disable_irq(void)
182{
183 __asm__ __volatile__(
184 "wr %0, 0x0, %%asr25"
185 : /* no outputs */
186 : "r" (TICKCMP_IRQ_BIT));
187}
188
189static void stick_init_tick(void)
1da177e4 190{
7aa62645
DM
191 /* Writes to the %tick and %stick register are not
192 * allowed on sun4v. The Hypervisor controls that
193 * bit, per-strand.
194 */
195 if (tlb_type != hypervisor) {
196 tick_disable_protection();
112f4871 197 tick_disable_irq();
7aa62645
DM
198
199 /* Let the user get at STICK too. */
200 __asm__ __volatile__(
201 " rd %%asr24, %%g2\n"
202 " andn %%g2, %0, %%g2\n"
203 " wr %%g2, 0, %%asr24"
204 : /* no outputs */
205 : "r" (TICK_PRIV_BIT)
206 : "g1", "g2");
207 }
1da177e4 208
112f4871 209 stick_disable_irq();
1da177e4
LT
210}
211
90181136 212static unsigned long long stick_get_tick(void)
1da177e4
LT
213{
214 unsigned long ret;
215
216 __asm__ __volatile__("rd %%asr24, %0"
217 : "=r" (ret));
218
219 return ret & ~TICK_PRIV_BIT;
220}
221
112f4871 222static unsigned long stick_add_tick(unsigned long adj)
1da177e4 223{
112f4871 224 unsigned long new_tick;
1da177e4
LT
225
226 __asm__ __volatile__("rd %%asr24, %0\n\t"
112f4871 227 "add %0, %1, %0\n\t"
1da177e4 228 "wr %0, 0, %%asr24\n\t"
112f4871
DM
229 : "=&r" (new_tick)
230 : "r" (adj));
1da177e4
LT
231
232 return new_tick;
233}
234
112f4871 235static int stick_add_compare(unsigned long adj)
1da177e4 236{
112f4871 237 unsigned long orig_tick, new_tick;
1da177e4 238
112f4871
DM
239 __asm__ __volatile__("rd %%asr24, %0"
240 : "=r" (orig_tick));
241 orig_tick &= ~TICKCMP_IRQ_BIT;
242
243 __asm__ __volatile__("wr %0, 0, %%asr25"
244 : /* no outputs */
245 : "r" (orig_tick + adj));
246
247 __asm__ __volatile__("rd %%asr24, %0"
248 : "=r" (new_tick));
249 new_tick &= ~TICKCMP_IRQ_BIT;
1da177e4 250
112f4871 251 return ((long)(new_tick - (orig_tick+adj))) > 0L;
1da177e4
LT
252}
253
d369ddd2 254static struct sparc64_tick_ops stick_operations __read_mostly = {
112f4871 255 .name = "stick",
1da177e4 256 .init_tick = stick_init_tick,
112f4871 257 .disable_irq = stick_disable_irq,
1da177e4 258 .get_tick = stick_get_tick,
1da177e4
LT
259 .add_tick = stick_add_tick,
260 .add_compare = stick_add_compare,
261 .softint_mask = 1UL << 16,
262};
263
264/* On Hummingbird the STICK/STICK_CMPR register is implemented
265 * in I/O space. There are two 64-bit registers each, the
266 * first holds the low 32-bits of the value and the second holds
267 * the high 32-bits.
268 *
269 * Since STICK is constantly updating, we have to access it carefully.
270 *
271 * The sequence we use to read is:
9eb3394b
RM
272 * 1) read high
273 * 2) read low
274 * 3) read high again, if it rolled re-read both low and high again.
1da177e4
LT
275 *
276 * Writing STICK safely is also tricky:
277 * 1) write low to zero
278 * 2) write high
279 * 3) write low
280 */
281#define HBIRD_STICKCMP_ADDR 0x1fe0000f060UL
282#define HBIRD_STICK_ADDR 0x1fe0000f070UL
283
284static unsigned long __hbird_read_stick(void)
285{
286 unsigned long ret, tmp1, tmp2, tmp3;
9eb3394b 287 unsigned long addr = HBIRD_STICK_ADDR+8;
1da177e4 288
9eb3394b
RM
289 __asm__ __volatile__("ldxa [%1] %5, %2\n"
290 "1:\n\t"
1da177e4 291 "sub %1, 0x8, %1\n\t"
9eb3394b
RM
292 "ldxa [%1] %5, %3\n\t"
293 "add %1, 0x8, %1\n\t"
1da177e4
LT
294 "ldxa [%1] %5, %4\n\t"
295 "cmp %4, %2\n\t"
9eb3394b
RM
296 "bne,a,pn %%xcc, 1b\n\t"
297 " mov %4, %2\n\t"
298 "sllx %4, 32, %4\n\t"
1da177e4
LT
299 "or %3, %4, %0\n\t"
300 : "=&r" (ret), "=&r" (addr),
301 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3)
302 : "i" (ASI_PHYS_BYPASS_EC_E), "1" (addr));
303
304 return ret;
305}
306
1da177e4
LT
307static void __hbird_write_stick(unsigned long val)
308{
309 unsigned long low = (val & 0xffffffffUL);
310 unsigned long high = (val >> 32UL);
311 unsigned long addr = HBIRD_STICK_ADDR;
312
313 __asm__ __volatile__("stxa %%g0, [%0] %4\n\t"
314 "add %0, 0x8, %0\n\t"
315 "stxa %3, [%0] %4\n\t"
316 "sub %0, 0x8, %0\n\t"
317 "stxa %2, [%0] %4"
318 : "=&r" (addr)
319 : "0" (addr), "r" (low), "r" (high),
320 "i" (ASI_PHYS_BYPASS_EC_E));
321}
322
323static void __hbird_write_compare(unsigned long val)
324{
325 unsigned long low = (val & 0xffffffffUL);
326 unsigned long high = (val >> 32UL);
327 unsigned long addr = HBIRD_STICKCMP_ADDR + 0x8UL;
328
329 __asm__ __volatile__("stxa %3, [%0] %4\n\t"
330 "sub %0, 0x8, %0\n\t"
331 "stxa %2, [%0] %4"
332 : "=&r" (addr)
333 : "0" (addr), "r" (low), "r" (high),
334 "i" (ASI_PHYS_BYPASS_EC_E));
335}
336
112f4871 337static void hbtick_disable_irq(void)
1da177e4 338{
112f4871
DM
339 __hbird_write_compare(TICKCMP_IRQ_BIT);
340}
1da177e4 341
112f4871
DM
342static void hbtick_init_tick(void)
343{
1da177e4
LT
344 tick_disable_protection();
345
346 /* XXX This seems to be necessary to 'jumpstart' Hummingbird
347 * XXX into actually sending STICK interrupts. I think because
348 * XXX of how we store %tick_cmpr in head.S this somehow resets the
349 * XXX {TICK + STICK} interrupt mux. -DaveM
350 */
351 __hbird_write_stick(__hbird_read_stick());
352
112f4871 353 hbtick_disable_irq();
1da177e4
LT
354}
355
90181136 356static unsigned long long hbtick_get_tick(void)
1da177e4
LT
357{
358 return __hbird_read_stick() & ~TICK_PRIV_BIT;
359}
360
112f4871 361static unsigned long hbtick_add_tick(unsigned long adj)
1da177e4
LT
362{
363 unsigned long val;
364
365 val = __hbird_read_stick() + adj;
366 __hbird_write_stick(val);
367
1da177e4
LT
368 return val;
369}
370
112f4871 371static int hbtick_add_compare(unsigned long adj)
1da177e4 372{
112f4871
DM
373 unsigned long val = __hbird_read_stick();
374 unsigned long val2;
1da177e4 375
112f4871
DM
376 val &= ~TICKCMP_IRQ_BIT;
377 val += adj;
1da177e4
LT
378 __hbird_write_compare(val);
379
112f4871
DM
380 val2 = __hbird_read_stick() & ~TICKCMP_IRQ_BIT;
381
382 return ((long)(val2 - val)) > 0L;
1da177e4
LT
383}
384
d369ddd2 385static struct sparc64_tick_ops hbtick_operations __read_mostly = {
112f4871 386 .name = "hbtick",
1da177e4 387 .init_tick = hbtick_init_tick,
112f4871 388 .disable_irq = hbtick_disable_irq,
1da177e4 389 .get_tick = hbtick_get_tick,
1da177e4
LT
390 .add_tick = hbtick_add_tick,
391 .add_compare = hbtick_add_compare,
392 .softint_mask = 1UL << 0,
393};
394
d369ddd2 395static unsigned long timer_ticks_per_nsec_quotient __read_mostly;
1da177e4 396
82644459 397int update_persistent_clock(struct timespec now)
a58c9f3c 398{
a0b31b57 399 struct rtc_device *rtc = rtc_class_open("rtc0");
90158d84 400 int err = -1;
a0b31b57 401
088a3962
DM
402 if (rtc) {
403 err = rtc_set_mmss(rtc, now.tv_sec);
404 rtc_class_close(rtc);
405 }
a0b31b57 406
90158d84 407 return err;
1da177e4
LT
408}
409
da86783d
DM
410unsigned long cmos_regs;
411EXPORT_SYMBOL(cmos_regs);
690c8fd3 412
d8ada0a2 413static struct resource rtc_cmos_resource;
da86783d
DM
414
415static struct platform_device rtc_cmos_device = {
416 .name = "rtc_cmos",
417 .id = -1,
418 .resource = &rtc_cmos_resource,
419 .num_resources = 1,
420};
690c8fd3 421
1518e7ed 422static int __devinit rtc_probe(struct of_device *op, const struct of_device_id *match)
690c8fd3 423{
da86783d 424 struct resource *r;
690c8fd3 425
90181136 426 printk(KERN_INFO "%s: RTC regs at 0x%llx\n",
da86783d 427 op->node->full_name, op->resource[0].start);
d037e053 428
da86783d
DM
429 /* The CMOS RTC driver only accepts IORESOURCE_IO, so cons
430 * up a fake resource so that the probe works for all cases.
431 * When the RTC is behind an ISA bus it will have IORESOURCE_IO
432 * already, whereas when it's behind EBUS is will be IORESOURCE_MEM.
433 */
434
435 r = &rtc_cmos_resource;
436 r->flags = IORESOURCE_IO;
437 r->name = op->resource[0].name;
438 r->start = op->resource[0].start;
439 r->end = op->resource[0].end;
440
441 cmos_regs = op->resource[0].start;
442 return platform_device_register(&rtc_cmos_device);
443}
444
fd098316 445static struct of_device_id __initdata rtc_match[] = {
da86783d
DM
446 {
447 .name = "rtc",
448 .compatible = "m5819",
449 },
450 {
451 .name = "rtc",
452 .compatible = "isa-m5819p",
453 },
454 {
455 .name = "rtc",
456 .compatible = "isa-m5823p",
457 },
458 {
459 .name = "rtc",
460 .compatible = "ds1287",
461 },
462 {},
463};
464
465static struct of_platform_driver rtc_driver = {
466 .match_table = rtc_match,
467 .probe = rtc_probe,
468 .driver = {
469 .name = "rtc",
470 },
471};
91521485 472
29b503f1
DM
473static struct platform_device rtc_bq4802_device = {
474 .name = "rtc-bq4802",
475 .id = -1,
476 .num_resources = 1,
477};
478
da86783d
DM
479static int __devinit bq4802_probe(struct of_device *op, const struct of_device_id *match)
480{
690c8fd3 481
90181136 482 printk(KERN_INFO "%s: BQ4802 regs at 0x%llx\n",
29b503f1 483 op->node->full_name, op->resource[0].start);
690c8fd3 484
29b503f1
DM
485 rtc_bq4802_device.resource = &op->resource[0];
486 return platform_device_register(&rtc_bq4802_device);
690c8fd3 487}
690c8fd3 488
fd098316 489static struct of_device_id __initdata bq4802_match[] = {
ee5caf0e 490 {
1518e7ed 491 .name = "rtc",
da86783d 492 .compatible = "bq4802",
1518e7ed 493 },
770a4241 494 {},
1518e7ed
DM
495};
496
da86783d
DM
497static struct of_platform_driver bq4802_driver = {
498 .match_table = bq4802_match,
499 .probe = bq4802_probe,
1518e7ed 500 .driver = {
da86783d 501 .name = "bq4802",
ee5caf0e 502 },
1518e7ed
DM
503};
504
505static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
506{
507 struct platform_device *pdev = to_platform_device(dev);
12a9ee3c
KH
508 void __iomem *regs = (void __iomem *) pdev->resource[0].start;
509
510 return readb(regs + ofs);
1518e7ed
DM
511}
512
513static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
514{
515 struct platform_device *pdev = to_platform_device(dev);
12a9ee3c
KH
516 void __iomem *regs = (void __iomem *) pdev->resource[0].start;
517
1518e7ed
DM
518 writeb(val, regs + ofs);
519}
520
521static struct m48t59_plat_data m48t59_data = {
522 .read_byte = mostek_read_byte,
523 .write_byte = mostek_write_byte,
524};
525
526static struct platform_device m48t59_rtc = {
527 .name = "rtc-m48t59",
528 .id = 0,
529 .num_resources = 1,
530 .dev = {
531 .platform_data = &m48t59_data,
532 },
533};
534
535static int __devinit mostek_probe(struct of_device *op, const struct of_device_id *match)
536{
537 struct device_node *dp = op->node;
538
539 /* On an Enterprise system there can be multiple mostek clocks.
540 * We should only match the one that is on the central FHC bus.
541 */
542 if (!strcmp(dp->parent->name, "fhc") &&
543 strcmp(dp->parent->parent->name, "central") != 0)
544 return -ENODEV;
545
90181136 546 printk(KERN_INFO "%s: Mostek regs at 0x%llx\n",
1518e7ed
DM
547 dp->full_name, op->resource[0].start);
548
549 m48t59_rtc.resource = &op->resource[0];
550 return platform_device_register(&m48t59_rtc);
551}
552
fd098316 553static struct of_device_id __initdata mostek_match[] = {
ee5caf0e 554 {
1518e7ed 555 .name = "eeprom",
ee5caf0e
DM
556 },
557 {},
558};
690c8fd3 559
1518e7ed
DM
560static struct of_platform_driver mostek_driver = {
561 .match_table = mostek_match,
562 .probe = mostek_probe,
a2cd1558 563 .driver = {
1518e7ed 564 .name = "mostek",
a2cd1558 565 },
ee5caf0e 566};
690c8fd3 567
84d6bd5e
DM
568static struct platform_device rtc_sun4v_device = {
569 .name = "rtc-sun4v",
570 .id = -1,
571};
572
f2be6de8
DM
573static struct platform_device rtc_starfire_device = {
574 .name = "rtc-starfire",
575 .id = -1,
576};
577
ee5caf0e 578static int __init clock_init(void)
690c8fd3 579{
f2be6de8
DM
580 if (this_is_starfire)
581 return platform_device_register(&rtc_starfire_device);
582
84d6bd5e
DM
583 if (tlb_type == hypervisor)
584 return platform_device_register(&rtc_sun4v_device);
1da177e4 585
1518e7ed
DM
586 (void) of_register_driver(&rtc_driver, &of_platform_bus_type);
587 (void) of_register_driver(&mostek_driver, &of_platform_bus_type);
da86783d 588 (void) of_register_driver(&bq4802_driver, &of_platform_bus_type);
1518e7ed
DM
589
590 return 0;
1da177e4
LT
591}
592
ee5caf0e
DM
593/* Must be after subsys_initcall() so that busses are probed. Must
594 * be before device_initcall() because things like the RTC driver
595 * need to see the clock registers.
596 */
597fs_initcall(clock_init);
598
1da177e4
LT
599/* This is gets the master TICK_INT timer going. */
600static unsigned long sparc64_init_timers(void)
601{
07f8e5f3 602 struct device_node *dp;
d8ada0a2 603 unsigned long freq;
1da177e4 604
07f8e5f3 605 dp = of_find_node_by_path("/");
1da177e4
LT
606 if (tlb_type == spitfire) {
607 unsigned long ver, manuf, impl;
608
609 __asm__ __volatile__ ("rdpr %%ver, %0"
610 : "=&r" (ver));
611 manuf = ((ver >> 48) & 0xffff);
612 impl = ((ver >> 32) & 0xffff);
613 if (manuf == 0x17 && impl == 0x13) {
614 /* Hummingbird, aka Ultra-IIe */
615 tick_ops = &hbtick_operations;
d8ada0a2 616 freq = of_getintprop_default(dp, "stick-frequency", 0);
1da177e4
LT
617 } else {
618 tick_ops = &tick_operations;
d8ada0a2 619 freq = local_cpu_data().clock_tick;
1da177e4
LT
620 }
621 } else {
622 tick_ops = &stick_operations;
d8ada0a2 623 freq = of_getintprop_default(dp, "stick-frequency", 0);
1da177e4 624 }
1da177e4 625
d8ada0a2 626 return freq;
1da177e4
LT
627}
628
1da177e4 629struct freq_table {
1da177e4
LT
630 unsigned long clock_tick_ref;
631 unsigned int ref_freq;
632};
3763be32 633static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 };
1da177e4
LT
634
635unsigned long sparc64_get_clock_tick(unsigned int cpu)
636{
637 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
638
639 if (ft->clock_tick_ref)
640 return ft->clock_tick_ref;
641 return cpu_data(cpu).clock_tick;
642}
917c3660 643EXPORT_SYMBOL(sparc64_get_clock_tick);
1da177e4
LT
644
645#ifdef CONFIG_CPU_FREQ
646
647static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
648 void *data)
649{
650 struct cpufreq_freqs *freq = data;
651 unsigned int cpu = freq->cpu;
652 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu);
653
654 if (!ft->ref_freq) {
655 ft->ref_freq = freq->old;
1da177e4
LT
656 ft->clock_tick_ref = cpu_data(cpu).clock_tick;
657 }
658 if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
659 (val == CPUFREQ_POSTCHANGE && freq->old > freq->new) ||
660 (val == CPUFREQ_RESUMECHANGE)) {
1da177e4
LT
661 cpu_data(cpu).clock_tick =
662 cpufreq_scale(ft->clock_tick_ref,
663 ft->ref_freq,
664 freq->new);
665 }
666
667 return 0;
668}
669
670static struct notifier_block sparc64_cpufreq_notifier_block = {
671 .notifier_call = sparc64_cpufreq_notifier
672};
673
7ae93f51
DM
674static int __init register_sparc64_cpufreq_notifier(void)
675{
676
677 cpufreq_register_notifier(&sparc64_cpufreq_notifier_block,
678 CPUFREQ_TRANSITION_NOTIFIER);
679 return 0;
680}
681
682core_initcall(register_sparc64_cpufreq_notifier);
683
1da177e4
LT
684#endif /* CONFIG_CPU_FREQ */
685
112f4871
DM
686static int sparc64_next_event(unsigned long delta,
687 struct clock_event_device *evt)
688{
d62c6f09 689 return tick_ops->add_compare(delta) ? -ETIME : 0;
112f4871
DM
690}
691
692static void sparc64_timer_setup(enum clock_event_mode mode,
693 struct clock_event_device *evt)
694{
695 switch (mode) {
696 case CLOCK_EVT_MODE_ONESHOT:
18de5bc4 697 case CLOCK_EVT_MODE_RESUME:
112f4871
DM
698 break;
699
700 case CLOCK_EVT_MODE_SHUTDOWN:
701 tick_ops->disable_irq();
702 break;
703
704 case CLOCK_EVT_MODE_PERIODIC:
705 case CLOCK_EVT_MODE_UNUSED:
706 WARN_ON(1);
707 break;
708 };
709}
710
711static struct clock_event_device sparc64_clockevent = {
712 .features = CLOCK_EVT_FEAT_ONESHOT,
713 .set_mode = sparc64_timer_setup,
714 .set_next_event = sparc64_next_event,
715 .rating = 100,
716 .shift = 30,
717 .irq = -1,
1da177e4 718};
112f4871 719static DEFINE_PER_CPU(struct clock_event_device, sparc64_events);
1da177e4 720
9960e9e8 721void __irq_entry timer_interrupt(int irq, struct pt_regs *regs)
1da177e4 722{
112f4871
DM
723 struct pt_regs *old_regs = set_irq_regs(regs);
724 unsigned long tick_mask = tick_ops->softint_mask;
725 int cpu = smp_processor_id();
726 struct clock_event_device *evt = &per_cpu(sparc64_events, cpu);
727
728 clear_softint(tick_mask);
729
730 irq_enter();
731
daecbf58 732 local_cpu_data().irq0_irqs++;
d2287f5e 733 kstat_incr_irqs_this_cpu(0, irq_to_desc(0));
112f4871
DM
734
735 if (unlikely(!evt->event_handler)) {
736 printk(KERN_WARNING
737 "Spurious SPARC64 timer interrupt on cpu %d\n", cpu);
738 } else
739 evt->event_handler(evt);
740
741 irq_exit();
742
743 set_irq_regs(old_regs);
744}
1da177e4 745
112f4871
DM
746void __devinit setup_sparc64_timer(void)
747{
748 struct clock_event_device *sevt;
749 unsigned long pstate;
1da177e4 750
112f4871
DM
751 /* Guarantee that the following sequences execute
752 * uninterrupted.
1da177e4 753 */
112f4871
DM
754 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
755 "wrpr %0, %1, %%pstate"
756 : "=r" (pstate)
757 : "i" (PSTATE_IE));
758
759 tick_ops->init_tick();
760
761 /* Restore PSTATE_IE. */
762 __asm__ __volatile__("wrpr %0, 0x0, %%pstate"
763 : /* no outputs */
764 : "r" (pstate));
765
766 sevt = &__get_cpu_var(sparc64_events);
767
768 memcpy(sevt, &sparc64_clockevent, sizeof(*sevt));
320ab2b0 769 sevt->cpumask = cpumask_of(smp_processor_id());
112f4871
DM
770
771 clockevents_register_device(sevt);
772}
773
03983ab8 774#define SPARC64_NSEC_PER_CYC_SHIFT 10UL
112f4871
DM
775
776static struct clocksource clocksource_tick = {
777 .rating = 100,
778 .mask = CLOCKSOURCE_MASK(64),
112f4871
DM
779 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
780};
781
8b99cfb8
DM
782static unsigned long tb_ticks_per_usec __read_mostly;
783
784void __delay(unsigned long loops)
785{
786 unsigned long bclock, now;
787
788 bclock = tick_ops->get_tick();
789 do {
790 now = tick_ops->get_tick();
791 } while ((now-bclock) < loops);
792}
793EXPORT_SYMBOL(__delay);
794
795void udelay(unsigned long usecs)
796{
797 __delay(tb_ticks_per_usec * usecs);
798}
799EXPORT_SYMBOL(udelay);
800
8e19608e
MD
801static cycle_t clocksource_tick_read(struct clocksource *cs)
802{
803 return tick_ops->get_tick();
804}
805
112f4871
DM
806void __init time_init(void)
807{
d8ada0a2 808 unsigned long freq = sparc64_init_timers();
1da177e4 809
d8ada0a2 810 tb_ticks_per_usec = freq / USEC_PER_SEC;
8b99cfb8 811
1da177e4 812 timer_ticks_per_nsec_quotient =
d8ada0a2 813 clocksource_hz2mult(freq, SPARC64_NSEC_PER_CYC_SHIFT);
112f4871
DM
814
815 clocksource_tick.name = tick_ops->name;
6865b7f9 816 clocksource_calc_mult_shift(&clocksource_tick, freq, 4);
8e19608e 817 clocksource_tick.read = clocksource_tick_read;
112f4871
DM
818
819 printk("clocksource: mult[%x] shift[%d]\n",
820 clocksource_tick.mult, clocksource_tick.shift);
821
822 clocksource_register(&clocksource_tick);
823
824 sparc64_clockevent.name = tick_ops->name;
6865b7f9 825 clockevents_calc_mult_shift(&sparc64_clockevent, freq, 4);
112f4871
DM
826
827 sparc64_clockevent.max_delta_ns =
cf3d7c1e 828 clockevent_delta2ns(0x7fffffffffffffffUL, &sparc64_clockevent);
112f4871
DM
829 sparc64_clockevent.min_delta_ns =
830 clockevent_delta2ns(0xF, &sparc64_clockevent);
831
7466bd3c 832 printk("clockevent: mult[%x] shift[%d]\n",
112f4871
DM
833 sparc64_clockevent.mult, sparc64_clockevent.shift);
834
835 setup_sparc64_timer();
1da177e4
LT
836}
837
838unsigned long long sched_clock(void)
839{
840 unsigned long ticks = tick_ops->get_tick();
841
842 return (ticks * timer_ticks_per_nsec_quotient)
843 >> SPARC64_NSEC_PER_CYC_SHIFT;
844}
845
941e492b
AM
846int __devinit read_current_timer(unsigned long *timer_val)
847{
848 *timer_val = tick_ops->get_tick();
849 return 0;
850}