GNU Linux-libre 4.19.286-gnu1
[releases.git] / drivers / rtc / rtc-pcf85363.c
1 /*
2  * drivers/rtc/rtc-pcf85363.c
3  *
4  * Driver for NXP PCF85363 real-time clock.
5  *
6  * Copyright (C) 2017 Eric Nelson
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * Based loosely on rtc-8583 by Russell King, Wolfram Sang and Juergen Beisert
13  */
14 #include <linux/module.h>
15 #include <linux/i2c.h>
16 #include <linux/slab.h>
17 #include <linux/rtc.h>
18 #include <linux/init.h>
19 #include <linux/err.h>
20 #include <linux/errno.h>
21 #include <linux/bcd.h>
22 #include <linux/of.h>
23 #include <linux/of_device.h>
24 #include <linux/regmap.h>
25
26 /*
27  * Date/Time registers
28  */
29 #define DT_100THS       0x00
30 #define DT_SECS         0x01
31 #define DT_MINUTES      0x02
32 #define DT_HOURS        0x03
33 #define DT_DAYS         0x04
34 #define DT_WEEKDAYS     0x05
35 #define DT_MONTHS       0x06
36 #define DT_YEARS        0x07
37
38 /*
39  * Alarm registers
40  */
41 #define DT_SECOND_ALM1  0x08
42 #define DT_MINUTE_ALM1  0x09
43 #define DT_HOUR_ALM1    0x0a
44 #define DT_DAY_ALM1     0x0b
45 #define DT_MONTH_ALM1   0x0c
46 #define DT_MINUTE_ALM2  0x0d
47 #define DT_HOUR_ALM2    0x0e
48 #define DT_WEEKDAY_ALM2 0x0f
49 #define DT_ALARM_EN     0x10
50
51 /*
52  * Time stamp registers
53  */
54 #define DT_TIMESTAMP1   0x11
55 #define DT_TIMESTAMP2   0x17
56 #define DT_TIMESTAMP3   0x1d
57 #define DT_TS_MODE      0x23
58
59 /*
60  * control registers
61  */
62 #define CTRL_OFFSET     0x24
63 #define CTRL_OSCILLATOR 0x25
64 #define CTRL_BATTERY    0x26
65 #define CTRL_PIN_IO     0x27
66 #define CTRL_FUNCTION   0x28
67 #define CTRL_INTA_EN    0x29
68 #define CTRL_INTB_EN    0x2a
69 #define CTRL_FLAGS      0x2b
70 #define CTRL_RAMBYTE    0x2c
71 #define CTRL_WDOG       0x2d
72 #define CTRL_STOP_EN    0x2e
73 #define CTRL_RESETS     0x2f
74 #define CTRL_RAM        0x40
75
76 #define ALRM_SEC_A1E    BIT(0)
77 #define ALRM_MIN_A1E    BIT(1)
78 #define ALRM_HR_A1E     BIT(2)
79 #define ALRM_DAY_A1E    BIT(3)
80 #define ALRM_MON_A1E    BIT(4)
81 #define ALRM_MIN_A2E    BIT(5)
82 #define ALRM_HR_A2E     BIT(6)
83 #define ALRM_DAY_A2E    BIT(7)
84
85 #define INT_WDIE        BIT(0)
86 #define INT_BSIE        BIT(1)
87 #define INT_TSRIE       BIT(2)
88 #define INT_A2IE        BIT(3)
89 #define INT_A1IE        BIT(4)
90 #define INT_OIE         BIT(5)
91 #define INT_PIE         BIT(6)
92 #define INT_ILP         BIT(7)
93
94 #define FLAGS_TSR1F     BIT(0)
95 #define FLAGS_TSR2F     BIT(1)
96 #define FLAGS_TSR3F     BIT(2)
97 #define FLAGS_BSF       BIT(3)
98 #define FLAGS_WDF       BIT(4)
99 #define FLAGS_A1F       BIT(5)
100 #define FLAGS_A2F       BIT(6)
101 #define FLAGS_PIF       BIT(7)
102
103 #define PIN_IO_INTAPM   GENMASK(1, 0)
104 #define PIN_IO_INTA_CLK 0
105 #define PIN_IO_INTA_BAT 1
106 #define PIN_IO_INTA_OUT 2
107 #define PIN_IO_INTA_HIZ 3
108
109 #define STOP_EN_STOP    BIT(0)
110
111 #define RESET_CPR       0xa4
112
113 #define NVRAM_SIZE      0x40
114
115 static struct i2c_driver pcf85363_driver;
116
117 struct pcf85363 {
118         struct device           *dev;
119         struct rtc_device       *rtc;
120         struct regmap           *regmap;
121 };
122
123 static int pcf85363_rtc_read_time(struct device *dev, struct rtc_time *tm)
124 {
125         struct pcf85363 *pcf85363 = dev_get_drvdata(dev);
126         unsigned char buf[DT_YEARS + 1];
127         int ret, len = sizeof(buf);
128
129         /* read the RTC date and time registers all at once */
130         ret = regmap_bulk_read(pcf85363->regmap, DT_100THS, buf, len);
131         if (ret) {
132                 dev_err(dev, "%s: error %d\n", __func__, ret);
133                 return ret;
134         }
135
136         tm->tm_year = bcd2bin(buf[DT_YEARS]);
137         /* adjust for 1900 base of rtc_time */
138         tm->tm_year += 100;
139
140         tm->tm_wday = buf[DT_WEEKDAYS] & 7;
141         buf[DT_SECS] &= 0x7F;
142         tm->tm_sec = bcd2bin(buf[DT_SECS]);
143         buf[DT_MINUTES] &= 0x7F;
144         tm->tm_min = bcd2bin(buf[DT_MINUTES]);
145         tm->tm_hour = bcd2bin(buf[DT_HOURS]);
146         tm->tm_mday = bcd2bin(buf[DT_DAYS]);
147         tm->tm_mon = bcd2bin(buf[DT_MONTHS]) - 1;
148
149         return 0;
150 }
151
152 static int pcf85363_rtc_set_time(struct device *dev, struct rtc_time *tm)
153 {
154         struct pcf85363 *pcf85363 = dev_get_drvdata(dev);
155         unsigned char tmp[11];
156         unsigned char *buf = &tmp[2];
157         int ret;
158
159         tmp[0] = STOP_EN_STOP;
160         tmp[1] = RESET_CPR;
161
162         buf[DT_100THS] = 0;
163         buf[DT_SECS] = bin2bcd(tm->tm_sec);
164         buf[DT_MINUTES] = bin2bcd(tm->tm_min);
165         buf[DT_HOURS] = bin2bcd(tm->tm_hour);
166         buf[DT_DAYS] = bin2bcd(tm->tm_mday);
167         buf[DT_WEEKDAYS] = tm->tm_wday;
168         buf[DT_MONTHS] = bin2bcd(tm->tm_mon + 1);
169         buf[DT_YEARS] = bin2bcd(tm->tm_year % 100);
170
171         ret = regmap_bulk_write(pcf85363->regmap, CTRL_STOP_EN,
172                                 tmp, 2);
173         if (ret)
174                 return ret;
175
176         ret = regmap_bulk_write(pcf85363->regmap, DT_100THS,
177                                 buf, sizeof(tmp) - 2);
178         if (ret)
179                 return ret;
180
181         return regmap_write(pcf85363->regmap, CTRL_STOP_EN, 0);
182 }
183
184 static int pcf85363_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
185 {
186         struct pcf85363 *pcf85363 = dev_get_drvdata(dev);
187         unsigned char buf[DT_MONTH_ALM1 - DT_SECOND_ALM1 + 1];
188         unsigned int val;
189         int ret;
190
191         ret = regmap_bulk_read(pcf85363->regmap, DT_SECOND_ALM1, buf,
192                                sizeof(buf));
193         if (ret)
194                 return ret;
195
196         alrm->time.tm_sec = bcd2bin(buf[0]);
197         alrm->time.tm_min = bcd2bin(buf[1]);
198         alrm->time.tm_hour = bcd2bin(buf[2]);
199         alrm->time.tm_mday = bcd2bin(buf[3]);
200         alrm->time.tm_mon = bcd2bin(buf[4]) - 1;
201
202         ret = regmap_read(pcf85363->regmap, CTRL_INTA_EN, &val);
203         if (ret)
204                 return ret;
205
206         alrm->enabled =  !!(val & INT_A1IE);
207
208         return 0;
209 }
210
211 static int _pcf85363_rtc_alarm_irq_enable(struct pcf85363 *pcf85363, unsigned
212                                           int enabled)
213 {
214         unsigned int alarm_flags = ALRM_SEC_A1E | ALRM_MIN_A1E | ALRM_HR_A1E |
215                                    ALRM_DAY_A1E | ALRM_MON_A1E;
216         int ret;
217
218         ret = regmap_update_bits(pcf85363->regmap, DT_ALARM_EN, alarm_flags,
219                                  enabled ? alarm_flags : 0);
220         if (ret)
221                 return ret;
222
223         ret = regmap_update_bits(pcf85363->regmap, CTRL_INTA_EN,
224                                  INT_A1IE, enabled ? INT_A1IE : 0);
225
226         if (ret || enabled)
227                 return ret;
228
229         /* clear current flags */
230         return regmap_update_bits(pcf85363->regmap, CTRL_FLAGS, FLAGS_A1F, 0);
231 }
232
233 static int pcf85363_rtc_alarm_irq_enable(struct device *dev,
234                                          unsigned int enabled)
235 {
236         struct pcf85363 *pcf85363 = dev_get_drvdata(dev);
237
238         return _pcf85363_rtc_alarm_irq_enable(pcf85363, enabled);
239 }
240
241 static int pcf85363_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
242 {
243         struct pcf85363 *pcf85363 = dev_get_drvdata(dev);
244         unsigned char buf[DT_MONTH_ALM1 - DT_SECOND_ALM1 + 1];
245         int ret;
246
247         buf[0] = bin2bcd(alrm->time.tm_sec);
248         buf[1] = bin2bcd(alrm->time.tm_min);
249         buf[2] = bin2bcd(alrm->time.tm_hour);
250         buf[3] = bin2bcd(alrm->time.tm_mday);
251         buf[4] = bin2bcd(alrm->time.tm_mon + 1);
252
253         /*
254          * Disable the alarm interrupt before changing the value to avoid
255          * spurious interrupts
256          */
257         ret = _pcf85363_rtc_alarm_irq_enable(pcf85363, 0);
258         if (ret)
259                 return ret;
260
261         ret = regmap_bulk_write(pcf85363->regmap, DT_SECOND_ALM1, buf,
262                                 sizeof(buf));
263         if (ret)
264                 return ret;
265
266         return _pcf85363_rtc_alarm_irq_enable(pcf85363, alrm->enabled);
267 }
268
269 static irqreturn_t pcf85363_rtc_handle_irq(int irq, void *dev_id)
270 {
271         struct pcf85363 *pcf85363 = i2c_get_clientdata(dev_id);
272         unsigned int flags;
273         int err;
274
275         err = regmap_read(pcf85363->regmap, CTRL_FLAGS, &flags);
276         if (err)
277                 return IRQ_NONE;
278
279         if (flags & FLAGS_A1F) {
280                 rtc_update_irq(pcf85363->rtc, 1, RTC_IRQF | RTC_AF);
281                 regmap_update_bits(pcf85363->regmap, CTRL_FLAGS, FLAGS_A1F, 0);
282                 return IRQ_HANDLED;
283         }
284
285         return IRQ_NONE;
286 }
287
288 static const struct rtc_class_ops rtc_ops = {
289         .read_time      = pcf85363_rtc_read_time,
290         .set_time       = pcf85363_rtc_set_time,
291 };
292
293 static const struct rtc_class_ops rtc_ops_alarm = {
294         .read_time      = pcf85363_rtc_read_time,
295         .set_time       = pcf85363_rtc_set_time,
296         .read_alarm     = pcf85363_rtc_read_alarm,
297         .set_alarm      = pcf85363_rtc_set_alarm,
298         .alarm_irq_enable = pcf85363_rtc_alarm_irq_enable,
299 };
300
301 static int pcf85363_nvram_read(void *priv, unsigned int offset, void *val,
302                                size_t bytes)
303 {
304         struct pcf85363 *pcf85363 = priv;
305
306         return regmap_bulk_read(pcf85363->regmap, CTRL_RAM + offset,
307                                 val, bytes);
308 }
309
310 static int pcf85363_nvram_write(void *priv, unsigned int offset, void *val,
311                                 size_t bytes)
312 {
313         struct pcf85363 *pcf85363 = priv;
314
315         return regmap_bulk_write(pcf85363->regmap, CTRL_RAM + offset,
316                                  val, bytes);
317 }
318
319 static const struct regmap_config regmap_config = {
320         .reg_bits = 8,
321         .val_bits = 8,
322         .max_register = 0x7f,
323 };
324
325 static int pcf85363_probe(struct i2c_client *client,
326                           const struct i2c_device_id *id)
327 {
328         struct pcf85363 *pcf85363;
329         struct nvmem_config nvmem_cfg = {
330                 .name = "pcf85363-",
331                 .word_size = 1,
332                 .stride = 1,
333                 .size = NVRAM_SIZE,
334                 .reg_read = pcf85363_nvram_read,
335                 .reg_write = pcf85363_nvram_write,
336         };
337         int ret;
338
339         if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
340                 return -ENODEV;
341
342         pcf85363 = devm_kzalloc(&client->dev, sizeof(struct pcf85363),
343                                 GFP_KERNEL);
344         if (!pcf85363)
345                 return -ENOMEM;
346
347         pcf85363->regmap = devm_regmap_init_i2c(client, &regmap_config);
348         if (IS_ERR(pcf85363->regmap)) {
349                 dev_err(&client->dev, "regmap allocation failed\n");
350                 return PTR_ERR(pcf85363->regmap);
351         }
352
353         pcf85363->dev = &client->dev;
354         i2c_set_clientdata(client, pcf85363);
355
356         pcf85363->rtc = devm_rtc_allocate_device(pcf85363->dev);
357         if (IS_ERR(pcf85363->rtc))
358                 return PTR_ERR(pcf85363->rtc);
359
360         pcf85363->rtc->ops = &rtc_ops;
361
362         if (client->irq > 0) {
363                 regmap_write(pcf85363->regmap, CTRL_FLAGS, 0);
364                 regmap_update_bits(pcf85363->regmap, CTRL_PIN_IO,
365                                    PIN_IO_INTA_OUT, PIN_IO_INTAPM);
366                 ret = devm_request_threaded_irq(pcf85363->dev, client->irq,
367                                                 NULL, pcf85363_rtc_handle_irq,
368                                                 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
369                                                 "pcf85363", client);
370                 if (ret)
371                         dev_warn(&client->dev, "unable to request IRQ, alarms disabled\n");
372                 else
373                         pcf85363->rtc->ops = &rtc_ops_alarm;
374         }
375
376         ret = rtc_register_device(pcf85363->rtc);
377
378         nvmem_cfg.priv = pcf85363;
379         rtc_nvmem_register(pcf85363->rtc, &nvmem_cfg);
380
381         return ret;
382 }
383
384 static const struct of_device_id dev_ids[] = {
385         { .compatible = "nxp,pcf85363" },
386         {}
387 };
388 MODULE_DEVICE_TABLE(of, dev_ids);
389
390 static struct i2c_driver pcf85363_driver = {
391         .driver = {
392                 .name   = "pcf85363",
393                 .of_match_table = of_match_ptr(dev_ids),
394         },
395         .probe  = pcf85363_probe,
396 };
397
398 module_i2c_driver(pcf85363_driver);
399
400 MODULE_AUTHOR("Eric Nelson");
401 MODULE_DESCRIPTION("pcf85363 I2C RTC driver");
402 MODULE_LICENSE("GPL");