blob: 96a606d5f6e69b9bb9d686fb3413449fb545e71d [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;
Troy Kisky13bb1d72017-11-02 18:58:15 -0700158 unsigned int sqwe;
Gary Bisson1373e772017-04-25 16:45:17 +0200159#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700160};
161
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200162static irqreturn_t m41t80_handle_irq(int irq, void *dev_id)
163{
164 struct i2c_client *client = dev_id;
165 struct m41t80_data *m41t80 = i2c_get_clientdata(client);
166 struct mutex *lock = &m41t80->rtc->ops_lock;
167 unsigned long events = 0;
168 int flags, flags_afe;
169
170 mutex_lock(lock);
171
172 flags_afe = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
173 if (flags_afe < 0) {
174 mutex_unlock(lock);
175 return IRQ_NONE;
176 }
177
178 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
179 if (flags <= 0) {
180 mutex_unlock(lock);
181 return IRQ_NONE;
182 }
183
184 if (flags & M41T80_FLAGS_AF) {
185 flags &= ~M41T80_FLAGS_AF;
186 flags_afe &= ~M41T80_ALMON_AFE;
187 events |= RTC_AF;
188 }
189
190 if (events) {
191 rtc_update_irq(m41t80->rtc, 1, events);
192 i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS, flags);
193 i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
194 flags_afe);
195 }
196
197 mutex_unlock(lock);
198
199 return IRQ_HANDLED;
200}
201
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700202static int m41t80_get_datetime(struct i2c_client *client,
203 struct rtc_time *tm)
204{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200205 unsigned char buf[8];
Mylène Josserand05a7f272016-03-29 08:56:05 +0200206 int err, flags;
207
208 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
209 if (flags < 0)
210 return flags;
211
212 if (flags & M41T80_FLAGS_OF) {
213 dev_err(&client->dev, "Oscillator failure, data is invalid.\n");
214 return -EINVAL;
215 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700216
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200217 err = i2c_smbus_read_i2c_block_data(client, M41T80_REG_SSEC,
218 sizeof(buf), buf);
219 if (err < 0) {
220 dev_err(&client->dev, "Unable to read date\n");
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700221 return -EIO;
222 }
223
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700224 tm->tm_sec = bcd2bin(buf[M41T80_REG_SEC] & 0x7f);
225 tm->tm_min = bcd2bin(buf[M41T80_REG_MIN] & 0x7f);
226 tm->tm_hour = bcd2bin(buf[M41T80_REG_HOUR] & 0x3f);
227 tm->tm_mday = bcd2bin(buf[M41T80_REG_DAY] & 0x3f);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700228 tm->tm_wday = buf[M41T80_REG_WDAY] & 0x07;
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700229 tm->tm_mon = bcd2bin(buf[M41T80_REG_MON] & 0x1f) - 1;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700230
231 /* assume 20YY not 19YY, and ignore the Century Bit */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700232 tm->tm_year = bcd2bin(buf[M41T80_REG_YEAR]) + 100;
Wan ZongShunb485fe52010-08-10 18:02:15 -0700233 return rtc_valid_tm(tm);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700234}
235
236/* Sets the given date and time to the real time clock. */
237static int m41t80_set_datetime(struct i2c_client *client, struct rtc_time *tm)
238{
Gary Bisson0f546b02017-04-25 16:45:15 +0200239 struct m41t80_data *clientdata = i2c_get_clientdata(client);
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200240 unsigned char buf[8];
Mylène Josserand05a7f272016-03-29 08:56:05 +0200241 int err, flags;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700242
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200243 if (tm->tm_year < 100 || tm->tm_year > 199)
Stefan Christbcebd812016-03-15 14:22:26 +0100244 return -EINVAL;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700245
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200246 buf[M41T80_REG_SSEC] = 0;
247 buf[M41T80_REG_SEC] = bin2bcd(tm->tm_sec);
248 buf[M41T80_REG_MIN] = bin2bcd(tm->tm_min);
249 buf[M41T80_REG_HOUR] = bin2bcd(tm->tm_hour);
250 buf[M41T80_REG_DAY] = bin2bcd(tm->tm_mday);
251 buf[M41T80_REG_MON] = bin2bcd(tm->tm_mon + 1);
252 buf[M41T80_REG_YEAR] = bin2bcd(tm->tm_year - 100);
253 buf[M41T80_REG_WDAY] = tm->tm_wday;
254
Gary Bisson0f546b02017-04-25 16:45:15 +0200255 /* If the square wave output is controlled in the weekday register */
256 if (clientdata->features & M41T80_FEATURE_SQ_ALT) {
257 int val;
258
259 val = i2c_smbus_read_byte_data(client, M41T80_REG_WDAY);
260 if (val < 0)
261 return val;
262
263 buf[M41T80_REG_WDAY] |= (val & 0xf0);
264 }
265
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200266 err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_SSEC,
267 sizeof(buf), buf);
268 if (err < 0) {
269 dev_err(&client->dev, "Unable to write to date registers\n");
270 return err;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700271 }
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200272
Mylène Josserand05a7f272016-03-29 08:56:05 +0200273 /* Clear the OF bit of Flags Register */
274 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
275 if (flags < 0)
276 return flags;
277
278 if (i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS,
279 flags & ~M41T80_FLAGS_OF)) {
280 dev_err(&client->dev, "Unable to write flags register\n");
281 return -EIO;
282 }
283
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200284 return err;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700285}
286
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700287static int m41t80_rtc_proc(struct device *dev, struct seq_file *seq)
288{
289 struct i2c_client *client = to_i2c_client(dev);
290 struct m41t80_data *clientdata = i2c_get_clientdata(client);
291 u8 reg;
292
Jean Delvare3760f732008-04-29 23:11:40 +0200293 if (clientdata->features & M41T80_FEATURE_BL) {
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700294 reg = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
295 seq_printf(seq, "battery\t\t: %s\n",
296 (reg & M41T80_FLAGS_BATT_LOW) ? "exhausted" : "ok");
297 }
298 return 0;
299}
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700300
301static int m41t80_rtc_read_time(struct device *dev, struct rtc_time *tm)
302{
303 return m41t80_get_datetime(to_i2c_client(dev), tm);
304}
305
306static int m41t80_rtc_set_time(struct device *dev, struct rtc_time *tm)
307{
308 return m41t80_set_datetime(to_i2c_client(dev), tm);
309}
310
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200311static int m41t80_alarm_irq_enable(struct device *dev, unsigned int enabled)
312{
313 struct i2c_client *client = to_i2c_client(dev);
314 int flags, retval;
315
316 flags = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
317 if (flags < 0)
318 return flags;
319
320 if (enabled)
321 flags |= M41T80_ALMON_AFE;
322 else
323 flags &= ~M41T80_ALMON_AFE;
324
325 retval = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, flags);
326 if (retval < 0) {
Stefan Christe89487f2016-07-05 13:53:16 +0200327 dev_err(dev, "Unable to enable alarm IRQ %d\n", retval);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200328 return retval;
329 }
330 return 0;
331}
332
333static int m41t80_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
334{
335 struct i2c_client *client = to_i2c_client(dev);
336 u8 alarmvals[5];
337 int ret, err;
338
339 alarmvals[0] = bin2bcd(alrm->time.tm_mon + 1);
340 alarmvals[1] = bin2bcd(alrm->time.tm_mday);
341 alarmvals[2] = bin2bcd(alrm->time.tm_hour);
342 alarmvals[3] = bin2bcd(alrm->time.tm_min);
343 alarmvals[4] = bin2bcd(alrm->time.tm_sec);
344
345 /* Clear AF and AFE flags */
346 ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
347 if (ret < 0)
348 return ret;
349 err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
350 ret & ~(M41T80_ALMON_AFE));
351 if (err < 0) {
352 dev_err(dev, "Unable to clear AFE bit\n");
353 return err;
354 }
355
Gary Bisson2de92612017-04-25 16:45:14 +0200356 /* Keep SQWE bit value */
357 alarmvals[0] |= (ret & M41T80_ALMON_SQWE);
358
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200359 ret = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
360 if (ret < 0)
361 return ret;
362
363 err = i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS,
364 ret & ~(M41T80_FLAGS_AF));
365 if (err < 0) {
366 dev_err(dev, "Unable to clear AF bit\n");
367 return err;
368 }
369
370 /* Write the alarm */
371 err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_ALARM_MON,
372 5, alarmvals);
373 if (err)
374 return err;
375
376 /* Enable the alarm interrupt */
377 if (alrm->enabled) {
378 alarmvals[0] |= M41T80_ALMON_AFE;
379 err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
380 alarmvals[0]);
381 if (err)
382 return err;
383 }
384
385 return 0;
386}
387
388static int m41t80_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
389{
390 struct i2c_client *client = to_i2c_client(dev);
391 u8 alarmvals[5];
392 int flags, ret;
393
394 ret = i2c_smbus_read_i2c_block_data(client, M41T80_REG_ALARM_MON,
395 5, alarmvals);
396 if (ret != 5)
397 return ret < 0 ? ret : -EIO;
398
399 flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS);
400 if (flags < 0)
401 return flags;
402
403 alrm->time.tm_sec = bcd2bin(alarmvals[4] & 0x7f);
404 alrm->time.tm_min = bcd2bin(alarmvals[3] & 0x7f);
405 alrm->time.tm_hour = bcd2bin(alarmvals[2] & 0x3f);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200406 alrm->time.tm_mday = bcd2bin(alarmvals[1] & 0x3f);
407 alrm->time.tm_mon = bcd2bin(alarmvals[0] & 0x3f);
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200408
409 alrm->enabled = !!(alarmvals[0] & M41T80_ALMON_AFE);
410 alrm->pending = (flags & M41T80_FLAGS_AF) && alrm->enabled;
411
412 return 0;
413}
414
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700415static struct rtc_class_ops m41t80_rtc_ops = {
416 .read_time = m41t80_rtc_read_time,
417 .set_time = m41t80_rtc_set_time,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700418 .proc = m41t80_rtc_proc,
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700419};
420
Stefan Christae036af2016-07-05 13:53:17 +0200421#ifdef CONFIG_PM_SLEEP
422static int m41t80_suspend(struct device *dev)
423{
424 struct i2c_client *client = to_i2c_client(dev);
425
426 if (client->irq >= 0 && device_may_wakeup(dev))
427 enable_irq_wake(client->irq);
428
429 return 0;
430}
431
432static int m41t80_resume(struct device *dev)
433{
434 struct i2c_client *client = to_i2c_client(dev);
435
436 if (client->irq >= 0 && device_may_wakeup(dev))
437 disable_irq_wake(client->irq);
438
439 return 0;
440}
441#endif
442
443static SIMPLE_DEV_PM_OPS(m41t80_pm, m41t80_suspend, m41t80_resume);
444
Gary Bisson1373e772017-04-25 16:45:17 +0200445#ifdef CONFIG_COMMON_CLK
446#define sqw_to_m41t80_data(_hw) container_of(_hw, struct m41t80_data, sqw)
447
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700448static unsigned long m41t80_decode_freq(int setting)
Gary Bisson1373e772017-04-25 16:45:17 +0200449{
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700450 return (setting == 0) ? 0 : (setting == 1) ? M41T80_SQW_MAX_FREQ :
451 M41T80_SQW_MAX_FREQ >> setting;
452}
453
454static unsigned long m41t80_get_freq(struct m41t80_data *m41t80)
455{
Gary Bisson1373e772017-04-25 16:45:17 +0200456 struct i2c_client *client = m41t80->client;
457 int reg_sqw = (m41t80->features & M41T80_FEATURE_SQ_ALT) ?
458 M41T80_REG_WDAY : M41T80_REG_SQW;
459 int ret = i2c_smbus_read_byte_data(client, reg_sqw);
Gary Bisson1373e772017-04-25 16:45:17 +0200460
461 if (ret < 0)
462 return 0;
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700463 return m41t80_decode_freq(ret >> 4);
464}
Gary Bisson1373e772017-04-25 16:45:17 +0200465
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700466static unsigned long m41t80_sqw_recalc_rate(struct clk_hw *hw,
467 unsigned long parent_rate)
468{
469 return sqw_to_m41t80_data(hw)->freq;
Gary Bisson1373e772017-04-25 16:45:17 +0200470}
471
472static long m41t80_sqw_round_rate(struct clk_hw *hw, unsigned long rate,
473 unsigned long *prate)
474{
Troy Kiskyc8384bb2017-11-02 18:58:13 -0700475 if (rate >= M41T80_SQW_MAX_FREQ)
476 return M41T80_SQW_MAX_FREQ;
477 if (rate >= M41T80_SQW_MAX_FREQ / 4)
478 return M41T80_SQW_MAX_FREQ / 4;
479 if (!rate)
480 return 0;
481 return 1 << ilog2(rate);
Gary Bisson1373e772017-04-25 16:45:17 +0200482}
483
484static int m41t80_sqw_set_rate(struct clk_hw *hw, unsigned long rate,
485 unsigned long parent_rate)
486{
487 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
488 struct i2c_client *client = m41t80->client;
489 int reg_sqw = (m41t80->features & M41T80_FEATURE_SQ_ALT) ?
490 M41T80_REG_WDAY : M41T80_REG_SQW;
491 int reg, ret, val = 0;
492
493 if (rate) {
494 if (!is_power_of_2(rate))
495 return -EINVAL;
496 val = ilog2(rate);
497 if (val == ilog2(M41T80_SQW_MAX_FREQ))
498 val = 1;
499 else if (val < (ilog2(M41T80_SQW_MAX_FREQ) - 1))
500 val = ilog2(M41T80_SQW_MAX_FREQ) - val;
501 else
502 return -EINVAL;
503 }
504
505 reg = i2c_smbus_read_byte_data(client, reg_sqw);
506 if (reg < 0)
507 return reg;
508
509 reg = (reg & 0x0f) | (val << 4);
510
511 ret = i2c_smbus_write_byte_data(client, reg_sqw, reg);
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700512 if (!ret)
513 m41t80->freq = m41t80_decode_freq(val);
Troy Kiskyde6042d2017-11-02 18:58:12 -0700514 return ret;
Gary Bisson1373e772017-04-25 16:45:17 +0200515}
516
517static int m41t80_sqw_control(struct clk_hw *hw, bool enable)
518{
519 struct m41t80_data *m41t80 = sqw_to_m41t80_data(hw);
520 struct i2c_client *client = m41t80->client;
521 int ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
522
523 if (ret < 0)
524 return ret;
525
526 if (enable)
527 ret |= M41T80_ALMON_SQWE;
528 else
529 ret &= ~M41T80_ALMON_SQWE;
530
Troy Kisky13bb1d72017-11-02 18:58:15 -0700531 ret = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, ret);
532 if (!ret)
533 m41t80->sqwe = enable;
534 return ret;
Gary Bisson1373e772017-04-25 16:45:17 +0200535}
536
537static int m41t80_sqw_prepare(struct clk_hw *hw)
538{
539 return m41t80_sqw_control(hw, 1);
540}
541
542static void m41t80_sqw_unprepare(struct clk_hw *hw)
543{
544 m41t80_sqw_control(hw, 0);
545}
546
547static int m41t80_sqw_is_prepared(struct clk_hw *hw)
548{
Troy Kisky13bb1d72017-11-02 18:58:15 -0700549 return sqw_to_m41t80_data(hw)->sqwe;
Gary Bisson1373e772017-04-25 16:45:17 +0200550}
551
552static const struct clk_ops m41t80_sqw_ops = {
553 .prepare = m41t80_sqw_prepare,
554 .unprepare = m41t80_sqw_unprepare,
555 .is_prepared = m41t80_sqw_is_prepared,
556 .recalc_rate = m41t80_sqw_recalc_rate,
557 .round_rate = m41t80_sqw_round_rate,
558 .set_rate = m41t80_sqw_set_rate,
559};
560
561static struct clk *m41t80_sqw_register_clk(struct m41t80_data *m41t80)
562{
563 struct i2c_client *client = m41t80->client;
564 struct device_node *node = client->dev.of_node;
565 struct clk *clk;
566 struct clk_init_data init;
567 int ret;
568
569 /* First disable the clock */
570 ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON);
571 if (ret < 0)
572 return ERR_PTR(ret);
573 ret = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON,
574 ret & ~(M41T80_ALMON_SQWE));
575 if (ret < 0)
576 return ERR_PTR(ret);
577
578 init.name = "m41t80-sqw";
579 init.ops = &m41t80_sqw_ops;
580 init.flags = 0;
581 init.parent_names = NULL;
582 init.num_parents = 0;
583 m41t80->sqw.init = &init;
Troy Kisky2cb90ed2017-11-02 18:58:14 -0700584 m41t80->freq = m41t80_get_freq(m41t80);
Gary Bisson1373e772017-04-25 16:45:17 +0200585
586 /* optional override of the clockname */
587 of_property_read_string(node, "clock-output-names", &init.name);
588
589 /* register the clock */
590 clk = clk_register(&client->dev, &m41t80->sqw);
591 if (!IS_ERR(clk))
592 of_clk_add_provider(node, of_clk_src_simple_get, clk);
593
594 return clk;
595}
596#endif
597
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700598#ifdef CONFIG_RTC_DRV_M41T80_WDT
599/*
600 *****************************************************************************
601 *
602 * Watchdog Driver
603 *
604 *****************************************************************************
605 */
606static struct i2c_client *save_client;
607
608/* Default margin */
609#define WD_TIMO 60 /* 1..31 seconds */
610
611static int wdt_margin = WD_TIMO;
612module_param(wdt_margin, int, 0);
613MODULE_PARM_DESC(wdt_margin, "Watchdog timeout in seconds (default 60s)");
614
615static unsigned long wdt_is_open;
616static int boot_flag;
617
618/**
619 * wdt_ping:
620 *
621 * Reload counter one with the watchdog timeout. We don't bother reloading
622 * the cascade counter.
623 */
624static void wdt_ping(void)
625{
626 unsigned char i2c_data[2];
627 struct i2c_msg msgs1[1] = {
628 {
629 .addr = save_client->addr,
630 .flags = 0,
631 .len = 2,
632 .buf = i2c_data,
633 },
634 };
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700635 struct m41t80_data *clientdata = i2c_get_clientdata(save_client);
636
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700637 i2c_data[0] = 0x09; /* watchdog register */
638
639 if (wdt_margin > 31)
640 i2c_data[1] = (wdt_margin & 0xFC) | 0x83; /* resolution = 4s */
641 else
642 /*
643 * WDS = 1 (0x80), mulitplier = WD_TIMO, resolution = 1s (0x02)
644 */
Mylène Josserandfc99b902016-03-29 08:56:02 +0200645 i2c_data[1] = wdt_margin << 2 | 0x82;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700646
Steven A. Falcod3a126f2008-10-15 22:03:07 -0700647 /*
648 * M41T65 has three bits for watchdog resolution. Don't set bit 7, as
649 * that would be an invalid resolution.
650 */
651 if (clientdata->features & M41T80_FEATURE_WD)
652 i2c_data[1] &= ~M41T80_WATCHDOG_RB2;
653
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700654 i2c_transfer(save_client->adapter, msgs1, 1);
655}
656
657/**
658 * wdt_disable:
659 *
660 * disables watchdog.
661 */
662static void wdt_disable(void)
663{
664 unsigned char i2c_data[2], i2c_buf[0x10];
665 struct i2c_msg msgs0[2] = {
666 {
667 .addr = save_client->addr,
668 .flags = 0,
669 .len = 1,
670 .buf = i2c_data,
671 },
672 {
673 .addr = save_client->addr,
674 .flags = I2C_M_RD,
675 .len = 1,
676 .buf = i2c_buf,
677 },
678 };
679 struct i2c_msg msgs1[1] = {
680 {
681 .addr = save_client->addr,
682 .flags = 0,
683 .len = 2,
684 .buf = i2c_data,
685 },
686 };
687
688 i2c_data[0] = 0x09;
689 i2c_transfer(save_client->adapter, msgs0, 2);
690
691 i2c_data[0] = 0x09;
692 i2c_data[1] = 0x00;
693 i2c_transfer(save_client->adapter, msgs1, 1);
694}
695
696/**
697 * wdt_write:
698 * @file: file handle to the watchdog
699 * @buf: buffer to write (unused as data does not matter here
700 * @count: count of bytes
701 * @ppos: pointer to the position to write. No seeks allowed
702 *
703 * A write to a watchdog device is defined as a keepalive signal. Any
704 * write of data will do, as we we don't define content meaning.
705 */
706static ssize_t wdt_write(struct file *file, const char __user *buf,
707 size_t count, loff_t *ppos)
708{
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700709 if (count) {
710 wdt_ping();
711 return 1;
712 }
713 return 0;
714}
715
716static ssize_t wdt_read(struct file *file, char __user *buf,
717 size_t count, loff_t *ppos)
718{
719 return 0;
720}
721
722/**
723 * wdt_ioctl:
724 * @inode: inode of the device
725 * @file: file handle to the device
726 * @cmd: watchdog command
727 * @arg: argument pointer
728 *
729 * The watchdog API defines a common set of functions for all watchdogs
730 * according to their available features. We only actually usefully support
731 * querying capabilities and current status.
732 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200733static int wdt_ioctl(struct file *file, unsigned int cmd,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700734 unsigned long arg)
735{
736 int new_margin, rv;
737 static struct watchdog_info ident = {
738 .options = WDIOF_POWERUNDER | WDIOF_KEEPALIVEPING |
739 WDIOF_SETTIMEOUT,
740 .firmware_version = 1,
741 .identity = "M41T80 WTD"
742 };
743
744 switch (cmd) {
745 case WDIOC_GETSUPPORT:
746 return copy_to_user((struct watchdog_info __user *)arg, &ident,
747 sizeof(ident)) ? -EFAULT : 0;
748
749 case WDIOC_GETSTATUS:
750 case WDIOC_GETBOOTSTATUS:
751 return put_user(boot_flag, (int __user *)arg);
752 case WDIOC_KEEPALIVE:
753 wdt_ping();
754 return 0;
755 case WDIOC_SETTIMEOUT:
756 if (get_user(new_margin, (int __user *)arg))
757 return -EFAULT;
758 /* Arbitrary, can't find the card's limits */
759 if (new_margin < 1 || new_margin > 124)
760 return -EINVAL;
761 wdt_margin = new_margin;
762 wdt_ping();
763 /* Fall */
764 case WDIOC_GETTIMEOUT:
765 return put_user(wdt_margin, (int __user *)arg);
766
767 case WDIOC_SETOPTIONS:
768 if (copy_from_user(&rv, (int __user *)arg, sizeof(int)))
769 return -EFAULT;
770
771 if (rv & WDIOS_DISABLECARD) {
Joe Perchesa737e832015-04-16 12:46:14 -0700772 pr_info("disable watchdog\n");
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700773 wdt_disable();
774 }
775
776 if (rv & WDIOS_ENABLECARD) {
Joe Perchesa737e832015-04-16 12:46:14 -0700777 pr_info("enable watchdog\n");
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700778 wdt_ping();
779 }
780
781 return -EINVAL;
782 }
783 return -ENOTTY;
784}
785
Arnd Bergmann55929332010-04-27 00:24:05 +0200786static long wdt_unlocked_ioctl(struct file *file, unsigned int cmd,
787 unsigned long arg)
788{
789 int ret;
790
Arnd Bergmann613655f2010-06-02 14:28:52 +0200791 mutex_lock(&m41t80_rtc_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200792 ret = wdt_ioctl(file, cmd, arg);
Arnd Bergmann613655f2010-06-02 14:28:52 +0200793 mutex_unlock(&m41t80_rtc_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +0200794
795 return ret;
796}
797
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700798/**
799 * wdt_open:
800 * @inode: inode of device
801 * @file: file handle to device
802 *
803 */
804static int wdt_open(struct inode *inode, struct file *file)
805{
806 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR) {
Arnd Bergmann613655f2010-06-02 14:28:52 +0200807 mutex_lock(&m41t80_rtc_mutex);
Arnd Bergmann41012732008-05-20 19:16:39 +0200808 if (test_and_set_bit(0, &wdt_is_open)) {
Arnd Bergmann613655f2010-06-02 14:28:52 +0200809 mutex_unlock(&m41t80_rtc_mutex);
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700810 return -EBUSY;
Arnd Bergmann41012732008-05-20 19:16:39 +0200811 }
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700812 /*
813 * Activate
814 */
815 wdt_is_open = 1;
Arnd Bergmann613655f2010-06-02 14:28:52 +0200816 mutex_unlock(&m41t80_rtc_mutex);
Jan Blunck09eeb1f2010-05-26 14:44:47 -0700817 return nonseekable_open(inode, file);
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700818 }
819 return -ENODEV;
820}
821
822/**
823 * wdt_close:
824 * @inode: inode to board
825 * @file: file handle to board
826 *
827 */
828static int wdt_release(struct inode *inode, struct file *file)
829{
830 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR)
831 clear_bit(0, &wdt_is_open);
832 return 0;
833}
834
835/**
836 * notify_sys:
837 * @this: our notifier block
838 * @code: the event being reported
839 * @unused: unused
840 *
841 * Our notifier is called on system shutdowns. We want to turn the card
842 * off at reboot otherwise the machine will reboot again during memory
843 * test or worse yet during the following fsck. This would suck, in fact
844 * trust me - if it happens it does suck.
845 */
846static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
847 void *unused)
848{
849 if (code == SYS_DOWN || code == SYS_HALT)
850 /* Disable Watchdog */
851 wdt_disable();
852 return NOTIFY_DONE;
853}
854
855static const struct file_operations wdt_fops = {
856 .owner = THIS_MODULE,
857 .read = wdt_read,
Arnd Bergmann55929332010-04-27 00:24:05 +0200858 .unlocked_ioctl = wdt_unlocked_ioctl,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700859 .write = wdt_write,
860 .open = wdt_open,
861 .release = wdt_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200862 .llseek = no_llseek,
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700863};
864
865static struct miscdevice wdt_dev = {
866 .minor = WATCHDOG_MINOR,
867 .name = "watchdog",
868 .fops = &wdt_fops,
869};
870
871/*
872 * The WDT card needs to learn about soft shutdowns in order to
873 * turn the timebomb registers off.
874 */
875static struct notifier_block wdt_notifier = {
876 .notifier_call = wdt_notify_sys,
877};
878#endif /* CONFIG_RTC_DRV_M41T80_WDT */
879
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700880/*
881 *****************************************************************************
882 *
883 * Driver Interface
884 *
885 *****************************************************************************
886 */
Mylène Josserandef6b3122016-03-29 08:55:58 +0200887
Jean Delvared2653e92008-04-29 23:11:39 +0200888static int m41t80_probe(struct i2c_client *client,
889 const struct i2c_device_id *id)
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700890{
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200891 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
Jean Delvare3760f732008-04-29 23:11:40 +0200892 int rc = 0;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700893 struct rtc_device *rtc = NULL;
894 struct rtc_time tm;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200895 struct m41t80_data *m41t80_data = NULL;
Eric Cooperd4473b92017-07-29 20:10:54 -0400896 bool wakeup_source = false;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700897
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200898 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_I2C_BLOCK |
899 I2C_FUNC_SMBUS_BYTE_DATA)) {
900 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 -0700901 return -ENODEV;
Mylène Josserandf2b84ee2016-03-29 08:56:00 +0200902 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700903
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200904 m41t80_data = devm_kzalloc(&client->dev, sizeof(*m41t80_data),
905 GFP_KERNEL);
906 if (!m41t80_data)
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700907 return -ENOMEM;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700908
Gary Bisson1373e772017-04-25 16:45:17 +0200909 m41t80_data->client = client;
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -0300910 if (client->dev.of_node)
911 m41t80_data->features = (unsigned long)
912 of_device_get_match_data(&client->dev);
913 else
914 m41t80_data->features = id->driver_data;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200915 i2c_set_clientdata(client, m41t80_data);
916
Eric Cooperd4473b92017-07-29 20:10:54 -0400917#ifdef CONFIG_OF
918 wakeup_source = of_property_read_bool(client->dev.of_node,
919 "wakeup-source");
920#endif
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200921 if (client->irq > 0) {
922 rc = devm_request_threaded_irq(&client->dev, client->irq,
923 NULL, m41t80_handle_irq,
924 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
925 "m41t80", client);
926 if (rc) {
927 dev_warn(&client->dev, "unable to request IRQ, alarms disabled\n");
928 client->irq = 0;
Eric Cooperd4473b92017-07-29 20:10:54 -0400929 wakeup_source = false;
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200930 }
931 }
Eric Cooperd4473b92017-07-29 20:10:54 -0400932 if (client->irq > 0 || wakeup_source) {
933 m41t80_rtc_ops.read_alarm = m41t80_read_alarm;
934 m41t80_rtc_ops.set_alarm = m41t80_set_alarm;
935 m41t80_rtc_ops.alarm_irq_enable = m41t80_alarm_irq_enable;
936 /* Enable the wakealarm */
937 device_init_wakeup(&client->dev, true);
938 }
John Stultza015dbc2011-05-06 17:24:27 -0700939
Jingoo Han4ebabb72013-04-29 16:20:42 -0700940 rtc = devm_rtc_device_register(&client->dev, client->name,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200941 &m41t80_rtc_ops, THIS_MODULE);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700942 if (IS_ERR(rtc))
943 return PTR_ERR(rtc);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700944
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200945 m41t80_data->rtc = rtc;
Eric Cooperd4473b92017-07-29 20:10:54 -0400946 if (client->irq <= 0) {
947 /* We cannot support UIE mode if we do not have an IRQ line */
948 rtc->uie_unsupported = 1;
949 }
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700950
951 /* Make sure HT (Halt Update) bit is cleared */
952 rc = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_HOUR);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700953
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700954 if (rc >= 0 && rc & M41T80_ALHOUR_HT) {
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200955 if (m41t80_data->features & M41T80_FEATURE_HT) {
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700956 m41t80_get_datetime(client, &tm);
957 dev_info(&client->dev, "HT bit was set!\n");
958 dev_info(&client->dev,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200959 "Power Down at %04i-%02i-%02i %02i:%02i:%02i\n",
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700960 tm.tm_year + 1900,
961 tm.tm_mon + 1, tm.tm_mday, tm.tm_hour,
962 tm.tm_min, tm.tm_sec);
963 }
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700964 rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_HOUR,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200965 rc & ~M41T80_ALHOUR_HT);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700966 }
967
968 if (rc < 0) {
969 dev_err(&client->dev, "Can't clear HT bit\n");
Wolfram Sang85d77042014-06-06 14:35:46 -0700970 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700971 }
972
973 /* Make sure ST (stop) bit is cleared */
974 rc = i2c_smbus_read_byte_data(client, M41T80_REG_SEC);
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700975
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700976 if (rc >= 0 && rc & M41T80_SEC_ST)
977 rc = i2c_smbus_write_byte_data(client, M41T80_REG_SEC,
Mylène Josserandfc99b902016-03-29 08:56:02 +0200978 rc & ~M41T80_SEC_ST);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700979 if (rc < 0) {
980 dev_err(&client->dev, "Can't clear ST bit\n");
Wolfram Sang85d77042014-06-06 14:35:46 -0700981 return rc;
Atsushi Nemotocaaff562007-07-17 04:05:02 -0700982 }
983
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700984#ifdef CONFIG_RTC_DRV_M41T80_WDT
Mylène Josserand9c6dfed2016-03-29 11:04:13 +0200985 if (m41t80_data->features & M41T80_FEATURE_HT) {
Maciej W. Rozycki417607d2008-05-12 14:02:35 -0700986 save_client = client;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700987 rc = misc_register(&wdt_dev);
988 if (rc)
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700989 return rc;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700990 rc = register_reboot_notifier(&wdt_notifier);
991 if (rc) {
992 misc_deregister(&wdt_dev);
Wolfram Sangc67fedf2014-06-06 14:35:45 -0700993 return rc;
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700994 }
Atsushi Nemoto617780d2007-07-17 04:05:04 -0700995 }
996#endif
Gary Bisson1373e772017-04-25 16:45:17 +0200997#ifdef CONFIG_COMMON_CLK
998 if (m41t80_data->features & M41T80_FEATURE_SQ)
999 m41t80_sqw_register_clk(m41t80_data);
1000#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001001 return 0;
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001002}
1003
1004static int m41t80_remove(struct i2c_client *client)
1005{
Atsushi Nemoto617780d2007-07-17 04:05:04 -07001006#ifdef CONFIG_RTC_DRV_M41T80_WDT
Jingoo Han4ebabb72013-04-29 16:20:42 -07001007 struct m41t80_data *clientdata = i2c_get_clientdata(client);
1008
Jean Delvare3760f732008-04-29 23:11:40 +02001009 if (clientdata->features & M41T80_FEATURE_HT) {
Atsushi Nemoto617780d2007-07-17 04:05:04 -07001010 misc_deregister(&wdt_dev);
1011 unregister_reboot_notifier(&wdt_notifier);
1012 }
1013#endif
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001014
1015 return 0;
1016}
1017
1018static struct i2c_driver m41t80_driver = {
1019 .driver = {
David Brownellafe1ab42007-08-22 14:01:27 -07001020 .name = "rtc-m41t80",
Javier Martinez Canillaseb235c52017-03-03 11:29:23 -03001021 .of_match_table = of_match_ptr(m41t80_of_match),
Stefan Christae036af2016-07-05 13:53:17 +02001022 .pm = &m41t80_pm,
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001023 },
1024 .probe = m41t80_probe,
1025 .remove = m41t80_remove,
Jean Delvare3760f732008-04-29 23:11:40 +02001026 .id_table = m41t80_id,
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001027};
1028
Axel Lin0abc9202012-03-23 15:02:31 -07001029module_i2c_driver(m41t80_driver);
Atsushi Nemotocaaff562007-07-17 04:05:02 -07001030
1031MODULE_AUTHOR("Alexander Bigga <ab@mycable.de>");
1032MODULE_DESCRIPTION("ST Microelectronics M41T80 series RTC I2C Client Driver");
1033MODULE_LICENSE("GPL");