Re: [PATCH v2 6/6] leds: netdev trigger: allow setting initial values in device tree

From: Rob Herring
Date: Thu Mar 28 2019 - 12:28:46 EST


On Thu, Mar 14, 2019 at 03:06:19PM +0100, Rasmus Villemoes wrote:
> It can be quite convenient to initialize a netdev-triggered LED with a
> device name and setting the rx,tx,link properties from device tree,
> instead of having to do that in an init script (or udev rule) in
> userspace.
>
> My main motivation for this is to be able to switch away from the
> deprecated CONFIG_CAN_LEDS. The example added to common.txt
> corresponds to switching linux,default-trigger = "can0-rxtx" to
> "netdev" and adding the indicated netdev subnode.
>
> Signed-off-by: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx>
> ---
> .../devicetree/bindings/leds/common.txt | 11 +++++++
> drivers/leds/trigger/ledtrig-netdev.c | 30 +++++++++++++++++++
> 2 files changed, 41 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/leds/common.txt b/Documentation/devicetree/bindings/leds/common.txt
> index 7cb88460a47c..f8078c4cf6f8 100644
> --- a/Documentation/devicetree/bindings/leds/common.txt
> +++ b/Documentation/devicetree/bindings/leds/common.txt
> @@ -43,6 +43,17 @@ Optional properties for child nodes:
> Documentation/ABI/testing/sysfs-class-led-trigger-netdev)
> to reflect the state and activity of a net device.
>
> + The optional child node netdev can be used to
> + configure initial values for the link, rx, tx and
> + device_name properties. For example,
> +
> + netdev {

I was going to let the use of netdev slide, but now you have it
twice and that's a Linuxism.

> + rx;
> + tx;
> + link;

What do these mean?

> + device-name = "can0";

can0 is a linux thing and doesn't belong in DT.

> + };

I really don't like this. What's this going to look like if every
trigger wants to add something like this? What's special about netdev
leds?

We really need to decouple the Linux LED trigger design from the DT
bindings. I have no problem associating LEDs with devices in DT, but it
shouldn't just bring the LED trigger design into the bindings.