From: Antheas Kapenekakis <lkml@antheas.dev>
To: dri-devel@lists.freedesktop.org
Cc: linux-kernel@vger.kernel.org,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
philm@manjaro.org, Antheas Kapenekakis <lkml@antheas.dev>
Subject: [PATCH v2 06/14] drm: panel-orientation-quirks: Add OneXPlayer F1 variants
Date: Mon, 16 Feb 2026 21:45:39 +0100 [thread overview]
Message-ID: <20260216204547.293291-7-lkml@antheas.dev> (raw)
In-Reply-To: <20260216204547.293291-1-lkml@antheas.dev>
The OneXPlayer F1Pro has a 144hz 1920x1080 portrait OLED panel.
Add a quirk to correct the panel portrait orientation. In addition,
it comes with a red limited edition variant in the Chinese market,
so add that as well. Then, add the 8840U non-pro variant as well.
Reviewed-by: Philip Müller <philm@manjaro.org>
Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
---
drivers/gpu/drm/drm_panel_orientation_quirks.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c
index 1ee66e4db0e9..af45d79622b5 100644
--- a/drivers/gpu/drm/drm_panel_orientation_quirks.c
+++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c
@@ -540,6 +540,24 @@ static const struct dmi_system_id orientation_data[] = {
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ONEXPLAYER X1Pro EVA-02"),
},
.driver_data = (void *)&lcd1600x2560_leftside_up,
+ }, { /* OneXPlayer OneXFly F1 Pro (OLED) LE Red variant */
+ .matches = {
+ DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ONE-NETBOOK"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ONEXPLAYER F1 EVA-02"),
+ },
+ .driver_data = (void *)&lcd1080x1920_leftside_up,
+ }, { /* OneXPlayer OneXFly F1 Pro (OLED) Hawk Point */
+ .matches = {
+ DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ONE-NETBOOK"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ONEXPLAYER F1 OLED"),
+ },
+ .driver_data = (void *)&lcd1080x1920_leftside_up,
+ }, { /* OneXPlayer OneXFly F1 Pro (OLED) Strix Point */
+ .matches = {
+ DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ONE-NETBOOK"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ONEXPLAYER F1Pro"),
+ },
+ .driver_data = (void *)&lcd1080x1920_leftside_up,
}, { /* OrangePi Neo */
.matches = {
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "OrangePi"),
--
2.52.0
next prev parent reply other threads:[~2026-02-16 20:55 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-16 20:45 [PATCH v2 00/14] drm: panel-orientation-quirks: Add various handheld quirks Antheas Kapenekakis
2026-02-16 20:45 ` [PATCH v2 01/14] drm: panel-orientation-quirks: Add AOKZOE A1 Pro Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 02/14] drm: panel-orientation-quirks: Add additional ID for Ayaneo 2021 Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 03/14] drm: panel-orientation-quirks: Add Ayaneo 3 Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 04/14] drm: panel-orientation-quirks: Add OneXPlayer X1 variants Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 05/14] drm: panel-orientation-quirks: Add OneXPlayer X1 Mini variants Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` Antheas Kapenekakis [this message]
2026-02-16 21:19 ` Claude review: drm: panel-orientation-quirks: Add OneXPlayer F1 variants Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 07/14] drm: panel-orientation-quirks: Add OneXPlayer G1 variants Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 08/14] drm: panel-orientation-quirks: Add GPD Win Max (2021) Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 09/14] drm: panel-orientation-quirks: Add GPD Pocket 4 Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 10/14] drm: panel-orientation-quirks: Add Zeenix Lite and Pro Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 11/14] drm: panel-orientation-quirks: add SuiPlay0X1 Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 12/14] drm: panel-orientation-quirks: Add OneXPlayer X1z Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 13/14] drm: panel-orientation-quirks: Add AOKZOE A2 Pro Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 20:45 ` [PATCH v2 14/14] drm: panel-orientation-quirks: Add OneXPlayer X1 Air Antheas Kapenekakis
2026-02-16 21:19 ` Claude review: " Claude Code Review Bot
2026-02-16 21:19 ` Claude review: drm: panel-orientation-quirks: Add various handheld quirks Claude Code Review Bot
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=20260216204547.293291-7-lkml@antheas.dev \
--to=lkml@antheas.dev \
--cc=airlied@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=philm@manjaro.org \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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