2 * An I2C driver for the Epson RX8581 RTC
4 * Author: Martyn Welch <martyn.welch@ge.com>
5 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * Based on: rtc-pcf8563.c (An I2C driver for the Philips PCF8563 RTC)
12 * Copyright 2005-06 Tower Technologies
15 #include <linux/module.h>
16 #include <linux/i2c.h>
17 #include <linux/bcd.h>
19 #include <linux/of_device.h>
20 #include <linux/regmap.h>
21 #include <linux/rtc.h>
22 #include <linux/log2.h>
24 #define RX8581_REG_SC 0x00 /* Second in BCD */
25 #define RX8581_REG_MN 0x01 /* Minute in BCD */
26 #define RX8581_REG_HR 0x02 /* Hour in BCD */
27 #define RX8581_REG_DW 0x03 /* Day of Week */
28 #define RX8581_REG_DM 0x04 /* Day of Month in BCD */
29 #define RX8581_REG_MO 0x05 /* Month in BCD */
30 #define RX8581_REG_YR 0x06 /* Year in BCD */
31 #define RX8581_REG_RAM 0x07 /* RAM */
32 #define RX8581_REG_AMN 0x08 /* Alarm Min in BCD*/
33 #define RX8581_REG_AHR 0x09 /* Alarm Hour in BCD */
34 #define RX8581_REG_ADM 0x0A
35 #define RX8581_REG_ADW 0x0A
36 #define RX8581_REG_TMR0 0x0B
37 #define RX8581_REG_TMR1 0x0C
38 #define RX8581_REG_EXT 0x0D /* Extension Register */
39 #define RX8581_REG_FLAG 0x0E /* Flag Register */
40 #define RX8581_REG_CTRL 0x0F /* Control Register */
43 /* Flag Register bit definitions */
44 #define RX8581_FLAG_UF 0x20 /* Update */
45 #define RX8581_FLAG_TF 0x10 /* Timer */
46 #define RX8581_FLAG_AF 0x08 /* Alarm */
47 #define RX8581_FLAG_VLF 0x02 /* Voltage Low */
49 /* Control Register bit definitions */
50 #define RX8581_CTRL_UIE 0x20 /* Update Interrupt Enable */
51 #define RX8581_CTRL_TIE 0x10 /* Timer Interrupt Enable */
52 #define RX8581_CTRL_AIE 0x08 /* Alarm Interrupt Enable */
53 #define RX8581_CTRL_STOP 0x02 /* STOP bit */
54 #define RX8581_CTRL_RESET 0x01 /* RESET bit */
56 #define RX8571_USER_RAM 0x10
57 #define RX8571_NVRAM_SIZE 0x10
60 struct regmap
*regmap
;
61 struct rtc_device
*rtc
;
64 struct rx85x1_config
{
65 struct regmap_config regmap
;
66 unsigned int num_nvram
;
70 * In the routines that deal directly with the rx8581 hardware, we use
71 * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch.
73 static int rx8581_rtc_read_time(struct device
*dev
, struct rtc_time
*tm
)
75 struct i2c_client
*client
= to_i2c_client(dev
);
76 unsigned char date
[7];
79 struct rx8581
*rx8581
= i2c_get_clientdata(client
);
81 /* First we ensure that the "update flag" is not set, we read the
82 * time and date then re-read the "update flag". If the update flag
83 * has been set, we know that the time has changed during the read so
84 * we repeat the whole process again.
86 err
= regmap_read(rx8581
->regmap
, RX8581_REG_FLAG
, &data
);
90 if (data
& RX8581_FLAG_VLF
) {
92 "low voltage detected, date/time is not reliable.\n");
97 /* If update flag set, clear it */
98 if (data
& RX8581_FLAG_UF
) {
99 err
= regmap_write(rx8581
->regmap
, RX8581_REG_FLAG
,
100 data
& ~RX8581_FLAG_UF
);
105 /* Now read time and date */
106 err
= regmap_bulk_read(rx8581
->regmap
, RX8581_REG_SC
, date
,
111 /* Check flag register */
112 err
= regmap_read(rx8581
->regmap
, RX8581_REG_FLAG
, &data
);
115 } while (data
& RX8581_FLAG_UF
);
117 dev_dbg(dev
, "%s: raw data is sec=%02x, min=%02x, hr=%02x, "
118 "wday=%02x, mday=%02x, mon=%02x, year=%02x\n",
120 date
[0], date
[1], date
[2], date
[3], date
[4], date
[5], date
[6]);
122 tm
->tm_sec
= bcd2bin(date
[RX8581_REG_SC
] & 0x7F);
123 tm
->tm_min
= bcd2bin(date
[RX8581_REG_MN
] & 0x7F);
124 tm
->tm_hour
= bcd2bin(date
[RX8581_REG_HR
] & 0x3F); /* rtc hr 0-23 */
125 tm
->tm_wday
= ilog2(date
[RX8581_REG_DW
] & 0x7F);
126 tm
->tm_mday
= bcd2bin(date
[RX8581_REG_DM
] & 0x3F);
127 tm
->tm_mon
= bcd2bin(date
[RX8581_REG_MO
] & 0x1F) - 1; /* rtc mn 1-12 */
128 tm
->tm_year
= bcd2bin(date
[RX8581_REG_YR
]) + 100;
130 dev_dbg(dev
, "%s: tm is secs=%d, mins=%d, hours=%d, "
131 "mday=%d, mon=%d, year=%d, wday=%d\n",
133 tm
->tm_sec
, tm
->tm_min
, tm
->tm_hour
,
134 tm
->tm_mday
, tm
->tm_mon
, tm
->tm_year
, tm
->tm_wday
);
139 static int rx8581_rtc_set_time(struct device
*dev
, struct rtc_time
*tm
)
141 struct i2c_client
*client
= to_i2c_client(dev
);
143 unsigned char buf
[7];
144 struct rx8581
*rx8581
= i2c_get_clientdata(client
);
146 dev_dbg(dev
, "%s: secs=%d, mins=%d, hours=%d, "
147 "mday=%d, mon=%d, year=%d, wday=%d\n",
149 tm
->tm_sec
, tm
->tm_min
, tm
->tm_hour
,
150 tm
->tm_mday
, tm
->tm_mon
, tm
->tm_year
, tm
->tm_wday
);
152 /* hours, minutes and seconds */
153 buf
[RX8581_REG_SC
] = bin2bcd(tm
->tm_sec
);
154 buf
[RX8581_REG_MN
] = bin2bcd(tm
->tm_min
);
155 buf
[RX8581_REG_HR
] = bin2bcd(tm
->tm_hour
);
157 buf
[RX8581_REG_DM
] = bin2bcd(tm
->tm_mday
);
160 buf
[RX8581_REG_MO
] = bin2bcd(tm
->tm_mon
+ 1);
162 /* year and century */
163 buf
[RX8581_REG_YR
] = bin2bcd(tm
->tm_year
- 100);
164 buf
[RX8581_REG_DW
] = (0x1 << tm
->tm_wday
);
167 err
= regmap_update_bits(rx8581
->regmap
, RX8581_REG_CTRL
,
168 RX8581_CTRL_STOP
, RX8581_CTRL_STOP
);
172 /* write register's data */
173 err
= regmap_bulk_write(rx8581
->regmap
, RX8581_REG_SC
,
178 /* get VLF and clear it */
179 err
= regmap_update_bits(rx8581
->regmap
, RX8581_REG_FLAG
,
184 /* Restart the clock */
185 return regmap_update_bits(rx8581
->regmap
, RX8581_REG_CTRL
,
186 RX8581_CTRL_STOP
, 0);
189 static const struct rtc_class_ops rx8581_rtc_ops
= {
190 .read_time
= rx8581_rtc_read_time
,
191 .set_time
= rx8581_rtc_set_time
,
194 static int rx8571_nvram_read(void *priv
, unsigned int offset
, void *val
,
197 struct rx8581
*rx8581
= priv
;
199 return regmap_bulk_read(rx8581
->regmap
, RX8571_USER_RAM
+ offset
,
203 static int rx8571_nvram_write(void *priv
, unsigned int offset
, void *val
,
206 struct rx8581
*rx8581
= priv
;
208 return regmap_bulk_write(rx8581
->regmap
, RX8571_USER_RAM
+ offset
,
212 static int rx85x1_nvram_read(void *priv
, unsigned int offset
, void *val
,
215 struct rx8581
*rx8581
= priv
;
216 unsigned int tmp_val
;
219 ret
= regmap_read(rx8581
->regmap
, RX8581_REG_RAM
, &tmp_val
);
220 (*(unsigned char *)val
) = (unsigned char) tmp_val
;
225 static int rx85x1_nvram_write(void *priv
, unsigned int offset
, void *val
,
228 struct rx8581
*rx8581
= priv
;
229 unsigned char tmp_val
;
231 tmp_val
= *((unsigned char *)val
);
232 return regmap_write(rx8581
->regmap
, RX8581_REG_RAM
,
233 (unsigned int)tmp_val
);
236 static const struct rx85x1_config rx8581_config
= {
245 static const struct rx85x1_config rx8571_config
= {
249 .max_register
= 0x1f,
254 static int rx8581_probe(struct i2c_client
*client
,
255 const struct i2c_device_id
*id
)
257 struct rx8581
*rx8581
;
258 const struct rx85x1_config
*config
= &rx8581_config
;
259 const void *data
= of_device_get_match_data(&client
->dev
);
260 static struct nvmem_config nvmem_cfg
[] = {
266 .reg_read
= rx85x1_nvram_read
,
267 .reg_write
= rx85x1_nvram_write
,
272 .size
= RX8571_NVRAM_SIZE
,
273 .reg_read
= rx8571_nvram_read
,
274 .reg_write
= rx8571_nvram_write
,
279 dev_dbg(&client
->dev
, "%s\n", __func__
);
284 rx8581
= devm_kzalloc(&client
->dev
, sizeof(struct rx8581
), GFP_KERNEL
);
288 i2c_set_clientdata(client
, rx8581
);
290 rx8581
->regmap
= devm_regmap_init_i2c(client
, &config
->regmap
);
291 if (IS_ERR(rx8581
->regmap
))
292 return PTR_ERR(rx8581
->regmap
);
294 rx8581
->rtc
= devm_rtc_allocate_device(&client
->dev
);
295 if (IS_ERR(rx8581
->rtc
))
296 return PTR_ERR(rx8581
->rtc
);
298 rx8581
->rtc
->ops
= &rx8581_rtc_ops
;
299 rx8581
->rtc
->range_min
= RTC_TIMESTAMP_BEGIN_2000
;
300 rx8581
->rtc
->range_max
= RTC_TIMESTAMP_END_2099
;
301 rx8581
->rtc
->start_secs
= 0;
302 rx8581
->rtc
->set_start_time
= true;
304 ret
= rtc_register_device(rx8581
->rtc
);
306 for (i
= 0; i
< config
->num_nvram
; i
++) {
307 nvmem_cfg
[i
].priv
= rx8581
;
308 rtc_nvmem_register(rx8581
->rtc
, &nvmem_cfg
[i
]);
314 static const struct i2c_device_id rx8581_id
[] = {
318 MODULE_DEVICE_TABLE(i2c
, rx8581_id
);
320 static const struct of_device_id rx8581_of_match
[] = {
321 { .compatible
= "epson,rx8571", .data
= &rx8571_config
},
322 { .compatible
= "epson,rx8581", .data
= &rx8581_config
},
325 MODULE_DEVICE_TABLE(of
, rx8581_of_match
);
327 static struct i2c_driver rx8581_driver
= {
329 .name
= "rtc-rx8581",
330 .of_match_table
= of_match_ptr(rx8581_of_match
),
332 .probe
= rx8581_probe
,
333 .id_table
= rx8581_id
,
336 module_i2c_driver(rx8581_driver
);
338 MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com>");
339 MODULE_DESCRIPTION("Epson RX-8571/RX-8581 RTC driver");
340 MODULE_LICENSE("GPL");