> Hi Andrew, > > That looks very much related! > > I was already planning to investigate adding led support ... . > > 1. for the LINK_ST pin I believe we still need a non-led-framework > device property for setting polarity, as it is a fixed function signal > that we can't even turn on or off from software. We should separate the device tree binding from the implementation of the binding. The binding describes the hardware. The hardware is active low. And the binding can describe that. So i don't see a need for anything vendor specific. I think the real question is, can the current generic LED code be made to handle this LED, or should you have code in the PHY driver to handle this binding in a specific way for this LED? Given the restrictions on this LED, i don't think it makes sense to expose it in /sys/class/leds. But is it possible to leverage the framework to parse the binding and call the polarity function? > 2. LED_0 control not currently supported by adin driver. > The phy supports what data-sheet calls extended configuration > (disabled by default) for controlling led state (on, off, patterns). > > Since it is not default, I see the polarity setting separate from leds. > However I do believe the led_polarity_set callback is an acceptable > solution. Again, you should use the LED binding, even if you don't use the LED framework. I just wounder how much code you will duplicate if you do decide to implement the binding in the driver. And when you fully implement the control of the LED using the framework, are you going to throw the code away again? Andrew