2 * An I2C driver for the Intersil ISL 12022
4 * Author: Roman Fietze <roman.fietze@telemotive.de>
6 * Based on the Philips PCF8563 RTC
7 * by Alessandro Zummo <a.zummo@towertech.it>.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version
11 * 2 as published by the Free Software Foundation.
14 #include <linux/i2c.h>
15 #include <linux/bcd.h>
16 #include <linux/rtc.h>
17 #include <linux/slab.h>
19 #define DRV_VERSION "0.1"
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
;
47 bool write_enabled
; /* true if write enable is set */
51 static int isl12022_read_regs(struct i2c_client
*client
, uint8_t reg
,
52 uint8_t *data
, size_t n
)
54 struct i2c_msg msgs
[] = {
60 }, /* setup read ptr */
72 ret
= i2c_transfer(client
->adapter
, msgs
, ARRAY_SIZE(msgs
));
73 if (ret
!= ARRAY_SIZE(msgs
)) {
74 dev_err(&client
->dev
, "%s: read error, ret=%d\n",
83 static int isl12022_write_reg(struct i2c_client
*client
,
84 uint8_t reg
, uint8_t val
)
86 uint8_t data
[2] = { reg
, val
};
89 err
= i2c_master_send(client
, data
, sizeof(data
));
90 if (err
!= sizeof(data
)) {
92 "%s: err=%d addr=%02x, data=%02x\n",
93 __func__
, err
, data
[0], data
[1]);
102 * In the routines that deal directly with the isl12022 hardware, we use
103 * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch.
105 static int isl12022_get_datetime(struct i2c_client
*client
, struct rtc_time
*tm
)
107 uint8_t buf
[ISL12022_REG_INT
+ 1];
110 ret
= isl12022_read_regs(client
, ISL12022_REG_SC
, buf
, sizeof(buf
));
114 if (buf
[ISL12022_REG_SR
] & (ISL12022_SR_LBAT85
| ISL12022_SR_LBAT75
)) {
115 dev_warn(&client
->dev
,
116 "voltage dropped below %u%%, "
117 "date and time is not reliable.\n",
118 buf
[ISL12022_REG_SR
] & ISL12022_SR_LBAT85
? 85 : 75);
121 dev_dbg(&client
->dev
,
122 "%s: raw data is sec=%02x, min=%02x, hr=%02x, "
123 "mday=%02x, mon=%02x, year=%02x, wday=%02x, "
126 buf
[ISL12022_REG_SC
],
127 buf
[ISL12022_REG_MN
],
128 buf
[ISL12022_REG_HR
],
129 buf
[ISL12022_REG_DT
],
130 buf
[ISL12022_REG_MO
],
131 buf
[ISL12022_REG_YR
],
132 buf
[ISL12022_REG_DW
],
133 buf
[ISL12022_REG_SR
],
134 buf
[ISL12022_REG_INT
]);
136 tm
->tm_sec
= bcd2bin(buf
[ISL12022_REG_SC
] & 0x7F);
137 tm
->tm_min
= bcd2bin(buf
[ISL12022_REG_MN
] & 0x7F);
138 tm
->tm_hour
= bcd2bin(buf
[ISL12022_REG_HR
] & 0x3F);
139 tm
->tm_mday
= bcd2bin(buf
[ISL12022_REG_DT
] & 0x3F);
140 tm
->tm_wday
= buf
[ISL12022_REG_DW
] & 0x07;
141 tm
->tm_mon
= bcd2bin(buf
[ISL12022_REG_MO
] & 0x1F) - 1;
142 tm
->tm_year
= bcd2bin(buf
[ISL12022_REG_YR
]) + 100;
144 dev_dbg(&client
->dev
, "%s: secs=%d, mins=%d, hours=%d, "
145 "mday=%d, mon=%d, year=%d, wday=%d\n",
147 tm
->tm_sec
, tm
->tm_min
, tm
->tm_hour
,
148 tm
->tm_mday
, tm
->tm_mon
, tm
->tm_year
, tm
->tm_wday
);
150 /* The clock can give out invalid datetime, but we cannot return
151 * -EINVAL otherwise hwclock will refuse to set the time on bootup. */
152 if (rtc_valid_tm(tm
) < 0)
153 dev_err(&client
->dev
, "retrieved date and time is invalid.\n");
158 static int isl12022_set_datetime(struct i2c_client
*client
, struct rtc_time
*tm
)
160 struct isl12022
*isl12022
= i2c_get_clientdata(client
);
163 uint8_t buf
[ISL12022_REG_DW
+ 1];
165 dev_dbg(&client
->dev
, "%s: secs=%d, mins=%d, hours=%d, "
166 "mday=%d, mon=%d, year=%d, wday=%d\n",
168 tm
->tm_sec
, tm
->tm_min
, tm
->tm_hour
,
169 tm
->tm_mday
, tm
->tm_mon
, tm
->tm_year
, tm
->tm_wday
);
171 if (!isl12022
->write_enabled
) {
173 ret
= isl12022_read_regs(client
, ISL12022_REG_INT
, buf
, 1);
177 /* Check if WRTC (write rtc enable) is set factory default is
179 if (!(buf
[0] & ISL12022_INT_WRTC
)) {
180 dev_info(&client
->dev
,
181 "init write enable and 24 hour format\n");
183 /* Set the write enable bit. */
184 ret
= isl12022_write_reg(client
,
186 buf
[0] | ISL12022_INT_WRTC
);
190 /* Write to any RTC register to start RTC, we use the
191 * HR register, setting the MIL bit to use the 24 hour
193 ret
= isl12022_read_regs(client
, ISL12022_REG_HR
,
198 ret
= isl12022_write_reg(client
,
200 buf
[0] | ISL12022_HR_MIL
);
205 isl12022
->write_enabled
= 1;
208 /* hours, minutes and seconds */
209 buf
[ISL12022_REG_SC
] = bin2bcd(tm
->tm_sec
);
210 buf
[ISL12022_REG_MN
] = bin2bcd(tm
->tm_min
);
211 buf
[ISL12022_REG_HR
] = bin2bcd(tm
->tm_hour
) | ISL12022_HR_MIL
;
213 buf
[ISL12022_REG_DT
] = bin2bcd(tm
->tm_mday
);
216 buf
[ISL12022_REG_MO
] = bin2bcd(tm
->tm_mon
+ 1);
218 /* year and century */
219 buf
[ISL12022_REG_YR
] = bin2bcd(tm
->tm_year
% 100);
221 buf
[ISL12022_REG_DW
] = tm
->tm_wday
& 0x07;
223 /* write register's data */
224 for (i
= 0; i
< ARRAY_SIZE(buf
); i
++) {
225 ret
= isl12022_write_reg(client
, ISL12022_REG_SC
+ i
,
226 buf
[ISL12022_REG_SC
+ i
]);
234 static int isl12022_rtc_read_time(struct device
*dev
, struct rtc_time
*tm
)
236 return isl12022_get_datetime(to_i2c_client(dev
), tm
);
239 static int isl12022_rtc_set_time(struct device
*dev
, struct rtc_time
*tm
)
241 return isl12022_set_datetime(to_i2c_client(dev
), tm
);
244 static const struct rtc_class_ops isl12022_rtc_ops
= {
245 .read_time
= isl12022_rtc_read_time
,
246 .set_time
= isl12022_rtc_set_time
,
249 static int isl12022_probe(struct i2c_client
*client
,
250 const struct i2c_device_id
*id
)
252 struct isl12022
*isl12022
;
256 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
))
259 isl12022
= kzalloc(sizeof(struct isl12022
), GFP_KERNEL
);
263 dev_dbg(&client
->dev
, "chip found, driver version " DRV_VERSION
"\n");
265 i2c_set_clientdata(client
, isl12022
);
267 isl12022
->rtc
= rtc_device_register(isl12022_driver
.driver
.name
,
272 if (IS_ERR(isl12022
->rtc
)) {
273 ret
= PTR_ERR(isl12022
->rtc
);
285 static int isl12022_remove(struct i2c_client
*client
)
287 struct isl12022
*isl12022
= i2c_get_clientdata(client
);
289 rtc_device_unregister(isl12022
->rtc
);
295 static const struct i2c_device_id isl12022_id
[] = {
300 MODULE_DEVICE_TABLE(i2c
, isl12022_id
);
302 static struct i2c_driver isl12022_driver
= {
304 .name
= "rtc-isl12022",
306 .probe
= isl12022_probe
,
307 .remove
= isl12022_remove
,
308 .id_table
= isl12022_id
,
311 static int __init
isl12022_init(void)
313 return i2c_add_driver(&isl12022_driver
);
316 static void __exit
isl12022_exit(void)
318 i2c_del_driver(&isl12022_driver
);
321 module_init(isl12022_init
);
322 module_exit(isl12022_exit
);
324 MODULE_AUTHOR("roman.fietze@telemotive.de");
325 MODULE_DESCRIPTION("ISL 12022 RTC driver");
326 MODULE_LICENSE("GPL");
327 MODULE_VERSION(DRV_VERSION
);