blob: eac8821697440e0b0fbb162da21c1cbc9eb40f58 [file] [log] [blame]
Martyn Welcha7fa9852008-11-12 13:27:06 -08001/*
2 * An I2C driver for the Epson RX8581 RTC
3 *
Martyn Welch9756c4d2010-04-14 09:24:16 +01004 * Author: Martyn Welch <martyn.welch@ge.com>
5 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
Martyn Welcha7fa9852008-11-12 13:27:06 -08006 *
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.
10 *
11 * Based on: rtc-pcf8563.c (An I2C driver for the Philips PCF8563 RTC)
12 * Copyright 2005-06 Tower Technologies
13 */
14
15#include <linux/module.h>
16#include <linux/i2c.h>
17#include <linux/bcd.h>
Alexandre Belloni94389b22018-05-17 22:33:31 +020018#include <linux/regmap.h>
Martyn Welcha7fa9852008-11-12 13:27:06 -080019#include <linux/rtc.h>
20#include <linux/log2.h>
21
Martyn Welcha7fa9852008-11-12 13:27:06 -080022#define RX8581_REG_SC 0x00 /* Second in BCD */
23#define RX8581_REG_MN 0x01 /* Minute in BCD */
24#define RX8581_REG_HR 0x02 /* Hour in BCD */
25#define RX8581_REG_DW 0x03 /* Day of Week */
26#define RX8581_REG_DM 0x04 /* Day of Month in BCD */
27#define RX8581_REG_MO 0x05 /* Month in BCD */
28#define RX8581_REG_YR 0x06 /* Year in BCD */
29#define RX8581_REG_RAM 0x07 /* RAM */
30#define RX8581_REG_AMN 0x08 /* Alarm Min in BCD*/
31#define RX8581_REG_AHR 0x09 /* Alarm Hour in BCD */
32#define RX8581_REG_ADM 0x0A
33#define RX8581_REG_ADW 0x0A
34#define RX8581_REG_TMR0 0x0B
35#define RX8581_REG_TMR1 0x0C
36#define RX8581_REG_EXT 0x0D /* Extension Register */
37#define RX8581_REG_FLAG 0x0E /* Flag Register */
38#define RX8581_REG_CTRL 0x0F /* Control Register */
39
40
41/* Flag Register bit definitions */
42#define RX8581_FLAG_UF 0x20 /* Update */
43#define RX8581_FLAG_TF 0x10 /* Timer */
44#define RX8581_FLAG_AF 0x08 /* Alarm */
45#define RX8581_FLAG_VLF 0x02 /* Voltage Low */
46
47/* Control Register bit definitions */
48#define RX8581_CTRL_UIE 0x20 /* Update Interrupt Enable */
49#define RX8581_CTRL_TIE 0x10 /* Timer Interrupt Enable */
50#define RX8581_CTRL_AIE 0x08 /* Alarm Interrupt Enable */
51#define RX8581_CTRL_STOP 0x02 /* STOP bit */
52#define RX8581_CTRL_RESET 0x01 /* RESET bit */
53
Andreas Wernerd643a492014-01-23 15:55:20 -080054struct rx8581 {
Alexandre Belloni94389b22018-05-17 22:33:31 +020055 struct regmap *regmap;
Andreas Wernerd643a492014-01-23 15:55:20 -080056 struct rtc_device *rtc;
Andreas Wernerd643a492014-01-23 15:55:20 -080057};
58
Martyn Welcha7fa9852008-11-12 13:27:06 -080059/*
60 * In the routines that deal directly with the rx8581 hardware, we use
61 * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch.
62 */
Alexandre Belloni2d2b3002018-05-17 22:33:28 +020063static int rx8581_rtc_read_time(struct device *dev, struct rtc_time *tm)
Martyn Welcha7fa9852008-11-12 13:27:06 -080064{
Alexandre Belloni2d2b3002018-05-17 22:33:28 +020065 struct i2c_client *client = to_i2c_client(dev);
Martyn Welcha7fa9852008-11-12 13:27:06 -080066 unsigned char date[7];
Alexandre Belloni94389b22018-05-17 22:33:31 +020067 unsigned int data;
68 int err;
Andreas Wernerd643a492014-01-23 15:55:20 -080069 struct rx8581 *rx8581 = i2c_get_clientdata(client);
Martyn Welcha7fa9852008-11-12 13:27:06 -080070
71 /* First we ensure that the "update flag" is not set, we read the
72 * time and date then re-read the "update flag". If the update flag
73 * has been set, we know that the time has changed during the read so
74 * we repeat the whole process again.
75 */
Alexandre Belloni94389b22018-05-17 22:33:31 +020076 err = regmap_read(rx8581->regmap, RX8581_REG_FLAG, &data);
77 if (err < 0)
78 return err;
Martyn Welcha7fa9852008-11-12 13:27:06 -080079
Alexandre Belloni6e6111f2018-05-17 22:33:30 +020080 if (data & RX8581_FLAG_VLF) {
81 dev_warn(dev,
82 "low voltage detected, date/time is not reliable.\n");
83 return -EINVAL;
84 }
85
Martyn Welcha7fa9852008-11-12 13:27:06 -080086 do {
87 /* If update flag set, clear it */
88 if (data & RX8581_FLAG_UF) {
Alexandre Belloni94389b22018-05-17 22:33:31 +020089 err = regmap_write(rx8581->regmap, RX8581_REG_FLAG,
90 data & ~RX8581_FLAG_UF);
91 if (err < 0)
92 return err;
Martyn Welcha7fa9852008-11-12 13:27:06 -080093 }
94
95 /* Now read time and date */
Alexandre Belloni94389b22018-05-17 22:33:31 +020096 err = regmap_bulk_read(rx8581->regmap, RX8581_REG_SC, date,
97 sizeof(date));
98 if (err < 0)
99 return err;
Martyn Welcha7fa9852008-11-12 13:27:06 -0800100
101 /* Check flag register */
Alexandre Belloni94389b22018-05-17 22:33:31 +0200102 err = regmap_read(rx8581->regmap, RX8581_REG_FLAG, &data);
103 if (err < 0)
104 return err;
Martyn Welcha7fa9852008-11-12 13:27:06 -0800105 } while (data & RX8581_FLAG_UF);
106
Alexandre Bellonied87c6d2018-05-17 22:33:29 +0200107 dev_dbg(dev, "%s: raw data is sec=%02x, min=%02x, hr=%02x, "
Martyn Welcha7fa9852008-11-12 13:27:06 -0800108 "wday=%02x, mday=%02x, mon=%02x, year=%02x\n",
109 __func__,
110 date[0], date[1], date[2], date[3], date[4], date[5], date[6]);
111
112 tm->tm_sec = bcd2bin(date[RX8581_REG_SC] & 0x7F);
113 tm->tm_min = bcd2bin(date[RX8581_REG_MN] & 0x7F);
114 tm->tm_hour = bcd2bin(date[RX8581_REG_HR] & 0x3F); /* rtc hr 0-23 */
115 tm->tm_wday = ilog2(date[RX8581_REG_DW] & 0x7F);
116 tm->tm_mday = bcd2bin(date[RX8581_REG_DM] & 0x3F);
117 tm->tm_mon = bcd2bin(date[RX8581_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */
Alexandre Bellonic6e3c292018-05-17 22:33:27 +0200118 tm->tm_year = bcd2bin(date[RX8581_REG_YR]) + 100;
Martyn Welcha7fa9852008-11-12 13:27:06 -0800119
Alexandre Bellonied87c6d2018-05-17 22:33:29 +0200120 dev_dbg(dev, "%s: tm is secs=%d, mins=%d, hours=%d, "
Martyn Welcha7fa9852008-11-12 13:27:06 -0800121 "mday=%d, mon=%d, year=%d, wday=%d\n",
122 __func__,
123 tm->tm_sec, tm->tm_min, tm->tm_hour,
124 tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday);
125
Alexandre Belloni24f421b2018-02-21 00:25:18 +0100126 return 0;
Martyn Welcha7fa9852008-11-12 13:27:06 -0800127}
128
Alexandre Belloni2d2b3002018-05-17 22:33:28 +0200129static int rx8581_rtc_set_time(struct device *dev, struct rtc_time *tm)
Martyn Welcha7fa9852008-11-12 13:27:06 -0800130{
Alexandre Belloni2d2b3002018-05-17 22:33:28 +0200131 struct i2c_client *client = to_i2c_client(dev);
Alexandre Belloni94389b22018-05-17 22:33:31 +0200132 int err;
Martyn Welcha7fa9852008-11-12 13:27:06 -0800133 unsigned char buf[7];
Andreas Wernerd643a492014-01-23 15:55:20 -0800134 struct rx8581 *rx8581 = i2c_get_clientdata(client);
Martyn Welcha7fa9852008-11-12 13:27:06 -0800135
Alexandre Bellonied87c6d2018-05-17 22:33:29 +0200136 dev_dbg(dev, "%s: secs=%d, mins=%d, hours=%d, "
Martyn Welcha7fa9852008-11-12 13:27:06 -0800137 "mday=%d, mon=%d, year=%d, wday=%d\n",
138 __func__,
139 tm->tm_sec, tm->tm_min, tm->tm_hour,
140 tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday);
141
142 /* hours, minutes and seconds */
143 buf[RX8581_REG_SC] = bin2bcd(tm->tm_sec);
144 buf[RX8581_REG_MN] = bin2bcd(tm->tm_min);
145 buf[RX8581_REG_HR] = bin2bcd(tm->tm_hour);
146
147 buf[RX8581_REG_DM] = bin2bcd(tm->tm_mday);
148
149 /* month, 1 - 12 */
150 buf[RX8581_REG_MO] = bin2bcd(tm->tm_mon + 1);
151
152 /* year and century */
Alexandre Bellonic6e3c292018-05-17 22:33:27 +0200153 buf[RX8581_REG_YR] = bin2bcd(tm->tm_year - 100);
Martyn Welcha7fa9852008-11-12 13:27:06 -0800154 buf[RX8581_REG_DW] = (0x1 << tm->tm_wday);
155
156 /* Stop the clock */
Alexandre Belloni94389b22018-05-17 22:33:31 +0200157 err = regmap_update_bits(rx8581->regmap, RX8581_REG_CTRL,
158 RX8581_CTRL_STOP, RX8581_CTRL_STOP);
159 if (err < 0)
160 return err;
Martyn Welcha7fa9852008-11-12 13:27:06 -0800161
162 /* write register's data */
Alexandre Belloni94389b22018-05-17 22:33:31 +0200163 err = regmap_bulk_write(rx8581->regmap, RX8581_REG_SC,
164 buf, sizeof(buf));
165 if (err < 0)
166 return err;
Martyn Welcha7fa9852008-11-12 13:27:06 -0800167
Rudolf Marek2884fce2010-07-27 13:18:02 -0700168 /* get VLF and clear it */
Alexandre Belloni94389b22018-05-17 22:33:31 +0200169 err = regmap_update_bits(rx8581->regmap, RX8581_REG_FLAG,
170 RX8581_FLAG_VLF, 0);
171 if (err < 0)
172 return err;
Rudolf Marek2884fce2010-07-27 13:18:02 -0700173
Martyn Welcha7fa9852008-11-12 13:27:06 -0800174 /* Restart the clock */
Alexandre Belloni94389b22018-05-17 22:33:31 +0200175 return regmap_update_bits(rx8581->regmap, RX8581_REG_CTRL,
176 RX8581_CTRL_STOP, 0);
Martyn Welcha7fa9852008-11-12 13:27:06 -0800177}
178
Martyn Welcha7fa9852008-11-12 13:27:06 -0800179static const struct rtc_class_ops rx8581_rtc_ops = {
180 .read_time = rx8581_rtc_read_time,
181 .set_time = rx8581_rtc_set_time,
182};
183
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800184static int rx8581_probe(struct i2c_client *client,
185 const struct i2c_device_id *id)
Martyn Welcha7fa9852008-11-12 13:27:06 -0800186{
Andreas Wernerd643a492014-01-23 15:55:20 -0800187 struct rx8581 *rx8581;
Alexandre Belloni94389b22018-05-17 22:33:31 +0200188 static const struct regmap_config config = {
189 .reg_bits = 8,
190 .val_bits = 8,
191 .max_register = 0xf,
192 };
Martyn Welcha7fa9852008-11-12 13:27:06 -0800193
194 dev_dbg(&client->dev, "%s\n", __func__);
195
Andreas Wernerd643a492014-01-23 15:55:20 -0800196 rx8581 = devm_kzalloc(&client->dev, sizeof(struct rx8581), GFP_KERNEL);
197 if (!rx8581)
198 return -ENOMEM;
199
200 i2c_set_clientdata(client, rx8581);
Andreas Wernerd643a492014-01-23 15:55:20 -0800201
Alexandre Belloni94389b22018-05-17 22:33:31 +0200202 rx8581->regmap = devm_regmap_init_i2c(client, &config);
203 if (IS_ERR(rx8581->regmap))
204 return PTR_ERR(rx8581->regmap);
Martyn Welcha7fa9852008-11-12 13:27:06 -0800205
Alexandre Bellonib8157162018-05-17 22:33:25 +0200206 rx8581->rtc = devm_rtc_allocate_device(&client->dev);
207 if (IS_ERR(rx8581->rtc))
Andreas Wernerd643a492014-01-23 15:55:20 -0800208 return PTR_ERR(rx8581->rtc);
Martyn Welcha7fa9852008-11-12 13:27:06 -0800209
Alexandre Bellonib8157162018-05-17 22:33:25 +0200210 rx8581->rtc->ops = &rx8581_rtc_ops;
Alexandre Belloni86c54ef2018-05-17 22:33:26 +0200211 rx8581->rtc->range_min = RTC_TIMESTAMP_BEGIN_2000;
212 rx8581->rtc->range_max = RTC_TIMESTAMP_END_2099;
Alexandre Bellonic6e3c292018-05-17 22:33:27 +0200213 rx8581->rtc->start_secs = 0;
214 rx8581->rtc->set_start_time = true;
Alexandre Bellonib8157162018-05-17 22:33:25 +0200215
216 return rtc_register_device(rx8581->rtc);
Martyn Welcha7fa9852008-11-12 13:27:06 -0800217}
218
Martyn Welcha7fa9852008-11-12 13:27:06 -0800219static const struct i2c_device_id rx8581_id[] = {
220 { "rx8581", 0 },
221 { }
222};
223MODULE_DEVICE_TABLE(i2c, rx8581_id);
224
Javier Martinez Canillasffbecfb2017-03-03 11:29:22 -0300225static const struct of_device_id rx8581_of_match[] = {
226 { .compatible = "epson,rx8581" },
227 { }
228};
229MODULE_DEVICE_TABLE(of, rx8581_of_match);
230
Martyn Welcha7fa9852008-11-12 13:27:06 -0800231static struct i2c_driver rx8581_driver = {
232 .driver = {
233 .name = "rtc-rx8581",
Javier Martinez Canillasffbecfb2017-03-03 11:29:22 -0300234 .of_match_table = of_match_ptr(rx8581_of_match),
Martyn Welcha7fa9852008-11-12 13:27:06 -0800235 },
236 .probe = rx8581_probe,
Martyn Welcha7fa9852008-11-12 13:27:06 -0800237 .id_table = rx8581_id,
238};
239
Axel Lin0abc9202012-03-23 15:02:31 -0700240module_i2c_driver(rx8581_driver);
Martyn Welcha7fa9852008-11-12 13:27:06 -0800241
Martyn Welch9756c4d2010-04-14 09:24:16 +0100242MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com>");
Martyn Welcha7fa9852008-11-12 13:27:06 -0800243MODULE_DESCRIPTION("Epson RX-8581 RTC driver");
244MODULE_LICENSE("GPL");