<div dir="ltr">In addition, you may try to start with the i2c-tools package. With <b>i2cdetect</b> and <b>i2cset</b> you may actually discover all available devices on specific i2c bus and then write to a specific i2c device by it's address. Once you get it work, you should try to find suitable kernel driver that may use your i2c device. For instance, if the i2c interface (with registers read/write) is just a specific register write, you may try to re-use i2c gpio driver and then use it as gpio led as described:<div><br></div><div><a href="https://www.kernel.org/doc/Documentation/devicetree/bindings/leds/leds-gpio.txt">https://www.kernel.org/doc/Documentation/devicetree/bindings/leds/leds-gpio.txt</a><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, 4 Oct 2020 at 20:35, Milton Miller II <<a href="mailto:miltonm@us.ibm.com">miltonm@us.ibm.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On October 4, 2020 around 4:05am in some timezone, S.Nishikawa wrote:<br>
>Hi,<br>
><br>
>In our hardware, the Alert LED is attached to the end of the CPLD and<br>
>is <br>
>accessed via I2C. I think phosphor-led-sysfs controls LEDs with GPIO,<br>
><br>
>but how can I control the LED beyond I2C?<br>
<br>
<br>
Actually phosphor-led-manager will control any device that has a <br>
kernel driver exposing the LED interface.  For PCA i2c devices <br>
we tend to expose all the pins as gpio then individual gpios as<br>
gpio led devices because the led subsystem will change the led <br>
instance number based on which pins of the package are LED.<br>
<br>
It sounds like your cpld has a custom interface.  If the leds<br>
can be controlled via a separate i2c addressed endpoint I would <br>
suggest a multi-function device binding using the mfd subsystem.<br>
If it is directly controled by a register consider registering <br>
a regmap like many voltage monitor and control devices.  One <br>
advantage of regmap is it provides both locking and caching of <br>
the values written, controllable on a per-register basis.<br>
<br>
You will need a kernel driver for the remaining function that <br>
is accessible over the i2c interface.<br>
<br>
See <a href="https://www.kernel.org/doc/html/latest/leds/leds-class.html#" rel="noreferrer" target="_blank">https://www.kernel.org/doc/html/latest/leds/leds-class.html#</a><br>
for information on the kernel LED subsystem.<br>
<br>
I hope this gets you headed in a productive direction.<br>
milton<br>
<br>
</blockquote></div>