All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] leds: simatic-ipc-leds-gpio: do not run into endless EPROBE_DEFER loop
@ 2023-01-25 18:17 Henning Schild
  2023-01-25 18:30 ` Henning Schild
  2023-02-02 19:47 ` Henning Schild
  0 siblings, 2 replies; 4+ messages in thread
From: Henning Schild @ 2023-01-25 18:17 UTC (permalink / raw)
  To: Pavel Machek, Lee Jones, Hans de Goede, Andy Shevchenko,
	linux-leds, linux-kernel
  Cc: Henning Schild

Should the driver providing our GPIOs not be available we used to return
-EPORBE_DEFER out of the probe function and cause a potentially endless
loop that also printed a lot to the kernel log.

...
leds-gpio leds-gpio: cannot find GPIO chip igpio-f7188x-2, deferring
leds-gpio leds-gpio: Skipping unavailable LED gpio 0 (red:status-1)
...

The "leds-gpio" just ignores all entries and would never try again even
if the GPIOs show up later. But our extra two GPIOs could cause that
loop, in which we would even register/unregister "leds-gpio" and cause
all the printing.

If any of those two extra GPIOs is not there, return with -ENODEV
instead of -EPROBE_DEFER.

Fixes: a6c80bec3c93 ("leds: simatic-ipc-leds-gpio: Add GPIO version of Siemens driver")
Signed-off-by: Henning Schild <henning.schild@siemens.com>
---
 drivers/leds/simple/simatic-ipc-leds-gpio.c | 29 +++++++++------------
 1 file changed, 13 insertions(+), 16 deletions(-)

diff --git a/drivers/leds/simple/simatic-ipc-leds-gpio.c b/drivers/leds/simple/simatic-ipc-leds-gpio.c
index 07f0d79d604d..4e2595e684c6 100644
--- a/drivers/leds/simple/simatic-ipc-leds-gpio.c
+++ b/drivers/leds/simple/simatic-ipc-leds-gpio.c
@@ -74,14 +74,13 @@ static int simatic_ipc_leds_gpio_probe(struct platform_device *pdev)
 	const struct simatic_ipc_platform *plat = pdev->dev.platform_data;
 	struct gpio_desc *gpiod;
 	int err;
+	int i;
 
 	switch (plat->devmode) {
 	case SIMATIC_IPC_DEVICE_127E:
 		simatic_ipc_led_gpio_table = &simatic_ipc_led_gpio_table_127e;
 		break;
 	case SIMATIC_IPC_DEVICE_227G:
-		if (!IS_ENABLED(CONFIG_GPIO_F7188X))
-			return -ENODEV;
 		request_module("gpio-f7188x");
 		simatic_ipc_led_gpio_table = &simatic_ipc_led_gpio_table_227g;
 		break;
@@ -99,21 +98,19 @@ static int simatic_ipc_leds_gpio_probe(struct platform_device *pdev)
 		goto out;
 	}
 
-	/* PM_BIOS_BOOT_N */
-	gpiod = gpiod_get_index(&simatic_leds_pdev->dev, NULL, 6, GPIOD_OUT_LOW);
-	if (IS_ERR(gpiod)) {
-		err = PTR_ERR(gpiod);
-		goto out;
-	}
-	gpiod_put(gpiod);
-
-	/* PM_WDT_OUT */
-	gpiod = gpiod_get_index(&simatic_leds_pdev->dev, NULL, 7, GPIOD_OUT_LOW);
-	if (IS_ERR(gpiod)) {
-		err = PTR_ERR(gpiod);
-		goto out;
+	for (i = 0; i < 2; i++) {
+		gpiod = gpiod_get_index(&simatic_leds_pdev->dev, NULL,
+					ARRAY_SIZE(simatic_ipc_gpio_leds) + i, GPIOD_OUT_LOW);
+		if (IS_ERR(gpiod)) {
+			err = PTR_ERR(gpiod);
+			if (err == -EPROBE_DEFER) {
+				dev_err(&pdev->dev, "GPIO driver seems missing\n");
+				err = -ENODEV;
+			}
+			goto out;
+		}
+		gpiod_put(gpiod);
 	}
-	gpiod_put(gpiod);
 
 	return 0;
 out:
-- 
2.39.1


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

end of thread, other threads:[~2023-02-03  8:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-25 18:17 [PATCH] leds: simatic-ipc-leds-gpio: do not run into endless EPROBE_DEFER loop Henning Schild
2023-01-25 18:30 ` Henning Schild
2023-02-02 19:47 ` Henning Schild
2023-02-03  7:59   ` Lee Jones

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.