1 /* SPDX-License-Identifier: MIT */
3 * drm_panel_orientation_quirks.c -- Quirks for non-normal panel orientation
5 * Copyright (C) 2017 Hans de Goede <hdegoede@redhat.com>
7 * Note the quirks in this file are shared with fbdev/efifb and as such
8 * must not depend on other drm code.
11 #include <linux/dmi.h>
12 #include <linux/module.h>
13 #include <drm/drm_connector.h>
14 #include <drm/drm_utils.h>
19 * Some x86 clamshell design devices use portrait tablet screens and a display
20 * engine which cannot rotate in hardware, so we need to rotate the fbcon to
21 * compensate. Unfortunately these (cheap) devices also typically have quite
22 * generic DMI data, so we match on a combination of DMI data, screen resolution
23 * and a list of known BIOS dates to avoid false positives.
26 struct drm_dmi_panel_orientation_data {
29 const char * const *bios_dates;
33 static const struct drm_dmi_panel_orientation_data asus_t100ha = {
36 .orientation = DRM_MODE_PANEL_ORIENTATION_LEFT_UP,
39 static const struct drm_dmi_panel_orientation_data gpd_micropc = {
42 .bios_dates = (const char * const []){ "04/26/2019",
44 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
47 static const struct drm_dmi_panel_orientation_data gpd_pocket = {
50 .bios_dates = (const char * const []){ "05/26/2017", "06/28/2017",
51 "07/05/2017", "08/07/2017", NULL },
52 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
55 static const struct drm_dmi_panel_orientation_data gpd_pocket2 = {
58 .bios_dates = (const char * const []){ "06/28/2018", "08/28/2018",
60 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
63 static const struct drm_dmi_panel_orientation_data gpd_win = {
66 .bios_dates = (const char * const []){
67 "10/25/2016", "11/18/2016", "12/23/2016", "12/26/2016",
68 "02/21/2017", "03/20/2017", "05/25/2017", NULL },
69 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
72 static const struct drm_dmi_panel_orientation_data gpd_win2 = {
75 .bios_dates = (const char * const []){
76 "12/07/2017", "05/24/2018", "06/29/2018", NULL },
77 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
80 static const struct drm_dmi_panel_orientation_data itworks_tw891 = {
83 .bios_dates = (const char * const []){ "10/16/2015", NULL },
84 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
87 static const struct drm_dmi_panel_orientation_data onegx1_pro = {
90 .bios_dates = (const char * const []){ "12/17/2020", NULL },
91 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
94 static const struct drm_dmi_panel_orientation_data lcd720x1280_rightside_up = {
97 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
100 static const struct drm_dmi_panel_orientation_data lcd800x1280_rightside_up = {
103 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
106 static const struct drm_dmi_panel_orientation_data lcd1200x1920_rightside_up = {
109 .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
112 static const struct dmi_system_id orientation_data[] = {
113 { /* Acer One 10 (S1003) */
115 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Acer"),
116 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "One S1003"),
118 .driver_data = (void *)&lcd800x1280_rightside_up,
119 }, { /* Asus T100HA */
121 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
122 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100HAN"),
124 .driver_data = (void *)&asus_t100ha,
125 }, { /* Asus T101HA */
127 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
128 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T101HA"),
130 .driver_data = (void *)&lcd800x1280_rightside_up,
131 }, { /* Asus T103HAF */
133 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
134 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T103HAF"),
136 .driver_data = (void *)&lcd800x1280_rightside_up,
137 }, { /* GPD MicroPC (generic strings, also match on bios date) */
139 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"),
140 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
141 DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
142 DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
144 .driver_data = (void *)&gpd_micropc,
145 }, { /* GPD MicroPC (later BIOS versions with proper DMI strings) */
147 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "GPD"),
148 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "MicroPC"),
150 .driver_data = (void *)&lcd720x1280_rightside_up,
152 * GPD Pocket, note that the the DMI data is less generic then
153 * it seems, devices with a board-vendor of "AMI Corporation"
154 * are quite rare, as are devices which have both board- *and*
155 * product-id set to "Default String"
158 DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
159 DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
160 DMI_EXACT_MATCH(DMI_BOARD_SERIAL, "Default string"),
161 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
163 .driver_data = (void *)&gpd_pocket,
164 }, { /* GPD Pocket 2 (generic strings, also match on bios date) */
166 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"),
167 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
168 DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
169 DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
171 .driver_data = (void *)&gpd_pocket2,
172 }, { /* GPD Win (same note on DMI match as GPD Pocket) */
174 DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
175 DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
176 DMI_EXACT_MATCH(DMI_BOARD_SERIAL, "Default string"),
177 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
179 .driver_data = (void *)&gpd_win,
180 }, { /* GPD Win 2 (too generic strings, also match on bios date) */
182 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"),
183 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
184 DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
185 DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
187 .driver_data = (void *)&gpd_win2,
188 }, { /* I.T.Works TW891 */
190 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),
191 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TW891"),
192 DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "To be filled by O.E.M."),
193 DMI_EXACT_MATCH(DMI_BOARD_NAME, "TW891"),
195 .driver_data = (void *)&itworks_tw891,
197 * Lenovo Ideapad Miix 310 laptop, only some production batches
198 * have a portrait screen, the resolution checks makes the quirk
199 * apply only to those batches.
202 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
203 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "80SG"),
204 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "MIIX 310-10ICR"),
206 .driver_data = (void *)&lcd800x1280_rightside_up,
207 }, { /* Lenovo Ideapad Miix 320 */
209 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
210 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "80XF"),
211 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
213 .driver_data = (void *)&lcd800x1280_rightside_up,
214 }, { /* Lenovo Ideapad D330 */
216 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
217 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "81H3"),
218 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad D330-10IGM"),
220 .driver_data = (void *)&lcd1200x1920_rightside_up,
221 }, { /* OneGX1 Pro */
223 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "SYSTEM_MANUFACTURER"),
224 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "SYSTEM_PRODUCT_NAME"),
225 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Default string"),
227 .driver_data = (void *)&onegx1_pro,
228 }, { /* VIOS LTH17 */
230 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "VIOS"),
231 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LTH17"),
233 .driver_data = (void *)&lcd800x1280_rightside_up,
239 * drm_get_panel_orientation_quirk - Check for panel orientation quirks
240 * @width: width in pixels of the panel
241 * @height: height in pixels of the panel
243 * This function checks for platform specific (e.g. DMI based) quirks
244 * providing info on panel_orientation for systems where this cannot be
245 * probed from the hard-/firm-ware. To avoid false-positive this function
246 * takes the panel resolution as argument and checks that against the
247 * resolution expected by the quirk-table entry.
249 * Note this function is also used outside of the drm-subsys, by for example
250 * the efifb code. Because of this this function gets compiled into its own
251 * kernel-module when built as a module.
254 * A DRM_MODE_PANEL_ORIENTATION_* value if there is a quirk for this system,
255 * or DRM_MODE_PANEL_ORIENTATION_UNKNOWN if there is no quirk.
257 int drm_get_panel_orientation_quirk(int width, int height)
259 const struct dmi_system_id *match;
260 const struct drm_dmi_panel_orientation_data *data;
261 const char *bios_date;
264 for (match = dmi_first_match(orientation_data);
266 match = dmi_first_match(match + 1)) {
267 data = match->driver_data;
269 if (data->width != width ||
270 data->height != height)
273 if (!data->bios_dates)
274 return data->orientation;
276 bios_date = dmi_get_system_info(DMI_BIOS_DATE);
280 i = match_string(data->bios_dates, -1, bios_date);
282 return data->orientation;
285 return DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
287 EXPORT_SYMBOL(drm_get_panel_orientation_quirk);
291 /* There are no quirks for non x86 devices yet */
292 int drm_get_panel_orientation_quirk(int width, int height)
294 return DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
296 EXPORT_SYMBOL(drm_get_panel_orientation_quirk);
300 MODULE_LICENSE("Dual MIT/GPL");