rtc-std.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 PC style attached Dallas chip.
  7.  *
  8.  * Copyright (C) 1998, 2001 by Ralf Baechle
  9.  */
  10. #include <linux/mc146818rtc.h>
  11. #include <asm/io.h>
  12. static unsigned char std_rtc_read_data(unsigned long addr)
  13. {
  14. outb_p(addr, RTC_PORT(0));
  15. return inb_p(RTC_PORT(1));
  16. }
  17. static void std_rtc_write_data(unsigned char data, unsigned long addr)
  18. {
  19. outb_p(addr, RTC_PORT(0));
  20. outb_p(data, RTC_PORT(1));
  21. }
  22. static int std_rtc_bcd_mode(void)
  23. {
  24. return 1;
  25. }
  26. struct rtc_ops std_rtc_ops = {
  27. &std_rtc_read_data,
  28. &std_rtc_write_data,
  29. &std_rtc_bcd_mode
  30. };