2022-12-08 13:50:11

by Wadim Egorov

[permalink] [raw]
Subject: [PATCH] rtc: rv3028: Use IRQ flags obtained from device tree if available

Make the interrupt pin of the RV3028 usable with GPIO controllers
without level type IRQs support, such as the TI Davinci GPIO controller.

Therefore, allow the IRQ type to be passed from the device tree if
available.

Based on commit d4785b46345c ("rtc: pcf2127: use IRQ flags obtained from device tree if available")

Signed-off-by: Wadim Egorov <[email protected]>
---
drivers/rtc/rtc-rv3028.c | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-rv3028.c b/drivers/rtc/rtc-rv3028.c
index dd170e3efd83..b0099e26e3b0 100644
--- a/drivers/rtc/rtc-rv3028.c
+++ b/drivers/rtc/rtc-rv3028.c
@@ -902,9 +902,20 @@ static int rv3028_probe(struct i2c_client *client)
return PTR_ERR(rv3028->rtc);

if (client->irq > 0) {
+ unsigned long flags;
+
+ /*
+ * If flags = 0, devm_request_threaded_irq() will use IRQ flags
+ * obtained from device tree.
+ */
+ if (dev_fwnode(&client->dev))
+ flags = 0;
+ else
+ flags = IRQF_TRIGGER_LOW;
+
ret = devm_request_threaded_irq(&client->dev, client->irq,
NULL, rv3028_handle_irq,
- IRQF_TRIGGER_LOW | IRQF_ONESHOT,
+ flags | IRQF_ONESHOT,
"rv3028", rv3028);
if (ret) {
dev_warn(&client->dev, "unable to request IRQ, alarms disabled\n");
--
2.34.1


2022-12-13 17:20:10

by Alexandre Belloni

[permalink] [raw]
Subject: Re: [PATCH] rtc: rv3028: Use IRQ flags obtained from device tree if available

On Thu, 8 Dec 2022 14:36:05 +0100, Wadim Egorov wrote:
> Make the interrupt pin of the RV3028 usable with GPIO controllers
> without level type IRQs support, such as the TI Davinci GPIO controller.
>
> Therefore, allow the IRQ type to be passed from the device tree if
> available.
>
> Based on commit d4785b46345c ("rtc: pcf2127: use IRQ flags obtained from device tree if available")
>
> [...]

Applied, thanks!

[1/1] rtc: rv3028: Use IRQ flags obtained from device tree if available
commit: 2d620d98d74311ac06719adf08dc9a695bd1a10b

Best regards,

--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com