mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Derek J. Clark" <derekjohn.clark@gmail.com>
To: Andrei Aldea <andrei1998@gmail.com>,
	Jiri Kosina <jikos@kernel.org>,
	Benjamin Tissoires <bentiss@kernel.org>
Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 12/15] HID: hid-oxp: support three-page button maps on X2 controllers
Date: Thu, 10 Sep 2026 13:16:52 -0700	[thread overview]
Message-ID: <9b629895-d489-46de-a8fc-4ecfc08ae96b@gmail.com> (raw)
In-Reply-To: <20260910032115.28669-13-andrei1998@gmail.com>


On 9/9/26 20:21, Andrei Aldea wrote:
> The ONEXPLAYER 3 and X2 Mini Pro need mapping format 0x02 and a third
> page preserving the extra buttons' factory mappings. Use exact DMI
> matches and select configuration interface 2; the other HID interfaces
> remain available without duplicate configuration or LED registration.
>
> Initialize each page with the selected format. Page three is fixed because
> its factory encodings have no entries in the public mapping table.
> Legacy devices keep their two-page format 0x20 transaction.
>
> Fixes: e4c850a6e750 ("HID: hid-oxp: Add Button Mapping Interface")
> Assisted-by: LLM
> Reviewed-by: Derek J. Clark <derekjohn.clark@gmail.com>
> Signed-off-by: Andrei Aldea <andrei1998@gmail.com>
> ---
>   drivers/hid/hid-oxp.c | 94 ++++++++++++++++++++++++++++++++++++-------
>   1 file changed, 79 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/hid/hid-oxp.c b/drivers/hid/hid-oxp.c
> index 8c44f57..48fa916 100644
> --- a/drivers/hid/hid-oxp.c
> +++ b/drivers/hid/hid-oxp.c
> @@ -19,6 +19,7 @@
>   #include <linux/spinlock.h>
>   #include <linux/sysfs.h>
>   #include <linux/types.h>
> +#include <linux/usb.h>
>   #include <linux/workqueue.h>
>   
>   #include "hid-ids.h"
> @@ -35,6 +36,8 @@
>   
>   #define OXP_MAPPING_GAMEPAD	0x01
>   #define OXP_MAPPING_KEYBOARD	0x02
> +#define OXP_BMAP_FORMAT_DEFAULT	0x20
> +#define OXP_BMAP_FORMAT_X2	0x02
>   #define OXP_FILL_PAGE_SLOT(page, btn)            \
>   	{ .button_idx = (page)->btn.button_idx,  \
>   	  .mapping_idx = (page)->btn.mapping_idx }
> @@ -159,9 +162,9 @@ enum oxp_joybutton_index {
>   	BUTTON_DRIGHT,
>   	BUTTON_M1 =	0x22,
>   	BUTTON_M2,
> -	/* These are unused currently, reserved for future devices */
>   	BUTTON_M3,
>   	BUTTON_M4,
> +	/* These are unused currently, reserved for future devices */
>   	BUTTON_M5,
>   	BUTTON_M6,
>   };
> @@ -209,8 +212,10 @@ struct oxp_hid_cfg {
>   	struct oxp_bmap_page_1 *bmap_1;
>   	struct oxp_bmap_page_2 *bmap_2;
>   	bool gen2_work_initialized;
> +	bool bmap_page_3;
>   	u8 rumble_intensity;
>   	u8 gamepad_mode;
> +	u8 bmap_format;
>   
>   	/* RGB state */
>   	struct delayed_work oxp_rgb_queue;
> @@ -337,6 +342,9 @@ struct oxp_attr {
>   
>   struct quirk_entry {
>   	bool hybrid_mcu;
> +	bool bmap_page_3;
> +	u8 cfg_interface_num;
> +	u8 bmap_format;
>   };
>   
>   static u16 get_usage_page(struct hid_device *hdev)
> @@ -735,8 +743,17 @@ static void oxp_page_fill_data(char *buf, const struct oxp_button_idx *buttons,
>   
>   static int oxp_set_buttons(struct oxp_hid_cfg *cfg)
>   {
> -	u8 page_1[59] = { 0x02, 0x38, 0x20, 0x01, 0x01 };
> -	u8 page_2[59] = { 0x02, 0x38, 0x20, 0x02, 0x01 };
> +	u8 page_1[59] = { 0x02, 0x38, cfg->bmap_format, 0x01, 0x01 };
> +	u8 page_2[59] = { 0x02, 0x38, cfg->bmap_format, 0x02, 0x01 };
> +	u8 page_3[59] = {
> +		0x02, 0x38, cfg->bmap_format, 0x03, 0x01,
> +		/*
> +		 * M3/M4 have no mutable sysfs mapping slots. Keep their factory
> +		 * encodings, which are not entries in oxp_button_table.
> +		 */
> +		BUTTON_M3, OXP_MAPPING_KEYBOARD, 0x02, 0x05, 0x00, 0x00,
> +		BUTTON_M4, OXP_MAPPING_GAMEPAD, 0x21, 0x00, 0x00, 0x00,
> +	};
>   	u16 up = get_usage_page(cfg->hdev);
>   	int ret;
>   
> @@ -774,7 +791,11 @@ static int oxp_set_buttons(struct oxp_hid_cfg *cfg)
>   	if (ret)
>   		return ret;
>   
> -	return oxp_gen_2_property_out(cfg, OXP_FID_GEN2_KEY_STATE, page_2, ARRAY_SIZE(page_2));
> +	ret = oxp_gen_2_property_out(cfg, OXP_FID_GEN2_KEY_STATE, page_2, ARRAY_SIZE(page_2));
> +	if (ret || !cfg->bmap_page_3)
> +		return ret;
> +
> +	return oxp_gen_2_property_out(cfg, OXP_FID_GEN2_KEY_STATE, page_3, ARRAY_SIZE(page_3));
>   }
>   
>   static void oxp_reset_buttons(struct oxp_hid_cfg *cfg)
> @@ -1550,7 +1571,13 @@ static struct quirk_entry quirk_hybrid_mcu = {
>   	.hybrid_mcu = true,
>   };
>   
> -static const struct dmi_system_id oxp_hybrid_mcu_list[] = {
> +static struct quirk_entry quirk_x2_bmap = {
> +	.bmap_format = OXP_BMAP_FORMAT_X2,
> +	.bmap_page_3 = true,
> +	.cfg_interface_num = 2,
> +};
> +
> +static const struct dmi_system_id oxp_quirk_list[] = {
>   	{
>   		.ident = "OneXPlayer Apex",
>   		.matches = {
> @@ -1575,21 +1602,34 @@ static const struct dmi_system_id oxp_hybrid_mcu_list[] = {
>   		},
>   		.driver_data = &quirk_hybrid_mcu,
>   	},
> +	{
> +		.ident = "OneXPlayer 3",
> +		.matches = {
> +			DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ONE-NETBOOK"),
> +			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ONEXPLAYER 3"),
> +		},
> +		.driver_data = &quirk_x2_bmap,
> +	},
> +	{
> +		.ident = "OneXPlayer X2 Mini Pro",
> +		.matches = {
> +			DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ONE-NETBOOK"),
> +			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ONEXPLAYER X2Mini PRO"),
> +		},
> +		.driver_data = &quirk_x2_bmap,
> +	},
>   	{},
>   };
>   
> -static bool oxp_hybrid_mcu_device(void)
> +static const struct quirk_entry *oxp_get_quirks(void)
>   {
>   	const struct dmi_system_id *dmi_id;
> -	struct quirk_entry *quirks;
>   
> -	dmi_id = dmi_first_match(oxp_hybrid_mcu_list);
> +	dmi_id = dmi_first_match(oxp_quirk_list);
>   	if (!dmi_id)
> -		return false;
> +		return NULL;
>   
> -	quirks = dmi_id->driver_data;
> -
> -	return quirks->hybrid_mcu;
> +	return dmi_id->driver_data;
>   }
>   
>   static void oxp_drain_output(struct oxp_hid_cfg *cfg)
> @@ -1613,6 +1653,21 @@ static void oxp_quiesce_work(struct oxp_hid_cfg *cfg)
>   	oxp_drain_output(cfg);
>   }
>   
> +static bool oxp_is_cfg_interface(struct hid_device *hdev,
> +				 const struct quirk_entry *quirks)
> +{
> +	struct usb_interface *intf;
> +
> +	if (!quirks || !quirks->cfg_interface_num)
> +		return true;
> +	if (hdev->bus != BUS_USB)
> +		return false;
> +
> +	intf = to_usb_interface(hdev->dev.parent);
> +	return intf->cur_altsetting->desc.bInterfaceNumber ==
> +	       quirks->cfg_interface_num;
> +}
> +
>   static void oxp_cfg_release(void *data)
>   {
>   	struct oxp_hid_cfg *cfg = data;
> @@ -1620,7 +1675,8 @@ static void oxp_cfg_release(void *data)
>   	hid_set_drvdata(cfg->hdev, NULL);
>   }
>   
> -static int oxp_cfg_probe(struct hid_device *hdev, u16 up)
> +static int oxp_cfg_probe(struct hid_device *hdev, u16 up,
> +			 const struct quirk_entry *quirks)
>   {
>   	struct oxp_bmap_page_1 *bmap_1;
>   	struct oxp_bmap_page_2 *bmap_2;
> @@ -1642,7 +1698,7 @@ static int oxp_cfg_probe(struct hid_device *hdev, u16 up)
>   	if (ret)
>   		return ret;
>   
> -	if (up == GEN2_USAGE_PAGE && oxp_hybrid_mcu_device())
> +	if (up == GEN2_USAGE_PAGE && quirks && quirks->hybrid_mcu)
>   		goto skip_rgb;
>   
>   	cfg->cdev = oxp_cdev_rgb;
> @@ -1693,6 +1749,9 @@ skip_rgb:
>   
>   	cfg->bmap_1 = bmap_1;
>   	cfg->bmap_2 = bmap_2;
> +	cfg->bmap_format = quirks && quirks->bmap_format ?
> +			   quirks->bmap_format : OXP_BMAP_FORMAT_DEFAULT;
> +	cfg->bmap_page_3 = quirks && quirks->bmap_page_3;
>   	oxp_reset_buttons(cfg);
>   	INIT_DELAYED_WORK(&cfg->oxp_btn_queue, oxp_btn_queue_fn);
>   
> @@ -1720,6 +1779,7 @@ err_quiesce:
>   static int oxp_hid_probe(struct hid_device *hdev,
>   			 const struct hid_device_id *id)
>   {
> +	const struct quirk_entry *quirks;
>   	int ret;
>   	u16 up;
>   
> @@ -1738,12 +1798,16 @@ static int oxp_hid_probe(struct hid_device *hdev,
>   	}
>   
>   	up = get_usage_page(hdev);
> +	quirks = oxp_get_quirks();
>   	dev_dbg(&hdev->dev, "Got usage page %04x\n", up);
>   
>   	switch (up) {
>   	case GEN1_USAGE_PAGE:
>   	case GEN2_USAGE_PAGE:
> -		ret = oxp_cfg_probe(hdev, up);
> +		if (!oxp_is_cfg_interface(hdev, quirks))
> +			return 0;
> +
> +		ret = oxp_cfg_probe(hdev, up, quirks);
>   		if (ret) {
>   			hid_hw_close(hdev);
>   			hid_hw_stop(hdev);

I'm unable to test as these features are not present on my OneXPlayer F1 
Pro.
Reviewed-by: Derek J. Clark <derekjohn.clark@gmail.com>



  reply	other threads:[~2026-09-10 20:16 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-10  3:21 [PATCH 00/15] HID: hid-oxp: fix and extend X2-family controller support Andrei Aldea
2026-09-10  3:21 ` [PATCH 01/15] HID: hid-oxp: fix default M1 and M2 key mappings Andrei Aldea
2026-09-10 20:03   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 02/15] HID: hid-oxp: validate input report lengths before decoding Andrei Aldea
2026-09-10 20:04   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 03/15] HID: hid-oxp: retain fractional brightness when reading RGB status Andrei Aldea
2026-09-10 20:05   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 04/15] HID: hid-oxp: reject invalid Gen2 RGB status values Andrei Aldea
2026-09-10 20:06   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 05/15] HID: hid-oxp: fix multicolor LED intensity scaling Andrei Aldea
2026-09-10 20:07   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 06/15] HID: hid-oxp: serialize complete RGB updates Andrei Aldea
2026-09-10 20:07   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 07/15] HID: hid-oxp: select brightness policy for the new RGB effect Andrei Aldea
2026-09-10 20:11   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 08/15] HID: hid-oxp: stop configuration work during teardown Andrei Aldea
2026-09-10 20:12   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 09/15] HID: hid-oxp: keep configuration state per HID interface Andrei Aldea
2026-09-10 20:13   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 10/15] HID: hid-oxp: handle controller reinitialization across suspend Andrei Aldea
2026-09-10 20:14   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 11/15] HID: hid-oxp: group declarations and protocol definitions Andrei Aldea
2026-09-10 20:15   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 12/15] HID: hid-oxp: support three-page button maps on X2 controllers Andrei Aldea
2026-09-10 20:16   ` Derek J. Clark [this message]
2026-09-10  3:21 ` [PATCH 13/15] HID: hid-oxp: represent RGB LEDs with a common array Andrei Aldea
2026-09-10 20:17   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 14/15] HID: hid-oxp: add Gen3 joystick ring RGB support Andrei Aldea
2026-09-10 20:19   ` Derek J. Clark
2026-09-10  3:21 ` [PATCH 15/15] HID: hid-oxp: add X2 auxiliary RGB zones Andrei Aldea
2026-09-10 20:20   ` Derek J. Clark
2026-09-10 20:24 ` [PATCH 00/15] HID: hid-oxp: fix and extend X2-family controller support Derek J. Clark

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9b629895-d489-46de-a8fc-4ecfc08ae96b@gmail.com \
    --to=derekjohn.clark@gmail.com \
    --cc=andrei1998@gmail.com \
    --cc=bentiss@kernel.org \
    --cc=jikos@kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®