blob: fad04211886279be241868c8c400a3828b4f7f76 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
David Brownell1abb0dc2006-06-25 05:48:17 -07002/*
3 * rtc-ds1307.c - RTC driver for some mostly-compatible I2C chips.
4 *
5 * Copyright (C) 2005 James Chapman (ds1337 core)
6 * Copyright (C) 2006 David Brownell
Matthias Fuchsa2166852009-03-31 15:24:58 -07007 * Copyright (C) 2009 Matthias Fuchs (rx8025 support)
Bertrand Achardbc48b902013-04-29 16:19:26 -07008 * Copyright (C) 2012 Bertrand Achard (nvram access fixes)
David Brownell1abb0dc2006-06-25 05:48:17 -07009 */
10
Tin Huynh9c19b892016-11-30 09:57:31 +070011#include <linux/acpi.h>
David Brownell1abb0dc2006-06-25 05:48:17 -070012#include <linux/bcd.h>
Nishanth Menoneac72372015-06-23 11:15:12 -050013#include <linux/i2c.h>
14#include <linux/init.h>
15#include <linux/module.h>
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -030016#include <linux/of_device.h>
Wolfram Sangeb86c302012-05-29 15:07:38 -070017#include <linux/rtc/ds1307.h>
Nishanth Menoneac72372015-06-23 11:15:12 -050018#include <linux/rtc.h>
19#include <linux/slab.h>
20#include <linux/string.h>
Akinobu Mita445c0202016-01-25 00:22:16 +090021#include <linux/hwmon.h>
22#include <linux/hwmon-sysfs.h>
Akinobu Mita6c6ff142016-01-31 23:10:10 +090023#include <linux/clk-provider.h>
Heiner Kallweit11e58902017-03-10 18:52:34 +010024#include <linux/regmap.h>
Chris Packhamfd90d482020-03-30 15:55:00 +130025#include <linux/watchdog.h>
David Brownell1abb0dc2006-06-25 05:48:17 -070026
David Anders40ce9722012-03-23 15:02:37 -070027/*
28 * We can't determine type by probing, but if we expect pre-Linux code
David Brownell1abb0dc2006-06-25 05:48:17 -070029 * to have set the chip up as a clock (turning on the oscillator and
30 * setting the date and time), Linux can ignore the non-clock features.
31 * That's a natural job for a factory or repair bench.
David Brownell1abb0dc2006-06-25 05:48:17 -070032 */
33enum ds_type {
David Brownell045e0e82007-07-17 04:04:55 -070034 ds_1307,
Sean Nyekjaer300a7732017-06-08 12:36:54 +020035 ds_1308,
David Brownell045e0e82007-07-17 04:04:55 -070036 ds_1337,
37 ds_1338,
38 ds_1339,
39 ds_1340,
Nikita Yushchenko0759c882017-08-24 09:32:11 +030040 ds_1341,
Joakim Tjernlund33df2ee2009-06-17 16:26:08 -070041 ds_1388,
Wolfram Sang97f902b2009-06-17 16:26:10 -070042 ds_3231,
Stefan Agner8566f702017-03-23 16:54:57 -070043 m41t0,
David Brownell045e0e82007-07-17 04:04:55 -070044 m41t00,
Giulio Benetti7e580762018-05-16 23:08:40 +020045 m41t11,
Tomas Novotnyf4199f82014-12-10 15:53:57 -080046 mcp794xx,
Matthias Fuchsa2166852009-03-31 15:24:58 -070047 rx_8025,
Marek Vasutee0981b2017-06-18 22:55:28 +020048 rx_8130,
Wolfram Sang32d322b2012-03-23 15:02:36 -070049 last_ds_type /* always last */
David Anders40ce9722012-03-23 15:02:37 -070050 /* rs5c372 too? different address... */
David Brownell1abb0dc2006-06-25 05:48:17 -070051};
52
David Brownell1abb0dc2006-06-25 05:48:17 -070053/* RTC registers don't differ much, except for the century flag */
54#define DS1307_REG_SECS 0x00 /* 00-59 */
55# define DS1307_BIT_CH 0x80
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070056# define DS1340_BIT_nEOSC 0x80
Tomas Novotnyf4199f82014-12-10 15:53:57 -080057# define MCP794XX_BIT_ST 0x80
David Brownell1abb0dc2006-06-25 05:48:17 -070058#define DS1307_REG_MIN 0x01 /* 00-59 */
Stefan Agner8566f702017-03-23 16:54:57 -070059# define M41T0_BIT_OF 0x80
David Brownell1abb0dc2006-06-25 05:48:17 -070060#define DS1307_REG_HOUR 0x02 /* 00-23, or 1-12{am,pm} */
David Brownellc065f352007-07-17 04:05:10 -070061# define DS1307_BIT_12HR 0x40 /* in REG_HOUR */
62# define DS1307_BIT_PM 0x20 /* in REG_HOUR */
David Brownell1abb0dc2006-06-25 05:48:17 -070063# define DS1340_BIT_CENTURY_EN 0x80 /* in REG_HOUR */
64# define DS1340_BIT_CENTURY 0x40 /* in REG_HOUR */
65#define DS1307_REG_WDAY 0x03 /* 01-07 */
Tomas Novotnyf4199f82014-12-10 15:53:57 -080066# define MCP794XX_BIT_VBATEN 0x08
David Brownell1abb0dc2006-06-25 05:48:17 -070067#define DS1307_REG_MDAY 0x04 /* 01-31 */
68#define DS1307_REG_MONTH 0x05 /* 01-12 */
69# define DS1337_BIT_CENTURY 0x80 /* in REG_MONTH */
70#define DS1307_REG_YEAR 0x06 /* 00-99 */
71
David Anders40ce9722012-03-23 15:02:37 -070072/*
73 * Other registers (control, status, alarms, trickle charge, NVRAM, etc)
David Brownell045e0e82007-07-17 04:04:55 -070074 * start at 7, and they differ a LOT. Only control and status matter for
75 * basic RTC date and time functionality; be careful using them.
David Brownell1abb0dc2006-06-25 05:48:17 -070076 */
David Brownell045e0e82007-07-17 04:04:55 -070077#define DS1307_REG_CONTROL 0x07 /* or ds1338 */
David Brownell1abb0dc2006-06-25 05:48:17 -070078# define DS1307_BIT_OUT 0x80
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070079# define DS1338_BIT_OSF 0x20
David Brownell1abb0dc2006-06-25 05:48:17 -070080# define DS1307_BIT_SQWE 0x10
81# define DS1307_BIT_RS1 0x02
82# define DS1307_BIT_RS0 0x01
83#define DS1337_REG_CONTROL 0x0e
84# define DS1337_BIT_nEOSC 0x80
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -070085# define DS1339_BIT_BBSQI 0x20
Wolfram Sang97f902b2009-06-17 16:26:10 -070086# define DS3231_BIT_BBSQW 0x40 /* same as BBSQI */
David Brownell1abb0dc2006-06-25 05:48:17 -070087# define DS1337_BIT_RS2 0x10
88# define DS1337_BIT_RS1 0x08
89# define DS1337_BIT_INTCN 0x04
90# define DS1337_BIT_A2IE 0x02
91# define DS1337_BIT_A1IE 0x01
David Brownell045e0e82007-07-17 04:04:55 -070092#define DS1340_REG_CONTROL 0x07
93# define DS1340_BIT_OUT 0x80
94# define DS1340_BIT_FT 0x40
95# define DS1340_BIT_CALIB_SIGN 0x20
96# define DS1340_M_CALIBRATION 0x1f
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070097#define DS1340_REG_FLAG 0x09
98# define DS1340_BIT_OSF 0x80
David Brownell1abb0dc2006-06-25 05:48:17 -070099#define DS1337_REG_STATUS 0x0f
100# define DS1337_BIT_OSF 0x80
Akinobu Mita6c6ff142016-01-31 23:10:10 +0900101# define DS3231_BIT_EN32KHZ 0x08
David Brownell1abb0dc2006-06-25 05:48:17 -0700102# define DS1337_BIT_A2I 0x02
103# define DS1337_BIT_A1I 0x01
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700104#define DS1339_REG_ALARM1_SECS 0x07
Wolfram Sangeb86c302012-05-29 15:07:38 -0700105
106#define DS13XX_TRICKLE_CHARGER_MAGIC 0xa0
David Brownell1abb0dc2006-06-25 05:48:17 -0700107
Matthias Fuchsa2166852009-03-31 15:24:58 -0700108#define RX8025_REG_CTRL1 0x0e
109# define RX8025_BIT_2412 0x20
110#define RX8025_REG_CTRL2 0x0f
111# define RX8025_BIT_PON 0x10
112# define RX8025_BIT_VDET 0x40
113# define RX8025_BIT_XST 0x20
David Brownell1abb0dc2006-06-25 05:48:17 -0700114
Uwe Kleine-König3ffd4a22019-01-25 15:35:56 +0100115#define RX8130_REG_ALARM_MIN 0x17
116#define RX8130_REG_ALARM_HOUR 0x18
117#define RX8130_REG_ALARM_WEEK_OR_DAY 0x19
118#define RX8130_REG_EXTENSION 0x1c
Uwe Kleine-König92cbf122019-01-25 15:35:54 +0100119#define RX8130_REG_EXTENSION_WADA BIT(3)
Uwe Kleine-König3ffd4a22019-01-25 15:35:56 +0100120#define RX8130_REG_FLAG 0x1d
121#define RX8130_REG_FLAG_VLF BIT(1)
Uwe Kleine-König92cbf122019-01-25 15:35:54 +0100122#define RX8130_REG_FLAG_AF BIT(3)
Uwe Kleine-König3ffd4a22019-01-25 15:35:56 +0100123#define RX8130_REG_CONTROL0 0x1e
Uwe Kleine-König92cbf122019-01-25 15:35:54 +0100124#define RX8130_REG_CONTROL0_AIE BIT(3)
125
126#define MCP794XX_REG_CONTROL 0x07
127# define MCP794XX_BIT_ALM0_EN 0x10
128# define MCP794XX_BIT_ALM1_EN 0x20
129#define MCP794XX_REG_ALARM0_BASE 0x0a
130#define MCP794XX_REG_ALARM0_CTRL 0x0d
131#define MCP794XX_REG_ALARM1_BASE 0x11
132#define MCP794XX_REG_ALARM1_CTRL 0x14
133# define MCP794XX_BIT_ALMX_IF BIT(3)
134# define MCP794XX_BIT_ALMX_C0 BIT(4)
135# define MCP794XX_BIT_ALMX_C1 BIT(5)
136# define MCP794XX_BIT_ALMX_C2 BIT(6)
137# define MCP794XX_BIT_ALMX_POL BIT(7)
138# define MCP794XX_MSK_ALMX_MATCH (MCP794XX_BIT_ALMX_C0 | \
139 MCP794XX_BIT_ALMX_C1 | \
140 MCP794XX_BIT_ALMX_C2)
141
Giulio Benetti79230ff2018-07-25 19:26:04 +0200142#define M41TXX_REG_CONTROL 0x07
143# define M41TXX_BIT_OUT BIT(7)
144# define M41TXX_BIT_FT BIT(6)
145# define M41TXX_BIT_CALIB_SIGN BIT(5)
146# define M41TXX_M_CALIBRATION GENMASK(4, 0)
147
Chris Packhamfd90d482020-03-30 15:55:00 +1300148#define DS1388_REG_WDOG_HUN_SECS 0x08
149#define DS1388_REG_WDOG_SECS 0x09
Chris Packhamdf11b322020-02-07 16:18:11 +1300150#define DS1388_REG_FLAG 0x0b
Chris Packhamfd90d482020-03-30 15:55:00 +1300151# define DS1388_BIT_WF BIT(6)
Chris Packhamdf11b322020-02-07 16:18:11 +1300152# define DS1388_BIT_OSF BIT(7)
Chris Packhamfd90d482020-03-30 15:55:00 +1300153#define DS1388_REG_CONTROL 0x0c
154# define DS1388_BIT_RST BIT(0)
155# define DS1388_BIT_WDE BIT(1)
156
Giulio Benetti79230ff2018-07-25 19:26:04 +0200157/* negative offset step is -2.034ppm */
158#define M41TXX_NEG_OFFSET_STEP_PPB 2034
159/* positive offset step is +4.068ppm */
160#define M41TXX_POS_OFFSET_STEP_PPB 4068
161/* Min and max values supported with 'offset' interface by M41TXX */
162#define M41TXX_MIN_OFFSET ((-31) * M41TXX_NEG_OFFSET_STEP_PPB)
163#define M41TXX_MAX_OFFSET ((31) * M41TXX_POS_OFFSET_STEP_PPB)
164
David Brownell1abb0dc2006-06-25 05:48:17 -0700165struct ds1307 {
David Brownell1abb0dc2006-06-25 05:48:17 -0700166 enum ds_type type;
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700167 unsigned long flags;
168#define HAS_NVRAM 0 /* bit 0 == sysfs file active */
169#define HAS_ALARM 1 /* bit 1 == irq claimed */
Heiner Kallweit11e58902017-03-10 18:52:34 +0100170 struct device *dev;
171 struct regmap *regmap;
172 const char *name;
David Brownell1abb0dc2006-06-25 05:48:17 -0700173 struct rtc_device *rtc;
Akinobu Mita6c6ff142016-01-31 23:10:10 +0900174#ifdef CONFIG_COMMON_CLK
175 struct clk_hw clks[2];
176#endif
David Brownell1abb0dc2006-06-25 05:48:17 -0700177};
178
David Brownell045e0e82007-07-17 04:04:55 -0700179struct chip_desc {
David Brownell045e0e82007-07-17 04:04:55 -0700180 unsigned alarm:1;
Austin Boyle9eab0a72012-03-23 15:02:38 -0700181 u16 nvram_offset;
182 u16 nvram_size;
Heiner Kallweite5531702017-07-12 07:49:47 +0200183 u8 offset; /* register's offset */
Heiner Kallweite48585d2017-06-05 17:57:33 +0200184 u8 century_reg;
185 u8 century_enable_bit;
186 u8 century_bit;
Heiner Kallweit0b6ee802017-07-12 07:49:22 +0200187 u8 bbsqi_bit;
Heiner Kallweit45947122017-07-12 07:49:41 +0200188 irq_handler_t irq_handler;
Heiner Kallweit1efb98b2017-07-12 07:49:44 +0200189 const struct rtc_class_ops *rtc_ops;
Wolfram Sangeb86c302012-05-29 15:07:38 -0700190 u16 trickle_charger_reg;
Alexandre Belloni57ec2d92017-09-04 22:46:04 +0200191 u8 (*do_trickle_setup)(struct ds1307 *, u32,
Heiner Kallweit11e58902017-03-10 18:52:34 +0100192 bool);
David Brownell045e0e82007-07-17 04:04:55 -0700193};
194
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100195static const struct chip_desc chips[last_ds_type];
196
197static int ds1307_get_time(struct device *dev, struct rtc_time *t)
198{
199 struct ds1307 *ds1307 = dev_get_drvdata(dev);
200 int tmp, ret;
201 const struct chip_desc *chip = &chips[ds1307->type];
202 u8 regs[7];
203
Uwe Kleine-König501f9822019-01-25 15:35:57 +0100204 if (ds1307->type == rx_8130) {
205 unsigned int regflag;
206 ret = regmap_read(ds1307->regmap, RX8130_REG_FLAG, &regflag);
207 if (ret) {
208 dev_err(dev, "%s error %d\n", "read", ret);
209 return ret;
210 }
211
212 if (regflag & RX8130_REG_FLAG_VLF) {
213 dev_warn_once(dev, "oscillator failed, set time!\n");
214 return -EINVAL;
215 }
216 }
217
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100218 /* read the RTC date and time registers all at once */
219 ret = regmap_bulk_read(ds1307->regmap, chip->offset, regs,
220 sizeof(regs));
221 if (ret) {
222 dev_err(dev, "%s error %d\n", "read", ret);
223 return ret;
224 }
225
226 dev_dbg(dev, "%s: %7ph\n", "read", regs);
227
228 /* if oscillator fail bit is set, no data can be trusted */
229 if (ds1307->type == m41t0 &&
230 regs[DS1307_REG_MIN] & M41T0_BIT_OF) {
231 dev_warn_once(dev, "oscillator failed, set time!\n");
232 return -EINVAL;
233 }
234
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200235 tmp = regs[DS1307_REG_SECS];
236 switch (ds1307->type) {
237 case ds_1307:
238 case m41t0:
239 case m41t00:
240 case m41t11:
241 if (tmp & DS1307_BIT_CH)
242 return -EINVAL;
243 break;
244 case ds_1308:
245 case ds_1338:
246 if (tmp & DS1307_BIT_CH)
247 return -EINVAL;
248
249 ret = regmap_read(ds1307->regmap, DS1307_REG_CONTROL, &tmp);
250 if (ret)
251 return ret;
252 if (tmp & DS1338_BIT_OSF)
253 return -EINVAL;
254 break;
255 case ds_1340:
256 if (tmp & DS1340_BIT_nEOSC)
257 return -EINVAL;
258
259 ret = regmap_read(ds1307->regmap, DS1340_REG_FLAG, &tmp);
260 if (ret)
261 return ret;
262 if (tmp & DS1340_BIT_OSF)
263 return -EINVAL;
264 break;
Chris Packhamdf11b322020-02-07 16:18:11 +1300265 case ds_1388:
266 ret = regmap_read(ds1307->regmap, DS1388_REG_FLAG, &tmp);
267 if (ret)
268 return ret;
269 if (tmp & DS1388_BIT_OSF)
270 return -EINVAL;
271 break;
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200272 case mcp794xx:
273 if (!(tmp & MCP794XX_BIT_ST))
274 return -EINVAL;
275
276 break;
277 default:
278 break;
279 }
280
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100281 t->tm_sec = bcd2bin(regs[DS1307_REG_SECS] & 0x7f);
282 t->tm_min = bcd2bin(regs[DS1307_REG_MIN] & 0x7f);
283 tmp = regs[DS1307_REG_HOUR] & 0x3f;
284 t->tm_hour = bcd2bin(tmp);
285 t->tm_wday = bcd2bin(regs[DS1307_REG_WDAY] & 0x07) - 1;
286 t->tm_mday = bcd2bin(regs[DS1307_REG_MDAY] & 0x3f);
287 tmp = regs[DS1307_REG_MONTH] & 0x1f;
288 t->tm_mon = bcd2bin(tmp) - 1;
289 t->tm_year = bcd2bin(regs[DS1307_REG_YEAR]) + 100;
290
291 if (regs[chip->century_reg] & chip->century_bit &&
292 IS_ENABLED(CONFIG_RTC_DRV_DS1307_CENTURY))
293 t->tm_year += 100;
294
295 dev_dbg(dev, "%s secs=%d, mins=%d, "
296 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
297 "read", t->tm_sec, t->tm_min,
298 t->tm_hour, t->tm_mday,
299 t->tm_mon, t->tm_year, t->tm_wday);
300
301 return 0;
302}
303
304static int ds1307_set_time(struct device *dev, struct rtc_time *t)
305{
306 struct ds1307 *ds1307 = dev_get_drvdata(dev);
307 const struct chip_desc *chip = &chips[ds1307->type];
308 int result;
309 int tmp;
310 u8 regs[7];
311
312 dev_dbg(dev, "%s secs=%d, mins=%d, "
313 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
314 "write", t->tm_sec, t->tm_min,
315 t->tm_hour, t->tm_mday,
316 t->tm_mon, t->tm_year, t->tm_wday);
317
318 if (t->tm_year < 100)
319 return -EINVAL;
320
321#ifdef CONFIG_RTC_DRV_DS1307_CENTURY
322 if (t->tm_year > (chip->century_bit ? 299 : 199))
323 return -EINVAL;
324#else
325 if (t->tm_year > 199)
326 return -EINVAL;
327#endif
328
329 regs[DS1307_REG_SECS] = bin2bcd(t->tm_sec);
330 regs[DS1307_REG_MIN] = bin2bcd(t->tm_min);
331 regs[DS1307_REG_HOUR] = bin2bcd(t->tm_hour);
332 regs[DS1307_REG_WDAY] = bin2bcd(t->tm_wday + 1);
333 regs[DS1307_REG_MDAY] = bin2bcd(t->tm_mday);
334 regs[DS1307_REG_MONTH] = bin2bcd(t->tm_mon + 1);
335
336 /* assume 20YY not 19YY */
337 tmp = t->tm_year - 100;
338 regs[DS1307_REG_YEAR] = bin2bcd(tmp);
339
340 if (chip->century_enable_bit)
341 regs[chip->century_reg] |= chip->century_enable_bit;
342 if (t->tm_year > 199 && chip->century_bit)
343 regs[chip->century_reg] |= chip->century_bit;
344
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200345 switch (ds1307->type) {
346 case ds_1308:
347 case ds_1338:
348 regmap_update_bits(ds1307->regmap, DS1307_REG_CONTROL,
349 DS1338_BIT_OSF, 0);
350 break;
351 case ds_1340:
352 regmap_update_bits(ds1307->regmap, DS1340_REG_FLAG,
353 DS1340_BIT_OSF, 0);
354 break;
355 case mcp794xx:
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100356 /*
357 * these bits were cleared when preparing the date/time
358 * values and need to be set again before writing the
359 * regsfer out to the device.
360 */
361 regs[DS1307_REG_SECS] |= MCP794XX_BIT_ST;
362 regs[DS1307_REG_WDAY] |= MCP794XX_BIT_VBATEN;
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200363 break;
364 default:
365 break;
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100366 }
367
368 dev_dbg(dev, "%s: %7ph\n", "write", regs);
369
370 result = regmap_bulk_write(ds1307->regmap, chip->offset, regs,
371 sizeof(regs));
372 if (result) {
373 dev_err(dev, "%s error %d\n", "write", result);
374 return result;
375 }
Uwe Kleine-König501f9822019-01-25 15:35:57 +0100376
377 if (ds1307->type == rx_8130) {
378 /* clear Voltage Loss Flag as data is available now */
379 result = regmap_write(ds1307->regmap, RX8130_REG_FLAG,
380 ~(u8)RX8130_REG_FLAG_VLF);
381 if (result) {
382 dev_err(dev, "%s error %d\n", "write", result);
383 return result;
384 }
385 }
386
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100387 return 0;
388}
389
390static int ds1337_read_alarm(struct device *dev, struct rtc_wkalrm *t)
391{
392 struct ds1307 *ds1307 = dev_get_drvdata(dev);
393 int ret;
394 u8 regs[9];
395
396 if (!test_bit(HAS_ALARM, &ds1307->flags))
397 return -EINVAL;
398
399 /* read all ALARM1, ALARM2, and status registers at once */
400 ret = regmap_bulk_read(ds1307->regmap, DS1339_REG_ALARM1_SECS,
401 regs, sizeof(regs));
402 if (ret) {
403 dev_err(dev, "%s error %d\n", "alarm read", ret);
404 return ret;
405 }
406
407 dev_dbg(dev, "%s: %4ph, %3ph, %2ph\n", "alarm read",
408 &regs[0], &regs[4], &regs[7]);
409
410 /*
411 * report alarm time (ALARM1); assume 24 hour and day-of-month modes,
412 * and that all four fields are checked matches
413 */
414 t->time.tm_sec = bcd2bin(regs[0] & 0x7f);
415 t->time.tm_min = bcd2bin(regs[1] & 0x7f);
416 t->time.tm_hour = bcd2bin(regs[2] & 0x3f);
417 t->time.tm_mday = bcd2bin(regs[3] & 0x3f);
418
419 /* ... and status */
420 t->enabled = !!(regs[7] & DS1337_BIT_A1IE);
421 t->pending = !!(regs[8] & DS1337_BIT_A1I);
422
423 dev_dbg(dev, "%s secs=%d, mins=%d, "
424 "hours=%d, mday=%d, enabled=%d, pending=%d\n",
425 "alarm read", t->time.tm_sec, t->time.tm_min,
426 t->time.tm_hour, t->time.tm_mday,
427 t->enabled, t->pending);
428
429 return 0;
430}
431
432static int ds1337_set_alarm(struct device *dev, struct rtc_wkalrm *t)
433{
434 struct ds1307 *ds1307 = dev_get_drvdata(dev);
435 unsigned char regs[9];
436 u8 control, status;
437 int ret;
438
439 if (!test_bit(HAS_ALARM, &ds1307->flags))
440 return -EINVAL;
441
442 dev_dbg(dev, "%s secs=%d, mins=%d, "
443 "hours=%d, mday=%d, enabled=%d, pending=%d\n",
444 "alarm set", t->time.tm_sec, t->time.tm_min,
445 t->time.tm_hour, t->time.tm_mday,
446 t->enabled, t->pending);
447
448 /* read current status of both alarms and the chip */
449 ret = regmap_bulk_read(ds1307->regmap, DS1339_REG_ALARM1_SECS, regs,
450 sizeof(regs));
451 if (ret) {
452 dev_err(dev, "%s error %d\n", "alarm write", ret);
453 return ret;
454 }
455 control = regs[7];
456 status = regs[8];
457
458 dev_dbg(dev, "%s: %4ph, %3ph, %02x %02x\n", "alarm set (old status)",
459 &regs[0], &regs[4], control, status);
460
461 /* set ALARM1, using 24 hour and day-of-month modes */
462 regs[0] = bin2bcd(t->time.tm_sec);
463 regs[1] = bin2bcd(t->time.tm_min);
464 regs[2] = bin2bcd(t->time.tm_hour);
465 regs[3] = bin2bcd(t->time.tm_mday);
466
467 /* set ALARM2 to non-garbage */
468 regs[4] = 0;
469 regs[5] = 0;
470 regs[6] = 0;
471
472 /* disable alarms */
473 regs[7] = control & ~(DS1337_BIT_A1IE | DS1337_BIT_A2IE);
474 regs[8] = status & ~(DS1337_BIT_A1I | DS1337_BIT_A2I);
475
476 ret = regmap_bulk_write(ds1307->regmap, DS1339_REG_ALARM1_SECS, regs,
477 sizeof(regs));
478 if (ret) {
479 dev_err(dev, "can't set alarm time\n");
480 return ret;
481 }
482
483 /* optionally enable ALARM1 */
484 if (t->enabled) {
485 dev_dbg(dev, "alarm IRQ armed\n");
486 regs[7] |= DS1337_BIT_A1IE; /* only ALARM1 is used */
487 regmap_write(ds1307->regmap, DS1337_REG_CONTROL, regs[7]);
488 }
489
490 return 0;
491}
492
493static int ds1307_alarm_irq_enable(struct device *dev, unsigned int enabled)
494{
495 struct ds1307 *ds1307 = dev_get_drvdata(dev);
496
497 if (!test_bit(HAS_ALARM, &ds1307->flags))
498 return -ENOTTY;
499
500 return regmap_update_bits(ds1307->regmap, DS1337_REG_CONTROL,
501 DS1337_BIT_A1IE,
502 enabled ? DS1337_BIT_A1IE : 0);
503}
504
505static u8 do_trickle_setup_ds1339(struct ds1307 *ds1307, u32 ohms, bool diode)
506{
507 u8 setup = (diode) ? DS1307_TRICKLE_CHARGER_DIODE :
508 DS1307_TRICKLE_CHARGER_NO_DIODE;
509
510 switch (ohms) {
511 case 250:
512 setup |= DS1307_TRICKLE_CHARGER_250_OHM;
513 break;
514 case 2000:
515 setup |= DS1307_TRICKLE_CHARGER_2K_OHM;
516 break;
517 case 4000:
518 setup |= DS1307_TRICKLE_CHARGER_4K_OHM;
519 break;
520 default:
521 dev_warn(ds1307->dev,
522 "Unsupported ohm value %u in dt\n", ohms);
523 return 0;
524 }
525 return setup;
526}
527
528static irqreturn_t rx8130_irq(int irq, void *dev_id)
529{
530 struct ds1307 *ds1307 = dev_id;
531 struct mutex *lock = &ds1307->rtc->ops_lock;
532 u8 ctl[3];
533 int ret;
534
535 mutex_lock(lock);
536
537 /* Read control registers. */
538 ret = regmap_bulk_read(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
539 sizeof(ctl));
540 if (ret < 0)
541 goto out;
542 if (!(ctl[1] & RX8130_REG_FLAG_AF))
543 goto out;
544 ctl[1] &= ~RX8130_REG_FLAG_AF;
545 ctl[2] &= ~RX8130_REG_CONTROL0_AIE;
546
547 ret = regmap_bulk_write(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
548 sizeof(ctl));
549 if (ret < 0)
550 goto out;
551
552 rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
553
554out:
555 mutex_unlock(lock);
556
557 return IRQ_HANDLED;
558}
559
560static int rx8130_read_alarm(struct device *dev, struct rtc_wkalrm *t)
561{
562 struct ds1307 *ds1307 = dev_get_drvdata(dev);
563 u8 ald[3], ctl[3];
564 int ret;
565
566 if (!test_bit(HAS_ALARM, &ds1307->flags))
567 return -EINVAL;
568
569 /* Read alarm registers. */
570 ret = regmap_bulk_read(ds1307->regmap, RX8130_REG_ALARM_MIN, ald,
571 sizeof(ald));
572 if (ret < 0)
573 return ret;
574
575 /* Read control registers. */
576 ret = regmap_bulk_read(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
577 sizeof(ctl));
578 if (ret < 0)
579 return ret;
580
581 t->enabled = !!(ctl[2] & RX8130_REG_CONTROL0_AIE);
582 t->pending = !!(ctl[1] & RX8130_REG_FLAG_AF);
583
584 /* Report alarm 0 time assuming 24-hour and day-of-month modes. */
585 t->time.tm_sec = -1;
586 t->time.tm_min = bcd2bin(ald[0] & 0x7f);
587 t->time.tm_hour = bcd2bin(ald[1] & 0x7f);
588 t->time.tm_wday = -1;
589 t->time.tm_mday = bcd2bin(ald[2] & 0x7f);
590 t->time.tm_mon = -1;
591 t->time.tm_year = -1;
592 t->time.tm_yday = -1;
593 t->time.tm_isdst = -1;
594
595 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d enabled=%d\n",
596 __func__, t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
597 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon, t->enabled);
598
599 return 0;
600}
601
602static int rx8130_set_alarm(struct device *dev, struct rtc_wkalrm *t)
603{
604 struct ds1307 *ds1307 = dev_get_drvdata(dev);
605 u8 ald[3], ctl[3];
606 int ret;
607
608 if (!test_bit(HAS_ALARM, &ds1307->flags))
609 return -EINVAL;
610
611 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d "
612 "enabled=%d pending=%d\n", __func__,
613 t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
614 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon,
615 t->enabled, t->pending);
616
617 /* Read control registers. */
618 ret = regmap_bulk_read(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
619 sizeof(ctl));
620 if (ret < 0)
621 return ret;
622
Uwe Kleine-König3f929ca2019-01-25 15:35:58 +0100623 ctl[0] &= RX8130_REG_EXTENSION_WADA;
624 ctl[1] &= ~RX8130_REG_FLAG_AF;
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100625 ctl[2] &= ~RX8130_REG_CONTROL0_AIE;
626
627 ret = regmap_bulk_write(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
628 sizeof(ctl));
629 if (ret < 0)
630 return ret;
631
632 /* Hardware alarm precision is 1 minute! */
633 ald[0] = bin2bcd(t->time.tm_min);
634 ald[1] = bin2bcd(t->time.tm_hour);
635 ald[2] = bin2bcd(t->time.tm_mday);
636
637 ret = regmap_bulk_write(ds1307->regmap, RX8130_REG_ALARM_MIN, ald,
638 sizeof(ald));
639 if (ret < 0)
640 return ret;
641
642 if (!t->enabled)
643 return 0;
644
645 ctl[2] |= RX8130_REG_CONTROL0_AIE;
646
Uwe Kleine-König3f929ca2019-01-25 15:35:58 +0100647 return regmap_write(ds1307->regmap, RX8130_REG_CONTROL0, ctl[2]);
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100648}
649
650static int rx8130_alarm_irq_enable(struct device *dev, unsigned int enabled)
651{
652 struct ds1307 *ds1307 = dev_get_drvdata(dev);
653 int ret, reg;
654
655 if (!test_bit(HAS_ALARM, &ds1307->flags))
656 return -EINVAL;
657
658 ret = regmap_read(ds1307->regmap, RX8130_REG_CONTROL0, &reg);
659 if (ret < 0)
660 return ret;
661
662 if (enabled)
663 reg |= RX8130_REG_CONTROL0_AIE;
664 else
665 reg &= ~RX8130_REG_CONTROL0_AIE;
666
667 return regmap_write(ds1307->regmap, RX8130_REG_CONTROL0, reg);
668}
669
670static irqreturn_t mcp794xx_irq(int irq, void *dev_id)
671{
672 struct ds1307 *ds1307 = dev_id;
673 struct mutex *lock = &ds1307->rtc->ops_lock;
674 int reg, ret;
675
676 mutex_lock(lock);
677
678 /* Check and clear alarm 0 interrupt flag. */
679 ret = regmap_read(ds1307->regmap, MCP794XX_REG_ALARM0_CTRL, &reg);
680 if (ret)
681 goto out;
682 if (!(reg & MCP794XX_BIT_ALMX_IF))
683 goto out;
684 reg &= ~MCP794XX_BIT_ALMX_IF;
685 ret = regmap_write(ds1307->regmap, MCP794XX_REG_ALARM0_CTRL, reg);
686 if (ret)
687 goto out;
688
689 /* Disable alarm 0. */
690 ret = regmap_update_bits(ds1307->regmap, MCP794XX_REG_CONTROL,
691 MCP794XX_BIT_ALM0_EN, 0);
692 if (ret)
693 goto out;
694
695 rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
696
697out:
698 mutex_unlock(lock);
699
700 return IRQ_HANDLED;
701}
702
703static int mcp794xx_read_alarm(struct device *dev, struct rtc_wkalrm *t)
704{
705 struct ds1307 *ds1307 = dev_get_drvdata(dev);
706 u8 regs[10];
707 int ret;
708
709 if (!test_bit(HAS_ALARM, &ds1307->flags))
710 return -EINVAL;
711
712 /* Read control and alarm 0 registers. */
713 ret = regmap_bulk_read(ds1307->regmap, MCP794XX_REG_CONTROL, regs,
714 sizeof(regs));
715 if (ret)
716 return ret;
717
718 t->enabled = !!(regs[0] & MCP794XX_BIT_ALM0_EN);
719
720 /* Report alarm 0 time assuming 24-hour and day-of-month modes. */
721 t->time.tm_sec = bcd2bin(regs[3] & 0x7f);
722 t->time.tm_min = bcd2bin(regs[4] & 0x7f);
723 t->time.tm_hour = bcd2bin(regs[5] & 0x3f);
724 t->time.tm_wday = bcd2bin(regs[6] & 0x7) - 1;
725 t->time.tm_mday = bcd2bin(regs[7] & 0x3f);
726 t->time.tm_mon = bcd2bin(regs[8] & 0x1f) - 1;
727 t->time.tm_year = -1;
728 t->time.tm_yday = -1;
729 t->time.tm_isdst = -1;
730
731 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d "
732 "enabled=%d polarity=%d irq=%d match=%lu\n", __func__,
733 t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
734 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon, t->enabled,
735 !!(regs[6] & MCP794XX_BIT_ALMX_POL),
736 !!(regs[6] & MCP794XX_BIT_ALMX_IF),
737 (regs[6] & MCP794XX_MSK_ALMX_MATCH) >> 4);
738
739 return 0;
740}
741
742/*
743 * We may have a random RTC weekday, therefore calculate alarm weekday based
744 * on current weekday we read from the RTC timekeeping regs
745 */
746static int mcp794xx_alm_weekday(struct device *dev, struct rtc_time *tm_alarm)
747{
748 struct rtc_time tm_now;
749 int days_now, days_alarm, ret;
750
751 ret = ds1307_get_time(dev, &tm_now);
752 if (ret)
753 return ret;
754
755 days_now = div_s64(rtc_tm_to_time64(&tm_now), 24 * 60 * 60);
756 days_alarm = div_s64(rtc_tm_to_time64(tm_alarm), 24 * 60 * 60);
757
758 return (tm_now.tm_wday + days_alarm - days_now) % 7 + 1;
759}
760
761static int mcp794xx_set_alarm(struct device *dev, struct rtc_wkalrm *t)
762{
763 struct ds1307 *ds1307 = dev_get_drvdata(dev);
764 unsigned char regs[10];
765 int wday, ret;
766
767 if (!test_bit(HAS_ALARM, &ds1307->flags))
768 return -EINVAL;
769
770 wday = mcp794xx_alm_weekday(dev, &t->time);
771 if (wday < 0)
772 return wday;
773
774 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d "
775 "enabled=%d pending=%d\n", __func__,
776 t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
777 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon,
778 t->enabled, t->pending);
779
780 /* Read control and alarm 0 registers. */
781 ret = regmap_bulk_read(ds1307->regmap, MCP794XX_REG_CONTROL, regs,
782 sizeof(regs));
783 if (ret)
784 return ret;
785
786 /* Set alarm 0, using 24-hour and day-of-month modes. */
787 regs[3] = bin2bcd(t->time.tm_sec);
788 regs[4] = bin2bcd(t->time.tm_min);
789 regs[5] = bin2bcd(t->time.tm_hour);
790 regs[6] = wday;
791 regs[7] = bin2bcd(t->time.tm_mday);
792 regs[8] = bin2bcd(t->time.tm_mon + 1);
793
794 /* Clear the alarm 0 interrupt flag. */
795 regs[6] &= ~MCP794XX_BIT_ALMX_IF;
796 /* Set alarm match: second, minute, hour, day, date, month. */
797 regs[6] |= MCP794XX_MSK_ALMX_MATCH;
798 /* Disable interrupt. We will not enable until completely programmed */
799 regs[0] &= ~MCP794XX_BIT_ALM0_EN;
800
801 ret = regmap_bulk_write(ds1307->regmap, MCP794XX_REG_CONTROL, regs,
802 sizeof(regs));
803 if (ret)
804 return ret;
805
806 if (!t->enabled)
807 return 0;
808 regs[0] |= MCP794XX_BIT_ALM0_EN;
809 return regmap_write(ds1307->regmap, MCP794XX_REG_CONTROL, regs[0]);
810}
811
812static int mcp794xx_alarm_irq_enable(struct device *dev, unsigned int enabled)
813{
814 struct ds1307 *ds1307 = dev_get_drvdata(dev);
815
816 if (!test_bit(HAS_ALARM, &ds1307->flags))
817 return -EINVAL;
818
819 return regmap_update_bits(ds1307->regmap, MCP794XX_REG_CONTROL,
820 MCP794XX_BIT_ALM0_EN,
821 enabled ? MCP794XX_BIT_ALM0_EN : 0);
822}
823
824static int m41txx_rtc_read_offset(struct device *dev, long *offset)
825{
826 struct ds1307 *ds1307 = dev_get_drvdata(dev);
827 unsigned int ctrl_reg;
828 u8 val;
829
830 regmap_read(ds1307->regmap, M41TXX_REG_CONTROL, &ctrl_reg);
831
832 val = ctrl_reg & M41TXX_M_CALIBRATION;
833
834 /* check if positive */
835 if (ctrl_reg & M41TXX_BIT_CALIB_SIGN)
836 *offset = (val * M41TXX_POS_OFFSET_STEP_PPB);
837 else
838 *offset = -(val * M41TXX_NEG_OFFSET_STEP_PPB);
839
840 return 0;
841}
842
843static int m41txx_rtc_set_offset(struct device *dev, long offset)
844{
845 struct ds1307 *ds1307 = dev_get_drvdata(dev);
846 unsigned int ctrl_reg;
847
848 if ((offset < M41TXX_MIN_OFFSET) || (offset > M41TXX_MAX_OFFSET))
849 return -ERANGE;
850
851 if (offset >= 0) {
852 ctrl_reg = DIV_ROUND_CLOSEST(offset,
853 M41TXX_POS_OFFSET_STEP_PPB);
854 ctrl_reg |= M41TXX_BIT_CALIB_SIGN;
855 } else {
856 ctrl_reg = DIV_ROUND_CLOSEST(abs(offset),
857 M41TXX_NEG_OFFSET_STEP_PPB);
858 }
859
860 return regmap_update_bits(ds1307->regmap, M41TXX_REG_CONTROL,
861 M41TXX_M_CALIBRATION | M41TXX_BIT_CALIB_SIGN,
862 ctrl_reg);
863}
Matti Vaittinen33b04b72014-10-13 15:52:48 -0700864
Chris Packhamfd90d482020-03-30 15:55:00 +1300865#ifdef CONFIG_WATCHDOG_CORE
866static int ds1388_wdt_start(struct watchdog_device *wdt_dev)
867{
868 struct ds1307 *ds1307 = watchdog_get_drvdata(wdt_dev);
869 u8 regs[2];
870 int ret;
871
872 ret = regmap_update_bits(ds1307->regmap, DS1388_REG_FLAG,
873 DS1388_BIT_WF, 0);
874 if (ret)
875 return ret;
876
877 ret = regmap_update_bits(ds1307->regmap, DS1388_REG_CONTROL,
878 DS1388_BIT_WDE | DS1388_BIT_RST, 0);
879 if (ret)
880 return ret;
881
882 /*
883 * watchdog timeouts are measured in seconds. So ignore hundredths of
884 * seconds field.
885 */
886 regs[0] = 0;
887 regs[1] = bin2bcd(wdt_dev->timeout);
888
889 ret = regmap_bulk_write(ds1307->regmap, DS1388_REG_WDOG_HUN_SECS, regs,
890 sizeof(regs));
891 if (ret)
892 return ret;
893
894 return regmap_update_bits(ds1307->regmap, DS1388_REG_CONTROL,
895 DS1388_BIT_WDE | DS1388_BIT_RST,
896 DS1388_BIT_WDE | DS1388_BIT_RST);
897}
898
899static int ds1388_wdt_stop(struct watchdog_device *wdt_dev)
900{
901 struct ds1307 *ds1307 = watchdog_get_drvdata(wdt_dev);
902
903 return regmap_update_bits(ds1307->regmap, DS1388_REG_CONTROL,
904 DS1388_BIT_WDE | DS1388_BIT_RST, 0);
905}
906
907static int ds1388_wdt_ping(struct watchdog_device *wdt_dev)
908{
909 struct ds1307 *ds1307 = watchdog_get_drvdata(wdt_dev);
910 u8 regs[2];
911
912 return regmap_bulk_read(ds1307->regmap, DS1388_REG_WDOG_HUN_SECS, regs,
913 sizeof(regs));
914}
915
916static int ds1388_wdt_set_timeout(struct watchdog_device *wdt_dev,
917 unsigned int val)
918{
919 struct ds1307 *ds1307 = watchdog_get_drvdata(wdt_dev);
920 u8 regs[2];
921
922 wdt_dev->timeout = val;
923 regs[0] = 0;
924 regs[1] = bin2bcd(wdt_dev->timeout);
925
926 return regmap_bulk_write(ds1307->regmap, DS1388_REG_WDOG_HUN_SECS, regs,
927 sizeof(regs));
928}
929#endif
930
Heiner Kallweit1efb98b2017-07-12 07:49:44 +0200931static const struct rtc_class_ops rx8130_rtc_ops = {
932 .read_time = ds1307_get_time,
933 .set_time = ds1307_set_time,
934 .read_alarm = rx8130_read_alarm,
935 .set_alarm = rx8130_set_alarm,
936 .alarm_irq_enable = rx8130_alarm_irq_enable,
937};
938
939static const struct rtc_class_ops mcp794xx_rtc_ops = {
940 .read_time = ds1307_get_time,
941 .set_time = ds1307_set_time,
942 .read_alarm = mcp794xx_read_alarm,
943 .set_alarm = mcp794xx_set_alarm,
944 .alarm_irq_enable = mcp794xx_alarm_irq_enable,
945};
Matti Vaittinen33b04b72014-10-13 15:52:48 -0700946
Giulio Benetti79230ff2018-07-25 19:26:04 +0200947static const struct rtc_class_ops m41txx_rtc_ops = {
948 .read_time = ds1307_get_time,
949 .set_time = ds1307_set_time,
950 .read_alarm = ds1337_read_alarm,
951 .set_alarm = ds1337_set_alarm,
952 .alarm_irq_enable = ds1307_alarm_irq_enable,
953 .read_offset = m41txx_rtc_read_offset,
954 .set_offset = m41txx_rtc_set_offset,
955};
956
Heiner Kallweit7624df42017-07-12 07:49:33 +0200957static const struct chip_desc chips[last_ds_type] = {
Wolfram Sang32d322b2012-03-23 15:02:36 -0700958 [ds_1307] = {
Austin Boyle9eab0a72012-03-23 15:02:38 -0700959 .nvram_offset = 8,
960 .nvram_size = 56,
Wolfram Sang32d322b2012-03-23 15:02:36 -0700961 },
Sean Nyekjaer300a7732017-06-08 12:36:54 +0200962 [ds_1308] = {
963 .nvram_offset = 8,
964 .nvram_size = 56,
965 },
Wolfram Sang32d322b2012-03-23 15:02:36 -0700966 [ds_1337] = {
967 .alarm = 1,
Heiner Kallweite48585d2017-06-05 17:57:33 +0200968 .century_reg = DS1307_REG_MONTH,
969 .century_bit = DS1337_BIT_CENTURY,
Wolfram Sang32d322b2012-03-23 15:02:36 -0700970 },
971 [ds_1338] = {
Austin Boyle9eab0a72012-03-23 15:02:38 -0700972 .nvram_offset = 8,
973 .nvram_size = 56,
Wolfram Sang32d322b2012-03-23 15:02:36 -0700974 },
975 [ds_1339] = {
976 .alarm = 1,
Heiner Kallweite48585d2017-06-05 17:57:33 +0200977 .century_reg = DS1307_REG_MONTH,
978 .century_bit = DS1337_BIT_CENTURY,
Heiner Kallweit0b6ee802017-07-12 07:49:22 +0200979 .bbsqi_bit = DS1339_BIT_BBSQI,
Wolfram Sangeb86c302012-05-29 15:07:38 -0700980 .trickle_charger_reg = 0x10,
Matti Vaittinen33b04b72014-10-13 15:52:48 -0700981 .do_trickle_setup = &do_trickle_setup_ds1339,
Wolfram Sangeb86c302012-05-29 15:07:38 -0700982 },
983 [ds_1340] = {
Heiner Kallweite48585d2017-06-05 17:57:33 +0200984 .century_reg = DS1307_REG_HOUR,
985 .century_enable_bit = DS1340_BIT_CENTURY_EN,
986 .century_bit = DS1340_BIT_CENTURY,
Andrea Greco51ed73eb2018-04-20 11:34:02 +0200987 .do_trickle_setup = &do_trickle_setup_ds1339,
Wolfram Sangeb86c302012-05-29 15:07:38 -0700988 .trickle_charger_reg = 0x08,
989 },
Nikita Yushchenko0759c882017-08-24 09:32:11 +0300990 [ds_1341] = {
991 .century_reg = DS1307_REG_MONTH,
992 .century_bit = DS1337_BIT_CENTURY,
993 },
Wolfram Sangeb86c302012-05-29 15:07:38 -0700994 [ds_1388] = {
Heiner Kallweite5531702017-07-12 07:49:47 +0200995 .offset = 1,
Wolfram Sangeb86c302012-05-29 15:07:38 -0700996 .trickle_charger_reg = 0x0a,
Wolfram Sang32d322b2012-03-23 15:02:36 -0700997 },
998 [ds_3231] = {
999 .alarm = 1,
Heiner Kallweite48585d2017-06-05 17:57:33 +02001000 .century_reg = DS1307_REG_MONTH,
1001 .century_bit = DS1337_BIT_CENTURY,
Heiner Kallweit0b6ee802017-07-12 07:49:22 +02001002 .bbsqi_bit = DS3231_BIT_BBSQW,
Wolfram Sang32d322b2012-03-23 15:02:36 -07001003 },
Marek Vasutee0981b2017-06-18 22:55:28 +02001004 [rx_8130] = {
1005 .alarm = 1,
1006 /* this is battery backed SRAM */
1007 .nvram_offset = 0x20,
1008 .nvram_size = 4, /* 32bit (4 word x 8 bit) */
Heiner Kallweite5531702017-07-12 07:49:47 +02001009 .offset = 0x10,
Heiner Kallweit45947122017-07-12 07:49:41 +02001010 .irq_handler = rx8130_irq,
Heiner Kallweit1efb98b2017-07-12 07:49:44 +02001011 .rtc_ops = &rx8130_rtc_ops,
Marek Vasutee0981b2017-06-18 22:55:28 +02001012 },
Giulio Benetti79230ff2018-07-25 19:26:04 +02001013 [m41t0] = {
1014 .rtc_ops = &m41txx_rtc_ops,
1015 },
1016 [m41t00] = {
1017 .rtc_ops = &m41txx_rtc_ops,
1018 },
Giulio Benetti7e580762018-05-16 23:08:40 +02001019 [m41t11] = {
1020 /* this is battery backed SRAM */
1021 .nvram_offset = 8,
1022 .nvram_size = 56,
Giulio Benetti79230ff2018-07-25 19:26:04 +02001023 .rtc_ops = &m41txx_rtc_ops,
Giulio Benetti7e580762018-05-16 23:08:40 +02001024 },
Tomas Novotnyf4199f82014-12-10 15:53:57 -08001025 [mcp794xx] = {
Simon Guinot1d1945d2014-04-03 14:49:55 -07001026 .alarm = 1,
Austin Boyle9eab0a72012-03-23 15:02:38 -07001027 /* this is battery backed SRAM */
1028 .nvram_offset = 0x20,
1029 .nvram_size = 0x40,
Heiner Kallweit45947122017-07-12 07:49:41 +02001030 .irq_handler = mcp794xx_irq,
Heiner Kallweit1efb98b2017-07-12 07:49:44 +02001031 .rtc_ops = &mcp794xx_rtc_ops,
Austin Boyle9eab0a72012-03-23 15:02:38 -07001032 },
Wolfram Sang32d322b2012-03-23 15:02:36 -07001033};
David Brownell045e0e82007-07-17 04:04:55 -07001034
Jean Delvare3760f732008-04-29 23:11:40 +02001035static const struct i2c_device_id ds1307_id[] = {
1036 { "ds1307", ds_1307 },
Sean Nyekjaer300a7732017-06-08 12:36:54 +02001037 { "ds1308", ds_1308 },
Jean Delvare3760f732008-04-29 23:11:40 +02001038 { "ds1337", ds_1337 },
1039 { "ds1338", ds_1338 },
1040 { "ds1339", ds_1339 },
Joakim Tjernlund33df2ee2009-06-17 16:26:08 -07001041 { "ds1388", ds_1388 },
Jean Delvare3760f732008-04-29 23:11:40 +02001042 { "ds1340", ds_1340 },
Nikita Yushchenko0759c882017-08-24 09:32:11 +03001043 { "ds1341", ds_1341 },
Wolfram Sang97f902b2009-06-17 16:26:10 -07001044 { "ds3231", ds_3231 },
Stefan Agner8566f702017-03-23 16:54:57 -07001045 { "m41t0", m41t0 },
Jean Delvare3760f732008-04-29 23:11:40 +02001046 { "m41t00", m41t00 },
Giulio Benetti7e580762018-05-16 23:08:40 +02001047 { "m41t11", m41t11 },
Tomas Novotnyf4199f82014-12-10 15:53:57 -08001048 { "mcp7940x", mcp794xx },
1049 { "mcp7941x", mcp794xx },
Priyanka Jain31c17712011-06-27 16:18:04 -07001050 { "pt7c4338", ds_1307 },
Matthias Fuchsa2166852009-03-31 15:24:58 -07001051 { "rx8025", rx_8025 },
Alexandre Belloni78aaa062016-07-13 02:36:41 +02001052 { "isl12057", ds_1337 },
Marek Vasutee0981b2017-06-18 22:55:28 +02001053 { "rx8130", rx_8130 },
Jean Delvare3760f732008-04-29 23:11:40 +02001054 { }
1055};
1056MODULE_DEVICE_TABLE(i2c, ds1307_id);
David Brownell1abb0dc2006-06-25 05:48:17 -07001057
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001058#ifdef CONFIG_OF
1059static const struct of_device_id ds1307_of_match[] = {
1060 {
1061 .compatible = "dallas,ds1307",
1062 .data = (void *)ds_1307
1063 },
1064 {
Sean Nyekjaer300a7732017-06-08 12:36:54 +02001065 .compatible = "dallas,ds1308",
1066 .data = (void *)ds_1308
1067 },
1068 {
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001069 .compatible = "dallas,ds1337",
1070 .data = (void *)ds_1337
1071 },
1072 {
1073 .compatible = "dallas,ds1338",
1074 .data = (void *)ds_1338
1075 },
1076 {
1077 .compatible = "dallas,ds1339",
1078 .data = (void *)ds_1339
1079 },
1080 {
1081 .compatible = "dallas,ds1388",
1082 .data = (void *)ds_1388
1083 },
1084 {
1085 .compatible = "dallas,ds1340",
1086 .data = (void *)ds_1340
1087 },
1088 {
Nikita Yushchenko0759c882017-08-24 09:32:11 +03001089 .compatible = "dallas,ds1341",
1090 .data = (void *)ds_1341
1091 },
1092 {
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001093 .compatible = "maxim,ds3231",
1094 .data = (void *)ds_3231
1095 },
1096 {
Alexandre Bellonidb2f8142017-04-08 17:22:02 +02001097 .compatible = "st,m41t0",
Giulio Benetti146a5522018-05-16 23:08:39 +02001098 .data = (void *)m41t0
Alexandre Bellonidb2f8142017-04-08 17:22:02 +02001099 },
1100 {
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001101 .compatible = "st,m41t00",
1102 .data = (void *)m41t00
1103 },
1104 {
Giulio Benetti7e580762018-05-16 23:08:40 +02001105 .compatible = "st,m41t11",
1106 .data = (void *)m41t11
1107 },
1108 {
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001109 .compatible = "microchip,mcp7940x",
1110 .data = (void *)mcp794xx
1111 },
1112 {
1113 .compatible = "microchip,mcp7941x",
1114 .data = (void *)mcp794xx
1115 },
1116 {
1117 .compatible = "pericom,pt7c4338",
1118 .data = (void *)ds_1307
1119 },
1120 {
1121 .compatible = "epson,rx8025",
1122 .data = (void *)rx_8025
1123 },
1124 {
1125 .compatible = "isil,isl12057",
1126 .data = (void *)ds_1337
1127 },
Bastian Stender47dd4722017-10-17 14:46:07 +02001128 {
1129 .compatible = "epson,rx8130",
1130 .data = (void *)rx_8130
1131 },
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001132 { }
1133};
1134MODULE_DEVICE_TABLE(of, ds1307_of_match);
1135#endif
1136
Tin Huynh9c19b892016-11-30 09:57:31 +07001137#ifdef CONFIG_ACPI
1138static const struct acpi_device_id ds1307_acpi_ids[] = {
1139 { .id = "DS1307", .driver_data = ds_1307 },
Sean Nyekjaer300a7732017-06-08 12:36:54 +02001140 { .id = "DS1308", .driver_data = ds_1308 },
Tin Huynh9c19b892016-11-30 09:57:31 +07001141 { .id = "DS1337", .driver_data = ds_1337 },
1142 { .id = "DS1338", .driver_data = ds_1338 },
1143 { .id = "DS1339", .driver_data = ds_1339 },
1144 { .id = "DS1388", .driver_data = ds_1388 },
1145 { .id = "DS1340", .driver_data = ds_1340 },
Nikita Yushchenko0759c882017-08-24 09:32:11 +03001146 { .id = "DS1341", .driver_data = ds_1341 },
Tin Huynh9c19b892016-11-30 09:57:31 +07001147 { .id = "DS3231", .driver_data = ds_3231 },
Stefan Agner8566f702017-03-23 16:54:57 -07001148 { .id = "M41T0", .driver_data = m41t0 },
Tin Huynh9c19b892016-11-30 09:57:31 +07001149 { .id = "M41T00", .driver_data = m41t00 },
Giulio Benetti7e580762018-05-16 23:08:40 +02001150 { .id = "M41T11", .driver_data = m41t11 },
Tin Huynh9c19b892016-11-30 09:57:31 +07001151 { .id = "MCP7940X", .driver_data = mcp794xx },
1152 { .id = "MCP7941X", .driver_data = mcp794xx },
1153 { .id = "PT7C4338", .driver_data = ds_1307 },
1154 { .id = "RX8025", .driver_data = rx_8025 },
1155 { .id = "ISL12057", .driver_data = ds_1337 },
Bastian Stender47dd4722017-10-17 14:46:07 +02001156 { .id = "RX8130", .driver_data = rx_8130 },
Tin Huynh9c19b892016-11-30 09:57:31 +07001157 { }
1158};
1159MODULE_DEVICE_TABLE(acpi, ds1307_acpi_ids);
1160#endif
1161
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001162/*
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001163 * The ds1337 and ds1339 both have two alarms, but we only use the first
1164 * one (with a "seconds" field). For ds1337 we expect nINTA is our alarm
1165 * signal; ds1339 chips have only one alarm signal.
1166 */
Felipe Balbi2fb07a12015-06-23 11:15:10 -05001167static irqreturn_t ds1307_irq(int irq, void *dev_id)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001168{
Heiner Kallweit11e58902017-03-10 18:52:34 +01001169 struct ds1307 *ds1307 = dev_id;
Felipe Balbi2fb07a12015-06-23 11:15:10 -05001170 struct mutex *lock = &ds1307->rtc->ops_lock;
Heiner Kallweit078f3f62017-06-05 17:57:29 +02001171 int stat, ret;
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001172
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001173 mutex_lock(lock);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001174 ret = regmap_read(ds1307->regmap, DS1337_REG_STATUS, &stat);
1175 if (ret)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001176 goto out;
1177
1178 if (stat & DS1337_BIT_A1I) {
1179 stat &= ~DS1337_BIT_A1I;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001180 regmap_write(ds1307->regmap, DS1337_REG_STATUS, stat);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001181
Heiner Kallweit078f3f62017-06-05 17:57:29 +02001182 ret = regmap_update_bits(ds1307->regmap, DS1337_REG_CONTROL,
1183 DS1337_BIT_A1IE, 0);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001184 if (ret)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001185 goto out;
1186
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001187 rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001188 }
1189
1190out:
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001191 mutex_unlock(lock);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001192
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001193 return IRQ_HANDLED;
1194}
1195
1196/*----------------------------------------------------------------------*/
1197
David Brownellff8371a2006-09-30 23:28:17 -07001198static const struct rtc_class_ops ds13xx_rtc_ops = {
David Brownell1abb0dc2006-06-25 05:48:17 -07001199 .read_time = ds1307_get_time,
1200 .set_time = ds1307_set_time,
Jüri Reitel74d88eb2009-01-07 18:07:16 -08001201 .read_alarm = ds1337_read_alarm,
1202 .set_alarm = ds1337_set_alarm,
John Stultz16380c12011-02-02 17:02:41 -08001203 .alarm_irq_enable = ds1307_alarm_irq_enable,
David Brownell1abb0dc2006-06-25 05:48:17 -07001204};
1205
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001206static ssize_t frequency_test_store(struct device *dev,
1207 struct device_attribute *attr,
1208 const char *buf, size_t count)
Giulio Benettib41c23e2018-07-25 19:26:05 +02001209{
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001210 struct ds1307 *ds1307 = dev_get_drvdata(dev->parent);
Giulio Benettib41c23e2018-07-25 19:26:05 +02001211 bool freq_test_en;
1212 int ret;
1213
1214 ret = kstrtobool(buf, &freq_test_en);
1215 if (ret) {
1216 dev_err(dev, "Failed to store RTC Frequency Test attribute\n");
1217 return ret;
1218 }
1219
1220 regmap_update_bits(ds1307->regmap, M41TXX_REG_CONTROL, M41TXX_BIT_FT,
1221 freq_test_en ? M41TXX_BIT_FT : 0);
1222
1223 return count;
1224}
1225
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001226static ssize_t frequency_test_show(struct device *dev,
1227 struct device_attribute *attr,
1228 char *buf)
Giulio Benettib41c23e2018-07-25 19:26:05 +02001229{
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001230 struct ds1307 *ds1307 = dev_get_drvdata(dev->parent);
Giulio Benettib41c23e2018-07-25 19:26:05 +02001231 unsigned int ctrl_reg;
1232
1233 regmap_read(ds1307->regmap, M41TXX_REG_CONTROL, &ctrl_reg);
1234
1235 return scnprintf(buf, PAGE_SIZE, (ctrl_reg & M41TXX_BIT_FT) ? "on\n" :
1236 "off\n");
1237}
1238
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001239static DEVICE_ATTR_RW(frequency_test);
Giulio Benettib41c23e2018-07-25 19:26:05 +02001240
1241static struct attribute *rtc_freq_test_attrs[] = {
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001242 &dev_attr_frequency_test.attr,
Giulio Benettib41c23e2018-07-25 19:26:05 +02001243 NULL,
1244};
1245
1246static const struct attribute_group rtc_freq_test_attr_group = {
1247 .attrs = rtc_freq_test_attrs,
1248};
1249
Giulio Benettib41c23e2018-07-25 19:26:05 +02001250static int ds1307_add_frequency_test(struct ds1307 *ds1307)
1251{
1252 int err;
1253
1254 switch (ds1307->type) {
1255 case m41t0:
1256 case m41t00:
1257 case m41t11:
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001258 err = rtc_add_group(ds1307->rtc, &rtc_freq_test_attr_group);
1259 if (err)
Giulio Benettib41c23e2018-07-25 19:26:05 +02001260 return err;
Giulio Benettib41c23e2018-07-25 19:26:05 +02001261 break;
1262 default:
1263 break;
1264 }
1265
1266 return 0;
1267}
1268
Simon Guinot1d1945d2014-04-03 14:49:55 -07001269/*----------------------------------------------------------------------*/
1270
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001271static int ds1307_nvram_read(void *priv, unsigned int offset, void *val,
1272 size_t bytes)
David Brownell682d73f2007-11-14 16:58:32 -08001273{
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001274 struct ds1307 *ds1307 = priv;
Heiner Kallweit969fa072017-07-12 07:49:54 +02001275 const struct chip_desc *chip = &chips[ds1307->type];
David Brownell682d73f2007-11-14 16:58:32 -08001276
Heiner Kallweit969fa072017-07-12 07:49:54 +02001277 return regmap_bulk_read(ds1307->regmap, chip->nvram_offset + offset,
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001278 val, bytes);
David Brownell682d73f2007-11-14 16:58:32 -08001279}
1280
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001281static int ds1307_nvram_write(void *priv, unsigned int offset, void *val,
1282 size_t bytes)
David Brownell682d73f2007-11-14 16:58:32 -08001283{
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001284 struct ds1307 *ds1307 = priv;
Heiner Kallweit969fa072017-07-12 07:49:54 +02001285 const struct chip_desc *chip = &chips[ds1307->type];
David Brownell682d73f2007-11-14 16:58:32 -08001286
Heiner Kallweit969fa072017-07-12 07:49:54 +02001287 return regmap_bulk_write(ds1307->regmap, chip->nvram_offset + offset,
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001288 val, bytes);
David Brownell682d73f2007-11-14 16:58:32 -08001289}
1290
David Brownell682d73f2007-11-14 16:58:32 -08001291/*----------------------------------------------------------------------*/
1292
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001293static u8 ds1307_trickle_init(struct ds1307 *ds1307,
Heiner Kallweit7624df42017-07-12 07:49:33 +02001294 const struct chip_desc *chip)
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001295{
Alexandre Belloni57ec2d92017-09-04 22:46:04 +02001296 u32 ohms;
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001297 bool diode = true;
1298
1299 if (!chip->do_trickle_setup)
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001300 return 0;
1301
Heiner Kallweit11e58902017-03-10 18:52:34 +01001302 if (device_property_read_u32(ds1307->dev, "trickle-resistor-ohms",
1303 &ohms))
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001304 return 0;
1305
Heiner Kallweit11e58902017-03-10 18:52:34 +01001306 if (device_property_read_bool(ds1307->dev, "trickle-diode-disable"))
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001307 diode = false;
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001308
1309 return chip->do_trickle_setup(ds1307, ohms, diode);
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001310}
1311
Akinobu Mita445c0202016-01-25 00:22:16 +09001312/*----------------------------------------------------------------------*/
1313
Heiner Kallweit6b583a62017-09-27 22:41:26 +02001314#if IS_REACHABLE(CONFIG_HWMON)
Akinobu Mita445c0202016-01-25 00:22:16 +09001315
1316/*
1317 * Temperature sensor support for ds3231 devices.
1318 */
1319
1320#define DS3231_REG_TEMPERATURE 0x11
1321
1322/*
1323 * A user-initiated temperature conversion is not started by this function,
1324 * so the temperature is updated once every 64 seconds.
1325 */
Zhuang Yuyao9a3dce62016-04-18 09:21:42 +09001326static int ds3231_hwmon_read_temp(struct device *dev, s32 *mC)
Akinobu Mita445c0202016-01-25 00:22:16 +09001327{
1328 struct ds1307 *ds1307 = dev_get_drvdata(dev);
1329 u8 temp_buf[2];
1330 s16 temp;
1331 int ret;
1332
Heiner Kallweit11e58902017-03-10 18:52:34 +01001333 ret = regmap_bulk_read(ds1307->regmap, DS3231_REG_TEMPERATURE,
1334 temp_buf, sizeof(temp_buf));
1335 if (ret)
Akinobu Mita445c0202016-01-25 00:22:16 +09001336 return ret;
Akinobu Mita445c0202016-01-25 00:22:16 +09001337 /*
1338 * Temperature is represented as a 10-bit code with a resolution of
1339 * 0.25 degree celsius and encoded in two's complement format.
1340 */
1341 temp = (temp_buf[0] << 8) | temp_buf[1];
1342 temp >>= 6;
1343 *mC = temp * 250;
1344
1345 return 0;
1346}
1347
1348static ssize_t ds3231_hwmon_show_temp(struct device *dev,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001349 struct device_attribute *attr, char *buf)
Akinobu Mita445c0202016-01-25 00:22:16 +09001350{
1351 int ret;
Zhuang Yuyao9a3dce62016-04-18 09:21:42 +09001352 s32 temp;
Akinobu Mita445c0202016-01-25 00:22:16 +09001353
1354 ret = ds3231_hwmon_read_temp(dev, &temp);
1355 if (ret)
1356 return ret;
1357
1358 return sprintf(buf, "%d\n", temp);
1359}
Alexandre Bellonib4be2712017-09-04 22:46:08 +02001360static SENSOR_DEVICE_ATTR(temp1_input, 0444, ds3231_hwmon_show_temp,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001361 NULL, 0);
Akinobu Mita445c0202016-01-25 00:22:16 +09001362
1363static struct attribute *ds3231_hwmon_attrs[] = {
1364 &sensor_dev_attr_temp1_input.dev_attr.attr,
1365 NULL,
1366};
1367ATTRIBUTE_GROUPS(ds3231_hwmon);
1368
1369static void ds1307_hwmon_register(struct ds1307 *ds1307)
1370{
1371 struct device *dev;
1372
1373 if (ds1307->type != ds_3231)
1374 return;
1375
Heiner Kallweit11e58902017-03-10 18:52:34 +01001376 dev = devm_hwmon_device_register_with_groups(ds1307->dev, ds1307->name,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001377 ds1307,
1378 ds3231_hwmon_groups);
Akinobu Mita445c0202016-01-25 00:22:16 +09001379 if (IS_ERR(dev)) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001380 dev_warn(ds1307->dev, "unable to register hwmon device %ld\n",
1381 PTR_ERR(dev));
Akinobu Mita445c0202016-01-25 00:22:16 +09001382 }
1383}
1384
1385#else
1386
1387static void ds1307_hwmon_register(struct ds1307 *ds1307)
1388{
1389}
1390
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001391#endif /* CONFIG_RTC_DRV_DS1307_HWMON */
1392
1393/*----------------------------------------------------------------------*/
1394
1395/*
1396 * Square-wave output support for DS3231
1397 * Datasheet: https://datasheets.maximintegrated.com/en/ds/DS3231.pdf
1398 */
1399#ifdef CONFIG_COMMON_CLK
1400
1401enum {
1402 DS3231_CLK_SQW = 0,
1403 DS3231_CLK_32KHZ,
1404};
1405
1406#define clk_sqw_to_ds1307(clk) \
1407 container_of(clk, struct ds1307, clks[DS3231_CLK_SQW])
1408#define clk_32khz_to_ds1307(clk) \
1409 container_of(clk, struct ds1307, clks[DS3231_CLK_32KHZ])
1410
1411static int ds3231_clk_sqw_rates[] = {
1412 1,
1413 1024,
1414 4096,
1415 8192,
1416};
1417
1418static int ds1337_write_control(struct ds1307 *ds1307, u8 mask, u8 value)
1419{
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001420 struct mutex *lock = &ds1307->rtc->ops_lock;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001421 int ret;
1422
1423 mutex_lock(lock);
Heiner Kallweit078f3f62017-06-05 17:57:29 +02001424 ret = regmap_update_bits(ds1307->regmap, DS1337_REG_CONTROL,
1425 mask, value);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001426 mutex_unlock(lock);
1427
1428 return ret;
1429}
1430
1431static unsigned long ds3231_clk_sqw_recalc_rate(struct clk_hw *hw,
1432 unsigned long parent_rate)
1433{
1434 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001435 int control, ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001436 int rate_sel = 0;
1437
Heiner Kallweit11e58902017-03-10 18:52:34 +01001438 ret = regmap_read(ds1307->regmap, DS1337_REG_CONTROL, &control);
1439 if (ret)
1440 return ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001441 if (control & DS1337_BIT_RS1)
1442 rate_sel += 1;
1443 if (control & DS1337_BIT_RS2)
1444 rate_sel += 2;
1445
1446 return ds3231_clk_sqw_rates[rate_sel];
1447}
1448
1449static long ds3231_clk_sqw_round_rate(struct clk_hw *hw, unsigned long rate,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001450 unsigned long *prate)
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001451{
1452 int i;
1453
1454 for (i = ARRAY_SIZE(ds3231_clk_sqw_rates) - 1; i >= 0; i--) {
1455 if (ds3231_clk_sqw_rates[i] <= rate)
1456 return ds3231_clk_sqw_rates[i];
1457 }
1458
1459 return 0;
1460}
1461
1462static int ds3231_clk_sqw_set_rate(struct clk_hw *hw, unsigned long rate,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001463 unsigned long parent_rate)
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001464{
1465 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
1466 int control = 0;
1467 int rate_sel;
1468
1469 for (rate_sel = 0; rate_sel < ARRAY_SIZE(ds3231_clk_sqw_rates);
1470 rate_sel++) {
1471 if (ds3231_clk_sqw_rates[rate_sel] == rate)
1472 break;
1473 }
1474
1475 if (rate_sel == ARRAY_SIZE(ds3231_clk_sqw_rates))
1476 return -EINVAL;
1477
1478 if (rate_sel & 1)
1479 control |= DS1337_BIT_RS1;
1480 if (rate_sel & 2)
1481 control |= DS1337_BIT_RS2;
1482
1483 return ds1337_write_control(ds1307, DS1337_BIT_RS1 | DS1337_BIT_RS2,
1484 control);
1485}
1486
1487static int ds3231_clk_sqw_prepare(struct clk_hw *hw)
1488{
1489 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
1490
1491 return ds1337_write_control(ds1307, DS1337_BIT_INTCN, 0);
1492}
1493
1494static void ds3231_clk_sqw_unprepare(struct clk_hw *hw)
1495{
1496 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
1497
1498 ds1337_write_control(ds1307, DS1337_BIT_INTCN, DS1337_BIT_INTCN);
1499}
1500
1501static int ds3231_clk_sqw_is_prepared(struct clk_hw *hw)
1502{
1503 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001504 int control, ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001505
Heiner Kallweit11e58902017-03-10 18:52:34 +01001506 ret = regmap_read(ds1307->regmap, DS1337_REG_CONTROL, &control);
1507 if (ret)
1508 return ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001509
1510 return !(control & DS1337_BIT_INTCN);
1511}
1512
1513static const struct clk_ops ds3231_clk_sqw_ops = {
1514 .prepare = ds3231_clk_sqw_prepare,
1515 .unprepare = ds3231_clk_sqw_unprepare,
1516 .is_prepared = ds3231_clk_sqw_is_prepared,
1517 .recalc_rate = ds3231_clk_sqw_recalc_rate,
1518 .round_rate = ds3231_clk_sqw_round_rate,
1519 .set_rate = ds3231_clk_sqw_set_rate,
1520};
1521
1522static unsigned long ds3231_clk_32khz_recalc_rate(struct clk_hw *hw,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001523 unsigned long parent_rate)
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001524{
1525 return 32768;
1526}
1527
1528static int ds3231_clk_32khz_control(struct ds1307 *ds1307, bool enable)
1529{
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001530 struct mutex *lock = &ds1307->rtc->ops_lock;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001531 int ret;
1532
1533 mutex_lock(lock);
Heiner Kallweit078f3f62017-06-05 17:57:29 +02001534 ret = regmap_update_bits(ds1307->regmap, DS1337_REG_STATUS,
1535 DS3231_BIT_EN32KHZ,
1536 enable ? DS3231_BIT_EN32KHZ : 0);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001537 mutex_unlock(lock);
1538
1539 return ret;
1540}
1541
1542static int ds3231_clk_32khz_prepare(struct clk_hw *hw)
1543{
1544 struct ds1307 *ds1307 = clk_32khz_to_ds1307(hw);
1545
1546 return ds3231_clk_32khz_control(ds1307, true);
1547}
1548
1549static void ds3231_clk_32khz_unprepare(struct clk_hw *hw)
1550{
1551 struct ds1307 *ds1307 = clk_32khz_to_ds1307(hw);
1552
1553 ds3231_clk_32khz_control(ds1307, false);
1554}
1555
1556static int ds3231_clk_32khz_is_prepared(struct clk_hw *hw)
1557{
1558 struct ds1307 *ds1307 = clk_32khz_to_ds1307(hw);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001559 int status, ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001560
Heiner Kallweit11e58902017-03-10 18:52:34 +01001561 ret = regmap_read(ds1307->regmap, DS1337_REG_STATUS, &status);
1562 if (ret)
1563 return ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001564
1565 return !!(status & DS3231_BIT_EN32KHZ);
1566}
1567
1568static const struct clk_ops ds3231_clk_32khz_ops = {
1569 .prepare = ds3231_clk_32khz_prepare,
1570 .unprepare = ds3231_clk_32khz_unprepare,
1571 .is_prepared = ds3231_clk_32khz_is_prepared,
1572 .recalc_rate = ds3231_clk_32khz_recalc_rate,
1573};
1574
1575static struct clk_init_data ds3231_clks_init[] = {
1576 [DS3231_CLK_SQW] = {
1577 .name = "ds3231_clk_sqw",
1578 .ops = &ds3231_clk_sqw_ops,
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001579 },
1580 [DS3231_CLK_32KHZ] = {
1581 .name = "ds3231_clk_32khz",
1582 .ops = &ds3231_clk_32khz_ops,
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001583 },
1584};
1585
1586static int ds3231_clks_register(struct ds1307 *ds1307)
1587{
Heiner Kallweit11e58902017-03-10 18:52:34 +01001588 struct device_node *node = ds1307->dev->of_node;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001589 struct clk_onecell_data *onecell;
1590 int i;
1591
Heiner Kallweit11e58902017-03-10 18:52:34 +01001592 onecell = devm_kzalloc(ds1307->dev, sizeof(*onecell), GFP_KERNEL);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001593 if (!onecell)
1594 return -ENOMEM;
1595
1596 onecell->clk_num = ARRAY_SIZE(ds3231_clks_init);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001597 onecell->clks = devm_kcalloc(ds1307->dev, onecell->clk_num,
1598 sizeof(onecell->clks[0]), GFP_KERNEL);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001599 if (!onecell->clks)
1600 return -ENOMEM;
1601
1602 for (i = 0; i < ARRAY_SIZE(ds3231_clks_init); i++) {
1603 struct clk_init_data init = ds3231_clks_init[i];
1604
1605 /*
1606 * Interrupt signal due to alarm conditions and square-wave
1607 * output share same pin, so don't initialize both.
1608 */
1609 if (i == DS3231_CLK_SQW && test_bit(HAS_ALARM, &ds1307->flags))
1610 continue;
1611
1612 /* optional override of the clockname */
1613 of_property_read_string_index(node, "clock-output-names", i,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001614 &init.name);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001615 ds1307->clks[i].init = &init;
1616
Heiner Kallweit11e58902017-03-10 18:52:34 +01001617 onecell->clks[i] = devm_clk_register(ds1307->dev,
1618 &ds1307->clks[i]);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001619 if (IS_ERR(onecell->clks[i]))
1620 return PTR_ERR(onecell->clks[i]);
1621 }
1622
1623 if (!node)
1624 return 0;
1625
1626 of_clk_add_provider(node, of_clk_src_onecell_get, onecell);
1627
1628 return 0;
1629}
1630
1631static void ds1307_clks_register(struct ds1307 *ds1307)
1632{
1633 int ret;
1634
1635 if (ds1307->type != ds_3231)
1636 return;
1637
1638 ret = ds3231_clks_register(ds1307);
1639 if (ret) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001640 dev_warn(ds1307->dev, "unable to register clock device %d\n",
1641 ret);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001642 }
1643}
1644
1645#else
1646
1647static void ds1307_clks_register(struct ds1307 *ds1307)
1648{
1649}
1650
1651#endif /* CONFIG_COMMON_CLK */
Akinobu Mita445c0202016-01-25 00:22:16 +09001652
Chris Packhamfd90d482020-03-30 15:55:00 +13001653#ifdef CONFIG_WATCHDOG_CORE
1654static const struct watchdog_info ds1388_wdt_info = {
1655 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
1656 .identity = "DS1388 watchdog",
1657};
1658
1659static const struct watchdog_ops ds1388_wdt_ops = {
1660 .owner = THIS_MODULE,
1661 .start = ds1388_wdt_start,
1662 .stop = ds1388_wdt_stop,
1663 .ping = ds1388_wdt_ping,
1664 .set_timeout = ds1388_wdt_set_timeout,
1665
1666};
1667
1668static void ds1307_wdt_register(struct ds1307 *ds1307)
1669{
1670 struct watchdog_device *wdt;
1671
1672 if (ds1307->type != ds_1388)
1673 return;
1674
1675 wdt = devm_kzalloc(ds1307->dev, sizeof(*wdt), GFP_KERNEL);
1676
1677 wdt->info = &ds1388_wdt_info;
1678 wdt->ops = &ds1388_wdt_ops;
1679 wdt->timeout = 99;
1680 wdt->max_timeout = 99;
1681 wdt->min_timeout = 1;
1682
1683 watchdog_init_timeout(wdt, 0, ds1307->dev);
1684 watchdog_set_drvdata(wdt, ds1307);
1685 devm_watchdog_register_device(ds1307->dev, wdt);
1686}
1687#else
1688static void ds1307_wdt_register(struct ds1307 *ds1307)
1689{
1690}
1691#endif /* CONFIG_WATCHDOG_CORE */
1692
Heiner Kallweit11e58902017-03-10 18:52:34 +01001693static const struct regmap_config regmap_config = {
1694 .reg_bits = 8,
1695 .val_bits = 8,
Heiner Kallweit11e58902017-03-10 18:52:34 +01001696};
1697
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -08001698static int ds1307_probe(struct i2c_client *client,
1699 const struct i2c_device_id *id)
David Brownell1abb0dc2006-06-25 05:48:17 -07001700{
1701 struct ds1307 *ds1307;
1702 int err = -ENODEV;
Heiner Kallweit584ce302017-08-29 21:52:56 +02001703 int tmp;
Heiner Kallweit7624df42017-07-12 07:49:33 +02001704 const struct chip_desc *chip;
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001705 bool want_irq;
Michael Lange8bc2a402016-01-21 18:10:16 +01001706 bool ds1307_can_wakeup_device = false;
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001707 unsigned char regs[8];
Jingoo Han01ce8932013-11-12 15:10:41 -08001708 struct ds1307_platform_data *pdata = dev_get_platdata(&client->dev);
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001709 u8 trickle_charger_setup = 0;
David Brownell1abb0dc2006-06-25 05:48:17 -07001710
Jingoo Hanedca66d2013-07-03 15:07:05 -07001711 ds1307 = devm_kzalloc(&client->dev, sizeof(struct ds1307), GFP_KERNEL);
David Anders40ce9722012-03-23 15:02:37 -07001712 if (!ds1307)
David Brownellc065f352007-07-17 04:05:10 -07001713 return -ENOMEM;
David Brownell045e0e82007-07-17 04:04:55 -07001714
Heiner Kallweit11e58902017-03-10 18:52:34 +01001715 dev_set_drvdata(&client->dev, ds1307);
1716 ds1307->dev = &client->dev;
1717 ds1307->name = client->name;
Joakim Tjernlund33df2ee2009-06-17 16:26:08 -07001718
Heiner Kallweit11e58902017-03-10 18:52:34 +01001719 ds1307->regmap = devm_regmap_init_i2c(client, &regmap_config);
1720 if (IS_ERR(ds1307->regmap)) {
1721 dev_err(ds1307->dev, "regmap allocation failed\n");
1722 return PTR_ERR(ds1307->regmap);
1723 }
1724
1725 i2c_set_clientdata(client, ds1307);
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001726
1727 if (client->dev.of_node) {
1728 ds1307->type = (enum ds_type)
1729 of_device_get_match_data(&client->dev);
1730 chip = &chips[ds1307->type];
1731 } else if (id) {
Tin Huynh9c19b892016-11-30 09:57:31 +07001732 chip = &chips[id->driver_data];
1733 ds1307->type = id->driver_data;
1734 } else {
1735 const struct acpi_device_id *acpi_id;
Joakim Tjernlund33df2ee2009-06-17 16:26:08 -07001736
Tin Huynh9c19b892016-11-30 09:57:31 +07001737 acpi_id = acpi_match_device(ACPI_PTR(ds1307_acpi_ids),
Heiner Kallweit11e58902017-03-10 18:52:34 +01001738 ds1307->dev);
Tin Huynh9c19b892016-11-30 09:57:31 +07001739 if (!acpi_id)
1740 return -ENODEV;
1741 chip = &chips[acpi_id->driver_data];
1742 ds1307->type = acpi_id->driver_data;
1743 }
1744
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001745 want_irq = client->irq > 0 && chip->alarm;
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001746
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001747 if (!pdata)
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001748 trickle_charger_setup = ds1307_trickle_init(ds1307, chip);
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001749 else if (pdata->trickle_charger_setup)
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001750 trickle_charger_setup = pdata->trickle_charger_setup;
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001751
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001752 if (trickle_charger_setup && chip->trickle_charger_reg) {
1753 trickle_charger_setup |= DS13XX_TRICKLE_CHARGER_MAGIC;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001754 dev_dbg(ds1307->dev,
1755 "writing trickle charger info 0x%x to 0x%x\n",
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001756 trickle_charger_setup, chip->trickle_charger_reg);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001757 regmap_write(ds1307->regmap, chip->trickle_charger_reg,
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001758 trickle_charger_setup);
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001759 }
Wolfram Sangeb86c302012-05-29 15:07:38 -07001760
Michael Lange8bc2a402016-01-21 18:10:16 +01001761#ifdef CONFIG_OF
1762/*
1763 * For devices with no IRQ directly connected to the SoC, the RTC chip
1764 * can be forced as a wakeup source by stating that explicitly in
1765 * the device's .dts file using the "wakeup-source" boolean property.
1766 * If the "wakeup-source" property is set, don't request an IRQ.
1767 * This will guarantee the 'wakealarm' sysfs entry is available on the device,
1768 * if supported by the RTC.
1769 */
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001770 if (chip->alarm && of_property_read_bool(client->dev.of_node,
1771 "wakeup-source"))
Michael Lange8bc2a402016-01-21 18:10:16 +01001772 ds1307_can_wakeup_device = true;
Michael Lange8bc2a402016-01-21 18:10:16 +01001773#endif
1774
David Brownell045e0e82007-07-17 04:04:55 -07001775 switch (ds1307->type) {
1776 case ds_1337:
1777 case ds_1339:
Nikita Yushchenko0759c882017-08-24 09:32:11 +03001778 case ds_1341:
Wolfram Sang97f902b2009-06-17 16:26:10 -07001779 case ds_3231:
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -07001780 /* get registers that the "rtc" read below won't read... */
Heiner Kallweit11e58902017-03-10 18:52:34 +01001781 err = regmap_bulk_read(ds1307->regmap, DS1337_REG_CONTROL,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001782 regs, 2);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001783 if (err) {
1784 dev_dbg(ds1307->dev, "read error %d\n", err);
Jingoo Hanedca66d2013-07-03 15:07:05 -07001785 goto exit;
David Brownell1abb0dc2006-06-25 05:48:17 -07001786 }
1787
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -07001788 /* oscillator off? turn it on, so clock can tick. */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001789 if (regs[0] & DS1337_BIT_nEOSC)
1790 regs[0] &= ~DS1337_BIT_nEOSC;
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001791
David Anders40ce9722012-03-23 15:02:37 -07001792 /*
Michael Lange8bc2a402016-01-21 18:10:16 +01001793 * Using IRQ or defined as wakeup-source?
1794 * Disable the square wave and both alarms.
Wolfram Sang97f902b2009-06-17 16:26:10 -07001795 * For some variants, be sure alarms can trigger when we're
1796 * running on Vbackup (BBSQI/BBSQW)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001797 */
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001798 if (want_irq || ds1307_can_wakeup_device) {
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001799 regs[0] |= DS1337_BIT_INTCN | chip->bbsqi_bit;
1800 regs[0] &= ~(DS1337_BIT_A2IE | DS1337_BIT_A1IE);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001801 }
1802
Heiner Kallweit11e58902017-03-10 18:52:34 +01001803 regmap_write(ds1307->regmap, DS1337_REG_CONTROL,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001804 regs[0]);
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -07001805
1806 /* oscillator fault? clear flag, and warn */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001807 if (regs[1] & DS1337_BIT_OSF) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001808 regmap_write(ds1307->regmap, DS1337_REG_STATUS,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001809 regs[1] & ~DS1337_BIT_OSF);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001810 dev_warn(ds1307->dev, "SET TIME!\n");
David Brownell1abb0dc2006-06-25 05:48:17 -07001811 }
David Brownell045e0e82007-07-17 04:04:55 -07001812 break;
Matthias Fuchsa2166852009-03-31 15:24:58 -07001813
1814 case rx_8025:
Heiner Kallweit11e58902017-03-10 18:52:34 +01001815 err = regmap_bulk_read(ds1307->regmap,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001816 RX8025_REG_CTRL1 << 4 | 0x08, regs, 2);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001817 if (err) {
1818 dev_dbg(ds1307->dev, "read error %d\n", err);
Jingoo Hanedca66d2013-07-03 15:07:05 -07001819 goto exit;
Matthias Fuchsa2166852009-03-31 15:24:58 -07001820 }
1821
1822 /* oscillator off? turn it on, so clock can tick. */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001823 if (!(regs[1] & RX8025_BIT_XST)) {
1824 regs[1] |= RX8025_BIT_XST;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001825 regmap_write(ds1307->regmap,
1826 RX8025_REG_CTRL2 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001827 regs[1]);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001828 dev_warn(ds1307->dev,
Matthias Fuchsa2166852009-03-31 15:24:58 -07001829 "oscillator stop detected - SET TIME!\n");
1830 }
1831
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001832 if (regs[1] & RX8025_BIT_PON) {
1833 regs[1] &= ~RX8025_BIT_PON;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001834 regmap_write(ds1307->regmap,
1835 RX8025_REG_CTRL2 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001836 regs[1]);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001837 dev_warn(ds1307->dev, "power-on detected\n");
Matthias Fuchsa2166852009-03-31 15:24:58 -07001838 }
1839
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001840 if (regs[1] & RX8025_BIT_VDET) {
1841 regs[1] &= ~RX8025_BIT_VDET;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001842 regmap_write(ds1307->regmap,
1843 RX8025_REG_CTRL2 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001844 regs[1]);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001845 dev_warn(ds1307->dev, "voltage drop detected\n");
Matthias Fuchsa2166852009-03-31 15:24:58 -07001846 }
1847
1848 /* make sure we are running in 24hour mode */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001849 if (!(regs[0] & RX8025_BIT_2412)) {
Matthias Fuchsa2166852009-03-31 15:24:58 -07001850 u8 hour;
1851
1852 /* switch to 24 hour mode */
Heiner Kallweit11e58902017-03-10 18:52:34 +01001853 regmap_write(ds1307->regmap,
1854 RX8025_REG_CTRL1 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001855 regs[0] | RX8025_BIT_2412);
Matthias Fuchsa2166852009-03-31 15:24:58 -07001856
Heiner Kallweit11e58902017-03-10 18:52:34 +01001857 err = regmap_bulk_read(ds1307->regmap,
1858 RX8025_REG_CTRL1 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001859 regs, 2);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001860 if (err) {
1861 dev_dbg(ds1307->dev, "read error %d\n", err);
Jingoo Hanedca66d2013-07-03 15:07:05 -07001862 goto exit;
Matthias Fuchsa2166852009-03-31 15:24:58 -07001863 }
1864
1865 /* correct hour */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001866 hour = bcd2bin(regs[DS1307_REG_HOUR]);
Matthias Fuchsa2166852009-03-31 15:24:58 -07001867 if (hour == 12)
1868 hour = 0;
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001869 if (regs[DS1307_REG_HOUR] & DS1307_BIT_PM)
Matthias Fuchsa2166852009-03-31 15:24:58 -07001870 hour += 12;
1871
Heiner Kallweit11e58902017-03-10 18:52:34 +01001872 regmap_write(ds1307->regmap,
1873 DS1307_REG_HOUR << 4 | 0x08, hour);
Matthias Fuchsa2166852009-03-31 15:24:58 -07001874 }
1875 break;
David Brownell045e0e82007-07-17 04:04:55 -07001876 default:
1877 break;
1878 }
David Brownell1abb0dc2006-06-25 05:48:17 -07001879
David Brownell1abb0dc2006-06-25 05:48:17 -07001880 /* read RTC registers */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001881 err = regmap_bulk_read(ds1307->regmap, chip->offset, regs,
1882 sizeof(regs));
Heiner Kallweit11e58902017-03-10 18:52:34 +01001883 if (err) {
1884 dev_dbg(ds1307->dev, "read error %d\n", err);
Jingoo Hanedca66d2013-07-03 15:07:05 -07001885 goto exit;
David Brownell1abb0dc2006-06-25 05:48:17 -07001886 }
1887
Alexandre Bellonib3a50162019-04-11 00:16:29 +02001888 if (ds1307->type == mcp794xx &&
1889 !(regs[DS1307_REG_WDAY] & MCP794XX_BIT_VBATEN)) {
1890 regmap_write(ds1307->regmap, DS1307_REG_WDAY,
1891 regs[DS1307_REG_WDAY] |
1892 MCP794XX_BIT_VBATEN);
David Brownell1abb0dc2006-06-25 05:48:17 -07001893 }
David Brownell045e0e82007-07-17 04:04:55 -07001894
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001895 tmp = regs[DS1307_REG_HOUR];
David Brownellc065f352007-07-17 04:05:10 -07001896 switch (ds1307->type) {
1897 case ds_1340:
Stefan Agner8566f702017-03-23 16:54:57 -07001898 case m41t0:
David Brownellc065f352007-07-17 04:05:10 -07001899 case m41t00:
Giulio Benetti7e580762018-05-16 23:08:40 +02001900 case m41t11:
David Anders40ce9722012-03-23 15:02:37 -07001901 /*
1902 * NOTE: ignores century bits; fix before deploying
David Brownellc065f352007-07-17 04:05:10 -07001903 * systems that will run through year 2100.
1904 */
1905 break;
Matthias Fuchsa2166852009-03-31 15:24:58 -07001906 case rx_8025:
1907 break;
David Brownellc065f352007-07-17 04:05:10 -07001908 default:
1909 if (!(tmp & DS1307_BIT_12HR))
1910 break;
1911
David Anders40ce9722012-03-23 15:02:37 -07001912 /*
1913 * Be sure we're in 24 hour mode. Multi-master systems
David Brownellc065f352007-07-17 04:05:10 -07001914 * take note...
1915 */
Adrian Bunkfe20ba72008-10-18 20:28:41 -07001916 tmp = bcd2bin(tmp & 0x1f);
David Brownellc065f352007-07-17 04:05:10 -07001917 if (tmp == 12)
1918 tmp = 0;
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001919 if (regs[DS1307_REG_HOUR] & DS1307_BIT_PM)
David Brownellc065f352007-07-17 04:05:10 -07001920 tmp += 12;
Heiner Kallweite5531702017-07-12 07:49:47 +02001921 regmap_write(ds1307->regmap, chip->offset + DS1307_REG_HOUR,
Heiner Kallweit11e58902017-03-10 18:52:34 +01001922 bin2bcd(tmp));
David Brownell1abb0dc2006-06-25 05:48:17 -07001923 }
1924
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001925 if (want_irq || ds1307_can_wakeup_device) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001926 device_set_wakeup_capable(ds1307->dev, true);
Simon Guinot3abb1ad2015-11-26 15:37:13 +01001927 set_bit(HAS_ALARM, &ds1307->flags);
1928 }
Alexandre Belloni69b119a2017-07-06 11:42:06 +02001929
1930 ds1307->rtc = devm_rtc_allocate_device(ds1307->dev);
Alexandre Bellonie69c0562017-09-04 22:46:07 +02001931 if (IS_ERR(ds1307->rtc))
Alessandro Zummo4071ea22014-04-03 14:49:36 -07001932 return PTR_ERR(ds1307->rtc);
David Brownell1abb0dc2006-06-25 05:48:17 -07001933
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001934 if (ds1307_can_wakeup_device && !want_irq) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001935 dev_info(ds1307->dev,
1936 "'wakeup-source' is set, request for an IRQ is disabled!\n");
Michael Lange8bc2a402016-01-21 18:10:16 +01001937 /* We cannot support UIE mode if we do not have an IRQ line */
1938 ds1307->rtc->uie_unsupported = 1;
1939 }
1940
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001941 if (want_irq) {
Heiner Kallweit45947122017-07-12 07:49:41 +02001942 err = devm_request_threaded_irq(ds1307->dev, client->irq, NULL,
1943 chip->irq_handler ?: ds1307_irq,
Nishanth Menonc5983192015-06-23 11:15:11 -05001944 IRQF_SHARED | IRQF_ONESHOT,
Alexandre Belloni4b9e2a02017-06-02 14:13:21 +02001945 ds1307->name, ds1307);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001946 if (err) {
Alessandro Zummo4071ea22014-04-03 14:49:36 -07001947 client->irq = 0;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001948 device_set_wakeup_capable(ds1307->dev, false);
Simon Guinot3abb1ad2015-11-26 15:37:13 +01001949 clear_bit(HAS_ALARM, &ds1307->flags);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001950 dev_err(ds1307->dev, "unable to request IRQ!\n");
Alexandre Bellonie69c0562017-09-04 22:46:07 +02001951 } else {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001952 dev_dbg(ds1307->dev, "got IRQ %d\n", client->irq);
Alexandre Bellonie69c0562017-09-04 22:46:07 +02001953 }
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001954 }
1955
Alexandre Bellonie9fb7682018-02-12 23:47:22 +01001956 ds1307->rtc->ops = chip->rtc_ops ?: &ds13xx_rtc_ops;
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001957 err = ds1307_add_frequency_test(ds1307);
Alexandre Bellonie9fb7682018-02-12 23:47:22 +01001958 if (err)
1959 return err;
1960
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001961 err = rtc_register_device(ds1307->rtc);
Giulio Benettib41c23e2018-07-25 19:26:05 +02001962 if (err)
1963 return err;
1964
Austin Boyle9eab0a72012-03-23 15:02:38 -07001965 if (chip->nvram_size) {
Alexandre Belloni409baf12018-02-12 23:47:23 +01001966 struct nvmem_config nvmem_cfg = {
1967 .name = "ds1307_nvram",
1968 .word_size = 1,
1969 .stride = 1,
1970 .size = chip->nvram_size,
1971 .reg_read = ds1307_nvram_read,
1972 .reg_write = ds1307_nvram_write,
1973 .priv = ds1307,
1974 };
Alessandro Zummo4071ea22014-04-03 14:49:36 -07001975
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001976 ds1307->rtc->nvram_old_abi = true;
Alexandre Belloni409baf12018-02-12 23:47:23 +01001977 rtc_nvmem_register(ds1307->rtc, &nvmem_cfg);
David Brownell682d73f2007-11-14 16:58:32 -08001978 }
1979
Akinobu Mita445c0202016-01-25 00:22:16 +09001980 ds1307_hwmon_register(ds1307);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001981 ds1307_clks_register(ds1307);
Chris Packhamfd90d482020-03-30 15:55:00 +13001982 ds1307_wdt_register(ds1307);
Akinobu Mita445c0202016-01-25 00:22:16 +09001983
David Brownell1abb0dc2006-06-25 05:48:17 -07001984 return 0;
1985
Jingoo Hanedca66d2013-07-03 15:07:05 -07001986exit:
David Brownell1abb0dc2006-06-25 05:48:17 -07001987 return err;
1988}
1989
David Brownell1abb0dc2006-06-25 05:48:17 -07001990static struct i2c_driver ds1307_driver = {
1991 .driver = {
David Brownellc065f352007-07-17 04:05:10 -07001992 .name = "rtc-ds1307",
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001993 .of_match_table = of_match_ptr(ds1307_of_match),
Tin Huynh9c19b892016-11-30 09:57:31 +07001994 .acpi_match_table = ACPI_PTR(ds1307_acpi_ids),
David Brownell1abb0dc2006-06-25 05:48:17 -07001995 },
David Brownellc065f352007-07-17 04:05:10 -07001996 .probe = ds1307_probe,
Jean Delvare3760f732008-04-29 23:11:40 +02001997 .id_table = ds1307_id,
David Brownell1abb0dc2006-06-25 05:48:17 -07001998};
1999
Axel Lin0abc9202012-03-23 15:02:31 -07002000module_i2c_driver(ds1307_driver);
David Brownell1abb0dc2006-06-25 05:48:17 -07002001
2002MODULE_DESCRIPTION("RTC driver for DS1307 and similar chips");
2003MODULE_LICENSE("GPL");