rtc: da9063: add as wakeup source

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2183349

commit 029d3a6f2f3c73ac29a7460d8007798e940488fd
Author: Nikita Shubin <nikita.shubin@maquefel.me>
Date:   Mon Nov 29 10:26:49 2021 +0300

    rtc: da9063: add as wakeup source

    As da9063 RTC is not a real I2C client, but relies on da9063 MFD
    driver, we need to explicitly mark da9063 RTC as a wakeup source
    to be able to access class/rtc/rtcN/wakealarm sysfs entry
    to set alarms, so we can wakeup from SHUTDOWN/RTC/DELIVERY mode.

    As da9063 driver refuses to load without irq, we simply add it
    as a wakeup source before registering rtc device.

    Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
    Reviewed-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
    Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
    Link: https://lore.kernel.org/r/20211129072650.22686-1-nikita.shubin@maquefel.me
    (cherry picked from commit 029d3a6f2f3c73ac29a7460d8007798e940488fd)

Signed-off-by: Gavin Shan <gshan@redhat.com>
This commit is contained in:
Gavin Shan 2023-05-30 13:35:00 +10:00
parent ecd76f702f
commit 94daed5b54
1 changed files with 2 additions and 0 deletions

View File

@ -496,6 +496,8 @@ static int da9063_rtc_probe(struct platform_device *pdev)
dev_err(&pdev->dev, "Failed to request ALARM IRQ %d: %d\n",
irq_alarm, ret);
device_init_wakeup(&pdev->dev, true);
return devm_rtc_register_device(rtc->rtc_dev);
}