Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 1 | /* |
| 2 | * I2C client/driver for the ST M41T80 family of i2c rtc chips. |
| 3 | * |
| 4 | * Author: Alexander Bigga <ab@mycable.de> |
| 5 | * |
| 6 | * Based on m41t00.c by Mark A. Greer <mgreer@mvista.com> |
| 7 | * |
| 8 | * 2006 (c) mycable GmbH |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. |
| 13 | * |
| 14 | */ |
| 15 | |
Joe Perches | a737e83 | 2015-04-16 12:46:14 -0700 | [diff] [blame] | 16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 17 | |
Maciej W. Rozycki | 35aa64f | 2008-07-23 21:30:29 -0700 | [diff] [blame] | 18 | #include <linux/bcd.h> |
| 19 | #include <linux/i2c.h> |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 20 | #include <linux/init.h> |
Maciej W. Rozycki | 9fb1f68 | 2008-05-12 14:02:38 -0700 | [diff] [blame] | 21 | #include <linux/kernel.h> |
Maciej W. Rozycki | 35aa64f | 2008-07-23 21:30:29 -0700 | [diff] [blame] | 22 | #include <linux/module.h> |
Javier Martinez Canillas | eb235c5 | 2017-03-03 11:29:23 -0300 | [diff] [blame] | 23 | #include <linux/of_device.h> |
Maciej W. Rozycki | 35aa64f | 2008-07-23 21:30:29 -0700 | [diff] [blame] | 24 | #include <linux/rtc.h> |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 25 | #include <linux/slab.h> |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 26 | #include <linux/mutex.h> |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 27 | #include <linux/string.h> |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 28 | #ifdef CONFIG_RTC_DRV_M41T80_WDT |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 29 | #include <linux/fs.h> |
| 30 | #include <linux/ioctl.h> |
Maciej W. Rozycki | 35aa64f | 2008-07-23 21:30:29 -0700 | [diff] [blame] | 31 | #include <linux/miscdevice.h> |
| 32 | #include <linux/reboot.h> |
| 33 | #include <linux/watchdog.h> |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 34 | #endif |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 35 | |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 36 | #define M41T80_REG_SSEC 0x00 |
| 37 | #define M41T80_REG_SEC 0x01 |
| 38 | #define M41T80_REG_MIN 0x02 |
| 39 | #define M41T80_REG_HOUR 0x03 |
| 40 | #define M41T80_REG_WDAY 0x04 |
| 41 | #define M41T80_REG_DAY 0x05 |
| 42 | #define M41T80_REG_MON 0x06 |
| 43 | #define M41T80_REG_YEAR 0x07 |
| 44 | #define M41T80_REG_ALARM_MON 0x0a |
| 45 | #define M41T80_REG_ALARM_DAY 0x0b |
| 46 | #define M41T80_REG_ALARM_HOUR 0x0c |
| 47 | #define M41T80_REG_ALARM_MIN 0x0d |
| 48 | #define M41T80_REG_ALARM_SEC 0x0e |
| 49 | #define M41T80_REG_FLAGS 0x0f |
| 50 | #define M41T80_REG_SQW 0x13 |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 51 | |
| 52 | #define M41T80_DATETIME_REG_SIZE (M41T80_REG_YEAR + 1) |
| 53 | #define M41T80_ALARM_REG_SIZE \ |
| 54 | (M41T80_REG_ALARM_SEC + 1 - M41T80_REG_ALARM_MON) |
| 55 | |
Mylène Josserand | 54339f3 | 2016-03-29 08:56:01 +0200 | [diff] [blame] | 56 | #define M41T80_SEC_ST BIT(7) /* ST: Stop Bit */ |
| 57 | #define M41T80_ALMON_AFE BIT(7) /* AFE: AF Enable Bit */ |
| 58 | #define M41T80_ALMON_SQWE BIT(6) /* SQWE: SQW Enable Bit */ |
| 59 | #define M41T80_ALHOUR_HT BIT(6) /* HT: Halt Update Bit */ |
Mylène Josserand | 05a7f27 | 2016-03-29 08:56:05 +0200 | [diff] [blame] | 60 | #define M41T80_FLAGS_OF BIT(2) /* OF: Oscillator Failure Bit */ |
Mylène Josserand | 54339f3 | 2016-03-29 08:56:01 +0200 | [diff] [blame] | 61 | #define M41T80_FLAGS_AF BIT(6) /* AF: Alarm Flag Bit */ |
| 62 | #define M41T80_FLAGS_BATT_LOW BIT(4) /* BL: Battery Low Bit */ |
| 63 | #define M41T80_WATCHDOG_RB2 BIT(7) /* RB: Watchdog resolution */ |
| 64 | #define M41T80_WATCHDOG_RB1 BIT(1) /* RB: Watchdog resolution */ |
| 65 | #define M41T80_WATCHDOG_RB0 BIT(0) /* RB: Watchdog resolution */ |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 66 | |
Mylène Josserand | 54339f3 | 2016-03-29 08:56:01 +0200 | [diff] [blame] | 67 | #define M41T80_FEATURE_HT BIT(0) /* Halt feature */ |
| 68 | #define M41T80_FEATURE_BL BIT(1) /* Battery low indicator */ |
| 69 | #define M41T80_FEATURE_SQ BIT(2) /* Squarewave feature */ |
| 70 | #define M41T80_FEATURE_WD BIT(3) /* Extra watchdog resolution */ |
| 71 | #define M41T80_FEATURE_SQ_ALT BIT(4) /* RSx bits are in reg 4 */ |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 72 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 73 | static DEFINE_MUTEX(m41t80_rtc_mutex); |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 74 | static const struct i2c_device_id m41t80_id[] = { |
Daniel Glockner | f30281f | 2009-04-02 16:57:03 -0700 | [diff] [blame] | 75 | { "m41t62", M41T80_FEATURE_SQ | M41T80_FEATURE_SQ_ALT }, |
Steven A. Falco | d3a126f | 2008-10-15 22:03:07 -0700 | [diff] [blame] | 76 | { "m41t65", M41T80_FEATURE_HT | M41T80_FEATURE_WD }, |
| 77 | { "m41t80", M41T80_FEATURE_SQ }, |
| 78 | { "m41t81", M41T80_FEATURE_HT | M41T80_FEATURE_SQ}, |
| 79 | { "m41t81s", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, |
| 80 | { "m41t82", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, |
| 81 | { "m41t83", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, |
| 82 | { "m41st84", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, |
| 83 | { "m41st85", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, |
| 84 | { "m41st87", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, |
Wolfram Sang | 6b1a523 | 2014-06-06 14:35:47 -0700 | [diff] [blame] | 85 | { "rv4162", M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT }, |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 86 | { } |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 87 | }; |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 88 | MODULE_DEVICE_TABLE(i2c, m41t80_id); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 89 | |
Javier Martinez Canillas | eb235c5 | 2017-03-03 11:29:23 -0300 | [diff] [blame] | 90 | static const struct of_device_id m41t80_of_match[] = { |
| 91 | { |
| 92 | .compatible = "st,m41t62", |
| 93 | .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_SQ_ALT) |
| 94 | }, |
| 95 | { |
| 96 | .compatible = "st,m41t65", |
| 97 | .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_WD) |
| 98 | }, |
| 99 | { |
| 100 | .compatible = "st,m41t80", |
| 101 | .data = (void *)(M41T80_FEATURE_SQ) |
| 102 | }, |
| 103 | { |
| 104 | .compatible = "st,m41t81", |
| 105 | .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_SQ) |
| 106 | }, |
| 107 | { |
| 108 | .compatible = "st,m41t81s", |
| 109 | .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ) |
| 110 | }, |
| 111 | { |
| 112 | .compatible = "st,m41t82", |
| 113 | .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ) |
| 114 | }, |
| 115 | { |
| 116 | .compatible = "st,m41t83", |
| 117 | .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ) |
| 118 | }, |
| 119 | { |
| 120 | .compatible = "st,m41t84", |
| 121 | .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ) |
| 122 | }, |
| 123 | { |
| 124 | .compatible = "st,m41t85", |
| 125 | .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ) |
| 126 | }, |
| 127 | { |
| 128 | .compatible = "st,m41t87", |
| 129 | .data = (void *)(M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ) |
| 130 | }, |
| 131 | { |
Alexandre Belloni | a897bf1 | 2017-04-19 22:05:48 +0200 | [diff] [blame] | 132 | .compatible = "microcrystal,rv4162", |
| 133 | .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT) |
| 134 | }, |
| 135 | /* DT compatibility only, do not use compatibles below: */ |
| 136 | { |
Javier Martinez Canillas | eb235c5 | 2017-03-03 11:29:23 -0300 | [diff] [blame] | 137 | .compatible = "st,rv4162", |
| 138 | .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT) |
| 139 | }, |
| 140 | { |
| 141 | .compatible = "rv4162", |
| 142 | .data = (void *)(M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT) |
| 143 | }, |
| 144 | { } |
| 145 | }; |
| 146 | MODULE_DEVICE_TABLE(of, m41t80_of_match); |
| 147 | |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 148 | struct m41t80_data { |
Javier Martinez Canillas | eb235c5 | 2017-03-03 11:29:23 -0300 | [diff] [blame] | 149 | unsigned long features; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 150 | struct rtc_device *rtc; |
| 151 | }; |
| 152 | |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 153 | static irqreturn_t m41t80_handle_irq(int irq, void *dev_id) |
| 154 | { |
| 155 | struct i2c_client *client = dev_id; |
| 156 | struct m41t80_data *m41t80 = i2c_get_clientdata(client); |
| 157 | struct mutex *lock = &m41t80->rtc->ops_lock; |
| 158 | unsigned long events = 0; |
| 159 | int flags, flags_afe; |
| 160 | |
| 161 | mutex_lock(lock); |
| 162 | |
| 163 | flags_afe = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON); |
| 164 | if (flags_afe < 0) { |
| 165 | mutex_unlock(lock); |
| 166 | return IRQ_NONE; |
| 167 | } |
| 168 | |
| 169 | flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS); |
| 170 | if (flags <= 0) { |
| 171 | mutex_unlock(lock); |
| 172 | return IRQ_NONE; |
| 173 | } |
| 174 | |
| 175 | if (flags & M41T80_FLAGS_AF) { |
| 176 | flags &= ~M41T80_FLAGS_AF; |
| 177 | flags_afe &= ~M41T80_ALMON_AFE; |
| 178 | events |= RTC_AF; |
| 179 | } |
| 180 | |
| 181 | if (events) { |
| 182 | rtc_update_irq(m41t80->rtc, 1, events); |
| 183 | i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS, flags); |
| 184 | i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, |
| 185 | flags_afe); |
| 186 | } |
| 187 | |
| 188 | mutex_unlock(lock); |
| 189 | |
| 190 | return IRQ_HANDLED; |
| 191 | } |
| 192 | |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 193 | static int m41t80_get_datetime(struct i2c_client *client, |
| 194 | struct rtc_time *tm) |
| 195 | { |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 196 | unsigned char buf[8]; |
Mylène Josserand | 05a7f27 | 2016-03-29 08:56:05 +0200 | [diff] [blame] | 197 | int err, flags; |
| 198 | |
| 199 | flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS); |
| 200 | if (flags < 0) |
| 201 | return flags; |
| 202 | |
| 203 | if (flags & M41T80_FLAGS_OF) { |
| 204 | dev_err(&client->dev, "Oscillator failure, data is invalid.\n"); |
| 205 | return -EINVAL; |
| 206 | } |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 207 | |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 208 | err = i2c_smbus_read_i2c_block_data(client, M41T80_REG_SSEC, |
| 209 | sizeof(buf), buf); |
| 210 | if (err < 0) { |
| 211 | dev_err(&client->dev, "Unable to read date\n"); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 212 | return -EIO; |
| 213 | } |
| 214 | |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 215 | tm->tm_sec = bcd2bin(buf[M41T80_REG_SEC] & 0x7f); |
| 216 | tm->tm_min = bcd2bin(buf[M41T80_REG_MIN] & 0x7f); |
| 217 | tm->tm_hour = bcd2bin(buf[M41T80_REG_HOUR] & 0x3f); |
| 218 | tm->tm_mday = bcd2bin(buf[M41T80_REG_DAY] & 0x3f); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 219 | tm->tm_wday = buf[M41T80_REG_WDAY] & 0x07; |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 220 | tm->tm_mon = bcd2bin(buf[M41T80_REG_MON] & 0x1f) - 1; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 221 | |
| 222 | /* assume 20YY not 19YY, and ignore the Century Bit */ |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 223 | tm->tm_year = bcd2bin(buf[M41T80_REG_YEAR]) + 100; |
Wan ZongShun | b485fe5 | 2010-08-10 18:02:15 -0700 | [diff] [blame] | 224 | return rtc_valid_tm(tm); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | /* Sets the given date and time to the real time clock. */ |
| 228 | static int m41t80_set_datetime(struct i2c_client *client, struct rtc_time *tm) |
| 229 | { |
Gary Bisson | 0f546b0 | 2017-04-25 16:45:15 +0200 | [diff] [blame^] | 230 | struct m41t80_data *clientdata = i2c_get_clientdata(client); |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 231 | unsigned char buf[8]; |
Mylène Josserand | 05a7f27 | 2016-03-29 08:56:05 +0200 | [diff] [blame] | 232 | int err, flags; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 233 | |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 234 | if (tm->tm_year < 100 || tm->tm_year > 199) |
Stefan Christ | bcebd81 | 2016-03-15 14:22:26 +0100 | [diff] [blame] | 235 | return -EINVAL; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 236 | |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 237 | buf[M41T80_REG_SSEC] = 0; |
| 238 | buf[M41T80_REG_SEC] = bin2bcd(tm->tm_sec); |
| 239 | buf[M41T80_REG_MIN] = bin2bcd(tm->tm_min); |
| 240 | buf[M41T80_REG_HOUR] = bin2bcd(tm->tm_hour); |
| 241 | buf[M41T80_REG_DAY] = bin2bcd(tm->tm_mday); |
| 242 | buf[M41T80_REG_MON] = bin2bcd(tm->tm_mon + 1); |
| 243 | buf[M41T80_REG_YEAR] = bin2bcd(tm->tm_year - 100); |
| 244 | buf[M41T80_REG_WDAY] = tm->tm_wday; |
| 245 | |
Gary Bisson | 0f546b0 | 2017-04-25 16:45:15 +0200 | [diff] [blame^] | 246 | /* If the square wave output is controlled in the weekday register */ |
| 247 | if (clientdata->features & M41T80_FEATURE_SQ_ALT) { |
| 248 | int val; |
| 249 | |
| 250 | val = i2c_smbus_read_byte_data(client, M41T80_REG_WDAY); |
| 251 | if (val < 0) |
| 252 | return val; |
| 253 | |
| 254 | buf[M41T80_REG_WDAY] |= (val & 0xf0); |
| 255 | } |
| 256 | |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 257 | err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_SSEC, |
| 258 | sizeof(buf), buf); |
| 259 | if (err < 0) { |
| 260 | dev_err(&client->dev, "Unable to write to date registers\n"); |
| 261 | return err; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 262 | } |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 263 | |
Mylène Josserand | 05a7f27 | 2016-03-29 08:56:05 +0200 | [diff] [blame] | 264 | /* Clear the OF bit of Flags Register */ |
| 265 | flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS); |
| 266 | if (flags < 0) |
| 267 | return flags; |
| 268 | |
| 269 | if (i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS, |
| 270 | flags & ~M41T80_FLAGS_OF)) { |
| 271 | dev_err(&client->dev, "Unable to write flags register\n"); |
| 272 | return -EIO; |
| 273 | } |
| 274 | |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 275 | return err; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 276 | } |
| 277 | |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 278 | static int m41t80_rtc_proc(struct device *dev, struct seq_file *seq) |
| 279 | { |
| 280 | struct i2c_client *client = to_i2c_client(dev); |
| 281 | struct m41t80_data *clientdata = i2c_get_clientdata(client); |
| 282 | u8 reg; |
| 283 | |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 284 | if (clientdata->features & M41T80_FEATURE_BL) { |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 285 | reg = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS); |
| 286 | seq_printf(seq, "battery\t\t: %s\n", |
| 287 | (reg & M41T80_FLAGS_BATT_LOW) ? "exhausted" : "ok"); |
| 288 | } |
| 289 | return 0; |
| 290 | } |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 291 | |
| 292 | static int m41t80_rtc_read_time(struct device *dev, struct rtc_time *tm) |
| 293 | { |
| 294 | return m41t80_get_datetime(to_i2c_client(dev), tm); |
| 295 | } |
| 296 | |
| 297 | static int m41t80_rtc_set_time(struct device *dev, struct rtc_time *tm) |
| 298 | { |
| 299 | return m41t80_set_datetime(to_i2c_client(dev), tm); |
| 300 | } |
| 301 | |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 302 | static int m41t80_alarm_irq_enable(struct device *dev, unsigned int enabled) |
| 303 | { |
| 304 | struct i2c_client *client = to_i2c_client(dev); |
| 305 | int flags, retval; |
| 306 | |
| 307 | flags = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON); |
| 308 | if (flags < 0) |
| 309 | return flags; |
| 310 | |
| 311 | if (enabled) |
| 312 | flags |= M41T80_ALMON_AFE; |
| 313 | else |
| 314 | flags &= ~M41T80_ALMON_AFE; |
| 315 | |
| 316 | retval = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, flags); |
| 317 | if (retval < 0) { |
Stefan Christ | e89487f | 2016-07-05 13:53:16 +0200 | [diff] [blame] | 318 | dev_err(dev, "Unable to enable alarm IRQ %d\n", retval); |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 319 | return retval; |
| 320 | } |
| 321 | return 0; |
| 322 | } |
| 323 | |
| 324 | static int m41t80_set_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 325 | { |
| 326 | struct i2c_client *client = to_i2c_client(dev); |
| 327 | u8 alarmvals[5]; |
| 328 | int ret, err; |
| 329 | |
| 330 | alarmvals[0] = bin2bcd(alrm->time.tm_mon + 1); |
| 331 | alarmvals[1] = bin2bcd(alrm->time.tm_mday); |
| 332 | alarmvals[2] = bin2bcd(alrm->time.tm_hour); |
| 333 | alarmvals[3] = bin2bcd(alrm->time.tm_min); |
| 334 | alarmvals[4] = bin2bcd(alrm->time.tm_sec); |
| 335 | |
| 336 | /* Clear AF and AFE flags */ |
| 337 | ret = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON); |
| 338 | if (ret < 0) |
| 339 | return ret; |
| 340 | err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, |
| 341 | ret & ~(M41T80_ALMON_AFE)); |
| 342 | if (err < 0) { |
| 343 | dev_err(dev, "Unable to clear AFE bit\n"); |
| 344 | return err; |
| 345 | } |
| 346 | |
Gary Bisson | 2de9261 | 2017-04-25 16:45:14 +0200 | [diff] [blame] | 347 | /* Keep SQWE bit value */ |
| 348 | alarmvals[0] |= (ret & M41T80_ALMON_SQWE); |
| 349 | |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 350 | ret = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS); |
| 351 | if (ret < 0) |
| 352 | return ret; |
| 353 | |
| 354 | err = i2c_smbus_write_byte_data(client, M41T80_REG_FLAGS, |
| 355 | ret & ~(M41T80_FLAGS_AF)); |
| 356 | if (err < 0) { |
| 357 | dev_err(dev, "Unable to clear AF bit\n"); |
| 358 | return err; |
| 359 | } |
| 360 | |
| 361 | /* Write the alarm */ |
| 362 | err = i2c_smbus_write_i2c_block_data(client, M41T80_REG_ALARM_MON, |
| 363 | 5, alarmvals); |
| 364 | if (err) |
| 365 | return err; |
| 366 | |
| 367 | /* Enable the alarm interrupt */ |
| 368 | if (alrm->enabled) { |
| 369 | alarmvals[0] |= M41T80_ALMON_AFE; |
| 370 | err = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, |
| 371 | alarmvals[0]); |
| 372 | if (err) |
| 373 | return err; |
| 374 | } |
| 375 | |
| 376 | return 0; |
| 377 | } |
| 378 | |
| 379 | static int m41t80_read_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 380 | { |
| 381 | struct i2c_client *client = to_i2c_client(dev); |
| 382 | u8 alarmvals[5]; |
| 383 | int flags, ret; |
| 384 | |
| 385 | ret = i2c_smbus_read_i2c_block_data(client, M41T80_REG_ALARM_MON, |
| 386 | 5, alarmvals); |
| 387 | if (ret != 5) |
| 388 | return ret < 0 ? ret : -EIO; |
| 389 | |
| 390 | flags = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS); |
| 391 | if (flags < 0) |
| 392 | return flags; |
| 393 | |
| 394 | alrm->time.tm_sec = bcd2bin(alarmvals[4] & 0x7f); |
| 395 | alrm->time.tm_min = bcd2bin(alarmvals[3] & 0x7f); |
| 396 | alrm->time.tm_hour = bcd2bin(alarmvals[2] & 0x3f); |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 397 | alrm->time.tm_mday = bcd2bin(alarmvals[1] & 0x3f); |
| 398 | alrm->time.tm_mon = bcd2bin(alarmvals[0] & 0x3f); |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 399 | |
| 400 | alrm->enabled = !!(alarmvals[0] & M41T80_ALMON_AFE); |
| 401 | alrm->pending = (flags & M41T80_FLAGS_AF) && alrm->enabled; |
| 402 | |
| 403 | return 0; |
| 404 | } |
| 405 | |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 406 | static struct rtc_class_ops m41t80_rtc_ops = { |
| 407 | .read_time = m41t80_rtc_read_time, |
| 408 | .set_time = m41t80_rtc_set_time, |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 409 | .proc = m41t80_rtc_proc, |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 410 | }; |
| 411 | |
Stefan Christ | ae036af | 2016-07-05 13:53:17 +0200 | [diff] [blame] | 412 | #ifdef CONFIG_PM_SLEEP |
| 413 | static int m41t80_suspend(struct device *dev) |
| 414 | { |
| 415 | struct i2c_client *client = to_i2c_client(dev); |
| 416 | |
| 417 | if (client->irq >= 0 && device_may_wakeup(dev)) |
| 418 | enable_irq_wake(client->irq); |
| 419 | |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | static int m41t80_resume(struct device *dev) |
| 424 | { |
| 425 | struct i2c_client *client = to_i2c_client(dev); |
| 426 | |
| 427 | if (client->irq >= 0 && device_may_wakeup(dev)) |
| 428 | disable_irq_wake(client->irq); |
| 429 | |
| 430 | return 0; |
| 431 | } |
| 432 | #endif |
| 433 | |
| 434 | static SIMPLE_DEV_PM_OPS(m41t80_pm, m41t80_suspend, m41t80_resume); |
| 435 | |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 436 | static ssize_t flags_show(struct device *dev, |
| 437 | struct device_attribute *attr, char *buf) |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 438 | { |
| 439 | struct i2c_client *client = to_i2c_client(dev); |
| 440 | int val; |
| 441 | |
| 442 | val = i2c_smbus_read_byte_data(client, M41T80_REG_FLAGS); |
| 443 | if (val < 0) |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 444 | return val; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 445 | return sprintf(buf, "%#x\n", val); |
| 446 | } |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 447 | static DEVICE_ATTR_RO(flags); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 448 | |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 449 | static ssize_t sqwfreq_show(struct device *dev, |
| 450 | struct device_attribute *attr, char *buf) |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 451 | { |
| 452 | struct i2c_client *client = to_i2c_client(dev); |
Steven A. Falco | d3a126f | 2008-10-15 22:03:07 -0700 | [diff] [blame] | 453 | struct m41t80_data *clientdata = i2c_get_clientdata(client); |
Daniel Glockner | f30281f | 2009-04-02 16:57:03 -0700 | [diff] [blame] | 454 | int val, reg_sqw; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 455 | |
Steven A. Falco | d3a126f | 2008-10-15 22:03:07 -0700 | [diff] [blame] | 456 | if (!(clientdata->features & M41T80_FEATURE_SQ)) |
| 457 | return -EINVAL; |
| 458 | |
Daniel Glockner | f30281f | 2009-04-02 16:57:03 -0700 | [diff] [blame] | 459 | reg_sqw = M41T80_REG_SQW; |
| 460 | if (clientdata->features & M41T80_FEATURE_SQ_ALT) |
| 461 | reg_sqw = M41T80_REG_WDAY; |
| 462 | val = i2c_smbus_read_byte_data(client, reg_sqw); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 463 | if (val < 0) |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 464 | return val; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 465 | val = (val >> 4) & 0xf; |
| 466 | switch (val) { |
| 467 | case 0: |
| 468 | break; |
| 469 | case 1: |
| 470 | val = 32768; |
| 471 | break; |
| 472 | default: |
| 473 | val = 32768 >> val; |
| 474 | } |
| 475 | return sprintf(buf, "%d\n", val); |
| 476 | } |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 477 | |
| 478 | static ssize_t sqwfreq_store(struct device *dev, |
| 479 | struct device_attribute *attr, |
| 480 | const char *buf, size_t count) |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 481 | { |
| 482 | struct i2c_client *client = to_i2c_client(dev); |
Steven A. Falco | d3a126f | 2008-10-15 22:03:07 -0700 | [diff] [blame] | 483 | struct m41t80_data *clientdata = i2c_get_clientdata(client); |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 484 | int almon, sqw, reg_sqw, rc; |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 485 | unsigned long val; |
| 486 | |
| 487 | rc = kstrtoul(buf, 0, &val); |
| 488 | if (rc < 0) |
| 489 | return rc; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 490 | |
Steven A. Falco | d3a126f | 2008-10-15 22:03:07 -0700 | [diff] [blame] | 491 | if (!(clientdata->features & M41T80_FEATURE_SQ)) |
| 492 | return -EINVAL; |
| 493 | |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 494 | if (val) { |
| 495 | if (!is_power_of_2(val)) |
| 496 | return -EINVAL; |
| 497 | val = ilog2(val); |
| 498 | if (val == 15) |
| 499 | val = 1; |
| 500 | else if (val < 14) |
| 501 | val = 15 - val; |
| 502 | else |
| 503 | return -EINVAL; |
| 504 | } |
| 505 | /* disable SQW, set SQW frequency & re-enable */ |
| 506 | almon = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_MON); |
| 507 | if (almon < 0) |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 508 | return almon; |
Daniel Glockner | f30281f | 2009-04-02 16:57:03 -0700 | [diff] [blame] | 509 | reg_sqw = M41T80_REG_SQW; |
| 510 | if (clientdata->features & M41T80_FEATURE_SQ_ALT) |
| 511 | reg_sqw = M41T80_REG_WDAY; |
| 512 | sqw = i2c_smbus_read_byte_data(client, reg_sqw); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 513 | if (sqw < 0) |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 514 | return sqw; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 515 | sqw = (sqw & 0x0f) | (val << 4); |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 516 | |
| 517 | rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 518 | almon & ~M41T80_ALMON_SQWE); |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 519 | if (rc < 0) |
| 520 | return rc; |
| 521 | |
| 522 | if (val) { |
| 523 | rc = i2c_smbus_write_byte_data(client, reg_sqw, sqw); |
| 524 | if (rc < 0) |
| 525 | return rc; |
| 526 | |
| 527 | rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_MON, |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 528 | almon | M41T80_ALMON_SQWE); |
| 529 | if (rc < 0) |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 530 | return rc; |
| 531 | } |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 532 | return count; |
| 533 | } |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 534 | static DEVICE_ATTR_RW(sqwfreq); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 535 | |
| 536 | static struct attribute *attrs[] = { |
| 537 | &dev_attr_flags.attr, |
| 538 | &dev_attr_sqwfreq.attr, |
| 539 | NULL, |
| 540 | }; |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 541 | |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 542 | static struct attribute_group attr_group = { |
| 543 | .attrs = attrs, |
| 544 | }; |
| 545 | |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 546 | #ifdef CONFIG_RTC_DRV_M41T80_WDT |
| 547 | /* |
| 548 | ***************************************************************************** |
| 549 | * |
| 550 | * Watchdog Driver |
| 551 | * |
| 552 | ***************************************************************************** |
| 553 | */ |
| 554 | static struct i2c_client *save_client; |
| 555 | |
| 556 | /* Default margin */ |
| 557 | #define WD_TIMO 60 /* 1..31 seconds */ |
| 558 | |
| 559 | static int wdt_margin = WD_TIMO; |
| 560 | module_param(wdt_margin, int, 0); |
| 561 | MODULE_PARM_DESC(wdt_margin, "Watchdog timeout in seconds (default 60s)"); |
| 562 | |
| 563 | static unsigned long wdt_is_open; |
| 564 | static int boot_flag; |
| 565 | |
| 566 | /** |
| 567 | * wdt_ping: |
| 568 | * |
| 569 | * Reload counter one with the watchdog timeout. We don't bother reloading |
| 570 | * the cascade counter. |
| 571 | */ |
| 572 | static void wdt_ping(void) |
| 573 | { |
| 574 | unsigned char i2c_data[2]; |
| 575 | struct i2c_msg msgs1[1] = { |
| 576 | { |
| 577 | .addr = save_client->addr, |
| 578 | .flags = 0, |
| 579 | .len = 2, |
| 580 | .buf = i2c_data, |
| 581 | }, |
| 582 | }; |
Steven A. Falco | d3a126f | 2008-10-15 22:03:07 -0700 | [diff] [blame] | 583 | struct m41t80_data *clientdata = i2c_get_clientdata(save_client); |
| 584 | |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 585 | i2c_data[0] = 0x09; /* watchdog register */ |
| 586 | |
| 587 | if (wdt_margin > 31) |
| 588 | i2c_data[1] = (wdt_margin & 0xFC) | 0x83; /* resolution = 4s */ |
| 589 | else |
| 590 | /* |
| 591 | * WDS = 1 (0x80), mulitplier = WD_TIMO, resolution = 1s (0x02) |
| 592 | */ |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 593 | i2c_data[1] = wdt_margin << 2 | 0x82; |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 594 | |
Steven A. Falco | d3a126f | 2008-10-15 22:03:07 -0700 | [diff] [blame] | 595 | /* |
| 596 | * M41T65 has three bits for watchdog resolution. Don't set bit 7, as |
| 597 | * that would be an invalid resolution. |
| 598 | */ |
| 599 | if (clientdata->features & M41T80_FEATURE_WD) |
| 600 | i2c_data[1] &= ~M41T80_WATCHDOG_RB2; |
| 601 | |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 602 | i2c_transfer(save_client->adapter, msgs1, 1); |
| 603 | } |
| 604 | |
| 605 | /** |
| 606 | * wdt_disable: |
| 607 | * |
| 608 | * disables watchdog. |
| 609 | */ |
| 610 | static void wdt_disable(void) |
| 611 | { |
| 612 | unsigned char i2c_data[2], i2c_buf[0x10]; |
| 613 | struct i2c_msg msgs0[2] = { |
| 614 | { |
| 615 | .addr = save_client->addr, |
| 616 | .flags = 0, |
| 617 | .len = 1, |
| 618 | .buf = i2c_data, |
| 619 | }, |
| 620 | { |
| 621 | .addr = save_client->addr, |
| 622 | .flags = I2C_M_RD, |
| 623 | .len = 1, |
| 624 | .buf = i2c_buf, |
| 625 | }, |
| 626 | }; |
| 627 | struct i2c_msg msgs1[1] = { |
| 628 | { |
| 629 | .addr = save_client->addr, |
| 630 | .flags = 0, |
| 631 | .len = 2, |
| 632 | .buf = i2c_data, |
| 633 | }, |
| 634 | }; |
| 635 | |
| 636 | i2c_data[0] = 0x09; |
| 637 | i2c_transfer(save_client->adapter, msgs0, 2); |
| 638 | |
| 639 | i2c_data[0] = 0x09; |
| 640 | i2c_data[1] = 0x00; |
| 641 | i2c_transfer(save_client->adapter, msgs1, 1); |
| 642 | } |
| 643 | |
| 644 | /** |
| 645 | * wdt_write: |
| 646 | * @file: file handle to the watchdog |
| 647 | * @buf: buffer to write (unused as data does not matter here |
| 648 | * @count: count of bytes |
| 649 | * @ppos: pointer to the position to write. No seeks allowed |
| 650 | * |
| 651 | * A write to a watchdog device is defined as a keepalive signal. Any |
| 652 | * write of data will do, as we we don't define content meaning. |
| 653 | */ |
| 654 | static ssize_t wdt_write(struct file *file, const char __user *buf, |
| 655 | size_t count, loff_t *ppos) |
| 656 | { |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 657 | if (count) { |
| 658 | wdt_ping(); |
| 659 | return 1; |
| 660 | } |
| 661 | return 0; |
| 662 | } |
| 663 | |
| 664 | static ssize_t wdt_read(struct file *file, char __user *buf, |
| 665 | size_t count, loff_t *ppos) |
| 666 | { |
| 667 | return 0; |
| 668 | } |
| 669 | |
| 670 | /** |
| 671 | * wdt_ioctl: |
| 672 | * @inode: inode of the device |
| 673 | * @file: file handle to the device |
| 674 | * @cmd: watchdog command |
| 675 | * @arg: argument pointer |
| 676 | * |
| 677 | * The watchdog API defines a common set of functions for all watchdogs |
| 678 | * according to their available features. We only actually usefully support |
| 679 | * querying capabilities and current status. |
| 680 | */ |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 681 | static int wdt_ioctl(struct file *file, unsigned int cmd, |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 682 | unsigned long arg) |
| 683 | { |
| 684 | int new_margin, rv; |
| 685 | static struct watchdog_info ident = { |
| 686 | .options = WDIOF_POWERUNDER | WDIOF_KEEPALIVEPING | |
| 687 | WDIOF_SETTIMEOUT, |
| 688 | .firmware_version = 1, |
| 689 | .identity = "M41T80 WTD" |
| 690 | }; |
| 691 | |
| 692 | switch (cmd) { |
| 693 | case WDIOC_GETSUPPORT: |
| 694 | return copy_to_user((struct watchdog_info __user *)arg, &ident, |
| 695 | sizeof(ident)) ? -EFAULT : 0; |
| 696 | |
| 697 | case WDIOC_GETSTATUS: |
| 698 | case WDIOC_GETBOOTSTATUS: |
| 699 | return put_user(boot_flag, (int __user *)arg); |
| 700 | case WDIOC_KEEPALIVE: |
| 701 | wdt_ping(); |
| 702 | return 0; |
| 703 | case WDIOC_SETTIMEOUT: |
| 704 | if (get_user(new_margin, (int __user *)arg)) |
| 705 | return -EFAULT; |
| 706 | /* Arbitrary, can't find the card's limits */ |
| 707 | if (new_margin < 1 || new_margin > 124) |
| 708 | return -EINVAL; |
| 709 | wdt_margin = new_margin; |
| 710 | wdt_ping(); |
| 711 | /* Fall */ |
| 712 | case WDIOC_GETTIMEOUT: |
| 713 | return put_user(wdt_margin, (int __user *)arg); |
| 714 | |
| 715 | case WDIOC_SETOPTIONS: |
| 716 | if (copy_from_user(&rv, (int __user *)arg, sizeof(int))) |
| 717 | return -EFAULT; |
| 718 | |
| 719 | if (rv & WDIOS_DISABLECARD) { |
Joe Perches | a737e83 | 2015-04-16 12:46:14 -0700 | [diff] [blame] | 720 | pr_info("disable watchdog\n"); |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 721 | wdt_disable(); |
| 722 | } |
| 723 | |
| 724 | if (rv & WDIOS_ENABLECARD) { |
Joe Perches | a737e83 | 2015-04-16 12:46:14 -0700 | [diff] [blame] | 725 | pr_info("enable watchdog\n"); |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 726 | wdt_ping(); |
| 727 | } |
| 728 | |
| 729 | return -EINVAL; |
| 730 | } |
| 731 | return -ENOTTY; |
| 732 | } |
| 733 | |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 734 | static long wdt_unlocked_ioctl(struct file *file, unsigned int cmd, |
| 735 | unsigned long arg) |
| 736 | { |
| 737 | int ret; |
| 738 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 739 | mutex_lock(&m41t80_rtc_mutex); |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 740 | ret = wdt_ioctl(file, cmd, arg); |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 741 | mutex_unlock(&m41t80_rtc_mutex); |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 742 | |
| 743 | return ret; |
| 744 | } |
| 745 | |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 746 | /** |
| 747 | * wdt_open: |
| 748 | * @inode: inode of device |
| 749 | * @file: file handle to device |
| 750 | * |
| 751 | */ |
| 752 | static int wdt_open(struct inode *inode, struct file *file) |
| 753 | { |
| 754 | if (MINOR(inode->i_rdev) == WATCHDOG_MINOR) { |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 755 | mutex_lock(&m41t80_rtc_mutex); |
Arnd Bergmann | 4101273 | 2008-05-20 19:16:39 +0200 | [diff] [blame] | 756 | if (test_and_set_bit(0, &wdt_is_open)) { |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 757 | mutex_unlock(&m41t80_rtc_mutex); |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 758 | return -EBUSY; |
Arnd Bergmann | 4101273 | 2008-05-20 19:16:39 +0200 | [diff] [blame] | 759 | } |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 760 | /* |
| 761 | * Activate |
| 762 | */ |
| 763 | wdt_is_open = 1; |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 764 | mutex_unlock(&m41t80_rtc_mutex); |
Jan Blunck | 09eeb1f | 2010-05-26 14:44:47 -0700 | [diff] [blame] | 765 | return nonseekable_open(inode, file); |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 766 | } |
| 767 | return -ENODEV; |
| 768 | } |
| 769 | |
| 770 | /** |
| 771 | * wdt_close: |
| 772 | * @inode: inode to board |
| 773 | * @file: file handle to board |
| 774 | * |
| 775 | */ |
| 776 | static int wdt_release(struct inode *inode, struct file *file) |
| 777 | { |
| 778 | if (MINOR(inode->i_rdev) == WATCHDOG_MINOR) |
| 779 | clear_bit(0, &wdt_is_open); |
| 780 | return 0; |
| 781 | } |
| 782 | |
| 783 | /** |
| 784 | * notify_sys: |
| 785 | * @this: our notifier block |
| 786 | * @code: the event being reported |
| 787 | * @unused: unused |
| 788 | * |
| 789 | * Our notifier is called on system shutdowns. We want to turn the card |
| 790 | * off at reboot otherwise the machine will reboot again during memory |
| 791 | * test or worse yet during the following fsck. This would suck, in fact |
| 792 | * trust me - if it happens it does suck. |
| 793 | */ |
| 794 | static int wdt_notify_sys(struct notifier_block *this, unsigned long code, |
| 795 | void *unused) |
| 796 | { |
| 797 | if (code == SYS_DOWN || code == SYS_HALT) |
| 798 | /* Disable Watchdog */ |
| 799 | wdt_disable(); |
| 800 | return NOTIFY_DONE; |
| 801 | } |
| 802 | |
| 803 | static const struct file_operations wdt_fops = { |
| 804 | .owner = THIS_MODULE, |
| 805 | .read = wdt_read, |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 806 | .unlocked_ioctl = wdt_unlocked_ioctl, |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 807 | .write = wdt_write, |
| 808 | .open = wdt_open, |
| 809 | .release = wdt_release, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 810 | .llseek = no_llseek, |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 811 | }; |
| 812 | |
| 813 | static struct miscdevice wdt_dev = { |
| 814 | .minor = WATCHDOG_MINOR, |
| 815 | .name = "watchdog", |
| 816 | .fops = &wdt_fops, |
| 817 | }; |
| 818 | |
| 819 | /* |
| 820 | * The WDT card needs to learn about soft shutdowns in order to |
| 821 | * turn the timebomb registers off. |
| 822 | */ |
| 823 | static struct notifier_block wdt_notifier = { |
| 824 | .notifier_call = wdt_notify_sys, |
| 825 | }; |
| 826 | #endif /* CONFIG_RTC_DRV_M41T80_WDT */ |
| 827 | |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 828 | /* |
| 829 | ***************************************************************************** |
| 830 | * |
| 831 | * Driver Interface |
| 832 | * |
| 833 | ***************************************************************************** |
| 834 | */ |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 835 | |
| 836 | static void m41t80_remove_sysfs_group(void *_dev) |
| 837 | { |
| 838 | struct device *dev = _dev; |
| 839 | |
| 840 | sysfs_remove_group(&dev->kobj, &attr_group); |
| 841 | } |
| 842 | |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 843 | static int m41t80_probe(struct i2c_client *client, |
| 844 | const struct i2c_device_id *id) |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 845 | { |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 846 | struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 847 | int rc = 0; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 848 | struct rtc_device *rtc = NULL; |
| 849 | struct rtc_time tm; |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 850 | struct m41t80_data *m41t80_data = NULL; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 851 | |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 852 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_I2C_BLOCK | |
| 853 | I2C_FUNC_SMBUS_BYTE_DATA)) { |
| 854 | dev_err(&adapter->dev, "doesn't support I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_I2C_BLOCK\n"); |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 855 | return -ENODEV; |
Mylène Josserand | f2b84ee | 2016-03-29 08:56:00 +0200 | [diff] [blame] | 856 | } |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 857 | |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 858 | m41t80_data = devm_kzalloc(&client->dev, sizeof(*m41t80_data), |
| 859 | GFP_KERNEL); |
| 860 | if (!m41t80_data) |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 861 | return -ENOMEM; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 862 | |
Javier Martinez Canillas | eb235c5 | 2017-03-03 11:29:23 -0300 | [diff] [blame] | 863 | if (client->dev.of_node) |
| 864 | m41t80_data->features = (unsigned long) |
| 865 | of_device_get_match_data(&client->dev); |
| 866 | else |
| 867 | m41t80_data->features = id->driver_data; |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 868 | i2c_set_clientdata(client, m41t80_data); |
| 869 | |
| 870 | if (client->irq > 0) { |
| 871 | rc = devm_request_threaded_irq(&client->dev, client->irq, |
| 872 | NULL, m41t80_handle_irq, |
| 873 | IRQF_TRIGGER_LOW | IRQF_ONESHOT, |
| 874 | "m41t80", client); |
| 875 | if (rc) { |
| 876 | dev_warn(&client->dev, "unable to request IRQ, alarms disabled\n"); |
| 877 | client->irq = 0; |
| 878 | } else { |
| 879 | m41t80_rtc_ops.read_alarm = m41t80_read_alarm; |
| 880 | m41t80_rtc_ops.set_alarm = m41t80_set_alarm; |
| 881 | m41t80_rtc_ops.alarm_irq_enable = m41t80_alarm_irq_enable; |
Mylène Josserand | 3726a21 | 2016-03-29 08:56:04 +0200 | [diff] [blame] | 882 | /* Enable the wakealarm */ |
| 883 | device_init_wakeup(&client->dev, true); |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 884 | } |
| 885 | } |
John Stultz | a015dbc | 2011-05-06 17:24:27 -0700 | [diff] [blame] | 886 | |
Jingoo Han | 4ebabb7 | 2013-04-29 16:20:42 -0700 | [diff] [blame] | 887 | rtc = devm_rtc_device_register(&client->dev, client->name, |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 888 | &m41t80_rtc_ops, THIS_MODULE); |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 889 | if (IS_ERR(rtc)) |
| 890 | return PTR_ERR(rtc); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 891 | |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 892 | m41t80_data->rtc = rtc; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 893 | |
| 894 | /* Make sure HT (Halt Update) bit is cleared */ |
| 895 | rc = i2c_smbus_read_byte_data(client, M41T80_REG_ALARM_HOUR); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 896 | |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 897 | if (rc >= 0 && rc & M41T80_ALHOUR_HT) { |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 898 | if (m41t80_data->features & M41T80_FEATURE_HT) { |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 899 | m41t80_get_datetime(client, &tm); |
| 900 | dev_info(&client->dev, "HT bit was set!\n"); |
| 901 | dev_info(&client->dev, |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 902 | "Power Down at %04i-%02i-%02i %02i:%02i:%02i\n", |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 903 | tm.tm_year + 1900, |
| 904 | tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, |
| 905 | tm.tm_min, tm.tm_sec); |
| 906 | } |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 907 | rc = i2c_smbus_write_byte_data(client, M41T80_REG_ALARM_HOUR, |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 908 | rc & ~M41T80_ALHOUR_HT); |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 909 | } |
| 910 | |
| 911 | if (rc < 0) { |
| 912 | dev_err(&client->dev, "Can't clear HT bit\n"); |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 913 | return rc; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | /* Make sure ST (stop) bit is cleared */ |
| 917 | rc = i2c_smbus_read_byte_data(client, M41T80_REG_SEC); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 918 | |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 919 | if (rc >= 0 && rc & M41T80_SEC_ST) |
| 920 | rc = i2c_smbus_write_byte_data(client, M41T80_REG_SEC, |
Mylène Josserand | fc99b90 | 2016-03-29 08:56:02 +0200 | [diff] [blame] | 921 | rc & ~M41T80_SEC_ST); |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 922 | if (rc < 0) { |
| 923 | dev_err(&client->dev, "Can't clear ST bit\n"); |
Wolfram Sang | 85d7704 | 2014-06-06 14:35:46 -0700 | [diff] [blame] | 924 | return rc; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 925 | } |
| 926 | |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 927 | /* Export sysfs entries */ |
| 928 | rc = sysfs_create_group(&(&client->dev)->kobj, &attr_group); |
| 929 | if (rc) { |
| 930 | dev_err(&client->dev, "Failed to create sysfs group: %d\n", rc); |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 931 | return rc; |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 932 | } |
| 933 | |
Sudip Mukherjee | 104b2d8 | 2016-07-03 21:18:58 +0100 | [diff] [blame] | 934 | rc = devm_add_action_or_reset(&client->dev, m41t80_remove_sysfs_group, |
| 935 | &client->dev); |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 936 | if (rc) { |
Mylène Josserand | ef6b312 | 2016-03-29 08:55:58 +0200 | [diff] [blame] | 937 | dev_err(&client->dev, |
| 938 | "Failed to add sysfs cleanup action: %d\n", rc); |
| 939 | return rc; |
| 940 | } |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 941 | |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 942 | #ifdef CONFIG_RTC_DRV_M41T80_WDT |
Mylène Josserand | 9c6dfed | 2016-03-29 11:04:13 +0200 | [diff] [blame] | 943 | if (m41t80_data->features & M41T80_FEATURE_HT) { |
Maciej W. Rozycki | 417607d | 2008-05-12 14:02:35 -0700 | [diff] [blame] | 944 | save_client = client; |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 945 | rc = misc_register(&wdt_dev); |
| 946 | if (rc) |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 947 | return rc; |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 948 | rc = register_reboot_notifier(&wdt_notifier); |
| 949 | if (rc) { |
| 950 | misc_deregister(&wdt_dev); |
Wolfram Sang | c67fedf | 2014-06-06 14:35:45 -0700 | [diff] [blame] | 951 | return rc; |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 952 | } |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 953 | } |
| 954 | #endif |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 955 | return 0; |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | static int m41t80_remove(struct i2c_client *client) |
| 959 | { |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 960 | #ifdef CONFIG_RTC_DRV_M41T80_WDT |
Jingoo Han | 4ebabb7 | 2013-04-29 16:20:42 -0700 | [diff] [blame] | 961 | struct m41t80_data *clientdata = i2c_get_clientdata(client); |
| 962 | |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 963 | if (clientdata->features & M41T80_FEATURE_HT) { |
Atsushi Nemoto | 617780d | 2007-07-17 04:05:04 -0700 | [diff] [blame] | 964 | misc_deregister(&wdt_dev); |
| 965 | unregister_reboot_notifier(&wdt_notifier); |
| 966 | } |
| 967 | #endif |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 968 | |
| 969 | return 0; |
| 970 | } |
| 971 | |
| 972 | static struct i2c_driver m41t80_driver = { |
| 973 | .driver = { |
David Brownell | afe1ab4 | 2007-08-22 14:01:27 -0700 | [diff] [blame] | 974 | .name = "rtc-m41t80", |
Javier Martinez Canillas | eb235c5 | 2017-03-03 11:29:23 -0300 | [diff] [blame] | 975 | .of_match_table = of_match_ptr(m41t80_of_match), |
Stefan Christ | ae036af | 2016-07-05 13:53:17 +0200 | [diff] [blame] | 976 | .pm = &m41t80_pm, |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 977 | }, |
| 978 | .probe = m41t80_probe, |
| 979 | .remove = m41t80_remove, |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 980 | .id_table = m41t80_id, |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 981 | }; |
| 982 | |
Axel Lin | 0abc920 | 2012-03-23 15:02:31 -0700 | [diff] [blame] | 983 | module_i2c_driver(m41t80_driver); |
Atsushi Nemoto | caaff56 | 2007-07-17 04:05:02 -0700 | [diff] [blame] | 984 | |
| 985 | MODULE_AUTHOR("Alexander Bigga <ab@mycable.de>"); |
| 986 | MODULE_DESCRIPTION("ST Microelectronics M41T80 series RTC I2C Client Driver"); |
| 987 | MODULE_LICENSE("GPL"); |