1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
5 #include <linux/module.h>
6 #include <linux/init.h>
8 #include <linux/platform_device.h>
10 #include <linux/regmap.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
14 /* RTC Register offsets from RTC CTRL REG */
15 #define PM8XXX_ALARM_CTRL_OFFSET 0x01
16 #define PM8XXX_RTC_WRITE_OFFSET 0x02
17 #define PM8XXX_RTC_READ_OFFSET 0x06
18 #define PM8XXX_ALARM_RW_OFFSET 0x0A
20 /* RTC_CTRL register bit fields */
21 #define PM8xxx_RTC_ENABLE BIT(7)
22 #define PM8xxx_RTC_ALARM_CLEAR BIT(0)
24 #define NUM_8_BIT_RTC_REGS 0x4
27 * struct pm8xxx_rtc_regs - describe RTC registers per PMIC versions
28 * @ctrl: base address of control register
29 * @write: base address of write register
30 * @read: base address of read register
31 * @alarm_ctrl: base address of alarm control register
32 * @alarm_ctrl2: base address of alarm control2 register
33 * @alarm_rw: base address of alarm read-write register
34 * @alarm_en: alarm enable mask
36 struct pm8xxx_rtc_regs {
40 unsigned int alarm_ctrl;
41 unsigned int alarm_ctrl2;
42 unsigned int alarm_rw;
43 unsigned int alarm_en;
47 * struct pm8xxx_rtc - rtc driver internal structure
48 * @rtc: rtc device for this driver.
49 * @regmap: regmap used to access RTC registers
50 * @allow_set_time: indicates whether writing to the RTC is allowed
51 * @rtc_alarm_irq: rtc alarm irq number.
52 * @ctrl_reg: rtc control register.
53 * @rtc_dev: device structure.
54 * @ctrl_reg_lock: spinlock protecting access to ctrl_reg.
57 struct rtc_device *rtc;
58 struct regmap *regmap;
61 const struct pm8xxx_rtc_regs *regs;
62 struct device *rtc_dev;
63 spinlock_t ctrl_reg_lock;
67 * Steps to write the RTC registers.
68 * 1. Disable alarm if enabled.
69 * 2. Disable rtc if enabled.
70 * 3. Write 0x00 to LSB.
71 * 4. Write Byte[1], Byte[2], Byte[3] then Byte[0].
72 * 5. Enable rtc if disabled in step 2.
73 * 6. Enable alarm if disabled in step 1.
75 static int pm8xxx_rtc_set_time(struct device *dev, struct rtc_time *tm)
78 unsigned long secs, irq_flags;
79 u8 value[NUM_8_BIT_RTC_REGS], alarm_enabled = 0, rtc_disabled = 0;
80 unsigned int ctrl_reg, rtc_ctrl_reg;
81 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
82 const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
84 if (!rtc_dd->allow_set_time)
87 rtc_tm_to_time(tm, &secs);
89 dev_dbg(dev, "Seconds value to be written to RTC = %lu\n", secs);
91 for (i = 0; i < NUM_8_BIT_RTC_REGS; i++) {
92 value[i] = secs & 0xFF;
96 spin_lock_irqsave(&rtc_dd->ctrl_reg_lock, irq_flags);
98 rc = regmap_read(rtc_dd->regmap, regs->alarm_ctrl, &ctrl_reg);
102 if (ctrl_reg & regs->alarm_en) {
104 ctrl_reg &= ~regs->alarm_en;
105 rc = regmap_write(rtc_dd->regmap, regs->alarm_ctrl, ctrl_reg);
107 dev_err(dev, "Write to RTC Alarm control register failed\n");
112 /* Disable RTC H/w before writing on RTC register */
113 rc = regmap_read(rtc_dd->regmap, regs->ctrl, &rtc_ctrl_reg);
117 if (rtc_ctrl_reg & PM8xxx_RTC_ENABLE) {
119 rtc_ctrl_reg &= ~PM8xxx_RTC_ENABLE;
120 rc = regmap_write(rtc_dd->regmap, regs->ctrl, rtc_ctrl_reg);
122 dev_err(dev, "Write to RTC control register failed\n");
127 /* Write 0 to Byte[0] */
128 rc = regmap_write(rtc_dd->regmap, regs->write, 0);
130 dev_err(dev, "Write to RTC write data register failed\n");
134 /* Write Byte[1], Byte[2], Byte[3] */
135 rc = regmap_bulk_write(rtc_dd->regmap, regs->write + 1,
136 &value[1], sizeof(value) - 1);
138 dev_err(dev, "Write to RTC write data register failed\n");
143 rc = regmap_write(rtc_dd->regmap, regs->write, value[0]);
145 dev_err(dev, "Write to RTC write data register failed\n");
149 /* Enable RTC H/w after writing on RTC register */
151 rtc_ctrl_reg |= PM8xxx_RTC_ENABLE;
152 rc = regmap_write(rtc_dd->regmap, regs->ctrl, rtc_ctrl_reg);
154 dev_err(dev, "Write to RTC control register failed\n");
160 ctrl_reg |= regs->alarm_en;
161 rc = regmap_write(rtc_dd->regmap, regs->alarm_ctrl, ctrl_reg);
163 dev_err(dev, "Write to RTC Alarm control register failed\n");
169 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
174 static int pm8xxx_rtc_read_time(struct device *dev, struct rtc_time *tm)
177 u8 value[NUM_8_BIT_RTC_REGS];
180 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
181 const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
183 rc = regmap_bulk_read(rtc_dd->regmap, regs->read, value, sizeof(value));
185 dev_err(dev, "RTC read data register failed\n");
190 * Read the LSB again and check if there has been a carry over.
191 * If there is, redo the read operation.
193 rc = regmap_read(rtc_dd->regmap, regs->read, ®);
195 dev_err(dev, "RTC read data register failed\n");
199 if (unlikely(reg < value[0])) {
200 rc = regmap_bulk_read(rtc_dd->regmap, regs->read,
201 value, sizeof(value));
203 dev_err(dev, "RTC read data register failed\n");
208 secs = value[0] | (value[1] << 8) | (value[2] << 16) |
209 ((unsigned long)value[3] << 24);
211 rtc_time_to_tm(secs, tm);
213 dev_dbg(dev, "secs = %lu, h:m:s == %ptRt, y-m-d = %ptRdr\n", secs, tm, tm);
218 static int pm8xxx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
221 u8 value[NUM_8_BIT_RTC_REGS];
222 unsigned int ctrl_reg;
223 unsigned long secs, irq_flags;
224 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
225 const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
227 rtc_tm_to_time(&alarm->time, &secs);
229 for (i = 0; i < NUM_8_BIT_RTC_REGS; i++) {
230 value[i] = secs & 0xFF;
234 spin_lock_irqsave(&rtc_dd->ctrl_reg_lock, irq_flags);
236 rc = regmap_bulk_write(rtc_dd->regmap, regs->alarm_rw, value,
239 dev_err(dev, "Write to RTC ALARM register failed\n");
243 rc = regmap_read(rtc_dd->regmap, regs->alarm_ctrl, &ctrl_reg);
248 ctrl_reg |= regs->alarm_en;
250 ctrl_reg &= ~regs->alarm_en;
252 rc = regmap_write(rtc_dd->regmap, regs->alarm_ctrl, ctrl_reg);
254 dev_err(dev, "Write to RTC alarm control register failed\n");
258 dev_dbg(dev, "Alarm Set for h:m:s=%ptRt, y-m-d=%ptRdr\n",
259 &alarm->time, &alarm->time);
261 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
265 static int pm8xxx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
268 u8 value[NUM_8_BIT_RTC_REGS];
270 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
271 const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
273 rc = regmap_bulk_read(rtc_dd->regmap, regs->alarm_rw, value,
276 dev_err(dev, "RTC alarm time read failed\n");
280 secs = value[0] | (value[1] << 8) | (value[2] << 16) |
281 ((unsigned long)value[3] << 24);
283 rtc_time_to_tm(secs, &alarm->time);
285 rc = rtc_valid_tm(&alarm->time);
287 dev_err(dev, "Invalid alarm time read from RTC\n");
291 dev_dbg(dev, "Alarm set for - h:m:s=%ptRt, y-m-d=%ptRdr\n",
292 &alarm->time, &alarm->time);
297 static int pm8xxx_rtc_alarm_irq_enable(struct device *dev, unsigned int enable)
300 unsigned long irq_flags;
301 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
302 const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
303 unsigned int ctrl_reg;
305 spin_lock_irqsave(&rtc_dd->ctrl_reg_lock, irq_flags);
307 rc = regmap_read(rtc_dd->regmap, regs->alarm_ctrl, &ctrl_reg);
312 ctrl_reg |= regs->alarm_en;
314 ctrl_reg &= ~regs->alarm_en;
316 rc = regmap_write(rtc_dd->regmap, regs->alarm_ctrl, ctrl_reg);
318 dev_err(dev, "Write to RTC control register failed\n");
323 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
327 static const struct rtc_class_ops pm8xxx_rtc_ops = {
328 .read_time = pm8xxx_rtc_read_time,
329 .set_time = pm8xxx_rtc_set_time,
330 .set_alarm = pm8xxx_rtc_set_alarm,
331 .read_alarm = pm8xxx_rtc_read_alarm,
332 .alarm_irq_enable = pm8xxx_rtc_alarm_irq_enable,
335 static irqreturn_t pm8xxx_alarm_trigger(int irq, void *dev_id)
337 struct pm8xxx_rtc *rtc_dd = dev_id;
338 const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
339 unsigned int ctrl_reg;
341 unsigned long irq_flags;
343 rtc_update_irq(rtc_dd->rtc, 1, RTC_IRQF | RTC_AF);
345 spin_lock_irqsave(&rtc_dd->ctrl_reg_lock, irq_flags);
347 /* Clear the alarm enable bit */
348 rc = regmap_read(rtc_dd->regmap, regs->alarm_ctrl, &ctrl_reg);
350 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
351 goto rtc_alarm_handled;
354 ctrl_reg &= ~regs->alarm_en;
356 rc = regmap_write(rtc_dd->regmap, regs->alarm_ctrl, ctrl_reg);
358 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
359 dev_err(rtc_dd->rtc_dev,
360 "Write to alarm control register failed\n");
361 goto rtc_alarm_handled;
364 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
366 /* Clear RTC alarm register */
367 rc = regmap_read(rtc_dd->regmap, regs->alarm_ctrl2, &ctrl_reg);
369 dev_err(rtc_dd->rtc_dev,
370 "RTC Alarm control2 register read failed\n");
371 goto rtc_alarm_handled;
374 ctrl_reg |= PM8xxx_RTC_ALARM_CLEAR;
375 rc = regmap_write(rtc_dd->regmap, regs->alarm_ctrl2, ctrl_reg);
377 dev_err(rtc_dd->rtc_dev,
378 "Write to RTC Alarm control2 register failed\n");
384 static int pm8xxx_rtc_enable(struct pm8xxx_rtc *rtc_dd)
386 const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
387 unsigned int ctrl_reg;
390 /* Check if the RTC is on, else turn it on */
391 rc = regmap_read(rtc_dd->regmap, regs->ctrl, &ctrl_reg);
395 if (!(ctrl_reg & PM8xxx_RTC_ENABLE)) {
396 ctrl_reg |= PM8xxx_RTC_ENABLE;
397 rc = regmap_write(rtc_dd->regmap, regs->ctrl, ctrl_reg);
405 static const struct pm8xxx_rtc_regs pm8921_regs = {
411 .alarm_ctrl2 = 0x11e,
415 static const struct pm8xxx_rtc_regs pm8058_regs = {
421 .alarm_ctrl2 = 0x1e9,
425 static const struct pm8xxx_rtc_regs pm8941_regs = {
430 .alarm_ctrl = 0x6146,
431 .alarm_ctrl2 = 0x6148,
436 * Hardcoded RTC bases until IORESOURCE_REG mapping is figured out
438 static const struct of_device_id pm8xxx_id_table[] = {
439 { .compatible = "qcom,pm8921-rtc", .data = &pm8921_regs },
440 { .compatible = "qcom,pm8018-rtc", .data = &pm8921_regs },
441 { .compatible = "qcom,pm8058-rtc", .data = &pm8058_regs },
442 { .compatible = "qcom,pm8941-rtc", .data = &pm8941_regs },
445 MODULE_DEVICE_TABLE(of, pm8xxx_id_table);
447 static int pm8xxx_rtc_probe(struct platform_device *pdev)
450 struct pm8xxx_rtc *rtc_dd;
451 const struct of_device_id *match;
453 match = of_match_node(pm8xxx_id_table, pdev->dev.of_node);
457 rtc_dd = devm_kzalloc(&pdev->dev, sizeof(*rtc_dd), GFP_KERNEL);
461 /* Initialise spinlock to protect RTC control register */
462 spin_lock_init(&rtc_dd->ctrl_reg_lock);
464 rtc_dd->regmap = dev_get_regmap(pdev->dev.parent, NULL);
465 if (!rtc_dd->regmap) {
466 dev_err(&pdev->dev, "Parent regmap unavailable.\n");
470 rtc_dd->rtc_alarm_irq = platform_get_irq(pdev, 0);
471 if (rtc_dd->rtc_alarm_irq < 0)
474 rtc_dd->allow_set_time = of_property_read_bool(pdev->dev.of_node,
477 rtc_dd->regs = match->data;
478 rtc_dd->rtc_dev = &pdev->dev;
480 rc = pm8xxx_rtc_enable(rtc_dd);
484 platform_set_drvdata(pdev, rtc_dd);
486 device_init_wakeup(&pdev->dev, 1);
488 /* Register the RTC device */
489 rtc_dd->rtc = devm_rtc_device_register(&pdev->dev, "pm8xxx_rtc",
490 &pm8xxx_rtc_ops, THIS_MODULE);
491 if (IS_ERR(rtc_dd->rtc)) {
492 dev_err(&pdev->dev, "%s: RTC registration failed (%ld)\n",
493 __func__, PTR_ERR(rtc_dd->rtc));
494 return PTR_ERR(rtc_dd->rtc);
497 /* Request the alarm IRQ */
498 rc = devm_request_any_context_irq(&pdev->dev, rtc_dd->rtc_alarm_irq,
499 pm8xxx_alarm_trigger,
501 "pm8xxx_rtc_alarm", rtc_dd);
503 dev_err(&pdev->dev, "Request IRQ failed (%d)\n", rc);
507 dev_dbg(&pdev->dev, "Probe success !!\n");
512 #ifdef CONFIG_PM_SLEEP
513 static int pm8xxx_rtc_resume(struct device *dev)
515 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
517 if (device_may_wakeup(dev))
518 disable_irq_wake(rtc_dd->rtc_alarm_irq);
523 static int pm8xxx_rtc_suspend(struct device *dev)
525 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
527 if (device_may_wakeup(dev))
528 enable_irq_wake(rtc_dd->rtc_alarm_irq);
534 static SIMPLE_DEV_PM_OPS(pm8xxx_rtc_pm_ops,
538 static struct platform_driver pm8xxx_rtc_driver = {
539 .probe = pm8xxx_rtc_probe,
541 .name = "rtc-pm8xxx",
542 .pm = &pm8xxx_rtc_pm_ops,
543 .of_match_table = pm8xxx_id_table,
547 module_platform_driver(pm8xxx_rtc_driver);
549 MODULE_ALIAS("platform:rtc-pm8xxx");
550 MODULE_DESCRIPTION("PMIC8xxx RTC driver");
551 MODULE_LICENSE("GPL v2");