rtc-dec.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

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 DS1287 chip.
  7.  *
  8.  * Copyright (C) 1998, 2001 by Ralf Baechle
  9.  * Copyright (C) 1998 by Harald Koerfgen
  10.  * Copyright (C) 2002  Maciej W. Rozycki
  11.  */
  12. #include <linux/mc146818rtc.h>
  13. #include <linux/types.h>
  14. volatile u8 *dec_rtc_base;
  15. static unsigned char dec_rtc_read_data(unsigned long addr)
  16. {
  17. return dec_rtc_base[addr * 4];
  18. }
  19. static void dec_rtc_write_data(unsigned char data, unsigned long addr)
  20. {
  21. dec_rtc_base[addr * 4] = data;
  22. }
  23. static int dec_rtc_bcd_mode(void)
  24. {
  25. return 0;
  26. }
  27. struct rtc_ops dec_rtc_ops = {
  28. &dec_rtc_read_data,
  29. &dec_rtc_write_data,
  30. &dec_rtc_bcd_mode
  31. };