* [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02
@ 2025-09-04 13:22 Antheas Kapenekakis
2025-09-04 13:22 ` [PATCH v1 2/2] platform/x86: oxpec: Add support for AOKZOE A1X Antheas Kapenekakis
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Antheas Kapenekakis @ 2025-09-04 13:22 UTC (permalink / raw)
To: platform-driver-x86
Cc: linux-kernel, Derek John Clark,
Joaquín Ignacio Aramendía, Hans de Goede,
Ilpo Järvinen, Eileen, Antheas Kapenekakis
It is a special edition of X1Pro with Intel and a different color.
Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
---
drivers/platform/x86/oxpec.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/platform/x86/oxpec.c b/drivers/platform/x86/oxpec.c
index eb076bb4099b..4f540a9932fe 100644
--- a/drivers/platform/x86/oxpec.c
+++ b/drivers/platform/x86/oxpec.c
@@ -306,6 +306,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 X1Pro EVA-02"),
+ },
+ .driver_data = (void *)oxp_x1,
+ },
{},
};
base-commit: 1b237f190eb3d36f52dffe07a40b5eb210280e00
--
2.51.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH v1 2/2] platform/x86: oxpec: Add support for AOKZOE A1X
2025-09-04 13:22 [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02 Antheas Kapenekakis
@ 2025-09-04 13:22 ` Antheas Kapenekakis
2025-09-09 18:14 ` [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02 Antheas Kapenekakis
2025-09-10 11:36 ` Ilpo Järvinen
2 siblings, 0 replies; 4+ messages in thread
From: Antheas Kapenekakis @ 2025-09-04 13:22 UTC (permalink / raw)
To: platform-driver-x86
Cc: linux-kernel, Derek John Clark,
Joaquín Ignacio Aramendía, Hans de Goede,
Ilpo Järvinen, Eileen, Antheas Kapenekakis
Very similar to OneXFly devices. Uses the same registers.
Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
---
drivers/platform/x86/oxpec.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/platform/x86/oxpec.c b/drivers/platform/x86/oxpec.c
index 4f540a9932fe..54377b282ff8 100644
--- a/drivers/platform/x86/oxpec.c
+++ b/drivers/platform/x86/oxpec.c
@@ -124,6 +124,13 @@ static const struct dmi_system_id dmi_table[] = {
},
.driver_data = (void *)aok_zoe_a1,
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "AOKZOE"),
+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "AOKZOE A1X"),
+ },
+ .driver_data = (void *)oxp_fly,
+ },
{
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "AYANEO"),
--
2.51.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02
2025-09-04 13:22 [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02 Antheas Kapenekakis
2025-09-04 13:22 ` [PATCH v1 2/2] platform/x86: oxpec: Add support for AOKZOE A1X Antheas Kapenekakis
@ 2025-09-09 18:14 ` Antheas Kapenekakis
2025-09-10 11:36 ` Ilpo Järvinen
2 siblings, 0 replies; 4+ messages in thread
From: Antheas Kapenekakis @ 2025-09-09 18:14 UTC (permalink / raw)
To: platform-driver-x86
Cc: linux-kernel, Derek John Clark,
Joaquín Ignacio Aramendía, Hans de Goede,
Ilpo Järvinen, Eileen
On Thu, 4 Sept 2025 at 15:25, Antheas Kapenekakis <lkml@antheas.dev> wrote:
>
> It is a special edition of X1Pro with Intel and a different color.
/---------\
Small oversight here. I was told by Eileen this is an AMD unit, which
is true. I had recalled the user told me it was AMD. So these two
words should be removed. Functionality-wise the patch is ok.
Antheas
>
> Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
> ---
> drivers/platform/x86/oxpec.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/platform/x86/oxpec.c b/drivers/platform/x86/oxpec.c
> index eb076bb4099b..4f540a9932fe 100644
> --- a/drivers/platform/x86/oxpec.c
> +++ b/drivers/platform/x86/oxpec.c
> @@ -306,6 +306,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 X1Pro EVA-02"),
> + },
> + .driver_data = (void *)oxp_x1,
> + },
> {},
> };
>
>
> base-commit: 1b237f190eb3d36f52dffe07a40b5eb210280e00
> --
> 2.51.0
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02
2025-09-04 13:22 [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02 Antheas Kapenekakis
2025-09-04 13:22 ` [PATCH v1 2/2] platform/x86: oxpec: Add support for AOKZOE A1X Antheas Kapenekakis
2025-09-09 18:14 ` [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02 Antheas Kapenekakis
@ 2025-09-10 11:36 ` Ilpo Järvinen
2 siblings, 0 replies; 4+ messages in thread
From: Ilpo Järvinen @ 2025-09-10 11:36 UTC (permalink / raw)
To: platform-driver-x86, Antheas Kapenekakis
Cc: linux-kernel, Derek John Clark,
Joaquín Ignacio Aramendía, Eileen, Hans de Goede
On Thu, 04 Sep 2025 15:22:51 +0200, Antheas Kapenekakis wrote:
> It is a special edition of X1Pro with Intel and a different color.
>
>
Thank you for your contribution, it has been applied to my local
review-ilpo-fixes branch. Note it will show up in the public
platform-drivers-x86/review-ilpo-fixes branch only once I've pushed my
local branch there, which might take a while.
The list of commits applied:
[1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02
commit: fba9d5448bd45b0ff7199c47023e9308ea4f1730
[2/2] platform/x86: oxpec: Add support for AOKZOE A1X
commit: d857d09fb653f081f5730e5549fce397513b0ef9
--
i.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-09-10 11:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-04 13:22 [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02 Antheas Kapenekakis
2025-09-04 13:22 ` [PATCH v1 2/2] platform/x86: oxpec: Add support for AOKZOE A1X Antheas Kapenekakis
2025-09-09 18:14 ` [PATCH v1 1/2] platform/x86: oxpec: Add support for OneXPlayer X1Pro EVA-02 Antheas Kapenekakis
2025-09-10 11:36 ` Ilpo Järvinen
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.