mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-28 00:19:36 +00:00

Adds lenovo-wmi-capdata01 driver which provides the LENOVO_CAPABILITY_DATA_01 WMI data block that comes on "Other Mode" enabled hardware. Provides an interface for querying if a given attribute is supported by the hardware, as well as its default_value, max_value, min_value, and step increment. Reviewed-by: Alok Tiwari <alok.a.tiwari@oracle.com> Reviewed-by: Armin Wolf <W_Armin@gmx.de> Signed-off-by: Derek J. Clark <derekjohn.clark@gmail.com> Link: https://lore.kernel.org/r/20250702033826.1057762-5-derekjohn.clark@gmail.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
26 lines
541 B
C
26 lines
541 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/* Copyright (C) 2025 Derek J. Clark <derekjohn.clark@gmail.com> */
|
|
|
|
#ifndef _LENOVO_WMI_CAPDATA01_H_
|
|
#define _LENOVO_WMI_CAPDATA01_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct device;
|
|
struct cd01_list;
|
|
|
|
struct capdata01 {
|
|
u32 id;
|
|
u32 supported;
|
|
u32 default_value;
|
|
u32 step;
|
|
u32 min_value;
|
|
u32 max_value;
|
|
};
|
|
|
|
int lwmi_cd01_get_data(struct cd01_list *list, u32 attribute_id, struct capdata01 *output);
|
|
int lwmi_cd01_match(struct device *dev, void *data);
|
|
|
|
#endif /* !_LENOVO_WMI_CAPDATA01_H_ */
|