David S. Miller | cf3d7c1 | 2008-03-26 01:11:55 -0700 | [diff] [blame] | 1 | /* time.c: UltraSparc timer and TOD clock support. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
David S. Miller | cf3d7c1 | 2008-03-26 01:11:55 -0700 | [diff] [blame] | 3 | * Copyright (C) 1997, 2008 David S. Miller (davem@davemloft.net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/errno.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/sched.h> |
Arnd Bergmann | 09de361 | 2008-05-20 19:16:50 +0200 | [diff] [blame] | 14 | #include <linux/smp_lock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #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. Miller | 8ba706a | 2006-03-01 17:32:46 -0800 | [diff] [blame] | 31 | #include <linux/miscdevice.h> |
| 32 | #include <linux/rtc.h> |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 33 | #include <linux/rtc/m48t59.h> |
David S. Miller | 777a447 | 2007-02-22 06:24:10 -0800 | [diff] [blame] | 34 | #include <linux/kernel_stat.h> |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 35 | #include <linux/clockchips.h> |
| 36 | #include <linux/clocksource.h> |
Stephen Rothwell | 764f257 | 2008-08-07 15:33:36 -0700 | [diff] [blame] | 37 | #include <linux/of_device.h> |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 38 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | #include <asm/oplib.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <asm/timer.h> |
| 42 | #include <asm/irq.h> |
| 43 | #include <asm/io.h> |
David S. Miller | ff0d2fc | 2006-06-29 15:28:05 -0700 | [diff] [blame] | 44 | #include <asm/prom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/starfire.h> |
| 46 | #include <asm/smp.h> |
| 47 | #include <asm/sections.h> |
| 48 | #include <asm/cpudata.h> |
David S. Miller | 8ba706a | 2006-03-01 17:32:46 -0800 | [diff] [blame] | 49 | #include <asm/uaccess.h> |
Al Viro | 63540ba | 2006-10-09 11:51:14 +0100 | [diff] [blame] | 50 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
David S. Miller | cf3d7c1 | 2008-03-26 01:11:55 -0700 | [diff] [blame] | 52 | #include "entry.h" |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | DEFINE_SPINLOCK(rtc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #define TICK_PRIV_BIT (1UL << 63) |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 57 | #define TICKCMP_IRQ_BIT (1UL << 63) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | #ifdef CONFIG_SMP |
| 60 | unsigned 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 | } |
| 68 | EXPORT_SYMBOL(profile_pc); |
| 69 | #endif |
| 70 | |
| 71 | static 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. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 91 | static void tick_disable_irq(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | __asm__ __volatile__( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | " ba,pt %%xcc, 1f\n" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 95 | " nop\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | " .align 64\n" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 97 | "1: wr %0, 0x0, %%tick_cmpr\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | " rd %%tick_cmpr, %%g0" |
| 99 | : /* no outputs */ |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 100 | : "r" (TICKCMP_IRQ_BIT)); |
| 101 | } |
| 102 | |
| 103 | static void tick_init_tick(void) |
| 104 | { |
| 105 | tick_disable_protection(); |
| 106 | tick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | static 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. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 120 | static int tick_add_compare(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 122 | unsigned long orig_tick, new_tick, new_compare; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 124 | __asm__ __volatile__("rd %%tick, %0" |
| 125 | : "=r" (orig_tick)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 127 | orig_tick &= ~TICKCMP_IRQ_BIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 138 | __asm__ __volatile__("ba,pt %%xcc, 1f\n\t" |
| 139 | " add %1, %2, %0\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | ".align 64\n" |
| 141 | "1:\n\t" |
| 142 | "wr %0, 0, %%tick_cmpr\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 143 | "rd %%tick_cmpr, %%g0\n\t" |
| 144 | : "=r" (new_compare) |
| 145 | : "r" (orig_tick), "r" (adj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 147 | __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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 154 | static unsigned long tick_add_tick(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 156 | unsigned long new_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | /* Also need to handle Blackbird bug here too. */ |
| 159 | __asm__ __volatile__("rd %%tick, %0\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 160 | "add %0, %1, %0\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | "wrpr %0, 0, %%tick\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 162 | : "=&r" (new_tick) |
| 163 | : "r" (adj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
| 165 | return new_tick; |
| 166 | } |
| 167 | |
David S. Miller | d369ddd | 2005-07-10 15:45:11 -0700 | [diff] [blame] | 168 | static struct sparc64_tick_ops tick_operations __read_mostly = { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 169 | .name = "tick", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | .init_tick = tick_init_tick, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 171 | .disable_irq = tick_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | .get_tick = tick_get_tick, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | .add_tick = tick_add_tick, |
| 174 | .add_compare = tick_add_compare, |
| 175 | .softint_mask = 1UL << 0, |
| 176 | }; |
| 177 | |
David S. Miller | fc32149 | 2005-11-07 14:10:10 -0800 | [diff] [blame] | 178 | struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations; |
| 179 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 180 | static void stick_disable_irq(void) |
| 181 | { |
| 182 | __asm__ __volatile__( |
| 183 | "wr %0, 0x0, %%asr25" |
| 184 | : /* no outputs */ |
| 185 | : "r" (TICKCMP_IRQ_BIT)); |
| 186 | } |
| 187 | |
| 188 | static void stick_init_tick(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
David S. Miller | 7aa6264 | 2006-02-11 23:14:59 -0800 | [diff] [blame] | 190 | /* 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. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 196 | tick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
David S. Miller | 7aa6264 | 2006-02-11 23:14:59 -0800 | [diff] [blame] | 198 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 208 | stick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | static 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. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 221 | static unsigned long stick_add_tick(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 223 | unsigned long new_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | __asm__ __volatile__("rd %%asr24, %0\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 226 | "add %0, %1, %0\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | "wr %0, 0, %%asr24\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 228 | : "=&r" (new_tick) |
| 229 | : "r" (adj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | return new_tick; |
| 232 | } |
| 233 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 234 | static int stick_add_compare(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 236 | unsigned long orig_tick, new_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 238 | __asm__ __volatile__("rd %%asr24, %0" |
| 239 | : "=r" (orig_tick)); |
| 240 | orig_tick &= ~TICKCMP_IRQ_BIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 242 | __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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
David S. Miller | d369ddd | 2005-07-10 15:45:11 -0700 | [diff] [blame] | 253 | static struct sparc64_tick_ops stick_operations __read_mostly = { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 254 | .name = "stick", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | .init_tick = stick_init_tick, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 256 | .disable_irq = stick_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | .get_tick = stick_get_tick, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | .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 Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 271 | * 1) read high |
| 272 | * 2) read low |
| 273 | * 3) read high again, if it rolled re-read both low and high again. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | * |
| 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 | |
| 283 | static unsigned long __hbird_read_stick(void) |
| 284 | { |
| 285 | unsigned long ret, tmp1, tmp2, tmp3; |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 286 | unsigned long addr = HBIRD_STICK_ADDR+8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 288 | __asm__ __volatile__("ldxa [%1] %5, %2\n" |
| 289 | "1:\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | "sub %1, 0x8, %1\n\t" |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 291 | "ldxa [%1] %5, %3\n\t" |
| 292 | "add %1, 0x8, %1\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | "ldxa [%1] %5, %4\n\t" |
| 294 | "cmp %4, %2\n\t" |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 295 | "bne,a,pn %%xcc, 1b\n\t" |
| 296 | " mov %4, %2\n\t" |
| 297 | "sllx %4, 32, %4\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | "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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | static 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 | |
| 322 | static 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. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 336 | static void hbtick_disable_irq(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 338 | __hbird_write_compare(TICKCMP_IRQ_BIT); |
| 339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 341 | static void hbtick_init_tick(void) |
| 342 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | 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. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 352 | hbtick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | static unsigned long hbtick_get_tick(void) |
| 356 | { |
| 357 | return __hbird_read_stick() & ~TICK_PRIV_BIT; |
| 358 | } |
| 359 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 360 | static unsigned long hbtick_add_tick(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
| 362 | unsigned long val; |
| 363 | |
| 364 | val = __hbird_read_stick() + adj; |
| 365 | __hbird_write_stick(val); |
| 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | return val; |
| 368 | } |
| 369 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 370 | static int hbtick_add_compare(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 372 | unsigned long val = __hbird_read_stick(); |
| 373 | unsigned long val2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 375 | val &= ~TICKCMP_IRQ_BIT; |
| 376 | val += adj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | __hbird_write_compare(val); |
| 378 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 379 | val2 = __hbird_read_stick() & ~TICKCMP_IRQ_BIT; |
| 380 | |
| 381 | return ((long)(val2 - val)) > 0L; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | } |
| 383 | |
David S. Miller | d369ddd | 2005-07-10 15:45:11 -0700 | [diff] [blame] | 384 | static struct sparc64_tick_ops hbtick_operations __read_mostly = { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 385 | .name = "hbtick", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | .init_tick = hbtick_init_tick, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 387 | .disable_irq = hbtick_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | .get_tick = hbtick_get_tick, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | .add_tick = hbtick_add_tick, |
| 390 | .add_compare = hbtick_add_compare, |
| 391 | .softint_mask = 1UL << 0, |
| 392 | }; |
| 393 | |
David S. Miller | d369ddd | 2005-07-10 15:45:11 -0700 | [diff] [blame] | 394 | static unsigned long timer_ticks_per_nsec_quotient __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 396 | int update_persistent_clock(struct timespec now) |
David S. Miller | a58c9f3 | 2007-02-22 04:16:21 -0800 | [diff] [blame] | 397 | { |
David S. Miller | a0b31b5 | 2008-08-28 17:34:31 -0700 | [diff] [blame] | 398 | struct rtc_device *rtc = rtc_class_open("rtc0"); |
| 399 | |
| 400 | if (rtc) |
| 401 | return rtc_set_mmss(rtc, now.tv_sec); |
| 402 | |
David S. Miller | 29b503f | 2008-08-28 21:54:34 -0700 | [diff] [blame] | 403 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
| 405 | |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 406 | unsigned long cmos_regs; |
| 407 | EXPORT_SYMBOL(cmos_regs); |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 408 | |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 409 | struct resource rtc_cmos_resource; |
| 410 | |
| 411 | static 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. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 417 | |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 418 | static int __devinit rtc_probe(struct of_device *op, const struct of_device_id *match) |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 419 | { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 420 | 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. Miller | fd09831 | 2008-08-31 01:23:17 -0700 | [diff] [blame] | 441 | static struct of_device_id __initdata rtc_match[] = { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 442 | { |
| 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 | |
| 461 | static 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. Miller | 29b503f | 2008-08-28 21:54:34 -0700 | [diff] [blame] | 469 | static struct platform_device rtc_bq4802_device = { |
| 470 | .name = "rtc-bq4802", |
| 471 | .id = -1, |
| 472 | .num_resources = 1, |
| 473 | }; |
| 474 | |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 475 | static int __devinit bq4802_probe(struct of_device *op, const struct of_device_id *match) |
| 476 | { |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 477 | |
David S. Miller | 29b503f | 2008-08-28 21:54:34 -0700 | [diff] [blame] | 478 | printk(KERN_INFO "%s: BQ4802 regs at 0x%lx\n", |
| 479 | op->node->full_name, op->resource[0].start); |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 480 | |
David S. Miller | 29b503f | 2008-08-28 21:54:34 -0700 | [diff] [blame] | 481 | rtc_bq4802_device.resource = &op->resource[0]; |
| 482 | return platform_device_register(&rtc_bq4802_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
| 484 | |
David S. Miller | fd09831 | 2008-08-31 01:23:17 -0700 | [diff] [blame] | 485 | static struct of_device_id __initdata bq4802_match[] = { |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 486 | { |
| 487 | .name = "rtc", |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 488 | .compatible = "bq4802", |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 489 | }, |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 490 | }; |
| 491 | |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 492 | static struct of_platform_driver bq4802_driver = { |
| 493 | .match_table = bq4802_match, |
| 494 | .probe = bq4802_probe, |
Stephen Rothwell | a2cd155 | 2007-10-10 23:27:34 -0700 | [diff] [blame] | 495 | .driver = { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 496 | .name = "bq4802", |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 497 | }, |
| 498 | }; |
| 499 | |
| 500 | static unsigned char mostek_read_byte(struct device *dev, u32 ofs) |
| 501 | { |
| 502 | struct platform_device *pdev = to_platform_device(dev); |
Krzysztof Helt | 3baca76 | 2008-09-07 18:12:59 -0700 | [diff] [blame^] | 503 | struct m48t59_plat_data *pdata = pdev->dev.platform_data; |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 504 | void __iomem *regs; |
| 505 | unsigned char val; |
| 506 | |
| 507 | regs = (void __iomem *) pdev->resource[0].start; |
| 508 | val = readb(regs + ofs); |
| 509 | |
| 510 | /* the year 0 is 1968 */ |
Krzysztof Helt | 3baca76 | 2008-09-07 18:12:59 -0700 | [diff] [blame^] | 511 | if (ofs == pdata->offset + M48T59_YEAR) { |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 512 | val += 0x68; |
| 513 | if ((val & 0xf) > 9) |
| 514 | val += 6; |
| 515 | } |
| 516 | return val; |
| 517 | } |
| 518 | |
| 519 | static void mostek_write_byte(struct device *dev, u32 ofs, u8 val) |
| 520 | { |
| 521 | struct platform_device *pdev = to_platform_device(dev); |
Krzysztof Helt | 3baca76 | 2008-09-07 18:12:59 -0700 | [diff] [blame^] | 522 | struct m48t59_plat_data *pdata = pdev->dev.platform_data; |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 523 | void __iomem *regs; |
| 524 | |
| 525 | regs = (void __iomem *) pdev->resource[0].start; |
Krzysztof Helt | 3baca76 | 2008-09-07 18:12:59 -0700 | [diff] [blame^] | 526 | if (ofs == pdata->offset + M48T59_YEAR) { |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 527 | if (val < 0x68) |
| 528 | val += 0x32; |
| 529 | else |
| 530 | val -= 0x68; |
| 531 | if ((val & 0xf) > 9) |
| 532 | val += 6; |
| 533 | if ((val & 0xf0) > 0x9A) |
| 534 | val += 0x60; |
| 535 | } |
| 536 | writeb(val, regs + ofs); |
| 537 | } |
| 538 | |
| 539 | static struct m48t59_plat_data m48t59_data = { |
| 540 | .read_byte = mostek_read_byte, |
| 541 | .write_byte = mostek_write_byte, |
| 542 | }; |
| 543 | |
| 544 | static struct platform_device m48t59_rtc = { |
| 545 | .name = "rtc-m48t59", |
| 546 | .id = 0, |
| 547 | .num_resources = 1, |
| 548 | .dev = { |
| 549 | .platform_data = &m48t59_data, |
| 550 | }, |
| 551 | }; |
| 552 | |
| 553 | static int __devinit mostek_probe(struct of_device *op, const struct of_device_id *match) |
| 554 | { |
| 555 | struct device_node *dp = op->node; |
| 556 | |
| 557 | /* On an Enterprise system there can be multiple mostek clocks. |
| 558 | * We should only match the one that is on the central FHC bus. |
| 559 | */ |
| 560 | if (!strcmp(dp->parent->name, "fhc") && |
| 561 | strcmp(dp->parent->parent->name, "central") != 0) |
| 562 | return -ENODEV; |
| 563 | |
| 564 | printk(KERN_INFO "%s: Mostek regs at 0x%lx\n", |
| 565 | dp->full_name, op->resource[0].start); |
| 566 | |
| 567 | m48t59_rtc.resource = &op->resource[0]; |
| 568 | return platform_device_register(&m48t59_rtc); |
| 569 | } |
| 570 | |
David S. Miller | fd09831 | 2008-08-31 01:23:17 -0700 | [diff] [blame] | 571 | static struct of_device_id __initdata mostek_match[] = { |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 572 | { |
| 573 | .name = "eeprom", |
| 574 | }, |
| 575 | {}, |
| 576 | }; |
| 577 | |
| 578 | static struct of_platform_driver mostek_driver = { |
| 579 | .match_table = mostek_match, |
| 580 | .probe = mostek_probe, |
| 581 | .driver = { |
| 582 | .name = "mostek", |
Stephen Rothwell | a2cd155 | 2007-10-10 23:27:34 -0700 | [diff] [blame] | 583 | }, |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 584 | }; |
| 585 | |
David S. Miller | 84d6bd5 | 2008-08-29 01:34:27 -0700 | [diff] [blame] | 586 | static struct platform_device rtc_sun4v_device = { |
| 587 | .name = "rtc-sun4v", |
| 588 | .id = -1, |
| 589 | }; |
| 590 | |
David S. Miller | f2be6de | 2008-08-29 01:35:19 -0700 | [diff] [blame] | 591 | static struct platform_device rtc_starfire_device = { |
| 592 | .name = "rtc-starfire", |
| 593 | .id = -1, |
| 594 | }; |
| 595 | |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 596 | static int __init clock_init(void) |
| 597 | { |
David S. Miller | f2be6de | 2008-08-29 01:35:19 -0700 | [diff] [blame] | 598 | if (this_is_starfire) |
| 599 | return platform_device_register(&rtc_starfire_device); |
| 600 | |
David S. Miller | 84d6bd5 | 2008-08-29 01:34:27 -0700 | [diff] [blame] | 601 | if (tlb_type == hypervisor) |
| 602 | return platform_device_register(&rtc_sun4v_device); |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 603 | |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 604 | (void) of_register_driver(&rtc_driver, &of_platform_bus_type); |
| 605 | (void) of_register_driver(&mostek_driver, &of_platform_bus_type); |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 606 | (void) of_register_driver(&bq4802_driver, &of_platform_bus_type); |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 607 | |
| 608 | return 0; |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | /* Must be after subsys_initcall() so that busses are probed. Must |
| 612 | * be before device_initcall() because things like the RTC driver |
| 613 | * need to see the clock registers. |
| 614 | */ |
| 615 | fs_initcall(clock_init); |
| 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /* This is gets the master TICK_INT timer going. */ |
| 618 | static unsigned long sparc64_init_timers(void) |
| 619 | { |
David S. Miller | 07f8e5f | 2006-06-21 23:34:02 -0700 | [diff] [blame] | 620 | struct device_node *dp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | unsigned long clock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
David S. Miller | 07f8e5f | 2006-06-21 23:34:02 -0700 | [diff] [blame] | 623 | dp = of_find_node_by_path("/"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | if (tlb_type == spitfire) { |
| 625 | unsigned long ver, manuf, impl; |
| 626 | |
| 627 | __asm__ __volatile__ ("rdpr %%ver, %0" |
| 628 | : "=&r" (ver)); |
| 629 | manuf = ((ver >> 48) & 0xffff); |
| 630 | impl = ((ver >> 32) & 0xffff); |
| 631 | if (manuf == 0x17 && impl == 0x13) { |
| 632 | /* Hummingbird, aka Ultra-IIe */ |
| 633 | tick_ops = &hbtick_operations; |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 634 | clock = of_getintprop_default(dp, "stick-frequency", 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | } else { |
| 636 | tick_ops = &tick_operations; |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 637 | clock = local_cpu_data().clock_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } |
| 639 | } else { |
| 640 | tick_ops = &stick_operations; |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 641 | clock = of_getintprop_default(dp, "stick-frequency", 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | return clock; |
| 645 | } |
| 646 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | struct freq_table { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | unsigned long clock_tick_ref; |
| 649 | unsigned int ref_freq; |
| 650 | }; |
David S. Miller | 3763be3 | 2006-02-17 12:33:13 -0800 | [diff] [blame] | 651 | static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
| 653 | unsigned long sparc64_get_clock_tick(unsigned int cpu) |
| 654 | { |
| 655 | struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu); |
| 656 | |
| 657 | if (ft->clock_tick_ref) |
| 658 | return ft->clock_tick_ref; |
| 659 | return cpu_data(cpu).clock_tick; |
| 660 | } |
| 661 | |
| 662 | #ifdef CONFIG_CPU_FREQ |
| 663 | |
| 664 | static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val, |
| 665 | void *data) |
| 666 | { |
| 667 | struct cpufreq_freqs *freq = data; |
| 668 | unsigned int cpu = freq->cpu; |
| 669 | struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu); |
| 670 | |
| 671 | if (!ft->ref_freq) { |
| 672 | ft->ref_freq = freq->old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | ft->clock_tick_ref = cpu_data(cpu).clock_tick; |
| 674 | } |
| 675 | if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) || |
| 676 | (val == CPUFREQ_POSTCHANGE && freq->old > freq->new) || |
| 677 | (val == CPUFREQ_RESUMECHANGE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | cpu_data(cpu).clock_tick = |
| 679 | cpufreq_scale(ft->clock_tick_ref, |
| 680 | ft->ref_freq, |
| 681 | freq->new); |
| 682 | } |
| 683 | |
| 684 | return 0; |
| 685 | } |
| 686 | |
| 687 | static struct notifier_block sparc64_cpufreq_notifier_block = { |
| 688 | .notifier_call = sparc64_cpufreq_notifier |
| 689 | }; |
| 690 | |
David S. Miller | 7ae93f5 | 2008-07-23 16:21:07 -0700 | [diff] [blame] | 691 | static int __init register_sparc64_cpufreq_notifier(void) |
| 692 | { |
| 693 | |
| 694 | cpufreq_register_notifier(&sparc64_cpufreq_notifier_block, |
| 695 | CPUFREQ_TRANSITION_NOTIFIER); |
| 696 | return 0; |
| 697 | } |
| 698 | |
| 699 | core_initcall(register_sparc64_cpufreq_notifier); |
| 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | #endif /* CONFIG_CPU_FREQ */ |
| 702 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 703 | static int sparc64_next_event(unsigned long delta, |
| 704 | struct clock_event_device *evt) |
| 705 | { |
David S. Miller | d62c6f0 | 2007-03-27 01:20:14 -0700 | [diff] [blame] | 706 | return tick_ops->add_compare(delta) ? -ETIME : 0; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | static void sparc64_timer_setup(enum clock_event_mode mode, |
| 710 | struct clock_event_device *evt) |
| 711 | { |
| 712 | switch (mode) { |
| 713 | case CLOCK_EVT_MODE_ONESHOT: |
Thomas Gleixner | 18de5bc | 2007-07-21 04:37:34 -0700 | [diff] [blame] | 714 | case CLOCK_EVT_MODE_RESUME: |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 715 | break; |
| 716 | |
| 717 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 718 | tick_ops->disable_irq(); |
| 719 | break; |
| 720 | |
| 721 | case CLOCK_EVT_MODE_PERIODIC: |
| 722 | case CLOCK_EVT_MODE_UNUSED: |
| 723 | WARN_ON(1); |
| 724 | break; |
| 725 | }; |
| 726 | } |
| 727 | |
| 728 | static struct clock_event_device sparc64_clockevent = { |
| 729 | .features = CLOCK_EVT_FEAT_ONESHOT, |
| 730 | .set_mode = sparc64_timer_setup, |
| 731 | .set_next_event = sparc64_next_event, |
| 732 | .rating = 100, |
| 733 | .shift = 30, |
| 734 | .irq = -1, |
| 735 | }; |
| 736 | static DEFINE_PER_CPU(struct clock_event_device, sparc64_events); |
| 737 | |
| 738 | void timer_interrupt(int irq, struct pt_regs *regs) |
| 739 | { |
| 740 | struct pt_regs *old_regs = set_irq_regs(regs); |
| 741 | unsigned long tick_mask = tick_ops->softint_mask; |
| 742 | int cpu = smp_processor_id(); |
| 743 | struct clock_event_device *evt = &per_cpu(sparc64_events, cpu); |
| 744 | |
| 745 | clear_softint(tick_mask); |
| 746 | |
| 747 | irq_enter(); |
| 748 | |
| 749 | kstat_this_cpu.irqs[0]++; |
| 750 | |
| 751 | if (unlikely(!evt->event_handler)) { |
| 752 | printk(KERN_WARNING |
| 753 | "Spurious SPARC64 timer interrupt on cpu %d\n", cpu); |
| 754 | } else |
| 755 | evt->event_handler(evt); |
| 756 | |
| 757 | irq_exit(); |
| 758 | |
| 759 | set_irq_regs(old_regs); |
| 760 | } |
| 761 | |
| 762 | void __devinit setup_sparc64_timer(void) |
| 763 | { |
| 764 | struct clock_event_device *sevt; |
| 765 | unsigned long pstate; |
| 766 | |
| 767 | /* Guarantee that the following sequences execute |
| 768 | * uninterrupted. |
| 769 | */ |
| 770 | __asm__ __volatile__("rdpr %%pstate, %0\n\t" |
| 771 | "wrpr %0, %1, %%pstate" |
| 772 | : "=r" (pstate) |
| 773 | : "i" (PSTATE_IE)); |
| 774 | |
| 775 | tick_ops->init_tick(); |
| 776 | |
| 777 | /* Restore PSTATE_IE. */ |
| 778 | __asm__ __volatile__("wrpr %0, 0x0, %%pstate" |
| 779 | : /* no outputs */ |
| 780 | : "r" (pstate)); |
| 781 | |
| 782 | sevt = &__get_cpu_var(sparc64_events); |
| 783 | |
| 784 | memcpy(sevt, &sparc64_clockevent, sizeof(*sevt)); |
| 785 | sevt->cpumask = cpumask_of_cpu(smp_processor_id()); |
| 786 | |
| 787 | clockevents_register_device(sevt); |
| 788 | } |
| 789 | |
David S. Miller | 03983ab | 2007-05-17 22:55:26 -0700 | [diff] [blame] | 790 | #define SPARC64_NSEC_PER_CYC_SHIFT 10UL |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 791 | |
| 792 | static struct clocksource clocksource_tick = { |
| 793 | .rating = 100, |
| 794 | .mask = CLOCKSOURCE_MASK(64), |
| 795 | .shift = 16, |
| 796 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | }; |
| 798 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 799 | static void __init setup_clockevent_multiplier(unsigned long hz) |
| 800 | { |
| 801 | unsigned long mult, shift = 32; |
| 802 | |
| 803 | while (1) { |
| 804 | mult = div_sc(hz, NSEC_PER_SEC, shift); |
| 805 | if (mult && (mult >> 32UL) == 0UL) |
| 806 | break; |
| 807 | |
| 808 | shift--; |
| 809 | } |
| 810 | |
| 811 | sparc64_clockevent.shift = shift; |
| 812 | sparc64_clockevent.mult = mult; |
| 813 | } |
| 814 | |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 815 | static unsigned long tb_ticks_per_usec __read_mostly; |
| 816 | |
| 817 | void __delay(unsigned long loops) |
| 818 | { |
| 819 | unsigned long bclock, now; |
| 820 | |
| 821 | bclock = tick_ops->get_tick(); |
| 822 | do { |
| 823 | now = tick_ops->get_tick(); |
| 824 | } while ((now-bclock) < loops); |
| 825 | } |
| 826 | EXPORT_SYMBOL(__delay); |
| 827 | |
| 828 | void udelay(unsigned long usecs) |
| 829 | { |
| 830 | __delay(tb_ticks_per_usec * usecs); |
| 831 | } |
| 832 | EXPORT_SYMBOL(udelay); |
| 833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | void __init time_init(void) |
| 835 | { |
| 836 | unsigned long clock = sparc64_init_timers(); |
| 837 | |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 838 | tb_ticks_per_usec = clock / USEC_PER_SEC; |
| 839 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | timer_ticks_per_nsec_quotient = |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 841 | clocksource_hz2mult(clock, SPARC64_NSEC_PER_CYC_SHIFT); |
| 842 | |
| 843 | clocksource_tick.name = tick_ops->name; |
| 844 | clocksource_tick.mult = |
| 845 | clocksource_hz2mult(clock, |
| 846 | clocksource_tick.shift); |
| 847 | clocksource_tick.read = tick_ops->get_tick; |
| 848 | |
| 849 | printk("clocksource: mult[%x] shift[%d]\n", |
| 850 | clocksource_tick.mult, clocksource_tick.shift); |
| 851 | |
| 852 | clocksource_register(&clocksource_tick); |
| 853 | |
| 854 | sparc64_clockevent.name = tick_ops->name; |
| 855 | |
| 856 | setup_clockevent_multiplier(clock); |
| 857 | |
| 858 | sparc64_clockevent.max_delta_ns = |
David S. Miller | cf3d7c1 | 2008-03-26 01:11:55 -0700 | [diff] [blame] | 859 | clockevent_delta2ns(0x7fffffffffffffffUL, &sparc64_clockevent); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 860 | sparc64_clockevent.min_delta_ns = |
| 861 | clockevent_delta2ns(0xF, &sparc64_clockevent); |
| 862 | |
| 863 | printk("clockevent: mult[%lx] shift[%d]\n", |
| 864 | sparc64_clockevent.mult, sparc64_clockevent.shift); |
| 865 | |
| 866 | setup_sparc64_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | unsigned long long sched_clock(void) |
| 870 | { |
| 871 | unsigned long ticks = tick_ops->get_tick(); |
| 872 | |
| 873 | return (ticks * timer_ticks_per_nsec_quotient) |
| 874 | >> SPARC64_NSEC_PER_CYC_SHIFT; |
| 875 | } |
| 876 | |
Andrew Morton | 941e492 | 2008-02-06 01:36:42 -0800 | [diff] [blame] | 877 | int __devinit read_current_timer(unsigned long *timer_val) |
| 878 | { |
| 879 | *timer_val = tick_ops->get_tick(); |
| 880 | return 0; |
| 881 | } |