dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
36 lines
959 B
C
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 */
|