Commit 83c07114 authored by Alexandre Belloni's avatar Alexandre Belloni

rtc: rv8803: add wakeup-source support

The RV8803 can be wired directly to a PMIC that can wake up an SoC without
the CPU getting interrupts.

Link: https://lore.kernel.org/r/20240108004357.602918-1-alexandre.belloni@bootlin.comSigned-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent eea7615b
......@@ -29,6 +29,8 @@ properties:
trickle-diode-disable: true
wakeup-source: true
required:
- compatible
- reg
......
......@@ -712,9 +712,12 @@ static int rv8803_probe(struct i2c_client *client)
if (err)
dev_err(&client->dev, "failed to set wake IRQ\n");
}
} else {
if (device_property_read_bool(&client->dev, "wakeup-source"))
device_init_wakeup(&client->dev, true);
else
clear_bit(RTC_FEATURE_ALARM, rv8803->rtc->features);
}
if (!client->irq)
clear_bit(RTC_FEATURE_ALARM, rv8803->rtc->features);
if (of_property_read_bool(client->dev.of_node, "epson,vdet-disable"))
rv8803->backup |= RX8900_FLAG_VDETOFF;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment