blob: 7d0c088e8abaa782bc34f1f03c3f6b4377d98544 [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/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);
Sam Ravnborg6943f3d2009-01-08 16:58:05 -080051EXPORT_SYMBOL(rtc_lock);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static int set_rtc_mmss(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055unsigned long profile_pc(struct pt_regs *regs)
56{
57 extern char __copy_user_begin[], __copy_user_end[];
58 extern char __atomic_begin[], __atomic_end[];
59 extern char __bzero_begin[], __bzero_end[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 unsigned long pc = regs->pc;
62
63 if (in_lock_functions(pc) ||
64 (pc >= (unsigned long) __copy_user_begin &&
65 pc < (unsigned long) __copy_user_end) ||
66 (pc >= (unsigned long) __atomic_begin &&
67 pc < (unsigned long) __atomic_end) ||
68 (pc >= (unsigned long) __bzero_begin &&
David S. Miller8a8b8362006-12-17 16:18:47 -080069 pc < (unsigned long) __bzero_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 pc = regs->u_regs[UREG_RETPC];
71 return pc;
72}
73
Martin Habets9550e592006-10-17 19:21:48 -070074EXPORT_SYMBOL(profile_pc);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076__volatile__ unsigned int *master_l10_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
John Stultz0299b132010-01-15 01:34:28 -080078u32 (*do_arch_gettimeoffset)(void);
79
John Stultzf5c9c9b2010-03-03 19:57:27 -080080int update_persistent_clock(struct timespec now)
81{
82 return set_rtc_mmss(now.tv_sec);
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * timer_interrupt() needs to keep up the real-time clock,
Torben Hohn4ea1b722011-01-27 16:00:22 +010087 * as well as call the "xtime_update()" routine every clocktick
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
89
90#define TICK_SIZE (tick_nsec / 1000)
91
Jeff Garzik5dc07422007-10-31 05:08:48 -040092static irqreturn_t timer_interrupt(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#ifndef CONFIG_SMP
Al Viro0d844382006-10-08 14:30:44 +010095 profile_tick(CPU_PROFILING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#endif
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 clear_clock_irq();
99
Torben Hohn4ea1b722011-01-27 16:00:22 +0100100 xtime_update(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Peter Zijlstraaa02cd22008-02-13 21:33:16 +0100102#ifndef CONFIG_SMP
103 update_process_times(user_mode(get_irq_regs()));
104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return IRQ_HANDLED;
106}
107
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700108static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700110 struct platform_device *pdev = to_platform_device(dev);
111 struct m48t59_plat_data *pdata = pdev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700113 return readb(pdata->ioaddr + ofs);
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700114}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700116static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
117{
118 struct platform_device *pdev = to_platform_device(dev);
119 struct m48t59_plat_data *pdata = pdev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Krzysztof Helt12a9ee32008-10-29 15:35:24 -0700121 writeb(val, pdata->ioaddr + ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700124static struct m48t59_plat_data m48t59_data = {
125 .read_byte = mostek_read_byte,
126 .write_byte = mostek_write_byte,
127};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700129/* resource is set at runtime */
130static struct platform_device m48t59_rtc = {
131 .name = "rtc-m48t59",
132 .id = 0,
133 .num_resources = 1,
134 .dev = {
135 .platform_data = &m48t59_data,
136 },
137};
Bob Breuer96ba9892006-07-27 22:08:01 -0700138
Grant Likely4ebb24f2011-02-22 20:01:33 -0700139static int __devinit clock_probe(struct platform_device *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Grant Likely61c7a082010-04-13 16:12:29 -0700141 struct device_node *dp = op->dev.of_node;
Stephen Rothwell8271f042007-03-29 00:47:23 -0700142 const char *model = of_get_property(dp, "model", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
David S. Milleree5caf02006-06-29 14:36:52 -0700144 if (!model)
145 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Kjetil Oftedal1c833bc2011-03-24 16:34:52 -0700147 /* Only the primary RTC has an address property */
148 if (!of_find_property(dp, "address", NULL))
149 return -ENODEV;
150
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700151 m48t59_rtc.resource = &op->resource[0];
David S. Milleree5caf02006-06-29 14:36:52 -0700152 if (!strcmp(model, "mk48t02")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* Map the clock register io area read-only */
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700154 m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
155 2048, "rtc-m48t59");
156 m48t59_data.type = M48T59RTC_TYPE_M48T02;
David S. Milleree5caf02006-06-29 14:36:52 -0700157 } else if (!strcmp(model, "mk48t08")) {
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700158 m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
159 8192, "rtc-m48t59");
160 m48t59_data.type = M48T59RTC_TYPE_M48T08;
David S. Milleree5caf02006-06-29 14:36:52 -0700161 } else
162 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700164 if (platform_device_register(&m48t59_rtc) < 0)
165 printk(KERN_ERR "Registering RTC device failed\n");
Bob Breuer96ba9892006-07-27 22:08:01 -0700166
David S. Milleree5caf02006-06-29 14:36:52 -0700167 return 0;
168}
169
Sam Ravnborg505d9142011-04-21 15:37:20 -0700170static struct of_device_id clock_match[] = {
David S. Milleree5caf02006-06-29 14:36:52 -0700171 {
172 .name = "eeprom",
173 },
174 {},
175};
176
Grant Likely4ebb24f2011-02-22 20:01:33 -0700177static struct platform_driver clock_driver = {
David S. Milleree5caf02006-06-29 14:36:52 -0700178 .probe = clock_probe,
Grant Likely40182942010-04-13 16:13:02 -0700179 .driver = {
180 .name = "rtc",
181 .owner = THIS_MODULE,
182 .of_match_table = clock_match,
Stephen Rothwella2cd1552007-10-10 23:27:34 -0700183 },
David S. Milleree5caf02006-06-29 14:36:52 -0700184};
185
186
187/* Probe for the mostek real time clock chip. */
Bob Breuer96ba9892006-07-27 22:08:01 -0700188static int __init clock_init(void)
David S. Milleree5caf02006-06-29 14:36:52 -0700189{
Grant Likely4ebb24f2011-02-22 20:01:33 -0700190 return platform_driver_register(&clock_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
Bob Breuer96ba9892006-07-27 22:08:01 -0700192/* Must be after subsys_initcall() so that busses are probed. Must
193 * be before device_initcall() because things like the RTC driver
194 * need to see the clock registers.
195 */
196fs_initcall(clock_init);
Bob Breuer96ba9892006-07-27 22:08:01 -0700197
John Stultz0299b132010-01-15 01:34:28 -0800198
199u32 sbus_do_gettimeoffset(void)
200{
201 unsigned long val = *master_l10_counter;
202 unsigned long usec = (val >> 10) & 0x1fffff;
203
204 /* Limit hit? */
205 if (val & 0x80000000)
206 usec += 1000000 / HZ;
207
208 return usec * 1000;
209}
210
211
212u32 arch_gettimeoffset(void)
213{
214 if (unlikely(!do_arch_gettimeoffset))
215 return 0;
216 return do_arch_gettimeoffset();
217}
218
Adrian Bunkc61c65c2008-06-05 11:40:58 -0700219static void __init sbus_time_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
John Stultz0299b132010-01-15 01:34:28 -0800221 do_arch_gettimeoffset = sbus_do_gettimeoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 btfixup();
224
Sam Ravnborgbbdc2662011-02-25 23:00:19 -0800225 sparc_irq_config.init_timers(timer_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228void __init time_init(void)
229{
Sam Ravnborg06010fb2011-04-17 13:49:55 +0200230 if (pcic_present())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 pci_time_init();
Sam Ravnborg06010fb2011-04-17 13:49:55 +0200232 else
233 sbus_time_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700237static int set_rtc_mmss(unsigned long secs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
David S. Millerc4cbe6f2008-09-03 15:52:38 -0700239 struct rtc_device *rtc = rtc_class_open("rtc0");
David S. Millerab138c02008-09-10 13:36:13 -0700240 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
David S. Millerab138c02008-09-10 13:36:13 -0700242 if (rtc) {
243 err = rtc_set_mmss(rtc, secs);
244 rtc_class_close(rtc);
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
David S. Millerab138c02008-09-10 13:36:13 -0700247 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}