blob: b0749645aa48c4542c86fa0b57ae366d7aa3e6cd [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>
19#include <linux/i2c.h>
Atsushi Nemotocaaff562007-07-17 04:05:02 -070020#include <linux/init.h>
Maciej W. Rozycki9fb1f682008-05-12 14:02:38 -070021#include <linux/kernel.h>
Maciej W. Rozycki35aa64f2008-07-23 21:30:29 -070022#include <linux/module.h>
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -030023#include <linux/of_device.h>
Maciej W. Rozycki35aa64f2008-07-23 21:30:29 -070024#include <linux/rtc.h>
Atsushi Nemotocaaff562007-07-17 04:05:02 -070025#include <linux/slab.h>
Arnd Bergmann613655f2010-06-02 14:28:52 +020026#include <linux/mutex.h>
Atsushi Nemotocaaff562007-07-17 04:05:02 -070027#include <linux/string.h>
Atsushi Nemoto617780d2007-07-17 04:05:04 -070028#ifdef CONFIG_RTC_DRV_M41T80_WDT
Atsushi Nemoto617780d2007-07-17 04:05:04 -070029#include <linux/fs.h>
30#include <linux/ioctl.h>
Maciej W. Rozycki35aa64f2008-07-23 21:30:29 -070031#include <linux/miscdevice.h>
32#include <linux/reboot.h>
33#include <linux/watchdog.h>
Atsushi Nemoto617780d2007-07-17 04:05:04 -070034#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -070035
Mylène Josserandf2b84ee2016-03-29 08:56:00 +020036#define M41T80_REG_SSEC 0x00
37#define M41T80_REG_SEC 0x01
38#define M41T80_REG_MIN 0x02
39#define M41T80_REG_HOUR 0x03
40#define M41T80_REG_WDAY 0x04
41#define M41T80_REG_DAY 0x05
42#define M41T80_REG_MON 0x06
43#define M41T80_REG_YEAR 0x07
44#define M41T80_REG_ALARM_MON 0x0a
45#define M41T80_REG_ALARM_DAY 0x0b
46#define M41T80_REG_ALARM_HOUR 0x0c
47#define M41T80_REG_ALARM_MIN 0x0d
48#define M41T80_REG_ALARM_SEC 0x0e
49#define M41T80_REG_FLAGS 0x0f
50#define M41T80_REG_SQW 0x13
Atsushi Nemotocaaff562007-07-17 04:05:02 -070051
52#define M41T80_DATETIME_REG_SIZE (M41T80_REG_YEAR + 1)
53#define M41T80_ALARM_REG_SIZE \
54 (M41T80_REG_ALARM_SEC + 1 - M41T80_REG_ALARM_MON)
55
Mylène Josserand54339f32016-03-29 08:56:01 +020056#define M41T80_SEC_ST BIT(7) /* ST: Stop Bit */
57#define M41T80_ALMON_AFE BIT(7) /* AFE: AF Enable Bit */
58#define M41T80_ALMON_SQWE BIT(6) /* SQWE: SQW Enable Bit */
59#define M41T80_ALHOUR_HT BIT(6) /* HT: Halt Update Bit */
Mylène Josserand05a7f272016-03-29 08:56:05 +020060#define M41T80_FLAGS_OF BIT(2) /* OF: Oscillator Failure Bit */
Mylène Josserand54339f32016-03-29 08:56:01 +020061#define M41T80_FLAGS_AF BIT(6) /* AF: Alarm Flag Bit */
62#define M41T80_FLAGS_BATT_LOW BIT(4) /* BL: Battery Low Bit */
63#define M41T80_WATCHDOG_RB2 BIT(7) /* RB: Watchdog resolution */
64#define M41T80_WATCHDOG_RB1 BIT(1) /* RB: Watchdog resolution */
65#define M41T80_WATCHDOG_RB0 BIT(0) /* RB: Watchdog resolution */
Atsushi Nemotocaaff562007-07-17 04:05:02 -070066
Mylène Josserand54339f32016-03-29 08:56:01 +020067#define M41T80_FEATURE_HT BIT(0) /* Halt feature */
68#define M41T80_FEATURE_BL BIT(1) /* Battery low indicator */
69#define M41T80_FEATURE_SQ BIT(2) /* Squarewave feature */
70#define M41T80_FEATURE_WD BIT(3) /* Extra watchdog resolution */
71#define M41T80_FEATURE_SQ_ALT BIT(4) /* RSx bits are in reg 4 */
Atsushi Nemotocaaff562007-07-17 04:05:02 -070072
Arnd Bergmann613655f2010-06-02 14:28:52 +020073static DEFINE_MUTEX(m41t80_rtc_mutex);
Jean Delvare3760f732008-04-29 23:11:40 +020074static const struct i2c_device_id m41t80_id[] = {
Daniel Glocknerf30281f2009-04-02 16:57:03 -070075 { "m41t62", M41T80_FEATURE_SQ | M41T80_FEATURE_SQ_ALT },
Steven A. Falcod3a126f2008-10-15 22:03:07 -070076 { "m41t65", M41T80_FEATURE_HT | M41T80_FEATURE_WD },
77 { "m41t80", M41T80_FEATURE_SQ },
78 { "m41t81", M41T80_FEATURE_HT | M41T80_FEATURE_SQ},
79 { "m41t81s", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
80 { "m41t82", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
81 { "m41t83", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
82 { "m41st84", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
83 { "m41st85", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
84 { "m41st87", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
Wolfram Sang6b1a5232014-06-06 14:35:47 -070085 { "rv4162", M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT },
Jean Delvare3760f732008-04-29 23:11:40 +020086 { }
Atsushi Nemotocaaff562007-07-17 04:05:02 -070087};
Jean Delvare3760f732008-04-29 23:11:40 +020088MODULE_DEVICE_TABLE(i2c, m41t80_id);
Atsushi Nemotocaaff562007-07-17 04:05:02 -070089
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -030090static const struct of_device_id m41t80_of_match[] = {
91 {
92 .compatible = "st,m41t62",
93 .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_SQ_ALT)
94 },
95 {
96 .compatible = "st,m41t65",
97 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_WD)
98 },
99 {
100 .compatible = "st,m41t80",
101 .data = (void *)(M41T80_FEATURE_SQ)
102 },
103 {
104 .compatible = "st,m41t81",
105 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_SQ)
106 },
107 {
108 .compatible = "st,m41t81s",
109 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
110 },
111 {
112 .compatible = "st,m41t82",
113 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
114 },
115 {
116 .compatible = "st,m41t83",
117 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
118 },
119 {
120 .compatible = "st,m41t84",
121 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
122 },
123 {
124 .compatible = "st,m41t85",
125 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
126 },
127 {
128 .compatible = "st,m41t87",
129 .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ)
130 },
131 {
Alexandre Bellonia897bf12017-04-19 22:05:48 +0200132 .compatible = "microcrystal,rv4162",
133 .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT)
134 },
135 /* DT compatibility only, do not use compatibles below: */
136 {
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300137 .compatible = "st,rv4162",
138 .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT)
139 },
140 {
141 .compatible = "rv4162",
142 .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT)
143 },
144 { }
145};
146MODULE_DEVICE_TABLE(of, m41t80_of_match);
147
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700148struct m41t80_data {
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300149 unsigned long features;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700150 struct rtc_device *rtc;
151};
152
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200153static irqreturn_t m41t80_handle_irq(int irq, void *dev_id)
154{
155 struct i2c_client *client = dev_id;
156 struct m41t80_data *m41t80 = i2c_get_clientdata(client);
157 struct mutex *lock = &m41t80->rtc->ops_lock;
158 unsigned long events = 0;
159 int flags, flags_afe;
160
161 mutex_lock(lock);
162
163 flags_afe = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
164 if (flags_afe < 0) {
165 mutex_unlock(lock);
166 return IRQ_NONE;
167 }
168
169 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
170 if (flags <= 0) {
171 mutex_unlock(lock);
172 return IRQ_NONE;
173 }
174
175 if (flags & M41T80_FLAGS_AF) {
176 flags &= ~M41T80_FLAGS_AF;
177 flags_afe &= ~M41T80_ALMON_AFE;
178 events |= RTC_AF;
179 }
180
181 if (events) {
182 rtc_update_irq(m41t80->rtc, 1, events);
183 i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS, flags);
184 i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
185 flags_afe);
186 }
187
188 mutex_unlock(lock);
189
190 return IRQ_HANDLED;
191}
192
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700193static int m41t80_get_datetime(struct i2c_client *client,
194 struct rtc_time *tm)
195{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200196 unsigned char buf[8];
Mylène Josserand05a7f272016-03-29 08:56:05 +0200197 int err, flags;
198
199 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
200 if (flags < 0)
201 return flags;
202
203 if (flags & M41T80_FLAGS_OF) {
204 dev_err(&client->dev, "Oscillator failure, data is invalid.\n");
205 return -EINVAL;
206 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700207
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200208 err = i2c_smbus_read_i2c_block_data(client, M41T80_REG_SSEC,
209 sizeof(buf), buf);
210 if (err < 0) {
211 dev_err(&client->dev, "Unable to read date\n");
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700212 return -EIO;
213 }
214
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700215 tm->tm_sec = bcd2bin(buf[M41T80_REG_SEC] & 0x7f);
216 tm->tm_min = bcd2bin(buf[M41T80_REG_MIN] & 0x7f);
217 tm->tm_hour = bcd2bin(buf[M41T80_REG_HOUR] & 0x3f);
218 tm->tm_mday = bcd2bin(buf[M41T80_REG_DAY] & 0x3f);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700219 tm->tm_wday = buf[M41T80_REG_WDAY] & 0x07;
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700220 tm->tm_mon = bcd2bin(buf[M41T80_REG_MON] & 0x1f) - 1;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700221
222 /* assume 20YY not 19YY, and ignore the Century Bit */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700223 tm->tm_year = bcd2bin(buf[M41T80_REG_YEAR]) + 100;
Wan ZongShunb485fe52010-08-10 18:02:15 -0700224 return rtc_valid_tm(tm);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700225}
226
227/* Sets the given date and time to the real time clock. */
228static int m41t80_set_datetime(struct i2c_client *client, struct rtc_time *tm)
229{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200230 unsigned char buf[8];
Mylène Josserand05a7f272016-03-29 08:56:05 +0200231 int err, flags;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700232
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200233 if (tm->tm_year < 100 || tm->tm_year > 199)
Stefan Christbcebd812016-03-15 14:22:26 +0100234 return -EINVAL;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700235
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200236 buf[M41T80_REG_SSEC] = 0;
237 buf[M41T80_REG_SEC] = bin2bcd(tm->tm_sec);
238 buf[M41T80_REG_MIN] = bin2bcd(tm->tm_min);
239 buf[M41T80_REG_HOUR] = bin2bcd(tm->tm_hour);
240 buf[M41T80_REG_DAY] = bin2bcd(tm->tm_mday);
241 buf[M41T80_REG_MON] = bin2bcd(tm->tm_mon + 1);
242 buf[M41T80_REG_YEAR] = bin2bcd(tm->tm_year - 100);
243 buf[M41T80_REG_WDAY] = tm->tm_wday;
244
245 err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_SSEC,
246 sizeof(buf), buf);
247 if (err < 0) {
248 dev_err(&client->dev, "Unable to write to date registers\n");
249 return err;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700250 }
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200251
Mylène Josserand05a7f272016-03-29 08:56:05 +0200252 /* Clear the OF bit of Flags Register */
253 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
254 if (flags < 0)
255 return flags;
256
257 if (i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS,
258 flags & ~M41T80_FLAGS_OF)) {
259 dev_err(&client->dev, "Unable to write flags register\n");
260 return -EIO;
261 }
262
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200263 return err;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700264}
265
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700266static int m41t80_rtc_proc(struct device *dev, struct seq_file *seq)
267{
268 struct i2c_client *client = to_i2c_client(dev);
269 struct m41t80_data *clientdata = i2c_get_clientdata(client);
270 u8 reg;
271
Jean Delvare3760f732008-04-29 23:11:40 +0200272 if (clientdata->features & M41T80_FEATURE_BL) {
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700273 reg = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
274 seq_printf(seq, "battery\t\t: %s\n",
275 (reg & M41T80_FLAGS_BATT_LOW) ? "exhausted" : "ok");
276 }
277 return 0;
278}
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700279
280static int m41t80_rtc_read_time(struct device *dev, struct rtc_time *tm)
281{
282 return m41t80_get_datetime(to_i2c_client(dev), tm);
283}
284
285static int m41t80_rtc_set_time(struct device *dev, struct rtc_time *tm)
286{
287 return m41t80_set_datetime(to_i2c_client(dev), tm);
288}
289
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200290static int m41t80_alarm_irq_enable(struct device *dev, unsigned int enabled)
291{
292 struct i2c_client *client = to_i2c_client(dev);
293 int flags, retval;
294
295 flags = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
296 if (flags < 0)
297 return flags;
298
299 if (enabled)
300 flags |= M41T80_ALMON_AFE;
301 else
302 flags &= ~M41T80_ALMON_AFE;
303
304 retval = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, flags);
305 if (retval < 0) {
Stefan Christe89487f2016-07-05 13:53:16 +0200306 dev_err(dev, "Unable to enable alarm IRQ %d\n", retval);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200307 return retval;
308 }
309 return 0;
310}
311
312static int m41t80_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
313{
314 struct i2c_client *client = to_i2c_client(dev);
315 u8 alarmvals[5];
316 int ret, err;
317
318 alarmvals[0] = bin2bcd(alrm->time.tm_mon + 1);
319 alarmvals[1] = bin2bcd(alrm->time.tm_mday);
320 alarmvals[2] = bin2bcd(alrm->time.tm_hour);
321 alarmvals[3] = bin2bcd(alrm->time.tm_min);
322 alarmvals[4] = bin2bcd(alrm->time.tm_sec);
323
324 /* Clear AF and AFE flags */
325 ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
326 if (ret < 0)
327 return ret;
328 err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
329 ret & ~(M41T80_ALMON_AFE));
330 if (err < 0) {
331 dev_err(dev, "Unable to clear AFE bit\n");
332 return err;
333 }
334
Gary Bisson2de92612017-04-25 16:45:14 +0200335 /* Keep SQWE bit value */
336 alarmvals[0] |= (ret & M41T80_ALMON_SQWE);
337
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200338 ret = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
339 if (ret < 0)
340 return ret;
341
342 err = i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS,
343 ret & ~(M41T80_FLAGS_AF));
344 if (err < 0) {
345 dev_err(dev, "Unable to clear AF bit\n");
346 return err;
347 }
348
349 /* Write the alarm */
350 err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_ALARM_MON,
351 5, alarmvals);
352 if (err)
353 return err;
354
355 /* Enable the alarm interrupt */
356 if (alrm->enabled) {
357 alarmvals[0] |= M41T80_ALMON_AFE;
358 err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
359 alarmvals[0]);
360 if (err)
361 return err;
362 }
363
364 return 0;
365}
366
367static int m41t80_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
368{
369 struct i2c_client *client = to_i2c_client(dev);
370 u8 alarmvals[5];
371 int flags, ret;
372
373 ret = i2c_smbus_read_i2c_block_data(client, M41T80_REG_ALARM_MON,
374 5, alarmvals);
375 if (ret != 5)
376 return ret < 0 ? ret : -EIO;
377
378 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
379 if (flags < 0)
380 return flags;
381
382 alrm->time.tm_sec = bcd2bin(alarmvals[4] & 0x7f);
383 alrm->time.tm_min = bcd2bin(alarmvals[3] & 0x7f);
384 alrm->time.tm_hour = bcd2bin(alarmvals[2] & 0x3f);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200385 alrm->time.tm_mday = bcd2bin(alarmvals[1] & 0x3f);
386 alrm->time.tm_mon = bcd2bin(alarmvals[0] & 0x3f);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200387
388 alrm->enabled = !!(alarmvals[0] & M41T80_ALMON_AFE);
389 alrm->pending = (flags & M41T80_FLAGS_AF) && alrm->enabled;
390
391 return 0;
392}
393
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700394static struct rtc_class_ops m41t80_rtc_ops = {
395 .read_time = m41t80_rtc_read_time,
396 .set_time = m41t80_rtc_set_time,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700397 .proc = m41t80_rtc_proc,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700398};
399
Stefan Christae036af2016-07-05 13:53:17 +0200400#ifdef CONFIG_PM_SLEEP
401static int m41t80_suspend(struct device *dev)
402{
403 struct i2c_client *client = to_i2c_client(dev);
404
405 if (client->irq >= 0 && device_may_wakeup(dev))
406 enable_irq_wake(client->irq);
407
408 return 0;
409}
410
411static int m41t80_resume(struct device *dev)
412{
413 struct i2c_client *client = to_i2c_client(dev);
414
415 if (client->irq >= 0 && device_may_wakeup(dev))
416 disable_irq_wake(client->irq);
417
418 return 0;
419}
420#endif
421
422static SIMPLE_DEV_PM_OPS(m41t80_pm, m41t80_suspend, m41t80_resume);
423
Mylène Josserandef6b3122016-03-29 08:55:58 +0200424static ssize_t flags_show(struct device *dev,
425 struct device_attribute *attr, char *buf)
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700426{
427 struct i2c_client *client = to_i2c_client(dev);
428 int val;
429
430 val = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
431 if (val < 0)
Wolfram Sang85d77042014-06-06 14:35:46 -0700432 return val;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700433 return sprintf(buf, "%#x\n", val);
434}
Mylène Josserandef6b3122016-03-29 08:55:58 +0200435static DEVICE_ATTR_RO(flags);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700436
Mylène Josserandef6b3122016-03-29 08:55:58 +0200437static ssize_t sqwfreq_show(struct device *dev,
438 struct device_attribute *attr, char *buf)
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700439{
440 struct i2c_client *client = to_i2c_client(dev);
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700441 struct m41t80_data *clientdata = i2c_get_clientdata(client);
Daniel Glocknerf30281f2009-04-02 16:57:03 -0700442 int val, reg_sqw;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700443
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700444 if (!(clientdata->features & M41T80_FEATURE_SQ))
445 return -EINVAL;
446
Daniel Glocknerf30281f2009-04-02 16:57:03 -0700447 reg_sqw = M41T80_REG_SQW;
448 if (clientdata->features & M41T80_FEATURE_SQ_ALT)
449 reg_sqw = M41T80_REG_WDAY;
450 val = i2c_smbus_read_byte_data(client, reg_sqw);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700451 if (val < 0)
Wolfram Sang85d77042014-06-06 14:35:46 -0700452 return val;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700453 val = (val >> 4) & 0xf;
454 switch (val) {
455 case 0:
456 break;
457 case 1:
458 val = 32768;
459 break;
460 default:
461 val = 32768 >> val;
462 }
463 return sprintf(buf, "%d\n", val);
464}
Mylène Josserandef6b3122016-03-29 08:55:58 +0200465
466static ssize_t sqwfreq_store(struct device *dev,
467 struct device_attribute *attr,
468 const char *buf, size_t count)
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700469{
470 struct i2c_client *client = to_i2c_client(dev);
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700471 struct m41t80_data *clientdata = i2c_get_clientdata(client);
Wolfram Sang85d77042014-06-06 14:35:46 -0700472 int almon, sqw, reg_sqw, rc;
Mylène Josserandfc99b902016-03-29 08:56:02 +0200473 unsigned long val;
474
475 rc = kstrtoul(buf, 0, &val);
476 if (rc < 0)
477 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700478
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700479 if (!(clientdata->features & M41T80_FEATURE_SQ))
480 return -EINVAL;
481
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700482 if (val) {
483 if (!is_power_of_2(val))
484 return -EINVAL;
485 val = ilog2(val);
486 if (val == 15)
487 val = 1;
488 else if (val < 14)
489 val = 15 - val;
490 else
491 return -EINVAL;
492 }
493 /* disable SQW, set SQW frequency & re-enable */
494 almon = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
495 if (almon < 0)
Wolfram Sang85d77042014-06-06 14:35:46 -0700496 return almon;
Daniel Glocknerf30281f2009-04-02 16:57:03 -0700497 reg_sqw = M41T80_REG_SQW;
498 if (clientdata->features & M41T80_FEATURE_SQ_ALT)
499 reg_sqw = M41T80_REG_WDAY;
500 sqw = i2c_smbus_read_byte_data(client, reg_sqw);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700501 if (sqw < 0)
Wolfram Sang85d77042014-06-06 14:35:46 -0700502 return sqw;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700503 sqw = (sqw & 0x0f) | (val << 4);
Wolfram Sang85d77042014-06-06 14:35:46 -0700504
505 rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200506 almon & ~M41T80_ALMON_SQWE);
Wolfram Sang85d77042014-06-06 14:35:46 -0700507 if (rc < 0)
508 return rc;
509
510 if (val) {
511 rc = i2c_smbus_write_byte_data(client, reg_sqw, sqw);
512 if (rc < 0)
513 return rc;
514
515 rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200516 almon | M41T80_ALMON_SQWE);
517 if (rc < 0)
Wolfram Sang85d77042014-06-06 14:35:46 -0700518 return rc;
519 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700520 return count;
521}
Mylène Josserandef6b3122016-03-29 08:55:58 +0200522static DEVICE_ATTR_RW(sqwfreq);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700523
524static struct attribute *attrs[] = {
525 &dev_attr_flags.attr,
526 &dev_attr_sqwfreq.attr,
527 NULL,
528};
Mylène Josserandfc99b902016-03-29 08:56:02 +0200529
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700530static struct attribute_group attr_group = {
531 .attrs = attrs,
532};
533
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700534#ifdef CONFIG_RTC_DRV_M41T80_WDT
535/*
536 *****************************************************************************
537 *
538 * Watchdog Driver
539 *
540 *****************************************************************************
541 */
542static struct i2c_client *save_client;
543
544/* Default margin */
545#define WD_TIMO 60 /* 1..31 seconds */
546
547static int wdt_margin = WD_TIMO;
548module_param(wdt_margin, int, 0);
549MODULE_PARM_DESC(wdt_margin, "Watchdog timeout in seconds (default 60s)");
550
551static unsigned long wdt_is_open;
552static int boot_flag;
553
554/**
555 * wdt_ping:
556 *
557 * Reload counter one with the watchdog timeout. We don't bother reloading
558 * the cascade counter.
559 */
560static void wdt_ping(void)
561{
562 unsigned char i2c_data[2];
563 struct i2c_msg msgs1[1] = {
564 {
565 .addr = save_client->addr,
566 .flags = 0,
567 .len = 2,
568 .buf = i2c_data,
569 },
570 };
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700571 struct m41t80_data *clientdata = i2c_get_clientdata(save_client);
572
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700573 i2c_data[0] = 0x09; /* watchdog register */
574
575 if (wdt_margin > 31)
576 i2c_data[1] = (wdt_margin & 0xFC) | 0x83; /* resolution = 4s */
577 else
578 /*
579 * WDS = 1 (0x80), mulitplier = WD_TIMO, resolution = 1s (0x02)
580 */
Mylène Josserandfc99b902016-03-29 08:56:02 +0200581 i2c_data[1] = wdt_margin << 2 | 0x82;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700582
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700583 /*
584 * M41T65 has three bits for watchdog resolution. Don't set bit 7, as
585 * that would be an invalid resolution.
586 */
587 if (clientdata->features & M41T80_FEATURE_WD)
588 i2c_data[1] &= ~M41T80_WATCHDOG_RB2;
589
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700590 i2c_transfer(save_client->adapter, msgs1, 1);
591}
592
593/**
594 * wdt_disable:
595 *
596 * disables watchdog.
597 */
598static void wdt_disable(void)
599{
600 unsigned char i2c_data[2], i2c_buf[0x10];
601 struct i2c_msg msgs0[2] = {
602 {
603 .addr = save_client->addr,
604 .flags = 0,
605 .len = 1,
606 .buf = i2c_data,
607 },
608 {
609 .addr = save_client->addr,
610 .flags = I2C_M_RD,
611 .len = 1,
612 .buf = i2c_buf,
613 },
614 };
615 struct i2c_msg msgs1[1] = {
616 {
617 .addr = save_client->addr,
618 .flags = 0,
619 .len = 2,
620 .buf = i2c_data,
621 },
622 };
623
624 i2c_data[0] = 0x09;
625 i2c_transfer(save_client->adapter, msgs0, 2);
626
627 i2c_data[0] = 0x09;
628 i2c_data[1] = 0x00;
629 i2c_transfer(save_client->adapter, msgs1, 1);
630}
631
632/**
633 * wdt_write:
634 * @file: file handle to the watchdog
635 * @buf: buffer to write (unused as data does not matter here
636 * @count: count of bytes
637 * @ppos: pointer to the position to write. No seeks allowed
638 *
639 * A write to a watchdog device is defined as a keepalive signal. Any
640 * write of data will do, as we we don't define content meaning.
641 */
642static ssize_t wdt_write(struct file *file, const char __user *buf,
643 size_t count, loff_t *ppos)
644{
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700645 if (count) {
646 wdt_ping();
647 return 1;
648 }
649 return 0;
650}
651
652static ssize_t wdt_read(struct file *file, char __user *buf,
653 size_t count, loff_t *ppos)
654{
655 return 0;
656}
657
658/**
659 * wdt_ioctl:
660 * @inode: inode of the device
661 * @file: file handle to the device
662 * @cmd: watchdog command
663 * @arg: argument pointer
664 *
665 * The watchdog API defines a common set of functions for all watchdogs
666 * according to their available features. We only actually usefully support
667 * querying capabilities and current status.
668 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200669static int wdt_ioctl(struct file *file, unsigned int cmd,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700670 unsigned long arg)
671{
672 int new_margin, rv;
673 static struct watchdog_info ident = {
674 .options = WDIOF_POWERUNDER | WDIOF_KEEPALIVEPING |
675 WDIOF_SETTIMEOUT,
676 .firmware_version = 1,
677 .identity = "M41T80 WTD"
678 };
679
680 switch (cmd) {
681 case WDIOC_GETSUPPORT:
682 return copy_to_user((struct watchdog_info __user *)arg, &ident,
683 sizeof(ident)) ? -EFAULT : 0;
684
685 case WDIOC_GETSTATUS:
686 case WDIOC_GETBOOTSTATUS:
687 return put_user(boot_flag, (int __user *)arg);
688 case WDIOC_KEEPALIVE:
689 wdt_ping();
690 return 0;
691 case WDIOC_SETTIMEOUT:
692 if (get_user(new_margin, (int __user *)arg))
693 return -EFAULT;
694 /* Arbitrary, can't find the card's limits */
695 if (new_margin < 1 || new_margin > 124)
696 return -EINVAL;
697 wdt_margin = new_margin;
698 wdt_ping();
699 /* Fall */
700 case WDIOC_GETTIMEOUT:
701 return put_user(wdt_margin, (int __user *)arg);
702
703 case WDIOC_SETOPTIONS:
704 if (copy_from_user(&rv, (int __user *)arg, sizeof(int)))
705 return -EFAULT;
706
707 if (rv & WDIOS_DISABLECARD) {
Joe Perchesa737e832015-04-16 12:46:14 -0700708 pr_info("disable watchdog\n");
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700709 wdt_disable();
710 }
711
712 if (rv & WDIOS_ENABLECARD) {
Joe Perchesa737e832015-04-16 12:46:14 -0700713 pr_info("enable watchdog\n");
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700714 wdt_ping();
715 }
716
717 return -EINVAL;
718 }
719 return -ENOTTY;
720}
721
Arnd Bergmann55929332010-04-27 00:24:05 +0200722static long wdt_unlocked_ioctl(struct file *file, unsigned int cmd,
723 unsigned long arg)
724{
725 int ret;
726
Arnd Bergmann613655f2010-06-02 14:28:52 +0200727 mutex_lock(&m41t80_rtc_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200728 ret = wdt_ioctl(file, cmd, arg);
Arnd Bergmann613655f2010-06-02 14:28:52 +0200729 mutex_unlock(&m41t80_rtc_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200730
731 return ret;
732}
733
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700734/**
735 * wdt_open:
736 * @inode: inode of device
737 * @file: file handle to device
738 *
739 */
740static int wdt_open(struct inode *inode, struct file *file)
741{
742 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR) {
Arnd Bergmann613655f2010-06-02 14:28:52 +0200743 mutex_lock(&m41t80_rtc_mutex);
Arnd Bergmann41012732008-05-20 19:16:39 +0200744 if (test_and_set_bit(0, &wdt_is_open)) {
Arnd Bergmann613655f2010-06-02 14:28:52 +0200745 mutex_unlock(&m41t80_rtc_mutex);
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700746 return -EBUSY;
Arnd Bergmann41012732008-05-20 19:16:39 +0200747 }
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700748 /*
749 * Activate
750 */
751 wdt_is_open = 1;
Arnd Bergmann613655f2010-06-02 14:28:52 +0200752 mutex_unlock(&m41t80_rtc_mutex);
Jan Blunck09eeb1f2010-05-26 14:44:47 -0700753 return nonseekable_open(inode, file);
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700754 }
755 return -ENODEV;
756}
757
758/**
759 * wdt_close:
760 * @inode: inode to board
761 * @file: file handle to board
762 *
763 */
764static int wdt_release(struct inode *inode, struct file *file)
765{
766 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR)
767 clear_bit(0, &wdt_is_open);
768 return 0;
769}
770
771/**
772 * notify_sys:
773 * @this: our notifier block
774 * @code: the event being reported
775 * @unused: unused
776 *
777 * Our notifier is called on system shutdowns. We want to turn the card
778 * off at reboot otherwise the machine will reboot again during memory
779 * test or worse yet during the following fsck. This would suck, in fact
780 * trust me - if it happens it does suck.
781 */
782static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
783 void *unused)
784{
785 if (code == SYS_DOWN || code == SYS_HALT)
786 /* Disable Watchdog */
787 wdt_disable();
788 return NOTIFY_DONE;
789}
790
791static const struct file_operations wdt_fops = {
792 .owner = THIS_MODULE,
793 .read = wdt_read,
Arnd Bergmann55929332010-04-27 00:24:05 +0200794 .unlocked_ioctl = wdt_unlocked_ioctl,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700795 .write = wdt_write,
796 .open = wdt_open,
797 .release = wdt_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200798 .llseek = no_llseek,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700799};
800
801static struct miscdevice wdt_dev = {
802 .minor = WATCHDOG_MINOR,
803 .name = "watchdog",
804 .fops = &wdt_fops,
805};
806
807/*
808 * The WDT card needs to learn about soft shutdowns in order to
809 * turn the timebomb registers off.
810 */
811static struct notifier_block wdt_notifier = {
812 .notifier_call = wdt_notify_sys,
813};
814#endif /* CONFIG_RTC_DRV_M41T80_WDT */
815
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700816/*
817 *****************************************************************************
818 *
819 * Driver Interface
820 *
821 *****************************************************************************
822 */
Mylène Josserandef6b3122016-03-29 08:55:58 +0200823
824static void m41t80_remove_sysfs_group(void *_dev)
825{
826 struct device *dev = _dev;
827
828 sysfs_remove_group(&dev->kobj, &attr_group);
829}
830
Jean Delvared2653e92008-04-29 23:11:39 +0200831static int m41t80_probe(struct i2c_client *client,
832 const struct i2c_device_id *id)
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700833{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200834 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
Jean Delvare3760f732008-04-29 23:11:40 +0200835 int rc = 0;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700836 struct rtc_device *rtc = NULL;
837 struct rtc_time tm;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200838 struct m41t80_data *m41t80_data = NULL;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700839
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200840 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_I2C_BLOCK |
841 I2C_FUNC_SMBUS_BYTE_DATA)) {
842 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 -0700843 return -ENODEV;
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200844 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700845
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200846 m41t80_data = devm_kzalloc(&client->dev, sizeof(*m41t80_data),
847 GFP_KERNEL);
848 if (!m41t80_data)
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700849 return -ENOMEM;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700850
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300851 if (client->dev.of_node)
852 m41t80_data->features = (unsigned long)
853 of_device_get_match_data(&client->dev);
854 else
855 m41t80_data->features = id->driver_data;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200856 i2c_set_clientdata(client, m41t80_data);
857
858 if (client->irq > 0) {
859 rc = devm_request_threaded_irq(&client->dev, client->irq,
860 NULL, m41t80_handle_irq,
861 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
862 "m41t80", client);
863 if (rc) {
864 dev_warn(&client->dev, "unable to request IRQ, alarms disabled\n");
865 client->irq = 0;
866 } else {
867 m41t80_rtc_ops.read_alarm = m41t80_read_alarm;
868 m41t80_rtc_ops.set_alarm = m41t80_set_alarm;
869 m41t80_rtc_ops.alarm_irq_enable = m41t80_alarm_irq_enable;
Mylène Josserand3726a212016-03-29 08:56:04 +0200870 /* Enable the wakealarm */
871 device_init_wakeup(&client->dev, true);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200872 }
873 }
John Stultza015dbc2011-05-06 17:24:27 -0700874
Jingoo Han4ebabb72013-04-29 16:20:42 -0700875 rtc = devm_rtc_device_register(&client->dev, client->name,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200876 &m41t80_rtc_ops, THIS_MODULE);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700877 if (IS_ERR(rtc))
878 return PTR_ERR(rtc);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700879
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200880 m41t80_data->rtc = rtc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700881
882 /* Make sure HT (Halt Update) bit is cleared */
883 rc = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_HOUR);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700884
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700885 if (rc >= 0 && rc & M41T80_ALHOUR_HT) {
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200886 if (m41t80_data->features & M41T80_FEATURE_HT) {
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700887 m41t80_get_datetime(client, &tm);
888 dev_info(&client->dev, "HT bit was set!\n");
889 dev_info(&client->dev,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200890 "Power Down at %04i-%02i-%02i %02i:%02i:%02i\n",
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700891 tm.tm_year + 1900,
892 tm.tm_mon + 1, tm.tm_mday, tm.tm_hour,
893 tm.tm_min, tm.tm_sec);
894 }
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700895 rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_HOUR,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200896 rc & ~M41T80_ALHOUR_HT);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700897 }
898
899 if (rc < 0) {
900 dev_err(&client->dev, "Can't clear HT bit\n");
Wolfram Sang85d77042014-06-06 14:35:46 -0700901 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700902 }
903
904 /* Make sure ST (stop) bit is cleared */
905 rc = i2c_smbus_read_byte_data(client, M41T80_REG_SEC);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700906
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700907 if (rc >= 0 && rc & M41T80_SEC_ST)
908 rc = i2c_smbus_write_byte_data(client, M41T80_REG_SEC,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200909 rc & ~M41T80_SEC_ST);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700910 if (rc < 0) {
911 dev_err(&client->dev, "Can't clear ST bit\n");
Wolfram Sang85d77042014-06-06 14:35:46 -0700912 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700913 }
914
Mylène Josserandef6b3122016-03-29 08:55:58 +0200915 /* Export sysfs entries */
916 rc = sysfs_create_group(&(&client->dev)->kobj, &attr_group);
917 if (rc) {
918 dev_err(&client->dev, "Failed to create sysfs group: %d\n", rc);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700919 return rc;
Mylène Josserandef6b3122016-03-29 08:55:58 +0200920 }
921
Sudip Mukherjee104b2d82016-07-03 21:18:58 +0100922 rc = devm_add_action_or_reset(&client->dev, m41t80_remove_sysfs_group,
923 &client->dev);
Mylène Josserandef6b3122016-03-29 08:55:58 +0200924 if (rc) {
Mylène Josserandef6b3122016-03-29 08:55:58 +0200925 dev_err(&client->dev,
926 "Failed to add sysfs cleanup action: %d\n", rc);
927 return rc;
928 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700929
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700930#ifdef CONFIG_RTC_DRV_M41T80_WDT
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200931 if (m41t80_data->features & M41T80_FEATURE_HT) {
Maciej W. Rozycki417607d2008-05-12 14:02:35 -0700932 save_client = client;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700933 rc = misc_register(&wdt_dev);
934 if (rc)
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700935 return rc;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700936 rc = register_reboot_notifier(&wdt_notifier);
937 if (rc) {
938 misc_deregister(&wdt_dev);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700939 return rc;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700940 }
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700941 }
942#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700943 return 0;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700944}
945
946static int m41t80_remove(struct i2c_client *client)
947{
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700948#ifdef CONFIG_RTC_DRV_M41T80_WDT
Jingoo Han4ebabb72013-04-29 16:20:42 -0700949 struct m41t80_data *clientdata = i2c_get_clientdata(client);
950
Jean Delvare3760f732008-04-29 23:11:40 +0200951 if (clientdata->features & M41T80_FEATURE_HT) {
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700952 misc_deregister(&wdt_dev);
953 unregister_reboot_notifier(&wdt_notifier);
954 }
955#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700956
957 return 0;
958}
959
960static struct i2c_driver m41t80_driver = {
961 .driver = {
David Brownellafe1ab42007-08-22 14:01:27 -0700962 .name = "rtc-m41t80",
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300963 .of_match_table = of_match_ptr(m41t80_of_match),
Stefan Christae036af2016-07-05 13:53:17 +0200964 .pm = &m41t80_pm,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700965 },
966 .probe = m41t80_probe,
967 .remove = m41t80_remove,
Jean Delvare3760f732008-04-29 23:11:40 +0200968 .id_table = m41t80_id,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700969};
970
Axel Lin0abc9202012-03-23 15:02:31 -0700971module_i2c_driver(m41t80_driver);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700972
973MODULE_AUTHOR("Alexander Bigga <ab@mycable.de>");
974MODULE_DESCRIPTION("ST Microelectronics M41T80 series RTC I2C Client Driver");
975MODULE_LICENSE("GPL");