1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Intersil ISL1208 rtc class driver
5 * Copyright 2005,2006 Hebert Valerio Riedel <hvr@gnu.org>
10 #include <linux/i2c.h>
11 #include <linux/module.h>
13 #include <linux/of_irq.h>
14 #include <linux/rtc.h>
18 #define ISL1208_REG_SC 0x00
19 #define ISL1208_REG_MN 0x01
20 #define ISL1208_REG_HR 0x02
21 #define ISL1208_REG_HR_MIL (1<<7) /* 24h/12h mode */
22 #define ISL1208_REG_HR_PM (1<<5) /* PM/AM bit in 12h mode */
23 #define ISL1208_REG_DT 0x03
24 #define ISL1208_REG_MO 0x04
25 #define ISL1208_REG_YR 0x05
26 #define ISL1208_REG_DW 0x06
27 #define ISL1208_RTC_SECTION_LEN 7
29 /* control/status section */
30 #define ISL1208_REG_SR 0x07
31 #define ISL1208_REG_SR_ARST (1<<7) /* auto reset */
32 #define ISL1208_REG_SR_XTOSCB (1<<6) /* crystal oscillator */
33 #define ISL1208_REG_SR_WRTC (1<<4) /* write rtc */
34 #define ISL1208_REG_SR_EVT (1<<3) /* event */
35 #define ISL1208_REG_SR_ALM (1<<2) /* alarm */
36 #define ISL1208_REG_SR_BAT (1<<1) /* battery */
37 #define ISL1208_REG_SR_RTCF (1<<0) /* rtc fail */
38 #define ISL1208_REG_INT 0x08
39 #define ISL1208_REG_INT_ALME (1<<6) /* alarm enable */
40 #define ISL1208_REG_INT_IM (1<<7) /* interrupt/alarm mode */
41 #define ISL1219_REG_EV 0x09
42 #define ISL1219_REG_EV_EVEN (1<<4) /* event detection enable */
43 #define ISL1219_REG_EV_EVIENB (1<<7) /* event in pull-up disable */
44 #define ISL1208_REG_ATR 0x0a
45 #define ISL1208_REG_DTR 0x0b
48 #define ISL1208_REG_SCA 0x0c
49 #define ISL1208_REG_MNA 0x0d
50 #define ISL1208_REG_HRA 0x0e
51 #define ISL1208_REG_DTA 0x0f
52 #define ISL1208_REG_MOA 0x10
53 #define ISL1208_REG_DWA 0x11
54 #define ISL1208_ALARM_SECTION_LEN 6
57 #define ISL1208_REG_USR1 0x12
58 #define ISL1208_REG_USR2 0x13
59 #define ISL1208_USR_SECTION_LEN 2
62 #define ISL1219_REG_SCT 0x14
63 #define ISL1219_REG_MNT 0x15
64 #define ISL1219_REG_HRT 0x16
65 #define ISL1219_REG_DTT 0x17
66 #define ISL1219_REG_MOT 0x18
67 #define ISL1219_REG_YRT 0x19
68 #define ISL1219_EVT_SECTION_LEN 6
70 static struct i2c_driver isl1208_driver;
72 /* Chip capabilities table */
73 struct isl1208_config {
74 unsigned int nvmem_length;
75 unsigned has_tamper:1;
76 unsigned has_timestamp:1;
77 unsigned has_inverted_osc_bit:1;
80 static const struct isl1208_config config_isl1208 = {
83 .has_timestamp = false
86 static const struct isl1208_config config_isl1209 = {
89 .has_timestamp = false
92 static const struct isl1208_config config_isl1218 = {
95 .has_timestamp = false
98 static const struct isl1208_config config_isl1219 = {
101 .has_timestamp = true
104 static const struct isl1208_config config_raa215300_a0 = {
107 .has_timestamp = false,
108 .has_inverted_osc_bit = true
111 static const struct i2c_device_id isl1208_id[] = {
112 { "isl1208", .driver_data = (kernel_ulong_t)&config_isl1208 },
113 { "isl1209", .driver_data = (kernel_ulong_t)&config_isl1209 },
114 { "isl1218", .driver_data = (kernel_ulong_t)&config_isl1218 },
115 { "isl1219", .driver_data = (kernel_ulong_t)&config_isl1219 },
116 { "raa215300_a0", .driver_data = (kernel_ulong_t)&config_raa215300_a0 },
119 MODULE_DEVICE_TABLE(i2c, isl1208_id);
121 static const __maybe_unused struct of_device_id isl1208_of_match[] = {
122 { .compatible = "isil,isl1208", .data = &config_isl1208 },
123 { .compatible = "isil,isl1209", .data = &config_isl1209 },
124 { .compatible = "isil,isl1218", .data = &config_isl1218 },
125 { .compatible = "isil,isl1219", .data = &config_isl1219 },
128 MODULE_DEVICE_TABLE(of, isl1208_of_match);
131 struct isl1208_state {
132 struct nvmem_config nvmem_config;
133 struct rtc_device *rtc;
134 const struct isl1208_config *config;
139 isl1208_i2c_read_regs(struct i2c_client *client, u8 reg, u8 buf[],
144 WARN_ON(reg > ISL1219_REG_YRT);
145 WARN_ON(reg + len > ISL1219_REG_YRT + 1);
147 ret = i2c_smbus_read_i2c_block_data(client, reg, len, buf);
148 return (ret < 0) ? ret : 0;
153 isl1208_i2c_set_regs(struct i2c_client *client, u8 reg, u8 const buf[],
158 WARN_ON(reg > ISL1219_REG_YRT);
159 WARN_ON(reg + len > ISL1219_REG_YRT + 1);
161 ret = i2c_smbus_write_i2c_block_data(client, reg, len, buf);
162 return (ret < 0) ? ret : 0;
165 /* simple check to see whether we have a isl1208 */
167 isl1208_i2c_validate_client(struct i2c_client *client)
169 u8 regs[ISL1208_RTC_SECTION_LEN] = { 0, };
170 u8 zero_mask[ISL1208_RTC_SECTION_LEN] = {
171 0x80, 0x80, 0x40, 0xc0, 0xe0, 0x00, 0xf8
176 ret = isl1208_i2c_read_regs(client, 0, regs, ISL1208_RTC_SECTION_LEN);
180 for (i = 0; i < ISL1208_RTC_SECTION_LEN; ++i) {
181 if (regs[i] & zero_mask[i]) /* check if bits are cleared */
188 static int isl1208_set_xtoscb(struct i2c_client *client, int sr, int xtosb_val)
190 /* Do nothing if bit is already set to desired value */
191 if (!!(sr & ISL1208_REG_SR_XTOSCB) == xtosb_val)
195 sr |= ISL1208_REG_SR_XTOSCB;
197 sr &= ~ISL1208_REG_SR_XTOSCB;
199 return i2c_smbus_write_byte_data(client, ISL1208_REG_SR, sr);
203 isl1208_i2c_get_sr(struct i2c_client *client)
205 return i2c_smbus_read_byte_data(client, ISL1208_REG_SR);
209 isl1208_i2c_get_atr(struct i2c_client *client)
211 int atr = i2c_smbus_read_byte_data(client, ISL1208_REG_ATR);
215 /* The 6bit value in the ATR register controls the load
216 * capacitance C_load * in steps of 0.25pF
218 * bit (1<<5) of the ATR register is inverted
220 * C_load(ATR=0x20) = 4.50pF
221 * C_load(ATR=0x00) = 12.50pF
222 * C_load(ATR=0x1f) = 20.25pF
226 atr &= 0x3f; /* mask out lsb */
227 atr ^= 1 << 5; /* invert 6th bit */
228 atr += 2 * 9; /* add offset of 4.5pF; unit[atr] = 0.25pF */
233 /* returns adjustment value + 100 */
235 isl1208_i2c_get_dtr(struct i2c_client *client)
237 int dtr = i2c_smbus_read_byte_data(client, ISL1208_REG_DTR);
241 /* dtr encodes adjustments of {-60,-40,-20,0,20,40,60} ppm */
242 dtr = ((dtr & 0x3) * 20) * (dtr & (1 << 2) ? -1 : 1);
248 isl1208_i2c_get_usr(struct i2c_client *client)
250 u8 buf[ISL1208_USR_SECTION_LEN] = { 0, };
253 ret = isl1208_i2c_read_regs(client, ISL1208_REG_USR1, buf,
254 ISL1208_USR_SECTION_LEN);
258 return (buf[1] << 8) | buf[0];
262 isl1208_i2c_set_usr(struct i2c_client *client, u16 usr)
264 u8 buf[ISL1208_USR_SECTION_LEN];
267 buf[1] = (usr >> 8) & 0xff;
269 return isl1208_i2c_set_regs(client, ISL1208_REG_USR1, buf,
270 ISL1208_USR_SECTION_LEN);
274 isl1208_rtc_toggle_alarm(struct i2c_client *client, int enable)
276 int icr = i2c_smbus_read_byte_data(client, ISL1208_REG_INT);
279 dev_err(&client->dev, "%s: reading INT failed\n", __func__);
284 icr |= ISL1208_REG_INT_ALME | ISL1208_REG_INT_IM;
286 icr &= ~(ISL1208_REG_INT_ALME | ISL1208_REG_INT_IM);
288 icr = i2c_smbus_write_byte_data(client, ISL1208_REG_INT, icr);
290 dev_err(&client->dev, "%s: writing INT failed\n", __func__);
298 isl1208_rtc_proc(struct device *dev, struct seq_file *seq)
300 struct i2c_client *const client = to_i2c_client(dev);
301 int sr, dtr, atr, usr;
303 sr = isl1208_i2c_get_sr(client);
305 dev_err(&client->dev, "%s: reading SR failed\n", __func__);
309 seq_printf(seq, "status_reg\t:%s%s%s%s%s%s (0x%.2x)\n",
310 (sr & ISL1208_REG_SR_RTCF) ? " RTCF" : "",
311 (sr & ISL1208_REG_SR_BAT) ? " BAT" : "",
312 (sr & ISL1208_REG_SR_ALM) ? " ALM" : "",
313 (sr & ISL1208_REG_SR_WRTC) ? " WRTC" : "",
314 (sr & ISL1208_REG_SR_XTOSCB) ? " XTOSCB" : "",
315 (sr & ISL1208_REG_SR_ARST) ? " ARST" : "", sr);
317 seq_printf(seq, "batt_status\t: %s\n",
318 (sr & ISL1208_REG_SR_RTCF) ? "bad" : "okay");
320 dtr = isl1208_i2c_get_dtr(client);
322 seq_printf(seq, "digital_trim\t: %d ppm\n", dtr - 100);
324 atr = isl1208_i2c_get_atr(client);
326 seq_printf(seq, "analog_trim\t: %d.%.2d pF\n",
327 atr >> 2, (atr & 0x3) * 25);
329 usr = isl1208_i2c_get_usr(client);
331 seq_printf(seq, "user_data\t: 0x%.4x\n", usr);
337 isl1208_i2c_read_time(struct i2c_client *client, struct rtc_time *tm)
340 u8 regs[ISL1208_RTC_SECTION_LEN] = { 0, };
342 sr = isl1208_i2c_get_sr(client);
344 dev_err(&client->dev, "%s: reading SR failed\n", __func__);
348 sr = isl1208_i2c_read_regs(client, 0, regs, ISL1208_RTC_SECTION_LEN);
350 dev_err(&client->dev, "%s: reading RTC section failed\n",
355 tm->tm_sec = bcd2bin(regs[ISL1208_REG_SC]);
356 tm->tm_min = bcd2bin(regs[ISL1208_REG_MN]);
358 /* HR field has a more complex interpretation */
360 const u8 _hr = regs[ISL1208_REG_HR];
361 if (_hr & ISL1208_REG_HR_MIL) /* 24h format */
362 tm->tm_hour = bcd2bin(_hr & 0x3f);
365 tm->tm_hour = bcd2bin(_hr & 0x1f);
366 if (_hr & ISL1208_REG_HR_PM) /* PM flag set */
371 tm->tm_mday = bcd2bin(regs[ISL1208_REG_DT]);
372 tm->tm_mon = bcd2bin(regs[ISL1208_REG_MO]) - 1; /* rtc starts at 1 */
373 tm->tm_year = bcd2bin(regs[ISL1208_REG_YR]) + 100;
374 tm->tm_wday = bcd2bin(regs[ISL1208_REG_DW]);
380 isl1208_i2c_read_alarm(struct i2c_client *client, struct rtc_wkalrm *alarm)
382 struct rtc_time *const tm = &alarm->time;
383 u8 regs[ISL1208_ALARM_SECTION_LEN] = { 0, };
384 int icr, yr, sr = isl1208_i2c_get_sr(client);
387 dev_err(&client->dev, "%s: reading SR failed\n", __func__);
391 sr = isl1208_i2c_read_regs(client, ISL1208_REG_SCA, regs,
392 ISL1208_ALARM_SECTION_LEN);
394 dev_err(&client->dev, "%s: reading alarm section failed\n",
399 /* MSB of each alarm register is an enable bit */
400 tm->tm_sec = bcd2bin(regs[ISL1208_REG_SCA - ISL1208_REG_SCA] & 0x7f);
401 tm->tm_min = bcd2bin(regs[ISL1208_REG_MNA - ISL1208_REG_SCA] & 0x7f);
402 tm->tm_hour = bcd2bin(regs[ISL1208_REG_HRA - ISL1208_REG_SCA] & 0x3f);
403 tm->tm_mday = bcd2bin(regs[ISL1208_REG_DTA - ISL1208_REG_SCA] & 0x3f);
405 bcd2bin(regs[ISL1208_REG_MOA - ISL1208_REG_SCA] & 0x1f) - 1;
406 tm->tm_wday = bcd2bin(regs[ISL1208_REG_DWA - ISL1208_REG_SCA] & 0x03);
408 /* The alarm doesn't store the year so get it from the rtc section */
409 yr = i2c_smbus_read_byte_data(client, ISL1208_REG_YR);
411 dev_err(&client->dev, "%s: reading RTC YR failed\n", __func__);
414 tm->tm_year = bcd2bin(yr) + 100;
416 icr = i2c_smbus_read_byte_data(client, ISL1208_REG_INT);
418 dev_err(&client->dev, "%s: reading INT failed\n", __func__);
421 alarm->enabled = !!(icr & ISL1208_REG_INT_ALME);
427 isl1208_i2c_set_alarm(struct i2c_client *client, struct rtc_wkalrm *alarm)
429 struct rtc_time *alarm_tm = &alarm->time;
430 u8 regs[ISL1208_ALARM_SECTION_LEN] = { 0, };
431 const int offs = ISL1208_REG_SCA;
432 struct rtc_time rtc_tm;
435 err = isl1208_i2c_read_time(client, &rtc_tm);
439 /* If the alarm time is before the current time disable the alarm */
440 if (!alarm->enabled || rtc_tm_sub(alarm_tm, &rtc_tm) <= 0)
445 /* Program the alarm and enable it for each setting */
446 regs[ISL1208_REG_SCA - offs] = bin2bcd(alarm_tm->tm_sec) | enable;
447 regs[ISL1208_REG_MNA - offs] = bin2bcd(alarm_tm->tm_min) | enable;
448 regs[ISL1208_REG_HRA - offs] = bin2bcd(alarm_tm->tm_hour) |
449 ISL1208_REG_HR_MIL | enable;
451 regs[ISL1208_REG_DTA - offs] = bin2bcd(alarm_tm->tm_mday) | enable;
452 regs[ISL1208_REG_MOA - offs] = bin2bcd(alarm_tm->tm_mon + 1) | enable;
453 regs[ISL1208_REG_DWA - offs] = bin2bcd(alarm_tm->tm_wday & 7) | enable;
455 /* write ALARM registers */
456 err = isl1208_i2c_set_regs(client, offs, regs,
457 ISL1208_ALARM_SECTION_LEN);
459 dev_err(&client->dev, "%s: writing ALARM section failed\n",
464 err = isl1208_rtc_toggle_alarm(client, enable);
472 isl1208_rtc_read_time(struct device *dev, struct rtc_time *tm)
474 return isl1208_i2c_read_time(to_i2c_client(dev), tm);
478 isl1208_i2c_set_time(struct i2c_client *client, struct rtc_time const *tm)
481 u8 regs[ISL1208_RTC_SECTION_LEN] = { 0, };
483 /* The clock has an 8 bit wide bcd-coded register (they never learn)
484 * for the year. tm_year is an offset from 1900 and we are interested
485 * in the 2000-2099 range, so any value less than 100 is invalid.
487 if (tm->tm_year < 100)
490 regs[ISL1208_REG_SC] = bin2bcd(tm->tm_sec);
491 regs[ISL1208_REG_MN] = bin2bcd(tm->tm_min);
492 regs[ISL1208_REG_HR] = bin2bcd(tm->tm_hour) | ISL1208_REG_HR_MIL;
494 regs[ISL1208_REG_DT] = bin2bcd(tm->tm_mday);
495 regs[ISL1208_REG_MO] = bin2bcd(tm->tm_mon + 1);
496 regs[ISL1208_REG_YR] = bin2bcd(tm->tm_year - 100);
498 regs[ISL1208_REG_DW] = bin2bcd(tm->tm_wday & 7);
500 sr = isl1208_i2c_get_sr(client);
502 dev_err(&client->dev, "%s: reading SR failed\n", __func__);
507 sr = i2c_smbus_write_byte_data(client, ISL1208_REG_SR,
508 sr | ISL1208_REG_SR_WRTC);
510 dev_err(&client->dev, "%s: writing SR failed\n", __func__);
514 /* write RTC registers */
515 sr = isl1208_i2c_set_regs(client, 0, regs, ISL1208_RTC_SECTION_LEN);
517 dev_err(&client->dev, "%s: writing RTC section failed\n",
522 /* clear WRTC again */
523 sr = isl1208_i2c_get_sr(client);
525 dev_err(&client->dev, "%s: reading SR failed\n", __func__);
528 sr = i2c_smbus_write_byte_data(client, ISL1208_REG_SR,
529 sr & ~ISL1208_REG_SR_WRTC);
531 dev_err(&client->dev, "%s: writing SR failed\n", __func__);
539 isl1208_rtc_set_time(struct device *dev, struct rtc_time *tm)
541 return isl1208_i2c_set_time(to_i2c_client(dev), tm);
545 isl1208_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
547 return isl1208_i2c_read_alarm(to_i2c_client(dev), alarm);
551 isl1208_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
553 return isl1208_i2c_set_alarm(to_i2c_client(dev), alarm);
556 static ssize_t timestamp0_store(struct device *dev,
557 struct device_attribute *attr,
558 const char *buf, size_t count)
560 struct i2c_client *client = to_i2c_client(dev->parent);
563 sr = isl1208_i2c_get_sr(client);
565 dev_err(dev, "%s: reading SR failed\n", __func__);
569 sr &= ~ISL1208_REG_SR_EVT;
571 sr = i2c_smbus_write_byte_data(client, ISL1208_REG_SR, sr);
573 dev_err(dev, "%s: writing SR failed\n",
579 static ssize_t timestamp0_show(struct device *dev,
580 struct device_attribute *attr, char *buf)
582 struct i2c_client *client = to_i2c_client(dev->parent);
583 u8 regs[ISL1219_EVT_SECTION_LEN] = { 0, };
587 sr = isl1208_i2c_get_sr(client);
589 dev_err(dev, "%s: reading SR failed\n", __func__);
593 if (!(sr & ISL1208_REG_SR_EVT))
596 sr = isl1208_i2c_read_regs(client, ISL1219_REG_SCT, regs,
597 ISL1219_EVT_SECTION_LEN);
599 dev_err(dev, "%s: reading event section failed\n",
604 /* MSB of each alarm register is an enable bit */
605 tm.tm_sec = bcd2bin(regs[ISL1219_REG_SCT - ISL1219_REG_SCT] & 0x7f);
606 tm.tm_min = bcd2bin(regs[ISL1219_REG_MNT - ISL1219_REG_SCT] & 0x7f);
607 tm.tm_hour = bcd2bin(regs[ISL1219_REG_HRT - ISL1219_REG_SCT] & 0x3f);
608 tm.tm_mday = bcd2bin(regs[ISL1219_REG_DTT - ISL1219_REG_SCT] & 0x3f);
610 bcd2bin(regs[ISL1219_REG_MOT - ISL1219_REG_SCT] & 0x1f) - 1;
611 tm.tm_year = bcd2bin(regs[ISL1219_REG_YRT - ISL1219_REG_SCT]) + 100;
613 sr = rtc_valid_tm(&tm);
617 return sprintf(buf, "%llu\n",
618 (unsigned long long)rtc_tm_to_time64(&tm));
621 static DEVICE_ATTR_RW(timestamp0);
624 isl1208_rtc_interrupt(int irq, void *data)
626 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
627 struct i2c_client *client = data;
628 struct isl1208_state *isl1208 = i2c_get_clientdata(client);
629 int handled = 0, sr, err;
632 * I2C reads get NAK'ed if we read straight away after an interrupt?
633 * Using a mdelay/msleep didn't seem to help either, so we work around
634 * this by continually trying to read the register for a short time.
637 sr = isl1208_i2c_get_sr(client);
641 if (time_after(jiffies, timeout)) {
642 dev_err(&client->dev, "%s: reading SR failed\n",
648 if (sr & ISL1208_REG_SR_ALM) {
649 dev_dbg(&client->dev, "alarm!\n");
651 rtc_update_irq(isl1208->rtc, 1, RTC_IRQF | RTC_AF);
653 /* Clear the alarm */
654 sr &= ~ISL1208_REG_SR_ALM;
655 sr = i2c_smbus_write_byte_data(client, ISL1208_REG_SR, sr);
657 dev_err(&client->dev, "%s: writing SR failed\n",
662 /* Disable the alarm */
663 err = isl1208_rtc_toggle_alarm(client, 0);
668 if (isl1208->config->has_tamper && (sr & ISL1208_REG_SR_EVT)) {
669 dev_warn(&client->dev, "event detected");
671 if (isl1208->config->has_timestamp)
672 sysfs_notify(&isl1208->rtc->dev.kobj, NULL,
673 dev_attr_timestamp0.attr.name);
676 return handled ? IRQ_HANDLED : IRQ_NONE;
679 static const struct rtc_class_ops isl1208_rtc_ops = {
680 .proc = isl1208_rtc_proc,
681 .read_time = isl1208_rtc_read_time,
682 .set_time = isl1208_rtc_set_time,
683 .read_alarm = isl1208_rtc_read_alarm,
684 .set_alarm = isl1208_rtc_set_alarm,
687 /* sysfs interface */
690 isl1208_sysfs_show_atrim(struct device *dev,
691 struct device_attribute *attr, char *buf)
693 int atr = isl1208_i2c_get_atr(to_i2c_client(dev->parent));
697 return sprintf(buf, "%d.%.2d pF\n", atr >> 2, (atr & 0x3) * 25);
700 static DEVICE_ATTR(atrim, S_IRUGO, isl1208_sysfs_show_atrim, NULL);
703 isl1208_sysfs_show_dtrim(struct device *dev,
704 struct device_attribute *attr, char *buf)
706 int dtr = isl1208_i2c_get_dtr(to_i2c_client(dev->parent));
710 return sprintf(buf, "%d ppm\n", dtr - 100);
713 static DEVICE_ATTR(dtrim, S_IRUGO, isl1208_sysfs_show_dtrim, NULL);
716 isl1208_sysfs_show_usr(struct device *dev,
717 struct device_attribute *attr, char *buf)
719 int usr = isl1208_i2c_get_usr(to_i2c_client(dev->parent));
723 return sprintf(buf, "0x%.4x\n", usr);
727 isl1208_sysfs_store_usr(struct device *dev,
728 struct device_attribute *attr,
729 const char *buf, size_t count)
733 if (buf[0] == '0' && (buf[1] == 'x' || buf[1] == 'X')) {
734 if (sscanf(buf, "%x", &usr) != 1)
737 if (sscanf(buf, "%d", &usr) != 1)
741 if (usr < 0 || usr > 0xffff)
744 if (isl1208_i2c_set_usr(to_i2c_client(dev->parent), usr))
750 static DEVICE_ATTR(usr, S_IRUGO | S_IWUSR, isl1208_sysfs_show_usr,
751 isl1208_sysfs_store_usr);
753 static struct attribute *isl1208_rtc_attrs[] = {
754 &dev_attr_atrim.attr,
755 &dev_attr_dtrim.attr,
760 static const struct attribute_group isl1208_rtc_sysfs_files = {
761 .attrs = isl1208_rtc_attrs,
764 static struct attribute *isl1219_rtc_attrs[] = {
765 &dev_attr_timestamp0.attr,
769 static const struct attribute_group isl1219_rtc_sysfs_files = {
770 .attrs = isl1219_rtc_attrs,
773 static int isl1208_nvmem_read(void *priv, unsigned int off, void *buf,
776 struct isl1208_state *isl1208 = priv;
777 struct i2c_client *client = to_i2c_client(isl1208->rtc->dev.parent);
780 /* nvmem sanitizes offset/count for us, but count==0 is possible */
783 ret = isl1208_i2c_read_regs(client, ISL1208_REG_USR1 + off, buf,
785 return ret == 0 ? count : ret;
788 static int isl1208_nvmem_write(void *priv, unsigned int off, void *buf,
791 struct isl1208_state *isl1208 = priv;
792 struct i2c_client *client = to_i2c_client(isl1208->rtc->dev.parent);
795 /* nvmem sanitizes off/count for us, but count==0 is possible */
798 ret = isl1208_i2c_set_regs(client, ISL1208_REG_USR1 + off, buf,
801 return ret == 0 ? count : ret;
804 static const struct nvmem_config isl1208_nvmem_config = {
805 .name = "isl1208_nvram",
808 /* .size from chip specific config */
809 .reg_read = isl1208_nvmem_read,
810 .reg_write = isl1208_nvmem_write,
813 static int isl1208_setup_irq(struct i2c_client *client, int irq)
815 int rc = devm_request_threaded_irq(&client->dev, irq, NULL,
816 isl1208_rtc_interrupt,
817 IRQF_SHARED | IRQF_ONESHOT,
818 isl1208_driver.driver.name,
821 device_init_wakeup(&client->dev, 1);
822 enable_irq_wake(irq);
824 dev_err(&client->dev,
825 "Unable to request irq %d, no alarm support\n",
832 isl1208_clk_present(struct i2c_client *client, const char *name)
836 clk = devm_clk_get_optional(&client->dev, name);
844 isl1208_probe(struct i2c_client *client)
846 struct isl1208_state *isl1208;
852 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
855 if (isl1208_i2c_validate_client(client) < 0)
858 /* Allocate driver state, point i2c client data to it */
859 isl1208 = devm_kzalloc(&client->dev, sizeof(*isl1208), GFP_KERNEL);
862 i2c_set_clientdata(client, isl1208);
864 /* Determine which chip we have */
865 isl1208->config = i2c_get_match_data(client);
866 if (!isl1208->config)
869 rc = isl1208_clk_present(client, "xin");
874 rc = isl1208_clk_present(client, "clkin");
882 isl1208->rtc = devm_rtc_allocate_device(&client->dev);
883 if (IS_ERR(isl1208->rtc))
884 return PTR_ERR(isl1208->rtc);
886 isl1208->rtc->ops = &isl1208_rtc_ops;
888 /* Setup nvmem configuration in driver state struct */
889 isl1208->nvmem_config = isl1208_nvmem_config;
890 isl1208->nvmem_config.size = isl1208->config->nvmem_length;
891 isl1208->nvmem_config.priv = isl1208;
893 sr = isl1208_i2c_get_sr(client);
895 dev_err(&client->dev, "reading status failed\n");
899 if (isl1208->config->has_inverted_osc_bit)
900 xtosb_val = !xtosb_val;
902 rc = isl1208_set_xtoscb(client, sr, xtosb_val);
906 if (sr & ISL1208_REG_SR_RTCF)
907 dev_warn(&client->dev, "rtc power failure detected, "
908 "please set clock.\n");
910 if (isl1208->config->has_tamper) {
911 struct device_node *np = client->dev.of_node;
914 rc = i2c_smbus_read_byte_data(client, ISL1219_REG_EV);
916 dev_err(&client->dev, "failed to read EV reg\n");
919 rc |= ISL1219_REG_EV_EVEN;
920 if (!of_property_read_u32(np, "isil,ev-evienb", &evienb)) {
922 rc |= ISL1219_REG_EV_EVIENB;
924 rc &= ~ISL1219_REG_EV_EVIENB;
926 rc = i2c_smbus_write_byte_data(client, ISL1219_REG_EV, rc);
928 dev_err(&client->dev, "could not enable tamper detection\n");
931 evdet_irq = of_irq_get_byname(np, "evdet");
933 if (isl1208->config->has_timestamp) {
934 rc = rtc_add_group(isl1208->rtc, &isl1219_rtc_sysfs_files);
939 rc = rtc_add_group(isl1208->rtc, &isl1208_rtc_sysfs_files);
943 if (client->irq > 0) {
944 rc = isl1208_setup_irq(client, client->irq);
948 clear_bit(RTC_FEATURE_UPDATE_INTERRUPT, isl1208->rtc->features);
951 if (evdet_irq > 0 && evdet_irq != client->irq)
952 rc = isl1208_setup_irq(client, evdet_irq);
956 rc = devm_rtc_nvmem_register(isl1208->rtc, &isl1208->nvmem_config);
960 return devm_rtc_register_device(isl1208->rtc);
963 static struct i2c_driver isl1208_driver = {
965 .name = "rtc-isl1208",
966 .of_match_table = of_match_ptr(isl1208_of_match),
968 .probe = isl1208_probe,
969 .id_table = isl1208_id,
972 module_i2c_driver(isl1208_driver);
974 MODULE_AUTHOR("Herbert Valerio Riedel <hvr@gnu.org>");
975 MODULE_DESCRIPTION("Intersil ISL1208 RTC driver");
976 MODULE_LICENSE("GPL");