perf intel-pt: Factor out intel_pt_8b_tsc()
[linux/fpc-iii.git] / drivers / rtc / rtc-pcf85363.c
bloba075e77617dcbe826e361294d966ca3e9041c018
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * drivers/rtc/rtc-pcf85363.c
5 * Driver for NXP PCF85363 real-time clock.
7 * Copyright (C) 2017 Eric Nelson
8 */
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>
17 #include <linux/of.h>
18 #include <linux/of_device.h>
19 #include <linux/regmap.h>
22 * Date/Time registers
24 #define DT_100THS 0x00
25 #define DT_SECS 0x01
26 #define DT_MINUTES 0x02
27 #define DT_HOURS 0x03
28 #define DT_DAYS 0x04
29 #define DT_WEEKDAYS 0x05
30 #define DT_MONTHS 0x06
31 #define DT_YEARS 0x07
34 * Alarm registers
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
55 * control registers
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
69 #define CTRL_RAM 0x40
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
110 struct pcf85363 {
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);
128 if (ret) {
129 dev_err(dev, "%s: error %d\n", __func__, ret);
130 return ret;
133 tm->tm_year = bcd2bin(buf[DT_YEARS]);
134 /* adjust for 1900 base of rtc_time */
135 tm->tm_year += 100;
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;
146 return 0;
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];
154 int ret;
156 tmp[0] = STOP_EN_STOP;
157 tmp[1] = RESET_CPR;
159 buf[DT_100THS] = 0;
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,
169 tmp, sizeof(tmp));
170 if (ret)
171 return ret;
173 return regmap_write(pcf85363->regmap, CTRL_STOP_EN, 0);
176 static int pcf85363_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
178 struct pcf85363 *pcf85363 = dev_get_drvdata(dev);
179 unsigned char buf[DT_MONTH_ALM1 - DT_SECOND_ALM1 + 1];
180 unsigned int val;
181 int ret;
183 ret = regmap_bulk_read(pcf85363->regmap, DT_SECOND_ALM1, buf,
184 sizeof(buf));
185 if (ret)
186 return ret;
188 alrm->time.tm_sec = bcd2bin(buf[0]);
189 alrm->time.tm_min = bcd2bin(buf[1]);
190 alrm->time.tm_hour = bcd2bin(buf[2]);
191 alrm->time.tm_mday = bcd2bin(buf[3]);
192 alrm->time.tm_mon = bcd2bin(buf[4]) - 1;
194 ret = regmap_read(pcf85363->regmap, CTRL_INTA_EN, &val);
195 if (ret)
196 return ret;
198 alrm->enabled = !!(val & INT_A1IE);
200 return 0;
203 static int _pcf85363_rtc_alarm_irq_enable(struct pcf85363 *pcf85363, unsigned
204 int enabled)
206 unsigned int alarm_flags = ALRM_SEC_A1E | ALRM_MIN_A1E | ALRM_HR_A1E |
207 ALRM_DAY_A1E | ALRM_MON_A1E;
208 int ret;
210 ret = regmap_update_bits(pcf85363->regmap, DT_ALARM_EN, alarm_flags,
211 enabled ? alarm_flags : 0);
212 if (ret)
213 return ret;
215 ret = regmap_update_bits(pcf85363->regmap, CTRL_INTA_EN,
216 INT_A1IE, enabled ? INT_A1IE : 0);
218 if (ret || enabled)
219 return ret;
221 /* clear current flags */
222 return regmap_update_bits(pcf85363->regmap, CTRL_FLAGS, FLAGS_A1F, 0);
225 static int pcf85363_rtc_alarm_irq_enable(struct device *dev,
226 unsigned int enabled)
228 struct pcf85363 *pcf85363 = dev_get_drvdata(dev);
230 return _pcf85363_rtc_alarm_irq_enable(pcf85363, enabled);
233 static int pcf85363_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
235 struct pcf85363 *pcf85363 = dev_get_drvdata(dev);
236 unsigned char buf[DT_MONTH_ALM1 - DT_SECOND_ALM1 + 1];
237 int ret;
239 buf[0] = bin2bcd(alrm->time.tm_sec);
240 buf[1] = bin2bcd(alrm->time.tm_min);
241 buf[2] = bin2bcd(alrm->time.tm_hour);
242 buf[3] = bin2bcd(alrm->time.tm_mday);
243 buf[4] = bin2bcd(alrm->time.tm_mon + 1);
246 * Disable the alarm interrupt before changing the value to avoid
247 * spurious interrupts
249 ret = _pcf85363_rtc_alarm_irq_enable(pcf85363, 0);
250 if (ret)
251 return ret;
253 ret = regmap_bulk_write(pcf85363->regmap, DT_SECOND_ALM1, buf,
254 sizeof(buf));
255 if (ret)
256 return ret;
258 return _pcf85363_rtc_alarm_irq_enable(pcf85363, alrm->enabled);
261 static irqreturn_t pcf85363_rtc_handle_irq(int irq, void *dev_id)
263 struct pcf85363 *pcf85363 = i2c_get_clientdata(dev_id);
264 unsigned int flags;
265 int err;
267 err = regmap_read(pcf85363->regmap, CTRL_FLAGS, &flags);
268 if (err)
269 return IRQ_NONE;
271 if (flags & FLAGS_A1F) {
272 rtc_update_irq(pcf85363->rtc, 1, RTC_IRQF | RTC_AF);
273 regmap_update_bits(pcf85363->regmap, CTRL_FLAGS, FLAGS_A1F, 0);
274 return IRQ_HANDLED;
277 return IRQ_NONE;
280 static const struct rtc_class_ops rtc_ops = {
281 .read_time = pcf85363_rtc_read_time,
282 .set_time = pcf85363_rtc_set_time,
285 static const struct rtc_class_ops rtc_ops_alarm = {
286 .read_time = pcf85363_rtc_read_time,
287 .set_time = pcf85363_rtc_set_time,
288 .read_alarm = pcf85363_rtc_read_alarm,
289 .set_alarm = pcf85363_rtc_set_alarm,
290 .alarm_irq_enable = pcf85363_rtc_alarm_irq_enable,
293 static int pcf85363_nvram_read(void *priv, unsigned int offset, void *val,
294 size_t bytes)
296 struct pcf85363 *pcf85363 = priv;
298 return regmap_bulk_read(pcf85363->regmap, CTRL_RAM + offset,
299 val, bytes);
302 static int pcf85363_nvram_write(void *priv, unsigned int offset, void *val,
303 size_t bytes)
305 struct pcf85363 *pcf85363 = priv;
307 return regmap_bulk_write(pcf85363->regmap, CTRL_RAM + offset,
308 val, bytes);
311 static int pcf85x63_nvram_read(void *priv, unsigned int offset, void *val,
312 size_t bytes)
314 struct pcf85363 *pcf85363 = priv;
315 unsigned int tmp_val;
316 int ret;
318 ret = regmap_read(pcf85363->regmap, CTRL_RAMBYTE, &tmp_val);
319 (*(unsigned char *) val) = (unsigned char) tmp_val;
321 return ret;
324 static int pcf85x63_nvram_write(void *priv, unsigned int offset, void *val,
325 size_t bytes)
327 struct pcf85363 *pcf85363 = priv;
328 unsigned char tmp_val;
330 tmp_val = *((unsigned char *)val);
331 return regmap_write(pcf85363->regmap, CTRL_RAMBYTE,
332 (unsigned int)tmp_val);
335 static const struct pcf85x63_config pcf_85263_config = {
336 .regmap = {
337 .reg_bits = 8,
338 .val_bits = 8,
339 .max_register = 0x2f,
341 .num_nvram = 1
344 static const struct pcf85x63_config pcf_85363_config = {
345 .regmap = {
346 .reg_bits = 8,
347 .val_bits = 8,
348 .max_register = 0x7f,
350 .num_nvram = 2
353 static int pcf85363_probe(struct i2c_client *client,
354 const struct i2c_device_id *id)
356 struct pcf85363 *pcf85363;
357 const struct pcf85x63_config *config = &pcf_85363_config;
358 const void *data = of_device_get_match_data(&client->dev);
359 static struct nvmem_config nvmem_cfg[] = {
361 .name = "pcf85x63-",
362 .word_size = 1,
363 .stride = 1,
364 .size = 1,
365 .reg_read = pcf85x63_nvram_read,
366 .reg_write = pcf85x63_nvram_write,
367 }, {
368 .name = "pcf85363-",
369 .word_size = 1,
370 .stride = 1,
371 .size = NVRAM_SIZE,
372 .reg_read = pcf85363_nvram_read,
373 .reg_write = pcf85363_nvram_write,
376 int ret, i;
378 if (data)
379 config = data;
381 pcf85363 = devm_kzalloc(&client->dev, sizeof(struct pcf85363),
382 GFP_KERNEL);
383 if (!pcf85363)
384 return -ENOMEM;
386 pcf85363->regmap = devm_regmap_init_i2c(client, &config->regmap);
387 if (IS_ERR(pcf85363->regmap)) {
388 dev_err(&client->dev, "regmap allocation failed\n");
389 return PTR_ERR(pcf85363->regmap);
392 i2c_set_clientdata(client, pcf85363);
394 pcf85363->rtc = devm_rtc_allocate_device(&client->dev);
395 if (IS_ERR(pcf85363->rtc))
396 return PTR_ERR(pcf85363->rtc);
398 pcf85363->rtc->ops = &rtc_ops;
399 pcf85363->rtc->range_min = RTC_TIMESTAMP_BEGIN_2000;
400 pcf85363->rtc->range_max = RTC_TIMESTAMP_END_2099;
402 if (client->irq > 0) {
403 regmap_write(pcf85363->regmap, CTRL_FLAGS, 0);
404 regmap_update_bits(pcf85363->regmap, CTRL_PIN_IO,
405 PIN_IO_INTA_OUT, PIN_IO_INTAPM);
406 ret = devm_request_threaded_irq(&client->dev, client->irq,
407 NULL, pcf85363_rtc_handle_irq,
408 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
409 "pcf85363", client);
410 if (ret)
411 dev_warn(&client->dev, "unable to request IRQ, alarms disabled\n");
412 else
413 pcf85363->rtc->ops = &rtc_ops_alarm;
416 ret = rtc_register_device(pcf85363->rtc);
418 for (i = 0; i < config->num_nvram; i++) {
419 nvmem_cfg[i].priv = pcf85363;
420 rtc_nvmem_register(pcf85363->rtc, &nvmem_cfg[i]);
423 return ret;
426 static const struct of_device_id dev_ids[] = {
427 { .compatible = "nxp,pcf85263", .data = &pcf_85263_config },
428 { .compatible = "nxp,pcf85363", .data = &pcf_85363_config },
429 { /* sentinel */ }
431 MODULE_DEVICE_TABLE(of, dev_ids);
433 static struct i2c_driver pcf85363_driver = {
434 .driver = {
435 .name = "pcf85363",
436 .of_match_table = of_match_ptr(dev_ids),
438 .probe = pcf85363_probe,
441 module_i2c_driver(pcf85363_driver);
443 MODULE_AUTHOR("Eric Nelson");
444 MODULE_DESCRIPTION("pcf85263/pcf85363 I2C RTC driver");
445 MODULE_LICENSE("GPL");