Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * An I2C driver for the Philips PCF8563 RTC |
| 3 | * Copyright 2005-06 Tower Technologies |
| 4 | * |
| 5 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
| 6 | * Maintainers: http://www.nslu2-linux.org/ |
| 7 | * |
| 8 | * based on the other drivers in this same directory. |
| 9 | * |
| 10 | * http://www.semiconductors.philips.com/acrobat/datasheets/PCF8563-04.pdf |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License version 2 as |
| 14 | * published by the Free Software Foundation. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/i2c.h> |
| 18 | #include <linux/bcd.h> |
| 19 | #include <linux/rtc.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Paul Gortmaker | 2113852 | 2011-05-27 09:57:25 -0400 | [diff] [blame] | 21 | #include <linux/module.h> |
Nick Bowler | 8dccaf0 | 2012-07-30 14:41:59 -0700 | [diff] [blame] | 22 | #include <linux/of.h> |
Sachin Kamat | 23f809e | 2013-07-03 15:07:51 -0700 | [diff] [blame] | 23 | #include <linux/err.h> |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 24 | |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 25 | #define DRV_VERSION "0.4.3" |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 26 | |
| 27 | #define PCF8563_REG_ST1 0x00 /* status */ |
| 28 | #define PCF8563_REG_ST2 0x01 |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 29 | #define PCF8563_BIT_AIE (1 << 1) |
| 30 | #define PCF8563_BIT_AF (1 << 3) |
Jan Kardell | 45ef045 | 2014-12-10 15:53:34 -0800 | [diff] [blame^] | 31 | #define PCF8563_BITS_ST2_N (7 << 5) |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 32 | |
| 33 | #define PCF8563_REG_SC 0x02 /* datetime */ |
| 34 | #define PCF8563_REG_MN 0x03 |
| 35 | #define PCF8563_REG_HR 0x04 |
| 36 | #define PCF8563_REG_DM 0x05 |
| 37 | #define PCF8563_REG_DW 0x06 |
| 38 | #define PCF8563_REG_MO 0x07 |
| 39 | #define PCF8563_REG_YR 0x08 |
| 40 | |
| 41 | #define PCF8563_REG_AMN 0x09 /* alarm */ |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 42 | |
| 43 | #define PCF8563_REG_CLKO 0x0D /* clock out */ |
| 44 | #define PCF8563_REG_TMRC 0x0E /* timer control */ |
| 45 | #define PCF8563_REG_TMR 0x0F /* timer */ |
| 46 | |
| 47 | #define PCF8563_SC_LV 0x80 /* low voltage */ |
| 48 | #define PCF8563_MO_C 0x80 /* century */ |
| 49 | |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 50 | static struct i2c_driver pcf8563_driver; |
| 51 | |
Atsushi Nemoto | cbb9450 | 2007-02-08 14:20:24 -0800 | [diff] [blame] | 52 | struct pcf8563 { |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 53 | struct rtc_device *rtc; |
Atsushi Nemoto | cbb9450 | 2007-02-08 14:20:24 -0800 | [diff] [blame] | 54 | /* |
| 55 | * The meaning of MO_C bit varies by the chip type. |
| 56 | * From PCF8563 datasheet: this bit is toggled when the years |
| 57 | * register overflows from 99 to 00 |
| 58 | * 0 indicates the century is 20xx |
| 59 | * 1 indicates the century is 19xx |
| 60 | * From RTC8564 datasheet: this bit indicates change of |
| 61 | * century. When the year digit data overflows from 99 to 00, |
| 62 | * this bit is set. By presetting it to 0 while still in the |
| 63 | * 20th century, it will be set in year 2000, ... |
| 64 | * There seems no reliable way to know how the system use this |
| 65 | * bit. So let's do it heuristically, assuming we are live in |
| 66 | * 1970...2069. |
| 67 | */ |
| 68 | int c_polarity; /* 0: MO_C=1 means 19xx, otherwise MO_C=1 means 20xx */ |
Alexander Stein | 0f20b76 | 2012-05-29 15:07:36 -0700 | [diff] [blame] | 69 | int voltage_low; /* incicates if a low_voltage was detected */ |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 70 | |
| 71 | struct i2c_client *client; |
Atsushi Nemoto | cbb9450 | 2007-02-08 14:20:24 -0800 | [diff] [blame] | 72 | }; |
| 73 | |
Vincent Donnefort | 2784366 | 2014-08-08 14:20:16 -0700 | [diff] [blame] | 74 | static int pcf8563_read_block_data(struct i2c_client *client, unsigned char reg, |
| 75 | unsigned char length, unsigned char *buf) |
| 76 | { |
| 77 | struct i2c_msg msgs[] = { |
| 78 | {/* setup read ptr */ |
| 79 | .addr = client->addr, |
| 80 | .len = 1, |
| 81 | .buf = ®, |
| 82 | }, |
| 83 | { |
| 84 | .addr = client->addr, |
| 85 | .flags = I2C_M_RD, |
| 86 | .len = length, |
| 87 | .buf = buf |
| 88 | }, |
| 89 | }; |
| 90 | |
| 91 | if ((i2c_transfer(client->adapter, msgs, 2)) != 2) { |
| 92 | dev_err(&client->dev, "%s: read error\n", __func__); |
| 93 | return -EIO; |
| 94 | } |
| 95 | |
| 96 | return 0; |
| 97 | } |
| 98 | |
| 99 | static int pcf8563_write_block_data(struct i2c_client *client, |
| 100 | unsigned char reg, unsigned char length, |
| 101 | unsigned char *buf) |
| 102 | { |
| 103 | int i, err; |
| 104 | |
| 105 | for (i = 0; i < length; i++) { |
| 106 | unsigned char data[2] = { reg + i, buf[i] }; |
| 107 | |
| 108 | err = i2c_master_send(client, data, sizeof(data)); |
| 109 | if (err != sizeof(data)) { |
| 110 | dev_err(&client->dev, |
| 111 | "%s: err=%d addr=%02x, data=%02x\n", |
| 112 | __func__, err, data[0], data[1]); |
| 113 | return -EIO; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 120 | static int pcf8563_set_alarm_mode(struct i2c_client *client, bool on) |
| 121 | { |
Jan Kardell | 17a1e5e | 2014-12-10 15:53:31 -0800 | [diff] [blame] | 122 | unsigned char buf; |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 123 | int err; |
| 124 | |
Jan Kardell | 17a1e5e | 2014-12-10 15:53:31 -0800 | [diff] [blame] | 125 | err = pcf8563_read_block_data(client, PCF8563_REG_ST2, 1, &buf); |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 126 | if (err < 0) |
| 127 | return err; |
| 128 | |
| 129 | if (on) |
Jan Kardell | 17a1e5e | 2014-12-10 15:53:31 -0800 | [diff] [blame] | 130 | buf |= PCF8563_BIT_AIE; |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 131 | else |
Jan Kardell | 17a1e5e | 2014-12-10 15:53:31 -0800 | [diff] [blame] | 132 | buf &= ~PCF8563_BIT_AIE; |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 133 | |
Jan Kardell | 45ef045 | 2014-12-10 15:53:34 -0800 | [diff] [blame^] | 134 | buf &= ~(PCF8563_BIT_AF | PCF8563_BITS_ST2_N); |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 135 | |
Jan Kardell | 17a1e5e | 2014-12-10 15:53:31 -0800 | [diff] [blame] | 136 | err = pcf8563_write_block_data(client, PCF8563_REG_ST2, 1, &buf); |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 137 | if (err < 0) { |
| 138 | dev_err(&client->dev, "%s: write error\n", __func__); |
| 139 | return -EIO; |
| 140 | } |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | static int pcf8563_get_alarm_mode(struct i2c_client *client, unsigned char *en, |
| 146 | unsigned char *pen) |
| 147 | { |
| 148 | unsigned char buf; |
| 149 | int err; |
| 150 | |
| 151 | err = pcf8563_read_block_data(client, PCF8563_REG_ST2, 1, &buf); |
| 152 | if (err) |
| 153 | return err; |
| 154 | |
| 155 | if (en) |
| 156 | *en = !!(buf & PCF8563_BIT_AIE); |
| 157 | if (pen) |
| 158 | *pen = !!(buf & PCF8563_BIT_AF); |
| 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | static irqreturn_t pcf8563_irq(int irq, void *dev_id) |
| 164 | { |
| 165 | struct pcf8563 *pcf8563 = i2c_get_clientdata(dev_id); |
| 166 | int err; |
| 167 | char pending; |
| 168 | |
| 169 | err = pcf8563_get_alarm_mode(pcf8563->client, NULL, &pending); |
Arnd Bergmann | e698a51 | 2014-10-13 15:53:07 -0700 | [diff] [blame] | 170 | if (err) |
Arnd Bergmann | 3ff3823 | 2014-10-13 15:53:10 -0700 | [diff] [blame] | 171 | return IRQ_NONE; |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 172 | |
| 173 | if (pending) { |
| 174 | rtc_update_irq(pcf8563->rtc, 1, RTC_IRQF | RTC_AF); |
| 175 | pcf8563_set_alarm_mode(pcf8563->client, 1); |
| 176 | return IRQ_HANDLED; |
| 177 | } |
| 178 | |
| 179 | return IRQ_NONE; |
| 180 | } |
| 181 | |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 182 | /* |
| 183 | * In the routines that deal directly with the pcf8563 hardware, we use |
| 184 | * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch. |
| 185 | */ |
| 186 | static int pcf8563_get_datetime(struct i2c_client *client, struct rtc_time *tm) |
| 187 | { |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 188 | struct pcf8563 *pcf8563 = i2c_get_clientdata(client); |
Vincent Donnefort | 2784366 | 2014-08-08 14:20:16 -0700 | [diff] [blame] | 189 | unsigned char buf[9]; |
| 190 | int err; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 191 | |
Vincent Donnefort | 2784366 | 2014-08-08 14:20:16 -0700 | [diff] [blame] | 192 | err = pcf8563_read_block_data(client, PCF8563_REG_ST1, 9, buf); |
| 193 | if (err) |
| 194 | return err; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 195 | |
Alexander Stein | 0f20b76 | 2012-05-29 15:07:36 -0700 | [diff] [blame] | 196 | if (buf[PCF8563_REG_SC] & PCF8563_SC_LV) { |
| 197 | pcf8563->voltage_low = 1; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 198 | dev_info(&client->dev, |
| 199 | "low voltage detected, date/time is not reliable.\n"); |
Alexander Stein | 0f20b76 | 2012-05-29 15:07:36 -0700 | [diff] [blame] | 200 | } |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 201 | |
| 202 | dev_dbg(&client->dev, |
| 203 | "%s: raw data is st1=%02x, st2=%02x, sec=%02x, min=%02x, hr=%02x, " |
| 204 | "mday=%02x, wday=%02x, mon=%02x, year=%02x\n", |
Harvey Harrison | 2a4e2b8 | 2008-04-28 02:12:00 -0700 | [diff] [blame] | 205 | __func__, |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 206 | buf[0], buf[1], buf[2], buf[3], |
| 207 | buf[4], buf[5], buf[6], buf[7], |
| 208 | buf[8]); |
| 209 | |
| 210 | |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 211 | tm->tm_sec = bcd2bin(buf[PCF8563_REG_SC] & 0x7F); |
| 212 | tm->tm_min = bcd2bin(buf[PCF8563_REG_MN] & 0x7F); |
| 213 | tm->tm_hour = bcd2bin(buf[PCF8563_REG_HR] & 0x3F); /* rtc hr 0-23 */ |
| 214 | tm->tm_mday = bcd2bin(buf[PCF8563_REG_DM] & 0x3F); |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 215 | tm->tm_wday = buf[PCF8563_REG_DW] & 0x07; |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 216 | tm->tm_mon = bcd2bin(buf[PCF8563_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */ |
| 217 | tm->tm_year = bcd2bin(buf[PCF8563_REG_YR]); |
Atsushi Nemoto | cbb9450 | 2007-02-08 14:20:24 -0800 | [diff] [blame] | 218 | if (tm->tm_year < 70) |
| 219 | tm->tm_year += 100; /* assume we are in 1970...2069 */ |
| 220 | /* detect the polarity heuristically. see note above. */ |
| 221 | pcf8563->c_polarity = (buf[PCF8563_REG_MO] & PCF8563_MO_C) ? |
| 222 | (tm->tm_year >= 100) : (tm->tm_year < 100); |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 223 | |
| 224 | dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, " |
| 225 | "mday=%d, mon=%d, year=%d, wday=%d\n", |
Harvey Harrison | 2a4e2b8 | 2008-04-28 02:12:00 -0700 | [diff] [blame] | 226 | __func__, |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 227 | tm->tm_sec, tm->tm_min, tm->tm_hour, |
| 228 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); |
| 229 | |
| 230 | /* the clock can give out invalid datetime, but we cannot return |
| 231 | * -EINVAL otherwise hwclock will refuse to set the time on bootup. |
| 232 | */ |
| 233 | if (rtc_valid_tm(tm) < 0) |
| 234 | dev_err(&client->dev, "retrieved date/time is not valid.\n"); |
| 235 | |
| 236 | return 0; |
| 237 | } |
| 238 | |
| 239 | static int pcf8563_set_datetime(struct i2c_client *client, struct rtc_time *tm) |
| 240 | { |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 241 | struct pcf8563 *pcf8563 = i2c_get_clientdata(client); |
Vincent Donnefort | 2784366 | 2014-08-08 14:20:16 -0700 | [diff] [blame] | 242 | int err; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 243 | unsigned char buf[9]; |
| 244 | |
| 245 | dev_dbg(&client->dev, "%s: secs=%d, mins=%d, hours=%d, " |
| 246 | "mday=%d, mon=%d, year=%d, wday=%d\n", |
Harvey Harrison | 2a4e2b8 | 2008-04-28 02:12:00 -0700 | [diff] [blame] | 247 | __func__, |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 248 | tm->tm_sec, tm->tm_min, tm->tm_hour, |
| 249 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); |
| 250 | |
| 251 | /* hours, minutes and seconds */ |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 252 | buf[PCF8563_REG_SC] = bin2bcd(tm->tm_sec); |
| 253 | buf[PCF8563_REG_MN] = bin2bcd(tm->tm_min); |
| 254 | buf[PCF8563_REG_HR] = bin2bcd(tm->tm_hour); |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 255 | |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 256 | buf[PCF8563_REG_DM] = bin2bcd(tm->tm_mday); |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 257 | |
| 258 | /* month, 1 - 12 */ |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 259 | buf[PCF8563_REG_MO] = bin2bcd(tm->tm_mon + 1); |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 260 | |
| 261 | /* year and century */ |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 262 | buf[PCF8563_REG_YR] = bin2bcd(tm->tm_year % 100); |
Atsushi Nemoto | cbb9450 | 2007-02-08 14:20:24 -0800 | [diff] [blame] | 263 | if (pcf8563->c_polarity ? (tm->tm_year >= 100) : (tm->tm_year < 100)) |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 264 | buf[PCF8563_REG_MO] |= PCF8563_MO_C; |
| 265 | |
| 266 | buf[PCF8563_REG_DW] = tm->tm_wday & 0x07; |
| 267 | |
Vincent Donnefort | 2784366 | 2014-08-08 14:20:16 -0700 | [diff] [blame] | 268 | err = pcf8563_write_block_data(client, PCF8563_REG_SC, |
| 269 | 9 - PCF8563_REG_SC, buf + PCF8563_REG_SC); |
| 270 | if (err) |
| 271 | return err; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 272 | |
| 273 | return 0; |
| 274 | } |
| 275 | |
Alexander Stein | 0f20b76 | 2012-05-29 15:07:36 -0700 | [diff] [blame] | 276 | #ifdef CONFIG_RTC_INTF_DEV |
| 277 | static int pcf8563_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg) |
| 278 | { |
| 279 | struct pcf8563 *pcf8563 = i2c_get_clientdata(to_i2c_client(dev)); |
| 280 | struct rtc_time tm; |
| 281 | |
| 282 | switch (cmd) { |
| 283 | case RTC_VL_READ: |
| 284 | if (pcf8563->voltage_low) |
| 285 | dev_info(dev, "low voltage detected, date/time is not reliable.\n"); |
| 286 | |
| 287 | if (copy_to_user((void __user *)arg, &pcf8563->voltage_low, |
| 288 | sizeof(int))) |
| 289 | return -EFAULT; |
| 290 | return 0; |
| 291 | case RTC_VL_CLR: |
| 292 | /* |
| 293 | * Clear the VL bit in the seconds register in case |
| 294 | * the time has not been set already (which would |
| 295 | * have cleared it). This does not really matter |
| 296 | * because of the cached voltage_low value but do it |
| 297 | * anyway for consistency. |
| 298 | */ |
| 299 | if (pcf8563_get_datetime(to_i2c_client(dev), &tm)) |
| 300 | pcf8563_set_datetime(to_i2c_client(dev), &tm); |
| 301 | |
| 302 | /* Clear the cached value. */ |
| 303 | pcf8563->voltage_low = 0; |
| 304 | |
| 305 | return 0; |
| 306 | default: |
| 307 | return -ENOIOCTLCMD; |
| 308 | } |
| 309 | } |
| 310 | #else |
| 311 | #define pcf8563_rtc_ioctl NULL |
| 312 | #endif |
| 313 | |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 314 | static int pcf8563_rtc_read_time(struct device *dev, struct rtc_time *tm) |
| 315 | { |
| 316 | return pcf8563_get_datetime(to_i2c_client(dev), tm); |
| 317 | } |
| 318 | |
| 319 | static int pcf8563_rtc_set_time(struct device *dev, struct rtc_time *tm) |
| 320 | { |
| 321 | return pcf8563_set_datetime(to_i2c_client(dev), tm); |
| 322 | } |
| 323 | |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 324 | static int pcf8563_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *tm) |
| 325 | { |
| 326 | struct i2c_client *client = to_i2c_client(dev); |
| 327 | unsigned char buf[4]; |
| 328 | int err; |
| 329 | |
| 330 | err = pcf8563_read_block_data(client, PCF8563_REG_AMN, 4, buf); |
| 331 | if (err) |
| 332 | return err; |
| 333 | |
| 334 | dev_dbg(&client->dev, |
| 335 | "%s: raw data is min=%02x, hr=%02x, mday=%02x, wday=%02x\n", |
| 336 | __func__, buf[0], buf[1], buf[2], buf[3]); |
| 337 | |
| 338 | tm->time.tm_min = bcd2bin(buf[0] & 0x7F); |
| 339 | tm->time.tm_hour = bcd2bin(buf[1] & 0x7F); |
| 340 | tm->time.tm_mday = bcd2bin(buf[2] & 0x1F); |
| 341 | tm->time.tm_wday = bcd2bin(buf[3] & 0x7); |
| 342 | tm->time.tm_mon = -1; |
| 343 | tm->time.tm_year = -1; |
| 344 | tm->time.tm_yday = -1; |
| 345 | tm->time.tm_isdst = -1; |
| 346 | |
| 347 | err = pcf8563_get_alarm_mode(client, &tm->enabled, &tm->pending); |
| 348 | if (err < 0) |
| 349 | return err; |
| 350 | |
| 351 | dev_dbg(&client->dev, "%s: tm is mins=%d, hours=%d, mday=%d, wday=%d," |
| 352 | " enabled=%d, pending=%d\n", __func__, tm->time.tm_min, |
| 353 | tm->time.tm_hour, tm->time.tm_mday, tm->time.tm_wday, |
| 354 | tm->enabled, tm->pending); |
| 355 | |
| 356 | return 0; |
| 357 | } |
| 358 | |
| 359 | static int pcf8563_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *tm) |
| 360 | { |
| 361 | struct i2c_client *client = to_i2c_client(dev); |
| 362 | unsigned char buf[4]; |
| 363 | int err; |
| 364 | |
| 365 | dev_dbg(dev, "%s, min=%d hour=%d wday=%d mday=%d " |
| 366 | "enabled=%d pending=%d\n", __func__, |
| 367 | tm->time.tm_min, tm->time.tm_hour, tm->time.tm_wday, |
| 368 | tm->time.tm_mday, tm->enabled, tm->pending); |
| 369 | |
| 370 | buf[0] = bin2bcd(tm->time.tm_min); |
| 371 | buf[1] = bin2bcd(tm->time.tm_hour); |
| 372 | buf[2] = bin2bcd(tm->time.tm_mday); |
| 373 | buf[3] = tm->time.tm_wday & 0x07; |
| 374 | |
| 375 | err = pcf8563_write_block_data(client, PCF8563_REG_AMN, 4, buf); |
| 376 | if (err) |
| 377 | return err; |
| 378 | |
| 379 | return pcf8563_set_alarm_mode(client, 1); |
| 380 | } |
| 381 | |
| 382 | static int pcf8563_irq_enable(struct device *dev, unsigned int enabled) |
| 383 | { |
| 384 | return pcf8563_set_alarm_mode(to_i2c_client(dev), !!enabled); |
| 385 | } |
| 386 | |
David Brownell | ff8371a | 2006-09-30 23:28:17 -0700 | [diff] [blame] | 387 | static const struct rtc_class_ops pcf8563_rtc_ops = { |
Alexander Stein | 0f20b76 | 2012-05-29 15:07:36 -0700 | [diff] [blame] | 388 | .ioctl = pcf8563_rtc_ioctl, |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 389 | .read_time = pcf8563_rtc_read_time, |
| 390 | .set_time = pcf8563_rtc_set_time, |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 391 | .read_alarm = pcf8563_rtc_read_alarm, |
| 392 | .set_alarm = pcf8563_rtc_set_alarm, |
| 393 | .alarm_irq_enable = pcf8563_irq_enable, |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 394 | }; |
| 395 | |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 396 | static int pcf8563_probe(struct i2c_client *client, |
| 397 | const struct i2c_device_id *id) |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 398 | { |
Atsushi Nemoto | cbb9450 | 2007-02-08 14:20:24 -0800 | [diff] [blame] | 399 | struct pcf8563 *pcf8563; |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 400 | int err; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 401 | |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 402 | dev_dbg(&client->dev, "%s\n", __func__); |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 403 | |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 404 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) |
| 405 | return -ENODEV; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 406 | |
Jingoo Han | d6fbdc3 | 2013-04-29 16:20:49 -0700 | [diff] [blame] | 407 | pcf8563 = devm_kzalloc(&client->dev, sizeof(struct pcf8563), |
| 408 | GFP_KERNEL); |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 409 | if (!pcf8563) |
| 410 | return -ENOMEM; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 411 | |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 412 | dev_info(&client->dev, "chip found, driver version " DRV_VERSION "\n"); |
| 413 | |
Alessandro Zummo | b74d2ca | 2009-12-15 16:45:53 -0800 | [diff] [blame] | 414 | i2c_set_clientdata(client, pcf8563); |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 415 | pcf8563->client = client; |
| 416 | device_set_wakeup_capable(&client->dev, 1); |
Alessandro Zummo | b74d2ca | 2009-12-15 16:45:53 -0800 | [diff] [blame] | 417 | |
Jingoo Han | d6fbdc3 | 2013-04-29 16:20:49 -0700 | [diff] [blame] | 418 | pcf8563->rtc = devm_rtc_device_register(&client->dev, |
| 419 | pcf8563_driver.driver.name, |
| 420 | &pcf8563_rtc_ops, THIS_MODULE); |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 421 | |
Vincent Donnefort | ede3e9d | 2014-08-08 14:20:18 -0700 | [diff] [blame] | 422 | if (IS_ERR(pcf8563->rtc)) |
| 423 | return PTR_ERR(pcf8563->rtc); |
| 424 | |
| 425 | if (client->irq > 0) { |
| 426 | err = devm_request_threaded_irq(&client->dev, client->irq, |
| 427 | NULL, pcf8563_irq, |
| 428 | IRQF_SHARED|IRQF_ONESHOT|IRQF_TRIGGER_FALLING, |
| 429 | pcf8563->rtc->name, client); |
| 430 | if (err) { |
| 431 | dev_err(&client->dev, "unable to request IRQ %d\n", |
| 432 | client->irq); |
| 433 | return err; |
| 434 | } |
| 435 | |
| 436 | } |
| 437 | |
| 438 | return 0; |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 439 | } |
| 440 | |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 441 | static const struct i2c_device_id pcf8563_id[] = { |
| 442 | { "pcf8563", 0 }, |
Jon Smirl | 8ea9212 | 2008-07-12 13:47:56 -0700 | [diff] [blame] | 443 | { "rtc8564", 0 }, |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 444 | { } |
| 445 | }; |
| 446 | MODULE_DEVICE_TABLE(i2c, pcf8563_id); |
| 447 | |
Nick Bowler | 8dccaf0 | 2012-07-30 14:41:59 -0700 | [diff] [blame] | 448 | #ifdef CONFIG_OF |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 449 | static const struct of_device_id pcf8563_of_match[] = { |
Nick Bowler | 8dccaf0 | 2012-07-30 14:41:59 -0700 | [diff] [blame] | 450 | { .compatible = "nxp,pcf8563" }, |
| 451 | {} |
| 452 | }; |
| 453 | MODULE_DEVICE_TABLE(of, pcf8563_of_match); |
| 454 | #endif |
| 455 | |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 456 | static struct i2c_driver pcf8563_driver = { |
| 457 | .driver = { |
| 458 | .name = "rtc-pcf8563", |
Nick Bowler | 0a25bf4 | 2012-07-30 14:41:57 -0700 | [diff] [blame] | 459 | .owner = THIS_MODULE, |
Nick Bowler | 8dccaf0 | 2012-07-30 14:41:59 -0700 | [diff] [blame] | 460 | .of_match_table = of_match_ptr(pcf8563_of_match), |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 461 | }, |
| 462 | .probe = pcf8563_probe, |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 463 | .id_table = pcf8563_id, |
Alessandro Zummo | e5fc9cc | 2008-04-28 02:11:54 -0700 | [diff] [blame] | 464 | }; |
| 465 | |
Axel Lin | 0abc920 | 2012-03-23 15:02:31 -0700 | [diff] [blame] | 466 | module_i2c_driver(pcf8563_driver); |
Alessandro Zummo | b5a82d6 | 2006-03-27 01:16:44 -0800 | [diff] [blame] | 467 | |
| 468 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); |
| 469 | MODULE_DESCRIPTION("Philips PCF8563/Epson RTC8564 RTC driver"); |
| 470 | MODULE_LICENSE("GPL"); |
| 471 | MODULE_VERSION(DRV_VERSION); |