David S. Miller | 64d329e | 2007-10-27 00:17:01 -0700 | [diff] [blame] | 1 | /* linux/arch/sparc/kernel/time.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
David S. Miller | 64d329e | 2007-10-27 00:17:01 -0700 | [diff] [blame] | 3 | * Copyright (C) 1995 David S. Miller (davem@davemloft.net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu) |
| 5 | * |
| 6 | * Chris Davis (cdavis@cois.on.ca) 03/27/1998 |
| 7 | * Added support for the intersil on the sun4/4200 |
| 8 | * |
| 9 | * Gleb Raiko (rajko@mech.math.msu.su) 08/18/1998 |
| 10 | * Support for MicroSPARC-IIep, PCI CPU. |
| 11 | * |
| 12 | * This file handles the Sparc specific time handling details. |
| 13 | * |
| 14 | * 1997-09-10 Updated NTP code according to technical memorandum Jan '96 |
| 15 | * "A Kernel Model for Precision Timekeeping" by Dave Mills |
| 16 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/errno.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/sched.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/param.h> |
| 22 | #include <linux/string.h> |
| 23 | #include <linux/mm.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/time.h> |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 26 | #include <linux/rtc/m48t59.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/timex.h> |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 28 | #include <linux/clocksource.h> |
| 29 | #include <linux/clockchips.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/init.h> |
| 31 | #include <linux/pci.h> |
| 32 | #include <linux/ioport.h> |
| 33 | #include <linux/profile.h> |
David S. Miller | 454eeb2 | 2008-08-27 04:05:35 -0700 | [diff] [blame] | 34 | #include <linux/of.h> |
Stephen Rothwell | 764f257 | 2008-08-07 15:33:36 -0700 | [diff] [blame] | 35 | #include <linux/of_device.h> |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 36 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Sam Ravnborg | fcea8b2 | 2014-05-16 23:25:44 +0200 | [diff] [blame] | 38 | #include <asm/mc146818rtc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/oplib.h> |
John Stultz | 0299b13 | 2010-01-15 01:34:28 -0800 | [diff] [blame] | 40 | #include <asm/timex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <asm/timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/irq.h> |
| 43 | #include <asm/io.h> |
| 44 | #include <asm/idprom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/page.h> |
| 46 | #include <asm/pcic.h> |
Al Viro | 0d84438 | 2006-10-08 14:30:44 +0100 | [diff] [blame] | 47 | #include <asm/irq_regs.h> |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 48 | #include <asm/setup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Sam Ravnborg | fcea8b2 | 2014-05-16 23:25:44 +0200 | [diff] [blame] | 50 | #include "kernel.h" |
Al Viro | 32231a6 | 2007-07-21 19:18:57 -0700 | [diff] [blame] | 51 | #include "irq.h" |
| 52 | |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 53 | static __cacheline_aligned_in_smp DEFINE_SEQLOCK(timer_cs_lock); |
| 54 | static __volatile__ u64 timer_cs_internal_counter = 0; |
| 55 | static char timer_cs_enabled = 0; |
| 56 | |
| 57 | static struct clock_event_device timer_ce; |
| 58 | static char timer_ce_enabled = 0; |
| 59 | |
| 60 | #ifdef CONFIG_SMP |
| 61 | DEFINE_PER_CPU(struct clock_event_device, sparc32_clockevent); |
| 62 | #endif |
| 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | DEFINE_SPINLOCK(rtc_lock); |
Sam Ravnborg | 6943f3d | 2009-01-08 16:58:05 -0800 | [diff] [blame] | 65 | EXPORT_SYMBOL(rtc_lock); |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | unsigned long profile_pc(struct pt_regs *regs) |
| 68 | { |
| 69 | extern char __copy_user_begin[], __copy_user_end[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | extern char __bzero_begin[], __bzero_end[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | unsigned long pc = regs->pc; |
| 73 | |
| 74 | if (in_lock_functions(pc) || |
| 75 | (pc >= (unsigned long) __copy_user_begin && |
| 76 | pc < (unsigned long) __copy_user_end) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | (pc >= (unsigned long) __bzero_begin && |
David S. Miller | 8a8b836 | 2006-12-17 16:18:47 -0800 | [diff] [blame] | 78 | pc < (unsigned long) __bzero_end)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | pc = regs->u_regs[UREG_RETPC]; |
| 80 | return pc; |
| 81 | } |
| 82 | |
Martin Habets | 9550e59 | 2006-10-17 19:21:48 -0700 | [diff] [blame] | 83 | EXPORT_SYMBOL(profile_pc); |
| 84 | |
Sam Ravnborg | fcea8b2 | 2014-05-16 23:25:44 +0200 | [diff] [blame] | 85 | volatile u32 __iomem *master_l10_counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 87 | irqreturn_t notrace timer_interrupt(int dummy, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 89 | if (timer_cs_enabled) { |
| 90 | write_seqlock(&timer_cs_lock); |
| 91 | timer_cs_internal_counter++; |
Sam Ravnborg | 08c9388 | 2012-05-14 17:30:35 +0200 | [diff] [blame] | 92 | sparc_config.clear_clock_irq(); |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 93 | write_sequnlock(&timer_cs_lock); |
| 94 | } else { |
Sam Ravnborg | 08c9388 | 2012-05-14 17:30:35 +0200 | [diff] [blame] | 95 | sparc_config.clear_clock_irq(); |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 96 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 98 | if (timer_ce_enabled) |
| 99 | timer_ce.event_handler(&timer_ce); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | return IRQ_HANDLED; |
| 102 | } |
| 103 | |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 104 | static int timer_ce_shutdown(struct clock_event_device *evt) |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 105 | { |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 106 | timer_ce_enabled = 0; |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 107 | smp_mb(); |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | static int timer_ce_set_periodic(struct clock_event_device *evt) |
| 112 | { |
| 113 | timer_ce_enabled = 1; |
| 114 | smp_mb(); |
| 115 | return 0; |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | static __init void setup_timer_ce(void) |
| 119 | { |
| 120 | struct clock_event_device *ce = &timer_ce; |
| 121 | |
| 122 | BUG_ON(smp_processor_id() != boot_cpu_id); |
| 123 | |
| 124 | ce->name = "timer_ce"; |
| 125 | ce->rating = 100; |
| 126 | ce->features = CLOCK_EVT_FEAT_PERIODIC; |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 127 | ce->set_state_shutdown = timer_ce_shutdown; |
| 128 | ce->set_state_periodic = timer_ce_set_periodic; |
| 129 | ce->tick_resume = timer_ce_set_periodic; |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 130 | ce->cpumask = cpu_possible_mask; |
| 131 | ce->shift = 32; |
| 132 | ce->mult = div_sc(sparc_config.clock_rate, NSEC_PER_SEC, |
| 133 | ce->shift); |
| 134 | clockevents_register_device(ce); |
| 135 | } |
| 136 | |
| 137 | static unsigned int sbus_cycles_offset(void) |
| 138 | { |
Sam Ravnborg | fcea8b2 | 2014-05-16 23:25:44 +0200 | [diff] [blame] | 139 | u32 val, offset; |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 140 | |
Sam Ravnborg | fcea8b2 | 2014-05-16 23:25:44 +0200 | [diff] [blame] | 141 | val = sbus_readl(master_l10_counter); |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 142 | offset = (val >> TIMER_VALUE_SHIFT) & TIMER_VALUE_MASK; |
| 143 | |
| 144 | /* Limit hit? */ |
| 145 | if (val & TIMER_LIMIT_BIT) |
| 146 | offset += sparc_config.cs_period; |
| 147 | |
| 148 | return offset; |
| 149 | } |
| 150 | |
| 151 | static cycle_t timer_cs_read(struct clocksource *cs) |
| 152 | { |
| 153 | unsigned int seq, offset; |
| 154 | u64 cycles; |
| 155 | |
| 156 | do { |
| 157 | seq = read_seqbegin(&timer_cs_lock); |
| 158 | |
| 159 | cycles = timer_cs_internal_counter; |
| 160 | offset = sparc_config.get_cycles_offset(); |
| 161 | } while (read_seqretry(&timer_cs_lock, seq)); |
| 162 | |
| 163 | /* Count absolute cycles */ |
| 164 | cycles *= sparc_config.cs_period; |
| 165 | cycles += offset; |
| 166 | |
| 167 | return cycles; |
| 168 | } |
| 169 | |
| 170 | static struct clocksource timer_cs = { |
| 171 | .name = "timer_cs", |
| 172 | .rating = 100, |
| 173 | .read = timer_cs_read, |
| 174 | .mask = CLOCKSOURCE_MASK(64), |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 175 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 176 | }; |
| 177 | |
| 178 | static __init int setup_timer_cs(void) |
| 179 | { |
| 180 | timer_cs_enabled = 1; |
John Stultz | 3142f76 | 2015-03-11 21:16:38 -0700 | [diff] [blame] | 181 | return clocksource_register_hz(&timer_cs, sparc_config.clock_rate); |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | #ifdef CONFIG_SMP |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 185 | static int percpu_ce_shutdown(struct clock_event_device *evt) |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 186 | { |
Rusty Russell | e4afa12 | 2015-04-18 11:18:27 +0930 | [diff] [blame] | 187 | int cpu = cpumask_first(evt->cpumask); |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 188 | |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 189 | sparc_config.load_profile_irq(cpu, 0); |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | static int percpu_ce_set_periodic(struct clock_event_device *evt) |
| 194 | { |
| 195 | int cpu = cpumask_first(evt->cpumask); |
| 196 | |
| 197 | sparc_config.load_profile_irq(cpu, SBUS_CLOCK_RATE / HZ); |
| 198 | return 0; |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | static int percpu_ce_set_next_event(unsigned long delta, |
| 202 | struct clock_event_device *evt) |
| 203 | { |
Rusty Russell | e4afa12 | 2015-04-18 11:18:27 +0930 | [diff] [blame] | 204 | int cpu = cpumask_first(evt->cpumask); |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 205 | unsigned int next = (unsigned int)delta; |
| 206 | |
Sam Ravnborg | 08c9388 | 2012-05-14 17:30:35 +0200 | [diff] [blame] | 207 | sparc_config.load_profile_irq(cpu, next); |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | void register_percpu_ce(int cpu) |
| 212 | { |
| 213 | struct clock_event_device *ce = &per_cpu(sparc32_clockevent, cpu); |
| 214 | unsigned int features = CLOCK_EVT_FEAT_PERIODIC; |
| 215 | |
| 216 | if (sparc_config.features & FEAT_L14_ONESHOT) |
| 217 | features |= CLOCK_EVT_FEAT_ONESHOT; |
| 218 | |
| 219 | ce->name = "percpu_ce"; |
| 220 | ce->rating = 200; |
| 221 | ce->features = features; |
Viresh Kumar | ff4aea4 | 2015-07-16 16:56:29 +0530 | [diff] [blame] | 222 | ce->set_state_shutdown = percpu_ce_shutdown; |
| 223 | ce->set_state_periodic = percpu_ce_set_periodic; |
| 224 | ce->set_state_oneshot = percpu_ce_shutdown; |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 225 | ce->set_next_event = percpu_ce_set_next_event; |
| 226 | ce->cpumask = cpumask_of(cpu); |
| 227 | ce->shift = 32; |
| 228 | ce->mult = div_sc(sparc_config.clock_rate, NSEC_PER_SEC, |
| 229 | ce->shift); |
| 230 | ce->max_delta_ns = clockevent_delta2ns(sparc_config.clock_rate, ce); |
| 231 | ce->min_delta_ns = clockevent_delta2ns(100, ce); |
| 232 | |
| 233 | clockevents_register_device(ce); |
| 234 | } |
| 235 | #endif |
| 236 | |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 237 | static unsigned char mostek_read_byte(struct device *dev, u32 ofs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | { |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 239 | struct platform_device *pdev = to_platform_device(dev); |
| 240 | struct m48t59_plat_data *pdata = pdev->dev.platform_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Krzysztof Helt | 12a9ee3 | 2008-10-29 15:35:24 -0700 | [diff] [blame] | 242 | return readb(pdata->ioaddr + ofs); |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 243 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 245 | static void mostek_write_byte(struct device *dev, u32 ofs, u8 val) |
| 246 | { |
| 247 | struct platform_device *pdev = to_platform_device(dev); |
| 248 | struct m48t59_plat_data *pdata = pdev->dev.platform_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Krzysztof Helt | 12a9ee3 | 2008-10-29 15:35:24 -0700 | [diff] [blame] | 250 | writeb(val, pdata->ioaddr + ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 253 | static struct m48t59_plat_data m48t59_data = { |
| 254 | .read_byte = mostek_read_byte, |
| 255 | .write_byte = mostek_write_byte, |
| 256 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 258 | /* resource is set at runtime */ |
| 259 | static struct platform_device m48t59_rtc = { |
| 260 | .name = "rtc-m48t59", |
| 261 | .id = 0, |
| 262 | .num_resources = 1, |
| 263 | .dev = { |
| 264 | .platform_data = &m48t59_data, |
| 265 | }, |
| 266 | }; |
Bob Breuer | 96ba989 | 2006-07-27 22:08:01 -0700 | [diff] [blame] | 267 | |
Greg Kroah-Hartman | 7c9503b | 2012-12-21 14:03:26 -0800 | [diff] [blame] | 268 | static int clock_probe(struct platform_device *op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | { |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 270 | struct device_node *dp = op->dev.of_node; |
Stephen Rothwell | 8271f04 | 2007-03-29 00:47:23 -0700 | [diff] [blame] | 271 | const char *model = of_get_property(dp, "model", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 273 | if (!model) |
| 274 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Kjetil Oftedal | 1c833bc | 2011-03-24 16:34:52 -0700 | [diff] [blame] | 276 | /* Only the primary RTC has an address property */ |
| 277 | if (!of_find_property(dp, "address", NULL)) |
| 278 | return -ENODEV; |
| 279 | |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 280 | m48t59_rtc.resource = &op->resource[0]; |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 281 | if (!strcmp(model, "mk48t02")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | /* Map the clock register io area read-only */ |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 283 | m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0, |
| 284 | 2048, "rtc-m48t59"); |
| 285 | m48t59_data.type = M48T59RTC_TYPE_M48T02; |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 286 | } else if (!strcmp(model, "mk48t08")) { |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 287 | m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0, |
| 288 | 8192, "rtc-m48t59"); |
| 289 | m48t59_data.type = M48T59RTC_TYPE_M48T08; |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 290 | } else |
| 291 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
David S. Miller | c4cbe6f | 2008-09-03 15:52:38 -0700 | [diff] [blame] | 293 | if (platform_device_register(&m48t59_rtc) < 0) |
| 294 | printk(KERN_ERR "Registering RTC device failed\n"); |
Bob Breuer | 96ba989 | 2006-07-27 22:08:01 -0700 | [diff] [blame] | 295 | |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 296 | return 0; |
| 297 | } |
| 298 | |
Sam Ravnborg | 505d914 | 2011-04-21 15:37:20 -0700 | [diff] [blame] | 299 | static struct of_device_id clock_match[] = { |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 300 | { |
| 301 | .name = "eeprom", |
| 302 | }, |
| 303 | {}, |
| 304 | }; |
| 305 | |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 306 | static struct platform_driver clock_driver = { |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 307 | .probe = clock_probe, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 308 | .driver = { |
| 309 | .name = "rtc", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 310 | .of_match_table = clock_match, |
Stephen Rothwell | a2cd155 | 2007-10-10 23:27:34 -0700 | [diff] [blame] | 311 | }, |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 312 | }; |
| 313 | |
| 314 | |
| 315 | /* Probe for the mostek real time clock chip. */ |
Bob Breuer | 96ba989 | 2006-07-27 22:08:01 -0700 | [diff] [blame] | 316 | static int __init clock_init(void) |
David S. Miller | ee5caf0 | 2006-06-29 14:36:52 -0700 | [diff] [blame] | 317 | { |
Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 318 | return platform_driver_register(&clock_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
Bob Breuer | 96ba989 | 2006-07-27 22:08:01 -0700 | [diff] [blame] | 320 | /* Must be after subsys_initcall() so that busses are probed. Must |
| 321 | * be before device_initcall() because things like the RTC driver |
| 322 | * need to see the clock registers. |
| 323 | */ |
| 324 | fs_initcall(clock_init); |
Bob Breuer | 96ba989 | 2006-07-27 22:08:01 -0700 | [diff] [blame] | 325 | |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 326 | static void __init sparc32_late_time_init(void) |
John Stultz | 0299b13 | 2010-01-15 01:34:28 -0800 | [diff] [blame] | 327 | { |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 328 | if (sparc_config.features & FEAT_L10_CLOCKEVENT) |
| 329 | setup_timer_ce(); |
| 330 | if (sparc_config.features & FEAT_L10_CLOCKSOURCE) |
| 331 | setup_timer_cs(); |
| 332 | #ifdef CONFIG_SMP |
| 333 | register_percpu_ce(smp_processor_id()); |
| 334 | #endif |
John Stultz | 0299b13 | 2010-01-15 01:34:28 -0800 | [diff] [blame] | 335 | } |
| 336 | |
Adrian Bunk | c61c65c | 2008-06-05 11:40:58 -0700 | [diff] [blame] | 337 | static void __init sbus_time_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 339 | sparc_config.get_cycles_offset = sbus_cycles_offset; |
| 340 | sparc_config.init_timers(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | void __init time_init(void) |
| 344 | { |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 345 | sparc_config.features = 0; |
| 346 | late_time_init = sparc32_late_time_init; |
| 347 | |
Sam Ravnborg | 06010fb | 2011-04-17 13:49:55 +0200 | [diff] [blame] | 348 | if (pcic_present()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | pci_time_init(); |
Sam Ravnborg | 06010fb | 2011-04-17 13:49:55 +0200 | [diff] [blame] | 350 | else |
| 351 | sbus_time_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | } |
| 353 | |