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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * EFI Time Services Driver for Linux
  3.  *
  4.  * Copyright (C) 1999 Hewlett-Packard Co
  5.  * Copyright (C) 1999 Stephane Eranian <eranian@hpl.hp.com>
  6.  *
  7.  * Based on skeleton from the drivers/char/rtc.c driver by P. Gortmaker
  8.  *
  9.  * This code provides a architected & portable interface to the real time 
  10.  * clock by using EFI instead of direct bit fiddling. The functionalities are 
  11.  * quite different from the rtc.c driver. The only way to talk to the device 
  12.  * is by using ioctl(). There is a /proc interface which provides the raw 
  13.  * information.
  14.  *
  15.  * Please note that we have kept the API as close as possible from the 
  16.  * legacy RTC. The standard /sbin/hwclock program should work normally 
  17.  * when used to get/set the time.
  18.  *
  19.  * NOTES:
  20.  * - Locking is required for safe execution of EFI calls with regards
  21.  *   to interrrupts and SMP.
  22.  *
  23.  * TODO (December 1999):
  24.  *  - provide the API to set/get the WakeUp Alarm (different from the
  25.  *   rtc.c alarm).
  26.  * - SMP testing
  27.  *  - Add module support
  28.  */
  29. #include <linux/types.h>
  30. #include <linux/errno.h>
  31. #include <linux/miscdevice.h>
  32. #include <linux/module.h>
  33. #include <linux/init.h>
  34. #include <linux/rtc.h>
  35. #include <linux/proc_fs.h>
  36. #include <asm/efi.h>
  37. #include <asm/uaccess.h>
  38. #include <asm/system.h>
  39. #define EFI_RTC_VERSION "0.2"
  40. #define EFI_ISDST (EFI_TIME_ADJUST_DAYLIGHT|EFI_TIME_IN_DAYLIGHT)
  41. /*
  42.  * EFI Epoch is 1/1/1998
  43.  */
  44. #define EFI_RTC_EPOCH 1998
  45. static spinlock_t efi_rtc_lock = SPIN_LOCK_UNLOCKED;
  46. static int efi_rtc_ioctl(struct inode *inode, struct file *file,
  47.      unsigned int cmd, unsigned long arg);
  48. #define is_leap(year) 
  49.           ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
  50. static const unsigned short int __mon_yday[2][13] =
  51. {
  52. /* Normal years.  */
  53. { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
  54. /* Leap years.  */  
  55. { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
  56. };
  57. /*
  58.  * returns day of the year [0-365]
  59.  */
  60. static inline int
  61. compute_yday(efi_time_t *eft)
  62. {
  63. /* efi_time_t.month is in the [1-12] so, we need -1 */
  64. return  __mon_yday[is_leap(eft->year)][eft->month-1]+ eft->day -1;
  65. }
  66. /*
  67.  * returns day of the week [0-6] 0=Sunday
  68.  *
  69.  * Don't try to provide a year that's before 1998, please !
  70.  */
  71. static int
  72. compute_wday(efi_time_t *eft)
  73. {
  74. int y;
  75. int ndays = 0;
  76. if ( eft->year < 1998 ) {
  77. printk(KERN_ERR "efirtc: EFI year < 1998, invalid daten");
  78. return -1;
  79. }
  80. for(y=EFI_RTC_EPOCH; y < eft->year; y++ ) {
  81. ndays += 365 + (is_leap(y) ? 1 : 0);
  82. }
  83. ndays += compute_yday(eft);
  84. /*
  85.  * 4=1/1/1998 was a Thursday
  86.  */
  87. return (ndays + 4) % 7;
  88. }
  89. static void
  90. convert_to_efi_time(struct rtc_time *wtime, efi_time_t *eft)
  91. {
  92. eft->year = wtime->tm_year + 1900;
  93. eft->month = wtime->tm_mon + 1; 
  94. eft->day = wtime->tm_mday;
  95. eft->hour = wtime->tm_hour;
  96. eft->minute = wtime->tm_min;
  97. eft->second  = wtime->tm_sec;
  98. eft->nanosecond = 0; 
  99. eft->daylight = wtime->tm_isdst ? EFI_ISDST: 0;
  100. eft->timezone = EFI_UNSPECIFIED_TIMEZONE;
  101. }
  102. static void
  103. convert_from_efi_time(efi_time_t *eft, struct rtc_time *wtime)
  104. {
  105. wtime->tm_sec  = eft->second;
  106. wtime->tm_min  = eft->minute;
  107. wtime->tm_hour = eft->hour;
  108. wtime->tm_mday = eft->day;
  109. wtime->tm_mon  = eft->month - 1;
  110. wtime->tm_year = eft->year - 1900;
  111. /* day of the week [0-6], Sunday=0 */
  112. wtime->tm_wday = compute_wday(eft);
  113. /* day in the year [1-365]*/
  114. wtime->tm_yday = compute_yday(eft);
  115. switch (eft->daylight & EFI_ISDST) {
  116. case EFI_ISDST:
  117. wtime->tm_isdst = 1;
  118. break;
  119. case EFI_TIME_ADJUST_DAYLIGHT:
  120. wtime->tm_isdst = 0;
  121. break;
  122. default:
  123. wtime->tm_isdst = -1;
  124. }
  125. }
  126. static int
  127. efi_rtc_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  128.      unsigned long arg)
  129. {
  130. efi_status_t status;
  131. unsigned long flags;
  132. efi_time_t eft;
  133. efi_time_cap_t cap;
  134. struct rtc_time wtime;
  135. struct rtc_wkalrm *ewp;
  136. unsigned char enabled, pending;
  137. switch (cmd) {
  138. case RTC_UIE_ON:
  139. case RTC_UIE_OFF:
  140. case RTC_PIE_ON:
  141. case RTC_PIE_OFF:
  142. case RTC_AIE_ON:
  143. case RTC_AIE_OFF:
  144. case RTC_ALM_SET:
  145. case RTC_ALM_READ:
  146. case RTC_IRQP_READ:
  147. case RTC_IRQP_SET:
  148. case RTC_EPOCH_READ:
  149. case RTC_EPOCH_SET:
  150. return -EINVAL;
  151. case RTC_RD_TIME:
  152. spin_lock_irqsave(&efi_rtc_lock, flags);
  153. status = efi.get_time(&eft, &cap);
  154. spin_unlock_irqrestore(&efi_rtc_lock,flags);
  155. if (status != EFI_SUCCESS) {
  156. /* should never happen */
  157. printk(KERN_ERR "efitime: can't read timen");
  158. return -EINVAL;
  159. }
  160. convert_from_efi_time(&eft, &wtime);
  161.   return copy_to_user((void *)arg, &wtime, sizeof (struct rtc_time)) ? - EFAULT : 0;
  162. case RTC_SET_TIME:
  163. if (!capable(CAP_SYS_TIME)) return -EACCES;
  164. if (copy_from_user(&wtime, (struct rtc_time *)arg, sizeof(struct rtc_time)) )
  165. return -EFAULT;
  166. convert_to_efi_time(&wtime, &eft);
  167. spin_lock_irqsave(&efi_rtc_lock, flags);
  168. status = efi.set_time(&eft);
  169. spin_unlock_irqrestore(&efi_rtc_lock,flags);
  170. return status == EFI_SUCCESS ? 0 : -EINVAL;
  171. case RTC_WKALM_SET:
  172. if (!capable(CAP_SYS_TIME)) return -EACCES;
  173. ewp = (struct rtc_wkalrm *)arg;
  174. if (  get_user(enabled, &ewp->enabled)
  175.    || copy_from_user(&wtime, &ewp->time, sizeof(struct rtc_time)) )
  176. return -EFAULT;
  177. convert_to_efi_time(&wtime, &eft);
  178. spin_lock_irqsave(&efi_rtc_lock, flags);
  179. /*
  180.  * XXX Fixme:
  181.  * As of EFI 0.92 with the firmware I have on my
  182.  * machine this call does not seem to work quite 
  183.  * right
  184.  */
  185. status = efi.set_wakeup_time((efi_bool_t)enabled, &eft);
  186. spin_unlock_irqrestore(&efi_rtc_lock,flags);
  187. return status == EFI_SUCCESS ? 0 : -EINVAL;
  188. case RTC_WKALM_RD:
  189. spin_lock_irqsave(&efi_rtc_lock, flags);
  190. status = efi.get_wakeup_time((efi_bool_t *)&enabled, (efi_bool_t *)&pending, &eft);
  191. spin_unlock_irqrestore(&efi_rtc_lock,flags);
  192. if (status != EFI_SUCCESS) return -EINVAL;
  193. ewp = (struct rtc_wkalrm *)arg;
  194. if (  put_user(enabled, &ewp->enabled)
  195.    || put_user(pending, &ewp->pending)) return -EFAULT;
  196. convert_from_efi_time(&eft, &wtime);
  197. return copy_to_user((void *)&ewp->time, &wtime, sizeof(struct rtc_time)) ? -EFAULT : 0;
  198. }
  199. return -EINVAL;
  200. }
  201. /*
  202.  * We enforce only one user at a time here with the open/close.
  203.  * Also clear the previous interrupt data on an open, and clean
  204.  * up things on a close.
  205.  */
  206. static int
  207. efi_rtc_open(struct inode *inode, struct file *file)
  208. {
  209. /*
  210.  * nothing special to do here
  211.  * We do accept multiple open files at the same time as we
  212.  * synchronize on the per call operation.
  213.  */
  214. return 0;
  215. }
  216. static int
  217. efi_rtc_close(struct inode *inode, struct file *file)
  218. {
  219. return 0;
  220. }
  221. /*
  222.  * The various file operations we support.
  223.  */
  224. static struct file_operations efi_rtc_fops = {
  225. owner: THIS_MODULE,
  226. ioctl: efi_rtc_ioctl,
  227. open: efi_rtc_open,
  228. release: efi_rtc_close,
  229. };
  230. static struct miscdevice efi_rtc_dev=
  231. {
  232. EFI_RTC_MINOR,
  233. "efirtc",
  234. &efi_rtc_fops
  235. };
  236. /*
  237.  * We export RAW EFI information to /proc/efirtc
  238.  */
  239. static int
  240. efi_rtc_get_status(char *buf)
  241. {
  242. efi_time_t  eft, alm;
  243. efi_time_cap_t cap;
  244. char *p = buf;
  245. efi_bool_t enabled, pending;
  246. unsigned long flags;
  247. spin_lock_irqsave(&efi_rtc_lock, flags);
  248. efi.get_time(&eft, &cap);
  249. efi.get_wakeup_time(&enabled, &pending, &alm);
  250. spin_unlock_irqrestore(&efi_rtc_lock,flags);
  251. p += sprintf(p,
  252.      "Time      :n"
  253.      "Year      : %un"
  254.      "Month     : %un"
  255.      "Day       : %un"
  256.      "Hour      : %un"
  257.      "Minute    : %un"
  258.      "Second    : %un"
  259.      "Nanosecond: %un"
  260.      "Daylight  : %un",
  261.      eft.year, eft.month, eft.day, eft.hour, eft.minute,
  262.      eft.second, eft.nanosecond, eft.daylight);
  263. if ( eft.timezone == EFI_UNSPECIFIED_TIMEZONE)
  264. p += sprintf(p, "Timezone  : unspecifiedn");
  265. else
  266. /* XXX fixme: convert to string? */
  267. p += sprintf(p, "Timezone  : %un", eft.timezone);
  268. p += sprintf(p,
  269.      "nWakeup Alm:n"
  270.      "Enabled   : %sn"
  271.      "Pending   : %sn"
  272.      "Year      : %un"
  273.      "Month     : %un"
  274.      "Day       : %un"
  275.      "Hour      : %un"
  276.      "Minute    : %un"
  277.      "Second    : %un"
  278.      "Nanosecond: %un"
  279.      "Daylight  : %un",
  280.      enabled == 1 ? "Yes" : "No",
  281.      pending == 1 ? "Yes" : "No",
  282.      alm.year, alm.month, alm.day, alm.hour, alm.minute,
  283.      alm.second, alm.nanosecond, alm.daylight);
  284. if ( eft.timezone == EFI_UNSPECIFIED_TIMEZONE)
  285. p += sprintf(p, "Timezone  : unspecifiedn");
  286. else
  287. /* XXX fixme: convert to string? */
  288. p += sprintf(p, "Timezone  : %un", eft.timezone);
  289. /*
  290.  * now prints the capabilities
  291.  */
  292. p += sprintf(p,
  293.      "nClock Cap :n"
  294.      "Resolution: %un"
  295.      "Accuracy  : %un"
  296.      "SetstoZero: %un",
  297.       cap.resolution, cap.accuracy, cap.sets_to_zero);
  298. return  p - buf;
  299. }
  300. static int
  301. efi_rtc_read_proc(char *page, char **start, off_t off,
  302.                                  int count, int *eof, void *data)
  303. {
  304.         int len = efi_rtc_get_status(page);
  305.         if (len <= off+count) *eof = 1;
  306.         *start = page + off;
  307.         len -= off;
  308.         if (len>count) len = count;
  309.         if (len<0) len = 0;
  310.         return len;
  311. }
  312. static int __init 
  313. efi_rtc_init(void)
  314. {
  315. printk(KERN_INFO "EFI Time Services Driver v%sn", EFI_RTC_VERSION);
  316. misc_register(&efi_rtc_dev);
  317. create_proc_read_entry ("efirtc", 0, NULL, efi_rtc_read_proc, NULL);
  318. return 0;
  319. }
  320. static void __exit
  321. efi_rtc_exit(void)
  322. {
  323. /* not yet used */
  324. }
  325. module_init(efi_rtc_init);
  326. module_exit(efi_rtc_exit);
  327. MODULE_LICENSE("GPL");