Files
linux-stable-mirror/include/linux/leds-expresswire.h
Duje Mihanović f4b830a537 leds: expresswire: Fix chip state breakage
It is possible to put the KTD2801 chip in an unknown/undefined state by
changing the brightness very rapidly (for example, with a brightness
slider). When this happens, the brightness is stuck on max and cannot be
changed until the chip is power cycled.

Fix this by disabling interrupts while talking to the chip. While at it,
make expresswire_power_off() use fsleep() and also unexport some
functions meant to be internal.

Fixes: 1368d06dd2 ("leds: Introduce ExpressWire library")
Tested-by: Karel Balej <balejk@matfyz.cz>
Signed-off-by: Duje Mihanović <duje@dujemihanovic.xyz>
Link: https://patch.msgid.link/20251217-expresswire-fix-v2-1-4a02b10acd96@dujemihanovic.xyz
Signed-off-by: Lee Jones <lee@kernel.org>
2026-02-04 09:20:27 +00:00

36 lines
959 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Shared library for Kinetic's ExpressWire protocol.
* This protocol works by pulsing the ExpressWire IC's control GPIO.
* ktd2692 and ktd2801 are known to use this protocol.
*/
#ifndef _LEDS_EXPRESSWIRE_H
#define _LEDS_EXPRESSWIRE_H
#include <linux/types.h>
struct gpio_desc;
struct expresswire_timing {
unsigned long poweroff_us;
unsigned long detect_delay_us;
unsigned long detect_us;
unsigned long data_start_us;
unsigned long end_of_data_low_us;
unsigned long end_of_data_high_us;
unsigned long short_bitset_us;
unsigned long long_bitset_us;
};
struct expresswire_common_props {
struct gpio_desc *ctrl_gpio;
struct expresswire_timing timing;
};
void expresswire_power_off(struct expresswire_common_props *props);
void expresswire_enable(struct expresswire_common_props *props);
void expresswire_write_u8(struct expresswire_common_props *props, u8 val);
#endif /* _LEDS_EXPRESSWIRE_H */