2 * rtc-ab-b5ze-s3 - Driver for Abracon AB-RTCMC-32.768Khz-B5ZE-S3
5 * Copyright (C) 2014, Arnaud EBALARD <arno@natisbad.org>
7 * Detailed datasheet of the chip is available here:
9 * http://www.abracon.com/realtimeclock/AB-RTCMC-32.768kHz-B5ZE-S3-Application-Manual.pdf
11 * This work is based on ISL12057 driver (drivers/rtc/rtc-isl12057.c).
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
24 #include <linux/module.h>
25 #include <linux/mutex.h>
26 #include <linux/rtc.h>
27 #include <linux/i2c.h>
28 #include <linux/bcd.h>
30 #include <linux/regmap.h>
31 #include <linux/interrupt.h>
33 #define DRV_NAME "rtc-ab-b5ze-s3"
36 #define ABB5ZES3_REG_CTRL1 0x00 /* Control 1 register */
37 #define ABB5ZES3_REG_CTRL1_CIE BIT(0) /* Pulse interrupt enable */
38 #define ABB5ZES3_REG_CTRL1_AIE BIT(1) /* Alarm interrupt enable */
39 #define ABB5ZES3_REG_CTRL1_SIE BIT(2) /* Second interrupt enable */
40 #define ABB5ZES3_REG_CTRL1_PM BIT(3) /* 24h/12h mode */
41 #define ABB5ZES3_REG_CTRL1_SR BIT(4) /* Software reset */
42 #define ABB5ZES3_REG_CTRL1_STOP BIT(5) /* RTC circuit enable */
43 #define ABB5ZES3_REG_CTRL1_CAP BIT(7)
45 #define ABB5ZES3_REG_CTRL2 0x01 /* Control 2 register */
46 #define ABB5ZES3_REG_CTRL2_CTBIE BIT(0) /* Countdown timer B int. enable */
47 #define ABB5ZES3_REG_CTRL2_CTAIE BIT(1) /* Countdown timer A int. enable */
48 #define ABB5ZES3_REG_CTRL2_WTAIE BIT(2) /* Watchdog timer A int. enable */
49 #define ABB5ZES3_REG_CTRL2_AF BIT(3) /* Alarm interrupt status */
50 #define ABB5ZES3_REG_CTRL2_SF BIT(4) /* Second interrupt status */
51 #define ABB5ZES3_REG_CTRL2_CTBF BIT(5) /* Countdown timer B int. status */
52 #define ABB5ZES3_REG_CTRL2_CTAF BIT(6) /* Countdown timer A int. status */
53 #define ABB5ZES3_REG_CTRL2_WTAF BIT(7) /* Watchdog timer A int. status */
55 #define ABB5ZES3_REG_CTRL3 0x02 /* Control 3 register */
56 #define ABB5ZES3_REG_CTRL3_PM2 BIT(7) /* Power Management bit 2 */
57 #define ABB5ZES3_REG_CTRL3_PM1 BIT(6) /* Power Management bit 1 */
58 #define ABB5ZES3_REG_CTRL3_PM0 BIT(5) /* Power Management bit 0 */
59 #define ABB5ZES3_REG_CTRL3_BSF BIT(3) /* Battery switchover int. status */
60 #define ABB5ZES3_REG_CTRL3_BLF BIT(2) /* Battery low int. status */
61 #define ABB5ZES3_REG_CTRL3_BSIE BIT(1) /* Battery switchover int. enable */
62 #define ABB5ZES3_REG_CTRL3_BLIE BIT(0) /* Battery low int. enable */
64 #define ABB5ZES3_CTRL_SEC_LEN 3
67 #define ABB5ZES3_REG_RTC_SC 0x03 /* RTC Seconds register */
68 #define ABB5ZES3_REG_RTC_SC_OSC BIT(7) /* Clock integrity status */
69 #define ABB5ZES3_REG_RTC_MN 0x04 /* RTC Minutes register */
70 #define ABB5ZES3_REG_RTC_HR 0x05 /* RTC Hours register */
71 #define ABB5ZES3_REG_RTC_HR_PM BIT(5) /* RTC Hours PM bit */
72 #define ABB5ZES3_REG_RTC_DT 0x06 /* RTC Date register */
73 #define ABB5ZES3_REG_RTC_DW 0x07 /* RTC Day of the week register */
74 #define ABB5ZES3_REG_RTC_MO 0x08 /* RTC Month register */
75 #define ABB5ZES3_REG_RTC_YR 0x09 /* RTC Year register */
77 #define ABB5ZES3_RTC_SEC_LEN 7
79 /* Alarm section (enable bits are all active low) */
80 #define ABB5ZES3_REG_ALRM_MN 0x0A /* Alarm - minute register */
81 #define ABB5ZES3_REG_ALRM_MN_AE BIT(7) /* Minute enable */
82 #define ABB5ZES3_REG_ALRM_HR 0x0B /* Alarm - hours register */
83 #define ABB5ZES3_REG_ALRM_HR_AE BIT(7) /* Hour enable */
84 #define ABB5ZES3_REG_ALRM_DT 0x0C /* Alarm - date register */
85 #define ABB5ZES3_REG_ALRM_DT_AE BIT(7) /* Date (day of the month) enable */
86 #define ABB5ZES3_REG_ALRM_DW 0x0D /* Alarm - day of the week reg. */
87 #define ABB5ZES3_REG_ALRM_DW_AE BIT(7) /* Day of the week enable */
89 #define ABB5ZES3_ALRM_SEC_LEN 4
91 /* Frequency offset section */
92 #define ABB5ZES3_REG_FREQ_OF 0x0E /* Frequency offset register */
93 #define ABB5ZES3_REG_FREQ_OF_MODE 0x0E /* Offset mode: 2 hours / minute */
95 /* CLOCKOUT section */
96 #define ABB5ZES3_REG_TIM_CLK 0x0F /* Timer & Clockout register */
97 #define ABB5ZES3_REG_TIM_CLK_TAM BIT(7) /* Permanent/pulsed timer A/int. 2 */
98 #define ABB5ZES3_REG_TIM_CLK_TBM BIT(6) /* Permanent/pulsed timer B */
99 #define ABB5ZES3_REG_TIM_CLK_COF2 BIT(5) /* Clkout Freq bit 2 */
100 #define ABB5ZES3_REG_TIM_CLK_COF1 BIT(4) /* Clkout Freq bit 1 */
101 #define ABB5ZES3_REG_TIM_CLK_COF0 BIT(3) /* Clkout Freq bit 0 */
102 #define ABB5ZES3_REG_TIM_CLK_TAC1 BIT(2) /* Timer A: - 01 : countdown */
103 #define ABB5ZES3_REG_TIM_CLK_TAC0 BIT(1) /* - 10 : timer */
104 #define ABB5ZES3_REG_TIM_CLK_TBC BIT(0) /* Timer B enable */
106 /* Timer A Section */
107 #define ABB5ZES3_REG_TIMA_CLK 0x10 /* Timer A clock register */
108 #define ABB5ZES3_REG_TIMA_CLK_TAQ2 BIT(2) /* Freq bit 2 */
109 #define ABB5ZES3_REG_TIMA_CLK_TAQ1 BIT(1) /* Freq bit 1 */
110 #define ABB5ZES3_REG_TIMA_CLK_TAQ0 BIT(0) /* Freq bit 0 */
111 #define ABB5ZES3_REG_TIMA 0x11 /* Timer A register */
113 #define ABB5ZES3_TIMA_SEC_LEN 2
115 /* Timer B Section */
116 #define ABB5ZES3_REG_TIMB_CLK 0x12 /* Timer B clock register */
117 #define ABB5ZES3_REG_TIMB_CLK_TBW2 BIT(6)
118 #define ABB5ZES3_REG_TIMB_CLK_TBW1 BIT(5)
119 #define ABB5ZES3_REG_TIMB_CLK_TBW0 BIT(4)
120 #define ABB5ZES3_REG_TIMB_CLK_TAQ2 BIT(2)
121 #define ABB5ZES3_REG_TIMB_CLK_TAQ1 BIT(1)
122 #define ABB5ZES3_REG_TIMB_CLK_TAQ0 BIT(0)
123 #define ABB5ZES3_REG_TIMB 0x13 /* Timer B register */
124 #define ABB5ZES3_TIMB_SEC_LEN 2
126 #define ABB5ZES3_MEM_MAP_LEN 0x14
128 struct abb5zes3_rtc_data
{
129 struct rtc_device
*rtc
;
130 struct regmap
*regmap
;
136 bool timer_alarm
; /* current alarm is via timer A */
140 * Try and match register bits w/ fixed null values to see whether we
141 * are dealing with an ABB5ZES3. Note: this function is called early
142 * during init and hence does need mutex protection.
144 static int abb5zes3_i2c_validate_chip(struct regmap
*regmap
)
146 u8 regs
[ABB5ZES3_MEM_MAP_LEN
];
147 static const u8 mask
[ABB5ZES3_MEM_MAP_LEN
] = { 0x00, 0x00, 0x10, 0x00,
148 0x80, 0xc0, 0xc0, 0xf8,
149 0xe0, 0x00, 0x00, 0x40,
150 0x40, 0x78, 0x00, 0x00,
151 0xf8, 0x00, 0x88, 0x00 };
154 ret
= regmap_bulk_read(regmap
, 0, regs
, ABB5ZES3_MEM_MAP_LEN
);
158 for (i
= 0; i
< ABB5ZES3_MEM_MAP_LEN
; ++i
) {
159 if (regs
[i
] & mask
[i
]) /* check if bits are cleared */
166 /* Clear alarm status bit. */
167 static int _abb5zes3_rtc_clear_alarm(struct device
*dev
)
169 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
172 ret
= regmap_update_bits(data
->regmap
, ABB5ZES3_REG_CTRL2
,
173 ABB5ZES3_REG_CTRL2_AF
, 0);
175 dev_err(dev
, "%s: clearing alarm failed (%d)\n", __func__
, ret
);
180 /* Enable or disable alarm (i.e. alarm interrupt generation) */
181 static int _abb5zes3_rtc_update_alarm(struct device
*dev
, bool enable
)
183 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
186 ret
= regmap_update_bits(data
->regmap
, ABB5ZES3_REG_CTRL1
,
187 ABB5ZES3_REG_CTRL1_AIE
,
188 enable
? ABB5ZES3_REG_CTRL1_AIE
: 0);
190 dev_err(dev
, "%s: writing alarm INT failed (%d)\n",
196 /* Enable or disable timer (watchdog timer A interrupt generation) */
197 static int _abb5zes3_rtc_update_timer(struct device
*dev
, bool enable
)
199 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
202 ret
= regmap_update_bits(data
->regmap
, ABB5ZES3_REG_CTRL2
,
203 ABB5ZES3_REG_CTRL2_WTAIE
,
204 enable
? ABB5ZES3_REG_CTRL2_WTAIE
: 0);
206 dev_err(dev
, "%s: writing timer INT failed (%d)\n",
213 * Note: we only read, so regmap inner lock protection is sufficient, i.e.
214 * we do not need driver's main lock protection.
216 static int _abb5zes3_rtc_read_time(struct device
*dev
, struct rtc_time
*tm
)
218 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
219 u8 regs
[ABB5ZES3_REG_RTC_SC
+ ABB5ZES3_RTC_SEC_LEN
];
223 * As we need to read CTRL1 register anyway to access 24/12h
224 * mode bit, we do a single bulk read of both control and RTC
225 * sections (they are consecutive). This also ease indexing
226 * of register values after bulk read.
228 ret
= regmap_bulk_read(data
->regmap
, ABB5ZES3_REG_CTRL1
, regs
,
231 dev_err(dev
, "%s: reading RTC time failed (%d)\n",
236 /* If clock integrity is not guaranteed, do not return a time value */
237 if (regs
[ABB5ZES3_REG_RTC_SC
] & ABB5ZES3_REG_RTC_SC_OSC
) {
242 tm
->tm_sec
= bcd2bin(regs
[ABB5ZES3_REG_RTC_SC
] & 0x7F);
243 tm
->tm_min
= bcd2bin(regs
[ABB5ZES3_REG_RTC_MN
]);
245 if (regs
[ABB5ZES3_REG_CTRL1
] & ABB5ZES3_REG_CTRL1_PM
) { /* 12hr mode */
246 tm
->tm_hour
= bcd2bin(regs
[ABB5ZES3_REG_RTC_HR
] & 0x1f);
247 if (regs
[ABB5ZES3_REG_RTC_HR
] & ABB5ZES3_REG_RTC_HR_PM
) /* PM */
249 } else { /* 24hr mode */
250 tm
->tm_hour
= bcd2bin(regs
[ABB5ZES3_REG_RTC_HR
]);
253 tm
->tm_mday
= bcd2bin(regs
[ABB5ZES3_REG_RTC_DT
]);
254 tm
->tm_wday
= bcd2bin(regs
[ABB5ZES3_REG_RTC_DW
]);
255 tm
->tm_mon
= bcd2bin(regs
[ABB5ZES3_REG_RTC_MO
]) - 1; /* starts at 1 */
256 tm
->tm_year
= bcd2bin(regs
[ABB5ZES3_REG_RTC_YR
]) + 100;
258 ret
= rtc_valid_tm(tm
);
264 static int abb5zes3_rtc_set_time(struct device
*dev
, struct rtc_time
*tm
)
266 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
267 u8 regs
[ABB5ZES3_REG_RTC_SC
+ ABB5ZES3_RTC_SEC_LEN
];
271 * Year register is 8-bit wide and bcd-coded, i.e records values
272 * between 0 and 99. tm_year is an offset from 1900 and we are
273 * interested in the 2000-2099 range, so any value less than 100
276 if (tm
->tm_year
< 100)
279 regs
[ABB5ZES3_REG_RTC_SC
] = bin2bcd(tm
->tm_sec
); /* MSB=0 clears OSC */
280 regs
[ABB5ZES3_REG_RTC_MN
] = bin2bcd(tm
->tm_min
);
281 regs
[ABB5ZES3_REG_RTC_HR
] = bin2bcd(tm
->tm_hour
); /* 24-hour format */
282 regs
[ABB5ZES3_REG_RTC_DT
] = bin2bcd(tm
->tm_mday
);
283 regs
[ABB5ZES3_REG_RTC_DW
] = bin2bcd(tm
->tm_wday
);
284 regs
[ABB5ZES3_REG_RTC_MO
] = bin2bcd(tm
->tm_mon
+ 1);
285 regs
[ABB5ZES3_REG_RTC_YR
] = bin2bcd(tm
->tm_year
- 100);
287 mutex_lock(&data
->lock
);
288 ret
= regmap_bulk_write(data
->regmap
, ABB5ZES3_REG_RTC_SC
,
289 regs
+ ABB5ZES3_REG_RTC_SC
,
290 ABB5ZES3_RTC_SEC_LEN
);
291 mutex_unlock(&data
->lock
);
298 * Set provided TAQ and Timer A registers (TIMA_CLK and TIMA) based on
299 * given number of seconds.
301 static inline void sec_to_timer_a(u8 secs
, u8
*taq
, u8
*timer_a
)
303 *taq
= ABB5ZES3_REG_TIMA_CLK_TAQ1
; /* 1Hz */
308 * Return current number of seconds in Timer A. As we only use
309 * timer A with a 1Hz freq, this is what we expect to have.
311 static inline int sec_from_timer_a(u8
*secs
, u8 taq
, u8 timer_a
)
313 if (taq
!= ABB5ZES3_REG_TIMA_CLK_TAQ1
) /* 1Hz */
322 * Read alarm currently configured via a watchdog timer using timer A. This
323 * is done by reading current RTC time and adding remaining timer time.
325 static int _abb5zes3_rtc_read_timer(struct device
*dev
,
326 struct rtc_wkalrm
*alarm
)
328 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
329 struct rtc_time rtc_tm
, *alarm_tm
= &alarm
->time
;
330 u8 regs
[ABB5ZES3_TIMA_SEC_LEN
+ 1];
331 unsigned long rtc_secs
;
337 * Instead of doing two separate calls, because they are consecutive,
338 * we grab both clockout register and Timer A section. The latter is
339 * used to decide if timer A is enabled (as a watchdog timer).
341 ret
= regmap_bulk_read(data
->regmap
, ABB5ZES3_REG_TIM_CLK
, regs
,
342 ABB5ZES3_TIMA_SEC_LEN
+ 1);
344 dev_err(dev
, "%s: reading Timer A section failed (%d)\n",
349 /* get current time ... */
350 ret
= _abb5zes3_rtc_read_time(dev
, &rtc_tm
);
354 /* ... convert to seconds ... */
355 ret
= rtc_tm_to_time(&rtc_tm
, &rtc_secs
);
359 /* ... add remaining timer A time ... */
360 ret
= sec_from_timer_a(&timer_secs
, regs
[1], regs
[2]);
364 /* ... and convert back. */
365 rtc_time_to_tm(rtc_secs
+ timer_secs
, alarm_tm
);
367 ret
= regmap_read(data
->regmap
, ABB5ZES3_REG_CTRL2
, ®
);
369 dev_err(dev
, "%s: reading ctrl reg failed (%d)\n",
374 alarm
->enabled
= !!(reg
& ABB5ZES3_REG_CTRL2_WTAIE
);
380 /* Read alarm currently configured via a RTC alarm registers. */
381 static int _abb5zes3_rtc_read_alarm(struct device
*dev
,
382 struct rtc_wkalrm
*alarm
)
384 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
385 struct rtc_time rtc_tm
, *alarm_tm
= &alarm
->time
;
386 unsigned long rtc_secs
, alarm_secs
;
387 u8 regs
[ABB5ZES3_ALRM_SEC_LEN
];
391 ret
= regmap_bulk_read(data
->regmap
, ABB5ZES3_REG_ALRM_MN
, regs
,
392 ABB5ZES3_ALRM_SEC_LEN
);
394 dev_err(dev
, "%s: reading alarm section failed (%d)\n",
399 alarm_tm
->tm_sec
= 0;
400 alarm_tm
->tm_min
= bcd2bin(regs
[0] & 0x7f);
401 alarm_tm
->tm_hour
= bcd2bin(regs
[1] & 0x3f);
402 alarm_tm
->tm_mday
= bcd2bin(regs
[2] & 0x3f);
403 alarm_tm
->tm_wday
= -1;
406 * The alarm section does not store year/month. We use the ones in rtc
407 * section as a basis and increment month and then year if needed to get
408 * alarm after current time.
410 ret
= _abb5zes3_rtc_read_time(dev
, &rtc_tm
);
414 alarm_tm
->tm_year
= rtc_tm
.tm_year
;
415 alarm_tm
->tm_mon
= rtc_tm
.tm_mon
;
417 ret
= rtc_tm_to_time(&rtc_tm
, &rtc_secs
);
421 ret
= rtc_tm_to_time(alarm_tm
, &alarm_secs
);
425 if (alarm_secs
< rtc_secs
) {
426 if (alarm_tm
->tm_mon
== 11) {
427 alarm_tm
->tm_mon
= 0;
428 alarm_tm
->tm_year
+= 1;
430 alarm_tm
->tm_mon
+= 1;
434 ret
= regmap_read(data
->regmap
, ABB5ZES3_REG_CTRL1
, ®
);
436 dev_err(dev
, "%s: reading ctrl reg failed (%d)\n",
441 alarm
->enabled
= !!(reg
& ABB5ZES3_REG_CTRL1_AIE
);
448 * As the Alarm mechanism supported by the chip is only accurate to the
449 * minute, we use the watchdog timer mechanism provided by timer A
450 * (up to 256 seconds w/ a second accuracy) for low alarm values (below
451 * 4 minutes). Otherwise, we use the common alarm mechanism provided
452 * by the chip. In order for that to work, we keep track of currently
453 * configured timer type via 'timer_alarm' flag in our private data
456 static int abb5zes3_rtc_read_alarm(struct device
*dev
, struct rtc_wkalrm
*alarm
)
458 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
461 mutex_lock(&data
->lock
);
462 if (data
->timer_alarm
)
463 ret
= _abb5zes3_rtc_read_timer(dev
, alarm
);
465 ret
= _abb5zes3_rtc_read_alarm(dev
, alarm
);
466 mutex_unlock(&data
->lock
);
472 * Set alarm using chip alarm mechanism. It is only accurate to the
473 * minute (not the second). The function expects alarm interrupt to
476 static int _abb5zes3_rtc_set_alarm(struct device
*dev
, struct rtc_wkalrm
*alarm
)
478 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
479 struct rtc_time
*alarm_tm
= &alarm
->time
;
480 unsigned long rtc_secs
, alarm_secs
;
481 u8 regs
[ABB5ZES3_ALRM_SEC_LEN
];
482 struct rtc_time rtc_tm
;
485 ret
= _abb5zes3_rtc_read_time(dev
, &rtc_tm
);
489 ret
= rtc_tm_to_time(&rtc_tm
, &rtc_secs
);
493 ret
= rtc_tm_to_time(alarm_tm
, &alarm_secs
);
497 /* If alarm time is before current time, disable the alarm */
498 if (!alarm
->enabled
|| alarm_secs
<= rtc_secs
) {
502 * Chip only support alarms up to one month in the future. Let's
503 * return an error if we get something after that limit.
504 * Comparison is done by incrementing rtc_tm month field by one
505 * and checking alarm value is still below.
507 if (rtc_tm
.tm_mon
== 11) { /* handle year wrapping */
514 ret
= rtc_tm_to_time(&rtc_tm
, &rtc_secs
);
518 if (alarm_secs
> rtc_secs
) {
519 dev_err(dev
, "%s: alarm maximum is one month in the "
520 "future (%d)\n", __func__
, ret
);
527 * Program all alarm registers but DW one. For each register, setting
528 * MSB to 0 enables associated alarm.
530 regs
[0] = bin2bcd(alarm_tm
->tm_min
) & 0x7f;
531 regs
[1] = bin2bcd(alarm_tm
->tm_hour
) & 0x3f;
532 regs
[2] = bin2bcd(alarm_tm
->tm_mday
) & 0x3f;
533 regs
[3] = ABB5ZES3_REG_ALRM_DW_AE
; /* do not match day of the week */
535 ret
= regmap_bulk_write(data
->regmap
, ABB5ZES3_REG_ALRM_MN
, regs
,
536 ABB5ZES3_ALRM_SEC_LEN
);
538 dev_err(dev
, "%s: writing ALARM section failed (%d)\n",
543 /* Record currently configured alarm is not a timer */
544 data
->timer_alarm
= 0;
546 /* Enable or disable alarm interrupt generation */
547 ret
= _abb5zes3_rtc_update_alarm(dev
, enable
);
554 * Set alarm using timer watchdog (via timer A) mechanism. The function expects
555 * timer A interrupt to be disabled.
557 static int _abb5zes3_rtc_set_timer(struct device
*dev
, struct rtc_wkalrm
*alarm
,
560 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
561 u8 regs
[ABB5ZES3_TIMA_SEC_LEN
];
562 u8 mask
= ABB5ZES3_REG_TIM_CLK_TAC0
| ABB5ZES3_REG_TIM_CLK_TAC1
;
565 /* Program given number of seconds to Timer A registers */
566 sec_to_timer_a(secs
, ®s
[0], ®s
[1]);
567 ret
= regmap_bulk_write(data
->regmap
, ABB5ZES3_REG_TIMA_CLK
, regs
,
568 ABB5ZES3_TIMA_SEC_LEN
);
570 dev_err(dev
, "%s: writing timer section failed\n", __func__
);
574 /* Configure Timer A as a watchdog timer */
575 ret
= regmap_update_bits(data
->regmap
, ABB5ZES3_REG_TIM_CLK
,
576 mask
, ABB5ZES3_REG_TIM_CLK_TAC1
);
578 dev_err(dev
, "%s: failed to update timer\n", __func__
);
580 /* Record currently configured alarm is a timer */
581 data
->timer_alarm
= 1;
583 /* Enable or disable timer interrupt generation */
584 ret
= _abb5zes3_rtc_update_timer(dev
, alarm
->enabled
);
591 * The chip has an alarm which is only accurate to the minute. In order to
592 * handle alarms below that limit, we use the watchdog timer function of
593 * timer A. More precisely, the timer method is used for alarms below 240
596 static int abb5zes3_rtc_set_alarm(struct device
*dev
, struct rtc_wkalrm
*alarm
)
598 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
599 struct rtc_time
*alarm_tm
= &alarm
->time
;
600 unsigned long rtc_secs
, alarm_secs
;
601 struct rtc_time rtc_tm
;
604 mutex_lock(&data
->lock
);
605 ret
= _abb5zes3_rtc_read_time(dev
, &rtc_tm
);
609 ret
= rtc_tm_to_time(&rtc_tm
, &rtc_secs
);
613 ret
= rtc_tm_to_time(alarm_tm
, &alarm_secs
);
617 /* Let's first disable both the alarm and the timer interrupts */
618 ret
= _abb5zes3_rtc_update_alarm(dev
, false);
620 dev_err(dev
, "%s: unable to disable alarm (%d)\n", __func__
,
624 ret
= _abb5zes3_rtc_update_timer(dev
, false);
626 dev_err(dev
, "%s: unable to disable timer (%d)\n", __func__
,
631 data
->timer_alarm
= 0;
634 * Let's now configure the alarm; if we are expected to ring in
635 * more than 240s, then we setup an alarm. Otherwise, a timer.
637 if ((alarm_secs
> rtc_secs
) && ((alarm_secs
- rtc_secs
) <= 240))
638 ret
= _abb5zes3_rtc_set_timer(dev
, alarm
,
639 alarm_secs
- rtc_secs
);
641 ret
= _abb5zes3_rtc_set_alarm(dev
, alarm
);
644 mutex_unlock(&data
->lock
);
647 dev_err(dev
, "%s: unable to configure alarm (%d)\n", __func__
,
653 /* Enable or disable battery low irq generation */
654 static inline int _abb5zes3_rtc_battery_low_irq_enable(struct regmap
*regmap
,
657 return regmap_update_bits(regmap
, ABB5ZES3_REG_CTRL3
,
658 ABB5ZES3_REG_CTRL3_BLIE
,
659 enable
? ABB5ZES3_REG_CTRL3_BLIE
: 0);
663 * Check current RTC status and enable/disable what needs to be. Return 0 if
664 * everything went ok and a negative value upon error. Note: this function
665 * is called early during init and hence does need mutex protection.
667 static int abb5zes3_rtc_check_setup(struct device
*dev
)
669 struct abb5zes3_rtc_data
*data
= dev_get_drvdata(dev
);
670 struct regmap
*regmap
= data
->regmap
;
676 * By default, the devices generates a 32.768KHz signal on IRQ#1 pin. It
677 * is disabled here to prevent polluting the interrupt line and
678 * uselessly triggering the IRQ handler we install for alarm and battery
679 * low events. Note: this is done before clearing int. status below
681 * We also disable all timers and set timer interrupt to permanent (not
684 mask
= (ABB5ZES3_REG_TIM_CLK_TBC
| ABB5ZES3_REG_TIM_CLK_TAC0
|
685 ABB5ZES3_REG_TIM_CLK_TAC1
| ABB5ZES3_REG_TIM_CLK_COF0
|
686 ABB5ZES3_REG_TIM_CLK_COF1
| ABB5ZES3_REG_TIM_CLK_COF2
|
687 ABB5ZES3_REG_TIM_CLK_TBM
| ABB5ZES3_REG_TIM_CLK_TAM
);
688 ret
= regmap_update_bits(regmap
, ABB5ZES3_REG_TIM_CLK
, mask
,
689 ABB5ZES3_REG_TIM_CLK_COF0
| ABB5ZES3_REG_TIM_CLK_COF1
|
690 ABB5ZES3_REG_TIM_CLK_COF2
);
692 dev_err(dev
, "%s: unable to initialize clkout register (%d)\n",
698 * Each component of the alarm (MN, HR, DT, DW) can be enabled/disabled
699 * individually by clearing/setting MSB of each associated register. So,
700 * we set all alarm enable bits to disable current alarm setting.
702 mask
= (ABB5ZES3_REG_ALRM_MN_AE
| ABB5ZES3_REG_ALRM_HR_AE
|
703 ABB5ZES3_REG_ALRM_DT_AE
| ABB5ZES3_REG_ALRM_DW_AE
);
704 ret
= regmap_update_bits(regmap
, ABB5ZES3_REG_CTRL2
, mask
, mask
);
706 dev_err(dev
, "%s: unable to disable alarm setting (%d)\n",
711 /* Set Control 1 register (RTC enabled, 24hr mode, all int. disabled) */
712 mask
= (ABB5ZES3_REG_CTRL1_CIE
| ABB5ZES3_REG_CTRL1_AIE
|
713 ABB5ZES3_REG_CTRL1_SIE
| ABB5ZES3_REG_CTRL1_PM
|
714 ABB5ZES3_REG_CTRL1_CAP
| ABB5ZES3_REG_CTRL1_STOP
);
715 ret
= regmap_update_bits(regmap
, ABB5ZES3_REG_CTRL1
, mask
, 0);
717 dev_err(dev
, "%s: unable to initialize CTRL1 register (%d)\n",
723 * Set Control 2 register (timer int. disabled, alarm status cleared).
724 * WTAF is read-only and cleared automatically by reading the register.
726 mask
= (ABB5ZES3_REG_CTRL2_CTBIE
| ABB5ZES3_REG_CTRL2_CTAIE
|
727 ABB5ZES3_REG_CTRL2_WTAIE
| ABB5ZES3_REG_CTRL2_AF
|
728 ABB5ZES3_REG_CTRL2_SF
| ABB5ZES3_REG_CTRL2_CTBF
|
729 ABB5ZES3_REG_CTRL2_CTAF
);
730 ret
= regmap_update_bits(regmap
, ABB5ZES3_REG_CTRL2
, mask
, 0);
732 dev_err(dev
, "%s: unable to initialize CTRL2 register (%d)\n",
738 * Enable battery low detection function and battery switchover function
739 * (standard mode). Disable associated interrupts. Clear battery
740 * switchover flag but not battery low flag. The latter is checked
743 mask
= (ABB5ZES3_REG_CTRL3_PM0
| ABB5ZES3_REG_CTRL3_PM1
|
744 ABB5ZES3_REG_CTRL3_PM2
| ABB5ZES3_REG_CTRL3_BLIE
|
745 ABB5ZES3_REG_CTRL3_BSIE
| ABB5ZES3_REG_CTRL3_BSF
);
746 ret
= regmap_update_bits(regmap
, ABB5ZES3_REG_CTRL3
, mask
, 0);
748 dev_err(dev
, "%s: unable to initialize CTRL3 register (%d)\n",
753 /* Check oscillator integrity flag */
754 ret
= regmap_read(regmap
, ABB5ZES3_REG_RTC_SC
, ®
);
756 dev_err(dev
, "%s: unable to read osc. integrity flag (%d)\n",
761 if (reg
& ABB5ZES3_REG_RTC_SC_OSC
) {
762 dev_err(dev
, "clock integrity not guaranteed. Osc. has stopped "
763 "or has been interrupted.\n");
764 dev_err(dev
, "change battery (if not already done) and "
765 "then set time to reset osc. failure flag.\n");
769 * Check battery low flag at startup: this allows reporting battery
770 * is low at startup when IRQ line is not connected. Note: we record
771 * current status to avoid reenabling this interrupt later in probe
772 * function if battery is low.
774 ret
= regmap_read(regmap
, ABB5ZES3_REG_CTRL3
, ®
);
776 dev_err(dev
, "%s: unable to read battery low flag (%d)\n",
781 data
->battery_low
= reg
& ABB5ZES3_REG_CTRL3_BLF
;
782 if (data
->battery_low
) {
783 dev_err(dev
, "RTC battery is low; please, consider "
786 ret
= _abb5zes3_rtc_battery_low_irq_enable(regmap
, false);
788 dev_err(dev
, "%s: disabling battery low interrupt "
789 "generation failed (%d)\n", __func__
, ret
);
795 static int abb5zes3_rtc_alarm_irq_enable(struct device
*dev
,
798 struct abb5zes3_rtc_data
*rtc_data
= dev_get_drvdata(dev
);
802 mutex_lock(&rtc_data
->lock
);
803 if (rtc_data
->timer_alarm
)
804 ret
= _abb5zes3_rtc_update_timer(dev
, enable
);
806 ret
= _abb5zes3_rtc_update_alarm(dev
, enable
);
807 mutex_unlock(&rtc_data
->lock
);
813 static irqreturn_t
_abb5zes3_rtc_interrupt(int irq
, void *data
)
815 struct i2c_client
*client
= data
;
816 struct device
*dev
= &client
->dev
;
817 struct abb5zes3_rtc_data
*rtc_data
= dev_get_drvdata(dev
);
818 struct rtc_device
*rtc
= rtc_data
->rtc
;
819 u8 regs
[ABB5ZES3_CTRL_SEC_LEN
];
820 int ret
, handled
= IRQ_NONE
;
822 ret
= regmap_bulk_read(rtc_data
->regmap
, 0, regs
,
823 ABB5ZES3_CTRL_SEC_LEN
);
825 dev_err(dev
, "%s: unable to read control section (%d)!\n",
831 * Check battery low detection flag and disable battery low interrupt
832 * generation if flag is set (interrupt can only be cleared when
833 * battery is replaced).
835 if (regs
[ABB5ZES3_REG_CTRL3
] & ABB5ZES3_REG_CTRL3_BLF
) {
836 dev_err(dev
, "RTC battery is low; please change it!\n");
838 _abb5zes3_rtc_battery_low_irq_enable(rtc_data
->regmap
, false);
840 handled
= IRQ_HANDLED
;
843 /* Check alarm flag */
844 if (regs
[ABB5ZES3_REG_CTRL2
] & ABB5ZES3_REG_CTRL2_AF
) {
845 dev_dbg(dev
, "RTC alarm!\n");
847 rtc_update_irq(rtc
, 1, RTC_IRQF
| RTC_AF
);
849 /* Acknowledge and disable the alarm */
850 _abb5zes3_rtc_clear_alarm(dev
);
851 _abb5zes3_rtc_update_alarm(dev
, 0);
853 handled
= IRQ_HANDLED
;
856 /* Check watchdog Timer A flag */
857 if (regs
[ABB5ZES3_REG_CTRL2
] & ABB5ZES3_REG_CTRL2_WTAF
) {
858 dev_dbg(dev
, "RTC timer!\n");
860 rtc_update_irq(rtc
, 1, RTC_IRQF
| RTC_AF
);
863 * Acknowledge and disable the alarm. Note: WTAF
864 * flag had been cleared when reading CTRL2
866 _abb5zes3_rtc_update_timer(dev
, 0);
868 rtc_data
->timer_alarm
= 0;
870 handled
= IRQ_HANDLED
;
876 static const struct rtc_class_ops rtc_ops
= {
877 .read_time
= _abb5zes3_rtc_read_time
,
878 .set_time
= abb5zes3_rtc_set_time
,
879 .read_alarm
= abb5zes3_rtc_read_alarm
,
880 .set_alarm
= abb5zes3_rtc_set_alarm
,
881 .alarm_irq_enable
= abb5zes3_rtc_alarm_irq_enable
,
884 static const struct regmap_config abb5zes3_rtc_regmap_config
= {
889 static int abb5zes3_probe(struct i2c_client
*client
,
890 const struct i2c_device_id
*id
)
892 struct abb5zes3_rtc_data
*data
= NULL
;
893 struct device
*dev
= &client
->dev
;
894 struct regmap
*regmap
;
897 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
|
898 I2C_FUNC_SMBUS_BYTE_DATA
|
899 I2C_FUNC_SMBUS_I2C_BLOCK
)) {
904 regmap
= devm_regmap_init_i2c(client
, &abb5zes3_rtc_regmap_config
);
905 if (IS_ERR(regmap
)) {
906 ret
= PTR_ERR(regmap
);
907 dev_err(dev
, "%s: regmap allocation failed: %d\n",
912 ret
= abb5zes3_i2c_validate_chip(regmap
);
916 data
= devm_kzalloc(dev
, sizeof(*data
), GFP_KERNEL
);
922 mutex_init(&data
->lock
);
923 data
->regmap
= regmap
;
924 dev_set_drvdata(dev
, data
);
926 ret
= abb5zes3_rtc_check_setup(dev
);
930 if (client
->irq
> 0) {
931 ret
= devm_request_threaded_irq(dev
, client
->irq
, NULL
,
932 _abb5zes3_rtc_interrupt
,
933 IRQF_SHARED
|IRQF_ONESHOT
,
936 device_init_wakeup(dev
, true);
937 data
->irq
= client
->irq
;
938 dev_dbg(dev
, "%s: irq %d used by RTC\n", __func__
,
941 dev_err(dev
, "%s: irq %d unavailable (%d)\n",
942 __func__
, client
->irq
, ret
);
947 data
->rtc
= devm_rtc_device_register(dev
, DRV_NAME
, &rtc_ops
,
949 ret
= PTR_ERR_OR_ZERO(data
->rtc
);
951 dev_err(dev
, "%s: unable to register RTC device (%d)\n",
956 /* Enable battery low detection interrupt if battery not already low */
957 if (!data
->battery_low
&& data
->irq
) {
958 ret
= _abb5zes3_rtc_battery_low_irq_enable(regmap
, true);
960 dev_err(dev
, "%s: enabling battery low interrupt "
961 "generation failed (%d)\n", __func__
, ret
);
967 if (ret
&& data
&& data
->irq
)
968 device_init_wakeup(dev
, false);
972 static int abb5zes3_remove(struct i2c_client
*client
)
974 struct abb5zes3_rtc_data
*rtc_data
= dev_get_drvdata(&client
->dev
);
976 if (rtc_data
->irq
> 0)
977 device_init_wakeup(&client
->dev
, false);
982 #ifdef CONFIG_PM_SLEEP
983 static int abb5zes3_rtc_suspend(struct device
*dev
)
985 struct abb5zes3_rtc_data
*rtc_data
= dev_get_drvdata(dev
);
987 if (device_may_wakeup(dev
))
988 return enable_irq_wake(rtc_data
->irq
);
993 static int abb5zes3_rtc_resume(struct device
*dev
)
995 struct abb5zes3_rtc_data
*rtc_data
= dev_get_drvdata(dev
);
997 if (device_may_wakeup(dev
))
998 return disable_irq_wake(rtc_data
->irq
);
1004 static SIMPLE_DEV_PM_OPS(abb5zes3_rtc_pm_ops
, abb5zes3_rtc_suspend
,
1005 abb5zes3_rtc_resume
);
1008 static const struct of_device_id abb5zes3_dt_match
[] = {
1009 { .compatible
= "abracon,abb5zes3" },
1012 MODULE_DEVICE_TABLE(of
, abb5zes3_dt_match
);
1015 static const struct i2c_device_id abb5zes3_id
[] = {
1019 MODULE_DEVICE_TABLE(i2c
, abb5zes3_id
);
1021 static struct i2c_driver abb5zes3_driver
= {
1024 .pm
= &abb5zes3_rtc_pm_ops
,
1025 .of_match_table
= of_match_ptr(abb5zes3_dt_match
),
1027 .probe
= abb5zes3_probe
,
1028 .remove
= abb5zes3_remove
,
1029 .id_table
= abb5zes3_id
,
1031 module_i2c_driver(abb5zes3_driver
);
1033 MODULE_AUTHOR("Arnaud EBALARD <arno@natisbad.org>");
1034 MODULE_DESCRIPTION("Abracon AB-RTCMC-32.768kHz-B5ZE-S3 RTC/Alarm driver");
1035 MODULE_LICENSE("GPL");