GNU Linux-libre 4.19.264-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         }, {    /* Anbernic Win600 */
99                 .matches = {
100                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Anbernic"),
101                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Win600"),
102                 },
103                 .driver_data = (void *)&lcd720x1280_rightside_up,
104         }, {    /* Asus T100HA */
105                 .matches = {
106                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
107                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100HAN"),
108                 },
109                 .driver_data = (void *)&asus_t100ha,
110         }, {    /* Asus T101HA */
111                 .matches = {
112                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
113                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T101HA"),
114                 },
115                 .driver_data = (void *)&lcd800x1280_rightside_up,
116         }, {    /* Asus T103HAF */
117                 .matches = {
118                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
119                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T103HAF"),
120                 },
121                 .driver_data = (void *)&lcd800x1280_rightside_up,
122         }, {    /* AYA NEO 2021 */
123                 .matches = {
124                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "AYADEVICE"),
125                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AYA NEO 2021"),
126                 },
127                 .driver_data = (void *)&lcd800x1280_rightside_up,
128         }, {    /* GPD MicroPC (generic strings, also match on bios date) */
129                 .matches = {
130                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"),
131                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
132                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
133                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
134                 },
135                 .driver_data = (void *)&gpd_micropc,
136         }, {    /* GPD MicroPC (later BIOS versions with proper DMI strings) */
137                 .matches = {
138                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "GPD"),
139                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "MicroPC"),
140                 },
141                 .driver_data = (void *)&lcd720x1280_rightside_up,
142         }, {    /* GPD Win Max */
143                 .matches = {
144                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "GPD"),
145                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "G1619-01"),
146                 },
147                 .driver_data = (void *)&lcd800x1280_rightside_up,
148         }, {    /*
149                  * GPD Pocket, note that the the DMI data is less generic then
150                  * it seems, devices with a board-vendor of "AMI Corporation"
151                  * are quite rare, as are devices which have both board- *and*
152                  * product-id set to "Default String"
153                  */
154                 .matches = {
155                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
156                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
157                   DMI_EXACT_MATCH(DMI_BOARD_SERIAL, "Default string"),
158                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
159                 },
160                 .driver_data = (void *)&gpd_pocket,
161         }, {    /* GPD Pocket 2 (generic strings, also match on bios date) */
162                 .matches = {
163                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"),
164                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
165                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
166                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
167                 },
168                 .driver_data = (void *)&gpd_pocket2,
169         }, {    /* GPD Win (same note on DMI match as GPD Pocket) */
170                 .matches = {
171                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
172                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"),
173                   DMI_EXACT_MATCH(DMI_BOARD_SERIAL, "Default string"),
174                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"),
175                 },
176                 .driver_data = (void *)&gpd_win,
177         }, {    /* I.T.Works TW891 */
178                 .matches = {
179                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),
180                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TW891"),
181                   DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "To be filled by O.E.M."),
182                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "TW891"),
183                 },
184                 .driver_data = (void *)&itworks_tw891,
185         }, {    /* KD Kurio Smart C15200 2-in-1 */
186                 .matches = {
187                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "KD Interactive"),
188                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Kurio Smart"),
189                   DMI_EXACT_MATCH(DMI_BOARD_NAME, "KDM960BCP"),
190                 },
191                 .driver_data = (void *)&lcd800x1280_rightside_up,
192         }, {    /*
193                  * Lenovo Ideapad Miix 310 laptop, only some production batches
194                  * have a portrait screen, the resolution checks makes the quirk
195                  * apply only to those batches.
196                  */
197                 .matches = {
198                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
199                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "80SG"),
200                   DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "MIIX 310-10ICR"),
201                 },
202                 .driver_data = (void *)&lcd800x1280_rightside_up,
203         }, {    /* Lenovo Ideapad Miix 320 */
204                 .matches = {
205                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
206                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "80XF"),
207                   DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
208                 },
209                 .driver_data = (void *)&lcd800x1280_rightside_up,
210         }, {    /* VIOS LTH17 */
211                 .matches = {
212                   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "VIOS"),
213                   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LTH17"),
214                 },
215                 .driver_data = (void *)&lcd800x1280_rightside_up,
216         },
217         {}
218 };
219
220 /**
221  * drm_get_panel_orientation_quirk - Check for panel orientation quirks
222  * @width: width in pixels of the panel
223  * @height: height in pixels of the panel
224  *
225  * This function checks for platform specific (e.g. DMI based) quirks
226  * providing info on panel_orientation for systems where this cannot be
227  * probed from the hard-/firm-ware. To avoid false-positive this function
228  * takes the panel resolution as argument and checks that against the
229  * resolution expected by the quirk-table entry.
230  *
231  * Note this function is also used outside of the drm-subsys, by for example
232  * the efifb code. Because of this this function gets compiled into its own
233  * kernel-module when built as a module.
234  *
235  * Returns:
236  * A DRM_MODE_PANEL_ORIENTATION_* value if there is a quirk for this system,
237  * or DRM_MODE_PANEL_ORIENTATION_UNKNOWN if there is no quirk.
238  */
239 int drm_get_panel_orientation_quirk(int width, int height)
240 {
241         const struct dmi_system_id *match;
242         const struct drm_dmi_panel_orientation_data *data;
243         const char *bios_date;
244         int i;
245
246         for (match = dmi_first_match(orientation_data);
247              match;
248              match = dmi_first_match(match + 1)) {
249                 data = match->driver_data;
250
251                 if (data->width != width ||
252                     data->height != height)
253                         continue;
254
255                 if (!data->bios_dates)
256                         return data->orientation;
257
258                 bios_date = dmi_get_system_info(DMI_BIOS_DATE);
259                 if (!bios_date)
260                         continue;
261
262                 i = match_string(data->bios_dates, -1, bios_date);
263                 if (i >= 0)
264                         return data->orientation;
265         }
266
267         return DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
268 }
269 EXPORT_SYMBOL(drm_get_panel_orientation_quirk);
270
271 #else
272
273 /* There are no quirks for non x86 devices yet */
274 int drm_get_panel_orientation_quirk(int width, int height)
275 {
276         return DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
277 }
278 EXPORT_SYMBOL(drm_get_panel_orientation_quirk);
279
280 #endif
281
282 MODULE_LICENSE("Dual MIT/GPL");