Re: RGB LED class Re: [PATCH v2 2/2] leds: lp50xx: Add the LP50XX family of the RGB LED driver

From: Dan Murphy
Date: Fri Jan 18 2019 - 10:57:51 EST


Hello

On 1/17/19 6:02 PM, Pavel Machek wrote:
> Hi!
>
>
>>> I am willing to work with you on the HSV and adapting the LP50xx part to this framework.
>>> Or any RGB framework for that matter. I still don't agree with the kernel needing to declare colors
>>> maybe color capabilities but not specific colors.
>>
>> Dan, if you have a bandwidth for LED RGB class implementation
>> then please go ahead. It would be good to compare colors produced
>> by software HSV->RGB algorithm to what can be achieved with
>> LEDn_BRIGHTNESS feature.
>
> Don't get me wrong, I'd like to see LED RGB class implementation. But
> it will delay merge of this driver.
>
> If we want to do that, we should first discuss the requirements, and
> then come up with interface.. and only then we can talk about the
> driver code.
>
> That's why I believe preferable way would be to merge the driver using
> the existing interface.
>
> Of course, first designing RGB LED class and then merging the
> driver.. is okay with me. But lets not rush the class because there's
> driver waiting for it.
>

We have been able to provide users a preliminary driver they can use to test
their hardware. It is not the ideal driver but it helps them develop their
product.

The important thing here is that the driver is available to all from the Linux mainline
and not from a product repo.

>> The requirements for LED RGB class as I would see it:
>>
>> sysfs interface:
>>
>> brightness-model: space separated list of available options:
>> - rgb (default):
>> - creates color file with "red green blue" decimal values
>> - creates brightness file
>> a) for devices with hardware support for adjusting color
>> intensity it maps to corresponding register
>> b) for the rest writing any value greater than 0 will result
>> in setting all color registers to max
>> - hsv:
>> - creates color file with "h s v" values - it shall
>> use software HSV->RGB algorithm for setting color registers
>>
>> - any other custom color ranges defined in DT, but it can be covered
>> later
>> - other options?
>
> First, I think we want to decide if RGB LED should be presented as
> 3 LEDs or as 1 LED... and what to do with existing RGB leds being
> presented as 3 LEDs.

What do we do with RGBW drivers? Like the LP5562. RGB can be grouped as a single
LED but does the white LED get grouped too or should it register as a new LED?

I am assuming the answer is that it would register as a new LED.

>
> I don't think we want to support both RGB and HSV in the kernel. It is
> math, and not a nice one.
>
> Yes, both have advantages and disadvantages, but having _both_ in
> kernel has disadvantages of both.
>

I agree. Beyond the math I think giving developers a choice may bring about
driver discussion of why the developer is using RGB over HSV or vice versa.

> One way I could imagine the interface:
>
> RGB LED presented as one LED.
>

We would have to figure out a cluster schema that would group these LEDs.

Difficulty would come if you have different drivers driving different LEDs.
I personally have not seen this but the possibility is there.

We don't have to put that in the initial design and if a developer needs this
level of functionality they can submit a patch.

> brightness -- controls brightness of whole RGB module.
>

This would be nice assuming the product groups them. They should also be
individual LEDs like we have today.

> pwm_channels -- "1000 240 300" -- "red part should be full on, green
> should be pwm controlled to 240/1000, blue should be 300/1000"
>

Why 1000? Why not based on a duty cycle percentage and let the LED driver figure out
what that means to the device?

pwm_channels -- "100 24 30" -- red part is full on 100%, green is 24% duty cycle and
blue is 30% duty cycle.

> pwm_white -- "1000 500 400" -- tells userspace what to write to PWM
> channels to get approximately white color.
>

Same as above on the duty cycle.

But I still am in disagreement with the kernel detailing what is white or how to
achieve white.

Based on my earlier email about light pipes and the LED vendors and aging I think product
developers will need to fine tune what is "white" on their product from user space or even a DT node.

Not sure that the driver needs to have that level of intelligence because it has no idea
what vendor or what shade of the LED it is driving or even if the LED it is driving is the
color defined. All be it that the LP50xx data sheet does suggest that the LEDs be connected to
particular outputs but that does not mean they will.

Wondering if it would be better to set a DT node property like rgb-white that defines the values
the driver would need for the hardware to produce a white color. Then the driver would register a
set_color_white call back and the driver would take the hardware property and set the color values as defined.

Then the user space can set either "color" to 0xff 0xff 0xff or pwm_channels to 100 100 100 and the framework
would call the set_color_white call back as opposed to the set_color call back.

If rbg-white does not exist in the dt node then no call back is set and the the set_color call back is only called.
rgb-white can be an optional child property. And this eliminates the need for a user ABI

Thoughts?


> This would assume that RGB LEDs are always pwm controlled. That
> seems to be true for hardware I seen.
>

GPIO LEDs can be binary or use PWM depending on what is needed.

> + no complex math in kernel

We can eliminate the math if we use the "color" file that was proposed and pass in absolute
hex/decimal numbers for color.

>
> + userspace knows enough to display arbitrary colors
>
> + userspace can use full range of available PWM intensities
>

Do we need a pwm_max file to indicate to the user space what the max values of the pwm
is for each color?

> + existing triggers will work nicely
>
> - userland needs to do non-trivial math to get colors it wants
>

Could this be done via a DT node that exposes an attenuation constant for each LED?
Then user space can query and apply the attenuation to the associated LED.

Or userland may not care and this can be done in the driver.
It would be optional child property. And this eliminates the need for a user ABI

> - not sure how to migrate existing devices
>
> Thoughts? Other possible interfaces?

Userland would need to know what RGBs are available. The product could use a green and blue
or red and green or whatever combo. So userland can know that not all colors are available.


Dan

>
> Best regards,
> Pavel
>


--
------------------
Dan Murphy