rtc-ds1307.c 34.9 KB
Newer Older
1 2 3 4 5
/*
 * rtc-ds1307.c - RTC driver for some mostly-compatible I2C chips.
 *
 *  Copyright (C) 2005 James Chapman (ds1337 core)
 *  Copyright (C) 2006 David Brownell
6
 *  Copyright (C) 2009 Matthias Fuchs (rx8025 support)
7
 *  Copyright (C) 2012 Bertrand Achard (nvram access fixes)
8 9 10 11 12 13
 *
 * 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.
 */

N
Nishanth Menon 已提交
14 15
#include <linux/bcd.h>
#include <linux/i2c.h>
16
#include <linux/init.h>
N
Nishanth Menon 已提交
17 18 19
#include <linux/module.h>
#include <linux/rtc/ds1307.h>
#include <linux/rtc.h>
20 21
#include <linux/slab.h>
#include <linux/string.h>
22 23
#include <linux/hwmon.h>
#include <linux/hwmon-sysfs.h>
24

25 26
/*
 * We can't determine type by probing, but if we expect pre-Linux code
27 28 29 30 31
 * 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 已提交
32 33 34 35 36
	ds_1307,
	ds_1337,
	ds_1338,
	ds_1339,
	ds_1340,
J
Joakim Tjernlund 已提交
37
	ds_1388,
W
Wolfram Sang 已提交
38
	ds_3231,
D
David Brownell 已提交
39
	m41t00,
40
	mcp794xx,
41
	rx_8025,
42
	last_ds_type /* always last */
43
	/* rs5c372 too?  different address... */
44 45 46 47 48 49
};


/* RTC registers don't differ much, except for the century flag */
#define DS1307_REG_SECS		0x00	/* 00-59 */
#	define DS1307_BIT_CH		0x80
50
#	define DS1340_BIT_nEOSC		0x80
51
#	define MCP794XX_BIT_ST		0x80
52 53
#define DS1307_REG_MIN		0x01	/* 00-59 */
#define DS1307_REG_HOUR		0x02	/* 00-23, or 1-12{am,pm} */
54 55
#	define DS1307_BIT_12HR		0x40	/* in REG_HOUR */
#	define DS1307_BIT_PM		0x20	/* in REG_HOUR */
56 57 58
#	define DS1340_BIT_CENTURY_EN	0x80	/* in REG_HOUR */
#	define DS1340_BIT_CENTURY	0x40	/* in REG_HOUR */
#define DS1307_REG_WDAY		0x03	/* 01-07 */
59
#	define MCP794XX_BIT_VBATEN	0x08
60 61 62 63 64
#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 */

65 66
/*
 * Other registers (control, status, alarms, trickle charge, NVRAM, etc)
D
David Brownell 已提交
67 68
 * start at 7, and they differ a LOT. Only control and status matter for
 * basic RTC date and time functionality; be careful using them.
69
 */
D
David Brownell 已提交
70
#define DS1307_REG_CONTROL	0x07		/* or ds1338 */
71
#	define DS1307_BIT_OUT		0x80
72
#	define DS1338_BIT_OSF		0x20
73 74 75 76 77
#	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
78
#	define DS1339_BIT_BBSQI		0x20
W
Wolfram Sang 已提交
79
#	define DS3231_BIT_BBSQW		0x40 /* same as BBSQI */
80 81 82 83 84
#	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 已提交
85 86 87 88 89
#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
90 91
#define DS1340_REG_FLAG		0x09
#	define DS1340_BIT_OSF		0x80
92 93 94 95
#define DS1337_REG_STATUS	0x0f
#	define DS1337_BIT_OSF		0x80
#	define DS1337_BIT_A2I		0x02
#	define DS1337_BIT_A1I		0x01
96
#define DS1339_REG_ALARM1_SECS	0x07
97 98

#define DS13XX_TRICKLE_CHARGER_MAGIC	0xa0
99

100 101 102 103 104 105
#define RX8025_REG_CTRL1	0x0e
#	define RX8025_BIT_2412		0x20
#define RX8025_REG_CTRL2	0x0f
#	define RX8025_BIT_PON		0x10
#	define RX8025_BIT_VDET		0x40
#	define RX8025_BIT_XST		0x20
106 107 108


struct ds1307 {
J
Joakim Tjernlund 已提交
109
	u8			offset; /* register's offset */
110
	u8			regs[11];
111 112
	u16			nvram_offset;
	struct bin_attribute	*nvram;
113
	enum ds_type		type;
114 115 116
	unsigned long		flags;
#define HAS_NVRAM	0		/* bit 0 == sysfs file active */
#define HAS_ALARM	1		/* bit 1 == irq claimed */
D
David Brownell 已提交
117
	struct i2c_client	*client;
118
	struct rtc_device	*rtc;
119
	s32 (*read_block_data)(const struct i2c_client *client, u8 command,
E
Ed Swierk 已提交
120
			       u8 length, u8 *values);
121
	s32 (*write_block_data)(const struct i2c_client *client, u8 command,
E
Ed Swierk 已提交
122
				u8 length, const u8 *values);
123 124
};

D
David Brownell 已提交
125 126
struct chip_desc {
	unsigned		alarm:1;
127 128
	u16			nvram_offset;
	u16			nvram_size;
129
	u16			trickle_charger_reg;
130 131
	u8			trickle_charger_setup;
	u8			(*do_trickle_setup)(struct i2c_client *, uint32_t, bool);
D
David Brownell 已提交
132 133
};

134 135 136 137
static u8 do_trickle_setup_ds1339(struct i2c_client *,
				  uint32_t ohms, bool diode);

static struct chip_desc chips[last_ds_type] = {
138
	[ds_1307] = {
139 140
		.nvram_offset	= 8,
		.nvram_size	= 56,
141 142 143 144 145
	},
	[ds_1337] = {
		.alarm		= 1,
	},
	[ds_1338] = {
146 147
		.nvram_offset	= 8,
		.nvram_size	= 56,
148 149 150
	},
	[ds_1339] = {
		.alarm		= 1,
151
		.trickle_charger_reg = 0x10,
152
		.do_trickle_setup = &do_trickle_setup_ds1339,
153 154 155 156 157 158
	},
	[ds_1340] = {
		.trickle_charger_reg = 0x08,
	},
	[ds_1388] = {
		.trickle_charger_reg = 0x0a,
159 160 161 162
	},
	[ds_3231] = {
		.alarm		= 1,
	},
163
	[mcp794xx] = {
164
		.alarm		= 1,
165 166 167 168
		/* this is battery backed SRAM */
		.nvram_offset	= 0x20,
		.nvram_size	= 0x40,
	},
169
};
D
David Brownell 已提交
170

171 172 173 174 175
static const struct i2c_device_id ds1307_id[] = {
	{ "ds1307", ds_1307 },
	{ "ds1337", ds_1337 },
	{ "ds1338", ds_1338 },
	{ "ds1339", ds_1339 },
J
Joakim Tjernlund 已提交
176
	{ "ds1388", ds_1388 },
177
	{ "ds1340", ds_1340 },
W
Wolfram Sang 已提交
178
	{ "ds3231", ds_3231 },
179
	{ "m41t00", m41t00 },
180 181
	{ "mcp7940x", mcp794xx },
	{ "mcp7941x", mcp794xx },
182
	{ "pt7c4338", ds_1307 },
183
	{ "rx8025", rx_8025 },
184 185 186
	{ }
};
MODULE_DEVICE_TABLE(i2c, ds1307_id);
187

188 189
/*----------------------------------------------------------------------*/

E
Ed Swierk 已提交
190 191
#define BLOCK_DATA_MAX_TRIES 10

192 193
static s32 ds1307_read_block_data_once(const struct i2c_client *client,
				       u8 command, u8 length, u8 *values)
E
Ed Swierk 已提交
194 195 196 197 198 199 200 201 202 203 204 205
{
	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;
}

206
static s32 ds1307_read_block_data(const struct i2c_client *client, u8 command,
E
Ed Swierk 已提交
207 208
				  u8 length, u8 *values)
{
209
	u8 oldvalues[255];
E
Ed Swierk 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
	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;
}

232
static s32 ds1307_write_block_data(const struct i2c_client *client, u8 command,
E
Ed Swierk 已提交
233 234
				   u8 length, const u8 *values)
{
235
	u8 currvalues[255];
E
Ed Swierk 已提交
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
	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;
}

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

263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
/* These RTC devices are not designed to be connected to a SMbus adapter.
   SMbus limits block operations length to 32 bytes, whereas it's not
   limited on I2C buses. As a result, accesses may exceed 32 bytes;
   in that case, split them into smaller blocks */

static s32 ds1307_native_smbus_write_block_data(const struct i2c_client *client,
				u8 command, u8 length, const u8 *values)
{
	u8 suboffset = 0;

	if (length <= I2C_SMBUS_BLOCK_MAX)
		return i2c_smbus_write_i2c_block_data(client,
					command, length, values);

	while (suboffset < length) {
		s32 retval = i2c_smbus_write_i2c_block_data(client,
				command + suboffset,
				min(I2C_SMBUS_BLOCK_MAX, length - suboffset),
				values + suboffset);
		if (retval < 0)
			return retval;

		suboffset += I2C_SMBUS_BLOCK_MAX;
	}
	return length;
}

static s32 ds1307_native_smbus_read_block_data(const struct i2c_client *client,
				u8 command, u8 length, u8 *values)
{
	u8 suboffset = 0;

	if (length <= I2C_SMBUS_BLOCK_MAX)
		return i2c_smbus_read_i2c_block_data(client,
					command, length, values);

	while (suboffset < length) {
		s32 retval = i2c_smbus_read_i2c_block_data(client,
				command + suboffset,
				min(I2C_SMBUS_BLOCK_MAX, length - suboffset),
				values + suboffset);
		if (retval < 0)
			return retval;

		suboffset += I2C_SMBUS_BLOCK_MAX;
	}
	return length;
}

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

314 315 316 317 318
/*
 * 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.
 */
319
static irqreturn_t ds1307_irq(int irq, void *dev_id)
320
{
321 322 323
	struct i2c_client	*client = dev_id;
	struct ds1307		*ds1307 = i2c_get_clientdata(client);
	struct mutex		*lock = &ds1307->rtc->ops_lock;
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
	int			stat, control;

	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(ds1307->rtc, 1, RTC_AF | RTC_IRQF);
	}

out:
	mutex_unlock(lock);

	return IRQ_HANDLED;
}

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

353 354 355 356 357
static int ds1307_get_time(struct device *dev, struct rtc_time *t)
{
	struct ds1307	*ds1307 = dev_get_drvdata(dev);
	int		tmp;

D
David Brownell 已提交
358
	/* read the RTC date and time registers all at once */
E
Ed Swierk 已提交
359
	tmp = ds1307->read_block_data(ds1307->client,
J
Joakim Tjernlund 已提交
360
		ds1307->offset, 7, ds1307->regs);
361
	if (tmp != 7) {
362 363 364 365
		dev_err(dev, "%s error %d\n", "read", tmp);
		return -EIO;
	}

366
	dev_dbg(dev, "%s: %7ph\n", "read", ds1307->regs);
367

A
Adrian Bunk 已提交
368 369
	t->tm_sec = bcd2bin(ds1307->regs[DS1307_REG_SECS] & 0x7f);
	t->tm_min = bcd2bin(ds1307->regs[DS1307_REG_MIN] & 0x7f);
370
	tmp = ds1307->regs[DS1307_REG_HOUR] & 0x3f;
A
Adrian Bunk 已提交
371 372 373
	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);
374
	tmp = ds1307->regs[DS1307_REG_MONTH] & 0x1f;
A
Adrian Bunk 已提交
375
	t->tm_mon = bcd2bin(tmp) - 1;
376 377

	/* assume 20YY not 19YY, and ignore DS1337_BIT_CENTURY */
A
Adrian Bunk 已提交
378
	t->tm_year = bcd2bin(ds1307->regs[DS1307_REG_YEAR]) + 100;
379 380 381 382 383 384 385

	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 已提交
386 387
	/* initial clock setting can be undefined */
	return rtc_valid_tm(t);
388 389 390 391 392 393 394 395 396 397 398
}

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 已提交
399 400 401
		"write", t->tm_sec, t->tm_min,
		t->tm_hour, t->tm_mday,
		t->tm_mon, t->tm_year, t->tm_wday);
402

A
Adrian Bunk 已提交
403 404 405 406 407 408
	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);
409 410 411

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

414 415 416
	switch (ds1307->type) {
	case ds_1337:
	case ds_1339:
W
Wolfram Sang 已提交
417
	case ds_3231:
418
		buf[DS1307_REG_MONTH] |= DS1337_BIT_CENTURY;
419 420
		break;
	case ds_1340:
421 422
		buf[DS1307_REG_HOUR] |= DS1340_BIT_CENTURY_EN
				| DS1340_BIT_CENTURY;
423
		break;
424
	case mcp794xx:
425 426 427 428 429
		/*
		 * these bits were cleared when preparing the date/time
		 * values and need to be set again before writing the
		 * buffer out to the device.
		 */
430 431
		buf[DS1307_REG_SECS] |= MCP794XX_BIT_ST;
		buf[DS1307_REG_WDAY] |= MCP794XX_BIT_VBATEN;
432
		break;
433 434 435
	default:
		break;
	}
436

437
	dev_dbg(dev, "%s: %7ph\n", "write", buf);
438

J
Joakim Tjernlund 已提交
439 440
	result = ds1307->write_block_data(ds1307->client,
		ds1307->offset, 7, buf);
441 442 443
	if (result < 0) {
		dev_err(dev, "%s error %d\n", "write", result);
		return result;
444 445 446 447
	}
	return 0;
}

448
static int ds1337_read_alarm(struct device *dev, struct rtc_wkalrm *t)
449 450 451 452 453 454 455 456 457
{
	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 已提交
458
	ret = ds1307->read_block_data(client,
459 460
			DS1339_REG_ALARM1_SECS, 9, ds1307->regs);
	if (ret != 9) {
461 462 463 464
		dev_err(dev, "%s error %d\n", "alarm read", ret);
		return -EIO;
	}

465 466
	dev_dbg(dev, "%s: %4ph, %3ph, %2ph\n", "alarm read",
		&ds1307->regs[0], &ds1307->regs[4], &ds1307->regs[7]);
467

468 469
	/*
	 * report alarm time (ALARM1); assume 24 hour and day-of-month modes,
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
	 * 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;
}

495
static int ds1337_set_alarm(struct device *dev, struct rtc_wkalrm *t)
496
{
497
	struct i2c_client	*client = to_i2c_client(dev);
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
	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 已提交
513
	ret = ds1307->read_block_data(client,
514 515
			DS1339_REG_ALARM1_SECS, 9, buf);
	if (ret != 9) {
516 517 518 519 520 521
		dev_err(dev, "%s error %d\n", "alarm write", ret);
		return -EIO;
	}
	control = ds1307->regs[7];
	status = ds1307->regs[8];

522 523
	dev_dbg(dev, "%s: %4ph, %3ph, %02x %02x\n", "alarm set (old status)",
		&ds1307->regs[0], &ds1307->regs[4], control, status);
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543

	/* 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 已提交
544
	ret = ds1307->write_block_data(client,
545 546
			DS1339_REG_ALARM1_SECS, 9, buf);
	if (ret < 0) {
547
		dev_err(dev, "can't set alarm time\n");
548
		return ret;
549 550 551 552 553
	}

	return 0;
}

554
static int ds1307_alarm_irq_enable(struct device *dev, unsigned int enabled)
555 556 557 558 559
{
	struct i2c_client	*client = to_i2c_client(dev);
	struct ds1307		*ds1307 = i2c_get_clientdata(client);
	int			ret;

560 561
	if (!test_bit(HAS_ALARM, &ds1307->flags))
		return -ENOTTY;
562

563 564 565
	ret = i2c_smbus_read_byte_data(client, DS1337_REG_CONTROL);
	if (ret < 0)
		return ret;
566

567
	if (enabled)
568
		ret |= DS1337_BIT_A1IE;
569 570
	else
		ret &= ~DS1337_BIT_A1IE;
571

572 573 574
	ret = i2c_smbus_write_byte_data(client, DS1337_REG_CONTROL, ret);
	if (ret < 0)
		return ret;
575 576 577 578

	return 0;
}

579
static const struct rtc_class_ops ds13xx_rtc_ops = {
580 581
	.read_time	= ds1307_get_time,
	.set_time	= ds1307_set_time,
582 583
	.read_alarm	= ds1337_read_alarm,
	.set_alarm	= ds1337_set_alarm,
584
	.alarm_irq_enable = ds1307_alarm_irq_enable,
585 586
};

D
David Brownell 已提交
587 588
/*----------------------------------------------------------------------*/

589
/*
590
 * Alarm support for mcp794xx devices.
591 592
 */

593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
#define MCP794XX_REG_CONTROL		0x07
#	define MCP794XX_BIT_ALM0_EN	0x10
#	define MCP794XX_BIT_ALM1_EN	0x20
#define MCP794XX_REG_ALARM0_BASE	0x0a
#define MCP794XX_REG_ALARM0_CTRL	0x0d
#define MCP794XX_REG_ALARM1_BASE	0x11
#define MCP794XX_REG_ALARM1_CTRL	0x14
#	define MCP794XX_BIT_ALMX_IF	(1 << 3)
#	define MCP794XX_BIT_ALMX_C0	(1 << 4)
#	define MCP794XX_BIT_ALMX_C1	(1 << 5)
#	define MCP794XX_BIT_ALMX_C2	(1 << 6)
#	define MCP794XX_BIT_ALMX_POL	(1 << 7)
#	define MCP794XX_MSK_ALMX_MATCH	(MCP794XX_BIT_ALMX_C0 | \
					 MCP794XX_BIT_ALMX_C1 | \
					 MCP794XX_BIT_ALMX_C2)

609
static irqreturn_t mcp794xx_irq(int irq, void *dev_id)
610
{
611 612 613
	struct i2c_client       *client = dev_id;
	struct ds1307           *ds1307 = i2c_get_clientdata(client);
	struct mutex            *lock = &ds1307->rtc->ops_lock;
614 615
	int reg, ret;

616
	mutex_lock(lock);
617 618

	/* Check and clear alarm 0 interrupt flag. */
619
	reg = i2c_smbus_read_byte_data(client, MCP794XX_REG_ALARM0_CTRL);
620 621
	if (reg < 0)
		goto out;
622
	if (!(reg & MCP794XX_BIT_ALMX_IF))
623
		goto out;
624 625
	reg &= ~MCP794XX_BIT_ALMX_IF;
	ret = i2c_smbus_write_byte_data(client, MCP794XX_REG_ALARM0_CTRL, reg);
626 627 628 629
	if (ret < 0)
		goto out;

	/* Disable alarm 0. */
630
	reg = i2c_smbus_read_byte_data(client, MCP794XX_REG_CONTROL);
631 632
	if (reg < 0)
		goto out;
633 634
	reg &= ~MCP794XX_BIT_ALM0_EN;
	ret = i2c_smbus_write_byte_data(client, MCP794XX_REG_CONTROL, reg);
635 636 637 638 639 640
	if (ret < 0)
		goto out;

	rtc_update_irq(ds1307->rtc, 1, RTC_AF | RTC_IRQF);

out:
641 642 643
	mutex_unlock(lock);

	return IRQ_HANDLED;
644 645
}

646
static int mcp794xx_read_alarm(struct device *dev, struct rtc_wkalrm *t)
647 648 649 650 651 652 653 654 655 656
{
	struct i2c_client *client = to_i2c_client(dev);
	struct ds1307 *ds1307 = i2c_get_clientdata(client);
	u8 *regs = ds1307->regs;
	int ret;

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

	/* Read control and alarm 0 registers. */
657
	ret = ds1307->read_block_data(client, MCP794XX_REG_CONTROL, 10, regs);
658 659 660
	if (ret < 0)
		return ret;

661
	t->enabled = !!(regs[0] & MCP794XX_BIT_ALM0_EN);
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677

	/* Report alarm 0 time assuming 24-hour and day-of-month modes. */
	t->time.tm_sec = bcd2bin(ds1307->regs[3] & 0x7f);
	t->time.tm_min = bcd2bin(ds1307->regs[4] & 0x7f);
	t->time.tm_hour = bcd2bin(ds1307->regs[5] & 0x3f);
	t->time.tm_wday = bcd2bin(ds1307->regs[6] & 0x7) - 1;
	t->time.tm_mday = bcd2bin(ds1307->regs[7] & 0x3f);
	t->time.tm_mon = bcd2bin(ds1307->regs[8] & 0x1f) - 1;
	t->time.tm_year = -1;
	t->time.tm_yday = -1;
	t->time.tm_isdst = -1;

	dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d "
		"enabled=%d polarity=%d irq=%d match=%d\n", __func__,
		t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
		t->time.tm_wday, t->time.tm_mday, t->time.tm_mon, t->enabled,
678 679 680
		!!(ds1307->regs[6] & MCP794XX_BIT_ALMX_POL),
		!!(ds1307->regs[6] & MCP794XX_BIT_ALMX_IF),
		(ds1307->regs[6] & MCP794XX_MSK_ALMX_MATCH) >> 4);
681 682 683 684

	return 0;
}

685
static int mcp794xx_set_alarm(struct device *dev, struct rtc_wkalrm *t)
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
{
	struct i2c_client *client = to_i2c_client(dev);
	struct ds1307 *ds1307 = i2c_get_clientdata(client);
	unsigned char *regs = ds1307->regs;
	int ret;

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

	dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d "
		"enabled=%d pending=%d\n", __func__,
		t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
		t->time.tm_wday, t->time.tm_mday, t->time.tm_mon,
		t->enabled, t->pending);

	/* Read control and alarm 0 registers. */
702
	ret = ds1307->read_block_data(client, MCP794XX_REG_CONTROL, 10, regs);
703 704 705 706 707 708 709
	if (ret < 0)
		return ret;

	/* Set alarm 0, using 24-hour and day-of-month modes. */
	regs[3] = bin2bcd(t->time.tm_sec);
	regs[4] = bin2bcd(t->time.tm_min);
	regs[5] = bin2bcd(t->time.tm_hour);
710
	regs[6] = bin2bcd(t->time.tm_wday + 1);
711
	regs[7] = bin2bcd(t->time.tm_mday);
712
	regs[8] = bin2bcd(t->time.tm_mon + 1);
713 714

	/* Clear the alarm 0 interrupt flag. */
715
	regs[6] &= ~MCP794XX_BIT_ALMX_IF;
716
	/* Set alarm match: second, minute, hour, day, date, month. */
717
	regs[6] |= MCP794XX_MSK_ALMX_MATCH;
718 719
	/* Disable interrupt. We will not enable until completely programmed */
	regs[0] &= ~MCP794XX_BIT_ALM0_EN;
720

721
	ret = ds1307->write_block_data(client, MCP794XX_REG_CONTROL, 10, regs);
722 723 724
	if (ret < 0)
		return ret;

725 726 727 728
	if (!t->enabled)
		return 0;
	regs[0] |= MCP794XX_BIT_ALM0_EN;
	return i2c_smbus_write_byte_data(client, MCP794XX_REG_CONTROL, regs[0]);
729 730
}

731
static int mcp794xx_alarm_irq_enable(struct device *dev, unsigned int enabled)
732 733 734 735 736 737 738 739
{
	struct i2c_client *client = to_i2c_client(dev);
	struct ds1307 *ds1307 = i2c_get_clientdata(client);
	int reg;

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

740
	reg = i2c_smbus_read_byte_data(client, MCP794XX_REG_CONTROL);
741 742 743 744
	if (reg < 0)
		return reg;

	if (enabled)
745
		reg |= MCP794XX_BIT_ALM0_EN;
746
	else
747
		reg &= ~MCP794XX_BIT_ALM0_EN;
748

749
	return i2c_smbus_write_byte_data(client, MCP794XX_REG_CONTROL, reg);
750 751
}

752
static const struct rtc_class_ops mcp794xx_rtc_ops = {
753 754
	.read_time	= ds1307_get_time,
	.set_time	= ds1307_set_time,
755 756 757
	.read_alarm	= mcp794xx_read_alarm,
	.set_alarm	= mcp794xx_set_alarm,
	.alarm_irq_enable = mcp794xx_alarm_irq_enable,
758 759 760 761
};

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

D
David Brownell 已提交
762
static ssize_t
763 764
ds1307_nvram_read(struct file *filp, struct kobject *kobj,
		struct bin_attribute *attr,
D
David Brownell 已提交
765 766 767 768 769 770
		char *buf, loff_t off, size_t count)
{
	struct i2c_client	*client;
	struct ds1307		*ds1307;
	int			result;

F
frederic Rodo 已提交
771
	client = kobj_to_i2c_client(kobj);
D
David Brownell 已提交
772 773
	ds1307 = i2c_get_clientdata(client);

774 775
	result = ds1307->read_block_data(client, ds1307->nvram_offset + off,
								count, buf);
776
	if (result < 0)
D
David Brownell 已提交
777
		dev_err(&client->dev, "%s error %d\n", "nvram read", result);
778
	return result;
D
David Brownell 已提交
779 780 781
}

static ssize_t
782 783
ds1307_nvram_write(struct file *filp, struct kobject *kobj,
		struct bin_attribute *attr,
D
David Brownell 已提交
784 785 786
		char *buf, loff_t off, size_t count)
{
	struct i2c_client	*client;
E
Ed Swierk 已提交
787
	struct ds1307		*ds1307;
788
	int			result;
D
David Brownell 已提交
789

F
frederic Rodo 已提交
790
	client = kobj_to_i2c_client(kobj);
E
Ed Swierk 已提交
791
	ds1307 = i2c_get_clientdata(client);
D
David Brownell 已提交
792

793 794
	result = ds1307->write_block_data(client, ds1307->nvram_offset + off,
								count, buf);
795 796 797 798 799
	if (result < 0) {
		dev_err(&client->dev, "%s error %d\n", "nvram write", result);
		return result;
	}
	return count;
D
David Brownell 已提交
800 801
}

802

D
David Brownell 已提交
803 804
/*----------------------------------------------------------------------*/

805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
static u8 do_trickle_setup_ds1339(struct i2c_client *client,
				  uint32_t ohms, bool diode)
{
	u8 setup = (diode) ? DS1307_TRICKLE_CHARGER_DIODE :
		DS1307_TRICKLE_CHARGER_NO_DIODE;

	switch (ohms) {
	case 250:
		setup |= DS1307_TRICKLE_CHARGER_250_OHM;
		break;
	case 2000:
		setup |= DS1307_TRICKLE_CHARGER_2K_OHM;
		break;
	case 4000:
		setup |= DS1307_TRICKLE_CHARGER_4K_OHM;
		break;
	default:
		dev_warn(&client->dev,
			 "Unsupported ohm value %u in dt\n", ohms);
		return 0;
	}
	return setup;
}

static void ds1307_trickle_of_init(struct i2c_client *client,
				   struct chip_desc *chip)
{
	uint32_t ohms = 0;
	bool diode = true;

	if (!chip->do_trickle_setup)
		goto out;
	if (of_property_read_u32(client->dev.of_node, "trickle-resistor-ohms" , &ohms))
		goto out;
	if (of_property_read_bool(client->dev.of_node, "trickle-diode-disable"))
		diode = false;
	chip->trickle_charger_setup = chip->do_trickle_setup(client,
							     ohms, diode);
out:
	return;
}

847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
/*----------------------------------------------------------------------*/

#ifdef CONFIG_RTC_DRV_DS1307_HWMON

/*
 * Temperature sensor support for ds3231 devices.
 */

#define DS3231_REG_TEMPERATURE	0x11

/*
 * A user-initiated temperature conversion is not started by this function,
 * so the temperature is updated once every 64 seconds.
 */
static int ds3231_hwmon_read_temp(struct device *dev, s16 *mC)
{
	struct ds1307 *ds1307 = dev_get_drvdata(dev);
	u8 temp_buf[2];
	s16 temp;
	int ret;

	ret = ds1307->read_block_data(ds1307->client, DS3231_REG_TEMPERATURE,
					sizeof(temp_buf), temp_buf);
	if (ret < 0)
		return ret;
	if (ret != sizeof(temp_buf))
		return -EIO;

	/*
	 * Temperature is represented as a 10-bit code with a resolution of
	 * 0.25 degree celsius and encoded in two's complement format.
	 */
	temp = (temp_buf[0] << 8) | temp_buf[1];
	temp >>= 6;
	*mC = temp * 250;

	return 0;
}

static ssize_t ds3231_hwmon_show_temp(struct device *dev,
				struct device_attribute *attr, char *buf)
{
	int ret;
	s16 temp;

	ret = ds3231_hwmon_read_temp(dev, &temp);
	if (ret)
		return ret;

	return sprintf(buf, "%d\n", temp);
}
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, ds3231_hwmon_show_temp,
			NULL, 0);

static struct attribute *ds3231_hwmon_attrs[] = {
	&sensor_dev_attr_temp1_input.dev_attr.attr,
	NULL,
};
ATTRIBUTE_GROUPS(ds3231_hwmon);

static void ds1307_hwmon_register(struct ds1307 *ds1307)
{
	struct device *dev;

	if (ds1307->type != ds_3231)
		return;

	dev = devm_hwmon_device_register_with_groups(&ds1307->client->dev,
						ds1307->client->name,
						ds1307, ds3231_hwmon_groups);
	if (IS_ERR(dev)) {
		dev_warn(&ds1307->client->dev,
			"unable to register hwmon device %ld\n", PTR_ERR(dev));
	}
}

#else

static void ds1307_hwmon_register(struct ds1307 *ds1307)
{
}

#endif

931 932
static int ds1307_probe(struct i2c_client *client,
			const struct i2c_device_id *id)
933 934 935 936
{
	struct ds1307		*ds1307;
	int			err = -ENODEV;
	int			tmp;
937
	struct chip_desc	*chip = &chips[id->driver_data];
938
	struct i2c_adapter	*adapter = to_i2c_adapter(client->dev.parent);
939
	bool			want_irq = false;
940
	bool			ds1307_can_wakeup_device = false;
941
	unsigned char		*buf;
942
	struct ds1307_platform_data *pdata = dev_get_platdata(&client->dev);
943 944
	irq_handler_t	irq_handler = ds1307_irq;

W
Wolfram Sang 已提交
945 946 947 948 949
	static const int	bbsqi_bitpos[] = {
		[ds_1337] = 0,
		[ds_1339] = DS1339_BIT_BBSQI,
		[ds_3231] = DS3231_BIT_BBSQW,
	};
950
	const struct rtc_class_ops *rtc_ops = &ds13xx_rtc_ops;
951

E
Ed Swierk 已提交
952 953
	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)
	    && !i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK))
954 955
		return -EIO;

956
	ds1307 = devm_kzalloc(&client->dev, sizeof(struct ds1307), GFP_KERNEL);
957
	if (!ds1307)
958
		return -ENOMEM;
D
David Brownell 已提交
959

960
	i2c_set_clientdata(client, ds1307);
J
Joakim Tjernlund 已提交
961 962 963 964

	ds1307->client	= client;
	ds1307->type	= id->driver_data;

965 966 967 968 969 970 971 972 973
	if (!pdata && client->dev.of_node)
		ds1307_trickle_of_init(client, chip);
	else if (pdata && pdata->trickle_charger_setup)
		chip->trickle_charger_setup = pdata->trickle_charger_setup;

	if (chip->trickle_charger_setup && chip->trickle_charger_reg) {
		dev_dbg(&client->dev, "writing trickle charger info 0x%x to 0x%x\n",
		    DS13XX_TRICKLE_CHARGER_MAGIC | chip->trickle_charger_setup,
		    chip->trickle_charger_reg);
974
		i2c_smbus_write_byte_data(client, chip->trickle_charger_reg,
975 976 977
		    DS13XX_TRICKLE_CHARGER_MAGIC |
		    chip->trickle_charger_setup);
	}
978

979
	buf = ds1307->regs;
E
Ed Swierk 已提交
980
	if (i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) {
981 982
		ds1307->read_block_data = ds1307_native_smbus_read_block_data;
		ds1307->write_block_data = ds1307_native_smbus_write_block_data;
E
Ed Swierk 已提交
983 984 985 986
	} else {
		ds1307->read_block_data = ds1307_read_block_data;
		ds1307->write_block_data = ds1307_write_block_data;
	}
D
David Brownell 已提交
987

988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
#ifdef CONFIG_OF
/*
 * For devices with no IRQ directly connected to the SoC, the RTC chip
 * can be forced as a wakeup source by stating that explicitly in
 * the device's .dts file using the "wakeup-source" boolean property.
 * If the "wakeup-source" property is set, don't request an IRQ.
 * This will guarantee the 'wakealarm' sysfs entry is available on the device,
 * if supported by the RTC.
 */
	if (of_property_read_bool(client->dev.of_node, "wakeup-source")) {
		ds1307_can_wakeup_device = true;
	}
#endif

D
David Brownell 已提交
1002 1003 1004
	switch (ds1307->type) {
	case ds_1337:
	case ds_1339:
W
Wolfram Sang 已提交
1005
	case ds_3231:
1006
		/* get registers that the "rtc" read below won't read... */
E
Ed Swierk 已提交
1007
		tmp = ds1307->read_block_data(ds1307->client,
1008
				DS1337_REG_CONTROL, 2, buf);
1009
		if (tmp != 2) {
1010
			dev_dbg(&client->dev, "read error %d\n", tmp);
1011
			err = -EIO;
1012
			goto exit;
1013 1014
		}

1015 1016
		/* oscillator off?  turn it on, so clock can tick. */
		if (ds1307->regs[0] & DS1337_BIT_nEOSC)
1017 1018
			ds1307->regs[0] &= ~DS1337_BIT_nEOSC;

1019
		/*
1020 1021
		 * Using IRQ or defined as wakeup-source?
		 * Disable the square wave and both alarms.
W
Wolfram Sang 已提交
1022 1023
		 * For some variants, be sure alarms can trigger when we're
		 * running on Vbackup (BBSQI/BBSQW)
1024
		 */
1025 1026
		if (chip->alarm && (ds1307->client->irq > 0 ||
						ds1307_can_wakeup_device)) {
W
Wolfram Sang 已提交
1027 1028
			ds1307->regs[0] |= DS1337_BIT_INTCN
					| bbsqi_bitpos[ds1307->type];
1029
			ds1307->regs[0] &= ~(DS1337_BIT_A2IE | DS1337_BIT_A1IE);
1030 1031

			want_irq = true;
1032 1033 1034 1035
		}

		i2c_smbus_write_byte_data(client, DS1337_REG_CONTROL,
							ds1307->regs[0]);
1036 1037 1038 1039 1040 1041

		/* 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");
1042
		}
D
David Brownell 已提交
1043
		break;
1044 1045 1046 1047 1048

	case rx_8025:
		tmp = i2c_smbus_read_i2c_block_data(ds1307->client,
				RX8025_REG_CTRL1 << 4 | 0x08, 2, buf);
		if (tmp != 2) {
1049
			dev_dbg(&client->dev, "read error %d\n", tmp);
1050
			err = -EIO;
1051
			goto exit;
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
		}

		/* oscillator off?  turn it on, so clock can tick. */
		if (!(ds1307->regs[1] & RX8025_BIT_XST)) {
			ds1307->regs[1] |= RX8025_BIT_XST;
			i2c_smbus_write_byte_data(client,
						  RX8025_REG_CTRL2 << 4 | 0x08,
						  ds1307->regs[1]);
			dev_warn(&client->dev,
				 "oscillator stop detected - SET TIME!\n");
		}

		if (ds1307->regs[1] & RX8025_BIT_PON) {
			ds1307->regs[1] &= ~RX8025_BIT_PON;
			i2c_smbus_write_byte_data(client,
						  RX8025_REG_CTRL2 << 4 | 0x08,
						  ds1307->regs[1]);
			dev_warn(&client->dev, "power-on detected\n");
		}

		if (ds1307->regs[1] & RX8025_BIT_VDET) {
			ds1307->regs[1] &= ~RX8025_BIT_VDET;
			i2c_smbus_write_byte_data(client,
						  RX8025_REG_CTRL2 << 4 | 0x08,
						  ds1307->regs[1]);
			dev_warn(&client->dev, "voltage drop detected\n");
		}

		/* make sure we are running in 24hour mode */
		if (!(ds1307->regs[0] & RX8025_BIT_2412)) {
			u8 hour;

			/* switch to 24 hour mode */
			i2c_smbus_write_byte_data(client,
						  RX8025_REG_CTRL1 << 4 | 0x08,
						  ds1307->regs[0] |
						  RX8025_BIT_2412);

			tmp = i2c_smbus_read_i2c_block_data(ds1307->client,
					RX8025_REG_CTRL1 << 4 | 0x08, 2, buf);
			if (tmp != 2) {
1093
				dev_dbg(&client->dev, "read error %d\n", tmp);
1094
				err = -EIO;
1095
				goto exit;
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
			}

			/* correct hour */
			hour = bcd2bin(ds1307->regs[DS1307_REG_HOUR]);
			if (hour == 12)
				hour = 0;
			if (ds1307->regs[DS1307_REG_HOUR] & DS1307_BIT_PM)
				hour += 12;

			i2c_smbus_write_byte_data(client,
						  DS1307_REG_HOUR << 4 | 0x08,
						  hour);
		}
		break;
J
Joakim Tjernlund 已提交
1110 1111 1112
	case ds_1388:
		ds1307->offset = 1; /* Seconds starts at 1 */
		break;
1113 1114
	case mcp794xx:
		rtc_ops = &mcp794xx_rtc_ops;
1115
		if (ds1307->client->irq > 0 && chip->alarm) {
1116
			irq_handler = mcp794xx_irq;
1117 1118 1119
			want_irq = true;
		}
		break;
D
David Brownell 已提交
1120 1121 1122
	default:
		break;
	}
1123 1124 1125

read_rtc:
	/* read RTC registers */
1126
	tmp = ds1307->read_block_data(ds1307->client, ds1307->offset, 8, buf);
1127
	if (tmp != 8) {
1128
		dev_dbg(&client->dev, "read error %d\n", tmp);
1129
		err = -EIO;
1130
		goto exit;
1131 1132
	}

1133 1134
	/*
	 * minimal sanity checking; some chips (like DS1340) don't
1135 1136 1137 1138
	 * 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 已提交
1139 1140 1141
	switch (ds1307->type) {
	case ds_1307:
	case m41t00:
1142
		/* clock halted?  turn it on, so clock can tick. */
D
David Brownell 已提交
1143
		if (tmp & DS1307_BIT_CH) {
1144 1145
			i2c_smbus_write_byte_data(client, DS1307_REG_SECS, 0);
			dev_warn(&client->dev, "SET TIME!\n");
D
David Brownell 已提交
1146
			goto read_rtc;
1147
		}
D
David Brownell 已提交
1148
		break;
1149 1150
	case ds_1338:
		/* clock halted?  turn it on, so clock can tick. */
D
David Brownell 已提交
1151
		if (tmp & DS1307_BIT_CH)
1152 1153 1154 1155 1156
			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,
1157
					ds1307->regs[DS1307_REG_CONTROL]
1158 1159 1160 1161
					& ~DS1338_BIT_OSF);
			dev_warn(&client->dev, "SET TIME!\n");
			goto read_rtc;
		}
D
David Brownell 已提交
1162
		break;
F
frederic Rodo 已提交
1163 1164 1165 1166 1167 1168 1169
	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) {
1170
			dev_dbg(&client->dev, "read error %d\n", tmp);
F
frederic Rodo 已提交
1171
			err = -EIO;
1172
			goto exit;
F
frederic Rodo 已提交
1173 1174 1175 1176 1177 1178 1179
		}

		/* 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");
		}
1180
		break;
1181
	case mcp794xx:
1182
		/* make sure that the backup battery is enabled */
1183
		if (!(ds1307->regs[DS1307_REG_WDAY] & MCP794XX_BIT_VBATEN)) {
1184 1185
			i2c_smbus_write_byte_data(client, DS1307_REG_WDAY,
					ds1307->regs[DS1307_REG_WDAY]
1186
					| MCP794XX_BIT_VBATEN);
1187 1188 1189
		}

		/* clock halted?  turn it on, so clock can tick. */
1190
		if (!(tmp & MCP794XX_BIT_ST)) {
1191
			i2c_smbus_write_byte_data(client, DS1307_REG_SECS,
1192
					MCP794XX_BIT_ST);
1193 1194 1195 1196
			dev_warn(&client->dev, "SET TIME!\n");
			goto read_rtc;
		}

F
frederic Rodo 已提交
1197
		break;
1198
	default:
D
David Brownell 已提交
1199
		break;
1200
	}
D
David Brownell 已提交
1201

1202
	tmp = ds1307->regs[DS1307_REG_HOUR];
1203 1204 1205
	switch (ds1307->type) {
	case ds_1340:
	case m41t00:
1206 1207
		/*
		 * NOTE: ignores century bits; fix before deploying
1208 1209 1210
		 * systems that will run through year 2100.
		 */
		break;
1211 1212
	case rx_8025:
		break;
1213 1214 1215 1216
	default:
		if (!(tmp & DS1307_BIT_12HR))
			break;

1217 1218
		/*
		 * Be sure we're in 24 hour mode.  Multi-master systems
1219 1220
		 * take note...
		 */
A
Adrian Bunk 已提交
1221
		tmp = bcd2bin(tmp & 0x1f);
1222 1223 1224 1225
		if (tmp == 12)
			tmp = 0;
		if (ds1307->regs[DS1307_REG_HOUR] & DS1307_BIT_PM)
			tmp += 12;
1226
		i2c_smbus_write_byte_data(client,
1227
				ds1307->offset + DS1307_REG_HOUR,
A
Adrian Bunk 已提交
1228
				bin2bcd(tmp));
1229 1230
	}

1231 1232 1233 1234
	if (want_irq) {
		device_set_wakeup_capable(&client->dev, true);
		set_bit(HAS_ALARM, &ds1307->flags);
	}
1235
	ds1307->rtc = devm_rtc_device_register(&client->dev, client->name,
1236
				rtc_ops, THIS_MODULE);
1237
	if (IS_ERR(ds1307->rtc)) {
1238
		return PTR_ERR(ds1307->rtc);
1239 1240
	}

1241 1242 1243 1244 1245 1246 1247 1248
	if (ds1307_can_wakeup_device) {
		/* Disable request for an IRQ */
		want_irq = false;
		dev_info(&client->dev, "'wakeup-source' is set, request for an IRQ is disabled!\n");
		/* We cannot support UIE mode if we do not have an IRQ line */
		ds1307->rtc->uie_unsupported = 1;
	}

1249
	if (want_irq) {
1250 1251 1252 1253
		err = devm_request_threaded_irq(&client->dev,
						client->irq, NULL, irq_handler,
						IRQF_SHARED | IRQF_ONESHOT,
						ds1307->rtc->name, client);
1254
		if (err) {
1255
			client->irq = 0;
1256 1257
			device_set_wakeup_capable(&client->dev, false);
			clear_bit(HAS_ALARM, &ds1307->flags);
1258
			dev_err(&client->dev, "unable to request IRQ!\n");
1259
		} else
1260
			dev_dbg(&client->dev, "got IRQ %d\n", client->irq);
1261 1262
	}

1263
	if (chip->nvram_size) {
1264

1265 1266 1267
		ds1307->nvram = devm_kzalloc(&client->dev,
					sizeof(struct bin_attribute),
					GFP_KERNEL);
1268
		if (!ds1307->nvram) {
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
			dev_err(&client->dev, "cannot allocate memory for nvram sysfs\n");
		} else {

			ds1307->nvram->attr.name = "nvram";
			ds1307->nvram->attr.mode = S_IRUGO | S_IWUSR;

			sysfs_bin_attr_init(ds1307->nvram);

			ds1307->nvram->read = ds1307_nvram_read;
			ds1307->nvram->write = ds1307_nvram_write;
			ds1307->nvram->size = chip->nvram_size;
			ds1307->nvram_offset = chip->nvram_offset;

			err = sysfs_create_bin_file(&client->dev.kobj,
						    ds1307->nvram);
			if (err) {
				dev_err(&client->dev,
					"unable to create sysfs file: %s\n",
					ds1307->nvram->attr.name);
			} else {
				set_bit(HAS_NVRAM, &ds1307->flags);
				dev_info(&client->dev, "%zu bytes nvram\n",
					 ds1307->nvram->size);
			}
1293
		}
D
David Brownell 已提交
1294 1295
	}

1296 1297
	ds1307_hwmon_register(ds1307);

1298 1299
	return 0;

1300
exit:
1301 1302 1303
	return err;
}

1304
static int ds1307_remove(struct i2c_client *client)
1305
{
1306
	struct ds1307 *ds1307 = i2c_get_clientdata(client);
1307

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

1311 1312 1313 1314 1315
	return 0;
}

static struct i2c_driver ds1307_driver = {
	.driver = {
1316
		.name	= "rtc-ds1307",
1317
	},
1318
	.probe		= ds1307_probe,
1319
	.remove		= ds1307_remove,
1320
	.id_table	= ds1307_id,
1321 1322
};

1323
module_i2c_driver(ds1307_driver);
1324 1325 1326

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