Thread (17 messages) flat view 17 messages, 3 authors, 2021-03-08

Re: [RFC PATCH 3/7] regulator: IRQ based event/error notification helpers

From: Vaittinen, Matti <hidden>
Date: 2021-02-15 10:28:02
Also in: linux-arm-msm, linux-renesas-soc, lkml

On Thu, 2021-02-11 at 14:35 +0200, Matti Vaittinen wrote:
Provide helper function for IC's implementing regulator notifications
when an IRQ fires. The helper also works for IRQs which can not be
acked.
Helper can be set to disable the IRQ at handler and then re-enabling
it
on delayed work later. The helper also adds
regulator_get_error_flags()
errors in cache for the duration of IRQ disabling.

Signed-off-by: Matti Vaittinen <redacted>
---

This patch has gone through only a very limited amount of testing.
All
reviews / suggestions / testing is highly appreciated.
// Snip
+
+static void dev_delayed_work_drop(struct device *dev, void *res)
+{
+	cancel_delayed_work_sync(*(struct delayed_work **)res);
+}
+
+int dev_delayed_work_autocancel(struct device *dev, struct
delayed_work *w,
+				void (*worker)(struct work_struct
*work))
+{
+	struct delayed_work **ptr;
+
+	ptr = devres_alloc(dev_delayed_work_drop, sizeof(*ptr),
GFP_KERNEL);
+	if (!ptr)
+		return -ENOMEM;
+
+	INIT_DELAYED_WORK(w, worker);
+	*ptr = w;
+	devres_add(dev, ptr);
+
+	return 0;
+}
I sent this dev_delayed_work_autocancel() + few cleanup patches as own
series. Discussion that series created made me realize that we don't
want to force use of devm by hiding the WQ init here. We should
introduce also non devm variant + manual cancellation routine for those
who don't use devm to register rdevs.

And as I see that Greg was strongly opposing the devm based delayed
work cancellation - I guess that if we want to proceed with this one
we'd better first implement the 'non devm' variant which uses manual wq
cancellation + manual IRQ deregistering and use that cancellation to
build a devm one...

I'll try to cook v2 still this week.

Best Regards
	Matti Vaittinen
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help