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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * RTC routines for DECstation style attached Dallas chip.
  7.  *
  8.  * Copyright (C) 1998, 2001 by Ralf Baechle
  9.  * Copyright (C) 1998 by Harald Koerfgen
  10.  */
  11. #include <linux/mc146818rtc.h>
  12. extern char *dec_rtc_base;
  13. static unsigned char dec_rtc_read_data(unsigned long addr)
  14. {
  15.     return (dec_rtc_base[addr * 4]);
  16. }
  17. static void dec_rtc_write_data(unsigned char data, unsigned long addr)
  18. {
  19.     dec_rtc_base[addr * 4] = data;
  20. }
  21. static int dec_rtc_bcd_mode(void)
  22. {
  23.     return 0;
  24. }
  25. struct rtc_ops dec_rtc_ops =
  26. {
  27.     &dec_rtc_read_data,
  28.     &dec_rtc_write_data,
  29.     &dec_rtc_bcd_mode
  30. };