1 // SPDX-License-Identifier: GPL-2.0-only
3 * EPSON TOYOCOM RTC-7301SF/DG Driver
7 * Based on rtc-rp5c01.c
9 * Datasheet: http://www5.epsondevice.com/en/products/parallel/rtc7301sf.html
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/mod_devicetable.h>
16 #include <linux/delay.h>
17 #include <linux/regmap.h>
18 #include <linux/platform_device.h>
19 #include <linux/rtc.h>
21 #define DRV_NAME "rtc-r7301"
23 #define RTC7301_1_SEC 0x0 /* Bank 0 and Band 1 */
24 #define RTC7301_10_SEC 0x1 /* Bank 0 and Band 1 */
25 #define RTC7301_AE BIT(3)
26 #define RTC7301_1_MIN 0x2 /* Bank 0 and Band 1 */
27 #define RTC7301_10_MIN 0x3 /* Bank 0 and Band 1 */
28 #define RTC7301_1_HOUR 0x4 /* Bank 0 and Band 1 */
29 #define RTC7301_10_HOUR 0x5 /* Bank 0 and Band 1 */
30 #define RTC7301_DAY_OF_WEEK 0x6 /* Bank 0 and Band 1 */
31 #define RTC7301_1_DAY 0x7 /* Bank 0 and Band 1 */
32 #define RTC7301_10_DAY 0x8 /* Bank 0 and Band 1 */
33 #define RTC7301_1_MONTH 0x9 /* Bank 0 */
34 #define RTC7301_10_MONTH 0xa /* Bank 0 */
35 #define RTC7301_1_YEAR 0xb /* Bank 0 */
36 #define RTC7301_10_YEAR 0xc /* Bank 0 */
37 #define RTC7301_100_YEAR 0xd /* Bank 0 */
38 #define RTC7301_1000_YEAR 0xe /* Bank 0 */
39 #define RTC7301_ALARM_CONTROL 0xe /* Bank 1 */
40 #define RTC7301_ALARM_CONTROL_AIE BIT(0)
41 #define RTC7301_ALARM_CONTROL_AF BIT(1)
42 #define RTC7301_TIMER_CONTROL 0xe /* Bank 2 */
43 #define RTC7301_TIMER_CONTROL_TIE BIT(0)
44 #define RTC7301_TIMER_CONTROL_TF BIT(1)
45 #define RTC7301_CONTROL 0xf /* All banks */
46 #define RTC7301_CONTROL_BUSY BIT(0)
47 #define RTC7301_CONTROL_STOP BIT(1)
48 #define RTC7301_CONTROL_BANK_SEL_0 BIT(2)
49 #define RTC7301_CONTROL_BANK_SEL_1 BIT(3)
52 struct regmap *regmap;
58 static const struct regmap_config rtc7301_regmap_config = {
64 static u8 rtc7301_read(struct rtc7301_priv *priv, unsigned int reg)
66 int reg_stride = regmap_get_reg_stride(priv->regmap);
69 regmap_read(priv->regmap, reg_stride * reg, &val);
74 static void rtc7301_write(struct rtc7301_priv *priv, u8 val, unsigned int reg)
76 int reg_stride = regmap_get_reg_stride(priv->regmap);
78 regmap_write(priv->regmap, reg_stride * reg, val);
81 static void rtc7301_update_bits(struct rtc7301_priv *priv, unsigned int reg,
84 int reg_stride = regmap_get_reg_stride(priv->regmap);
86 regmap_update_bits(priv->regmap, reg_stride * reg, mask, val);
89 static int rtc7301_wait_while_busy(struct rtc7301_priv *priv)
93 while (retries-- > 0) {
96 val = rtc7301_read(priv, RTC7301_CONTROL);
97 if (!(val & RTC7301_CONTROL_BUSY))
106 static void rtc7301_stop(struct rtc7301_priv *priv)
108 rtc7301_update_bits(priv, RTC7301_CONTROL, RTC7301_CONTROL_STOP,
109 RTC7301_CONTROL_STOP);
112 static void rtc7301_start(struct rtc7301_priv *priv)
114 rtc7301_update_bits(priv, RTC7301_CONTROL, RTC7301_CONTROL_STOP, 0);
117 static void rtc7301_select_bank(struct rtc7301_priv *priv, u8 bank)
121 if (bank == priv->bank)
125 val |= RTC7301_CONTROL_BANK_SEL_0;
127 val |= RTC7301_CONTROL_BANK_SEL_1;
129 rtc7301_update_bits(priv, RTC7301_CONTROL,
130 RTC7301_CONTROL_BANK_SEL_0 |
131 RTC7301_CONTROL_BANK_SEL_1, val);
136 static void rtc7301_get_time(struct rtc7301_priv *priv, struct rtc_time *tm,
141 tm->tm_sec = rtc7301_read(priv, RTC7301_1_SEC);
142 tm->tm_sec += (rtc7301_read(priv, RTC7301_10_SEC) & ~RTC7301_AE) * 10;
143 tm->tm_min = rtc7301_read(priv, RTC7301_1_MIN);
144 tm->tm_min += (rtc7301_read(priv, RTC7301_10_MIN) & ~RTC7301_AE) * 10;
145 tm->tm_hour = rtc7301_read(priv, RTC7301_1_HOUR);
146 tm->tm_hour += (rtc7301_read(priv, RTC7301_10_HOUR) & ~RTC7301_AE) * 10;
147 tm->tm_mday = rtc7301_read(priv, RTC7301_1_DAY);
148 tm->tm_mday += (rtc7301_read(priv, RTC7301_10_DAY) & ~RTC7301_AE) * 10;
159 tm->tm_wday = (rtc7301_read(priv, RTC7301_DAY_OF_WEEK) & ~RTC7301_AE);
160 tm->tm_mon = rtc7301_read(priv, RTC7301_10_MONTH) * 10 +
161 rtc7301_read(priv, RTC7301_1_MONTH) - 1;
162 year = rtc7301_read(priv, RTC7301_1000_YEAR) * 1000 +
163 rtc7301_read(priv, RTC7301_100_YEAR) * 100 +
164 rtc7301_read(priv, RTC7301_10_YEAR) * 10 +
165 rtc7301_read(priv, RTC7301_1_YEAR);
167 tm->tm_year = year - 1900;
170 static void rtc7301_write_time(struct rtc7301_priv *priv, struct rtc_time *tm,
175 rtc7301_write(priv, tm->tm_sec % 10, RTC7301_1_SEC);
176 rtc7301_write(priv, tm->tm_sec / 10, RTC7301_10_SEC);
178 rtc7301_write(priv, tm->tm_min % 10, RTC7301_1_MIN);
179 rtc7301_write(priv, tm->tm_min / 10, RTC7301_10_MIN);
181 rtc7301_write(priv, tm->tm_hour % 10, RTC7301_1_HOUR);
182 rtc7301_write(priv, tm->tm_hour / 10, RTC7301_10_HOUR);
184 rtc7301_write(priv, tm->tm_mday % 10, RTC7301_1_DAY);
185 rtc7301_write(priv, tm->tm_mday / 10, RTC7301_10_DAY);
187 /* Don't care for alarm register */
188 rtc7301_write(priv, alarm ? RTC7301_AE : tm->tm_wday,
189 RTC7301_DAY_OF_WEEK);
194 rtc7301_write(priv, (tm->tm_mon + 1) % 10, RTC7301_1_MONTH);
195 rtc7301_write(priv, (tm->tm_mon + 1) / 10, RTC7301_10_MONTH);
197 year = tm->tm_year + 1900;
199 rtc7301_write(priv, year % 10, RTC7301_1_YEAR);
200 rtc7301_write(priv, (year / 10) % 10, RTC7301_10_YEAR);
201 rtc7301_write(priv, (year / 100) % 10, RTC7301_100_YEAR);
202 rtc7301_write(priv, year / 1000, RTC7301_1000_YEAR);
205 static void rtc7301_alarm_irq(struct rtc7301_priv *priv, unsigned int enabled)
207 rtc7301_update_bits(priv, RTC7301_ALARM_CONTROL,
208 RTC7301_ALARM_CONTROL_AF |
209 RTC7301_ALARM_CONTROL_AIE,
210 enabled ? RTC7301_ALARM_CONTROL_AIE : 0);
213 static int rtc7301_read_time(struct device *dev, struct rtc_time *tm)
215 struct rtc7301_priv *priv = dev_get_drvdata(dev);
219 spin_lock_irqsave(&priv->lock, flags);
221 rtc7301_select_bank(priv, 0);
223 err = rtc7301_wait_while_busy(priv);
225 rtc7301_get_time(priv, tm, false);
227 spin_unlock_irqrestore(&priv->lock, flags);
232 static int rtc7301_set_time(struct device *dev, struct rtc_time *tm)
234 struct rtc7301_priv *priv = dev_get_drvdata(dev);
237 spin_lock_irqsave(&priv->lock, flags);
241 rtc7301_select_bank(priv, 0);
242 rtc7301_write_time(priv, tm, false);
245 spin_unlock_irqrestore(&priv->lock, flags);
250 static int rtc7301_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
252 struct rtc7301_priv *priv = dev_get_drvdata(dev);
259 spin_lock_irqsave(&priv->lock, flags);
261 rtc7301_select_bank(priv, 1);
262 rtc7301_get_time(priv, &alarm->time, true);
264 alrm_ctrl = rtc7301_read(priv, RTC7301_ALARM_CONTROL);
266 alarm->enabled = !!(alrm_ctrl & RTC7301_ALARM_CONTROL_AIE);
267 alarm->pending = !!(alrm_ctrl & RTC7301_ALARM_CONTROL_AF);
269 spin_unlock_irqrestore(&priv->lock, flags);
274 static int rtc7301_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
276 struct rtc7301_priv *priv = dev_get_drvdata(dev);
282 spin_lock_irqsave(&priv->lock, flags);
284 rtc7301_select_bank(priv, 1);
285 rtc7301_write_time(priv, &alarm->time, true);
286 rtc7301_alarm_irq(priv, alarm->enabled);
288 spin_unlock_irqrestore(&priv->lock, flags);
293 static int rtc7301_alarm_irq_enable(struct device *dev, unsigned int enabled)
295 struct rtc7301_priv *priv = dev_get_drvdata(dev);
301 spin_lock_irqsave(&priv->lock, flags);
303 rtc7301_select_bank(priv, 1);
304 rtc7301_alarm_irq(priv, enabled);
306 spin_unlock_irqrestore(&priv->lock, flags);
311 static const struct rtc_class_ops rtc7301_rtc_ops = {
312 .read_time = rtc7301_read_time,
313 .set_time = rtc7301_set_time,
314 .read_alarm = rtc7301_read_alarm,
315 .set_alarm = rtc7301_set_alarm,
316 .alarm_irq_enable = rtc7301_alarm_irq_enable,
319 static irqreturn_t rtc7301_irq_handler(int irq, void *dev_id)
321 struct rtc_device *rtc = dev_id;
322 struct rtc7301_priv *priv = dev_get_drvdata(rtc->dev.parent);
324 irqreturn_t ret = IRQ_NONE;
327 spin_lock_irqsave(&priv->lock, flags);
329 rtc7301_select_bank(priv, 1);
331 alrm_ctrl = rtc7301_read(priv, RTC7301_ALARM_CONTROL);
332 if (alrm_ctrl & RTC7301_ALARM_CONTROL_AF) {
334 rtc7301_alarm_irq(priv, false);
335 rtc_update_irq(rtc, 1, RTC_IRQF | RTC_AF);
338 spin_unlock_irqrestore(&priv->lock, flags);
343 static void rtc7301_init(struct rtc7301_priv *priv)
347 spin_lock_irqsave(&priv->lock, flags);
349 rtc7301_select_bank(priv, 2);
350 rtc7301_write(priv, 0, RTC7301_TIMER_CONTROL);
352 spin_unlock_irqrestore(&priv->lock, flags);
355 static int __init rtc7301_rtc_probe(struct platform_device *dev)
357 struct resource *res;
359 struct rtc7301_priv *priv;
360 struct rtc_device *rtc;
363 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
367 priv = devm_kzalloc(&dev->dev, sizeof(*priv), GFP_KERNEL);
371 regs = devm_ioremap_resource(&dev->dev, res);
373 return PTR_ERR(regs);
375 priv->regmap = devm_regmap_init_mmio(&dev->dev, regs,
376 &rtc7301_regmap_config);
377 if (IS_ERR(priv->regmap))
378 return PTR_ERR(priv->regmap);
380 priv->irq = platform_get_irq(dev, 0);
382 spin_lock_init(&priv->lock);
387 platform_set_drvdata(dev, priv);
389 rtc = devm_rtc_device_register(&dev->dev, DRV_NAME, &rtc7301_rtc_ops,
395 ret = devm_request_irq(&dev->dev, priv->irq,
396 rtc7301_irq_handler, IRQF_SHARED,
397 dev_name(&dev->dev), rtc);
400 dev_err(&dev->dev, "unable to request IRQ\n");
402 device_set_wakeup_capable(&dev->dev, true);
409 #ifdef CONFIG_PM_SLEEP
411 static int rtc7301_suspend(struct device *dev)
413 struct rtc7301_priv *priv = dev_get_drvdata(dev);
415 if (device_may_wakeup(dev))
416 enable_irq_wake(priv->irq);
421 static int rtc7301_resume(struct device *dev)
423 struct rtc7301_priv *priv = dev_get_drvdata(dev);
425 if (device_may_wakeup(dev))
426 disable_irq_wake(priv->irq);
433 static SIMPLE_DEV_PM_OPS(rtc7301_pm_ops, rtc7301_suspend, rtc7301_resume);
435 static const struct of_device_id rtc7301_dt_match[] = {
436 { .compatible = "epson,rtc7301sf" },
437 { .compatible = "epson,rtc7301dg" },
440 MODULE_DEVICE_TABLE(of, rtc7301_dt_match);
442 static struct platform_driver rtc7301_rtc_driver = {
445 .of_match_table = rtc7301_dt_match,
446 .pm = &rtc7301_pm_ops,
450 module_platform_driver_probe(rtc7301_rtc_driver, rtc7301_rtc_probe);
453 MODULE_LICENSE("GPL");
454 MODULE_DESCRIPTION("EPSON TOYOCOM RTC-7301SF/DG Driver");
455 MODULE_ALIAS("platform:rtc-r7301");