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> |
Paul Gortmaker | 066bcac | 2011-07-22 13:18:16 -0400 | [diff] [blame] | 12 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
David S. Miller | 8ba706a | 2006-03-01 17:32:46 -0800 | [diff] [blame] | 30 | #include <linux/miscdevice.h> |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 31 | #include <linux/rtc/m48t59.h> |
David S. Miller | 777a447 | 2007-02-22 06:24:10 -0800 | [diff] [blame] | 32 | #include <linux/kernel_stat.h> |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 33 | #include <linux/clockchips.h> |
| 34 | #include <linux/clocksource.h> |
Stephen Rothwell | 764f257 | 2008-08-07 15:33:36 -0700 | [diff] [blame] | 35 | #include <linux/of_device.h> |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 36 | #include <linux/platform_device.h> |
David S. Miller | 9960e9e | 2010-04-07 04:41:33 -0700 | [diff] [blame] | 37 | #include <linux/ftrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <asm/oplib.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <asm/timer.h> |
Ingo Molnar | 82268da | 2009-03-28 04:21:18 +0100 | [diff] [blame] | 41 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/io.h> |
David S. Miller | ff0d2fc | 2006-06-29 15:28:05 -0700 | [diff] [blame] | 43 | #include <asm/prom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <asm/starfire.h> |
| 45 | #include <asm/smp.h> |
| 46 | #include <asm/sections.h> |
| 47 | #include <asm/cpudata.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 48 | #include <linux/uaccess.h> |
Al Viro | 63540ba | 2006-10-09 11:51:14 +0100 | [diff] [blame] | 49 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
David S. Miller | cf3d7c1 | 2008-03-26 01:11:55 -0700 | [diff] [blame] | 51 | #include "entry.h" |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | DEFINE_SPINLOCK(rtc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #define TICK_PRIV_BIT (1UL << 63) |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 56 | #define TICKCMP_IRQ_BIT (1UL << 63) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | #ifdef CONFIG_SMP |
| 59 | unsigned long profile_pc(struct pt_regs *regs) |
| 60 | { |
| 61 | unsigned long pc = instruction_pointer(regs); |
| 62 | |
| 63 | if (in_lock_functions(pc)) |
| 64 | return regs->u_regs[UREG_RETPC]; |
| 65 | return pc; |
| 66 | } |
| 67 | EXPORT_SYMBOL(profile_pc); |
| 68 | #endif |
| 69 | |
| 70 | static void tick_disable_protection(void) |
| 71 | { |
| 72 | /* Set things up so user can access tick register for profiling |
| 73 | * purposes. Also workaround BB_ERRATA_1 by doing a dummy |
| 74 | * read back of %tick after writing it. |
| 75 | */ |
| 76 | __asm__ __volatile__( |
| 77 | " ba,pt %%xcc, 1f\n" |
| 78 | " nop\n" |
| 79 | " .align 64\n" |
| 80 | "1: rd %%tick, %%g2\n" |
| 81 | " add %%g2, 6, %%g2\n" |
| 82 | " andn %%g2, %0, %%g2\n" |
| 83 | " wrpr %%g2, 0, %%tick\n" |
| 84 | " rdpr %%tick, %%g0" |
| 85 | : /* no outputs */ |
| 86 | : "r" (TICK_PRIV_BIT) |
| 87 | : "g2"); |
| 88 | } |
| 89 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 90 | static void tick_disable_irq(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | __asm__ __volatile__( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | " ba,pt %%xcc, 1f\n" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 94 | " nop\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | " .align 64\n" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 96 | "1: wr %0, 0x0, %%tick_cmpr\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | " rd %%tick_cmpr, %%g0" |
| 98 | : /* no outputs */ |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 99 | : "r" (TICKCMP_IRQ_BIT)); |
| 100 | } |
| 101 | |
| 102 | static void tick_init_tick(void) |
| 103 | { |
| 104 | tick_disable_protection(); |
| 105 | tick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 108 | static unsigned long long tick_get_tick(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
| 110 | unsigned long ret; |
| 111 | |
| 112 | __asm__ __volatile__("rd %%tick, %0\n\t" |
| 113 | "mov %0, %0" |
| 114 | : "=r" (ret)); |
| 115 | |
| 116 | return ret & ~TICK_PRIV_BIT; |
| 117 | } |
| 118 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 119 | static int tick_add_compare(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 121 | unsigned long orig_tick, new_tick, new_compare; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 123 | __asm__ __volatile__("rd %%tick, %0" |
| 124 | : "=r" (orig_tick)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 126 | orig_tick &= ~TICKCMP_IRQ_BIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | /* Workaround for Spitfire Errata (#54 I think??), I discovered |
| 129 | * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch |
| 130 | * number 103640. |
| 131 | * |
| 132 | * On Blackbird writes to %tick_cmpr can fail, the |
| 133 | * workaround seems to be to execute the wr instruction |
| 134 | * at the start of an I-cache line, and perform a dummy |
| 135 | * read back from %tick_cmpr right after writing to it. -DaveM |
| 136 | */ |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 137 | __asm__ __volatile__("ba,pt %%xcc, 1f\n\t" |
| 138 | " add %1, %2, %0\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | ".align 64\n" |
| 140 | "1:\n\t" |
| 141 | "wr %0, 0, %%tick_cmpr\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 142 | "rd %%tick_cmpr, %%g0\n\t" |
| 143 | : "=r" (new_compare) |
| 144 | : "r" (orig_tick), "r" (adj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 146 | __asm__ __volatile__("rd %%tick, %0" |
| 147 | : "=r" (new_tick)); |
| 148 | new_tick &= ~TICKCMP_IRQ_BIT; |
| 149 | |
| 150 | return ((long)(new_tick - (orig_tick+adj))) > 0L; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 153 | static unsigned long tick_add_tick(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 155 | unsigned long new_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | /* Also need to handle Blackbird bug here too. */ |
| 158 | __asm__ __volatile__("rd %%tick, %0\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 159 | "add %0, %1, %0\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | "wrpr %0, 0, %%tick\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 161 | : "=&r" (new_tick) |
| 162 | : "r" (adj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
| 164 | return new_tick; |
| 165 | } |
| 166 | |
David S. Miller | d369ddd | 2005-07-10 15:45:11 -0700 | [diff] [blame] | 167 | static struct sparc64_tick_ops tick_operations __read_mostly = { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 168 | .name = "tick", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | .init_tick = tick_init_tick, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 170 | .disable_irq = tick_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | .get_tick = tick_get_tick, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | .add_tick = tick_add_tick, |
| 173 | .add_compare = tick_add_compare, |
| 174 | .softint_mask = 1UL << 0, |
| 175 | }; |
| 176 | |
David S. Miller | fc32149 | 2005-11-07 14:10:10 -0800 | [diff] [blame] | 177 | struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations; |
Sam Ravnborg | 917c366 | 2009-01-08 16:58:20 -0800 | [diff] [blame] | 178 | EXPORT_SYMBOL(tick_ops); |
David S. Miller | fc32149 | 2005-11-07 14:10:10 -0800 | [diff] [blame] | 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 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 211 | static unsigned long long stick_get_tick(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 355 | static unsigned long long hbtick_get_tick(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 396 | unsigned long cmos_regs; |
| 397 | EXPORT_SYMBOL(cmos_regs); |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 398 | |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 399 | static struct resource rtc_cmos_resource; |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 400 | |
| 401 | static struct platform_device rtc_cmos_device = { |
| 402 | .name = "rtc_cmos", |
| 403 | .id = -1, |
| 404 | .resource = &rtc_cmos_resource, |
| 405 | .num_resources = 1, |
| 406 | }; |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 407 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 408 | static int rtc_probe(struct platform_device *op) |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 409 | { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 410 | struct resource *r; |
| 411 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 412 | printk(KERN_INFO "%s: RTC regs at 0x%llx\n", |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 413 | op->dev.of_node->full_name, op->resource[0].start); |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 414 | |
| 415 | /* The CMOS RTC driver only accepts IORESOURCE_IO, so cons |
| 416 | * up a fake resource so that the probe works for all cases. |
| 417 | * When the RTC is behind an ISA bus it will have IORESOURCE_IO |
| 418 | * already, whereas when it's behind EBUS is will be IORESOURCE_MEM. |
| 419 | */ |
| 420 | |
| 421 | r = &rtc_cmos_resource; |
| 422 | r->flags = IORESOURCE_IO; |
| 423 | r->name = op->resource[0].name; |
| 424 | r->start = op->resource[0].start; |
| 425 | r->end = op->resource[0].end; |
| 426 | |
| 427 | cmos_regs = op->resource[0].start; |
| 428 | return platform_device_register(&rtc_cmos_device); |
| 429 | } |
| 430 | |
David S. Miller | 3628aa0 | 2011-03-30 17:37:56 -0700 | [diff] [blame] | 431 | static const struct of_device_id rtc_match[] = { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 432 | { |
| 433 | .name = "rtc", |
| 434 | .compatible = "m5819", |
| 435 | }, |
| 436 | { |
| 437 | .name = "rtc", |
| 438 | .compatible = "isa-m5819p", |
| 439 | }, |
| 440 | { |
| 441 | .name = "rtc", |
| 442 | .compatible = "isa-m5823p", |
| 443 | }, |
| 444 | { |
| 445 | .name = "rtc", |
| 446 | .compatible = "ds1287", |
| 447 | }, |
| 448 | {}, |
| 449 | }; |
| 450 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 451 | static struct platform_driver rtc_driver = { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 452 | .probe = rtc_probe, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 453 | .driver = { |
| 454 | .name = "rtc", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 455 | .of_match_table = rtc_match, |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 456 | }, |
| 457 | }; |
| 458 | |
David S. Miller | 29b503f | 2008-08-28 21:54:34 -0700 | [diff] [blame] | 459 | static struct platform_device rtc_bq4802_device = { |
| 460 | .name = "rtc-bq4802", |
| 461 | .id = -1, |
| 462 | .num_resources = 1, |
| 463 | }; |
| 464 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 465 | static int bq4802_probe(struct platform_device *op) |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 466 | { |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 467 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 468 | printk(KERN_INFO "%s: BQ4802 regs at 0x%llx\n", |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 469 | op->dev.of_node->full_name, op->resource[0].start); |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 470 | |
David S. Miller | 29b503f | 2008-08-28 21:54:34 -0700 | [diff] [blame] | 471 | rtc_bq4802_device.resource = &op->resource[0]; |
| 472 | return platform_device_register(&rtc_bq4802_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } |
| 474 | |
David S. Miller | 3628aa0 | 2011-03-30 17:37:56 -0700 | [diff] [blame] | 475 | static const struct of_device_id bq4802_match[] = { |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 476 | { |
| 477 | .name = "rtc", |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 478 | .compatible = "bq4802", |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 479 | }, |
David S. Miller | 770a424 | 2008-10-30 22:58:06 -0700 | [diff] [blame] | 480 | {}, |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 481 | }; |
| 482 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 483 | static struct platform_driver bq4802_driver = { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 484 | .probe = bq4802_probe, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 485 | .driver = { |
| 486 | .name = "bq4802", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 487 | .of_match_table = bq4802_match, |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 488 | }, |
| 489 | }; |
| 490 | |
| 491 | static unsigned char mostek_read_byte(struct device *dev, u32 ofs) |
| 492 | { |
| 493 | struct platform_device *pdev = to_platform_device(dev); |
Krzysztof Helt | 12a9ee3 | 2008-10-29 15:35:24 -0700 | [diff] [blame] | 494 | void __iomem *regs = (void __iomem *) pdev->resource[0].start; |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 495 | |
Krzysztof Helt | 12a9ee3 | 2008-10-29 15:35:24 -0700 | [diff] [blame] | 496 | return readb(regs + ofs); |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | static void mostek_write_byte(struct device *dev, u32 ofs, u8 val) |
| 500 | { |
| 501 | struct platform_device *pdev = to_platform_device(dev); |
Krzysztof Helt | 12a9ee3 | 2008-10-29 15:35:24 -0700 | [diff] [blame] | 502 | void __iomem *regs = (void __iomem *) pdev->resource[0].start; |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 503 | |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 504 | writeb(val, regs + ofs); |
| 505 | } |
| 506 | |
| 507 | static struct m48t59_plat_data m48t59_data = { |
| 508 | .read_byte = mostek_read_byte, |
| 509 | .write_byte = mostek_write_byte, |
| 510 | }; |
| 511 | |
| 512 | static struct platform_device m48t59_rtc = { |
| 513 | .name = "rtc-m48t59", |
| 514 | .id = 0, |
| 515 | .num_resources = 1, |
| 516 | .dev = { |
| 517 | .platform_data = &m48t59_data, |
| 518 | }, |
| 519 | }; |
| 520 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 521 | static int mostek_probe(struct platform_device *op) |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 522 | { |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 523 | struct device_node *dp = op->dev.of_node; |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 524 | |
| 525 | /* On an Enterprise system there can be multiple mostek clocks. |
| 526 | * We should only match the one that is on the central FHC bus. |
| 527 | */ |
| 528 | if (!strcmp(dp->parent->name, "fhc") && |
| 529 | strcmp(dp->parent->parent->name, "central") != 0) |
| 530 | return -ENODEV; |
| 531 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 532 | printk(KERN_INFO "%s: Mostek regs at 0x%llx\n", |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 533 | dp->full_name, op->resource[0].start); |
| 534 | |
| 535 | m48t59_rtc.resource = &op->resource[0]; |
| 536 | return platform_device_register(&m48t59_rtc); |
| 537 | } |
| 538 | |
David S. Miller | 3628aa0 | 2011-03-30 17:37:56 -0700 | [diff] [blame] | 539 | static const struct of_device_id mostek_match[] = { |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 540 | { |
| 541 | .name = "eeprom", |
| 542 | }, |
| 543 | {}, |
| 544 | }; |
| 545 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 546 | static struct platform_driver mostek_driver = { |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 547 | .probe = mostek_probe, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 548 | .driver = { |
| 549 | .name = "mostek", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 550 | .of_match_table = mostek_match, |
Stephen Rothwell | a2cd155 | 2007-10-10 23:27:34 -0700 | [diff] [blame] | 551 | }, |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 552 | }; |
| 553 | |
David S. Miller | 84d6bd5 | 2008-08-29 01:34:27 -0700 | [diff] [blame] | 554 | static struct platform_device rtc_sun4v_device = { |
| 555 | .name = "rtc-sun4v", |
| 556 | .id = -1, |
| 557 | }; |
| 558 | |
David S. Miller | f2be6de | 2008-08-29 01:35:19 -0700 | [diff] [blame] | 559 | static struct platform_device rtc_starfire_device = { |
| 560 | .name = "rtc-starfire", |
| 561 | .id = -1, |
| 562 | }; |
| 563 | |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 564 | static int __init clock_init(void) |
| 565 | { |
David S. Miller | f2be6de | 2008-08-29 01:35:19 -0700 | [diff] [blame] | 566 | if (this_is_starfire) |
| 567 | return platform_device_register(&rtc_starfire_device); |
| 568 | |
David S. Miller | 84d6bd5 | 2008-08-29 01:34:27 -0700 | [diff] [blame] | 569 | if (tlb_type == hypervisor) |
| 570 | return platform_device_register(&rtc_sun4v_device); |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 571 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 572 | (void) platform_driver_register(&rtc_driver); |
| 573 | (void) platform_driver_register(&mostek_driver); |
| 574 | (void) platform_driver_register(&bq4802_driver); |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 575 | |
| 576 | return 0; |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | /* Must be after subsys_initcall() so that busses are probed. Must |
| 580 | * be before device_initcall() because things like the RTC driver |
| 581 | * need to see the clock registers. |
| 582 | */ |
| 583 | fs_initcall(clock_init); |
| 584 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | /* This is gets the master TICK_INT timer going. */ |
| 586 | static unsigned long sparc64_init_timers(void) |
| 587 | { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 588 | struct sparc64_tick_ops *ops = NULL; |
David S. Miller | 07f8e5f | 2006-06-21 23:34:02 -0700 | [diff] [blame] | 589 | struct device_node *dp; |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 590 | unsigned long freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
David S. Miller | 07f8e5f | 2006-06-21 23:34:02 -0700 | [diff] [blame] | 592 | dp = of_find_node_by_path("/"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | if (tlb_type == spitfire) { |
| 594 | unsigned long ver, manuf, impl; |
| 595 | |
| 596 | __asm__ __volatile__ ("rdpr %%ver, %0" |
| 597 | : "=&r" (ver)); |
| 598 | manuf = ((ver >> 48) & 0xffff); |
| 599 | impl = ((ver >> 32) & 0xffff); |
| 600 | if (manuf == 0x17 && impl == 0x13) { |
| 601 | /* Hummingbird, aka Ultra-IIe */ |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 602 | ops = &hbtick_operations; |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 603 | freq = of_getintprop_default(dp, "stick-frequency", 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } else { |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 605 | freq = local_cpu_data().clock_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
| 607 | } else { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 608 | ops = &stick_operations; |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 609 | freq = of_getintprop_default(dp, "stick-frequency", 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | } |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 611 | if (ops) |
| 612 | memcpy(&tick_operations, ops, sizeof(struct sparc64_tick_ops)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 614 | return freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | } |
| 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | struct freq_table { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | unsigned long clock_tick_ref; |
| 619 | unsigned int ref_freq; |
| 620 | }; |
David S. Miller | 3763be3 | 2006-02-17 12:33:13 -0800 | [diff] [blame] | 621 | static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
| 623 | unsigned long sparc64_get_clock_tick(unsigned int cpu) |
| 624 | { |
| 625 | struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu); |
| 626 | |
| 627 | if (ft->clock_tick_ref) |
| 628 | return ft->clock_tick_ref; |
| 629 | return cpu_data(cpu).clock_tick; |
| 630 | } |
Sam Ravnborg | 917c366 | 2009-01-08 16:58:20 -0800 | [diff] [blame] | 631 | EXPORT_SYMBOL(sparc64_get_clock_tick); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
| 633 | #ifdef CONFIG_CPU_FREQ |
| 634 | |
| 635 | static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val, |
| 636 | void *data) |
| 637 | { |
| 638 | struct cpufreq_freqs *freq = data; |
| 639 | unsigned int cpu = freq->cpu; |
| 640 | struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu); |
| 641 | |
| 642 | if (!ft->ref_freq) { |
| 643 | ft->ref_freq = freq->old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | ft->clock_tick_ref = cpu_data(cpu).clock_tick; |
| 645 | } |
| 646 | if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) || |
Viresh Kumar | 0b443ea | 2014-03-19 11:24:58 +0530 | [diff] [blame] | 647 | (val == CPUFREQ_POSTCHANGE && freq->old > freq->new)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | cpu_data(cpu).clock_tick = |
| 649 | cpufreq_scale(ft->clock_tick_ref, |
| 650 | ft->ref_freq, |
| 651 | freq->new); |
| 652 | } |
| 653 | |
| 654 | return 0; |
| 655 | } |
| 656 | |
| 657 | static struct notifier_block sparc64_cpufreq_notifier_block = { |
| 658 | .notifier_call = sparc64_cpufreq_notifier |
| 659 | }; |
| 660 | |
David S. Miller | 7ae93f5 | 2008-07-23 16:21:07 -0700 | [diff] [blame] | 661 | static int __init register_sparc64_cpufreq_notifier(void) |
| 662 | { |
| 663 | |
| 664 | cpufreq_register_notifier(&sparc64_cpufreq_notifier_block, |
| 665 | CPUFREQ_TRANSITION_NOTIFIER); |
| 666 | return 0; |
| 667 | } |
| 668 | |
| 669 | core_initcall(register_sparc64_cpufreq_notifier); |
| 670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | #endif /* CONFIG_CPU_FREQ */ |
| 672 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 673 | static int sparc64_next_event(unsigned long delta, |
| 674 | struct clock_event_device *evt) |
| 675 | { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 676 | return tick_operations.add_compare(delta) ? -ETIME : 0; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 677 | } |
| 678 | |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 679 | static int sparc64_timer_shutdown(struct clock_event_device *evt) |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 680 | { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 681 | tick_operations.disable_irq(); |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 682 | return 0; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | static struct clock_event_device sparc64_clockevent = { |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 686 | .features = CLOCK_EVT_FEAT_ONESHOT, |
| 687 | .set_state_shutdown = sparc64_timer_shutdown, |
| 688 | .set_next_event = sparc64_next_event, |
| 689 | .rating = 100, |
| 690 | .shift = 30, |
| 691 | .irq = -1, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 692 | }; |
| 693 | static DEFINE_PER_CPU(struct clock_event_device, sparc64_events); |
| 694 | |
David S. Miller | 9960e9e | 2010-04-07 04:41:33 -0700 | [diff] [blame] | 695 | void __irq_entry timer_interrupt(int irq, struct pt_regs *regs) |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 696 | { |
| 697 | struct pt_regs *old_regs = set_irq_regs(regs); |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 698 | unsigned long tick_mask = tick_operations.softint_mask; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 699 | int cpu = smp_processor_id(); |
| 700 | struct clock_event_device *evt = &per_cpu(sparc64_events, cpu); |
| 701 | |
| 702 | clear_softint(tick_mask); |
| 703 | |
| 704 | irq_enter(); |
| 705 | |
David S. Miller | daecbf5 | 2010-04-06 17:38:52 -0700 | [diff] [blame] | 706 | local_cpu_data().irq0_irqs++; |
Thomas Gleixner | 87a69ad | 2014-02-23 21:40:15 +0000 | [diff] [blame] | 707 | kstat_incr_irq_this_cpu(0); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 708 | |
| 709 | if (unlikely(!evt->event_handler)) { |
| 710 | printk(KERN_WARNING |
| 711 | "Spurious SPARC64 timer interrupt on cpu %d\n", cpu); |
| 712 | } else |
| 713 | evt->event_handler(evt); |
| 714 | |
| 715 | irq_exit(); |
| 716 | |
| 717 | set_irq_regs(old_regs); |
| 718 | } |
| 719 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 720 | void setup_sparc64_timer(void) |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 721 | { |
| 722 | struct clock_event_device *sevt; |
| 723 | unsigned long pstate; |
| 724 | |
| 725 | /* Guarantee that the following sequences execute |
| 726 | * uninterrupted. |
| 727 | */ |
| 728 | __asm__ __volatile__("rdpr %%pstate, %0\n\t" |
| 729 | "wrpr %0, %1, %%pstate" |
| 730 | : "=r" (pstate) |
| 731 | : "i" (PSTATE_IE)); |
| 732 | |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 733 | tick_operations.init_tick(); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 734 | |
| 735 | /* Restore PSTATE_IE. */ |
| 736 | __asm__ __volatile__("wrpr %0, 0x0, %%pstate" |
| 737 | : /* no outputs */ |
| 738 | : "r" (pstate)); |
| 739 | |
Christoph Lameter | 494fc42 | 2014-08-17 12:30:54 -0500 | [diff] [blame] | 740 | sevt = this_cpu_ptr(&sparc64_events); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 741 | |
| 742 | memcpy(sevt, &sparc64_clockevent, sizeof(*sevt)); |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 743 | sevt->cpumask = cpumask_of(smp_processor_id()); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 744 | |
| 745 | clockevents_register_device(sevt); |
| 746 | } |
| 747 | |
David S. Miller | 03983ab | 2007-05-17 22:55:26 -0700 | [diff] [blame] | 748 | #define SPARC64_NSEC_PER_CYC_SHIFT 10UL |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 749 | |
| 750 | static struct clocksource clocksource_tick = { |
| 751 | .rating = 100, |
| 752 | .mask = CLOCKSOURCE_MASK(64), |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 753 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | }; |
| 755 | |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 756 | static unsigned long tb_ticks_per_usec __read_mostly; |
| 757 | |
| 758 | void __delay(unsigned long loops) |
| 759 | { |
| 760 | unsigned long bclock, now; |
| 761 | |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 762 | bclock = tick_operations.get_tick(); |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 763 | do { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 764 | now = tick_operations.get_tick(); |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 765 | } while ((now-bclock) < loops); |
| 766 | } |
| 767 | EXPORT_SYMBOL(__delay); |
| 768 | |
| 769 | void udelay(unsigned long usecs) |
| 770 | { |
| 771 | __delay(tb_ticks_per_usec * usecs); |
| 772 | } |
| 773 | EXPORT_SYMBOL(udelay); |
| 774 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 775 | static u64 clocksource_tick_read(struct clocksource *cs) |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 776 | { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 777 | return tick_operations.get_tick(); |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | void __init time_init(void) |
| 781 | { |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 782 | unsigned long freq = sparc64_init_timers(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 784 | tb_ticks_per_usec = freq / USEC_PER_SEC; |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | timer_ticks_per_nsec_quotient = |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 787 | clocksource_hz2mult(freq, SPARC64_NSEC_PER_CYC_SHIFT); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 788 | |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 789 | clocksource_tick.name = tick_operations.name; |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 790 | clocksource_tick.read = clocksource_tick_read; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 791 | |
John Stultz | 81043e8 | 2011-02-23 13:08:21 -0800 | [diff] [blame] | 792 | clocksource_register_hz(&clocksource_tick, freq); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 793 | printk("clocksource: mult[%x] shift[%d]\n", |
| 794 | clocksource_tick.mult, clocksource_tick.shift); |
| 795 | |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 796 | sparc64_clockevent.name = tick_operations.name; |
David S. Miller | 6865b7f | 2009-12-11 01:27:29 -0800 | [diff] [blame] | 797 | clockevents_calc_mult_shift(&sparc64_clockevent, freq, 4); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 798 | |
| 799 | sparc64_clockevent.max_delta_ns = |
David S. Miller | cf3d7c1 | 2008-03-26 01:11:55 -0700 | [diff] [blame] | 800 | clockevent_delta2ns(0x7fffffffffffffffUL, &sparc64_clockevent); |
Nicolai Stange | 7fd5342 | 2017-03-30 21:56:47 +0200 | [diff] [blame] | 801 | sparc64_clockevent.max_delta_ticks = 0x7fffffffffffffffUL; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 802 | sparc64_clockevent.min_delta_ns = |
| 803 | clockevent_delta2ns(0xF, &sparc64_clockevent); |
Nicolai Stange | 7fd5342 | 2017-03-30 21:56:47 +0200 | [diff] [blame] | 804 | sparc64_clockevent.min_delta_ticks = 0xF; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 805 | |
David S. Miller | 7466bd3 | 2009-12-11 02:05:05 -0800 | [diff] [blame] | 806 | printk("clockevent: mult[%x] shift[%d]\n", |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 807 | sparc64_clockevent.mult, sparc64_clockevent.shift); |
| 808 | |
| 809 | setup_sparc64_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | unsigned long long sched_clock(void) |
| 813 | { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 814 | unsigned long ticks = tick_operations.get_tick(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | |
| 816 | return (ticks * timer_ticks_per_nsec_quotient) |
| 817 | >> SPARC64_NSEC_PER_CYC_SHIFT; |
| 818 | } |
| 819 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 820 | int read_current_timer(unsigned long *timer_val) |
Andrew Morton | 941e492 | 2008-02-06 01:36:42 -0800 | [diff] [blame] | 821 | { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame^] | 822 | *timer_val = tick_operations.get_tick(); |
Andrew Morton | 941e492 | 2008-02-06 01:36:42 -0800 | [diff] [blame] | 823 | return 0; |
| 824 | } |