blob: 336cb9aa5e336d74889343a7e53bcbeb269683fb [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
David Brownell1abb0dc2006-06-25 05:48:17 -070011#include <linux/bcd.h>
Nishanth Menoneac72372015-06-23 11:15:12 -050012#include <linux/i2c.h>
13#include <linux/init.h>
Andy Shevchenko698fffc2020-11-16 16:28:59 +020014#include <linux/mod_devicetable.h>
Nishanth Menoneac72372015-06-23 11:15:12 -050015#include <linux/module.h>
Andy Shevchenko227ec122020-11-16 16:28:58 +020016#include <linux/property.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 {
Andy Shevchenko227ec122020-11-16 16:28:58 +020034 unknown_ds_type, /* always first and 0 */
David Brownell045e0e82007-07-17 04:04:55 -070035 ds_1307,
Sean Nyekjaer300a7732017-06-08 12:36:54 +020036 ds_1308,
David Brownell045e0e82007-07-17 04:04:55 -070037 ds_1337,
38 ds_1338,
39 ds_1339,
40 ds_1340,
Nikita Yushchenko0759c882017-08-24 09:32:11 +030041 ds_1341,
Joakim Tjernlund33df2ee2009-06-17 16:26:08 -070042 ds_1388,
Wolfram Sang97f902b2009-06-17 16:26:10 -070043 ds_3231,
Stefan Agner8566f702017-03-23 16:54:57 -070044 m41t0,
David Brownell045e0e82007-07-17 04:04:55 -070045 m41t00,
Giulio Benetti7e580762018-05-16 23:08:40 +020046 m41t11,
Tomas Novotnyf4199f82014-12-10 15:53:57 -080047 mcp794xx,
Matthias Fuchsa2166852009-03-31 15:24:58 -070048 rx_8025,
Marek Vasutee0981b2017-06-18 22:55:28 +020049 rx_8130,
Wolfram Sang32d322b2012-03-23 15:02:36 -070050 last_ds_type /* always last */
David Anders40ce9722012-03-23 15:02:37 -070051 /* rs5c372 too? different address... */
David Brownell1abb0dc2006-06-25 05:48:17 -070052};
53
David Brownell1abb0dc2006-06-25 05:48:17 -070054/* RTC registers don't differ much, except for the century flag */
55#define DS1307_REG_SECS 0x00 /* 00-59 */
56# define DS1307_BIT_CH 0x80
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070057# define DS1340_BIT_nEOSC 0x80
Tomas Novotnyf4199f82014-12-10 15:53:57 -080058# define MCP794XX_BIT_ST 0x80
David Brownell1abb0dc2006-06-25 05:48:17 -070059#define DS1307_REG_MIN 0x01 /* 00-59 */
Stefan Agner8566f702017-03-23 16:54:57 -070060# define M41T0_BIT_OF 0x80
David Brownell1abb0dc2006-06-25 05:48:17 -070061#define DS1307_REG_HOUR 0x02 /* 00-23, or 1-12{am,pm} */
David Brownellc065f352007-07-17 04:05:10 -070062# define DS1307_BIT_12HR 0x40 /* in REG_HOUR */
63# define DS1307_BIT_PM 0x20 /* in REG_HOUR */
David Brownell1abb0dc2006-06-25 05:48:17 -070064# define DS1340_BIT_CENTURY_EN 0x80 /* in REG_HOUR */
65# define DS1340_BIT_CENTURY 0x40 /* in REG_HOUR */
66#define DS1307_REG_WDAY 0x03 /* 01-07 */
Tomas Novotnyf4199f82014-12-10 15:53:57 -080067# define MCP794XX_BIT_VBATEN 0x08
David Brownell1abb0dc2006-06-25 05:48:17 -070068#define DS1307_REG_MDAY 0x04 /* 01-31 */
69#define DS1307_REG_MONTH 0x05 /* 01-12 */
70# define DS1337_BIT_CENTURY 0x80 /* in REG_MONTH */
71#define DS1307_REG_YEAR 0x06 /* 00-99 */
72
David Anders40ce9722012-03-23 15:02:37 -070073/*
74 * Other registers (control, status, alarms, trickle charge, NVRAM, etc)
David Brownell045e0e82007-07-17 04:04:55 -070075 * start at 7, and they differ a LOT. Only control and status matter for
76 * basic RTC date and time functionality; be careful using them.
David Brownell1abb0dc2006-06-25 05:48:17 -070077 */
David Brownell045e0e82007-07-17 04:04:55 -070078#define DS1307_REG_CONTROL 0x07 /* or ds1338 */
David Brownell1abb0dc2006-06-25 05:48:17 -070079# define DS1307_BIT_OUT 0x80
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070080# define DS1338_BIT_OSF 0x20
David Brownell1abb0dc2006-06-25 05:48:17 -070081# define DS1307_BIT_SQWE 0x10
82# define DS1307_BIT_RS1 0x02
83# define DS1307_BIT_RS0 0x01
84#define DS1337_REG_CONTROL 0x0e
85# define DS1337_BIT_nEOSC 0x80
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -070086# define DS1339_BIT_BBSQI 0x20
Wolfram Sang97f902b2009-06-17 16:26:10 -070087# define DS3231_BIT_BBSQW 0x40 /* same as BBSQI */
David Brownell1abb0dc2006-06-25 05:48:17 -070088# define DS1337_BIT_RS2 0x10
89# define DS1337_BIT_RS1 0x08
90# define DS1337_BIT_INTCN 0x04
91# define DS1337_BIT_A2IE 0x02
92# define DS1337_BIT_A1IE 0x01
David Brownell045e0e82007-07-17 04:04:55 -070093#define DS1340_REG_CONTROL 0x07
94# define DS1340_BIT_OUT 0x80
95# define DS1340_BIT_FT 0x40
96# define DS1340_BIT_CALIB_SIGN 0x20
97# define DS1340_M_CALIBRATION 0x1f
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070098#define DS1340_REG_FLAG 0x09
99# define DS1340_BIT_OSF 0x80
David Brownell1abb0dc2006-06-25 05:48:17 -0700100#define DS1337_REG_STATUS 0x0f
101# define DS1337_BIT_OSF 0x80
Akinobu Mita6c6ff142016-01-31 23:10:10 +0900102# define DS3231_BIT_EN32KHZ 0x08
David Brownell1abb0dc2006-06-25 05:48:17 -0700103# define DS1337_BIT_A2I 0x02
104# define DS1337_BIT_A1I 0x01
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700105#define DS1339_REG_ALARM1_SECS 0x07
Wolfram Sangeb86c302012-05-29 15:07:38 -0700106
107#define DS13XX_TRICKLE_CHARGER_MAGIC 0xa0
David Brownell1abb0dc2006-06-25 05:48:17 -0700108
Matthias Fuchsa2166852009-03-31 15:24:58 -0700109#define RX8025_REG_CTRL1 0x0e
110# define RX8025_BIT_2412 0x20
111#define RX8025_REG_CTRL2 0x0f
112# define RX8025_BIT_PON 0x10
113# define RX8025_BIT_VDET 0x40
114# define RX8025_BIT_XST 0x20
David Brownell1abb0dc2006-06-25 05:48:17 -0700115
Uwe Kleine-König3ffd4a22019-01-25 15:35:56 +0100116#define RX8130_REG_ALARM_MIN 0x17
117#define RX8130_REG_ALARM_HOUR 0x18
118#define RX8130_REG_ALARM_WEEK_OR_DAY 0x19
119#define RX8130_REG_EXTENSION 0x1c
Uwe Kleine-König92cbf122019-01-25 15:35:54 +0100120#define RX8130_REG_EXTENSION_WADA BIT(3)
Uwe Kleine-König3ffd4a22019-01-25 15:35:56 +0100121#define RX8130_REG_FLAG 0x1d
122#define RX8130_REG_FLAG_VLF BIT(1)
Uwe Kleine-König92cbf122019-01-25 15:35:54 +0100123#define RX8130_REG_FLAG_AF BIT(3)
Uwe Kleine-König3ffd4a22019-01-25 15:35:56 +0100124#define RX8130_REG_CONTROL0 0x1e
Uwe Kleine-König92cbf122019-01-25 15:35:54 +0100125#define RX8130_REG_CONTROL0_AIE BIT(3)
Bastian Krause0026f162020-09-17 20:32:46 +0200126#define RX8130_REG_CONTROL1 0x1f
127#define RX8130_REG_CONTROL1_INIEN BIT(4)
128#define RX8130_REG_CONTROL1_CHGEN BIT(5)
Uwe Kleine-König92cbf122019-01-25 15:35:54 +0100129
130#define MCP794XX_REG_CONTROL 0x07
131# define MCP794XX_BIT_ALM0_EN 0x10
132# define MCP794XX_BIT_ALM1_EN 0x20
133#define MCP794XX_REG_ALARM0_BASE 0x0a
134#define MCP794XX_REG_ALARM0_CTRL 0x0d
135#define MCP794XX_REG_ALARM1_BASE 0x11
136#define MCP794XX_REG_ALARM1_CTRL 0x14
137# define MCP794XX_BIT_ALMX_IF BIT(3)
138# define MCP794XX_BIT_ALMX_C0 BIT(4)
139# define MCP794XX_BIT_ALMX_C1 BIT(5)
140# define MCP794XX_BIT_ALMX_C2 BIT(6)
141# define MCP794XX_BIT_ALMX_POL BIT(7)
142# define MCP794XX_MSK_ALMX_MATCH (MCP794XX_BIT_ALMX_C0 | \
143 MCP794XX_BIT_ALMX_C1 | \
144 MCP794XX_BIT_ALMX_C2)
145
Giulio Benetti79230ff2018-07-25 19:26:04 +0200146#define M41TXX_REG_CONTROL 0x07
147# define M41TXX_BIT_OUT BIT(7)
148# define M41TXX_BIT_FT BIT(6)
149# define M41TXX_BIT_CALIB_SIGN BIT(5)
150# define M41TXX_M_CALIBRATION GENMASK(4, 0)
151
Chris Packhamfd90d482020-03-30 15:55:00 +1300152#define DS1388_REG_WDOG_HUN_SECS 0x08
153#define DS1388_REG_WDOG_SECS 0x09
Chris Packhamdf11b322020-02-07 16:18:11 +1300154#define DS1388_REG_FLAG 0x0b
Chris Packhamfd90d482020-03-30 15:55:00 +1300155# define DS1388_BIT_WF BIT(6)
Chris Packhamdf11b322020-02-07 16:18:11 +1300156# define DS1388_BIT_OSF BIT(7)
Chris Packhamfd90d482020-03-30 15:55:00 +1300157#define DS1388_REG_CONTROL 0x0c
158# define DS1388_BIT_RST BIT(0)
159# define DS1388_BIT_WDE BIT(1)
Chris Packham59ed0122020-08-17 11:57:31 +1200160# define DS1388_BIT_nEOSC BIT(7)
Chris Packhamfd90d482020-03-30 15:55:00 +1300161
Giulio Benetti79230ff2018-07-25 19:26:04 +0200162/* negative offset step is -2.034ppm */
163#define M41TXX_NEG_OFFSET_STEP_PPB 2034
164/* positive offset step is +4.068ppm */
165#define M41TXX_POS_OFFSET_STEP_PPB 4068
166/* Min and max values supported with 'offset' interface by M41TXX */
167#define M41TXX_MIN_OFFSET ((-31) * M41TXX_NEG_OFFSET_STEP_PPB)
168#define M41TXX_MAX_OFFSET ((31) * M41TXX_POS_OFFSET_STEP_PPB)
169
David Brownell1abb0dc2006-06-25 05:48:17 -0700170struct ds1307 {
David Brownell1abb0dc2006-06-25 05:48:17 -0700171 enum ds_type type;
Heiner Kallweit11e58902017-03-10 18:52:34 +0100172 struct device *dev;
173 struct regmap *regmap;
174 const char *name;
David Brownell1abb0dc2006-06-25 05:48:17 -0700175 struct rtc_device *rtc;
Akinobu Mita6c6ff142016-01-31 23:10:10 +0900176#ifdef CONFIG_COMMON_CLK
177 struct clk_hw clks[2];
178#endif
David Brownell1abb0dc2006-06-25 05:48:17 -0700179};
180
David Brownell045e0e82007-07-17 04:04:55 -0700181struct chip_desc {
David Brownell045e0e82007-07-17 04:04:55 -0700182 unsigned alarm:1;
Austin Boyle9eab0a72012-03-23 15:02:38 -0700183 u16 nvram_offset;
184 u16 nvram_size;
Heiner Kallweite5531702017-07-12 07:49:47 +0200185 u8 offset; /* register's offset */
Heiner Kallweite48585d2017-06-05 17:57:33 +0200186 u8 century_reg;
187 u8 century_enable_bit;
188 u8 century_bit;
Heiner Kallweit0b6ee802017-07-12 07:49:22 +0200189 u8 bbsqi_bit;
Heiner Kallweit45947122017-07-12 07:49:41 +0200190 irq_handler_t irq_handler;
Heiner Kallweit1efb98b2017-07-12 07:49:44 +0200191 const struct rtc_class_ops *rtc_ops;
Wolfram Sangeb86c302012-05-29 15:07:38 -0700192 u16 trickle_charger_reg;
Alexandre Belloni57ec2d92017-09-04 22:46:04 +0200193 u8 (*do_trickle_setup)(struct ds1307 *, u32,
Heiner Kallweit11e58902017-03-10 18:52:34 +0100194 bool);
Bastian Krause1b5b6af2020-09-17 20:32:43 +0200195 /* Does the RTC require trickle-resistor-ohms to select the value of
196 * the resistor between Vcc and Vbackup?
197 */
198 bool requires_trickle_resistor;
Bastian Krause95a74cb2020-09-17 20:32:44 +0200199 /* Some RTC's batteries and supercaps were charged by default, others
200 * allow charging but were not configured previously to do so.
201 * Remember this behavior to stay backwards compatible.
202 */
203 bool charge_default;
David Brownell045e0e82007-07-17 04:04:55 -0700204};
205
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100206static const struct chip_desc chips[last_ds_type];
207
208static int ds1307_get_time(struct device *dev, struct rtc_time *t)
209{
210 struct ds1307 *ds1307 = dev_get_drvdata(dev);
211 int tmp, ret;
212 const struct chip_desc *chip = &chips[ds1307->type];
213 u8 regs[7];
214
Uwe Kleine-König501f9822019-01-25 15:35:57 +0100215 if (ds1307->type == rx_8130) {
216 unsigned int regflag;
217 ret = regmap_read(ds1307->regmap, RX8130_REG_FLAG, &regflag);
218 if (ret) {
219 dev_err(dev, "%s error %d\n", "read", ret);
220 return ret;
221 }
222
223 if (regflag & RX8130_REG_FLAG_VLF) {
224 dev_warn_once(dev, "oscillator failed, set time!\n");
225 return -EINVAL;
226 }
227 }
228
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100229 /* read the RTC date and time registers all at once */
230 ret = regmap_bulk_read(ds1307->regmap, chip->offset, regs,
231 sizeof(regs));
232 if (ret) {
233 dev_err(dev, "%s error %d\n", "read", ret);
234 return ret;
235 }
236
237 dev_dbg(dev, "%s: %7ph\n", "read", regs);
238
239 /* if oscillator fail bit is set, no data can be trusted */
240 if (ds1307->type == m41t0 &&
241 regs[DS1307_REG_MIN] & M41T0_BIT_OF) {
242 dev_warn_once(dev, "oscillator failed, set time!\n");
243 return -EINVAL;
244 }
245
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200246 tmp = regs[DS1307_REG_SECS];
247 switch (ds1307->type) {
248 case ds_1307:
249 case m41t0:
250 case m41t00:
251 case m41t11:
252 if (tmp & DS1307_BIT_CH)
253 return -EINVAL;
254 break;
255 case ds_1308:
256 case ds_1338:
257 if (tmp & DS1307_BIT_CH)
258 return -EINVAL;
259
260 ret = regmap_read(ds1307->regmap, DS1307_REG_CONTROL, &tmp);
261 if (ret)
262 return ret;
263 if (tmp & DS1338_BIT_OSF)
264 return -EINVAL;
265 break;
266 case ds_1340:
267 if (tmp & DS1340_BIT_nEOSC)
268 return -EINVAL;
269
270 ret = regmap_read(ds1307->regmap, DS1340_REG_FLAG, &tmp);
271 if (ret)
272 return ret;
273 if (tmp & DS1340_BIT_OSF)
274 return -EINVAL;
275 break;
Chris Packhamdf11b322020-02-07 16:18:11 +1300276 case ds_1388:
277 ret = regmap_read(ds1307->regmap, DS1388_REG_FLAG, &tmp);
278 if (ret)
279 return ret;
280 if (tmp & DS1388_BIT_OSF)
281 return -EINVAL;
282 break;
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200283 case mcp794xx:
284 if (!(tmp & MCP794XX_BIT_ST))
285 return -EINVAL;
286
287 break;
288 default:
289 break;
290 }
291
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100292 t->tm_sec = bcd2bin(regs[DS1307_REG_SECS] & 0x7f);
293 t->tm_min = bcd2bin(regs[DS1307_REG_MIN] & 0x7f);
294 tmp = regs[DS1307_REG_HOUR] & 0x3f;
295 t->tm_hour = bcd2bin(tmp);
Nobuhiro Iwamatsu204756f2021-04-20 11:39:17 +0900296 /* rx8130 is bit position, not BCD */
297 if (ds1307->type == rx_8130)
298 t->tm_wday = fls(regs[DS1307_REG_WDAY] & 0x7f);
299 else
300 t->tm_wday = bcd2bin(regs[DS1307_REG_WDAY] & 0x07) - 1;
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100301 t->tm_mday = bcd2bin(regs[DS1307_REG_MDAY] & 0x3f);
302 tmp = regs[DS1307_REG_MONTH] & 0x1f;
303 t->tm_mon = bcd2bin(tmp) - 1;
304 t->tm_year = bcd2bin(regs[DS1307_REG_YEAR]) + 100;
305
306 if (regs[chip->century_reg] & chip->century_bit &&
307 IS_ENABLED(CONFIG_RTC_DRV_DS1307_CENTURY))
308 t->tm_year += 100;
309
310 dev_dbg(dev, "%s secs=%d, mins=%d, "
311 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
312 "read", t->tm_sec, t->tm_min,
313 t->tm_hour, t->tm_mday,
314 t->tm_mon, t->tm_year, t->tm_wday);
315
316 return 0;
317}
318
319static int ds1307_set_time(struct device *dev, struct rtc_time *t)
320{
321 struct ds1307 *ds1307 = dev_get_drvdata(dev);
322 const struct chip_desc *chip = &chips[ds1307->type];
323 int result;
324 int tmp;
325 u8 regs[7];
326
327 dev_dbg(dev, "%s secs=%d, mins=%d, "
328 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
329 "write", t->tm_sec, t->tm_min,
330 t->tm_hour, t->tm_mday,
331 t->tm_mon, t->tm_year, t->tm_wday);
332
333 if (t->tm_year < 100)
334 return -EINVAL;
335
336#ifdef CONFIG_RTC_DRV_DS1307_CENTURY
337 if (t->tm_year > (chip->century_bit ? 299 : 199))
338 return -EINVAL;
339#else
340 if (t->tm_year > 199)
341 return -EINVAL;
342#endif
343
344 regs[DS1307_REG_SECS] = bin2bcd(t->tm_sec);
345 regs[DS1307_REG_MIN] = bin2bcd(t->tm_min);
346 regs[DS1307_REG_HOUR] = bin2bcd(t->tm_hour);
Nobuhiro Iwamatsu204756f2021-04-20 11:39:17 +0900347 /* rx8130 is bit position, not BCD */
348 if (ds1307->type == rx_8130)
349 regs[DS1307_REG_WDAY] = 1 << t->tm_wday;
350 else
351 regs[DS1307_REG_WDAY] = bin2bcd(t->tm_wday + 1);
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100352 regs[DS1307_REG_MDAY] = bin2bcd(t->tm_mday);
353 regs[DS1307_REG_MONTH] = bin2bcd(t->tm_mon + 1);
354
355 /* assume 20YY not 19YY */
356 tmp = t->tm_year - 100;
357 regs[DS1307_REG_YEAR] = bin2bcd(tmp);
358
359 if (chip->century_enable_bit)
360 regs[chip->century_reg] |= chip->century_enable_bit;
361 if (t->tm_year > 199 && chip->century_bit)
362 regs[chip->century_reg] |= chip->century_bit;
363
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200364 switch (ds1307->type) {
365 case ds_1308:
366 case ds_1338:
367 regmap_update_bits(ds1307->regmap, DS1307_REG_CONTROL,
368 DS1338_BIT_OSF, 0);
369 break;
370 case ds_1340:
371 regmap_update_bits(ds1307->regmap, DS1340_REG_FLAG,
372 DS1340_BIT_OSF, 0);
373 break;
Chris Packhamf471b052020-08-18 13:35:43 +1200374 case ds_1388:
375 regmap_update_bits(ds1307->regmap, DS1388_REG_FLAG,
376 DS1388_BIT_OSF, 0);
377 break;
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200378 case mcp794xx:
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100379 /*
380 * these bits were cleared when preparing the date/time
381 * values and need to be set again before writing the
382 * regsfer out to the device.
383 */
384 regs[DS1307_REG_SECS] |= MCP794XX_BIT_ST;
385 regs[DS1307_REG_WDAY] |= MCP794XX_BIT_VBATEN;
Alexandre Bellonib3a50162019-04-11 00:16:29 +0200386 break;
387 default:
388 break;
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100389 }
390
391 dev_dbg(dev, "%s: %7ph\n", "write", regs);
392
393 result = regmap_bulk_write(ds1307->regmap, chip->offset, regs,
394 sizeof(regs));
395 if (result) {
396 dev_err(dev, "%s error %d\n", "write", result);
397 return result;
398 }
Uwe Kleine-König501f9822019-01-25 15:35:57 +0100399
400 if (ds1307->type == rx_8130) {
401 /* clear Voltage Loss Flag as data is available now */
402 result = regmap_write(ds1307->regmap, RX8130_REG_FLAG,
403 ~(u8)RX8130_REG_FLAG_VLF);
404 if (result) {
405 dev_err(dev, "%s error %d\n", "write", result);
406 return result;
407 }
408 }
409
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100410 return 0;
411}
412
413static int ds1337_read_alarm(struct device *dev, struct rtc_wkalrm *t)
414{
415 struct ds1307 *ds1307 = dev_get_drvdata(dev);
416 int ret;
417 u8 regs[9];
418
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100419 /* read all ALARM1, ALARM2, and status registers at once */
420 ret = regmap_bulk_read(ds1307->regmap, DS1339_REG_ALARM1_SECS,
421 regs, sizeof(regs));
422 if (ret) {
423 dev_err(dev, "%s error %d\n", "alarm read", ret);
424 return ret;
425 }
426
427 dev_dbg(dev, "%s: %4ph, %3ph, %2ph\n", "alarm read",
428 &regs[0], &regs[4], &regs[7]);
429
430 /*
431 * report alarm time (ALARM1); assume 24 hour and day-of-month modes,
432 * and that all four fields are checked matches
433 */
434 t->time.tm_sec = bcd2bin(regs[0] & 0x7f);
435 t->time.tm_min = bcd2bin(regs[1] & 0x7f);
436 t->time.tm_hour = bcd2bin(regs[2] & 0x3f);
437 t->time.tm_mday = bcd2bin(regs[3] & 0x3f);
438
439 /* ... and status */
440 t->enabled = !!(regs[7] & DS1337_BIT_A1IE);
441 t->pending = !!(regs[8] & DS1337_BIT_A1I);
442
443 dev_dbg(dev, "%s secs=%d, mins=%d, "
444 "hours=%d, mday=%d, enabled=%d, pending=%d\n",
445 "alarm read", t->time.tm_sec, t->time.tm_min,
446 t->time.tm_hour, t->time.tm_mday,
447 t->enabled, t->pending);
448
449 return 0;
450}
451
452static int ds1337_set_alarm(struct device *dev, struct rtc_wkalrm *t)
453{
454 struct ds1307 *ds1307 = dev_get_drvdata(dev);
455 unsigned char regs[9];
456 u8 control, status;
457 int ret;
458
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100459 dev_dbg(dev, "%s secs=%d, mins=%d, "
460 "hours=%d, mday=%d, enabled=%d, pending=%d\n",
461 "alarm set", t->time.tm_sec, t->time.tm_min,
462 t->time.tm_hour, t->time.tm_mday,
463 t->enabled, t->pending);
464
465 /* read current status of both alarms and the chip */
466 ret = regmap_bulk_read(ds1307->regmap, DS1339_REG_ALARM1_SECS, regs,
467 sizeof(regs));
468 if (ret) {
469 dev_err(dev, "%s error %d\n", "alarm write", ret);
470 return ret;
471 }
472 control = regs[7];
473 status = regs[8];
474
475 dev_dbg(dev, "%s: %4ph, %3ph, %02x %02x\n", "alarm set (old status)",
476 &regs[0], &regs[4], control, status);
477
478 /* set ALARM1, using 24 hour and day-of-month modes */
479 regs[0] = bin2bcd(t->time.tm_sec);
480 regs[1] = bin2bcd(t->time.tm_min);
481 regs[2] = bin2bcd(t->time.tm_hour);
482 regs[3] = bin2bcd(t->time.tm_mday);
483
484 /* set ALARM2 to non-garbage */
485 regs[4] = 0;
486 regs[5] = 0;
487 regs[6] = 0;
488
489 /* disable alarms */
490 regs[7] = control & ~(DS1337_BIT_A1IE | DS1337_BIT_A2IE);
491 regs[8] = status & ~(DS1337_BIT_A1I | DS1337_BIT_A2I);
492
493 ret = regmap_bulk_write(ds1307->regmap, DS1339_REG_ALARM1_SECS, regs,
494 sizeof(regs));
495 if (ret) {
496 dev_err(dev, "can't set alarm time\n");
497 return ret;
498 }
499
500 /* optionally enable ALARM1 */
501 if (t->enabled) {
502 dev_dbg(dev, "alarm IRQ armed\n");
503 regs[7] |= DS1337_BIT_A1IE; /* only ALARM1 is used */
504 regmap_write(ds1307->regmap, DS1337_REG_CONTROL, regs[7]);
505 }
506
507 return 0;
508}
509
510static int ds1307_alarm_irq_enable(struct device *dev, unsigned int enabled)
511{
512 struct ds1307 *ds1307 = dev_get_drvdata(dev);
513
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100514 return regmap_update_bits(ds1307->regmap, DS1337_REG_CONTROL,
515 DS1337_BIT_A1IE,
516 enabled ? DS1337_BIT_A1IE : 0);
517}
518
519static u8 do_trickle_setup_ds1339(struct ds1307 *ds1307, u32 ohms, bool diode)
520{
521 u8 setup = (diode) ? DS1307_TRICKLE_CHARGER_DIODE :
522 DS1307_TRICKLE_CHARGER_NO_DIODE;
523
Bastian Krause462eb732020-09-17 20:32:42 +0200524 setup |= DS13XX_TRICKLE_CHARGER_MAGIC;
525
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100526 switch (ohms) {
527 case 250:
528 setup |= DS1307_TRICKLE_CHARGER_250_OHM;
529 break;
530 case 2000:
531 setup |= DS1307_TRICKLE_CHARGER_2K_OHM;
532 break;
533 case 4000:
534 setup |= DS1307_TRICKLE_CHARGER_4K_OHM;
535 break;
536 default:
537 dev_warn(ds1307->dev,
538 "Unsupported ohm value %u in dt\n", ohms);
539 return 0;
540 }
541 return setup;
542}
543
Bastian Krause0026f162020-09-17 20:32:46 +0200544static u8 do_trickle_setup_rx8130(struct ds1307 *ds1307, u32 ohms, bool diode)
545{
546 /* make sure that the backup battery is enabled */
547 u8 setup = RX8130_REG_CONTROL1_INIEN;
548 if (diode)
549 setup |= RX8130_REG_CONTROL1_CHGEN;
550
551 return setup;
552}
553
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100554static irqreturn_t rx8130_irq(int irq, void *dev_id)
555{
556 struct ds1307 *ds1307 = dev_id;
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100557 u8 ctl[3];
558 int ret;
559
Alexandre Belloni592381922021-01-19 23:06:42 +0100560 rtc_lock(ds1307->rtc);
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100561
562 /* Read control registers. */
563 ret = regmap_bulk_read(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
564 sizeof(ctl));
565 if (ret < 0)
566 goto out;
567 if (!(ctl[1] & RX8130_REG_FLAG_AF))
568 goto out;
569 ctl[1] &= ~RX8130_REG_FLAG_AF;
570 ctl[2] &= ~RX8130_REG_CONTROL0_AIE;
571
572 ret = regmap_bulk_write(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
573 sizeof(ctl));
574 if (ret < 0)
575 goto out;
576
577 rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
578
579out:
Alexandre Belloni592381922021-01-19 23:06:42 +0100580 rtc_unlock(ds1307->rtc);
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100581
582 return IRQ_HANDLED;
583}
584
585static int rx8130_read_alarm(struct device *dev, struct rtc_wkalrm *t)
586{
587 struct ds1307 *ds1307 = dev_get_drvdata(dev);
588 u8 ald[3], ctl[3];
589 int ret;
590
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100591 /* Read alarm registers. */
592 ret = regmap_bulk_read(ds1307->regmap, RX8130_REG_ALARM_MIN, ald,
593 sizeof(ald));
594 if (ret < 0)
595 return ret;
596
597 /* Read control registers. */
598 ret = regmap_bulk_read(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
599 sizeof(ctl));
600 if (ret < 0)
601 return ret;
602
603 t->enabled = !!(ctl[2] & RX8130_REG_CONTROL0_AIE);
604 t->pending = !!(ctl[1] & RX8130_REG_FLAG_AF);
605
606 /* Report alarm 0 time assuming 24-hour and day-of-month modes. */
607 t->time.tm_sec = -1;
608 t->time.tm_min = bcd2bin(ald[0] & 0x7f);
609 t->time.tm_hour = bcd2bin(ald[1] & 0x7f);
610 t->time.tm_wday = -1;
611 t->time.tm_mday = bcd2bin(ald[2] & 0x7f);
612 t->time.tm_mon = -1;
613 t->time.tm_year = -1;
614 t->time.tm_yday = -1;
615 t->time.tm_isdst = -1;
616
617 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d enabled=%d\n",
618 __func__, t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
619 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon, t->enabled);
620
621 return 0;
622}
623
624static int rx8130_set_alarm(struct device *dev, struct rtc_wkalrm *t)
625{
626 struct ds1307 *ds1307 = dev_get_drvdata(dev);
627 u8 ald[3], ctl[3];
628 int ret;
629
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100630 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d "
631 "enabled=%d pending=%d\n", __func__,
632 t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
633 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon,
634 t->enabled, t->pending);
635
636 /* Read control registers. */
637 ret = regmap_bulk_read(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
638 sizeof(ctl));
639 if (ret < 0)
640 return ret;
641
Uwe Kleine-König3f929ca2019-01-25 15:35:58 +0100642 ctl[0] &= RX8130_REG_EXTENSION_WADA;
643 ctl[1] &= ~RX8130_REG_FLAG_AF;
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100644 ctl[2] &= ~RX8130_REG_CONTROL0_AIE;
645
646 ret = regmap_bulk_write(ds1307->regmap, RX8130_REG_EXTENSION, ctl,
647 sizeof(ctl));
648 if (ret < 0)
649 return ret;
650
651 /* Hardware alarm precision is 1 minute! */
652 ald[0] = bin2bcd(t->time.tm_min);
653 ald[1] = bin2bcd(t->time.tm_hour);
654 ald[2] = bin2bcd(t->time.tm_mday);
655
656 ret = regmap_bulk_write(ds1307->regmap, RX8130_REG_ALARM_MIN, ald,
657 sizeof(ald));
658 if (ret < 0)
659 return ret;
660
661 if (!t->enabled)
662 return 0;
663
664 ctl[2] |= RX8130_REG_CONTROL0_AIE;
665
Uwe Kleine-König3f929ca2019-01-25 15:35:58 +0100666 return regmap_write(ds1307->regmap, RX8130_REG_CONTROL0, ctl[2]);
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100667}
668
669static int rx8130_alarm_irq_enable(struct device *dev, unsigned int enabled)
670{
671 struct ds1307 *ds1307 = dev_get_drvdata(dev);
672 int ret, reg;
673
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100674 ret = regmap_read(ds1307->regmap, RX8130_REG_CONTROL0, &reg);
675 if (ret < 0)
676 return ret;
677
678 if (enabled)
679 reg |= RX8130_REG_CONTROL0_AIE;
680 else
681 reg &= ~RX8130_REG_CONTROL0_AIE;
682
683 return regmap_write(ds1307->regmap, RX8130_REG_CONTROL0, reg);
684}
685
686static irqreturn_t mcp794xx_irq(int irq, void *dev_id)
687{
688 struct ds1307 *ds1307 = dev_id;
689 struct mutex *lock = &ds1307->rtc->ops_lock;
690 int reg, ret;
691
692 mutex_lock(lock);
693
694 /* Check and clear alarm 0 interrupt flag. */
695 ret = regmap_read(ds1307->regmap, MCP794XX_REG_ALARM0_CTRL, &reg);
696 if (ret)
697 goto out;
698 if (!(reg & MCP794XX_BIT_ALMX_IF))
699 goto out;
700 reg &= ~MCP794XX_BIT_ALMX_IF;
701 ret = regmap_write(ds1307->regmap, MCP794XX_REG_ALARM0_CTRL, reg);
702 if (ret)
703 goto out;
704
705 /* Disable alarm 0. */
706 ret = regmap_update_bits(ds1307->regmap, MCP794XX_REG_CONTROL,
707 MCP794XX_BIT_ALM0_EN, 0);
708 if (ret)
709 goto out;
710
711 rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
712
713out:
714 mutex_unlock(lock);
715
716 return IRQ_HANDLED;
717}
718
719static int mcp794xx_read_alarm(struct device *dev, struct rtc_wkalrm *t)
720{
721 struct ds1307 *ds1307 = dev_get_drvdata(dev);
722 u8 regs[10];
723 int ret;
724
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100725 /* Read control and alarm 0 registers. */
726 ret = regmap_bulk_read(ds1307->regmap, MCP794XX_REG_CONTROL, regs,
727 sizeof(regs));
728 if (ret)
729 return ret;
730
731 t->enabled = !!(regs[0] & MCP794XX_BIT_ALM0_EN);
732
733 /* Report alarm 0 time assuming 24-hour and day-of-month modes. */
734 t->time.tm_sec = bcd2bin(regs[3] & 0x7f);
735 t->time.tm_min = bcd2bin(regs[4] & 0x7f);
736 t->time.tm_hour = bcd2bin(regs[5] & 0x3f);
737 t->time.tm_wday = bcd2bin(regs[6] & 0x7) - 1;
738 t->time.tm_mday = bcd2bin(regs[7] & 0x3f);
739 t->time.tm_mon = bcd2bin(regs[8] & 0x1f) - 1;
740 t->time.tm_year = -1;
741 t->time.tm_yday = -1;
742 t->time.tm_isdst = -1;
743
744 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d "
745 "enabled=%d polarity=%d irq=%d match=%lu\n", __func__,
746 t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
747 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon, t->enabled,
748 !!(regs[6] & MCP794XX_BIT_ALMX_POL),
749 !!(regs[6] & MCP794XX_BIT_ALMX_IF),
750 (regs[6] & MCP794XX_MSK_ALMX_MATCH) >> 4);
751
752 return 0;
753}
754
755/*
756 * We may have a random RTC weekday, therefore calculate alarm weekday based
757 * on current weekday we read from the RTC timekeeping regs
758 */
759static int mcp794xx_alm_weekday(struct device *dev, struct rtc_time *tm_alarm)
760{
761 struct rtc_time tm_now;
762 int days_now, days_alarm, ret;
763
764 ret = ds1307_get_time(dev, &tm_now);
765 if (ret)
766 return ret;
767
768 days_now = div_s64(rtc_tm_to_time64(&tm_now), 24 * 60 * 60);
769 days_alarm = div_s64(rtc_tm_to_time64(tm_alarm), 24 * 60 * 60);
770
771 return (tm_now.tm_wday + days_alarm - days_now) % 7 + 1;
772}
773
774static int mcp794xx_set_alarm(struct device *dev, struct rtc_wkalrm *t)
775{
776 struct ds1307 *ds1307 = dev_get_drvdata(dev);
777 unsigned char regs[10];
778 int wday, ret;
779
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100780 wday = mcp794xx_alm_weekday(dev, &t->time);
781 if (wday < 0)
782 return wday;
783
784 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d "
785 "enabled=%d pending=%d\n", __func__,
786 t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
787 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon,
788 t->enabled, t->pending);
789
790 /* Read control and alarm 0 registers. */
791 ret = regmap_bulk_read(ds1307->regmap, MCP794XX_REG_CONTROL, regs,
792 sizeof(regs));
793 if (ret)
794 return ret;
795
796 /* Set alarm 0, using 24-hour and day-of-month modes. */
797 regs[3] = bin2bcd(t->time.tm_sec);
798 regs[4] = bin2bcd(t->time.tm_min);
799 regs[5] = bin2bcd(t->time.tm_hour);
800 regs[6] = wday;
801 regs[7] = bin2bcd(t->time.tm_mday);
802 regs[8] = bin2bcd(t->time.tm_mon + 1);
803
804 /* Clear the alarm 0 interrupt flag. */
805 regs[6] &= ~MCP794XX_BIT_ALMX_IF;
806 /* Set alarm match: second, minute, hour, day, date, month. */
807 regs[6] |= MCP794XX_MSK_ALMX_MATCH;
808 /* Disable interrupt. We will not enable until completely programmed */
809 regs[0] &= ~MCP794XX_BIT_ALM0_EN;
810
811 ret = regmap_bulk_write(ds1307->regmap, MCP794XX_REG_CONTROL, regs,
812 sizeof(regs));
813 if (ret)
814 return ret;
815
816 if (!t->enabled)
817 return 0;
818 regs[0] |= MCP794XX_BIT_ALM0_EN;
819 return regmap_write(ds1307->regmap, MCP794XX_REG_CONTROL, regs[0]);
820}
821
822static int mcp794xx_alarm_irq_enable(struct device *dev, unsigned int enabled)
823{
824 struct ds1307 *ds1307 = dev_get_drvdata(dev);
825
Uwe Kleine-Königd0e3f612019-01-25 15:35:55 +0100826 return regmap_update_bits(ds1307->regmap, MCP794XX_REG_CONTROL,
827 MCP794XX_BIT_ALM0_EN,
828 enabled ? MCP794XX_BIT_ALM0_EN : 0);
829}
830
831static int m41txx_rtc_read_offset(struct device *dev, long *offset)
832{
833 struct ds1307 *ds1307 = dev_get_drvdata(dev);
834 unsigned int ctrl_reg;
835 u8 val;
836
837 regmap_read(ds1307->regmap, M41TXX_REG_CONTROL, &ctrl_reg);
838
839 val = ctrl_reg & M41TXX_M_CALIBRATION;
840
841 /* check if positive */
842 if (ctrl_reg & M41TXX_BIT_CALIB_SIGN)
843 *offset = (val * M41TXX_POS_OFFSET_STEP_PPB);
844 else
845 *offset = -(val * M41TXX_NEG_OFFSET_STEP_PPB);
846
847 return 0;
848}
849
850static int m41txx_rtc_set_offset(struct device *dev, long offset)
851{
852 struct ds1307 *ds1307 = dev_get_drvdata(dev);
853 unsigned int ctrl_reg;
854
855 if ((offset < M41TXX_MIN_OFFSET) || (offset > M41TXX_MAX_OFFSET))
856 return -ERANGE;
857
858 if (offset >= 0) {
859 ctrl_reg = DIV_ROUND_CLOSEST(offset,
860 M41TXX_POS_OFFSET_STEP_PPB);
861 ctrl_reg |= M41TXX_BIT_CALIB_SIGN;
862 } else {
863 ctrl_reg = DIV_ROUND_CLOSEST(abs(offset),
864 M41TXX_NEG_OFFSET_STEP_PPB);
865 }
866
867 return regmap_update_bits(ds1307->regmap, M41TXX_REG_CONTROL,
868 M41TXX_M_CALIBRATION | M41TXX_BIT_CALIB_SIGN,
869 ctrl_reg);
870}
Matti Vaittinen33b04b72014-10-13 15:52:48 -0700871
Chris Packhamfd90d482020-03-30 15:55:00 +1300872#ifdef CONFIG_WATCHDOG_CORE
873static int ds1388_wdt_start(struct watchdog_device *wdt_dev)
874{
875 struct ds1307 *ds1307 = watchdog_get_drvdata(wdt_dev);
876 u8 regs[2];
877 int ret;
878
879 ret = regmap_update_bits(ds1307->regmap, DS1388_REG_FLAG,
880 DS1388_BIT_WF, 0);
881 if (ret)
882 return ret;
883
884 ret = regmap_update_bits(ds1307->regmap, DS1388_REG_CONTROL,
885 DS1388_BIT_WDE | DS1388_BIT_RST, 0);
886 if (ret)
887 return ret;
888
889 /*
890 * watchdog timeouts are measured in seconds. So ignore hundredths of
891 * seconds field.
892 */
893 regs[0] = 0;
894 regs[1] = bin2bcd(wdt_dev->timeout);
895
896 ret = regmap_bulk_write(ds1307->regmap, DS1388_REG_WDOG_HUN_SECS, regs,
897 sizeof(regs));
898 if (ret)
899 return ret;
900
901 return regmap_update_bits(ds1307->regmap, DS1388_REG_CONTROL,
902 DS1388_BIT_WDE | DS1388_BIT_RST,
903 DS1388_BIT_WDE | DS1388_BIT_RST);
904}
905
906static int ds1388_wdt_stop(struct watchdog_device *wdt_dev)
907{
908 struct ds1307 *ds1307 = watchdog_get_drvdata(wdt_dev);
909
910 return regmap_update_bits(ds1307->regmap, DS1388_REG_CONTROL,
911 DS1388_BIT_WDE | DS1388_BIT_RST, 0);
912}
913
914static int ds1388_wdt_ping(struct watchdog_device *wdt_dev)
915{
916 struct ds1307 *ds1307 = watchdog_get_drvdata(wdt_dev);
917 u8 regs[2];
918
919 return regmap_bulk_read(ds1307->regmap, DS1388_REG_WDOG_HUN_SECS, regs,
920 sizeof(regs));
921}
922
923static int ds1388_wdt_set_timeout(struct watchdog_device *wdt_dev,
924 unsigned int val)
925{
926 struct ds1307 *ds1307 = watchdog_get_drvdata(wdt_dev);
927 u8 regs[2];
928
929 wdt_dev->timeout = val;
930 regs[0] = 0;
931 regs[1] = bin2bcd(wdt_dev->timeout);
932
933 return regmap_bulk_write(ds1307->regmap, DS1388_REG_WDOG_HUN_SECS, regs,
934 sizeof(regs));
935}
936#endif
937
Heiner Kallweit1efb98b2017-07-12 07:49:44 +0200938static const struct rtc_class_ops rx8130_rtc_ops = {
939 .read_time = ds1307_get_time,
940 .set_time = ds1307_set_time,
941 .read_alarm = rx8130_read_alarm,
942 .set_alarm = rx8130_set_alarm,
943 .alarm_irq_enable = rx8130_alarm_irq_enable,
944};
945
946static const struct rtc_class_ops mcp794xx_rtc_ops = {
947 .read_time = ds1307_get_time,
948 .set_time = ds1307_set_time,
949 .read_alarm = mcp794xx_read_alarm,
950 .set_alarm = mcp794xx_set_alarm,
951 .alarm_irq_enable = mcp794xx_alarm_irq_enable,
952};
Matti Vaittinen33b04b72014-10-13 15:52:48 -0700953
Giulio Benetti79230ff2018-07-25 19:26:04 +0200954static const struct rtc_class_ops m41txx_rtc_ops = {
955 .read_time = ds1307_get_time,
956 .set_time = ds1307_set_time,
957 .read_alarm = ds1337_read_alarm,
958 .set_alarm = ds1337_set_alarm,
959 .alarm_irq_enable = ds1307_alarm_irq_enable,
960 .read_offset = m41txx_rtc_read_offset,
961 .set_offset = m41txx_rtc_set_offset,
962};
963
Heiner Kallweit7624df42017-07-12 07:49:33 +0200964static const struct chip_desc chips[last_ds_type] = {
Wolfram Sang32d322b2012-03-23 15:02:36 -0700965 [ds_1307] = {
Austin Boyle9eab0a72012-03-23 15:02:38 -0700966 .nvram_offset = 8,
967 .nvram_size = 56,
Wolfram Sang32d322b2012-03-23 15:02:36 -0700968 },
Sean Nyekjaer300a7732017-06-08 12:36:54 +0200969 [ds_1308] = {
970 .nvram_offset = 8,
971 .nvram_size = 56,
972 },
Wolfram Sang32d322b2012-03-23 15:02:36 -0700973 [ds_1337] = {
974 .alarm = 1,
Heiner Kallweite48585d2017-06-05 17:57:33 +0200975 .century_reg = DS1307_REG_MONTH,
976 .century_bit = DS1337_BIT_CENTURY,
Wolfram Sang32d322b2012-03-23 15:02:36 -0700977 },
978 [ds_1338] = {
Austin Boyle9eab0a72012-03-23 15:02:38 -0700979 .nvram_offset = 8,
980 .nvram_size = 56,
Wolfram Sang32d322b2012-03-23 15:02:36 -0700981 },
982 [ds_1339] = {
983 .alarm = 1,
Heiner Kallweite48585d2017-06-05 17:57:33 +0200984 .century_reg = DS1307_REG_MONTH,
985 .century_bit = DS1337_BIT_CENTURY,
Heiner Kallweit0b6ee802017-07-12 07:49:22 +0200986 .bbsqi_bit = DS1339_BIT_BBSQI,
Wolfram Sangeb86c302012-05-29 15:07:38 -0700987 .trickle_charger_reg = 0x10,
Matti Vaittinen33b04b72014-10-13 15:52:48 -0700988 .do_trickle_setup = &do_trickle_setup_ds1339,
Bastian Krause1b5b6af2020-09-17 20:32:43 +0200989 .requires_trickle_resistor = true,
Bastian Krause95a74cb2020-09-17 20:32:44 +0200990 .charge_default = true,
Wolfram Sangeb86c302012-05-29 15:07:38 -0700991 },
992 [ds_1340] = {
Heiner Kallweite48585d2017-06-05 17:57:33 +0200993 .century_reg = DS1307_REG_HOUR,
994 .century_enable_bit = DS1340_BIT_CENTURY_EN,
995 .century_bit = DS1340_BIT_CENTURY,
Andrea Greco51ed73eb2018-04-20 11:34:02 +0200996 .do_trickle_setup = &do_trickle_setup_ds1339,
Wolfram Sangeb86c302012-05-29 15:07:38 -0700997 .trickle_charger_reg = 0x08,
Bastian Krause1b5b6af2020-09-17 20:32:43 +0200998 .requires_trickle_resistor = true,
Bastian Krause95a74cb2020-09-17 20:32:44 +0200999 .charge_default = true,
Wolfram Sangeb86c302012-05-29 15:07:38 -07001000 },
Nikita Yushchenko0759c882017-08-24 09:32:11 +03001001 [ds_1341] = {
1002 .century_reg = DS1307_REG_MONTH,
1003 .century_bit = DS1337_BIT_CENTURY,
1004 },
Wolfram Sangeb86c302012-05-29 15:07:38 -07001005 [ds_1388] = {
Heiner Kallweite5531702017-07-12 07:49:47 +02001006 .offset = 1,
Wolfram Sangeb86c302012-05-29 15:07:38 -07001007 .trickle_charger_reg = 0x0a,
Wolfram Sang32d322b2012-03-23 15:02:36 -07001008 },
1009 [ds_3231] = {
1010 .alarm = 1,
Heiner Kallweite48585d2017-06-05 17:57:33 +02001011 .century_reg = DS1307_REG_MONTH,
1012 .century_bit = DS1337_BIT_CENTURY,
Heiner Kallweit0b6ee802017-07-12 07:49:22 +02001013 .bbsqi_bit = DS3231_BIT_BBSQW,
Wolfram Sang32d322b2012-03-23 15:02:36 -07001014 },
Marek Vasutee0981b2017-06-18 22:55:28 +02001015 [rx_8130] = {
1016 .alarm = 1,
1017 /* this is battery backed SRAM */
1018 .nvram_offset = 0x20,
1019 .nvram_size = 4, /* 32bit (4 word x 8 bit) */
Heiner Kallweite5531702017-07-12 07:49:47 +02001020 .offset = 0x10,
Heiner Kallweit45947122017-07-12 07:49:41 +02001021 .irq_handler = rx8130_irq,
Heiner Kallweit1efb98b2017-07-12 07:49:44 +02001022 .rtc_ops = &rx8130_rtc_ops,
Bastian Krause0026f162020-09-17 20:32:46 +02001023 .trickle_charger_reg = RX8130_REG_CONTROL1,
1024 .do_trickle_setup = &do_trickle_setup_rx8130,
Marek Vasutee0981b2017-06-18 22:55:28 +02001025 },
Giulio Benetti79230ff2018-07-25 19:26:04 +02001026 [m41t0] = {
1027 .rtc_ops = &m41txx_rtc_ops,
1028 },
1029 [m41t00] = {
1030 .rtc_ops = &m41txx_rtc_ops,
1031 },
Giulio Benetti7e580762018-05-16 23:08:40 +02001032 [m41t11] = {
1033 /* this is battery backed SRAM */
1034 .nvram_offset = 8,
1035 .nvram_size = 56,
Giulio Benetti79230ff2018-07-25 19:26:04 +02001036 .rtc_ops = &m41txx_rtc_ops,
Giulio Benetti7e580762018-05-16 23:08:40 +02001037 },
Tomas Novotnyf4199f82014-12-10 15:53:57 -08001038 [mcp794xx] = {
Simon Guinot1d1945d2014-04-03 14:49:55 -07001039 .alarm = 1,
Austin Boyle9eab0a72012-03-23 15:02:38 -07001040 /* this is battery backed SRAM */
1041 .nvram_offset = 0x20,
1042 .nvram_size = 0x40,
Heiner Kallweit45947122017-07-12 07:49:41 +02001043 .irq_handler = mcp794xx_irq,
Heiner Kallweit1efb98b2017-07-12 07:49:44 +02001044 .rtc_ops = &mcp794xx_rtc_ops,
Austin Boyle9eab0a72012-03-23 15:02:38 -07001045 },
Wolfram Sang32d322b2012-03-23 15:02:36 -07001046};
David Brownell045e0e82007-07-17 04:04:55 -07001047
Jean Delvare3760f732008-04-29 23:11:40 +02001048static const struct i2c_device_id ds1307_id[] = {
1049 { "ds1307", ds_1307 },
Sean Nyekjaer300a7732017-06-08 12:36:54 +02001050 { "ds1308", ds_1308 },
Jean Delvare3760f732008-04-29 23:11:40 +02001051 { "ds1337", ds_1337 },
1052 { "ds1338", ds_1338 },
1053 { "ds1339", ds_1339 },
Joakim Tjernlund33df2ee2009-06-17 16:26:08 -07001054 { "ds1388", ds_1388 },
Jean Delvare3760f732008-04-29 23:11:40 +02001055 { "ds1340", ds_1340 },
Nikita Yushchenko0759c882017-08-24 09:32:11 +03001056 { "ds1341", ds_1341 },
Wolfram Sang97f902b2009-06-17 16:26:10 -07001057 { "ds3231", ds_3231 },
Stefan Agner8566f702017-03-23 16:54:57 -07001058 { "m41t0", m41t0 },
Jean Delvare3760f732008-04-29 23:11:40 +02001059 { "m41t00", m41t00 },
Giulio Benetti7e580762018-05-16 23:08:40 +02001060 { "m41t11", m41t11 },
Tomas Novotnyf4199f82014-12-10 15:53:57 -08001061 { "mcp7940x", mcp794xx },
1062 { "mcp7941x", mcp794xx },
Priyanka Jain31c17712011-06-27 16:18:04 -07001063 { "pt7c4338", ds_1307 },
Matthias Fuchsa2166852009-03-31 15:24:58 -07001064 { "rx8025", rx_8025 },
Alexandre Belloni78aaa062016-07-13 02:36:41 +02001065 { "isl12057", ds_1337 },
Marek Vasutee0981b2017-06-18 22:55:28 +02001066 { "rx8130", rx_8130 },
Jean Delvare3760f732008-04-29 23:11:40 +02001067 { }
1068};
1069MODULE_DEVICE_TABLE(i2c, ds1307_id);
David Brownell1abb0dc2006-06-25 05:48:17 -07001070
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001071static const struct of_device_id ds1307_of_match[] = {
1072 {
1073 .compatible = "dallas,ds1307",
1074 .data = (void *)ds_1307
1075 },
1076 {
Sean Nyekjaer300a7732017-06-08 12:36:54 +02001077 .compatible = "dallas,ds1308",
1078 .data = (void *)ds_1308
1079 },
1080 {
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001081 .compatible = "dallas,ds1337",
1082 .data = (void *)ds_1337
1083 },
1084 {
1085 .compatible = "dallas,ds1338",
1086 .data = (void *)ds_1338
1087 },
1088 {
1089 .compatible = "dallas,ds1339",
1090 .data = (void *)ds_1339
1091 },
1092 {
1093 .compatible = "dallas,ds1388",
1094 .data = (void *)ds_1388
1095 },
1096 {
1097 .compatible = "dallas,ds1340",
1098 .data = (void *)ds_1340
1099 },
1100 {
Nikita Yushchenko0759c882017-08-24 09:32:11 +03001101 .compatible = "dallas,ds1341",
1102 .data = (void *)ds_1341
1103 },
1104 {
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001105 .compatible = "maxim,ds3231",
1106 .data = (void *)ds_3231
1107 },
1108 {
Alexandre Bellonidb2f8142017-04-08 17:22:02 +02001109 .compatible = "st,m41t0",
Giulio Benetti146a5522018-05-16 23:08:39 +02001110 .data = (void *)m41t0
Alexandre Bellonidb2f8142017-04-08 17:22:02 +02001111 },
1112 {
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001113 .compatible = "st,m41t00",
1114 .data = (void *)m41t00
1115 },
1116 {
Giulio Benetti7e580762018-05-16 23:08:40 +02001117 .compatible = "st,m41t11",
1118 .data = (void *)m41t11
1119 },
1120 {
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001121 .compatible = "microchip,mcp7940x",
1122 .data = (void *)mcp794xx
1123 },
1124 {
1125 .compatible = "microchip,mcp7941x",
1126 .data = (void *)mcp794xx
1127 },
1128 {
1129 .compatible = "pericom,pt7c4338",
1130 .data = (void *)ds_1307
1131 },
1132 {
1133 .compatible = "epson,rx8025",
1134 .data = (void *)rx_8025
1135 },
1136 {
1137 .compatible = "isil,isl12057",
1138 .data = (void *)ds_1337
1139 },
Bastian Stender47dd4722017-10-17 14:46:07 +02001140 {
1141 .compatible = "epson,rx8130",
1142 .data = (void *)rx_8130
1143 },
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001144 { }
1145};
1146MODULE_DEVICE_TABLE(of, ds1307_of_match);
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001147
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001148/*
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001149 * The ds1337 and ds1339 both have two alarms, but we only use the first
1150 * one (with a "seconds" field). For ds1337 we expect nINTA is our alarm
1151 * signal; ds1339 chips have only one alarm signal.
1152 */
Felipe Balbi2fb07a12015-06-23 11:15:10 -05001153static irqreturn_t ds1307_irq(int irq, void *dev_id)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001154{
Heiner Kallweit11e58902017-03-10 18:52:34 +01001155 struct ds1307 *ds1307 = dev_id;
Felipe Balbi2fb07a12015-06-23 11:15:10 -05001156 struct mutex *lock = &ds1307->rtc->ops_lock;
Heiner Kallweit078f3f62017-06-05 17:57:29 +02001157 int stat, ret;
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001158
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001159 mutex_lock(lock);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001160 ret = regmap_read(ds1307->regmap, DS1337_REG_STATUS, &stat);
1161 if (ret)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001162 goto out;
1163
1164 if (stat & DS1337_BIT_A1I) {
1165 stat &= ~DS1337_BIT_A1I;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001166 regmap_write(ds1307->regmap, DS1337_REG_STATUS, stat);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001167
Heiner Kallweit078f3f62017-06-05 17:57:29 +02001168 ret = regmap_update_bits(ds1307->regmap, DS1337_REG_CONTROL,
1169 DS1337_BIT_A1IE, 0);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001170 if (ret)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001171 goto out;
1172
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001173 rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001174 }
1175
1176out:
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001177 mutex_unlock(lock);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001178
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001179 return IRQ_HANDLED;
1180}
1181
1182/*----------------------------------------------------------------------*/
1183
David Brownellff8371a2006-09-30 23:28:17 -07001184static const struct rtc_class_ops ds13xx_rtc_ops = {
David Brownell1abb0dc2006-06-25 05:48:17 -07001185 .read_time = ds1307_get_time,
1186 .set_time = ds1307_set_time,
Jüri Reitel74d88eb2009-01-07 18:07:16 -08001187 .read_alarm = ds1337_read_alarm,
1188 .set_alarm = ds1337_set_alarm,
John Stultz16380c12011-02-02 17:02:41 -08001189 .alarm_irq_enable = ds1307_alarm_irq_enable,
David Brownell1abb0dc2006-06-25 05:48:17 -07001190};
1191
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001192static ssize_t frequency_test_store(struct device *dev,
1193 struct device_attribute *attr,
1194 const char *buf, size_t count)
Giulio Benettib41c23e2018-07-25 19:26:05 +02001195{
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001196 struct ds1307 *ds1307 = dev_get_drvdata(dev->parent);
Giulio Benettib41c23e2018-07-25 19:26:05 +02001197 bool freq_test_en;
1198 int ret;
1199
1200 ret = kstrtobool(buf, &freq_test_en);
1201 if (ret) {
1202 dev_err(dev, "Failed to store RTC Frequency Test attribute\n");
1203 return ret;
1204 }
1205
1206 regmap_update_bits(ds1307->regmap, M41TXX_REG_CONTROL, M41TXX_BIT_FT,
1207 freq_test_en ? M41TXX_BIT_FT : 0);
1208
1209 return count;
1210}
1211
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001212static ssize_t frequency_test_show(struct device *dev,
1213 struct device_attribute *attr,
1214 char *buf)
Giulio Benettib41c23e2018-07-25 19:26:05 +02001215{
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001216 struct ds1307 *ds1307 = dev_get_drvdata(dev->parent);
Giulio Benettib41c23e2018-07-25 19:26:05 +02001217 unsigned int ctrl_reg;
1218
1219 regmap_read(ds1307->regmap, M41TXX_REG_CONTROL, &ctrl_reg);
1220
1221 return scnprintf(buf, PAGE_SIZE, (ctrl_reg & M41TXX_BIT_FT) ? "on\n" :
1222 "off\n");
1223}
1224
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001225static DEVICE_ATTR_RW(frequency_test);
Giulio Benettib41c23e2018-07-25 19:26:05 +02001226
1227static struct attribute *rtc_freq_test_attrs[] = {
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001228 &dev_attr_frequency_test.attr,
Giulio Benettib41c23e2018-07-25 19:26:05 +02001229 NULL,
1230};
1231
1232static const struct attribute_group rtc_freq_test_attr_group = {
1233 .attrs = rtc_freq_test_attrs,
1234};
1235
Giulio Benettib41c23e2018-07-25 19:26:05 +02001236static int ds1307_add_frequency_test(struct ds1307 *ds1307)
1237{
1238 int err;
1239
1240 switch (ds1307->type) {
1241 case m41t0:
1242 case m41t00:
1243 case m41t11:
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001244 err = rtc_add_group(ds1307->rtc, &rtc_freq_test_attr_group);
1245 if (err)
Giulio Benettib41c23e2018-07-25 19:26:05 +02001246 return err;
Giulio Benettib41c23e2018-07-25 19:26:05 +02001247 break;
1248 default:
1249 break;
1250 }
1251
1252 return 0;
1253}
1254
Simon Guinot1d1945d2014-04-03 14:49:55 -07001255/*----------------------------------------------------------------------*/
1256
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001257static int ds1307_nvram_read(void *priv, unsigned int offset, void *val,
1258 size_t bytes)
David Brownell682d73f2007-11-14 16:58:32 -08001259{
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001260 struct ds1307 *ds1307 = priv;
Heiner Kallweit969fa072017-07-12 07:49:54 +02001261 const struct chip_desc *chip = &chips[ds1307->type];
David Brownell682d73f2007-11-14 16:58:32 -08001262
Heiner Kallweit969fa072017-07-12 07:49:54 +02001263 return regmap_bulk_read(ds1307->regmap, chip->nvram_offset + offset,
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001264 val, bytes);
David Brownell682d73f2007-11-14 16:58:32 -08001265}
1266
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001267static int ds1307_nvram_write(void *priv, unsigned int offset, void *val,
1268 size_t bytes)
David Brownell682d73f2007-11-14 16:58:32 -08001269{
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001270 struct ds1307 *ds1307 = priv;
Heiner Kallweit969fa072017-07-12 07:49:54 +02001271 const struct chip_desc *chip = &chips[ds1307->type];
David Brownell682d73f2007-11-14 16:58:32 -08001272
Heiner Kallweit969fa072017-07-12 07:49:54 +02001273 return regmap_bulk_write(ds1307->regmap, chip->nvram_offset + offset,
Alexandre Belloniabc925f2017-07-06 11:42:07 +02001274 val, bytes);
David Brownell682d73f2007-11-14 16:58:32 -08001275}
1276
David Brownell682d73f2007-11-14 16:58:32 -08001277/*----------------------------------------------------------------------*/
1278
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001279static u8 ds1307_trickle_init(struct ds1307 *ds1307,
Heiner Kallweit7624df42017-07-12 07:49:33 +02001280 const struct chip_desc *chip)
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001281{
Bastian Krause08747342020-09-17 20:32:45 +02001282 u32 ohms, chargeable;
Bastian Krause95a74cb2020-09-17 20:32:44 +02001283 bool diode = chip->charge_default;
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001284
1285 if (!chip->do_trickle_setup)
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001286 return 0;
1287
Heiner Kallweit11e58902017-03-10 18:52:34 +01001288 if (device_property_read_u32(ds1307->dev, "trickle-resistor-ohms",
Bastian Krause1b5b6af2020-09-17 20:32:43 +02001289 &ohms) && chip->requires_trickle_resistor)
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001290 return 0;
1291
Bastian Krause08747342020-09-17 20:32:45 +02001292 /* aux-voltage-chargeable takes precedence over the deprecated
1293 * trickle-diode-disable
1294 */
1295 if (!device_property_read_u32(ds1307->dev, "aux-voltage-chargeable",
1296 &chargeable)) {
1297 switch (chargeable) {
1298 case 0:
1299 diode = false;
1300 break;
1301 case 1:
1302 diode = true;
1303 break;
1304 default:
1305 dev_warn(ds1307->dev,
1306 "unsupported aux-voltage-chargeable value\n");
1307 break;
1308 }
1309 } else if (device_property_read_bool(ds1307->dev,
1310 "trickle-diode-disable")) {
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001311 diode = false;
Bastian Krause08747342020-09-17 20:32:45 +02001312 }
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001313
1314 return chip->do_trickle_setup(ds1307, ohms, diode);
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001315}
1316
Akinobu Mita445c0202016-01-25 00:22:16 +09001317/*----------------------------------------------------------------------*/
1318
Heiner Kallweit6b583a62017-09-27 22:41:26 +02001319#if IS_REACHABLE(CONFIG_HWMON)
Akinobu Mita445c0202016-01-25 00:22:16 +09001320
1321/*
1322 * Temperature sensor support for ds3231 devices.
1323 */
1324
1325#define DS3231_REG_TEMPERATURE 0x11
1326
1327/*
1328 * A user-initiated temperature conversion is not started by this function,
1329 * so the temperature is updated once every 64 seconds.
1330 */
Zhuang Yuyao9a3dce62016-04-18 09:21:42 +09001331static int ds3231_hwmon_read_temp(struct device *dev, s32 *mC)
Akinobu Mita445c0202016-01-25 00:22:16 +09001332{
1333 struct ds1307 *ds1307 = dev_get_drvdata(dev);
1334 u8 temp_buf[2];
1335 s16 temp;
1336 int ret;
1337
Heiner Kallweit11e58902017-03-10 18:52:34 +01001338 ret = regmap_bulk_read(ds1307->regmap, DS3231_REG_TEMPERATURE,
1339 temp_buf, sizeof(temp_buf));
1340 if (ret)
Akinobu Mita445c0202016-01-25 00:22:16 +09001341 return ret;
Akinobu Mita445c0202016-01-25 00:22:16 +09001342 /*
1343 * Temperature is represented as a 10-bit code with a resolution of
1344 * 0.25 degree celsius and encoded in two's complement format.
1345 */
1346 temp = (temp_buf[0] << 8) | temp_buf[1];
1347 temp >>= 6;
1348 *mC = temp * 250;
1349
1350 return 0;
1351}
1352
1353static ssize_t ds3231_hwmon_show_temp(struct device *dev,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001354 struct device_attribute *attr, char *buf)
Akinobu Mita445c0202016-01-25 00:22:16 +09001355{
1356 int ret;
Zhuang Yuyao9a3dce62016-04-18 09:21:42 +09001357 s32 temp;
Akinobu Mita445c0202016-01-25 00:22:16 +09001358
1359 ret = ds3231_hwmon_read_temp(dev, &temp);
1360 if (ret)
1361 return ret;
1362
1363 return sprintf(buf, "%d\n", temp);
1364}
Alexandre Bellonib4be2712017-09-04 22:46:08 +02001365static SENSOR_DEVICE_ATTR(temp1_input, 0444, ds3231_hwmon_show_temp,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001366 NULL, 0);
Akinobu Mita445c0202016-01-25 00:22:16 +09001367
1368static struct attribute *ds3231_hwmon_attrs[] = {
1369 &sensor_dev_attr_temp1_input.dev_attr.attr,
1370 NULL,
1371};
1372ATTRIBUTE_GROUPS(ds3231_hwmon);
1373
1374static void ds1307_hwmon_register(struct ds1307 *ds1307)
1375{
1376 struct device *dev;
1377
1378 if (ds1307->type != ds_3231)
1379 return;
1380
Heiner Kallweit11e58902017-03-10 18:52:34 +01001381 dev = devm_hwmon_device_register_with_groups(ds1307->dev, ds1307->name,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001382 ds1307,
1383 ds3231_hwmon_groups);
Akinobu Mita445c0202016-01-25 00:22:16 +09001384 if (IS_ERR(dev)) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001385 dev_warn(ds1307->dev, "unable to register hwmon device %ld\n",
1386 PTR_ERR(dev));
Akinobu Mita445c0202016-01-25 00:22:16 +09001387 }
1388}
1389
1390#else
1391
1392static void ds1307_hwmon_register(struct ds1307 *ds1307)
1393{
1394}
1395
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001396#endif /* CONFIG_RTC_DRV_DS1307_HWMON */
1397
1398/*----------------------------------------------------------------------*/
1399
1400/*
1401 * Square-wave output support for DS3231
1402 * Datasheet: https://datasheets.maximintegrated.com/en/ds/DS3231.pdf
1403 */
1404#ifdef CONFIG_COMMON_CLK
1405
1406enum {
1407 DS3231_CLK_SQW = 0,
1408 DS3231_CLK_32KHZ,
1409};
1410
1411#define clk_sqw_to_ds1307(clk) \
1412 container_of(clk, struct ds1307, clks[DS3231_CLK_SQW])
1413#define clk_32khz_to_ds1307(clk) \
1414 container_of(clk, struct ds1307, clks[DS3231_CLK_32KHZ])
1415
1416static int ds3231_clk_sqw_rates[] = {
1417 1,
1418 1024,
1419 4096,
1420 8192,
1421};
1422
1423static int ds1337_write_control(struct ds1307 *ds1307, u8 mask, u8 value)
1424{
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001425 struct mutex *lock = &ds1307->rtc->ops_lock;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001426 int ret;
1427
1428 mutex_lock(lock);
Heiner Kallweit078f3f62017-06-05 17:57:29 +02001429 ret = regmap_update_bits(ds1307->regmap, DS1337_REG_CONTROL,
1430 mask, value);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001431 mutex_unlock(lock);
1432
1433 return ret;
1434}
1435
1436static unsigned long ds3231_clk_sqw_recalc_rate(struct clk_hw *hw,
1437 unsigned long parent_rate)
1438{
1439 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001440 int control, ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001441 int rate_sel = 0;
1442
Heiner Kallweit11e58902017-03-10 18:52:34 +01001443 ret = regmap_read(ds1307->regmap, DS1337_REG_CONTROL, &control);
1444 if (ret)
1445 return ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001446 if (control & DS1337_BIT_RS1)
1447 rate_sel += 1;
1448 if (control & DS1337_BIT_RS2)
1449 rate_sel += 2;
1450
1451 return ds3231_clk_sqw_rates[rate_sel];
1452}
1453
1454static long ds3231_clk_sqw_round_rate(struct clk_hw *hw, unsigned long rate,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001455 unsigned long *prate)
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001456{
1457 int i;
1458
1459 for (i = ARRAY_SIZE(ds3231_clk_sqw_rates) - 1; i >= 0; i--) {
1460 if (ds3231_clk_sqw_rates[i] <= rate)
1461 return ds3231_clk_sqw_rates[i];
1462 }
1463
1464 return 0;
1465}
1466
1467static int ds3231_clk_sqw_set_rate(struct clk_hw *hw, unsigned long rate,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001468 unsigned long parent_rate)
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001469{
1470 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
1471 int control = 0;
1472 int rate_sel;
1473
1474 for (rate_sel = 0; rate_sel < ARRAY_SIZE(ds3231_clk_sqw_rates);
1475 rate_sel++) {
1476 if (ds3231_clk_sqw_rates[rate_sel] == rate)
1477 break;
1478 }
1479
1480 if (rate_sel == ARRAY_SIZE(ds3231_clk_sqw_rates))
1481 return -EINVAL;
1482
1483 if (rate_sel & 1)
1484 control |= DS1337_BIT_RS1;
1485 if (rate_sel & 2)
1486 control |= DS1337_BIT_RS2;
1487
1488 return ds1337_write_control(ds1307, DS1337_BIT_RS1 | DS1337_BIT_RS2,
1489 control);
1490}
1491
1492static int ds3231_clk_sqw_prepare(struct clk_hw *hw)
1493{
1494 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
1495
1496 return ds1337_write_control(ds1307, DS1337_BIT_INTCN, 0);
1497}
1498
1499static void ds3231_clk_sqw_unprepare(struct clk_hw *hw)
1500{
1501 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
1502
1503 ds1337_write_control(ds1307, DS1337_BIT_INTCN, DS1337_BIT_INTCN);
1504}
1505
1506static int ds3231_clk_sqw_is_prepared(struct clk_hw *hw)
1507{
1508 struct ds1307 *ds1307 = clk_sqw_to_ds1307(hw);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001509 int control, ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001510
Heiner Kallweit11e58902017-03-10 18:52:34 +01001511 ret = regmap_read(ds1307->regmap, DS1337_REG_CONTROL, &control);
1512 if (ret)
1513 return ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001514
1515 return !(control & DS1337_BIT_INTCN);
1516}
1517
1518static const struct clk_ops ds3231_clk_sqw_ops = {
1519 .prepare = ds3231_clk_sqw_prepare,
1520 .unprepare = ds3231_clk_sqw_unprepare,
1521 .is_prepared = ds3231_clk_sqw_is_prepared,
1522 .recalc_rate = ds3231_clk_sqw_recalc_rate,
1523 .round_rate = ds3231_clk_sqw_round_rate,
1524 .set_rate = ds3231_clk_sqw_set_rate,
1525};
1526
1527static unsigned long ds3231_clk_32khz_recalc_rate(struct clk_hw *hw,
Alexandre Belloni4057a662017-09-04 22:46:06 +02001528 unsigned long parent_rate)
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001529{
1530 return 32768;
1531}
1532
1533static int ds3231_clk_32khz_control(struct ds1307 *ds1307, bool enable)
1534{
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001535 struct mutex *lock = &ds1307->rtc->ops_lock;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001536 int ret;
1537
1538 mutex_lock(lock);
Heiner Kallweit078f3f62017-06-05 17:57:29 +02001539 ret = regmap_update_bits(ds1307->regmap, DS1337_REG_STATUS,
1540 DS3231_BIT_EN32KHZ,
1541 enable ? DS3231_BIT_EN32KHZ : 0);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001542 mutex_unlock(lock);
1543
1544 return ret;
1545}
1546
1547static int ds3231_clk_32khz_prepare(struct clk_hw *hw)
1548{
1549 struct ds1307 *ds1307 = clk_32khz_to_ds1307(hw);
1550
1551 return ds3231_clk_32khz_control(ds1307, true);
1552}
1553
1554static void ds3231_clk_32khz_unprepare(struct clk_hw *hw)
1555{
1556 struct ds1307 *ds1307 = clk_32khz_to_ds1307(hw);
1557
1558 ds3231_clk_32khz_control(ds1307, false);
1559}
1560
1561static int ds3231_clk_32khz_is_prepared(struct clk_hw *hw)
1562{
1563 struct ds1307 *ds1307 = clk_32khz_to_ds1307(hw);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001564 int status, ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001565
Heiner Kallweit11e58902017-03-10 18:52:34 +01001566 ret = regmap_read(ds1307->regmap, DS1337_REG_STATUS, &status);
1567 if (ret)
1568 return ret;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001569
1570 return !!(status & DS3231_BIT_EN32KHZ);
1571}
1572
1573static const struct clk_ops ds3231_clk_32khz_ops = {
1574 .prepare = ds3231_clk_32khz_prepare,
1575 .unprepare = ds3231_clk_32khz_unprepare,
1576 .is_prepared = ds3231_clk_32khz_is_prepared,
1577 .recalc_rate = ds3231_clk_32khz_recalc_rate,
1578};
1579
Andy Shevchenko227ec122020-11-16 16:28:58 +02001580static const char *ds3231_clks_names[] = {
1581 [DS3231_CLK_SQW] = "ds3231_clk_sqw",
1582 [DS3231_CLK_32KHZ] = "ds3231_clk_32khz",
1583};
1584
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001585static struct clk_init_data ds3231_clks_init[] = {
1586 [DS3231_CLK_SQW] = {
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001587 .ops = &ds3231_clk_sqw_ops,
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001588 },
1589 [DS3231_CLK_32KHZ] = {
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001590 .ops = &ds3231_clk_32khz_ops,
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001591 },
1592};
1593
1594static int ds3231_clks_register(struct ds1307 *ds1307)
1595{
Heiner Kallweit11e58902017-03-10 18:52:34 +01001596 struct device_node *node = ds1307->dev->of_node;
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001597 struct clk_onecell_data *onecell;
1598 int i;
1599
Heiner Kallweit11e58902017-03-10 18:52:34 +01001600 onecell = devm_kzalloc(ds1307->dev, sizeof(*onecell), GFP_KERNEL);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001601 if (!onecell)
1602 return -ENOMEM;
1603
1604 onecell->clk_num = ARRAY_SIZE(ds3231_clks_init);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001605 onecell->clks = devm_kcalloc(ds1307->dev, onecell->clk_num,
1606 sizeof(onecell->clks[0]), GFP_KERNEL);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001607 if (!onecell->clks)
1608 return -ENOMEM;
1609
Andy Shevchenko227ec122020-11-16 16:28:58 +02001610 /* optional override of the clockname */
1611 device_property_read_string_array(ds1307->dev, "clock-output-names",
1612 ds3231_clks_names,
1613 ARRAY_SIZE(ds3231_clks_names));
1614
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001615 for (i = 0; i < ARRAY_SIZE(ds3231_clks_init); i++) {
1616 struct clk_init_data init = ds3231_clks_init[i];
1617
1618 /*
1619 * Interrupt signal due to alarm conditions and square-wave
1620 * output share same pin, so don't initialize both.
1621 */
Alexandre Belloni64e9d8e2021-04-18 02:00:21 +02001622 if (i == DS3231_CLK_SQW && test_bit(RTC_FEATURE_ALARM, ds1307->rtc->features))
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001623 continue;
1624
Andy Shevchenko227ec122020-11-16 16:28:58 +02001625 init.name = ds3231_clks_names[i];
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001626 ds1307->clks[i].init = &init;
1627
Heiner Kallweit11e58902017-03-10 18:52:34 +01001628 onecell->clks[i] = devm_clk_register(ds1307->dev,
1629 &ds1307->clks[i]);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001630 if (IS_ERR(onecell->clks[i]))
1631 return PTR_ERR(onecell->clks[i]);
1632 }
1633
Andy Shevchenko227ec122020-11-16 16:28:58 +02001634 if (node)
1635 of_clk_add_provider(node, of_clk_src_onecell_get, onecell);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001636
1637 return 0;
1638}
1639
1640static void ds1307_clks_register(struct ds1307 *ds1307)
1641{
1642 int ret;
1643
1644 if (ds1307->type != ds_3231)
1645 return;
1646
1647 ret = ds3231_clks_register(ds1307);
1648 if (ret) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001649 dev_warn(ds1307->dev, "unable to register clock device %d\n",
1650 ret);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09001651 }
1652}
1653
1654#else
1655
1656static void ds1307_clks_register(struct ds1307 *ds1307)
1657{
1658}
1659
1660#endif /* CONFIG_COMMON_CLK */
Akinobu Mita445c0202016-01-25 00:22:16 +09001661
Chris Packhamfd90d482020-03-30 15:55:00 +13001662#ifdef CONFIG_WATCHDOG_CORE
1663static const struct watchdog_info ds1388_wdt_info = {
1664 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
1665 .identity = "DS1388 watchdog",
1666};
1667
1668static const struct watchdog_ops ds1388_wdt_ops = {
1669 .owner = THIS_MODULE,
1670 .start = ds1388_wdt_start,
1671 .stop = ds1388_wdt_stop,
1672 .ping = ds1388_wdt_ping,
1673 .set_timeout = ds1388_wdt_set_timeout,
1674
1675};
1676
1677static void ds1307_wdt_register(struct ds1307 *ds1307)
1678{
1679 struct watchdog_device *wdt;
Chris Packham9bf13062020-07-27 15:46:14 +12001680 int err;
1681 int val;
Chris Packhamfd90d482020-03-30 15:55:00 +13001682
1683 if (ds1307->type != ds_1388)
1684 return;
1685
1686 wdt = devm_kzalloc(ds1307->dev, sizeof(*wdt), GFP_KERNEL);
Colin Ian King1821b792020-04-03 12:04:37 +01001687 if (!wdt)
1688 return;
Chris Packhamfd90d482020-03-30 15:55:00 +13001689
Chris Packham9bf13062020-07-27 15:46:14 +12001690 err = regmap_read(ds1307->regmap, DS1388_REG_FLAG, &val);
1691 if (!err && val & DS1388_BIT_WF)
1692 wdt->bootstatus = WDIOF_CARDRESET;
1693
Chris Packhamfd90d482020-03-30 15:55:00 +13001694 wdt->info = &ds1388_wdt_info;
1695 wdt->ops = &ds1388_wdt_ops;
1696 wdt->timeout = 99;
1697 wdt->max_timeout = 99;
1698 wdt->min_timeout = 1;
1699
1700 watchdog_init_timeout(wdt, 0, ds1307->dev);
1701 watchdog_set_drvdata(wdt, ds1307);
1702 devm_watchdog_register_device(ds1307->dev, wdt);
1703}
1704#else
1705static void ds1307_wdt_register(struct ds1307 *ds1307)
1706{
1707}
1708#endif /* CONFIG_WATCHDOG_CORE */
1709
Heiner Kallweit11e58902017-03-10 18:52:34 +01001710static const struct regmap_config regmap_config = {
1711 .reg_bits = 8,
1712 .val_bits = 8,
Heiner Kallweit11e58902017-03-10 18:52:34 +01001713};
1714
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -08001715static int ds1307_probe(struct i2c_client *client,
1716 const struct i2c_device_id *id)
David Brownell1abb0dc2006-06-25 05:48:17 -07001717{
1718 struct ds1307 *ds1307;
Andy Shevchenko227ec122020-11-16 16:28:58 +02001719 const void *match;
David Brownell1abb0dc2006-06-25 05:48:17 -07001720 int err = -ENODEV;
Heiner Kallweit584ce302017-08-29 21:52:56 +02001721 int tmp;
Heiner Kallweit7624df42017-07-12 07:49:33 +02001722 const struct chip_desc *chip;
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001723 bool want_irq;
Michael Lange8bc2a402016-01-21 18:10:16 +01001724 bool ds1307_can_wakeup_device = false;
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001725 unsigned char regs[8];
Jingoo Han01ce8932013-11-12 15:10:41 -08001726 struct ds1307_platform_data *pdata = dev_get_platdata(&client->dev);
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001727 u8 trickle_charger_setup = 0;
David Brownell1abb0dc2006-06-25 05:48:17 -07001728
Jingoo Hanedca66d2013-07-03 15:07:05 -07001729 ds1307 = devm_kzalloc(&client->dev, sizeof(struct ds1307), GFP_KERNEL);
David Anders40ce9722012-03-23 15:02:37 -07001730 if (!ds1307)
David Brownellc065f352007-07-17 04:05:10 -07001731 return -ENOMEM;
David Brownell045e0e82007-07-17 04:04:55 -07001732
Heiner Kallweit11e58902017-03-10 18:52:34 +01001733 dev_set_drvdata(&client->dev, ds1307);
1734 ds1307->dev = &client->dev;
1735 ds1307->name = client->name;
Joakim Tjernlund33df2ee2009-06-17 16:26:08 -07001736
Heiner Kallweit11e58902017-03-10 18:52:34 +01001737 ds1307->regmap = devm_regmap_init_i2c(client, &regmap_config);
1738 if (IS_ERR(ds1307->regmap)) {
1739 dev_err(ds1307->dev, "regmap allocation failed\n");
1740 return PTR_ERR(ds1307->regmap);
1741 }
1742
1743 i2c_set_clientdata(client, ds1307);
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001744
Andy Shevchenko227ec122020-11-16 16:28:58 +02001745 match = device_get_match_data(&client->dev);
1746 if (match) {
1747 ds1307->type = (enum ds_type)match;
Javier Martinez Canillas7ef6d2c2017-03-03 11:29:15 -03001748 chip = &chips[ds1307->type];
1749 } else if (id) {
Tin Huynh9c19b892016-11-30 09:57:31 +07001750 chip = &chips[id->driver_data];
1751 ds1307->type = id->driver_data;
1752 } else {
Andy Shevchenkoa3111112020-11-16 16:28:57 +02001753 return -ENODEV;
Tin Huynh9c19b892016-11-30 09:57:31 +07001754 }
1755
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001756 want_irq = client->irq > 0 && chip->alarm;
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001757
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001758 if (!pdata)
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001759 trickle_charger_setup = ds1307_trickle_init(ds1307, chip);
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001760 else if (pdata->trickle_charger_setup)
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001761 trickle_charger_setup = pdata->trickle_charger_setup;
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001762
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001763 if (trickle_charger_setup && chip->trickle_charger_reg) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001764 dev_dbg(ds1307->dev,
1765 "writing trickle charger info 0x%x to 0x%x\n",
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001766 trickle_charger_setup, chip->trickle_charger_reg);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001767 regmap_write(ds1307->regmap, chip->trickle_charger_reg,
Heiner Kallweitd8490fd2017-07-12 07:49:28 +02001768 trickle_charger_setup);
Matti Vaittinen33b04b72014-10-13 15:52:48 -07001769 }
Wolfram Sangeb86c302012-05-29 15:07:38 -07001770
Michael Lange8bc2a402016-01-21 18:10:16 +01001771/*
1772 * For devices with no IRQ directly connected to the SoC, the RTC chip
1773 * can be forced as a wakeup source by stating that explicitly in
1774 * the device's .dts file using the "wakeup-source" boolean property.
1775 * If the "wakeup-source" property is set, don't request an IRQ.
1776 * This will guarantee the 'wakealarm' sysfs entry is available on the device,
1777 * if supported by the RTC.
1778 */
Andy Shevchenko227ec122020-11-16 16:28:58 +02001779 if (chip->alarm && device_property_read_bool(&client->dev, "wakeup-source"))
Michael Lange8bc2a402016-01-21 18:10:16 +01001780 ds1307_can_wakeup_device = true;
Michael Lange8bc2a402016-01-21 18:10:16 +01001781
David Brownell045e0e82007-07-17 04:04:55 -07001782 switch (ds1307->type) {
1783 case ds_1337:
1784 case ds_1339:
Nikita Yushchenko0759c882017-08-24 09:32:11 +03001785 case ds_1341:
Wolfram Sang97f902b2009-06-17 16:26:10 -07001786 case ds_3231:
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -07001787 /* get registers that the "rtc" read below won't read... */
Heiner Kallweit11e58902017-03-10 18:52:34 +01001788 err = regmap_bulk_read(ds1307->regmap, DS1337_REG_CONTROL,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001789 regs, 2);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001790 if (err) {
1791 dev_dbg(ds1307->dev, "read error %d\n", err);
Jingoo Hanedca66d2013-07-03 15:07:05 -07001792 goto exit;
David Brownell1abb0dc2006-06-25 05:48:17 -07001793 }
1794
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -07001795 /* oscillator off? turn it on, so clock can tick. */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001796 if (regs[0] & DS1337_BIT_nEOSC)
1797 regs[0] &= ~DS1337_BIT_nEOSC;
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001798
David Anders40ce9722012-03-23 15:02:37 -07001799 /*
Michael Lange8bc2a402016-01-21 18:10:16 +01001800 * Using IRQ or defined as wakeup-source?
1801 * Disable the square wave and both alarms.
Wolfram Sang97f902b2009-06-17 16:26:10 -07001802 * For some variants, be sure alarms can trigger when we're
1803 * running on Vbackup (BBSQI/BBSQW)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001804 */
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001805 if (want_irq || ds1307_can_wakeup_device) {
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001806 regs[0] |= DS1337_BIT_INTCN | chip->bbsqi_bit;
1807 regs[0] &= ~(DS1337_BIT_A2IE | DS1337_BIT_A1IE);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001808 }
1809
Heiner Kallweit11e58902017-03-10 18:52:34 +01001810 regmap_write(ds1307->regmap, DS1337_REG_CONTROL,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001811 regs[0]);
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -07001812
1813 /* oscillator fault? clear flag, and warn */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001814 if (regs[1] & DS1337_BIT_OSF) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001815 regmap_write(ds1307->regmap, DS1337_REG_STATUS,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001816 regs[1] & ~DS1337_BIT_OSF);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001817 dev_warn(ds1307->dev, "SET TIME!\n");
David Brownell1abb0dc2006-06-25 05:48:17 -07001818 }
David Brownell045e0e82007-07-17 04:04:55 -07001819 break;
Matthias Fuchsa2166852009-03-31 15:24:58 -07001820
1821 case rx_8025:
Heiner Kallweit11e58902017-03-10 18:52:34 +01001822 err = regmap_bulk_read(ds1307->regmap,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001823 RX8025_REG_CTRL1 << 4 | 0x08, regs, 2);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001824 if (err) {
1825 dev_dbg(ds1307->dev, "read error %d\n", err);
Jingoo Hanedca66d2013-07-03 15:07:05 -07001826 goto exit;
Matthias Fuchsa2166852009-03-31 15:24:58 -07001827 }
1828
1829 /* oscillator off? turn it on, so clock can tick. */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001830 if (!(regs[1] & RX8025_BIT_XST)) {
1831 regs[1] |= RX8025_BIT_XST;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001832 regmap_write(ds1307->regmap,
1833 RX8025_REG_CTRL2 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001834 regs[1]);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001835 dev_warn(ds1307->dev,
Matthias Fuchsa2166852009-03-31 15:24:58 -07001836 "oscillator stop detected - SET TIME!\n");
1837 }
1838
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001839 if (regs[1] & RX8025_BIT_PON) {
1840 regs[1] &= ~RX8025_BIT_PON;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001841 regmap_write(ds1307->regmap,
1842 RX8025_REG_CTRL2 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001843 regs[1]);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001844 dev_warn(ds1307->dev, "power-on detected\n");
Matthias Fuchsa2166852009-03-31 15:24:58 -07001845 }
1846
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001847 if (regs[1] & RX8025_BIT_VDET) {
1848 regs[1] &= ~RX8025_BIT_VDET;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001849 regmap_write(ds1307->regmap,
1850 RX8025_REG_CTRL2 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001851 regs[1]);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001852 dev_warn(ds1307->dev, "voltage drop detected\n");
Matthias Fuchsa2166852009-03-31 15:24:58 -07001853 }
1854
1855 /* make sure we are running in 24hour mode */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001856 if (!(regs[0] & RX8025_BIT_2412)) {
Matthias Fuchsa2166852009-03-31 15:24:58 -07001857 u8 hour;
1858
1859 /* switch to 24 hour mode */
Heiner Kallweit11e58902017-03-10 18:52:34 +01001860 regmap_write(ds1307->regmap,
1861 RX8025_REG_CTRL1 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001862 regs[0] | RX8025_BIT_2412);
Matthias Fuchsa2166852009-03-31 15:24:58 -07001863
Heiner Kallweit11e58902017-03-10 18:52:34 +01001864 err = regmap_bulk_read(ds1307->regmap,
1865 RX8025_REG_CTRL1 << 4 | 0x08,
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001866 regs, 2);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001867 if (err) {
1868 dev_dbg(ds1307->dev, "read error %d\n", err);
Jingoo Hanedca66d2013-07-03 15:07:05 -07001869 goto exit;
Matthias Fuchsa2166852009-03-31 15:24:58 -07001870 }
1871
1872 /* correct hour */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001873 hour = bcd2bin(regs[DS1307_REG_HOUR]);
Matthias Fuchsa2166852009-03-31 15:24:58 -07001874 if (hour == 12)
1875 hour = 0;
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001876 if (regs[DS1307_REG_HOUR] & DS1307_BIT_PM)
Matthias Fuchsa2166852009-03-31 15:24:58 -07001877 hour += 12;
1878
Heiner Kallweit11e58902017-03-10 18:52:34 +01001879 regmap_write(ds1307->regmap,
1880 DS1307_REG_HOUR << 4 | 0x08, hour);
Matthias Fuchsa2166852009-03-31 15:24:58 -07001881 }
1882 break;
Chris Packham59ed0122020-08-17 11:57:31 +12001883 case ds_1388:
1884 err = regmap_read(ds1307->regmap, DS1388_REG_CONTROL, &tmp);
1885 if (err) {
1886 dev_dbg(ds1307->dev, "read error %d\n", err);
1887 goto exit;
1888 }
1889
1890 /* oscillator off? turn it on, so clock can tick. */
1891 if (tmp & DS1388_BIT_nEOSC) {
1892 tmp &= ~DS1388_BIT_nEOSC;
1893 regmap_write(ds1307->regmap, DS1388_REG_CONTROL, tmp);
1894 }
1895 break;
David Brownell045e0e82007-07-17 04:04:55 -07001896 default:
1897 break;
1898 }
David Brownell1abb0dc2006-06-25 05:48:17 -07001899
David Brownell1abb0dc2006-06-25 05:48:17 -07001900 /* read RTC registers */
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001901 err = regmap_bulk_read(ds1307->regmap, chip->offset, regs,
1902 sizeof(regs));
Heiner Kallweit11e58902017-03-10 18:52:34 +01001903 if (err) {
1904 dev_dbg(ds1307->dev, "read error %d\n", err);
Jingoo Hanedca66d2013-07-03 15:07:05 -07001905 goto exit;
David Brownell1abb0dc2006-06-25 05:48:17 -07001906 }
1907
Alexandre Bellonib3a50162019-04-11 00:16:29 +02001908 if (ds1307->type == mcp794xx &&
1909 !(regs[DS1307_REG_WDAY] & MCP794XX_BIT_VBATEN)) {
1910 regmap_write(ds1307->regmap, DS1307_REG_WDAY,
1911 regs[DS1307_REG_WDAY] |
1912 MCP794XX_BIT_VBATEN);
David Brownell1abb0dc2006-06-25 05:48:17 -07001913 }
David Brownell045e0e82007-07-17 04:04:55 -07001914
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001915 tmp = regs[DS1307_REG_HOUR];
David Brownellc065f352007-07-17 04:05:10 -07001916 switch (ds1307->type) {
1917 case ds_1340:
Stefan Agner8566f702017-03-23 16:54:57 -07001918 case m41t0:
David Brownellc065f352007-07-17 04:05:10 -07001919 case m41t00:
Giulio Benetti7e580762018-05-16 23:08:40 +02001920 case m41t11:
David Anders40ce9722012-03-23 15:02:37 -07001921 /*
1922 * NOTE: ignores century bits; fix before deploying
David Brownellc065f352007-07-17 04:05:10 -07001923 * systems that will run through year 2100.
1924 */
1925 break;
Matthias Fuchsa2166852009-03-31 15:24:58 -07001926 case rx_8025:
1927 break;
David Brownellc065f352007-07-17 04:05:10 -07001928 default:
1929 if (!(tmp & DS1307_BIT_12HR))
1930 break;
1931
David Anders40ce9722012-03-23 15:02:37 -07001932 /*
1933 * Be sure we're in 24 hour mode. Multi-master systems
David Brownellc065f352007-07-17 04:05:10 -07001934 * take note...
1935 */
Adrian Bunkfe20ba72008-10-18 20:28:41 -07001936 tmp = bcd2bin(tmp & 0x1f);
David Brownellc065f352007-07-17 04:05:10 -07001937 if (tmp == 12)
1938 tmp = 0;
Alexandre Belloni042fa8c2017-09-04 22:46:02 +02001939 if (regs[DS1307_REG_HOUR] & DS1307_BIT_PM)
David Brownellc065f352007-07-17 04:05:10 -07001940 tmp += 12;
Heiner Kallweite5531702017-07-12 07:49:47 +02001941 regmap_write(ds1307->regmap, chip->offset + DS1307_REG_HOUR,
Heiner Kallweit11e58902017-03-10 18:52:34 +01001942 bin2bcd(tmp));
David Brownell1abb0dc2006-06-25 05:48:17 -07001943 }
1944
Alexandre Belloni69b119a2017-07-06 11:42:06 +02001945 ds1307->rtc = devm_rtc_allocate_device(ds1307->dev);
Alexandre Bellonie69c0562017-09-04 22:46:07 +02001946 if (IS_ERR(ds1307->rtc))
Alessandro Zummo4071ea22014-04-03 14:49:36 -07001947 return PTR_ERR(ds1307->rtc);
David Brownell1abb0dc2006-06-25 05:48:17 -07001948
Alexandre Belloni64e9d8e2021-04-18 02:00:21 +02001949 if (want_irq || ds1307_can_wakeup_device)
1950 device_set_wakeup_capable(ds1307->dev, true);
1951 else
1952 clear_bit(RTC_FEATURE_ALARM, ds1307->rtc->features);
1953
Heiner Kallweit82e2d432017-07-12 07:49:37 +02001954 if (ds1307_can_wakeup_device && !want_irq) {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001955 dev_info(ds1307->dev,
1956 "'wakeup-source' is set, request for an IRQ is disabled!\n");
Michael Lange8bc2a402016-01-21 18:10:16 +01001957 /* We cannot support UIE mode if we do not have an IRQ line */
1958 ds1307->rtc->uie_unsupported = 1;
1959 }
1960
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001961 if (want_irq) {
Heiner Kallweit45947122017-07-12 07:49:41 +02001962 err = devm_request_threaded_irq(ds1307->dev, client->irq, NULL,
1963 chip->irq_handler ?: ds1307_irq,
Nishanth Menonc5983192015-06-23 11:15:11 -05001964 IRQF_SHARED | IRQF_ONESHOT,
Alexandre Belloni4b9e2a02017-06-02 14:13:21 +02001965 ds1307->name, ds1307);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001966 if (err) {
Alessandro Zummo4071ea22014-04-03 14:49:36 -07001967 client->irq = 0;
Heiner Kallweit11e58902017-03-10 18:52:34 +01001968 device_set_wakeup_capable(ds1307->dev, false);
Alexandre Belloni64e9d8e2021-04-18 02:00:21 +02001969 clear_bit(RTC_FEATURE_ALARM, ds1307->rtc->features);
Heiner Kallweit11e58902017-03-10 18:52:34 +01001970 dev_err(ds1307->dev, "unable to request IRQ!\n");
Alexandre Bellonie69c0562017-09-04 22:46:07 +02001971 } else {
Heiner Kallweit11e58902017-03-10 18:52:34 +01001972 dev_dbg(ds1307->dev, "got IRQ %d\n", client->irq);
Alexandre Bellonie69c0562017-09-04 22:46:07 +02001973 }
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -07001974 }
1975
Alexandre Bellonie9fb7682018-02-12 23:47:22 +01001976 ds1307->rtc->ops = chip->rtc_ops ?: &ds13xx_rtc_ops;
Alexandre Belloni6a5f2a1f2018-09-20 16:35:26 +02001977 err = ds1307_add_frequency_test(ds1307);
Alexandre Bellonie9fb7682018-02-12 23:47:22 +01001978 if (err)
1979 return err;
1980
Bartosz Golaszewskifdcfd852020-11-09 17:34:08 +01001981 err = devm_rtc_register_device(ds1307->rtc);
Giulio Benettib41c23e2018-07-25 19:26:05 +02001982 if (err)
1983 return err;
1984
Austin Boyle9eab0a72012-03-23 15:02:38 -07001985 if (chip->nvram_size) {
Alexandre Belloni409baf12018-02-12 23:47:23 +01001986 struct nvmem_config nvmem_cfg = {
1987 .name = "ds1307_nvram",
1988 .word_size = 1,
1989 .stride = 1,
1990 .size = chip->nvram_size,
1991 .reg_read = ds1307_nvram_read,
1992 .reg_write = ds1307_nvram_write,
1993 .priv = ds1307,
1994 };
Alessandro Zummo4071ea22014-04-03 14:49:36 -07001995
Bartosz Golaszewski3a905c2d2020-11-09 17:34:06 +01001996 devm_rtc_nvmem_register(ds1307->rtc, &nvmem_cfg);
David Brownell682d73f2007-11-14 16:58:32 -08001997 }
1998
Akinobu Mita445c0202016-01-25 00:22:16 +09001999 ds1307_hwmon_register(ds1307);
Akinobu Mita6c6ff142016-01-31 23:10:10 +09002000 ds1307_clks_register(ds1307);
Chris Packhamfd90d482020-03-30 15:55:00 +13002001 ds1307_wdt_register(ds1307);
Akinobu Mita445c0202016-01-25 00:22:16 +09002002
David Brownell1abb0dc2006-06-25 05:48:17 -07002003 return 0;
2004
Jingoo Hanedca66d2013-07-03 15:07:05 -07002005exit:
David Brownell1abb0dc2006-06-25 05:48:17 -07002006 return err;
2007}
2008
David Brownell1abb0dc2006-06-25 05:48:17 -07002009static struct i2c_driver ds1307_driver = {
2010 .driver = {
David Brownellc065f352007-07-17 04:05:10 -07002011 .name = "rtc-ds1307",
Andy Shevchenko698fffc2020-11-16 16:28:59 +02002012 .of_match_table = ds1307_of_match,
David Brownell1abb0dc2006-06-25 05:48:17 -07002013 },
David Brownellc065f352007-07-17 04:05:10 -07002014 .probe = ds1307_probe,
Jean Delvare3760f732008-04-29 23:11:40 +02002015 .id_table = ds1307_id,
David Brownell1abb0dc2006-06-25 05:48:17 -07002016};
2017
Axel Lin0abc9202012-03-23 15:02:31 -07002018module_i2c_driver(ds1307_driver);
David Brownell1abb0dc2006-06-25 05:48:17 -07002019
2020MODULE_DESCRIPTION("RTC driver for DS1307 and similar chips");
2021MODULE_LICENSE("GPL");