blob: f44dcf628c87b7a9e619e444e46ee0fe79881bc8 [file] [log] [blame]
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001/*
2 * I2C client/driver for the ST M41T80 family of i2c rtc chips.
3 *
4 * Author: Alexander Bigga <ab@mycable.de>
5 *
6 * Based on m41t00.c by Mark A. Greer <mgreer@mvista.com>
7 *
8 * 2006 (c) mycable GmbH
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 */
15
Joe Perchesa737e832015-04-16 12:46:14 -070016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Maciej W. Rozycki35aa64f2008-07-23 21:30:29 -070018#include <linux/bcd.h>
Gary Bisson1373e772017-04-25 16:45:17 +020019#include <linux/clk-provider.h>
Maciej W. Rozycki35aa64f2008-07-23 21:30:29 -070020#include <linux/i2c.h>
Atsushi Nemotocaaff562007-07-17 04:05:02 -070021#include <linux/init.h>
Maciej W. Rozycki9fb1f682008-05-12 14:02:38 -070022#include <linux/kernel.h>
Maciej W. Rozycki35aa64f2008-07-23 21:30:29 -070023#include <linux/module.h>
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -030024#include <linux/of_device.h>
Maciej W. Rozycki35aa64f2008-07-23 21:30:29 -070025#include <linux/rtc.h>
Atsushi Nemotocaaff562007-07-17 04:05:02 -070026#include <linux/slab.h>
Arnd Bergmann613655f2010-06-02 14:28:52 +020027#include <linux/mutex.h>
Atsushi Nemotocaaff562007-07-17 04:05:02 -070028#include <linux/string.h>
Atsushi Nemoto617780d2007-07-17 04:05:04 -070029#ifdef CONFIG_RTC_DRV_M41T80_WDT
Atsushi Nemoto617780d2007-07-17 04:05:04 -070030#include <linux/fs.h>
31#include <linux/ioctl.h>
Maciej W. Rozycki35aa64f2008-07-23 21:30:29 -070032#include <linux/miscdevice.h>
33#include <linux/reboot.h>
34#include <linux/watchdog.h>
Atsushi Nemoto617780d2007-07-17 04:05:04 -070035#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -070036
Mylène Josserandf2b84ee2016-03-29 08:56:00 +020037#define M41T80_REG_SSEC 0x00
38#define M41T80_REG_SEC 0x01
39#define M41T80_REG_MIN 0x02
40#define M41T80_REG_HOUR 0x03
41#define M41T80_REG_WDAY 0x04
42#define M41T80_REG_DAY 0x05
43#define M41T80_REG_MON 0x06
44#define M41T80_REG_YEAR 0x07
45#define M41T80_REG_ALARM_MON 0x0a
46#define M41T80_REG_ALARM_DAY 0x0b
47#define M41T80_REG_ALARM_HOUR 0x0c
48#define M41T80_REG_ALARM_MIN 0x0d
49#define M41T80_REG_ALARM_SEC 0x0e
50#define M41T80_REG_FLAGS 0x0f
51#define M41T80_REG_SQW 0x13
Atsushi Nemotocaaff562007-07-17 04:05:02 -070052
53#define M41T80_DATETIME_REG_SIZE (M41T80_REG_YEAR + 1)
54#define M41T80_ALARM_REG_SIZE \
55 (M41T80_REG_ALARM_SEC + 1 - M41T80_REG_ALARM_MON)
56
Gary Bisson1373e772017-04-25 16:45:17 +020057#define M41T80_SQW_MAX_FREQ 32768
58
Mylène Josserand54339f32016-03-29 08:56:01 +020059#define M41T80_SEC_ST BIT(7) /* ST: Stop Bit */
60#define M41T80_ALMON_AFE BIT(7) /* AFE: AF Enable Bit */
61#define M41T80_ALMON_SQWE BIT(6) /* SQWE: SQW Enable Bit */
62#define M41T80_ALHOUR_HT BIT(6) /* HT: Halt Update Bit */
Mylène Josserand05a7f272016-03-29 08:56:05 +020063#define M41T80_FLAGS_OF BIT(2) /* OF: Oscillator Failure Bit */
Mylène Josserand54339f32016-03-29 08:56:01 +020064#define M41T80_FLAGS_AF BIT(6) /* AF: Alarm Flag Bit */
65#define M41T80_FLAGS_BATT_LOW BIT(4) /* BL: Battery Low Bit */
66#define M41T80_WATCHDOG_RB2 BIT(7) /* RB: Watchdog resolution */
67#define M41T80_WATCHDOG_RB1 BIT(1) /* RB: Watchdog resolution */
68#define M41T80_WATCHDOG_RB0 BIT(0) /* RB: Watchdog resolution */
Atsushi Nemotocaaff562007-07-17 04:05:02 -070069
Mylène Josserand54339f32016-03-29 08:56:01 +020070#define M41T80_FEATURE_HT BIT(0) /* Halt feature */
71#define M41T80_FEATURE_BL BIT(1) /* Battery low indicator */
72#define M41T80_FEATURE_SQ BIT(2) /* Squarewave feature */
73#define M41T80_FEATURE_WD BIT(3) /* Extra watchdog resolution */
74#define M41T80_FEATURE_SQ_ALT BIT(4) /* RSx bits are in reg 4 */
Atsushi Nemotocaaff562007-07-17 04:05:02 -070075
Arnd Bergmann613655f2010-06-02 14:28:52 +020076static DEFINE_MUTEX(m41t80_rtc_mutex);
Jean Delvare3760f732008-04-29 23:11:40 +020077static const struct i2c_device_id m41t80_id[] = {
Daniel Glocknerf30281f2009-04-02 16:57:03 -070078 { "m41t62", M41T80_FEATURE_SQ | M41T80_FEATURE_SQ_ALT },
Steven A. Falcod3a126f2008-10-15 22:03:07 -070079 { "m41t65", M41T80_FEATURE_HT | M41T80_FEATURE_WD },
80 { "m41t80", M41T80_FEATURE_SQ },
81 { "m41t81", M41T80_FEATURE_HT | M41T80_FEATURE_SQ},
82 { "m41t81s", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
83 { "m41t82", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
84 { "m41t83", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
85 { "m41st84", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
86 { "m41st85", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
87 { "m41st87", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
Wolfram Sang6b1a5232014-06-06 14:35:47 -070088 { "rv4162", M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT },
Jean Delvare3760f732008-04-29 23:11:40 +020089 { }
Atsushi Nemotocaaff562007-07-17 04:05:02 -070090};
Jean Delvare3760f732008-04-29 23:11:40 +020091MODULE_DEVICE_TABLE(i2c, m41t80_id);
Atsushi Nemotocaaff562007-07-17 04:05:02 -070092
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -030093static const struct of_device_id m41t80_of_match[] = {
94 {
95 .compatible = "st,m41t62",
96 .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_SQ_ALT)
97 },
98 {
99 .compatible = "st,m41t65",
100 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_WD)
101 },
102 {
103 .compatible = "st,m41t80",
104 .data = (void *)(M41T80_FEATURE_SQ)
105 },
106 {
107 .compatible = "st,m41t81",
108 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_SQ)
109 },
110 {
111 .compatible = "st,m41t81s",
112 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
113 },
114 {
115 .compatible = "st,m41t82",
116 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
117 },
118 {
119 .compatible = "st,m41t83",
120 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
121 },
122 {
123 .compatible = "st,m41t84",
124 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
125 },
126 {
127 .compatible = "st,m41t85",
128 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
129 },
130 {
131 .compatible = "st,m41t87",
132 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
133 },
134 {
Alexandre Bellonia897bf12017-04-19 22:05:48 +0200135 .compatible = "microcrystal,rv4162",
136 .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT)
137 },
138 /* DT compatibility only, do not use compatibles below: */
139 {
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300140 .compatible = "st,rv4162",
141 .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT)
142 },
143 {
144 .compatible = "rv4162",
145 .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT)
146 },
147 { }
148};
149MODULE_DEVICE_TABLE(of, m41t80_of_match);
150
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700151struct m41t80_data {
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300152 unsigned long features;
Gary Bisson1373e772017-04-25 16:45:17 +0200153 struct i2c_client *client;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700154 struct rtc_device *rtc;
Gary Bisson1373e772017-04-25 16:45:17 +0200155#ifdef CONFIG_COMMON_CLK
156 struct clk_hw sqw;
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700157 unsigned long freq;
Gary Bisson1373e772017-04-25 16:45:17 +0200158#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700159};
160
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200161static irqreturn_t m41t80_handle_irq(int irq, void *dev_id)
162{
163 struct i2c_client *client = dev_id;
164 struct m41t80_data *m41t80 = i2c_get_clientdata(client);
165 struct mutex *lock = &m41t80->rtc->ops_lock;
166 unsigned long events = 0;
167 int flags, flags_afe;
168
169 mutex_lock(lock);
170
171 flags_afe = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
172 if (flags_afe < 0) {
173 mutex_unlock(lock);
174 return IRQ_NONE;
175 }
176
177 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
178 if (flags <= 0) {
179 mutex_unlock(lock);
180 return IRQ_NONE;
181 }
182
183 if (flags & M41T80_FLAGS_AF) {
184 flags &= ~M41T80_FLAGS_AF;
185 flags_afe &= ~M41T80_ALMON_AFE;
186 events |= RTC_AF;
187 }
188
189 if (events) {
190 rtc_update_irq(m41t80->rtc, 1, events);
191 i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS, flags);
192 i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
193 flags_afe);
194 }
195
196 mutex_unlock(lock);
197
198 return IRQ_HANDLED;
199}
200
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700201static int m41t80_get_datetime(struct i2c_client *client,
202 struct rtc_time *tm)
203{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200204 unsigned char buf[8];
Mylène Josserand05a7f272016-03-29 08:56:05 +0200205 int err, flags;
206
207 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
208 if (flags < 0)
209 return flags;
210
211 if (flags & M41T80_FLAGS_OF) {
212 dev_err(&client->dev, "Oscillator failure, data is invalid.\n");
213 return -EINVAL;
214 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700215
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200216 err = i2c_smbus_read_i2c_block_data(client, M41T80_REG_SSEC,
217 sizeof(buf), buf);
218 if (err < 0) {
219 dev_err(&client->dev, "Unable to read date\n");
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700220 return -EIO;
221 }
222
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700223 tm->tm_sec = bcd2bin(buf[M41T80_REG_SEC] & 0x7f);
224 tm->tm_min = bcd2bin(buf[M41T80_REG_MIN] & 0x7f);
225 tm->tm_hour = bcd2bin(buf[M41T80_REG_HOUR] & 0x3f);
226 tm->tm_mday = bcd2bin(buf[M41T80_REG_DAY] & 0x3f);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700227 tm->tm_wday = buf[M41T80_REG_WDAY] & 0x07;
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700228 tm->tm_mon = bcd2bin(buf[M41T80_REG_MON] & 0x1f) - 1;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700229
230 /* assume 20YY not 19YY, and ignore the Century Bit */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700231 tm->tm_year = bcd2bin(buf[M41T80_REG_YEAR]) + 100;
Wan ZongShunb485fe52010-08-10 18:02:15 -0700232 return rtc_valid_tm(tm);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700233}
234
235/* Sets the given date and time to the real time clock. */
236static int m41t80_set_datetime(struct i2c_client *client, struct rtc_time *tm)
237{
Gary Bisson0f546b02017-04-25 16:45:15 +0200238 struct m41t80_data *clientdata = i2c_get_clientdata(client);
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200239 unsigned char buf[8];
Mylène Josserand05a7f272016-03-29 08:56:05 +0200240 int err, flags;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700241
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200242 if (tm->tm_year < 100 || tm->tm_year > 199)
Stefan Christbcebd812016-03-15 14:22:26 +0100243 return -EINVAL;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700244
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200245 buf[M41T80_REG_SSEC] = 0;
246 buf[M41T80_REG_SEC] = bin2bcd(tm->tm_sec);
247 buf[M41T80_REG_MIN] = bin2bcd(tm->tm_min);
248 buf[M41T80_REG_HOUR] = bin2bcd(tm->tm_hour);
249 buf[M41T80_REG_DAY] = bin2bcd(tm->tm_mday);
250 buf[M41T80_REG_MON] = bin2bcd(tm->tm_mon + 1);
251 buf[M41T80_REG_YEAR] = bin2bcd(tm->tm_year - 100);
252 buf[M41T80_REG_WDAY] = tm->tm_wday;
253
Gary Bisson0f546b02017-04-25 16:45:15 +0200254 /* If the square wave output is controlled in the weekday register */
255 if (clientdata->features & M41T80_FEATURE_SQ_ALT) {
256 int val;
257
258 val = i2c_smbus_read_byte_data(client, M41T80_REG_WDAY);
259 if (val < 0)
260 return val;
261
262 buf[M41T80_REG_WDAY] |= (val & 0xf0);
263 }
264
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200265 err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_SSEC,
266 sizeof(buf), buf);
267 if (err < 0) {
268 dev_err(&client->dev, "Unable to write to date registers\n");
269 return err;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700270 }
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200271
Mylène Josserand05a7f272016-03-29 08:56:05 +0200272 /* Clear the OF bit of Flags Register */
273 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
274 if (flags < 0)
275 return flags;
276
277 if (i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS,
278 flags & ~M41T80_FLAGS_OF)) {
279 dev_err(&client->dev, "Unable to write flags register\n");
280 return -EIO;
281 }
282
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200283 return err;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700284}
285
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700286static int m41t80_rtc_proc(struct device *dev, struct seq_file *seq)
287{
288 struct i2c_client *client = to_i2c_client(dev);
289 struct m41t80_data *clientdata = i2c_get_clientdata(client);
290 u8 reg;
291
Jean Delvare3760f732008-04-29 23:11:40 +0200292 if (clientdata->features & M41T80_FEATURE_BL) {
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700293 reg = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
294 seq_printf(seq, "battery\t\t: %s\n",
295 (reg & M41T80_FLAGS_BATT_LOW) ? "exhausted" : "ok");
296 }
297 return 0;
298}
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700299
300static int m41t80_rtc_read_time(struct device *dev, struct rtc_time *tm)
301{
302 return m41t80_get_datetime(to_i2c_client(dev), tm);
303}
304
305static int m41t80_rtc_set_time(struct device *dev, struct rtc_time *tm)
306{
307 return m41t80_set_datetime(to_i2c_client(dev), tm);
308}
309
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200310static int m41t80_alarm_irq_enable(struct device *dev, unsigned int enabled)
311{
312 struct i2c_client *client = to_i2c_client(dev);
313 int flags, retval;
314
315 flags = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
316 if (flags < 0)
317 return flags;
318
319 if (enabled)
320 flags |= M41T80_ALMON_AFE;
321 else
322 flags &= ~M41T80_ALMON_AFE;
323
324 retval = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, flags);
325 if (retval < 0) {
Stefan Christe89487f2016-07-05 13:53:16 +0200326 dev_err(dev, "Unable to enable alarm IRQ %d\n", retval);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200327 return retval;
328 }
329 return 0;
330}
331
332static int m41t80_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
333{
334 struct i2c_client *client = to_i2c_client(dev);
335 u8 alarmvals[5];
336 int ret, err;
337
338 alarmvals[0] = bin2bcd(alrm->time.tm_mon + 1);
339 alarmvals[1] = bin2bcd(alrm->time.tm_mday);
340 alarmvals[2] = bin2bcd(alrm->time.tm_hour);
341 alarmvals[3] = bin2bcd(alrm->time.tm_min);
342 alarmvals[4] = bin2bcd(alrm->time.tm_sec);
343
344 /* Clear AF and AFE flags */
345 ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
346 if (ret < 0)
347 return ret;
348 err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
349 ret & ~(M41T80_ALMON_AFE));
350 if (err < 0) {
351 dev_err(dev, "Unable to clear AFE bit\n");
352 return err;
353 }
354
Gary Bisson2de92612017-04-25 16:45:14 +0200355 /* Keep SQWE bit value */
356 alarmvals[0] |= (ret & M41T80_ALMON_SQWE);
357
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200358 ret = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
359 if (ret < 0)
360 return ret;
361
362 err = i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS,
363 ret & ~(M41T80_FLAGS_AF));
364 if (err < 0) {
365 dev_err(dev, "Unable to clear AF bit\n");
366 return err;
367 }
368
369 /* Write the alarm */
370 err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_ALARM_MON,
371 5, alarmvals);
372 if (err)
373 return err;
374
375 /* Enable the alarm interrupt */
376 if (alrm->enabled) {
377 alarmvals[0] |= M41T80_ALMON_AFE;
378 err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
379 alarmvals[0]);
380 if (err)
381 return err;
382 }
383
384 return 0;
385}
386
387static int m41t80_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
388{
389 struct i2c_client *client = to_i2c_client(dev);
390 u8 alarmvals[5];
391 int flags, ret;
392
393 ret = i2c_smbus_read_i2c_block_data(client, M41T80_REG_ALARM_MON,
394 5, alarmvals);
395 if (ret != 5)
396 return ret < 0 ? ret : -EIO;
397
398 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
399 if (flags < 0)
400 return flags;
401
402 alrm->time.tm_sec = bcd2bin(alarmvals[4] & 0x7f);
403 alrm->time.tm_min = bcd2bin(alarmvals[3] & 0x7f);
404 alrm->time.tm_hour = bcd2bin(alarmvals[2] & 0x3f);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200405 alrm->time.tm_mday = bcd2bin(alarmvals[1] & 0x3f);
406 alrm->time.tm_mon = bcd2bin(alarmvals[0] & 0x3f);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200407
408 alrm->enabled = !!(alarmvals[0] & M41T80_ALMON_AFE);
409 alrm->pending = (flags & M41T80_FLAGS_AF) && alrm->enabled;
410
411 return 0;
412}
413
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700414static struct rtc_class_ops m41t80_rtc_ops = {
415 .read_time = m41t80_rtc_read_time,
416 .set_time = m41t80_rtc_set_time,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700417 .proc = m41t80_rtc_proc,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700418};
419
Stefan Christae036af2016-07-05 13:53:17 +0200420#ifdef CONFIG_PM_SLEEP
421static int m41t80_suspend(struct device *dev)
422{
423 struct i2c_client *client = to_i2c_client(dev);
424
425 if (client->irq >= 0 && device_may_wakeup(dev))
426 enable_irq_wake(client->irq);
427
428 return 0;
429}
430
431static int m41t80_resume(struct device *dev)
432{
433 struct i2c_client *client = to_i2c_client(dev);
434
435 if (client->irq >= 0 && device_may_wakeup(dev))
436 disable_irq_wake(client->irq);
437
438 return 0;
439}
440#endif
441
442static SIMPLE_DEV_PM_OPS(m41t80_pm, m41t80_suspend, m41t80_resume);
443
Gary Bisson1373e772017-04-25 16:45:17 +0200444#ifdef CONFIG_COMMON_CLK
445#define sqw_to_m41t80_data(_hw) container_of(_hw, struct m41t80_data, sqw)
446
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700447static unsigned long m41t80_decode_freq(int setting)
Gary Bisson1373e772017-04-25 16:45:17 +0200448{
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700449 return (setting == 0) ? 0 : (setting == 1) ? M41T80_SQW_MAX_FREQ :
450 M41T80_SQW_MAX_FREQ >> setting;
451}
452
453static unsigned long m41t80_get_freq(struct m41t80_data *m41t80)
454{
Gary Bisson1373e772017-04-25 16:45:17 +0200455 struct i2c_client *client = m41t80->client;
456 int reg_sqw = (m41t80->features & M41T80_FEATURE_SQ_ALT) ?
457 M41T80_REG_WDAY : M41T80_REG_SQW;
458 int ret = i2c_smbus_read_byte_data(client, reg_sqw);
Gary Bisson1373e772017-04-25 16:45:17 +0200459
460 if (ret < 0)
461 return 0;
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700462 return m41t80_decode_freq(ret >> 4);
463}
Gary Bisson1373e772017-04-25 16:45:17 +0200464
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700465static unsigned long m41t80_sqw_recalc_rate(struct clk_hw *hw,
466 unsigned long parent_rate)
467{
468 return sqw_to_m41t80_data(hw)->freq;
Gary Bisson1373e772017-04-25 16:45:17 +0200469}
470
471static long m41t80_sqw_round_rate(struct clk_hw *hw, unsigned long rate,
472 unsigned long *prate)
473{
Troy Kiskyc8384bb2017-11-02 18:58:13 -0700474 if (rate >= M41T80_SQW_MAX_FREQ)
475 return M41T80_SQW_MAX_FREQ;
476 if (rate >= M41T80_SQW_MAX_FREQ / 4)
477 return M41T80_SQW_MAX_FREQ / 4;
478 if (!rate)
479 return 0;
480 return 1 << ilog2(rate);
Gary Bisson1373e772017-04-25 16:45:17 +0200481}
482
483static int m41t80_sqw_set_rate(struct clk_hw *hw, unsigned long rate,
484 unsigned long parent_rate)
485{
486 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
487 struct i2c_client *client = m41t80->client;
488 int reg_sqw = (m41t80->features & M41T80_FEATURE_SQ_ALT) ?
489 M41T80_REG_WDAY : M41T80_REG_SQW;
490 int reg, ret, val = 0;
491
492 if (rate) {
493 if (!is_power_of_2(rate))
494 return -EINVAL;
495 val = ilog2(rate);
496 if (val == ilog2(M41T80_SQW_MAX_FREQ))
497 val = 1;
498 else if (val < (ilog2(M41T80_SQW_MAX_FREQ) - 1))
499 val = ilog2(M41T80_SQW_MAX_FREQ) - val;
500 else
501 return -EINVAL;
502 }
503
504 reg = i2c_smbus_read_byte_data(client, reg_sqw);
505 if (reg < 0)
506 return reg;
507
508 reg = (reg & 0x0f) | (val << 4);
509
510 ret = i2c_smbus_write_byte_data(client, reg_sqw, reg);
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700511 if (!ret)
512 m41t80->freq = m41t80_decode_freq(val);
Troy Kiskyde6042d2017-11-02 18:58:12 -0700513 return ret;
Gary Bisson1373e772017-04-25 16:45:17 +0200514}
515
516static int m41t80_sqw_control(struct clk_hw *hw, bool enable)
517{
518 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
519 struct i2c_client *client = m41t80->client;
520 int ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
521
522 if (ret < 0)
523 return ret;
524
525 if (enable)
526 ret |= M41T80_ALMON_SQWE;
527 else
528 ret &= ~M41T80_ALMON_SQWE;
529
530 return i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, ret);
531}
532
533static int m41t80_sqw_prepare(struct clk_hw *hw)
534{
535 return m41t80_sqw_control(hw, 1);
536}
537
538static void m41t80_sqw_unprepare(struct clk_hw *hw)
539{
540 m41t80_sqw_control(hw, 0);
541}
542
543static int m41t80_sqw_is_prepared(struct clk_hw *hw)
544{
545 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
546 struct i2c_client *client = m41t80->client;
547 int ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
548
549 if (ret < 0)
550 return ret;
551
552 return !!(ret & M41T80_ALMON_SQWE);
553}
554
555static const struct clk_ops m41t80_sqw_ops = {
556 .prepare = m41t80_sqw_prepare,
557 .unprepare = m41t80_sqw_unprepare,
558 .is_prepared = m41t80_sqw_is_prepared,
559 .recalc_rate = m41t80_sqw_recalc_rate,
560 .round_rate = m41t80_sqw_round_rate,
561 .set_rate = m41t80_sqw_set_rate,
562};
563
564static struct clk *m41t80_sqw_register_clk(struct m41t80_data *m41t80)
565{
566 struct i2c_client *client = m41t80->client;
567 struct device_node *node = client->dev.of_node;
568 struct clk *clk;
569 struct clk_init_data init;
570 int ret;
571
572 /* First disable the clock */
573 ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
574 if (ret < 0)
575 return ERR_PTR(ret);
576 ret = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
577 ret & ~(M41T80_ALMON_SQWE));
578 if (ret < 0)
579 return ERR_PTR(ret);
580
581 init.name = "m41t80-sqw";
582 init.ops = &m41t80_sqw_ops;
583 init.flags = 0;
584 init.parent_names = NULL;
585 init.num_parents = 0;
586 m41t80->sqw.init = &init;
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700587 m41t80->freq = m41t80_get_freq(m41t80);
Gary Bisson1373e772017-04-25 16:45:17 +0200588
589 /* optional override of the clockname */
590 of_property_read_string(node, "clock-output-names", &init.name);
591
592 /* register the clock */
593 clk = clk_register(&client->dev, &m41t80->sqw);
594 if (!IS_ERR(clk))
595 of_clk_add_provider(node, of_clk_src_simple_get, clk);
596
597 return clk;
598}
599#endif
600
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700601#ifdef CONFIG_RTC_DRV_M41T80_WDT
602/*
603 *****************************************************************************
604 *
605 * Watchdog Driver
606 *
607 *****************************************************************************
608 */
609static struct i2c_client *save_client;
610
611/* Default margin */
612#define WD_TIMO 60 /* 1..31 seconds */
613
614static int wdt_margin = WD_TIMO;
615module_param(wdt_margin, int, 0);
616MODULE_PARM_DESC(wdt_margin, "Watchdog timeout in seconds (default 60s)");
617
618static unsigned long wdt_is_open;
619static int boot_flag;
620
621/**
622 * wdt_ping:
623 *
624 * Reload counter one with the watchdog timeout. We don't bother reloading
625 * the cascade counter.
626 */
627static void wdt_ping(void)
628{
629 unsigned char i2c_data[2];
630 struct i2c_msg msgs1[1] = {
631 {
632 .addr = save_client->addr,
633 .flags = 0,
634 .len = 2,
635 .buf = i2c_data,
636 },
637 };
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700638 struct m41t80_data *clientdata = i2c_get_clientdata(save_client);
639
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700640 i2c_data[0] = 0x09; /* watchdog register */
641
642 if (wdt_margin > 31)
643 i2c_data[1] = (wdt_margin & 0xFC) | 0x83; /* resolution = 4s */
644 else
645 /*
646 * WDS = 1 (0x80), mulitplier = WD_TIMO, resolution = 1s (0x02)
647 */
Mylène Josserandfc99b902016-03-29 08:56:02 +0200648 i2c_data[1] = wdt_margin << 2 | 0x82;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700649
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700650 /*
651 * M41T65 has three bits for watchdog resolution. Don't set bit 7, as
652 * that would be an invalid resolution.
653 */
654 if (clientdata->features & M41T80_FEATURE_WD)
655 i2c_data[1] &= ~M41T80_WATCHDOG_RB2;
656
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700657 i2c_transfer(save_client->adapter, msgs1, 1);
658}
659
660/**
661 * wdt_disable:
662 *
663 * disables watchdog.
664 */
665static void wdt_disable(void)
666{
667 unsigned char i2c_data[2], i2c_buf[0x10];
668 struct i2c_msg msgs0[2] = {
669 {
670 .addr = save_client->addr,
671 .flags = 0,
672 .len = 1,
673 .buf = i2c_data,
674 },
675 {
676 .addr = save_client->addr,
677 .flags = I2C_M_RD,
678 .len = 1,
679 .buf = i2c_buf,
680 },
681 };
682 struct i2c_msg msgs1[1] = {
683 {
684 .addr = save_client->addr,
685 .flags = 0,
686 .len = 2,
687 .buf = i2c_data,
688 },
689 };
690
691 i2c_data[0] = 0x09;
692 i2c_transfer(save_client->adapter, msgs0, 2);
693
694 i2c_data[0] = 0x09;
695 i2c_data[1] = 0x00;
696 i2c_transfer(save_client->adapter, msgs1, 1);
697}
698
699/**
700 * wdt_write:
701 * @file: file handle to the watchdog
702 * @buf: buffer to write (unused as data does not matter here
703 * @count: count of bytes
704 * @ppos: pointer to the position to write. No seeks allowed
705 *
706 * A write to a watchdog device is defined as a keepalive signal. Any
707 * write of data will do, as we we don't define content meaning.
708 */
709static ssize_t wdt_write(struct file *file, const char __user *buf,
710 size_t count, loff_t *ppos)
711{
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700712 if (count) {
713 wdt_ping();
714 return 1;
715 }
716 return 0;
717}
718
719static ssize_t wdt_read(struct file *file, char __user *buf,
720 size_t count, loff_t *ppos)
721{
722 return 0;
723}
724
725/**
726 * wdt_ioctl:
727 * @inode: inode of the device
728 * @file: file handle to the device
729 * @cmd: watchdog command
730 * @arg: argument pointer
731 *
732 * The watchdog API defines a common set of functions for all watchdogs
733 * according to their available features. We only actually usefully support
734 * querying capabilities and current status.
735 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200736static int wdt_ioctl(struct file *file, unsigned int cmd,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700737 unsigned long arg)
738{
739 int new_margin, rv;
740 static struct watchdog_info ident = {
741 .options = WDIOF_POWERUNDER | WDIOF_KEEPALIVEPING |
742 WDIOF_SETTIMEOUT,
743 .firmware_version = 1,
744 .identity = "M41T80 WTD"
745 };
746
747 switch (cmd) {
748 case WDIOC_GETSUPPORT:
749 return copy_to_user((struct watchdog_info __user *)arg, &ident,
750 sizeof(ident)) ? -EFAULT : 0;
751
752 case WDIOC_GETSTATUS:
753 case WDIOC_GETBOOTSTATUS:
754 return put_user(boot_flag, (int __user *)arg);
755 case WDIOC_KEEPALIVE:
756 wdt_ping();
757 return 0;
758 case WDIOC_SETTIMEOUT:
759 if (get_user(new_margin, (int __user *)arg))
760 return -EFAULT;
761 /* Arbitrary, can't find the card's limits */
762 if (new_margin < 1 || new_margin > 124)
763 return -EINVAL;
764 wdt_margin = new_margin;
765 wdt_ping();
766 /* Fall */
767 case WDIOC_GETTIMEOUT:
768 return put_user(wdt_margin, (int __user *)arg);
769
770 case WDIOC_SETOPTIONS:
771 if (copy_from_user(&rv, (int __user *)arg, sizeof(int)))
772 return -EFAULT;
773
774 if (rv & WDIOS_DISABLECARD) {
Joe Perchesa737e832015-04-16 12:46:14 -0700775 pr_info("disable watchdog\n");
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700776 wdt_disable();
777 }
778
779 if (rv & WDIOS_ENABLECARD) {
Joe Perchesa737e832015-04-16 12:46:14 -0700780 pr_info("enable watchdog\n");
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700781 wdt_ping();
782 }
783
784 return -EINVAL;
785 }
786 return -ENOTTY;
787}
788
Arnd Bergmann55929332010-04-27 00:24:05 +0200789static long wdt_unlocked_ioctl(struct file *file, unsigned int cmd,
790 unsigned long arg)
791{
792 int ret;
793
Arnd Bergmann613655f2010-06-02 14:28:52 +0200794 mutex_lock(&m41t80_rtc_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200795 ret = wdt_ioctl(file, cmd, arg);
Arnd Bergmann613655f2010-06-02 14:28:52 +0200796 mutex_unlock(&m41t80_rtc_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200797
798 return ret;
799}
800
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700801/**
802 * wdt_open:
803 * @inode: inode of device
804 * @file: file handle to device
805 *
806 */
807static int wdt_open(struct inode *inode, struct file *file)
808{
809 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR) {
Arnd Bergmann613655f2010-06-02 14:28:52 +0200810 mutex_lock(&m41t80_rtc_mutex);
Arnd Bergmann41012732008-05-20 19:16:39 +0200811 if (test_and_set_bit(0, &wdt_is_open)) {
Arnd Bergmann613655f2010-06-02 14:28:52 +0200812 mutex_unlock(&m41t80_rtc_mutex);
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700813 return -EBUSY;
Arnd Bergmann41012732008-05-20 19:16:39 +0200814 }
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700815 /*
816 * Activate
817 */
818 wdt_is_open = 1;
Arnd Bergmann613655f2010-06-02 14:28:52 +0200819 mutex_unlock(&m41t80_rtc_mutex);
Jan Blunck09eeb1f2010-05-26 14:44:47 -0700820 return nonseekable_open(inode, file);
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700821 }
822 return -ENODEV;
823}
824
825/**
826 * wdt_close:
827 * @inode: inode to board
828 * @file: file handle to board
829 *
830 */
831static int wdt_release(struct inode *inode, struct file *file)
832{
833 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR)
834 clear_bit(0, &wdt_is_open);
835 return 0;
836}
837
838/**
839 * notify_sys:
840 * @this: our notifier block
841 * @code: the event being reported
842 * @unused: unused
843 *
844 * Our notifier is called on system shutdowns. We want to turn the card
845 * off at reboot otherwise the machine will reboot again during memory
846 * test or worse yet during the following fsck. This would suck, in fact
847 * trust me - if it happens it does suck.
848 */
849static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
850 void *unused)
851{
852 if (code == SYS_DOWN || code == SYS_HALT)
853 /* Disable Watchdog */
854 wdt_disable();
855 return NOTIFY_DONE;
856}
857
858static const struct file_operations wdt_fops = {
859 .owner = THIS_MODULE,
860 .read = wdt_read,
Arnd Bergmann55929332010-04-27 00:24:05 +0200861 .unlocked_ioctl = wdt_unlocked_ioctl,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700862 .write = wdt_write,
863 .open = wdt_open,
864 .release = wdt_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200865 .llseek = no_llseek,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700866};
867
868static struct miscdevice wdt_dev = {
869 .minor = WATCHDOG_MINOR,
870 .name = "watchdog",
871 .fops = &wdt_fops,
872};
873
874/*
875 * The WDT card needs to learn about soft shutdowns in order to
876 * turn the timebomb registers off.
877 */
878static struct notifier_block wdt_notifier = {
879 .notifier_call = wdt_notify_sys,
880};
881#endif /* CONFIG_RTC_DRV_M41T80_WDT */
882
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700883/*
884 *****************************************************************************
885 *
886 * Driver Interface
887 *
888 *****************************************************************************
889 */
Mylène Josserandef6b3122016-03-29 08:55:58 +0200890
Jean Delvared2653e92008-04-29 23:11:39 +0200891static int m41t80_probe(struct i2c_client *client,
892 const struct i2c_device_id *id)
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700893{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200894 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
Jean Delvare3760f732008-04-29 23:11:40 +0200895 int rc = 0;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700896 struct rtc_device *rtc = NULL;
897 struct rtc_time tm;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200898 struct m41t80_data *m41t80_data = NULL;
Eric Cooperd4473b92017-07-29 20:10:54 -0400899 bool wakeup_source = false;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700900
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200901 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_I2C_BLOCK |
902 I2C_FUNC_SMBUS_BYTE_DATA)) {
903 dev_err(&adapter->dev, "doesn't support I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_I2C_BLOCK\n");
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700904 return -ENODEV;
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200905 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700906
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200907 m41t80_data = devm_kzalloc(&client->dev, sizeof(*m41t80_data),
908 GFP_KERNEL);
909 if (!m41t80_data)
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700910 return -ENOMEM;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700911
Gary Bisson1373e772017-04-25 16:45:17 +0200912 m41t80_data->client = client;
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300913 if (client->dev.of_node)
914 m41t80_data->features = (unsigned long)
915 of_device_get_match_data(&client->dev);
916 else
917 m41t80_data->features = id->driver_data;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200918 i2c_set_clientdata(client, m41t80_data);
919
Eric Cooperd4473b92017-07-29 20:10:54 -0400920#ifdef CONFIG_OF
921 wakeup_source = of_property_read_bool(client->dev.of_node,
922 "wakeup-source");
923#endif
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200924 if (client->irq > 0) {
925 rc = devm_request_threaded_irq(&client->dev, client->irq,
926 NULL, m41t80_handle_irq,
927 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
928 "m41t80", client);
929 if (rc) {
930 dev_warn(&client->dev, "unable to request IRQ, alarms disabled\n");
931 client->irq = 0;
Eric Cooperd4473b92017-07-29 20:10:54 -0400932 wakeup_source = false;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200933 }
934 }
Eric Cooperd4473b92017-07-29 20:10:54 -0400935 if (client->irq > 0 || wakeup_source) {
936 m41t80_rtc_ops.read_alarm = m41t80_read_alarm;
937 m41t80_rtc_ops.set_alarm = m41t80_set_alarm;
938 m41t80_rtc_ops.alarm_irq_enable = m41t80_alarm_irq_enable;
939 /* Enable the wakealarm */
940 device_init_wakeup(&client->dev, true);
941 }
John Stultza015dbc2011-05-06 17:24:27 -0700942
Jingoo Han4ebabb72013-04-29 16:20:42 -0700943 rtc = devm_rtc_device_register(&client->dev, client->name,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200944 &m41t80_rtc_ops, THIS_MODULE);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700945 if (IS_ERR(rtc))
946 return PTR_ERR(rtc);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700947
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200948 m41t80_data->rtc = rtc;
Eric Cooperd4473b92017-07-29 20:10:54 -0400949 if (client->irq <= 0) {
950 /* We cannot support UIE mode if we do not have an IRQ line */
951 rtc->uie_unsupported = 1;
952 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700953
954 /* Make sure HT (Halt Update) bit is cleared */
955 rc = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_HOUR);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700956
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700957 if (rc >= 0 && rc & M41T80_ALHOUR_HT) {
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200958 if (m41t80_data->features & M41T80_FEATURE_HT) {
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700959 m41t80_get_datetime(client, &tm);
960 dev_info(&client->dev, "HT bit was set!\n");
961 dev_info(&client->dev,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200962 "Power Down at %04i-%02i-%02i %02i:%02i:%02i\n",
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700963 tm.tm_year + 1900,
964 tm.tm_mon + 1, tm.tm_mday, tm.tm_hour,
965 tm.tm_min, tm.tm_sec);
966 }
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700967 rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_HOUR,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200968 rc & ~M41T80_ALHOUR_HT);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700969 }
970
971 if (rc < 0) {
972 dev_err(&client->dev, "Can't clear HT bit\n");
Wolfram Sang85d77042014-06-06 14:35:46 -0700973 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700974 }
975
976 /* Make sure ST (stop) bit is cleared */
977 rc = i2c_smbus_read_byte_data(client, M41T80_REG_SEC);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700978
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700979 if (rc >= 0 && rc & M41T80_SEC_ST)
980 rc = i2c_smbus_write_byte_data(client, M41T80_REG_SEC,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200981 rc & ~M41T80_SEC_ST);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700982 if (rc < 0) {
983 dev_err(&client->dev, "Can't clear ST bit\n");
Wolfram Sang85d77042014-06-06 14:35:46 -0700984 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700985 }
986
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700987#ifdef CONFIG_RTC_DRV_M41T80_WDT
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200988 if (m41t80_data->features & M41T80_FEATURE_HT) {
Maciej W. Rozycki417607d2008-05-12 14:02:35 -0700989 save_client = client;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700990 rc = misc_register(&wdt_dev);
991 if (rc)
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700992 return rc;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700993 rc = register_reboot_notifier(&wdt_notifier);
994 if (rc) {
995 misc_deregister(&wdt_dev);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700996 return rc;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700997 }
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700998 }
999#endif
Gary Bisson1373e772017-04-25 16:45:17 +02001000#ifdef CONFIG_COMMON_CLK
1001 if (m41t80_data->features & M41T80_FEATURE_SQ)
1002 m41t80_sqw_register_clk(m41t80_data);
1003#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001004 return 0;
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001005}
1006
1007static int m41t80_remove(struct i2c_client *client)
1008{
Atsushi Nemoto617780d2007-07-17 04:05:04 -07001009#ifdef CONFIG_RTC_DRV_M41T80_WDT
Jingoo Han4ebabb72013-04-29 16:20:42 -07001010 struct m41t80_data *clientdata = i2c_get_clientdata(client);
1011
Jean Delvare3760f732008-04-29 23:11:40 +02001012 if (clientdata->features & M41T80_FEATURE_HT) {
Atsushi Nemoto617780d2007-07-17 04:05:04 -07001013 misc_deregister(&wdt_dev);
1014 unregister_reboot_notifier(&wdt_notifier);
1015 }
1016#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001017
1018 return 0;
1019}
1020
1021static struct i2c_driver m41t80_driver = {
1022 .driver = {
David Brownellafe1ab42007-08-22 14:01:27 -07001023 .name = "rtc-m41t80",
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -03001024 .of_match_table = of_match_ptr(m41t80_of_match),
Stefan Christae036af2016-07-05 13:53:17 +02001025 .pm = &m41t80_pm,
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001026 },
1027 .probe = m41t80_probe,
1028 .remove = m41t80_remove,
Jean Delvare3760f732008-04-29 23:11:40 +02001029 .id_table = m41t80_id,
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001030};
1031
Axel Lin0abc9202012-03-23 15:02:31 -07001032module_i2c_driver(m41t80_driver);
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001033
1034MODULE_AUTHOR("Alexander Bigga <ab@mycable.de>");
1035MODULE_DESCRIPTION("ST Microelectronics M41T80 series RTC I2C Client Driver");
1036MODULE_LICENSE("GPL");