blob: 420377c86422b229008e11361e079cca6556346e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Mark A. Greer5e9f4f22006-04-25 13:04:54 +02002 * I2C client/driver for the ST M41T00 family of i2c rtc chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Author: Mark A. Greer <mgreer@mvista.com>
5 *
Mark A. Greer5e9f4f22006-04-25 13:04:54 +02006 * 2005, 2006 (c) MontaVista Software, Inc. This file is licensed under
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 */
11/*
12 * This i2c client/driver wedges between the drivers/char/genrtc.c RTC
13 * interface and the SMBus interface of the i2c subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/interrupt.h>
19#include <linux/i2c.h>
20#include <linux/rtc.h>
21#include <linux/bcd.h>
Mark A. Greer8c750c02006-03-31 23:06:03 +020022#include <linux/workqueue.h>
Mark A. Greer5e9f4f22006-04-25 13:04:54 +020023#include <linux/platform_device.h>
24#include <linux/m41t00.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/time.h>
26#include <asm/rtc.h>
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static struct i2c_driver m41t00_driver;
29static struct i2c_client *save_client;
30
31static unsigned short ignore[] = { I2C_CLIENT_END };
Mark A. Greer5e9f4f22006-04-25 13:04:54 +020032static unsigned short normal_addr[] = { I2C_CLIENT_END, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34static struct i2c_client_address_data addr_data = {
Mark A. Greere931b8d2006-03-31 23:06:46 +020035 .normal_i2c = normal_addr,
36 .probe = ignore,
37 .ignore = ignore,
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Mark A. Greer5e9f4f22006-04-25 13:04:54 +020040struct m41t00_chip_info {
41 u8 type;
42 char *name;
43 u8 read_limit;
44 u8 sec; /* Offsets for chip regs */
45 u8 min;
46 u8 hour;
47 u8 day;
48 u8 mon;
49 u8 year;
50 u8 alarm_mon;
51 u8 alarm_hour;
52 u8 sqw;
53 u8 sqw_freq;
54};
55
56static struct m41t00_chip_info m41t00_chip_info_tbl[] = {
57 {
58 .type = M41T00_TYPE_M41T00,
59 .name = "m41t00",
60 .read_limit = 5,
61 .sec = 0,
62 .min = 1,
63 .hour = 2,
64 .day = 4,
65 .mon = 5,
66 .year = 6,
67 },
68 {
69 .type = M41T00_TYPE_M41T81,
70 .name = "m41t81",
71 .read_limit = 1,
72 .sec = 1,
73 .min = 2,
74 .hour = 3,
75 .day = 5,
76 .mon = 6,
77 .year = 7,
78 .alarm_mon = 0xa,
79 .alarm_hour = 0xc,
80 .sqw = 0x13,
81 },
82 {
83 .type = M41T00_TYPE_M41T85,
84 .name = "m41t85",
85 .read_limit = 1,
86 .sec = 1,
87 .min = 2,
88 .hour = 3,
89 .day = 5,
90 .mon = 6,
91 .year = 7,
92 .alarm_mon = 0xa,
93 .alarm_hour = 0xc,
94 .sqw = 0x13,
95 },
96};
97static struct m41t00_chip_info *m41t00_chip;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099ulong
100m41t00_get_rtc_time(void)
101{
Mark A. Greere931b8d2006-03-31 23:06:46 +0200102 s32 sec, min, hour, day, mon, year;
103 s32 sec1, min1, hour1, day1, mon1, year1;
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200104 u8 reads = 0;
105 u8 buf[8], msgbuf[1] = { 0 }; /* offset into rtc's regs */
106 struct i2c_msg msgs[] = {
107 {
108 .addr = save_client->addr,
109 .flags = 0,
110 .len = 1,
111 .buf = msgbuf,
112 },
113 {
114 .addr = save_client->addr,
115 .flags = I2C_M_RD,
116 .len = 8,
117 .buf = buf,
118 },
119 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 sec = min = hour = day = mon = year = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 do {
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200124 if (i2c_transfer(save_client->adapter, msgs, 2) < 0)
125 goto read_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 sec1 = sec;
128 min1 = min;
129 hour1 = hour;
130 day1 = day;
131 mon1 = mon;
132 year1 = year;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200134 sec = buf[m41t00_chip->sec] & 0x7f;
135 min = buf[m41t00_chip->min] & 0x7f;
136 hour = buf[m41t00_chip->hour] & 0x3f;
137 day = buf[m41t00_chip->day] & 0x3f;
138 mon = buf[m41t00_chip->mon] & 0x1f;
139 year = buf[m41t00_chip->year];
140 } while ((++reads < m41t00_chip->read_limit) && ((sec != sec1)
141 || (min != min1) || (hour != hour1) || (day != day1)
142 || (mon != mon1) || (year != year1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200144 if ((m41t00_chip->read_limit > 1) && ((sec != sec1) || (min != min1)
145 || (hour != hour1) || (day != day1) || (mon != mon1)
146 || (year != year1)))
147 goto read_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Mark A. Greere931b8d2006-03-31 23:06:46 +0200149 sec = BCD2BIN(sec);
150 min = BCD2BIN(min);
151 hour = BCD2BIN(hour);
152 day = BCD2BIN(day);
153 mon = BCD2BIN(mon);
154 year = BCD2BIN(year);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 year += 1900;
157 if (year < 1970)
158 year += 100;
159
160 return mktime(year, mon, day, hour, min, sec);
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200161
162read_err:
163 dev_err(&save_client->dev, "m41t00_get_rtc_time: Read error\n");
164 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200166EXPORT_SYMBOL_GPL(m41t00_get_rtc_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168static void
Mark A. Greer8c750c02006-03-31 23:06:03 +0200169m41t00_set(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 struct rtc_time tm;
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200172 int nowtime = *(int *)arg;
173 s32 sec, min, hour, day, mon, year;
174 u8 wbuf[9], *buf = &wbuf[1], msgbuf[1] = { 0 };
175 struct i2c_msg msgs[] = {
176 {
177 .addr = save_client->addr,
178 .flags = 0,
179 .len = 1,
180 .buf = msgbuf,
181 },
182 {
183 .addr = save_client->addr,
184 .flags = I2C_M_RD,
185 .len = 8,
186 .buf = buf,
187 },
188 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 to_tm(nowtime, &tm);
191 tm.tm_year = (tm.tm_year - 1900) % 100;
192
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200193 sec = BIN2BCD(tm.tm_sec);
194 min = BIN2BCD(tm.tm_min);
195 hour = BIN2BCD(tm.tm_hour);
196 day = BIN2BCD(tm.tm_mday);
197 mon = BIN2BCD(tm.tm_mon);
198 year = BIN2BCD(tm.tm_year);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200200 /* Read reg values into buf[0..7]/wbuf[1..8] */
201 if (i2c_transfer(save_client->adapter, msgs, 2) < 0) {
202 dev_err(&save_client->dev, "m41t00_set: Read error\n");
203 return;
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200206 wbuf[0] = 0; /* offset into rtc's regs */
207 buf[m41t00_chip->sec] = (buf[m41t00_chip->sec] & ~0x7f) | (sec & 0x7f);
208 buf[m41t00_chip->min] = (buf[m41t00_chip->min] & ~0x7f) | (min & 0x7f);
209 buf[m41t00_chip->hour] = (buf[m41t00_chip->hour] & ~0x3f) | (hour& 0x3f);
210 buf[m41t00_chip->day] = (buf[m41t00_chip->day] & ~0x3f) | (day & 0x3f);
211 buf[m41t00_chip->mon] = (buf[m41t00_chip->mon] & ~0x1f) | (mon & 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200213 if (i2c_master_send(save_client, wbuf, 9) < 0)
214 dev_err(&save_client->dev, "m41t00_set: Write error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Mark A. Greer8c750c02006-03-31 23:06:03 +0200217static ulong new_time;
Al Viro91c7c562006-12-06 19:50:06 +0000218/* well, isn't this API just _lovely_? */
219static void
220m41t00_barf(struct work_struct *unusable)
221{
222 m41t00_set(&new_time);
223}
224
Mark A. Greer8c750c02006-03-31 23:06:03 +0200225static struct workqueue_struct *m41t00_wq;
Al Viro91c7c562006-12-06 19:50:06 +0000226static DECLARE_WORK(m41t00_work, m41t00_barf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228int
229m41t00_set_rtc_time(ulong nowtime)
230{
231 new_time = nowtime;
232
233 if (in_interrupt())
Mark A. Greer8c750c02006-03-31 23:06:03 +0200234 queue_work(m41t00_wq, &m41t00_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 else
Mark A. Greer8c750c02006-03-31 23:06:03 +0200236 m41t00_set(&new_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 return 0;
239}
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200240EXPORT_SYMBOL_GPL(m41t00_set_rtc_time);
241
242/*
243 *****************************************************************************
244 *
245 * platform_data Driver Interface
246 *
247 *****************************************************************************
248 */
249static int __init
250m41t00_platform_probe(struct platform_device *pdev)
251{
252 struct m41t00_platform_data *pdata;
253 int i;
254
255 if (pdev && (pdata = pdev->dev.platform_data)) {
256 normal_addr[0] = pdata->i2c_addr;
257
258 for (i=0; i<ARRAY_SIZE(m41t00_chip_info_tbl); i++)
259 if (m41t00_chip_info_tbl[i].type == pdata->type) {
260 m41t00_chip = &m41t00_chip_info_tbl[i];
261 m41t00_chip->sqw_freq = pdata->sqw_freq;
262 return 0;
263 }
264 }
265 return -ENODEV;
266}
267
268static int __exit
269m41t00_platform_remove(struct platform_device *pdev)
270{
271 return 0;
272}
273
274static struct platform_driver m41t00_platform_driver = {
275 .probe = m41t00_platform_probe,
276 .remove = m41t00_platform_remove,
277 .driver = {
278 .owner = THIS_MODULE,
279 .name = M41T00_DRV_NAME,
280 },
281};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283/*
284 *****************************************************************************
285 *
286 * Driver Interface
287 *
288 *****************************************************************************
289 */
290static int
291m41t00_probe(struct i2c_adapter *adap, int addr, int kind)
292{
293 struct i2c_client *client;
294 int rc;
295
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200296 if (!i2c_check_functionality(adap, I2C_FUNC_I2C
297 | I2C_FUNC_SMBUS_BYTE_DATA))
298 return 0;
299
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200300 client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (!client)
302 return -ENOMEM;
303
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200304 strlcpy(client->name, m41t00_chip->name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 client->addr = addr;
306 client->adapter = adap;
307 client->driver = &m41t00_driver;
308
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200309 if ((rc = i2c_attach_client(client)))
310 goto attach_err;
311
312 if (m41t00_chip->type != M41T00_TYPE_M41T00) {
313 /* If asked, disable SQW, set SQW frequency & re-enable */
314 if (m41t00_chip->sqw_freq)
315 if (((rc = i2c_smbus_read_byte_data(client,
316 m41t00_chip->alarm_mon)) < 0)
317 || ((rc = i2c_smbus_write_byte_data(client,
318 m41t00_chip->alarm_mon, rc & ~0x40)) <0)
319 || ((rc = i2c_smbus_write_byte_data(client,
320 m41t00_chip->sqw,
321 m41t00_chip->sqw_freq)) < 0)
322 || ((rc = i2c_smbus_write_byte_data(client,
323 m41t00_chip->alarm_mon, rc | 0x40)) <0))
324 goto sqw_err;
325
326 /* Make sure HT (Halt Update) bit is cleared */
327 if ((rc = i2c_smbus_read_byte_data(client,
328 m41t00_chip->alarm_hour)) < 0)
329 goto ht_err;
330
331 if (rc & 0x40)
332 if ((rc = i2c_smbus_write_byte_data(client,
333 m41t00_chip->alarm_hour, rc & ~0x40))<0)
334 goto ht_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200337 /* Make sure ST (stop) bit is cleared */
338 if ((rc = i2c_smbus_read_byte_data(client, m41t00_chip->sec)) < 0)
339 goto st_err;
340
341 if (rc & 0x80)
342 if ((rc = i2c_smbus_write_byte_data(client, m41t00_chip->sec,
343 rc & ~0x80)) < 0)
344 goto st_err;
345
346 m41t00_wq = create_singlethread_workqueue(m41t00_chip->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 save_client = client;
348 return 0;
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200349
350st_err:
351 dev_err(&client->dev, "m41t00_probe: Can't clear ST bit\n");
352 goto attach_err;
353ht_err:
354 dev_err(&client->dev, "m41t00_probe: Can't clear HT bit\n");
355 goto attach_err;
356sqw_err:
357 dev_err(&client->dev, "m41t00_probe: Can't set SQW Frequency\n");
358attach_err:
359 kfree(client);
360 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363static int
364m41t00_attach(struct i2c_adapter *adap)
365{
366 return i2c_probe(adap, &addr_data, m41t00_probe);
367}
368
369static int
370m41t00_detach(struct i2c_client *client)
371{
Mark A. Greere931b8d2006-03-31 23:06:46 +0200372 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 if ((rc = i2c_detach_client(client)) == 0) {
Jean Delvare5da69ba2005-07-01 14:28:15 +0200375 kfree(client);
Mark A. Greer8c750c02006-03-31 23:06:03 +0200376 destroy_workqueue(m41t00_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378 return rc;
379}
380
381static struct i2c_driver m41t00_driver = {
Laurent Riffarda9718b02005-11-26 20:36:00 +0100382 .driver = {
Laurent Riffarda9718b02005-11-26 20:36:00 +0100383 .name = M41T00_DRV_NAME,
384 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .id = I2C_DRIVERID_STM41T00,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 .attach_adapter = m41t00_attach,
387 .detach_client = m41t00_detach,
388};
389
390static int __init
391m41t00_init(void)
392{
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200393 int rc;
394
395 if (!(rc = platform_driver_register(&m41t00_platform_driver)))
396 rc = i2c_add_driver(&m41t00_driver);
397 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400static void __exit
401m41t00_exit(void)
402{
403 i2c_del_driver(&m41t00_driver);
Mark A. Greer5e9f4f22006-04-25 13:04:54 +0200404 platform_driver_unregister(&m41t00_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407module_init(m41t00_init);
408module_exit(m41t00_exit);
409
410MODULE_AUTHOR("Mark A. Greer <mgreer@mvista.com>");
411MODULE_DESCRIPTION("ST Microelectronics M41T00 RTC I2C Client Driver");
412MODULE_LICENSE("GPL");