rtc.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 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. #include <asm/au1000.h>
  13. #define PB1500_RTC_ADDR 0xAC000000
  14. unsigned char std_rtc_read_data(unsigned long offset)
  15. {
  16. offset <<= 2;
  17. return (u8)(au_readl(offset + PB1500_RTC_ADDR) & 0xff);
  18. }
  19. static void std_rtc_write_data(unsigned char data, unsigned long offset)
  20. {
  21. offset <<= 2;
  22. au_writel(data, offset + PB1500_RTC_ADDR);
  23. }
  24. static int std_rtc_bcd_mode(void)
  25. {
  26. return 1;
  27. }
  28. struct rtc_ops pb1500_rtc_ops = {
  29. &std_rtc_read_data,
  30. &std_rtc_write_data,
  31. &std_rtc_bcd_mode
  32. };