time_32.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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/timex.h>
  38. #include <asm/timer.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. EXPORT_SYMBOL(rtc_lock);
  49. static int set_rtc_mmss(unsigned long);
  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. u32 (*do_arch_gettimeoffset)(void);
  69. int update_persistent_clock(struct timespec now)
  70. {
  71. return set_rtc_mmss(now.tv_sec);
  72. }
  73. /*
  74. * timer_interrupt() needs to keep up the real-time clock,
  75. * as well as call the "xtime_update()" routine every clocktick
  76. */
  77. #define TICK_SIZE (tick_nsec / 1000)
  78. static irqreturn_t timer_interrupt(int dummy, void *dev_id)
  79. {
  80. #ifndef CONFIG_SMP
  81. profile_tick(CPU_PROFILING);
  82. #endif
  83. clear_clock_irq();
  84. xtime_update(1);
  85. #ifndef CONFIG_SMP
  86. update_process_times(user_mode(get_irq_regs()));
  87. #endif
  88. return IRQ_HANDLED;
  89. }
  90. static unsigned char mostek_read_byte(struct device *dev, u32 ofs)
  91. {
  92. struct platform_device *pdev = to_platform_device(dev);
  93. struct m48t59_plat_data *pdata = pdev->dev.platform_data;
  94. return readb(pdata->ioaddr + ofs);
  95. }
  96. static void mostek_write_byte(struct device *dev, u32 ofs, u8 val)
  97. {
  98. struct platform_device *pdev = to_platform_device(dev);
  99. struct m48t59_plat_data *pdata = pdev->dev.platform_data;
  100. writeb(val, pdata->ioaddr + ofs);
  101. }
  102. static struct m48t59_plat_data m48t59_data = {
  103. .read_byte = mostek_read_byte,
  104. .write_byte = mostek_write_byte,
  105. };
  106. /* resource is set at runtime */
  107. static struct platform_device m48t59_rtc = {
  108. .name = "rtc-m48t59",
  109. .id = 0,
  110. .num_resources = 1,
  111. .dev = {
  112. .platform_data = &m48t59_data,
  113. },
  114. };
  115. static int __devinit clock_probe(struct platform_device *op)
  116. {
  117. struct device_node *dp = op->dev.of_node;
  118. const char *model = of_get_property(dp, "model", NULL);
  119. if (!model)
  120. return -ENODEV;
  121. /* Only the primary RTC has an address property */
  122. if (!of_find_property(dp, "address", NULL))
  123. return -ENODEV;
  124. m48t59_rtc.resource = &op->resource[0];
  125. if (!strcmp(model, "mk48t02")) {
  126. /* Map the clock register io area read-only */
  127. m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
  128. 2048, "rtc-m48t59");
  129. m48t59_data.type = M48T59RTC_TYPE_M48T02;
  130. } else if (!strcmp(model, "mk48t08")) {
  131. m48t59_data.ioaddr = of_ioremap(&op->resource[0], 0,
  132. 8192, "rtc-m48t59");
  133. m48t59_data.type = M48T59RTC_TYPE_M48T08;
  134. } else
  135. return -ENODEV;
  136. if (platform_device_register(&m48t59_rtc) < 0)
  137. printk(KERN_ERR "Registering RTC device failed\n");
  138. return 0;
  139. }
  140. static struct of_device_id clock_match[] = {
  141. {
  142. .name = "eeprom",
  143. },
  144. {},
  145. };
  146. static struct platform_driver clock_driver = {
  147. .probe = clock_probe,
  148. .driver = {
  149. .name = "rtc",
  150. .owner = THIS_MODULE,
  151. .of_match_table = clock_match,
  152. },
  153. };
  154. /* Probe for the mostek real time clock chip. */
  155. static int __init clock_init(void)
  156. {
  157. return platform_driver_register(&clock_driver);
  158. }
  159. /* Must be after subsys_initcall() so that busses are probed. Must
  160. * be before device_initcall() because things like the RTC driver
  161. * need to see the clock registers.
  162. */
  163. fs_initcall(clock_init);
  164. u32 sbus_do_gettimeoffset(void)
  165. {
  166. unsigned long val = *master_l10_counter;
  167. unsigned long usec = (val >> 10) & 0x1fffff;
  168. /* Limit hit? */
  169. if (val & 0x80000000)
  170. usec += 1000000 / HZ;
  171. return usec * 1000;
  172. }
  173. u32 arch_gettimeoffset(void)
  174. {
  175. if (unlikely(!do_arch_gettimeoffset))
  176. return 0;
  177. return do_arch_gettimeoffset();
  178. }
  179. static void __init sbus_time_init(void)
  180. {
  181. do_arch_gettimeoffset = sbus_do_gettimeoffset;
  182. btfixup();
  183. sparc_irq_config.init_timers(timer_interrupt);
  184. }
  185. void __init time_init(void)
  186. {
  187. if (pcic_present())
  188. pci_time_init();
  189. else
  190. sbus_time_init();
  191. }
  192. static int set_rtc_mmss(unsigned long secs)
  193. {
  194. struct rtc_device *rtc = rtc_class_open("rtc0");
  195. int err = -1;
  196. if (rtc) {
  197. err = rtc_set_mmss(rtc, secs);
  198. rtc_class_close(rtc);
  199. }
  200. return err;
  201. }