Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
39 lines
1.1 KiB
C
39 lines
1.1 KiB
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_start(struct expresswire_common_props *props);
|
|
void expresswire_end(struct expresswire_common_props *props);
|
|
void expresswire_set_bit(struct expresswire_common_props *props, bool bit);
|
|
void expresswire_write_u8(struct expresswire_common_props *props, u8 val);
|
|
|
|
#endif /* _LEDS_EXPRESSWIRE_H */
|