1 // SPDX-License-Identifier: GPL-2.0-only
3 * An I2C driver for the Intersil ISL 12022
5 * Author: Roman Fietze <roman.fietze@telemotive.de>
7 * Based on the Philips PCF8563 RTC
8 * by Alessandro Zummo <a.zummo@towertech.it>.
11 #include <linux/i2c.h>
12 #include <linux/bcd.h>
13 #include <linux/rtc.h>
14 #include <linux/slab.h>
15 #include <linux/module.h>
16 #include <linux/err.h>
18 #include <linux/of_device.h>
19 #include <linux/regmap.h>
21 /* ISL register offsets */
22 #define ISL12022_REG_SC 0x00
23 #define ISL12022_REG_MN 0x01
24 #define ISL12022_REG_HR 0x02
25 #define ISL12022_REG_DT 0x03
26 #define ISL12022_REG_MO 0x04
27 #define ISL12022_REG_YR 0x05
28 #define ISL12022_REG_DW 0x06
30 #define ISL12022_REG_SR 0x07
31 #define ISL12022_REG_INT 0x08
33 /* ISL register bits */
34 #define ISL12022_HR_MIL (1 << 7) /* military or 24 hour time */
36 #define ISL12022_SR_LBAT85 (1 << 2)
37 #define ISL12022_SR_LBAT75 (1 << 1)
39 #define ISL12022_INT_WRTC (1 << 6)
42 static struct i2c_driver isl12022_driver;
45 struct rtc_device *rtc;
46 struct regmap *regmap;
50 * In the routines that deal directly with the isl12022 hardware, we use
51 * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch.
53 static int isl12022_rtc_read_time(struct device *dev, struct rtc_time *tm)
55 struct isl12022 *isl12022 = dev_get_drvdata(dev);
56 struct regmap *regmap = isl12022->regmap;
57 uint8_t buf[ISL12022_REG_INT + 1];
60 ret = regmap_bulk_read(regmap, ISL12022_REG_SC, buf, sizeof(buf));
64 if (buf[ISL12022_REG_SR] & (ISL12022_SR_LBAT85 | ISL12022_SR_LBAT75)) {
66 "voltage dropped below %u%%, "
67 "date and time is not reliable.\n",
68 buf[ISL12022_REG_SR] & ISL12022_SR_LBAT85 ? 85 : 75);
72 "%s: raw data is sec=%02x, min=%02x, hr=%02x, "
73 "mday=%02x, mon=%02x, year=%02x, wday=%02x, "
84 buf[ISL12022_REG_INT]);
86 tm->tm_sec = bcd2bin(buf[ISL12022_REG_SC] & 0x7F);
87 tm->tm_min = bcd2bin(buf[ISL12022_REG_MN] & 0x7F);
88 tm->tm_hour = bcd2bin(buf[ISL12022_REG_HR] & 0x3F);
89 tm->tm_mday = bcd2bin(buf[ISL12022_REG_DT] & 0x3F);
90 tm->tm_wday = buf[ISL12022_REG_DW] & 0x07;
91 tm->tm_mon = bcd2bin(buf[ISL12022_REG_MO] & 0x1F) - 1;
92 tm->tm_year = bcd2bin(buf[ISL12022_REG_YR]) + 100;
94 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
99 static int isl12022_rtc_set_time(struct device *dev, struct rtc_time *tm)
101 struct isl12022 *isl12022 = dev_get_drvdata(dev);
102 struct regmap *regmap = isl12022->regmap;
104 uint8_t buf[ISL12022_REG_DW + 1];
106 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
108 /* Ensure the write enable bit is set. */
109 ret = regmap_update_bits(regmap, ISL12022_REG_INT,
110 ISL12022_INT_WRTC, ISL12022_INT_WRTC);
114 /* hours, minutes and seconds */
115 buf[ISL12022_REG_SC] = bin2bcd(tm->tm_sec);
116 buf[ISL12022_REG_MN] = bin2bcd(tm->tm_min);
117 buf[ISL12022_REG_HR] = bin2bcd(tm->tm_hour) | ISL12022_HR_MIL;
119 buf[ISL12022_REG_DT] = bin2bcd(tm->tm_mday);
122 buf[ISL12022_REG_MO] = bin2bcd(tm->tm_mon + 1);
124 /* year and century */
125 buf[ISL12022_REG_YR] = bin2bcd(tm->tm_year % 100);
127 buf[ISL12022_REG_DW] = tm->tm_wday & 0x07;
129 return regmap_bulk_write(isl12022->regmap, ISL12022_REG_SC,
133 static const struct rtc_class_ops isl12022_rtc_ops = {
134 .read_time = isl12022_rtc_read_time,
135 .set_time = isl12022_rtc_set_time,
138 static const struct regmap_config regmap_config = {
141 .use_single_write = true,
144 static int isl12022_probe(struct i2c_client *client)
146 struct isl12022 *isl12022;
148 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
151 isl12022 = devm_kzalloc(&client->dev, sizeof(struct isl12022),
155 dev_set_drvdata(&client->dev, isl12022);
157 isl12022->regmap = devm_regmap_init_i2c(client, ®map_config);
158 if (IS_ERR(isl12022->regmap)) {
159 dev_err(&client->dev, "regmap allocation failed\n");
160 return PTR_ERR(isl12022->regmap);
163 isl12022->rtc = devm_rtc_allocate_device(&client->dev);
164 if (IS_ERR(isl12022->rtc))
165 return PTR_ERR(isl12022->rtc);
167 isl12022->rtc->ops = &isl12022_rtc_ops;
168 isl12022->rtc->range_min = RTC_TIMESTAMP_BEGIN_2000;
169 isl12022->rtc->range_max = RTC_TIMESTAMP_END_2099;
171 return devm_rtc_register_device(isl12022->rtc);
175 static const struct of_device_id isl12022_dt_match[] = {
176 { .compatible = "isl,isl12022" }, /* for backward compat., don't use */
177 { .compatible = "isil,isl12022" },
180 MODULE_DEVICE_TABLE(of, isl12022_dt_match);
183 static const struct i2c_device_id isl12022_id[] = {
187 MODULE_DEVICE_TABLE(i2c, isl12022_id);
189 static struct i2c_driver isl12022_driver = {
191 .name = "rtc-isl12022",
193 .of_match_table = of_match_ptr(isl12022_dt_match),
196 .probe_new = isl12022_probe,
197 .id_table = isl12022_id,
200 module_i2c_driver(isl12022_driver);
202 MODULE_AUTHOR("roman.fietze@telemotive.de");
203 MODULE_DESCRIPTION("ISL 12022 RTC driver");
204 MODULE_LICENSE("GPL");