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