time.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /* linux/arch/sparc/kernel/time.c
  2. *
  3. * Copyright (C) 1995 David S. Miller (davem@davemloft.net)
  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. */
  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>
  26. #include <linux/rtc.h>
  27. #include <linux/rtc/m48t59.h>
  28. #include <linux/timex.h>
  29. #include <linux/init.h>
  30. #include <linux/pci.h>
  31. #include <linux/ioport.h>
  32. #include <linux/profile.h>
  33. #include <linux/of.h>
  34. #include <linux/of_device.h>
  35. #include <linux/platform_device.h>
  36. #include <asm/oplib.h>
  37. #include <asm/timer.h>
  38. #include <asm/system.h>
  39. #include <asm/irq.h>
  40. #include <asm/io.h>
  41. #include <asm/idprom.h>
  42. #include <asm/machines.h>
  43. #include <asm/page.h>
  44. #include <asm/pcic.h>
  45. #include <asm/irq_regs.h>
  46. #include "irq.h"
  47. DEFINE_SPINLOCK(rtc_lock);
  48. static int set_rtc_mmss(unsigned long);
  49. static int sbus_do_settimeofday(struct timespec *tv);
  50. unsigned long profile_pc(struct pt_regs *regs)
  51. {
  52. extern char __copy_user_begin[], __copy_user_end[];
  53. extern char __atomic_begin[], __atomic_end[];
  54. extern char __bzero_begin[], __bzero_end[];
  55. unsigned long pc = regs->pc;
  56. if (in_lock_functions(pc) ||
  57. (pc >= (unsigned long) __copy_user_begin &&
  58. pc < (unsigned long) __copy_user_end) ||
  59. (pc >= (unsigned long) __atomic_begin &&
  60. pc < (unsigned long) __atomic_end) ||
  61. (pc >= (unsigned long) __bzero_begin &&
  62. pc < (unsigned long) __bzero_end))
  63. pc = regs->u_regs[UREG_RETPC];
  64. return pc;
  65. }
  66. EXPORT_SYMBOL(profile_pc);
  67. __volatile__ unsigned int *master_l10_counter;
  68. /*
  69. * timer_interrupt() needs to keep up the real-time clock,
  70. * as well as call the "do_timer()" routine every clocktick
  71. */
  72. #define TICK_SIZE (tick_nsec / 1000)
  73. static irqreturn_t timer_interrupt(int dummy, void *dev_id)
  74. {
  75. /* last time the cmos clock got updated */
  76. static long last_rtc_update;
  77. #ifndef CONFIG_SMP
  78. profile_tick(CPU_PROFILING);
  79. #endif
  80. /* Protect counter clear so that do_gettimeoffset works */
  81. write_seqlock(&xtime_lock);
  82. clear_clock_irq();
  83. do_timer(1);
  84. /* Determine when to update the Mostek clock. */
  85. if (ntp_synced() &&
  86. xtime.tv_sec > last_rtc_update + 660 &&
  87. (xtime.tv_nsec / 1000) >= 500000 - ((unsigned) TICK_SIZE) / 2 &&
  88. (xtime.tv_nsec / 1000) <= 500000 + ((unsigned) TICK_SIZE) / 2) {
  89. if (set_rtc_mmss(xtime.tv_sec) == 0)
  90. last_rtc_update = xtime.tv_sec;
  91. else
  92. last_rtc_update = xtime.tv_sec - 600; /* do it again in 60 s */
  93. }
  94. write_sequnlock(&xtime_lock);
  95. #ifndef CONFIG_SMP
  96. update_process_times(user_mode(get_irq_regs()));
  97. #endif
  98. return IRQ_HANDLED;
  99. }
  100. static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
  101. {
  102. struct platform_device *pdev = to_platform_device(dev);
  103. struct m48t59_plat_data *pdata = pdev->dev.platform_data;
  104. void __iomem *regs = pdata->ioaddr;
  105. unsigned char val = readb(regs + ofs);
  106. /* the year 0 is 1968 */
  107. if (ofs == pdata->offset + M48T59_YEAR) {
  108. val += 0x68;
  109. if ((val & 0xf) > 9)
  110. val += 6;
  111. }
  112. return val;
  113. }
  114. static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
  115. {
  116. struct platform_device *pdev = to_platform_device(dev);
  117. struct m48t59_plat_data *pdata = pdev->dev.platform_data;
  118. void __iomem *regs = pdata->ioaddr;
  119. if (ofs == pdata->offset + M48T59_YEAR) {
  120. if (val < 0x68)
  121. val += 0x32;
  122. else
  123. val -= 0x68;
  124. if ((val & 0xf) > 9)
  125. val += 6;
  126. if ((val & 0xf0) > 0x9A)
  127. val += 0x60;
  128. }
  129. writeb(val, regs + ofs);
  130. }
  131. static struct m48t59_plat_data m48t59_data = {
  132. .read_byte = mostek_read_byte,
  133. .write_byte = mostek_write_byte,
  134. };
  135. /* resource is set at runtime */
  136. static struct platform_device m48t59_rtc = {
  137. .name = "rtc-m48t59",
  138. .id = 0,
  139. .num_resources = 1,
  140. .dev = {
  141. .platform_data = &m48t59_data,
  142. },
  143. };
  144. static int __devinit clock_probe(struct of_device *op, const struct of_device_id *match)
  145. {
  146. struct device_node *dp = op->node;
  147. const char *model = of_get_property(dp, "model", NULL);
  148. if (!model)
  149. return -ENODEV;
  150. m48t59_rtc.resource = &op->resource[0];
  151. if (!strcmp(model, "mk48t02")) {
  152. /* Map the clock register io area read-only */
  153. m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
  154. 2048, "rtc-m48t59");
  155. m48t59_data.type = M48T59RTC_TYPE_M48T02;
  156. } else if (!strcmp(model, "mk48t08")) {
  157. m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
  158. 8192, "rtc-m48t59");
  159. m48t59_data.type = M48T59RTC_TYPE_M48T08;
  160. } else
  161. return -ENODEV;
  162. if (platform_device_register(&m48t59_rtc) < 0)
  163. printk(KERN_ERR "Registering RTC device failed\n");
  164. return 0;
  165. }
  166. static struct of_device_id __initdata clock_match[] = {
  167. {
  168. .name = "eeprom",
  169. },
  170. {},
  171. };
  172. static struct of_platform_driver clock_driver = {
  173. .match_table = clock_match,
  174. .probe = clock_probe,
  175. .driver = {
  176. .name = "rtc",
  177. },
  178. };
  179. /* Probe for the mostek real time clock chip. */
  180. static int __init clock_init(void)
  181. {
  182. return of_register_driver(&clock_driver, &of_platform_bus_type);
  183. }
  184. /* Must be after subsys_initcall() so that busses are probed. Must
  185. * be before device_initcall() because things like the RTC driver
  186. * need to see the clock registers.
  187. */
  188. fs_initcall(clock_init);
  189. static void __init sbus_time_init(void)
  190. {
  191. BTFIXUPSET_CALL(bus_do_settimeofday, sbus_do_settimeofday, BTFIXUPCALL_NORM);
  192. btfixup();
  193. sparc_init_timers(timer_interrupt);
  194. /* Now that OBP ticker has been silenced, it is safe to enable IRQ. */
  195. local_irq_enable();
  196. }
  197. void __init time_init(void)
  198. {
  199. #ifdef CONFIG_PCI
  200. extern void pci_time_init(void);
  201. if (pcic_present()) {
  202. pci_time_init();
  203. return;
  204. }
  205. #endif
  206. sbus_time_init();
  207. }
  208. static inline unsigned long do_gettimeoffset(void)
  209. {
  210. unsigned long val = *master_l10_counter;
  211. unsigned long usec = (val >> 10) & 0x1fffff;
  212. /* Limit hit? */
  213. if (val & 0x80000000)
  214. usec += 1000000 / HZ;
  215. return usec;
  216. }
  217. /* Ok, my cute asm atomicity trick doesn't work anymore.
  218. * There are just too many variables that need to be protected
  219. * now (both members of xtime, et al.)
  220. */
  221. void do_gettimeofday(struct timeval *tv)
  222. {
  223. unsigned long flags;
  224. unsigned long seq;
  225. unsigned long usec, sec;
  226. unsigned long max_ntp_tick = tick_usec - tickadj;
  227. do {
  228. seq = read_seqbegin_irqsave(&xtime_lock, flags);
  229. usec = do_gettimeoffset();
  230. /*
  231. * If time_adjust is negative then NTP is slowing the clock
  232. * so make sure not to go into next possible interval.
  233. * Better to lose some accuracy than have time go backwards..
  234. */
  235. if (unlikely(time_adjust < 0))
  236. usec = min(usec, max_ntp_tick);
  237. sec = xtime.tv_sec;
  238. usec += (xtime.tv_nsec / 1000);
  239. } while (read_seqretry_irqrestore(&xtime_lock, seq, flags));
  240. while (usec >= 1000000) {
  241. usec -= 1000000;
  242. sec++;
  243. }
  244. tv->tv_sec = sec;
  245. tv->tv_usec = usec;
  246. }
  247. EXPORT_SYMBOL(do_gettimeofday);
  248. int do_settimeofday(struct timespec *tv)
  249. {
  250. int ret;
  251. write_seqlock_irq(&xtime_lock);
  252. ret = bus_do_settimeofday(tv);
  253. write_sequnlock_irq(&xtime_lock);
  254. clock_was_set();
  255. return ret;
  256. }
  257. EXPORT_SYMBOL(do_settimeofday);
  258. static int sbus_do_settimeofday(struct timespec *tv)
  259. {
  260. time_t wtm_sec, sec = tv->tv_sec;
  261. long wtm_nsec, nsec = tv->tv_nsec;
  262. if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
  263. return -EINVAL;
  264. /*
  265. * This is revolting. We need to set "xtime" correctly. However, the
  266. * value in this location is the value at the most recent update of
  267. * wall time. Discover what correction gettimeofday() would have
  268. * made, and then undo it!
  269. */
  270. nsec -= 1000 * do_gettimeoffset();
  271. wtm_sec = wall_to_monotonic.tv_sec + (xtime.tv_sec - sec);
  272. wtm_nsec = wall_to_monotonic.tv_nsec + (xtime.tv_nsec - nsec);
  273. set_normalized_timespec(&xtime, sec, nsec);
  274. set_normalized_timespec(&wall_to_monotonic, wtm_sec, wtm_nsec);
  275. ntp_clear();
  276. return 0;
  277. }
  278. static int set_rtc_mmss(unsigned long secs)
  279. {
  280. struct rtc_device *rtc = rtc_class_open("rtc0");
  281. int err = -1;
  282. if (rtc) {
  283. err = rtc_set_mmss(rtc, secs);
  284. rtc_class_close(rtc);
  285. }
  286. return err;
  287. }