ip27-rtc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Driver for the SGS-Thomson M48T35 Timekeeper RAM chip
  3.  *
  4.  * Real Time Clock interface for Linux
  5.  *
  6.  * TODO: Implement periodic interrupts.
  7.  *
  8.  * Copyright (C) 2000 Silicon Graphics, Inc.
  9.  * Written by Ulf Carlsson (ulfc@engr.sgi.com)
  10.  *
  11.  * Based on code written by Paul Gortmaker.
  12.  *
  13.  * This driver allows use of the real time clock (built into
  14.  * nearly all computers) from user space. It exports the /dev/rtc
  15.  * interface supporting various ioctl() and also the /proc/rtc
  16.  * pseudo-file for status information.
  17.  *
  18.  * This program is free software; you can redistribute it and/or
  19.  * modify it under the terms of the GNU General Public License
  20.  * as published by the Free Software Foundation; either version
  21.  * 2 of the License, or (at your option) any later version.
  22.  *
  23.  */
  24. #define RTC_VERSION "1.09b"
  25. #include <linux/module.h>
  26. #include <linux/kernel.h>
  27. #include <linux/types.h>
  28. #include <linux/miscdevice.h>
  29. #include <linux/ioport.h>
  30. #include <linux/fcntl.h>
  31. #include <linux/rtc.h>
  32. #include <linux/init.h>
  33. #include <linux/poll.h>
  34. #include <linux/proc_fs.h>
  35. #include <linux/smp_lock.h>
  36. #include <asm/m48t35.h>
  37. #include <asm/sn/ioc3.h>
  38. #include <asm/io.h>
  39. #include <asm/uaccess.h>
  40. #include <asm/system.h>
  41. #include <asm/sn/klconfig.h>
  42. #include <asm/sn/sn0/ip27.h>
  43. #include <asm/sn/sn0/hub.h>
  44. static int rtc_ioctl(struct inode *inode, struct file *file,
  45.      unsigned int cmd, unsigned long arg);
  46. static int rtc_read_proc(char *page, char **start, off_t off,
  47.                          int count, int *eof, void *data);
  48. static void get_rtc_time(struct rtc_time *rtc_tm);
  49. /*
  50.  * Bits in rtc_status. (6 bits of room for future expansion)
  51.  */
  52. #define RTC_IS_OPEN 0x01 /* means /dev/rtc is in use */
  53. #define RTC_TIMER_ON 0x02 /* missed irq timer active */
  54. static unsigned char rtc_status; /* bitmapped status byte. */
  55. static unsigned long rtc_freq; /* Current periodic IRQ rate */
  56. static struct m48t35_rtc *rtc;
  57. /*
  58.  * If this driver ever becomes modularised, it will be really nice
  59.  * to make the epoch retain its value across module reload...
  60.  */
  61. static unsigned long epoch = 1970; /* year corresponding to 0x00 */
  62. static const unsigned char days_in_mo[] = 
  63. {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  64. static int rtc_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  65.      unsigned long arg)
  66. {
  67. struct rtc_time wtime; 
  68. switch (cmd) {
  69. case RTC_RD_TIME: /* Read the time/date from RTC */
  70. {
  71. get_rtc_time(&wtime);
  72. break;
  73. }
  74. case RTC_SET_TIME: /* Set the RTC */
  75. {
  76. struct rtc_time rtc_tm;
  77. unsigned char mon, day, hrs, min, sec, leap_yr;
  78. unsigned int yrs;
  79. unsigned long flags;
  80. if (!capable(CAP_SYS_TIME))
  81. return -EACCES;
  82. if (copy_from_user(&rtc_tm, (struct rtc_time*)arg,
  83.    sizeof(struct rtc_time)))
  84. return -EFAULT;
  85. yrs = rtc_tm.tm_year + 1900;
  86. mon = rtc_tm.tm_mon + 1;   /* tm_mon starts at zero */
  87. day = rtc_tm.tm_mday;
  88. hrs = rtc_tm.tm_hour;
  89. min = rtc_tm.tm_min;
  90. sec = rtc_tm.tm_sec;
  91. if (yrs < 1970)
  92. return -EINVAL;
  93. leap_yr = ((!(yrs % 4) && (yrs % 100)) || !(yrs % 400));
  94. if ((mon > 12) || (day == 0))
  95. return -EINVAL;
  96. if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr)))
  97. return -EINVAL;
  98. if ((hrs >= 24) || (min >= 60) || (sec >= 60))
  99. return -EINVAL;
  100. if ((yrs -= epoch) > 255)    /* They are unsigned */
  101. return -EINVAL;
  102. save_flags(flags);
  103. cli();
  104. if (yrs > 169) {
  105. restore_flags(flags);
  106. return -EINVAL;
  107. }
  108. if (yrs >= 100)
  109. yrs -= 100;
  110. BIN_TO_BCD(sec);
  111. BIN_TO_BCD(min);
  112. BIN_TO_BCD(hrs);
  113. BIN_TO_BCD(day);
  114. BIN_TO_BCD(mon);
  115. BIN_TO_BCD(yrs);
  116. rtc->control &= ~M48T35_RTC_SET;
  117. rtc->year = yrs;
  118. rtc->month = mon;
  119. rtc->date = day;
  120. rtc->hour = hrs;
  121. rtc->min = min;
  122. rtc->sec = sec;
  123. rtc->control &= ~M48T35_RTC_SET;
  124. restore_flags(flags);
  125. return 0;
  126. }
  127. default:
  128. return -EINVAL;
  129. }
  130. return copy_to_user((void *)arg, &wtime, sizeof wtime) ? -EFAULT : 0;
  131. }
  132. /*
  133.  * We enforce only one user at a time here with the open/close.
  134.  * Also clear the previous interrupt data on an open, and clean
  135.  * up things on a close.
  136.  */
  137. static int rtc_open(struct inode *inode, struct file *file)
  138. {
  139. if(rtc_status & RTC_IS_OPEN)
  140. return -EBUSY;
  141. rtc_status |= RTC_IS_OPEN;
  142. return 0;
  143. }
  144. static int rtc_release(struct inode *inode, struct file *file)
  145. {
  146. /*
  147.  * Turn off all interrupts once the device is no longer
  148.  * in use, and clear the data.
  149.  */
  150. lock_kernel();
  151. rtc_status &= ~RTC_IS_OPEN;
  152. unlock_kernel();
  153. return 0;
  154. }
  155. /*
  156.  * The various file operations we support.
  157.  */
  158. static struct file_operations rtc_fops = {
  159. owner: THIS_MODULE,
  160. ioctl: rtc_ioctl,
  161. open: rtc_open,
  162. release: rtc_release,
  163. };
  164. static struct miscdevice rtc_dev=
  165. {
  166. RTC_MINOR,
  167. "rtc",
  168. &rtc_fops
  169. };
  170. static int __init rtc_init(void)
  171. {
  172. unsigned long flags;
  173. nasid_t nid;
  174. nid = get_nasid();
  175. rtc = (struct m48t35_rtc *)
  176.     KL_CONFIG_CH_CONS_INFO(nid)->memory_base + IOC3_BYTEBUS_DEV0;
  177. printk(KERN_INFO "Real Time Clock Driver v%sn", RTC_VERSION);
  178. misc_register(&rtc_dev);
  179. create_proc_read_entry ("rtc", 0, NULL, rtc_read_proc, NULL);
  180. save_flags(flags);
  181. cli();
  182. restore_flags(flags);
  183. rtc_freq = 1024;
  184. return 0;
  185. }
  186. static void __exit rtc_exit (void)
  187. {
  188. /* interrupts and timer disabled at this point by rtc_release */
  189. remove_proc_entry ("rtc", NULL);
  190. misc_deregister(&rtc_dev);
  191. }
  192. module_init(rtc_init);
  193. module_exit(rtc_exit);
  194. EXPORT_NO_SYMBOLS;
  195. /*
  196.  * Info exported via "/proc/rtc".
  197.  */
  198. static int rtc_get_status(char *buf)
  199. {
  200. char *p;
  201. struct rtc_time tm;
  202. /*
  203.  * Just emulate the standard /proc/rtc
  204.  */
  205. p = buf;
  206. get_rtc_time(&tm);
  207. /*
  208.  * There is no way to tell if the luser has the RTC set for local
  209.  * time or for Universal Standard Time (GMT). Probably local though.
  210.  */
  211. p += sprintf(p,
  212.      "rtc_timet: %02d:%02d:%02dn"
  213.      "rtc_datet: %04d-%02d-%02dn"
  214.        "rtc_epocht: %04lun"
  215.      "24hrtt: yesn",
  216.      tm.tm_hour, tm.tm_min, tm.tm_sec,
  217.      tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, epoch);
  218. return  p - buf;
  219. }
  220. static int rtc_read_proc(char *page, char **start, off_t off,
  221.                                  int count, int *eof, void *data)
  222. {
  223.         int len = rtc_get_status(page);
  224.         if (len <= off+count) *eof = 1;
  225.         *start = page + off;
  226.         len -= off;
  227.         if (len>count) len = count;
  228.         if (len<0) len = 0;
  229.         return len;
  230. }
  231. static void get_rtc_time(struct rtc_time *rtc_tm)
  232. {
  233. unsigned long flags;
  234. /*
  235.  * Do we need to wait for the last update to finish?
  236.  */
  237. /*
  238.  * Only the values that we read from the RTC are set. We leave
  239.  * tm_wday, tm_yday and tm_isdst untouched. Even though the
  240.  * RTC has RTC_DAY_OF_WEEK, we ignore it, as it is only updated
  241.  * by the RTC when initially set to a non-zero value.
  242.  */
  243. save_flags(flags);
  244. cli();
  245.         rtc->control |= M48T35_RTC_READ;
  246. rtc_tm->tm_sec = rtc->sec;
  247. rtc_tm->tm_min = rtc->min;
  248. rtc_tm->tm_hour = rtc->hour;
  249. rtc_tm->tm_mday = rtc->date;
  250. rtc_tm->tm_mon = rtc->month;
  251. rtc_tm->tm_year = rtc->year;
  252. rtc->control &= ~M48T35_RTC_READ;
  253. restore_flags(flags);
  254. BCD_TO_BIN(rtc_tm->tm_sec);
  255. BCD_TO_BIN(rtc_tm->tm_min);
  256. BCD_TO_BIN(rtc_tm->tm_hour);
  257. BCD_TO_BIN(rtc_tm->tm_mday);
  258. BCD_TO_BIN(rtc_tm->tm_mon);
  259. BCD_TO_BIN(rtc_tm->tm_year);
  260. /*
  261.  * Account for differences between how the RTC uses the values
  262.  * and how they are defined in a struct rtc_time;
  263.  */
  264. if ((rtc_tm->tm_year += (epoch - 1900)) <= 69)
  265. rtc_tm->tm_year += 100;
  266. rtc_tm->tm_mon--;
  267. }