mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-22 07:27:12 +08:00
Merge tag 'leds-next-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/leds
Pull LED updates from Lee Jones:
"New Drivers:
- Add support for MediaTek MT6370 LED Indicator
- Add support for MediaTek MT6370 Flashlight
- Add support for QCOM PMIC Flash
- Add support for Rohm BD2606MVV Charge Pump LED
New Device Support:
- Add support for PMK8550 PWM to QCOM LPG
New Functionality:
- Add support for high resolution PWM to QCOM LPG
Fix-ups:
- Kconfig 'depends' and 'select' dependency changes
- Remove unused / irrelevant includes
- Remove unnecessary checks (already performed further into the call stack)
- Trivial: Fix commentary, simplify error messages
- Rid 'defined but not used' warnings
- Provide documentation
- Explicitly provide include files
Bug Fixes:
- Mark GPIO LED as BROKEN
- Fix Kconfig entries
- Fix various Smatch staticify reports
- Fix error handling (or a lack there of)"
* tag 'leds-next-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/leds: (30 commits)
leds: bd2606mvv: Driver for the Rohm 6 Channel i2c LED driver
dt-bindings: leds: Add ROHM BD2606MVV LED
docs: leds: ledtrig-oneshot: Fix spelling mistake
leds: pwm-multicolor: Simplify an error message
dt-bindings: leds: Convert PCA9532 to dtschema
leds: rgb: leds-qcom-lpg: Add support for PMK8550 PWM
leds: rgb: leds-qcom-lpg: Add support for high resolution PWM
dt-bindings: leds-qcom-lpg: Add qcom,pmk8550-pwm compatible string
leds: tca6507: Fix error handling of using fwnode_property_read_string
leds: flash: Set variables mvflash_{3,4}ch_regs storage-class-specifier to static
leds: rgb: mt6370: Correct config name to select in LEDS_MT6370_RGB
MAINTAINERS: Add entry for LED devices documentation
Documentation: leds: MT6370: Use bullet lists for timing variables
Documentation: leds: mt6370: Properly wrap hw_pattern chart
Documentation: leds: Add MT6370 doc to the toctree
leds: rgb: mt6370: Fix implicit declaration for FIELD_GET
docs: leds: Add MT6370 RGB LED pattern document
leds: flash: mt6370: Add MediaTek MT6370 flashlight support
leds: rgb: mt6370: Add MediaTek MT6370 current sink type LED Indicator support
dt-bindings: leds: spmi-flash-led: Add pm6150l compatible
...
This commit is contained in:
@@ -25,5 +25,6 @@ LEDs
|
||||
leds-lp5562
|
||||
leds-lp55xx
|
||||
leds-mlxcpld
|
||||
leds-mt6370-rgb
|
||||
leds-sc27xx
|
||||
leds-qcom-lpg
|
||||
|
||||
64
Documentation/leds/leds-mt6370-rgb.rst
Normal file
64
Documentation/leds/leds-mt6370-rgb.rst
Normal file
@@ -0,0 +1,64 @@
|
||||
.. SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
=========================================
|
||||
The device for Mediatek MT6370 RGB LED
|
||||
=========================================
|
||||
|
||||
Description
|
||||
-----------
|
||||
|
||||
The MT6370 integrates a four-channel RGB LED driver, designed to provide a
|
||||
variety of lighting effect for mobile device applications. The RGB LED devices
|
||||
includes a smart LED string controller and it can drive 3 channels of LEDs with
|
||||
a sink current up to 24mA and a CHG_VIN power good indicator LED with sink
|
||||
current up to 6mA. It provides three operation modes for RGB LEDs:
|
||||
PWM Dimming mode, breath pattern mode, and constant current mode. The device
|
||||
can increase or decrease the brightness of the RGB LED via an I2C interface.
|
||||
|
||||
The breath pattern for a channel can be programmed using the "pattern" trigger,
|
||||
using the hw_pattern attribute.
|
||||
|
||||
/sys/class/leds/<led>/hw_pattern
|
||||
--------------------------------
|
||||
|
||||
Specify a hardware breath pattern for a MT6370 RGB LED.
|
||||
|
||||
The breath pattern is a series of timing pairs, with the hold-time expressed in
|
||||
milliseconds. And the brightness is controlled by
|
||||
'/sys/class/leds/<led>/brightness'. The pattern doesn't include the brightness
|
||||
setting. Hardware pattern only controls the timing for each pattern stage
|
||||
depending on the current brightness setting.
|
||||
|
||||
Pattern diagram::
|
||||
|
||||
"0 Tr1 0 Tr2 0 Tf1 0 Tf2 0 Ton 0 Toff" --> '0' for dummy brightness code
|
||||
|
||||
^
|
||||
| ============
|
||||
| / \ /
|
||||
Icurr | / \ /
|
||||
| / \ /
|
||||
| / \ / .....repeat
|
||||
| / \ /
|
||||
| --- --- ---
|
||||
|--- --- ---
|
||||
+----------------------------------============------------> Time
|
||||
< Tr1><Tr2>< Ton ><Tf1><Tf2 >< Toff >< Tr1><Tr2>
|
||||
|
||||
Timing description:
|
||||
|
||||
* Tr1: First rising time for 0% - 30% load.
|
||||
* Tr2: Second rising time for 31% - 100% load.
|
||||
* Ton: On time for 100% load.
|
||||
* Tf1: First falling time for 100% - 31% load.
|
||||
* Tf2: Second falling time for 30% to 0% load.
|
||||
* Toff: Off time for 0% load.
|
||||
|
||||
* Tr1/Tr2/Tf1/Tf2/Ton: 125ms to 3125ms, 200ms per step.
|
||||
* Toff: 250ms to 6250ms, 400ms per step.
|
||||
|
||||
Pattern example::
|
||||
|
||||
"0 125 0 125 0 125 0 125 0 625 0 1050"
|
||||
|
||||
This Will configure Tr1/Tr2/Tf1/Tf2 to 125m, Ton to 625ms, and Toff to 1050ms.
|
||||
@@ -5,7 +5,7 @@ One-shot LED Trigger
|
||||
This is a LED trigger useful for signaling the user of an event where there are
|
||||
no clear trap points to put standard led-on and led-off settings. Using this
|
||||
trigger, the application needs only to signal the trigger when an event has
|
||||
happened, than the trigger turns the LED on and than keeps it off for a
|
||||
happened, then the trigger turns the LED on and then keeps it off for a
|
||||
specified amount of time.
|
||||
|
||||
This trigger is meant to be usable both for sporadic and dense events. In the
|
||||
|
||||
Reference in New Issue
Block a user