drm: panel-orientation-quirks: Add quirk for One Mix 2S
[ Upstream commit cbb7eb2dbd9472816e42a1b0fdb51af49abbf812 ] The One Mix 2S is a mini laptop with a 1200x1920 portrait screen mounted in a landscape oriented clamshell case. Because of the too generic DMI strings this entry is also doing bios-date matching. Signed-off-by: Kai Uwe Broulik <foss-linux@broulik.de> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Liviu Dudau <liviu.dudau@arm.com> Link: https://patchwork.freedesktop.org/patch/msgid/20231001114710.336172-1-foss-linux@broulik.de Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
cbf967554f
commit
f526fdc7a0
1 changed files with 16 additions and 0 deletions
|
@ -44,6 +44,14 @@ static const struct drm_dmi_panel_orientation_data gpd_micropc = {
|
||||||
.orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
|
.orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct drm_dmi_panel_orientation_data gpd_onemix2s = {
|
||||||
|
.width = 1200,
|
||||||
|
.height = 1920,
|
||||||
|
.bios_dates = (const char * const []){ "05/21/2018", "10/26/2018",
|
||||||
|
"03/04/2019", NULL },
|
||||||
|
.orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct drm_dmi_panel_orientation_data gpd_pocket = {
|
static const struct drm_dmi_panel_orientation_data gpd_pocket = {
|
||||||
.width = 1200,
|
.width = 1200,
|
||||||
.height = 1920,
|
.height = 1920,
|
||||||
|
@ -329,6 +337,14 @@ static const struct dmi_system_id orientation_data[] = {
|
||||||
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LTH17"),
|
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LTH17"),
|
||||||
},
|
},
|
||||||
.driver_data = (void *)&lcd800x1280_rightside_up,
|
.driver_data = (void *)&lcd800x1280_rightside_up,
|
||||||
|
}, { /* One Mix 2S (generic strings, also match on bios date) */
|
||||||
|
.matches = {
|
||||||
|
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"),
|
||||||
|
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
|
||||||
|
DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
|
||||||
|
DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
|
||||||
|
},
|
||||||
|
.driver_data = (void *)&gpd_onemix2s,
|
||||||
},
|
},
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue