GNU Linux-libre 4.19.286-gnu1
[releases.git] / drivers / gpu / drm / drm_panel_orientation_quirks.c
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * drm_panel_orientation_quirks.c -- Quirks for non-normal panel orientation
4  *
5  * Copyright (C) 2017 Hans de Goede <hdegoede@redhat.com>
6  *
7  * Note the quirks in this file are shared with fbdev/efifb and as such
8  * must not depend on other drm code.
9  */
10
11 #include <linux/dmi.h>
12 #include <linux/module.h>
13 #include <drm/drm_connector.h>
14 #include <drm/drm_utils.h>
15
16 #ifdef CONFIG_DMI
17
18 /*
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.
24  */
25
26 struct drm_dmi_panel_orientation_data {
27         int width;
28         int height;
29         const char * const *bios_dates;
30         int orientation;
31 };
32
33 static const struct drm_dmi_panel_orientation_data asus_t100ha = {
34         .width = 800,
35         .height = 1280,
36         .orientation = DRM_MODE_PANEL_ORIENTATION_LEFT_UP,
37 };
38
39 static const struct drm_dmi_panel_orientation_data gpd_micropc = {
40         .width = 720,
41         .height = 1280,
42         .bios_dates = (const char * const []){ "04/26/2019",
43                 NULL },
44         .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
45 };
46
47 static const struct drm_dmi_panel_orientation_data gpd_pocket = {
48         .width = 1200,
49         .height = 1920,
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,
53 };
54
55 static const struct drm_dmi_panel_orientation_data gpd_pocket2 = {
56         .width = 1200,
57         .height = 1920,
58         .bios_dates = (const char * const []){ "06/28/2018", "08/28/2018",
59                 "12/07/2018", NULL },
60         .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
61 };
62
63 static const struct drm_dmi_panel_orientation_data gpd_win = {
64         .width = 720,
65         .height = 1280,
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,
70 };
71
72 static const struct drm_dmi_panel_orientation_data itworks_tw891 = {
73         .width = 800,
74         .height = 1280,
75         .bios_dates = (const char * const []){ "10/16/2015", NULL },
76         .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
77 };
78
79 static const struct drm_dmi_panel_orientation_data lcd720x1280_rightside_up = {
80         .width = 720,
81         .height = 1280,
82         .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
83 };
84
85 static const struct drm_dmi_panel_orientation_data lcd800x1280_rightside_up = {
86         .width = 800,
87         .height = 1280,
88         .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
89 };
90
91 static const struct dmi_system_id orientation_data[] = {
92         {       /* Acer One 10 (S1003) */
93                 .matches = {
94                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Acer"),
95                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "One S1003"),
96                 },
97                 .driver_data = (void *)&lcd800x1280_rightside_up,
98         }, {    /* Acer Switch V 10 (SW5-017) */
99                 .matches = {
100                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Acer"),
101                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "SW5-017"),
102                 },
103                 .driver_data = (void *)&lcd800x1280_rightside_up,
104         }, {    /* Anbernic Win600 */
105                 .matches = {
106                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Anbernic"),
107                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Win600"),
108                 },
109                 .driver_data = (void *)&lcd720x1280_rightside_up,
110         }, {    /* Asus T100HA */
111                 .matches = {
112                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
113                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100HAN"),
114                 },
115                 .driver_data = (void *)&asus_t100ha,
116         }, {    /* Asus T101HA */
117                 .matches = {
118                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
119                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T101HA"),
120                 },
121                 .driver_data = (void *)&lcd800x1280_rightside_up,
122         }, {    /* Asus T103HAF */
123                 .matches = {
124                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
125                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T103HAF"),
126                 },
127                 .driver_data = (void *)&lcd800x1280_rightside_up,
128         }, {    /* AYA NEO 2021 */
129                 .matches = {
130                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "AYADEVICE"),
131                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AYA NEO 2021"),
132                 },
133                 .driver_data = (void *)&lcd800x1280_rightside_up,
134         }, {    /* GPD MicroPC (generic strings, also match on bios date) */
135                 .matches = {
136                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"),
137                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
138                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
139                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
140                 },
141                 .driver_data = (void *)&gpd_micropc,
142         }, {    /* GPD MicroPC (later BIOS versions with proper DMI strings) */
143                 .matches = {
144                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "GPD"),
145                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "MicroPC"),
146                 },
147                 .driver_data = (void *)&lcd720x1280_rightside_up,
148         }, {    /* GPD Win Max */
149                 .matches = {
150                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "GPD"),
151                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "G1619-01"),
152                 },
153                 .driver_data = (void *)&lcd800x1280_rightside_up,
154         }, {    /*
155                  * GPD Pocket, note that the the DMI data is less generic then
156                  * it seems, devices with a board-vendor of "AMI Corporation"
157                  * are quite rare, as are devices which have both board- *and*
158                  * product-id set to "Default String"
159                  */
160                 .matches = {
161                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
162                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
163                   DMI_EXACT_MATCH(DMI_BOARD_SERIAL, "Default string"),
164                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
165                 },
166                 .driver_data = (void *)&gpd_pocket,
167         }, {    /* GPD Pocket 2 (generic strings, also match on bios date) */
168                 .matches = {
169                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"),
170                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
171                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
172                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
173                 },
174                 .driver_data = (void *)&gpd_pocket2,
175         }, {    /* GPD Win (same note on DMI match as GPD Pocket) */
176                 .matches = {
177                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
178                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
179                   DMI_EXACT_MATCH(DMI_BOARD_SERIAL, "Default string"),
180                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
181                 },
182                 .driver_data = (void *)&gpd_win,
183         }, {    /* I.T.Works TW891 */
184                 .matches = {
185                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),
186                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TW891"),
187                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "To be filled by O.E.M."),
188                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "TW891"),
189                 },
190                 .driver_data = (void *)&itworks_tw891,
191         }, {    /* KD Kurio Smart C15200 2-in-1 */
192                 .matches = {
193                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "KD Interactive"),
194                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Kurio Smart"),
195                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "KDM960BCP"),
196                 },
197                 .driver_data = (void *)&lcd800x1280_rightside_up,
198         }, {    /*
199                  * Lenovo Ideapad Miix 310 laptop, only some production batches
200                  * have a portrait screen, the resolution checks makes the quirk
201                  * apply only to those batches.
202                  */
203                 .matches = {
204                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
205                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "80SG"),
206                   DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "MIIX 310-10ICR"),
207                 },
208                 .driver_data = (void *)&lcd800x1280_rightside_up,
209         }, {    /* Lenovo Ideapad Miix 320 */
210                 .matches = {
211                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
212                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "80XF"),
213                   DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
214                 },
215                 .driver_data = (void *)&lcd800x1280_rightside_up,
216         }, {    /* VIOS LTH17 */
217                 .matches = {
218                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "VIOS"),
219                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LTH17"),
220                 },
221                 .driver_data = (void *)&lcd800x1280_rightside_up,
222         },
223         {}
224 };
225
226 /**
227  * drm_get_panel_orientation_quirk - Check for panel orientation quirks
228  * @width: width in pixels of the panel
229  * @height: height in pixels of the panel
230  *
231  * This function checks for platform specific (e.g. DMI based) quirks
232  * providing info on panel_orientation for systems where this cannot be
233  * probed from the hard-/firm-ware. To avoid false-positive this function
234  * takes the panel resolution as argument and checks that against the
235  * resolution expected by the quirk-table entry.
236  *
237  * Note this function is also used outside of the drm-subsys, by for example
238  * the efifb code. Because of this this function gets compiled into its own
239  * kernel-module when built as a module.
240  *
241  * Returns:
242  * A DRM_MODE_PANEL_ORIENTATION_* value if there is a quirk for this system,
243  * or DRM_MODE_PANEL_ORIENTATION_UNKNOWN if there is no quirk.
244  */
245 int drm_get_panel_orientation_quirk(int width, int height)
246 {
247         const struct dmi_system_id *match;
248         const struct drm_dmi_panel_orientation_data *data;
249         const char *bios_date;
250         int i;
251
252         for (match = dmi_first_match(orientation_data);
253              match;
254              match = dmi_first_match(match + 1)) {
255                 data = match->driver_data;
256
257                 if (data->width != width ||
258                     data->height != height)
259                         continue;
260
261                 if (!data->bios_dates)
262                         return data->orientation;
263
264                 bios_date = dmi_get_system_info(DMI_BIOS_DATE);
265                 if (!bios_date)
266                         continue;
267
268                 i = match_string(data->bios_dates, -1, bios_date);
269                 if (i >= 0)
270                         return data->orientation;
271         }
272
273         return DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
274 }
275 EXPORT_SYMBOL(drm_get_panel_orientation_quirk);
276
277 #else
278
279 /* There are no quirks for non x86 devices yet */
280 int drm_get_panel_orientation_quirk(int width, int height)
281 {
282         return DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
283 }
284 EXPORT_SYMBOL(drm_get_panel_orientation_quirk);
285
286 #endif
287
288 MODULE_LICENSE("Dual MIT/GPL");