diff options
author | Emil Bartczak <emilbart@gmail.com> | 2016-12-07 18:27:37 -0500 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2016-12-18 18:59:22 -0500 |
commit | bcf18d88ac16c1a86bac7e8f5f4b1de1f752865f (patch) | |
tree | 682300c7954114742262a5d310737f74a847a8b4 | |
parent | 0b6a8f5c9bebe51b95ff23939db570e8d298a36f (diff) |
rtc: mcp795: use bcd2bin/bin2bcd.
Change rtc-mcp795.c to use the bcd2bin/bin2bcd functions.
This change fixes the wrong conversion of month value
from binary to BCD (missing right shift operation for 10 month).
Signed-off-by: Emil Bartczak <emilbart@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
-rw-r--r-- | drivers/rtc/rtc-mcp795.c | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/drivers/rtc/rtc-mcp795.c b/drivers/rtc/rtc-mcp795.c index 4021fd04cb0a..0389ee03c660 100644 --- a/drivers/rtc/rtc-mcp795.c +++ b/drivers/rtc/rtc-mcp795.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/spi/spi.h> | 21 | #include <linux/spi/spi.h> |
22 | #include <linux/rtc.h> | 22 | #include <linux/rtc.h> |
23 | #include <linux/of.h> | 23 | #include <linux/of.h> |
24 | #include <linux/bcd.h> | ||
24 | 25 | ||
25 | /* MCP795 Instructions, see datasheet table 3-1 */ | 26 | /* MCP795 Instructions, see datasheet table 3-1 */ |
26 | #define MCP795_EEREAD 0x03 | 27 | #define MCP795_EEREAD 0x03 |
@@ -104,16 +105,16 @@ static int mcp795_set_time(struct device *dev, struct rtc_time *tim) | |||
104 | if (ret) | 105 | if (ret) |
105 | return ret; | 106 | return ret; |
106 | 107 | ||
107 | data[0] = (data[0] & 0x80) | ((tim->tm_sec / 10) << 4) | (tim->tm_sec % 10); | 108 | data[0] = (data[0] & 0x80) | bin2bcd(tim->tm_sec); |
108 | data[1] = (data[1] & 0x80) | ((tim->tm_min / 10) << 4) | (tim->tm_min % 10); | 109 | data[1] = (data[1] & 0x80) | bin2bcd(tim->tm_min); |
109 | data[2] = ((tim->tm_hour / 10) << 4) | (tim->tm_hour % 10); | 110 | data[2] = bin2bcd(tim->tm_hour); |
110 | data[4] = ((tim->tm_mday / 10) << 4) | ((tim->tm_mday) % 10); | 111 | data[4] = bin2bcd(tim->tm_mday); |
111 | data[5] = (data[5] & 0x10) | (tim->tm_mon / 10) | (tim->tm_mon % 10); | 112 | data[5] = (data[5] & 0x10) | bin2bcd(tim->tm_mon); |
112 | 113 | ||
113 | if (tim->tm_year > 100) | 114 | if (tim->tm_year > 100) |
114 | tim->tm_year -= 100; | 115 | tim->tm_year -= 100; |
115 | 116 | ||
116 | data[6] = ((tim->tm_year / 10) << 4) | (tim->tm_year % 10); | 117 | data[6] = bin2bcd(tim->tm_year); |
117 | 118 | ||
118 | ret = mcp795_rtcc_write(dev, 0x01, data, sizeof(data)); | 119 | ret = mcp795_rtcc_write(dev, 0x01, data, sizeof(data)); |
119 | 120 | ||
@@ -137,12 +138,12 @@ static int mcp795_read_time(struct device *dev, struct rtc_time *tim) | |||
137 | if (ret) | 138 | if (ret) |
138 | return ret; | 139 | return ret; |
139 | 140 | ||
140 | tim->tm_sec = ((data[0] & 0x70) >> 4) * 10 + (data[0] & 0x0f); | 141 | tim->tm_sec = bcd2bin(data[0] & 0x7F); |
141 | tim->tm_min = ((data[1] & 0x70) >> 4) * 10 + (data[1] & 0x0f); | 142 | tim->tm_min = bcd2bin(data[1] & 0x7F); |
142 | tim->tm_hour = ((data[2] & 0x30) >> 4) * 10 + (data[2] & 0x0f); | 143 | tim->tm_hour = bcd2bin(data[2] & 0x3F); |
143 | tim->tm_mday = ((data[4] & 0x30) >> 4) * 10 + (data[4] & 0x0f); | 144 | tim->tm_mday = bcd2bin(data[4] & 0x3F); |
144 | tim->tm_mon = ((data[5] & 0x10) >> 4) * 10 + (data[5] & 0x0f); | 145 | tim->tm_mon = bcd2bin(data[5] & 0x1F); |
145 | tim->tm_year = ((data[6] & 0xf0) >> 4) * 10 + (data[6] & 0x0f) + 100; /* Assume we are in 20xx */ | 146 | tim->tm_year = bcd2bin(data[6]) + 100; /* Assume we are in 20xx */ |
146 | 147 | ||
147 | dev_dbg(dev, "Read from mcp795: %04d-%02d-%02d %02d:%02d:%02d\n", | 148 | dev_dbg(dev, "Read from mcp795: %04d-%02d-%02d %02d:%02d:%02d\n", |
148 | tim->tm_year + 1900, tim->tm_mon, tim->tm_mday, | 149 | tim->tm_year + 1900, tim->tm_mon, tim->tm_mday, |