summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Hagadorn <jeff@aletheia.io>2026-08-05 11:31:02 -0700
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>2026-08-18 17:30:46 +0300
commit1b3c0028dc060d760791638b770396c8998f7306 (patch)
tree220aa9306ffa0d4542c0ff7a4ddd1960a6f1cd30
parent8d840dad456f88374d8a3b03851452a280d6ee50 (diff)
downloadlinux-1b3c0028dc060d760791638b770396c8998f7306.tar.gz
linux-1b3c0028dc060d760791638b770396c8998f7306.zip
platform/x86: oxpec: Add support for OneXPlayer X2 Mini Pro
OneXPlayer X2 Mini Pro is a new Strix Halo handheld. It ships the same system board as the OneXPlayer APEX and uses the same registers as the OneXPlayer Fly devices. Add a quirk for it to the oxpec driver. Signed-off-by: Jeff Hagadorn <jeff@aletheia.io> Reviewed-by: Antheas Kapenekakis <lkml@antheas.dev> Link: https://patch.msgid.link/20260805183102.38408-1-jeff@aletheia.io Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
-rw-r--r--drivers/platform/x86/oxpec.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/platform/x86/oxpec.c b/drivers/platform/x86/oxpec.c
index 99c0dfcf393b..34bb17fca148 100644
--- a/drivers/platform/x86/oxpec.c
+++ b/drivers/platform/x86/oxpec.c
@@ -289,6 +289,13 @@ static const struct dmi_system_id dmi_table[] = {
},
.driver_data = (void *)oxp_x1,
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "ONEXPLAYER X2Mini PRO"),
+ },
+ .driver_data = (void *)oxp_fly,
+ },
{},
};