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> |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 35 | #include <linux/platform_device.h> |
David S. Miller | 9960e9e | 2010-04-07 04:41:33 -0700 | [diff] [blame] | 36 | #include <linux/ftrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | #include <asm/oplib.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/timer.h> |
Ingo Molnar | 82268da | 2009-03-28 04:21:18 +0100 | [diff] [blame] | 40 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <asm/io.h> |
David S. Miller | ff0d2fc | 2006-06-29 15:28:05 -0700 | [diff] [blame] | 42 | #include <asm/prom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/starfire.h> |
| 44 | #include <asm/smp.h> |
| 45 | #include <asm/sections.h> |
| 46 | #include <asm/cpudata.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 47 | #include <linux/uaccess.h> |
Al Viro | 63540ba | 2006-10-09 11:51:14 +0100 | [diff] [blame] | 48 | #include <asm/irq_regs.h> |
Pavel Tatashin | 4929c83 | 2017-06-12 16:41:47 -0400 | [diff] [blame] | 49 | #include <asm/cacheflush.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" |
Pavel Tatashin | 83e8eb9 | 2017-06-12 16:41:46 -0400 | [diff] [blame] | 52 | #include "kernel.h" |
David S. Miller | cf3d7c1 | 2008-03-26 01:11:55 -0700 | [diff] [blame] | 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 | #ifdef CONFIG_SMP |
| 57 | unsigned long profile_pc(struct pt_regs *regs) |
| 58 | { |
| 59 | unsigned long pc = instruction_pointer(regs); |
| 60 | |
| 61 | if (in_lock_functions(pc)) |
| 62 | return regs->u_regs[UREG_RETPC]; |
| 63 | return pc; |
| 64 | } |
| 65 | EXPORT_SYMBOL(profile_pc); |
| 66 | #endif |
| 67 | |
| 68 | static void tick_disable_protection(void) |
| 69 | { |
| 70 | /* Set things up so user can access tick register for profiling |
| 71 | * purposes. Also workaround BB_ERRATA_1 by doing a dummy |
| 72 | * read back of %tick after writing it. |
| 73 | */ |
| 74 | __asm__ __volatile__( |
| 75 | " ba,pt %%xcc, 1f\n" |
| 76 | " nop\n" |
| 77 | " .align 64\n" |
| 78 | "1: rd %%tick, %%g2\n" |
| 79 | " add %%g2, 6, %%g2\n" |
| 80 | " andn %%g2, %0, %%g2\n" |
| 81 | " wrpr %%g2, 0, %%tick\n" |
| 82 | " rdpr %%tick, %%g0" |
| 83 | : /* no outputs */ |
| 84 | : "r" (TICK_PRIV_BIT) |
| 85 | : "g2"); |
| 86 | } |
| 87 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 88 | static void tick_disable_irq(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | __asm__ __volatile__( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | " ba,pt %%xcc, 1f\n" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 92 | " nop\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | " .align 64\n" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 94 | "1: wr %0, 0x0, %%tick_cmpr\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | " rd %%tick_cmpr, %%g0" |
| 96 | : /* no outputs */ |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 97 | : "r" (TICKCMP_IRQ_BIT)); |
| 98 | } |
| 99 | |
| 100 | static void tick_init_tick(void) |
| 101 | { |
| 102 | tick_disable_protection(); |
| 103 | tick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 106 | static unsigned long long tick_get_tick(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
| 108 | unsigned long ret; |
| 109 | |
| 110 | __asm__ __volatile__("rd %%tick, %0\n\t" |
| 111 | "mov %0, %0" |
| 112 | : "=r" (ret)); |
| 113 | |
| 114 | return ret & ~TICK_PRIV_BIT; |
| 115 | } |
| 116 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 117 | static int tick_add_compare(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 119 | unsigned long orig_tick, new_tick, new_compare; |
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 | __asm__ __volatile__("rd %%tick, %0" |
| 122 | : "=r" (orig_tick)); |
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 | orig_tick &= ~TICKCMP_IRQ_BIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
| 126 | /* Workaround for Spitfire Errata (#54 I think??), I discovered |
| 127 | * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch |
| 128 | * number 103640. |
| 129 | * |
| 130 | * On Blackbird writes to %tick_cmpr can fail, the |
| 131 | * workaround seems to be to execute the wr instruction |
| 132 | * at the start of an I-cache line, and perform a dummy |
| 133 | * read back from %tick_cmpr right after writing to it. -DaveM |
| 134 | */ |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 135 | __asm__ __volatile__("ba,pt %%xcc, 1f\n\t" |
| 136 | " add %1, %2, %0\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | ".align 64\n" |
| 138 | "1:\n\t" |
| 139 | "wr %0, 0, %%tick_cmpr\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 140 | "rd %%tick_cmpr, %%g0\n\t" |
| 141 | : "=r" (new_compare) |
| 142 | : "r" (orig_tick), "r" (adj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 144 | __asm__ __volatile__("rd %%tick, %0" |
| 145 | : "=r" (new_tick)); |
| 146 | new_tick &= ~TICKCMP_IRQ_BIT; |
| 147 | |
| 148 | return ((long)(new_tick - (orig_tick+adj))) > 0L; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 151 | static unsigned long tick_add_tick(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 153 | unsigned long new_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | /* Also need to handle Blackbird bug here too. */ |
| 156 | __asm__ __volatile__("rd %%tick, %0\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 157 | "add %0, %1, %0\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | "wrpr %0, 0, %%tick\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 159 | : "=&r" (new_tick) |
| 160 | : "r" (adj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
| 162 | return new_tick; |
| 163 | } |
| 164 | |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 165 | static unsigned long tick_get_frequency(void) |
| 166 | { |
| 167 | return local_cpu_data().clock_tick; |
| 168 | } |
| 169 | |
Pavel Tatashin | 178bf2b | 2017-06-12 16:41:44 -0400 | [diff] [blame] | 170 | static struct sparc64_tick_ops tick_operations __cacheline_aligned = { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 171 | .name = "tick", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | .init_tick = tick_init_tick, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 173 | .disable_irq = tick_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | .get_tick = tick_get_tick, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | .add_tick = tick_add_tick, |
| 176 | .add_compare = tick_add_compare, |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 177 | .get_frequency = tick_get_frequency, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | .softint_mask = 1UL << 0, |
| 179 | }; |
| 180 | |
David S. Miller | fc32149 | 2005-11-07 14:10:10 -0800 | [diff] [blame] | 181 | struct sparc64_tick_ops *tick_ops __read_mostly = &tick_operations; |
Sam Ravnborg | 917c366 | 2009-01-08 16:58:20 -0800 | [diff] [blame] | 182 | EXPORT_SYMBOL(tick_ops); |
David S. Miller | fc32149 | 2005-11-07 14:10:10 -0800 | [diff] [blame] | 183 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 184 | static void stick_disable_irq(void) |
| 185 | { |
| 186 | __asm__ __volatile__( |
| 187 | "wr %0, 0x0, %%asr25" |
| 188 | : /* no outputs */ |
| 189 | : "r" (TICKCMP_IRQ_BIT)); |
| 190 | } |
| 191 | |
| 192 | static void stick_init_tick(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | { |
David S. Miller | 7aa6264 | 2006-02-11 23:14:59 -0800 | [diff] [blame] | 194 | /* Writes to the %tick and %stick register are not |
| 195 | * allowed on sun4v. The Hypervisor controls that |
| 196 | * bit, per-strand. |
| 197 | */ |
| 198 | if (tlb_type != hypervisor) { |
| 199 | tick_disable_protection(); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 200 | tick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
David S. Miller | 7aa6264 | 2006-02-11 23:14:59 -0800 | [diff] [blame] | 202 | /* Let the user get at STICK too. */ |
| 203 | __asm__ __volatile__( |
| 204 | " rd %%asr24, %%g2\n" |
| 205 | " andn %%g2, %0, %%g2\n" |
| 206 | " wr %%g2, 0, %%asr24" |
| 207 | : /* no outputs */ |
| 208 | : "r" (TICK_PRIV_BIT) |
| 209 | : "g1", "g2"); |
| 210 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 212 | stick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 215 | static unsigned long long stick_get_tick(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
| 217 | unsigned long ret; |
| 218 | |
| 219 | __asm__ __volatile__("rd %%asr24, %0" |
| 220 | : "=r" (ret)); |
| 221 | |
| 222 | return ret & ~TICK_PRIV_BIT; |
| 223 | } |
| 224 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 225 | static unsigned long stick_add_tick(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 227 | unsigned long new_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
| 229 | __asm__ __volatile__("rd %%asr24, %0\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 230 | "add %0, %1, %0\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | "wr %0, 0, %%asr24\n\t" |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 232 | : "=&r" (new_tick) |
| 233 | : "r" (adj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | return new_tick; |
| 236 | } |
| 237 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 238 | static int stick_add_compare(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 240 | unsigned long orig_tick, new_tick; |
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__("rd %%asr24, %0" |
| 243 | : "=r" (orig_tick)); |
| 244 | orig_tick &= ~TICKCMP_IRQ_BIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 246 | __asm__ __volatile__("wr %0, 0, %%asr25" |
| 247 | : /* no outputs */ |
| 248 | : "r" (orig_tick + adj)); |
| 249 | |
| 250 | __asm__ __volatile__("rd %%asr24, %0" |
| 251 | : "=r" (new_tick)); |
| 252 | new_tick &= ~TICKCMP_IRQ_BIT; |
| 253 | |
| 254 | return ((long)(new_tick - (orig_tick+adj))) > 0L; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 257 | static unsigned long stick_get_frequency(void) |
| 258 | { |
Pavel Tatashin | fca4afe | 2017-06-15 10:40:58 -0400 | [diff] [blame^] | 259 | return prom_getintdefault(prom_root_node, "stick-frequency", 0); |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 260 | } |
| 261 | |
David S. Miller | d369ddd | 2005-07-10 15:45:11 -0700 | [diff] [blame] | 262 | static struct sparc64_tick_ops stick_operations __read_mostly = { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 263 | .name = "stick", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | .init_tick = stick_init_tick, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 265 | .disable_irq = stick_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | .get_tick = stick_get_tick, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | .add_tick = stick_add_tick, |
| 268 | .add_compare = stick_add_compare, |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 269 | .get_frequency = stick_get_frequency, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | .softint_mask = 1UL << 16, |
| 271 | }; |
| 272 | |
| 273 | /* On Hummingbird the STICK/STICK_CMPR register is implemented |
| 274 | * in I/O space. There are two 64-bit registers each, the |
| 275 | * first holds the low 32-bits of the value and the second holds |
| 276 | * the high 32-bits. |
| 277 | * |
| 278 | * Since STICK is constantly updating, we have to access it carefully. |
| 279 | * |
| 280 | * The sequence we use to read is: |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 281 | * 1) read high |
| 282 | * 2) read low |
| 283 | * 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] | 284 | * |
| 285 | * Writing STICK safely is also tricky: |
| 286 | * 1) write low to zero |
| 287 | * 2) write high |
| 288 | * 3) write low |
| 289 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | static unsigned long __hbird_read_stick(void) |
| 291 | { |
| 292 | unsigned long ret, tmp1, tmp2, tmp3; |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 293 | unsigned long addr = HBIRD_STICK_ADDR+8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 295 | __asm__ __volatile__("ldxa [%1] %5, %2\n" |
| 296 | "1:\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | "sub %1, 0x8, %1\n\t" |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 298 | "ldxa [%1] %5, %3\n\t" |
| 299 | "add %1, 0x8, %1\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | "ldxa [%1] %5, %4\n\t" |
| 301 | "cmp %4, %2\n\t" |
Richard Mortimer | 9eb3394 | 2006-01-17 15:21:01 -0800 | [diff] [blame] | 302 | "bne,a,pn %%xcc, 1b\n\t" |
| 303 | " mov %4, %2\n\t" |
| 304 | "sllx %4, 32, %4\n\t" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | "or %3, %4, %0\n\t" |
| 306 | : "=&r" (ret), "=&r" (addr), |
| 307 | "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3) |
| 308 | : "i" (ASI_PHYS_BYPASS_EC_E), "1" (addr)); |
| 309 | |
| 310 | return ret; |
| 311 | } |
| 312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | static void __hbird_write_stick(unsigned long val) |
| 314 | { |
| 315 | unsigned long low = (val & 0xffffffffUL); |
| 316 | unsigned long high = (val >> 32UL); |
| 317 | unsigned long addr = HBIRD_STICK_ADDR; |
| 318 | |
| 319 | __asm__ __volatile__("stxa %%g0, [%0] %4\n\t" |
| 320 | "add %0, 0x8, %0\n\t" |
| 321 | "stxa %3, [%0] %4\n\t" |
| 322 | "sub %0, 0x8, %0\n\t" |
| 323 | "stxa %2, [%0] %4" |
| 324 | : "=&r" (addr) |
| 325 | : "0" (addr), "r" (low), "r" (high), |
| 326 | "i" (ASI_PHYS_BYPASS_EC_E)); |
| 327 | } |
| 328 | |
| 329 | static void __hbird_write_compare(unsigned long val) |
| 330 | { |
| 331 | unsigned long low = (val & 0xffffffffUL); |
| 332 | unsigned long high = (val >> 32UL); |
| 333 | unsigned long addr = HBIRD_STICKCMP_ADDR + 0x8UL; |
| 334 | |
| 335 | __asm__ __volatile__("stxa %3, [%0] %4\n\t" |
| 336 | "sub %0, 0x8, %0\n\t" |
| 337 | "stxa %2, [%0] %4" |
| 338 | : "=&r" (addr) |
| 339 | : "0" (addr), "r" (low), "r" (high), |
| 340 | "i" (ASI_PHYS_BYPASS_EC_E)); |
| 341 | } |
| 342 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 343 | static void hbtick_disable_irq(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 345 | __hbird_write_compare(TICKCMP_IRQ_BIT); |
| 346 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 348 | static void hbtick_init_tick(void) |
| 349 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | tick_disable_protection(); |
| 351 | |
| 352 | /* XXX This seems to be necessary to 'jumpstart' Hummingbird |
| 353 | * XXX into actually sending STICK interrupts. I think because |
| 354 | * XXX of how we store %tick_cmpr in head.S this somehow resets the |
| 355 | * XXX {TICK + STICK} interrupt mux. -DaveM |
| 356 | */ |
| 357 | __hbird_write_stick(__hbird_read_stick()); |
| 358 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 359 | hbtick_disable_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | } |
| 361 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 362 | static unsigned long long hbtick_get_tick(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
| 364 | return __hbird_read_stick() & ~TICK_PRIV_BIT; |
| 365 | } |
| 366 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 367 | static unsigned long hbtick_add_tick(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | { |
| 369 | unsigned long val; |
| 370 | |
| 371 | val = __hbird_read_stick() + adj; |
| 372 | __hbird_write_stick(val); |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | return val; |
| 375 | } |
| 376 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 377 | static int hbtick_add_compare(unsigned long adj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 379 | unsigned long val = __hbird_read_stick(); |
| 380 | unsigned long val2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 382 | val &= ~TICKCMP_IRQ_BIT; |
| 383 | val += adj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | __hbird_write_compare(val); |
| 385 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 386 | val2 = __hbird_read_stick() & ~TICKCMP_IRQ_BIT; |
| 387 | |
| 388 | return ((long)(val2 - val)) > 0L; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | } |
| 390 | |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 391 | static unsigned long hbtick_get_frequency(void) |
| 392 | { |
Pavel Tatashin | fca4afe | 2017-06-15 10:40:58 -0400 | [diff] [blame^] | 393 | return prom_getintdefault(prom_root_node, "stick-frequency", 0); |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 394 | } |
| 395 | |
David S. Miller | d369ddd | 2005-07-10 15:45:11 -0700 | [diff] [blame] | 396 | static struct sparc64_tick_ops hbtick_operations __read_mostly = { |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 397 | .name = "hbtick", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | .init_tick = hbtick_init_tick, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 399 | .disable_irq = hbtick_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | .get_tick = hbtick_get_tick, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | .add_tick = hbtick_add_tick, |
| 402 | .add_compare = hbtick_add_compare, |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 403 | .get_frequency = hbtick_get_frequency, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | .softint_mask = 1UL << 0, |
| 405 | }; |
| 406 | |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 407 | unsigned long cmos_regs; |
| 408 | EXPORT_SYMBOL(cmos_regs); |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 409 | |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 410 | static struct resource rtc_cmos_resource; |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 411 | |
| 412 | static struct platform_device rtc_cmos_device = { |
| 413 | .name = "rtc_cmos", |
| 414 | .id = -1, |
| 415 | .resource = &rtc_cmos_resource, |
| 416 | .num_resources = 1, |
| 417 | }; |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 418 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 419 | static int rtc_probe(struct platform_device *op) |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 420 | { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 421 | struct resource *r; |
| 422 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 423 | printk(KERN_INFO "%s: RTC regs at 0x%llx\n", |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 424 | op->dev.of_node->full_name, op->resource[0].start); |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 425 | |
| 426 | /* The CMOS RTC driver only accepts IORESOURCE_IO, so cons |
| 427 | * up a fake resource so that the probe works for all cases. |
| 428 | * When the RTC is behind an ISA bus it will have IORESOURCE_IO |
| 429 | * already, whereas when it's behind EBUS is will be IORESOURCE_MEM. |
| 430 | */ |
| 431 | |
| 432 | r = &rtc_cmos_resource; |
| 433 | r->flags = IORESOURCE_IO; |
| 434 | r->name = op->resource[0].name; |
| 435 | r->start = op->resource[0].start; |
| 436 | r->end = op->resource[0].end; |
| 437 | |
| 438 | cmos_regs = op->resource[0].start; |
| 439 | return platform_device_register(&rtc_cmos_device); |
| 440 | } |
| 441 | |
David S. Miller | 3628aa0 | 2011-03-30 17:37:56 -0700 | [diff] [blame] | 442 | static const struct of_device_id rtc_match[] = { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 443 | { |
| 444 | .name = "rtc", |
| 445 | .compatible = "m5819", |
| 446 | }, |
| 447 | { |
| 448 | .name = "rtc", |
| 449 | .compatible = "isa-m5819p", |
| 450 | }, |
| 451 | { |
| 452 | .name = "rtc", |
| 453 | .compatible = "isa-m5823p", |
| 454 | }, |
| 455 | { |
| 456 | .name = "rtc", |
| 457 | .compatible = "ds1287", |
| 458 | }, |
| 459 | {}, |
| 460 | }; |
| 461 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 462 | static struct platform_driver rtc_driver = { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 463 | .probe = rtc_probe, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 464 | .driver = { |
| 465 | .name = "rtc", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 466 | .of_match_table = rtc_match, |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 467 | }, |
| 468 | }; |
| 469 | |
David S. Miller | 29b503f | 2008-08-28 21:54:34 -0700 | [diff] [blame] | 470 | static struct platform_device rtc_bq4802_device = { |
| 471 | .name = "rtc-bq4802", |
| 472 | .id = -1, |
| 473 | .num_resources = 1, |
| 474 | }; |
| 475 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 476 | static int bq4802_probe(struct platform_device *op) |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 477 | { |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 478 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 479 | printk(KERN_INFO "%s: BQ4802 regs at 0x%llx\n", |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 480 | op->dev.of_node->full_name, op->resource[0].start); |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 481 | |
David S. Miller | 29b503f | 2008-08-28 21:54:34 -0700 | [diff] [blame] | 482 | rtc_bq4802_device.resource = &op->resource[0]; |
| 483 | return platform_device_register(&rtc_bq4802_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } |
| 485 | |
David S. Miller | 3628aa0 | 2011-03-30 17:37:56 -0700 | [diff] [blame] | 486 | static const struct of_device_id bq4802_match[] = { |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 487 | { |
| 488 | .name = "rtc", |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 489 | .compatible = "bq4802", |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 490 | }, |
David S. Miller | 770a424 | 2008-10-30 22:58:06 -0700 | [diff] [blame] | 491 | {}, |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 492 | }; |
| 493 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 494 | static struct platform_driver bq4802_driver = { |
David S. Miller | da86783 | 2008-08-28 22:16:15 -0700 | [diff] [blame] | 495 | .probe = bq4802_probe, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 496 | .driver = { |
| 497 | .name = "bq4802", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 498 | .of_match_table = bq4802_match, |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 499 | }, |
| 500 | }; |
| 501 | |
| 502 | static unsigned char mostek_read_byte(struct device *dev, u32 ofs) |
| 503 | { |
| 504 | struct platform_device *pdev = to_platform_device(dev); |
Krzysztof Helt | 12a9ee3 | 2008-10-29 15:35:24 -0700 | [diff] [blame] | 505 | void __iomem *regs = (void __iomem *) pdev->resource[0].start; |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 506 | |
Krzysztof Helt | 12a9ee3 | 2008-10-29 15:35:24 -0700 | [diff] [blame] | 507 | return readb(regs + ofs); |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | static void mostek_write_byte(struct device *dev, u32 ofs, u8 val) |
| 511 | { |
| 512 | struct platform_device *pdev = to_platform_device(dev); |
Krzysztof Helt | 12a9ee3 | 2008-10-29 15:35:24 -0700 | [diff] [blame] | 513 | void __iomem *regs = (void __iomem *) pdev->resource[0].start; |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 514 | |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 515 | writeb(val, regs + ofs); |
| 516 | } |
| 517 | |
| 518 | static struct m48t59_plat_data m48t59_data = { |
| 519 | .read_byte = mostek_read_byte, |
| 520 | .write_byte = mostek_write_byte, |
| 521 | }; |
| 522 | |
| 523 | static struct platform_device m48t59_rtc = { |
| 524 | .name = "rtc-m48t59", |
| 525 | .id = 0, |
| 526 | .num_resources = 1, |
| 527 | .dev = { |
| 528 | .platform_data = &m48t59_data, |
| 529 | }, |
| 530 | }; |
| 531 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 532 | static int mostek_probe(struct platform_device *op) |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 533 | { |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 534 | struct device_node *dp = op->dev.of_node; |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 535 | |
| 536 | /* On an Enterprise system there can be multiple mostek clocks. |
| 537 | * We should only match the one that is on the central FHC bus. |
| 538 | */ |
| 539 | if (!strcmp(dp->parent->name, "fhc") && |
| 540 | strcmp(dp->parent->parent->name, "central") != 0) |
| 541 | return -ENODEV; |
| 542 | |
Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 543 | printk(KERN_INFO "%s: Mostek regs at 0x%llx\n", |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 544 | dp->full_name, op->resource[0].start); |
| 545 | |
| 546 | m48t59_rtc.resource = &op->resource[0]; |
| 547 | return platform_device_register(&m48t59_rtc); |
| 548 | } |
| 549 | |
David S. Miller | 3628aa0 | 2011-03-30 17:37:56 -0700 | [diff] [blame] | 550 | static const struct of_device_id mostek_match[] = { |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 551 | { |
| 552 | .name = "eeprom", |
| 553 | }, |
| 554 | {}, |
| 555 | }; |
| 556 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 557 | static struct platform_driver mostek_driver = { |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 558 | .probe = mostek_probe, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 559 | .driver = { |
| 560 | .name = "mostek", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 561 | .of_match_table = mostek_match, |
Stephen Rothwell | a2cd155 | 2007-10-10 23:27:34 -0700 | [diff] [blame] | 562 | }, |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 563 | }; |
| 564 | |
David S. Miller | 84d6bd5 | 2008-08-29 01:34:27 -0700 | [diff] [blame] | 565 | static struct platform_device rtc_sun4v_device = { |
| 566 | .name = "rtc-sun4v", |
| 567 | .id = -1, |
| 568 | }; |
| 569 | |
David S. Miller | f2be6de | 2008-08-29 01:35:19 -0700 | [diff] [blame] | 570 | static struct platform_device rtc_starfire_device = { |
| 571 | .name = "rtc-starfire", |
| 572 | .id = -1, |
| 573 | }; |
| 574 | |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 575 | static int __init clock_init(void) |
| 576 | { |
David S. Miller | f2be6de | 2008-08-29 01:35:19 -0700 | [diff] [blame] | 577 | if (this_is_starfire) |
| 578 | return platform_device_register(&rtc_starfire_device); |
| 579 | |
David S. Miller | 84d6bd5 | 2008-08-29 01:34:27 -0700 | [diff] [blame] | 580 | if (tlb_type == hypervisor) |
| 581 | return platform_device_register(&rtc_sun4v_device); |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 582 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 583 | (void) platform_driver_register(&rtc_driver); |
| 584 | (void) platform_driver_register(&mostek_driver); |
| 585 | (void) platform_driver_register(&bq4802_driver); |
David S. Miller | 1518e7e | 2008-08-28 21:06:27 -0700 | [diff] [blame] | 586 | |
| 587 | return 0; |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | /* Must be after subsys_initcall() so that busses are probed. Must |
| 591 | * be before device_initcall() because things like the RTC driver |
| 592 | * need to see the clock registers. |
| 593 | */ |
| 594 | fs_initcall(clock_init); |
| 595 | |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 596 | /* Return true if this is Hummingbird, aka Ultra-IIe */ |
| 597 | static bool is_hummingbird(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | { |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 599 | unsigned long ver, manuf, impl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 601 | __asm__ __volatile__ ("rdpr %%ver, %0" |
| 602 | : "=&r" (ver)); |
| 603 | manuf = ((ver >> 48) & 0xffff); |
| 604 | impl = ((ver >> 32) & 0xffff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 606 | return (manuf == 0x17 && impl == 0x13); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | struct freq_table { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | unsigned long clock_tick_ref; |
| 611 | unsigned int ref_freq; |
| 612 | }; |
David S. Miller | 3763be3 | 2006-02-17 12:33:13 -0800 | [diff] [blame] | 613 | static DEFINE_PER_CPU(struct freq_table, sparc64_freq_table) = { 0, 0 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
| 615 | unsigned long sparc64_get_clock_tick(unsigned int cpu) |
| 616 | { |
| 617 | struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu); |
| 618 | |
| 619 | if (ft->clock_tick_ref) |
| 620 | return ft->clock_tick_ref; |
| 621 | return cpu_data(cpu).clock_tick; |
| 622 | } |
Sam Ravnborg | 917c366 | 2009-01-08 16:58:20 -0800 | [diff] [blame] | 623 | EXPORT_SYMBOL(sparc64_get_clock_tick); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
| 625 | #ifdef CONFIG_CPU_FREQ |
| 626 | |
| 627 | static int sparc64_cpufreq_notifier(struct notifier_block *nb, unsigned long val, |
| 628 | void *data) |
| 629 | { |
| 630 | struct cpufreq_freqs *freq = data; |
| 631 | unsigned int cpu = freq->cpu; |
| 632 | struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu); |
| 633 | |
| 634 | if (!ft->ref_freq) { |
| 635 | ft->ref_freq = freq->old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | ft->clock_tick_ref = cpu_data(cpu).clock_tick; |
| 637 | } |
| 638 | if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) || |
Viresh Kumar | 0b443ea | 2014-03-19 11:24:58 +0530 | [diff] [blame] | 639 | (val == CPUFREQ_POSTCHANGE && freq->old > freq->new)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | cpu_data(cpu).clock_tick = |
| 641 | cpufreq_scale(ft->clock_tick_ref, |
| 642 | ft->ref_freq, |
| 643 | freq->new); |
| 644 | } |
| 645 | |
| 646 | return 0; |
| 647 | } |
| 648 | |
| 649 | static struct notifier_block sparc64_cpufreq_notifier_block = { |
| 650 | .notifier_call = sparc64_cpufreq_notifier |
| 651 | }; |
| 652 | |
David S. Miller | 7ae93f5 | 2008-07-23 16:21:07 -0700 | [diff] [blame] | 653 | static int __init register_sparc64_cpufreq_notifier(void) |
| 654 | { |
| 655 | |
| 656 | cpufreq_register_notifier(&sparc64_cpufreq_notifier_block, |
| 657 | CPUFREQ_TRANSITION_NOTIFIER); |
| 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | core_initcall(register_sparc64_cpufreq_notifier); |
| 662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | #endif /* CONFIG_CPU_FREQ */ |
| 664 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 665 | static int sparc64_next_event(unsigned long delta, |
| 666 | struct clock_event_device *evt) |
| 667 | { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame] | 668 | return tick_operations.add_compare(delta) ? -ETIME : 0; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 669 | } |
| 670 | |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 671 | static int sparc64_timer_shutdown(struct clock_event_device *evt) |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 672 | { |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame] | 673 | tick_operations.disable_irq(); |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 674 | return 0; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 675 | } |
| 676 | |
| 677 | static struct clock_event_device sparc64_clockevent = { |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 678 | .features = CLOCK_EVT_FEAT_ONESHOT, |
| 679 | .set_state_shutdown = sparc64_timer_shutdown, |
| 680 | .set_next_event = sparc64_next_event, |
| 681 | .rating = 100, |
| 682 | .shift = 30, |
| 683 | .irq = -1, |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 684 | }; |
| 685 | static DEFINE_PER_CPU(struct clock_event_device, sparc64_events); |
| 686 | |
David S. Miller | 9960e9e | 2010-04-07 04:41:33 -0700 | [diff] [blame] | 687 | void __irq_entry timer_interrupt(int irq, struct pt_regs *regs) |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 688 | { |
| 689 | struct pt_regs *old_regs = set_irq_regs(regs); |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame] | 690 | unsigned long tick_mask = tick_operations.softint_mask; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 691 | int cpu = smp_processor_id(); |
| 692 | struct clock_event_device *evt = &per_cpu(sparc64_events, cpu); |
| 693 | |
| 694 | clear_softint(tick_mask); |
| 695 | |
| 696 | irq_enter(); |
| 697 | |
David S. Miller | daecbf5 | 2010-04-06 17:38:52 -0700 | [diff] [blame] | 698 | local_cpu_data().irq0_irqs++; |
Thomas Gleixner | 87a69ad | 2014-02-23 21:40:15 +0000 | [diff] [blame] | 699 | kstat_incr_irq_this_cpu(0); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 700 | |
| 701 | if (unlikely(!evt->event_handler)) { |
| 702 | printk(KERN_WARNING |
| 703 | "Spurious SPARC64 timer interrupt on cpu %d\n", cpu); |
| 704 | } else |
| 705 | evt->event_handler(evt); |
| 706 | |
| 707 | irq_exit(); |
| 708 | |
| 709 | set_irq_regs(old_regs); |
| 710 | } |
| 711 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 712 | void setup_sparc64_timer(void) |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 713 | { |
| 714 | struct clock_event_device *sevt; |
| 715 | unsigned long pstate; |
| 716 | |
| 717 | /* Guarantee that the following sequences execute |
| 718 | * uninterrupted. |
| 719 | */ |
| 720 | __asm__ __volatile__("rdpr %%pstate, %0\n\t" |
| 721 | "wrpr %0, %1, %%pstate" |
| 722 | : "=r" (pstate) |
| 723 | : "i" (PSTATE_IE)); |
| 724 | |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame] | 725 | tick_operations.init_tick(); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 726 | |
| 727 | /* Restore PSTATE_IE. */ |
| 728 | __asm__ __volatile__("wrpr %0, 0x0, %%pstate" |
| 729 | : /* no outputs */ |
| 730 | : "r" (pstate)); |
| 731 | |
Christoph Lameter | 494fc42 | 2014-08-17 12:30:54 -0500 | [diff] [blame] | 732 | sevt = this_cpu_ptr(&sparc64_events); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 733 | |
| 734 | memcpy(sevt, &sparc64_clockevent, sizeof(*sevt)); |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 735 | sevt->cpumask = cpumask_of(smp_processor_id()); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 736 | |
| 737 | clockevents_register_device(sevt); |
| 738 | } |
| 739 | |
David S. Miller | 03983ab | 2007-05-17 22:55:26 -0700 | [diff] [blame] | 740 | #define SPARC64_NSEC_PER_CYC_SHIFT 10UL |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 741 | |
| 742 | static struct clocksource clocksource_tick = { |
| 743 | .rating = 100, |
| 744 | .mask = CLOCKSOURCE_MASK(64), |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 745 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | }; |
| 747 | |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 748 | static unsigned long tb_ticks_per_usec __read_mostly; |
| 749 | |
| 750 | void __delay(unsigned long loops) |
| 751 | { |
Pavel Tatashin | eae3fc9 | 2017-06-12 16:41:48 -0400 | [diff] [blame] | 752 | unsigned long bclock = get_tick(); |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 753 | |
Pavel Tatashin | eae3fc9 | 2017-06-12 16:41:48 -0400 | [diff] [blame] | 754 | while ((get_tick() - bclock) < loops) |
| 755 | ; |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 756 | } |
| 757 | EXPORT_SYMBOL(__delay); |
| 758 | |
| 759 | void udelay(unsigned long usecs) |
| 760 | { |
| 761 | __delay(tb_ticks_per_usec * usecs); |
| 762 | } |
| 763 | EXPORT_SYMBOL(udelay); |
| 764 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 765 | static u64 clocksource_tick_read(struct clocksource *cs) |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 766 | { |
Pavel Tatashin | eae3fc9 | 2017-06-12 16:41:48 -0400 | [diff] [blame] | 767 | return get_tick(); |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 768 | } |
| 769 | |
Pavel Tatashin | 4929c83 | 2017-06-12 16:41:47 -0400 | [diff] [blame] | 770 | static void __init get_tick_patch(void) |
| 771 | { |
| 772 | unsigned int *addr, *instr, i; |
| 773 | struct get_tick_patch *p; |
| 774 | |
| 775 | if (tlb_type == spitfire && is_hummingbird()) |
| 776 | return; |
| 777 | |
| 778 | for (p = &__get_tick_patch; p < &__get_tick_patch_end; p++) { |
| 779 | instr = (tlb_type == spitfire) ? p->tick : p->stick; |
| 780 | addr = (unsigned int *)(unsigned long)p->addr; |
| 781 | for (i = 0; i < GET_TICK_NINSTR; i++) { |
| 782 | addr[i] = instr[i]; |
| 783 | /* ensure that address is modified before flush */ |
| 784 | wmb(); |
| 785 | flushi(&addr[i]); |
| 786 | } |
| 787 | } |
| 788 | } |
| 789 | |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 790 | static void init_tick_ops(struct sparc64_tick_ops *ops) |
| 791 | { |
| 792 | unsigned long freq, quotient, tick; |
| 793 | |
| 794 | freq = ops->get_frequency(); |
| 795 | quotient = clocksource_hz2mult(freq, SPARC64_NSEC_PER_CYC_SHIFT); |
| 796 | tick = ops->get_tick(); |
| 797 | |
| 798 | ops->offset = (tick * quotient) >> SPARC64_NSEC_PER_CYC_SHIFT; |
| 799 | ops->ticks_per_nsec_quotient = quotient; |
| 800 | ops->frequency = freq; |
| 801 | tick_operations = *ops; |
Pavel Tatashin | 4929c83 | 2017-06-12 16:41:47 -0400 | [diff] [blame] | 802 | get_tick_patch(); |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 803 | } |
| 804 | |
Pavel Tatashin | 83e8eb9 | 2017-06-12 16:41:46 -0400 | [diff] [blame] | 805 | void __init time_init_early(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | { |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 807 | if (tlb_type == spitfire) { |
| 808 | if (is_hummingbird()) |
| 809 | init_tick_ops(&hbtick_operations); |
| 810 | else |
| 811 | init_tick_ops(&tick_operations); |
| 812 | } else { |
| 813 | init_tick_ops(&stick_operations); |
| 814 | } |
Pavel Tatashin | 83e8eb9 | 2017-06-12 16:41:46 -0400 | [diff] [blame] | 815 | } |
| 816 | |
| 817 | void __init time_init(void) |
| 818 | { |
| 819 | unsigned long freq; |
Pavel Tatashin | 89108c3 | 2017-06-12 16:41:45 -0400 | [diff] [blame] | 820 | |
| 821 | freq = tick_operations.frequency; |
David S. Miller | d8ada0a | 2008-09-11 23:39:11 -0700 | [diff] [blame] | 822 | tb_ticks_per_usec = freq / USEC_PER_SEC; |
David S. Miller | 8b99cfb | 2007-07-14 02:23:37 -0700 | [diff] [blame] | 823 | |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame] | 824 | clocksource_tick.name = tick_operations.name; |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 825 | clocksource_tick.read = clocksource_tick_read; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 826 | |
John Stultz | 81043e8 | 2011-02-23 13:08:21 -0800 | [diff] [blame] | 827 | clocksource_register_hz(&clocksource_tick, freq); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 828 | printk("clocksource: mult[%x] shift[%d]\n", |
| 829 | clocksource_tick.mult, clocksource_tick.shift); |
| 830 | |
Pavel Tatashin | b8a83fc | 2017-06-12 16:41:42 -0400 | [diff] [blame] | 831 | sparc64_clockevent.name = tick_operations.name; |
David S. Miller | 6865b7f | 2009-12-11 01:27:29 -0800 | [diff] [blame] | 832 | clockevents_calc_mult_shift(&sparc64_clockevent, freq, 4); |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 833 | |
| 834 | sparc64_clockevent.max_delta_ns = |
David S. Miller | cf3d7c1 | 2008-03-26 01:11:55 -0700 | [diff] [blame] | 835 | clockevent_delta2ns(0x7fffffffffffffffUL, &sparc64_clockevent); |
Nicolai Stange | 7fd5342 | 2017-03-30 21:56:47 +0200 | [diff] [blame] | 836 | sparc64_clockevent.max_delta_ticks = 0x7fffffffffffffffUL; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 837 | sparc64_clockevent.min_delta_ns = |
| 838 | clockevent_delta2ns(0xF, &sparc64_clockevent); |
Nicolai Stange | 7fd5342 | 2017-03-30 21:56:47 +0200 | [diff] [blame] | 839 | sparc64_clockevent.min_delta_ticks = 0xF; |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 840 | |
David S. Miller | 7466bd3 | 2009-12-11 02:05:05 -0800 | [diff] [blame] | 841 | printk("clockevent: mult[%x] shift[%d]\n", |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 842 | sparc64_clockevent.mult, sparc64_clockevent.shift); |
| 843 | |
| 844 | setup_sparc64_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | unsigned long long sched_clock(void) |
| 848 | { |
Pavel Tatashin | 178bf2b | 2017-06-12 16:41:44 -0400 | [diff] [blame] | 849 | unsigned long quotient = tick_operations.ticks_per_nsec_quotient; |
| 850 | unsigned long offset = tick_operations.offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
Pavel Tatashin | eae3fc9 | 2017-06-12 16:41:48 -0400 | [diff] [blame] | 852 | /* Use barrier so the compiler emits the loads first and overlaps load |
| 853 | * latency with reading tick, because reading %tick/%stick is a |
| 854 | * post-sync instruction that will flush and restart subsequent |
| 855 | * instructions after it commits. |
| 856 | */ |
| 857 | barrier(); |
| 858 | |
| 859 | return ((get_tick() * quotient) >> SPARC64_NSEC_PER_CYC_SHIFT) - offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | } |
| 861 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 862 | int read_current_timer(unsigned long *timer_val) |
Andrew Morton | 941e492 | 2008-02-06 01:36:42 -0800 | [diff] [blame] | 863 | { |
Pavel Tatashin | eae3fc9 | 2017-06-12 16:41:48 -0400 | [diff] [blame] | 864 | *timer_val = get_tick(); |
Andrew Morton | 941e492 | 2008-02-06 01:36:42 -0800 | [diff] [blame] | 865 | return 0; |
| 866 | } |