mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
The LP5812 is a 4x3 matrix RGB LED driver with an autonomous animation engine and time-cross-multiplexing (TCM) support for up to 12 LEDs or 4 RGB LEDs. Each LED can be configured through the related registers to realize vivid and fancy lighting effects. This patch adds minimal driver support for the LP5812, implementing only the essential functionality: I2C communication with the device, LED registration, brightness control in manual mode, and basic sysfs interfaces for LED configuration and fault monitoring. Signed-off-by: Nam Tran <trannamatk@gmail.com> Link: https://patch.msgid.link/20260115161013.40706-2-trannamatk@gmail.com Signed-off-by: Lee Jones <lee@kernel.org>
92 lines
2.9 KiB
Plaintext
92 lines
2.9 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
if LEDS_CLASS_MULTICOLOR
|
|
|
|
config LEDS_GROUP_MULTICOLOR
|
|
tristate "LEDs group multi-color support"
|
|
depends on OF
|
|
help
|
|
This option enables support for monochrome LEDs that are grouped
|
|
into multicolor LEDs which is useful in the case where LEDs of
|
|
different colors are physically grouped in a single multi-color LED
|
|
and driven by a controller that doesn't have multi-color support.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called leds-group-multicolor.
|
|
|
|
config LEDS_KTD202X
|
|
tristate "LED support for KTD202x Chips"
|
|
depends on I2C
|
|
select REGMAP_I2C
|
|
help
|
|
This option enables support for the Kinetic KTD2026/KTD2027
|
|
RGB/White LED driver found in different BQ mobile phones.
|
|
It is a 3 or 4 channel LED driver programmed via an I2C interface.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called leds-ktd202x.
|
|
|
|
config LEDS_LP5812
|
|
tristate "LED support for Texas Instruments LP5812"
|
|
depends on I2C
|
|
help
|
|
If you say Y here you get support for TI LP5812 LED driver.
|
|
The LP5812 is a 4x3 matrix RGB LED driver with autonomous
|
|
animation engine control.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called leds-lp5812.
|
|
|
|
If unsure, say N.
|
|
|
|
config LEDS_NCP5623
|
|
tristate "LED support for NCP5623"
|
|
depends on I2C
|
|
depends on OF
|
|
help
|
|
This option enables support for ON semiconductor NCP5623
|
|
Triple Output I2C Controlled RGB LED Driver.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called leds-ncp5623.
|
|
|
|
config LEDS_PWM_MULTICOLOR
|
|
tristate "PWM driven multi-color LED Support"
|
|
depends on PWM
|
|
help
|
|
This option enables support for PWM driven monochrome LEDs that are
|
|
grouped into multicolor LEDs.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called leds-pwm-multicolor.
|
|
|
|
config LEDS_QCOM_LPG
|
|
tristate "LED support for Qualcomm LPG"
|
|
depends on OF
|
|
depends on PWM
|
|
depends on QCOM_PBS || !QCOM_PBS
|
|
depends on SPMI
|
|
help
|
|
This option enables support for the Light Pulse Generator found in a
|
|
wide variety of Qualcomm PMICs. The LPG consists of a number of PWM
|
|
channels and typically a shared pattern lookup table and a current
|
|
sink, intended to drive RGB LEDs. Each channel can either be used as
|
|
a LED, grouped to represent a RGB LED or exposed as PWM channels.
|
|
|
|
If compiled as a module, the module will be named leds-qcom-lpg.
|
|
|
|
config LEDS_MT6370_RGB
|
|
tristate "LED Support for MediaTek MT6370 PMIC"
|
|
depends on MFD_MT6370
|
|
select LINEAR_RANGES
|
|
help
|
|
Say Y here to enable support for MT6370_RGB LED device.
|
|
In MT6370, there are four channel current-sink LED drivers that
|
|
support hardware pattern for constant current, PWM, and breath mode.
|
|
Isink4 channel can also be used as a CHG_VIN power good indicator.
|
|
|
|
This driver can also be built as a module. If so, the module
|
|
will be called "leds-mt6370-rgb".
|
|
|
|
endif # LEDS_CLASS_MULTICOLOR
|