Alexandre Belloni | de311aa | 2019-04-01 18:33:49 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 2 | /* |
| 3 | * An I2C driver for the PCF85063 RTC |
| 4 | * Copyright 2014 Rose Technology |
| 5 | * |
| 6 | * Author: Søren Andersen <san@rosetechnology.dk> |
| 7 | * Maintainers: http://www.nslu2-linux.org/ |
Alexandre Belloni | 5b3a3ad | 2019-04-01 18:08:13 +0200 | [diff] [blame] | 8 | * |
| 9 | * Copyright (C) 2019 Micro Crystal AG |
| 10 | * Author: Alexandre Belloni <alexandre.belloni@bootlin.com> |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 11 | */ |
Michael McCormick | 8c229ab | 2020-01-24 14:52:38 +1300 | [diff] [blame] | 12 | #include <linux/clk-provider.h> |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 13 | #include <linux/i2c.h> |
| 14 | #include <linux/bcd.h> |
| 15 | #include <linux/rtc.h> |
| 16 | #include <linux/module.h> |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 17 | #include <linux/of_device.h> |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 18 | #include <linux/pm_wakeirq.h> |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 19 | #include <linux/regmap.h> |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 20 | |
Chris DeBruin | 0d981f8 | 2016-07-12 17:15:46 -0400 | [diff] [blame] | 21 | /* |
| 22 | * Information for this driver was pulled from the following datasheets. |
| 23 | * |
Alexander A. Klimov | 3567d3d | 2020-07-06 08:27:27 +0200 | [diff] [blame] | 24 | * https://www.nxp.com/documents/data_sheet/PCF85063A.pdf |
| 25 | * https://www.nxp.com/documents/data_sheet/PCF85063TP.pdf |
Chris DeBruin | 0d981f8 | 2016-07-12 17:15:46 -0400 | [diff] [blame] | 26 | * |
| 27 | * PCF85063A -- Rev. 6 — 18 November 2015 |
| 28 | * PCF85063TP -- Rev. 4 — 6 May 2015 |
Alexandre Belloni | 5b3a3ad | 2019-04-01 18:08:13 +0200 | [diff] [blame] | 29 | * |
| 30 | * https://www.microcrystal.com/fileadmin/Media/Products/RTC/App.Manual/RV-8263-C7_App-Manual.pdf |
| 31 | * RV8263 -- Rev. 1.0 — January 2019 |
| 32 | */ |
Chris DeBruin | 0d981f8 | 2016-07-12 17:15:46 -0400 | [diff] [blame] | 33 | |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 34 | #define PCF85063_REG_CTRL1 0x00 /* status */ |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 35 | #define PCF85063_REG_CTRL1_CAP_SEL BIT(0) |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 36 | #define PCF85063_REG_CTRL1_STOP BIT(5) |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 37 | |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 38 | #define PCF85063_REG_CTRL2 0x01 |
| 39 | #define PCF85063_CTRL2_AF BIT(6) |
| 40 | #define PCF85063_CTRL2_AIE BIT(7) |
| 41 | |
Alexandre Belloni | 85370d3 | 2019-04-01 18:08:15 +0200 | [diff] [blame] | 42 | #define PCF85063_REG_OFFSET 0x02 |
| 43 | #define PCF85063_OFFSET_SIGN_BIT 6 /* 2's complement sign bit */ |
| 44 | #define PCF85063_OFFSET_MODE BIT(7) |
| 45 | #define PCF85063_OFFSET_STEP0 4340 |
| 46 | #define PCF85063_OFFSET_STEP1 4069 |
| 47 | |
Michael McCormick | 8c229ab | 2020-01-24 14:52:38 +1300 | [diff] [blame] | 48 | #define PCF85063_REG_CLKO_F_MASK 0x07 /* frequency mask */ |
| 49 | #define PCF85063_REG_CLKO_F_32768HZ 0x00 |
| 50 | #define PCF85063_REG_CLKO_F_OFF 0x07 |
| 51 | |
Alexandre Belloni | fadfd09 | 2019-04-01 18:08:14 +0200 | [diff] [blame] | 52 | #define PCF85063_REG_RAM 0x03 |
| 53 | |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 54 | #define PCF85063_REG_SC 0x04 /* datetime */ |
Juergen Borleis | 6cc4c8b | 2016-02-09 11:57:26 +0100 | [diff] [blame] | 55 | #define PCF85063_REG_SC_OS 0x80 |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 56 | |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 57 | #define PCF85063_REG_ALM_S 0x0b |
| 58 | #define PCF85063_AEN BIT(7) |
| 59 | |
Alexandre Belloni | 0e2e877 | 2019-04-01 18:08:11 +0200 | [diff] [blame] | 60 | struct pcf85063_config { |
| 61 | struct regmap_config regmap; |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 62 | unsigned has_alarms:1; |
Alexandre Belloni | 5b3a3ad | 2019-04-01 18:08:13 +0200 | [diff] [blame] | 63 | unsigned force_cap_7000:1; |
Alexandre Belloni | 0e2e877 | 2019-04-01 18:08:11 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 66 | struct pcf85063 { |
| 67 | struct rtc_device *rtc; |
| 68 | struct regmap *regmap; |
Michael McCormick | 8c229ab | 2020-01-24 14:52:38 +1300 | [diff] [blame] | 69 | #ifdef CONFIG_COMMON_CLK |
| 70 | struct clk_hw clkout_hw; |
| 71 | #endif |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 72 | }; |
Chris DeBruin | 0d981f8 | 2016-07-12 17:15:46 -0400 | [diff] [blame] | 73 | |
Alexandre Belloni | 965271d | 2018-02-21 16:09:27 +0100 | [diff] [blame] | 74 | static int pcf85063_rtc_read_time(struct device *dev, struct rtc_time *tm) |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 75 | { |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 76 | struct pcf85063 *pcf85063 = dev_get_drvdata(dev); |
Juergen Borleis | 7b57684 | 2016-02-09 11:57:25 +0100 | [diff] [blame] | 77 | int rc; |
Juergen Borleis | 7b57684 | 2016-02-09 11:57:25 +0100 | [diff] [blame] | 78 | u8 regs[7]; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 79 | |
Juergen Borleis | 7b57684 | 2016-02-09 11:57:25 +0100 | [diff] [blame] | 80 | /* |
| 81 | * while reading, the time/date registers are blocked and not updated |
| 82 | * anymore until the access is finished. To not lose a second |
| 83 | * event, the access must be finished within one second. So, read all |
| 84 | * time/date registers in one turn. |
| 85 | */ |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 86 | rc = regmap_bulk_read(pcf85063->regmap, PCF85063_REG_SC, regs, |
| 87 | sizeof(regs)); |
| 88 | if (rc) |
| 89 | return rc; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 90 | |
Juergen Borleis | 6cc4c8b | 2016-02-09 11:57:26 +0100 | [diff] [blame] | 91 | /* if the clock has lost its power it makes no sense to use its time */ |
| 92 | if (regs[0] & PCF85063_REG_SC_OS) { |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 93 | dev_warn(&pcf85063->rtc->dev, "Power loss detected, invalid time\n"); |
Juergen Borleis | 6cc4c8b | 2016-02-09 11:57:26 +0100 | [diff] [blame] | 94 | return -EINVAL; |
| 95 | } |
| 96 | |
Juergen Borleis | 7b57684 | 2016-02-09 11:57:25 +0100 | [diff] [blame] | 97 | tm->tm_sec = bcd2bin(regs[0] & 0x7F); |
| 98 | tm->tm_min = bcd2bin(regs[1] & 0x7F); |
| 99 | tm->tm_hour = bcd2bin(regs[2] & 0x3F); /* rtc hr 0-23 */ |
| 100 | tm->tm_mday = bcd2bin(regs[3] & 0x3F); |
| 101 | tm->tm_wday = regs[4] & 0x07; |
| 102 | tm->tm_mon = bcd2bin(regs[5] & 0x1F) - 1; /* rtc mn 1-12 */ |
| 103 | tm->tm_year = bcd2bin(regs[6]); |
Alexandre Belloni | c421ce7 | 2016-07-18 11:08:59 +0200 | [diff] [blame] | 104 | tm->tm_year += 100; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 105 | |
Alexandre Belloni | 0a6b888 | 2018-02-21 16:07:34 +0100 | [diff] [blame] | 106 | return 0; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Alexandre Belloni | 965271d | 2018-02-21 16:09:27 +0100 | [diff] [blame] | 109 | static int pcf85063_rtc_set_time(struct device *dev, struct rtc_time *tm) |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 110 | { |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 111 | struct pcf85063 *pcf85063 = dev_get_drvdata(dev); |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 112 | int rc; |
Chris DeBruin | 0d981f8 | 2016-07-12 17:15:46 -0400 | [diff] [blame] | 113 | u8 regs[7]; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 114 | |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 115 | /* |
| 116 | * to accurately set the time, reset the divider chain and keep it in |
| 117 | * reset state until all time/date registers are written |
| 118 | */ |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 119 | rc = regmap_update_bits(pcf85063->regmap, PCF85063_REG_CTRL1, |
| 120 | PCF85063_REG_CTRL1_STOP, |
| 121 | PCF85063_REG_CTRL1_STOP); |
| 122 | if (rc) |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 123 | return rc; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 124 | |
| 125 | /* hours, minutes and seconds */ |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 126 | regs[0] = bin2bcd(tm->tm_sec) & 0x7F; /* clear OS flag */ |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 127 | |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 128 | regs[1] = bin2bcd(tm->tm_min); |
| 129 | regs[2] = bin2bcd(tm->tm_hour); |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 130 | |
| 131 | /* Day of month, 1 - 31 */ |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 132 | regs[3] = bin2bcd(tm->tm_mday); |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 133 | |
| 134 | /* Day, 0 - 6 */ |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 135 | regs[4] = tm->tm_wday & 0x07; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 136 | |
| 137 | /* month, 1 - 12 */ |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 138 | regs[5] = bin2bcd(tm->tm_mon + 1); |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 139 | |
| 140 | /* year and century */ |
Alexandre Belloni | c421ce7 | 2016-07-18 11:08:59 +0200 | [diff] [blame] | 141 | regs[6] = bin2bcd(tm->tm_year - 100); |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 142 | |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 143 | /* write all registers at once */ |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 144 | rc = regmap_bulk_write(pcf85063->regmap, PCF85063_REG_SC, |
| 145 | regs, sizeof(regs)); |
| 146 | if (rc) |
Juergen Borleis | 31d4d33 | 2016-02-09 11:57:27 +0100 | [diff] [blame] | 147 | return rc; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 148 | |
Chris DeBruin | 0d981f8 | 2016-07-12 17:15:46 -0400 | [diff] [blame] | 149 | /* |
| 150 | * Write the control register as a separate action since the size of |
| 151 | * the register space is different between the PCF85063TP and |
| 152 | * PCF85063A devices. The rollover point can not be used. |
| 153 | */ |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 154 | return regmap_update_bits(pcf85063->regmap, PCF85063_REG_CTRL1, |
| 155 | PCF85063_REG_CTRL1_STOP, 0); |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 158 | static int pcf85063_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 159 | { |
| 160 | struct pcf85063 *pcf85063 = dev_get_drvdata(dev); |
| 161 | u8 buf[4]; |
| 162 | unsigned int val; |
| 163 | int ret; |
| 164 | |
| 165 | ret = regmap_bulk_read(pcf85063->regmap, PCF85063_REG_ALM_S, |
| 166 | buf, sizeof(buf)); |
| 167 | if (ret) |
| 168 | return ret; |
| 169 | |
| 170 | alrm->time.tm_sec = bcd2bin(buf[0]); |
| 171 | alrm->time.tm_min = bcd2bin(buf[1]); |
| 172 | alrm->time.tm_hour = bcd2bin(buf[2]); |
| 173 | alrm->time.tm_mday = bcd2bin(buf[3]); |
| 174 | |
| 175 | ret = regmap_read(pcf85063->regmap, PCF85063_REG_CTRL2, &val); |
| 176 | if (ret) |
| 177 | return ret; |
| 178 | |
| 179 | alrm->enabled = !!(val & PCF85063_CTRL2_AIE); |
| 180 | |
| 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | static int pcf85063_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 185 | { |
| 186 | struct pcf85063 *pcf85063 = dev_get_drvdata(dev); |
| 187 | u8 buf[5]; |
| 188 | int ret; |
| 189 | |
| 190 | buf[0] = bin2bcd(alrm->time.tm_sec); |
| 191 | buf[1] = bin2bcd(alrm->time.tm_min); |
| 192 | buf[2] = bin2bcd(alrm->time.tm_hour); |
| 193 | buf[3] = bin2bcd(alrm->time.tm_mday); |
| 194 | buf[4] = PCF85063_AEN; /* Do not match on week day */ |
| 195 | |
| 196 | ret = regmap_update_bits(pcf85063->regmap, PCF85063_REG_CTRL2, |
| 197 | PCF85063_CTRL2_AIE | PCF85063_CTRL2_AF, 0); |
| 198 | if (ret) |
| 199 | return ret; |
| 200 | |
| 201 | ret = regmap_bulk_write(pcf85063->regmap, PCF85063_REG_ALM_S, |
| 202 | buf, sizeof(buf)); |
| 203 | if (ret) |
| 204 | return ret; |
| 205 | |
| 206 | return regmap_update_bits(pcf85063->regmap, PCF85063_REG_CTRL2, |
| 207 | PCF85063_CTRL2_AIE | PCF85063_CTRL2_AF, |
| 208 | alrm->enabled ? PCF85063_CTRL2_AIE | PCF85063_CTRL2_AF : PCF85063_CTRL2_AF); |
| 209 | } |
| 210 | |
| 211 | static int pcf85063_rtc_alarm_irq_enable(struct device *dev, |
| 212 | unsigned int enabled) |
| 213 | { |
| 214 | struct pcf85063 *pcf85063 = dev_get_drvdata(dev); |
| 215 | |
| 216 | return regmap_update_bits(pcf85063->regmap, PCF85063_REG_CTRL2, |
| 217 | PCF85063_CTRL2_AIE, |
| 218 | enabled ? PCF85063_CTRL2_AIE : 0); |
| 219 | } |
| 220 | |
| 221 | static irqreturn_t pcf85063_rtc_handle_irq(int irq, void *dev_id) |
| 222 | { |
| 223 | struct pcf85063 *pcf85063 = dev_id; |
| 224 | unsigned int val; |
| 225 | int err; |
| 226 | |
| 227 | err = regmap_read(pcf85063->regmap, PCF85063_REG_CTRL2, &val); |
| 228 | if (err) |
| 229 | return IRQ_NONE; |
| 230 | |
| 231 | if (val & PCF85063_CTRL2_AF) { |
| 232 | rtc_update_irq(pcf85063->rtc, 1, RTC_IRQF | RTC_AF); |
| 233 | regmap_update_bits(pcf85063->regmap, PCF85063_REG_CTRL2, |
| 234 | PCF85063_CTRL2_AIE | PCF85063_CTRL2_AF, |
| 235 | 0); |
| 236 | return IRQ_HANDLED; |
| 237 | } |
| 238 | |
| 239 | return IRQ_NONE; |
| 240 | } |
| 241 | |
Alexandre Belloni | 85370d3 | 2019-04-01 18:08:15 +0200 | [diff] [blame] | 242 | static int pcf85063_read_offset(struct device *dev, long *offset) |
| 243 | { |
| 244 | struct pcf85063 *pcf85063 = dev_get_drvdata(dev); |
| 245 | long val; |
| 246 | u32 reg; |
| 247 | int ret; |
| 248 | |
| 249 | ret = regmap_read(pcf85063->regmap, PCF85063_REG_OFFSET, ®); |
| 250 | if (ret < 0) |
| 251 | return ret; |
| 252 | |
| 253 | val = sign_extend32(reg & ~PCF85063_OFFSET_MODE, |
| 254 | PCF85063_OFFSET_SIGN_BIT); |
| 255 | |
| 256 | if (reg & PCF85063_OFFSET_MODE) |
| 257 | *offset = val * PCF85063_OFFSET_STEP1; |
| 258 | else |
| 259 | *offset = val * PCF85063_OFFSET_STEP0; |
| 260 | |
| 261 | return 0; |
| 262 | } |
| 263 | |
| 264 | static int pcf85063_set_offset(struct device *dev, long offset) |
| 265 | { |
| 266 | struct pcf85063 *pcf85063 = dev_get_drvdata(dev); |
| 267 | s8 mode0, mode1, reg; |
| 268 | unsigned int error0, error1; |
| 269 | |
| 270 | if (offset > PCF85063_OFFSET_STEP0 * 63) |
| 271 | return -ERANGE; |
| 272 | if (offset < PCF85063_OFFSET_STEP0 * -64) |
| 273 | return -ERANGE; |
| 274 | |
| 275 | mode0 = DIV_ROUND_CLOSEST(offset, PCF85063_OFFSET_STEP0); |
| 276 | mode1 = DIV_ROUND_CLOSEST(offset, PCF85063_OFFSET_STEP1); |
| 277 | |
| 278 | error0 = abs(offset - (mode0 * PCF85063_OFFSET_STEP0)); |
| 279 | error1 = abs(offset - (mode1 * PCF85063_OFFSET_STEP1)); |
| 280 | if (mode1 > 63 || mode1 < -64 || error0 < error1) |
| 281 | reg = mode0 & ~PCF85063_OFFSET_MODE; |
| 282 | else |
| 283 | reg = mode1 | PCF85063_OFFSET_MODE; |
| 284 | |
| 285 | return regmap_write(pcf85063->regmap, PCF85063_REG_OFFSET, reg); |
| 286 | } |
| 287 | |
Alexandre Belloni | 27ff836 | 2019-04-01 18:08:16 +0200 | [diff] [blame] | 288 | static int pcf85063_ioctl(struct device *dev, unsigned int cmd, |
| 289 | unsigned long arg) |
| 290 | { |
| 291 | struct pcf85063 *pcf85063 = dev_get_drvdata(dev); |
| 292 | int status, ret = 0; |
| 293 | |
| 294 | switch (cmd) { |
| 295 | case RTC_VL_READ: |
| 296 | ret = regmap_read(pcf85063->regmap, PCF85063_REG_SC, &status); |
| 297 | if (ret < 0) |
| 298 | return ret; |
| 299 | |
Alexandre Belloni | f86dc5b | 2019-12-14 23:02:53 +0100 | [diff] [blame] | 300 | status = status & PCF85063_REG_SC_OS ? RTC_VL_DATA_INVALID : 0; |
Alexandre Belloni | 27ff836 | 2019-04-01 18:08:16 +0200 | [diff] [blame] | 301 | |
Alexandre Belloni | f86dc5b | 2019-12-14 23:02:53 +0100 | [diff] [blame] | 302 | return put_user(status, (unsigned int __user *)arg); |
Alexandre Belloni | 27ff836 | 2019-04-01 18:08:16 +0200 | [diff] [blame] | 303 | |
Alexandre Belloni | 27ff836 | 2019-04-01 18:08:16 +0200 | [diff] [blame] | 304 | default: |
| 305 | return -ENOIOCTLCMD; |
| 306 | } |
| 307 | } |
| 308 | |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 309 | static const struct rtc_class_ops pcf85063_rtc_ops = { |
| 310 | .read_time = pcf85063_rtc_read_time, |
Alexandre Belloni | 85370d3 | 2019-04-01 18:08:15 +0200 | [diff] [blame] | 311 | .set_time = pcf85063_rtc_set_time, |
| 312 | .read_offset = pcf85063_read_offset, |
| 313 | .set_offset = pcf85063_set_offset, |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 314 | .read_alarm = pcf85063_rtc_read_alarm, |
| 315 | .set_alarm = pcf85063_rtc_set_alarm, |
| 316 | .alarm_irq_enable = pcf85063_rtc_alarm_irq_enable, |
Alexandre Belloni | 27ff836 | 2019-04-01 18:08:16 +0200 | [diff] [blame] | 317 | .ioctl = pcf85063_ioctl, |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 318 | }; |
| 319 | |
Alexandre Belloni | fadfd09 | 2019-04-01 18:08:14 +0200 | [diff] [blame] | 320 | static int pcf85063_nvmem_read(void *priv, unsigned int offset, |
| 321 | void *val, size_t bytes) |
| 322 | { |
| 323 | return regmap_read(priv, PCF85063_REG_RAM, val); |
| 324 | } |
| 325 | |
| 326 | static int pcf85063_nvmem_write(void *priv, unsigned int offset, |
| 327 | void *val, size_t bytes) |
| 328 | { |
| 329 | return regmap_write(priv, PCF85063_REG_RAM, *(u8 *)val); |
| 330 | } |
| 331 | |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 332 | static int pcf85063_load_capacitance(struct pcf85063 *pcf85063, |
Alexandre Belloni | 5b3a3ad | 2019-04-01 18:08:13 +0200 | [diff] [blame] | 333 | const struct device_node *np, |
| 334 | unsigned int force_cap) |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 335 | { |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 336 | u32 load = 7000; |
| 337 | u8 reg = 0; |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 338 | |
Alexandre Belloni | 5b3a3ad | 2019-04-01 18:08:13 +0200 | [diff] [blame] | 339 | if (force_cap) |
| 340 | load = force_cap; |
| 341 | else |
| 342 | of_property_read_u32(np, "quartz-load-femtofarads", &load); |
| 343 | |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 344 | switch (load) { |
| 345 | default: |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 346 | dev_warn(&pcf85063->rtc->dev, "Unknown quartz-load-femtofarads value: %d. Assuming 7000", |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 347 | load); |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 348 | fallthrough; |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 349 | case 7000: |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 350 | break; |
| 351 | case 12500: |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 352 | reg = PCF85063_REG_CTRL1_CAP_SEL; |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 353 | break; |
| 354 | } |
| 355 | |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 356 | return regmap_update_bits(pcf85063->regmap, PCF85063_REG_CTRL1, |
| 357 | PCF85063_REG_CTRL1_CAP_SEL, reg); |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 358 | } |
| 359 | |
Michael McCormick | 8c229ab | 2020-01-24 14:52:38 +1300 | [diff] [blame] | 360 | #ifdef CONFIG_COMMON_CLK |
| 361 | /* |
| 362 | * Handling of the clkout |
| 363 | */ |
| 364 | |
| 365 | #define clkout_hw_to_pcf85063(_hw) container_of(_hw, struct pcf85063, clkout_hw) |
| 366 | |
| 367 | static int clkout_rates[] = { |
| 368 | 32768, |
| 369 | 16384, |
| 370 | 8192, |
| 371 | 4096, |
| 372 | 2048, |
| 373 | 1024, |
| 374 | 1, |
| 375 | 0 |
| 376 | }; |
| 377 | |
| 378 | static unsigned long pcf85063_clkout_recalc_rate(struct clk_hw *hw, |
| 379 | unsigned long parent_rate) |
| 380 | { |
| 381 | struct pcf85063 *pcf85063 = clkout_hw_to_pcf85063(hw); |
| 382 | unsigned int buf; |
| 383 | int ret = regmap_read(pcf85063->regmap, PCF85063_REG_CTRL2, &buf); |
| 384 | |
| 385 | if (ret < 0) |
| 386 | return 0; |
| 387 | |
| 388 | buf &= PCF85063_REG_CLKO_F_MASK; |
| 389 | return clkout_rates[buf]; |
| 390 | } |
| 391 | |
| 392 | static long pcf85063_clkout_round_rate(struct clk_hw *hw, unsigned long rate, |
| 393 | unsigned long *prate) |
| 394 | { |
| 395 | int i; |
| 396 | |
| 397 | for (i = 0; i < ARRAY_SIZE(clkout_rates); i++) |
| 398 | if (clkout_rates[i] <= rate) |
| 399 | return clkout_rates[i]; |
| 400 | |
| 401 | return 0; |
| 402 | } |
| 403 | |
| 404 | static int pcf85063_clkout_set_rate(struct clk_hw *hw, unsigned long rate, |
| 405 | unsigned long parent_rate) |
| 406 | { |
| 407 | struct pcf85063 *pcf85063 = clkout_hw_to_pcf85063(hw); |
| 408 | int i; |
| 409 | |
| 410 | for (i = 0; i < ARRAY_SIZE(clkout_rates); i++) |
| 411 | if (clkout_rates[i] == rate) |
| 412 | return regmap_update_bits(pcf85063->regmap, |
| 413 | PCF85063_REG_CTRL2, |
| 414 | PCF85063_REG_CLKO_F_MASK, i); |
| 415 | |
| 416 | return -EINVAL; |
| 417 | } |
| 418 | |
| 419 | static int pcf85063_clkout_control(struct clk_hw *hw, bool enable) |
| 420 | { |
| 421 | struct pcf85063 *pcf85063 = clkout_hw_to_pcf85063(hw); |
| 422 | unsigned int buf; |
| 423 | int ret; |
| 424 | |
| 425 | ret = regmap_read(pcf85063->regmap, PCF85063_REG_OFFSET, &buf); |
| 426 | if (ret < 0) |
| 427 | return ret; |
| 428 | buf &= PCF85063_REG_CLKO_F_MASK; |
| 429 | |
| 430 | if (enable) { |
| 431 | if (buf == PCF85063_REG_CLKO_F_OFF) |
| 432 | buf = PCF85063_REG_CLKO_F_32768HZ; |
| 433 | else |
| 434 | return 0; |
| 435 | } else { |
| 436 | if (buf != PCF85063_REG_CLKO_F_OFF) |
| 437 | buf = PCF85063_REG_CLKO_F_OFF; |
| 438 | else |
| 439 | return 0; |
| 440 | } |
| 441 | |
| 442 | return regmap_update_bits(pcf85063->regmap, PCF85063_REG_CTRL2, |
| 443 | PCF85063_REG_CLKO_F_MASK, buf); |
| 444 | } |
| 445 | |
| 446 | static int pcf85063_clkout_prepare(struct clk_hw *hw) |
| 447 | { |
| 448 | return pcf85063_clkout_control(hw, 1); |
| 449 | } |
| 450 | |
| 451 | static void pcf85063_clkout_unprepare(struct clk_hw *hw) |
| 452 | { |
| 453 | pcf85063_clkout_control(hw, 0); |
| 454 | } |
| 455 | |
| 456 | static int pcf85063_clkout_is_prepared(struct clk_hw *hw) |
| 457 | { |
| 458 | struct pcf85063 *pcf85063 = clkout_hw_to_pcf85063(hw); |
| 459 | unsigned int buf; |
| 460 | int ret = regmap_read(pcf85063->regmap, PCF85063_REG_CTRL2, &buf); |
| 461 | |
| 462 | if (ret < 0) |
| 463 | return 0; |
| 464 | |
| 465 | return (buf & PCF85063_REG_CLKO_F_MASK) != PCF85063_REG_CLKO_F_OFF; |
| 466 | } |
| 467 | |
| 468 | static const struct clk_ops pcf85063_clkout_ops = { |
| 469 | .prepare = pcf85063_clkout_prepare, |
| 470 | .unprepare = pcf85063_clkout_unprepare, |
| 471 | .is_prepared = pcf85063_clkout_is_prepared, |
| 472 | .recalc_rate = pcf85063_clkout_recalc_rate, |
| 473 | .round_rate = pcf85063_clkout_round_rate, |
| 474 | .set_rate = pcf85063_clkout_set_rate, |
| 475 | }; |
| 476 | |
| 477 | static struct clk *pcf85063_clkout_register_clk(struct pcf85063 *pcf85063) |
| 478 | { |
| 479 | struct clk *clk; |
| 480 | struct clk_init_data init; |
| 481 | |
| 482 | init.name = "pcf85063-clkout"; |
| 483 | init.ops = &pcf85063_clkout_ops; |
| 484 | init.flags = 0; |
| 485 | init.parent_names = NULL; |
| 486 | init.num_parents = 0; |
| 487 | pcf85063->clkout_hw.init = &init; |
| 488 | |
| 489 | /* optional override of the clockname */ |
| 490 | of_property_read_string(pcf85063->rtc->dev.of_node, |
| 491 | "clock-output-names", &init.name); |
| 492 | |
| 493 | /* register the clock */ |
| 494 | clk = devm_clk_register(&pcf85063->rtc->dev, &pcf85063->clkout_hw); |
| 495 | |
| 496 | if (!IS_ERR(clk)) |
| 497 | of_clk_add_provider(pcf85063->rtc->dev.of_node, |
| 498 | of_clk_src_simple_get, clk); |
| 499 | |
| 500 | return clk; |
| 501 | } |
| 502 | #endif |
| 503 | |
Alexandre Belloni | 0e2e877 | 2019-04-01 18:08:11 +0200 | [diff] [blame] | 504 | static const struct pcf85063_config pcf85063tp_config = { |
| 505 | .regmap = { |
| 506 | .reg_bits = 8, |
| 507 | .val_bits = 8, |
| 508 | .max_register = 0x0a, |
| 509 | }, |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 510 | }; |
| 511 | |
Alexandre Belloni | 0f21700 | 2019-04-01 18:08:05 +0200 | [diff] [blame] | 512 | static int pcf85063_probe(struct i2c_client *client) |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 513 | { |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 514 | struct pcf85063 *pcf85063; |
| 515 | unsigned int tmp; |
Mirza Krak | c18b4c5 | 2016-10-17 15:53:31 +0200 | [diff] [blame] | 516 | int err; |
Alexandre Belloni | 0e2e877 | 2019-04-01 18:08:11 +0200 | [diff] [blame] | 517 | const struct pcf85063_config *config = &pcf85063tp_config; |
| 518 | const void *data = of_device_get_match_data(&client->dev); |
Alexandre Belloni | fadfd09 | 2019-04-01 18:08:14 +0200 | [diff] [blame] | 519 | struct nvmem_config nvmem_cfg = { |
| 520 | .name = "pcf85063_nvram", |
| 521 | .reg_read = pcf85063_nvmem_read, |
| 522 | .reg_write = pcf85063_nvmem_write, |
| 523 | .type = NVMEM_TYPE_BATTERY_BACKED, |
| 524 | .size = 1, |
| 525 | }; |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 526 | |
| 527 | dev_dbg(&client->dev, "%s\n", __func__); |
| 528 | |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 529 | pcf85063 = devm_kzalloc(&client->dev, sizeof(struct pcf85063), |
| 530 | GFP_KERNEL); |
| 531 | if (!pcf85063) |
| 532 | return -ENOMEM; |
| 533 | |
Alexandre Belloni | 0e2e877 | 2019-04-01 18:08:11 +0200 | [diff] [blame] | 534 | if (data) |
| 535 | config = data; |
| 536 | |
| 537 | pcf85063->regmap = devm_regmap_init_i2c(client, &config->regmap); |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 538 | if (IS_ERR(pcf85063->regmap)) |
| 539 | return PTR_ERR(pcf85063->regmap); |
| 540 | |
| 541 | i2c_set_clientdata(client, pcf85063); |
| 542 | |
| 543 | err = regmap_read(pcf85063->regmap, PCF85063_REG_CTRL1, &tmp); |
| 544 | if (err) { |
Mirza Krak | c18b4c5 | 2016-10-17 15:53:31 +0200 | [diff] [blame] | 545 | dev_err(&client->dev, "RTC chip is not present\n"); |
| 546 | return err; |
| 547 | } |
| 548 | |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 549 | pcf85063->rtc = devm_rtc_allocate_device(&client->dev); |
| 550 | if (IS_ERR(pcf85063->rtc)) |
| 551 | return PTR_ERR(pcf85063->rtc); |
| 552 | |
Alexandre Belloni | 5b3a3ad | 2019-04-01 18:08:13 +0200 | [diff] [blame] | 553 | err = pcf85063_load_capacitance(pcf85063, client->dev.of_node, |
| 554 | config->force_cap_7000 ? 7000 : 0); |
Sam Ravnborg | bbb4383 | 2019-01-19 10:00:31 +0100 | [diff] [blame] | 555 | if (err < 0) |
| 556 | dev_warn(&client->dev, "failed to set xtal load capacitance: %d", |
| 557 | err); |
| 558 | |
Alexandre Belloni | e89b60d | 2019-04-01 18:08:10 +0200 | [diff] [blame] | 559 | pcf85063->rtc->ops = &pcf85063_rtc_ops; |
| 560 | pcf85063->rtc->range_min = RTC_TIMESTAMP_BEGIN_2000; |
| 561 | pcf85063->rtc->range_max = RTC_TIMESTAMP_END_2099; |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 562 | pcf85063->rtc->uie_unsupported = 1; |
Alexandre Belloni | d4eaffe | 2021-01-11 00:17:43 +0100 | [diff] [blame] | 563 | clear_bit(RTC_FEATURE_ALARM, pcf85063->rtc->features); |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 564 | |
| 565 | if (config->has_alarms && client->irq > 0) { |
| 566 | err = devm_request_threaded_irq(&client->dev, client->irq, |
| 567 | NULL, pcf85063_rtc_handle_irq, |
| 568 | IRQF_TRIGGER_LOW | IRQF_ONESHOT, |
| 569 | "pcf85063", pcf85063); |
| 570 | if (err) { |
| 571 | dev_warn(&pcf85063->rtc->dev, |
| 572 | "unable to request IRQ, alarms disabled\n"); |
| 573 | } else { |
Alexandre Belloni | d4eaffe | 2021-01-11 00:17:43 +0100 | [diff] [blame] | 574 | set_bit(RTC_FEATURE_ALARM, pcf85063->rtc->features); |
Alexandre Belloni | 05cb3a5 | 2019-04-01 18:08:12 +0200 | [diff] [blame] | 575 | device_init_wakeup(&client->dev, true); |
| 576 | err = dev_pm_set_wake_irq(&client->dev, client->irq); |
| 577 | if (err) |
| 578 | dev_err(&pcf85063->rtc->dev, |
| 579 | "failed to enable irq wake\n"); |
| 580 | } |
| 581 | } |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 582 | |
Alexandre Belloni | fadfd09 | 2019-04-01 18:08:14 +0200 | [diff] [blame] | 583 | nvmem_cfg.priv = pcf85063->regmap; |
Bartosz Golaszewski | 3a905c2d | 2020-11-09 17:34:06 +0100 | [diff] [blame] | 584 | devm_rtc_nvmem_register(pcf85063->rtc, &nvmem_cfg); |
Alexandre Belloni | fadfd09 | 2019-04-01 18:08:14 +0200 | [diff] [blame] | 585 | |
Michael McCormick | 8c229ab | 2020-01-24 14:52:38 +1300 | [diff] [blame] | 586 | #ifdef CONFIG_COMMON_CLK |
| 587 | /* register clk in common clk framework */ |
| 588 | pcf85063_clkout_register_clk(pcf85063); |
| 589 | #endif |
| 590 | |
Bartosz Golaszewski | fdcfd85 | 2020-11-09 17:34:08 +0100 | [diff] [blame] | 591 | return devm_rtc_register_device(pcf85063->rtc); |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 592 | } |
| 593 | |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 594 | #ifdef CONFIG_OF |
Alexandre Belloni | c8ecbc7 | 2021-02-02 12:22:08 +0100 | [diff] [blame^] | 595 | static const struct pcf85063_config pcf85063a_config = { |
| 596 | .regmap = { |
| 597 | .reg_bits = 8, |
| 598 | .val_bits = 8, |
| 599 | .max_register = 0x11, |
| 600 | }, |
| 601 | .has_alarms = 1, |
| 602 | }; |
| 603 | |
| 604 | static const struct pcf85063_config rv8263_config = { |
| 605 | .regmap = { |
| 606 | .reg_bits = 8, |
| 607 | .val_bits = 8, |
| 608 | .max_register = 0x11, |
| 609 | }, |
| 610 | .has_alarms = 1, |
| 611 | .force_cap_7000 = 1, |
| 612 | }; |
| 613 | |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 614 | static const struct of_device_id pcf85063_of_match[] = { |
Alexandre Belloni | 0e2e877 | 2019-04-01 18:08:11 +0200 | [diff] [blame] | 615 | { .compatible = "nxp,pcf85063", .data = &pcf85063tp_config }, |
| 616 | { .compatible = "nxp,pcf85063tp", .data = &pcf85063tp_config }, |
| 617 | { .compatible = "nxp,pcf85063a", .data = &pcf85063a_config }, |
Alexandre Belloni | 5b3a3ad | 2019-04-01 18:08:13 +0200 | [diff] [blame] | 618 | { .compatible = "microcrystal,rv8263", .data = &rv8263_config }, |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 619 | {} |
| 620 | }; |
| 621 | MODULE_DEVICE_TABLE(of, pcf85063_of_match); |
| 622 | #endif |
| 623 | |
| 624 | static struct i2c_driver pcf85063_driver = { |
| 625 | .driver = { |
| 626 | .name = "rtc-pcf85063", |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 627 | .of_match_table = of_match_ptr(pcf85063_of_match), |
| 628 | }, |
Alexandre Belloni | 0f21700 | 2019-04-01 18:08:05 +0200 | [diff] [blame] | 629 | .probe_new = pcf85063_probe, |
Søren Andersen | 796b7ab | 2014-08-08 14:20:22 -0700 | [diff] [blame] | 630 | }; |
| 631 | |
| 632 | module_i2c_driver(pcf85063_driver); |
| 633 | |
| 634 | MODULE_AUTHOR("Søren Andersen <san@rosetechnology.dk>"); |
| 635 | MODULE_DESCRIPTION("PCF85063 RTC driver"); |
| 636 | MODULE_LICENSE("GPL"); |