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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Real Time Clock interface for Linux
  3.  *
  4.  * Copyright (C) 1996 Paul Gortmaker
  5.  *
  6.  * This driver allows use of the real time clock (built into
  7.  * nearly all computers) from user space. It exports the /dev/rtc
  8.  * interface supporting various ioctl() and also the
  9.  * /proc/driver/rtc pseudo-file for status information.
  10.  *
  11.  * The ioctls can be used to set the interrupt behaviour and
  12.  * generation rate from the RTC via IRQ 8. Then the /dev/rtc
  13.  * interface can be used to make use of these timer interrupts,
  14.  * be they interval or alarm based.
  15.  *
  16.  * The /dev/rtc interface will block on reads until an interrupt
  17.  * has been received. If a RTC interrupt has already happened,
  18.  * it will output an unsigned long and then block. The output value
  19.  * contains the interrupt status in the low byte and the number of
  20.  * interrupts since the last read in the remaining high bytes. The 
  21.  * /dev/rtc interface can also be used with the select(2) call.
  22.  *
  23.  * This program is free software; you can redistribute it and/or
  24.  * modify it under the terms of the GNU General Public License
  25.  * as published by the Free Software Foundation; either version
  26.  * 2 of the License, or (at your option) any later version.
  27.  *
  28.  * Based on other minimal char device drivers, like Alan's
  29.  * watchdog, Ted's random, etc. etc.
  30.  *
  31.  * 1.07 Paul Gortmaker.
  32.  * 1.08 Miquel van Smoorenburg: disallow certain things on the
  33.  * DEC Alpha as the CMOS clock is also used for other things.
  34.  * 1.09 Nikita Schmidt: epoch support and some Alpha cleanup.
  35.  * 1.09a Pete Zaitcev: Sun SPARC
  36.  * 1.09b Jeff Garzik: Modularize, init cleanup
  37.  * 1.09c Jeff Garzik: SMP cleanup
  38.  * 1.10    Paul Barton-Davis: add support for async I/O
  39.  * 1.10a Andrea Arcangeli: Alpha updates
  40.  * 1.10b Andrew Morton: SMP lock fix
  41.  * 1.10c Cesar Barros: SMP locking fixes and cleanup
  42.  * 1.10d Paul Gortmaker: delete paranoia check in rtc_exit
  43.  * 1.10e Maciej W. Rozycki: Handle DECstation's year weirdness.
  44.  */
  45. #define RTC_VERSION "1.10e"
  46. #define RTC_IO_EXTENT 0x10 /* Only really two ports, but... */
  47. /*
  48.  * Note that *all* calls to CMOS_READ and CMOS_WRITE are done with
  49.  * interrupts disabled. Due to the index-port/data-port (0x70/0x71)
  50.  * design of the RTC, we don't want two different things trying to
  51.  * get to it at once. (e.g. the periodic 11 min sync from time.c vs.
  52.  * this driver.)
  53.  */
  54. #include <linux/config.h>
  55. #include <linux/module.h>
  56. #include <linux/kernel.h>
  57. #include <linux/types.h>
  58. #include <linux/miscdevice.h>
  59. #include <linux/ioport.h>
  60. #include <linux/fcntl.h>
  61. #include <linux/mc146818rtc.h>
  62. #include <linux/init.h>
  63. #include <linux/poll.h>
  64. #include <linux/proc_fs.h>
  65. #include <linux/spinlock.h>
  66. #include <asm/io.h>
  67. #include <asm/uaccess.h>
  68. #include <asm/system.h>
  69. #ifdef __sparc__
  70. #include <asm/ebus.h>
  71. #ifdef __sparc_v9__
  72. #include <asm/isa.h>
  73. #endif
  74. static unsigned long rtc_port;
  75. static int rtc_irq = PCI_IRQ_NONE;
  76. #endif
  77. static int rtc_has_irq = 1;
  78. /*
  79.  * We sponge a minor off of the misc major. No need slurping
  80.  * up another valuable major dev number for this. If you add
  81.  * an ioctl, make sure you don't conflict with SPARC's RTC
  82.  * ioctls.
  83.  */
  84. static struct fasync_struct *rtc_async_queue;
  85. static DECLARE_WAIT_QUEUE_HEAD(rtc_wait);
  86. static struct timer_list rtc_irq_timer;
  87. static ssize_t rtc_read(struct file *file, char *buf,
  88. size_t count, loff_t *ppos);
  89. static int rtc_ioctl(struct inode *inode, struct file *file,
  90.      unsigned int cmd, unsigned long arg);
  91. #if RTC_IRQ
  92. static unsigned int rtc_poll(struct file *file, poll_table *wait);
  93. #endif
  94. static void get_rtc_time (struct rtc_time *rtc_tm);
  95. static void get_rtc_alm_time (struct rtc_time *alm_tm);
  96. #if RTC_IRQ
  97. static void rtc_dropped_irq(unsigned long data);
  98. static void set_rtc_irq_bit(unsigned char bit);
  99. static void mask_rtc_irq_bit(unsigned char bit);
  100. #endif
  101. static inline unsigned char rtc_is_updating(void);
  102. static int rtc_read_proc(char *page, char **start, off_t off,
  103.                          int count, int *eof, void *data);
  104. /*
  105.  * Bits in rtc_status. (6 bits of room for future expansion)
  106.  */
  107. #define RTC_IS_OPEN 0x01 /* means /dev/rtc is in use */
  108. #define RTC_TIMER_ON 0x02 /* missed irq timer active */
  109. /*
  110.  * rtc_status is never changed by rtc_interrupt, and ioctl/open/close is
  111.  * protected by the big kernel lock. However, ioctl can still disable the timer
  112.  * in rtc_status and then with del_timer after the interrupt has read
  113.  * rtc_status but before mod_timer is called, which would then reenable the
  114.  * timer (but you would need to have an awful timing before you'd trip on it)
  115.  */
  116. static unsigned long rtc_status = 0; /* bitmapped status byte. */
  117. static unsigned long rtc_freq = 0; /* Current periodic IRQ rate */
  118. static unsigned long rtc_irq_data = 0; /* our output to the world */
  119. /*
  120.  * If this driver ever becomes modularised, it will be really nice
  121.  * to make the epoch retain its value across module reload...
  122.  */
  123. static unsigned long epoch = 1900; /* year corresponding to 0x00 */
  124. static const unsigned char days_in_mo[] = 
  125. {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  126. #if RTC_IRQ
  127. /*
  128.  * A very tiny interrupt handler. It runs with SA_INTERRUPT set,
  129.  * but there is possibility of conflicting with the set_rtc_mmss()
  130.  * call (the rtc irq and the timer irq can easily run at the same
  131.  * time in two different CPUs). So we need to serializes
  132.  * accesses to the chip with the rtc_lock spinlock that each
  133.  * architecture should implement in the timer code.
  134.  * (See ./arch/XXXX/kernel/time.c for the set_rtc_mmss() function.)
  135.  */
  136. static void rtc_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  137. {
  138. /*
  139.  * Can be an alarm interrupt, update complete interrupt,
  140.  * or a periodic interrupt. We store the status in the
  141.  * low byte and the number of interrupts received since
  142.  * the last read in the remainder of rtc_irq_data.
  143.  */
  144. spin_lock (&rtc_lock);
  145. rtc_irq_data += 0x100;
  146. rtc_irq_data &= ~0xff;
  147. rtc_irq_data |= (CMOS_READ(RTC_INTR_FLAGS) & 0xF0);
  148. if (rtc_status & RTC_TIMER_ON)
  149. mod_timer(&rtc_irq_timer, jiffies + HZ/rtc_freq + 2*HZ/100);
  150. spin_unlock (&rtc_lock);
  151. /* Now do the rest of the actions */
  152. wake_up_interruptible(&rtc_wait);
  153. kill_fasync (&rtc_async_queue, SIGIO, POLL_IN);
  154. }
  155. #endif
  156. /*
  157.  * Now all the various file operations that we export.
  158.  */
  159. static ssize_t rtc_read(struct file *file, char *buf,
  160. size_t count, loff_t *ppos)
  161. {
  162. #if !RTC_IRQ
  163. return -EIO;
  164. #else
  165. DECLARE_WAITQUEUE(wait, current);
  166. unsigned long data;
  167. ssize_t retval;
  168. if (rtc_has_irq == 0)
  169. return -EIO;
  170. if (count < sizeof(unsigned long))
  171. return -EINVAL;
  172. add_wait_queue(&rtc_wait, &wait);
  173. current->state = TASK_INTERRUPTIBLE;
  174. do {
  175. /* First make it right. Then make it fast. Putting this whole
  176.  * block within the parentheses of a while would be too
  177.  * confusing. And no, xchg() is not the answer. */
  178. spin_lock_irq (&rtc_lock);
  179. data = rtc_irq_data;
  180. rtc_irq_data = 0;
  181. spin_unlock_irq (&rtc_lock);
  182. if (data != 0)
  183. break;
  184. if (file->f_flags & O_NONBLOCK) {
  185. retval = -EAGAIN;
  186. goto out;
  187. }
  188. if (signal_pending(current)) {
  189. retval = -ERESTARTSYS;
  190. goto out;
  191. }
  192. schedule();
  193. } while (1);
  194. retval = put_user(data, (unsigned long *)buf); 
  195. if (!retval)
  196. retval = sizeof(unsigned long); 
  197.  out:
  198. current->state = TASK_RUNNING;
  199. remove_wait_queue(&rtc_wait, &wait);
  200. return retval;
  201. #endif
  202. }
  203. static int rtc_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  204.      unsigned long arg)
  205. {
  206. struct rtc_time wtime; 
  207. #if RTC_IRQ
  208. if (rtc_has_irq == 0) {
  209. switch (cmd) {
  210. case RTC_AIE_OFF:
  211. case RTC_AIE_ON:
  212. case RTC_PIE_OFF:
  213. case RTC_PIE_ON:
  214. case RTC_UIE_OFF:
  215. case RTC_UIE_ON:
  216. case RTC_IRQP_READ:
  217. case RTC_IRQP_SET:
  218. return -EINVAL;
  219. };
  220. }
  221. #endif
  222. switch (cmd) {
  223. #if RTC_IRQ
  224. case RTC_AIE_OFF: /* Mask alarm int. enab. bit */
  225. {
  226. mask_rtc_irq_bit(RTC_AIE);
  227. return 0;
  228. }
  229. case RTC_AIE_ON: /* Allow alarm interrupts. */
  230. {
  231. set_rtc_irq_bit(RTC_AIE);
  232. return 0;
  233. }
  234. case RTC_PIE_OFF: /* Mask periodic int. enab. bit */
  235. {
  236. mask_rtc_irq_bit(RTC_PIE);
  237. if (rtc_status & RTC_TIMER_ON) {
  238. spin_lock_irq (&rtc_lock);
  239. rtc_status &= ~RTC_TIMER_ON;
  240. del_timer(&rtc_irq_timer);
  241. spin_unlock_irq (&rtc_lock);
  242. }
  243. return 0;
  244. }
  245. case RTC_PIE_ON: /* Allow periodic ints */
  246. {
  247. /*
  248.  * We don't really want Joe User enabling more
  249.  * than 64Hz of interrupts on a multi-user machine.
  250.  */
  251. if ((rtc_freq > 64) && (!capable(CAP_SYS_RESOURCE)))
  252. return -EACCES;
  253. if (!(rtc_status & RTC_TIMER_ON)) {
  254. spin_lock_irq (&rtc_lock);
  255. rtc_irq_timer.expires = jiffies + HZ/rtc_freq + 2*HZ/100;
  256. add_timer(&rtc_irq_timer);
  257. rtc_status |= RTC_TIMER_ON;
  258. spin_unlock_irq (&rtc_lock);
  259. }
  260. set_rtc_irq_bit(RTC_PIE);
  261. return 0;
  262. }
  263. case RTC_UIE_OFF: /* Mask ints from RTC updates. */
  264. {
  265. mask_rtc_irq_bit(RTC_UIE);
  266. return 0;
  267. }
  268. case RTC_UIE_ON: /* Allow ints for RTC updates. */
  269. {
  270. set_rtc_irq_bit(RTC_UIE);
  271. return 0;
  272. }
  273. #endif
  274. case RTC_ALM_READ: /* Read the present alarm time */
  275. {
  276. /*
  277.  * This returns a struct rtc_time. Reading >= 0xc0
  278.  * means "don't care" or "match all". Only the tm_hour,
  279.  * tm_min, and tm_sec values are filled in.
  280.  */
  281. get_rtc_alm_time(&wtime);
  282. break; 
  283. }
  284. case RTC_ALM_SET: /* Store a time into the alarm */
  285. {
  286. /*
  287.  * This expects a struct rtc_time. Writing 0xff means
  288.  * "don't care" or "match all". Only the tm_hour,
  289.  * tm_min and tm_sec are used.
  290.  */
  291. unsigned char hrs, min, sec;
  292. struct rtc_time alm_tm;
  293. if (copy_from_user(&alm_tm, (struct rtc_time*)arg,
  294.    sizeof(struct rtc_time)))
  295. return -EFAULT;
  296. hrs = alm_tm.tm_hour;
  297. min = alm_tm.tm_min;
  298. sec = alm_tm.tm_sec;
  299. if (hrs >= 24)
  300. hrs = 0xff;
  301. if (min >= 60)
  302. min = 0xff;
  303. if (sec >= 60)
  304. sec = 0xff;
  305. spin_lock_irq(&rtc_lock);
  306. if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) ||
  307.     RTC_ALWAYS_BCD)
  308. {
  309. BIN_TO_BCD(sec);
  310. BIN_TO_BCD(min);
  311. BIN_TO_BCD(hrs);
  312. }
  313. CMOS_WRITE(hrs, RTC_HOURS_ALARM);
  314. CMOS_WRITE(min, RTC_MINUTES_ALARM);
  315. CMOS_WRITE(sec, RTC_SECONDS_ALARM);
  316. spin_unlock_irq(&rtc_lock);
  317. return 0;
  318. }
  319. case RTC_RD_TIME: /* Read the time/date from RTC */
  320. {
  321. get_rtc_time(&wtime);
  322. break;
  323. }
  324. case RTC_SET_TIME: /* Set the RTC */
  325. {
  326. struct rtc_time rtc_tm;
  327. unsigned char mon, day, hrs, min, sec, leap_yr;
  328. unsigned char save_control, save_freq_select;
  329. unsigned int yrs;
  330. #ifdef CONFIG_DECSTATION
  331. unsigned int real_yrs;
  332. #endif
  333. if (!capable(CAP_SYS_TIME))
  334. return -EACCES;
  335. if (copy_from_user(&rtc_tm, (struct rtc_time*)arg,
  336.    sizeof(struct rtc_time)))
  337. return -EFAULT;
  338. yrs = rtc_tm.tm_year + 1900;
  339. mon = rtc_tm.tm_mon + 1;   /* tm_mon starts at zero */
  340. day = rtc_tm.tm_mday;
  341. hrs = rtc_tm.tm_hour;
  342. min = rtc_tm.tm_min;
  343. sec = rtc_tm.tm_sec;
  344. if (yrs < 1970)
  345. return -EINVAL;
  346. leap_yr = ((!(yrs % 4) && (yrs % 100)) || !(yrs % 400));
  347. if ((mon > 12) || (day == 0))
  348. return -EINVAL;
  349. if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr)))
  350. return -EINVAL;
  351. if ((hrs >= 24) || (min >= 60) || (sec >= 60))
  352. return -EINVAL;
  353. if ((yrs -= epoch) > 255)    /* They are unsigned */
  354. return -EINVAL;
  355. spin_lock_irq(&rtc_lock);
  356. #ifdef CONFIG_DECSTATION
  357. real_yrs = yrs;
  358. yrs = 72;
  359. /*
  360.  * We want to keep the year set to 73 until March
  361.  * for non-leap years, so that Feb, 29th is handled
  362.  * correctly.
  363.  */
  364. if (!leap_yr && mon < 3) {
  365. real_yrs--;
  366. yrs = 73;
  367. }
  368. #endif
  369. /* These limits and adjustments are independant of
  370.  * whether the chip is in binary mode or not.
  371.  */
  372. if (yrs > 169) {
  373. spin_unlock_irq(&rtc_lock);
  374. return -EINVAL;
  375. }
  376. if (yrs >= 100)
  377. yrs -= 100;
  378. if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY)
  379.     || RTC_ALWAYS_BCD) {
  380. BIN_TO_BCD(sec);
  381. BIN_TO_BCD(min);
  382. BIN_TO_BCD(hrs);
  383. BIN_TO_BCD(day);
  384. BIN_TO_BCD(mon);
  385. BIN_TO_BCD(yrs);
  386. }
  387. save_control = CMOS_READ(RTC_CONTROL);
  388. CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL);
  389. save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
  390. CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
  391. #ifdef CONFIG_DECSTATION
  392. CMOS_WRITE(real_yrs, RTC_DEC_YEAR);
  393. #endif
  394. CMOS_WRITE(yrs, RTC_YEAR);
  395. CMOS_WRITE(mon, RTC_MONTH);
  396. CMOS_WRITE(day, RTC_DAY_OF_MONTH);
  397. CMOS_WRITE(hrs, RTC_HOURS);
  398. CMOS_WRITE(min, RTC_MINUTES);
  399. CMOS_WRITE(sec, RTC_SECONDS);
  400. CMOS_WRITE(save_control, RTC_CONTROL);
  401. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  402. spin_unlock_irq(&rtc_lock);
  403. return 0;
  404. }
  405. #if RTC_IRQ
  406. case RTC_IRQP_READ: /* Read the periodic IRQ rate. */
  407. {
  408. return put_user(rtc_freq, (unsigned long *)arg);
  409. }
  410. case RTC_IRQP_SET: /* Set periodic IRQ rate. */
  411. {
  412. int tmp = 0;
  413. unsigned char val;
  414. /* 
  415.  * The max we can do is 8192Hz.
  416.  */
  417. if ((arg < 2) || (arg > 8192))
  418. return -EINVAL;
  419. /*
  420.  * We don't really want Joe User generating more
  421.  * than 64Hz of interrupts on a multi-user machine.
  422.  */
  423. if ((arg > 64) && (!capable(CAP_SYS_RESOURCE)))
  424. return -EACCES;
  425. while (arg > (1<<tmp))
  426. tmp++;
  427. /*
  428.  * Check that the input was really a power of 2.
  429.  */
  430. if (arg != (1<<tmp))
  431. return -EINVAL;
  432. spin_lock_irq(&rtc_lock);
  433. rtc_freq = arg;
  434. val = CMOS_READ(RTC_FREQ_SELECT) & 0xf0;
  435. val |= (16 - tmp);
  436. CMOS_WRITE(val, RTC_FREQ_SELECT);
  437. spin_unlock_irq(&rtc_lock);
  438. return 0;
  439. }
  440. #endif
  441. case RTC_EPOCH_READ: /* Read the epoch. */
  442. {
  443. return put_user (epoch, (unsigned long *)arg);
  444. }
  445. case RTC_EPOCH_SET: /* Set the epoch. */
  446. {
  447. /* 
  448.  * There were no RTC clocks before 1900.
  449.  */
  450. if (arg < 1900)
  451. return -EINVAL;
  452. if (!capable(CAP_SYS_TIME))
  453. return -EACCES;
  454. epoch = arg;
  455. return 0;
  456. }
  457. default:
  458. return -EINVAL;
  459. }
  460. return copy_to_user((void *)arg, &wtime, sizeof wtime) ? -EFAULT : 0;
  461. }
  462. /*
  463.  * We enforce only one user at a time here with the open/close.
  464.  * Also clear the previous interrupt data on an open, and clean
  465.  * up things on a close.
  466.  */
  467. /* We use rtc_lock to protect against concurrent opens. So the BKL is not
  468.  * needed here. Or anywhere else in this driver. */
  469. static int rtc_open(struct inode *inode, struct file *file)
  470. {
  471. spin_lock_irq (&rtc_lock);
  472. if(rtc_status & RTC_IS_OPEN)
  473. goto out_busy;
  474. rtc_status |= RTC_IS_OPEN;
  475. rtc_irq_data = 0;
  476. spin_unlock_irq (&rtc_lock);
  477. return 0;
  478. out_busy:
  479. spin_unlock_irq (&rtc_lock);
  480. return -EBUSY;
  481. }
  482. static int rtc_fasync (int fd, struct file *filp, int on)
  483. {
  484. return fasync_helper (fd, filp, on, &rtc_async_queue);
  485. }
  486. static int rtc_release(struct inode *inode, struct file *file)
  487. {
  488. #if RTC_IRQ
  489. unsigned char tmp;
  490. if (rtc_has_irq == 0)
  491. goto no_irq;
  492. /*
  493.  * Turn off all interrupts once the device is no longer
  494.  * in use, and clear the data.
  495.  */
  496. spin_lock_irq(&rtc_lock);
  497. tmp = CMOS_READ(RTC_CONTROL);
  498. tmp &=  ~RTC_PIE;
  499. tmp &=  ~RTC_AIE;
  500. tmp &=  ~RTC_UIE;
  501. CMOS_WRITE(tmp, RTC_CONTROL);
  502. CMOS_READ(RTC_INTR_FLAGS);
  503. if (rtc_status & RTC_TIMER_ON) {
  504. rtc_status &= ~RTC_TIMER_ON;
  505. del_timer(&rtc_irq_timer);
  506. }
  507. spin_unlock_irq(&rtc_lock);
  508. if (file->f_flags & FASYNC) {
  509. rtc_fasync (-1, file, 0);
  510. }
  511. no_irq:
  512. #endif
  513. spin_lock_irq (&rtc_lock);
  514. rtc_irq_data = 0;
  515. spin_unlock_irq (&rtc_lock);
  516. /* No need for locking -- nobody else can do anything until this rmw is
  517.  * committed, and no timer is running. */
  518. rtc_status &= ~RTC_IS_OPEN;
  519. return 0;
  520. }
  521. #if RTC_IRQ
  522. /* Called without the kernel lock - fine */
  523. static unsigned int rtc_poll(struct file *file, poll_table *wait)
  524. {
  525. unsigned long l;
  526. if (rtc_has_irq == 0)
  527. return 0;
  528. poll_wait(file, &rtc_wait, wait);
  529. spin_lock_irq (&rtc_lock);
  530. l = rtc_irq_data;
  531. spin_unlock_irq (&rtc_lock);
  532. if (l != 0)
  533. return POLLIN | POLLRDNORM;
  534. return 0;
  535. }
  536. #endif
  537. /*
  538.  * The various file operations we support.
  539.  */
  540. static struct file_operations rtc_fops = {
  541. owner: THIS_MODULE,
  542. llseek: no_llseek,
  543. read: rtc_read,
  544. #if RTC_IRQ
  545. poll: rtc_poll,
  546. #endif
  547. ioctl: rtc_ioctl,
  548. open: rtc_open,
  549. release: rtc_release,
  550. fasync: rtc_fasync,
  551. };
  552. static struct miscdevice rtc_dev=
  553. {
  554. RTC_MINOR,
  555. "rtc",
  556. &rtc_fops
  557. };
  558. static int __init rtc_init(void)
  559. {
  560. #if defined(__alpha__) || defined(__mips__)
  561. unsigned int year, ctrl;
  562. unsigned long uip_watchdog;
  563. char *guess = NULL;
  564. #endif
  565. #ifdef __sparc__
  566. struct linux_ebus *ebus;
  567. struct linux_ebus_device *edev;
  568. #ifdef __sparc_v9__
  569. struct isa_bridge *isa_br;
  570. struct isa_device *isa_dev;
  571. #endif
  572. #endif
  573. #ifdef __sparc__
  574. for_each_ebus(ebus) {
  575. for_each_ebusdev(edev, ebus) {
  576. if(strcmp(edev->prom_name, "rtc") == 0) {
  577. rtc_port = edev->resource[0].start;
  578. rtc_irq = edev->irqs[0];
  579. goto found;
  580. }
  581. }
  582. }
  583. #ifdef __sparc_v9__
  584. for_each_isa(isa_br) {
  585. for_each_isadev(isa_dev, isa_br) {
  586. if (strcmp(isa_dev->prom_name, "rtc") == 0) {
  587. rtc_port = isa_dev->resource.start;
  588. rtc_irq = isa_dev->irq;
  589. goto found;
  590. }
  591. }
  592. }
  593. #endif
  594. printk(KERN_ERR "rtc_init: no PC rtc foundn");
  595. return -EIO;
  596. found:
  597. if (rtc_irq == PCI_IRQ_NONE) {
  598. rtc_has_irq = 0;
  599. goto no_irq;
  600. }
  601. /*
  602.  * XXX Interrupt pin #7 in Espresso is shared between RTC and
  603.  * PCI Slot 2 INTA# (and some INTx# in Slot 1). SA_INTERRUPT here
  604.  * is asking for trouble with add-on boards. Change to SA_SHIRQ.
  605.  */
  606. if (request_irq(rtc_irq, rtc_interrupt, SA_INTERRUPT, "rtc", (void *)&rtc_port)) {
  607. /*
  608.  * Standard way for sparc to print irq's is to use
  609.  * __irq_itoa(). I think for EBus it's ok to use %d.
  610.  */
  611. printk(KERN_ERR "rtc: cannot register IRQ %dn", rtc_irq);
  612. return -EIO;
  613. }
  614. no_irq:
  615. #else
  616. if (check_region (RTC_PORT (0), RTC_IO_EXTENT))
  617. {
  618. printk(KERN_ERR "rtc: I/O port %d is not free.n", RTC_PORT (0));
  619. return -EIO;
  620. }
  621. #if RTC_IRQ
  622. if(request_irq(RTC_IRQ, rtc_interrupt, SA_INTERRUPT, "rtc", NULL))
  623. {
  624. /* Yeah right, seeing as irq 8 doesn't even hit the bus. */
  625. printk(KERN_ERR "rtc: IRQ %d is not free.n", RTC_IRQ);
  626. return -EIO;
  627. }
  628. #endif
  629. request_region(RTC_PORT(0), RTC_IO_EXTENT, "rtc");
  630. #endif /* __sparc__ vs. others */
  631. misc_register(&rtc_dev);
  632. create_proc_read_entry ("driver/rtc", 0, 0, rtc_read_proc, NULL);
  633. #if defined(__alpha__) || defined(__mips__)
  634. rtc_freq = HZ;
  635. /* Each operating system on an Alpha uses its own epoch.
  636.    Let's try to guess which one we are using now. */
  637. uip_watchdog = jiffies;
  638. if (rtc_is_updating() != 0)
  639. while (jiffies - uip_watchdog < 2*HZ/100) { 
  640. barrier();
  641. cpu_relax();
  642. }
  643. spin_lock_irq(&rtc_lock);
  644. year = CMOS_READ(RTC_YEAR);
  645. ctrl = CMOS_READ(RTC_CONTROL);
  646. spin_unlock_irq(&rtc_lock);
  647. if (!(ctrl & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
  648. BCD_TO_BIN(year);       /* This should never happen... */
  649. if (year < 20) {
  650. epoch = 2000;
  651. guess = "SRM (post-2000)";
  652. } else if (year >= 20 && year < 48) {
  653. epoch = 1980;
  654. guess = "ARC console";
  655. } else if (year >= 48 && year < 72) {
  656. epoch = 1952;
  657. guess = "Digital UNIX";
  658. #if defined(__mips__)
  659. } else if (year >= 72 && year < 74) {
  660. epoch = 2000;
  661. guess = "Digital DECstation";
  662. #else
  663. } else if (year >= 70) {
  664. epoch = 1900;
  665. guess = "Standard PC (1900)";
  666. #endif
  667. }
  668. if (guess)
  669. printk(KERN_INFO "rtc: %s epoch (%lu) detectedn", guess, epoch);
  670. #endif
  671. #if RTC_IRQ
  672. if (rtc_has_irq == 0)
  673. goto no_irq2;
  674. init_timer(&rtc_irq_timer);
  675. rtc_irq_timer.function = rtc_dropped_irq;
  676. spin_lock_irq(&rtc_lock);
  677. /* Initialize periodic freq. to CMOS reset default, which is 1024Hz */
  678. CMOS_WRITE(((CMOS_READ(RTC_FREQ_SELECT) & 0xF0) | 0x06), RTC_FREQ_SELECT);
  679. spin_unlock_irq(&rtc_lock);
  680. rtc_freq = 1024;
  681. no_irq2:
  682. #endif
  683. printk(KERN_INFO "Real Time Clock Driver v" RTC_VERSION "n");
  684. return 0;
  685. }
  686. static void __exit rtc_exit (void)
  687. {
  688. remove_proc_entry ("driver/rtc", NULL);
  689. misc_deregister(&rtc_dev);
  690. #ifdef __sparc__
  691. if (rtc_has_irq)
  692. free_irq (rtc_irq, &rtc_port);
  693. #else
  694. release_region (RTC_PORT (0), RTC_IO_EXTENT);
  695. #if RTC_IRQ
  696. if (rtc_has_irq)
  697. free_irq (RTC_IRQ, NULL);
  698. #endif
  699. #endif /* __sparc__ */
  700. }
  701. module_init(rtc_init);
  702. module_exit(rtc_exit);
  703. EXPORT_NO_SYMBOLS;
  704. #if RTC_IRQ
  705. /*
  706.  *  At IRQ rates >= 4096Hz, an interrupt may get lost altogether.
  707.  * (usually during an IDE disk interrupt, with IRQ unmasking off)
  708.  * Since the interrupt handler doesn't get called, the IRQ status
  709.  * byte doesn't get read, and the RTC stops generating interrupts.
  710.  * A timer is set, and will call this function if/when that happens.
  711.  * To get it out of this stalled state, we just read the status.
  712.  * At least a jiffy of interrupts (rtc_freq/HZ) will have been lost.
  713.  * (You *really* shouldn't be trying to use a non-realtime system 
  714.  * for something that requires a steady > 1KHz signal anyways.)
  715.  */
  716. static void rtc_dropped_irq(unsigned long data)
  717. {
  718. unsigned long freq;
  719. spin_lock_irq (&rtc_lock);
  720. /* Just in case someone disabled the timer from behind our back... */
  721. if (rtc_status & RTC_TIMER_ON)
  722. mod_timer(&rtc_irq_timer, jiffies + HZ/rtc_freq + 2*HZ/100);
  723. rtc_irq_data += ((rtc_freq/HZ)<<8);
  724. rtc_irq_data &= ~0xff;
  725. rtc_irq_data |= (CMOS_READ(RTC_INTR_FLAGS) & 0xF0); /* restart */
  726. freq = rtc_freq;
  727. spin_unlock_irq(&rtc_lock);
  728. printk(KERN_WARNING "rtc: lost some interrupts at %ldHz.n", freq);
  729. /* Now we have new data */
  730. wake_up_interruptible(&rtc_wait);
  731. kill_fasync (&rtc_async_queue, SIGIO, POLL_IN);
  732. }
  733. #endif
  734. /*
  735.  * Info exported via "/proc/driver/rtc".
  736.  */
  737. static int rtc_proc_output (char *buf)
  738. {
  739. #define YN(bit) ((ctrl & bit) ? "yes" : "no")
  740. #define NY(bit) ((ctrl & bit) ? "no" : "yes")
  741. char *p;
  742. struct rtc_time tm;
  743. unsigned char batt, ctrl;
  744. unsigned long freq;
  745. spin_lock_irq(&rtc_lock);
  746. batt = CMOS_READ(RTC_VALID) & RTC_VRT;
  747. ctrl = CMOS_READ(RTC_CONTROL);
  748. freq = rtc_freq;
  749. spin_unlock_irq(&rtc_lock);
  750. p = buf;
  751. get_rtc_time(&tm);
  752. /*
  753.  * There is no way to tell if the luser has the RTC set for local
  754.  * time or for Universal Standard Time (GMT). Probably local though.
  755.  */
  756. p += sprintf(p,
  757.      "rtc_timet: %02d:%02d:%02dn"
  758.      "rtc_datet: %04d-%02d-%02dn"
  759.        "rtc_epocht: %04lun",
  760.      tm.tm_hour, tm.tm_min, tm.tm_sec,
  761.      tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, epoch);
  762. get_rtc_alm_time(&tm);
  763. /*
  764.  * We implicitly assume 24hr mode here. Alarm values >= 0xc0 will
  765.  * match any value for that particular field. Values that are
  766.  * greater than a valid time, but less than 0xc0 shouldn't appear.
  767.  */
  768. p += sprintf(p, "alarmtt: ");
  769. if (tm.tm_hour <= 24)
  770. p += sprintf(p, "%02d:", tm.tm_hour);
  771. else
  772. p += sprintf(p, "**:");
  773. if (tm.tm_min <= 59)
  774. p += sprintf(p, "%02d:", tm.tm_min);
  775. else
  776. p += sprintf(p, "**:");
  777. if (tm.tm_sec <= 59)
  778. p += sprintf(p, "%02dn", tm.tm_sec);
  779. else
  780. p += sprintf(p, "**n");
  781. p += sprintf(p,
  782.      "DST_enablet: %sn"
  783.      "BCDtt: %sn"
  784.      "24hrtt: %sn"
  785.      "square_wavet: %sn"
  786.      "alarm_IRQt: %sn"
  787.      "update_IRQt: %sn"
  788.      "periodic_IRQt: %sn"
  789.      "periodic_freqt: %ldn"
  790.      "batt_statust: %sn",
  791.      YN(RTC_DST_EN),
  792.      NY(RTC_DM_BINARY),
  793.      YN(RTC_24H),
  794.      YN(RTC_SQWE),
  795.      YN(RTC_AIE),
  796.      YN(RTC_UIE),
  797.      YN(RTC_PIE),
  798.      freq,
  799.      batt ? "okay" : "dead");
  800. return  p - buf;
  801. #undef YN
  802. #undef NY
  803. }
  804. static int rtc_read_proc(char *page, char **start, off_t off,
  805.                          int count, int *eof, void *data)
  806. {
  807.         int len = rtc_proc_output (page);
  808.         if (len <= off+count) *eof = 1;
  809.         *start = page + off;
  810.         len -= off;
  811.         if (len>count) len = count;
  812.         if (len<0) len = 0;
  813.         return len;
  814. }
  815. /*
  816.  * Returns true if a clock update is in progress
  817.  */
  818. /* FIXME shouldn't this be above rtc_init to make it fully inlined? */
  819. static inline unsigned char rtc_is_updating(void)
  820. {
  821. unsigned char uip;
  822. spin_lock_irq(&rtc_lock);
  823. uip = (CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP);
  824. spin_unlock_irq(&rtc_lock);
  825. return uip;
  826. }
  827. static void get_rtc_time(struct rtc_time *rtc_tm)
  828. {
  829. unsigned long uip_watchdog = jiffies;
  830. unsigned char ctrl;
  831. #ifdef CONFIG_DECSTATION
  832. unsigned int real_year;
  833. #endif
  834. /*
  835.  * read RTC once any update in progress is done. The update
  836.  * can take just over 2ms. We wait 10 to 20ms. There is no need to
  837.  * to poll-wait (up to 1s - eeccch) for the falling edge of RTC_UIP.
  838.  * If you need to know *exactly* when a second has started, enable
  839.  * periodic update complete interrupts, (via ioctl) and then 
  840.  * immediately read /dev/rtc which will block until you get the IRQ.
  841.  * Once the read clears, read the RTC time (again via ioctl). Easy.
  842.  */
  843. if (rtc_is_updating() != 0)
  844. while (jiffies - uip_watchdog < 2*HZ/100) {
  845. barrier();
  846. cpu_relax();
  847. }
  848. /*
  849.  * Only the values that we read from the RTC are set. We leave
  850.  * tm_wday, tm_yday and tm_isdst untouched. Even though the
  851.  * RTC has RTC_DAY_OF_WEEK, we ignore it, as it is only updated
  852.  * by the RTC when initially set to a non-zero value.
  853.  */
  854. spin_lock_irq(&rtc_lock);
  855. rtc_tm->tm_sec = CMOS_READ(RTC_SECONDS);
  856. rtc_tm->tm_min = CMOS_READ(RTC_MINUTES);
  857. rtc_tm->tm_hour = CMOS_READ(RTC_HOURS);
  858. rtc_tm->tm_mday = CMOS_READ(RTC_DAY_OF_MONTH);
  859. rtc_tm->tm_mon = CMOS_READ(RTC_MONTH);
  860. rtc_tm->tm_year = CMOS_READ(RTC_YEAR);
  861. #ifdef CONFIG_DECSTATION
  862. real_year = CMOS_READ(RTC_DEC_YEAR);
  863. #endif
  864. ctrl = CMOS_READ(RTC_CONTROL);
  865. spin_unlock_irq(&rtc_lock);
  866. if (!(ctrl & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
  867. {
  868. BCD_TO_BIN(rtc_tm->tm_sec);
  869. BCD_TO_BIN(rtc_tm->tm_min);
  870. BCD_TO_BIN(rtc_tm->tm_hour);
  871. BCD_TO_BIN(rtc_tm->tm_mday);
  872. BCD_TO_BIN(rtc_tm->tm_mon);
  873. BCD_TO_BIN(rtc_tm->tm_year);
  874. }
  875. #ifdef CONFIG_DECSTATION
  876. rtc_tm->tm_year += real_year - 72;
  877. #endif
  878. /*
  879.  * Account for differences between how the RTC uses the values
  880.  * and how they are defined in a struct rtc_time;
  881.  */
  882. if ((rtc_tm->tm_year += (epoch - 1900)) <= 69)
  883. rtc_tm->tm_year += 100;
  884. rtc_tm->tm_mon--;
  885. }
  886. static void get_rtc_alm_time(struct rtc_time *alm_tm)
  887. {
  888. unsigned char ctrl;
  889. /*
  890.  * Only the values that we read from the RTC are set. That
  891.  * means only tm_hour, tm_min, and tm_sec.
  892.  */
  893. spin_lock_irq(&rtc_lock);
  894. alm_tm->tm_sec = CMOS_READ(RTC_SECONDS_ALARM);
  895. alm_tm->tm_min = CMOS_READ(RTC_MINUTES_ALARM);
  896. alm_tm->tm_hour = CMOS_READ(RTC_HOURS_ALARM);
  897. ctrl = CMOS_READ(RTC_CONTROL);
  898. spin_unlock_irq(&rtc_lock);
  899. if (!(ctrl & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
  900. {
  901. BCD_TO_BIN(alm_tm->tm_sec);
  902. BCD_TO_BIN(alm_tm->tm_min);
  903. BCD_TO_BIN(alm_tm->tm_hour);
  904. }
  905. }
  906. #if RTC_IRQ
  907. /*
  908.  * Used to disable/enable interrupts for any one of UIE, AIE, PIE.
  909.  * Rumour has it that if you frob the interrupt enable/disable
  910.  * bits in RTC_CONTROL, you should read RTC_INTR_FLAGS, to
  911.  * ensure you actually start getting interrupts. Probably for
  912.  * compatibility with older/broken chipset RTC implementations.
  913.  * We also clear out any old irq data after an ioctl() that
  914.  * meddles with the interrupt enable/disable bits.
  915.  */
  916. static void mask_rtc_irq_bit(unsigned char bit)
  917. {
  918. unsigned char val;
  919. spin_lock_irq(&rtc_lock);
  920. val = CMOS_READ(RTC_CONTROL);
  921. val &=  ~bit;
  922. CMOS_WRITE(val, RTC_CONTROL);
  923. CMOS_READ(RTC_INTR_FLAGS);
  924. rtc_irq_data = 0;
  925. spin_unlock_irq(&rtc_lock);
  926. }
  927. static void set_rtc_irq_bit(unsigned char bit)
  928. {
  929. unsigned char val;
  930. spin_lock_irq(&rtc_lock);
  931. val = CMOS_READ(RTC_CONTROL);
  932. val |= bit;
  933. CMOS_WRITE(val, RTC_CONTROL);
  934. CMOS_READ(RTC_INTR_FLAGS);
  935. rtc_irq_data = 0;
  936. spin_unlock_irq(&rtc_lock);
  937. }
  938. #endif
  939. MODULE_AUTHOR("Paul Gortmaker");
  940. MODULE_LICENSE("GPL");