Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / drivers / rtc / rtc-ds1742.c
CommitLineData
5ec3e4b7
AN
1/*
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.
f9231a0c
TER
9 *
10 * Copyright (C) 2006 Torsten Ertbjerg Rasmussen <tr@newtec.dk>
11 * - nvram size determined from resource
12 * - this ds1742 driver now supports ds1743.
5ec3e4b7
AN
13 */
14
15#include <linux/bcd.h>
16#include <linux/init.h>
17#include <linux/kernel.h>
5a0e3ad6 18#include <linux/gfp.h>
5ec3e4b7
AN
19#include <linux/delay.h>
20#include <linux/jiffies.h>
21#include <linux/rtc.h>
22#include <linux/platform_device.h>
23#include <linux/io.h>
2113852b 24#include <linux/module.h>
5ec3e4b7 25
ac18eb62 26#define DRV_VERSION "0.4"
5ec3e4b7 27
f9231a0c 28#define RTC_SIZE 8
5ec3e4b7 29
f9231a0c
TER
30#define RTC_CONTROL 0
31#define RTC_CENTURY 0
32#define RTC_SECONDS 1
33#define RTC_MINUTES 2
34#define RTC_HOURS 3
35#define RTC_DAY 4
36#define RTC_DATE 5
37#define RTC_MONTH 6
38#define RTC_YEAR 7
5ec3e4b7
AN
39
40#define RTC_CENTURY_MASK 0x3f
41#define RTC_SECONDS_MASK 0x7f
42#define RTC_DAY_MASK 0x07
43
44/* Bits in the Control/Century register */
45#define RTC_WRITE 0x80
46#define RTC_READ 0x40
47
48/* Bits in the Seconds register */
49#define RTC_STOP 0x80
50
51/* Bits in the Day register */
52#define RTC_BATT_FLAG 0x80
53
54struct rtc_plat_data {
f9231a0c
TER
55 void __iomem *ioaddr_nvram;
56 void __iomem *ioaddr_rtc;
57 size_t size_nvram;
5ec3e4b7 58 unsigned long last_jiffies;
3a729700 59 struct bin_attribute nvram_attr;
5ec3e4b7
AN
60};
61
62static int ds1742_rtc_set_time(struct device *dev, struct rtc_time *tm)
63{
64 struct platform_device *pdev = to_platform_device(dev);
65 struct rtc_plat_data *pdata = platform_get_drvdata(pdev);
f9231a0c 66 void __iomem *ioaddr = pdata->ioaddr_rtc;
5ec3e4b7
AN
67 u8 century;
68
fe20ba70 69 century = bin2bcd((tm->tm_year + 1900) / 100);
5ec3e4b7
AN
70
71 writeb(RTC_WRITE, ioaddr + RTC_CONTROL);
72
fe20ba70
AB
73 writeb(bin2bcd(tm->tm_year % 100), ioaddr + RTC_YEAR);
74 writeb(bin2bcd(tm->tm_mon + 1), ioaddr + RTC_MONTH);
75 writeb(bin2bcd(tm->tm_wday) & RTC_DAY_MASK, ioaddr + RTC_DAY);
76 writeb(bin2bcd(tm->tm_mday), ioaddr + RTC_DATE);
77 writeb(bin2bcd(tm->tm_hour), ioaddr + RTC_HOURS);
78 writeb(bin2bcd(tm->tm_min), ioaddr + RTC_MINUTES);
79 writeb(bin2bcd(tm->tm_sec) & RTC_SECONDS_MASK, ioaddr + RTC_SECONDS);
5ec3e4b7
AN
80
81 /* RTC_CENTURY and RTC_CONTROL share same register */
82 writeb(RTC_WRITE | (century & RTC_CENTURY_MASK), ioaddr + RTC_CENTURY);
83 writeb(century & RTC_CENTURY_MASK, ioaddr + RTC_CONTROL);
84 return 0;
85}
86
87static int ds1742_rtc_read_time(struct device *dev, struct rtc_time *tm)
88{
89 struct platform_device *pdev = to_platform_device(dev);
90 struct rtc_plat_data *pdata = platform_get_drvdata(pdev);
f9231a0c 91 void __iomem *ioaddr = pdata->ioaddr_rtc;
5ec3e4b7
AN
92 unsigned int year, month, day, hour, minute, second, week;
93 unsigned int century;
94
95 /* give enough time to update RTC in case of continuous read */
96 if (pdata->last_jiffies == jiffies)
97 msleep(1);
98 pdata->last_jiffies = jiffies;
99 writeb(RTC_READ, ioaddr + RTC_CONTROL);
100 second = readb(ioaddr + RTC_SECONDS) & RTC_SECONDS_MASK;
101 minute = readb(ioaddr + RTC_MINUTES);
102 hour = readb(ioaddr + RTC_HOURS);
103 day = readb(ioaddr + RTC_DATE);
104 week = readb(ioaddr + RTC_DAY) & RTC_DAY_MASK;
105 month = readb(ioaddr + RTC_MONTH);
106 year = readb(ioaddr + RTC_YEAR);
107 century = readb(ioaddr + RTC_CENTURY) & RTC_CENTURY_MASK;
108 writeb(0, ioaddr + RTC_CONTROL);
fe20ba70
AB
109 tm->tm_sec = bcd2bin(second);
110 tm->tm_min = bcd2bin(minute);
111 tm->tm_hour = bcd2bin(hour);
112 tm->tm_mday = bcd2bin(day);
113 tm->tm_wday = bcd2bin(week);
114 tm->tm_mon = bcd2bin(month) - 1;
5ec3e4b7 115 /* year is 1900 + tm->tm_year */
fe20ba70 116 tm->tm_year = bcd2bin(year) + bcd2bin(century) * 100 - 1900;
5ec3e4b7 117
1735be4b 118 return rtc_valid_tm(tm);
5ec3e4b7
AN
119}
120
ff8371ac 121static const struct rtc_class_ops ds1742_rtc_ops = {
5ec3e4b7
AN
122 .read_time = ds1742_rtc_read_time,
123 .set_time = ds1742_rtc_set_time,
124};
125
2c3c8bea 126static ssize_t ds1742_nvram_read(struct file *filp, struct kobject *kobj,
91a69029
ZR
127 struct bin_attribute *bin_attr,
128 char *buf, loff_t pos, size_t size)
5ec3e4b7 129{
50e49bee
AN
130 struct device *dev = container_of(kobj, struct device, kobj);
131 struct platform_device *pdev = to_platform_device(dev);
5ec3e4b7 132 struct rtc_plat_data *pdata = platform_get_drvdata(pdev);
f9231a0c 133 void __iomem *ioaddr = pdata->ioaddr_nvram;
5ec3e4b7
AN
134 ssize_t count;
135
f9231a0c 136 for (count = 0; size > 0 && pos < pdata->size_nvram; count++, size--)
5ec3e4b7
AN
137 *buf++ = readb(ioaddr + pos++);
138 return count;
139}
140
2c3c8bea 141static ssize_t ds1742_nvram_write(struct file *filp, struct kobject *kobj,
91a69029
ZR
142 struct bin_attribute *bin_attr,
143 char *buf, loff_t pos, size_t size)
5ec3e4b7 144{
50e49bee
AN
145 struct device *dev = container_of(kobj, struct device, kobj);
146 struct platform_device *pdev = to_platform_device(dev);
5ec3e4b7 147 struct rtc_plat_data *pdata = platform_get_drvdata(pdev);
f9231a0c 148 void __iomem *ioaddr = pdata->ioaddr_nvram;
5ec3e4b7
AN
149 ssize_t count;
150
f9231a0c 151 for (count = 0; size > 0 && pos < pdata->size_nvram; count++, size--)
5ec3e4b7
AN
152 writeb(*buf++, ioaddr + pos++);
153 return count;
154}
155
5a167f45 156static int ds1742_rtc_probe(struct platform_device *pdev)
5ec3e4b7
AN
157{
158 struct rtc_device *rtc;
159 struct resource *res;
160 unsigned int cen, sec;
ac18eb62
AN
161 struct rtc_plat_data *pdata;
162 void __iomem *ioaddr;
5ec3e4b7
AN
163 int ret = 0;
164
ac18eb62 165 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
5ec3e4b7
AN
166 if (!pdata)
167 return -ENOMEM;
25e2818e
AS
168
169 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
170 ioaddr = devm_ioremap_resource(&pdev->dev, res);
171 if (IS_ERR(ioaddr))
172 return PTR_ERR(ioaddr);
ac18eb62 173
f9231a0c 174 pdata->ioaddr_nvram = ioaddr;
25e2818e 175 pdata->size_nvram = resource_size(res) - RTC_SIZE;
f9231a0c 176 pdata->ioaddr_rtc = ioaddr + pdata->size_nvram;
5ec3e4b7 177
f937331b 178 sysfs_bin_attr_init(&pdata->nvram_attr);
3a729700
TER
179 pdata->nvram_attr.attr.name = "nvram";
180 pdata->nvram_attr.attr.mode = S_IRUGO | S_IWUSR;
181 pdata->nvram_attr.read = ds1742_nvram_read;
182 pdata->nvram_attr.write = ds1742_nvram_write;
183 pdata->nvram_attr.size = pdata->size_nvram;
184
5ec3e4b7 185 /* turn RTC on if it was not on */
f9231a0c 186 ioaddr = pdata->ioaddr_rtc;
5ec3e4b7
AN
187 sec = readb(ioaddr + RTC_SECONDS);
188 if (sec & RTC_STOP) {
189 sec &= RTC_SECONDS_MASK;
190 cen = readb(ioaddr + RTC_CENTURY) & RTC_CENTURY_MASK;
191 writeb(RTC_WRITE, ioaddr + RTC_CONTROL);
192 writeb(sec, ioaddr + RTC_SECONDS);
193 writeb(cen & RTC_CENTURY_MASK, ioaddr + RTC_CONTROL);
194 }
391b1fe6 195 if (!(readb(ioaddr + RTC_DAY) & RTC_BATT_FLAG))
5ec3e4b7
AN
196 dev_warn(&pdev->dev, "voltage-low detected.\n");
197
ac18eb62
AN
198 pdata->last_jiffies = jiffies;
199 platform_set_drvdata(pdev, pdata);
f7cfdea0 200 rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
5ec3e4b7 201 &ds1742_rtc_ops, THIS_MODULE);
ac18eb62
AN
202 if (IS_ERR(rtc))
203 return PTR_ERR(rtc);
3a729700
TER
204
205 ret = sysfs_create_bin_file(&pdev->dev.kobj, &pdata->nvram_attr);
f7cfdea0 206
5ec3e4b7
AN
207 return ret;
208}
209
5a167f45 210static int ds1742_rtc_remove(struct platform_device *pdev)
5ec3e4b7
AN
211{
212 struct rtc_plat_data *pdata = platform_get_drvdata(pdev);
213
3a729700 214 sysfs_remove_bin_file(&pdev->dev.kobj, &pdata->nvram_attr);
5ec3e4b7
AN
215 return 0;
216}
217
218static struct platform_driver ds1742_rtc_driver = {
219 .probe = ds1742_rtc_probe,
5a167f45 220 .remove = ds1742_rtc_remove,
5ec3e4b7 221 .driver = {
a95e23a2 222 .name = "rtc-ds1742",
5ec3e4b7
AN
223 .owner = THIS_MODULE,
224 },
225};
226
0c4eae66 227module_platform_driver(ds1742_rtc_driver);
5ec3e4b7
AN
228
229MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>");
230MODULE_DESCRIPTION("Dallas DS1742 RTC driver");
231MODULE_LICENSE("GPL");
232MODULE_VERSION(DRV_VERSION);
ad28a07b 233MODULE_ALIAS("platform:rtc-ds1742");