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