blob: 1c975e6439b340552f68e52d017d2f3439cca31f [file] [log] [blame]
David Brownell1abb0dc2006-06-25 05:48:17 -07001/*
2 * rtc-ds1307.c - RTC driver for some mostly-compatible I2C chips.
3 *
4 * Copyright (C) 2005 James Chapman (ds1337 core)
5 * Copyright (C) 2006 David Brownell
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/i2c.h>
16#include <linux/string.h>
17#include <linux/rtc.h>
18#include <linux/bcd.h>
19
20
21
22/* We can't determine type by probing, but if we expect pre-Linux code
23 * to have set the chip up as a clock (turning on the oscillator and
24 * setting the date and time), Linux can ignore the non-clock features.
25 * That's a natural job for a factory or repair bench.
David Brownell1abb0dc2006-06-25 05:48:17 -070026 */
27enum ds_type {
David Brownell045e0e82007-07-17 04:04:55 -070028 ds_1307,
29 ds_1337,
30 ds_1338,
31 ds_1339,
32 ds_1340,
33 m41t00,
David Brownell1abb0dc2006-06-25 05:48:17 -070034 // rs5c372 too? different address...
35};
36
David Brownell1abb0dc2006-06-25 05:48:17 -070037
38/* RTC registers don't differ much, except for the century flag */
39#define DS1307_REG_SECS 0x00 /* 00-59 */
40# define DS1307_BIT_CH 0x80
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070041# define DS1340_BIT_nEOSC 0x80
David Brownell1abb0dc2006-06-25 05:48:17 -070042#define DS1307_REG_MIN 0x01 /* 00-59 */
43#define DS1307_REG_HOUR 0x02 /* 00-23, or 1-12{am,pm} */
David Brownellc065f352007-07-17 04:05:10 -070044# define DS1307_BIT_12HR 0x40 /* in REG_HOUR */
45# define DS1307_BIT_PM 0x20 /* in REG_HOUR */
David Brownell1abb0dc2006-06-25 05:48:17 -070046# define DS1340_BIT_CENTURY_EN 0x80 /* in REG_HOUR */
47# define DS1340_BIT_CENTURY 0x40 /* in REG_HOUR */
48#define DS1307_REG_WDAY 0x03 /* 01-07 */
49#define DS1307_REG_MDAY 0x04 /* 01-31 */
50#define DS1307_REG_MONTH 0x05 /* 01-12 */
51# define DS1337_BIT_CENTURY 0x80 /* in REG_MONTH */
52#define DS1307_REG_YEAR 0x06 /* 00-99 */
53
54/* Other registers (control, status, alarms, trickle charge, NVRAM, etc)
David Brownell045e0e82007-07-17 04:04:55 -070055 * start at 7, and they differ a LOT. Only control and status matter for
56 * basic RTC date and time functionality; be careful using them.
David Brownell1abb0dc2006-06-25 05:48:17 -070057 */
David Brownell045e0e82007-07-17 04:04:55 -070058#define DS1307_REG_CONTROL 0x07 /* or ds1338 */
David Brownell1abb0dc2006-06-25 05:48:17 -070059# define DS1307_BIT_OUT 0x80
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070060# define DS1338_BIT_OSF 0x20
David Brownell1abb0dc2006-06-25 05:48:17 -070061# define DS1307_BIT_SQWE 0x10
62# define DS1307_BIT_RS1 0x02
63# define DS1307_BIT_RS0 0x01
64#define DS1337_REG_CONTROL 0x0e
65# define DS1337_BIT_nEOSC 0x80
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -070066# define DS1339_BIT_BBSQI 0x20
David Brownell1abb0dc2006-06-25 05:48:17 -070067# define DS1337_BIT_RS2 0x10
68# define DS1337_BIT_RS1 0x08
69# define DS1337_BIT_INTCN 0x04
70# define DS1337_BIT_A2IE 0x02
71# define DS1337_BIT_A1IE 0x01
David Brownell045e0e82007-07-17 04:04:55 -070072#define DS1340_REG_CONTROL 0x07
73# define DS1340_BIT_OUT 0x80
74# define DS1340_BIT_FT 0x40
75# define DS1340_BIT_CALIB_SIGN 0x20
76# define DS1340_M_CALIBRATION 0x1f
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -070077#define DS1340_REG_FLAG 0x09
78# define DS1340_BIT_OSF 0x80
David Brownell1abb0dc2006-06-25 05:48:17 -070079#define DS1337_REG_STATUS 0x0f
80# define DS1337_BIT_OSF 0x80
81# define DS1337_BIT_A2I 0x02
82# define DS1337_BIT_A1I 0x01
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -070083#define DS1339_REG_ALARM1_SECS 0x07
David Brownell1abb0dc2006-06-25 05:48:17 -070084#define DS1339_REG_TRICKLE 0x10
85
86
87
88struct ds1307 {
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -070089 u8 regs[11];
David Brownell1abb0dc2006-06-25 05:48:17 -070090 enum ds_type type;
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -070091 unsigned long flags;
92#define HAS_NVRAM 0 /* bit 0 == sysfs file active */
93#define HAS_ALARM 1 /* bit 1 == irq claimed */
David Brownell045e0e82007-07-17 04:04:55 -070094 struct i2c_client *client;
David Brownell1abb0dc2006-06-25 05:48:17 -070095 struct rtc_device *rtc;
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -070096 struct work_struct work;
Ed Swierk30e7b032009-03-31 15:24:56 -070097 s32 (*read_block_data)(struct i2c_client *client, u8 command,
98 u8 length, u8 *values);
99 s32 (*write_block_data)(struct i2c_client *client, u8 command,
100 u8 length, const u8 *values);
David Brownell1abb0dc2006-06-25 05:48:17 -0700101};
102
David Brownell045e0e82007-07-17 04:04:55 -0700103struct chip_desc {
David Brownell045e0e82007-07-17 04:04:55 -0700104 unsigned nvram56:1;
105 unsigned alarm:1;
David Brownell045e0e82007-07-17 04:04:55 -0700106};
107
Jean Delvare3760f732008-04-29 23:11:40 +0200108static const struct chip_desc chips[] = {
109[ds_1307] = {
David Brownell045e0e82007-07-17 04:04:55 -0700110 .nvram56 = 1,
Jean Delvare3760f732008-04-29 23:11:40 +0200111},
112[ds_1337] = {
David Brownell045e0e82007-07-17 04:04:55 -0700113 .alarm = 1,
Jean Delvare3760f732008-04-29 23:11:40 +0200114},
115[ds_1338] = {
David Brownell045e0e82007-07-17 04:04:55 -0700116 .nvram56 = 1,
Jean Delvare3760f732008-04-29 23:11:40 +0200117},
118[ds_1339] = {
David Brownell045e0e82007-07-17 04:04:55 -0700119 .alarm = 1,
Jean Delvare3760f732008-04-29 23:11:40 +0200120},
121[ds_1340] = {
122},
123[m41t00] = {
David Brownell045e0e82007-07-17 04:04:55 -0700124}, };
125
Jean Delvare3760f732008-04-29 23:11:40 +0200126static const struct i2c_device_id ds1307_id[] = {
127 { "ds1307", ds_1307 },
128 { "ds1337", ds_1337 },
129 { "ds1338", ds_1338 },
130 { "ds1339", ds_1339 },
131 { "ds1340", ds_1340 },
132 { "m41t00", m41t00 },
133 { }
134};
135MODULE_DEVICE_TABLE(i2c, ds1307_id);
David Brownell1abb0dc2006-06-25 05:48:17 -0700136
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700137/*----------------------------------------------------------------------*/
138
Ed Swierk30e7b032009-03-31 15:24:56 -0700139#define BLOCK_DATA_MAX_TRIES 10
140
141static s32 ds1307_read_block_data_once(struct i2c_client *client, u8 command,
142 u8 length, u8 *values)
143{
144 s32 i, data;
145
146 for (i = 0; i < length; i++) {
147 data = i2c_smbus_read_byte_data(client, command + i);
148 if (data < 0)
149 return data;
150 values[i] = data;
151 }
152 return i;
153}
154
155static s32 ds1307_read_block_data(struct i2c_client *client, u8 command,
156 u8 length, u8 *values)
157{
158 u8 oldvalues[I2C_SMBUS_BLOCK_MAX];
159 s32 ret;
160 int tries = 0;
161
162 dev_dbg(&client->dev, "ds1307_read_block_data (length=%d)\n", length);
163 ret = ds1307_read_block_data_once(client, command, length, values);
164 if (ret < 0)
165 return ret;
166 do {
167 if (++tries > BLOCK_DATA_MAX_TRIES) {
168 dev_err(&client->dev,
169 "ds1307_read_block_data failed\n");
170 return -EIO;
171 }
172 memcpy(oldvalues, values, length);
173 ret = ds1307_read_block_data_once(client, command, length,
174 values);
175 if (ret < 0)
176 return ret;
177 } while (memcmp(oldvalues, values, length));
178 return length;
179}
180
181static s32 ds1307_write_block_data(struct i2c_client *client, u8 command,
182 u8 length, const u8 *values)
183{
184 u8 currvalues[I2C_SMBUS_BLOCK_MAX];
185 int tries = 0;
186
187 dev_dbg(&client->dev, "ds1307_write_block_data (length=%d)\n", length);
188 do {
189 s32 i, ret;
190
191 if (++tries > BLOCK_DATA_MAX_TRIES) {
192 dev_err(&client->dev,
193 "ds1307_write_block_data failed\n");
194 return -EIO;
195 }
196 for (i = 0; i < length; i++) {
197 ret = i2c_smbus_write_byte_data(client, command + i,
198 values[i]);
199 if (ret < 0)
200 return ret;
201 }
202 ret = ds1307_read_block_data_once(client, command, length,
203 currvalues);
204 if (ret < 0)
205 return ret;
206 } while (memcmp(currvalues, values, length));
207 return length;
208}
209
210/*----------------------------------------------------------------------*/
211
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700212/*
213 * The IRQ logic includes a "real" handler running in IRQ context just
214 * long enough to schedule this workqueue entry. We need a task context
215 * to talk to the RTC, since I2C I/O calls require that; and disable the
216 * IRQ until we clear its status on the chip, so that this handler can
217 * work with any type of triggering (not just falling edge).
218 *
219 * The ds1337 and ds1339 both have two alarms, but we only use the first
220 * one (with a "seconds" field). For ds1337 we expect nINTA is our alarm
221 * signal; ds1339 chips have only one alarm signal.
222 */
223static void ds1307_work(struct work_struct *work)
224{
225 struct ds1307 *ds1307;
226 struct i2c_client *client;
227 struct mutex *lock;
228 int stat, control;
229
230 ds1307 = container_of(work, struct ds1307, work);
231 client = ds1307->client;
232 lock = &ds1307->rtc->ops_lock;
233
234 mutex_lock(lock);
235 stat = i2c_smbus_read_byte_data(client, DS1337_REG_STATUS);
236 if (stat < 0)
237 goto out;
238
239 if (stat & DS1337_BIT_A1I) {
240 stat &= ~DS1337_BIT_A1I;
241 i2c_smbus_write_byte_data(client, DS1337_REG_STATUS, stat);
242
243 control = i2c_smbus_read_byte_data(client, DS1337_REG_CONTROL);
244 if (control < 0)
245 goto out;
246
247 control &= ~DS1337_BIT_A1IE;
248 i2c_smbus_write_byte_data(client, DS1337_REG_CONTROL, control);
249
250 /* rtc_update_irq() assumes that it is called
251 * from IRQ-disabled context.
252 */
253 local_irq_disable();
254 rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
255 local_irq_enable();
256 }
257
258out:
259 if (test_bit(HAS_ALARM, &ds1307->flags))
260 enable_irq(client->irq);
261 mutex_unlock(lock);
262}
263
264static irqreturn_t ds1307_irq(int irq, void *dev_id)
265{
266 struct i2c_client *client = dev_id;
267 struct ds1307 *ds1307 = i2c_get_clientdata(client);
268
269 disable_irq_nosync(irq);
270 schedule_work(&ds1307->work);
271 return IRQ_HANDLED;
272}
273
274/*----------------------------------------------------------------------*/
275
David Brownell1abb0dc2006-06-25 05:48:17 -0700276static int ds1307_get_time(struct device *dev, struct rtc_time *t)
277{
278 struct ds1307 *ds1307 = dev_get_drvdata(dev);
279 int tmp;
280
David Brownell045e0e82007-07-17 04:04:55 -0700281 /* read the RTC date and time registers all at once */
Ed Swierk30e7b032009-03-31 15:24:56 -0700282 tmp = ds1307->read_block_data(ds1307->client,
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800283 DS1307_REG_SECS, 7, ds1307->regs);
284 if (tmp != 7) {
David Brownell1abb0dc2006-06-25 05:48:17 -0700285 dev_err(dev, "%s error %d\n", "read", tmp);
286 return -EIO;
287 }
288
289 dev_dbg(dev, "%s: %02x %02x %02x %02x %02x %02x %02x\n",
290 "read",
291 ds1307->regs[0], ds1307->regs[1],
292 ds1307->regs[2], ds1307->regs[3],
293 ds1307->regs[4], ds1307->regs[5],
294 ds1307->regs[6]);
295
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700296 t->tm_sec = bcd2bin(ds1307->regs[DS1307_REG_SECS] & 0x7f);
297 t->tm_min = bcd2bin(ds1307->regs[DS1307_REG_MIN] & 0x7f);
David Brownell1abb0dc2006-06-25 05:48:17 -0700298 tmp = ds1307->regs[DS1307_REG_HOUR] & 0x3f;
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700299 t->tm_hour = bcd2bin(tmp);
300 t->tm_wday = bcd2bin(ds1307->regs[DS1307_REG_WDAY] & 0x07) - 1;
301 t->tm_mday = bcd2bin(ds1307->regs[DS1307_REG_MDAY] & 0x3f);
David Brownell1abb0dc2006-06-25 05:48:17 -0700302 tmp = ds1307->regs[DS1307_REG_MONTH] & 0x1f;
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700303 t->tm_mon = bcd2bin(tmp) - 1;
David Brownell1abb0dc2006-06-25 05:48:17 -0700304
305 /* assume 20YY not 19YY, and ignore DS1337_BIT_CENTURY */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700306 t->tm_year = bcd2bin(ds1307->regs[DS1307_REG_YEAR]) + 100;
David Brownell1abb0dc2006-06-25 05:48:17 -0700307
308 dev_dbg(dev, "%s secs=%d, mins=%d, "
309 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
310 "read", t->tm_sec, t->tm_min,
311 t->tm_hour, t->tm_mday,
312 t->tm_mon, t->tm_year, t->tm_wday);
313
David Brownell045e0e82007-07-17 04:04:55 -0700314 /* initial clock setting can be undefined */
315 return rtc_valid_tm(t);
David Brownell1abb0dc2006-06-25 05:48:17 -0700316}
317
318static int ds1307_set_time(struct device *dev, struct rtc_time *t)
319{
320 struct ds1307 *ds1307 = dev_get_drvdata(dev);
321 int result;
322 int tmp;
323 u8 *buf = ds1307->regs;
324
325 dev_dbg(dev, "%s secs=%d, mins=%d, "
326 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
Jeff Garzik11966ad2006-10-04 04:41:53 -0400327 "write", t->tm_sec, t->tm_min,
328 t->tm_hour, t->tm_mday,
329 t->tm_mon, t->tm_year, t->tm_wday);
David Brownell1abb0dc2006-06-25 05:48:17 -0700330
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700331 buf[DS1307_REG_SECS] = bin2bcd(t->tm_sec);
332 buf[DS1307_REG_MIN] = bin2bcd(t->tm_min);
333 buf[DS1307_REG_HOUR] = bin2bcd(t->tm_hour);
334 buf[DS1307_REG_WDAY] = bin2bcd(t->tm_wday + 1);
335 buf[DS1307_REG_MDAY] = bin2bcd(t->tm_mday);
336 buf[DS1307_REG_MONTH] = bin2bcd(t->tm_mon + 1);
David Brownell1abb0dc2006-06-25 05:48:17 -0700337
338 /* assume 20YY not 19YY */
339 tmp = t->tm_year - 100;
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700340 buf[DS1307_REG_YEAR] = bin2bcd(tmp);
David Brownell1abb0dc2006-06-25 05:48:17 -0700341
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700342 switch (ds1307->type) {
343 case ds_1337:
344 case ds_1339:
David Brownell1abb0dc2006-06-25 05:48:17 -0700345 buf[DS1307_REG_MONTH] |= DS1337_BIT_CENTURY;
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700346 break;
347 case ds_1340:
David Brownell1abb0dc2006-06-25 05:48:17 -0700348 buf[DS1307_REG_HOUR] |= DS1340_BIT_CENTURY_EN
349 | DS1340_BIT_CENTURY;
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700350 break;
351 default:
352 break;
353 }
David Brownell1abb0dc2006-06-25 05:48:17 -0700354
David Brownell1abb0dc2006-06-25 05:48:17 -0700355 dev_dbg(dev, "%s: %02x %02x %02x %02x %02x %02x %02x\n",
356 "write", buf[0], buf[1], buf[2], buf[3],
357 buf[4], buf[5], buf[6]);
358
Ed Swierk30e7b032009-03-31 15:24:56 -0700359 result = ds1307->write_block_data(ds1307->client, 0, 7, buf);
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800360 if (result < 0) {
361 dev_err(dev, "%s error %d\n", "write", result);
362 return result;
David Brownell1abb0dc2006-06-25 05:48:17 -0700363 }
364 return 0;
365}
366
Jüri Reitel74d88eb2009-01-07 18:07:16 -0800367static int ds1337_read_alarm(struct device *dev, struct rtc_wkalrm *t)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700368{
369 struct i2c_client *client = to_i2c_client(dev);
370 struct ds1307 *ds1307 = i2c_get_clientdata(client);
371 int ret;
372
373 if (!test_bit(HAS_ALARM, &ds1307->flags))
374 return -EINVAL;
375
376 /* read all ALARM1, ALARM2, and status registers at once */
Ed Swierk30e7b032009-03-31 15:24:56 -0700377 ret = ds1307->read_block_data(client,
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800378 DS1339_REG_ALARM1_SECS, 9, ds1307->regs);
379 if (ret != 9) {
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700380 dev_err(dev, "%s error %d\n", "alarm read", ret);
381 return -EIO;
382 }
383
384 dev_dbg(dev, "%s: %02x %02x %02x %02x, %02x %02x %02x, %02x %02x\n",
385 "alarm read",
386 ds1307->regs[0], ds1307->regs[1],
387 ds1307->regs[2], ds1307->regs[3],
388 ds1307->regs[4], ds1307->regs[5],
389 ds1307->regs[6], ds1307->regs[7],
390 ds1307->regs[8]);
391
392 /* report alarm time (ALARM1); assume 24 hour and day-of-month modes,
393 * and that all four fields are checked matches
394 */
395 t->time.tm_sec = bcd2bin(ds1307->regs[0] & 0x7f);
396 t->time.tm_min = bcd2bin(ds1307->regs[1] & 0x7f);
397 t->time.tm_hour = bcd2bin(ds1307->regs[2] & 0x3f);
398 t->time.tm_mday = bcd2bin(ds1307->regs[3] & 0x3f);
399 t->time.tm_mon = -1;
400 t->time.tm_year = -1;
401 t->time.tm_wday = -1;
402 t->time.tm_yday = -1;
403 t->time.tm_isdst = -1;
404
405 /* ... and status */
406 t->enabled = !!(ds1307->regs[7] & DS1337_BIT_A1IE);
407 t->pending = !!(ds1307->regs[8] & DS1337_BIT_A1I);
408
409 dev_dbg(dev, "%s secs=%d, mins=%d, "
410 "hours=%d, mday=%d, enabled=%d, pending=%d\n",
411 "alarm read", t->time.tm_sec, t->time.tm_min,
412 t->time.tm_hour, t->time.tm_mday,
413 t->enabled, t->pending);
414
415 return 0;
416}
417
Jüri Reitel74d88eb2009-01-07 18:07:16 -0800418static int ds1337_set_alarm(struct device *dev, struct rtc_wkalrm *t)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700419{
420 struct i2c_client *client = to_i2c_client(dev);
421 struct ds1307 *ds1307 = i2c_get_clientdata(client);
422 unsigned char *buf = ds1307->regs;
423 u8 control, status;
424 int ret;
425
426 if (!test_bit(HAS_ALARM, &ds1307->flags))
427 return -EINVAL;
428
429 dev_dbg(dev, "%s secs=%d, mins=%d, "
430 "hours=%d, mday=%d, enabled=%d, pending=%d\n",
431 "alarm set", t->time.tm_sec, t->time.tm_min,
432 t->time.tm_hour, t->time.tm_mday,
433 t->enabled, t->pending);
434
435 /* read current status of both alarms and the chip */
Ed Swierk30e7b032009-03-31 15:24:56 -0700436 ret = ds1307->read_block_data(client,
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800437 DS1339_REG_ALARM1_SECS, 9, buf);
438 if (ret != 9) {
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700439 dev_err(dev, "%s error %d\n", "alarm write", ret);
440 return -EIO;
441 }
442 control = ds1307->regs[7];
443 status = ds1307->regs[8];
444
445 dev_dbg(dev, "%s: %02x %02x %02x %02x, %02x %02x %02x, %02x %02x\n",
446 "alarm set (old status)",
447 ds1307->regs[0], ds1307->regs[1],
448 ds1307->regs[2], ds1307->regs[3],
449 ds1307->regs[4], ds1307->regs[5],
450 ds1307->regs[6], control, status);
451
452 /* set ALARM1, using 24 hour and day-of-month modes */
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700453 buf[0] = bin2bcd(t->time.tm_sec);
454 buf[1] = bin2bcd(t->time.tm_min);
455 buf[2] = bin2bcd(t->time.tm_hour);
456 buf[3] = bin2bcd(t->time.tm_mday);
457
458 /* set ALARM2 to non-garbage */
459 buf[4] = 0;
460 buf[5] = 0;
461 buf[6] = 0;
462
463 /* optionally enable ALARM1 */
464 buf[7] = control & ~(DS1337_BIT_A1IE | DS1337_BIT_A2IE);
465 if (t->enabled) {
466 dev_dbg(dev, "alarm IRQ armed\n");
467 buf[7] |= DS1337_BIT_A1IE; /* only ALARM1 is used */
468 }
469 buf[8] = status & ~(DS1337_BIT_A1I | DS1337_BIT_A2I);
470
Ed Swierk30e7b032009-03-31 15:24:56 -0700471 ret = ds1307->write_block_data(client,
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800472 DS1339_REG_ALARM1_SECS, 9, buf);
473 if (ret < 0) {
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700474 dev_err(dev, "can't set alarm time\n");
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800475 return ret;
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700476 }
477
478 return 0;
479}
480
481static int ds1307_ioctl(struct device *dev, unsigned int cmd, unsigned long arg)
482{
483 struct i2c_client *client = to_i2c_client(dev);
484 struct ds1307 *ds1307 = i2c_get_clientdata(client);
485 int ret;
486
487 switch (cmd) {
488 case RTC_AIE_OFF:
489 if (!test_bit(HAS_ALARM, &ds1307->flags))
490 return -ENOTTY;
491
492 ret = i2c_smbus_read_byte_data(client, DS1337_REG_CONTROL);
493 if (ret < 0)
494 return ret;
495
496 ret &= ~DS1337_BIT_A1IE;
497
498 ret = i2c_smbus_write_byte_data(client,
499 DS1337_REG_CONTROL, ret);
500 if (ret < 0)
501 return ret;
502
503 break;
504
505 case RTC_AIE_ON:
506 if (!test_bit(HAS_ALARM, &ds1307->flags))
507 return -ENOTTY;
508
509 ret = i2c_smbus_read_byte_data(client, DS1337_REG_CONTROL);
510 if (ret < 0)
511 return ret;
512
513 ret |= DS1337_BIT_A1IE;
514
515 ret = i2c_smbus_write_byte_data(client,
516 DS1337_REG_CONTROL, ret);
517 if (ret < 0)
518 return ret;
519
520 break;
521
522 default:
523 return -ENOIOCTLCMD;
524 }
525
526 return 0;
527}
528
David Brownellff8371a2006-09-30 23:28:17 -0700529static const struct rtc_class_ops ds13xx_rtc_ops = {
David Brownell1abb0dc2006-06-25 05:48:17 -0700530 .read_time = ds1307_get_time,
531 .set_time = ds1307_set_time,
Jüri Reitel74d88eb2009-01-07 18:07:16 -0800532 .read_alarm = ds1337_read_alarm,
533 .set_alarm = ds1337_set_alarm,
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700534 .ioctl = ds1307_ioctl,
David Brownell1abb0dc2006-06-25 05:48:17 -0700535};
536
David Brownell682d73f2007-11-14 16:58:32 -0800537/*----------------------------------------------------------------------*/
538
539#define NVRAM_SIZE 56
540
541static ssize_t
542ds1307_nvram_read(struct kobject *kobj, struct bin_attribute *attr,
543 char *buf, loff_t off, size_t count)
544{
545 struct i2c_client *client;
546 struct ds1307 *ds1307;
David Brownell682d73f2007-11-14 16:58:32 -0800547 int result;
548
frederic Rodofcd8db02008-02-06 01:38:55 -0800549 client = kobj_to_i2c_client(kobj);
David Brownell682d73f2007-11-14 16:58:32 -0800550 ds1307 = i2c_get_clientdata(client);
551
552 if (unlikely(off >= NVRAM_SIZE))
553 return 0;
554 if ((off + count) > NVRAM_SIZE)
555 count = NVRAM_SIZE - off;
556 if (unlikely(!count))
557 return count;
558
Ed Swierk30e7b032009-03-31 15:24:56 -0700559 result = ds1307->read_block_data(client, 8 + off, count, buf);
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800560 if (result < 0)
David Brownell682d73f2007-11-14 16:58:32 -0800561 dev_err(&client->dev, "%s error %d\n", "nvram read", result);
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800562 return result;
David Brownell682d73f2007-11-14 16:58:32 -0800563}
564
565static ssize_t
566ds1307_nvram_write(struct kobject *kobj, struct bin_attribute *attr,
567 char *buf, loff_t off, size_t count)
568{
569 struct i2c_client *client;
Ed Swierk30e7b032009-03-31 15:24:56 -0700570 struct ds1307 *ds1307;
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800571 int result;
David Brownell682d73f2007-11-14 16:58:32 -0800572
frederic Rodofcd8db02008-02-06 01:38:55 -0800573 client = kobj_to_i2c_client(kobj);
Ed Swierk30e7b032009-03-31 15:24:56 -0700574 ds1307 = i2c_get_clientdata(client);
David Brownell682d73f2007-11-14 16:58:32 -0800575
576 if (unlikely(off >= NVRAM_SIZE))
577 return -EFBIG;
578 if ((off + count) > NVRAM_SIZE)
579 count = NVRAM_SIZE - off;
580 if (unlikely(!count))
581 return count;
582
Ed Swierk30e7b032009-03-31 15:24:56 -0700583 result = ds1307->write_block_data(client, 8 + off, count, buf);
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800584 if (result < 0) {
585 dev_err(&client->dev, "%s error %d\n", "nvram write", result);
586 return result;
587 }
588 return count;
David Brownell682d73f2007-11-14 16:58:32 -0800589}
590
591static struct bin_attribute nvram = {
592 .attr = {
593 .name = "nvram",
594 .mode = S_IRUGO | S_IWUSR,
David Brownell682d73f2007-11-14 16:58:32 -0800595 },
596
597 .read = ds1307_nvram_read,
598 .write = ds1307_nvram_write,
599 .size = NVRAM_SIZE,
600};
601
602/*----------------------------------------------------------------------*/
603
David Brownell1abb0dc2006-06-25 05:48:17 -0700604static struct i2c_driver ds1307_driver;
605
Jean Delvared2653e92008-04-29 23:11:39 +0200606static int __devinit ds1307_probe(struct i2c_client *client,
607 const struct i2c_device_id *id)
David Brownell1abb0dc2006-06-25 05:48:17 -0700608{
609 struct ds1307 *ds1307;
610 int err = -ENODEV;
David Brownell1abb0dc2006-06-25 05:48:17 -0700611 int tmp;
Jean Delvare3760f732008-04-29 23:11:40 +0200612 const struct chip_desc *chip = &chips[id->driver_data];
David Brownellc065f352007-07-17 04:05:10 -0700613 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700614 int want_irq = false;
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800615 unsigned char *buf;
David Brownell1abb0dc2006-06-25 05:48:17 -0700616
Ed Swierk30e7b032009-03-31 15:24:56 -0700617 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)
618 && !i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK))
David Brownellc065f352007-07-17 04:05:10 -0700619 return -EIO;
David Brownell1abb0dc2006-06-25 05:48:17 -0700620
David Brownellc065f352007-07-17 04:05:10 -0700621 if (!(ds1307 = kzalloc(sizeof(struct ds1307), GFP_KERNEL)))
622 return -ENOMEM;
David Brownell045e0e82007-07-17 04:04:55 -0700623
624 ds1307->client = client;
David Brownell1abb0dc2006-06-25 05:48:17 -0700625 i2c_set_clientdata(client, ds1307);
Jean Delvare3760f732008-04-29 23:11:40 +0200626 ds1307->type = id->driver_data;
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800627 buf = ds1307->regs;
Ed Swierk30e7b032009-03-31 15:24:56 -0700628 if (i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) {
629 ds1307->read_block_data = i2c_smbus_read_i2c_block_data;
630 ds1307->write_block_data = i2c_smbus_write_i2c_block_data;
631 } else {
632 ds1307->read_block_data = ds1307_read_block_data;
633 ds1307->write_block_data = ds1307_write_block_data;
634 }
David Brownell045e0e82007-07-17 04:04:55 -0700635
636 switch (ds1307->type) {
637 case ds_1337:
638 case ds_1339:
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700639 /* has IRQ? */
640 if (ds1307->client->irq > 0 && chip->alarm) {
641 INIT_WORK(&ds1307->work, ds1307_work);
642 want_irq = true;
643 }
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700644 /* get registers that the "rtc" read below won't read... */
Ed Swierk30e7b032009-03-31 15:24:56 -0700645 tmp = ds1307->read_block_data(ds1307->client,
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800646 DS1337_REG_CONTROL, 2, buf);
David Brownell1abb0dc2006-06-25 05:48:17 -0700647 if (tmp != 2) {
648 pr_debug("read error %d\n", tmp);
649 err = -EIO;
650 goto exit_free;
651 }
652
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700653 /* oscillator off? turn it on, so clock can tick. */
654 if (ds1307->regs[0] & DS1337_BIT_nEOSC)
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700655 ds1307->regs[0] &= ~DS1337_BIT_nEOSC;
656
657 /* Using IRQ? Disable the square wave and both alarms.
658 * For ds1339, be sure alarms can trigger when we're
659 * running on Vbackup (BBSQI); we assume ds1337 will
660 * ignore that bit
661 */
662 if (want_irq) {
663 ds1307->regs[0] |= DS1337_BIT_INTCN | DS1339_BIT_BBSQI;
664 ds1307->regs[0] &= ~(DS1337_BIT_A2IE | DS1337_BIT_A1IE);
665 }
666
667 i2c_smbus_write_byte_data(client, DS1337_REG_CONTROL,
668 ds1307->regs[0]);
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700669
670 /* oscillator fault? clear flag, and warn */
671 if (ds1307->regs[1] & DS1337_BIT_OSF) {
672 i2c_smbus_write_byte_data(client, DS1337_REG_STATUS,
673 ds1307->regs[1] & ~DS1337_BIT_OSF);
674 dev_warn(&client->dev, "SET TIME!\n");
David Brownell1abb0dc2006-06-25 05:48:17 -0700675 }
David Brownell045e0e82007-07-17 04:04:55 -0700676 break;
677 default:
678 break;
679 }
David Brownell1abb0dc2006-06-25 05:48:17 -0700680
681read_rtc:
682 /* read RTC registers */
Ed Swierk30e7b032009-03-31 15:24:56 -0700683 tmp = ds1307->read_block_data(ds1307->client, 0, 8, buf);
BARRE Sebastienfed40b72009-01-07 18:07:13 -0800684 if (tmp != 8) {
David Brownell1abb0dc2006-06-25 05:48:17 -0700685 pr_debug("read error %d\n", tmp);
686 err = -EIO;
687 goto exit_free;
688 }
689
690 /* minimal sanity checking; some chips (like DS1340) don't
691 * specify the extra bits as must-be-zero, but there are
692 * still a few values that are clearly out-of-range.
693 */
694 tmp = ds1307->regs[DS1307_REG_SECS];
David Brownell045e0e82007-07-17 04:04:55 -0700695 switch (ds1307->type) {
696 case ds_1307:
David Brownell045e0e82007-07-17 04:04:55 -0700697 case m41t00:
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700698 /* clock halted? turn it on, so clock can tick. */
David Brownell045e0e82007-07-17 04:04:55 -0700699 if (tmp & DS1307_BIT_CH) {
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700700 i2c_smbus_write_byte_data(client, DS1307_REG_SECS, 0);
701 dev_warn(&client->dev, "SET TIME!\n");
David Brownell045e0e82007-07-17 04:04:55 -0700702 goto read_rtc;
David Brownell1abb0dc2006-06-25 05:48:17 -0700703 }
David Brownell045e0e82007-07-17 04:04:55 -0700704 break;
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700705 case ds_1338:
706 /* clock halted? turn it on, so clock can tick. */
David Brownell045e0e82007-07-17 04:04:55 -0700707 if (tmp & DS1307_BIT_CH)
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700708 i2c_smbus_write_byte_data(client, DS1307_REG_SECS, 0);
709
710 /* oscillator fault? clear flag, and warn */
711 if (ds1307->regs[DS1307_REG_CONTROL] & DS1338_BIT_OSF) {
712 i2c_smbus_write_byte_data(client, DS1307_REG_CONTROL,
David Brownellbd16f9e2007-07-26 10:41:00 -0700713 ds1307->regs[DS1307_REG_CONTROL]
Rodolfo Giomettibe5f59f2007-07-17 04:05:06 -0700714 & ~DS1338_BIT_OSF);
715 dev_warn(&client->dev, "SET TIME!\n");
716 goto read_rtc;
717 }
David Brownell045e0e82007-07-17 04:04:55 -0700718 break;
frederic Rodofcd8db02008-02-06 01:38:55 -0800719 case ds_1340:
720 /* clock halted? turn it on, so clock can tick. */
721 if (tmp & DS1340_BIT_nEOSC)
722 i2c_smbus_write_byte_data(client, DS1307_REG_SECS, 0);
723
724 tmp = i2c_smbus_read_byte_data(client, DS1340_REG_FLAG);
725 if (tmp < 0) {
726 pr_debug("read error %d\n", tmp);
727 err = -EIO;
728 goto exit_free;
729 }
730
731 /* oscillator fault? clear flag, and warn */
732 if (tmp & DS1340_BIT_OSF) {
733 i2c_smbus_write_byte_data(client, DS1340_REG_FLAG, 0);
734 dev_warn(&client->dev, "SET TIME!\n");
735 }
736 break;
David Brownellc065f352007-07-17 04:05:10 -0700737 case ds_1337:
738 case ds_1339:
David Brownell045e0e82007-07-17 04:04:55 -0700739 break;
David Brownell1abb0dc2006-06-25 05:48:17 -0700740 }
David Brownell045e0e82007-07-17 04:04:55 -0700741
David Brownell1abb0dc2006-06-25 05:48:17 -0700742 tmp = ds1307->regs[DS1307_REG_HOUR];
David Brownellc065f352007-07-17 04:05:10 -0700743 switch (ds1307->type) {
744 case ds_1340:
745 case m41t00:
746 /* NOTE: ignores century bits; fix before deploying
747 * systems that will run through year 2100.
748 */
749 break;
750 default:
751 if (!(tmp & DS1307_BIT_12HR))
752 break;
753
754 /* Be sure we're in 24 hour mode. Multi-master systems
755 * take note...
756 */
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700757 tmp = bcd2bin(tmp & 0x1f);
David Brownellc065f352007-07-17 04:05:10 -0700758 if (tmp == 12)
759 tmp = 0;
760 if (ds1307->regs[DS1307_REG_HOUR] & DS1307_BIT_PM)
761 tmp += 12;
David Brownell1abb0dc2006-06-25 05:48:17 -0700762 i2c_smbus_write_byte_data(client,
763 DS1307_REG_HOUR,
Adrian Bunkfe20ba72008-10-18 20:28:41 -0700764 bin2bcd(tmp));
David Brownell1abb0dc2006-06-25 05:48:17 -0700765 }
766
David Brownell1abb0dc2006-06-25 05:48:17 -0700767 ds1307->rtc = rtc_device_register(client->name, &client->dev,
768 &ds13xx_rtc_ops, THIS_MODULE);
769 if (IS_ERR(ds1307->rtc)) {
770 err = PTR_ERR(ds1307->rtc);
771 dev_err(&client->dev,
772 "unable to register the class device\n");
David Brownellc065f352007-07-17 04:05:10 -0700773 goto exit_free;
David Brownell1abb0dc2006-06-25 05:48:17 -0700774 }
775
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700776 if (want_irq) {
777 err = request_irq(client->irq, ds1307_irq, 0,
778 ds1307->rtc->name, client);
779 if (err) {
780 dev_err(&client->dev,
781 "unable to request IRQ!\n");
782 goto exit_irq;
783 }
784 set_bit(HAS_ALARM, &ds1307->flags);
785 dev_dbg(&client->dev, "got IRQ %d\n", client->irq);
786 }
787
David Brownell682d73f2007-11-14 16:58:32 -0800788 if (chip->nvram56) {
789 err = sysfs_create_bin_file(&client->dev.kobj, &nvram);
790 if (err == 0) {
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700791 set_bit(HAS_NVRAM, &ds1307->flags);
David Brownell682d73f2007-11-14 16:58:32 -0800792 dev_info(&client->dev, "56 bytes nvram\n");
793 }
794 }
795
David Brownell1abb0dc2006-06-25 05:48:17 -0700796 return 0;
797
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700798exit_irq:
799 if (ds1307->rtc)
800 rtc_device_unregister(ds1307->rtc);
David Brownell1abb0dc2006-06-25 05:48:17 -0700801exit_free:
802 kfree(ds1307);
David Brownell1abb0dc2006-06-25 05:48:17 -0700803 return err;
804}
805
David Brownellc065f352007-07-17 04:05:10 -0700806static int __devexit ds1307_remove(struct i2c_client *client)
David Brownell1abb0dc2006-06-25 05:48:17 -0700807{
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700808 struct ds1307 *ds1307 = i2c_get_clientdata(client);
David Brownell1abb0dc2006-06-25 05:48:17 -0700809
Rodolfo Giometticb49a5e2008-10-15 22:02:58 -0700810 if (test_and_clear_bit(HAS_ALARM, &ds1307->flags)) {
811 free_irq(client->irq, client);
812 cancel_work_sync(&ds1307->work);
813 }
814
815 if (test_and_clear_bit(HAS_NVRAM, &ds1307->flags))
David Brownell682d73f2007-11-14 16:58:32 -0800816 sysfs_remove_bin_file(&client->dev.kobj, &nvram);
817
David Brownell1abb0dc2006-06-25 05:48:17 -0700818 rtc_device_unregister(ds1307->rtc);
David Brownell1abb0dc2006-06-25 05:48:17 -0700819 kfree(ds1307);
820 return 0;
821}
822
823static struct i2c_driver ds1307_driver = {
824 .driver = {
David Brownellc065f352007-07-17 04:05:10 -0700825 .name = "rtc-ds1307",
David Brownell1abb0dc2006-06-25 05:48:17 -0700826 .owner = THIS_MODULE,
827 },
David Brownellc065f352007-07-17 04:05:10 -0700828 .probe = ds1307_probe,
829 .remove = __devexit_p(ds1307_remove),
Jean Delvare3760f732008-04-29 23:11:40 +0200830 .id_table = ds1307_id,
David Brownell1abb0dc2006-06-25 05:48:17 -0700831};
832
833static int __init ds1307_init(void)
834{
835 return i2c_add_driver(&ds1307_driver);
836}
837module_init(ds1307_init);
838
839static void __exit ds1307_exit(void)
840{
841 i2c_del_driver(&ds1307_driver);
842}
843module_exit(ds1307_exit);
844
845MODULE_DESCRIPTION("RTC driver for DS1307 and similar chips");
846MODULE_LICENSE("GPL");