m48t59.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * include/linux/rtc/m48t59.h
  4. *
  5. * Definitions for the platform data of m48t59 RTC chip driver.
  6. *
  7. * Copyright (c) 2007 Wind River Systems, Inc.
  8. *
  9. * Mark Zhan <[email protected]>
  10. */
  11. #ifndef _LINUX_RTC_M48T59_H_
  12. #define _LINUX_RTC_M48T59_H_
  13. /*
  14. * M48T59 Register Offset
  15. */
  16. #define M48T59_YEAR 0xf
  17. #define M48T59_MONTH 0xe
  18. #define M48T59_MDAY 0xd /* Day of Month */
  19. #define M48T59_WDAY 0xc /* Day of Week */
  20. #define M48T59_WDAY_CB 0x20 /* Century Bit */
  21. #define M48T59_WDAY_CEB 0x10 /* Century Enable Bit */
  22. #define M48T59_HOUR 0xb
  23. #define M48T59_MIN 0xa
  24. #define M48T59_SEC 0x9
  25. #define M48T59_CNTL 0x8
  26. #define M48T59_CNTL_READ 0x40
  27. #define M48T59_CNTL_WRITE 0x80
  28. #define M48T59_WATCHDOG 0x7
  29. #define M48T59_INTR 0x6
  30. #define M48T59_INTR_AFE 0x80 /* Alarm Interrupt Enable */
  31. #define M48T59_INTR_ABE 0x20
  32. #define M48T59_ALARM_DATE 0x5
  33. #define M48T59_ALARM_HOUR 0x4
  34. #define M48T59_ALARM_MIN 0x3
  35. #define M48T59_ALARM_SEC 0x2
  36. #define M48T59_UNUSED 0x1
  37. #define M48T59_FLAGS 0x0
  38. #define M48T59_FLAGS_WDT 0x80 /* watchdog timer expired */
  39. #define M48T59_FLAGS_AF 0x40 /* alarm */
  40. #define M48T59_FLAGS_BF 0x10 /* low battery */
  41. #define M48T59RTC_TYPE_M48T59 0 /* to keep compatibility */
  42. #define M48T59RTC_TYPE_M48T02 1
  43. #define M48T59RTC_TYPE_M48T08 2
  44. struct m48t59_plat_data {
  45. /* The method to access M48T59 registers */
  46. void (*write_byte)(struct device *dev, u32 ofs, u8 val);
  47. unsigned char (*read_byte)(struct device *dev, u32 ofs);
  48. int type; /* RTC model */
  49. /* ioaddr mapped externally */
  50. void __iomem *ioaddr;
  51. /* offset to RTC registers, automatically set according to the type */
  52. unsigned int offset;
  53. };
  54. #endif /* _LINUX_RTC_M48T59_H_ */