blob: 66955cc9c746569bb55a702d0218ba47728384be [file] [log] [blame]
Raphael Assenat362600f2006-06-25 05:48:24 -07001/* drivers/rtc/rtc-v3020.c
2 *
3 * Copyright (C) 2006 8D Technologies inc.
4 * Copyright (C) 2004 Compulab Ltd.
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.
9 *
10 * Driver for the V3020 RTC
11 *
12 * Changelog:
13 *
14 * 10-May-2006: Raphael Assenat <raph@8d.com>
15 * - Converted to platform driver
16 * - Use the generic rtc class
17 *
18 * ??-???-2004: Someone at Compulab
19 * - Initial driver creation.
20 *
21 */
22#include <linux/platform_device.h>
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/rtc.h>
26#include <linux/types.h>
27#include <linux/bcd.h>
28#include <linux/rtc-v3020.h>
Mike Rapoportf3d79b22007-09-11 15:23:45 -070029#include <linux/delay.h>
Raphael Assenat362600f2006-06-25 05:48:24 -070030
Mike Rapoportc08cf9d2009-03-31 15:24:59 -070031#include <linux/io.h>
Raphael Assenat362600f2006-06-25 05:48:24 -070032
33#undef DEBUG
34
35struct v3020 {
36 void __iomem *ioaddress;
37 int leftshift;
38 struct rtc_device *rtc;
39};
40
41static void v3020_set_reg(struct v3020 *chip, unsigned char address,
42 unsigned char data)
43{
44 int i;
45 unsigned char tmp;
46
47 tmp = address;
48 for (i = 0; i < 4; i++) {
49 writel((tmp & 1) << chip->leftshift, chip->ioaddress);
50 tmp >>= 1;
Mike Rapoportf3d79b22007-09-11 15:23:45 -070051 udelay(1);
Raphael Assenat362600f2006-06-25 05:48:24 -070052 }
53
54 /* Commands dont have data */
55 if (!V3020_IS_COMMAND(address)) {
56 for (i = 0; i < 8; i++) {
57 writel((data & 1) << chip->leftshift, chip->ioaddress);
58 data >>= 1;
Mike Rapoportf3d79b22007-09-11 15:23:45 -070059 udelay(1);
Raphael Assenat362600f2006-06-25 05:48:24 -070060 }
61 }
62}
63
64static unsigned char v3020_get_reg(struct v3020 *chip, unsigned char address)
65{
Mike Rapoportc08cf9d2009-03-31 15:24:59 -070066 unsigned int data = 0;
Raphael Assenat362600f2006-06-25 05:48:24 -070067 int i;
68
69 for (i = 0; i < 4; i++) {
70 writel((address & 1) << chip->leftshift, chip->ioaddress);
71 address >>= 1;
Mike Rapoportf3d79b22007-09-11 15:23:45 -070072 udelay(1);
Raphael Assenat362600f2006-06-25 05:48:24 -070073 }
74
75 for (i = 0; i < 8; i++) {
76 data >>= 1;
77 if (readl(chip->ioaddress) & (1 << chip->leftshift))
78 data |= 0x80;
Mike Rapoportf3d79b22007-09-11 15:23:45 -070079 udelay(1);
Raphael Assenat362600f2006-06-25 05:48:24 -070080 }
81
82 return data;
83}
84
85static int v3020_read_time(struct device *dev, struct rtc_time *dt)
86{
87 struct v3020 *chip = dev_get_drvdata(dev);
88 int tmp;
89
90 /* Copy the current time to ram... */
91 v3020_set_reg(chip, V3020_CMD_CLOCK2RAM, 0);
92
93 /* ...and then read constant values. */
94 tmp = v3020_get_reg(chip, V3020_SECONDS);
Adrian Bunkfe20ba72008-10-18 20:28:41 -070095 dt->tm_sec = bcd2bin(tmp);
Raphael Assenat362600f2006-06-25 05:48:24 -070096 tmp = v3020_get_reg(chip, V3020_MINUTES);
Adrian Bunkfe20ba72008-10-18 20:28:41 -070097 dt->tm_min = bcd2bin(tmp);
Raphael Assenat362600f2006-06-25 05:48:24 -070098 tmp = v3020_get_reg(chip, V3020_HOURS);
Adrian Bunkfe20ba72008-10-18 20:28:41 -070099 dt->tm_hour = bcd2bin(tmp);
Raphael Assenat362600f2006-06-25 05:48:24 -0700100 tmp = v3020_get_reg(chip, V3020_MONTH_DAY);
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700101 dt->tm_mday = bcd2bin(tmp);
Raphael Assenat362600f2006-06-25 05:48:24 -0700102 tmp = v3020_get_reg(chip, V3020_MONTH);
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700103 dt->tm_mon = bcd2bin(tmp) - 1;
Raphael Assenat362600f2006-06-25 05:48:24 -0700104 tmp = v3020_get_reg(chip, V3020_WEEK_DAY);
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700105 dt->tm_wday = bcd2bin(tmp);
Raphael Assenat362600f2006-06-25 05:48:24 -0700106 tmp = v3020_get_reg(chip, V3020_YEAR);
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700107 dt->tm_year = bcd2bin(tmp)+100;
Raphael Assenat362600f2006-06-25 05:48:24 -0700108
Mike Rapoportc08cf9d2009-03-31 15:24:59 -0700109 dev_dbg(dev, "\n%s : Read RTC values\n", __func__);
110 dev_dbg(dev, "tm_hour: %i\n", dt->tm_hour);
111 dev_dbg(dev, "tm_min : %i\n", dt->tm_min);
112 dev_dbg(dev, "tm_sec : %i\n", dt->tm_sec);
113 dev_dbg(dev, "tm_year: %i\n", dt->tm_year);
114 dev_dbg(dev, "tm_mon : %i\n", dt->tm_mon);
115 dev_dbg(dev, "tm_mday: %i\n", dt->tm_mday);
116 dev_dbg(dev, "tm_wday: %i\n", dt->tm_wday);
Raphael Assenat362600f2006-06-25 05:48:24 -0700117
118 return 0;
119}
120
121
122static int v3020_set_time(struct device *dev, struct rtc_time *dt)
123{
124 struct v3020 *chip = dev_get_drvdata(dev);
125
Mike Rapoportc08cf9d2009-03-31 15:24:59 -0700126 dev_dbg(dev, "\n%s : Setting RTC values\n", __func__);
127 dev_dbg(dev, "tm_sec : %i\n", dt->tm_sec);
128 dev_dbg(dev, "tm_min : %i\n", dt->tm_min);
129 dev_dbg(dev, "tm_hour: %i\n", dt->tm_hour);
130 dev_dbg(dev, "tm_mday: %i\n", dt->tm_mday);
131 dev_dbg(dev, "tm_wday: %i\n", dt->tm_wday);
132 dev_dbg(dev, "tm_year: %i\n", dt->tm_year);
Raphael Assenat362600f2006-06-25 05:48:24 -0700133
134 /* Write all the values to ram... */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700135 v3020_set_reg(chip, V3020_SECONDS, bin2bcd(dt->tm_sec));
136 v3020_set_reg(chip, V3020_MINUTES, bin2bcd(dt->tm_min));
137 v3020_set_reg(chip, V3020_HOURS, bin2bcd(dt->tm_hour));
138 v3020_set_reg(chip, V3020_MONTH_DAY, bin2bcd(dt->tm_mday));
139 v3020_set_reg(chip, V3020_MONTH, bin2bcd(dt->tm_mon + 1));
140 v3020_set_reg(chip, V3020_WEEK_DAY, bin2bcd(dt->tm_wday));
141 v3020_set_reg(chip, V3020_YEAR, bin2bcd(dt->tm_year % 100));
Raphael Assenat362600f2006-06-25 05:48:24 -0700142
143 /* ...and set the clock. */
144 v3020_set_reg(chip, V3020_CMD_RAM2CLOCK, 0);
145
146 /* Compulab used this delay here. I dont know why,
147 * the datasheet does not specify a delay. */
148 /*mdelay(5);*/
149
150 return 0;
151}
152
David Brownellff8371a2006-09-30 23:28:17 -0700153static const struct rtc_class_ops v3020_rtc_ops = {
Raphael Assenat362600f2006-06-25 05:48:24 -0700154 .read_time = v3020_read_time,
155 .set_time = v3020_set_time,
156};
157
158static int rtc_probe(struct platform_device *pdev)
159{
160 struct v3020_platform_data *pdata = pdev->dev.platform_data;
161 struct v3020 *chip;
162 struct rtc_device *rtc;
163 int retval = -EBUSY;
164 int i;
165 int temp;
166
167 if (pdev->num_resources != 1)
168 return -EBUSY;
169
170 if (pdev->resource[0].flags != IORESOURCE_MEM)
171 return -EBUSY;
172
Raphael Assenat362600f2006-06-25 05:48:24 -0700173 chip = kzalloc(sizeof *chip, GFP_KERNEL);
174 if (!chip)
175 return -ENOMEM;
176
177 chip->leftshift = pdata->leftshift;
178 chip->ioaddress = ioremap(pdev->resource[0].start, 1);
179 if (chip->ioaddress == NULL)
180 goto err_chip;
181
182 /* Make sure the v3020 expects a communication cycle
183 * by reading 8 times */
184 for (i = 0; i < 8; i++)
185 temp = readl(chip->ioaddress);
186
187 /* Test chip by doing a write/read sequence
188 * to the chip ram */
189 v3020_set_reg(chip, V3020_SECONDS, 0x33);
Mike Rapoportc08cf9d2009-03-31 15:24:59 -0700190 if (v3020_get_reg(chip, V3020_SECONDS) != 0x33) {
Raphael Assenat362600f2006-06-25 05:48:24 -0700191 retval = -ENODEV;
192 goto err_io;
193 }
194
195 /* Make sure frequency measurment mode, test modes, and lock
196 * are all disabled */
197 v3020_set_reg(chip, V3020_STATUS_0, 0x0);
198
Jeff Garzik6a15f462006-10-17 00:10:25 -0700199 dev_info(&pdev->dev, "Chip available at physical address 0x%llx,"
Raphael Assenat362600f2006-06-25 05:48:24 -0700200 "data connected to D%d\n",
Jeff Garzik6a15f462006-10-17 00:10:25 -0700201 (unsigned long long)pdev->resource[0].start,
Raphael Assenat362600f2006-06-25 05:48:24 -0700202 chip->leftshift);
203
204 platform_set_drvdata(pdev, chip);
205
206 rtc = rtc_device_register("v3020",
207 &pdev->dev, &v3020_rtc_ops, THIS_MODULE);
208 if (IS_ERR(rtc)) {
209 retval = PTR_ERR(rtc);
210 goto err_io;
211 }
212 chip->rtc = rtc;
213
214 return 0;
215
216err_io:
217 iounmap(chip->ioaddress);
218err_chip:
219 kfree(chip);
220
221 return retval;
222}
223
224static int rtc_remove(struct platform_device *dev)
225{
226 struct v3020 *chip = platform_get_drvdata(dev);
227 struct rtc_device *rtc = chip->rtc;
228
229 if (rtc)
230 rtc_device_unregister(rtc);
231
232 iounmap(chip->ioaddress);
233 kfree(chip);
234
235 return 0;
236}
237
238static struct platform_driver rtc_device_driver = {
239 .probe = rtc_probe,
240 .remove = rtc_remove,
241 .driver = {
242 .name = "v3020",
243 .owner = THIS_MODULE,
244 },
245};
246
247static __init int v3020_init(void)
248{
249 return platform_driver_register(&rtc_device_driver);
250}
251
252static __exit void v3020_exit(void)
253{
254 platform_driver_unregister(&rtc_device_driver);
255}
256
257module_init(v3020_init);
258module_exit(v3020_exit);
259
260MODULE_DESCRIPTION("V3020 RTC");
261MODULE_AUTHOR("Raphael Assenat");
262MODULE_LICENSE("GPL");
Kay Sieversad28a072008-04-10 21:29:25 -0700263MODULE_ALIAS("platform:v3020");