sparc: time: Replace update_persistent_clock() with CONFIG_RTC_SYSTOHC
[deliverable/linux.git] / arch / sparc / kernel / time_32.c
CommitLineData
64d329ee 1/* linux/arch/sparc/kernel/time.c
1da177e4 2 *
64d329ee 3 * Copyright (C) 1995 David S. Miller (davem@davemloft.net)
1da177e4
LT
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 */
1da177e4
LT
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>
c4cbe6f9 26#include <linux/rtc/m48t59.h>
1da177e4 27#include <linux/timex.h>
62f08283
TK
28#include <linux/clocksource.h>
29#include <linux/clockchips.h>
1da177e4
LT
30#include <linux/init.h>
31#include <linux/pci.h>
32#include <linux/ioport.h>
33#include <linux/profile.h>
454eeb2d 34#include <linux/of.h>
764f2579 35#include <linux/of_device.h>
c4cbe6f9 36#include <linux/platform_device.h>
1da177e4 37
fcea8b27 38#include <asm/mc146818rtc.h>
1da177e4 39#include <asm/oplib.h>
0299b137 40#include <asm/timex.h>
1da177e4 41#include <asm/timer.h>
1da177e4
LT
42#include <asm/irq.h>
43#include <asm/io.h>
44#include <asm/idprom.h>
1da177e4
LT
45#include <asm/page.h>
46#include <asm/pcic.h>
0d84438d 47#include <asm/irq_regs.h>
62f08283 48#include <asm/setup.h>
1da177e4 49
fcea8b27 50#include "kernel.h"
32231a66
AV
51#include "irq.h"
52
62f08283
TK
53static __cacheline_aligned_in_smp DEFINE_SEQLOCK(timer_cs_lock);
54static __volatile__ u64 timer_cs_internal_counter = 0;
55static char timer_cs_enabled = 0;
56
57static struct clock_event_device timer_ce;
58static char timer_ce_enabled = 0;
59
60#ifdef CONFIG_SMP
61DEFINE_PER_CPU(struct clock_event_device, sparc32_clockevent);
62#endif
63
1da177e4 64DEFINE_SPINLOCK(rtc_lock);
6943f3da
SR
65EXPORT_SYMBOL(rtc_lock);
66
1da177e4
LT
67unsigned long profile_pc(struct pt_regs *regs)
68{
69 extern char __copy_user_begin[], __copy_user_end[];
1da177e4 70 extern char __bzero_begin[], __bzero_end[];
1da177e4
LT
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) ||
1da177e4 77 (pc >= (unsigned long) __bzero_begin &&
8a8b836b 78 pc < (unsigned long) __bzero_end))
1da177e4
LT
79 pc = regs->u_regs[UREG_RETPC];
80 return pc;
81}
82
9550e59c
MH
83EXPORT_SYMBOL(profile_pc);
84
fcea8b27 85volatile u32 __iomem *master_l10_counter;
1da177e4 86
62f08283
TK
87irqreturn_t notrace timer_interrupt(int dummy, void *dev_id)
88{
89 if (timer_cs_enabled) {
90 write_seqlock(&timer_cs_lock);
91 timer_cs_internal_counter++;
08c9388f 92 sparc_config.clear_clock_irq();
62f08283
TK
93 write_sequnlock(&timer_cs_lock);
94 } else {
08c9388f 95 sparc_config.clear_clock_irq();
62f08283 96 }
1da177e4 97
62f08283
TK
98 if (timer_ce_enabled)
99 timer_ce.event_handler(&timer_ce);
1da177e4 100
62f08283
TK
101 return IRQ_HANDLED;
102}
103
104static void timer_ce_set_mode(enum clock_event_mode mode,
105 struct clock_event_device *evt)
1da177e4 106{
62f08283
TK
107 switch (mode) {
108 case CLOCK_EVT_MODE_PERIODIC:
109 case CLOCK_EVT_MODE_RESUME:
110 timer_ce_enabled = 1;
111 break;
112 case CLOCK_EVT_MODE_SHUTDOWN:
113 timer_ce_enabled = 0;
114 break;
115 default:
116 break;
117 }
118 smp_mb();
119}
120
121static __init void setup_timer_ce(void)
122{
123 struct clock_event_device *ce = &timer_ce;
124
125 BUG_ON(smp_processor_id() != boot_cpu_id);
126
127 ce->name = "timer_ce";
128 ce->rating = 100;
129 ce->features = CLOCK_EVT_FEAT_PERIODIC;
130 ce->set_mode = timer_ce_set_mode;
131 ce->cpumask = cpu_possible_mask;
132 ce->shift = 32;
133 ce->mult = div_sc(sparc_config.clock_rate, NSEC_PER_SEC,
134 ce->shift);
135 clockevents_register_device(ce);
136}
1da177e4 137
62f08283
TK
138static unsigned int sbus_cycles_offset(void)
139{
fcea8b27 140 u32 val, offset;
1da177e4 141
fcea8b27 142 val = sbus_readl(master_l10_counter);
62f08283 143 offset = (val >> TIMER_VALUE_SHIFT) & TIMER_VALUE_MASK;
1da177e4 144
62f08283
TK
145 /* Limit hit? */
146 if (val & TIMER_LIMIT_BIT)
147 offset += sparc_config.cs_period;
148
149 return offset;
1da177e4
LT
150}
151
62f08283
TK
152static cycle_t timer_cs_read(struct clocksource *cs)
153{
154 unsigned int seq, offset;
155 u64 cycles;
156
157 do {
158 seq = read_seqbegin(&timer_cs_lock);
159
160 cycles = timer_cs_internal_counter;
161 offset = sparc_config.get_cycles_offset();
162 } while (read_seqretry(&timer_cs_lock, seq));
163
164 /* Count absolute cycles */
165 cycles *= sparc_config.cs_period;
166 cycles += offset;
167
168 return cycles;
169}
170
171static struct clocksource timer_cs = {
172 .name = "timer_cs",
173 .rating = 100,
174 .read = timer_cs_read,
175 .mask = CLOCKSOURCE_MASK(64),
62f08283
TK
176 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
177};
178
179static __init int setup_timer_cs(void)
180{
181 timer_cs_enabled = 1;
3142f760 182 return clocksource_register_hz(&timer_cs, sparc_config.clock_rate);
62f08283
TK
183}
184
185#ifdef CONFIG_SMP
186static void percpu_ce_setup(enum clock_event_mode mode,
187 struct clock_event_device *evt)
188{
e4afa120 189 int cpu = cpumask_first(evt->cpumask);
62f08283
TK
190
191 switch (mode) {
192 case CLOCK_EVT_MODE_PERIODIC:
08c9388f
SR
193 sparc_config.load_profile_irq(cpu,
194 SBUS_CLOCK_RATE / HZ);
62f08283
TK
195 break;
196 case CLOCK_EVT_MODE_ONESHOT:
197 case CLOCK_EVT_MODE_SHUTDOWN:
198 case CLOCK_EVT_MODE_UNUSED:
08c9388f 199 sparc_config.load_profile_irq(cpu, 0);
62f08283
TK
200 break;
201 default:
202 break;
203 }
204}
205
206static int percpu_ce_set_next_event(unsigned long delta,
207 struct clock_event_device *evt)
208{
e4afa120 209 int cpu = cpumask_first(evt->cpumask);
62f08283
TK
210 unsigned int next = (unsigned int)delta;
211
08c9388f 212 sparc_config.load_profile_irq(cpu, next);
62f08283
TK
213 return 0;
214}
215
216void register_percpu_ce(int cpu)
217{
218 struct clock_event_device *ce = &per_cpu(sparc32_clockevent, cpu);
219 unsigned int features = CLOCK_EVT_FEAT_PERIODIC;
220
221 if (sparc_config.features & FEAT_L14_ONESHOT)
222 features |= CLOCK_EVT_FEAT_ONESHOT;
223
224 ce->name = "percpu_ce";
225 ce->rating = 200;
226 ce->features = features;
227 ce->set_mode = percpu_ce_setup;
228 ce->set_next_event = percpu_ce_set_next_event;
229 ce->cpumask = cpumask_of(cpu);
230 ce->shift = 32;
231 ce->mult = div_sc(sparc_config.clock_rate, NSEC_PER_SEC,
232 ce->shift);
233 ce->max_delta_ns = clockevent_delta2ns(sparc_config.clock_rate, ce);
234 ce->min_delta_ns = clockevent_delta2ns(100, ce);
235
236 clockevents_register_device(ce);
237}
238#endif
239
c4cbe6f9 240static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
1da177e4 241{
c4cbe6f9
DM
242 struct platform_device *pdev = to_platform_device(dev);
243 struct m48t59_plat_data *pdata = pdev->dev.platform_data;
12a9ee3c
KH
244
245 return readb(pdata->ioaddr + ofs);
1da177e4
LT
246}
247
c4cbe6f9 248static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
1da177e4 249{
c4cbe6f9
DM
250 struct platform_device *pdev = to_platform_device(dev);
251 struct m48t59_plat_data *pdata = pdev->dev.platform_data;
12a9ee3c
KH
252
253 writeb(val, pdata->ioaddr + ofs);
1da177e4
LT
254}
255
c4cbe6f9
DM
256static struct m48t59_plat_data m48t59_data = {
257 .read_byte = mostek_read_byte,
258 .write_byte = mostek_write_byte,
259};
260
261/* resource is set at runtime */
262static struct platform_device m48t59_rtc = {
263 .name = "rtc-m48t59",
264 .id = 0,
265 .num_resources = 1,
266 .dev = {
267 .platform_data = &m48t59_data,
268 },
269};
96ba989d 270
7c9503b8 271static int clock_probe(struct platform_device *op)
1da177e4 272{
61c7a080 273 struct device_node *dp = op->dev.of_node;
8271f042 274 const char *model = of_get_property(dp, "model", NULL);
1da177e4 275
ee5caf0e
DM
276 if (!model)
277 return -ENODEV;
1da177e4 278
1c833bc3
KO
279 /* Only the primary RTC has an address property */
280 if (!of_find_property(dp, "address", NULL))
281 return -ENODEV;
282
c4cbe6f9 283 m48t59_rtc.resource = &op->resource[0];
ee5caf0e 284 if (!strcmp(model, "mk48t02")) {
1da177e4 285 /* Map the clock register io area read-only */
c4cbe6f9
DM
286 m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
287 2048, "rtc-m48t59");
288 m48t59_data.type = M48T59RTC_TYPE_M48T02;
ee5caf0e 289 } else if (!strcmp(model, "mk48t08")) {
c4cbe6f9
DM
290 m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
291 8192, "rtc-m48t59");
292 m48t59_data.type = M48T59RTC_TYPE_M48T08;
ee5caf0e
DM
293 } else
294 return -ENODEV;
1da177e4 295
c4cbe6f9
DM
296 if (platform_device_register(&m48t59_rtc) < 0)
297 printk(KERN_ERR "Registering RTC device failed\n");
96ba989d 298
ee5caf0e
DM
299 return 0;
300}
301
505d9147 302static struct of_device_id clock_match[] = {
ee5caf0e
DM
303 {
304 .name = "eeprom",
305 },
306 {},
307};
308
4ebb24f7 309static struct platform_driver clock_driver = {
ee5caf0e 310 .probe = clock_probe,
4018294b
GL
311 .driver = {
312 .name = "rtc",
4018294b 313 .of_match_table = clock_match,
a2cd1558 314 },
ee5caf0e
DM
315};
316
317
318/* Probe for the mostek real time clock chip. */
96ba989d 319static int __init clock_init(void)
ee5caf0e 320{
4ebb24f7 321 return platform_driver_register(&clock_driver);
1da177e4 322}
96ba989d
BB
323/* Must be after subsys_initcall() so that busses are probed. Must
324 * be before device_initcall() because things like the RTC driver
325 * need to see the clock registers.
326 */
327fs_initcall(clock_init);
96ba989d 328
62f08283 329static void __init sparc32_late_time_init(void)
1da177e4 330{
62f08283
TK
331 if (sparc_config.features & FEAT_L10_CLOCKEVENT)
332 setup_timer_ce();
333 if (sparc_config.features & FEAT_L10_CLOCKSOURCE)
334 setup_timer_cs();
335#ifdef CONFIG_SMP
336 register_percpu_ce(smp_processor_id());
337#endif
1da177e4
LT
338}
339
62f08283 340static void __init sbus_time_init(void)
1da177e4 341{
62f08283
TK
342 sparc_config.get_cycles_offset = sbus_cycles_offset;
343 sparc_config.init_timers();
1da177e4
LT
344}
345
62f08283 346void __init time_init(void)
1da177e4 347{
62f08283
TK
348 sparc_config.features = 0;
349 late_time_init = sparc32_late_time_init;
1da177e4 350
06010fb5 351 if (pcic_present())
0299b137 352 pci_time_init();
06010fb5
SR
353 else
354 sbus_time_init();
1da177e4
LT
355}
356
This page took 0.686574 seconds and 5 git commands to generate.