* [PATCH v5 0/2] HID: generic: add LampArray support via hid-lamparray helper
@ 2026-09-03 7:35 Aaron Erhardt
2026-09-03 7:35 ` [PATCH v5 1/2] HID: lamparray: add new LampArray helper module Aaron Erhardt
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Aaron Erhardt @ 2026-09-03 7:35 UTC (permalink / raw)
To: Jiri Kosina, Benjamin Tissoires
Cc: Aaron Erhardt, wse, linux-input, linux-kernel
Add a new hid-lamparray helper module and integrate it with the
hid-generic driver.
While more complex lamparray handling should be done in userspace via
hidraw, providing a small module to add basic lamparray support makes it
possible for userspace software to interact with lamparrays by simply
using well-known APIs of the LED subsystem. One use-case would be to
enable desktop environments to support keyboard backlight control out of
the box for HID lamparray devices without having to implement the whole
HID protocol themselves.
This patch is based on previous discussions:
https://lore.kernel.org/all/1fb08a74-62c7-4d0c-ba5d-648e23082dcb@tuxedocomputers.com/
The helper provides basic support for devices exposing a
Lighting/LampArray application collection (usage page 0x59) and
registers a single-zone RGB LED representation via the LED
subsystem.
hid-generic now checks for LampArray support after hid_parse() and
optionally registers a lamparray instance. Failures in the helper
do not abort device probe to keep the driver logic otherwise unchanged.
LampArray resources are released on driver remove.
This commit was successfully tested on the Microsoft MacroPad reference
implementation (https://github.com/microsoft/RP2040MacropadHidSample
1d6c3ad) and in combination with the tuxedo_nb04_wmi driver, albeit
only fully functional with a recent fix posted to the LKML
(https://lore.kernel.org/all/20260826081149.235487-2-aer@tuxedocomputers.com).
v5:
- Proper hardware detection (no quirks necessary anymore)
- Add documentation for new sysfs knob
- Pass limits of the device to sysfs (intesities & brightness)
- More flexible Kconfig (use tristate)
- Improved locking
- Several memory leak and (de-)initialization fixes
- Don't read current color values from hardware (the HID spec does not
offer this option)
- Remove redundant report dump functionality
v4:
- Restrict CONFIG_HID_LAMPARRAY to built-in configurations only to fix
additional randconfig build errors
v3:
- Squash V1 and V2 into one patch
v2:
- Fix Kconfig to avoid build errors when LEDS_CLASS_MULTICOLOR is
disabled
Aaron Erhardt (2):
HID: lamparray: add new LampArray helper module
HID: generic: add LampArray support via hid-lamparray helper
.../ABI/testing/sysfs-driver-hid-lamparray | 16 +
drivers/hid/Kconfig | 18 +
drivers/hid/Makefile | 2 +
drivers/hid/hid-generic.c | 38 +
drivers/hid/hid-lamparray.c | 812 ++++++++++++++++++
include/linux/hid-lamparray.h | 88 ++
6 files changed, 974 insertions(+)
create mode 100644 Documentation/ABI/testing/sysfs-driver-hid-lamparray
create mode 100644 drivers/hid/hid-lamparray.c
create mode 100644 include/linux/hid-lamparray.h
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v5 1/2] HID: lamparray: add new LampArray helper module
2026-09-03 7:35 [PATCH v5 0/2] HID: generic: add LampArray support via hid-lamparray helper Aaron Erhardt
@ 2026-09-03 7:35 ` Aaron Erhardt
2026-09-03 7:48 ` sashiko-bot
` (2 more replies)
2026-09-03 7:35 ` [PATCH v5 2/2] HID: generic: add LampArray support via hid-lamparray helper Aaron Erhardt
2026-09-04 20:49 ` [PATCH v5 0/2] " Armin Wolf
2 siblings, 3 replies; 9+ messages in thread
From: Aaron Erhardt @ 2026-09-03 7:35 UTC (permalink / raw)
To: Jiri Kosina, Benjamin Tissoires
Cc: Aaron Erhardt, wse, linux-input, linux-kernel
Add a new hid-lamparray helper module that provides basic support for
devices exposing a Lighting/LampArray application collection (usage
page 0x59) and registers a single-zone RGB LED representation via the
LED subsystem.
The module can be used as a library in HID drivers to add support for
the HID LampArray protocol. While the API is quite basic as of now
it could be extended in the future.
Co-developed-by: Tim Guttzeit <tgu@tuxedocomputers.com>
Signed-off-by: Tim Guttzeit <tgu@tuxedocomputers.com>
Signed-off-by: Aaron Erhardt <aer@tuxedocomputers.com>
---
.../ABI/testing/sysfs-driver-hid-lamparray | 16 +
drivers/hid/Kconfig | 17 +
drivers/hid/Makefile | 2 +
drivers/hid/hid-lamparray.c | 812 ++++++++++++++++++
include/linux/hid-lamparray.h | 88 ++
5 files changed, 935 insertions(+)
create mode 100644 Documentation/ABI/testing/sysfs-driver-hid-lamparray
create mode 100644 drivers/hid/hid-lamparray.c
create mode 100644 include/linux/hid-lamparray.h
diff --git a/Documentation/ABI/testing/sysfs-driver-hid-lamparray b/Documentation/ABI/testing/sysfs-driver-hid-lamparray
new file mode 100644
index 000000000000..795be6c4c368
--- /dev/null
+++ b/Documentation/ABI/testing/sysfs-driver-hid-lamparray
@@ -0,0 +1,16 @@
+What: /sys/bus/hid/devices/<bus>:<vid>:<pid>.<n>/use_leds_uapi
+Date: August 2026
+KernelVersion: 7.3
+Contact: aer@tuxedocomputers.com
+Description:
+ If a driver uses the hid-lamparray module and a device supporting
+ LampArray is found, one multicolor LED class device is registered under
+ /sys/class/leds/rgb:<function> to expose the single-zone RGB control.
+ Every device gets an incremental unique id.
+
+ Additionally, the use_leds_uapi sysfs attribute to control the LED class
+ device is attached directly to the HID device at
+ /sys/bus/hid/devices/<bus>:<vid>:<pid>.<n>/use_leds_uapi. Writing 0 to
+ use_leds_uapi unregisters the LED class device. The last state is kept
+ cached. Writing 1 registers it again and restores the cached state to
+ hardware.
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
index aa7fa11a0197..4afd80a67b39 100644
--- a/drivers/hid/Kconfig
+++ b/drivers/hid/Kconfig
@@ -92,6 +92,23 @@ config HID_GENERIC
If unsure, say Y.
+config HID_LAMPARRAY
+ tristate "HID LampArray helper"
+ depends on HID
+ depends on LEDS_CLASS_MULTICOLOR
+ default n
+ help
+ Helper for HID devices exposing a Lighting/LampArray collection.
+ Treats LampArray devices as a single-zone device and exposes a sysfs
+ interface for changing color and intensity values. Also exposes a
+ sysfs flag to be disabled e.g. by a userspace driver.
+
+ This can be used as library in existing drivers. The generic HID
+ driver is extended by default to handle lamp array devices if this
+ option is enabled.
+
+ If unsure, say N.
+
config HID_HAPTIC
bool "Haptic touchpad support"
default n
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile
index 48a863b245ee..f95630fa8bd8 100644
--- a/drivers/hid/Makefile
+++ b/drivers/hid/Makefile
@@ -13,6 +13,8 @@ obj-$(CONFIG_UHID) += uhid.o
obj-$(CONFIG_HID_GENERIC) += hid-generic.o
+obj-$(CONFIG_HID_LAMPARRAY) += hid-lamparray.o
+
hid-$(CONFIG_HIDRAW) += hidraw.o
hid-logitech-y := hid-lg.o
diff --git a/drivers/hid/hid-lamparray.c b/drivers/hid/hid-lamparray.c
new file mode 100644
index 000000000000..9a438aa2d305
--- /dev/null
+++ b/drivers/hid/hid-lamparray.c
@@ -0,0 +1,812 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * hid-lamparray.c - HID LampArray helper module (single-zone RGB)
+ *
+ * Helper module for HID drivers supporting devices that expose a Lighting and
+ * Illumination (LampArray) application collection (usage page 0x59).
+ *
+ * The module provides a minimal integration with the LED subsystem and treats
+ * the device as a single zone: all lamps share one RGB value and a global
+ * brightness level. It does not implement multi-zone layouts or hardware
+ * effects.
+ *
+ * If enabled and a device supporting LampArray is found, one multicolor LED
+ * class device is registered under /sys/class/leds/<HID-ID>:rgb:LampArray to
+ * expose the single-zone RGB control.
+ *
+ * The use_leds_uapi sysfs attribute is attached directly to the HID device
+ * under /sys/bus/hid/devices/<HID-ID>/use_leds_uapi. Writing 0 to use_leds_uapi
+ * unregisters the LED class device. The last state is kept cached. Writing 1
+ * registers it again and restores the cached state to hardware. State is cached
+ * as last known RGB + brightness.
+ *
+ * The module does not bind to devices on its own. Instead, a HID driver may
+ * query support via lamparray_is_supported_device() after hid_parse() and
+ * create an instance using lamparray_register().
+ *
+ * Copyright (C) 2026 Tim Guttzeit <tgu@tuxedocomputers.com>
+ * Copyright (C) 2026 Aaron Erhardt <aer@tuxedocomputers.com>
+ */
+
+#include <dt-bindings/leds/common.h>
+#include <linux/limits.h>
+#include <linux/minmax.h>
+#include <linux/hid.h>
+#include <linux/leds.h>
+#include <linux/sysfs.h>
+#include <linux/hid-lamparray.h>
+#include <linux/module.h>
+#include <linux/mutex.h>
+#include <linux/container_of.h>
+#include <linux/led-class-multicolor.h>
+#include <linux/xarray.h>
+
+/* Constants */
+
+/* HID usages (LampArray, etc.) */
+#define HID_LIGHTING_ILLUMINATION_USAGE_PAGE 0x0059
+
+/* HID usage types */
+#define HID_APPLICATION_COLLECTION_USAGE_TYPE 0x0001
+#define HID_LAMPARRAY_ATTRIBUTES_REPORT 0x0002
+#define HID_LAMP_ATTRIBUTES_RESPONSE_REPORT 0x0022
+#define HID_LAMP_RANGE_UPDATE_REPORT 0x0060
+#define HID_LAMPARRAY_CONTROL_REPORT 0x0070
+
+/* HID attributes */
+#define HID_LAIP_LAMP_COUNT 0x0003
+#define HID_LAIP_LAMPARRAY_KIND 0x0007
+#define HID_LAIP_RED_LEVEL_COUNT 0x0028
+#define HID_LAIP_GREEN_LEVEL_COUNT 0x0029
+#define HID_LAIP_BLUE_LEVEL_COUNT 0x002a
+#define HID_LAIP_INTENSITY_LEVEL_COUNT 0x002b
+#define HID_LAIP_RED_UPDATE_CHANNEL 0x0051
+#define HID_LAIP_GREEN_UPDATE_CHANNEL 0x0052
+#define HID_LAIP_BLUE_UPDATE_CHANNEL 0x0053
+#define HID_LAIP_INTENSITY_UPDATE_CHANNEL 0x0054
+#define HID_LAIP_LAMP_ID_START 0x0061
+#define HID_LAIP_LAMP_ID_END 0x0062
+#define HID_LAIP_AUTONOMOUS_MODE 0x0071
+
+/* LampArrayKind values */
+#define HID_LAMPARRAY_KIND_KEYBOARD 0x0001
+
+/* Helper struct for fields and their indices */
+struct hid_field_value {
+ struct hid_field *field;
+ int index;
+};
+
+/* Helper struct for color fields */
+struct lamparray_color_fields {
+ struct hid_field_value red;
+ struct hid_field_value green;
+ struct hid_field_value blue;
+ struct hid_field_value intensity;
+};
+
+/* Device state */
+struct lamparray_device {
+ struct hid_device *hdev;
+
+ struct lamparray_color_fields color_levels;
+ struct lamparray_color_fields color_update;
+
+ struct hid_field_value autonomous_field;
+ struct hid_field_value range_start;
+ struct hid_field_value range_end;
+ struct hid_field_value lamp_count;
+ struct hid_field_value lamparray_kind;
+
+ u16 lamp_count_value;
+ u32 lamparray_kind_value;
+
+ struct led_classdev_mc mc_cdev;
+ struct mc_subled subleds[3];
+
+ struct mutex dev_lock; /* Protects cached state and HID access */
+ struct mutex sysfs_lock; /* Protects sysfs LED (de-)initialization */
+
+ u8 max_r;
+ u8 max_g;
+ u8 max_b;
+ u8 max_brightness;
+
+ u8 last_r;
+ u8 last_g;
+ u8 last_b;
+ u8 last_brightness;
+
+ bool use_leds_uapi;
+ bool led_registered;
+};
+
+/*
+ * Opaque handle exposed to callers via the header.
+ * Keep the actual state in lamparray_device, but return a stable pointer.
+ */
+struct lamparray {
+ struct lamparray_device ldev;
+};
+
+/*
+ * Mapping for hid_device pointers to their lamparray data.
+ * Since there is not guarantee of how the driver using this library
+ * will use its drvdata, the only safe way to retrieve the lamparray
+ * data from a HID device pointer is using this mapping.
+ */
+static DEFINE_XARRAY(lamparray_by_hdev);
+
+/* HID helper functions */
+
+static int get_field_value(struct hid_field_value *field_value)
+{
+ return field_value->field->value[field_value->index];
+}
+
+static u8 get_field_value_as_u8(struct hid_field_value *field_value)
+{
+ return clamp_val(get_field_value(field_value), 0, U8_MAX);
+}
+
+static void set_field_value(struct hid_field_value *field_value, int value)
+{
+ field_value->field->value[field_value->index] = value;
+}
+
+static bool lamparray_color_fields_is_complete(struct lamparray_color_fields *color_fields)
+{
+ return color_fields->red.field && color_fields->green.field &&
+ color_fields->blue.field && color_fields->intensity.field;
+}
+
+static int lamparray_read_attributes_report(struct lamparray_device *ldev)
+{
+ struct hid_device *hdev = ldev->hdev;
+ struct hid_report *report;
+
+ if (!ldev->lamp_count.field) {
+ hid_dbg(hdev, "No LampCount field found\n");
+ return -ENODEV;
+ }
+
+ if (!ldev->lamparray_kind.field) {
+ hid_dbg(hdev, "No LampArrayKind field found\n");
+ return -ENODEV;
+ }
+
+ report = ldev->lamp_count.field->report;
+
+ if (!report) {
+ hid_dbg(hdev, "LampCount field has no report\n");
+ return -ENODEV;
+ }
+
+ mutex_lock(&ldev->dev_lock);
+
+ /* Update values */
+ hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
+ hid_hw_wait(hdev);
+
+ ldev->lamp_count_value = get_field_value(&ldev->lamp_count);
+
+ if (ldev->lamp_count_value == 0) {
+ mutex_unlock(&ldev->dev_lock);
+ hid_dbg(hdev, "LampCount is %d (invalid)\n", ldev->lamp_count_value);
+ return -EINVAL;
+ }
+
+ ldev->lamparray_kind_value = get_field_value(&ldev->lamparray_kind);
+
+ mutex_unlock(&ldev->dev_lock);
+
+ return 0;
+}
+
+static int lamparray_parse_update_report(struct lamparray_device *ldev)
+{
+ struct hid_device *hdev = ldev->hdev;
+ struct hid_report_enum *re;
+ struct hid_report *report;
+ struct hid_field *field;
+ int i, j;
+ int ret = 0;
+
+ mutex_lock(&ldev->dev_lock);
+
+ re = &hdev->report_enum[HID_FEATURE_REPORT];
+
+ list_for_each_entry(report, &re->report_list, list) {
+ for (i = 0; i < report->maxfield; i++) {
+ field = report->field[i];
+ if (!field)
+ continue;
+
+ if (!field->usage || !field->maxusage)
+ continue;
+
+ for (j = 0; j < field->maxusage; j++) {
+ u32 usage = field->usage[j].hid;
+ u32 collection_idx = field->usage[j].collection_index;
+ u32 collection_usage = hdev->collection[collection_idx].usage;
+
+ u16 page = (usage & HID_USAGE_PAGE) >> 16;
+ u16 id = usage & HID_USAGE;
+ u16 collection_usage_id = collection_usage & U16_MAX;
+
+ if (page != HID_LIGHTING_ILLUMINATION_USAGE_PAGE)
+ continue;
+
+ if (collection_usage_id == HID_LAMPARRAY_ATTRIBUTES_REPORT) {
+ switch (id) {
+ case HID_LAIP_LAMP_COUNT:
+ ldev->lamp_count.field = field;
+ ldev->lamp_count.index = j;
+ break;
+ case HID_LAIP_LAMPARRAY_KIND:
+ ldev->lamparray_kind.field = field;
+ ldev->lamparray_kind.index = j;
+ break;
+ }
+ } else if (collection_usage_id ==
+ HID_LAMP_ATTRIBUTES_RESPONSE_REPORT) {
+ switch (id) {
+ case HID_LAIP_RED_LEVEL_COUNT:
+ ldev->color_levels.red.field = field;
+ ldev->color_levels.red.index = j;
+ break;
+ case HID_LAIP_GREEN_LEVEL_COUNT:
+ ldev->color_levels.green.field = field;
+ ldev->color_levels.green.index = j;
+ break;
+ case HID_LAIP_BLUE_LEVEL_COUNT:
+ ldev->color_levels.blue.field = field;
+ ldev->color_levels.blue.index = j;
+ break;
+ case HID_LAIP_INTENSITY_LEVEL_COUNT:
+ ldev->color_levels.intensity.field = field;
+ ldev->color_levels.intensity.index = j;
+ break;
+ }
+ } else if (collection_usage_id == HID_LAMP_RANGE_UPDATE_REPORT) {
+ switch (id) {
+ case HID_LAIP_RED_UPDATE_CHANNEL:
+ ldev->color_update.red.field = field;
+ ldev->color_update.red.index = j;
+ break;
+ case HID_LAIP_GREEN_UPDATE_CHANNEL:
+ ldev->color_update.green.field = field;
+ ldev->color_update.green.index = j;
+ break;
+ case HID_LAIP_BLUE_UPDATE_CHANNEL:
+ ldev->color_update.blue.field = field;
+ ldev->color_update.blue.index = j;
+ break;
+ case HID_LAIP_INTENSITY_UPDATE_CHANNEL:
+ ldev->color_update.intensity.field = field;
+ ldev->color_update.intensity.index = j;
+ break;
+ case HID_LAIP_LAMP_ID_START:
+ ldev->range_start.field = field;
+ ldev->range_start.index = j;
+ break;
+ case HID_LAIP_LAMP_ID_END:
+ ldev->range_end.field = field;
+ ldev->range_end.index = j;
+ break;
+ default:
+ break;
+ }
+ } else if (collection_usage_id == HID_LAMPARRAY_CONTROL_REPORT &&
+ id == HID_LAIP_AUTONOMOUS_MODE) {
+ ldev->autonomous_field.field = field;
+ ldev->autonomous_field.index = j;
+ }
+ }
+ }
+ }
+
+ if (!ldev->autonomous_field.field ||
+ !lamparray_color_fields_is_complete(&ldev->color_update))
+ ret = -ENODEV;
+
+ mutex_unlock(&ldev->dev_lock);
+
+ return ret;
+}
+
+static int lamparray_hw_set_autonomous(struct lamparray_device *ldev,
+ bool enable)
+{
+ struct hid_device *hdev = ldev->hdev;
+ struct hid_field *field = ldev->autonomous_field.field;
+
+ if (!field)
+ return -ENODEV;
+
+ mutex_lock(&ldev->dev_lock);
+
+ set_field_value(&ldev->autonomous_field, !!enable);
+
+ hid_hw_request(hdev, field->report, HID_REQ_SET_REPORT);
+ hid_hw_wait(hdev);
+
+ mutex_unlock(&ldev->dev_lock);
+
+ return 0;
+}
+
+static int lamparray_hw_set_state(struct lamparray_device *ldev, u8 r, u8 g,
+ u8 b, u8 intensity)
+{
+ struct hid_device *hdev = ldev->hdev;
+ struct hid_report *report;
+
+ if (!lamparray_color_fields_is_complete(&ldev->color_update))
+ return -ENODEV;
+
+ if (ldev->range_start.field && ldev->range_end.field) {
+ set_field_value(&ldev->range_start, 0);
+ set_field_value(&ldev->range_end, ldev->lamp_count_value - 1);
+ }
+
+ set_field_value(&ldev->color_update.red, r);
+ set_field_value(&ldev->color_update.green, g);
+ set_field_value(&ldev->color_update.blue, b);
+ set_field_value(&ldev->color_update.intensity, intensity);
+
+ report = ldev->color_update.red.field->report;
+ hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
+ hid_hw_wait(hdev);
+
+ return 0;
+}
+
+/*
+ * Simple helper to read the color information of the first lamp.
+ * This does not read the state of the whole lamp array since this driver only
+ * exposes one LED anyway, so one color is sufficient here for now.
+ */
+static int lamparray_get_lamp_attributes(struct lamparray_device *ldev)
+{
+ struct hid_device *hdev = ldev->hdev;
+ struct hid_report *report;
+
+ if (!lamparray_color_fields_is_complete(&ldev->color_levels))
+ return -ENODEV;
+
+ /*
+ * Get value of any lamp.
+ */
+ report = ldev->color_levels.red.field->report;
+
+ mutex_lock(&ldev->dev_lock);
+
+ hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
+ hid_hw_wait(hdev);
+
+ ldev->max_r = get_field_value_as_u8(&ldev->color_levels.red);
+ ldev->max_g = get_field_value_as_u8(&ldev->color_levels.green);
+ ldev->max_b = get_field_value_as_u8(&ldev->color_levels.blue);
+ ldev->max_brightness = get_field_value_as_u8(&ldev->color_levels.intensity);
+
+ mutex_unlock(&ldev->dev_lock);
+
+ return 0;
+}
+
+/* Helper functions */
+
+static int lamparray_restore_state(struct lamparray_device *ldev)
+{
+ u8 r, g, b;
+ int ret;
+ enum led_brightness brightness;
+
+ mutex_lock(&ldev->dev_lock);
+
+ if (!ldev->use_leds_uapi) {
+ mutex_unlock(&ldev->dev_lock);
+ return 0;
+ }
+
+ r = ldev->last_r;
+ g = ldev->last_g;
+ b = ldev->last_b;
+ brightness = ldev->last_brightness;
+
+ ldev->mc_cdev.subled_info[0].intensity = r;
+ ldev->mc_cdev.subled_info[1].intensity = g;
+ ldev->mc_cdev.subled_info[2].intensity = b;
+ ldev->mc_cdev.led_cdev.brightness = brightness;
+
+ led_mc_calc_color_components(&ldev->mc_cdev, brightness);
+
+ ret = lamparray_hw_set_state(ldev, r, g, b, brightness);
+
+ mutex_unlock(&ldev->dev_lock);
+ return ret;
+}
+
+/* LEDs API */
+
+static int lamparray_led_brightness_set(struct led_classdev *cdev,
+ enum led_brightness brightness)
+{
+ struct led_classdev_mc *mc = lcdev_to_mccdev(cdev);
+ struct lamparray_device *ldev =
+ container_of_const(mc, struct lamparray_device, mc_cdev);
+ u8 r, g, b;
+ int ret;
+
+ /*
+ * Brightness is handled by the LampArray device if supported,
+ * so we can pass the raw intensity values.
+ */
+ r = mc->subled_info[0].intensity;
+ g = mc->subled_info[1].intensity;
+ b = mc->subled_info[2].intensity;
+
+ mc->led_cdev.brightness = brightness;
+ led_mc_calc_color_components(&ldev->mc_cdev, brightness);
+
+ mutex_lock(&ldev->dev_lock);
+ ret = lamparray_hw_set_state(ldev, r, g, b, brightness);
+ if (ret) {
+ mutex_unlock(&ldev->dev_lock);
+ hid_err(ldev->hdev, "Failed to send LampArray update: %d\n",
+ ret);
+ return ret;
+ }
+
+ ldev->last_r = r;
+ ldev->last_g = g;
+ ldev->last_b = b;
+ ldev->last_brightness = brightness;
+ mutex_unlock(&ldev->dev_lock);
+
+ return 0;
+}
+
+static enum led_brightness
+lamparray_led_brightness_get(struct led_classdev *cdev)
+{
+ struct led_classdev_mc *mc = lcdev_to_mccdev(cdev);
+ struct lamparray_device *ldev =
+ container_of_const(mc, struct lamparray_device, mc_cdev);
+
+ return ldev->last_brightness;
+}
+
+static int lamparray_register_led(struct lamparray_device *ldev)
+{
+ struct device *dev = &ldev->hdev->dev;
+ struct led_classdev *cdev = &ldev->mc_cdev.led_cdev;
+ int ret;
+
+ mutex_lock(&ldev->sysfs_lock);
+
+ if (ldev->led_registered) {
+ mutex_unlock(&ldev->sysfs_lock);
+ return 0;
+ }
+
+ if (!cdev->name) {
+ /* Fallback value */
+ const char *function = LED_FUNCTION_STATUS;
+
+ /* Some heuristics for choosing a better LED function. */
+ if (ldev->lamparray_kind_value == HID_LAMPARRAY_KIND_KEYBOARD)
+ function = LED_FUNCTION_KBD_BACKLIGHT;
+
+ cdev->name = kasprintf(GFP_KERNEL, "rgb:%s", function);
+ if (!cdev->name) {
+ mutex_unlock(&ldev->sysfs_lock);
+ return -ENOMEM;
+ }
+ }
+
+ mutex_lock(&ldev->dev_lock);
+ /* Setup */
+ cdev->max_brightness = ldev->max_brightness;
+ cdev->brightness_set_blocking = lamparray_led_brightness_set;
+ cdev->brightness_get = lamparray_led_brightness_get;
+ cdev->flags |= LED_RETAIN_AT_SHUTDOWN;
+
+ ldev->subleds[0].color_index = LED_COLOR_ID_RED;
+ ldev->subleds[0].max_intensity = ldev->max_r;
+ ldev->subleds[1].color_index = LED_COLOR_ID_GREEN;
+ ldev->subleds[1].max_intensity = ldev->max_g;
+ ldev->subleds[2].color_index = LED_COLOR_ID_BLUE;
+ ldev->subleds[2].max_intensity = ldev->max_b;
+
+ /* Set values */
+ ldev->subleds[0].intensity = ldev->last_r;
+ ldev->subleds[1].intensity = ldev->last_g;
+ ldev->subleds[2].intensity = ldev->last_b;
+ cdev->brightness = ldev->last_brightness;
+
+ ldev->mc_cdev.subled_info = ldev->subleds;
+ ldev->mc_cdev.num_colors = ARRAY_SIZE(ldev->subleds);
+
+ /* Ensure subled_info[].brightness matches intensity + brightness */
+ led_mc_calc_color_components(&ldev->mc_cdev, ldev->last_brightness);
+ mutex_unlock(&ldev->dev_lock);
+
+ ret = led_classdev_multicolor_register(dev, &ldev->mc_cdev);
+ if (ret) {
+ mutex_unlock(&ldev->sysfs_lock);
+ return ret;
+ }
+
+ ldev->led_registered = true;
+ mutex_unlock(&ldev->sysfs_lock);
+
+ return 0;
+}
+
+static void lamparray_unregister_led(struct lamparray_device *ldev)
+{
+ bool was_registered;
+ struct led_classdev *cdev = &ldev->mc_cdev.led_cdev;
+
+ mutex_lock(&ldev->sysfs_lock);
+ was_registered = ldev->led_registered;
+ ldev->led_registered = false;
+
+ if (was_registered)
+ led_classdev_multicolor_unregister(&ldev->mc_cdev);
+
+ kfree(cdev->name);
+ cdev->name = NULL;
+
+ mutex_unlock(&ldev->sysfs_lock);
+}
+
+/* Sysfs */
+
+static struct lamparray_device *
+lamparray_ldev_from_sysfs_dev(struct device *dev)
+{
+ struct hid_device *hdev = to_hid_device(dev);
+
+ return xa_load(&lamparray_by_hdev, (unsigned long)hdev);
+}
+
+static ssize_t use_leds_uapi_show(struct device *dev,
+ struct device_attribute *attr, char *buf)
+{
+ struct lamparray_device *ldev = lamparray_ldev_from_sysfs_dev(dev);
+
+ if (!ldev)
+ return -ENODEV;
+
+ return sysfs_emit(buf, "%d\n", ldev->use_leds_uapi);
+}
+
+static ssize_t use_leds_uapi_store(struct device *dev,
+ struct device_attribute *attr,
+ const char *buf, size_t count)
+{
+ struct lamparray_device *ldev = lamparray_ldev_from_sysfs_dev(dev);
+ int val;
+ int old_val;
+ int ret;
+
+ if (!ldev)
+ return -ENODEV;
+
+ ret = kstrtoint(buf, 0, &val);
+ if (ret)
+ return ret;
+
+ if (val != 0 && val != 1)
+ return -EINVAL;
+
+ mutex_lock(&ldev->dev_lock);
+ old_val = ldev->use_leds_uapi;
+
+ if (val == old_val) {
+ mutex_unlock(&ldev->dev_lock);
+ return count;
+ }
+
+ ldev->use_leds_uapi = val;
+ mutex_unlock(&ldev->dev_lock);
+
+ if (val == 1) {
+ ret = lamparray_register_led(ldev);
+ if (ret) {
+ mutex_lock(&ldev->dev_lock);
+ ldev->use_leds_uapi = old_val;
+ mutex_unlock(&ldev->dev_lock);
+ return ret;
+ }
+ ret = lamparray_restore_state(ldev);
+ if (ret) {
+ hid_err(ldev->hdev, "Could not restore state: %d\n", ret);
+ return ret;
+ }
+
+ } else {
+ lamparray_unregister_led(ldev);
+ }
+
+ return count;
+}
+static DEVICE_ATTR_RW(use_leds_uapi);
+
+static int lamparray_register_sysfs(struct lamparray_device *ldev)
+{
+ struct device *dev = &ldev->hdev->dev;
+ int ret;
+
+ ret = sysfs_create_file(&dev->kobj, &dev_attr_use_leds_uapi.attr);
+ if (ret)
+ hid_err(ldev->hdev,
+ "Failed to create lamparray sysfs group: %d\n", ret);
+
+ return ret;
+}
+
+static void lamparray_remove_sysfs(struct lamparray_device *ldev)
+{
+ sysfs_remove_file(&ldev->hdev->dev.kobj, &dev_attr_use_leds_uapi.attr);
+}
+
+/* Public API */
+
+bool lamparray_is_supported_device(struct hid_device *hdev)
+{
+ unsigned int i;
+
+ hid_dbg(hdev, "lamparray: walking %u collections\n",
+ hdev->maxcollection);
+
+ for (i = 0; i < hdev->maxcollection; i++) {
+ struct hid_collection *col = &hdev->collection[i];
+ u16 page = (col->usage & HID_USAGE_PAGE) >> 16;
+ u16 code = col->usage & HID_USAGE;
+
+ hid_dbg(hdev,
+ "lamparray: collection[%u]: type=%u level=%u usage=0x%08x page=0x%04x code=0x%04x\n",
+ i, col->type, col->level, col->usage, page, code);
+
+ if (col->type == HID_COLLECTION_APPLICATION &&
+ page == HID_LIGHTING_ILLUMINATION_USAGE_PAGE &&
+ code == HID_APPLICATION_COLLECTION_USAGE_TYPE) {
+ return true;
+ }
+ }
+ return false;
+}
+EXPORT_SYMBOL_GPL(lamparray_is_supported_device);
+
+struct lamparray *
+lamparray_register(struct hid_device *hdev,
+ const struct lamparray_init_state *led_init_state)
+{
+ int ret;
+ struct lamparray *la;
+ struct lamparray_device *ldev;
+
+ if (!hdev)
+ return ERR_PTR(-ENODEV);
+
+ la = kzalloc_obj(*la, GFP_KERNEL);
+ if (!la)
+ return ERR_PTR(-ENOMEM);
+
+ ldev = &la->ldev;
+
+ mutex_init(&ldev->dev_lock);
+ mutex_init(&ldev->sysfs_lock);
+ ldev->hdev = hdev;
+ ldev->use_leds_uapi = true;
+ ldev->led_registered = false;
+
+ /* Make sure the driver lock gets released for probing. */
+ hid_device_io_start(hdev);
+
+ ret = lamparray_parse_update_report(ldev);
+ if (ret) {
+ hid_err(hdev, "No LampArray update report found: %d\n", ret);
+ goto err_free;
+ }
+
+ ret = lamparray_read_attributes_report(ldev);
+ if (ret) {
+ hid_err(hdev,
+ "Could not determine LampCount: %d\n",
+ ret);
+ goto err_free;
+ }
+
+ ret = lamparray_get_lamp_attributes(ldev);
+ if (ret) {
+ hid_err(hdev,
+ "Faulty device. Could not query lamp attributes.\n");
+ goto err_free;
+ }
+
+ /* Use black (all zeros) as default. */
+ if (led_init_state) {
+ ldev->last_r = min(led_init_state->r, ldev->max_r);
+ ldev->last_g = min(led_init_state->g, ldev->max_g);
+ ldev->last_b = min(led_init_state->b, ldev->max_b);
+ ldev->last_brightness = min(led_init_state->brightness,
+ ldev->max_brightness);
+ }
+
+ ret = lamparray_register_led(ldev);
+ if (ret) {
+ hid_warn(hdev, "Failed to register LED UAPI: %d\n", ret);
+ ldev->use_leds_uapi = false;
+ }
+
+ ret = xa_err(xa_store(&lamparray_by_hdev, (unsigned long)hdev, ldev,
+ GFP_KERNEL));
+ if (ret)
+ goto err_unregister_led;
+
+ ret = lamparray_register_sysfs(ldev);
+ if (ret)
+ goto err_xa_erase;
+
+ ret = lamparray_hw_set_autonomous(ldev, false);
+ if (ret) {
+ hid_err(hdev, "Could not disable autonomous mode: %d", ret);
+ goto err_remove_sysfs;
+ }
+
+ hid_info(hdev, "LampArray device registered\n");
+
+ ret = lamparray_restore_state(ldev);
+ if (ret) {
+ hid_err(hdev, "Failed to set default state: %d", ret);
+ goto err_remove_sysfs;
+ }
+
+ hid_device_io_stop(hdev);
+ return la;
+
+err_remove_sysfs:
+ lamparray_remove_sysfs(ldev);
+err_xa_erase:
+ xa_erase(&lamparray_by_hdev, (unsigned long)hdev);
+err_unregister_led:
+ lamparray_unregister_led(ldev);
+err_free:
+ hid_device_io_stop(hdev);
+ mutex_destroy(&ldev->dev_lock);
+ mutex_destroy(&ldev->sysfs_lock);
+ kfree(la);
+ return ERR_PTR(ret);
+}
+EXPORT_SYMBOL_GPL(lamparray_register);
+
+void lamparray_unregister(struct lamparray *la)
+{
+ struct lamparray_device *ldev;
+
+ if (!la)
+ return;
+
+ ldev = &la->ldev;
+
+ lamparray_hw_set_autonomous(ldev, true);
+
+ lamparray_remove_sysfs(ldev);
+ xa_erase(&lamparray_by_hdev, (unsigned long)ldev->hdev);
+ lamparray_unregister_led(ldev);
+
+ mutex_destroy(&ldev->dev_lock);
+ mutex_destroy(&ldev->sysfs_lock);
+ kfree(la);
+}
+EXPORT_SYMBOL_GPL(lamparray_unregister);
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Tim Guttzeit <tgu@tuxedocomputers.com>");
+MODULE_AUTHOR("Aaron Erhardt <aer@tuxedocomputers.com>");
+MODULE_DESCRIPTION("HID LampArray helper module (single-zone RGB)");
diff --git a/include/linux/hid-lamparray.h b/include/linux/hid-lamparray.h
new file mode 100644
index 000000000000..a77869728d12
--- /dev/null
+++ b/include/linux/hid-lamparray.h
@@ -0,0 +1,88 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#ifndef _HID_LAMPARRAY_H
+#define _HID_LAMPARRAY_H
+
+#include <linux/hid.h>
+#include <linux/err.h>
+#include <linux/types.h>
+
+struct lamparray;
+
+/*
+ * Optional initial LED state for lamparray_register().
+ * Used to define the initial state of a LampArray's LEDs.
+ */
+struct lamparray_init_state {
+ u8 r;
+ u8 g;
+ u8 b;
+ u8 brightness;
+};
+
+#if IS_ENABLED(CONFIG_HID_LAMPARRAY)
+
+/**
+ * lamparray_is_supported_device() - check whether a HID device supports LampArray
+ * @hdev: HID device to inspect
+ *
+ * Check whether the given HID device exposes a Lighting/LampArray application
+ * collection as defined by the HID Lighting specification.
+ *
+ * This helper can be used by HID drivers to determine whether LampArray
+ * functionality should be enabled for a device.
+ *
+ * Return: %true if LampArray support is detected, %false otherwise.
+ */
+bool lamparray_is_supported_device(struct hid_device *hdev);
+
+/**
+ * lamparray_register() - initialize LampArray support for a HID device
+ * @hdev: HID device
+ * @led_init_state: Optional LED state at init specification
+ *
+ * Allocate and initialize internal LampArray state for the given HID device.
+ * The function parses required HID reports and fields and registers the
+ * associated miscdevice and sysfs attributes.
+ *
+ * Registers a multicolor LED class device to expose the LampArray functionality
+ * via the LED subsystem. If specified, the desired initial LED state is
+ * applied. If led_init_state is NULL, a default state is applied (all LEDs off).
+ *
+ * Return: pointer to a LampArray handle on success, or ERR_PTR() on failure.
+ */
+struct lamparray *lamparray_register(struct hid_device *hdev,
+ const struct lamparray_init_state *led_init_state);
+
+/**
+ * lamparray_unregister() - tear down LampArray support
+ * @la: LampArray handle returned by lamparray_register()
+ *
+ * Remove all resources associated with a LampArray instance.
+ *
+ * This unregisters the LED class device (if present), removes the miscdevice
+ * and sysfs interfaces and frees all internal state associated with @la.
+ */
+void lamparray_unregister(struct lamparray *la);
+
+#else /* !CONFIG_HID_LAMPARRAY */
+
+static inline bool lamparray_is_supported_device(struct hid_device *hdev)
+{
+ return false;
+}
+
+static inline struct lamparray *
+lamparray_register(struct hid_device *hdev,
+ const struct lamparray_init_state *led_init_state)
+{
+ return ERR_PTR(-EOPNOTSUPP);
+}
+
+static inline void lamparray_unregister(struct lamparray *la)
+{
+}
+
+#endif /* CONFIG_HID_LAMPARRAY */
+
+#endif /* _HID_LAMPARRAY_H */
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v5 2/2] HID: generic: add LampArray support via hid-lamparray helper
2026-09-03 7:35 [PATCH v5 0/2] HID: generic: add LampArray support via hid-lamparray helper Aaron Erhardt
2026-09-03 7:35 ` [PATCH v5 1/2] HID: lamparray: add new LampArray helper module Aaron Erhardt
@ 2026-09-03 7:35 ` Aaron Erhardt
2026-09-03 7:46 ` sashiko-bot
2026-09-04 20:49 ` [PATCH v5 0/2] " Armin Wolf
2 siblings, 1 reply; 9+ messages in thread
From: Aaron Erhardt @ 2026-09-03 7:35 UTC (permalink / raw)
To: Jiri Kosina, Benjamin Tissoires
Cc: Aaron Erhardt, wse, linux-input, linux-kernel
The hid-generic driver now checks for LampArray support after
hid_parse() and optionally registers a lamparray instance. Failures in
the helper do not abort device probe to keep the device unchanged.
LampArray resources are released on driver remove.
This patch was successfully tested on the Microsoft MacroPad reference
implementation (https://github.com/microsoft/RP2040MacropadHidSample
1d6c3ad) and in combination with the tuxedo_nb04_wmi driver, albeit only
functional with a recent fix posted to the LKML
(https://lore.kernel.org/all/20260728115918.125349-2-aer@tuxedocomputers.com).
Co-developed-by: Tim Guttzeit <tgu@tuxedocomputers.com>
Signed-off-by: Tim Guttzeit <tgu@tuxedocomputers.com>
Signed-off-by: Aaron Erhardt <aer@tuxedocomputers.com>
---
drivers/hid/Kconfig | 1 +
drivers/hid/hid-generic.c | 38 ++++++++++++++++++++++++++++++++++++++
2 files changed, 39 insertions(+)
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
index 4afd80a67b39..a0fcd89c2bb0 100644
--- a/drivers/hid/Kconfig
+++ b/drivers/hid/Kconfig
@@ -82,6 +82,7 @@ config UHID
config HID_GENERIC
tristate "Generic HID driver"
+ depends on HID_LAMPARRAY if HID_LAMPARRAY
default HID
help
Support for generic devices on the HID bus. This includes most
diff --git a/drivers/hid/hid-generic.c b/drivers/hid/hid-generic.c
index c2de916747de..c3d2283198e8 100644
--- a/drivers/hid/hid-generic.c
+++ b/drivers/hid/hid-generic.c
@@ -20,6 +20,7 @@
#include <asm/byteorder.h>
#include <linux/hid.h>
+#include <linux/hid-lamparray.h>
static struct hid_driver hid_generic;
@@ -60,6 +61,7 @@ static int hid_generic_probe(struct hid_device *hdev,
const struct hid_device_id *id)
{
int ret;
+ struct lamparray *la;
hdev->quirks |= HID_QUIRK_INPUT_PER_APP;
@@ -67,6 +69,31 @@ static int hid_generic_probe(struct hid_device *hdev,
if (ret)
return ret;
+ /*
+ * Optional: attach LampArray support if present.
+ * Never fail probe on LampArray errors; keep device functional.
+ */
+ if (IS_ENABLED(CONFIG_HID_LAMPARRAY) && lamparray_is_supported_device(hdev)) {
+ /*
+ * Use HID_CONNECT_DRIVER to claim driver to make sure
+ * requests are processed. Needed for performing
+ * hid_hw_request()/hid_hw_wait() to communicate with the
+ * LampArray device.
+ */
+ ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT | HID_CONNECT_DRIVER);
+ if (ret)
+ return ret;
+
+ la = lamparray_register(hdev, NULL);
+ if (IS_ERR(la)) {
+ hid_hw_stop(hdev);
+ hid_warn(hdev, "LampArray init failed: %ld\n", PTR_ERR(la));
+ } else {
+ hid_set_drvdata(hdev, la);
+ return 0;
+ }
+ }
+
return hid_hw_start(hdev, HID_CONNECT_DEFAULT);
}
@@ -78,6 +105,16 @@ static int hid_generic_reset_resume(struct hid_device *hdev)
return 0;
}
+static void hid_generic_remove(struct hid_device *hdev)
+{
+ struct lamparray *la = hid_get_drvdata(hdev);
+
+ if (IS_ENABLED(CONFIG_HID_LAMPARRAY) && la)
+ lamparray_unregister(la);
+
+ hid_hw_stop(hdev);
+}
+
static const struct hid_device_id hid_table[] = {
{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, HID_ANY_ID, HID_ANY_ID) },
{ }
@@ -90,6 +127,7 @@ static struct hid_driver hid_generic = {
.match = hid_generic_match,
.probe = hid_generic_probe,
.reset_resume = hid_generic_reset_resume,
+ .remove = hid_generic_remove,
};
module_hid_driver(hid_generic);
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v5 2/2] HID: generic: add LampArray support via hid-lamparray helper
2026-09-03 7:35 ` [PATCH v5 2/2] HID: generic: add LampArray support via hid-lamparray helper Aaron Erhardt
@ 2026-09-03 7:46 ` sashiko-bot
0 siblings, 0 replies; 9+ messages in thread
From: sashiko-bot @ 2026-09-03 7:46 UTC (permalink / raw)
To: Aaron Erhardt; +Cc: dmitry.torokhov, linux-input
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] The generic HID driver depends on HID_LAMPARRAY if HID_LAMPARRAY, which forces the core HID generic driver to be a module if the optional LampArray helper is a module.
--
commit de92bcafc34d337da4d9893ee22e49ef91520c6c
Author: Aaron Erhardt <aer@tuxedocomputers.com>
HID: generic: add LampArray support via hid-lamparray helper
The hid-generic driver now optionally registers a lamparray instance after
hid_parse(). LampArray resources are released on driver remove.
> diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
> index 4afd80a67b394..a0fcd89c2bb02 100644
> --- a/drivers/hid/Kconfig
> +++ b/drivers/hid/Kconfig
> @@ -82,6 +82,7 @@ config UHID
>
> config HID_GENERIC
> tristate "Generic HID driver"
> + depends on HID_LAMPARRAY if HID_LAMPARRAY
[Severity: High]
Does this restriction inadvertently force the core generic HID driver to be a
module when the optional LampArray helper is built as a module?
If a system relies on hid-generic for keyboard input during early boot
(e.g., to enter a LUKS decryption password or interact with a panic
shell) and expects the driver to be built-in, forcing it to compile
as a module could result in a total loss of early boot keyboard support.
Could this be avoided by dropping the "depends on" restriction and instead
using IS_REACHABLE(CONFIG_HID_LAMPARRAY) in both the header (for stubs)
and the C file? This would allow a built-in generic driver to gracefully
degrade to stubs while the optional helper remains a module.
> default HID
> help
> Support for generic devices on the HID bus. This includes most
[ ... ]
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260903073602.3815258-1-aer@tuxedocomputers.com?part=2
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v5 1/2] HID: lamparray: add new LampArray helper module
2026-09-03 7:35 ` [PATCH v5 1/2] HID: lamparray: add new LampArray helper module Aaron Erhardt
@ 2026-09-03 7:48 ` sashiko-bot
2026-09-03 20:07 ` Werner Sembach
2026-09-04 21:30 ` Armin Wolf
2 siblings, 0 replies; 9+ messages in thread
From: sashiko-bot @ 2026-09-03 7:48 UTC (permalink / raw)
To: Aaron Erhardt; +Cc: linux-input, dmitry.torokhov
Thank you for your contribution! Sashiko AI review found 9 potential issue(s) to consider:
- [High] Division by zero during LampArray LED registration if the device reports zero intensity levels.
- [High] `lamparray_register` forcibly releases the HID core's `driver_input_lock` during driver probe.
- [Medium] Concurrent sysfs writes can cause the internal state flag (`use_leds_uapi`) to completely desynchronize from the actual LED registration state due to prematurely dropping `dev_lock`.
- [Medium] The hardcoded LED name violates the LED subsystem naming conventions and will cause a sysfs `-EEXIST` error when multiple identical devices are connected.
- [Medium] The driver assumes all color and range fields reside within the same HID report, leading to incomplete state updates if they are split.
- [Medium] Hardware is left in a non-autonomous state on the `lamparray_register` error path if `lamparray_restore_state` fails.
- [Medium] Lamp Range Update reports are defined as Output reports in the HID specification, but the driver only searches Feature reports.
- [Medium] Incorrect teardown ordering in `lamparray_unregister` allows concurrent hardware writes in autonomous mode.
- [Low] The driver prints a success log message during initialization, which explicitly violates the subsystem's logging rules.
--
commit f90eeb3c7fb481eba03a666b2a5bcb8dd92f3e9c
Author: Aaron Erhardt <aer@tuxedocomputers.com>
Subject: HID: lamparray: add new LampArray helper module
This commit adds a new hid-lamparray helper module for devices exposing a
Lighting/LampArray application collection (usage page 0x59). It registers a
single-zone RGB LED representation via the LED subsystem.
> diff --git a/drivers/hid/hid-lamparray.c b/drivers/hid/hid-lamparray.c
> new file mode 100644
> index 0000000000000..9a438aa2d305e
> --- /dev/null
> +++ b/drivers/hid/hid-lamparray.c
[ ... ]
> @@ -176,14 +176,12 @@ static int lamparray_parse_update_report(struct lamparray_device *ldev)
> int i, j;
> int ret = 0;
>
> mutex_lock(&ldev->dev_lock);
>
> re = &hdev->report_enum[HID_FEATURE_REPORT];
>
> list_for_each_entry(report, &re->report_list, list) {
> for (i = 0; i < report->maxfield; i++) {
[Severity: Medium]
This restricts the search strictly to feature reports.
Since the HID specification defines Lamp Range Update reports as output
reports, does this mean the driver will fail to probe compliant devices
because it cannot find their output reports?
[ ... ]
> @@ -340,11 +340,9 @@ static int lamparray_hw_set_state(struct lamparray_device *ldev, u8 r, u8 g,
> set_field_value(&ldev->color_update.red, r);
> set_field_value(&ldev->color_update.green, g);
> set_field_value(&ldev->color_update.blue, b);
> set_field_value(&ldev->color_update.intensity, intensity);
>
> report = ldev->color_update.red.field->report;
> hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
> hid_hw_wait(hdev);
[Severity: Medium]
This hardware request is dispatched exclusively for the report containing
the 'red' field.
If a device descriptor splits the color channels across multiple report IDs,
wouldn't this leave the other colors unsent and result in incomplete state
updates?
[ ... ]
> @@ -386,10 +386,9 @@ static int lamparray_get_lamp_attributes(struct lamparray_device *ldev)
> hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
> hid_hw_wait(hdev);
>
> ldev->max_r = get_field_value_as_u8(&ldev->color_levels.red);
> ldev->max_g = get_field_value_as_u8(&ldev->color_levels.green);
> ldev->max_b = get_field_value_as_u8(&ldev->color_levels.blue);
> ldev->max_brightness = get_field_value_as_u8(&ldev->color_levels.intensity);
[Severity: High]
This reads the maximum brightness directly from the device's GET_REPORT
response without validating it against zero.
Later, when led_mc_calc_color_components() is called to apply the brightness,
this max_brightness value acts as a divisor. If a device reports zero
intensity levels, does this trigger a kernel panic due to division by zero?
[ ... ]
> @@ -497,10 +497,8 @@ static int lamparray_register_led(struct lamparray_device *ldev)
> if (ldev->lamparray_kind_value == HID_LAMPARRAY_KIND_KEYBOARD)
> function = LED_FUNCTION_KBD_BACKLIGHT;
>
> cdev->name = kasprintf(GFP_KERNEL, "rgb:%s", function);
> if (!cdev->name) {
> mutex_unlock(&ldev->sysfs_lock);
> return -ENOMEM;
> }
[Severity: Medium]
This hardcodes the LED name based solely on the function.
If multiple identical LampArray devices are connected, won't this cause a
deterministic sysfs naming collision (-EEXIST) that prevents the second
device's LED interface from registering?
[ ... ]
> @@ -608,13 +608,10 @@ static ssize_t use_leds_uapi_store(struct device *dev,
>
> if (val == old_val) {
> mutex_unlock(&ldev->dev_lock);
> return count;
> }
>
> ldev->use_leds_uapi = val;
> mutex_unlock(&ldev->dev_lock);
>
> if (val == 1) {
> ret = lamparray_register_led(ldev);
[Severity: Medium]
The protective dev_lock is dropped here before executing the actual
registration side effects.
Does this leave a race window where concurrent sysfs writes could cause the
internal use_leds_uapi state to completely desynchronize from the actual LED
registration state?
[ ... ]
> @@ -706,10 +706,8 @@ struct lamparray *
> ldev->use_leds_uapi = true;
> ldev->led_registered = false;
>
> /* Make sure the driver lock gets released for probing. */
> hid_device_io_start(hdev);
[Severity: High]
Calling hid_device_io_start() here forcibly releases the HID core's
driver_input_lock during the probe sequence.
Could this allow incoming hardware interrupt events to race with the
unfinished probe() initialization of the parent driver, potentially leading
to uninitialized memory accesses or a use-after-free?
[ ... ]
> @@ -772,16 +772,13 @@ struct lamparray *
> ret = lamparray_hw_set_autonomous(ldev, false);
> if (ret) {
> hid_err(hdev, "Could not disable autonomous mode: %d", ret);
> goto err_remove_sysfs;
> }
>
> hid_info(hdev, "LampArray device registered\n");
[Severity: Low]
This prints a success log message during normal device initialization.
Should this be removed to comply with the subsystem's logging rules against
printing success messages?
>
> ret = lamparray_restore_state(ldev);
> if (ret) {
> hid_err(hdev, "Failed to set default state: %d", ret);
> goto err_remove_sysfs;
> }
[Severity: Medium]
If lamparray_restore_state() fails, this error path routes to
err_remove_sysfs. However, this bypasses restoring the hardware back to
autonomous mode via lamparray_hw_set_autonomous().
Does this leave the hardware in a frozen, non-autonomous state if the
initial state restoration times out or fails?
[ ... ]
> @@ -794,11 +794,9 @@ void lamparray_unregister(struct lamparray *la)
> if (!la)
> return;
>
> ldev = &la->ldev;
>
> lamparray_hw_set_autonomous(ldev, true);
>
> lamparray_remove_sysfs(ldev);
> xa_erase(&lamparray_by_hdev, (unsigned long)ldev->hdev);
> lamparray_unregister_led(ldev);
[Severity: Medium]
This sets the hardware to autonomous mode before unregistering the userspace
interfaces (the LED class device and sysfs attributes).
Could userspace write to the sysfs brightness attribute simultaneously while
the driver is being unbound, sending manual LED commands while the hardware
is configured to operate autonomously?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260903073602.3815258-1-aer@tuxedocomputers.com?part=1
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v5 1/2] HID: lamparray: add new LampArray helper module
2026-09-03 7:35 ` [PATCH v5 1/2] HID: lamparray: add new LampArray helper module Aaron Erhardt
2026-09-03 7:48 ` sashiko-bot
@ 2026-09-03 20:07 ` Werner Sembach
2026-09-04 8:51 ` Aaron Erhardt
2026-09-04 21:30 ` Armin Wolf
2 siblings, 1 reply; 9+ messages in thread
From: Werner Sembach @ 2026-09-03 20:07 UTC (permalink / raw)
To: Aaron Erhardt, Jiri Kosina, Benjamin Tissoires; +Cc: linux-input, linux-kernel
Am 03.09.26 um 09:35 schrieb Aaron Erhardt:
> Add a new hid-lamparray helper module that provides basic support for
> devices exposing a Lighting/LampArray application collection (usage
> page 0x59) and registers a single-zone RGB LED representation via the
> LED subsystem.
>
> The module can be used as a library in HID drivers to add support for
> the HID LampArray protocol. While the API is quite basic as of now
> it could be extended in the future.
>
> Co-developed-by: Tim Guttzeit <tgu@tuxedocomputers.com>
> Signed-off-by: Tim Guttzeit <tgu@tuxedocomputers.com>
> Signed-off-by: Aaron Erhardt <aer@tuxedocomputers.com>
> ---
> .../ABI/testing/sysfs-driver-hid-lamparray | 16 +
> drivers/hid/Kconfig | 17 +
> drivers/hid/Makefile | 2 +
> drivers/hid/hid-lamparray.c | 812 ++++++++++++++++++
> include/linux/hid-lamparray.h | 88 ++
> 5 files changed, 935 insertions(+)
> create mode 100644 Documentation/ABI/testing/sysfs-driver-hid-lamparray
> create mode 100644 drivers/hid/hid-lamparray.c
> create mode 100644 include/linux/hid-lamparray.h
>
> diff --git a/Documentation/ABI/testing/sysfs-driver-hid-lamparray b/Documentation/ABI/testing/sysfs-driver-hid-lamparray
> new file mode 100644
> index 000000000000..795be6c4c368
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-driver-hid-lamparray
> @@ -0,0 +1,16 @@
> +What: /sys/bus/hid/devices/<bus>:<vid>:<pid>.<n>/use_leds_uapi
> +Date: August 2026
> +KernelVersion: 7.3
> +Contact: aer@tuxedocomputers.com
> +Description:
> + If a driver uses the hid-lamparray module and a device supporting
> + LampArray is found, one multicolor LED class device is registered under
> + /sys/class/leds/rgb:<function> to expose the single-zone RGB control.
> + Every device gets an incremental unique id.
> +
> + Additionally, the use_leds_uapi sysfs attribute to control the LED class
> + device is attached directly to the HID device at
> + /sys/bus/hid/devices/<bus>:<vid>:<pid>.<n>/use_leds_uapi. Writing 0 to
> + use_leds_uapi unregisters the LED class device. The last state is kept
> + cached. Writing 1 registers it again and restores the cached state to
> + hardware.
> diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
> index aa7fa11a0197..4afd80a67b39 100644
> --- a/drivers/hid/Kconfig
> +++ b/drivers/hid/Kconfig
> @@ -92,6 +92,23 @@ config HID_GENERIC
>
> If unsure, say Y.
>
> +config HID_LAMPARRAY
> + tristate "HID LampArray helper"
> + depends on HID
> + depends on LEDS_CLASS_MULTICOLOR
> + default n
> + help
> + Helper for HID devices exposing a Lighting/LampArray collection.
> + Treats LampArray devices as a single-zone device and exposes a sysfs
> + interface for changing color and intensity values. Also exposes a
> + sysfs flag to be disabled e.g. by a userspace driver.
> +
> + This can be used as library in existing drivers. The generic HID
> + driver is extended by default to handle lamp array devices if this
> + option is enabled.
> +
> + If unsure, say N.
> +
> config HID_HAPTIC
> bool "Haptic touchpad support"
> default n
> diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile
> index 48a863b245ee..f95630fa8bd8 100644
> --- a/drivers/hid/Makefile
> +++ b/drivers/hid/Makefile
> @@ -13,6 +13,8 @@ obj-$(CONFIG_UHID) += uhid.o
>
> obj-$(CONFIG_HID_GENERIC) += hid-generic.o
>
> +obj-$(CONFIG_HID_LAMPARRAY) += hid-lamparray.o
> +
> hid-$(CONFIG_HIDRAW) += hidraw.o
>
> hid-logitech-y := hid-lg.o
> diff --git a/drivers/hid/hid-lamparray.c b/drivers/hid/hid-lamparray.c
> new file mode 100644
> index 000000000000..9a438aa2d305
> --- /dev/null
> +++ b/drivers/hid/hid-lamparray.c
> @@ -0,0 +1,812 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
> +/*
> + * hid-lamparray.c - HID LampArray helper module (single-zone RGB)
> + *
> + * Helper module for HID drivers supporting devices that expose a Lighting and
> + * Illumination (LampArray) application collection (usage page 0x59).
> + *
> + * The module provides a minimal integration with the LED subsystem and treats
> + * the device as a single zone: all lamps share one RGB value and a global
> + * brightness level. It does not implement multi-zone layouts or hardware
> + * effects.
> + *
> + * If enabled and a device supporting LampArray is found, one multicolor LED
> + * class device is registered under /sys/class/leds/<HID-ID>:rgb:LampArray to
> + * expose the single-zone RGB control.
> + *
> + * The use_leds_uapi sysfs attribute is attached directly to the HID device
> + * under /sys/bus/hid/devices/<HID-ID>/use_leds_uapi. Writing 0 to use_leds_uapi
> + * unregisters the LED class device. The last state is kept cached. Writing 1
> + * registers it again and restores the cached state to hardware. State is cached
> + * as last known RGB + brightness.
> + *
> + * The module does not bind to devices on its own. Instead, a HID driver may
> + * query support via lamparray_is_supported_device() after hid_parse() and
> + * create an instance using lamparray_register().
> + *
> + * Copyright (C) 2026 Tim Guttzeit <tgu@tuxedocomputers.com>
> + * Copyright (C) 2026 Aaron Erhardt <aer@tuxedocomputers.com>
> + */
> +
> +#include <dt-bindings/leds/common.h>
> +#include <linux/limits.h>
> +#include <linux/minmax.h>
> +#include <linux/hid.h>
> +#include <linux/leds.h>
> +#include <linux/sysfs.h>
> +#include <linux/hid-lamparray.h>
> +#include <linux/module.h>
> +#include <linux/mutex.h>
> +#include <linux/container_of.h>
> +#include <linux/led-class-multicolor.h>
> +#include <linux/xarray.h>
> +
> +/* Constants */
> +
> +/* HID usages (LampArray, etc.) */
> +#define HID_LIGHTING_ILLUMINATION_USAGE_PAGE 0x0059
> +
> +/* HID usage types */
> +#define HID_APPLICATION_COLLECTION_USAGE_TYPE 0x0001
> +#define HID_LAMPARRAY_ATTRIBUTES_REPORT 0x0002
> +#define HID_LAMP_ATTRIBUTES_RESPONSE_REPORT 0x0022
> +#define HID_LAMP_RANGE_UPDATE_REPORT 0x0060
> +#define HID_LAMPARRAY_CONTROL_REPORT 0x0070
> +
> +/* HID attributes */
> +#define HID_LAIP_LAMP_COUNT 0x0003
> +#define HID_LAIP_LAMPARRAY_KIND 0x0007
> +#define HID_LAIP_RED_LEVEL_COUNT 0x0028
> +#define HID_LAIP_GREEN_LEVEL_COUNT 0x0029
> +#define HID_LAIP_BLUE_LEVEL_COUNT 0x002a
> +#define HID_LAIP_INTENSITY_LEVEL_COUNT 0x002b
> +#define HID_LAIP_RED_UPDATE_CHANNEL 0x0051
> +#define HID_LAIP_GREEN_UPDATE_CHANNEL 0x0052
> +#define HID_LAIP_BLUE_UPDATE_CHANNEL 0x0053
> +#define HID_LAIP_INTENSITY_UPDATE_CHANNEL 0x0054
> +#define HID_LAIP_LAMP_ID_START 0x0061
> +#define HID_LAIP_LAMP_ID_END 0x0062
> +#define HID_LAIP_AUTONOMOUS_MODE 0x0071
> +
> +/* LampArrayKind values */
> +#define HID_LAMPARRAY_KIND_KEYBOARD 0x0001
> +
> +/* Helper struct for fields and their indices */
> +struct hid_field_value {
> + struct hid_field *field;
> + int index;
> +};
> +
> +/* Helper struct for color fields */
> +struct lamparray_color_fields {
> + struct hid_field_value red;
> + struct hid_field_value green;
> + struct hid_field_value blue;
> + struct hid_field_value intensity;
> +};
> +
> +/* Device state */
> +struct lamparray_device {
> + struct hid_device *hdev;
> +
> + struct lamparray_color_fields color_levels;
> + struct lamparray_color_fields color_update;
> +
> + struct hid_field_value autonomous_field;
> + struct hid_field_value range_start;
> + struct hid_field_value range_end;
> + struct hid_field_value lamp_count;
> + struct hid_field_value lamparray_kind;
> +
> + u16 lamp_count_value;
> + u32 lamparray_kind_value;
> +
> + struct led_classdev_mc mc_cdev;
> + struct mc_subled subleds[3];
> +
> + struct mutex dev_lock; /* Protects cached state and HID access */
> + struct mutex sysfs_lock; /* Protects sysfs LED (de-)initialization */
> +
> + u8 max_r;
> + u8 max_g;
> + u8 max_b;
> + u8 max_brightness;
> +
> + u8 last_r;
> + u8 last_g;
> + u8 last_b;
> + u8 last_brightness;
> +
> + bool use_leds_uapi;
> + bool led_registered;
> +};
> +
> +/*
> + * Opaque handle exposed to callers via the header.
> + * Keep the actual state in lamparray_device, but return a stable pointer.
> + */
> +struct lamparray {
> + struct lamparray_device ldev;
> +};
> +
> +/*
> + * Mapping for hid_device pointers to their lamparray data.
> + * Since there is not guarantee of how the driver using this library
> + * will use its drvdata, the only safe way to retrieve the lamparray
> + * data from a HID device pointer is using this mapping.
> + */
> +static DEFINE_XARRAY(lamparray_by_hdev);
> +
> +/* HID helper functions */
> +
> +static int get_field_value(struct hid_field_value *field_value)
> +{
> + return field_value->field->value[field_value->index];
> +}
> +
> +static u8 get_field_value_as_u8(struct hid_field_value *field_value)
> +{
> + return clamp_val(get_field_value(field_value), 0, U8_MAX);
> +}
> +
> +static void set_field_value(struct hid_field_value *field_value, int value)
> +{
> + field_value->field->value[field_value->index] = value;
> +}
> +
> +static bool lamparray_color_fields_is_complete(struct lamparray_color_fields *color_fields)
> +{
> + return color_fields->red.field && color_fields->green.field &&
> + color_fields->blue.field && color_fields->intensity.field;
> +}
> +
> +static int lamparray_read_attributes_report(struct lamparray_device *ldev)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_report *report;
> +
> + if (!ldev->lamp_count.field) {
> + hid_dbg(hdev, "No LampCount field found\n");
> + return -ENODEV;
> + }
> +
> + if (!ldev->lamparray_kind.field) {
> + hid_dbg(hdev, "No LampArrayKind field found\n");
> + return -ENODEV;
> + }
> +
> + report = ldev->lamp_count.field->report;
> +
> + if (!report) {
> + hid_dbg(hdev, "LampCount field has no report\n");
> + return -ENODEV;
> + }
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + /* Update values */
> + hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
> + hid_hw_wait(hdev);
> +
> + ldev->lamp_count_value = get_field_value(&ldev->lamp_count);
> +
> + if (ldev->lamp_count_value == 0) {
> + mutex_unlock(&ldev->dev_lock);
> + hid_dbg(hdev, "LampCount is %d (invalid)\n", ldev->lamp_count_value);
> + return -EINVAL;
> + }
> +
> + ldev->lamparray_kind_value = get_field_value(&ldev->lamparray_kind);
> +
> + mutex_unlock(&ldev->dev_lock);
> +
> + return 0;
> +}
> +
> +static int lamparray_parse_update_report(struct lamparray_device *ldev)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_report_enum *re;
> + struct hid_report *report;
> + struct hid_field *field;
> + int i, j;
> + int ret = 0;
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + re = &hdev->report_enum[HID_FEATURE_REPORT];
> +
> + list_for_each_entry(report, &re->report_list, list) {
> + for (i = 0; i < report->maxfield; i++) {
> + field = report->field[i];
> + if (!field)
> + continue;
> +
> + if (!field->usage || !field->maxusage)
> + continue;
> +
> + for (j = 0; j < field->maxusage; j++) {
> + u32 usage = field->usage[j].hid;
> + u32 collection_idx = field->usage[j].collection_index;
> + u32 collection_usage = hdev->collection[collection_idx].usage;
> +
> + u16 page = (usage & HID_USAGE_PAGE) >> 16;
> + u16 id = usage & HID_USAGE;
> + u16 collection_usage_id = collection_usage & U16_MAX;
> +
> + if (page != HID_LIGHTING_ILLUMINATION_USAGE_PAGE)
> + continue;
> +
> + if (collection_usage_id == HID_LAMPARRAY_ATTRIBUTES_REPORT) {
> + switch (id) {
> + case HID_LAIP_LAMP_COUNT:
> + ldev->lamp_count.field = field;
> + ldev->lamp_count.index = j;
> + break;
> + case HID_LAIP_LAMPARRAY_KIND:
> + ldev->lamparray_kind.field = field;
> + ldev->lamparray_kind.index = j;
> + break;
> + }
> + } else if (collection_usage_id ==
> + HID_LAMP_ATTRIBUTES_RESPONSE_REPORT) {
> + switch (id) {
> + case HID_LAIP_RED_LEVEL_COUNT:
> + ldev->color_levels.red.field = field;
> + ldev->color_levels.red.index = j;
> + break;
> + case HID_LAIP_GREEN_LEVEL_COUNT:
> + ldev->color_levels.green.field = field;
> + ldev->color_levels.green.index = j;
> + break;
> + case HID_LAIP_BLUE_LEVEL_COUNT:
> + ldev->color_levels.blue.field = field;
> + ldev->color_levels.blue.index = j;
> + break;
> + case HID_LAIP_INTENSITY_LEVEL_COUNT:
> + ldev->color_levels.intensity.field = field;
> + ldev->color_levels.intensity.index = j;
> + break;
> + }
> + } else if (collection_usage_id == HID_LAMP_RANGE_UPDATE_REPORT) {
> + switch (id) {
> + case HID_LAIP_RED_UPDATE_CHANNEL:
> + ldev->color_update.red.field = field;
> + ldev->color_update.red.index = j;
> + break;
> + case HID_LAIP_GREEN_UPDATE_CHANNEL:
> + ldev->color_update.green.field = field;
> + ldev->color_update.green.index = j;
> + break;
> + case HID_LAIP_BLUE_UPDATE_CHANNEL:
> + ldev->color_update.blue.field = field;
> + ldev->color_update.blue.index = j;
> + break;
> + case HID_LAIP_INTENSITY_UPDATE_CHANNEL:
> + ldev->color_update.intensity.field = field;
> + ldev->color_update.intensity.index = j;
> + break;
> + case HID_LAIP_LAMP_ID_START:
> + ldev->range_start.field = field;
> + ldev->range_start.index = j;
> + break;
> + case HID_LAIP_LAMP_ID_END:
> + ldev->range_end.field = field;
> + ldev->range_end.index = j;
> + break;
> + default:
> + break;
> + }
> + } else if (collection_usage_id == HID_LAMPARRAY_CONTROL_REPORT &&
> + id == HID_LAIP_AUTONOMOUS_MODE) {
> + ldev->autonomous_field.field = field;
> + ldev->autonomous_field.index = j;
> + }
> + }
> + }
> + }
> +
> + if (!ldev->autonomous_field.field ||
> + !lamparray_color_fields_is_complete(&ldev->color_update))
> + ret = -ENODEV;
> +
> + mutex_unlock(&ldev->dev_lock);
> +
> + return ret;
> +}
> +
> +static int lamparray_hw_set_autonomous(struct lamparray_device *ldev,
> + bool enable)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_field *field = ldev->autonomous_field.field;
> +
> + if (!field)
> + return -ENODEV;
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + set_field_value(&ldev->autonomous_field, !!enable);
> +
> + hid_hw_request(hdev, field->report, HID_REQ_SET_REPORT);
> + hid_hw_wait(hdev);
> +
> + mutex_unlock(&ldev->dev_lock);
> +
> + return 0;
> +}
> +
> +static int lamparray_hw_set_state(struct lamparray_device *ldev, u8 r, u8 g,
> + u8 b, u8 intensity)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_report *report;
> +
> + if (!lamparray_color_fields_is_complete(&ldev->color_update))
> + return -ENODEV;
> +
> + if (ldev->range_start.field && ldev->range_end.field) {
> + set_field_value(&ldev->range_start, 0);
> + set_field_value(&ldev->range_end, ldev->lamp_count_value - 1);
> + }
> +
> + set_field_value(&ldev->color_update.red, r);
> + set_field_value(&ldev->color_update.green, g);
> + set_field_value(&ldev->color_update.blue, b);
> + set_field_value(&ldev->color_update.intensity, intensity);
> +
> + report = ldev->color_update.red.field->report;
> + hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
> + hid_hw_wait(hdev);
> +
> + return 0;
> +}
> +
> +/*
> + * Simple helper to read the color information of the first lamp.
> + * This does not read the state of the whole lamp array since this driver only
> + * exposes one LED anyway, so one color is sufficient here for now.
> + */
Just now thought of checking this: We probably should still iterate over all
lamps to make sure all behave the same (as a first heuristic, later we could
think of grouping the lamps based on weather or not they behave the same and
register a led device for each group).
Also we should check via IsProgrammable and no max value being 0 if it even is
an RGB LED.
> +static int lamparray_get_lamp_attributes(struct lamparray_device *ldev)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_report *report;
> +
> + if (!lamparray_color_fields_is_complete(&ldev->color_levels))
> + return -ENODEV;
> +
> + /*
> + * Get value of any lamp.
> + */
> + report = ldev->color_levels.red.field->report;
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
> + hid_hw_wait(hdev);
> +
> + ldev->max_r = get_field_value_as_u8(&ldev->color_levels.red);
> + ldev->max_g = get_field_value_as_u8(&ldev->color_levels.green);
> + ldev->max_b = get_field_value_as_u8(&ldev->color_levels.blue);
> + ldev->max_brightness = get_field_value_as_u8(&ldev->color_levels.intensity);
> +
> + mutex_unlock(&ldev->dev_lock);
> +
> + return 0;
> +}
> +
> +/* Helper functions */
> +
> +static int lamparray_restore_state(struct lamparray_device *ldev)
> +{
> + u8 r, g, b;
> + int ret;
> + enum led_brightness brightness;
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + if (!ldev->use_leds_uapi) {
> + mutex_unlock(&ldev->dev_lock);
> + return 0;
> + }
> +
> + r = ldev->last_r;
> + g = ldev->last_g;
> + b = ldev->last_b;
> + brightness = ldev->last_brightness;
> +
> + ldev->mc_cdev.subled_info[0].intensity = r;
> + ldev->mc_cdev.subled_info[1].intensity = g;
> + ldev->mc_cdev.subled_info[2].intensity = b;
> + ldev->mc_cdev.led_cdev.brightness = brightness;
> +
> + led_mc_calc_color_components(&ldev->mc_cdev, brightness);
> +
> + ret = lamparray_hw_set_state(ldev, r, g, b, brightness);
> +
> + mutex_unlock(&ldev->dev_lock);
> + return ret;
> +}
> +
> +/* LEDs API */
> +
> +static int lamparray_led_brightness_set(struct led_classdev *cdev,
> + enum led_brightness brightness)
> +{
> + struct led_classdev_mc *mc = lcdev_to_mccdev(cdev);
> + struct lamparray_device *ldev =
> + container_of_const(mc, struct lamparray_device, mc_cdev);
> + u8 r, g, b;
> + int ret;
> +
> + /*
> + * Brightness is handled by the LampArray device if supported,
> + * so we can pass the raw intensity values.
> + */
> + r = mc->subled_info[0].intensity;
> + g = mc->subled_info[1].intensity;
> + b = mc->subled_info[2].intensity;
> +
> + mc->led_cdev.brightness = brightness;
> + led_mc_calc_color_components(&ldev->mc_cdev, brightness);
> +
> + mutex_lock(&ldev->dev_lock);
> + ret = lamparray_hw_set_state(ldev, r, g, b, brightness);
> + if (ret) {
> + mutex_unlock(&ldev->dev_lock);
> + hid_err(ldev->hdev, "Failed to send LampArray update: %d\n",
> + ret);
> + return ret;
> + }
> +
> + ldev->last_r = r;
> + ldev->last_g = g;
> + ldev->last_b = b;
> + ldev->last_brightness = brightness;
> + mutex_unlock(&ldev->dev_lock);
> +
> + return 0;
> +}
> +
> +static enum led_brightness
> +lamparray_led_brightness_get(struct led_classdev *cdev)
> +{
> + struct led_classdev_mc *mc = lcdev_to_mccdev(cdev);
> + struct lamparray_device *ldev =
> + container_of_const(mc, struct lamparray_device, mc_cdev);
> +
> + return ldev->last_brightness;
> +}
> +
> +static int lamparray_register_led(struct lamparray_device *ldev)
> +{
> + struct device *dev = &ldev->hdev->dev;
> + struct led_classdev *cdev = &ldev->mc_cdev.led_cdev;
> + int ret;
> +
> + mutex_lock(&ldev->sysfs_lock);
> +
> + if (ldev->led_registered) {
> + mutex_unlock(&ldev->sysfs_lock);
> + return 0;
> + }
> +
> + if (!cdev->name) {
> + /* Fallback value */
> + const char *function = LED_FUNCTION_STATUS;
> +
> + /* Some heuristics for choosing a better LED function. */
> + if (ldev->lamparray_kind_value == HID_LAMPARRAY_KIND_KEYBOARD)
> + function = LED_FUNCTION_KBD_BACKLIGHT;
> +
> + cdev->name = kasprintf(GFP_KERNEL, "rgb:%s", function);
> + if (!cdev->name) {
> + mutex_unlock(&ldev->sysfs_lock);
> + return -ENOMEM;
> + }
> + }
> +
> + mutex_lock(&ldev->dev_lock);
> + /* Setup */
> + cdev->max_brightness = ldev->max_brightness;
> + cdev->brightness_set_blocking = lamparray_led_brightness_set;
> + cdev->brightness_get = lamparray_led_brightness_get;
> + cdev->flags |= LED_RETAIN_AT_SHUTDOWN;
> +
> + ldev->subleds[0].color_index = LED_COLOR_ID_RED;
> + ldev->subleds[0].max_intensity = ldev->max_r;
> + ldev->subleds[1].color_index = LED_COLOR_ID_GREEN;
> + ldev->subleds[1].max_intensity = ldev->max_g;
> + ldev->subleds[2].color_index = LED_COLOR_ID_BLUE;
> + ldev->subleds[2].max_intensity = ldev->max_b;
> +
> + /* Set values */
> + ldev->subleds[0].intensity = ldev->last_r;
> + ldev->subleds[1].intensity = ldev->last_g;
> + ldev->subleds[2].intensity = ldev->last_b;
> + cdev->brightness = ldev->last_brightness;
> +
> + ldev->mc_cdev.subled_info = ldev->subleds;
> + ldev->mc_cdev.num_colors = ARRAY_SIZE(ldev->subleds);
> +
> + /* Ensure subled_info[].brightness matches intensity + brightness */
> + led_mc_calc_color_components(&ldev->mc_cdev, ldev->last_brightness);
> + mutex_unlock(&ldev->dev_lock);
> +
> + ret = led_classdev_multicolor_register(dev, &ldev->mc_cdev);
> + if (ret) {
> + mutex_unlock(&ldev->sysfs_lock);
> + return ret;
> + }
> +
> + ldev->led_registered = true;
> + mutex_unlock(&ldev->sysfs_lock);
> +
> + return 0;
> +}
> +
> +static void lamparray_unregister_led(struct lamparray_device *ldev)
> +{
> + bool was_registered;
> + struct led_classdev *cdev = &ldev->mc_cdev.led_cdev;
> +
> + mutex_lock(&ldev->sysfs_lock);
> + was_registered = ldev->led_registered;
> + ldev->led_registered = false;
> +
> + if (was_registered)
> + led_classdev_multicolor_unregister(&ldev->mc_cdev);
> +
> + kfree(cdev->name);
> + cdev->name = NULL;
> +
> + mutex_unlock(&ldev->sysfs_lock);
> +}
> +
> +/* Sysfs */
> +
> +static struct lamparray_device *
> +lamparray_ldev_from_sysfs_dev(struct device *dev)
> +{
> + struct hid_device *hdev = to_hid_device(dev);
> +
> + return xa_load(&lamparray_by_hdev, (unsigned long)hdev);
> +}
> +
> +static ssize_t use_leds_uapi_show(struct device *dev,
> + struct device_attribute *attr, char *buf)
> +{
> + struct lamparray_device *ldev = lamparray_ldev_from_sysfs_dev(dev);
> +
> + if (!ldev)
> + return -ENODEV;
> +
> + return sysfs_emit(buf, "%d\n", ldev->use_leds_uapi);
> +}
> +
> +static ssize_t use_leds_uapi_store(struct device *dev,
> + struct device_attribute *attr,
> + const char *buf, size_t count)
> +{
> + struct lamparray_device *ldev = lamparray_ldev_from_sysfs_dev(dev);
> + int val;
> + int old_val;
> + int ret;
> +
> + if (!ldev)
> + return -ENODEV;
> +
> + ret = kstrtoint(buf, 0, &val);
> + if (ret)
> + return ret;
> +
> + if (val != 0 && val != 1)
> + return -EINVAL;
> +
> + mutex_lock(&ldev->dev_lock);
> + old_val = ldev->use_leds_uapi;
> +
> + if (val == old_val) {
> + mutex_unlock(&ldev->dev_lock);
> + return count;
> + }
> +
> + ldev->use_leds_uapi = val;
> + mutex_unlock(&ldev->dev_lock);
> +
> + if (val == 1) {
> + ret = lamparray_register_led(ldev);
> + if (ret) {
> + mutex_lock(&ldev->dev_lock);
> + ldev->use_leds_uapi = old_val;
> + mutex_unlock(&ldev->dev_lock);
> + return ret;
> + }
> + ret = lamparray_restore_state(ldev);
> + if (ret) {
> + hid_err(ldev->hdev, "Could not restore state: %d\n", ret);
> + return ret;
> + }
> +
> + } else {
> + lamparray_unregister_led(ldev);
> + }
> +
> + return count;
> +}
> +static DEVICE_ATTR_RW(use_leds_uapi);
> +
> +static int lamparray_register_sysfs(struct lamparray_device *ldev)
> +{
> + struct device *dev = &ldev->hdev->dev;
> + int ret;
> +
> + ret = sysfs_create_file(&dev->kobj, &dev_attr_use_leds_uapi.attr);
> + if (ret)
> + hid_err(ldev->hdev,
> + "Failed to create lamparray sysfs group: %d\n", ret);
> +
> + return ret;
> +}
> +
> +static void lamparray_remove_sysfs(struct lamparray_device *ldev)
> +{
> + sysfs_remove_file(&ldev->hdev->dev.kobj, &dev_attr_use_leds_uapi.attr);
> +}
> +
> +/* Public API */
> +
> +bool lamparray_is_supported_device(struct hid_device *hdev)
> +{
> + unsigned int i;
> +
> + hid_dbg(hdev, "lamparray: walking %u collections\n",
> + hdev->maxcollection);
> +
> + for (i = 0; i < hdev->maxcollection; i++) {
> + struct hid_collection *col = &hdev->collection[i];
> + u16 page = (col->usage & HID_USAGE_PAGE) >> 16;
> + u16 code = col->usage & HID_USAGE;
> +
> + hid_dbg(hdev,
> + "lamparray: collection[%u]: type=%u level=%u usage=0x%08x page=0x%04x code=0x%04x\n",
> + i, col->type, col->level, col->usage, page, code);
> +
> + if (col->type == HID_COLLECTION_APPLICATION &&
> + page == HID_LIGHTING_ILLUMINATION_USAGE_PAGE &&
> + code == HID_APPLICATION_COLLECTION_USAGE_TYPE) {
> + return true;
> + }
> + }
> + return false;
> +}
> +EXPORT_SYMBOL_GPL(lamparray_is_supported_device);
> +
> +struct lamparray *
> +lamparray_register(struct hid_device *hdev,
> + const struct lamparray_init_state *led_init_state)
> +{
> + int ret;
> + struct lamparray *la;
> + struct lamparray_device *ldev;
> +
> + if (!hdev)
> + return ERR_PTR(-ENODEV);
> +
> + la = kzalloc_obj(*la, GFP_KERNEL);
> + if (!la)
> + return ERR_PTR(-ENOMEM);
> +
> + ldev = &la->ldev;
> +
> + mutex_init(&ldev->dev_lock);
> + mutex_init(&ldev->sysfs_lock);
> + ldev->hdev = hdev;
> + ldev->use_leds_uapi = true;
> + ldev->led_registered = false;
> +
> + /* Make sure the driver lock gets released for probing. */
> + hid_device_io_start(hdev);
> +
> + ret = lamparray_parse_update_report(ldev);
> + if (ret) {
> + hid_err(hdev, "No LampArray update report found: %d\n", ret);
> + goto err_free;
> + }
> +
> + ret = lamparray_read_attributes_report(ldev);
> + if (ret) {
> + hid_err(hdev,
> + "Could not determine LampCount: %d\n",
> + ret);
> + goto err_free;
> + }
> +
> + ret = lamparray_get_lamp_attributes(ldev);
> + if (ret) {
> + hid_err(hdev,
> + "Faulty device. Could not query lamp attributes.\n");
> + goto err_free;
> + }
> +
> + /* Use black (all zeros) as default. */
> + if (led_init_state) {
> + ldev->last_r = min(led_init_state->r, ldev->max_r);
> + ldev->last_g = min(led_init_state->g, ldev->max_g);
> + ldev->last_b = min(led_init_state->b, ldev->max_b);
> + ldev->last_brightness = min(led_init_state->brightness,
> + ldev->max_brightness);
> + }
> +
> + ret = lamparray_register_led(ldev);
> + if (ret) {
> + hid_warn(hdev, "Failed to register LED UAPI: %d\n", ret);
> + ldev->use_leds_uapi = false;
> + }
> +
> + ret = xa_err(xa_store(&lamparray_by_hdev, (unsigned long)hdev, ldev,
> + GFP_KERNEL));
> + if (ret)
> + goto err_unregister_led;
> +
> + ret = lamparray_register_sysfs(ldev);
> + if (ret)
> + goto err_xa_erase;
> +
> + ret = lamparray_hw_set_autonomous(ldev, false);
> + if (ret) {
> + hid_err(hdev, "Could not disable autonomous mode: %d", ret);
> + goto err_remove_sysfs;
> + }
> +
> + hid_info(hdev, "LampArray device registered\n");
> +
> + ret = lamparray_restore_state(ldev);
> + if (ret) {
> + hid_err(hdev, "Failed to set default state: %d", ret);
> + goto err_remove_sysfs;
> + }
> +
> + hid_device_io_stop(hdev);
> + return la;
> +
> +err_remove_sysfs:
> + lamparray_remove_sysfs(ldev);
> +err_xa_erase:
> + xa_erase(&lamparray_by_hdev, (unsigned long)hdev);
> +err_unregister_led:
> + lamparray_unregister_led(ldev);
> +err_free:
> + hid_device_io_stop(hdev);
> + mutex_destroy(&ldev->dev_lock);
> + mutex_destroy(&ldev->sysfs_lock);
> + kfree(la);
> + return ERR_PTR(ret);
> +}
> +EXPORT_SYMBOL_GPL(lamparray_register);
> +
> +void lamparray_unregister(struct lamparray *la)
> +{
> + struct lamparray_device *ldev;
> +
> + if (!la)
> + return;
> +
> + ldev = &la->ldev;
> +
> + lamparray_hw_set_autonomous(ldev, true);
> +
> + lamparray_remove_sysfs(ldev);
> + xa_erase(&lamparray_by_hdev, (unsigned long)ldev->hdev);
> + lamparray_unregister_led(ldev);
> +
> + mutex_destroy(&ldev->dev_lock);
> + mutex_destroy(&ldev->sysfs_lock);
> + kfree(la);
> +}
> +EXPORT_SYMBOL_GPL(lamparray_unregister);
> +
> +MODULE_LICENSE("GPL");
> +MODULE_AUTHOR("Tim Guttzeit <tgu@tuxedocomputers.com>");
> +MODULE_AUTHOR("Aaron Erhardt <aer@tuxedocomputers.com>");
> +MODULE_DESCRIPTION("HID LampArray helper module (single-zone RGB)");
> diff --git a/include/linux/hid-lamparray.h b/include/linux/hid-lamparray.h
> new file mode 100644
> index 000000000000..a77869728d12
> --- /dev/null
> +++ b/include/linux/hid-lamparray.h
> @@ -0,0 +1,88 @@
> +/* SPDX-License-Identifier: GPL-2.0-or-later */
> +
> +#ifndef _HID_LAMPARRAY_H
> +#define _HID_LAMPARRAY_H
> +
> +#include <linux/hid.h>
> +#include <linux/err.h>
> +#include <linux/types.h>
> +
> +struct lamparray;
> +
> +/*
> + * Optional initial LED state for lamparray_register().
> + * Used to define the initial state of a LampArray's LEDs.
> + */
> +struct lamparray_init_state {
> + u8 r;
> + u8 g;
> + u8 b;
> + u8 brightness;
> +};
> +
> +#if IS_ENABLED(CONFIG_HID_LAMPARRAY)
> +
> +/**
> + * lamparray_is_supported_device() - check whether a HID device supports LampArray
> + * @hdev: HID device to inspect
> + *
> + * Check whether the given HID device exposes a Lighting/LampArray application
> + * collection as defined by the HID Lighting specification.
> + *
> + * This helper can be used by HID drivers to determine whether LampArray
> + * functionality should be enabled for a device.
> + *
> + * Return: %true if LampArray support is detected, %false otherwise.
> + */
> +bool lamparray_is_supported_device(struct hid_device *hdev);
> +
> +/**
> + * lamparray_register() - initialize LampArray support for a HID device
> + * @hdev: HID device
> + * @led_init_state: Optional LED state at init specification
> + *
> + * Allocate and initialize internal LampArray state for the given HID device.
> + * The function parses required HID reports and fields and registers the
> + * associated miscdevice and sysfs attributes.
> + *
> + * Registers a multicolor LED class device to expose the LampArray functionality
> + * via the LED subsystem. If specified, the desired initial LED state is
> + * applied. If led_init_state is NULL, a default state is applied (all LEDs off).
> + *
> + * Return: pointer to a LampArray handle on success, or ERR_PTR() on failure.
> + */
> +struct lamparray *lamparray_register(struct hid_device *hdev,
> + const struct lamparray_init_state *led_init_state);
> +
> +/**
> + * lamparray_unregister() - tear down LampArray support
> + * @la: LampArray handle returned by lamparray_register()
> + *
> + * Remove all resources associated with a LampArray instance.
> + *
> + * This unregisters the LED class device (if present), removes the miscdevice
> + * and sysfs interfaces and frees all internal state associated with @la.
> + */
> +void lamparray_unregister(struct lamparray *la);
> +
> +#else /* !CONFIG_HID_LAMPARRAY */
> +
> +static inline bool lamparray_is_supported_device(struct hid_device *hdev)
> +{
> + return false;
> +}
> +
> +static inline struct lamparray *
> +lamparray_register(struct hid_device *hdev,
> + const struct lamparray_init_state *led_init_state)
> +{
> + return ERR_PTR(-EOPNOTSUPP);
> +}
> +
> +static inline void lamparray_unregister(struct lamparray *la)
> +{
> +}
> +
> +#endif /* CONFIG_HID_LAMPARRAY */
> +
> +#endif /* _HID_LAMPARRAY_H */
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v5 1/2] HID: lamparray: add new LampArray helper module
2026-09-03 20:07 ` Werner Sembach
@ 2026-09-04 8:51 ` Aaron Erhardt
0 siblings, 0 replies; 9+ messages in thread
From: Aaron Erhardt @ 2026-09-04 8:51 UTC (permalink / raw)
To: Werner Sembach, Jiri Kosina, Benjamin Tissoires; +Cc: linux-input, linux-kernel
Am 03.09.26 um 22:07 schrieb Werner Sembach:
>
> Am 03.09.26 um 09:35 schrieb Aaron Erhardt:
>> Add a new hid-lamparray helper module that provides basic support for
>> devices exposing a Lighting/LampArray application collection (usage
>> page 0x59) and registers a single-zone RGB LED representation via the
>> LED subsystem.
>>
>> The module can be used as a library in HID drivers to add support for
>> the HID LampArray protocol. While the API is quite basic as of now
>> it could be extended in the future.
>>
>> Co-developed-by: Tim Guttzeit <tgu@tuxedocomputers.com>
>> Signed-off-by: Tim Guttzeit <tgu@tuxedocomputers.com>
>> Signed-off-by: Aaron Erhardt <aer@tuxedocomputers.com>
>> ---
>> .../ABI/testing/sysfs-driver-hid-lamparray | 16 +
>> drivers/hid/Kconfig | 17 +
>> drivers/hid/Makefile | 2 +
>> drivers/hid/hid-lamparray.c | 812 ++++++++++++++++++
>> include/linux/hid-lamparray.h | 88 ++
>> 5 files changed, 935 insertions(+)
>> create mode 100644 Documentation/ABI/testing/sysfs-driver-hid-lamparray
>> create mode 100644 drivers/hid/hid-lamparray.c
>> create mode 100644 include/linux/hid-lamparray.h
>>
>> diff --git a/Documentation/ABI/testing/sysfs-driver-hid-lamparray b/Documentation/ABI/testing/sysfs-driver-hid-lamparray
>> new file mode 100644
>> index 000000000000..795be6c4c368
>> --- /dev/null
>> +++ b/Documentation/ABI/testing/sysfs-driver-hid-lamparray
>> @@ -0,0 +1,16 @@
>> +What: /sys/bus/hid/devices/<bus>:<vid>:<pid>.<n>/use_leds_uapi
>> +Date: August 2026
>> +KernelVersion: 7.3
>> +Contact: aer@tuxedocomputers.com
>> +Description:
>> + If a driver uses the hid-lamparray module and a device supporting
>> + LampArray is found, one multicolor LED class device is registered under
>> + /sys/class/leds/rgb:<function> to expose the single-zone RGB control.
>> + Every device gets an incremental unique id.
>> +
>> + Additionally, the use_leds_uapi sysfs attribute to control the LED class
>> + device is attached directly to the HID device at
>> + /sys/bus/hid/devices/<bus>:<vid>:<pid>.<n>/use_leds_uapi. Writing 0 to
>> + use_leds_uapi unregisters the LED class device. The last state is kept
>> + cached. Writing 1 registers it again and restores the cached state to
>> + hardware.
>> diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
>> index aa7fa11a0197..4afd80a67b39 100644
>> --- a/drivers/hid/Kconfig
>> +++ b/drivers/hid/Kconfig
>> @@ -92,6 +92,23 @@ config HID_GENERIC
>> If unsure, say Y.
>> +config HID_LAMPARRAY
>> + tristate "HID LampArray helper"
>> + depends on HID
>> + depends on LEDS_CLASS_MULTICOLOR
>> + default n
>> + help
>> + Helper for HID devices exposing a Lighting/LampArray collection.
>> + Treats LampArray devices as a single-zone device and exposes a sysfs
>> + interface for changing color and intensity values. Also exposes a
>> + sysfs flag to be disabled e.g. by a userspace driver.
>> +
>> + This can be used as library in existing drivers. The generic HID
>> + driver is extended by default to handle lamp array devices if this
>> + option is enabled.
>> +
>> + If unsure, say N.
>> +
>> config HID_HAPTIC
>> bool "Haptic touchpad support"
>> default n
>> diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile
>> index 48a863b245ee..f95630fa8bd8 100644
>> --- a/drivers/hid/Makefile
>> +++ b/drivers/hid/Makefile
>> @@ -13,6 +13,8 @@ obj-$(CONFIG_UHID) += uhid.o
>> obj-$(CONFIG_HID_GENERIC) += hid-generic.o
>> +obj-$(CONFIG_HID_LAMPARRAY) += hid-lamparray.o
>> +
>> hid-$(CONFIG_HIDRAW) += hidraw.o
>> hid-logitech-y := hid-lg.o
>> diff --git a/drivers/hid/hid-lamparray.c b/drivers/hid/hid-lamparray.c
>> new file mode 100644
>> index 000000000000..9a438aa2d305
>> --- /dev/null
>> +++ b/drivers/hid/hid-lamparray.c
>> @@ -0,0 +1,812 @@
>> +// SPDX-License-Identifier: GPL-2.0-or-later
>> +/*
>> + * hid-lamparray.c - HID LampArray helper module (single-zone RGB)
>> + *
>> + * Helper module for HID drivers supporting devices that expose a Lighting and
>> + * Illumination (LampArray) application collection (usage page 0x59).
>> + *
>> + * The module provides a minimal integration with the LED subsystem and treats
>> + * the device as a single zone: all lamps share one RGB value and a global
>> + * brightness level. It does not implement multi-zone layouts or hardware
>> + * effects.
>> + *
>> + * If enabled and a device supporting LampArray is found, one multicolor LED
>> + * class device is registered under /sys/class/leds/<HID-ID>:rgb:LampArray to
>> + * expose the single-zone RGB control.
>> + *
>> + * The use_leds_uapi sysfs attribute is attached directly to the HID device
>> + * under /sys/bus/hid/devices/<HID-ID>/use_leds_uapi. Writing 0 to use_leds_uapi
>> + * unregisters the LED class device. The last state is kept cached. Writing 1
>> + * registers it again and restores the cached state to hardware. State is cached
>> + * as last known RGB + brightness.
>> + *
>> + * The module does not bind to devices on its own. Instead, a HID driver may
>> + * query support via lamparray_is_supported_device() after hid_parse() and
>> + * create an instance using lamparray_register().
>> + *
>> + * Copyright (C) 2026 Tim Guttzeit <tgu@tuxedocomputers.com>
>> + * Copyright (C) 2026 Aaron Erhardt <aer@tuxedocomputers.com>
>> + */
>> +
>> +#include <dt-bindings/leds/common.h>
>> +#include <linux/limits.h>
>> +#include <linux/minmax.h>
>> +#include <linux/hid.h>
>> +#include <linux/leds.h>
>> +#include <linux/sysfs.h>
>> +#include <linux/hid-lamparray.h>
>> +#include <linux/module.h>
>> +#include <linux/mutex.h>
>> +#include <linux/container_of.h>
>> +#include <linux/led-class-multicolor.h>
>> +#include <linux/xarray.h>
>> +
>> +/* Constants */
>> +
>> +/* HID usages (LampArray, etc.) */
>> +#define HID_LIGHTING_ILLUMINATION_USAGE_PAGE 0x0059
>> +
>> +/* HID usage types */
>> +#define HID_APPLICATION_COLLECTION_USAGE_TYPE 0x0001
>> +#define HID_LAMPARRAY_ATTRIBUTES_REPORT 0x0002
>> +#define HID_LAMP_ATTRIBUTES_RESPONSE_REPORT 0x0022
>> +#define HID_LAMP_RANGE_UPDATE_REPORT 0x0060
>> +#define HID_LAMPARRAY_CONTROL_REPORT 0x0070
>> +
>> +/* HID attributes */
>> +#define HID_LAIP_LAMP_COUNT 0x0003
>> +#define HID_LAIP_LAMPARRAY_KIND 0x0007
>> +#define HID_LAIP_RED_LEVEL_COUNT 0x0028
>> +#define HID_LAIP_GREEN_LEVEL_COUNT 0x0029
>> +#define HID_LAIP_BLUE_LEVEL_COUNT 0x002a
>> +#define HID_LAIP_INTENSITY_LEVEL_COUNT 0x002b
>> +#define HID_LAIP_RED_UPDATE_CHANNEL 0x0051
>> +#define HID_LAIP_GREEN_UPDATE_CHANNEL 0x0052
>> +#define HID_LAIP_BLUE_UPDATE_CHANNEL 0x0053
>> +#define HID_LAIP_INTENSITY_UPDATE_CHANNEL 0x0054
>> +#define HID_LAIP_LAMP_ID_START 0x0061
>> +#define HID_LAIP_LAMP_ID_END 0x0062
>> +#define HID_LAIP_AUTONOMOUS_MODE 0x0071
>> +
>> +/* LampArrayKind values */
>> +#define HID_LAMPARRAY_KIND_KEYBOARD 0x0001
>> +
>> +/* Helper struct for fields and their indices */
>> +struct hid_field_value {
>> + struct hid_field *field;
>> + int index;
>> +};
>> +
>> +/* Helper struct for color fields */
>> +struct lamparray_color_fields {
>> + struct hid_field_value red;
>> + struct hid_field_value green;
>> + struct hid_field_value blue;
>> + struct hid_field_value intensity;
>> +};
>> +
>> +/* Device state */
>> +struct lamparray_device {
>> + struct hid_device *hdev;
>> +
>> + struct lamparray_color_fields color_levels;
>> + struct lamparray_color_fields color_update;
>> +
>> + struct hid_field_value autonomous_field;
>> + struct hid_field_value range_start;
>> + struct hid_field_value range_end;
>> + struct hid_field_value lamp_count;
>> + struct hid_field_value lamparray_kind;
>> +
>> + u16 lamp_count_value;
>> + u32 lamparray_kind_value;
>> +
>> + struct led_classdev_mc mc_cdev;
>> + struct mc_subled subleds[3];
>> +
>> + struct mutex dev_lock; /* Protects cached state and HID access */
>> + struct mutex sysfs_lock; /* Protects sysfs LED (de-)initialization */
>> +
>> + u8 max_r;
>> + u8 max_g;
>> + u8 max_b;
>> + u8 max_brightness;
>> +
>> + u8 last_r;
>> + u8 last_g;
>> + u8 last_b;
>> + u8 last_brightness;
>> +
>> + bool use_leds_uapi;
>> + bool led_registered;
>> +};
>> +
>> +/*
>> + * Opaque handle exposed to callers via the header.
>> + * Keep the actual state in lamparray_device, but return a stable pointer.
>> + */
>> +struct lamparray {
>> + struct lamparray_device ldev;
>> +};
>> +
>> +/*
>> + * Mapping for hid_device pointers to their lamparray data.
>> + * Since there is not guarantee of how the driver using this library
>> + * will use its drvdata, the only safe way to retrieve the lamparray
>> + * data from a HID device pointer is using this mapping.
>> + */
>> +static DEFINE_XARRAY(lamparray_by_hdev);
>> +
>> +/* HID helper functions */
>> +
>> +static int get_field_value(struct hid_field_value *field_value)
>> +{
>> + return field_value->field->value[field_value->index];
>> +}
>> +
>> +static u8 get_field_value_as_u8(struct hid_field_value *field_value)
>> +{
>> + return clamp_val(get_field_value(field_value), 0, U8_MAX);
>> +}
>> +
>> +static void set_field_value(struct hid_field_value *field_value, int value)
>> +{
>> + field_value->field->value[field_value->index] = value;
>> +}
>> +
>> +static bool lamparray_color_fields_is_complete(struct lamparray_color_fields *color_fields)
>> +{
>> + return color_fields->red.field && color_fields->green.field &&
>> + color_fields->blue.field && color_fields->intensity.field;
>> +}
>> +
>> +static int lamparray_read_attributes_report(struct lamparray_device *ldev)
>> +{
>> + struct hid_device *hdev = ldev->hdev;
>> + struct hid_report *report;
>> +
>> + if (!ldev->lamp_count.field) {
>> + hid_dbg(hdev, "No LampCount field found\n");
>> + return -ENODEV;
>> + }
>> +
>> + if (!ldev->lamparray_kind.field) {
>> + hid_dbg(hdev, "No LampArrayKind field found\n");
>> + return -ENODEV;
>> + }
>> +
>> + report = ldev->lamp_count.field->report;
>> +
>> + if (!report) {
>> + hid_dbg(hdev, "LampCount field has no report\n");
>> + return -ENODEV;
>> + }
>> +
>> + mutex_lock(&ldev->dev_lock);
>> +
>> + /* Update values */
>> + hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
>> + hid_hw_wait(hdev);
>> +
>> + ldev->lamp_count_value = get_field_value(&ldev->lamp_count);
>> +
>> + if (ldev->lamp_count_value == 0) {
>> + mutex_unlock(&ldev->dev_lock);
>> + hid_dbg(hdev, "LampCount is %d (invalid)\n", ldev->lamp_count_value);
>> + return -EINVAL;
>> + }
>> +
>> + ldev->lamparray_kind_value = get_field_value(&ldev->lamparray_kind);
>> +
>> + mutex_unlock(&ldev->dev_lock);
>> +
>> + return 0;
>> +}
>> +
>> +static int lamparray_parse_update_report(struct lamparray_device *ldev)
>> +{
>> + struct hid_device *hdev = ldev->hdev;
>> + struct hid_report_enum *re;
>> + struct hid_report *report;
>> + struct hid_field *field;
>> + int i, j;
>> + int ret = 0;
>> +
>> + mutex_lock(&ldev->dev_lock);
>> +
>> + re = &hdev->report_enum[HID_FEATURE_REPORT];
>> +
>> + list_for_each_entry(report, &re->report_list, list) {
>> + for (i = 0; i < report->maxfield; i++) {
>> + field = report->field[i];
>> + if (!field)
>> + continue;
>> +
>> + if (!field->usage || !field->maxusage)
>> + continue;
>> +
>> + for (j = 0; j < field->maxusage; j++) {
>> + u32 usage = field->usage[j].hid;
>> + u32 collection_idx = field->usage[j].collection_index;
>> + u32 collection_usage = hdev->collection[collection_idx].usage;
>> +
>> + u16 page = (usage & HID_USAGE_PAGE) >> 16;
>> + u16 id = usage & HID_USAGE;
>> + u16 collection_usage_id = collection_usage & U16_MAX;
>> +
>> + if (page != HID_LIGHTING_ILLUMINATION_USAGE_PAGE)
>> + continue;
>> +
>> + if (collection_usage_id == HID_LAMPARRAY_ATTRIBUTES_REPORT) {
>> + switch (id) {
>> + case HID_LAIP_LAMP_COUNT:
>> + ldev->lamp_count.field = field;
>> + ldev->lamp_count.index = j;
>> + break;
>> + case HID_LAIP_LAMPARRAY_KIND:
>> + ldev->lamparray_kind.field = field;
>> + ldev->lamparray_kind.index = j;
>> + break;
>> + }
>> + } else if (collection_usage_id ==
>> + HID_LAMP_ATTRIBUTES_RESPONSE_REPORT) {
>> + switch (id) {
>> + case HID_LAIP_RED_LEVEL_COUNT:
>> + ldev->color_levels.red.field = field;
>> + ldev->color_levels.red.index = j;
>> + break;
>> + case HID_LAIP_GREEN_LEVEL_COUNT:
>> + ldev->color_levels.green.field = field;
>> + ldev->color_levels.green.index = j;
>> + break;
>> + case HID_LAIP_BLUE_LEVEL_COUNT:
>> + ldev->color_levels.blue.field = field;
>> + ldev->color_levels.blue.index = j;
>> + break;
>> + case HID_LAIP_INTENSITY_LEVEL_COUNT:
>> + ldev->color_levels.intensity.field = field;
>> + ldev->color_levels.intensity.index = j;
>> + break;
>> + }
>> + } else if (collection_usage_id == HID_LAMP_RANGE_UPDATE_REPORT) {
>> + switch (id) {
>> + case HID_LAIP_RED_UPDATE_CHANNEL:
>> + ldev->color_update.red.field = field;
>> + ldev->color_update.red.index = j;
>> + break;
>> + case HID_LAIP_GREEN_UPDATE_CHANNEL:
>> + ldev->color_update.green.field = field;
>> + ldev->color_update.green.index = j;
>> + break;
>> + case HID_LAIP_BLUE_UPDATE_CHANNEL:
>> + ldev->color_update.blue.field = field;
>> + ldev->color_update.blue.index = j;
>> + break;
>> + case HID_LAIP_INTENSITY_UPDATE_CHANNEL:
>> + ldev->color_update.intensity.field = field;
>> + ldev->color_update.intensity.index = j;
>> + break;
>> + case HID_LAIP_LAMP_ID_START:
>> + ldev->range_start.field = field;
>> + ldev->range_start.index = j;
>> + break;
>> + case HID_LAIP_LAMP_ID_END:
>> + ldev->range_end.field = field;
>> + ldev->range_end.index = j;
>> + break;
>> + default:
>> + break;
>> + }
>> + } else if (collection_usage_id == HID_LAMPARRAY_CONTROL_REPORT &&
>> + id == HID_LAIP_AUTONOMOUS_MODE) {
>> + ldev->autonomous_field.field = field;
>> + ldev->autonomous_field.index = j;
>> + }
>> + }
>> + }
>> + }
>> +
>> + if (!ldev->autonomous_field.field ||
>> + !lamparray_color_fields_is_complete(&ldev->color_update))
>> + ret = -ENODEV;
>> +
>> + mutex_unlock(&ldev->dev_lock);
>> +
>> + return ret;
>> +}
>> +
>> +static int lamparray_hw_set_autonomous(struct lamparray_device *ldev,
>> + bool enable)
>> +{
>> + struct hid_device *hdev = ldev->hdev;
>> + struct hid_field *field = ldev->autonomous_field.field;
>> +
>> + if (!field)
>> + return -ENODEV;
>> +
>> + mutex_lock(&ldev->dev_lock);
>> +
>> + set_field_value(&ldev->autonomous_field, !!enable);
>> +
>> + hid_hw_request(hdev, field->report, HID_REQ_SET_REPORT);
>> + hid_hw_wait(hdev);
>> +
>> + mutex_unlock(&ldev->dev_lock);
>> +
>> + return 0;
>> +}
>> +
>> +static int lamparray_hw_set_state(struct lamparray_device *ldev, u8 r, u8 g,
>> + u8 b, u8 intensity)
>> +{
>> + struct hid_device *hdev = ldev->hdev;
>> + struct hid_report *report;
>> +
>> + if (!lamparray_color_fields_is_complete(&ldev->color_update))
>> + return -ENODEV;
>> +
>> + if (ldev->range_start.field && ldev->range_end.field) {
>> + set_field_value(&ldev->range_start, 0);
>> + set_field_value(&ldev->range_end, ldev->lamp_count_value - 1);
>> + }
>> +
>> + set_field_value(&ldev->color_update.red, r);
>> + set_field_value(&ldev->color_update.green, g);
>> + set_field_value(&ldev->color_update.blue, b);
>> + set_field_value(&ldev->color_update.intensity, intensity);
>> +
>> + report = ldev->color_update.red.field->report;
>> + hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
>> + hid_hw_wait(hdev);
>> +
>> + return 0;
>> +}
>> +
>> +/*
>> + * Simple helper to read the color information of the first lamp.
>> + * This does not read the state of the whole lamp array since this driver only
>> + * exposes one LED anyway, so one color is sufficient here for now.
>> + */
>
> Just now thought of checking this: We probably should still iterate over all lamps to make sure all behave the same (as a first heuristic, later we could think of grouping the lamps based on weather or not they behave the same and register a led device for each group).
>
That's a good point. I'll consider this in v6 once more feedback has come in.
The only downside is that iterating over all lamps requires a lot of back and forth between the driver and the device.
One request for each lamp and in reality, there won't be many LampArray devices with different properties per lamp.
But it is probably still worth to make sure so we don't send bogus requests to the device.
> Also we should check via IsProgrammable and no max value being 0 if it even is an RGB LED.
>
Ack.
As one of the AI bots already figured out, santizing IntensityLevelCount (aka max_brightness) is absolutely necessary to prevent division by zero.
Such lamps should obviously be ignored.
>> +static int lamparray_get_lamp_attributes(struct lamparray_device *ldev)
>> +{
>> + struct hid_device *hdev = ldev->hdev;
>> + struct hid_report *report;
>> +
>> + if (!lamparray_color_fields_is_complete(&ldev->color_levels))
>> + return -ENODEV;
>> +
>> + /*
>> + * Get value of any lamp.
>> + */
>> + report = ldev->color_levels.red.field->report;
>> +
>> + mutex_lock(&ldev->dev_lock);
>> +
>> + hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
>> + hid_hw_wait(hdev);
>> +
>> + ldev->max_r = get_field_value_as_u8(&ldev->color_levels.red);
>> + ldev->max_g = get_field_value_as_u8(&ldev->color_levels.green);
>> + ldev->max_b = get_field_value_as_u8(&ldev->color_levels.blue);
>> + ldev->max_brightness = get_field_value_as_u8(&ldev->color_levels.intensity);
>> +
>> + mutex_unlock(&ldev->dev_lock);
>> +
>> + return 0;
>> +}
>> +
>> +/* Helper functions */
>> +
>> +static int lamparray_restore_state(struct lamparray_device *ldev)
>> +{
>> + u8 r, g, b;
>> + int ret;
>> + enum led_brightness brightness;
>> +
>> + mutex_lock(&ldev->dev_lock);
>> +
>> + if (!ldev->use_leds_uapi) {
>> + mutex_unlock(&ldev->dev_lock);
>> + return 0;
>> + }
>> +
>> + r = ldev->last_r;
>> + g = ldev->last_g;
>> + b = ldev->last_b;
>> + brightness = ldev->last_brightness;
>> +
>> + ldev->mc_cdev.subled_info[0].intensity = r;
>> + ldev->mc_cdev.subled_info[1].intensity = g;
>> + ldev->mc_cdev.subled_info[2].intensity = b;
>> + ldev->mc_cdev.led_cdev.brightness = brightness;
>> +
>> + led_mc_calc_color_components(&ldev->mc_cdev, brightness);
>> +
>> + ret = lamparray_hw_set_state(ldev, r, g, b, brightness);
>> +
>> + mutex_unlock(&ldev->dev_lock);
>> + return ret;
>> +}
>> +
>> +/* LEDs API */
>> +
>> +static int lamparray_led_brightness_set(struct led_classdev *cdev,
>> + enum led_brightness brightness)
>> +{
>> + struct led_classdev_mc *mc = lcdev_to_mccdev(cdev);
>> + struct lamparray_device *ldev =
>> + container_of_const(mc, struct lamparray_device, mc_cdev);
>> + u8 r, g, b;
>> + int ret;
>> +
>> + /*
>> + * Brightness is handled by the LampArray device if supported,
>> + * so we can pass the raw intensity values.
>> + */
>> + r = mc->subled_info[0].intensity;
>> + g = mc->subled_info[1].intensity;
>> + b = mc->subled_info[2].intensity;
>> +
>> + mc->led_cdev.brightness = brightness;
>> + led_mc_calc_color_components(&ldev->mc_cdev, brightness);
>> +
>> + mutex_lock(&ldev->dev_lock);
>> + ret = lamparray_hw_set_state(ldev, r, g, b, brightness);
>> + if (ret) {
>> + mutex_unlock(&ldev->dev_lock);
>> + hid_err(ldev->hdev, "Failed to send LampArray update: %d\n",
>> + ret);
>> + return ret;
>> + }
>> +
>> + ldev->last_r = r;
>> + ldev->last_g = g;
>> + ldev->last_b = b;
>> + ldev->last_brightness = brightness;
>> + mutex_unlock(&ldev->dev_lock);
>> +
>> + return 0;
>> +}
>> +
>> +static enum led_brightness
>> +lamparray_led_brightness_get(struct led_classdev *cdev)
>> +{
>> + struct led_classdev_mc *mc = lcdev_to_mccdev(cdev);
>> + struct lamparray_device *ldev =
>> + container_of_const(mc, struct lamparray_device, mc_cdev);
>> +
>> + return ldev->last_brightness;
>> +}
>> +
>> +static int lamparray_register_led(struct lamparray_device *ldev)
>> +{
>> + struct device *dev = &ldev->hdev->dev;
>> + struct led_classdev *cdev = &ldev->mc_cdev.led_cdev;
>> + int ret;
>> +
>> + mutex_lock(&ldev->sysfs_lock);
>> +
>> + if (ldev->led_registered) {
>> + mutex_unlock(&ldev->sysfs_lock);
>> + return 0;
>> + }
>> +
>> + if (!cdev->name) {
>> + /* Fallback value */
>> + const char *function = LED_FUNCTION_STATUS;
>> +
>> + /* Some heuristics for choosing a better LED function. */
>> + if (ldev->lamparray_kind_value == HID_LAMPARRAY_KIND_KEYBOARD)
>> + function = LED_FUNCTION_KBD_BACKLIGHT;
>> +
>> + cdev->name = kasprintf(GFP_KERNEL, "rgb:%s", function);
>> + if (!cdev->name) {
>> + mutex_unlock(&ldev->sysfs_lock);
>> + return -ENOMEM;
>> + }
>> + }
>> +
>> + mutex_lock(&ldev->dev_lock);
>> + /* Setup */
>> + cdev->max_brightness = ldev->max_brightness;
>> + cdev->brightness_set_blocking = lamparray_led_brightness_set;
>> + cdev->brightness_get = lamparray_led_brightness_get;
>> + cdev->flags |= LED_RETAIN_AT_SHUTDOWN;
>> +
>> + ldev->subleds[0].color_index = LED_COLOR_ID_RED;
>> + ldev->subleds[0].max_intensity = ldev->max_r;
>> + ldev->subleds[1].color_index = LED_COLOR_ID_GREEN;
>> + ldev->subleds[1].max_intensity = ldev->max_g;
>> + ldev->subleds[2].color_index = LED_COLOR_ID_BLUE;
>> + ldev->subleds[2].max_intensity = ldev->max_b;
>> +
>> + /* Set values */
>> + ldev->subleds[0].intensity = ldev->last_r;
>> + ldev->subleds[1].intensity = ldev->last_g;
>> + ldev->subleds[2].intensity = ldev->last_b;
>> + cdev->brightness = ldev->last_brightness;
>> +
>> + ldev->mc_cdev.subled_info = ldev->subleds;
>> + ldev->mc_cdev.num_colors = ARRAY_SIZE(ldev->subleds);
>> +
>> + /* Ensure subled_info[].brightness matches intensity + brightness */
>> + led_mc_calc_color_components(&ldev->mc_cdev, ldev->last_brightness);
>> + mutex_unlock(&ldev->dev_lock);
>> +
>> + ret = led_classdev_multicolor_register(dev, &ldev->mc_cdev);
>> + if (ret) {
>> + mutex_unlock(&ldev->sysfs_lock);
>> + return ret;
>> + }
>> +
>> + ldev->led_registered = true;
>> + mutex_unlock(&ldev->sysfs_lock);
>> +
>> + return 0;
>> +}
>> +
>> +static void lamparray_unregister_led(struct lamparray_device *ldev)
>> +{
>> + bool was_registered;
>> + struct led_classdev *cdev = &ldev->mc_cdev.led_cdev;
>> +
>> + mutex_lock(&ldev->sysfs_lock);
>> + was_registered = ldev->led_registered;
>> + ldev->led_registered = false;
>> +
>> + if (was_registered)
>> + led_classdev_multicolor_unregister(&ldev->mc_cdev);
>> +
>> + kfree(cdev->name);
>> + cdev->name = NULL;
>> +
>> + mutex_unlock(&ldev->sysfs_lock);
>> +}
>> +
>> +/* Sysfs */
>> +
>> +static struct lamparray_device *
>> +lamparray_ldev_from_sysfs_dev(struct device *dev)
>> +{
>> + struct hid_device *hdev = to_hid_device(dev);
>> +
>> + return xa_load(&lamparray_by_hdev, (unsigned long)hdev);
>> +}
>> +
>> +static ssize_t use_leds_uapi_show(struct device *dev,
>> + struct device_attribute *attr, char *buf)
>> +{
>> + struct lamparray_device *ldev = lamparray_ldev_from_sysfs_dev(dev);
>> +
>> + if (!ldev)
>> + return -ENODEV;
>> +
>> + return sysfs_emit(buf, "%d\n", ldev->use_leds_uapi);
>> +}
>> +
>> +static ssize_t use_leds_uapi_store(struct device *dev,
>> + struct device_attribute *attr,
>> + const char *buf, size_t count)
>> +{
>> + struct lamparray_device *ldev = lamparray_ldev_from_sysfs_dev(dev);
>> + int val;
>> + int old_val;
>> + int ret;
>> +
>> + if (!ldev)
>> + return -ENODEV;
>> +
>> + ret = kstrtoint(buf, 0, &val);
>> + if (ret)
>> + return ret;
>> +
>> + if (val != 0 && val != 1)
>> + return -EINVAL;
>> +
>> + mutex_lock(&ldev->dev_lock);
>> + old_val = ldev->use_leds_uapi;
>> +
>> + if (val == old_val) {
>> + mutex_unlock(&ldev->dev_lock);
>> + return count;
>> + }
>> +
>> + ldev->use_leds_uapi = val;
>> + mutex_unlock(&ldev->dev_lock);
>> +
>> + if (val == 1) {
>> + ret = lamparray_register_led(ldev);
>> + if (ret) {
>> + mutex_lock(&ldev->dev_lock);
>> + ldev->use_leds_uapi = old_val;
>> + mutex_unlock(&ldev->dev_lock);
>> + return ret;
>> + }
>> + ret = lamparray_restore_state(ldev);
>> + if (ret) {
>> + hid_err(ldev->hdev, "Could not restore state: %d\n", ret);
>> + return ret;
>> + }
>> +
>> + } else {
>> + lamparray_unregister_led(ldev);
>> + }
>> +
>> + return count;
>> +}
>> +static DEVICE_ATTR_RW(use_leds_uapi);
>> +
>> +static int lamparray_register_sysfs(struct lamparray_device *ldev)
>> +{
>> + struct device *dev = &ldev->hdev->dev;
>> + int ret;
>> +
>> + ret = sysfs_create_file(&dev->kobj, &dev_attr_use_leds_uapi.attr);
>> + if (ret)
>> + hid_err(ldev->hdev,
>> + "Failed to create lamparray sysfs group: %d\n", ret);
>> +
>> + return ret;
>> +}
>> +
>> +static void lamparray_remove_sysfs(struct lamparray_device *ldev)
>> +{
>> + sysfs_remove_file(&ldev->hdev->dev.kobj, &dev_attr_use_leds_uapi.attr);
>> +}
>> +
>> +/* Public API */
>> +
>> +bool lamparray_is_supported_device(struct hid_device *hdev)
>> +{
>> + unsigned int i;
>> +
>> + hid_dbg(hdev, "lamparray: walking %u collections\n",
>> + hdev->maxcollection);
>> +
>> + for (i = 0; i < hdev->maxcollection; i++) {
>> + struct hid_collection *col = &hdev->collection[i];
>> + u16 page = (col->usage & HID_USAGE_PAGE) >> 16;
>> + u16 code = col->usage & HID_USAGE;
>> +
>> + hid_dbg(hdev,
>> + "lamparray: collection[%u]: type=%u level=%u usage=0x%08x page=0x%04x code=0x%04x\n",
>> + i, col->type, col->level, col->usage, page, code);
>> +
>> + if (col->type == HID_COLLECTION_APPLICATION &&
>> + page == HID_LIGHTING_ILLUMINATION_USAGE_PAGE &&
>> + code == HID_APPLICATION_COLLECTION_USAGE_TYPE) {
>> + return true;
>> + }
>> + }
>> + return false;
>> +}
>> +EXPORT_SYMBOL_GPL(lamparray_is_supported_device);
>> +
>> +struct lamparray *
>> +lamparray_register(struct hid_device *hdev,
>> + const struct lamparray_init_state *led_init_state)
>> +{
>> + int ret;
>> + struct lamparray *la;
>> + struct lamparray_device *ldev;
>> +
>> + if (!hdev)
>> + return ERR_PTR(-ENODEV);
>> +
>> + la = kzalloc_obj(*la, GFP_KERNEL);
>> + if (!la)
>> + return ERR_PTR(-ENOMEM);
>> +
>> + ldev = &la->ldev;
>> +
>> + mutex_init(&ldev->dev_lock);
>> + mutex_init(&ldev->sysfs_lock);
>> + ldev->hdev = hdev;
>> + ldev->use_leds_uapi = true;
>> + ldev->led_registered = false;
>> +
>> + /* Make sure the driver lock gets released for probing. */
>> + hid_device_io_start(hdev);
>> +
>> + ret = lamparray_parse_update_report(ldev);
>> + if (ret) {
>> + hid_err(hdev, "No LampArray update report found: %d\n", ret);
>> + goto err_free;
>> + }
>> +
>> + ret = lamparray_read_attributes_report(ldev);
>> + if (ret) {
>> + hid_err(hdev,
>> + "Could not determine LampCount: %d\n",
>> + ret);
>> + goto err_free;
>> + }
>> +
>> + ret = lamparray_get_lamp_attributes(ldev);
>> + if (ret) {
>> + hid_err(hdev,
>> + "Faulty device. Could not query lamp attributes.\n");
>> + goto err_free;
>> + }
>> +
>> + /* Use black (all zeros) as default. */
>> + if (led_init_state) {
>> + ldev->last_r = min(led_init_state->r, ldev->max_r);
>> + ldev->last_g = min(led_init_state->g, ldev->max_g);
>> + ldev->last_b = min(led_init_state->b, ldev->max_b);
>> + ldev->last_brightness = min(led_init_state->brightness,
>> + ldev->max_brightness);
>> + }
>> +
>> + ret = lamparray_register_led(ldev);
>> + if (ret) {
>> + hid_warn(hdev, "Failed to register LED UAPI: %d\n", ret);
>> + ldev->use_leds_uapi = false;
>> + }
>> +
>> + ret = xa_err(xa_store(&lamparray_by_hdev, (unsigned long)hdev, ldev,
>> + GFP_KERNEL));
>> + if (ret)
>> + goto err_unregister_led;
>> +
>> + ret = lamparray_register_sysfs(ldev);
>> + if (ret)
>> + goto err_xa_erase;
>> +
>> + ret = lamparray_hw_set_autonomous(ldev, false);
>> + if (ret) {
>> + hid_err(hdev, "Could not disable autonomous mode: %d", ret);
>> + goto err_remove_sysfs;
>> + }
>> +
>> + hid_info(hdev, "LampArray device registered\n");
>> +
>> + ret = lamparray_restore_state(ldev);
>> + if (ret) {
>> + hid_err(hdev, "Failed to set default state: %d", ret);
>> + goto err_remove_sysfs;
>> + }
>> +
>> + hid_device_io_stop(hdev);
>> + return la;
>> +
>> +err_remove_sysfs:
>> + lamparray_remove_sysfs(ldev);
>> +err_xa_erase:
>> + xa_erase(&lamparray_by_hdev, (unsigned long)hdev);
>> +err_unregister_led:
>> + lamparray_unregister_led(ldev);
>> +err_free:
>> + hid_device_io_stop(hdev);
>> + mutex_destroy(&ldev->dev_lock);
>> + mutex_destroy(&ldev->sysfs_lock);
>> + kfree(la);
>> + return ERR_PTR(ret);
>> +}
>> +EXPORT_SYMBOL_GPL(lamparray_register);
>> +
>> +void lamparray_unregister(struct lamparray *la)
>> +{
>> + struct lamparray_device *ldev;
>> +
>> + if (!la)
>> + return;
>> +
>> + ldev = &la->ldev;
>> +
>> + lamparray_hw_set_autonomous(ldev, true);
>> +
>> + lamparray_remove_sysfs(ldev);
>> + xa_erase(&lamparray_by_hdev, (unsigned long)ldev->hdev);
>> + lamparray_unregister_led(ldev);
>> +
>> + mutex_destroy(&ldev->dev_lock);
>> + mutex_destroy(&ldev->sysfs_lock);
>> + kfree(la);
>> +}
>> +EXPORT_SYMBOL_GPL(lamparray_unregister);
>> +
>> +MODULE_LICENSE("GPL");
>> +MODULE_AUTHOR("Tim Guttzeit <tgu@tuxedocomputers.com>");
>> +MODULE_AUTHOR("Aaron Erhardt <aer@tuxedocomputers.com>");
>> +MODULE_DESCRIPTION("HID LampArray helper module (single-zone RGB)");
>> diff --git a/include/linux/hid-lamparray.h b/include/linux/hid-lamparray.h
>> new file mode 100644
>> index 000000000000..a77869728d12
>> --- /dev/null
>> +++ b/include/linux/hid-lamparray.h
>> @@ -0,0 +1,88 @@
>> +/* SPDX-License-Identifier: GPL-2.0-or-later */
>> +
>> +#ifndef _HID_LAMPARRAY_H
>> +#define _HID_LAMPARRAY_H
>> +
>> +#include <linux/hid.h>
>> +#include <linux/err.h>
>> +#include <linux/types.h>
>> +
>> +struct lamparray;
>> +
>> +/*
>> + * Optional initial LED state for lamparray_register().
>> + * Used to define the initial state of a LampArray's LEDs.
>> + */
>> +struct lamparray_init_state {
>> + u8 r;
>> + u8 g;
>> + u8 b;
>> + u8 brightness;
>> +};
>> +
>> +#if IS_ENABLED(CONFIG_HID_LAMPARRAY)
>> +
>> +/**
>> + * lamparray_is_supported_device() - check whether a HID device supports LampArray
>> + * @hdev: HID device to inspect
>> + *
>> + * Check whether the given HID device exposes a Lighting/LampArray application
>> + * collection as defined by the HID Lighting specification.
>> + *
>> + * This helper can be used by HID drivers to determine whether LampArray
>> + * functionality should be enabled for a device.
>> + *
>> + * Return: %true if LampArray support is detected, %false otherwise.
>> + */
>> +bool lamparray_is_supported_device(struct hid_device *hdev);
>> +
>> +/**
>> + * lamparray_register() - initialize LampArray support for a HID device
>> + * @hdev: HID device
>> + * @led_init_state: Optional LED state at init specification
>> + *
>> + * Allocate and initialize internal LampArray state for the given HID device.
>> + * The function parses required HID reports and fields and registers the
>> + * associated miscdevice and sysfs attributes.
>> + *
>> + * Registers a multicolor LED class device to expose the LampArray functionality
>> + * via the LED subsystem. If specified, the desired initial LED state is
>> + * applied. If led_init_state is NULL, a default state is applied (all LEDs off).
>> + *
>> + * Return: pointer to a LampArray handle on success, or ERR_PTR() on failure.
>> + */
>> +struct lamparray *lamparray_register(struct hid_device *hdev,
>> + const struct lamparray_init_state *led_init_state);
>> +
>> +/**
>> + * lamparray_unregister() - tear down LampArray support
>> + * @la: LampArray handle returned by lamparray_register()
>> + *
>> + * Remove all resources associated with a LampArray instance.
>> + *
>> + * This unregisters the LED class device (if present), removes the miscdevice
>> + * and sysfs interfaces and frees all internal state associated with @la.
>> + */
>> +void lamparray_unregister(struct lamparray *la);
>> +
>> +#else /* !CONFIG_HID_LAMPARRAY */
>> +
>> +static inline bool lamparray_is_supported_device(struct hid_device *hdev)
>> +{
>> + return false;
>> +}
>> +
>> +static inline struct lamparray *
>> +lamparray_register(struct hid_device *hdev,
>> + const struct lamparray_init_state *led_init_state)
>> +{
>> + return ERR_PTR(-EOPNOTSUPP);
>> +}
>> +
>> +static inline void lamparray_unregister(struct lamparray *la)
>> +{
>> +}
>> +
>> +#endif /* CONFIG_HID_LAMPARRAY */
>> +
>> +#endif /* _HID_LAMPARRAY_H */
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v5 0/2] HID: generic: add LampArray support via hid-lamparray helper
2026-09-03 7:35 [PATCH v5 0/2] HID: generic: add LampArray support via hid-lamparray helper Aaron Erhardt
2026-09-03 7:35 ` [PATCH v5 1/2] HID: lamparray: add new LampArray helper module Aaron Erhardt
2026-09-03 7:35 ` [PATCH v5 2/2] HID: generic: add LampArray support via hid-lamparray helper Aaron Erhardt
@ 2026-09-04 20:49 ` Armin Wolf
2 siblings, 0 replies; 9+ messages in thread
From: Armin Wolf @ 2026-09-04 20:49 UTC (permalink / raw)
To: Aaron Erhardt, Jiri Kosina, Benjamin Tissoires
Cc: wse, linux-input, linux-kernel
Am 03.09.26 um 09:35 schrieb Aaron Erhardt:
> Add a new hid-lamparray helper module and integrate it with the
> hid-generic driver.
>
> While more complex lamparray handling should be done in userspace via
> hidraw, providing a small module to add basic lamparray support makes it
> possible for userspace software to interact with lamparrays by simply
> using well-known APIs of the LED subsystem. One use-case would be to
> enable desktop environments to support keyboard backlight control out of
> the box for HID lamparray devices without having to implement the whole
> HID protocol themselves.
>
> This patch is based on previous discussions:
> https://lore.kernel.org/all/1fb08a74-62c7-4d0c-ba5d-648e23082dcb@tuxedocomputers.com/
>
> The helper provides basic support for devices exposing a
> Lighting/LampArray application collection (usage page 0x59) and
> registers a single-zone RGB LED representation via the LED
> subsystem.
>
> hid-generic now checks for LampArray support after hid_parse() and
> optionally registers a lamparray instance. Failures in the helper
> do not abort device probe to keep the driver logic otherwise unchanged.
>
> LampArray resources are released on driver remove.
>
> This commit was successfully tested on the Microsoft MacroPad reference
> implementation (https://github.com/microsoft/RP2040MacropadHidSample
> 1d6c3ad) and in combination with the tuxedo_nb04_wmi driver, albeit
> only fully functional with a recent fix posted to the LKML
> (https://lore.kernel.org/all/20260826081149.235487-2-aer@tuxedocomputers.com).
Nice work, it works on my ASUS Prime B650-Plus. However the behavior of the brightness
attribute is a bit strange:
- manually setting "brightness" does not change anything (max. is 1)
- setting RGB to "0 0 0" causes "brightness" to become 0
- setting RGB to a non-zero value causes "brightness" to become 1
Any idea why this happens? I can check if the same problems also exists under Windows,
if requested.
Thanks,
Armin Wolf
> v5:
> - Proper hardware detection (no quirks necessary anymore)
> - Add documentation for new sysfs knob
> - Pass limits of the device to sysfs (intesities & brightness)
> - More flexible Kconfig (use tristate)
> - Improved locking
> - Several memory leak and (de-)initialization fixes
> - Don't read current color values from hardware (the HID spec does not
> offer this option)
> - Remove redundant report dump functionality
> v4:
> - Restrict CONFIG_HID_LAMPARRAY to built-in configurations only to fix
> additional randconfig build errors
> v3:
> - Squash V1 and V2 into one patch
> v2:
> - Fix Kconfig to avoid build errors when LEDS_CLASS_MULTICOLOR is
> disabled
>
> Aaron Erhardt (2):
> HID: lamparray: add new LampArray helper module
> HID: generic: add LampArray support via hid-lamparray helper
>
> .../ABI/testing/sysfs-driver-hid-lamparray | 16 +
> drivers/hid/Kconfig | 18 +
> drivers/hid/Makefile | 2 +
> drivers/hid/hid-generic.c | 38 +
> drivers/hid/hid-lamparray.c | 812 ++++++++++++++++++
> include/linux/hid-lamparray.h | 88 ++
> 6 files changed, 974 insertions(+)
> create mode 100644 Documentation/ABI/testing/sysfs-driver-hid-lamparray
> create mode 100644 drivers/hid/hid-lamparray.c
> create mode 100644 include/linux/hid-lamparray.h
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v5 1/2] HID: lamparray: add new LampArray helper module
2026-09-03 7:35 ` [PATCH v5 1/2] HID: lamparray: add new LampArray helper module Aaron Erhardt
2026-09-03 7:48 ` sashiko-bot
2026-09-03 20:07 ` Werner Sembach
@ 2026-09-04 21:30 ` Armin Wolf
2 siblings, 0 replies; 9+ messages in thread
From: Armin Wolf @ 2026-09-04 21:30 UTC (permalink / raw)
To: Aaron Erhardt, Jiri Kosina, Benjamin Tissoires
Cc: wse, linux-input, linux-kernel
Am 03.09.26 um 09:35 schrieb Aaron Erhardt:
> Add a new hid-lamparray helper module that provides basic support for
> devices exposing a Lighting/LampArray application collection (usage
> page 0x59) and registers a single-zone RGB LED representation via the
> LED subsystem.
>
> The module can be used as a library in HID drivers to add support for
> the HID LampArray protocol. While the API is quite basic as of now
> it could be extended in the future.
>
> Co-developed-by: Tim Guttzeit <tgu@tuxedocomputers.com>
> Signed-off-by: Tim Guttzeit <tgu@tuxedocomputers.com>
> Signed-off-by: Aaron Erhardt <aer@tuxedocomputers.com>
> ---
> .../ABI/testing/sysfs-driver-hid-lamparray | 16 +
> drivers/hid/Kconfig | 17 +
> drivers/hid/Makefile | 2 +
> drivers/hid/hid-lamparray.c | 812 ++++++++++++++++++
> include/linux/hid-lamparray.h | 88 ++
> 5 files changed, 935 insertions(+)
> create mode 100644 Documentation/ABI/testing/sysfs-driver-hid-lamparray
> create mode 100644 drivers/hid/hid-lamparray.c
> create mode 100644 include/linux/hid-lamparray.h
>
> diff --git a/Documentation/ABI/testing/sysfs-driver-hid-lamparray b/Documentation/ABI/testing/sysfs-driver-hid-lamparray
> new file mode 100644
> index 000000000000..795be6c4c368
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-driver-hid-lamparray
> @@ -0,0 +1,16 @@
> +What: /sys/bus/hid/devices/<bus>:<vid>:<pid>.<n>/use_leds_uapi
> +Date: August 2026
> +KernelVersion: 7.3
> +Contact: aer@tuxedocomputers.com
> +Description:
> + If a driver uses the hid-lamparray module and a device supporting
> + LampArray is found, one multicolor LED class device is registered under
> + /sys/class/leds/rgb:<function> to expose the single-zone RGB control.
> + Every device gets an incremental unique id.
> +
> + Additionally, the use_leds_uapi sysfs attribute to control the LED class
> + device is attached directly to the HID device at
> + /sys/bus/hid/devices/<bus>:<vid>:<pid>.<n>/use_leds_uapi. Writing 0 to
> + use_leds_uapi unregisters the LED class device. The last state is kept
> + cached. Writing 1 registers it again and restores the cached state to
> + hardware.
> diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
> index aa7fa11a0197..4afd80a67b39 100644
> --- a/drivers/hid/Kconfig
> +++ b/drivers/hid/Kconfig
> @@ -92,6 +92,23 @@ config HID_GENERIC
>
> If unsure, say Y.
>
> +config HID_LAMPARRAY
> + tristate "HID LampArray helper"
> + depends on HID
> + depends on LEDS_CLASS_MULTICOLOR
> + default n
> + help
> + Helper for HID devices exposing a Lighting/LampArray collection.
> + Treats LampArray devices as a single-zone device and exposes a sysfs
> + interface for changing color and intensity values. Also exposes a
> + sysfs flag to be disabled e.g. by a userspace driver.
> +
> + This can be used as library in existing drivers. The generic HID
> + driver is extended by default to handle lamp array devices if this
> + option is enabled.
> +
> + If unsure, say N.
> +
> config HID_HAPTIC
> bool "Haptic touchpad support"
> default n
> diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile
> index 48a863b245ee..f95630fa8bd8 100644
> --- a/drivers/hid/Makefile
> +++ b/drivers/hid/Makefile
> @@ -13,6 +13,8 @@ obj-$(CONFIG_UHID) += uhid.o
>
> obj-$(CONFIG_HID_GENERIC) += hid-generic.o
>
> +obj-$(CONFIG_HID_LAMPARRAY) += hid-lamparray.o
> +
> hid-$(CONFIG_HIDRAW) += hidraw.o
>
> hid-logitech-y := hid-lg.o
> diff --git a/drivers/hid/hid-lamparray.c b/drivers/hid/hid-lamparray.c
> new file mode 100644
> index 000000000000..9a438aa2d305
> --- /dev/null
> +++ b/drivers/hid/hid-lamparray.c
> @@ -0,0 +1,812 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
> +/*
> + * hid-lamparray.c - HID LampArray helper module (single-zone RGB)
> + *
> + * Helper module for HID drivers supporting devices that expose a Lighting and
> + * Illumination (LampArray) application collection (usage page 0x59).
> + *
> + * The module provides a minimal integration with the LED subsystem and treats
> + * the device as a single zone: all lamps share one RGB value and a global
> + * brightness level. It does not implement multi-zone layouts or hardware
> + * effects.
> + *
> + * If enabled and a device supporting LampArray is found, one multicolor LED
> + * class device is registered under /sys/class/leds/<HID-ID>:rgb:LampArray to
> + * expose the single-zone RGB control.
> + *
> + * The use_leds_uapi sysfs attribute is attached directly to the HID device
> + * under /sys/bus/hid/devices/<HID-ID>/use_leds_uapi. Writing 0 to use_leds_uapi
> + * unregisters the LED class device. The last state is kept cached. Writing 1
> + * registers it again and restores the cached state to hardware. State is cached
> + * as last known RGB + brightness.
> + *
> + * The module does not bind to devices on its own. Instead, a HID driver may
> + * query support via lamparray_is_supported_device() after hid_parse() and
> + * create an instance using lamparray_register().
> + *
> + * Copyright (C) 2026 Tim Guttzeit <tgu@tuxedocomputers.com>
> + * Copyright (C) 2026 Aaron Erhardt <aer@tuxedocomputers.com>
> + */
> +
> +#include <dt-bindings/leds/common.h>
> +#include <linux/limits.h>
> +#include <linux/minmax.h>
> +#include <linux/hid.h>
> +#include <linux/leds.h>
> +#include <linux/sysfs.h>
> +#include <linux/hid-lamparray.h>
> +#include <linux/module.h>
> +#include <linux/mutex.h>
> +#include <linux/container_of.h>
> +#include <linux/led-class-multicolor.h>
> +#include <linux/xarray.h>
> +
> +/* Constants */
> +
> +/* HID usages (LampArray, etc.) */
> +#define HID_LIGHTING_ILLUMINATION_USAGE_PAGE 0x0059
> +
> +/* HID usage types */
> +#define HID_APPLICATION_COLLECTION_USAGE_TYPE 0x0001
> +#define HID_LAMPARRAY_ATTRIBUTES_REPORT 0x0002
> +#define HID_LAMP_ATTRIBUTES_RESPONSE_REPORT 0x0022
> +#define HID_LAMP_RANGE_UPDATE_REPORT 0x0060
> +#define HID_LAMPARRAY_CONTROL_REPORT 0x0070
> +
> +/* HID attributes */
> +#define HID_LAIP_LAMP_COUNT 0x0003
> +#define HID_LAIP_LAMPARRAY_KIND 0x0007
> +#define HID_LAIP_RED_LEVEL_COUNT 0x0028
> +#define HID_LAIP_GREEN_LEVEL_COUNT 0x0029
> +#define HID_LAIP_BLUE_LEVEL_COUNT 0x002a
> +#define HID_LAIP_INTENSITY_LEVEL_COUNT 0x002b
> +#define HID_LAIP_RED_UPDATE_CHANNEL 0x0051
> +#define HID_LAIP_GREEN_UPDATE_CHANNEL 0x0052
> +#define HID_LAIP_BLUE_UPDATE_CHANNEL 0x0053
> +#define HID_LAIP_INTENSITY_UPDATE_CHANNEL 0x0054
> +#define HID_LAIP_LAMP_ID_START 0x0061
> +#define HID_LAIP_LAMP_ID_END 0x0062
> +#define HID_LAIP_AUTONOMOUS_MODE 0x0071
> +
> +/* LampArrayKind values */
> +#define HID_LAMPARRAY_KIND_KEYBOARD 0x0001
> +
> +/* Helper struct for fields and their indices */
> +struct hid_field_value {
> + struct hid_field *field;
> + int index;
> +};
> +
> +/* Helper struct for color fields */
> +struct lamparray_color_fields {
> + struct hid_field_value red;
> + struct hid_field_value green;
> + struct hid_field_value blue;
> + struct hid_field_value intensity;
> +};
> +
> +/* Device state */
> +struct lamparray_device {
> + struct hid_device *hdev;
> +
> + struct lamparray_color_fields color_levels;
> + struct lamparray_color_fields color_update;
> +
> + struct hid_field_value autonomous_field;
> + struct hid_field_value range_start;
> + struct hid_field_value range_end;
> + struct hid_field_value lamp_count;
> + struct hid_field_value lamparray_kind;
> +
> + u16 lamp_count_value;
> + u32 lamparray_kind_value;
> +
> + struct led_classdev_mc mc_cdev;
> + struct mc_subled subleds[3];
> +
> + struct mutex dev_lock; /* Protects cached state and HID access */
> + struct mutex sysfs_lock; /* Protects sysfs LED (de-)initialization */
> +
> + u8 max_r;
> + u8 max_g;
> + u8 max_b;
> + u8 max_brightness;
> +
> + u8 last_r;
> + u8 last_g;
> + u8 last_b;
> + u8 last_brightness;
> +
> + bool use_leds_uapi;
> + bool led_registered;
> +};
> +
> +/*
> + * Opaque handle exposed to callers via the header.
> + * Keep the actual state in lamparray_device, but return a stable pointer.
> + */
> +struct lamparray {
> + struct lamparray_device ldev;
> +};
> +
> +/*
> + * Mapping for hid_device pointers to their lamparray data.
> + * Since there is not guarantee of how the driver using this library
> + * will use its drvdata, the only safe way to retrieve the lamparray
> + * data from a HID device pointer is using this mapping.
> + */
> +static DEFINE_XARRAY(lamparray_by_hdev);
> +
> +/* HID helper functions */
> +
> +static int get_field_value(struct hid_field_value *field_value)
> +{
> + return field_value->field->value[field_value->index];
> +}
> +
> +static u8 get_field_value_as_u8(struct hid_field_value *field_value)
> +{
> + return clamp_val(get_field_value(field_value), 0, U8_MAX);
> +}
> +
> +static void set_field_value(struct hid_field_value *field_value, int value)
> +{
> + field_value->field->value[field_value->index] = value;
> +}
> +
> +static bool lamparray_color_fields_is_complete(struct lamparray_color_fields *color_fields)
> +{
> + return color_fields->red.field && color_fields->green.field &&
> + color_fields->blue.field && color_fields->intensity.field;
> +}
> +
> +static int lamparray_read_attributes_report(struct lamparray_device *ldev)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_report *report;
> +
> + if (!ldev->lamp_count.field) {
> + hid_dbg(hdev, "No LampCount field found\n");
> + return -ENODEV;
> + }
> +
> + if (!ldev->lamparray_kind.field) {
> + hid_dbg(hdev, "No LampArrayKind field found\n");
> + return -ENODEV;
> + }
> +
> + report = ldev->lamp_count.field->report;
> +
> + if (!report) {
> + hid_dbg(hdev, "LampCount field has no report\n");
> + return -ENODEV;
> + }
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + /* Update values */
> + hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
> + hid_hw_wait(hdev);
> +
> + ldev->lamp_count_value = get_field_value(&ldev->lamp_count);
> +
> + if (ldev->lamp_count_value == 0) {
> + mutex_unlock(&ldev->dev_lock);
> + hid_dbg(hdev, "LampCount is %d (invalid)\n", ldev->lamp_count_value);
> + return -EINVAL;
> + }
> +
> + ldev->lamparray_kind_value = get_field_value(&ldev->lamparray_kind);
> +
> + mutex_unlock(&ldev->dev_lock);
> +
> + return 0;
> +}
> +
> +static int lamparray_parse_update_report(struct lamparray_device *ldev)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_report_enum *re;
> + struct hid_report *report;
> + struct hid_field *field;
> + int i, j;
> + int ret = 0;
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + re = &hdev->report_enum[HID_FEATURE_REPORT];
> +
> + list_for_each_entry(report, &re->report_list, list) {
> + for (i = 0; i < report->maxfield; i++) {
> + field = report->field[i];
> + if (!field)
> + continue;
> +
> + if (!field->usage || !field->maxusage)
> + continue;
> +
> + for (j = 0; j < field->maxusage; j++) {
> + u32 usage = field->usage[j].hid;
> + u32 collection_idx = field->usage[j].collection_index;
> + u32 collection_usage = hdev->collection[collection_idx].usage;
> +
> + u16 page = (usage & HID_USAGE_PAGE) >> 16;
> + u16 id = usage & HID_USAGE;
> + u16 collection_usage_id = collection_usage & U16_MAX;
> +
> + if (page != HID_LIGHTING_ILLUMINATION_USAGE_PAGE)
> + continue;
> +
> + if (collection_usage_id == HID_LAMPARRAY_ATTRIBUTES_REPORT) {
> + switch (id) {
> + case HID_LAIP_LAMP_COUNT:
> + ldev->lamp_count.field = field;
> + ldev->lamp_count.index = j;
> + break;
> + case HID_LAIP_LAMPARRAY_KIND:
> + ldev->lamparray_kind.field = field;
> + ldev->lamparray_kind.index = j;
> + break;
> + }
> + } else if (collection_usage_id ==
> + HID_LAMP_ATTRIBUTES_RESPONSE_REPORT) {
> + switch (id) {
> + case HID_LAIP_RED_LEVEL_COUNT:
> + ldev->color_levels.red.field = field;
> + ldev->color_levels.red.index = j;
> + break;
> + case HID_LAIP_GREEN_LEVEL_COUNT:
> + ldev->color_levels.green.field = field;
> + ldev->color_levels.green.index = j;
> + break;
> + case HID_LAIP_BLUE_LEVEL_COUNT:
> + ldev->color_levels.blue.field = field;
> + ldev->color_levels.blue.index = j;
> + break;
> + case HID_LAIP_INTENSITY_LEVEL_COUNT:
> + ldev->color_levels.intensity.field = field;
> + ldev->color_levels.intensity.index = j;
> + break;
> + }
> + } else if (collection_usage_id == HID_LAMP_RANGE_UPDATE_REPORT) {
> + switch (id) {
> + case HID_LAIP_RED_UPDATE_CHANNEL:
> + ldev->color_update.red.field = field;
> + ldev->color_update.red.index = j;
> + break;
> + case HID_LAIP_GREEN_UPDATE_CHANNEL:
> + ldev->color_update.green.field = field;
> + ldev->color_update.green.index = j;
> + break;
> + case HID_LAIP_BLUE_UPDATE_CHANNEL:
> + ldev->color_update.blue.field = field;
> + ldev->color_update.blue.index = j;
> + break;
> + case HID_LAIP_INTENSITY_UPDATE_CHANNEL:
> + ldev->color_update.intensity.field = field;
> + ldev->color_update.intensity.index = j;
> + break;
> + case HID_LAIP_LAMP_ID_START:
> + ldev->range_start.field = field;
> + ldev->range_start.index = j;
> + break;
> + case HID_LAIP_LAMP_ID_END:
> + ldev->range_end.field = field;
> + ldev->range_end.index = j;
> + break;
> + default:
> + break;
> + }
> + } else if (collection_usage_id == HID_LAMPARRAY_CONTROL_REPORT &&
> + id == HID_LAIP_AUTONOMOUS_MODE) {
> + ldev->autonomous_field.field = field;
> + ldev->autonomous_field.index = j;
> + }
> + }
> + }
> + }
> +
> + if (!ldev->autonomous_field.field ||
> + !lamparray_color_fields_is_complete(&ldev->color_update))
> + ret = -ENODEV;
> +
> + mutex_unlock(&ldev->dev_lock);
> +
> + return ret;
> +}
> +
> +static int lamparray_hw_set_autonomous(struct lamparray_device *ldev,
> + bool enable)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_field *field = ldev->autonomous_field.field;
> +
> + if (!field)
> + return -ENODEV;
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + set_field_value(&ldev->autonomous_field, !!enable);
> +
> + hid_hw_request(hdev, field->report, HID_REQ_SET_REPORT);
> + hid_hw_wait(hdev);
> +
> + mutex_unlock(&ldev->dev_lock);
> +
> + return 0;
> +}
> +
> +static int lamparray_hw_set_state(struct lamparray_device *ldev, u8 r, u8 g,
> + u8 b, u8 intensity)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_report *report;
> +
> + if (!lamparray_color_fields_is_complete(&ldev->color_update))
> + return -ENODEV;
> +
> + if (ldev->range_start.field && ldev->range_end.field) {
> + set_field_value(&ldev->range_start, 0);
> + set_field_value(&ldev->range_end, ldev->lamp_count_value - 1);
> + }
> +
> + set_field_value(&ldev->color_update.red, r);
> + set_field_value(&ldev->color_update.green, g);
> + set_field_value(&ldev->color_update.blue, b);
> + set_field_value(&ldev->color_update.intensity, intensity);
> +
> + report = ldev->color_update.red.field->report;
> + hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
> + hid_hw_wait(hdev);
> +
> + return 0;
> +}
> +
> +/*
> + * Simple helper to read the color information of the first lamp.
> + * This does not read the state of the whole lamp array since this driver only
> + * exposes one LED anyway, so one color is sufficient here for now.
> + */
> +static int lamparray_get_lamp_attributes(struct lamparray_device *ldev)
> +{
> + struct hid_device *hdev = ldev->hdev;
> + struct hid_report *report;
> +
> + if (!lamparray_color_fields_is_complete(&ldev->color_levels))
> + return -ENODEV;
> +
> + /*
> + * Get value of any lamp.
> + */
> + report = ldev->color_levels.red.field->report;
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + hid_hw_request(hdev, report, HID_REQ_GET_REPORT);
> + hid_hw_wait(hdev);
> +
> + ldev->max_r = get_field_value_as_u8(&ldev->color_levels.red);
> + ldev->max_g = get_field_value_as_u8(&ldev->color_levels.green);
> + ldev->max_b = get_field_value_as_u8(&ldev->color_levels.blue);
> + ldev->max_brightness = get_field_value_as_u8(&ldev->color_levels.intensity);
> +
> + mutex_unlock(&ldev->dev_lock);
> +
> + return 0;
> +}
> +
> +/* Helper functions */
> +
> +static int lamparray_restore_state(struct lamparray_device *ldev)
> +{
> + u8 r, g, b;
> + int ret;
> + enum led_brightness brightness;
> +
> + mutex_lock(&ldev->dev_lock);
> +
> + if (!ldev->use_leds_uapi) {
> + mutex_unlock(&ldev->dev_lock);
> + return 0;
> + }
> +
> + r = ldev->last_r;
> + g = ldev->last_g;
> + b = ldev->last_b;
> + brightness = ldev->last_brightness;
> +
> + ldev->mc_cdev.subled_info[0].intensity = r;
> + ldev->mc_cdev.subled_info[1].intensity = g;
> + ldev->mc_cdev.subled_info[2].intensity = b;
> + ldev->mc_cdev.led_cdev.brightness = brightness;
> +
> + led_mc_calc_color_components(&ldev->mc_cdev, brightness);
Hi,
since you are not using the brightness of the subleds, this call to
led_mc_calc_color_components() is unnecessary.
> +
> + ret = lamparray_hw_set_state(ldev, r, g, b, brightness);
> +
> + mutex_unlock(&ldev->dev_lock);
> + return ret;
> +}
> +
> +/* LEDs API */
> +
> +static int lamparray_led_brightness_set(struct led_classdev *cdev,
> + enum led_brightness brightness)
> +{
> + struct led_classdev_mc *mc = lcdev_to_mccdev(cdev);
> + struct lamparray_device *ldev =
> + container_of_const(mc, struct lamparray_device, mc_cdev);
> + u8 r, g, b;
> + int ret;
> +
> + /*
> + * Brightness is handled by the LampArray device if supported,
> + * so we can pass the raw intensity values.
> + */
> + r = mc->subled_info[0].intensity;
> + g = mc->subled_info[1].intensity;
> + b = mc->subled_info[2].intensity;
> +
> + mc->led_cdev.brightness = brightness;
> + led_mc_calc_color_components(&ldev->mc_cdev, brightness);
Same here, the assignment of mc->led_cdev.brightness is also already preformed
by the LED core itself.
Thanks,
Armin Wolf
> + mutex_lock(&ldev->dev_lock);
> + ret = lamparray_hw_set_state(ldev, r, g, b, brightness);
> + if (ret) {
> + mutex_unlock(&ldev->dev_lock);
> + hid_err(ldev->hdev, "Failed to send LampArray update: %d\n",
> + ret);
> + return ret;
> + }
> +
> + ldev->last_r = r;
> + ldev->last_g = g;
> + ldev->last_b = b;
> + ldev->last_brightness = brightness;
> + mutex_unlock(&ldev->dev_lock);
> +
> + return 0;
> +}
> +
> +static enum led_brightness
> +lamparray_led_brightness_get(struct led_classdev *cdev)
> +{
> + struct led_classdev_mc *mc = lcdev_to_mccdev(cdev);
> + struct lamparray_device *ldev =
> + container_of_const(mc, struct lamparray_device, mc_cdev);
> +
> + return ldev->last_brightness;
> +}
> +
> +static int lamparray_register_led(struct lamparray_device *ldev)
> +{
> + struct device *dev = &ldev->hdev->dev;
> + struct led_classdev *cdev = &ldev->mc_cdev.led_cdev;
> + int ret;
> +
> + mutex_lock(&ldev->sysfs_lock);
> +
> + if (ldev->led_registered) {
> + mutex_unlock(&ldev->sysfs_lock);
> + return 0;
> + }
> +
> + if (!cdev->name) {
> + /* Fallback value */
> + const char *function = LED_FUNCTION_STATUS;
> +
> + /* Some heuristics for choosing a better LED function. */
> + if (ldev->lamparray_kind_value == HID_LAMPARRAY_KIND_KEYBOARD)
> + function = LED_FUNCTION_KBD_BACKLIGHT;
> +
> + cdev->name = kasprintf(GFP_KERNEL, "rgb:%s", function);
> + if (!cdev->name) {
> + mutex_unlock(&ldev->sysfs_lock);
> + return -ENOMEM;
> + }
> + }
> +
> + mutex_lock(&ldev->dev_lock);
> + /* Setup */
> + cdev->max_brightness = ldev->max_brightness;
> + cdev->brightness_set_blocking = lamparray_led_brightness_set;
> + cdev->brightness_get = lamparray_led_brightness_get;
> + cdev->flags |= LED_RETAIN_AT_SHUTDOWN;
> +
> + ldev->subleds[0].color_index = LED_COLOR_ID_RED;
> + ldev->subleds[0].max_intensity = ldev->max_r;
> + ldev->subleds[1].color_index = LED_COLOR_ID_GREEN;
> + ldev->subleds[1].max_intensity = ldev->max_g;
> + ldev->subleds[2].color_index = LED_COLOR_ID_BLUE;
> + ldev->subleds[2].max_intensity = ldev->max_b;
> +
> + /* Set values */
> + ldev->subleds[0].intensity = ldev->last_r;
> + ldev->subleds[1].intensity = ldev->last_g;
> + ldev->subleds[2].intensity = ldev->last_b;
> + cdev->brightness = ldev->last_brightness;
> +
> + ldev->mc_cdev.subled_info = ldev->subleds;
> + ldev->mc_cdev.num_colors = ARRAY_SIZE(ldev->subleds);
> +
> + /* Ensure subled_info[].brightness matches intensity + brightness */
> + led_mc_calc_color_components(&ldev->mc_cdev, ldev->last_brightness);
> + mutex_unlock(&ldev->dev_lock);
> +
> + ret = led_classdev_multicolor_register(dev, &ldev->mc_cdev);
> + if (ret) {
> + mutex_unlock(&ldev->sysfs_lock);
> + return ret;
> + }
> +
> + ldev->led_registered = true;
> + mutex_unlock(&ldev->sysfs_lock);
> +
> + return 0;
> +}
> +
> +static void lamparray_unregister_led(struct lamparray_device *ldev)
> +{
> + bool was_registered;
> + struct led_classdev *cdev = &ldev->mc_cdev.led_cdev;
> +
> + mutex_lock(&ldev->sysfs_lock);
> + was_registered = ldev->led_registered;
> + ldev->led_registered = false;
> +
> + if (was_registered)
> + led_classdev_multicolor_unregister(&ldev->mc_cdev);
> +
> + kfree(cdev->name);
> + cdev->name = NULL;
> +
> + mutex_unlock(&ldev->sysfs_lock);
> +}
> +
> +/* Sysfs */
> +
> +static struct lamparray_device *
> +lamparray_ldev_from_sysfs_dev(struct device *dev)
> +{
> + struct hid_device *hdev = to_hid_device(dev);
> +
> + return xa_load(&lamparray_by_hdev, (unsigned long)hdev);
> +}
> +
> +static ssize_t use_leds_uapi_show(struct device *dev,
> + struct device_attribute *attr, char *buf)
> +{
> + struct lamparray_device *ldev = lamparray_ldev_from_sysfs_dev(dev);
> +
> + if (!ldev)
> + return -ENODEV;
> +
> + return sysfs_emit(buf, "%d\n", ldev->use_leds_uapi);
> +}
> +
> +static ssize_t use_leds_uapi_store(struct device *dev,
> + struct device_attribute *attr,
> + const char *buf, size_t count)
> +{
> + struct lamparray_device *ldev = lamparray_ldev_from_sysfs_dev(dev);
> + int val;
> + int old_val;
> + int ret;
> +
> + if (!ldev)
> + return -ENODEV;
> +
> + ret = kstrtoint(buf, 0, &val);
> + if (ret)
> + return ret;
> +
> + if (val != 0 && val != 1)
> + return -EINVAL;
> +
> + mutex_lock(&ldev->dev_lock);
> + old_val = ldev->use_leds_uapi;
> +
> + if (val == old_val) {
> + mutex_unlock(&ldev->dev_lock);
> + return count;
> + }
> +
> + ldev->use_leds_uapi = val;
> + mutex_unlock(&ldev->dev_lock);
> +
> + if (val == 1) {
> + ret = lamparray_register_led(ldev);
> + if (ret) {
> + mutex_lock(&ldev->dev_lock);
> + ldev->use_leds_uapi = old_val;
> + mutex_unlock(&ldev->dev_lock);
> + return ret;
> + }
> + ret = lamparray_restore_state(ldev);
> + if (ret) {
> + hid_err(ldev->hdev, "Could not restore state: %d\n", ret);
> + return ret;
> + }
> +
> + } else {
> + lamparray_unregister_led(ldev);
> + }
> +
> + return count;
> +}
> +static DEVICE_ATTR_RW(use_leds_uapi);
> +
> +static int lamparray_register_sysfs(struct lamparray_device *ldev)
> +{
> + struct device *dev = &ldev->hdev->dev;
> + int ret;
> +
> + ret = sysfs_create_file(&dev->kobj, &dev_attr_use_leds_uapi.attr);
> + if (ret)
> + hid_err(ldev->hdev,
> + "Failed to create lamparray sysfs group: %d\n", ret);
> +
> + return ret;
> +}
> +
> +static void lamparray_remove_sysfs(struct lamparray_device *ldev)
> +{
> + sysfs_remove_file(&ldev->hdev->dev.kobj, &dev_attr_use_leds_uapi.attr);
> +}
> +
> +/* Public API */
> +
> +bool lamparray_is_supported_device(struct hid_device *hdev)
> +{
> + unsigned int i;
> +
> + hid_dbg(hdev, "lamparray: walking %u collections\n",
> + hdev->maxcollection);
> +
> + for (i = 0; i < hdev->maxcollection; i++) {
> + struct hid_collection *col = &hdev->collection[i];
> + u16 page = (col->usage & HID_USAGE_PAGE) >> 16;
> + u16 code = col->usage & HID_USAGE;
> +
> + hid_dbg(hdev,
> + "lamparray: collection[%u]: type=%u level=%u usage=0x%08x page=0x%04x code=0x%04x\n",
> + i, col->type, col->level, col->usage, page, code);
> +
> + if (col->type == HID_COLLECTION_APPLICATION &&
> + page == HID_LIGHTING_ILLUMINATION_USAGE_PAGE &&
> + code == HID_APPLICATION_COLLECTION_USAGE_TYPE) {
> + return true;
> + }
> + }
> + return false;
> +}
> +EXPORT_SYMBOL_GPL(lamparray_is_supported_device);
> +
> +struct lamparray *
> +lamparray_register(struct hid_device *hdev,
> + const struct lamparray_init_state *led_init_state)
> +{
> + int ret;
> + struct lamparray *la;
> + struct lamparray_device *ldev;
> +
> + if (!hdev)
> + return ERR_PTR(-ENODEV);
> +
> + la = kzalloc_obj(*la, GFP_KERNEL);
> + if (!la)
> + return ERR_PTR(-ENOMEM);
> +
> + ldev = &la->ldev;
> +
> + mutex_init(&ldev->dev_lock);
> + mutex_init(&ldev->sysfs_lock);
> + ldev->hdev = hdev;
> + ldev->use_leds_uapi = true;
> + ldev->led_registered = false;
> +
> + /* Make sure the driver lock gets released for probing. */
> + hid_device_io_start(hdev);
> +
> + ret = lamparray_parse_update_report(ldev);
> + if (ret) {
> + hid_err(hdev, "No LampArray update report found: %d\n", ret);
> + goto err_free;
> + }
> +
> + ret = lamparray_read_attributes_report(ldev);
> + if (ret) {
> + hid_err(hdev,
> + "Could not determine LampCount: %d\n",
> + ret);
> + goto err_free;
> + }
> +
> + ret = lamparray_get_lamp_attributes(ldev);
> + if (ret) {
> + hid_err(hdev,
> + "Faulty device. Could not query lamp attributes.\n");
> + goto err_free;
> + }
> +
> + /* Use black (all zeros) as default. */
> + if (led_init_state) {
> + ldev->last_r = min(led_init_state->r, ldev->max_r);
> + ldev->last_g = min(led_init_state->g, ldev->max_g);
> + ldev->last_b = min(led_init_state->b, ldev->max_b);
> + ldev->last_brightness = min(led_init_state->brightness,
> + ldev->max_brightness);
> + }
> +
> + ret = lamparray_register_led(ldev);
> + if (ret) {
> + hid_warn(hdev, "Failed to register LED UAPI: %d\n", ret);
> + ldev->use_leds_uapi = false;
> + }
> +
> + ret = xa_err(xa_store(&lamparray_by_hdev, (unsigned long)hdev, ldev,
> + GFP_KERNEL));
> + if (ret)
> + goto err_unregister_led;
> +
> + ret = lamparray_register_sysfs(ldev);
> + if (ret)
> + goto err_xa_erase;
> +
> + ret = lamparray_hw_set_autonomous(ldev, false);
> + if (ret) {
> + hid_err(hdev, "Could not disable autonomous mode: %d", ret);
> + goto err_remove_sysfs;
> + }
> +
> + hid_info(hdev, "LampArray device registered\n");
> +
> + ret = lamparray_restore_state(ldev);
> + if (ret) {
> + hid_err(hdev, "Failed to set default state: %d", ret);
> + goto err_remove_sysfs;
> + }
> +
> + hid_device_io_stop(hdev);
> + return la;
> +
> +err_remove_sysfs:
> + lamparray_remove_sysfs(ldev);
> +err_xa_erase:
> + xa_erase(&lamparray_by_hdev, (unsigned long)hdev);
> +err_unregister_led:
> + lamparray_unregister_led(ldev);
> +err_free:
> + hid_device_io_stop(hdev);
> + mutex_destroy(&ldev->dev_lock);
> + mutex_destroy(&ldev->sysfs_lock);
> + kfree(la);
> + return ERR_PTR(ret);
> +}
> +EXPORT_SYMBOL_GPL(lamparray_register);
> +
> +void lamparray_unregister(struct lamparray *la)
> +{
> + struct lamparray_device *ldev;
> +
> + if (!la)
> + return;
> +
> + ldev = &la->ldev;
> +
> + lamparray_hw_set_autonomous(ldev, true);
> +
> + lamparray_remove_sysfs(ldev);
> + xa_erase(&lamparray_by_hdev, (unsigned long)ldev->hdev);
> + lamparray_unregister_led(ldev);
> +
> + mutex_destroy(&ldev->dev_lock);
> + mutex_destroy(&ldev->sysfs_lock);
> + kfree(la);
> +}
> +EXPORT_SYMBOL_GPL(lamparray_unregister);
> +
> +MODULE_LICENSE("GPL");
> +MODULE_AUTHOR("Tim Guttzeit <tgu@tuxedocomputers.com>");
> +MODULE_AUTHOR("Aaron Erhardt <aer@tuxedocomputers.com>");
> +MODULE_DESCRIPTION("HID LampArray helper module (single-zone RGB)");
> diff --git a/include/linux/hid-lamparray.h b/include/linux/hid-lamparray.h
> new file mode 100644
> index 000000000000..a77869728d12
> --- /dev/null
> +++ b/include/linux/hid-lamparray.h
> @@ -0,0 +1,88 @@
> +/* SPDX-License-Identifier: GPL-2.0-or-later */
> +
> +#ifndef _HID_LAMPARRAY_H
> +#define _HID_LAMPARRAY_H
> +
> +#include <linux/hid.h>
> +#include <linux/err.h>
> +#include <linux/types.h>
> +
> +struct lamparray;
> +
> +/*
> + * Optional initial LED state for lamparray_register().
> + * Used to define the initial state of a LampArray's LEDs.
> + */
> +struct lamparray_init_state {
> + u8 r;
> + u8 g;
> + u8 b;
> + u8 brightness;
> +};
> +
> +#if IS_ENABLED(CONFIG_HID_LAMPARRAY)
> +
> +/**
> + * lamparray_is_supported_device() - check whether a HID device supports LampArray
> + * @hdev: HID device to inspect
> + *
> + * Check whether the given HID device exposes a Lighting/LampArray application
> + * collection as defined by the HID Lighting specification.
> + *
> + * This helper can be used by HID drivers to determine whether LampArray
> + * functionality should be enabled for a device.
> + *
> + * Return: %true if LampArray support is detected, %false otherwise.
> + */
> +bool lamparray_is_supported_device(struct hid_device *hdev);
> +
> +/**
> + * lamparray_register() - initialize LampArray support for a HID device
> + * @hdev: HID device
> + * @led_init_state: Optional LED state at init specification
> + *
> + * Allocate and initialize internal LampArray state for the given HID device.
> + * The function parses required HID reports and fields and registers the
> + * associated miscdevice and sysfs attributes.
> + *
> + * Registers a multicolor LED class device to expose the LampArray functionality
> + * via the LED subsystem. If specified, the desired initial LED state is
> + * applied. If led_init_state is NULL, a default state is applied (all LEDs off).
> + *
> + * Return: pointer to a LampArray handle on success, or ERR_PTR() on failure.
> + */
> +struct lamparray *lamparray_register(struct hid_device *hdev,
> + const struct lamparray_init_state *led_init_state);
> +
> +/**
> + * lamparray_unregister() - tear down LampArray support
> + * @la: LampArray handle returned by lamparray_register()
> + *
> + * Remove all resources associated with a LampArray instance.
> + *
> + * This unregisters the LED class device (if present), removes the miscdevice
> + * and sysfs interfaces and frees all internal state associated with @la.
> + */
> +void lamparray_unregister(struct lamparray *la);
> +
> +#else /* !CONFIG_HID_LAMPARRAY */
> +
> +static inline bool lamparray_is_supported_device(struct hid_device *hdev)
> +{
> + return false;
> +}
> +
> +static inline struct lamparray *
> +lamparray_register(struct hid_device *hdev,
> + const struct lamparray_init_state *led_init_state)
> +{
> + return ERR_PTR(-EOPNOTSUPP);
> +}
> +
> +static inline void lamparray_unregister(struct lamparray *la)
> +{
> +}
> +
> +#endif /* CONFIG_HID_LAMPARRAY */
> +
> +#endif /* _HID_LAMPARRAY_H */
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-09-04 21:30 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-03 7:35 [PATCH v5 0/2] HID: generic: add LampArray support via hid-lamparray helper Aaron Erhardt
2026-09-03 7:35 ` [PATCH v5 1/2] HID: lamparray: add new LampArray helper module Aaron Erhardt
2026-09-03 7:48 ` sashiko-bot
2026-09-03 20:07 ` Werner Sembach
2026-09-04 8:51 ` Aaron Erhardt
2026-09-04 21:30 ` Armin Wolf
2026-09-03 7:35 ` [PATCH v5 2/2] HID: generic: add LampArray support via hid-lamparray helper Aaron Erhardt
2026-09-03 7:46 ` sashiko-bot
2026-09-04 20:49 ` [PATCH v5 0/2] " Armin Wolf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox