mc146818rtc.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Copyright (C) 1999, 2000, 2005 MIPS Technologies, Inc.
  3. * All rights reserved.
  4. * Authors: Carsten Langgaard <carstenl@mips.com>
  5. * Maciej W. Rozycki <macro@mips.com>
  6. * Copyright (C) 2003, 05 Ralf Baechle (ralf@linux-mips.org)
  7. *
  8. * This program is free software; you can distribute it and/or modify it
  9. * under the terms of the GNU General Public License (Version 2) as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope it will be useful, but WITHOUT
  13. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  15. * for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program; if not, write to the Free Software Foundation, Inc.,
  19. * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  20. */
  21. #ifndef __ASM_MACH_ATLAS_MC146818RTC_H
  22. #define __ASM_MACH_ATLAS_MC146818RTC_H
  23. #include <linux/types.h>
  24. #include <asm/addrspace.h>
  25. #include <asm/mips-boards/atlas.h>
  26. #include <asm/mips-boards/atlasint.h>
  27. #define ARCH_RTC_LOCATION
  28. #define RTC_PORT(x) (ATLAS_RTC_ADR_REG + (x) * 8)
  29. #define RTC_IO_EXTENT 0x100
  30. #define RTC_IOMAPPED 0
  31. #define RTC_IRQ ATLAS_INT_RTC
  32. static inline unsigned char CMOS_READ(unsigned long addr)
  33. {
  34. volatile u32 *ireg = (void *)CKSEG1ADDR(RTC_PORT(0));
  35. volatile u32 *dreg = (void *)CKSEG1ADDR(RTC_PORT(1));
  36. *ireg = addr;
  37. return *dreg;
  38. }
  39. static inline void CMOS_WRITE(unsigned char data, unsigned long addr)
  40. {
  41. volatile u32 *ireg = (void *)CKSEG1ADDR(RTC_PORT(0));
  42. volatile u32 *dreg = (void *)CKSEG1ADDR(RTC_PORT(1));
  43. *ireg = addr;
  44. *dreg = data;
  45. }
  46. #define RTC_ALWAYS_BCD 0
  47. #define mc146818_decode_year(year) ((year) < 70 ? (year) + 2000 : (year) + 1900)
  48. #endif /* __ASM_MACH_ATLAS_MC146818RTC_H */