From patchwork Sat Oct 20 19:42:29 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Pavlik X-Patchwork-Id: 10650593 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 8BDAF90 for ; Sat, 20 Oct 2018 19:43:07 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 796B22869F for ; Sat, 20 Oct 2018 19:43:07 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6D117286A1; Sat, 20 Oct 2018 19:43:07 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id B27A82869F for ; Sat, 20 Oct 2018 19:43:06 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4FDF56E013; Sat, 20 Oct 2018 19:43:03 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by gabe.freedesktop.org (Postfix) with ESMTPS id 5E2726E013 for ; Sat, 20 Oct 2018 19:43:02 +0000 (UTC) Received: from toaster.cbg.collabora.co.uk (unknown [IPv6:2a00:5f00:102:0:fd81:7495:7fef:f5c9]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: rpavlik) by bhuna.collabora.co.uk (Postfix) with ESMTPSA id 2856E263992; Sat, 20 Oct 2018 20:43:01 +0100 (BST) From: Ryan Pavlik To: dri-devel@lists.freedesktop.org Subject: [PATCH] drm/edid: Quirk Sensics, 3 Glasses HMD as non-desktop. Date: Sat, 20 Oct 2018 20:42:29 +0100 Message-Id: <20181020194229.24861-1-ryan.pavlik@collabora.com> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ryan Pavlik Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP Two of the EDID vendor/product pairs are used across a variety of Sensics products, as well as the OSVR HDK and HDK 2. The third is for the "3 Glasses" brand "D3" HMD. Signed-off-by: Ryan Pavlik Reviewed-by: Philipp Zabel --- drivers/gpu/drm/drm_edid.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 3c9fc9964..68b7bc007 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c @@ -187,6 +187,15 @@ static const struct edid_quirk { /* Sony PlayStation VR Headset */ { "SNY", 0x0704, EDID_QUIRK_NON_DESKTOP }, + + /* Sensics VR Headsets */ + { "SEN", 0x1019, EDID_QUIRK_NON_DESKTOP }, + + /* Sensics, OSVR HDK and HDK2 VR Headsets */ + { "SVR", 0x1019, EDID_QUIRK_NON_DESKTOP }, + + /* 3Glasses D3 VR Headset */ + { "TSB", 0x8888, EDID_QUIRK_NON_DESKTOP }, }; /*