From: Jonathan Steffan <jonathansteffan@gmail.com>
To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>
Cc: David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
Jonathan Steffan <jonathansteffan@gmail.com>
Subject: [PATCH] drm/edid: Add HTC Vive Cosmos to the non-desktop quirk list
Date: Sat, 8 Aug 2026 17:21:17 -0600 [thread overview]
Message-ID: <20260808232120.23817-1-jonathansteffan@gmail.com> (raw)
The HTC Vive Cosmos and Cosmos Elite head-mounted displays report an
EDID with manufacturer ID "HVR" and product code 0xaa03. Like the
original Vive (0xaa01) and the Vive Pro (0xaa02), they are VR headsets
whose panel must not be treated as a regular desktop output. Flag it
non-desktop so userspace leaves it alone and can acquire it via DRM
leasing / direct mode instead of extending the desktop onto it.
Signed-off-by: Jonathan Steffan <jonathansteffan@gmail.com>
---
drivers/gpu/drm/drm_edid.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index df3c25bac..437751ed3 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -245,9 +245,10 @@ static const struct edid_quirk {
EDID_QUIRK('V', 'L', 'V', 0x91be, BIT(EDID_QUIRK_NON_DESKTOP)),
EDID_QUIRK('V', 'L', 'V', 0x91bf, BIT(EDID_QUIRK_NON_DESKTOP)),
- /* HTC Vive and Vive Pro VR Headsets */
+ /* HTC Vive, Vive Pro and Vive Cosmos VR Headsets */
EDID_QUIRK('H', 'V', 'R', 0xaa01, BIT(EDID_QUIRK_NON_DESKTOP)),
EDID_QUIRK('H', 'V', 'R', 0xaa02, BIT(EDID_QUIRK_NON_DESKTOP)),
+ EDID_QUIRK('H', 'V', 'R', 0xaa03, BIT(EDID_QUIRK_NON_DESKTOP)),
/* Oculus Rift DK1, DK2, CV1 and Rift S VR Headsets */
EDID_QUIRK('O', 'V', 'R', 0x0001, BIT(EDID_QUIRK_NON_DESKTOP)),
--
2.55.0
next reply other threads:[~2026-08-08 23:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-08 23:21 Jonathan Steffan [this message]
2026-08-10 14:52 ` [PATCH] drm/edid: Add HTC Vive Cosmos to the non-desktop quirk list Mario Kleiner
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=20260808232120.23817-1-jonathansteffan@gmail.com \
--to=jonathansteffan@gmail.com \
--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=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 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.