blob: 42fc735a54461b8a25aeea9e902b0678083764ce [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;
157#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700158};
159
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200160static irqreturn_t m41t80_handle_irq(int irq, void *dev_id)
161{
162 struct i2c_client *client = dev_id;
163 struct m41t80_data *m41t80 = i2c_get_clientdata(client);
164 struct mutex *lock = &m41t80->rtc->ops_lock;
165 unsigned long events = 0;
166 int flags, flags_afe;
167
168 mutex_lock(lock);
169
170 flags_afe = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
171 if (flags_afe < 0) {
172 mutex_unlock(lock);
173 return IRQ_NONE;
174 }
175
176 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
177 if (flags <= 0) {
178 mutex_unlock(lock);
179 return IRQ_NONE;
180 }
181
182 if (flags & M41T80_FLAGS_AF) {
183 flags &= ~M41T80_FLAGS_AF;
184 flags_afe &= ~M41T80_ALMON_AFE;
185 events |= RTC_AF;
186 }
187
188 if (events) {
189 rtc_update_irq(m41t80->rtc, 1, events);
190 i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS, flags);
191 i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
192 flags_afe);
193 }
194
195 mutex_unlock(lock);
196
197 return IRQ_HANDLED;
198}
199
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700200static int m41t80_get_datetime(struct i2c_client *client,
201 struct rtc_time *tm)
202{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200203 unsigned char buf[8];
Mylène Josserand05a7f272016-03-29 08:56:05 +0200204 int err, flags;
205
206 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
207 if (flags < 0)
208 return flags;
209
210 if (flags & M41T80_FLAGS_OF) {
211 dev_err(&client->dev, "Oscillator failure, data is invalid.\n");
212 return -EINVAL;
213 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700214
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200215 err = i2c_smbus_read_i2c_block_data(client, M41T80_REG_SSEC,
216 sizeof(buf), buf);
217 if (err < 0) {
218 dev_err(&client->dev, "Unable to read date\n");
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700219 return -EIO;
220 }
221
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700222 tm->tm_sec = bcd2bin(buf[M41T80_REG_SEC] & 0x7f);
223 tm->tm_min = bcd2bin(buf[M41T80_REG_MIN] & 0x7f);
224 tm->tm_hour = bcd2bin(buf[M41T80_REG_HOUR] & 0x3f);
225 tm->tm_mday = bcd2bin(buf[M41T80_REG_DAY] & 0x3f);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700226 tm->tm_wday = buf[M41T80_REG_WDAY] & 0x07;
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700227 tm->tm_mon = bcd2bin(buf[M41T80_REG_MON] & 0x1f) - 1;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700228
229 /* assume 20YY not 19YY, and ignore the Century Bit */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700230 tm->tm_year = bcd2bin(buf[M41T80_REG_YEAR]) + 100;
Wan ZongShunb485fe52010-08-10 18:02:15 -0700231 return rtc_valid_tm(tm);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700232}
233
234/* Sets the given date and time to the real time clock. */
235static int m41t80_set_datetime(struct i2c_client *client, struct rtc_time *tm)
236{
Gary Bisson0f546b02017-04-25 16:45:15 +0200237 struct m41t80_data *clientdata = i2c_get_clientdata(client);
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200238 unsigned char buf[8];
Mylène Josserand05a7f272016-03-29 08:56:05 +0200239 int err, flags;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700240
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200241 if (tm->tm_year < 100 || tm->tm_year > 199)
Stefan Christbcebd812016-03-15 14:22:26 +0100242 return -EINVAL;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700243
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200244 buf[M41T80_REG_SSEC] = 0;
245 buf[M41T80_REG_SEC] = bin2bcd(tm->tm_sec);
246 buf[M41T80_REG_MIN] = bin2bcd(tm->tm_min);
247 buf[M41T80_REG_HOUR] = bin2bcd(tm->tm_hour);
248 buf[M41T80_REG_DAY] = bin2bcd(tm->tm_mday);
249 buf[M41T80_REG_MON] = bin2bcd(tm->tm_mon + 1);
250 buf[M41T80_REG_YEAR] = bin2bcd(tm->tm_year - 100);
251 buf[M41T80_REG_WDAY] = tm->tm_wday;
252
Gary Bisson0f546b02017-04-25 16:45:15 +0200253 /* If the square wave output is controlled in the weekday register */
254 if (clientdata->features & M41T80_FEATURE_SQ_ALT) {
255 int val;
256
257 val = i2c_smbus_read_byte_data(client, M41T80_REG_WDAY);
258 if (val < 0)
259 return val;
260
261 buf[M41T80_REG_WDAY] |= (val & 0xf0);
262 }
263
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200264 err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_SSEC,
265 sizeof(buf), buf);
266 if (err < 0) {
267 dev_err(&client->dev, "Unable to write to date registers\n");
268 return err;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700269 }
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200270
Mylène Josserand05a7f272016-03-29 08:56:05 +0200271 /* Clear the OF bit of Flags Register */
272 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
273 if (flags < 0)
274 return flags;
275
276 if (i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS,
277 flags & ~M41T80_FLAGS_OF)) {
278 dev_err(&client->dev, "Unable to write flags register\n");
279 return -EIO;
280 }
281
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200282 return err;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700283}
284
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700285static int m41t80_rtc_proc(struct device *dev, struct seq_file *seq)
286{
287 struct i2c_client *client = to_i2c_client(dev);
288 struct m41t80_data *clientdata = i2c_get_clientdata(client);
289 u8 reg;
290
Jean Delvare3760f732008-04-29 23:11:40 +0200291 if (clientdata->features & M41T80_FEATURE_BL) {
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700292 reg = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
293 seq_printf(seq, "battery\t\t: %s\n",
294 (reg & M41T80_FLAGS_BATT_LOW) ? "exhausted" : "ok");
295 }
296 return 0;
297}
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700298
299static int m41t80_rtc_read_time(struct device *dev, struct rtc_time *tm)
300{
301 return m41t80_get_datetime(to_i2c_client(dev), tm);
302}
303
304static int m41t80_rtc_set_time(struct device *dev, struct rtc_time *tm)
305{
306 return m41t80_set_datetime(to_i2c_client(dev), tm);
307}
308
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200309static int m41t80_alarm_irq_enable(struct device *dev, unsigned int enabled)
310{
311 struct i2c_client *client = to_i2c_client(dev);
312 int flags, retval;
313
314 flags = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
315 if (flags < 0)
316 return flags;
317
318 if (enabled)
319 flags |= M41T80_ALMON_AFE;
320 else
321 flags &= ~M41T80_ALMON_AFE;
322
323 retval = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, flags);
324 if (retval < 0) {
Stefan Christe89487f2016-07-05 13:53:16 +0200325 dev_err(dev, "Unable to enable alarm IRQ %d\n", retval);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200326 return retval;
327 }
328 return 0;
329}
330
331static int m41t80_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
332{
333 struct i2c_client *client = to_i2c_client(dev);
334 u8 alarmvals[5];
335 int ret, err;
336
337 alarmvals[0] = bin2bcd(alrm->time.tm_mon + 1);
338 alarmvals[1] = bin2bcd(alrm->time.tm_mday);
339 alarmvals[2] = bin2bcd(alrm->time.tm_hour);
340 alarmvals[3] = bin2bcd(alrm->time.tm_min);
341 alarmvals[4] = bin2bcd(alrm->time.tm_sec);
342
343 /* Clear AF and AFE flags */
344 ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
345 if (ret < 0)
346 return ret;
347 err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
348 ret & ~(M41T80_ALMON_AFE));
349 if (err < 0) {
350 dev_err(dev, "Unable to clear AFE bit\n");
351 return err;
352 }
353
Gary Bisson2de92612017-04-25 16:45:14 +0200354 /* Keep SQWE bit value */
355 alarmvals[0] |= (ret & M41T80_ALMON_SQWE);
356
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200357 ret = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
358 if (ret < 0)
359 return ret;
360
361 err = i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS,
362 ret & ~(M41T80_FLAGS_AF));
363 if (err < 0) {
364 dev_err(dev, "Unable to clear AF bit\n");
365 return err;
366 }
367
368 /* Write the alarm */
369 err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_ALARM_MON,
370 5, alarmvals);
371 if (err)
372 return err;
373
374 /* Enable the alarm interrupt */
375 if (alrm->enabled) {
376 alarmvals[0] |= M41T80_ALMON_AFE;
377 err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
378 alarmvals[0]);
379 if (err)
380 return err;
381 }
382
383 return 0;
384}
385
386static int m41t80_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
387{
388 struct i2c_client *client = to_i2c_client(dev);
389 u8 alarmvals[5];
390 int flags, ret;
391
392 ret = i2c_smbus_read_i2c_block_data(client, M41T80_REG_ALARM_MON,
393 5, alarmvals);
394 if (ret != 5)
395 return ret < 0 ? ret : -EIO;
396
397 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
398 if (flags < 0)
399 return flags;
400
401 alrm->time.tm_sec = bcd2bin(alarmvals[4] & 0x7f);
402 alrm->time.tm_min = bcd2bin(alarmvals[3] & 0x7f);
403 alrm->time.tm_hour = bcd2bin(alarmvals[2] & 0x3f);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200404 alrm->time.tm_mday = bcd2bin(alarmvals[1] & 0x3f);
405 alrm->time.tm_mon = bcd2bin(alarmvals[0] & 0x3f);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200406
407 alrm->enabled = !!(alarmvals[0] & M41T80_ALMON_AFE);
408 alrm->pending = (flags & M41T80_FLAGS_AF) && alrm->enabled;
409
410 return 0;
411}
412
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700413static struct rtc_class_ops m41t80_rtc_ops = {
414 .read_time = m41t80_rtc_read_time,
415 .set_time = m41t80_rtc_set_time,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700416 .proc = m41t80_rtc_proc,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700417};
418
Stefan Christae036af2016-07-05 13:53:17 +0200419#ifdef CONFIG_PM_SLEEP
420static int m41t80_suspend(struct device *dev)
421{
422 struct i2c_client *client = to_i2c_client(dev);
423
424 if (client->irq >= 0 && device_may_wakeup(dev))
425 enable_irq_wake(client->irq);
426
427 return 0;
428}
429
430static int m41t80_resume(struct device *dev)
431{
432 struct i2c_client *client = to_i2c_client(dev);
433
434 if (client->irq >= 0 && device_may_wakeup(dev))
435 disable_irq_wake(client->irq);
436
437 return 0;
438}
439#endif
440
441static SIMPLE_DEV_PM_OPS(m41t80_pm, m41t80_suspend, m41t80_resume);
442
Gary Bisson1373e772017-04-25 16:45:17 +0200443#ifdef CONFIG_COMMON_CLK
444#define sqw_to_m41t80_data(_hw) container_of(_hw, struct m41t80_data, sqw)
445
446static unsigned long m41t80_sqw_recalc_rate(struct clk_hw *hw,
447 unsigned long parent_rate)
448{
449 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
450 struct i2c_client *client = m41t80->client;
451 int reg_sqw = (m41t80->features & M41T80_FEATURE_SQ_ALT) ?
452 M41T80_REG_WDAY : M41T80_REG_SQW;
453 int ret = i2c_smbus_read_byte_data(client, reg_sqw);
454 unsigned long val = M41T80_SQW_MAX_FREQ;
455
456 if (ret < 0)
457 return 0;
458
459 ret >>= 4;
460 if (ret == 0)
461 val = 0;
462 else if (ret > 1)
463 val = val / (1 << ret);
464
465 return val;
466}
467
468static long m41t80_sqw_round_rate(struct clk_hw *hw, unsigned long rate,
469 unsigned long *prate)
470{
Troy Kiskyc8384bb2017-11-02 18:58:13 -0700471 if (rate >= M41T80_SQW_MAX_FREQ)
472 return M41T80_SQW_MAX_FREQ;
473 if (rate >= M41T80_SQW_MAX_FREQ / 4)
474 return M41T80_SQW_MAX_FREQ / 4;
475 if (!rate)
476 return 0;
477 return 1 << ilog2(rate);
Gary Bisson1373e772017-04-25 16:45:17 +0200478}
479
480static int m41t80_sqw_set_rate(struct clk_hw *hw, unsigned long rate,
481 unsigned long parent_rate)
482{
483 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
484 struct i2c_client *client = m41t80->client;
485 int reg_sqw = (m41t80->features & M41T80_FEATURE_SQ_ALT) ?
486 M41T80_REG_WDAY : M41T80_REG_SQW;
487 int reg, ret, val = 0;
488
489 if (rate) {
490 if (!is_power_of_2(rate))
491 return -EINVAL;
492 val = ilog2(rate);
493 if (val == ilog2(M41T80_SQW_MAX_FREQ))
494 val = 1;
495 else if (val < (ilog2(M41T80_SQW_MAX_FREQ) - 1))
496 val = ilog2(M41T80_SQW_MAX_FREQ) - val;
497 else
498 return -EINVAL;
499 }
500
501 reg = i2c_smbus_read_byte_data(client, reg_sqw);
502 if (reg < 0)
503 return reg;
504
505 reg = (reg & 0x0f) | (val << 4);
506
507 ret = i2c_smbus_write_byte_data(client, reg_sqw, reg);
Troy Kiskyde6042d2017-11-02 18:58:12 -0700508 return ret;
Gary Bisson1373e772017-04-25 16:45:17 +0200509}
510
511static int m41t80_sqw_control(struct clk_hw *hw, bool enable)
512{
513 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
514 struct i2c_client *client = m41t80->client;
515 int ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
516
517 if (ret < 0)
518 return ret;
519
520 if (enable)
521 ret |= M41T80_ALMON_SQWE;
522 else
523 ret &= ~M41T80_ALMON_SQWE;
524
525 return i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, ret);
526}
527
528static int m41t80_sqw_prepare(struct clk_hw *hw)
529{
530 return m41t80_sqw_control(hw, 1);
531}
532
533static void m41t80_sqw_unprepare(struct clk_hw *hw)
534{
535 m41t80_sqw_control(hw, 0);
536}
537
538static int m41t80_sqw_is_prepared(struct clk_hw *hw)
539{
540 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
541 struct i2c_client *client = m41t80->client;
542 int ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
543
544 if (ret < 0)
545 return ret;
546
547 return !!(ret & M41T80_ALMON_SQWE);
548}
549
550static const struct clk_ops m41t80_sqw_ops = {
551 .prepare = m41t80_sqw_prepare,
552 .unprepare = m41t80_sqw_unprepare,
553 .is_prepared = m41t80_sqw_is_prepared,
554 .recalc_rate = m41t80_sqw_recalc_rate,
555 .round_rate = m41t80_sqw_round_rate,
556 .set_rate = m41t80_sqw_set_rate,
557};
558
559static struct clk *m41t80_sqw_register_clk(struct m41t80_data *m41t80)
560{
561 struct i2c_client *client = m41t80->client;
562 struct device_node *node = client->dev.of_node;
563 struct clk *clk;
564 struct clk_init_data init;
565 int ret;
566
567 /* First disable the clock */
568 ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
569 if (ret < 0)
570 return ERR_PTR(ret);
571 ret = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
572 ret & ~(M41T80_ALMON_SQWE));
573 if (ret < 0)
574 return ERR_PTR(ret);
575
576 init.name = "m41t80-sqw";
577 init.ops = &m41t80_sqw_ops;
578 init.flags = 0;
579 init.parent_names = NULL;
580 init.num_parents = 0;
581 m41t80->sqw.init = &init;
582
583 /* optional override of the clockname */
584 of_property_read_string(node, "clock-output-names", &init.name);
585
586 /* register the clock */
587 clk = clk_register(&client->dev, &m41t80->sqw);
588 if (!IS_ERR(clk))
589 of_clk_add_provider(node, of_clk_src_simple_get, clk);
590
591 return clk;
592}
593#endif
594
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700595#ifdef CONFIG_RTC_DRV_M41T80_WDT
596/*
597 *****************************************************************************
598 *
599 * Watchdog Driver
600 *
601 *****************************************************************************
602 */
603static struct i2c_client *save_client;
604
605/* Default margin */
606#define WD_TIMO 60 /* 1..31 seconds */
607
608static int wdt_margin = WD_TIMO;
609module_param(wdt_margin, int, 0);
610MODULE_PARM_DESC(wdt_margin, "Watchdog timeout in seconds (default 60s)");
611
612static unsigned long wdt_is_open;
613static int boot_flag;
614
615/**
616 * wdt_ping:
617 *
618 * Reload counter one with the watchdog timeout. We don't bother reloading
619 * the cascade counter.
620 */
621static void wdt_ping(void)
622{
623 unsigned char i2c_data[2];
624 struct i2c_msg msgs1[1] = {
625 {
626 .addr = save_client->addr,
627 .flags = 0,
628 .len = 2,
629 .buf = i2c_data,
630 },
631 };
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700632 struct m41t80_data *clientdata = i2c_get_clientdata(save_client);
633
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700634 i2c_data[0] = 0x09; /* watchdog register */
635
636 if (wdt_margin > 31)
637 i2c_data[1] = (wdt_margin & 0xFC) | 0x83; /* resolution = 4s */
638 else
639 /*
640 * WDS = 1 (0x80), mulitplier = WD_TIMO, resolution = 1s (0x02)
641 */
Mylène Josserandfc99b902016-03-29 08:56:02 +0200642 i2c_data[1] = wdt_margin << 2 | 0x82;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700643
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700644 /*
645 * M41T65 has three bits for watchdog resolution. Don't set bit 7, as
646 * that would be an invalid resolution.
647 */
648 if (clientdata->features & M41T80_FEATURE_WD)
649 i2c_data[1] &= ~M41T80_WATCHDOG_RB2;
650
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700651 i2c_transfer(save_client->adapter, msgs1, 1);
652}
653
654/**
655 * wdt_disable:
656 *
657 * disables watchdog.
658 */
659static void wdt_disable(void)
660{
661 unsigned char i2c_data[2], i2c_buf[0x10];
662 struct i2c_msg msgs0[2] = {
663 {
664 .addr = save_client->addr,
665 .flags = 0,
666 .len = 1,
667 .buf = i2c_data,
668 },
669 {
670 .addr = save_client->addr,
671 .flags = I2C_M_RD,
672 .len = 1,
673 .buf = i2c_buf,
674 },
675 };
676 struct i2c_msg msgs1[1] = {
677 {
678 .addr = save_client->addr,
679 .flags = 0,
680 .len = 2,
681 .buf = i2c_data,
682 },
683 };
684
685 i2c_data[0] = 0x09;
686 i2c_transfer(save_client->adapter, msgs0, 2);
687
688 i2c_data[0] = 0x09;
689 i2c_data[1] = 0x00;
690 i2c_transfer(save_client->adapter, msgs1, 1);
691}
692
693/**
694 * wdt_write:
695 * @file: file handle to the watchdog
696 * @buf: buffer to write (unused as data does not matter here
697 * @count: count of bytes
698 * @ppos: pointer to the position to write. No seeks allowed
699 *
700 * A write to a watchdog device is defined as a keepalive signal. Any
701 * write of data will do, as we we don't define content meaning.
702 */
703static ssize_t wdt_write(struct file *file, const char __user *buf,
704 size_t count, loff_t *ppos)
705{
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700706 if (count) {
707 wdt_ping();
708 return 1;
709 }
710 return 0;
711}
712
713static ssize_t wdt_read(struct file *file, char __user *buf,
714 size_t count, loff_t *ppos)
715{
716 return 0;
717}
718
719/**
720 * wdt_ioctl:
721 * @inode: inode of the device
722 * @file: file handle to the device
723 * @cmd: watchdog command
724 * @arg: argument pointer
725 *
726 * The watchdog API defines a common set of functions for all watchdogs
727 * according to their available features. We only actually usefully support
728 * querying capabilities and current status.
729 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200730static int wdt_ioctl(struct file *file, unsigned int cmd,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700731 unsigned long arg)
732{
733 int new_margin, rv;
734 static struct watchdog_info ident = {
735 .options = WDIOF_POWERUNDER | WDIOF_KEEPALIVEPING |
736 WDIOF_SETTIMEOUT,
737 .firmware_version = 1,
738 .identity = "M41T80 WTD"
739 };
740
741 switch (cmd) {
742 case WDIOC_GETSUPPORT:
743 return copy_to_user((struct watchdog_info __user *)arg, &ident,
744 sizeof(ident)) ? -EFAULT : 0;
745
746 case WDIOC_GETSTATUS:
747 case WDIOC_GETBOOTSTATUS:
748 return put_user(boot_flag, (int __user *)arg);
749 case WDIOC_KEEPALIVE:
750 wdt_ping();
751 return 0;
752 case WDIOC_SETTIMEOUT:
753 if (get_user(new_margin, (int __user *)arg))
754 return -EFAULT;
755 /* Arbitrary, can't find the card's limits */
756 if (new_margin < 1 || new_margin > 124)
757 return -EINVAL;
758 wdt_margin = new_margin;
759 wdt_ping();
760 /* Fall */
761 case WDIOC_GETTIMEOUT:
762 return put_user(wdt_margin, (int __user *)arg);
763
764 case WDIOC_SETOPTIONS:
765 if (copy_from_user(&rv, (int __user *)arg, sizeof(int)))
766 return -EFAULT;
767
768 if (rv & WDIOS_DISABLECARD) {
Joe Perchesa737e832015-04-16 12:46:14 -0700769 pr_info("disable watchdog\n");
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700770 wdt_disable();
771 }
772
773 if (rv & WDIOS_ENABLECARD) {
Joe Perchesa737e832015-04-16 12:46:14 -0700774 pr_info("enable watchdog\n");
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700775 wdt_ping();
776 }
777
778 return -EINVAL;
779 }
780 return -ENOTTY;
781}
782
Arnd Bergmann55929332010-04-27 00:24:05 +0200783static long wdt_unlocked_ioctl(struct file *file, unsigned int cmd,
784 unsigned long arg)
785{
786 int ret;
787
Arnd Bergmann613655f2010-06-02 14:28:52 +0200788 mutex_lock(&m41t80_rtc_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200789 ret = wdt_ioctl(file, cmd, arg);
Arnd Bergmann613655f2010-06-02 14:28:52 +0200790 mutex_unlock(&m41t80_rtc_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200791
792 return ret;
793}
794
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700795/**
796 * wdt_open:
797 * @inode: inode of device
798 * @file: file handle to device
799 *
800 */
801static int wdt_open(struct inode *inode, struct file *file)
802{
803 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR) {
Arnd Bergmann613655f2010-06-02 14:28:52 +0200804 mutex_lock(&m41t80_rtc_mutex);
Arnd Bergmann41012732008-05-20 19:16:39 +0200805 if (test_and_set_bit(0, &wdt_is_open)) {
Arnd Bergmann613655f2010-06-02 14:28:52 +0200806 mutex_unlock(&m41t80_rtc_mutex);
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700807 return -EBUSY;
Arnd Bergmann41012732008-05-20 19:16:39 +0200808 }
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700809 /*
810 * Activate
811 */
812 wdt_is_open = 1;
Arnd Bergmann613655f2010-06-02 14:28:52 +0200813 mutex_unlock(&m41t80_rtc_mutex);
Jan Blunck09eeb1f2010-05-26 14:44:47 -0700814 return nonseekable_open(inode, file);
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700815 }
816 return -ENODEV;
817}
818
819/**
820 * wdt_close:
821 * @inode: inode to board
822 * @file: file handle to board
823 *
824 */
825static int wdt_release(struct inode *inode, struct file *file)
826{
827 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR)
828 clear_bit(0, &wdt_is_open);
829 return 0;
830}
831
832/**
833 * notify_sys:
834 * @this: our notifier block
835 * @code: the event being reported
836 * @unused: unused
837 *
838 * Our notifier is called on system shutdowns. We want to turn the card
839 * off at reboot otherwise the machine will reboot again during memory
840 * test or worse yet during the following fsck. This would suck, in fact
841 * trust me - if it happens it does suck.
842 */
843static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
844 void *unused)
845{
846 if (code == SYS_DOWN || code == SYS_HALT)
847 /* Disable Watchdog */
848 wdt_disable();
849 return NOTIFY_DONE;
850}
851
852static const struct file_operations wdt_fops = {
853 .owner = THIS_MODULE,
854 .read = wdt_read,
Arnd Bergmann55929332010-04-27 00:24:05 +0200855 .unlocked_ioctl = wdt_unlocked_ioctl,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700856 .write = wdt_write,
857 .open = wdt_open,
858 .release = wdt_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200859 .llseek = no_llseek,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700860};
861
862static struct miscdevice wdt_dev = {
863 .minor = WATCHDOG_MINOR,
864 .name = "watchdog",
865 .fops = &wdt_fops,
866};
867
868/*
869 * The WDT card needs to learn about soft shutdowns in order to
870 * turn the timebomb registers off.
871 */
872static struct notifier_block wdt_notifier = {
873 .notifier_call = wdt_notify_sys,
874};
875#endif /* CONFIG_RTC_DRV_M41T80_WDT */
876
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700877/*
878 *****************************************************************************
879 *
880 * Driver Interface
881 *
882 *****************************************************************************
883 */
Mylène Josserandef6b3122016-03-29 08:55:58 +0200884
Jean Delvared2653e92008-04-29 23:11:39 +0200885static int m41t80_probe(struct i2c_client *client,
886 const struct i2c_device_id *id)
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700887{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200888 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
Jean Delvare3760f732008-04-29 23:11:40 +0200889 int rc = 0;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700890 struct rtc_device *rtc = NULL;
891 struct rtc_time tm;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200892 struct m41t80_data *m41t80_data = NULL;
Eric Cooperd4473b92017-07-29 20:10:54 -0400893 bool wakeup_source = false;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700894
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200895 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_I2C_BLOCK |
896 I2C_FUNC_SMBUS_BYTE_DATA)) {
897 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 -0700898 return -ENODEV;
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200899 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700900
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200901 m41t80_data = devm_kzalloc(&client->dev, sizeof(*m41t80_data),
902 GFP_KERNEL);
903 if (!m41t80_data)
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700904 return -ENOMEM;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700905
Gary Bisson1373e772017-04-25 16:45:17 +0200906 m41t80_data->client = client;
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300907 if (client->dev.of_node)
908 m41t80_data->features = (unsigned long)
909 of_device_get_match_data(&client->dev);
910 else
911 m41t80_data->features = id->driver_data;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200912 i2c_set_clientdata(client, m41t80_data);
913
Eric Cooperd4473b92017-07-29 20:10:54 -0400914#ifdef CONFIG_OF
915 wakeup_source = of_property_read_bool(client->dev.of_node,
916 "wakeup-source");
917#endif
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200918 if (client->irq > 0) {
919 rc = devm_request_threaded_irq(&client->dev, client->irq,
920 NULL, m41t80_handle_irq,
921 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
922 "m41t80", client);
923 if (rc) {
924 dev_warn(&client->dev, "unable to request IRQ, alarms disabled\n");
925 client->irq = 0;
Eric Cooperd4473b92017-07-29 20:10:54 -0400926 wakeup_source = false;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200927 }
928 }
Eric Cooperd4473b92017-07-29 20:10:54 -0400929 if (client->irq > 0 || wakeup_source) {
930 m41t80_rtc_ops.read_alarm = m41t80_read_alarm;
931 m41t80_rtc_ops.set_alarm = m41t80_set_alarm;
932 m41t80_rtc_ops.alarm_irq_enable = m41t80_alarm_irq_enable;
933 /* Enable the wakealarm */
934 device_init_wakeup(&client->dev, true);
935 }
John Stultza015dbc2011-05-06 17:24:27 -0700936
Jingoo Han4ebabb72013-04-29 16:20:42 -0700937 rtc = devm_rtc_device_register(&client->dev, client->name,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200938 &m41t80_rtc_ops, THIS_MODULE);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700939 if (IS_ERR(rtc))
940 return PTR_ERR(rtc);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700941
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200942 m41t80_data->rtc = rtc;
Eric Cooperd4473b92017-07-29 20:10:54 -0400943 if (client->irq <= 0) {
944 /* We cannot support UIE mode if we do not have an IRQ line */
945 rtc->uie_unsupported = 1;
946 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700947
948 /* Make sure HT (Halt Update) bit is cleared */
949 rc = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_HOUR);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700950
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700951 if (rc >= 0 && rc & M41T80_ALHOUR_HT) {
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200952 if (m41t80_data->features & M41T80_FEATURE_HT) {
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700953 m41t80_get_datetime(client, &tm);
954 dev_info(&client->dev, "HT bit was set!\n");
955 dev_info(&client->dev,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200956 "Power Down at %04i-%02i-%02i %02i:%02i:%02i\n",
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700957 tm.tm_year + 1900,
958 tm.tm_mon + 1, tm.tm_mday, tm.tm_hour,
959 tm.tm_min, tm.tm_sec);
960 }
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700961 rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_HOUR,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200962 rc & ~M41T80_ALHOUR_HT);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700963 }
964
965 if (rc < 0) {
966 dev_err(&client->dev, "Can't clear HT bit\n");
Wolfram Sang85d77042014-06-06 14:35:46 -0700967 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700968 }
969
970 /* Make sure ST (stop) bit is cleared */
971 rc = i2c_smbus_read_byte_data(client, M41T80_REG_SEC);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700972
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700973 if (rc >= 0 && rc & M41T80_SEC_ST)
974 rc = i2c_smbus_write_byte_data(client, M41T80_REG_SEC,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200975 rc & ~M41T80_SEC_ST);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700976 if (rc < 0) {
977 dev_err(&client->dev, "Can't clear ST bit\n");
Wolfram Sang85d77042014-06-06 14:35:46 -0700978 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700979 }
980
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700981#ifdef CONFIG_RTC_DRV_M41T80_WDT
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200982 if (m41t80_data->features & M41T80_FEATURE_HT) {
Maciej W. Rozycki417607d2008-05-12 14:02:35 -0700983 save_client = client;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700984 rc = misc_register(&wdt_dev);
985 if (rc)
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700986 return rc;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700987 rc = register_reboot_notifier(&wdt_notifier);
988 if (rc) {
989 misc_deregister(&wdt_dev);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700990 return rc;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700991 }
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700992 }
993#endif
Gary Bisson1373e772017-04-25 16:45:17 +0200994#ifdef CONFIG_COMMON_CLK
995 if (m41t80_data->features & M41T80_FEATURE_SQ)
996 m41t80_sqw_register_clk(m41t80_data);
997#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700998 return 0;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700999}
1000
1001static int m41t80_remove(struct i2c_client *client)
1002{
Atsushi Nemoto617780d2007-07-17 04:05:04 -07001003#ifdef CONFIG_RTC_DRV_M41T80_WDT
Jingoo Han4ebabb72013-04-29 16:20:42 -07001004 struct m41t80_data *clientdata = i2c_get_clientdata(client);
1005
Jean Delvare3760f732008-04-29 23:11:40 +02001006 if (clientdata->features & M41T80_FEATURE_HT) {
Atsushi Nemoto617780d2007-07-17 04:05:04 -07001007 misc_deregister(&wdt_dev);
1008 unregister_reboot_notifier(&wdt_notifier);
1009 }
1010#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001011
1012 return 0;
1013}
1014
1015static struct i2c_driver m41t80_driver = {
1016 .driver = {
David Brownellafe1ab42007-08-22 14:01:27 -07001017 .name = "rtc-m41t80",
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -03001018 .of_match_table = of_match_ptr(m41t80_of_match),
Stefan Christae036af2016-07-05 13:53:17 +02001019 .pm = &m41t80_pm,
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001020 },
1021 .probe = m41t80_probe,
1022 .remove = m41t80_remove,
Jean Delvare3760f732008-04-29 23:11:40 +02001023 .id_table = m41t80_id,
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001024};
1025
Axel Lin0abc9202012-03-23 15:02:31 -07001026module_i2c_driver(m41t80_driver);
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001027
1028MODULE_AUTHOR("Alexander Bigga <ab@mycable.de>");
1029MODULE_DESCRIPTION("ST Microelectronics M41T80 series RTC I2C Client Driver");
1030MODULE_LICENSE("GPL");