public inbox for linux-pwm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pwm: rz-mtu3: Share parent device node to MTU3 PWM
@ 2025-10-09 16:24 Martyn Welch
  2025-10-21 10:19 ` Uwe Kleine-König
  2025-12-24  6:33 ` Uwe Kleine-König
  0 siblings, 2 replies; 5+ messages in thread
From: Martyn Welch @ 2025-10-09 16:24 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: kernel, Martyn Welch, Sebastian Reichel, linux-pwm, linux-kernel

The PWM currently functions, however if we try to utilise the pwn in a
device tree, for example as a pwm-backlight:

        lcd_bl: backlight {
                compatible = "pwm-backlight";
                pwms = <&mtu3 3 833333>;
		...

This fails:

[   15.603948] platform backlight: deferred probe pending: pwm-backlight: unable to request PWM

The PWM driver forms part of the Renesas Multi-Function Timer Pulse Unit
3. The PWM does not have a DT node of it's own. Share the DT node of the
parent MFD device, so that the PWM channels can be referenced via phandles.

Co-developed-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Martyn Welch <martyn.welch@collabora.com>
---
 drivers/pwm/pwm-rz-mtu3.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/pwm/pwm-rz-mtu3.c b/drivers/pwm/pwm-rz-mtu3.c
index ab39bd37edafc..5825875fa0128 100644
--- a/drivers/pwm/pwm-rz-mtu3.c
+++ b/drivers/pwm/pwm-rz-mtu3.c
@@ -523,6 +523,12 @@ static int rz_mtu3_pwm_probe(struct platform_device *pdev)
 	if (ret < 0)
 		return ret;
 
+	/*
+	 * There is only one DT node, get it from the parent MFD device, so
+	 * that the PWM channels can be referenced via phandles
+	 */
+	dev->of_node = dev->parent->of_node;
+
 	chip->ops = &rz_mtu3_pwm_ops;
 	ret = devm_pwmchip_add(&pdev->dev, chip);
 	if (ret)
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-12-24  6:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-09 16:24 [PATCH] pwm: rz-mtu3: Share parent device node to MTU3 PWM Martyn Welch
2025-10-21 10:19 ` Uwe Kleine-König
2025-10-21 10:47   ` Krzysztof Kozlowski
2025-11-04 11:23     ` Uwe Kleine-König
2025-12-24  6:33 ` Uwe Kleine-König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox