rtc-ds1307.c 21.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * rtc-ds1307.c - RTC driver for some mostly-compatible I2C chips.
 *
 *  Copyright (C) 2005 James Chapman (ds1337 core)
 *  Copyright (C) 2006 David Brownell
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/i2c.h>
#include <linux/string.h>
#include <linux/rtc.h>
#include <linux/bcd.h>



/* We can't determine type by probing, but if we expect pre-Linux code
 * to have set the chip up as a clock (turning on the oscillator and
 * setting the date and time), Linux can ignore the non-clock features.
 * That's a natural job for a factory or repair bench.
 */
enum ds_type {
D
David Brownell 已提交
28 29 30 31 32 33
	ds_1307,
	ds_1337,
	ds_1338,
	ds_1339,
	ds_1340,
	m41t00,
34 35 36 37 38 39 40
	// rs5c372 too?  different address...
};


/* RTC registers don't differ much, except for the century flag */
#define DS1307_REG_SECS		0x00	/* 00-59 */
#	define DS1307_BIT_CH		0x80
41
#	define DS1340_BIT_nEOSC		0x80
42 43
#define DS1307_REG_MIN		0x01	/* 00-59 */
#define DS1307_REG_HOUR		0x02	/* 00-23, or 1-12{am,pm} */
44 45
#	define DS1307_BIT_12HR		0x40	/* in REG_HOUR */
#	define DS1307_BIT_PM		0x20	/* in REG_HOUR */
46 47 48 49 50 51 52 53 54
#	define DS1340_BIT_CENTURY_EN	0x80	/* in REG_HOUR */
#	define DS1340_BIT_CENTURY	0x40	/* in REG_HOUR */
#define DS1307_REG_WDAY		0x03	/* 01-07 */
#define DS1307_REG_MDAY		0x04	/* 01-31 */
#define DS1307_REG_MONTH	0x05	/* 01-12 */
#	define DS1337_BIT_CENTURY	0x80	/* in REG_MONTH */
#define DS1307_REG_YEAR		0x06	/* 00-99 */

/* Other registers (control, status, alarms, trickle charge, NVRAM, etc)
D
David Brownell 已提交
55 56
 * start at 7, and they differ a LOT. Only control and status matter for
 * basic RTC date and time functionality; be careful using them.
57
 */
D
David Brownell 已提交
58
#define DS1307_REG_CONTROL	0x07		/* or ds1338 */
59
#	define DS1307_BIT_OUT		0x80
60
#	define DS1338_BIT_OSF		0x20
61 62 63 64 65
#	define DS1307_BIT_SQWE		0x10
#	define DS1307_BIT_RS1		0x02
#	define DS1307_BIT_RS0		0x01
#define DS1337_REG_CONTROL	0x0e
#	define DS1337_BIT_nEOSC		0x80
66
#	define DS1339_BIT_BBSQI		0x20
67 68 69 70 71
#	define DS1337_BIT_RS2		0x10
#	define DS1337_BIT_RS1		0x08
#	define DS1337_BIT_INTCN		0x04
#	define DS1337_BIT_A2IE		0x02
#	define DS1337_BIT_A1IE		0x01
D
David Brownell 已提交
72 73 74 75 76
#define DS1340_REG_CONTROL	0x07
#	define DS1340_BIT_OUT		0x80
#	define DS1340_BIT_FT		0x40
#	define DS1340_BIT_CALIB_SIGN	0x20
#	define DS1340_M_CALIBRATION	0x1f
77 78
#define DS1340_REG_FLAG		0x09
#	define DS1340_BIT_OSF		0x80
79 80 81 82
#define DS1337_REG_STATUS	0x0f
#	define DS1337_BIT_OSF		0x80
#	define DS1337_BIT_A2I		0x02
#	define DS1337_BIT_A1I		0x01
83
#define DS1339_REG_ALARM1_SECS	0x07
84 85 86 87 88
#define DS1339_REG_TRICKLE	0x10



struct ds1307 {
89
	u8			regs[11];
90
	enum ds_type		type;
91 92 93
	unsigned long		flags;
#define HAS_NVRAM	0		/* bit 0 == sysfs file active */
#define HAS_ALARM	1		/* bit 1 == irq claimed */
D
David Brownell 已提交
94
	struct i2c_client	*client;
95
	struct rtc_device	*rtc;
96
	struct work_struct	work;
E
Ed Swierk 已提交
97 98 99 100
	s32 (*read_block_data)(struct i2c_client *client, u8 command,
			       u8 length, u8 *values);
	s32 (*write_block_data)(struct i2c_client *client, u8 command,
				u8 length, const u8 *values);
101 102
};

D
David Brownell 已提交
103 104 105 106 107
struct chip_desc {
	unsigned		nvram56:1;
	unsigned		alarm:1;
};

108 109
static const struct chip_desc chips[] = {
[ds_1307] = {
D
David Brownell 已提交
110
	.nvram56	= 1,
111 112
},
[ds_1337] = {
D
David Brownell 已提交
113
	.alarm		= 1,
114 115
},
[ds_1338] = {
D
David Brownell 已提交
116
	.nvram56	= 1,
117 118
},
[ds_1339] = {
D
David Brownell 已提交
119
	.alarm		= 1,
120 121 122 123
},
[ds_1340] = {
},
[m41t00] = {
D
David Brownell 已提交
124 125
}, };

126 127 128 129 130 131 132 133 134 135
static const struct i2c_device_id ds1307_id[] = {
	{ "ds1307", ds_1307 },
	{ "ds1337", ds_1337 },
	{ "ds1338", ds_1338 },
	{ "ds1339", ds_1339 },
	{ "ds1340", ds_1340 },
	{ "m41t00", m41t00 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, ds1307_id);
136

137 138
/*----------------------------------------------------------------------*/

E
Ed Swierk 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
#define BLOCK_DATA_MAX_TRIES 10

static s32 ds1307_read_block_data_once(struct i2c_client *client, u8 command,
				  u8 length, u8 *values)
{
	s32 i, data;

	for (i = 0; i < length; i++) {
		data = i2c_smbus_read_byte_data(client, command + i);
		if (data < 0)
			return data;
		values[i] = data;
	}
	return i;
}

static s32 ds1307_read_block_data(struct i2c_client *client, u8 command,
				  u8 length, u8 *values)
{
	u8 oldvalues[I2C_SMBUS_BLOCK_MAX];
	s32 ret;
	int tries = 0;

	dev_dbg(&client->dev, "ds1307_read_block_data (length=%d)\n", length);
	ret = ds1307_read_block_data_once(client, command, length, values);
	if (ret < 0)
		return ret;
	do {
		if (++tries > BLOCK_DATA_MAX_TRIES) {
			dev_err(&client->dev,
				"ds1307_read_block_data failed\n");
			return -EIO;
		}
		memcpy(oldvalues, values, length);
		ret = ds1307_read_block_data_once(client, command, length,
						  values);
		if (ret < 0)
			return ret;
	} while (memcmp(oldvalues, values, length));
	return length;
}

static s32 ds1307_write_block_data(struct i2c_client *client, u8 command,
				   u8 length, const u8 *values)
{
	u8 currvalues[I2C_SMBUS_BLOCK_MAX];
	int tries = 0;

	dev_dbg(&client->dev, "ds1307_write_block_data (length=%d)\n", length);
	do {
		s32 i, ret;

		if (++tries > BLOCK_DATA_MAX_TRIES) {
			dev_err(&client->dev,
				"ds1307_write_block_data failed\n");
			return -EIO;
		}
		for (i = 0; i < length; i++) {
			ret = i2c_smbus_write_byte_data(client, command + i,
							values[i]);
			if (ret < 0)
				return ret;
		}
		ret = ds1307_read_block_data_once(client, command, length,
						  currvalues);
		if (ret < 0)
			return ret;
	} while (memcmp(currvalues, values, length));
	return length;
}

/*----------------------------------------------------------------------*/

212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
/*
 * The IRQ logic includes a "real" handler running in IRQ context just
 * long enough to schedule this workqueue entry.   We need a task context
 * to talk to the RTC, since I2C I/O calls require that; and disable the
 * IRQ until we clear its status on the chip, so that this handler can
 * work with any type of triggering (not just falling edge).
 *
 * The ds1337 and ds1339 both have two alarms, but we only use the first
 * one (with a "seconds" field).  For ds1337 we expect nINTA is our alarm
 * signal; ds1339 chips have only one alarm signal.
 */
static void ds1307_work(struct work_struct *work)
{
	struct ds1307		*ds1307;
	struct i2c_client	*client;
	struct mutex		*lock;
	int			stat, control;

	ds1307 = container_of(work, struct ds1307, work);
	client = ds1307->client;
	lock = &ds1307->rtc->ops_lock;

	mutex_lock(lock);
	stat = i2c_smbus_read_byte_data(client, DS1337_REG_STATUS);
	if (stat < 0)
		goto out;

	if (stat & DS1337_BIT_A1I) {
		stat &= ~DS1337_BIT_A1I;
		i2c_smbus_write_byte_data(client, DS1337_REG_STATUS, stat);

		control = i2c_smbus_read_byte_data(client, DS1337_REG_CONTROL);
		if (control < 0)
			goto out;

		control &= ~DS1337_BIT_A1IE;
		i2c_smbus_write_byte_data(client, DS1337_REG_CONTROL, control);

		/* rtc_update_irq() assumes that it is called
		 * from IRQ-disabled context.
		 */
		local_irq_disable();
		rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
		local_irq_enable();
	}

out:
	if (test_bit(HAS_ALARM, &ds1307->flags))
		enable_irq(client->irq);
	mutex_unlock(lock);
}

static irqreturn_t ds1307_irq(int irq, void *dev_id)
{
	struct i2c_client	*client = dev_id;
	struct ds1307		*ds1307 = i2c_get_clientdata(client);

	disable_irq_nosync(irq);
	schedule_work(&ds1307->work);
	return IRQ_HANDLED;
}

/*----------------------------------------------------------------------*/

276 277 278 279 280
static int ds1307_get_time(struct device *dev, struct rtc_time *t)
{
	struct ds1307	*ds1307 = dev_get_drvdata(dev);
	int		tmp;

D
David Brownell 已提交
281
	/* read the RTC date and time registers all at once */
E
Ed Swierk 已提交
282
	tmp = ds1307->read_block_data(ds1307->client,
283 284
		DS1307_REG_SECS, 7, ds1307->regs);
	if (tmp != 7) {
285 286 287 288 289 290 291 292 293 294 295
		dev_err(dev, "%s error %d\n", "read", tmp);
		return -EIO;
	}

	dev_dbg(dev, "%s: %02x %02x %02x %02x %02x %02x %02x\n",
			"read",
			ds1307->regs[0], ds1307->regs[1],
			ds1307->regs[2], ds1307->regs[3],
			ds1307->regs[4], ds1307->regs[5],
			ds1307->regs[6]);

A
Adrian Bunk 已提交
296 297
	t->tm_sec = bcd2bin(ds1307->regs[DS1307_REG_SECS] & 0x7f);
	t->tm_min = bcd2bin(ds1307->regs[DS1307_REG_MIN] & 0x7f);
298
	tmp = ds1307->regs[DS1307_REG_HOUR] & 0x3f;
A
Adrian Bunk 已提交
299 300 301
	t->tm_hour = bcd2bin(tmp);
	t->tm_wday = bcd2bin(ds1307->regs[DS1307_REG_WDAY] & 0x07) - 1;
	t->tm_mday = bcd2bin(ds1307->regs[DS1307_REG_MDAY] & 0x3f);
302
	tmp = ds1307->regs[DS1307_REG_MONTH] & 0x1f;
A
Adrian Bunk 已提交
303
	t->tm_mon = bcd2bin(tmp) - 1;
304 305

	/* assume 20YY not 19YY, and ignore DS1337_BIT_CENTURY */
A
Adrian Bunk 已提交
306
	t->tm_year = bcd2bin(ds1307->regs[DS1307_REG_YEAR]) + 100;
307 308 309 310 311 312 313

	dev_dbg(dev, "%s secs=%d, mins=%d, "
		"hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
		"read", t->tm_sec, t->tm_min,
		t->tm_hour, t->tm_mday,
		t->tm_mon, t->tm_year, t->tm_wday);

D
David Brownell 已提交
314 315
	/* initial clock setting can be undefined */
	return rtc_valid_tm(t);
316 317 318 319 320 321 322 323 324 325 326
}

static int ds1307_set_time(struct device *dev, struct rtc_time *t)
{
	struct ds1307	*ds1307 = dev_get_drvdata(dev);
	int		result;
	int		tmp;
	u8		*buf = ds1307->regs;

	dev_dbg(dev, "%s secs=%d, mins=%d, "
		"hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
J
Jeff Garzik 已提交
327 328 329
		"write", t->tm_sec, t->tm_min,
		t->tm_hour, t->tm_mday,
		t->tm_mon, t->tm_year, t->tm_wday);
330

A
Adrian Bunk 已提交
331 332 333 334 335 336
	buf[DS1307_REG_SECS] = bin2bcd(t->tm_sec);
	buf[DS1307_REG_MIN] = bin2bcd(t->tm_min);
	buf[DS1307_REG_HOUR] = bin2bcd(t->tm_hour);
	buf[DS1307_REG_WDAY] = bin2bcd(t->tm_wday + 1);
	buf[DS1307_REG_MDAY] = bin2bcd(t->tm_mday);
	buf[DS1307_REG_MONTH] = bin2bcd(t->tm_mon + 1);
337 338 339

	/* assume 20YY not 19YY */
	tmp = t->tm_year - 100;
A
Adrian Bunk 已提交
340
	buf[DS1307_REG_YEAR] = bin2bcd(tmp);
341

342 343 344
	switch (ds1307->type) {
	case ds_1337:
	case ds_1339:
345
		buf[DS1307_REG_MONTH] |= DS1337_BIT_CENTURY;
346 347
		break;
	case ds_1340:
348 349
		buf[DS1307_REG_HOUR] |= DS1340_BIT_CENTURY_EN
				| DS1340_BIT_CENTURY;
350 351 352 353
		break;
	default:
		break;
	}
354 355 356 357 358

	dev_dbg(dev, "%s: %02x %02x %02x %02x %02x %02x %02x\n",
		"write", buf[0], buf[1], buf[2], buf[3],
		buf[4], buf[5], buf[6]);

E
Ed Swierk 已提交
359
	result = ds1307->write_block_data(ds1307->client, 0, 7, buf);
360 361 362
	if (result < 0) {
		dev_err(dev, "%s error %d\n", "write", result);
		return result;
363 364 365 366
	}
	return 0;
}

367
static int ds1337_read_alarm(struct device *dev, struct rtc_wkalrm *t)
368 369 370 371 372 373 374 375 376
{
	struct i2c_client       *client = to_i2c_client(dev);
	struct ds1307		*ds1307 = i2c_get_clientdata(client);
	int			ret;

	if (!test_bit(HAS_ALARM, &ds1307->flags))
		return -EINVAL;

	/* read all ALARM1, ALARM2, and status registers at once */
E
Ed Swierk 已提交
377
	ret = ds1307->read_block_data(client,
378 379
			DS1339_REG_ALARM1_SECS, 9, ds1307->regs);
	if (ret != 9) {
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
		dev_err(dev, "%s error %d\n", "alarm read", ret);
		return -EIO;
	}

	dev_dbg(dev, "%s: %02x %02x %02x %02x, %02x %02x %02x, %02x %02x\n",
			"alarm read",
			ds1307->regs[0], ds1307->regs[1],
			ds1307->regs[2], ds1307->regs[3],
			ds1307->regs[4], ds1307->regs[5],
			ds1307->regs[6], ds1307->regs[7],
			ds1307->regs[8]);

	/* report alarm time (ALARM1); assume 24 hour and day-of-month modes,
	 * and that all four fields are checked matches
	 */
	t->time.tm_sec = bcd2bin(ds1307->regs[0] & 0x7f);
	t->time.tm_min = bcd2bin(ds1307->regs[1] & 0x7f);
	t->time.tm_hour = bcd2bin(ds1307->regs[2] & 0x3f);
	t->time.tm_mday = bcd2bin(ds1307->regs[3] & 0x3f);
	t->time.tm_mon = -1;
	t->time.tm_year = -1;
	t->time.tm_wday = -1;
	t->time.tm_yday = -1;
	t->time.tm_isdst = -1;

	/* ... and status */
	t->enabled = !!(ds1307->regs[7] & DS1337_BIT_A1IE);
	t->pending = !!(ds1307->regs[8] & DS1337_BIT_A1I);

	dev_dbg(dev, "%s secs=%d, mins=%d, "
		"hours=%d, mday=%d, enabled=%d, pending=%d\n",
		"alarm read", t->time.tm_sec, t->time.tm_min,
		t->time.tm_hour, t->time.tm_mday,
		t->enabled, t->pending);

	return 0;
}

418
static int ds1337_set_alarm(struct device *dev, struct rtc_wkalrm *t)
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
{
	struct i2c_client       *client = to_i2c_client(dev);
	struct ds1307		*ds1307 = i2c_get_clientdata(client);
	unsigned char		*buf = ds1307->regs;
	u8			control, status;
	int			ret;

	if (!test_bit(HAS_ALARM, &ds1307->flags))
		return -EINVAL;

	dev_dbg(dev, "%s secs=%d, mins=%d, "
		"hours=%d, mday=%d, enabled=%d, pending=%d\n",
		"alarm set", t->time.tm_sec, t->time.tm_min,
		t->time.tm_hour, t->time.tm_mday,
		t->enabled, t->pending);

	/* read current status of both alarms and the chip */
E
Ed Swierk 已提交
436
	ret = ds1307->read_block_data(client,
437 438
			DS1339_REG_ALARM1_SECS, 9, buf);
	if (ret != 9) {
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
		dev_err(dev, "%s error %d\n", "alarm write", ret);
		return -EIO;
	}
	control = ds1307->regs[7];
	status = ds1307->regs[8];

	dev_dbg(dev, "%s: %02x %02x %02x %02x, %02x %02x %02x, %02x %02x\n",
			"alarm set (old status)",
			ds1307->regs[0], ds1307->regs[1],
			ds1307->regs[2], ds1307->regs[3],
			ds1307->regs[4], ds1307->regs[5],
			ds1307->regs[6], control, status);

	/* set ALARM1, using 24 hour and day-of-month modes */
	buf[0] = bin2bcd(t->time.tm_sec);
	buf[1] = bin2bcd(t->time.tm_min);
	buf[2] = bin2bcd(t->time.tm_hour);
	buf[3] = bin2bcd(t->time.tm_mday);

	/* set ALARM2 to non-garbage */
	buf[4] = 0;
	buf[5] = 0;
	buf[6] = 0;

	/* optionally enable ALARM1 */
	buf[7] = control & ~(DS1337_BIT_A1IE | DS1337_BIT_A2IE);
	if (t->enabled) {
		dev_dbg(dev, "alarm IRQ armed\n");
		buf[7] |= DS1337_BIT_A1IE;	/* only ALARM1 is used */
	}
	buf[8] = status & ~(DS1337_BIT_A1I | DS1337_BIT_A2I);

E
Ed Swierk 已提交
471
	ret = ds1307->write_block_data(client,
472 473
			DS1339_REG_ALARM1_SECS, 9, buf);
	if (ret < 0) {
474
		dev_err(dev, "can't set alarm time\n");
475
		return ret;
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
	}

	return 0;
}

static int ds1307_ioctl(struct device *dev, unsigned int cmd, unsigned long arg)
{
	struct i2c_client	*client = to_i2c_client(dev);
	struct ds1307		*ds1307 = i2c_get_clientdata(client);
	int			ret;

	switch (cmd) {
	case RTC_AIE_OFF:
		if (!test_bit(HAS_ALARM, &ds1307->flags))
			return -ENOTTY;

		ret = i2c_smbus_read_byte_data(client, DS1337_REG_CONTROL);
		if (ret < 0)
			return ret;

		ret &= ~DS1337_BIT_A1IE;

		ret = i2c_smbus_write_byte_data(client,
						DS1337_REG_CONTROL, ret);
		if (ret < 0)
			return ret;

		break;

	case RTC_AIE_ON:
		if (!test_bit(HAS_ALARM, &ds1307->flags))
			return -ENOTTY;

		ret = i2c_smbus_read_byte_data(client, DS1337_REG_CONTROL);
		if (ret < 0)
			return ret;

		ret |= DS1337_BIT_A1IE;

		ret = i2c_smbus_write_byte_data(client,
						DS1337_REG_CONTROL, ret);
		if (ret < 0)
			return ret;

		break;

	default:
		return -ENOIOCTLCMD;
	}

	return 0;
}

529
static const struct rtc_class_ops ds13xx_rtc_ops = {
530 531
	.read_time	= ds1307_get_time,
	.set_time	= ds1307_set_time,
532 533
	.read_alarm	= ds1337_read_alarm,
	.set_alarm	= ds1337_set_alarm,
534
	.ioctl		= ds1307_ioctl,
535 536
};

D
David Brownell 已提交
537 538 539 540 541 542 543 544 545 546 547 548
/*----------------------------------------------------------------------*/

#define NVRAM_SIZE	56

static ssize_t
ds1307_nvram_read(struct kobject *kobj, struct bin_attribute *attr,
		char *buf, loff_t off, size_t count)
{
	struct i2c_client	*client;
	struct ds1307		*ds1307;
	int			result;

F
frederic Rodo 已提交
549
	client = kobj_to_i2c_client(kobj);
D
David Brownell 已提交
550 551 552 553 554 555 556 557 558
	ds1307 = i2c_get_clientdata(client);

	if (unlikely(off >= NVRAM_SIZE))
		return 0;
	if ((off + count) > NVRAM_SIZE)
		count = NVRAM_SIZE - off;
	if (unlikely(!count))
		return count;

E
Ed Swierk 已提交
559
	result = ds1307->read_block_data(client, 8 + off, count, buf);
560
	if (result < 0)
D
David Brownell 已提交
561
		dev_err(&client->dev, "%s error %d\n", "nvram read", result);
562
	return result;
D
David Brownell 已提交
563 564 565 566 567 568 569
}

static ssize_t
ds1307_nvram_write(struct kobject *kobj, struct bin_attribute *attr,
		char *buf, loff_t off, size_t count)
{
	struct i2c_client	*client;
E
Ed Swierk 已提交
570
	struct ds1307		*ds1307;
571
	int			result;
D
David Brownell 已提交
572

F
frederic Rodo 已提交
573
	client = kobj_to_i2c_client(kobj);
E
Ed Swierk 已提交
574
	ds1307 = i2c_get_clientdata(client);
D
David Brownell 已提交
575 576 577 578 579 580 581 582

	if (unlikely(off >= NVRAM_SIZE))
		return -EFBIG;
	if ((off + count) > NVRAM_SIZE)
		count = NVRAM_SIZE - off;
	if (unlikely(!count))
		return count;

E
Ed Swierk 已提交
583
	result = ds1307->write_block_data(client, 8 + off, count, buf);
584 585 586 587 588
	if (result < 0) {
		dev_err(&client->dev, "%s error %d\n", "nvram write", result);
		return result;
	}
	return count;
D
David Brownell 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
}

static struct bin_attribute nvram = {
	.attr = {
		.name	= "nvram",
		.mode	= S_IRUGO | S_IWUSR,
	},

	.read	= ds1307_nvram_read,
	.write	= ds1307_nvram_write,
	.size	= NVRAM_SIZE,
};

/*----------------------------------------------------------------------*/

604 605
static struct i2c_driver ds1307_driver;

606 607
static int __devinit ds1307_probe(struct i2c_client *client,
				  const struct i2c_device_id *id)
608 609 610 611
{
	struct ds1307		*ds1307;
	int			err = -ENODEV;
	int			tmp;
612
	const struct chip_desc	*chip = &chips[id->driver_data];
613
	struct i2c_adapter	*adapter = to_i2c_adapter(client->dev.parent);
614
	int			want_irq = false;
615
	unsigned char		*buf;
616

E
Ed Swierk 已提交
617 618
	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)
	    && !i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK))
619 620 621 622
		return -EIO;

	if (!(ds1307 = kzalloc(sizeof(struct ds1307), GFP_KERNEL)))
		return -ENOMEM;
D
David Brownell 已提交
623 624

	ds1307->client = client;
625
	i2c_set_clientdata(client, ds1307);
626
	ds1307->type = id->driver_data;
627
	buf = ds1307->regs;
E
Ed Swierk 已提交
628 629 630 631 632 633 634
	if (i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) {
		ds1307->read_block_data = i2c_smbus_read_i2c_block_data;
		ds1307->write_block_data = i2c_smbus_write_i2c_block_data;
	} else {
		ds1307->read_block_data = ds1307_read_block_data;
		ds1307->write_block_data = ds1307_write_block_data;
	}
D
David Brownell 已提交
635 636 637 638

	switch (ds1307->type) {
	case ds_1337:
	case ds_1339:
639 640 641 642 643
		/* has IRQ? */
		if (ds1307->client->irq > 0 && chip->alarm) {
			INIT_WORK(&ds1307->work, ds1307_work);
			want_irq = true;
		}
644
		/* get registers that the "rtc" read below won't read... */
E
Ed Swierk 已提交
645
		tmp = ds1307->read_block_data(ds1307->client,
646
				DS1337_REG_CONTROL, 2, buf);
647 648 649 650 651 652
		if (tmp != 2) {
			pr_debug("read error %d\n", tmp);
			err = -EIO;
			goto exit_free;
		}

653 654
		/* oscillator off?  turn it on, so clock can tick. */
		if (ds1307->regs[0] & DS1337_BIT_nEOSC)
655 656 657 658 659 660 661 662 663 664 665 666 667 668
			ds1307->regs[0] &= ~DS1337_BIT_nEOSC;

		/* Using IRQ?  Disable the square wave and both alarms.
		 * For ds1339, be sure alarms can trigger when we're
		 * running on Vbackup (BBSQI); we assume ds1337 will
		 * ignore that bit
		 */
		if (want_irq) {
			ds1307->regs[0] |= DS1337_BIT_INTCN | DS1339_BIT_BBSQI;
			ds1307->regs[0] &= ~(DS1337_BIT_A2IE | DS1337_BIT_A1IE);
		}

		i2c_smbus_write_byte_data(client, DS1337_REG_CONTROL,
							ds1307->regs[0]);
669 670 671 672 673 674

		/* oscillator fault?  clear flag, and warn */
		if (ds1307->regs[1] & DS1337_BIT_OSF) {
			i2c_smbus_write_byte_data(client, DS1337_REG_STATUS,
				ds1307->regs[1] & ~DS1337_BIT_OSF);
			dev_warn(&client->dev, "SET TIME!\n");
675
		}
D
David Brownell 已提交
676 677 678 679
		break;
	default:
		break;
	}
680 681 682

read_rtc:
	/* read RTC registers */
E
Ed Swierk 已提交
683
	tmp = ds1307->read_block_data(ds1307->client, 0, 8, buf);
684
	if (tmp != 8) {
685 686 687 688 689 690 691 692 693 694
		pr_debug("read error %d\n", tmp);
		err = -EIO;
		goto exit_free;
	}

	/* minimal sanity checking; some chips (like DS1340) don't
	 * specify the extra bits as must-be-zero, but there are
	 * still a few values that are clearly out-of-range.
	 */
	tmp = ds1307->regs[DS1307_REG_SECS];
D
David Brownell 已提交
695 696 697
	switch (ds1307->type) {
	case ds_1307:
	case m41t00:
698
		/* clock halted?  turn it on, so clock can tick. */
D
David Brownell 已提交
699
		if (tmp & DS1307_BIT_CH) {
700 701
			i2c_smbus_write_byte_data(client, DS1307_REG_SECS, 0);
			dev_warn(&client->dev, "SET TIME!\n");
D
David Brownell 已提交
702
			goto read_rtc;
703
		}
D
David Brownell 已提交
704
		break;
705 706
	case ds_1338:
		/* clock halted?  turn it on, so clock can tick. */
D
David Brownell 已提交
707
		if (tmp & DS1307_BIT_CH)
708 709 710 711 712
			i2c_smbus_write_byte_data(client, DS1307_REG_SECS, 0);

		/* oscillator fault?  clear flag, and warn */
		if (ds1307->regs[DS1307_REG_CONTROL] & DS1338_BIT_OSF) {
			i2c_smbus_write_byte_data(client, DS1307_REG_CONTROL,
713
					ds1307->regs[DS1307_REG_CONTROL]
714 715 716 717
					& ~DS1338_BIT_OSF);
			dev_warn(&client->dev, "SET TIME!\n");
			goto read_rtc;
		}
D
David Brownell 已提交
718
		break;
F
frederic Rodo 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
	case ds_1340:
		/* clock halted?  turn it on, so clock can tick. */
		if (tmp & DS1340_BIT_nEOSC)
			i2c_smbus_write_byte_data(client, DS1307_REG_SECS, 0);

		tmp = i2c_smbus_read_byte_data(client, DS1340_REG_FLAG);
		if (tmp < 0) {
			pr_debug("read error %d\n", tmp);
			err = -EIO;
			goto exit_free;
		}

		/* oscillator fault?  clear flag, and warn */
		if (tmp & DS1340_BIT_OSF) {
			i2c_smbus_write_byte_data(client, DS1340_REG_FLAG, 0);
			dev_warn(&client->dev, "SET TIME!\n");
		}
		break;
737 738
	case ds_1337:
	case ds_1339:
D
David Brownell 已提交
739
		break;
740
	}
D
David Brownell 已提交
741

742
	tmp = ds1307->regs[DS1307_REG_HOUR];
743 744 745 746 747 748 749 750 751 752 753 754 755 756
	switch (ds1307->type) {
	case ds_1340:
	case m41t00:
		/* NOTE: ignores century bits; fix before deploying
		 * systems that will run through year 2100.
		 */
		break;
	default:
		if (!(tmp & DS1307_BIT_12HR))
			break;

		/* Be sure we're in 24 hour mode.  Multi-master systems
		 * take note...
		 */
A
Adrian Bunk 已提交
757
		tmp = bcd2bin(tmp & 0x1f);
758 759 760 761
		if (tmp == 12)
			tmp = 0;
		if (ds1307->regs[DS1307_REG_HOUR] & DS1307_BIT_PM)
			tmp += 12;
762 763
		i2c_smbus_write_byte_data(client,
				DS1307_REG_HOUR,
A
Adrian Bunk 已提交
764
				bin2bcd(tmp));
765 766 767 768 769 770 771 772
	}

	ds1307->rtc = rtc_device_register(client->name, &client->dev,
				&ds13xx_rtc_ops, THIS_MODULE);
	if (IS_ERR(ds1307->rtc)) {
		err = PTR_ERR(ds1307->rtc);
		dev_err(&client->dev,
			"unable to register the class device\n");
773
		goto exit_free;
774 775
	}

776 777 778 779 780 781 782 783 784 785 786 787
	if (want_irq) {
		err = request_irq(client->irq, ds1307_irq, 0,
			  ds1307->rtc->name, client);
		if (err) {
			dev_err(&client->dev,
				"unable to request IRQ!\n");
			goto exit_irq;
		}
		set_bit(HAS_ALARM, &ds1307->flags);
		dev_dbg(&client->dev, "got IRQ %d\n", client->irq);
	}

D
David Brownell 已提交
788 789 790
	if (chip->nvram56) {
		err = sysfs_create_bin_file(&client->dev.kobj, &nvram);
		if (err == 0) {
791
			set_bit(HAS_NVRAM, &ds1307->flags);
D
David Brownell 已提交
792 793 794 795
			dev_info(&client->dev, "56 bytes nvram\n");
		}
	}

796 797
	return 0;

798 799 800
exit_irq:
	if (ds1307->rtc)
		rtc_device_unregister(ds1307->rtc);
801 802 803 804 805
exit_free:
	kfree(ds1307);
	return err;
}

806
static int __devexit ds1307_remove(struct i2c_client *client)
807
{
808 809 810 811 812 813
	struct ds1307		*ds1307 = i2c_get_clientdata(client);

	if (test_and_clear_bit(HAS_ALARM, &ds1307->flags)) {
		free_irq(client->irq, client);
		cancel_work_sync(&ds1307->work);
	}
814

815
	if (test_and_clear_bit(HAS_NVRAM, &ds1307->flags))
D
David Brownell 已提交
816 817
		sysfs_remove_bin_file(&client->dev.kobj, &nvram);

818 819 820 821 822 823 824
	rtc_device_unregister(ds1307->rtc);
	kfree(ds1307);
	return 0;
}

static struct i2c_driver ds1307_driver = {
	.driver = {
825
		.name	= "rtc-ds1307",
826 827
		.owner	= THIS_MODULE,
	},
828 829
	.probe		= ds1307_probe,
	.remove		= __devexit_p(ds1307_remove),
830
	.id_table	= ds1307_id,
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
};

static int __init ds1307_init(void)
{
	return i2c_add_driver(&ds1307_driver);
}
module_init(ds1307_init);

static void __exit ds1307_exit(void)
{
	i2c_del_driver(&ds1307_driver);
}
module_exit(ds1307_exit);

MODULE_DESCRIPTION("RTC driver for DS1307 and similar chips");
MODULE_LICENSE("GPL");