blob: 5a4c2c5e86fe0dd8731a5cb3115d6d83768ca24b [file] [log] [blame]
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -07001/*
2 * An rtc driver for the Dallas DS1742
3 *
4 * Copyright (C) 2006 Atsushi Nemoto <anemo@mba.ocn.ne.jp>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -08009 *
10 * Copyright (C) 2006 Torsten Ertbjerg Rasmussen <tr@newtec.dk>
11 * - nvram size determined from resource
12 * - this ds1742 driver now supports ds1743.
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070013 */
14
15#include <linux/bcd.h>
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070016#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/gfp.h>
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070018#include <linux/delay.h>
19#include <linux/jiffies.h>
20#include <linux/rtc.h>
Alexander Shiyan663b3522014-01-23 15:55:06 -080021#include <linux/of.h>
22#include <linux/of_device.h>
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070023#include <linux/platform_device.h>
24#include <linux/io.h>
Paul Gortmaker21138522011-05-27 09:57:25 -040025#include <linux/module.h>
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070026
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -080027#define RTC_SIZE 8
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070028
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -080029#define RTC_CONTROL 0
30#define RTC_CENTURY 0
31#define RTC_SECONDS 1
32#define RTC_MINUTES 2
33#define RTC_HOURS 3
34#define RTC_DAY 4
35#define RTC_DATE 5
36#define RTC_MONTH 6
37#define RTC_YEAR 7
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070038
39#define RTC_CENTURY_MASK 0x3f
40#define RTC_SECONDS_MASK 0x7f
41#define RTC_DAY_MASK 0x07
42
43/* Bits in the Control/Century register */
44#define RTC_WRITE 0x80
45#define RTC_READ 0x40
46
47/* Bits in the Seconds register */
48#define RTC_STOP 0x80
49
50/* Bits in the Day register */
51#define RTC_BATT_FLAG 0x80
52
53struct rtc_plat_data {
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -080054 void __iomem *ioaddr_nvram;
55 void __iomem *ioaddr_rtc;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070056 unsigned long last_jiffies;
57};
58
59static int ds1742_rtc_set_time(struct device *dev, struct rtc_time *tm)
60{
Wolfram Sang85368bb2018-04-19 16:06:14 +020061 struct rtc_plat_data *pdata = dev_get_drvdata(dev);
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -080062 void __iomem *ioaddr = pdata->ioaddr_rtc;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070063 u8 century;
64
Adrian Bunkfe20ba72008-10-18 20:28:41 -070065 century = bin2bcd((tm->tm_year + 1900) / 100);
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070066
67 writeb(RTC_WRITE, ioaddr + RTC_CONTROL);
68
Adrian Bunkfe20ba72008-10-18 20:28:41 -070069 writeb(bin2bcd(tm->tm_year % 100), ioaddr + RTC_YEAR);
70 writeb(bin2bcd(tm->tm_mon + 1), ioaddr + RTC_MONTH);
71 writeb(bin2bcd(tm->tm_wday) & RTC_DAY_MASK, ioaddr + RTC_DAY);
72 writeb(bin2bcd(tm->tm_mday), ioaddr + RTC_DATE);
73 writeb(bin2bcd(tm->tm_hour), ioaddr + RTC_HOURS);
74 writeb(bin2bcd(tm->tm_min), ioaddr + RTC_MINUTES);
75 writeb(bin2bcd(tm->tm_sec) & RTC_SECONDS_MASK, ioaddr + RTC_SECONDS);
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070076
77 /* RTC_CENTURY and RTC_CONTROL share same register */
78 writeb(RTC_WRITE | (century & RTC_CENTURY_MASK), ioaddr + RTC_CENTURY);
79 writeb(century & RTC_CENTURY_MASK, ioaddr + RTC_CONTROL);
80 return 0;
81}
82
83static int ds1742_rtc_read_time(struct device *dev, struct rtc_time *tm)
84{
Wolfram Sang85368bb2018-04-19 16:06:14 +020085 struct rtc_plat_data *pdata = dev_get_drvdata(dev);
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -080086 void __iomem *ioaddr = pdata->ioaddr_rtc;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -070087 unsigned int year, month, day, hour, minute, second, week;
88 unsigned int century;
89
90 /* give enough time to update RTC in case of continuous read */
91 if (pdata->last_jiffies == jiffies)
92 msleep(1);
93 pdata->last_jiffies = jiffies;
94 writeb(RTC_READ, ioaddr + RTC_CONTROL);
95 second = readb(ioaddr + RTC_SECONDS) & RTC_SECONDS_MASK;
96 minute = readb(ioaddr + RTC_MINUTES);
97 hour = readb(ioaddr + RTC_HOURS);
98 day = readb(ioaddr + RTC_DATE);
99 week = readb(ioaddr + RTC_DAY) & RTC_DAY_MASK;
100 month = readb(ioaddr + RTC_MONTH);
101 year = readb(ioaddr + RTC_YEAR);
102 century = readb(ioaddr + RTC_CENTURY) & RTC_CENTURY_MASK;
103 writeb(0, ioaddr + RTC_CONTROL);
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700104 tm->tm_sec = bcd2bin(second);
105 tm->tm_min = bcd2bin(minute);
106 tm->tm_hour = bcd2bin(hour);
107 tm->tm_mday = bcd2bin(day);
108 tm->tm_wday = bcd2bin(week);
109 tm->tm_mon = bcd2bin(month) - 1;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700110 /* year is 1900 + tm->tm_year */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700111 tm->tm_year = bcd2bin(year) + bcd2bin(century) * 100 - 1900;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700112
Alexandre Belloni22652ba2018-02-19 16:23:56 +0100113 return 0;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700114}
115
David Brownellff8371a2006-09-30 23:28:17 -0700116static const struct rtc_class_ops ds1742_rtc_ops = {
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700117 .read_time = ds1742_rtc_read_time,
118 .set_time = ds1742_rtc_set_time,
119};
120
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100121static int ds1742_nvram_read(void *priv, unsigned int pos, void *val,
122 size_t bytes)
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700123{
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100124 struct rtc_plat_data *pdata = priv;
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -0800125 void __iomem *ioaddr = pdata->ioaddr_nvram;
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100126 u8 *buf = val;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700127
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100128 for (; bytes; bytes--)
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700129 *buf++ = readb(ioaddr + pos++);
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100130 return 0;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700131}
132
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100133static int ds1742_nvram_write(void *priv, unsigned int pos, void *val,
134 size_t bytes)
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700135{
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100136 struct rtc_plat_data *pdata = priv;
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -0800137 void __iomem *ioaddr = pdata->ioaddr_nvram;
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100138 u8 *buf = val;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700139
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100140 for (; bytes; bytes--)
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700141 writeb(*buf++, ioaddr + pos++);
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100142 return 0;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700143}
144
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800145static int ds1742_rtc_probe(struct platform_device *pdev)
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700146{
147 struct rtc_device *rtc;
148 struct resource *res;
149 unsigned int cen, sec;
Atsushi Nemotoac18eb62009-12-15 16:46:02 -0800150 struct rtc_plat_data *pdata;
151 void __iomem *ioaddr;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700152 int ret = 0;
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100153 struct nvmem_config nvmem_cfg = {
154 .name = "ds1742_nvram",
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100155 .reg_read = ds1742_nvram_read,
156 .reg_write = ds1742_nvram_write,
157 };
158
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700159
Atsushi Nemotoac18eb62009-12-15 16:46:02 -0800160 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700161 if (!pdata)
162 return -ENOMEM;
Alexander Shiyan25e28182013-09-11 14:24:24 -0700163
164 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
165 ioaddr = devm_ioremap_resource(&pdev->dev, res);
166 if (IS_ERR(ioaddr))
167 return PTR_ERR(ioaddr);
Atsushi Nemotoac18eb62009-12-15 16:46:02 -0800168
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -0800169 pdata->ioaddr_nvram = ioaddr;
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100170 pdata->ioaddr_rtc = ioaddr + resource_size(res) - RTC_SIZE;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700171
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100172 nvmem_cfg.size = resource_size(res) - RTC_SIZE;
173 nvmem_cfg.priv = pdata;
Torsten Ertbjerg Rasmussen3a729702009-06-17 16:26:07 -0700174
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700175 /* turn RTC on if it was not on */
Torsten Ertbjerg Rasmussenf9231a02006-12-06 20:39:41 -0800176 ioaddr = pdata->ioaddr_rtc;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700177 sec = readb(ioaddr + RTC_SECONDS);
178 if (sec & RTC_STOP) {
179 sec &= RTC_SECONDS_MASK;
180 cen = readb(ioaddr + RTC_CENTURY) & RTC_CENTURY_MASK;
181 writeb(RTC_WRITE, ioaddr + RTC_CONTROL);
182 writeb(sec, ioaddr + RTC_SECONDS);
183 writeb(cen & RTC_CENTURY_MASK, ioaddr + RTC_CONTROL);
184 }
Atsushi Nemoto391b1fe2006-09-30 23:28:18 -0700185 if (!(readb(ioaddr + RTC_DAY) & RTC_BATT_FLAG))
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700186 dev_warn(&pdev->dev, "voltage-low detected.\n");
187
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700188 pdata->last_jiffies = jiffies;
189 platform_set_drvdata(pdev, pdata);
Alexandre Belloni1358e7b2018-02-12 23:47:47 +0100190
191 rtc = devm_rtc_allocate_device(&pdev->dev);
Atsushi Nemotoac18eb62009-12-15 16:46:02 -0800192 if (IS_ERR(rtc))
193 return PTR_ERR(rtc);
Torsten Ertbjerg Rasmussen3a729702009-06-17 16:26:07 -0700194
Alexandre Belloni1358e7b2018-02-12 23:47:47 +0100195 rtc->ops = &ds1742_rtc_ops;
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100196 rtc->nvram_old_abi = true;
Alexandre Belloni1358e7b2018-02-12 23:47:47 +0100197
198 ret = rtc_register_device(rtc);
199 if (ret)
200 return ret;
201
Alexandre Belloni87c78d92018-02-12 23:47:48 +0100202 if (rtc_nvmem_register(rtc, &nvmem_cfg))
203 dev_err(&pdev->dev, "Unable to register nvmem\n");
Jingoo Hanf7cfdea2013-04-29 16:19:01 -0700204
Alessandro Zummo4071ea22014-04-03 14:49:36 -0700205 return 0;
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700206}
207
Jingoo Han9d2035722014-06-06 14:35:54 -0700208static const struct of_device_id __maybe_unused ds1742_rtc_of_match[] = {
Alexander Shiyan663b3522014-01-23 15:55:06 -0800209 { .compatible = "maxim,ds1742", },
210 { }
211};
212MODULE_DEVICE_TABLE(of, ds1742_rtc_of_match);
213
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700214static struct platform_driver ds1742_rtc_driver = {
215 .probe = ds1742_rtc_probe,
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700216 .driver = {
Atsushi Nemotoa95e23a2007-10-16 01:28:18 -0700217 .name = "rtc-ds1742",
Alexander Shiyan3710f592014-08-08 14:20:07 -0700218 .of_match_table = of_match_ptr(ds1742_rtc_of_match),
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700219 },
220};
221
Axel Lin0c4eae62012-01-10 15:10:48 -0800222module_platform_driver(ds1742_rtc_driver);
Atsushi Nemoto5ec3e4b2006-06-25 05:48:29 -0700223
224MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>");
225MODULE_DESCRIPTION("Dallas DS1742 RTC driver");
226MODULE_LICENSE("GPL");
Kay Sieversad28a072008-04-10 21:29:25 -0700227MODULE_ALIAS("platform:rtc-ds1742");