blob: 00f7383c765762f87292c52c3ef29d2e028d080b [file] [log] [blame]
David S. Miller64d329e2007-10-27 00:17:01 -07001/* linux/arch/sparc/kernel/time.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Miller64d329e2007-10-27 00:17:01 -07003 * Copyright (C) 1995 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017#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. Millerc4cbe6f2008-09-03 15:52:38 -070026#include <linux/rtc.h>
27#include <linux/rtc/m48t59.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/timex.h>
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/ioport.h>
32#include <linux/profile.h>
David S. Miller454eeb22008-08-27 04:05:35 -070033#include <linux/of.h>
Stephen Rothwell764f2572008-08-07 15:33:36 -070034#include <linux/of_device.h>
David S. Millerc4cbe6f2008-09-03 15:52:38 -070035#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/oplib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/system.h>
40#include <asm/irq.h>
41#include <asm/io.h>
42#include <asm/idprom.h>
43#include <asm/machines.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/page.h>
45#include <asm/pcic.h>
Al Viro0d844382006-10-08 14:30:44 +010046#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Al Viro32231a62007-07-21 19:18:57 -070048#include "irq.h"
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050DEFINE_SPINLOCK(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static int set_rtc_mmss(unsigned long);
52static int sbus_do_settimeofday(struct timespec *tv);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054unsigned long profile_pc(struct pt_regs *regs)
55{
56 extern char __copy_user_begin[], __copy_user_end[];
57 extern char __atomic_begin[], __atomic_end[];
58 extern char __bzero_begin[], __bzero_end[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 unsigned long pc = regs->pc;
61
62 if (in_lock_functions(pc) ||
63 (pc >= (unsigned long) __copy_user_begin &&
64 pc < (unsigned long) __copy_user_end) ||
65 (pc >= (unsigned long) __atomic_begin &&
66 pc < (unsigned long) __atomic_end) ||
67 (pc >= (unsigned long) __bzero_begin &&
David S. Miller8a8b8362006-12-17 16:18:47 -080068 pc < (unsigned long) __bzero_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 pc = regs->u_regs[UREG_RETPC];
70 return pc;
71}
72
Martin Habets9550e592006-10-17 19:21:48 -070073EXPORT_SYMBOL(profile_pc);
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075__volatile__ unsigned int *master_l10_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 * timer_interrupt() needs to keep up the real-time clock,
79 * as well as call the "do_timer()" routine every clocktick
80 */
81
82#define TICK_SIZE (tick_nsec / 1000)
83
Jeff Garzik5dc07422007-10-31 05:08:48 -040084static irqreturn_t timer_interrupt(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 /* last time the cmos clock got updated */
87 static long last_rtc_update;
88
89#ifndef CONFIG_SMP
Al Viro0d844382006-10-08 14:30:44 +010090 profile_tick(CPU_PROFILING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#endif
92
93 /* Protect counter clear so that do_gettimeoffset works */
94 write_seqlock(&xtime_lock);
Adrian Bunk5110bd22008-08-31 20:59:37 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 clear_clock_irq();
97
Atsushi Nemoto3171a032006-09-29 02:00:32 -070098 do_timer(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* Determine when to update the Mostek clock. */
john stultzb149ee22005-09-06 15:17:46 -0700101 if (ntp_synced() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 xtime.tv_sec > last_rtc_update + 660 &&
103 (xtime.tv_nsec / 1000) >= 500000 - ((unsigned) TICK_SIZE) / 2 &&
104 (xtime.tv_nsec / 1000) <= 500000 + ((unsigned) TICK_SIZE) / 2) {
105 if (set_rtc_mmss(xtime.tv_sec) == 0)
106 last_rtc_update = xtime.tv_sec;
107 else
108 last_rtc_update = xtime.tv_sec - 600; /* do it again in 60 s */
109 }
110 write_sequnlock(&xtime_lock);
111
Peter Zijlstraaa02cd22008-02-13 21:33:16 +0100112#ifndef CONFIG_SMP
113 update_process_times(user_mode(get_irq_regs()));
114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return IRQ_HANDLED;
116}
117
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700118static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700120 struct platform_device *pdev = to_platform_device(dev);
121 struct m48t59_plat_data *pdata = pdev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700123 return readb(pdata->ioaddr + ofs);
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700126static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
127{
128 struct platform_device *pdev = to_platform_device(dev);
129 struct m48t59_plat_data *pdata = pdev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700131 writeb(val, pdata->ioaddr + ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700134static struct m48t59_plat_data m48t59_data = {
135 .read_byte = mostek_read_byte,
136 .write_byte = mostek_write_byte,
137};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700139/* resource is set at runtime */
140static struct platform_device m48t59_rtc = {
141 .name = "rtc-m48t59",
142 .id = 0,
143 .num_resources = 1,
144 .dev = {
145 .platform_data = &m48t59_data,
146 },
147};
Bob Breuer96ba9892006-07-27 22:08:01 -0700148
David S. Milleree5caf02006-06-29 14:36:52 -0700149static int __devinit clock_probe(struct of_device *op, const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
David S. Milleree5caf02006-06-29 14:36:52 -0700151 struct device_node *dp = op->node;
Stephen Rothwell8271f042007-03-29 00:47:23 -0700152 const char *model = of_get_property(dp, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
David S. Milleree5caf02006-06-29 14:36:52 -0700154 if (!model)
155 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700157 m48t59_rtc.resource = &op->resource[0];
David S. Milleree5caf02006-06-29 14:36:52 -0700158 if (!strcmp(model, "mk48t02")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /* Map the clock register io area read-only */
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700160 m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
161 2048, "rtc-m48t59");
162 m48t59_data.type = M48T59RTC_TYPE_M48T02;
David S. Milleree5caf02006-06-29 14:36:52 -0700163 } else if (!strcmp(model, "mk48t08")) {
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700164 m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
165 8192, "rtc-m48t59");
166 m48t59_data.type = M48T59RTC_TYPE_M48T08;
David S. Milleree5caf02006-06-29 14:36:52 -0700167 } else
168 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700170 if (platform_device_register(&m48t59_rtc) < 0)
171 printk(KERN_ERR "Registering RTC device failed\n");
Bob Breuer96ba9892006-07-27 22:08:01 -0700172
David S. Milleree5caf02006-06-29 14:36:52 -0700173 return 0;
174}
175
David S. Millerfd098312008-08-31 01:23:17 -0700176static struct of_device_id __initdata clock_match[] = {
David S. Milleree5caf02006-06-29 14:36:52 -0700177 {
178 .name = "eeprom",
179 },
180 {},
181};
182
183static struct of_platform_driver clock_driver = {
David S. Milleree5caf02006-06-29 14:36:52 -0700184 .match_table = clock_match,
185 .probe = clock_probe,
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700186 .driver = {
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700187 .name = "rtc",
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700188 },
David S. Milleree5caf02006-06-29 14:36:52 -0700189};
190
191
192/* Probe for the mostek real time clock chip. */
Bob Breuer96ba9892006-07-27 22:08:01 -0700193static int __init clock_init(void)
David S. Milleree5caf02006-06-29 14:36:52 -0700194{
Stephen Rothwell37b77542007-04-30 17:43:56 +1000195 return of_register_driver(&clock_driver, &of_platform_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Bob Breuer96ba9892006-07-27 22:08:01 -0700198/* Must be after subsys_initcall() so that busses are probed. Must
199 * be before device_initcall() because things like the RTC driver
200 * need to see the clock registers.
201 */
202fs_initcall(clock_init);
Bob Breuer96ba9892006-07-27 22:08:01 -0700203
Adrian Bunkc61c65c2008-06-05 11:40:58 -0700204static void __init sbus_time_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 BTFIXUPSET_CALL(bus_do_settimeofday, sbus_do_settimeofday, BTFIXUPCALL_NORM);
208 btfixup();
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 sparc_init_timers(timer_interrupt);
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* Now that OBP ticker has been silenced, it is safe to enable IRQ. */
213 local_irq_enable();
214}
215
216void __init time_init(void)
217{
218#ifdef CONFIG_PCI
219 extern void pci_time_init(void);
220 if (pcic_present()) {
221 pci_time_init();
222 return;
223 }
224#endif
225 sbus_time_init();
226}
227
Adrian Bunk31156242005-10-03 17:37:02 -0700228static inline unsigned long do_gettimeoffset(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
David S. Miller000775c2008-01-09 05:09:06 -0800230 unsigned long val = *master_l10_counter;
231 unsigned long usec = (val >> 10) & 0x1fffff;
232
233 /* Limit hit? */
234 if (val & 0x80000000)
235 usec += 1000000 / HZ;
236
237 return usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/* Ok, my cute asm atomicity trick doesn't work anymore.
241 * There are just too many variables that need to be protected
Atsushi Nemoto8ef38602006-09-30 23:28:31 -0700242 * now (both members of xtime, et al.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
244void do_gettimeofday(struct timeval *tv)
245{
246 unsigned long flags;
247 unsigned long seq;
248 unsigned long usec, sec;
249 unsigned long max_ntp_tick = tick_usec - tickadj;
250
251 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 seq = read_seqbegin_irqsave(&xtime_lock, flags);
253 usec = do_gettimeoffset();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 /*
256 * If time_adjust is negative then NTP is slowing the clock
257 * so make sure not to go into next possible interval.
258 * Better to lose some accuracy than have time go backwards..
259 */
Atsushi Nemoto8ef38602006-09-30 23:28:31 -0700260 if (unlikely(time_adjust < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 usec = min(usec, max_ntp_tick);
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 sec = xtime.tv_sec;
264 usec += (xtime.tv_nsec / 1000);
265 } while (read_seqretry_irqrestore(&xtime_lock, seq, flags));
266
267 while (usec >= 1000000) {
268 usec -= 1000000;
269 sec++;
270 }
271
272 tv->tv_sec = sec;
273 tv->tv_usec = usec;
274}
275
276EXPORT_SYMBOL(do_gettimeofday);
277
278int do_settimeofday(struct timespec *tv)
279{
280 int ret;
281
282 write_seqlock_irq(&xtime_lock);
283 ret = bus_do_settimeofday(tv);
284 write_sequnlock_irq(&xtime_lock);
285 clock_was_set();
286 return ret;
287}
288
289EXPORT_SYMBOL(do_settimeofday);
290
291static int sbus_do_settimeofday(struct timespec *tv)
292{
293 time_t wtm_sec, sec = tv->tv_sec;
294 long wtm_nsec, nsec = tv->tv_nsec;
295
296 if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
297 return -EINVAL;
298
299 /*
300 * This is revolting. We need to set "xtime" correctly. However, the
301 * value in this location is the value at the most recent update of
302 * wall time. Discover what correction gettimeofday() would have
303 * made, and then undo it!
304 */
Atsushi Nemoto8ef38602006-09-30 23:28:31 -0700305 nsec -= 1000 * do_gettimeoffset();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 wtm_sec = wall_to_monotonic.tv_sec + (xtime.tv_sec - sec);
308 wtm_nsec = wall_to_monotonic.tv_nsec + (xtime.tv_nsec - nsec);
309
310 set_normalized_timespec(&xtime, sec, nsec);
311 set_normalized_timespec(&wall_to_monotonic, wtm_sec, wtm_nsec);
312
john stultzb149ee22005-09-06 15:17:46 -0700313 ntp_clear();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return 0;
315}
316
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700317static int set_rtc_mmss(unsigned long secs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700319 struct rtc_device *rtc = rtc_class_open("rtc0");
David S. Millerab138c02008-09-10 13:36:13 -0700320 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
David S. Millerab138c02008-09-10 13:36:13 -0700322 if (rtc) {
323 err = rtc_set_mmss(rtc, secs);
324 rtc_class_close(rtc);
325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
David S. Millerab138c02008-09-10 13:36:13 -0700327 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}