rtc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: rtc.c,v 1.28 2001/10/08 22:19:51 davem Exp $
  2.  *
  3.  * Linux/SPARC Real Time Clock Driver
  4.  * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
  5.  *
  6.  * This is a little driver that lets a user-level program access
  7.  * the SPARC Mostek real time clock chip. It is no use unless you
  8.  * use the modified clock utility.
  9.  *
  10.  * Get the modified clock utility from:
  11.  *   ftp://vger.kernel.org/pub/linux/Sparc/userland/clock.c
  12.  */
  13. #include <linux/module.h>
  14. #include <linux/types.h>
  15. #include <linux/errno.h>
  16. #include <linux/miscdevice.h>
  17. #include <linux/slab.h>
  18. #include <linux/fcntl.h>
  19. #include <linux/poll.h>
  20. #include <linux/init.h>
  21. #include <linux/smp_lock.h>
  22. #include <asm/mostek.h>
  23. #include <asm/system.h>
  24. #include <asm/uaccess.h>
  25. #include <asm/rtc.h>
  26. static int rtc_busy = 0;
  27. /* Retrieve the current date and time from the real time clock. */
  28. void get_rtc_time(struct rtc_time *t)
  29. {
  30. unsigned long regs = mstk48t02_regs;
  31. u8 tmp;
  32. spin_lock_irq(&mostek_lock);
  33. tmp = mostek_read(regs + MOSTEK_CREG);
  34. tmp |= MSTK_CREG_READ;
  35. mostek_write(regs + MOSTEK_CREG, tmp);
  36. t->sec = MSTK_REG_SEC(regs);
  37. t->min = MSTK_REG_MIN(regs);
  38. t->hour = MSTK_REG_HOUR(regs);
  39. t->dow = MSTK_REG_DOW(regs);
  40. t->dom = MSTK_REG_DOM(regs);
  41. t->month = MSTK_REG_MONTH(regs);
  42. t->year = MSTK_CVT_YEAR( MSTK_REG_YEAR(regs) );
  43. tmp = mostek_read(regs + MOSTEK_CREG);
  44. tmp &= ~MSTK_CREG_READ;
  45. mostek_write(regs + MOSTEK_CREG, tmp);
  46. spin_unlock_irq(&mostek_lock);
  47. }
  48. /* Set the current date and time inthe real time clock. */
  49. void set_rtc_time(struct rtc_time *t)
  50. {
  51. unsigned long regs = mstk48t02_regs;
  52. u8 tmp;
  53. spin_lock_irq(&mostek_lock);
  54. tmp = mostek_read(regs + MOSTEK_CREG);
  55. tmp |= MSTK_CREG_WRITE;
  56. mostek_write(regs + MOSTEK_CREG, tmp);
  57. MSTK_SET_REG_SEC(regs,t->sec);
  58. MSTK_SET_REG_MIN(regs,t->min);
  59. MSTK_SET_REG_HOUR(regs,t->hour);
  60. MSTK_SET_REG_DOW(regs,t->dow);
  61. MSTK_SET_REG_DOM(regs,t->dom);
  62. MSTK_SET_REG_MONTH(regs,t->month);
  63. MSTK_SET_REG_YEAR(regs,t->year - MSTK_YEAR_ZERO);
  64. tmp = mostek_read(regs + MOSTEK_CREG);
  65. tmp &= ~MSTK_CREG_WRITE;
  66. mostek_write(regs + MOSTEK_CREG, tmp);
  67. spin_unlock_irq(&mostek_lock);
  68. }
  69. static int rtc_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  70. unsigned long arg)
  71. {
  72. struct rtc_time rtc_tm;
  73. switch (cmd)
  74. {
  75. case RTCGET:
  76. get_rtc_time(&rtc_tm);
  77. if (copy_to_user((struct rtc_time*)arg, &rtc_tm, sizeof(struct rtc_time)))
  78. return -EFAULT;
  79. return 0;
  80. case RTCSET:
  81. if (!capable(CAP_SYS_TIME))
  82. return -EPERM;
  83. if (copy_from_user(&rtc_tm, (struct rtc_time*)arg, sizeof(struct rtc_time)))
  84. return -EFAULT;
  85. set_rtc_time(&rtc_tm);
  86. return 0;
  87. default:
  88. return -EINVAL;
  89. }
  90. }
  91. static int rtc_open(struct inode *inode, struct file *file)
  92. {
  93. int ret;
  94. spin_lock_irq(&mostek_lock);
  95. if (rtc_busy) {
  96. ret = -EBUSY;
  97. } else {
  98. rtc_busy = 1;
  99. ret = 0;
  100. }
  101. spin_unlock_irq(&mostek_lock);
  102. return ret;
  103. }
  104. static int rtc_release(struct inode *inode, struct file *file)
  105. {
  106. rtc_busy = 0;
  107. return 0;
  108. }
  109. static struct file_operations rtc_fops = {
  110. owner: THIS_MODULE,
  111. llseek: no_llseek,
  112. ioctl: rtc_ioctl,
  113. open: rtc_open,
  114. release: rtc_release,
  115. };
  116. static struct miscdevice rtc_dev = { RTC_MINOR, "rtc", &rtc_fops };
  117. EXPORT_NO_SYMBOLS;
  118. static int __init rtc_sun_init(void)
  119. {
  120. int error;
  121. /* It is possible we are being driven by some other RTC chip
  122.  * and thus another RTC driver is handling things.
  123.  */
  124. if (mstk48t02_regs == 0)
  125. return -ENODEV;
  126. error = misc_register(&rtc_dev);
  127. if (error) {
  128. printk(KERN_ERR "rtc: unable to get misc minor for Mostekn");
  129. return error;
  130. }
  131. return 0;
  132. }
  133. static void __exit rtc_sun_cleanup(void)
  134. {
  135. misc_deregister(&rtc_dev);
  136. }
  137. module_init(rtc_sun_init);
  138. module_exit(rtc_sun_cleanup);
  139. MODULE_LICENSE("GPL");