hid-for-linus-2024120501

-----BEGIN PGP SIGNATURE-----
 
 iQJHBAABCAAxFiEEoEVH9lhNrxiMPSyI7MXwXhnZSjYFAmdRfk0THGJlbnRpc3NA
 a2VybmVsLm9yZwAKCRDsxfBeGdlKNs2rD/9j0VelBG1kCnNOPWYSgPY5loVs/KJQ
 DwqTD5fXClhOqq4veqO1GN/n9RHGvetSdUjO1zlzbGX/BbFvacbGrKFNyphO+ySx
 mdC0PzrKHE2+nznpRCIvIzxfngfKJTWyzYVm14N/TXktVIwPlIwwIbuZF9YGeI00
 Rk2kfdmBc6t5P3PPy+iVBbP2Jcc4oOO4gUgRa7+ch13bp5BHpgbhOBvSkHF+67SU
 V3OMjx+OoGWzOGDkL3JJXR4w33YgkCaI3iYjE4qdPrNhZWgIUZM0xMEjsEVHKNG3
 RH6Ck87TD2txh+maFRHXVE8SldZ25keEwT3lGgUPKZWLvQmVWcLoydx47u84pkex
 slR4YXYl7osrgguePmXHilQBi9ycuFfFf2BUZI5t3DXXwvq1l+KcmKdZfyhE7tgU
 KlyNrwQSAZrVLTZSOs+Cyxn4DMbLRXmRxipJgwARf6mQIuW9qfoCeT+2MIaYKjGG
 5cckcKMPParZgaoQ8nlhF6wP51rP4Ew1pYIW9W+olYoJWr1c6CouKYmFjV1XpRxP
 aKcoydt1aWy1OYLVxPmu+E/Hlqb8WYyNm+SROm/pP19lKUJViUMUz9Ksp+WXTMCs
 7mzgTeZ4ViVzI/OTAWvafTvIkress40WgZe59qwl9pRq/C6iKZneAVudrfbV4VMJ
 33hdt6a1eBtAfw==
 =9aQY
 -----END PGP SIGNATURE-----

Merge tag 'hid-for-linus-2024120501' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid

Pull HID fixes from Benjamin Tissoires:

 - regression fix in suspend/resume for i2c-hid (Kenny Levinsen)

 - fix wacom driver assuming a name can not be null (WangYuli)

 - a couple of constify changes/fixes (Thomas Weißschuh)

 - a couple of selftests/hid fixes (Maximilian Heyne & Benjamin
   Tissoires)

* tag 'hid-for-linus-2024120501' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid:
  selftests/hid: fix kfunc inclusions with newer bpftool
  HID: bpf: drop unneeded casts discarding const
  HID: bpf: constify hid_ops
  selftests: hid: fix typo and exit code
  HID: wacom: fix when get product name maybe null pointer
  HID: i2c-hid: Revert to using power commands to wake on resume
This commit is contained in:
Linus Torvalds 2024-12-05 10:06:47 -08:00
commit 2a770b49b1
7 changed files with 40 additions and 39 deletions

View File

@ -19,7 +19,7 @@
#include <linux/module.h> #include <linux/module.h>
#include "hid_bpf_dispatch.h" #include "hid_bpf_dispatch.h"
struct hid_ops *hid_ops; const struct hid_ops *hid_ops;
EXPORT_SYMBOL(hid_ops); EXPORT_SYMBOL(hid_ops);
u8 * u8 *
@ -352,7 +352,6 @@ __hid_bpf_hw_check_params(struct hid_bpf_ctx *ctx, __u8 *buf, size_t *buf__sz,
{ {
struct hid_report_enum *report_enum; struct hid_report_enum *report_enum;
struct hid_report *report; struct hid_report *report;
struct hid_device *hdev;
u32 report_len; u32 report_len;
/* check arguments */ /* check arguments */
@ -371,9 +370,7 @@ __hid_bpf_hw_check_params(struct hid_bpf_ctx *ctx, __u8 *buf, size_t *buf__sz,
if (*buf__sz < 1) if (*buf__sz < 1)
return -EINVAL; return -EINVAL;
hdev = (struct hid_device *)ctx->hid; /* discard const */ report_enum = ctx->hid->report_enum + rtype;
report_enum = hdev->report_enum + rtype;
report = hid_ops->hid_get_report(report_enum, buf); report = hid_ops->hid_get_report(report_enum, buf);
if (!report) if (!report)
return -EINVAL; return -EINVAL;
@ -402,7 +399,6 @@ hid_bpf_hw_request(struct hid_bpf_ctx *ctx, __u8 *buf, size_t buf__sz,
enum hid_report_type rtype, enum hid_class_request reqtype) enum hid_report_type rtype, enum hid_class_request reqtype)
{ {
struct hid_bpf_ctx_kern *ctx_kern; struct hid_bpf_ctx_kern *ctx_kern;
struct hid_device *hdev;
size_t size = buf__sz; size_t size = buf__sz;
u8 *dma_data; u8 *dma_data;
int ret; int ret;
@ -429,13 +425,11 @@ hid_bpf_hw_request(struct hid_bpf_ctx *ctx, __u8 *buf, size_t buf__sz,
return -EINVAL; return -EINVAL;
} }
hdev = (struct hid_device *)ctx->hid; /* discard const */
dma_data = kmemdup(buf, size, GFP_KERNEL); dma_data = kmemdup(buf, size, GFP_KERNEL);
if (!dma_data) if (!dma_data)
return -ENOMEM; return -ENOMEM;
ret = hid_ops->hid_hw_raw_request(hdev, ret = hid_ops->hid_hw_raw_request(ctx->hid,
dma_data[0], dma_data[0],
dma_data, dma_data,
size, size,
@ -464,7 +458,6 @@ __bpf_kfunc int
hid_bpf_hw_output_report(struct hid_bpf_ctx *ctx, __u8 *buf, size_t buf__sz) hid_bpf_hw_output_report(struct hid_bpf_ctx *ctx, __u8 *buf, size_t buf__sz)
{ {
struct hid_bpf_ctx_kern *ctx_kern; struct hid_bpf_ctx_kern *ctx_kern;
struct hid_device *hdev;
size_t size = buf__sz; size_t size = buf__sz;
u8 *dma_data; u8 *dma_data;
int ret; int ret;
@ -478,13 +471,11 @@ hid_bpf_hw_output_report(struct hid_bpf_ctx *ctx, __u8 *buf, size_t buf__sz)
if (ret) if (ret)
return ret; return ret;
hdev = (struct hid_device *)ctx->hid; /* discard const */
dma_data = kmemdup(buf, size, GFP_KERNEL); dma_data = kmemdup(buf, size, GFP_KERNEL);
if (!dma_data) if (!dma_data)
return -ENOMEM; return -ENOMEM;
ret = hid_ops->hid_hw_output_report(hdev, dma_data, size, (u64)(long)ctx, true); ret = hid_ops->hid_hw_output_report(ctx->hid, dma_data, size, (u64)(long)ctx, true);
kfree(dma_data); kfree(dma_data);
return ret; return ret;

View File

@ -3064,7 +3064,7 @@ int hid_check_keys_pressed(struct hid_device *hid)
EXPORT_SYMBOL_GPL(hid_check_keys_pressed); EXPORT_SYMBOL_GPL(hid_check_keys_pressed);
#ifdef CONFIG_HID_BPF #ifdef CONFIG_HID_BPF
static struct hid_ops __hid_ops = { static const struct hid_ops __hid_ops = {
.hid_get_report = hid_get_report, .hid_get_report = hid_get_report,
.hid_hw_raw_request = __hid_hw_raw_request, .hid_hw_raw_request = __hid_hw_raw_request,
.hid_hw_output_report = __hid_hw_output_report, .hid_hw_output_report = __hid_hw_output_report,

View File

@ -414,7 +414,19 @@ static int i2c_hid_set_power(struct i2c_hid *ihid, int power_state)
i2c_hid_dbg(ihid, "%s\n", __func__); i2c_hid_dbg(ihid, "%s\n", __func__);
/*
* Some STM-based devices need 400µs after a rising clock edge to wake
* from deep sleep, in which case the first request will fail due to
* the address not being acknowledged. Try after a short sleep to see
* if the device came alive on the bus. Certain Weida Tech devices also
* need this.
*/
ret = i2c_hid_set_power_command(ihid, power_state); ret = i2c_hid_set_power_command(ihid, power_state);
if (ret && power_state == I2C_HID_PWR_ON) {
usleep_range(400, 500);
ret = i2c_hid_set_power_command(ihid, I2C_HID_PWR_ON);
}
if (ret) if (ret)
dev_err(&ihid->client->dev, dev_err(&ihid->client->dev,
"failed to change power setting.\n"); "failed to change power setting.\n");
@ -976,14 +988,6 @@ static int i2c_hid_core_resume(struct i2c_hid *ihid)
enable_irq(client->irq); enable_irq(client->irq);
/* Make sure the device is awake on the bus */
ret = i2c_hid_probe_address(ihid);
if (ret < 0) {
dev_err(&client->dev, "nothing at address after resume: %d\n",
ret);
return -ENXIO;
}
/* On Goodix 27c6:0d42 wait extra time before device wakeup. /* On Goodix 27c6:0d42 wait extra time before device wakeup.
* It's not clear why but if we send wakeup too early, the device will * It's not clear why but if we send wakeup too early, the device will
* never trigger input interrupts. * never trigger input interrupts.

View File

@ -2241,7 +2241,8 @@ static void wacom_update_name(struct wacom *wacom, const char *suffix)
if (hid_is_usb(wacom->hdev)) { if (hid_is_usb(wacom->hdev)) {
struct usb_interface *intf = to_usb_interface(wacom->hdev->dev.parent); struct usb_interface *intf = to_usb_interface(wacom->hdev->dev.parent);
struct usb_device *dev = interface_to_usbdev(intf); struct usb_device *dev = interface_to_usbdev(intf);
product_name = dev->product; if (dev->product != NULL)
product_name = dev->product;
} }
if (wacom->hdev->bus == BUS_I2C) { if (wacom->hdev->bus == BUS_I2C) {

View File

@ -78,7 +78,7 @@ struct hid_ops {
const struct bus_type *bus_type; const struct bus_type *bus_type;
}; };
extern struct hid_ops *hid_ops; extern const struct hid_ops *hid_ops;
/** /**
* struct hid_bpf_ops - A BPF struct_ops of callbacks allowing to attach HID-BPF * struct hid_bpf_ops - A BPF struct_ops of callbacks allowing to attach HID-BPF

View File

@ -22,6 +22,9 @@
#define HID_REQ_SET_IDLE HID_REQ_SET_IDLE___not_used #define HID_REQ_SET_IDLE HID_REQ_SET_IDLE___not_used
#define HID_REQ_SET_PROTOCOL HID_REQ_SET_PROTOCOL___not_used #define HID_REQ_SET_PROTOCOL HID_REQ_SET_PROTOCOL___not_used
/* do not define kfunc through vmlinux.h as this messes up our custom hack */
#define BPF_NO_KFUNC_PROTOTYPES
#include "vmlinux.h" #include "vmlinux.h"
#undef hid_bpf_ctx #undef hid_bpf_ctx
@ -91,31 +94,31 @@ struct hid_bpf_ops {
/* following are kfuncs exported by HID for HID-BPF */ /* following are kfuncs exported by HID for HID-BPF */
extern __u8 *hid_bpf_get_data(struct hid_bpf_ctx *ctx, extern __u8 *hid_bpf_get_data(struct hid_bpf_ctx *ctx,
unsigned int offset, unsigned int offset,
const size_t __sz) __ksym; const size_t __sz) __weak __ksym;
extern struct hid_bpf_ctx *hid_bpf_allocate_context(unsigned int hid_id) __ksym; extern struct hid_bpf_ctx *hid_bpf_allocate_context(unsigned int hid_id) __weak __ksym;
extern void hid_bpf_release_context(struct hid_bpf_ctx *ctx) __ksym; extern void hid_bpf_release_context(struct hid_bpf_ctx *ctx) __weak __ksym;
extern int hid_bpf_hw_request(struct hid_bpf_ctx *ctx, extern int hid_bpf_hw_request(struct hid_bpf_ctx *ctx,
__u8 *data, __u8 *data,
size_t buf__sz, size_t buf__sz,
enum hid_report_type type, enum hid_report_type type,
enum hid_class_request reqtype) __ksym; enum hid_class_request reqtype) __weak __ksym;
extern int hid_bpf_hw_output_report(struct hid_bpf_ctx *ctx, extern int hid_bpf_hw_output_report(struct hid_bpf_ctx *ctx,
__u8 *buf, size_t buf__sz) __ksym; __u8 *buf, size_t buf__sz) __weak __ksym;
extern int hid_bpf_input_report(struct hid_bpf_ctx *ctx, extern int hid_bpf_input_report(struct hid_bpf_ctx *ctx,
enum hid_report_type type, enum hid_report_type type,
__u8 *data, __u8 *data,
size_t buf__sz) __ksym; size_t buf__sz) __weak __ksym;
extern int hid_bpf_try_input_report(struct hid_bpf_ctx *ctx, extern int hid_bpf_try_input_report(struct hid_bpf_ctx *ctx,
enum hid_report_type type, enum hid_report_type type,
__u8 *data, __u8 *data,
size_t buf__sz) __ksym; size_t buf__sz) __weak __ksym;
/* bpf_wq implementation */ /* bpf_wq implementation */
extern int bpf_wq_init(struct bpf_wq *wq, void *p__map, unsigned int flags) __weak __ksym; extern int bpf_wq_init(struct bpf_wq *wq, void *p__map, unsigned int flags) __weak __ksym;
extern int bpf_wq_start(struct bpf_wq *wq, unsigned int flags) __weak __ksym; extern int bpf_wq_start(struct bpf_wq *wq, unsigned int flags) __weak __ksym;
extern int bpf_wq_set_callback_impl(struct bpf_wq *wq, extern int bpf_wq_set_callback_impl(struct bpf_wq *wq,
int (callback_fn)(void *map, int *key, void *wq), int (callback_fn)(void *map, int *key, void *wq),
unsigned int flags__k, void *aux__ign) __ksym; unsigned int flags__k, void *aux__ign) __weak __ksym;
#define bpf_wq_set_callback(timer, cb, flags) \ #define bpf_wq_set_callback(timer, cb, flags) \
bpf_wq_set_callback_impl(timer, cb, flags, NULL) bpf_wq_set_callback_impl(timer, cb, flags, NULL)

View File

@ -2,24 +2,26 @@
# SPDX-License-Identifier: GPL-2.0 # SPDX-License-Identifier: GPL-2.0
# Runs tests for the HID subsystem # Runs tests for the HID subsystem
KSELFTEST_SKIP_TEST=4
if ! command -v python3 > /dev/null 2>&1; then if ! command -v python3 > /dev/null 2>&1; then
echo "hid-tools: [SKIP] python3 not installed" echo "hid-tools: [SKIP] python3 not installed"
exit 77 exit $KSELFTEST_SKIP_TEST
fi fi
if ! python3 -c "import pytest" > /dev/null 2>&1; then if ! python3 -c "import pytest" > /dev/null 2>&1; then
echo "hid: [SKIP/ pytest module not installed" echo "hid: [SKIP] pytest module not installed"
exit 77 exit $KSELFTEST_SKIP_TEST
fi fi
if ! python3 -c "import pytest_tap" > /dev/null 2>&1; then if ! python3 -c "import pytest_tap" > /dev/null 2>&1; then
echo "hid: [SKIP/ pytest_tap module not installed" echo "hid: [SKIP] pytest_tap module not installed"
exit 77 exit $KSELFTEST_SKIP_TEST
fi fi
if ! python3 -c "import hidtools" > /dev/null 2>&1; then if ! python3 -c "import hidtools" > /dev/null 2>&1; then
echo "hid: [SKIP/ hid-tools module not installed" echo "hid: [SKIP] hid-tools module not installed"
exit 77 exit $KSELFTEST_SKIP_TEST
fi fi
TARGET=${TARGET:=.} TARGET=${TARGET:=.}