blob: 217ba275cabf7b8cde532c7fa2c82ce36d0393d0 [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>
John Stultz0299b132010-01-15 01:34:28 -080038#include <asm/timex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/system.h>
41#include <asm/irq.h>
42#include <asm/io.h>
43#include <asm/idprom.h>
44#include <asm/machines.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/page.h>
46#include <asm/pcic.h>
Al Viro0d844382006-10-08 14:30:44 +010047#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Al Viro32231a62007-07-21 19:18:57 -070049#include "irq.h"
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051DEFINE_SPINLOCK(rtc_lock);
Sam Ravnborg6943f3d2009-01-08 16:58:05 -080052EXPORT_SYMBOL(rtc_lock);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static int set_rtc_mmss(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056unsigned long profile_pc(struct pt_regs *regs)
57{
58 extern char __copy_user_begin[], __copy_user_end[];
59 extern char __atomic_begin[], __atomic_end[];
60 extern char __bzero_begin[], __bzero_end[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 unsigned long pc = regs->pc;
63
64 if (in_lock_functions(pc) ||
65 (pc >= (unsigned long) __copy_user_begin &&
66 pc < (unsigned long) __copy_user_end) ||
67 (pc >= (unsigned long) __atomic_begin &&
68 pc < (unsigned long) __atomic_end) ||
69 (pc >= (unsigned long) __bzero_begin &&
David S. Miller8a8b8362006-12-17 16:18:47 -080070 pc < (unsigned long) __bzero_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 pc = regs->u_regs[UREG_RETPC];
72 return pc;
73}
74
Martin Habets9550e592006-10-17 19:21:48 -070075EXPORT_SYMBOL(profile_pc);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077__volatile__ unsigned int *master_l10_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
John Stultz0299b132010-01-15 01:34:28 -080079u32 (*do_arch_gettimeoffset)(void);
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
82 * timer_interrupt() needs to keep up the real-time clock,
83 * as well as call the "do_timer()" routine every clocktick
84 */
85
86#define TICK_SIZE (tick_nsec / 1000)
87
Jeff Garzik5dc07422007-10-31 05:08:48 -040088static irqreturn_t timer_interrupt(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 /* last time the cmos clock got updated */
91 static long last_rtc_update;
92
93#ifndef CONFIG_SMP
Al Viro0d844382006-10-08 14:30:44 +010094 profile_tick(CPU_PROFILING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#endif
96
97 /* Protect counter clear so that do_gettimeoffset works */
98 write_seqlock(&xtime_lock);
Adrian Bunk5110bd22008-08-31 20:59:37 -070099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 clear_clock_irq();
101
Atsushi Nemoto3171a032006-09-29 02:00:32 -0700102 do_timer(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /* Determine when to update the Mostek clock. */
john stultzb149ee22005-09-06 15:17:46 -0700105 if (ntp_synced() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 xtime.tv_sec > last_rtc_update + 660 &&
107 (xtime.tv_nsec / 1000) >= 500000 - ((unsigned) TICK_SIZE) / 2 &&
108 (xtime.tv_nsec / 1000) <= 500000 + ((unsigned) TICK_SIZE) / 2) {
109 if (set_rtc_mmss(xtime.tv_sec) == 0)
110 last_rtc_update = xtime.tv_sec;
111 else
112 last_rtc_update = xtime.tv_sec - 600; /* do it again in 60 s */
113 }
114 write_sequnlock(&xtime_lock);
115
Peter Zijlstraaa02cd22008-02-13 21:33:16 +0100116#ifndef CONFIG_SMP
117 update_process_times(user_mode(get_irq_regs()));
118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return IRQ_HANDLED;
120}
121
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700122static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700124 struct platform_device *pdev = to_platform_device(dev);
125 struct m48t59_plat_data *pdata = pdev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700127 return readb(pdata->ioaddr + ofs);
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700128}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700130static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
131{
132 struct platform_device *pdev = to_platform_device(dev);
133 struct m48t59_plat_data *pdata = pdev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700135 writeb(val, pdata->ioaddr + ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700138static struct m48t59_plat_data m48t59_data = {
139 .read_byte = mostek_read_byte,
140 .write_byte = mostek_write_byte,
141};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700143/* resource is set at runtime */
144static struct platform_device m48t59_rtc = {
145 .name = "rtc-m48t59",
146 .id = 0,
147 .num_resources = 1,
148 .dev = {
149 .platform_data = &m48t59_data,
150 },
151};
Bob Breuer96ba9892006-07-27 22:08:01 -0700152
David S. Milleree5caf02006-06-29 14:36:52 -0700153static int __devinit clock_probe(struct of_device *op, const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Grant Likely61c7a082010-04-13 16:12:29 -0700155 struct device_node *dp = op->dev.of_node;
Stephen Rothwell8271f042007-03-29 00:47:23 -0700156 const char *model = of_get_property(dp, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
David S. Milleree5caf02006-06-29 14:36:52 -0700158 if (!model)
159 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700161 m48t59_rtc.resource = &op->resource[0];
David S. Milleree5caf02006-06-29 14:36:52 -0700162 if (!strcmp(model, "mk48t02")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 /* Map the clock register io area read-only */
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700164 m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
165 2048, "rtc-m48t59");
166 m48t59_data.type = M48T59RTC_TYPE_M48T02;
David S. Milleree5caf02006-06-29 14:36:52 -0700167 } else if (!strcmp(model, "mk48t08")) {
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700168 m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
169 8192, "rtc-m48t59");
170 m48t59_data.type = M48T59RTC_TYPE_M48T08;
David S. Milleree5caf02006-06-29 14:36:52 -0700171 } else
172 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700174 if (platform_device_register(&m48t59_rtc) < 0)
175 printk(KERN_ERR "Registering RTC device failed\n");
Bob Breuer96ba9892006-07-27 22:08:01 -0700176
David S. Milleree5caf02006-06-29 14:36:52 -0700177 return 0;
178}
179
David S. Millerfd098312008-08-31 01:23:17 -0700180static struct of_device_id __initdata clock_match[] = {
David S. Milleree5caf02006-06-29 14:36:52 -0700181 {
182 .name = "eeprom",
183 },
184 {},
185};
186
187static struct of_platform_driver clock_driver = {
David S. Milleree5caf02006-06-29 14:36:52 -0700188 .probe = clock_probe,
Grant Likely40182942010-04-13 16:13:02 -0700189 .driver = {
190 .name = "rtc",
191 .owner = THIS_MODULE,
192 .of_match_table = clock_match,
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700193 },
David S. Milleree5caf02006-06-29 14:36:52 -0700194};
195
196
197/* Probe for the mostek real time clock chip. */
Bob Breuer96ba9892006-07-27 22:08:01 -0700198static int __init clock_init(void)
David S. Milleree5caf02006-06-29 14:36:52 -0700199{
Stephen Rothwell37b77542007-04-30 17:43:56 +1000200 return of_register_driver(&clock_driver, &of_platform_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
Bob Breuer96ba9892006-07-27 22:08:01 -0700202/* Must be after subsys_initcall() so that busses are probed. Must
203 * be before device_initcall() because things like the RTC driver
204 * need to see the clock registers.
205 */
206fs_initcall(clock_init);
Bob Breuer96ba9892006-07-27 22:08:01 -0700207
John Stultz0299b132010-01-15 01:34:28 -0800208
209u32 sbus_do_gettimeoffset(void)
210{
211 unsigned long val = *master_l10_counter;
212 unsigned long usec = (val >> 10) & 0x1fffff;
213
214 /* Limit hit? */
215 if (val & 0x80000000)
216 usec += 1000000 / HZ;
217
218 return usec * 1000;
219}
220
221
222u32 arch_gettimeoffset(void)
223{
224 if (unlikely(!do_arch_gettimeoffset))
225 return 0;
226 return do_arch_gettimeoffset();
227}
228
Adrian Bunkc61c65c2008-06-05 11:40:58 -0700229static void __init sbus_time_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
John Stultz0299b132010-01-15 01:34:28 -0800231 do_arch_gettimeoffset = sbus_do_gettimeoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 btfixup();
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 sparc_init_timers(timer_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238void __init time_init(void)
239{
240#ifdef CONFIG_PCI
241 extern void pci_time_init(void);
242 if (pcic_present()) {
243 pci_time_init();
244 return;
245 }
246#endif
247 sbus_time_init();
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700251static int set_rtc_mmss(unsigned long secs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700253 struct rtc_device *rtc = rtc_class_open("rtc0");
David S. Millerab138c02008-09-10 13:36:13 -0700254 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
David S. Millerab138c02008-09-10 13:36:13 -0700256 if (rtc) {
257 err = rtc_set_mmss(rtc, secs);
258 rtc_class_close(rtc);
259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
David S. Millerab138c02008-09-10 13:36:13 -0700261 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}