All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/3] This series adds support for gpio-leds "default-state" property. The
@ 2018-04-03  7:31 linux-kernel-dev at beckhoff.com
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 1/3] dm: led: Support "default-state" property linux-kernel-dev at beckhoff.com
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: linux-kernel-dev at beckhoff.com @ 2018-04-03  7:31 UTC (permalink / raw)
  To: u-boot

From: Patrick Bruenn <p.bruenn@beckhoff.com>

main usecase in mind are LEDs which indicate a state like "power on".
With this patchset applied, all you have to do is:
Add a gpio-led node with 'default-state = "on";' property to your device
tree. And the LED will automatically light up during U-Boot startup.

Changes in v2:
- rebase to v2018.05-rc1
- add dm_test_led_default_state() to tests/dm/led.c

Patrick Bruenn (3):
  dm: led: Support "default-state" property
  dm: led: auto probe() LEDs with "default-state"
  dm: led: add testcase for "default-state" property

 arch/sandbox/dts/test.dts | 12 ++++++++++++
 drivers/led/led_gpio.c    | 25 ++++++++++++++++++++++++-
 test/dm/led.c             | 16 ++++++++++++++++
 3 files changed, 52 insertions(+), 1 deletion(-)

-- 
2.11.0

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

* [U-Boot] [PATCH v2 1/3] dm: led: Support "default-state" property
  2018-04-03  7:31 [U-Boot] [PATCH v2 0/3] This series adds support for gpio-leds "default-state" property. The linux-kernel-dev at beckhoff.com
@ 2018-04-03  7:31 ` linux-kernel-dev at beckhoff.com
  2018-04-03 17:52   ` Simon Glass
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 2/3] dm: led: auto probe() LEDs with "default-state" linux-kernel-dev at beckhoff.com
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 3/3] dm: led: add testcase for "default-state" property linux-kernel-dev at beckhoff.com
  2 siblings, 1 reply; 8+ messages in thread
From: linux-kernel-dev at beckhoff.com @ 2018-04-03  7:31 UTC (permalink / raw)
  To: u-boot

From: Patrick Bruenn <p.bruenn@beckhoff.com>

Add support for the device tree property "default-state". This feature
might be useful for LEDs indicating "power on" or similar states.

Note: Even with this commit gpio-leds remain in reset state. That's
because the led_gpio is not probed until DM_FLAG_ACTIVATED is set.

Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com>

---

Changes in v2:
- rebase to v2018.05-rc1
- add dm_test_led_default_state() to tests/dm/led.c

 drivers/led/led_gpio.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/drivers/led/led_gpio.c b/drivers/led/led_gpio.c
index 9976635887..e68d8d3864 100644
--- a/drivers/led/led_gpio.c
+++ b/drivers/led/led_gpio.c
@@ -60,11 +60,25 @@ static int led_gpio_probe(struct udevice *dev)
 {
 	struct led_uc_plat *uc_plat = dev_get_uclass_platdata(dev);
 	struct led_gpio_priv *priv = dev_get_priv(dev);
+	const char *default_state;
+	int ret;
 
 	/* Ignore the top-level LED node */
 	if (!uc_plat->label)
 		return 0;
-	return gpio_request_by_name(dev, "gpios", 0, &priv->gpio, GPIOD_IS_OUT);
+
+	ret = gpio_request_by_name(dev, "gpios", 0, &priv->gpio, GPIOD_IS_OUT);
+	if (ret)
+		return ret;
+
+	default_state = dev_read_string(dev, "default-state");
+	if (default_state) {
+		if (!strncmp(default_state, "on", 2))
+			gpio_led_set_state(dev, LEDST_ON);
+		else if (!strncmp(default_state, "off", 3))
+			gpio_led_set_state(dev, LEDST_OFF);
+	}
+	return 0;
 }
 
 static int led_gpio_remove(struct udevice *dev)
-- 
2.11.0

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

* [U-Boot] [PATCH v2 2/3] dm: led: auto probe() LEDs with "default-state"
  2018-04-03  7:31 [U-Boot] [PATCH v2 0/3] This series adds support for gpio-leds "default-state" property. The linux-kernel-dev at beckhoff.com
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 1/3] dm: led: Support "default-state" property linux-kernel-dev at beckhoff.com
@ 2018-04-03  7:31 ` linux-kernel-dev at beckhoff.com
  2018-04-03 17:52   ` Simon Glass
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 3/3] dm: led: add testcase for "default-state" property linux-kernel-dev at beckhoff.com
  2 siblings, 1 reply; 8+ messages in thread
From: linux-kernel-dev at beckhoff.com @ 2018-04-03  7:31 UTC (permalink / raw)
  To: u-boot

From: Patrick Bruenn <p.bruenn@beckhoff.com>

To avoid board specificy LED activation code, automatically
activate gpio-leds with "default-state" property during bind().

Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com>
---

Changes in v2: None

 drivers/led/led_gpio.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/led/led_gpio.c b/drivers/led/led_gpio.c
index e68d8d3864..d2fe3d5ad5 100644
--- a/drivers/led/led_gpio.c
+++ b/drivers/led/led_gpio.c
@@ -11,6 +11,7 @@
 #include <led.h>
 #include <asm/gpio.h>
 #include <dm/lists.h>
+#include <dm/uclass-internal.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -120,6 +121,14 @@ static int led_gpio_bind(struct udevice *parent)
 			return ret;
 		uc_plat = dev_get_uclass_platdata(dev);
 		uc_plat->label = label;
+
+		if (ofnode_read_string(node, "default-state")) {
+			struct udevice *devp;
+
+			ret = uclass_get_device_tail(dev, 0, &devp);
+			if (ret)
+				return ret;
+		}
 	}
 
 	return 0;
-- 
2.11.0

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

* [U-Boot] [PATCH v2 3/3] dm: led: add testcase for "default-state" property
  2018-04-03  7:31 [U-Boot] [PATCH v2 0/3] This series adds support for gpio-leds "default-state" property. The linux-kernel-dev at beckhoff.com
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 1/3] dm: led: Support "default-state" property linux-kernel-dev at beckhoff.com
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 2/3] dm: led: auto probe() LEDs with "default-state" linux-kernel-dev at beckhoff.com
@ 2018-04-03  7:31 ` linux-kernel-dev at beckhoff.com
  2018-04-03 17:53   ` Simon Glass
  2 siblings, 1 reply; 8+ messages in thread
From: linux-kernel-dev at beckhoff.com @ 2018-04-03  7:31 UTC (permalink / raw)
  To: u-boot

From: Patrick Bruenn <p.bruenn@beckhoff.com>

Add two more gpio-leds to sandbox test device tree with default-state
property set to "on"/"off".
Add dm_test_led_default_state() to check that these new LED's are set to
LEDST_ON and LEDST_OFF.

Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com>
---
patman complains about: test/dm/led.c:45: check: Please use a blank line
after function/struct/union/enum declarations.
I compared with other DM_TEST() usage and decided to ignore this check.
Should we fix the macro, patman or keep ignoring this?

Changes in v2: None

 arch/sandbox/dts/test.dts | 12 ++++++++++++
 test/dm/led.c             | 16 ++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
index 06d0e8ce85..07f9bad258 100644
--- a/arch/sandbox/dts/test.dts
+++ b/arch/sandbox/dts/test.dts
@@ -254,6 +254,18 @@
 			gpios = <&gpio_a 2 0>;
 			label = "sandbox:green";
 		};
+
+		default_on {
+			gpios = <&gpio_a 3 0>;
+			label = "sandbox:default_on";
+			default-state = "on";
+		};
+
+		default_off {
+			gpios = <&gpio_a 4 0>;
+			label = "sandbox:default_off";
+			default-state = "off";
+		};
 	};
 
 	mbox: mbox {
diff --git a/test/dm/led.c b/test/dm/led.c
index fde700be38..c560abc4fb 100644
--- a/test/dm/led.c
+++ b/test/dm/led.c
@@ -28,6 +28,22 @@ static int dm_test_led_base(struct unit_test_state *uts)
 }
 DM_TEST(dm_test_led_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
 
+/* Test of the LED 'default-state' device tree property */
+static int dm_test_led_default_state(struct unit_test_state *uts)
+{
+	struct udevice *dev;
+
+	/* Check that we handle the default-state property correctly. */
+	ut_assertok(led_get_by_label("sandbox:default_on", &dev));
+	ut_asserteq(LEDST_ON, led_get_state(dev));
+
+	ut_assertok(led_get_by_label("sandbox:default_off", &dev));
+	ut_asserteq(LEDST_OFF, led_get_state(dev));
+
+	return 0;
+}
+DM_TEST(dm_test_led_default_state, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
+
 /* Test of the led uclass using the led_gpio driver */
 static int dm_test_led_gpio(struct unit_test_state *uts)
 {
-- 
2.11.0

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

* [U-Boot] [PATCH v2 1/3] dm: led: Support "default-state" property
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 1/3] dm: led: Support "default-state" property linux-kernel-dev at beckhoff.com
@ 2018-04-03 17:52   ` Simon Glass
  0 siblings, 0 replies; 8+ messages in thread
From: Simon Glass @ 2018-04-03 17:52 UTC (permalink / raw)
  To: u-boot

On 3 April 2018 at 15:31,  <linux-kernel-dev@beckhoff.com> wrote:
> From: Patrick Bruenn <p.bruenn@beckhoff.com>
>
> Add support for the device tree property "default-state". This feature
> might be useful for LEDs indicating "power on" or similar states.
>
> Note: Even with this commit gpio-leds remain in reset state. That's
> because the led_gpio is not probed until DM_FLAG_ACTIVATED is set.
>
> Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com>
>
> ---
>
> Changes in v2:
> - rebase to v2018.05-rc1
> - add dm_test_led_default_state() to tests/dm/led.c
>
>  drivers/led/led_gpio.c | 16 +++++++++++++++-
>  1 file changed, 15 insertions(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [PATCH v2 2/3] dm: led: auto probe() LEDs with "default-state"
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 2/3] dm: led: auto probe() LEDs with "default-state" linux-kernel-dev at beckhoff.com
@ 2018-04-03 17:52   ` Simon Glass
  2018-04-04  6:17     ` Patrick Brünn
  0 siblings, 1 reply; 8+ messages in thread
From: Simon Glass @ 2018-04-03 17:52 UTC (permalink / raw)
  To: u-boot

On 3 April 2018 at 15:31,  <linux-kernel-dev@beckhoff.com> wrote:
> From: Patrick Bruenn <p.bruenn@beckhoff.com>
>
> To avoid board specificy LED activation code, automatically
> activate gpio-leds with "default-state" property during bind().
>
> Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com>
> ---
>
> Changes in v2: None
>
>  drivers/led/led_gpio.c | 9 +++++++++
>  1 file changed, 9 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>

But please see below.

>
> diff --git a/drivers/led/led_gpio.c b/drivers/led/led_gpio.c
> index e68d8d3864..d2fe3d5ad5 100644
> --- a/drivers/led/led_gpio.c
> +++ b/drivers/led/led_gpio.c
> @@ -11,6 +11,7 @@
>  #include <led.h>
>  #include <asm/gpio.h>
>  #include <dm/lists.h>
> +#include <dm/uclass-internal.h>
>
>  DECLARE_GLOBAL_DATA_PTR;
>
> @@ -120,6 +121,14 @@ static int led_gpio_bind(struct udevice *parent)
>                         return ret;
>                 uc_plat = dev_get_uclass_platdata(dev);
>                 uc_plat->label = label;
> +
> +               if (ofnode_read_string(node, "default-state")) {

Here I think you mean ofnode_read_boot() ?

> +                       struct udevice *devp;
> +
> +                       ret = uclass_get_device_tail(dev, 0, &devp);
> +                       if (ret)
> +                               return ret;
> +               }
>         }
>
>         return 0;
> --
> 2.11.0
>
>

Regards,
Simon

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

* [U-Boot] [PATCH v2 3/3] dm: led: add testcase for "default-state" property
  2018-04-03  7:31 ` [U-Boot] [PATCH v2 3/3] dm: led: add testcase for "default-state" property linux-kernel-dev at beckhoff.com
@ 2018-04-03 17:53   ` Simon Glass
  0 siblings, 0 replies; 8+ messages in thread
From: Simon Glass @ 2018-04-03 17:53 UTC (permalink / raw)
  To: u-boot

On 3 April 2018 at 15:31,  <linux-kernel-dev@beckhoff.com> wrote:
> From: Patrick Bruenn <p.bruenn@beckhoff.com>
>
> Add two more gpio-leds to sandbox test device tree with default-state
> property set to "on"/"off".
> Add dm_test_led_default_state() to check that these new LED's are set to
> LEDST_ON and LEDST_OFF.
>
> Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com>
> ---
> patman complains about: test/dm/led.c:45: check: Please use a blank line
> after function/struct/union/enum declarations.
> I compared with other DM_TEST() usage and decided to ignore this check.
> Should we fix the macro, patman or keep ignoring this?
>
> Changes in v2: None
>
>  arch/sandbox/dts/test.dts | 12 ++++++++++++
>  test/dm/led.c             | 16 ++++++++++++++++
>  2 files changed, 28 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [PATCH v2 2/3] dm: led: auto probe() LEDs with "default-state"
  2018-04-03 17:52   ` Simon Glass
@ 2018-04-04  6:17     ` Patrick Brünn
  0 siblings, 0 replies; 8+ messages in thread
From: Patrick Brünn @ 2018-04-04  6:17 UTC (permalink / raw)
  To: u-boot

From: sjg@google.com [mailto:sjg at google.com] On Behalf Of Simon Glass
>Sent: Dienstag, 3. April 2018 19:53
>To: linux-kernel-dev <linux-kernel-dev@beckhoff.com>
>Cc: U-Boot Mailing List <u-boot@lists.denx.de>; Patrick Brünn
><P.Bruenn@beckhoff.com>; Ziping Chen <techping.chan@gmail.com>
>Subject: Re: [PATCH v2 2/3] dm: led: auto probe() LEDs with "default-state"
>
>On 3 April 2018 at 15:31,  <linux-kernel-dev@beckhoff.com> wrote:
>> From: Patrick Bruenn <p.bruenn@beckhoff.com>
>>
...
>>
>> diff --git a/drivers/led/led_gpio.c b/drivers/led/led_gpio.c
>> index e68d8d3864..d2fe3d5ad5 100644
>> --- a/drivers/led/led_gpio.c
>> +++ b/drivers/led/led_gpio.c
>> @@ -11,6 +11,7 @@
>>  #include <led.h>
>>  #include <asm/gpio.h>
>>  #include <dm/lists.h>
>> +#include <dm/uclass-internal.h>
>>
>>  DECLARE_GLOBAL_DATA_PTR;
>>
>> @@ -120,6 +121,14 @@ static int led_gpio_bind(struct udevice *parent)
>>                         return ret;
>>                 uc_plat = dev_get_uclass_platdata(dev);
>>                 uc_plat->label = label;
>> +
>> +               if (ofnode_read_string(node, "default-state")) {
>
>Here I think you mean ofnode_read_boot() ?
>
Yes, you are right I will resend a v3 with ofnode_read_bool().

It took me quite a while to understand that "read_bool" means "has_property".

Thanks for your help!
Patrick
Beckhoff Automation GmbH & Co. KG | Managing Director: Dipl. Phys. Hans Beckhoff
Registered office: Verl, Germany | Register court: Guetersloh HRA 7075

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

end of thread, other threads:[~2018-04-04  6:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-03  7:31 [U-Boot] [PATCH v2 0/3] This series adds support for gpio-leds "default-state" property. The linux-kernel-dev at beckhoff.com
2018-04-03  7:31 ` [U-Boot] [PATCH v2 1/3] dm: led: Support "default-state" property linux-kernel-dev at beckhoff.com
2018-04-03 17:52   ` Simon Glass
2018-04-03  7:31 ` [U-Boot] [PATCH v2 2/3] dm: led: auto probe() LEDs with "default-state" linux-kernel-dev at beckhoff.com
2018-04-03 17:52   ` Simon Glass
2018-04-04  6:17     ` Patrick Brünn
2018-04-03  7:31 ` [U-Boot] [PATCH v2 3/3] dm: led: add testcase for "default-state" property linux-kernel-dev at beckhoff.com
2018-04-03 17:53   ` Simon Glass

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.