ds1685.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Definitions for the registers, addresses, and platform data of the
  4. * DS1685/DS1687-series RTC chips.
  5. *
  6. * This Driver also works for the DS17X85/DS17X87 RTC chips. Functionally
  7. * similar to the DS1685/DS1687, they support a few extra features which
  8. * include larger, battery-backed NV-SRAM, burst-mode access, and an RTC
  9. * write counter.
  10. *
  11. * Copyright (C) 2011-2014 Joshua Kinard <[email protected]>.
  12. * Copyright (C) 2009 Matthias Fuchs <[email protected]>.
  13. *
  14. * References:
  15. * DS1685/DS1687 3V/5V Real-Time Clocks, 19-5215, Rev 4/10.
  16. * DS17x85/DS17x87 3V/5V Real-Time Clocks, 19-5222, Rev 4/10.
  17. * DS1689/DS1693 3V/5V Serialized Real-Time Clocks, Rev 112105.
  18. * Application Note 90, Using the Multiplex Bus RTC Extended Features.
  19. */
  20. #ifndef _LINUX_RTC_DS1685_H_
  21. #define _LINUX_RTC_DS1685_H_
  22. #include <linux/rtc.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/workqueue.h>
  25. /**
  26. * struct ds1685_priv - DS1685 private data structure.
  27. * @dev: pointer to the rtc_device structure.
  28. * @regs: iomapped base address pointer of the RTC registers.
  29. * @regstep: padding/step size between registers (optional).
  30. * @baseaddr: base address of the RTC device.
  31. * @size: resource size.
  32. * @lock: private lock variable for spin locking/unlocking.
  33. * @work: private workqueue.
  34. * @irq: IRQ number assigned to the RTC device.
  35. * @prepare_poweroff: pointer to platform pre-poweroff function.
  36. * @wake_alarm: pointer to platform wake alarm function.
  37. * @post_ram_clear: pointer to platform post ram-clear function.
  38. */
  39. struct ds1685_priv {
  40. struct rtc_device *dev;
  41. void __iomem *regs;
  42. void __iomem *data;
  43. u32 regstep;
  44. int irq_num;
  45. bool bcd_mode;
  46. u8 (*read)(struct ds1685_priv *, int);
  47. void (*write)(struct ds1685_priv *, int, u8);
  48. void (*prepare_poweroff)(void);
  49. void (*wake_alarm)(void);
  50. void (*post_ram_clear)(void);
  51. };
  52. /**
  53. * struct ds1685_rtc_platform_data - platform data structure.
  54. * @plat_prepare_poweroff: platform-specific pre-poweroff function.
  55. * @plat_wake_alarm: platform-specific wake alarm function.
  56. * @plat_post_ram_clear: platform-specific post ram-clear function.
  57. *
  58. * If your platform needs to use a custom padding/step size between
  59. * registers, or uses one or more of the extended interrupts and needs special
  60. * handling, then include this header file in your platform definition and
  61. * set regstep and the plat_* pointers as appropriate.
  62. */
  63. struct ds1685_rtc_platform_data {
  64. const u32 regstep;
  65. const bool bcd_mode;
  66. const bool no_irq;
  67. const bool uie_unsupported;
  68. void (*plat_prepare_poweroff)(void);
  69. void (*plat_wake_alarm)(void);
  70. void (*plat_post_ram_clear)(void);
  71. enum {
  72. ds1685_reg_direct,
  73. ds1685_reg_indirect
  74. } access_type;
  75. };
  76. /*
  77. * Time Registers.
  78. */
  79. #define RTC_SECS 0x00 /* Seconds 00-59 */
  80. #define RTC_SECS_ALARM 0x01 /* Alarm Seconds 00-59 */
  81. #define RTC_MINS 0x02 /* Minutes 00-59 */
  82. #define RTC_MINS_ALARM 0x03 /* Alarm Minutes 00-59 */
  83. #define RTC_HRS 0x04 /* Hours 01-12 AM/PM || 00-23 */
  84. #define RTC_HRS_ALARM 0x05 /* Alarm Hours 01-12 AM/PM || 00-23 */
  85. #define RTC_WDAY 0x06 /* Day of Week 01-07 */
  86. #define RTC_MDAY 0x07 /* Day of Month 01-31 */
  87. #define RTC_MONTH 0x08 /* Month 01-12 */
  88. #define RTC_YEAR 0x09 /* Year 00-99 */
  89. #define RTC_CENTURY 0x48 /* Century 00-99 */
  90. #define RTC_MDAY_ALARM 0x49 /* Alarm Day of Month 01-31 */
  91. /*
  92. * Bit masks for the Time registers in BCD Mode (DM = 0).
  93. */
  94. #define RTC_SECS_BCD_MASK 0x7f /* - x x x x x x x */
  95. #define RTC_MINS_BCD_MASK 0x7f /* - x x x x x x x */
  96. #define RTC_HRS_12_BCD_MASK 0x1f /* - - - x x x x x */
  97. #define RTC_HRS_24_BCD_MASK 0x3f /* - - x x x x x x */
  98. #define RTC_MDAY_BCD_MASK 0x3f /* - - x x x x x x */
  99. #define RTC_MONTH_BCD_MASK 0x1f /* - - - x x x x x */
  100. #define RTC_YEAR_BCD_MASK 0xff /* x x x x x x x x */
  101. /*
  102. * Bit masks for the Time registers in BIN Mode (DM = 1).
  103. */
  104. #define RTC_SECS_BIN_MASK 0x3f /* - - x x x x x x */
  105. #define RTC_MINS_BIN_MASK 0x3f /* - - x x x x x x */
  106. #define RTC_HRS_12_BIN_MASK 0x0f /* - - - - x x x x */
  107. #define RTC_HRS_24_BIN_MASK 0x1f /* - - - x x x x x */
  108. #define RTC_MDAY_BIN_MASK 0x1f /* - - - x x x x x */
  109. #define RTC_MONTH_BIN_MASK 0x0f /* - - - - x x x x */
  110. #define RTC_YEAR_BIN_MASK 0x7f /* - x x x x x x x */
  111. /*
  112. * Bit masks common for the Time registers in BCD or BIN Mode.
  113. */
  114. #define RTC_WDAY_MASK 0x07 /* - - - - - x x x */
  115. #define RTC_CENTURY_MASK 0xff /* x x x x x x x x */
  116. #define RTC_MDAY_ALARM_MASK 0xff /* x x x x x x x x */
  117. #define RTC_HRS_AMPM_MASK BIT(7) /* Mask for the AM/PM bit */
  118. /*
  119. * Control Registers.
  120. */
  121. #define RTC_CTRL_A 0x0a /* Control Register A */
  122. #define RTC_CTRL_B 0x0b /* Control Register B */
  123. #define RTC_CTRL_C 0x0c /* Control Register C */
  124. #define RTC_CTRL_D 0x0d /* Control Register D */
  125. #define RTC_EXT_CTRL_4A 0x4a /* Extended Control Register 4A */
  126. #define RTC_EXT_CTRL_4B 0x4b /* Extended Control Register 4B */
  127. /*
  128. * Bit names in Control Register A.
  129. */
  130. #define RTC_CTRL_A_UIP BIT(7) /* Update In Progress */
  131. #define RTC_CTRL_A_DV2 BIT(6) /* Countdown Chain */
  132. #define RTC_CTRL_A_DV1 BIT(5) /* Oscillator Enable */
  133. #define RTC_CTRL_A_DV0 BIT(4) /* Bank Select */
  134. #define RTC_CTRL_A_RS2 BIT(2) /* Rate-Selection Bit 2 */
  135. #define RTC_CTRL_A_RS3 BIT(3) /* Rate-Selection Bit 3 */
  136. #define RTC_CTRL_A_RS1 BIT(1) /* Rate-Selection Bit 1 */
  137. #define RTC_CTRL_A_RS0 BIT(0) /* Rate-Selection Bit 0 */
  138. #define RTC_CTRL_A_RS_MASK 0x0f /* RS3 + RS2 + RS1 + RS0 */
  139. /*
  140. * Bit names in Control Register B.
  141. */
  142. #define RTC_CTRL_B_SET BIT(7) /* SET Bit */
  143. #define RTC_CTRL_B_PIE BIT(6) /* Periodic-Interrupt Enable */
  144. #define RTC_CTRL_B_AIE BIT(5) /* Alarm-Interrupt Enable */
  145. #define RTC_CTRL_B_UIE BIT(4) /* Update-Ended Interrupt-Enable */
  146. #define RTC_CTRL_B_SQWE BIT(3) /* Square-Wave Enable */
  147. #define RTC_CTRL_B_DM BIT(2) /* Data Mode */
  148. #define RTC_CTRL_B_2412 BIT(1) /* 12-Hr/24-Hr Mode */
  149. #define RTC_CTRL_B_DSE BIT(0) /* Daylight Savings Enable */
  150. #define RTC_CTRL_B_PAU_MASK 0x70 /* PIE + AIE + UIE */
  151. /*
  152. * Bit names in Control Register C.
  153. *
  154. * BIT(0), BIT(1), BIT(2), & BIT(3) are unused, always return 0, and cannot
  155. * be written to.
  156. */
  157. #define RTC_CTRL_C_IRQF BIT(7) /* Interrupt-Request Flag */
  158. #define RTC_CTRL_C_PF BIT(6) /* Periodic-Interrupt Flag */
  159. #define RTC_CTRL_C_AF BIT(5) /* Alarm-Interrupt Flag */
  160. #define RTC_CTRL_C_UF BIT(4) /* Update-Ended Interrupt Flag */
  161. #define RTC_CTRL_C_PAU_MASK 0x70 /* PF + AF + UF */
  162. /*
  163. * Bit names in Control Register D.
  164. *
  165. * BIT(0) through BIT(6) are unused, always return 0, and cannot
  166. * be written to.
  167. */
  168. #define RTC_CTRL_D_VRT BIT(7) /* Valid RAM and Time */
  169. /*
  170. * Bit names in Extended Control Register 4A.
  171. *
  172. * On the DS1685/DS1687/DS1689/DS1693, BIT(4) and BIT(5) are reserved for
  173. * future use. They can be read from and written to, but have no effect
  174. * on the RTC's operation.
  175. *
  176. * On the DS17x85/DS17x87, BIT(5) is Burst-Mode Enable (BME), and allows
  177. * access to the extended NV-SRAM by automatically incrementing the address
  178. * register when they are read from or written to.
  179. */
  180. #define RTC_CTRL_4A_VRT2 BIT(7) /* Auxillary Battery Status */
  181. #define RTC_CTRL_4A_INCR BIT(6) /* Increment-in-Progress Status */
  182. #define RTC_CTRL_4A_PAB BIT(3) /* Power-Active Bar Control */
  183. #define RTC_CTRL_4A_RF BIT(2) /* RAM-Clear Flag */
  184. #define RTC_CTRL_4A_WF BIT(1) /* Wake-Up Alarm Flag */
  185. #define RTC_CTRL_4A_KF BIT(0) /* Kickstart Flag */
  186. #if !defined(CONFIG_RTC_DRV_DS1685) && !defined(CONFIG_RTC_DRV_DS1689)
  187. #define RTC_CTRL_4A_BME BIT(5) /* Burst-Mode Enable */
  188. #endif
  189. #define RTC_CTRL_4A_RWK_MASK 0x07 /* RF + WF + KF */
  190. /*
  191. * Bit names in Extended Control Register 4B.
  192. */
  193. #define RTC_CTRL_4B_ABE BIT(7) /* Auxillary Battery Enable */
  194. #define RTC_CTRL_4B_E32K BIT(6) /* Enable 32.768Hz on SQW Pin */
  195. #define RTC_CTRL_4B_CS BIT(5) /* Crystal Select */
  196. #define RTC_CTRL_4B_RCE BIT(4) /* RAM Clear-Enable */
  197. #define RTC_CTRL_4B_PRS BIT(3) /* PAB Reset-Select */
  198. #define RTC_CTRL_4B_RIE BIT(2) /* RAM Clear-Interrupt Enable */
  199. #define RTC_CTRL_4B_WIE BIT(1) /* Wake-Up Alarm-Interrupt Enable */
  200. #define RTC_CTRL_4B_KSE BIT(0) /* Kickstart Interrupt-Enable */
  201. #define RTC_CTRL_4B_RWK_MASK 0x07 /* RIE + WIE + KSE */
  202. /*
  203. * Misc register names in Bank 1.
  204. *
  205. * The DV0 bit in Control Register A must be set to 1 for these registers
  206. * to become available, including Extended Control Registers 4A & 4B.
  207. */
  208. #define RTC_BANK1_SSN_MODEL 0x40 /* Model Number */
  209. #define RTC_BANK1_SSN_BYTE_1 0x41 /* 1st Byte of Serial Number */
  210. #define RTC_BANK1_SSN_BYTE_2 0x42 /* 2nd Byte of Serial Number */
  211. #define RTC_BANK1_SSN_BYTE_3 0x43 /* 3rd Byte of Serial Number */
  212. #define RTC_BANK1_SSN_BYTE_4 0x44 /* 4th Byte of Serial Number */
  213. #define RTC_BANK1_SSN_BYTE_5 0x45 /* 5th Byte of Serial Number */
  214. #define RTC_BANK1_SSN_BYTE_6 0x46 /* 6th Byte of Serial Number */
  215. #define RTC_BANK1_SSN_CRC 0x47 /* Serial CRC Byte */
  216. #define RTC_BANK1_RAM_DATA_PORT 0x53 /* Extended RAM Data Port */
  217. /*
  218. * Model-specific registers in Bank 1.
  219. *
  220. * The addresses below differ depending on the model of the RTC chip
  221. * selected in the kernel configuration. Not all of these features are
  222. * supported in the main driver at present.
  223. *
  224. * DS1685/DS1687 - Extended NV-SRAM address (LSB only).
  225. * DS1689/DS1693 - Vcc, Vbat, Pwr Cycle Counters & Customer-specific S/N.
  226. * DS17x85/DS17x87 - Extended NV-SRAM addresses (MSB & LSB) & Write counter.
  227. */
  228. #if defined(CONFIG_RTC_DRV_DS1685)
  229. #define RTC_BANK1_RAM_ADDR 0x50 /* NV-SRAM Addr */
  230. #elif defined(CONFIG_RTC_DRV_DS1689)
  231. #define RTC_BANK1_VCC_CTR_LSB 0x54 /* Vcc Counter Addr (LSB) */
  232. #define RTC_BANK1_VCC_CTR_MSB 0x57 /* Vcc Counter Addr (MSB) */
  233. #define RTC_BANK1_VBAT_CTR_LSB 0x58 /* Vbat Counter Addr (LSB) */
  234. #define RTC_BANK1_VBAT_CTR_MSB 0x5b /* Vbat Counter Addr (MSB) */
  235. #define RTC_BANK1_PWR_CTR_LSB 0x5c /* Pwr Cycle Counter Addr (LSB) */
  236. #define RTC_BANK1_PWR_CTR_MSB 0x5d /* Pwr Cycle Counter Addr (MSB) */
  237. #define RTC_BANK1_UNIQ_SN 0x60 /* Customer-specific S/N */
  238. #else /* DS17x85/DS17x87 */
  239. #define RTC_BANK1_RAM_ADDR_LSB 0x50 /* NV-SRAM Addr (LSB) */
  240. #define RTC_BANK1_RAM_ADDR_MSB 0x51 /* NV-SRAM Addr (MSB) */
  241. #define RTC_BANK1_WRITE_CTR 0x5e /* RTC Write Counter */
  242. #endif
  243. /*
  244. * Model numbers.
  245. *
  246. * The DS1688/DS1691 and DS1689/DS1693 chips share the same model number
  247. * and the manual doesn't indicate any major differences. As such, they
  248. * are regarded as the same chip in this driver.
  249. */
  250. #define RTC_MODEL_DS1685 0x71 /* DS1685/DS1687 */
  251. #define RTC_MODEL_DS17285 0x72 /* DS17285/DS17287 */
  252. #define RTC_MODEL_DS1689 0x73 /* DS1688/DS1691/DS1689/DS1693 */
  253. #define RTC_MODEL_DS17485 0x74 /* DS17485/DS17487 */
  254. #define RTC_MODEL_DS17885 0x78 /* DS17885/DS17887 */
  255. /*
  256. * Periodic Interrupt Rates / Square-Wave Output Frequency
  257. *
  258. * Periodic rates are selected by setting the RS3-RS0 bits in Control
  259. * Register A and enabled via either the E32K bit in Extended Control
  260. * Register 4B or the SQWE bit in Control Register B.
  261. *
  262. * E32K overrides the settings of RS3-RS0 and outputs a frequency of 32768Hz
  263. * on the SQW pin of the RTC chip. While there are 16 possible selections,
  264. * the 1-of-16 decoder is only able to divide the base 32768Hz signal into 13
  265. * smaller frequencies. The values 0x01 and 0x02 are not used and are
  266. * synonymous with 0x08 and 0x09, respectively.
  267. *
  268. * When E32K is set to a logic 1, periodic interrupts are disabled and reading
  269. * /dev/rtc will return -EINVAL. This also applies if the periodic interrupt
  270. * frequency is set to 0Hz.
  271. *
  272. * Not currently used by the rtc-ds1685 driver because the RTC core removed
  273. * support for hardware-generated periodic-interrupts in favour of
  274. * hrtimer-generated interrupts. But these defines are kept around for use
  275. * in userland, as documentation to the hardware, and possible future use if
  276. * hardware-generated periodic interrupts are ever added back.
  277. */
  278. /* E32K RS3 RS2 RS1 RS0 */
  279. #define RTC_SQW_8192HZ 0x03 /* 0 0 0 1 1 */
  280. #define RTC_SQW_4096HZ 0x04 /* 0 0 1 0 0 */
  281. #define RTC_SQW_2048HZ 0x05 /* 0 0 1 0 1 */
  282. #define RTC_SQW_1024HZ 0x06 /* 0 0 1 1 0 */
  283. #define RTC_SQW_512HZ 0x07 /* 0 0 1 1 1 */
  284. #define RTC_SQW_256HZ 0x08 /* 0 1 0 0 0 */
  285. #define RTC_SQW_128HZ 0x09 /* 0 1 0 0 1 */
  286. #define RTC_SQW_64HZ 0x0a /* 0 1 0 1 0 */
  287. #define RTC_SQW_32HZ 0x0b /* 0 1 0 1 1 */
  288. #define RTC_SQW_16HZ 0x0c /* 0 1 1 0 0 */
  289. #define RTC_SQW_8HZ 0x0d /* 0 1 1 0 1 */
  290. #define RTC_SQW_4HZ 0x0e /* 0 1 1 1 0 */
  291. #define RTC_SQW_2HZ 0x0f /* 0 1 1 1 1 */
  292. #define RTC_SQW_0HZ 0x00 /* 0 0 0 0 0 */
  293. #define RTC_SQW_32768HZ 32768 /* 1 - - - - */
  294. #define RTC_MAX_USER_FREQ 8192
  295. /*
  296. * NVRAM data & addresses:
  297. * - 50 bytes of NVRAM are available just past the clock registers.
  298. * - 64 additional bytes are available in Bank0.
  299. *
  300. * Extended, battery-backed NV-SRAM:
  301. * - DS1685/DS1687 - 128 bytes.
  302. * - DS1689/DS1693 - 0 bytes.
  303. * - DS17285/DS17287 - 2048 bytes.
  304. * - DS17485/DS17487 - 4096 bytes.
  305. * - DS17885/DS17887 - 8192 bytes.
  306. */
  307. #define NVRAM_TIME_BASE 0x0e /* NVRAM Addr in Time regs */
  308. #define NVRAM_BANK0_BASE 0x40 /* NVRAM Addr in Bank0 regs */
  309. #define NVRAM_SZ_TIME 50
  310. #define NVRAM_SZ_BANK0 64
  311. #if defined(CONFIG_RTC_DRV_DS1685)
  312. # define NVRAM_SZ_EXTND 128
  313. #elif defined(CONFIG_RTC_DRV_DS1689)
  314. # define NVRAM_SZ_EXTND 0
  315. #elif defined(CONFIG_RTC_DRV_DS17285)
  316. # define NVRAM_SZ_EXTND 2048
  317. #elif defined(CONFIG_RTC_DRV_DS17485)
  318. # define NVRAM_SZ_EXTND 4096
  319. #elif defined(CONFIG_RTC_DRV_DS17885)
  320. # define NVRAM_SZ_EXTND 8192
  321. #endif
  322. #define NVRAM_TOTAL_SZ_BANK0 (NVRAM_SZ_TIME + NVRAM_SZ_BANK0)
  323. #define NVRAM_TOTAL_SZ (NVRAM_TOTAL_SZ_BANK0 + NVRAM_SZ_EXTND)
  324. /*
  325. * Function Prototypes.
  326. */
  327. extern void __noreturn
  328. ds1685_rtc_poweroff(struct platform_device *pdev);
  329. #endif /* _LINUX_RTC_DS1685_H_ */