Skip to content

Commit e2779ae

Browse files
Nephyringregkh
authored andcommitted
drm: panel-orientation-quirks: Add quirk for Valve Galileo
commit 26746ed upstream. Valve's Steam Deck Galileo revision has a 800x1280 OLED panel Cc: stable@vger.kernel.org # 6.1+ Signed-off-by: John Schoenick <johns@valvesoftware.com> Signed-off-by: Matthew Schwartz <mattschwartz@gwu.edu> Signed-off-by: Hamza Mahfooz <hamza.mahfooz@amd.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240628205822.348402-2-mattschwartz@gwu.edu Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 2c72cc1 commit e2779ae

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

drivers/gpu/drm/drm_panel_orientation_quirks.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,13 @@ static const struct dmi_system_id orientation_data[] = {
421421
DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "1"),
422422
},
423423
.driver_data = (void *)&lcd800x1280_rightside_up,
424+
}, { /* Valve Steam Deck */
425+
.matches = {
426+
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
427+
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Galileo"),
428+
DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "1"),
429+
},
430+
.driver_data = (void *)&lcd800x1280_rightside_up,
424431
}, { /* VIOS LTH17 */
425432
.matches = {
426433
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "VIOS"),

0 commit comments

Comments
 (0)