1 // SPDX-License-Identifier: GPL-2.0-only
3 * An I2C driver for the Epson RX8581 RTC
5 * Author: Martyn Welch <martyn.welch@ge.com>
6 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
8 * Based on: rtc-pcf8563.c (An I2C driver for the Philips PCF8563 RTC)
9 * Copyright 2005-06 Tower Technologies
12 #include <linux/module.h>
13 #include <linux/i2c.h>
14 #include <linux/bcd.h>
16 #include <linux/of_device.h>
17 #include <linux/regmap.h>
18 #include <linux/rtc.h>
19 #include <linux/log2.h>
21 #define RX8581_REG_SC 0x00 /* Second in BCD */
22 #define RX8581_REG_MN 0x01 /* Minute in BCD */
23 #define RX8581_REG_HR 0x02 /* Hour in BCD */
24 #define RX8581_REG_DW 0x03 /* Day of Week */
25 #define RX8581_REG_DM 0x04 /* Day of Month in BCD */
26 #define RX8581_REG_MO 0x05 /* Month in BCD */
27 #define RX8581_REG_YR 0x06 /* Year in BCD */
28 #define RX8581_REG_RAM 0x07 /* RAM */
29 #define RX8581_REG_AMN 0x08 /* Alarm Min in BCD*/
30 #define RX8581_REG_AHR 0x09 /* Alarm Hour in BCD */
31 #define RX8581_REG_ADM 0x0A
32 #define RX8581_REG_ADW 0x0A
33 #define RX8581_REG_TMR0 0x0B
34 #define RX8581_REG_TMR1 0x0C
35 #define RX8581_REG_EXT 0x0D /* Extension Register */
36 #define RX8581_REG_FLAG 0x0E /* Flag Register */
37 #define RX8581_REG_CTRL 0x0F /* Control Register */
40 /* Flag Register bit definitions */
41 #define RX8581_FLAG_UF 0x20 /* Update */
42 #define RX8581_FLAG_TF 0x10 /* Timer */
43 #define RX8581_FLAG_AF 0x08 /* Alarm */
44 #define RX8581_FLAG_VLF 0x02 /* Voltage Low */
46 /* Control Register bit definitions */
47 #define RX8581_CTRL_UIE 0x20 /* Update Interrupt Enable */
48 #define RX8581_CTRL_TIE 0x10 /* Timer Interrupt Enable */
49 #define RX8581_CTRL_AIE 0x08 /* Alarm Interrupt Enable */
50 #define RX8581_CTRL_STOP 0x02 /* STOP bit */
51 #define RX8581_CTRL_RESET 0x01 /* RESET bit */
53 #define RX8571_USER_RAM 0x10
54 #define RX8571_NVRAM_SIZE 0x10
57 struct regmap
*regmap
;
58 struct rtc_device
*rtc
;
61 struct rx85x1_config
{
62 struct regmap_config regmap
;
63 unsigned int num_nvram
;
67 * In the routines that deal directly with the rx8581 hardware, we use
68 * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch.
70 static int rx8581_rtc_read_time(struct device
*dev
, struct rtc_time
*tm
)
72 struct i2c_client
*client
= to_i2c_client(dev
);
73 unsigned char date
[7];
76 struct rx8581
*rx8581
= i2c_get_clientdata(client
);
78 /* First we ensure that the "update flag" is not set, we read the
79 * time and date then re-read the "update flag". If the update flag
80 * has been set, we know that the time has changed during the read so
81 * we repeat the whole process again.
83 err
= regmap_read(rx8581
->regmap
, RX8581_REG_FLAG
, &data
);
87 if (data
& RX8581_FLAG_VLF
) {
89 "low voltage detected, date/time is not reliable.\n");
94 /* If update flag set, clear it */
95 if (data
& RX8581_FLAG_UF
) {
96 err
= regmap_write(rx8581
->regmap
, RX8581_REG_FLAG
,
97 data
& ~RX8581_FLAG_UF
);
102 /* Now read time and date */
103 err
= regmap_bulk_read(rx8581
->regmap
, RX8581_REG_SC
, date
,
108 /* Check flag register */
109 err
= regmap_read(rx8581
->regmap
, RX8581_REG_FLAG
, &data
);
112 } while (data
& RX8581_FLAG_UF
);
114 dev_dbg(dev
, "%s: raw data is sec=%02x, min=%02x, hr=%02x, "
115 "wday=%02x, mday=%02x, mon=%02x, year=%02x\n",
117 date
[0], date
[1], date
[2], date
[3], date
[4], date
[5], date
[6]);
119 tm
->tm_sec
= bcd2bin(date
[RX8581_REG_SC
] & 0x7F);
120 tm
->tm_min
= bcd2bin(date
[RX8581_REG_MN
] & 0x7F);
121 tm
->tm_hour
= bcd2bin(date
[RX8581_REG_HR
] & 0x3F); /* rtc hr 0-23 */
122 tm
->tm_wday
= ilog2(date
[RX8581_REG_DW
] & 0x7F);
123 tm
->tm_mday
= bcd2bin(date
[RX8581_REG_DM
] & 0x3F);
124 tm
->tm_mon
= bcd2bin(date
[RX8581_REG_MO
] & 0x1F) - 1; /* rtc mn 1-12 */
125 tm
->tm_year
= bcd2bin(date
[RX8581_REG_YR
]) + 100;
127 dev_dbg(dev
, "%s: tm is secs=%d, mins=%d, hours=%d, "
128 "mday=%d, mon=%d, year=%d, wday=%d\n",
130 tm
->tm_sec
, tm
->tm_min
, tm
->tm_hour
,
131 tm
->tm_mday
, tm
->tm_mon
, tm
->tm_year
, tm
->tm_wday
);
136 static int rx8581_rtc_set_time(struct device
*dev
, struct rtc_time
*tm
)
138 struct i2c_client
*client
= to_i2c_client(dev
);
140 unsigned char buf
[7];
141 struct rx8581
*rx8581
= i2c_get_clientdata(client
);
143 dev_dbg(dev
, "%s: secs=%d, mins=%d, hours=%d, "
144 "mday=%d, mon=%d, year=%d, wday=%d\n",
146 tm
->tm_sec
, tm
->tm_min
, tm
->tm_hour
,
147 tm
->tm_mday
, tm
->tm_mon
, tm
->tm_year
, tm
->tm_wday
);
149 /* hours, minutes and seconds */
150 buf
[RX8581_REG_SC
] = bin2bcd(tm
->tm_sec
);
151 buf
[RX8581_REG_MN
] = bin2bcd(tm
->tm_min
);
152 buf
[RX8581_REG_HR
] = bin2bcd(tm
->tm_hour
);
154 buf
[RX8581_REG_DM
] = bin2bcd(tm
->tm_mday
);
157 buf
[RX8581_REG_MO
] = bin2bcd(tm
->tm_mon
+ 1);
159 /* year and century */
160 buf
[RX8581_REG_YR
] = bin2bcd(tm
->tm_year
- 100);
161 buf
[RX8581_REG_DW
] = (0x1 << tm
->tm_wday
);
164 err
= regmap_update_bits(rx8581
->regmap
, RX8581_REG_CTRL
,
165 RX8581_CTRL_STOP
, RX8581_CTRL_STOP
);
169 /* write register's data */
170 err
= regmap_bulk_write(rx8581
->regmap
, RX8581_REG_SC
,
175 /* get VLF and clear it */
176 err
= regmap_update_bits(rx8581
->regmap
, RX8581_REG_FLAG
,
181 /* Restart the clock */
182 return regmap_update_bits(rx8581
->regmap
, RX8581_REG_CTRL
,
183 RX8581_CTRL_STOP
, 0);
186 static const struct rtc_class_ops rx8581_rtc_ops
= {
187 .read_time
= rx8581_rtc_read_time
,
188 .set_time
= rx8581_rtc_set_time
,
191 static int rx8571_nvram_read(void *priv
, unsigned int offset
, void *val
,
194 struct rx8581
*rx8581
= priv
;
196 return regmap_bulk_read(rx8581
->regmap
, RX8571_USER_RAM
+ offset
,
200 static int rx8571_nvram_write(void *priv
, unsigned int offset
, void *val
,
203 struct rx8581
*rx8581
= priv
;
205 return regmap_bulk_write(rx8581
->regmap
, RX8571_USER_RAM
+ offset
,
209 static int rx85x1_nvram_read(void *priv
, unsigned int offset
, void *val
,
212 struct rx8581
*rx8581
= priv
;
213 unsigned int tmp_val
;
216 ret
= regmap_read(rx8581
->regmap
, RX8581_REG_RAM
, &tmp_val
);
217 (*(unsigned char *)val
) = (unsigned char) tmp_val
;
222 static int rx85x1_nvram_write(void *priv
, unsigned int offset
, void *val
,
225 struct rx8581
*rx8581
= priv
;
226 unsigned char tmp_val
;
228 tmp_val
= *((unsigned char *)val
);
229 return regmap_write(rx8581
->regmap
, RX8581_REG_RAM
,
230 (unsigned int)tmp_val
);
233 static const struct rx85x1_config rx8581_config
= {
242 static const struct rx85x1_config rx8571_config
= {
246 .max_register
= 0x1f,
251 static int rx8581_probe(struct i2c_client
*client
,
252 const struct i2c_device_id
*id
)
254 struct rx8581
*rx8581
;
255 const struct rx85x1_config
*config
= &rx8581_config
;
256 const void *data
= of_device_get_match_data(&client
->dev
);
257 static struct nvmem_config nvmem_cfg
[] = {
263 .reg_read
= rx85x1_nvram_read
,
264 .reg_write
= rx85x1_nvram_write
,
269 .size
= RX8571_NVRAM_SIZE
,
270 .reg_read
= rx8571_nvram_read
,
271 .reg_write
= rx8571_nvram_write
,
276 dev_dbg(&client
->dev
, "%s\n", __func__
);
281 rx8581
= devm_kzalloc(&client
->dev
, sizeof(struct rx8581
), GFP_KERNEL
);
285 i2c_set_clientdata(client
, rx8581
);
287 rx8581
->regmap
= devm_regmap_init_i2c(client
, &config
->regmap
);
288 if (IS_ERR(rx8581
->regmap
))
289 return PTR_ERR(rx8581
->regmap
);
291 rx8581
->rtc
= devm_rtc_allocate_device(&client
->dev
);
292 if (IS_ERR(rx8581
->rtc
))
293 return PTR_ERR(rx8581
->rtc
);
295 rx8581
->rtc
->ops
= &rx8581_rtc_ops
;
296 rx8581
->rtc
->range_min
= RTC_TIMESTAMP_BEGIN_2000
;
297 rx8581
->rtc
->range_max
= RTC_TIMESTAMP_END_2099
;
298 rx8581
->rtc
->start_secs
= 0;
299 rx8581
->rtc
->set_start_time
= true;
301 ret
= rtc_register_device(rx8581
->rtc
);
303 for (i
= 0; i
< config
->num_nvram
; i
++) {
304 nvmem_cfg
[i
].priv
= rx8581
;
305 rtc_nvmem_register(rx8581
->rtc
, &nvmem_cfg
[i
]);
311 static const struct i2c_device_id rx8581_id
[] = {
315 MODULE_DEVICE_TABLE(i2c
, rx8581_id
);
317 static const struct of_device_id rx8581_of_match
[] = {
318 { .compatible
= "epson,rx8571", .data
= &rx8571_config
},
319 { .compatible
= "epson,rx8581", .data
= &rx8581_config
},
322 MODULE_DEVICE_TABLE(of
, rx8581_of_match
);
324 static struct i2c_driver rx8581_driver
= {
326 .name
= "rtc-rx8581",
327 .of_match_table
= of_match_ptr(rx8581_of_match
),
329 .probe
= rx8581_probe
,
330 .id_table
= rx8581_id
,
333 module_i2c_driver(rx8581_driver
);
335 MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com>");
336 MODULE_DESCRIPTION("Epson RX-8571/RX-8581 RTC driver");
337 MODULE_LICENSE("GPL");