1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/rtc/rtc-pcf85363.c
5 * Driver for NXP PCF85363 real-time clock.
7 * Copyright (C) 2017 Eric Nelson
9 #include <linux/module.h>
10 #include <linux/i2c.h>
11 #include <linux/slab.h>
12 #include <linux/rtc.h>
13 #include <linux/init.h>
14 #include <linux/err.h>
15 #include <linux/errno.h>
16 #include <linux/bcd.h>
18 #include <linux/of_device.h>
19 #include <linux/regmap.h>
24 #define DT_100THS 0x00
26 #define DT_MINUTES 0x02
29 #define DT_WEEKDAYS 0x05
30 #define DT_MONTHS 0x06
36 #define DT_SECOND_ALM1 0x08
37 #define DT_MINUTE_ALM1 0x09
38 #define DT_HOUR_ALM1 0x0a
39 #define DT_DAY_ALM1 0x0b
40 #define DT_MONTH_ALM1 0x0c
41 #define DT_MINUTE_ALM2 0x0d
42 #define DT_HOUR_ALM2 0x0e
43 #define DT_WEEKDAY_ALM2 0x0f
44 #define DT_ALARM_EN 0x10
47 * Time stamp registers
49 #define DT_TIMESTAMP1 0x11
50 #define DT_TIMESTAMP2 0x17
51 #define DT_TIMESTAMP3 0x1d
52 #define DT_TS_MODE 0x23
57 #define CTRL_OFFSET 0x24
58 #define CTRL_OSCILLATOR 0x25
59 #define CTRL_BATTERY 0x26
60 #define CTRL_PIN_IO 0x27
61 #define CTRL_FUNCTION 0x28
62 #define CTRL_INTA_EN 0x29
63 #define CTRL_INTB_EN 0x2a
64 #define CTRL_FLAGS 0x2b
65 #define CTRL_RAMBYTE 0x2c
66 #define CTRL_WDOG 0x2d
67 #define CTRL_STOP_EN 0x2e
68 #define CTRL_RESETS 0x2f
71 #define ALRM_SEC_A1E BIT(0)
72 #define ALRM_MIN_A1E BIT(1)
73 #define ALRM_HR_A1E BIT(2)
74 #define ALRM_DAY_A1E BIT(3)
75 #define ALRM_MON_A1E BIT(4)
76 #define ALRM_MIN_A2E BIT(5)
77 #define ALRM_HR_A2E BIT(6)
78 #define ALRM_DAY_A2E BIT(7)
80 #define INT_WDIE BIT(0)
81 #define INT_BSIE BIT(1)
82 #define INT_TSRIE BIT(2)
83 #define INT_A2IE BIT(3)
84 #define INT_A1IE BIT(4)
85 #define INT_OIE BIT(5)
86 #define INT_PIE BIT(6)
87 #define INT_ILP BIT(7)
89 #define FLAGS_TSR1F BIT(0)
90 #define FLAGS_TSR2F BIT(1)
91 #define FLAGS_TSR3F BIT(2)
92 #define FLAGS_BSF BIT(3)
93 #define FLAGS_WDF BIT(4)
94 #define FLAGS_A1F BIT(5)
95 #define FLAGS_A2F BIT(6)
96 #define FLAGS_PIF BIT(7)
98 #define PIN_IO_INTAPM GENMASK(1, 0)
99 #define PIN_IO_INTA_CLK 0
100 #define PIN_IO_INTA_BAT 1
101 #define PIN_IO_INTA_OUT 2
102 #define PIN_IO_INTA_HIZ 3
104 #define STOP_EN_STOP BIT(0)
106 #define RESET_CPR 0xa4
108 #define NVRAM_SIZE 0x40
111 struct rtc_device
*rtc
;
112 struct regmap
*regmap
;
115 struct pcf85x63_config
{
116 struct regmap_config regmap
;
117 unsigned int num_nvram
;
120 static int pcf85363_rtc_read_time(struct device
*dev
, struct rtc_time
*tm
)
122 struct pcf85363
*pcf85363
= dev_get_drvdata(dev
);
123 unsigned char buf
[DT_YEARS
+ 1];
124 int ret
, len
= sizeof(buf
);
126 /* read the RTC date and time registers all at once */
127 ret
= regmap_bulk_read(pcf85363
->regmap
, DT_100THS
, buf
, len
);
129 dev_err(dev
, "%s: error %d\n", __func__
, ret
);
133 tm
->tm_year
= bcd2bin(buf
[DT_YEARS
]);
134 /* adjust for 1900 base of rtc_time */
137 tm
->tm_wday
= buf
[DT_WEEKDAYS
] & 7;
138 buf
[DT_SECS
] &= 0x7F;
139 tm
->tm_sec
= bcd2bin(buf
[DT_SECS
]);
140 buf
[DT_MINUTES
] &= 0x7F;
141 tm
->tm_min
= bcd2bin(buf
[DT_MINUTES
]);
142 tm
->tm_hour
= bcd2bin(buf
[DT_HOURS
]);
143 tm
->tm_mday
= bcd2bin(buf
[DT_DAYS
]);
144 tm
->tm_mon
= bcd2bin(buf
[DT_MONTHS
]) - 1;
149 static int pcf85363_rtc_set_time(struct device
*dev
, struct rtc_time
*tm
)
151 struct pcf85363
*pcf85363
= dev_get_drvdata(dev
);
152 unsigned char tmp
[11];
153 unsigned char *buf
= &tmp
[2];
156 tmp
[0] = STOP_EN_STOP
;
160 buf
[DT_SECS
] = bin2bcd(tm
->tm_sec
);
161 buf
[DT_MINUTES
] = bin2bcd(tm
->tm_min
);
162 buf
[DT_HOURS
] = bin2bcd(tm
->tm_hour
);
163 buf
[DT_DAYS
] = bin2bcd(tm
->tm_mday
);
164 buf
[DT_WEEKDAYS
] = tm
->tm_wday
;
165 buf
[DT_MONTHS
] = bin2bcd(tm
->tm_mon
+ 1);
166 buf
[DT_YEARS
] = bin2bcd(tm
->tm_year
% 100);
168 ret
= regmap_bulk_write(pcf85363
->regmap
, CTRL_STOP_EN
,
173 ret
= regmap_bulk_write(pcf85363
->regmap
, DT_100THS
,
174 buf
, sizeof(tmp
) - 2);
178 return regmap_write(pcf85363
->regmap
, CTRL_STOP_EN
, 0);
181 static int pcf85363_rtc_read_alarm(struct device
*dev
, struct rtc_wkalrm
*alrm
)
183 struct pcf85363
*pcf85363
= dev_get_drvdata(dev
);
184 unsigned char buf
[DT_MONTH_ALM1
- DT_SECOND_ALM1
+ 1];
188 ret
= regmap_bulk_read(pcf85363
->regmap
, DT_SECOND_ALM1
, buf
,
193 alrm
->time
.tm_sec
= bcd2bin(buf
[0]);
194 alrm
->time
.tm_min
= bcd2bin(buf
[1]);
195 alrm
->time
.tm_hour
= bcd2bin(buf
[2]);
196 alrm
->time
.tm_mday
= bcd2bin(buf
[3]);
197 alrm
->time
.tm_mon
= bcd2bin(buf
[4]) - 1;
199 ret
= regmap_read(pcf85363
->regmap
, CTRL_INTA_EN
, &val
);
203 alrm
->enabled
= !!(val
& INT_A1IE
);
208 static int _pcf85363_rtc_alarm_irq_enable(struct pcf85363
*pcf85363
, unsigned
211 unsigned int alarm_flags
= ALRM_SEC_A1E
| ALRM_MIN_A1E
| ALRM_HR_A1E
|
212 ALRM_DAY_A1E
| ALRM_MON_A1E
;
215 ret
= regmap_update_bits(pcf85363
->regmap
, DT_ALARM_EN
, alarm_flags
,
216 enabled
? alarm_flags
: 0);
220 ret
= regmap_update_bits(pcf85363
->regmap
, CTRL_INTA_EN
,
221 INT_A1IE
, enabled
? INT_A1IE
: 0);
226 /* clear current flags */
227 return regmap_update_bits(pcf85363
->regmap
, CTRL_FLAGS
, FLAGS_A1F
, 0);
230 static int pcf85363_rtc_alarm_irq_enable(struct device
*dev
,
231 unsigned int enabled
)
233 struct pcf85363
*pcf85363
= dev_get_drvdata(dev
);
235 return _pcf85363_rtc_alarm_irq_enable(pcf85363
, enabled
);
238 static int pcf85363_rtc_set_alarm(struct device
*dev
, struct rtc_wkalrm
*alrm
)
240 struct pcf85363
*pcf85363
= dev_get_drvdata(dev
);
241 unsigned char buf
[DT_MONTH_ALM1
- DT_SECOND_ALM1
+ 1];
244 buf
[0] = bin2bcd(alrm
->time
.tm_sec
);
245 buf
[1] = bin2bcd(alrm
->time
.tm_min
);
246 buf
[2] = bin2bcd(alrm
->time
.tm_hour
);
247 buf
[3] = bin2bcd(alrm
->time
.tm_mday
);
248 buf
[4] = bin2bcd(alrm
->time
.tm_mon
+ 1);
251 * Disable the alarm interrupt before changing the value to avoid
252 * spurious interrupts
254 ret
= _pcf85363_rtc_alarm_irq_enable(pcf85363
, 0);
258 ret
= regmap_bulk_write(pcf85363
->regmap
, DT_SECOND_ALM1
, buf
,
263 return _pcf85363_rtc_alarm_irq_enable(pcf85363
, alrm
->enabled
);
266 static irqreturn_t
pcf85363_rtc_handle_irq(int irq
, void *dev_id
)
268 struct pcf85363
*pcf85363
= i2c_get_clientdata(dev_id
);
272 err
= regmap_read(pcf85363
->regmap
, CTRL_FLAGS
, &flags
);
276 if (flags
& FLAGS_A1F
) {
277 rtc_update_irq(pcf85363
->rtc
, 1, RTC_IRQF
| RTC_AF
);
278 regmap_update_bits(pcf85363
->regmap
, CTRL_FLAGS
, FLAGS_A1F
, 0);
285 static const struct rtc_class_ops rtc_ops
= {
286 .read_time
= pcf85363_rtc_read_time
,
287 .set_time
= pcf85363_rtc_set_time
,
290 static const struct rtc_class_ops rtc_ops_alarm
= {
291 .read_time
= pcf85363_rtc_read_time
,
292 .set_time
= pcf85363_rtc_set_time
,
293 .read_alarm
= pcf85363_rtc_read_alarm
,
294 .set_alarm
= pcf85363_rtc_set_alarm
,
295 .alarm_irq_enable
= pcf85363_rtc_alarm_irq_enable
,
298 static int pcf85363_nvram_read(void *priv
, unsigned int offset
, void *val
,
301 struct pcf85363
*pcf85363
= priv
;
303 return regmap_bulk_read(pcf85363
->regmap
, CTRL_RAM
+ offset
,
307 static int pcf85363_nvram_write(void *priv
, unsigned int offset
, void *val
,
310 struct pcf85363
*pcf85363
= priv
;
312 return regmap_bulk_write(pcf85363
->regmap
, CTRL_RAM
+ offset
,
316 static int pcf85x63_nvram_read(void *priv
, unsigned int offset
, void *val
,
319 struct pcf85363
*pcf85363
= priv
;
320 unsigned int tmp_val
;
323 ret
= regmap_read(pcf85363
->regmap
, CTRL_RAMBYTE
, &tmp_val
);
324 (*(unsigned char *) val
) = (unsigned char) tmp_val
;
329 static int pcf85x63_nvram_write(void *priv
, unsigned int offset
, void *val
,
332 struct pcf85363
*pcf85363
= priv
;
333 unsigned char tmp_val
;
335 tmp_val
= *((unsigned char *)val
);
336 return regmap_write(pcf85363
->regmap
, CTRL_RAMBYTE
,
337 (unsigned int)tmp_val
);
340 static const struct pcf85x63_config pcf_85263_config
= {
344 .max_register
= 0x2f,
349 static const struct pcf85x63_config pcf_85363_config
= {
353 .max_register
= 0x7f,
358 static int pcf85363_probe(struct i2c_client
*client
,
359 const struct i2c_device_id
*id
)
361 struct pcf85363
*pcf85363
;
362 const struct pcf85x63_config
*config
= &pcf_85363_config
;
363 const void *data
= of_device_get_match_data(&client
->dev
);
364 static struct nvmem_config nvmem_cfg
[] = {
370 .reg_read
= pcf85x63_nvram_read
,
371 .reg_write
= pcf85x63_nvram_write
,
377 .reg_read
= pcf85363_nvram_read
,
378 .reg_write
= pcf85363_nvram_write
,
386 pcf85363
= devm_kzalloc(&client
->dev
, sizeof(struct pcf85363
),
391 pcf85363
->regmap
= devm_regmap_init_i2c(client
, &config
->regmap
);
392 if (IS_ERR(pcf85363
->regmap
)) {
393 dev_err(&client
->dev
, "regmap allocation failed\n");
394 return PTR_ERR(pcf85363
->regmap
);
397 i2c_set_clientdata(client
, pcf85363
);
399 pcf85363
->rtc
= devm_rtc_allocate_device(&client
->dev
);
400 if (IS_ERR(pcf85363
->rtc
))
401 return PTR_ERR(pcf85363
->rtc
);
403 pcf85363
->rtc
->ops
= &rtc_ops
;
404 pcf85363
->rtc
->range_min
= RTC_TIMESTAMP_BEGIN_2000
;
405 pcf85363
->rtc
->range_max
= RTC_TIMESTAMP_END_2099
;
407 if (client
->irq
> 0) {
408 regmap_write(pcf85363
->regmap
, CTRL_FLAGS
, 0);
409 regmap_update_bits(pcf85363
->regmap
, CTRL_PIN_IO
,
410 PIN_IO_INTA_OUT
, PIN_IO_INTAPM
);
411 ret
= devm_request_threaded_irq(&client
->dev
, client
->irq
,
412 NULL
, pcf85363_rtc_handle_irq
,
413 IRQF_TRIGGER_LOW
| IRQF_ONESHOT
,
416 dev_warn(&client
->dev
, "unable to request IRQ, alarms disabled\n");
418 pcf85363
->rtc
->ops
= &rtc_ops_alarm
;
421 ret
= rtc_register_device(pcf85363
->rtc
);
423 for (i
= 0; i
< config
->num_nvram
; i
++) {
424 nvmem_cfg
[i
].priv
= pcf85363
;
425 rtc_nvmem_register(pcf85363
->rtc
, &nvmem_cfg
[i
]);
431 static const struct of_device_id dev_ids
[] = {
432 { .compatible
= "nxp,pcf85263", .data
= &pcf_85263_config
},
433 { .compatible
= "nxp,pcf85363", .data
= &pcf_85363_config
},
436 MODULE_DEVICE_TABLE(of
, dev_ids
);
438 static struct i2c_driver pcf85363_driver
= {
441 .of_match_table
= of_match_ptr(dev_ids
),
443 .probe
= pcf85363_probe
,
446 module_i2c_driver(pcf85363_driver
);
448 MODULE_AUTHOR("Eric Nelson");
449 MODULE_DESCRIPTION("pcf85263/pcf85363 I2C RTC driver");
450 MODULE_LICENSE("GPL");