aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Zabel <philipp.zabel@gmail.com>2018-02-19 12:59:38 -0500
committerDave Airlie <airlied@redhat.com>2018-02-20 21:15:19 -0500
commitccffc9ebfa66e3f2cc5e17b2579202786050b32e (patch)
tree30abc83e4349d0e00cc338863a10a4f2006096cb
parent90eda8fc8016cfe39e2c73222e14665f0e5dabb1 (diff)
drm/edid: quirk Sony PlayStation VR headset as non-desktop
This uses the EDID info from the Sony PlayStation VR headset, when connected directly, to mark it as non-desktop. Since the connection box (product id b403) defaults to HDMI pass-through to the TV, it is not marked as non-desktop. Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--drivers/gpu/drm/drm_edid.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index bfd89b47b162..9796c29dc004 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -177,6 +177,9 @@ static const struct edid_quirk {
177 { "DEL", 0x7fce, EDID_QUIRK_NON_DESKTOP }, 177 { "DEL", 0x7fce, EDID_QUIRK_NON_DESKTOP },
178 { "SEC", 0x144a, EDID_QUIRK_NON_DESKTOP }, 178 { "SEC", 0x144a, EDID_QUIRK_NON_DESKTOP },
179 { "AUS", 0xc102, EDID_QUIRK_NON_DESKTOP }, 179 { "AUS", 0xc102, EDID_QUIRK_NON_DESKTOP },
180
181 /* Sony PlayStation VR Headset */
182 { "SNY", 0x0704, EDID_QUIRK_NON_DESKTOP },
180}; 183};
181 184
182/* 185/*