pcf2127.c 3.1 KB
Newer Older
M
Meng Yi 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * Copyright (C) 2016 by NXP Semiconductors Inc.
 * Date & Time support for PCF2127 RTC
 */

/*	#define	DEBUG	*/

#include <common.h>
#include <command.h>
#include <dm.h>
#include <i2c.h>
12
#include <log.h>
M
Meng Yi 已提交
13 14
#include <rtc.h>

15 16 17 18 19 20 21 22 23 24
#define PCF2127_REG_CTRL1	0x00
#define PCF2127_REG_CTRL2	0x01
#define PCF2127_REG_CTRL3	0x02
#define PCF2127_REG_SC		0x03
#define PCF2127_REG_MN		0x04
#define PCF2127_REG_HR		0x05
#define PCF2127_REG_DM		0x06
#define PCF2127_REG_DW		0x07
#define PCF2127_REG_MO		0x08
#define PCF2127_REG_YR		0x09
M
Meng Yi 已提交
25

26
static int pcf2127_rtc_read(struct udevice *dev, uint offset, u8 *buffer, uint len)
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
{
	struct dm_i2c_chip *chip = dev_get_parent_platdata(dev);
	struct i2c_msg msg;
	int ret;

	/* Set the address of the start register to be read */
	ret = dm_i2c_write(dev, offset, NULL, 0);
	if (ret < 0)
		return ret;

	/* Read register's data */
	msg.addr = chip->chip_addr;
	msg.flags |= I2C_M_RD;
	msg.len = len;
	msg.buf = buffer;

	return dm_i2c_xfer(dev, &msg, 1);
}

46 47 48 49 50 51
static int pcf2127_rtc_write(struct udevice *dev, uint offset,
			     const u8 *buffer, uint len)
{
	return dm_i2c_write(dev, offset, buffer, len);
}

M
Meng Yi 已提交
52 53
static int pcf2127_rtc_set(struct udevice *dev, const struct rtc_time *tm)
{
54
	uchar buf[7] = {0};
55
	int i = 0, ret;
M
Meng Yi 已提交
56 57 58 59 60 61 62 63 64

	/* hours, minutes and seconds */
	buf[i++] = bin2bcd(tm->tm_sec);
	buf[i++] = bin2bcd(tm->tm_min);
	buf[i++] = bin2bcd(tm->tm_hour);
	buf[i++] = bin2bcd(tm->tm_mday);
	buf[i++] = tm->tm_wday & 0x07;

	/* month, 1 - 12 */
65
	buf[i++] = bin2bcd(tm->tm_mon);
M
Meng Yi 已提交
66 67 68 69 70

	/* year */
	buf[i++] = bin2bcd(tm->tm_year % 100);

	/* write register's data */
71
	ret = dm_i2c_write(dev, PCF2127_REG_SC, buf, i);
M
Meng Yi 已提交
72

73
	return ret;
M
Meng Yi 已提交
74 75 76 77
}

static int pcf2127_rtc_get(struct udevice *dev, struct rtc_time *tm)
{
78
	int ret = 0;
M
Meng Yi 已提交
79 80
	uchar buf[10] = { PCF2127_REG_CTRL1 };

81
	ret = pcf2127_rtc_read(dev, PCF2127_REG_CTRL1, buf, sizeof(buf));
82 83
	if (ret < 0)
		return ret;
M
Meng Yi 已提交
84 85 86 87 88 89 90 91

	if (buf[PCF2127_REG_CTRL3] & 0x04)
		puts("### Warning: RTC Low Voltage - date/time not reliable\n");

	tm->tm_sec  = bcd2bin(buf[PCF2127_REG_SC] & 0x7F);
	tm->tm_min  = bcd2bin(buf[PCF2127_REG_MN] & 0x7F);
	tm->tm_hour = bcd2bin(buf[PCF2127_REG_HR] & 0x3F);
	tm->tm_mday = bcd2bin(buf[PCF2127_REG_DM] & 0x3F);
92
	tm->tm_mon  = bcd2bin(buf[PCF2127_REG_MO] & 0x1F);
M
Meng Yi 已提交
93 94 95 96 97 98 99 100 101 102 103
	tm->tm_year = bcd2bin(buf[PCF2127_REG_YR]) + 1900;
	if (tm->tm_year < 1970)
		tm->tm_year += 100;	/* assume we are in 1970...2069 */
	tm->tm_wday = buf[PCF2127_REG_DW] & 0x07;
	tm->tm_yday = 0;
	tm->tm_isdst = 0;

	debug("Get DATE: %4d-%02d-%02d (wday=%d)  TIME: %2d:%02d:%02d\n",
	      tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday,
	      tm->tm_hour, tm->tm_min, tm->tm_sec);

104
	return ret;
M
Meng Yi 已提交
105 106 107 108 109
}

static int pcf2127_rtc_reset(struct udevice *dev)
{
	/*Doing nothing here*/
110

M
Meng Yi 已提交
111 112 113 114 115 116 117
	return 0;
}

static const struct rtc_ops pcf2127_rtc_ops = {
	.get = pcf2127_rtc_get,
	.set = pcf2127_rtc_set,
	.reset = pcf2127_rtc_reset,
118
	.read = pcf2127_rtc_read,
119
	.write = pcf2127_rtc_write,
M
Meng Yi 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132
};

static const struct udevice_id pcf2127_rtc_ids[] = {
	{ .compatible = "pcf2127-rtc" },
	{ }
};

U_BOOT_DRIVER(rtc_pcf2127) = {
	.name	= "rtc-pcf2127",
	.id	= UCLASS_RTC,
	.of_match = pcf2127_rtc_ids,
	.ops	= &pcf2127_rtc_ops,
};