blob: 8b559b82a15eb95c5f767c75900c03df4d5435b1 [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
2 * Copyright (c) 2006 Luc Verhaegen (quirks list)
3 * Copyright (c) 2007-2008 Intel Corporation
4 * Jesse Barnes <jesse.barnes@intel.com>
Adam Jackson61e57a82010-03-29 21:43:18 +00005 * Copyright 2010 Red Hat, Inc.
Dave Airlief453ba02008-11-07 14:05:41 -08006 *
7 * DDC probing routines (drm_ddc_read & drm_do_probe_ddc_edid) originally from
8 * FB layer.
9 * Copyright (C) 2006 Dennis Munsie <dmunsie@cecropia.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sub license,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice (including the
19 * next paragraph) shall be included in all copies or substantial portions
20 * of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 * DEALINGS IN THE SOFTWARE.
29 */
Jani Nikula9c79ede2019-05-06 12:52:48 +030030
Thierry Reding10a85122012-11-21 15:31:35 +010031#include <linux/hdmi.h>
Dave Airlief453ba02008-11-07 14:05:41 -080032#include <linux/i2c.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030033#include <linux/kernel.h>
Adam Jackson47819ba2012-05-30 16:42:39 -040034#include <linux/module.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030035#include <linux/slab.h>
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +010036#include <linux/vga_switcheroo.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030037
38#include <drm/drm_displayid.h>
39#include <drm/drm_drv.h>
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/drm_edid.h>
Laurent Pinchart93382032016-11-28 20:51:09 +020041#include <drm/drm_encoder.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030042#include <drm/drm_print.h>
Shashank Sharma62c58af2017-03-13 16:54:02 +053043#include <drm/drm_scdc_helper.h>
Dave Airlief453ba02008-11-07 14:05:41 -080044
Takashi Iwai969218f2017-01-17 17:43:29 +010045#include "drm_crtc_internal.h"
46
Adam Jackson13931572010-08-03 14:38:19 -040047#define version_greater(edid, maj, min) \
48 (((edid)->version > (maj)) || \
49 ((edid)->version == (maj) && (edid)->revision > (min)))
Dave Airlief453ba02008-11-07 14:05:41 -080050
Adam Jacksond1ff6402010-03-29 21:43:26 +000051#define EDID_EST_TIMINGS 16
52#define EDID_STD_TIMINGS 8
53#define EDID_DETAILED_TIMINGS 4
Dave Airlief453ba02008-11-07 14:05:41 -080054
55/*
56 * EDID blocks out in the wild have a variety of bugs, try to collect
57 * them here (note that userspace may work around broken monitors first,
58 * but fixes should make their way here so that the kernel "just works"
59 * on as many displays as possible).
60 */
61
62/* First detailed mode wrong, use largest 60Hz mode */
63#define EDID_QUIRK_PREFER_LARGE_60 (1 << 0)
64/* Reported 135MHz pixel clock is too high, needs adjustment */
65#define EDID_QUIRK_135_CLOCK_TOO_HIGH (1 << 1)
66/* Prefer the largest mode at 75 Hz */
67#define EDID_QUIRK_PREFER_LARGE_75 (1 << 2)
68/* Detail timing is in cm not mm */
69#define EDID_QUIRK_DETAILED_IN_CM (1 << 3)
70/* Detailed timing descriptors have bogus size values, so just take the
71 * maximum size and use that.
72 */
73#define EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE (1 << 4)
Dave Airlief453ba02008-11-07 14:05:41 -080074/* use +hsync +vsync for detailed mode */
75#define EDID_QUIRK_DETAILED_SYNC_PP (1 << 6)
Adam Jacksonbc42aab2012-05-23 16:26:54 -040076/* Force reduced-blanking timings for detailed modes */
77#define EDID_QUIRK_FORCE_REDUCED_BLANKING (1 << 7)
Rafał Miłecki49d45a312013-12-07 13:22:42 +010078/* Force 8bpc */
79#define EDID_QUIRK_FORCE_8BPC (1 << 8)
Mario Kleinerbc5b9642014-05-23 21:40:55 +020080/* Force 12bpc */
81#define EDID_QUIRK_FORCE_12BPC (1 << 9)
Mario Kleinere10aec62016-07-06 12:05:44 +020082/* Force 6bpc */
83#define EDID_QUIRK_FORCE_6BPC (1 << 10)
Mario Kleinere345da82017-04-21 17:05:08 +020084/* Force 10bpc */
85#define EDID_QUIRK_FORCE_10BPC (1 << 11)
Dave Airlie66660d42017-10-16 05:08:09 +010086/* Non desktop display (i.e. HMD) */
87#define EDID_QUIRK_NON_DESKTOP (1 << 12)
Alex Deucher3c537882010-02-05 04:21:19 -050088
Adam Jackson13931572010-08-03 14:38:19 -040089struct detailed_mode_closure {
90 struct drm_connector *connector;
91 struct edid *edid;
92 bool preferred;
93 u32 quirks;
94 int modes;
95};
Dave Airlief453ba02008-11-07 14:05:41 -080096
Zhao Yakui5c612592009-06-22 13:17:10 +080097#define LEVEL_DMT 0
98#define LEVEL_GTF 1
Adam Jackson7a374352010-03-29 21:43:30 +000099#define LEVEL_GTF2 2
100#define LEVEL_CVT 3
Zhao Yakui5c612592009-06-22 13:17:10 +0800101
Jani Nikula23c4cfb2016-12-28 13:06:26 +0200102static const struct edid_quirk {
Ian Pilcherc51a3fd62012-04-22 11:40:26 -0500103 char vendor[4];
Dave Airlief453ba02008-11-07 14:05:41 -0800104 int product_id;
105 u32 quirks;
106} edid_quirk_list[] = {
107 /* Acer AL1706 */
108 { "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
109 /* Acer F51 */
110 { "API", 0x7602, EDID_QUIRK_PREFER_LARGE_60 },
Dave Airlief453ba02008-11-07 14:05:41 -0800111
Mario Kleinere10aec62016-07-06 12:05:44 +0200112 /* AEO model 0 reports 8 bpc, but is a 6 bpc panel */
113 { "AEO", 0, EDID_QUIRK_FORCE_6BPC },
114
Kai-Heng Feng0711a432018-10-02 23:29:11 +0800115 /* BOE model on HP Pavilion 15-n233sl reports 8 bpc, but is a 6 bpc panel */
116 { "BOE", 0x78b, EDID_QUIRK_FORCE_6BPC },
117
Kai-Heng Feng06998a752018-02-18 16:53:59 +0800118 /* CPT panel of Asus UX303LA reports 8 bpc, but is a 6 bpc panel */
119 { "CPT", 0x17df, EDID_QUIRK_FORCE_6BPC },
120
Kai-Heng Feng25da7502018-08-23 05:53:32 +0000121 /* SDC panel of Lenovo B50-80 reports 8 bpc, but is a 6 bpc panel */
122 { "SDC", 0x3652, EDID_QUIRK_FORCE_6BPC },
123
Lee, Shawn C922dcef2018-10-28 22:49:33 -0700124 /* BOE model 0x0771 reports 8 bpc, but is a 6 bpc panel */
125 { "BOE", 0x0771, EDID_QUIRK_FORCE_6BPC },
126
Dave Airlief453ba02008-11-07 14:05:41 -0800127 /* Belinea 10 15 55 */
128 { "MAX", 1516, EDID_QUIRK_PREFER_LARGE_60 },
129 { "MAX", 0x77e, EDID_QUIRK_PREFER_LARGE_60 },
130
131 /* Envision Peripherals, Inc. EN-7100e */
132 { "EPI", 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH },
Adam Jacksonba1163d2010-04-06 16:11:00 +0000133 /* Envision EN2028 */
134 { "EPI", 8232, EDID_QUIRK_PREFER_LARGE_60 },
Dave Airlief453ba02008-11-07 14:05:41 -0800135
136 /* Funai Electronics PM36B */
137 { "FCM", 13600, EDID_QUIRK_PREFER_LARGE_75 |
138 EDID_QUIRK_DETAILED_IN_CM },
139
Mario Kleinere345da82017-04-21 17:05:08 +0200140 /* LGD panel of HP zBook 17 G2, eDP 10 bpc, but reports unknown bpc */
141 { "LGD", 764, EDID_QUIRK_FORCE_10BPC },
142
Dave Airlief453ba02008-11-07 14:05:41 -0800143 /* LG Philips LCD LP154W01-A5 */
144 { "LPL", 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
145 { "LPL", 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
146
Dave Airlief453ba02008-11-07 14:05:41 -0800147 /* Samsung SyncMaster 205BW. Note: irony */
148 { "SAM", 541, EDID_QUIRK_DETAILED_SYNC_PP },
149 /* Samsung SyncMaster 22[5-6]BW */
150 { "SAM", 596, EDID_QUIRK_PREFER_LARGE_60 },
151 { "SAM", 638, EDID_QUIRK_PREFER_LARGE_60 },
Adam Jacksonbc42aab2012-05-23 16:26:54 -0400152
Mario Kleinerbc5b9642014-05-23 21:40:55 +0200153 /* Sony PVM-2541A does up to 12 bpc, but only reports max 8 bpc */
154 { "SNY", 0x2541, EDID_QUIRK_FORCE_12BPC },
155
Adam Jacksonbc42aab2012-05-23 16:26:54 -0400156 /* ViewSonic VA2026w */
157 { "VSC", 5020, EDID_QUIRK_FORCE_REDUCED_BLANKING },
Alex Deucher118bdbd2013-08-12 11:04:29 -0400158
159 /* Medion MD 30217 PG */
160 { "MED", 0x7b8, EDID_QUIRK_PREFER_LARGE_75 },
Rafał Miłecki49d45a312013-12-07 13:22:42 +0100161
Kai-Heng Feng11bcf5f2019-04-02 11:30:37 +0800162 /* Lenovo G50 */
163 { "SDC", 18514, EDID_QUIRK_FORCE_6BPC },
164
Rafał Miłecki49d45a312013-12-07 13:22:42 +0100165 /* Panel in Samsung NP700G7A-S01PL notebook reports 6bpc */
166 { "SEC", 0xd033, EDID_QUIRK_FORCE_8BPC },
Tomeu Vizoso36fc5792017-02-20 16:25:45 +0100167
168 /* Rotel RSX-1058 forwards sink's EDID but only does HDMI 1.1*/
169 { "ETR", 13896, EDID_QUIRK_FORCE_8BPC },
Dave Airlieacb1d8e2017-10-16 05:26:19 +0100170
Andres Rodriguez30d62d42019-05-02 15:31:57 -0400171 /* Valve Index Headset */
172 { "VLV", 0x91a8, EDID_QUIRK_NON_DESKTOP },
173 { "VLV", 0x91b0, EDID_QUIRK_NON_DESKTOP },
174 { "VLV", 0x91b1, EDID_QUIRK_NON_DESKTOP },
175 { "VLV", 0x91b2, EDID_QUIRK_NON_DESKTOP },
176 { "VLV", 0x91b3, EDID_QUIRK_NON_DESKTOP },
177 { "VLV", 0x91b4, EDID_QUIRK_NON_DESKTOP },
178 { "VLV", 0x91b5, EDID_QUIRK_NON_DESKTOP },
179 { "VLV", 0x91b6, EDID_QUIRK_NON_DESKTOP },
180 { "VLV", 0x91b7, EDID_QUIRK_NON_DESKTOP },
181 { "VLV", 0x91b8, EDID_QUIRK_NON_DESKTOP },
182 { "VLV", 0x91b9, EDID_QUIRK_NON_DESKTOP },
183 { "VLV", 0x91ba, EDID_QUIRK_NON_DESKTOP },
184 { "VLV", 0x91bb, EDID_QUIRK_NON_DESKTOP },
185 { "VLV", 0x91bc, EDID_QUIRK_NON_DESKTOP },
186 { "VLV", 0x91bd, EDID_QUIRK_NON_DESKTOP },
187 { "VLV", 0x91be, EDID_QUIRK_NON_DESKTOP },
188 { "VLV", 0x91bf, EDID_QUIRK_NON_DESKTOP },
189
Lubosz Sarnecki69313172018-05-29 13:52:15 +0200190 /* HTC Vive and Vive Pro VR Headsets */
Dave Airlieacb1d8e2017-10-16 05:26:19 +0100191 { "HVR", 0xaa01, EDID_QUIRK_NON_DESKTOP },
Lubosz Sarnecki69313172018-05-29 13:52:15 +0200192 { "HVR", 0xaa02, EDID_QUIRK_NON_DESKTOP },
Philipp Zabelb3b12ea2018-02-19 18:59:36 +0100193
Jan Schmidt5a3f6102020-05-08 04:06:28 +1000194 /* Oculus Rift DK1, DK2, CV1 and Rift S VR Headsets */
Philipp Zabelb3b12ea2018-02-19 18:59:36 +0100195 { "OVR", 0x0001, EDID_QUIRK_NON_DESKTOP },
196 { "OVR", 0x0003, EDID_QUIRK_NON_DESKTOP },
197 { "OVR", 0x0004, EDID_QUIRK_NON_DESKTOP },
Jan Schmidt5a3f6102020-05-08 04:06:28 +1000198 { "OVR", 0x0012, EDID_QUIRK_NON_DESKTOP },
Philipp Zabel90eda8f2018-02-19 18:59:37 +0100199
200 /* Windows Mixed Reality Headsets */
201 { "ACR", 0x7fce, EDID_QUIRK_NON_DESKTOP },
202 { "HPN", 0x3515, EDID_QUIRK_NON_DESKTOP },
203 { "LEN", 0x0408, EDID_QUIRK_NON_DESKTOP },
204 { "LEN", 0xb800, EDID_QUIRK_NON_DESKTOP },
205 { "FUJ", 0x1970, EDID_QUIRK_NON_DESKTOP },
206 { "DEL", 0x7fce, EDID_QUIRK_NON_DESKTOP },
207 { "SEC", 0x144a, EDID_QUIRK_NON_DESKTOP },
208 { "AUS", 0xc102, EDID_QUIRK_NON_DESKTOP },
Philipp Zabelccffc9e2018-02-19 18:59:38 +0100209
210 /* Sony PlayStation VR Headset */
211 { "SNY", 0x0704, EDID_QUIRK_NON_DESKTOP },
Ryan Pavlik29054232018-12-03 10:46:44 -0600212
213 /* Sensics VR Headsets */
214 { "SEN", 0x1019, EDID_QUIRK_NON_DESKTOP },
215
216 /* OSVR HDK and HDK2 VR Headsets */
217 { "SVR", 0x1019, EDID_QUIRK_NON_DESKTOP },
Dave Airlief453ba02008-11-07 14:05:41 -0800218};
219
Thierry Redinga6b21832012-11-23 15:01:42 +0100220/*
221 * Autogenerated from the DMT spec.
222 * This table is copied from xfree86/modes/xf86EdidModes.c.
223 */
224static const struct drm_display_mode drm_dmt_modes[] = {
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300225 /* 0x01 - 640x350@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100226 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
227 736, 832, 0, 350, 382, 385, 445, 0,
228 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300229 /* 0x02 - 640x400@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100230 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
231 736, 832, 0, 400, 401, 404, 445, 0,
232 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300233 /* 0x03 - 720x400@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100234 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
235 828, 936, 0, 400, 401, 404, 446, 0,
236 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300237 /* 0x04 - 640x480@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100238 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300239 752, 800, 0, 480, 490, 492, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100240 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300241 /* 0x05 - 640x480@72Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100242 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
243 704, 832, 0, 480, 489, 492, 520, 0,
244 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300245 /* 0x06 - 640x480@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100246 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
247 720, 840, 0, 480, 481, 484, 500, 0,
248 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300249 /* 0x07 - 640x480@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100250 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
251 752, 832, 0, 480, 481, 484, 509, 0,
252 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300253 /* 0x08 - 800x600@56Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100254 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
255 896, 1024, 0, 600, 601, 603, 625, 0,
256 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300257 /* 0x09 - 800x600@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100258 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
259 968, 1056, 0, 600, 601, 605, 628, 0,
260 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300261 /* 0x0a - 800x600@72Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100262 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
263 976, 1040, 0, 600, 637, 643, 666, 0,
264 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300265 /* 0x0b - 800x600@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100266 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
267 896, 1056, 0, 600, 601, 604, 625, 0,
268 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300269 /* 0x0c - 800x600@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100270 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
271 896, 1048, 0, 600, 601, 604, 631, 0,
272 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300273 /* 0x0d - 800x600@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100274 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 73250, 800, 848,
275 880, 960, 0, 600, 603, 607, 636, 0,
276 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300277 /* 0x0e - 848x480@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100278 { DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
279 976, 1088, 0, 480, 486, 494, 517, 0,
280 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300281 /* 0x0f - 1024x768@43Hz, interlace */
Thierry Redinga6b21832012-11-23 15:01:42 +0100282 { DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
Paul Parsons735b1002016-04-04 20:36:34 +0100283 1208, 1264, 0, 768, 768, 776, 817, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100284 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300285 DRM_MODE_FLAG_INTERLACE) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300286 /* 0x10 - 1024x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100287 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
288 1184, 1344, 0, 768, 771, 777, 806, 0,
289 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300290 /* 0x11 - 1024x768@70Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100291 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
292 1184, 1328, 0, 768, 771, 777, 806, 0,
293 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300294 /* 0x12 - 1024x768@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100295 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
296 1136, 1312, 0, 768, 769, 772, 800, 0,
297 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300298 /* 0x13 - 1024x768@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100299 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
300 1168, 1376, 0, 768, 769, 772, 808, 0,
301 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300302 /* 0x14 - 1024x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100303 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 115500, 1024, 1072,
304 1104, 1184, 0, 768, 771, 775, 813, 0,
305 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300306 /* 0x15 - 1152x864@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100307 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
308 1344, 1600, 0, 864, 865, 868, 900, 0,
309 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300310 /* 0x55 - 1280x720@60Hz */
311 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
312 1430, 1650, 0, 720, 725, 730, 750, 0,
313 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300314 /* 0x16 - 1280x768@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100315 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 68250, 1280, 1328,
316 1360, 1440, 0, 768, 771, 778, 790, 0,
317 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300318 /* 0x17 - 1280x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100319 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
320 1472, 1664, 0, 768, 771, 778, 798, 0,
321 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300322 /* 0x18 - 1280x768@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100323 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
324 1488, 1696, 0, 768, 771, 778, 805, 0,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300325 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300326 /* 0x19 - 1280x768@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100327 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
328 1496, 1712, 0, 768, 771, 778, 809, 0,
329 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300330 /* 0x1a - 1280x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100331 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 140250, 1280, 1328,
332 1360, 1440, 0, 768, 771, 778, 813, 0,
333 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300334 /* 0x1b - 1280x800@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100335 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 71000, 1280, 1328,
336 1360, 1440, 0, 800, 803, 809, 823, 0,
337 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300338 /* 0x1c - 1280x800@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100339 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
340 1480, 1680, 0, 800, 803, 809, 831, 0,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300341 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300342 /* 0x1d - 1280x800@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100343 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
344 1488, 1696, 0, 800, 803, 809, 838, 0,
345 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300346 /* 0x1e - 1280x800@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100347 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
348 1496, 1712, 0, 800, 803, 809, 843, 0,
349 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300350 /* 0x1f - 1280x800@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100351 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 146250, 1280, 1328,
352 1360, 1440, 0, 800, 803, 809, 847, 0,
353 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300354 /* 0x20 - 1280x960@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100355 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
356 1488, 1800, 0, 960, 961, 964, 1000, 0,
357 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300358 /* 0x21 - 1280x960@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100359 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
360 1504, 1728, 0, 960, 961, 964, 1011, 0,
361 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300362 /* 0x22 - 1280x960@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100363 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 175500, 1280, 1328,
364 1360, 1440, 0, 960, 963, 967, 1017, 0,
365 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300366 /* 0x23 - 1280x1024@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100367 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
368 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
369 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300370 /* 0x24 - 1280x1024@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100371 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
372 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
373 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300374 /* 0x25 - 1280x1024@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100375 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
376 1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
377 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300378 /* 0x26 - 1280x1024@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100379 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 187250, 1280, 1328,
380 1360, 1440, 0, 1024, 1027, 1034, 1084, 0,
381 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300382 /* 0x27 - 1360x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100383 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
384 1536, 1792, 0, 768, 771, 777, 795, 0,
385 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300386 /* 0x28 - 1360x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100387 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 148250, 1360, 1408,
388 1440, 1520, 0, 768, 771, 776, 813, 0,
389 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300390 /* 0x51 - 1366x768@60Hz */
391 { DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 85500, 1366, 1436,
392 1579, 1792, 0, 768, 771, 774, 798, 0,
393 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
394 /* 0x56 - 1366x768@60Hz */
395 { DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 72000, 1366, 1380,
396 1436, 1500, 0, 768, 769, 772, 800, 0,
397 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300398 /* 0x29 - 1400x1050@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100399 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 101000, 1400, 1448,
400 1480, 1560, 0, 1050, 1053, 1057, 1080, 0,
401 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300402 /* 0x2a - 1400x1050@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100403 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
404 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
405 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300406 /* 0x2b - 1400x1050@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100407 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
408 1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
409 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300410 /* 0x2c - 1400x1050@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100411 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
412 1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
413 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300414 /* 0x2d - 1400x1050@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100415 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 208000, 1400, 1448,
416 1480, 1560, 0, 1050, 1053, 1057, 1112, 0,
417 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300418 /* 0x2e - 1440x900@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100419 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 88750, 1440, 1488,
420 1520, 1600, 0, 900, 903, 909, 926, 0,
421 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300422 /* 0x2f - 1440x900@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100423 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
424 1672, 1904, 0, 900, 903, 909, 934, 0,
425 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300426 /* 0x30 - 1440x900@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100427 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
428 1688, 1936, 0, 900, 903, 909, 942, 0,
429 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300430 /* 0x31 - 1440x900@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100431 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
432 1696, 1952, 0, 900, 903, 909, 948, 0,
433 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300434 /* 0x32 - 1440x900@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100435 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 182750, 1440, 1488,
436 1520, 1600, 0, 900, 903, 909, 953, 0,
437 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300438 /* 0x53 - 1600x900@60Hz */
439 { DRM_MODE("1600x900", DRM_MODE_TYPE_DRIVER, 108000, 1600, 1624,
440 1704, 1800, 0, 900, 901, 904, 1000, 0,
441 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300442 /* 0x33 - 1600x1200@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100443 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
444 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
445 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300446 /* 0x34 - 1600x1200@65Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100447 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
448 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
449 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300450 /* 0x35 - 1600x1200@70Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100451 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
452 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
453 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300454 /* 0x36 - 1600x1200@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100455 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 202500, 1600, 1664,
456 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
457 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300458 /* 0x37 - 1600x1200@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100459 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
460 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
461 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300462 /* 0x38 - 1600x1200@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100463 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 268250, 1600, 1648,
464 1680, 1760, 0, 1200, 1203, 1207, 1271, 0,
465 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300466 /* 0x39 - 1680x1050@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100467 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 119000, 1680, 1728,
468 1760, 1840, 0, 1050, 1053, 1059, 1080, 0,
469 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300470 /* 0x3a - 1680x1050@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100471 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
472 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
473 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300474 /* 0x3b - 1680x1050@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100475 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
476 1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
477 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300478 /* 0x3c - 1680x1050@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100479 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
480 1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
481 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300482 /* 0x3d - 1680x1050@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100483 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 245500, 1680, 1728,
484 1760, 1840, 0, 1050, 1053, 1059, 1112, 0,
485 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300486 /* 0x3e - 1792x1344@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100487 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
488 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
489 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300490 /* 0x3f - 1792x1344@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100491 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
492 2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
493 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300494 /* 0x40 - 1792x1344@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100495 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 333250, 1792, 1840,
496 1872, 1952, 0, 1344, 1347, 1351, 1423, 0,
497 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300498 /* 0x41 - 1856x1392@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100499 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
500 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
501 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300502 /* 0x42 - 1856x1392@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100503 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300504 2208, 2560, 0, 1392, 1393, 1396, 1500, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100505 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300506 /* 0x43 - 1856x1392@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100507 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 356500, 1856, 1904,
508 1936, 2016, 0, 1392, 1395, 1399, 1474, 0,
509 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300510 /* 0x52 - 1920x1080@60Hz */
511 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
512 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
513 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300514 /* 0x44 - 1920x1200@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100515 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 154000, 1920, 1968,
516 2000, 2080, 0, 1200, 1203, 1209, 1235, 0,
517 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300518 /* 0x45 - 1920x1200@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100519 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
520 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
521 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300522 /* 0x46 - 1920x1200@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100523 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
524 2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
525 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300526 /* 0x47 - 1920x1200@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100527 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
528 2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
529 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300530 /* 0x48 - 1920x1200@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100531 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 317000, 1920, 1968,
532 2000, 2080, 0, 1200, 1203, 1209, 1271, 0,
533 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300534 /* 0x49 - 1920x1440@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100535 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
536 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
537 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300538 /* 0x4a - 1920x1440@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100539 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
540 2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
541 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300542 /* 0x4b - 1920x1440@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100543 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 380500, 1920, 1968,
544 2000, 2080, 0, 1440, 1443, 1447, 1525, 0,
545 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300546 /* 0x54 - 2048x1152@60Hz */
547 { DRM_MODE("2048x1152", DRM_MODE_TYPE_DRIVER, 162000, 2048, 2074,
548 2154, 2250, 0, 1152, 1153, 1156, 1200, 0,
549 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300550 /* 0x4c - 2560x1600@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100551 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 268500, 2560, 2608,
552 2640, 2720, 0, 1600, 1603, 1609, 1646, 0,
553 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300554 /* 0x4d - 2560x1600@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100555 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
556 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
557 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300558 /* 0x4e - 2560x1600@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100559 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
560 3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
561 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300562 /* 0x4f - 2560x1600@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100563 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
564 3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
565 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300566 /* 0x50 - 2560x1600@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100567 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 552750, 2560, 2608,
568 2640, 2720, 0, 1600, 1603, 1609, 1694, 0,
569 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300570 /* 0x57 - 4096x2160@60Hz RB */
571 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556744, 4096, 4104,
572 4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
573 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
574 /* 0x58 - 4096x2160@59.94Hz RB */
575 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556188, 4096, 4104,
576 4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
577 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Thierry Redinga6b21832012-11-23 15:01:42 +0100578};
579
Ville Syrjäläe7bfa5c2013-10-14 16:44:27 +0300580/*
581 * These more or less come from the DMT spec. The 720x400 modes are
582 * inferred from historical 80x25 practice. The 640x480@67 and 832x624@75
583 * modes are old-school Mac modes. The EDID spec says the 1152x864@75 mode
584 * should be 1152x870, again for the Mac, but instead we use the x864 DMT
585 * mode.
586 *
587 * The DMT modes have been fact-checked; the rest are mild guesses.
588 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100589static const struct drm_display_mode edid_est_modes[] = {
590 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
591 968, 1056, 0, 600, 601, 605, 628, 0,
592 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
593 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
594 896, 1024, 0, 600, 601, 603, 625, 0,
595 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
596 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
597 720, 840, 0, 480, 481, 484, 500, 0,
598 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
599 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
Paul Parsons87707cf2016-04-02 11:08:06 +0100600 704, 832, 0, 480, 489, 492, 520, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100601 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
602 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
603 768, 864, 0, 480, 483, 486, 525, 0,
604 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
Paul Parsons87707cf2016-04-02 11:08:06 +0100605 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
Thierry Redinga6b21832012-11-23 15:01:42 +0100606 752, 800, 0, 480, 490, 492, 525, 0,
607 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
608 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
609 846, 900, 0, 400, 421, 423, 449, 0,
610 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
611 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
612 846, 900, 0, 400, 412, 414, 449, 0,
613 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
614 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
615 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
616 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
Paul Parsons87707cf2016-04-02 11:08:06 +0100617 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
Thierry Redinga6b21832012-11-23 15:01:42 +0100618 1136, 1312, 0, 768, 769, 772, 800, 0,
619 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
620 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
621 1184, 1328, 0, 768, 771, 777, 806, 0,
622 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
623 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
624 1184, 1344, 0, 768, 771, 777, 806, 0,
625 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
626 { DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
627 1208, 1264, 0, 768, 768, 776, 817, 0,
628 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
629 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
630 928, 1152, 0, 624, 625, 628, 667, 0,
631 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
632 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
633 896, 1056, 0, 600, 601, 604, 625, 0,
634 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
635 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
636 976, 1040, 0, 600, 637, 643, 666, 0,
637 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
638 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
639 1344, 1600, 0, 864, 865, 868, 900, 0,
640 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
641};
642
643struct minimode {
644 short w;
645 short h;
646 short r;
647 short rb;
648};
649
650static const struct minimode est3_modes[] = {
651 /* byte 6 */
652 { 640, 350, 85, 0 },
653 { 640, 400, 85, 0 },
654 { 720, 400, 85, 0 },
655 { 640, 480, 85, 0 },
656 { 848, 480, 60, 0 },
657 { 800, 600, 85, 0 },
658 { 1024, 768, 85, 0 },
659 { 1152, 864, 75, 0 },
660 /* byte 7 */
661 { 1280, 768, 60, 1 },
662 { 1280, 768, 60, 0 },
663 { 1280, 768, 75, 0 },
664 { 1280, 768, 85, 0 },
665 { 1280, 960, 60, 0 },
666 { 1280, 960, 85, 0 },
667 { 1280, 1024, 60, 0 },
668 { 1280, 1024, 85, 0 },
669 /* byte 8 */
670 { 1360, 768, 60, 0 },
671 { 1440, 900, 60, 1 },
672 { 1440, 900, 60, 0 },
673 { 1440, 900, 75, 0 },
674 { 1440, 900, 85, 0 },
675 { 1400, 1050, 60, 1 },
676 { 1400, 1050, 60, 0 },
677 { 1400, 1050, 75, 0 },
678 /* byte 9 */
679 { 1400, 1050, 85, 0 },
680 { 1680, 1050, 60, 1 },
681 { 1680, 1050, 60, 0 },
682 { 1680, 1050, 75, 0 },
683 { 1680, 1050, 85, 0 },
684 { 1600, 1200, 60, 0 },
685 { 1600, 1200, 65, 0 },
686 { 1600, 1200, 70, 0 },
687 /* byte 10 */
688 { 1600, 1200, 75, 0 },
689 { 1600, 1200, 85, 0 },
690 { 1792, 1344, 60, 0 },
Ville Syrjäläc068b322013-10-14 16:44:25 +0300691 { 1792, 1344, 75, 0 },
Thierry Redinga6b21832012-11-23 15:01:42 +0100692 { 1856, 1392, 60, 0 },
693 { 1856, 1392, 75, 0 },
694 { 1920, 1200, 60, 1 },
695 { 1920, 1200, 60, 0 },
696 /* byte 11 */
697 { 1920, 1200, 75, 0 },
698 { 1920, 1200, 85, 0 },
699 { 1920, 1440, 60, 0 },
700 { 1920, 1440, 75, 0 },
701};
702
703static const struct minimode extra_modes[] = {
704 { 1024, 576, 60, 0 },
705 { 1366, 768, 60, 0 },
706 { 1600, 900, 60, 0 },
707 { 1680, 945, 60, 0 },
708 { 1920, 1080, 60, 0 },
709 { 2048, 1152, 60, 0 },
710 { 2048, 1536, 60, 0 },
711};
712
713/*
Ville Syrjälä7befe622019-12-13 19:43:45 +0200714 * From CEA/CTA-861 spec.
Jani Nikulad9278b42016-01-08 13:21:51 +0200715 *
Ville Syrjälä7befe622019-12-13 19:43:45 +0200716 * Do not access directly, instead always use cea_mode_for_vic().
Thierry Redinga6b21832012-11-23 15:01:42 +0100717 */
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +0200718static const struct drm_display_mode edid_cea_modes_1[] = {
Ville Syrjälä78691962018-05-24 22:20:35 +0300719 /* 1 - 640x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100720 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
721 752, 800, 0, 480, 490, 492, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300722 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300723 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300724 /* 2 - 720x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100725 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
726 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300727 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300728 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300729 /* 3 - 720x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100730 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
731 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300732 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300733 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300734 /* 4 - 1280x720@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100735 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
736 1430, 1650, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300737 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300738 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300739 /* 5 - 1920x1080i@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100740 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
741 2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
742 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300743 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300744 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300745 /* 6 - 720(1440)x480i@60Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700746 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
747 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100748 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300749 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300750 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300751 /* 7 - 720(1440)x480i@60Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700752 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
753 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100754 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300755 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300756 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300757 /* 8 - 720(1440)x240@60Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700758 { DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
759 801, 858, 0, 240, 244, 247, 262, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100760 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300761 DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300762 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300763 /* 9 - 720(1440)x240@60Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700764 { DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
765 801, 858, 0, 240, 244, 247, 262, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100766 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300767 DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300768 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300769 /* 10 - 2880x480i@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100770 { DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
771 3204, 3432, 0, 480, 488, 494, 525, 0,
772 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300773 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300774 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300775 /* 11 - 2880x480i@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100776 { DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
777 3204, 3432, 0, 480, 488, 494, 525, 0,
778 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300779 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300780 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300781 /* 12 - 2880x240@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100782 { DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
783 3204, 3432, 0, 240, 244, 247, 262, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300784 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300785 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300786 /* 13 - 2880x240@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100787 { DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
788 3204, 3432, 0, 240, 244, 247, 262, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300789 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300790 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300791 /* 14 - 1440x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100792 { DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
793 1596, 1716, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300794 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300795 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300796 /* 15 - 1440x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100797 { DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
798 1596, 1716, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300799 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300800 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300801 /* 16 - 1920x1080@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100802 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
803 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300804 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300805 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300806 /* 17 - 720x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100807 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
808 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300809 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300810 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300811 /* 18 - 720x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100812 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
813 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300814 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300815 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300816 /* 19 - 1280x720@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100817 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
818 1760, 1980, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300819 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300820 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300821 /* 20 - 1920x1080i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100822 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
823 2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
824 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300825 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300826 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300827 /* 21 - 720(1440)x576i@50Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700828 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
829 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100830 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300831 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300832 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300833 /* 22 - 720(1440)x576i@50Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700834 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
835 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100836 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300837 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300838 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300839 /* 23 - 720(1440)x288@50Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700840 { DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
841 795, 864, 0, 288, 290, 293, 312, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100842 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300843 DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300844 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300845 /* 24 - 720(1440)x288@50Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700846 { DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
847 795, 864, 0, 288, 290, 293, 312, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100848 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300849 DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300850 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300851 /* 25 - 2880x576i@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100852 { DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
853 3180, 3456, 0, 576, 580, 586, 625, 0,
854 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300855 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300856 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300857 /* 26 - 2880x576i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100858 { DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
859 3180, 3456, 0, 576, 580, 586, 625, 0,
860 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300861 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300862 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300863 /* 27 - 2880x288@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100864 { DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
865 3180, 3456, 0, 288, 290, 293, 312, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300866 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300867 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300868 /* 28 - 2880x288@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100869 { DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
870 3180, 3456, 0, 288, 290, 293, 312, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300871 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300872 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300873 /* 29 - 1440x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100874 { DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
875 1592, 1728, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300876 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300877 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300878 /* 30 - 1440x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100879 { DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
880 1592, 1728, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300881 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300882 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300883 /* 31 - 1920x1080@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100884 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
885 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300886 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300887 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300888 /* 32 - 1920x1080@24Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100889 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
890 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300891 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300892 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300893 /* 33 - 1920x1080@25Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100894 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
895 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300896 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300897 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300898 /* 34 - 1920x1080@30Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100899 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
900 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300901 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300902 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300903 /* 35 - 2880x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100904 { DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
905 3192, 3432, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300906 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300907 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300908 /* 36 - 2880x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100909 { DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
910 3192, 3432, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300911 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300912 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300913 /* 37 - 2880x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100914 { DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
915 3184, 3456, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300916 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300917 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300918 /* 38 - 2880x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100919 { DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
920 3184, 3456, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300921 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300922 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300923 /* 39 - 1920x1080i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100924 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 72000, 1920, 1952,
925 2120, 2304, 0, 1080, 1126, 1136, 1250, 0,
926 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300927 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300928 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300929 /* 40 - 1920x1080i@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100930 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
931 2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
932 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300933 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300934 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300935 /* 41 - 1280x720@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100936 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
937 1760, 1980, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300938 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300939 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300940 /* 42 - 720x576@100Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100941 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
942 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300943 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300944 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300945 /* 43 - 720x576@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100946 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
947 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300948 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300949 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300950 /* 44 - 720(1440)x576i@100Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700951 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
952 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100953 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300954 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300955 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300956 /* 45 - 720(1440)x576i@100Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700957 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
958 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100959 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300960 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300961 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300962 /* 46 - 1920x1080i@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100963 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
964 2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
965 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300966 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300967 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300968 /* 47 - 1280x720@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100969 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
970 1430, 1650, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300971 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300972 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300973 /* 48 - 720x480@120Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100974 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
975 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300976 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300977 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300978 /* 49 - 720x480@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100979 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
980 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300981 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300982 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300983 /* 50 - 720(1440)x480i@120Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700984 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
985 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100986 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300987 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300988 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300989 /* 51 - 720(1440)x480i@120Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700990 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
991 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100992 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300993 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300994 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300995 /* 52 - 720x576@200Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100996 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
997 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300998 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300999 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001000 /* 53 - 720x576@200Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001001 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
1002 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001003 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001004 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001005 /* 54 - 720(1440)x576i@200Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001006 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
1007 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001008 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001009 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001010 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001011 /* 55 - 720(1440)x576i@200Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001012 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
1013 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001014 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001015 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001016 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001017 /* 56 - 720x480@240Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001018 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
1019 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001020 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001021 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001022 /* 57 - 720x480@240Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001023 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
1024 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001025 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001026 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001027 /* 58 - 720(1440)x480i@240Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001028 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
1029 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001030 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001031 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001032 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001033 /* 59 - 720(1440)x480i@240Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001034 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
1035 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001036 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001037 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001038 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001039 /* 60 - 1280x720@24Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001040 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
1041 3080, 3300, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001042 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001043 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001044 /* 61 - 1280x720@25Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001045 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
1046 3740, 3960, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001047 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001048 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001049 /* 62 - 1280x720@30Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001050 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
1051 3080, 3300, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001052 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001053 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001054 /* 63 - 1920x1080@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001055 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1056 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001057 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001058 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001059 /* 64 - 1920x1080@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001060 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
Clint Taylor8f0e4902016-08-15 10:31:28 -07001061 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001062 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001063 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001064 /* 65 - 1280x720@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301065 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
1066 3080, 3300, 0, 720, 725, 730, 750, 0,
1067 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001068 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001069 /* 66 - 1280x720@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301070 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
1071 3740, 3960, 0, 720, 725, 730, 750, 0,
1072 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001073 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001074 /* 67 - 1280x720@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301075 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
1076 3080, 3300, 0, 720, 725, 730, 750, 0,
1077 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001078 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001079 /* 68 - 1280x720@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301080 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
1081 1760, 1980, 0, 720, 725, 730, 750, 0,
1082 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001083 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001084 /* 69 - 1280x720@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301085 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
1086 1430, 1650, 0, 720, 725, 730, 750, 0,
1087 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001088 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001089 /* 70 - 1280x720@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301090 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
1091 1760, 1980, 0, 720, 725, 730, 750, 0,
1092 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001093 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001094 /* 71 - 1280x720@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301095 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
1096 1430, 1650, 0, 720, 725, 730, 750, 0,
1097 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001098 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001099 /* 72 - 1920x1080@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301100 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
1101 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1102 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001103 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001104 /* 73 - 1920x1080@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301105 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
1106 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1107 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001108 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001109 /* 74 - 1920x1080@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301110 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
1111 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1112 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001113 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001114 /* 75 - 1920x1080@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301115 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
1116 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1117 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001118 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001119 /* 76 - 1920x1080@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301120 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
1121 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1122 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001123 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001124 /* 77 - 1920x1080@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301125 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
1126 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1127 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001128 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001129 /* 78 - 1920x1080@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301130 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1131 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1132 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001133 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001134 /* 79 - 1680x720@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301135 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 3040,
1136 3080, 3300, 0, 720, 725, 730, 750, 0,
1137 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001138 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001139 /* 80 - 1680x720@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301140 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 2908,
1141 2948, 3168, 0, 720, 725, 730, 750, 0,
1142 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001143 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001144 /* 81 - 1680x720@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301145 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 2380,
1146 2420, 2640, 0, 720, 725, 730, 750, 0,
1147 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001148 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001149 /* 82 - 1680x720@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301150 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 82500, 1680, 1940,
1151 1980, 2200, 0, 720, 725, 730, 750, 0,
1152 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001153 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001154 /* 83 - 1680x720@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301155 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 99000, 1680, 1940,
1156 1980, 2200, 0, 720, 725, 730, 750, 0,
1157 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001158 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001159 /* 84 - 1680x720@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301160 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 165000, 1680, 1740,
1161 1780, 2000, 0, 720, 725, 730, 825, 0,
1162 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001163 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001164 /* 85 - 1680x720@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301165 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 198000, 1680, 1740,
1166 1780, 2000, 0, 720, 725, 730, 825, 0,
1167 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001168 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001169 /* 86 - 2560x1080@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301170 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 99000, 2560, 3558,
1171 3602, 3750, 0, 1080, 1084, 1089, 1100, 0,
1172 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001173 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001174 /* 87 - 2560x1080@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301175 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 90000, 2560, 3008,
1176 3052, 3200, 0, 1080, 1084, 1089, 1125, 0,
1177 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001178 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001179 /* 88 - 2560x1080@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301180 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 118800, 2560, 3328,
1181 3372, 3520, 0, 1080, 1084, 1089, 1125, 0,
1182 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001183 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001184 /* 89 - 2560x1080@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301185 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 185625, 2560, 3108,
1186 3152, 3300, 0, 1080, 1084, 1089, 1125, 0,
1187 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001188 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001189 /* 90 - 2560x1080@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301190 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 198000, 2560, 2808,
1191 2852, 3000, 0, 1080, 1084, 1089, 1100, 0,
1192 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001193 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001194 /* 91 - 2560x1080@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301195 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 371250, 2560, 2778,
1196 2822, 2970, 0, 1080, 1084, 1089, 1250, 0,
1197 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001198 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001199 /* 92 - 2560x1080@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301200 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 495000, 2560, 3108,
1201 3152, 3300, 0, 1080, 1084, 1089, 1250, 0,
1202 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001203 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001204 /* 93 - 3840x2160@24Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301205 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 5116,
1206 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1207 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001208 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001209 /* 94 - 3840x2160@25Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301210 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4896,
1211 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1212 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001213 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001214 /* 95 - 3840x2160@30Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301215 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4016,
1216 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1217 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001218 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001219 /* 96 - 3840x2160@50Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301220 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4896,
1221 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1222 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001223 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001224 /* 97 - 3840x2160@60Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301225 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4016,
1226 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1227 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001228 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001229 /* 98 - 4096x2160@24Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301230 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 5116,
1231 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1232 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001233 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001234 /* 99 - 4096x2160@25Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301235 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 5064,
1236 5152, 5280, 0, 2160, 2168, 2178, 2250, 0,
1237 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001238 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001239 /* 100 - 4096x2160@30Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301240 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 4184,
1241 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1242 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001243 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001244 /* 101 - 4096x2160@50Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301245 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 5064,
1246 5152, 5280, 0, 2160, 2168, 2178, 2250, 0,
1247 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001248 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001249 /* 102 - 4096x2160@60Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301250 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 4184,
1251 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1252 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001253 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001254 /* 103 - 3840x2160@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301255 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 5116,
1256 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1257 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001258 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001259 /* 104 - 3840x2160@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301260 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4896,
1261 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1262 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001263 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001264 /* 105 - 3840x2160@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301265 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4016,
1266 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1267 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001268 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001269 /* 106 - 3840x2160@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301270 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4896,
1271 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1272 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001273 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001274 /* 107 - 3840x2160@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301275 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4016,
1276 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1277 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001278 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001279 /* 108 - 1280x720@48Hz 16:9 */
1280 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 90000, 1280, 2240,
1281 2280, 2500, 0, 720, 725, 730, 750, 0,
1282 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001283 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001284 /* 109 - 1280x720@48Hz 64:27 */
1285 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 90000, 1280, 2240,
1286 2280, 2500, 0, 720, 725, 730, 750, 0,
1287 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001288 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001289 /* 110 - 1680x720@48Hz 64:27 */
1290 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 99000, 1680, 2490,
1291 2530, 2750, 0, 720, 725, 730, 750, 0,
1292 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001293 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001294 /* 111 - 1920x1080@48Hz 16:9 */
1295 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2558,
1296 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1297 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001298 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001299 /* 112 - 1920x1080@48Hz 64:27 */
1300 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2558,
1301 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1302 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001303 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001304 /* 113 - 2560x1080@48Hz 64:27 */
1305 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 198000, 2560, 3558,
1306 3602, 3750, 0, 1080, 1084, 1089, 1100, 0,
1307 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001308 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001309 /* 114 - 3840x2160@48Hz 16:9 */
1310 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 5116,
1311 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1312 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001313 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001314 /* 115 - 4096x2160@48Hz 256:135 */
1315 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 5116,
1316 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1317 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001318 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001319 /* 116 - 3840x2160@48Hz 64:27 */
1320 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 5116,
1321 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1322 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001323 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001324 /* 117 - 3840x2160@100Hz 16:9 */
1325 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4896,
1326 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1327 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001328 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001329 /* 118 - 3840x2160@120Hz 16:9 */
1330 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4016,
1331 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1332 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001333 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001334 /* 119 - 3840x2160@100Hz 64:27 */
1335 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4896,
1336 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1337 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001338 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001339 /* 120 - 3840x2160@120Hz 64:27 */
1340 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4016,
1341 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1342 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001343 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001344 /* 121 - 5120x2160@24Hz 64:27 */
1345 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 7116,
1346 7204, 7500, 0, 2160, 2168, 2178, 2200, 0,
1347 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001348 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001349 /* 122 - 5120x2160@25Hz 64:27 */
1350 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 6816,
1351 6904, 7200, 0, 2160, 2168, 2178, 2200, 0,
1352 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001353 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001354 /* 123 - 5120x2160@30Hz 64:27 */
1355 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 5784,
1356 5872, 6000, 0, 2160, 2168, 2178, 2200, 0,
1357 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001358 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001359 /* 124 - 5120x2160@48Hz 64:27 */
1360 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 5866,
1361 5954, 6250, 0, 2160, 2168, 2178, 2475, 0,
1362 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001363 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001364 /* 125 - 5120x2160@50Hz 64:27 */
1365 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 6216,
1366 6304, 6600, 0, 2160, 2168, 2178, 2250, 0,
1367 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001368 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001369 /* 126 - 5120x2160@60Hz 64:27 */
1370 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 5284,
1371 5372, 5500, 0, 2160, 2168, 2178, 2250, 0,
1372 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001373 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001374 /* 127 - 5120x2160@100Hz 64:27 */
1375 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 1485000, 5120, 6216,
1376 6304, 6600, 0, 2160, 2168, 2178, 2250, 0,
1377 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001378 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Thierry Redinga6b21832012-11-23 15:01:42 +01001379};
1380
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001381/*
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001382 * From CEA/CTA-861 spec.
1383 *
1384 * Do not access directly, instead always use cea_mode_for_vic().
1385 */
1386static const struct drm_display_mode edid_cea_modes_193[] = {
1387 /* 193 - 5120x2160@120Hz 64:27 */
1388 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 1485000, 5120, 5284,
1389 5372, 5500, 0, 2160, 2168, 2178, 2250, 0,
1390 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001391 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001392 /* 194 - 7680x4320@24Hz 16:9 */
1393 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10232,
1394 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1395 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001396 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001397 /* 195 - 7680x4320@25Hz 16:9 */
1398 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10032,
1399 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1400 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001401 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001402 /* 196 - 7680x4320@30Hz 16:9 */
1403 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 8232,
1404 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1405 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001406 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001407 /* 197 - 7680x4320@48Hz 16:9 */
1408 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10232,
1409 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1410 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001411 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001412 /* 198 - 7680x4320@50Hz 16:9 */
1413 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10032,
1414 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1415 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001416 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001417 /* 199 - 7680x4320@60Hz 16:9 */
1418 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 8232,
1419 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1420 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001421 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001422 /* 200 - 7680x4320@100Hz 16:9 */
1423 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 9792,
1424 9968, 10560, 0, 4320, 4336, 4356, 4500, 0,
1425 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001426 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001427 /* 201 - 7680x4320@120Hz 16:9 */
1428 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 8032,
1429 8208, 8800, 0, 4320, 4336, 4356, 4500, 0,
1430 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001431 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001432 /* 202 - 7680x4320@24Hz 64:27 */
1433 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10232,
1434 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1435 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001436 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001437 /* 203 - 7680x4320@25Hz 64:27 */
1438 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10032,
1439 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1440 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001441 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001442 /* 204 - 7680x4320@30Hz 64:27 */
1443 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 8232,
1444 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1445 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001446 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001447 /* 205 - 7680x4320@48Hz 64:27 */
1448 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10232,
1449 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1450 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001451 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001452 /* 206 - 7680x4320@50Hz 64:27 */
1453 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10032,
1454 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1455 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001456 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001457 /* 207 - 7680x4320@60Hz 64:27 */
1458 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 8232,
1459 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1460 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001461 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001462 /* 208 - 7680x4320@100Hz 64:27 */
1463 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 9792,
1464 9968, 10560, 0, 4320, 4336, 4356, 4500, 0,
1465 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001466 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001467 /* 209 - 7680x4320@120Hz 64:27 */
1468 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 8032,
1469 8208, 8800, 0, 4320, 4336, 4356, 4500, 0,
1470 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001471 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001472 /* 210 - 10240x4320@24Hz 64:27 */
1473 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 11732,
1474 11908, 12500, 0, 4320, 4336, 4356, 4950, 0,
1475 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001476 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001477 /* 211 - 10240x4320@25Hz 64:27 */
1478 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 12732,
1479 12908, 13500, 0, 4320, 4336, 4356, 4400, 0,
1480 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001481 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001482 /* 212 - 10240x4320@30Hz 64:27 */
1483 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 10528,
1484 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1485 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001486 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001487 /* 213 - 10240x4320@48Hz 64:27 */
1488 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 11732,
1489 11908, 12500, 0, 4320, 4336, 4356, 4950, 0,
1490 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001491 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001492 /* 214 - 10240x4320@50Hz 64:27 */
1493 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 12732,
1494 12908, 13500, 0, 4320, 4336, 4356, 4400, 0,
1495 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001496 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001497 /* 215 - 10240x4320@60Hz 64:27 */
1498 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 10528,
1499 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1500 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001501 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001502 /* 216 - 10240x4320@100Hz 64:27 */
1503 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 5940000, 10240, 12432,
1504 12608, 13200, 0, 4320, 4336, 4356, 4500, 0,
1505 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001506 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001507 /* 217 - 10240x4320@120Hz 64:27 */
1508 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 5940000, 10240, 10528,
1509 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1510 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001511 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001512 /* 218 - 4096x2160@100Hz 256:135 */
1513 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 1188000, 4096, 4896,
1514 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1515 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001516 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001517 /* 219 - 4096x2160@120Hz 256:135 */
1518 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 1188000, 4096, 4184,
1519 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1520 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001521 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001522};
1523
1524/*
Jani Nikulad9278b42016-01-08 13:21:51 +02001525 * HDMI 1.4 4k modes. Index using the VIC.
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001526 */
1527static const struct drm_display_mode edid_4k_modes[] = {
Jani Nikulad9278b42016-01-08 13:21:51 +02001528 /* 0 - dummy, VICs start at 1 */
1529 { },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001530 /* 1 - 3840x2160@30Hz */
1531 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1532 3840, 4016, 4104, 4400, 0,
1533 2160, 2168, 2178, 2250, 0,
1534 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001535 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001536 /* 2 - 3840x2160@25Hz */
1537 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1538 3840, 4896, 4984, 5280, 0,
1539 2160, 2168, 2178, 2250, 0,
1540 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001541 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001542 /* 3 - 3840x2160@24Hz */
1543 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1544 3840, 5116, 5204, 5500, 0,
1545 2160, 2168, 2178, 2250, 0,
1546 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001547 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001548 /* 4 - 4096x2160@24Hz (SMPTE) */
1549 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000,
1550 4096, 5116, 5204, 5500, 0,
1551 2160, 2168, 2178, 2250, 0,
1552 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001553 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001554};
1555
Adam Jackson61e57a82010-03-29 21:43:18 +00001556/*** DDC fetch and block validation ***/
Dave Airlief453ba02008-11-07 14:05:41 -08001557
Adam Jackson083ae052009-09-23 17:30:45 -04001558static const u8 edid_header[] = {
1559 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
1560};
Dave Airlief453ba02008-11-07 14:05:41 -08001561
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001562/**
1563 * drm_edid_header_is_valid - sanity check the header of the base EDID block
1564 * @raw_edid: pointer to raw base EDID block
1565 *
1566 * Sanity check the header of the base EDID block.
1567 *
1568 * Return: 8 if the header is perfect, down to 0 if it's totally wrong.
Thomas Reim051963d2011-07-29 14:28:57 +00001569 */
1570int drm_edid_header_is_valid(const u8 *raw_edid)
1571{
1572 int i, score = 0;
1573
1574 for (i = 0; i < sizeof(edid_header); i++)
1575 if (raw_edid[i] == edid_header[i])
1576 score++;
1577
1578 return score;
1579}
1580EXPORT_SYMBOL(drm_edid_header_is_valid);
1581
Adam Jackson47819ba2012-05-30 16:42:39 -04001582static int edid_fixup __read_mostly = 6;
1583module_param_named(edid_fixup, edid_fixup, int, 0400);
1584MODULE_PARM_DESC(edid_fixup,
1585 "Minimum number of valid EDID header bytes (0-8, default 6)");
Thomas Reim051963d2011-07-29 14:28:57 +00001586
Andres Rodrigueze28ad542019-06-19 14:09:01 -04001587static int validate_displayid(u8 *displayid, int length, int idx);
Dave Airlieda9df2f2014-12-11 10:12:57 +10001588
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001589static int drm_edid_block_checksum(const u8 *raw_edid)
1590{
1591 int i;
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001592 u8 csum = 0, crc = 0;
1593
1594 for (i = 0; i < EDID_LENGTH - 1; i++)
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001595 csum += raw_edid[i];
1596
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001597 crc = 0x100 - csum;
1598
1599 return crc;
1600}
1601
1602static bool drm_edid_block_checksum_diff(const u8 *raw_edid, u8 real_checksum)
1603{
1604 if (raw_edid[EDID_LENGTH - 1] != real_checksum)
1605 return true;
1606 else
1607 return false;
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001608}
1609
Stefan Brünsd6885d62014-11-30 19:57:41 +01001610static bool drm_edid_is_zero(const u8 *in_edid, int length)
1611{
1612 if (memchr_inv(in_edid, 0, length))
1613 return false;
1614
1615 return true;
1616}
1617
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001618/**
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301619 * drm_edid_are_equal - compare two edid blobs.
1620 * @edid1: pointer to first blob
1621 * @edid2: pointer to second blob
1622 * This helper can be used during probing to determine if
1623 * edid had changed.
1624 */
1625bool drm_edid_are_equal(const struct edid *edid1, const struct edid *edid2)
1626{
1627 int edid1_len, edid2_len;
1628 bool edid1_present = edid1 != NULL;
1629 bool edid2_present = edid2 != NULL;
1630
1631 if (edid1_present != edid2_present)
1632 return false;
1633
1634 if (edid1) {
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301635 edid1_len = EDID_LENGTH * (1 + edid1->extensions);
1636 edid2_len = EDID_LENGTH * (1 + edid2->extensions);
1637
1638 if (edid1_len != edid2_len)
1639 return false;
1640
1641 if (memcmp(edid1, edid2, edid1_len))
1642 return false;
1643 }
1644
1645 return true;
1646}
1647EXPORT_SYMBOL(drm_edid_are_equal);
1648
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301649/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001650 * drm_edid_block_valid - Sanity check the EDID block (base or extension)
1651 * @raw_edid: pointer to raw EDID block
1652 * @block: type of block to validate (0 for base, extension otherwise)
1653 * @print_bad_edid: if true, dump bad EDID blocks to the console
Todd Previte6ba2bd32015-04-21 11:09:41 -07001654 * @edid_corrupt: if true, the header or checksum is invalid
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001655 *
1656 * Validate a base or extension EDID block and optionally dump bad blocks to
1657 * the console.
1658 *
1659 * Return: True if the block is valid, false otherwise.
Dave Airlief453ba02008-11-07 14:05:41 -08001660 */
Todd Previte6ba2bd32015-04-21 11:09:41 -07001661bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid,
1662 bool *edid_corrupt)
Dave Airlief453ba02008-11-07 14:05:41 -08001663{
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001664 u8 csum;
Adam Jackson61e57a82010-03-29 21:43:18 +00001665 struct edid *edid = (struct edid *)raw_edid;
Dave Airlief453ba02008-11-07 14:05:41 -08001666
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001667 if (WARN_ON(!raw_edid))
1668 return false;
1669
Adam Jackson47819ba2012-05-30 16:42:39 -04001670 if (edid_fixup > 8 || edid_fixup < 0)
1671 edid_fixup = 6;
1672
Adam Jacksonf89ec8a2012-04-16 10:40:08 -04001673 if (block == 0) {
Thomas Reim051963d2011-07-29 14:28:57 +00001674 int score = drm_edid_header_is_valid(raw_edid);
Todd Previte6ba2bd32015-04-21 11:09:41 -07001675 if (score == 8) {
1676 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001677 *edid_corrupt = false;
Todd Previte6ba2bd32015-04-21 11:09:41 -07001678 } else if (score >= edid_fixup) {
1679 /* Displayport Link CTS Core 1.2 rev1.1 test 4.2.2.6
1680 * The corrupt flag needs to be set here otherwise, the
1681 * fix-up code here will correct the problem, the
1682 * checksum is correct and the test fails
1683 */
1684 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001685 *edid_corrupt = true;
Adam Jackson61e57a82010-03-29 21:43:18 +00001686 DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
1687 memcpy(raw_edid, edid_header, sizeof(edid_header));
1688 } else {
Todd Previte6ba2bd32015-04-21 11:09:41 -07001689 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001690 *edid_corrupt = true;
Adam Jackson61e57a82010-03-29 21:43:18 +00001691 goto bad;
1692 }
1693 }
Dave Airlief453ba02008-11-07 14:05:41 -08001694
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001695 csum = drm_edid_block_checksum(raw_edid);
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001696 if (drm_edid_block_checksum_diff(raw_edid, csum)) {
Todd Previte6ba2bd32015-04-21 11:09:41 -07001697 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001698 *edid_corrupt = true;
Todd Previte6ba2bd32015-04-21 11:09:41 -07001699
Adam Jackson4a638b42010-05-25 16:33:09 -04001700 /* allow CEA to slide through, switches mangle this */
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001701 if (raw_edid[0] == CEA_EXT) {
1702 DRM_DEBUG("EDID checksum is invalid, remainder is %d\n", csum);
1703 DRM_DEBUG("Assuming a KVM switch modified the CEA block but left the original checksum\n");
1704 } else {
1705 if (print_bad_edid)
Chris Wilson813a7872017-02-10 19:59:13 +00001706 DRM_NOTE("EDID checksum is invalid, remainder is %d\n", csum);
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001707
Adam Jackson4a638b42010-05-25 16:33:09 -04001708 goto bad;
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001709 }
Dave Airlief453ba02008-11-07 14:05:41 -08001710 }
1711
Adam Jackson61e57a82010-03-29 21:43:18 +00001712 /* per-block-type checks */
1713 switch (raw_edid[0]) {
1714 case 0: /* base */
1715 if (edid->version != 1) {
Chris Wilson813a7872017-02-10 19:59:13 +00001716 DRM_NOTE("EDID has major version %d, instead of 1\n", edid->version);
Adam Jackson61e57a82010-03-29 21:43:18 +00001717 goto bad;
1718 }
Adam Jackson862b89c2009-11-23 14:23:06 -05001719
Adam Jackson61e57a82010-03-29 21:43:18 +00001720 if (edid->revision > 4)
1721 DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
1722 break;
1723
1724 default:
1725 break;
1726 }
Adam Jackson47ee4ccf2009-11-23 14:23:05 -05001727
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001728 return true;
Dave Airlief453ba02008-11-07 14:05:41 -08001729
1730bad:
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001731 if (print_bad_edid) {
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001732 if (drm_edid_is_zero(raw_edid, EDID_LENGTH)) {
Joe Perches499447d2017-02-28 04:55:53 -08001733 pr_notice("EDID block is all zeroes\n");
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001734 } else {
Joe Perches499447d2017-02-28 04:55:53 -08001735 pr_notice("Raw EDID:\n");
Chris Wilson813a7872017-02-10 19:59:13 +00001736 print_hex_dump(KERN_NOTICE,
1737 " \t", DUMP_PREFIX_NONE, 16, 1,
1738 raw_edid, EDID_LENGTH, false);
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001739 }
Dave Airlief453ba02008-11-07 14:05:41 -08001740 }
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001741 return false;
Dave Airlief453ba02008-11-07 14:05:41 -08001742}
Carsten Emdeda0df922012-03-18 22:37:33 +01001743EXPORT_SYMBOL(drm_edid_block_valid);
Adam Jackson61e57a82010-03-29 21:43:18 +00001744
1745/**
1746 * drm_edid_is_valid - sanity check EDID data
1747 * @edid: EDID data
1748 *
1749 * Sanity-check an entire EDID record (including extensions)
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001750 *
1751 * Return: True if the EDID data is valid, false otherwise.
Adam Jackson61e57a82010-03-29 21:43:18 +00001752 */
1753bool drm_edid_is_valid(struct edid *edid)
1754{
1755 int i;
1756 u8 *raw = (u8 *)edid;
1757
1758 if (!edid)
1759 return false;
1760
1761 for (i = 0; i <= edid->extensions; i++)
Todd Previte6ba2bd32015-04-21 11:09:41 -07001762 if (!drm_edid_block_valid(raw + i * EDID_LENGTH, i, true, NULL))
Adam Jackson61e57a82010-03-29 21:43:18 +00001763 return false;
1764
1765 return true;
1766}
Alex Deucher3c537882010-02-05 04:21:19 -05001767EXPORT_SYMBOL(drm_edid_is_valid);
Dave Airlief453ba02008-11-07 14:05:41 -08001768
Adam Jackson61e57a82010-03-29 21:43:18 +00001769#define DDC_SEGMENT_ADDR 0x30
1770/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001771 * drm_do_probe_ddc_edid() - get EDID information via I2C
Thierry Reding7c58e872014-12-03 16:52:18 +01001772 * @data: I2C device adapter
Daniel Vetterfc668112014-01-21 12:02:26 +01001773 * @buf: EDID data buffer to be filled
1774 * @block: 128 byte EDID block to start fetching from
1775 * @len: EDID data buffer length to fetch
1776 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001777 * Try to fetch EDID information by calling I2C driver functions.
Daniel Vetterfc668112014-01-21 12:02:26 +01001778 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001779 * Return: 0 on success or -1 on failure.
Adam Jackson61e57a82010-03-29 21:43:18 +00001780 */
1781static int
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001782drm_do_probe_ddc_edid(void *data, u8 *buf, unsigned int block, size_t len)
Adam Jackson61e57a82010-03-29 21:43:18 +00001783{
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001784 struct i2c_adapter *adapter = data;
Adam Jackson61e57a82010-03-29 21:43:18 +00001785 unsigned char start = block * EDID_LENGTH;
Shirish Scd004b32012-08-30 07:04:06 +00001786 unsigned char segment = block >> 1;
1787 unsigned char xfers = segment ? 3 : 2;
Chris Wilson4819d2e2011-03-15 11:04:41 +00001788 int ret, retries = 5;
Adam Jackson61e57a82010-03-29 21:43:18 +00001789
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001790 /*
1791 * The core I2C driver will automatically retry the transfer if the
Chris Wilson4819d2e2011-03-15 11:04:41 +00001792 * adapter reports EAGAIN. However, we find that bit-banging transfers
1793 * are susceptible to errors under a heavily loaded machine and
1794 * generate spurious NAKs and timeouts. Retrying the transfer
1795 * of the individual block a few times seems to overcome this.
1796 */
1797 do {
1798 struct i2c_msg msgs[] = {
1799 {
Shirish Scd004b32012-08-30 07:04:06 +00001800 .addr = DDC_SEGMENT_ADDR,
1801 .flags = 0,
1802 .len = 1,
1803 .buf = &segment,
1804 }, {
Chris Wilson4819d2e2011-03-15 11:04:41 +00001805 .addr = DDC_ADDR,
1806 .flags = 0,
1807 .len = 1,
1808 .buf = &start,
1809 }, {
1810 .addr = DDC_ADDR,
1811 .flags = I2C_M_RD,
1812 .len = len,
1813 .buf = buf,
1814 }
1815 };
Shirish Scd004b32012-08-30 07:04:06 +00001816
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001817 /*
1818 * Avoid sending the segment addr to not upset non-compliant
1819 * DDC monitors.
1820 */
Shirish Scd004b32012-08-30 07:04:06 +00001821 ret = i2c_transfer(adapter, &msgs[3 - xfers], xfers);
1822
Eugeni Dodonov9292f372012-01-05 09:34:28 -02001823 if (ret == -ENXIO) {
1824 DRM_DEBUG_KMS("drm: skipping non-existent adapter %s\n",
1825 adapter->name);
1826 break;
1827 }
Shirish Scd004b32012-08-30 07:04:06 +00001828 } while (ret != xfers && --retries);
Adam Jackson61e57a82010-03-29 21:43:18 +00001829
Shirish Scd004b32012-08-30 07:04:06 +00001830 return ret == xfers ? 0 : -1;
Adam Jackson61e57a82010-03-29 21:43:18 +00001831}
1832
Chris Wilson14544d02016-10-24 12:38:21 +01001833static void connector_bad_edid(struct drm_connector *connector,
1834 u8 *edid, int num_blocks)
1835{
1836 int i;
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001837 u8 num_of_ext = edid[0x7e];
1838
1839 /* Calculate real checksum for the last edid extension block data */
1840 connector->real_edid_checksum =
1841 drm_edid_block_checksum(edid + num_of_ext * EDID_LENGTH);
Chris Wilson14544d02016-10-24 12:38:21 +01001842
Jani Nikulaf0a8f532019-10-01 17:06:14 +03001843 if (connector->bad_edid_counter++ && !drm_debug_enabled(DRM_UT_KMS))
Chris Wilson14544d02016-10-24 12:38:21 +01001844 return;
1845
1846 dev_warn(connector->dev->dev,
1847 "%s: EDID is invalid:\n",
1848 connector->name);
1849 for (i = 0; i < num_blocks; i++) {
1850 u8 *block = edid + i * EDID_LENGTH;
1851 char prefix[20];
1852
1853 if (drm_edid_is_zero(block, EDID_LENGTH))
1854 sprintf(prefix, "\t[%02x] ZERO ", i);
1855 else if (!drm_edid_block_valid(block, i, false, NULL))
1856 sprintf(prefix, "\t[%02x] BAD ", i);
1857 else
1858 sprintf(prefix, "\t[%02x] GOOD ", i);
1859
1860 print_hex_dump(KERN_WARNING,
1861 prefix, DUMP_PREFIX_NONE, 16, 1,
1862 block, EDID_LENGTH, false);
1863 }
1864}
1865
Jani Nikula56a2b7f2019-06-07 14:05:12 +03001866/* Get override or firmware EDID */
1867static struct edid *drm_get_override_edid(struct drm_connector *connector)
1868{
1869 struct edid *override = NULL;
1870
1871 if (connector->override_edid)
1872 override = drm_edid_duplicate(connector->edid_blob_ptr->data);
1873
1874 if (!override)
1875 override = drm_load_edid_firmware(connector);
1876
1877 return IS_ERR(override) ? NULL : override;
1878}
1879
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001880/**
Jani Nikula48eaeb72019-06-10 12:30:54 +03001881 * drm_add_override_edid_modes - add modes from override/firmware EDID
1882 * @connector: connector we're probing
1883 *
1884 * Add modes from the override/firmware EDID, if available. Only to be used from
1885 * drm_helper_probe_single_connector_modes() as a fallback for when DDC probe
1886 * failed during drm_get_edid() and caused the override/firmware EDID to be
1887 * skipped.
1888 *
1889 * Return: The number of modes added or 0 if we couldn't find any.
1890 */
1891int drm_add_override_edid_modes(struct drm_connector *connector)
1892{
1893 struct edid *override;
1894 int num_modes = 0;
1895
1896 override = drm_get_override_edid(connector);
1897 if (override) {
1898 drm_connector_update_edid_property(connector, override);
1899 num_modes = drm_add_edid_modes(connector, override);
1900 kfree(override);
1901
1902 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] adding %d modes via fallback override/firmware EDID\n",
1903 connector->base.id, connector->name, num_modes);
1904 }
1905
1906 return num_modes;
1907}
1908EXPORT_SYMBOL(drm_add_override_edid_modes);
1909
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001910/**
1911 * drm_do_get_edid - get EDID data using a custom EDID block read function
1912 * @connector: connector we're probing
1913 * @get_edid_block: EDID block read function
1914 * @data: private data passed to the block read function
1915 *
1916 * When the I2C adapter connected to the DDC bus is hidden behind a device that
1917 * exposes a different interface to read EDID blocks this function can be used
1918 * to get EDID data using a custom block read function.
1919 *
1920 * As in the general case the DDC bus is accessible by the kernel at the I2C
1921 * level, drivers must make all reasonable efforts to expose it as an I2C
1922 * adapter and use drm_get_edid() instead of abusing this function.
1923 *
Jani Nikula53fd40a2017-09-12 11:19:26 +03001924 * The EDID may be overridden using debugfs override_edid or firmare EDID
1925 * (drm_load_edid_firmware() and drm.edid_firmware parameter), in this priority
1926 * order. Having either of them bypasses actual EDID reads.
1927 *
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001928 * Return: Pointer to valid EDID or NULL if we couldn't find any.
1929 */
1930struct edid *drm_do_get_edid(struct drm_connector *connector,
1931 int (*get_edid_block)(void *data, u8 *buf, unsigned int block,
1932 size_t len),
1933 void *data)
Adam Jackson61e57a82010-03-29 21:43:18 +00001934{
Sam Tygier0ea75e22010-09-23 10:11:01 +01001935 int i, j = 0, valid_extensions = 0;
Chris Wilsonf14f3682016-10-17 09:35:12 +01001936 u8 *edid, *new;
Jani Nikula56a2b7f2019-06-07 14:05:12 +03001937 struct edid *override;
Jani Nikula53fd40a2017-09-12 11:19:26 +03001938
Jani Nikula56a2b7f2019-06-07 14:05:12 +03001939 override = drm_get_override_edid(connector);
1940 if (override)
Jani Nikula53fd40a2017-09-12 11:19:26 +03001941 return override;
Adam Jackson61e57a82010-03-29 21:43:18 +00001942
Chris Wilsonf14f3682016-10-17 09:35:12 +01001943 if ((edid = kmalloc(EDID_LENGTH, GFP_KERNEL)) == NULL)
Adam Jackson61e57a82010-03-29 21:43:18 +00001944 return NULL;
1945
1946 /* base block fetch */
1947 for (i = 0; i < 4; i++) {
Chris Wilsonf14f3682016-10-17 09:35:12 +01001948 if (get_edid_block(data, edid, 0, EDID_LENGTH))
Adam Jackson61e57a82010-03-29 21:43:18 +00001949 goto out;
Chris Wilson14544d02016-10-24 12:38:21 +01001950 if (drm_edid_block_valid(edid, 0, false,
Todd Previte6ba2bd32015-04-21 11:09:41 -07001951 &connector->edid_corrupt))
Adam Jackson61e57a82010-03-29 21:43:18 +00001952 break;
Chris Wilsonf14f3682016-10-17 09:35:12 +01001953 if (i == 0 && drm_edid_is_zero(edid, EDID_LENGTH)) {
Dave Airlie4a9a8b72011-06-14 06:13:55 +00001954 connector->null_edid_counter++;
1955 goto carp;
1956 }
Adam Jackson61e57a82010-03-29 21:43:18 +00001957 }
1958 if (i == 4)
1959 goto carp;
1960
1961 /* if there's no extensions, we're done */
Chris Wilson14544d02016-10-24 12:38:21 +01001962 valid_extensions = edid[0x7e];
1963 if (valid_extensions == 0)
Chris Wilsonf14f3682016-10-17 09:35:12 +01001964 return (struct edid *)edid;
Adam Jackson61e57a82010-03-29 21:43:18 +00001965
Chris Wilson14544d02016-10-24 12:38:21 +01001966 new = krealloc(edid, (valid_extensions + 1) * EDID_LENGTH, GFP_KERNEL);
Adam Jackson61e57a82010-03-29 21:43:18 +00001967 if (!new)
1968 goto out;
Chris Wilsonf14f3682016-10-17 09:35:12 +01001969 edid = new;
Adam Jackson61e57a82010-03-29 21:43:18 +00001970
Chris Wilsonf14f3682016-10-17 09:35:12 +01001971 for (j = 1; j <= edid[0x7e]; j++) {
Chris Wilson14544d02016-10-24 12:38:21 +01001972 u8 *block = edid + j * EDID_LENGTH;
Chris Wilsona28187c2016-10-17 09:35:13 +01001973
Adam Jackson61e57a82010-03-29 21:43:18 +00001974 for (i = 0; i < 4; i++) {
Chris Wilsona28187c2016-10-17 09:35:13 +01001975 if (get_edid_block(data, block, j, EDID_LENGTH))
Adam Jackson61e57a82010-03-29 21:43:18 +00001976 goto out;
Chris Wilson14544d02016-10-24 12:38:21 +01001977 if (drm_edid_block_valid(block, j, false, NULL))
Adam Jackson61e57a82010-03-29 21:43:18 +00001978 break;
1979 }
Maarten Lankhorstf934ec8c2013-01-29 14:27:39 +01001980
Chris Wilson14544d02016-10-24 12:38:21 +01001981 if (i == 4)
1982 valid_extensions--;
Sam Tygier0ea75e22010-09-23 10:11:01 +01001983 }
1984
Chris Wilsonf14f3682016-10-17 09:35:12 +01001985 if (valid_extensions != edid[0x7e]) {
Chris Wilson14544d02016-10-24 12:38:21 +01001986 u8 *base;
1987
1988 connector_bad_edid(connector, edid, edid[0x7e] + 1);
1989
Chris Wilsonf14f3682016-10-17 09:35:12 +01001990 edid[EDID_LENGTH-1] += edid[0x7e] - valid_extensions;
1991 edid[0x7e] = valid_extensions;
Chris Wilson14544d02016-10-24 12:38:21 +01001992
Kees Cook6da2ec52018-06-12 13:55:00 -07001993 new = kmalloc_array(valid_extensions + 1, EDID_LENGTH,
1994 GFP_KERNEL);
Sam Tygier0ea75e22010-09-23 10:11:01 +01001995 if (!new)
1996 goto out;
Chris Wilson14544d02016-10-24 12:38:21 +01001997
1998 base = new;
1999 for (i = 0; i <= edid[0x7e]; i++) {
2000 u8 *block = edid + i * EDID_LENGTH;
2001
2002 if (!drm_edid_block_valid(block, i, false, NULL))
2003 continue;
2004
2005 memcpy(base, block, EDID_LENGTH);
2006 base += EDID_LENGTH;
2007 }
2008
2009 kfree(edid);
Chris Wilsonf14f3682016-10-17 09:35:12 +01002010 edid = new;
Adam Jackson61e57a82010-03-29 21:43:18 +00002011 }
2012
Chris Wilsonf14f3682016-10-17 09:35:12 +01002013 return (struct edid *)edid;
Adam Jackson61e57a82010-03-29 21:43:18 +00002014
2015carp:
Chris Wilson14544d02016-10-24 12:38:21 +01002016 connector_bad_edid(connector, edid, 1);
Adam Jackson61e57a82010-03-29 21:43:18 +00002017out:
Chris Wilsonf14f3682016-10-17 09:35:12 +01002018 kfree(edid);
Adam Jackson61e57a82010-03-29 21:43:18 +00002019 return NULL;
2020}
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02002021EXPORT_SYMBOL_GPL(drm_do_get_edid);
Adam Jackson61e57a82010-03-29 21:43:18 +00002022
2023/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002024 * drm_probe_ddc() - probe DDC presence
2025 * @adapter: I2C adapter to probe
Adam Jackson61e57a82010-03-29 21:43:18 +00002026 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002027 * Return: True on success, false on failure.
Adam Jackson61e57a82010-03-29 21:43:18 +00002028 */
Adam Jacksonfbff4692012-09-18 10:58:47 -04002029bool
Adam Jackson61e57a82010-03-29 21:43:18 +00002030drm_probe_ddc(struct i2c_adapter *adapter)
2031{
2032 unsigned char out;
2033
2034 return (drm_do_probe_ddc_edid(adapter, &out, 0, 1) == 0);
2035}
Adam Jacksonfbff4692012-09-18 10:58:47 -04002036EXPORT_SYMBOL(drm_probe_ddc);
Adam Jackson61e57a82010-03-29 21:43:18 +00002037
2038/**
2039 * drm_get_edid - get EDID data, if available
2040 * @connector: connector we're probing
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002041 * @adapter: I2C adapter to use for DDC
Adam Jackson61e57a82010-03-29 21:43:18 +00002042 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002043 * Poke the given I2C channel to grab EDID data if possible. If found,
Adam Jackson61e57a82010-03-29 21:43:18 +00002044 * attach it to the connector.
2045 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002046 * Return: Pointer to valid EDID or NULL if we couldn't find any.
Adam Jackson61e57a82010-03-29 21:43:18 +00002047 */
2048struct edid *drm_get_edid(struct drm_connector *connector,
2049 struct i2c_adapter *adapter)
2050{
Stanislav Lisovskiy51864212020-06-30 05:56:59 +05302051 struct edid *edid;
2052
Jani Nikula15f080f2017-02-17 17:20:53 +02002053 if (connector->force == DRM_FORCE_OFF)
2054 return NULL;
2055
2056 if (connector->force == DRM_FORCE_UNSPECIFIED && !drm_probe_ddc(adapter))
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02002057 return NULL;
Adam Jackson61e57a82010-03-29 21:43:18 +00002058
Stanislav Lisovskiy51864212020-06-30 05:56:59 +05302059 edid = drm_do_get_edid(connector, drm_do_probe_ddc_edid, adapter);
2060 drm_connector_update_edid_property(connector, edid);
2061 return edid;
Adam Jackson61e57a82010-03-29 21:43:18 +00002062}
2063EXPORT_SYMBOL(drm_get_edid);
2064
Jani Nikula51f8da52013-09-27 15:08:27 +03002065/**
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +01002066 * drm_get_edid_switcheroo - get EDID data for a vga_switcheroo output
2067 * @connector: connector we're probing
2068 * @adapter: I2C adapter to use for DDC
2069 *
2070 * Wrapper around drm_get_edid() for laptops with dual GPUs using one set of
2071 * outputs. The wrapper adds the requisite vga_switcheroo calls to temporarily
2072 * switch DDC to the GPU which is retrieving EDID.
2073 *
2074 * Return: Pointer to valid EDID or %NULL if we couldn't find any.
2075 */
2076struct edid *drm_get_edid_switcheroo(struct drm_connector *connector,
2077 struct i2c_adapter *adapter)
2078{
2079 struct pci_dev *pdev = connector->dev->pdev;
2080 struct edid *edid;
2081
2082 vga_switcheroo_lock_ddc(pdev);
2083 edid = drm_get_edid(connector, adapter);
2084 vga_switcheroo_unlock_ddc(pdev);
2085
2086 return edid;
2087}
2088EXPORT_SYMBOL(drm_get_edid_switcheroo);
2089
2090/**
Jani Nikula51f8da52013-09-27 15:08:27 +03002091 * drm_edid_duplicate - duplicate an EDID and the extensions
2092 * @edid: EDID to duplicate
2093 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002094 * Return: Pointer to duplicated EDID or NULL on allocation failure.
Jani Nikula51f8da52013-09-27 15:08:27 +03002095 */
2096struct edid *drm_edid_duplicate(const struct edid *edid)
2097{
2098 return kmemdup(edid, (edid->extensions + 1) * EDID_LENGTH, GFP_KERNEL);
2099}
2100EXPORT_SYMBOL(drm_edid_duplicate);
2101
Adam Jackson61e57a82010-03-29 21:43:18 +00002102/*** EDID parsing ***/
2103
Dave Airlief453ba02008-11-07 14:05:41 -08002104/**
2105 * edid_vendor - match a string against EDID's obfuscated vendor field
2106 * @edid: EDID to match
2107 * @vendor: vendor string
2108 *
2109 * Returns true if @vendor is in @edid, false otherwise
2110 */
Keith Packard170178f2017-12-13 00:44:26 -08002111static bool edid_vendor(const struct edid *edid, const char *vendor)
Dave Airlief453ba02008-11-07 14:05:41 -08002112{
2113 char edid_vendor[3];
2114
2115 edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
2116 edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
2117 ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
Dave Airlie16456c82009-04-03 09:10:33 +10002118 edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
Dave Airlief453ba02008-11-07 14:05:41 -08002119
2120 return !strncmp(edid_vendor, vendor, 3);
2121}
2122
2123/**
2124 * edid_get_quirks - return quirk flags for a given EDID
2125 * @edid: EDID to process
2126 *
2127 * This tells subsequent routines what fixes they need to apply.
2128 */
Keith Packard170178f2017-12-13 00:44:26 -08002129static u32 edid_get_quirks(const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08002130{
Jani Nikula23c4cfb2016-12-28 13:06:26 +02002131 const struct edid_quirk *quirk;
Dave Airlief453ba02008-11-07 14:05:41 -08002132 int i;
2133
2134 for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
2135 quirk = &edid_quirk_list[i];
2136
2137 if (edid_vendor(edid, quirk->vendor) &&
2138 (EDID_PRODUCT_ID(edid) == quirk->product_id))
2139 return quirk->quirks;
2140 }
2141
2142 return 0;
2143}
2144
2145#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
Alex Deucher339d2022013-08-15 11:42:14 -04002146#define MODE_REFRESH_DIFF(c,t) (abs((c) - (t)))
Dave Airlief453ba02008-11-07 14:05:41 -08002147
Dave Airlief453ba02008-11-07 14:05:41 -08002148/**
2149 * edid_fixup_preferred - set preferred modes based on quirk list
2150 * @connector: has mode list to fix up
2151 * @quirks: quirks list
2152 *
2153 * Walk the mode list for @connector, clearing the preferred status
2154 * on existing modes and setting it anew for the right mode ala @quirks.
2155 */
2156static void edid_fixup_preferred(struct drm_connector *connector,
2157 u32 quirks)
2158{
2159 struct drm_display_mode *t, *cur_mode, *preferred_mode;
Dave Airlief8906072008-12-18 16:59:02 +10002160 int target_refresh = 0;
Alex Deucher339d2022013-08-15 11:42:14 -04002161 int cur_vrefresh, preferred_vrefresh;
Dave Airlief453ba02008-11-07 14:05:41 -08002162
2163 if (list_empty(&connector->probed_modes))
2164 return;
2165
2166 if (quirks & EDID_QUIRK_PREFER_LARGE_60)
2167 target_refresh = 60;
2168 if (quirks & EDID_QUIRK_PREFER_LARGE_75)
2169 target_refresh = 75;
2170
2171 preferred_mode = list_first_entry(&connector->probed_modes,
2172 struct drm_display_mode, head);
2173
2174 list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
2175 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
2176
2177 if (cur_mode == preferred_mode)
2178 continue;
2179
2180 /* Largest mode is preferred */
2181 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
2182 preferred_mode = cur_mode;
2183
Ville Syrjälä04256622020-04-28 20:19:27 +03002184 cur_vrefresh = drm_mode_vrefresh(cur_mode);
2185 preferred_vrefresh = drm_mode_vrefresh(preferred_mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002186 /* At a given size, try to get closest to target refresh */
2187 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
Alex Deucher339d2022013-08-15 11:42:14 -04002188 MODE_REFRESH_DIFF(cur_vrefresh, target_refresh) <
2189 MODE_REFRESH_DIFF(preferred_vrefresh, target_refresh)) {
Dave Airlief453ba02008-11-07 14:05:41 -08002190 preferred_mode = cur_mode;
2191 }
2192 }
2193
2194 preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
2195}
2196
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002197static bool
2198mode_is_rb(const struct drm_display_mode *mode)
2199{
2200 return (mode->htotal - mode->hdisplay == 160) &&
2201 (mode->hsync_end - mode->hdisplay == 80) &&
2202 (mode->hsync_end - mode->hsync_start == 32) &&
2203 (mode->vsync_start - mode->vdisplay == 3);
2204}
2205
Adam Jackson33c75312012-04-13 16:33:29 -04002206/*
2207 * drm_mode_find_dmt - Create a copy of a mode if present in DMT
2208 * @dev: Device to duplicate against
2209 * @hsize: Mode width
2210 * @vsize: Mode height
2211 * @fresh: Mode refresh rate
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002212 * @rb: Mode reduced-blanking-ness
Adam Jackson33c75312012-04-13 16:33:29 -04002213 *
2214 * Walk the DMT mode list looking for a match for the given parameters.
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002215 *
2216 * Return: A newly allocated copy of the mode, or NULL if not found.
Adam Jackson33c75312012-04-13 16:33:29 -04002217 */
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002218struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002219 int hsize, int vsize, int fresh,
2220 bool rb)
Zhao Yakui559ee212009-09-03 09:33:47 +08002221{
Adam Jackson07a5e632009-12-03 17:44:38 -05002222 int i;
Zhao Yakui559ee212009-09-03 09:33:47 +08002223
Thierry Redinga6b21832012-11-23 15:01:42 +01002224 for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002225 const struct drm_display_mode *ptr = &drm_dmt_modes[i];
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002226 if (hsize != ptr->hdisplay)
2227 continue;
2228 if (vsize != ptr->vdisplay)
2229 continue;
2230 if (fresh != drm_mode_vrefresh(ptr))
2231 continue;
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002232 if (rb != mode_is_rb(ptr))
2233 continue;
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002234
2235 return drm_mode_duplicate(dev, ptr);
Zhao Yakui559ee212009-09-03 09:33:47 +08002236 }
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002237
2238 return NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +08002239}
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002240EXPORT_SYMBOL(drm_mode_find_dmt);
Adam Jackson23425ca2009-09-23 17:30:58 -04002241
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002242static bool is_display_descriptor(const u8 d[18], u8 tag)
2243{
2244 return d[0] == 0x00 && d[1] == 0x00 &&
2245 d[2] == 0x00 && d[3] == tag;
2246}
2247
Ville Syrjäläf447dd12020-01-24 22:02:26 +02002248static bool is_detailed_timing_descriptor(const u8 d[18])
2249{
2250 return d[0] != 0x00 || d[1] != 0x00;
2251}
2252
Adam Jacksond1ff6402010-03-29 21:43:26 +00002253typedef void detailed_cb(struct detailed_timing *timing, void *closure);
2254
2255static void
Adam Jackson4d76a222010-08-03 14:38:17 -04002256cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
2257{
Ville Syrjälä7304b982020-01-24 22:02:24 +02002258 int i, n;
Christian Schmidt4966b2a2011-12-19 20:03:43 +01002259 u8 d = ext[0x02];
Adam Jackson4d76a222010-08-03 14:38:17 -04002260 u8 *det_base = ext + d;
2261
Ville Syrjälä7304b982020-01-24 22:02:24 +02002262 if (d < 4 || d > 127)
2263 return;
2264
Christian Schmidt4966b2a2011-12-19 20:03:43 +01002265 n = (127 - d) / 18;
Adam Jackson4d76a222010-08-03 14:38:17 -04002266 for (i = 0; i < n; i++)
2267 cb((struct detailed_timing *)(det_base + 18 * i), closure);
2268}
2269
2270static void
Adam Jacksoncbba98f2010-08-03 14:38:18 -04002271vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
2272{
2273 unsigned int i, n = min((int)ext[0x02], 6);
2274 u8 *det_base = ext + 5;
2275
2276 if (ext[0x01] != 1)
2277 return; /* unknown version */
2278
2279 for (i = 0; i < n; i++)
2280 cb((struct detailed_timing *)(det_base + 18 * i), closure);
2281}
2282
2283static void
Adam Jacksond1ff6402010-03-29 21:43:26 +00002284drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure)
2285{
2286 int i;
2287 struct edid *edid = (struct edid *)raw_edid;
2288
2289 if (edid == NULL)
2290 return;
2291
2292 for (i = 0; i < EDID_DETAILED_TIMINGS; i++)
2293 cb(&(edid->detailed_timings[i]), closure);
2294
Adam Jackson4d76a222010-08-03 14:38:17 -04002295 for (i = 1; i <= raw_edid[0x7e]; i++) {
2296 u8 *ext = raw_edid + (i * EDID_LENGTH);
2297 switch (*ext) {
2298 case CEA_EXT:
2299 cea_for_each_detailed_block(ext, cb, closure);
2300 break;
Adam Jacksoncbba98f2010-08-03 14:38:18 -04002301 case VTB_EXT:
2302 vtb_for_each_detailed_block(ext, cb, closure);
2303 break;
Adam Jackson4d76a222010-08-03 14:38:17 -04002304 default:
2305 break;
2306 }
2307 }
Adam Jacksond1ff6402010-03-29 21:43:26 +00002308}
2309
2310static void
2311is_rb(struct detailed_timing *t, void *data)
2312{
2313 u8 *r = (u8 *)t;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002314
2315 if (!is_display_descriptor(r, EDID_DETAIL_MONITOR_RANGE))
2316 return;
2317
2318 if (r[15] & 0x10)
2319 *(bool *)data = true;
Adam Jacksond1ff6402010-03-29 21:43:26 +00002320}
2321
2322/* EDID 1.4 defines this explicitly. For EDID 1.3, we guess, badly. */
2323static bool
2324drm_monitor_supports_rb(struct edid *edid)
2325{
2326 if (edid->revision >= 4) {
Daniel Vetterb196a492012-06-19 11:33:06 +02002327 bool ret = false;
Adam Jacksond1ff6402010-03-29 21:43:26 +00002328 drm_for_each_detailed_block((u8 *)edid, is_rb, &ret);
2329 return ret;
2330 }
2331
2332 return ((edid->input & DRM_EDID_INPUT_DIGITAL) != 0);
2333}
2334
Adam Jackson7a374352010-03-29 21:43:30 +00002335static void
2336find_gtf2(struct detailed_timing *t, void *data)
2337{
2338 u8 *r = (u8 *)t;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002339
2340 if (!is_display_descriptor(r, EDID_DETAIL_MONITOR_RANGE))
2341 return;
2342
2343 if (r[10] == 0x02)
Adam Jackson7a374352010-03-29 21:43:30 +00002344 *(u8 **)data = r;
2345}
2346
2347/* Secondary GTF curve kicks in above some break frequency */
2348static int
2349drm_gtf2_hbreak(struct edid *edid)
2350{
2351 u8 *r = NULL;
2352 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2353 return r ? (r[12] * 2) : 0;
2354}
2355
2356static int
2357drm_gtf2_2c(struct edid *edid)
2358{
2359 u8 *r = NULL;
2360 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2361 return r ? r[13] : 0;
2362}
2363
2364static int
2365drm_gtf2_m(struct edid *edid)
2366{
2367 u8 *r = NULL;
2368 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2369 return r ? (r[15] << 8) + r[14] : 0;
2370}
2371
2372static int
2373drm_gtf2_k(struct edid *edid)
2374{
2375 u8 *r = NULL;
2376 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2377 return r ? r[16] : 0;
2378}
2379
2380static int
2381drm_gtf2_2j(struct edid *edid)
2382{
2383 u8 *r = NULL;
2384 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2385 return r ? r[17] : 0;
2386}
2387
2388/**
2389 * standard_timing_level - get std. timing level(CVT/GTF/DMT)
2390 * @edid: EDID block to scan
2391 */
2392static int standard_timing_level(struct edid *edid)
2393{
2394 if (edid->revision >= 2) {
2395 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
2396 return LEVEL_CVT;
2397 if (drm_gtf2_hbreak(edid))
2398 return LEVEL_GTF2;
Lee Shawn Cbfef04a2019-10-07 21:51:27 +08002399 if (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF)
2400 return LEVEL_GTF;
Adam Jackson7a374352010-03-29 21:43:30 +00002401 }
2402 return LEVEL_DMT;
2403}
2404
Adam Jackson23425ca2009-09-23 17:30:58 -04002405/*
2406 * 0 is reserved. The spec says 0x01 fill for unused timings. Some old
2407 * monitors fill with ascii space (0x20) instead.
2408 */
2409static int
2410bad_std_timing(u8 a, u8 b)
2411{
2412 return (a == 0x00 && b == 0x00) ||
2413 (a == 0x01 && b == 0x01) ||
2414 (a == 0x20 && b == 0x20);
2415}
2416
Ville Syrjälä58911c22020-04-28 20:19:25 +03002417static int drm_mode_hsync(const struct drm_display_mode *mode)
2418{
2419 if (mode->htotal <= 0)
2420 return 0;
2421
2422 return DIV_ROUND_CLOSEST(mode->clock, mode->htotal);
2423}
2424
Dave Airlief453ba02008-11-07 14:05:41 -08002425/**
2426 * drm_mode_std - convert standard mode info (width, height, refresh) into mode
Daniel Vetterfc668112014-01-21 12:02:26 +01002427 * @connector: connector of for the EDID block
2428 * @edid: EDID block to scan
Dave Airlief453ba02008-11-07 14:05:41 -08002429 * @t: standard timing params
2430 *
2431 * Take the standard timing params (in this case width, aspect, and refresh)
Zhao Yakui5c612592009-06-22 13:17:10 +08002432 * and convert them into a real mode using CVT/GTF/DMT.
Dave Airlief453ba02008-11-07 14:05:41 -08002433 */
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002434static struct drm_display_mode *
Adam Jackson7a374352010-03-29 21:43:30 +00002435drm_mode_std(struct drm_connector *connector, struct edid *edid,
Thierry Reding464fdec2014-04-29 11:44:33 +02002436 struct std_timing *t)
Dave Airlief453ba02008-11-07 14:05:41 -08002437{
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002438 struct drm_device *dev = connector->dev;
2439 struct drm_display_mode *m, *mode = NULL;
Zhao Yakui5c612592009-06-22 13:17:10 +08002440 int hsize, vsize;
2441 int vrefresh_rate;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002442 unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
2443 >> EDID_TIMING_ASPECT_SHIFT;
Zhao Yakui5c612592009-06-22 13:17:10 +08002444 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
2445 >> EDID_TIMING_VFREQ_SHIFT;
Adam Jackson7a374352010-03-29 21:43:30 +00002446 int timing_level = standard_timing_level(edid);
Dave Airlief453ba02008-11-07 14:05:41 -08002447
Adam Jackson23425ca2009-09-23 17:30:58 -04002448 if (bad_std_timing(t->hsize, t->vfreq_aspect))
2449 return NULL;
2450
Zhao Yakui5c612592009-06-22 13:17:10 +08002451 /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
2452 hsize = t->hsize * 8 + 248;
2453 /* vrefresh_rate = vfreq + 60 */
2454 vrefresh_rate = vfreq + 60;
2455 /* the vdisplay is calculated based on the aspect ratio */
Adam Jacksonf066a172009-09-23 17:31:21 -04002456 if (aspect_ratio == 0) {
Thierry Reding464fdec2014-04-29 11:44:33 +02002457 if (edid->revision < 3)
Adam Jacksonf066a172009-09-23 17:31:21 -04002458 vsize = hsize;
2459 else
2460 vsize = (hsize * 10) / 16;
2461 } else if (aspect_ratio == 1)
Dave Airlief453ba02008-11-07 14:05:41 -08002462 vsize = (hsize * 3) / 4;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002463 else if (aspect_ratio == 2)
Dave Airlief453ba02008-11-07 14:05:41 -08002464 vsize = (hsize * 4) / 5;
2465 else
2466 vsize = (hsize * 9) / 16;
Adam Jacksona0910c82010-03-29 21:43:28 +00002467
2468 /* HDTV hack, part 1 */
2469 if (vrefresh_rate == 60 &&
2470 ((hsize == 1360 && vsize == 765) ||
2471 (hsize == 1368 && vsize == 769))) {
2472 hsize = 1366;
2473 vsize = 768;
2474 }
2475
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002476 /*
2477 * If this connector already has a mode for this size and refresh
2478 * rate (because it came from detailed or CVT info), use that
2479 * instead. This way we don't have to guess at interlace or
2480 * reduced blanking.
2481 */
Adam Jackson522032d2010-04-09 16:52:49 +00002482 list_for_each_entry(m, &connector->probed_modes, head)
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002483 if (m->hdisplay == hsize && m->vdisplay == vsize &&
2484 drm_mode_vrefresh(m) == vrefresh_rate)
2485 return NULL;
2486
Adam Jacksona0910c82010-03-29 21:43:28 +00002487 /* HDTV hack, part 2 */
2488 if (hsize == 1366 && vsize == 768 && vrefresh_rate == 60) {
2489 mode = drm_cvt_mode(dev, 1366, 768, vrefresh_rate, 0, 0,
Dave Airlied50ba252009-09-23 14:44:08 +10002490 false);
Joe Moriartya5ef6562018-02-12 14:51:43 -05002491 if (!mode)
2492 return NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +08002493 mode->hdisplay = 1366;
Adam Jacksona4967de62010-07-28 07:40:32 +10002494 mode->hsync_start = mode->hsync_start - 1;
2495 mode->hsync_end = mode->hsync_end - 1;
Zhao Yakui559ee212009-09-03 09:33:47 +08002496 return mode;
2497 }
Adam Jacksona0910c82010-03-29 21:43:28 +00002498
Zhao Yakui559ee212009-09-03 09:33:47 +08002499 /* check whether it can be found in default mode table */
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002500 if (drm_monitor_supports_rb(edid)) {
2501 mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate,
2502 true);
2503 if (mode)
2504 return mode;
2505 }
2506 mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate, false);
Zhao Yakui559ee212009-09-03 09:33:47 +08002507 if (mode)
2508 return mode;
2509
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002510 /* okay, generate it */
Zhao Yakui5c612592009-06-22 13:17:10 +08002511 switch (timing_level) {
2512 case LEVEL_DMT:
Zhao Yakui5c612592009-06-22 13:17:10 +08002513 break;
2514 case LEVEL_GTF:
2515 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
2516 break;
Adam Jackson7a374352010-03-29 21:43:30 +00002517 case LEVEL_GTF2:
2518 /*
2519 * This is potentially wrong if there's ever a monitor with
2520 * more than one ranges section, each claiming a different
2521 * secondary GTF curve. Please don't do that.
2522 */
2523 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002524 if (!mode)
2525 return NULL;
Adam Jackson7a374352010-03-29 21:43:30 +00002526 if (drm_mode_hsync(mode) > drm_gtf2_hbreak(edid)) {
Sascha Haueraefd3302012-02-01 11:38:21 +01002527 drm_mode_destroy(dev, mode);
Adam Jackson7a374352010-03-29 21:43:30 +00002528 mode = drm_gtf_mode_complex(dev, hsize, vsize,
2529 vrefresh_rate, 0, 0,
2530 drm_gtf2_m(edid),
2531 drm_gtf2_2c(edid),
2532 drm_gtf2_k(edid),
2533 drm_gtf2_2j(edid));
2534 }
2535 break;
Zhao Yakui5c612592009-06-22 13:17:10 +08002536 case LEVEL_CVT:
Dave Airlied50ba252009-09-23 14:44:08 +10002537 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
2538 false);
Zhao Yakui5c612592009-06-22 13:17:10 +08002539 break;
2540 }
Dave Airlief453ba02008-11-07 14:05:41 -08002541 return mode;
2542}
2543
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002544/*
2545 * EDID is delightfully ambiguous about how interlaced modes are to be
2546 * encoded. Our internal representation is of frame height, but some
2547 * HDTV detailed timings are encoded as field height.
2548 *
2549 * The format list here is from CEA, in frame size. Technically we
2550 * should be checking refresh rate too. Whatever.
2551 */
2552static void
2553drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
2554 struct detailed_pixel_timing *pt)
2555{
2556 int i;
2557 static const struct {
2558 int w, h;
2559 } cea_interlaced[] = {
2560 { 1920, 1080 },
2561 { 720, 480 },
2562 { 1440, 480 },
2563 { 2880, 480 },
2564 { 720, 576 },
2565 { 1440, 576 },
2566 { 2880, 576 },
2567 };
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002568
2569 if (!(pt->misc & DRM_EDID_PT_INTERLACED))
2570 return;
2571
Kulikov Vasiliy3c581412010-06-28 15:54:52 +04002572 for (i = 0; i < ARRAY_SIZE(cea_interlaced); i++) {
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002573 if ((mode->hdisplay == cea_interlaced[i].w) &&
2574 (mode->vdisplay == cea_interlaced[i].h / 2)) {
2575 mode->vdisplay *= 2;
2576 mode->vsync_start *= 2;
2577 mode->vsync_end *= 2;
2578 mode->vtotal *= 2;
2579 mode->vtotal |= 1;
2580 }
2581 }
2582
2583 mode->flags |= DRM_MODE_FLAG_INTERLACE;
2584}
2585
Dave Airlief453ba02008-11-07 14:05:41 -08002586/**
2587 * drm_mode_detailed - create a new mode from an EDID detailed timing section
2588 * @dev: DRM device (needed to create new mode)
2589 * @edid: EDID block
2590 * @timing: EDID detailed timing info
2591 * @quirks: quirks to apply
2592 *
2593 * An EDID detailed timing block contains enough info for us to create and
2594 * return a new struct drm_display_mode.
2595 */
2596static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
2597 struct edid *edid,
2598 struct detailed_timing *timing,
2599 u32 quirks)
2600{
2601 struct drm_display_mode *mode;
2602 struct detailed_pixel_timing *pt = &timing->data.pixel_data;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002603 unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
2604 unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
2605 unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
2606 unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
Michel Dänzere14cbee2009-06-23 12:36:32 +02002607 unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
2608 unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo;
Torsten Duwe16dad1d2013-03-23 15:38:22 +01002609 unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) << 2 | pt->vsync_offset_pulse_width_lo >> 4;
Michel Dänzere14cbee2009-06-23 12:36:32 +02002610 unsigned vsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x3) << 4 | (pt->vsync_offset_pulse_width_lo & 0xf);
Dave Airlief453ba02008-11-07 14:05:41 -08002611
Adam Jacksonfc438962009-06-04 10:20:34 +10002612 /* ignore tiny modes */
Michel Dänzer0454bea2009-06-15 16:56:07 +02002613 if (hactive < 64 || vactive < 64)
Adam Jacksonfc438962009-06-04 10:20:34 +10002614 return NULL;
2615
Michel Dänzer0454bea2009-06-15 16:56:07 +02002616 if (pt->misc & DRM_EDID_PT_STEREO) {
Egbert Eichc7d015f32013-06-13 21:01:19 +02002617 DRM_DEBUG_KMS("stereo mode not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002618 return NULL;
2619 }
Michel Dänzer0454bea2009-06-15 16:56:07 +02002620 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
Egbert Eichc7d015f32013-06-13 21:01:19 +02002621 DRM_DEBUG_KMS("composite sync not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002622 }
2623
Zhao Yakuifcb45612009-10-14 09:11:25 +08002624 /* it is incorrect if hsync/vsync width is zero */
2625 if (!hsync_pulse_width || !vsync_pulse_width) {
2626 DRM_DEBUG_KMS("Incorrect Detailed timing. "
2627 "Wrong Hsync/Vsync pulse width\n");
2628 return NULL;
2629 }
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002630
2631 if (quirks & EDID_QUIRK_FORCE_REDUCED_BLANKING) {
2632 mode = drm_cvt_mode(dev, hactive, vactive, 60, true, false, false);
2633 if (!mode)
2634 return NULL;
2635
2636 goto set_size;
2637 }
2638
Dave Airlief453ba02008-11-07 14:05:41 -08002639 mode = drm_mode_create(dev);
2640 if (!mode)
2641 return NULL;
2642
Dave Airlief453ba02008-11-07 14:05:41 -08002643 if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
Michel Dänzer0454bea2009-06-15 16:56:07 +02002644 timing->pixel_clock = cpu_to_le16(1088);
Dave Airlief453ba02008-11-07 14:05:41 -08002645
Michel Dänzer0454bea2009-06-15 16:56:07 +02002646 mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
Dave Airlief453ba02008-11-07 14:05:41 -08002647
Michel Dänzer0454bea2009-06-15 16:56:07 +02002648 mode->hdisplay = hactive;
2649 mode->hsync_start = mode->hdisplay + hsync_offset;
2650 mode->hsync_end = mode->hsync_start + hsync_pulse_width;
2651 mode->htotal = mode->hdisplay + hblank;
Dave Airlief453ba02008-11-07 14:05:41 -08002652
Michel Dänzer0454bea2009-06-15 16:56:07 +02002653 mode->vdisplay = vactive;
2654 mode->vsync_start = mode->vdisplay + vsync_offset;
2655 mode->vsync_end = mode->vsync_start + vsync_pulse_width;
2656 mode->vtotal = mode->vdisplay + vblank;
Dave Airlief453ba02008-11-07 14:05:41 -08002657
Jesse Barnes7064fef2009-11-05 10:12:54 -08002658 /* Some EDIDs have bogus h/vtotal values */
2659 if (mode->hsync_end > mode->htotal)
2660 mode->htotal = mode->hsync_end + 1;
2661 if (mode->vsync_end > mode->vtotal)
2662 mode->vtotal = mode->vsync_end + 1;
2663
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002664 drm_mode_do_interlace_quirk(mode, pt);
Dave Airlief453ba02008-11-07 14:05:41 -08002665
2666 if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
Michel Dänzer0454bea2009-06-15 16:56:07 +02002667 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
Dave Airlief453ba02008-11-07 14:05:41 -08002668 }
2669
Michel Dänzer0454bea2009-06-15 16:56:07 +02002670 mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
2671 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
2672 mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
2673 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
Dave Airlief453ba02008-11-07 14:05:41 -08002674
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002675set_size:
Michel Dänzere14cbee2009-06-23 12:36:32 +02002676 mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
2677 mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
Dave Airlief453ba02008-11-07 14:05:41 -08002678
2679 if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
2680 mode->width_mm *= 10;
2681 mode->height_mm *= 10;
2682 }
2683
2684 if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
2685 mode->width_mm = edid->width_cm * 10;
2686 mode->height_mm = edid->height_cm * 10;
2687 }
2688
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002689 mode->type = DRM_MODE_TYPE_DRIVER;
2690 drm_mode_set_name(mode);
2691
Dave Airlief453ba02008-11-07 14:05:41 -08002692 return mode;
2693}
2694
Adam Jackson07a5e632009-12-03 17:44:38 -05002695static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002696mode_in_hsync_range(const struct drm_display_mode *mode,
2697 struct edid *edid, u8 *t)
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002698{
2699 int hsync, hmin, hmax;
Adam Jackson07a5e632009-12-03 17:44:38 -05002700
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002701 hmin = t[7];
2702 if (edid->revision >= 4)
2703 hmin += ((t[4] & 0x04) ? 255 : 0);
2704 hmax = t[8];
2705 if (edid->revision >= 4)
2706 hmax += ((t[4] & 0x08) ? 255 : 0);
Adam Jackson07a5e632009-12-03 17:44:38 -05002707 hsync = drm_mode_hsync(mode);
Adam Jackson07a5e632009-12-03 17:44:38 -05002708
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002709 return (hsync <= hmax && hsync >= hmin);
2710}
2711
2712static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002713mode_in_vsync_range(const struct drm_display_mode *mode,
2714 struct edid *edid, u8 *t)
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002715{
2716 int vsync, vmin, vmax;
2717
2718 vmin = t[5];
2719 if (edid->revision >= 4)
2720 vmin += ((t[4] & 0x01) ? 255 : 0);
2721 vmax = t[6];
2722 if (edid->revision >= 4)
2723 vmax += ((t[4] & 0x02) ? 255 : 0);
2724 vsync = drm_mode_vrefresh(mode);
2725
2726 return (vsync <= vmax && vsync >= vmin);
2727}
2728
2729static u32
2730range_pixel_clock(struct edid *edid, u8 *t)
2731{
2732 /* unspecified */
2733 if (t[9] == 0 || t[9] == 255)
2734 return 0;
2735
2736 /* 1.4 with CVT support gives us real precision, yay */
2737 if (edid->revision >= 4 && t[10] == 0x04)
2738 return (t[9] * 10000) - ((t[12] >> 2) * 250);
2739
2740 /* 1.3 is pathetic, so fuzz up a bit */
2741 return t[9] * 10000 + 5001;
2742}
2743
Adam Jackson07a5e632009-12-03 17:44:38 -05002744static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002745mode_in_range(const struct drm_display_mode *mode, struct edid *edid,
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002746 struct detailed_timing *timing)
Adam Jackson07a5e632009-12-03 17:44:38 -05002747{
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002748 u32 max_clock;
2749 u8 *t = (u8 *)timing;
Adam Jackson07a5e632009-12-03 17:44:38 -05002750
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002751 if (!mode_in_hsync_range(mode, edid, t))
Adam Jackson07a5e632009-12-03 17:44:38 -05002752 return false;
2753
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002754 if (!mode_in_vsync_range(mode, edid, t))
Adam Jackson07a5e632009-12-03 17:44:38 -05002755 return false;
2756
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002757 if ((max_clock = range_pixel_clock(edid, t)))
Adam Jackson07a5e632009-12-03 17:44:38 -05002758 if (mode->clock > max_clock)
2759 return false;
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002760
2761 /* 1.4 max horizontal check */
2762 if (edid->revision >= 4 && t[10] == 0x04)
2763 if (t[13] && mode->hdisplay > 8 * (t[13] + (256 * (t[12]&0x3))))
2764 return false;
2765
2766 if (mode_is_rb(mode) && !drm_monitor_supports_rb(edid))
2767 return false;
Adam Jackson07a5e632009-12-03 17:44:38 -05002768
2769 return true;
2770}
2771
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002772static bool valid_inferred_mode(const struct drm_connector *connector,
2773 const struct drm_display_mode *mode)
2774{
Ville Syrjälä85f8fcd2015-09-07 18:22:56 +03002775 const struct drm_display_mode *m;
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002776 bool ok = false;
2777
2778 list_for_each_entry(m, &connector->probed_modes, head) {
2779 if (mode->hdisplay == m->hdisplay &&
2780 mode->vdisplay == m->vdisplay &&
2781 drm_mode_vrefresh(mode) == drm_mode_vrefresh(m))
2782 return false; /* duplicated */
2783 if (mode->hdisplay <= m->hdisplay &&
2784 mode->vdisplay <= m->vdisplay)
2785 ok = true;
2786 }
2787 return ok;
2788}
2789
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002790static int
Adam Jacksoncd4cd3d2012-04-13 16:33:33 -04002791drm_dmt_modes_for_range(struct drm_connector *connector, struct edid *edid,
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002792 struct detailed_timing *timing)
Adam Jackson07a5e632009-12-03 17:44:38 -05002793{
2794 int i, modes = 0;
2795 struct drm_display_mode *newmode;
2796 struct drm_device *dev = connector->dev;
2797
Thierry Redinga6b21832012-11-23 15:01:42 +01002798 for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002799 if (mode_in_range(drm_dmt_modes + i, edid, timing) &&
2800 valid_inferred_mode(connector, drm_dmt_modes + i)) {
Adam Jackson07a5e632009-12-03 17:44:38 -05002801 newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
2802 if (newmode) {
2803 drm_mode_probed_add(connector, newmode);
2804 modes++;
2805 }
2806 }
2807 }
2808
2809 return modes;
2810}
2811
Takashi Iwaic09dedb2012-04-23 17:40:33 +01002812/* fix up 1366x768 mode from 1368x768;
2813 * GFT/CVT can't express 1366 width which isn't dividable by 8
2814 */
Takashi Iwai969218f2017-01-17 17:43:29 +01002815void drm_mode_fixup_1366x768(struct drm_display_mode *mode)
Takashi Iwaic09dedb2012-04-23 17:40:33 +01002816{
2817 if (mode->hdisplay == 1368 && mode->vdisplay == 768) {
2818 mode->hdisplay = 1366;
2819 mode->hsync_start--;
2820 mode->hsync_end--;
2821 drm_mode_set_name(mode);
2822 }
2823}
2824
Adam Jacksonb309bd32012-04-13 16:33:40 -04002825static int
2826drm_gtf_modes_for_range(struct drm_connector *connector, struct edid *edid,
2827 struct detailed_timing *timing)
2828{
2829 int i, modes = 0;
2830 struct drm_display_mode *newmode;
2831 struct drm_device *dev = connector->dev;
2832
Thierry Redinga6b21832012-11-23 15:01:42 +01002833 for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002834 const struct minimode *m = &extra_modes[i];
2835 newmode = drm_gtf_mode(dev, m->w, m->h, m->r, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002836 if (!newmode)
2837 return modes;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002838
Takashi Iwai969218f2017-01-17 17:43:29 +01002839 drm_mode_fixup_1366x768(newmode);
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002840 if (!mode_in_range(newmode, edid, timing) ||
2841 !valid_inferred_mode(connector, newmode)) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002842 drm_mode_destroy(dev, newmode);
2843 continue;
2844 }
2845
2846 drm_mode_probed_add(connector, newmode);
2847 modes++;
2848 }
2849
2850 return modes;
2851}
2852
2853static int
2854drm_cvt_modes_for_range(struct drm_connector *connector, struct edid *edid,
2855 struct detailed_timing *timing)
2856{
2857 int i, modes = 0;
2858 struct drm_display_mode *newmode;
2859 struct drm_device *dev = connector->dev;
2860 bool rb = drm_monitor_supports_rb(edid);
2861
Thierry Redinga6b21832012-11-23 15:01:42 +01002862 for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002863 const struct minimode *m = &extra_modes[i];
2864 newmode = drm_cvt_mode(dev, m->w, m->h, m->r, rb, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002865 if (!newmode)
2866 return modes;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002867
Takashi Iwai969218f2017-01-17 17:43:29 +01002868 drm_mode_fixup_1366x768(newmode);
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002869 if (!mode_in_range(newmode, edid, timing) ||
2870 !valid_inferred_mode(connector, newmode)) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002871 drm_mode_destroy(dev, newmode);
2872 continue;
2873 }
2874
2875 drm_mode_probed_add(connector, newmode);
2876 modes++;
2877 }
2878
2879 return modes;
2880}
2881
Adam Jackson13931572010-08-03 14:38:19 -04002882static void
2883do_inferred_modes(struct detailed_timing *timing, void *c)
Adam Jackson9340d8c2009-12-03 17:44:40 -05002884{
Adam Jackson13931572010-08-03 14:38:19 -04002885 struct detailed_mode_closure *closure = c;
2886 struct detailed_non_pixel *data = &timing->data.other_data;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002887 struct detailed_data_monitor_range *range = &data->data.range;
Adam Jackson9340d8c2009-12-03 17:44:40 -05002888
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002889 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_MONITOR_RANGE))
Adam Jacksoncb21aaf2012-04-13 16:33:36 -04002890 return;
2891
2892 closure->modes += drm_dmt_modes_for_range(closure->connector,
2893 closure->edid,
2894 timing);
Ville Syrjälä4d23f482020-01-24 22:02:27 +02002895
Adam Jacksonb309bd32012-04-13 16:33:40 -04002896 if (!version_greater(closure->edid, 1, 1))
2897 return; /* GTF not defined yet */
2898
2899 switch (range->flags) {
2900 case 0x02: /* secondary gtf, XXX could do more */
2901 case 0x00: /* default gtf */
2902 closure->modes += drm_gtf_modes_for_range(closure->connector,
2903 closure->edid,
2904 timing);
2905 break;
2906 case 0x04: /* cvt, only in 1.4+ */
2907 if (!version_greater(closure->edid, 1, 3))
2908 break;
2909
2910 closure->modes += drm_cvt_modes_for_range(closure->connector,
2911 closure->edid,
2912 timing);
2913 break;
2914 case 0x01: /* just the ranges, no formula */
2915 default:
2916 break;
2917 }
Adam Jackson9340d8c2009-12-03 17:44:40 -05002918}
2919
Adam Jackson13931572010-08-03 14:38:19 -04002920static int
2921add_inferred_modes(struct drm_connector *connector, struct edid *edid)
2922{
2923 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02002924 .connector = connector,
2925 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04002926 };
2927
2928 if (version_greater(edid, 1, 0))
2929 drm_for_each_detailed_block((u8 *)edid, do_inferred_modes,
2930 &closure);
2931
2932 return closure.modes;
2933}
2934
Adam Jackson2255be12010-03-29 21:43:22 +00002935static int
2936drm_est3_modes(struct drm_connector *connector, struct detailed_timing *timing)
2937{
2938 int i, j, m, modes = 0;
2939 struct drm_display_mode *mode;
Paul Parsonsf3a32d72016-03-26 13:18:38 +00002940 u8 *est = ((u8 *)timing) + 6;
Adam Jackson2255be12010-03-29 21:43:22 +00002941
2942 for (i = 0; i < 6; i++) {
Ville Syrjälä891a7462013-10-14 16:44:26 +03002943 for (j = 7; j >= 0; j--) {
Adam Jackson2255be12010-03-29 21:43:22 +00002944 m = (i * 8) + (7 - j);
Linus Torvaldsaa9f56b2010-08-12 09:21:39 -07002945 if (m >= ARRAY_SIZE(est3_modes))
Adam Jackson2255be12010-03-29 21:43:22 +00002946 break;
2947 if (est[i] & (1 << j)) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002948 mode = drm_mode_find_dmt(connector->dev,
2949 est3_modes[m].w,
2950 est3_modes[m].h,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002951 est3_modes[m].r,
2952 est3_modes[m].rb);
Adam Jackson2255be12010-03-29 21:43:22 +00002953 if (mode) {
2954 drm_mode_probed_add(connector, mode);
2955 modes++;
2956 }
2957 }
2958 }
2959 }
2960
2961 return modes;
2962}
2963
Adam Jackson13931572010-08-03 14:38:19 -04002964static void
2965do_established_modes(struct detailed_timing *timing, void *c)
Adam Jackson9cf00972009-12-03 17:44:36 -05002966{
Adam Jackson13931572010-08-03 14:38:19 -04002967 struct detailed_mode_closure *closure = c;
Adam Jackson13931572010-08-03 14:38:19 -04002968
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002969 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_EST_TIMINGS))
2970 return;
2971
2972 closure->modes += drm_est3_modes(closure->connector, timing);
Adam Jackson13931572010-08-03 14:38:19 -04002973}
2974
2975/**
2976 * add_established_modes - get est. modes from EDID and add them
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002977 * @connector: connector to add mode(s) to
Adam Jackson13931572010-08-03 14:38:19 -04002978 * @edid: EDID block to scan
2979 *
2980 * Each EDID block contains a bitmap of the supported "established modes" list
2981 * (defined above). Tease them out and add them to the global modes list.
2982 */
2983static int
2984add_established_modes(struct drm_connector *connector, struct edid *edid)
2985{
Adam Jackson9cf00972009-12-03 17:44:36 -05002986 struct drm_device *dev = connector->dev;
Adam Jackson13931572010-08-03 14:38:19 -04002987 unsigned long est_bits = edid->established_timings.t1 |
2988 (edid->established_timings.t2 << 8) |
2989 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
2990 int i, modes = 0;
2991 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02002992 .connector = connector,
2993 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04002994 };
Adam Jackson9cf00972009-12-03 17:44:36 -05002995
Adam Jackson13931572010-08-03 14:38:19 -04002996 for (i = 0; i <= EDID_EST_TIMINGS; i++) {
2997 if (est_bits & (1<<i)) {
2998 struct drm_display_mode *newmode;
2999 newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
3000 if (newmode) {
3001 drm_mode_probed_add(connector, newmode);
3002 modes++;
3003 }
3004 }
Adam Jackson9cf00972009-12-03 17:44:36 -05003005 }
3006
Adam Jackson13931572010-08-03 14:38:19 -04003007 if (version_greater(edid, 1, 0))
3008 drm_for_each_detailed_block((u8 *)edid,
3009 do_established_modes, &closure);
3010
3011 return modes + closure.modes;
3012}
3013
3014static void
3015do_standard_modes(struct detailed_timing *timing, void *c)
3016{
3017 struct detailed_mode_closure *closure = c;
3018 struct detailed_non_pixel *data = &timing->data.other_data;
3019 struct drm_connector *connector = closure->connector;
3020 struct edid *edid = closure->edid;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003021 int i;
Adam Jackson13931572010-08-03 14:38:19 -04003022
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003023 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_STD_MODES))
3024 return;
Adam Jackson9cf00972009-12-03 17:44:36 -05003025
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003026 for (i = 0; i < 6; i++) {
3027 struct std_timing *std = &data->data.timings[i];
3028 struct drm_display_mode *newmode;
3029
3030 newmode = drm_mode_std(connector, edid, std);
3031 if (newmode) {
3032 drm_mode_probed_add(connector, newmode);
3033 closure->modes++;
Adam Jackson9cf00972009-12-03 17:44:36 -05003034 }
Adam Jackson13931572010-08-03 14:38:19 -04003035 }
3036}
3037
3038/**
3039 * add_standard_modes - get std. modes from EDID and add them
Thierry Redingdb6cf8332014-04-29 11:44:34 +02003040 * @connector: connector to add mode(s) to
Adam Jackson13931572010-08-03 14:38:19 -04003041 * @edid: EDID block to scan
3042 *
3043 * Standard modes can be calculated using the appropriate standard (DMT,
3044 * GTF or CVT. Grab them from @edid and add them to the list.
3045 */
3046static int
3047add_standard_modes(struct drm_connector *connector, struct edid *edid)
3048{
3049 int i, modes = 0;
3050 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003051 .connector = connector,
3052 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003053 };
3054
3055 for (i = 0; i < EDID_STD_TIMINGS; i++) {
3056 struct drm_display_mode *newmode;
3057
3058 newmode = drm_mode_std(connector, edid,
Thierry Reding464fdec2014-04-29 11:44:33 +02003059 &edid->standard_timings[i]);
Adam Jackson13931572010-08-03 14:38:19 -04003060 if (newmode) {
3061 drm_mode_probed_add(connector, newmode);
3062 modes++;
3063 }
3064 }
3065
3066 if (version_greater(edid, 1, 0))
3067 drm_for_each_detailed_block((u8 *)edid, do_standard_modes,
3068 &closure);
3069
3070 /* XXX should also look for standard codes in VTB blocks */
3071
3072 return modes + closure.modes;
3073}
3074
Dave Airlief453ba02008-11-07 14:05:41 -08003075static int drm_cvt_modes(struct drm_connector *connector,
3076 struct detailed_timing *timing)
3077{
3078 int i, j, modes = 0;
3079 struct drm_display_mode *newmode;
3080 struct drm_device *dev = connector->dev;
Zhao Yakui5c612592009-06-22 13:17:10 +08003081 struct cvt_timing *cvt;
3082 const int rates[] = { 60, 85, 75, 60, 50 };
3083 const u8 empty[3] = { 0, 0, 0 };
Dave Airlief453ba02008-11-07 14:05:41 -08003084
3085 for (i = 0; i < 4; i++) {
3086 int uninitialized_var(width), height;
3087 cvt = &(timing->data.other_data.data.cvt[i]);
3088
3089 if (!memcmp(cvt->code, empty, 3))
Michel Dänzer0454bea2009-06-15 16:56:07 +02003090 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08003091
3092 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
Zhao Yakui5c612592009-06-22 13:17:10 +08003093 switch (cvt->code[1] & 0x0c) {
Adam Jacksonf066a172009-09-23 17:31:21 -04003094 case 0x00:
Dave Airlief453ba02008-11-07 14:05:41 -08003095 width = height * 4 / 3;
3096 break;
3097 case 0x04:
3098 width = height * 16 / 9;
3099 break;
3100 case 0x08:
3101 width = height * 16 / 10;
3102 break;
3103 case 0x0c:
Dave Airlief453ba02008-11-07 14:05:41 -08003104 width = height * 15 / 9;
3105 break;
3106 }
3107
3108 for (j = 1; j < 5; j++) {
3109 if (cvt->code[2] & (1 << j)) {
3110 newmode = drm_cvt_mode(dev, width, height,
3111 rates[j], j == 0,
3112 false, false);
3113 if (newmode) {
3114 drm_mode_probed_add(connector, newmode);
3115 modes++;
3116 }
3117 }
3118 }
3119 }
3120
3121 return modes;
3122}
3123
Adam Jackson13931572010-08-03 14:38:19 -04003124static void
3125do_cvt_mode(struct detailed_timing *timing, void *c)
3126{
3127 struct detailed_mode_closure *closure = c;
Adam Jackson13931572010-08-03 14:38:19 -04003128
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003129 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_CVT_3BYTE))
3130 return;
3131
3132 closure->modes += drm_cvt_modes(closure->connector, timing);
Adam Jackson13931572010-08-03 14:38:19 -04003133}
Adam Jackson9cf00972009-12-03 17:44:36 -05003134
3135static int
Adam Jackson13931572010-08-03 14:38:19 -04003136add_cvt_modes(struct drm_connector *connector, struct edid *edid)
Ville Syrjälä4d23f482020-01-24 22:02:27 +02003137{
Adam Jackson13931572010-08-03 14:38:19 -04003138 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003139 .connector = connector,
3140 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003141 };
Adam Jackson9cf00972009-12-03 17:44:36 -05003142
Adam Jackson13931572010-08-03 14:38:19 -04003143 if (version_greater(edid, 1, 2))
3144 drm_for_each_detailed_block((u8 *)edid, do_cvt_mode, &closure);
Dave Airlief453ba02008-11-07 14:05:41 -08003145
Adam Jackson13931572010-08-03 14:38:19 -04003146 /* XXX should also look for CVT codes in VTB blocks */
3147
3148 return closure.modes;
Dave Airlief453ba02008-11-07 14:05:41 -08003149}
3150
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03003151static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode);
3152
Adam Jackson13931572010-08-03 14:38:19 -04003153static void
3154do_detailed_mode(struct detailed_timing *timing, void *c)
Dave Airlief453ba02008-11-07 14:05:41 -08003155{
Adam Jackson13931572010-08-03 14:38:19 -04003156 struct detailed_mode_closure *closure = c;
Dave Airlief453ba02008-11-07 14:05:41 -08003157 struct drm_display_mode *newmode;
Adam Jackson9cf00972009-12-03 17:44:36 -05003158
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003159 if (!is_detailed_timing_descriptor((const u8 *)timing))
3160 return;
Adam Jackson9cf00972009-12-03 17:44:36 -05003161
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003162 newmode = drm_mode_detailed(closure->connector->dev,
3163 closure->edid, timing,
3164 closure->quirks);
3165 if (!newmode)
3166 return;
Dave Airlief453ba02008-11-07 14:05:41 -08003167
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003168 if (closure->preferred)
3169 newmode->type |= DRM_MODE_TYPE_PREFERRED;
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03003170
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003171 /*
3172 * Detailed modes are limited to 10kHz pixel clock resolution,
3173 * so fix up anything that looks like CEA/HDMI mode, but the clock
3174 * is just slightly off.
3175 */
3176 fixup_detailed_cea_mode_clock(newmode);
3177
3178 drm_mode_probed_add(closure->connector, newmode);
3179 closure->modes++;
3180 closure->preferred = false;
Ma Ling167f3a02009-03-20 14:09:48 +08003181}
3182
Adam Jackson13931572010-08-03 14:38:19 -04003183/*
3184 * add_detailed_modes - Add modes from detailed timings
Dave Airlief453ba02008-11-07 14:05:41 -08003185 * @connector: attached connector
3186 * @edid: EDID block to scan
3187 * @quirks: quirks to apply
Dave Airlief453ba02008-11-07 14:05:41 -08003188 */
Adam Jackson13931572010-08-03 14:38:19 -04003189static int
3190add_detailed_modes(struct drm_connector *connector, struct edid *edid,
3191 u32 quirks)
Dave Airlief453ba02008-11-07 14:05:41 -08003192{
Adam Jackson13931572010-08-03 14:38:19 -04003193 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003194 .connector = connector,
3195 .edid = edid,
Gustavo A. R. Silvac2925bd2018-01-30 04:05:28 -06003196 .preferred = true,
Julia Lawalld456ea22014-08-23 18:09:56 +02003197 .quirks = quirks,
Adam Jackson13931572010-08-03 14:38:19 -04003198 };
Dave Airlief453ba02008-11-07 14:05:41 -08003199
Adam Jackson13931572010-08-03 14:38:19 -04003200 if (closure.preferred && !version_greater(edid, 1, 3))
3201 closure.preferred =
3202 (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
Adam Jacksona327f6b2010-03-29 21:43:25 +00003203
Adam Jackson13931572010-08-03 14:38:19 -04003204 drm_for_each_detailed_block((u8 *)edid, do_detailed_mode, &closure);
Dave Airlief453ba02008-11-07 14:05:41 -08003205
Adam Jackson13931572010-08-03 14:38:19 -04003206 return closure.modes;
Zhao Yakui882f0212009-08-26 18:20:49 +08003207}
Dave Airlief453ba02008-11-07 14:05:41 -08003208
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003209#define AUDIO_BLOCK 0x01
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003210#define VIDEO_BLOCK 0x02
Ma Lingf23c20c2009-03-26 19:26:23 +08003211#define VENDOR_BLOCK 0x03
Wu Fengguang76adaa342011-09-05 14:23:20 +08003212#define SPEAKER_BLOCK 0x04
Uma Shankare85959d2019-05-16 19:40:08 +05303213#define HDR_STATIC_METADATA_BLOCK 0x6
Shashank Sharma87563fc2017-07-13 21:03:10 +05303214#define USE_EXTENDED_TAG 0x07
3215#define EXT_VIDEO_CAPABILITY_BLOCK 0x00
Shashank Sharma832d4f22017-07-14 16:03:46 +05303216#define EXT_VIDEO_DATA_BLOCK_420 0x0E
3217#define EXT_VIDEO_CAP_BLOCK_Y420CMDB 0x0F
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003218#define EDID_BASIC_AUDIO (1 << 6)
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02003219#define EDID_CEA_YCRCB444 (1 << 5)
3220#define EDID_CEA_YCRCB422 (1 << 4)
Ville Syrjäläb1edd6a2013-01-17 16:31:30 +02003221#define EDID_CEA_VCDB_QS (1 << 6)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003222
Lespiau, Damiend4e4a312013-08-19 16:58:52 +01003223/*
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003224 * Search EDID for CEA extension block.
3225 */
Keith Packard170178f2017-12-13 00:44:26 -08003226static u8 *drm_find_edid_extension(const struct edid *edid, int ext_id)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003227{
3228 u8 *edid_ext = NULL;
3229 int i;
3230
3231 /* No EDID or EDID extensions */
3232 if (edid == NULL || edid->extensions == 0)
3233 return NULL;
3234
3235 /* Find CEA extension */
3236 for (i = 0; i < edid->extensions; i++) {
3237 edid_ext = (u8 *)edid + EDID_LENGTH * (i + 1);
Dave Airlie40d9b042014-10-20 16:29:33 +10003238 if (edid_ext[0] == ext_id)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003239 break;
3240 }
3241
3242 if (i == edid->extensions)
3243 return NULL;
3244
3245 return edid_ext;
3246}
3247
Dave Airlie40d9b042014-10-20 16:29:33 +10003248
Ville Syrjälä23b03862020-03-13 18:20:49 +02003249static u8 *drm_find_displayid_extension(const struct edid *edid,
3250 int *length, int *idx)
Dave Airlie40d9b042014-10-20 16:29:33 +10003251{
Ville Syrjälä36881182020-03-13 18:20:48 +02003252 u8 *displayid = drm_find_edid_extension(edid, DISPLAYID_EXT);
Ville Syrjälä8e88c752020-03-13 18:20:51 +02003253 struct displayid_hdr *base;
Ville Syrjäläea0aa602020-03-13 18:20:50 +02003254 int ret;
Ville Syrjälä36881182020-03-13 18:20:48 +02003255
3256 if (!displayid)
3257 return NULL;
3258
Ville Syrjälä5f706b42020-03-13 18:20:52 +02003259 /* EDID extensions block checksum isn't for us */
3260 *length = EDID_LENGTH - 1;
Ville Syrjälä36881182020-03-13 18:20:48 +02003261 *idx = 1;
3262
Ville Syrjäläea0aa602020-03-13 18:20:50 +02003263 ret = validate_displayid(displayid, *length, *idx);
3264 if (ret)
3265 return NULL;
3266
Ville Syrjälä8e88c752020-03-13 18:20:51 +02003267 base = (struct displayid_hdr *)&displayid[*idx];
3268 *length = *idx + sizeof(*base) + base->bytes;
3269
Ville Syrjälä36881182020-03-13 18:20:48 +02003270 return displayid;
Dave Airlie40d9b042014-10-20 16:29:33 +10003271}
3272
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003273static u8 *drm_find_cea_extension(const struct edid *edid)
3274{
Ville Syrjälä23b03862020-03-13 18:20:49 +02003275 int length, idx;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003276 struct displayid_block *block;
3277 u8 *cea;
3278 u8 *displayid;
3279
3280 /* Look for a top level CEA extension block */
3281 cea = drm_find_edid_extension(edid, CEA_EXT);
3282 if (cea)
3283 return cea;
3284
3285 /* CEA blocks can also be found embedded in a DisplayID block */
Ville Syrjälä23b03862020-03-13 18:20:49 +02003286 displayid = drm_find_displayid_extension(edid, &length, &idx);
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003287 if (!displayid)
3288 return NULL;
3289
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003290 idx += sizeof(struct displayid_hdr);
3291 for_each_displayid_db(displayid, block, idx, length) {
3292 if (block->tag == DATA_BLOCK_CTA) {
3293 cea = (u8 *)block;
3294 break;
3295 }
3296 }
3297
3298 return cea;
3299}
3300
Mauro Rossie1cf35b2020-02-03 22:31:13 +01003301static __always_inline const struct drm_display_mode *cea_mode_for_vic(u8 vic)
Ville Syrjälä7befe622019-12-13 19:43:45 +02003302{
Ville Syrjälä9212f8e2019-12-13 19:43:48 +02003303 BUILD_BUG_ON(1 + ARRAY_SIZE(edid_cea_modes_1) - 1 != 127);
3304 BUILD_BUG_ON(193 + ARRAY_SIZE(edid_cea_modes_193) - 1 != 219);
3305
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +02003306 if (vic >= 1 && vic < 1 + ARRAY_SIZE(edid_cea_modes_1))
3307 return &edid_cea_modes_1[vic - 1];
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003308 if (vic >= 193 && vic < 193 + ARRAY_SIZE(edid_cea_modes_193))
3309 return &edid_cea_modes_193[vic - 193];
Ville Syrjälä7befe622019-12-13 19:43:45 +02003310 return NULL;
3311}
3312
3313static u8 cea_num_vics(void)
3314{
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003315 return 193 + ARRAY_SIZE(edid_cea_modes_193);
Ville Syrjälä7befe622019-12-13 19:43:45 +02003316}
3317
3318static u8 cea_next_vic(u8 vic)
3319{
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +02003320 if (++vic == 1 + ARRAY_SIZE(edid_cea_modes_1))
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003321 vic = 193;
3322 return vic;
Ville Syrjälä7befe622019-12-13 19:43:45 +02003323}
3324
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003325/*
3326 * Calculate the alternate clock for the CEA mode
3327 * (60Hz vs. 59.94Hz etc.)
3328 */
3329static unsigned int
3330cea_mode_alternate_clock(const struct drm_display_mode *cea_mode)
3331{
3332 unsigned int clock = cea_mode->clock;
3333
Ville Syrjälä04256622020-04-28 20:19:27 +03003334 if (drm_mode_vrefresh(cea_mode) % 6 != 0)
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003335 return clock;
3336
3337 /*
3338 * edid_cea_modes contains the 59.94Hz
3339 * variant for 240 and 480 line modes,
3340 * and the 60Hz variant otherwise.
3341 */
3342 if (cea_mode->vdisplay == 240 || cea_mode->vdisplay == 480)
Ville Syrjälä9afd8082015-10-08 11:43:33 +03003343 clock = DIV_ROUND_CLOSEST(clock * 1001, 1000);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003344 else
Ville Syrjälä9afd8082015-10-08 11:43:33 +03003345 clock = DIV_ROUND_CLOSEST(clock * 1000, 1001);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003346
3347 return clock;
3348}
3349
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003350static bool
3351cea_mode_alternate_timings(u8 vic, struct drm_display_mode *mode)
3352{
3353 /*
3354 * For certain VICs the spec allows the vertical
3355 * front porch to vary by one or two lines.
3356 *
3357 * cea_modes[] stores the variant with the shortest
3358 * vertical front porch. We can adjust the mode to
3359 * get the other variants by simply increasing the
3360 * vertical front porch length.
3361 */
Ville Syrjälä7befe622019-12-13 19:43:45 +02003362 BUILD_BUG_ON(cea_mode_for_vic(8)->vtotal != 262 ||
3363 cea_mode_for_vic(9)->vtotal != 262 ||
3364 cea_mode_for_vic(12)->vtotal != 262 ||
3365 cea_mode_for_vic(13)->vtotal != 262 ||
3366 cea_mode_for_vic(23)->vtotal != 312 ||
3367 cea_mode_for_vic(24)->vtotal != 312 ||
3368 cea_mode_for_vic(27)->vtotal != 312 ||
3369 cea_mode_for_vic(28)->vtotal != 312);
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003370
3371 if (((vic == 8 || vic == 9 ||
3372 vic == 12 || vic == 13) && mode->vtotal < 263) ||
3373 ((vic == 23 || vic == 24 ||
3374 vic == 27 || vic == 28) && mode->vtotal < 314)) {
3375 mode->vsync_start++;
3376 mode->vsync_end++;
3377 mode->vtotal++;
3378
3379 return true;
3380 }
3381
3382 return false;
3383}
3384
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003385static u8 drm_match_cea_mode_clock_tolerance(const struct drm_display_mode *to_match,
3386 unsigned int clock_tolerance)
3387{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303388 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003389 u8 vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003390
3391 if (!to_match->clock)
3392 return 0;
3393
Ville Syrjälä357768c2018-05-08 16:39:38 +05303394 if (to_match->picture_aspect_ratio)
3395 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3396
Ville Syrjälä7befe622019-12-13 19:43:45 +02003397 for (vic = 1; vic < cea_num_vics(); vic = cea_next_vic(vic)) {
3398 struct drm_display_mode cea_mode = *cea_mode_for_vic(vic);
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003399 unsigned int clock1, clock2;
3400
3401 /* Check both 60Hz and 59.94Hz */
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003402 clock1 = cea_mode.clock;
3403 clock2 = cea_mode_alternate_clock(&cea_mode);
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003404
3405 if (abs(to_match->clock - clock1) > clock_tolerance &&
3406 abs(to_match->clock - clock2) > clock_tolerance)
3407 continue;
3408
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003409 do {
Ville Syrjälä357768c2018-05-08 16:39:38 +05303410 if (drm_mode_match(to_match, &cea_mode, match_flags))
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003411 return vic;
3412 } while (cea_mode_alternate_timings(vic, &cea_mode));
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003413 }
3414
3415 return 0;
3416}
3417
Thierry Reding18316c82012-12-20 15:41:44 +01003418/**
3419 * drm_match_cea_mode - look for a CEA mode matching given mode
3420 * @to_match: display mode
3421 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02003422 * Return: The CEA Video ID (VIC) of the mode or 0 if it isn't a CEA-861
Thierry Reding18316c82012-12-20 15:41:44 +01003423 * mode.
Stephane Marchesina4799032012-11-09 16:21:05 +00003424 */
Thierry Reding18316c82012-12-20 15:41:44 +01003425u8 drm_match_cea_mode(const struct drm_display_mode *to_match)
Stephane Marchesina4799032012-11-09 16:21:05 +00003426{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303427 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003428 u8 vic;
Stephane Marchesina4799032012-11-09 16:21:05 +00003429
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003430 if (!to_match->clock)
3431 return 0;
Stephane Marchesina4799032012-11-09 16:21:05 +00003432
Ville Syrjälä357768c2018-05-08 16:39:38 +05303433 if (to_match->picture_aspect_ratio)
3434 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3435
Ville Syrjälä7befe622019-12-13 19:43:45 +02003436 for (vic = 1; vic < cea_num_vics(); vic = cea_next_vic(vic)) {
3437 struct drm_display_mode cea_mode = *cea_mode_for_vic(vic);
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003438 unsigned int clock1, clock2;
3439
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003440 /* Check both 60Hz and 59.94Hz */
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003441 clock1 = cea_mode.clock;
3442 clock2 = cea_mode_alternate_clock(&cea_mode);
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003443
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003444 if (KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock1) &&
3445 KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock2))
3446 continue;
3447
3448 do {
Ville Syrjälä357768c2018-05-08 16:39:38 +05303449 if (drm_mode_match(to_match, &cea_mode, match_flags))
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003450 return vic;
3451 } while (cea_mode_alternate_timings(vic, &cea_mode));
Stephane Marchesina4799032012-11-09 16:21:05 +00003452 }
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003453
Stephane Marchesina4799032012-11-09 16:21:05 +00003454 return 0;
3455}
3456EXPORT_SYMBOL(drm_match_cea_mode);
3457
Jani Nikulad9278b42016-01-08 13:21:51 +02003458static bool drm_valid_cea_vic(u8 vic)
3459{
Ville Syrjälä7befe622019-12-13 19:43:45 +02003460 return cea_mode_for_vic(vic) != NULL;
Jani Nikulad9278b42016-01-08 13:21:51 +02003461}
3462
Ville Syrjälä28c03a442019-10-04 17:19:11 +03003463static enum hdmi_picture_aspect drm_get_cea_aspect_ratio(const u8 video_code)
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303464{
Ville Syrjälä7befe622019-12-13 19:43:45 +02003465 const struct drm_display_mode *mode = cea_mode_for_vic(video_code);
3466
3467 if (mode)
3468 return mode->picture_aspect_ratio;
3469
3470 return HDMI_PICTURE_ASPECT_NONE;
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303471}
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303472
Wayne Lind2b43472019-11-18 18:18:31 +08003473static enum hdmi_picture_aspect drm_get_hdmi_aspect_ratio(const u8 video_code)
3474{
3475 return edid_4k_modes[video_code].picture_aspect_ratio;
3476}
3477
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003478/*
3479 * Calculate the alternate clock for HDMI modes (those from the HDMI vendor
3480 * specific block).
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003481 */
3482static unsigned int
3483hdmi_mode_alternate_clock(const struct drm_display_mode *hdmi_mode)
3484{
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003485 return cea_mode_alternate_clock(hdmi_mode);
3486}
3487
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003488static u8 drm_match_hdmi_mode_clock_tolerance(const struct drm_display_mode *to_match,
3489 unsigned int clock_tolerance)
3490{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303491 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003492 u8 vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003493
3494 if (!to_match->clock)
3495 return 0;
3496
Wayne Lind2b43472019-11-18 18:18:31 +08003497 if (to_match->picture_aspect_ratio)
3498 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3499
Jani Nikulad9278b42016-01-08 13:21:51 +02003500 for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
3501 const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003502 unsigned int clock1, clock2;
3503
3504 /* Make sure to also match alternate clocks */
3505 clock1 = hdmi_mode->clock;
3506 clock2 = hdmi_mode_alternate_clock(hdmi_mode);
3507
3508 if (abs(to_match->clock - clock1) > clock_tolerance &&
3509 abs(to_match->clock - clock2) > clock_tolerance)
3510 continue;
3511
Ville Syrjälä357768c2018-05-08 16:39:38 +05303512 if (drm_mode_match(to_match, hdmi_mode, match_flags))
Jani Nikulad9278b42016-01-08 13:21:51 +02003513 return vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003514 }
3515
3516 return 0;
3517}
3518
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003519/*
3520 * drm_match_hdmi_mode - look for a HDMI mode matching given mode
3521 * @to_match: display mode
3522 *
3523 * An HDMI mode is one defined in the HDMI vendor specific block.
3524 *
3525 * Returns the HDMI Video ID (VIC) of the mode or 0 if it isn't one.
3526 */
3527static u8 drm_match_hdmi_mode(const struct drm_display_mode *to_match)
3528{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303529 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003530 u8 vic;
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003531
3532 if (!to_match->clock)
3533 return 0;
3534
Wayne Lind2b43472019-11-18 18:18:31 +08003535 if (to_match->picture_aspect_ratio)
3536 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3537
Jani Nikulad9278b42016-01-08 13:21:51 +02003538 for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
3539 const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003540 unsigned int clock1, clock2;
3541
3542 /* Make sure to also match alternate clocks */
3543 clock1 = hdmi_mode->clock;
3544 clock2 = hdmi_mode_alternate_clock(hdmi_mode);
3545
3546 if ((KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock1) ||
3547 KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock2)) &&
Ville Syrjälä357768c2018-05-08 16:39:38 +05303548 drm_mode_match(to_match, hdmi_mode, match_flags))
Jani Nikulad9278b42016-01-08 13:21:51 +02003549 return vic;
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003550 }
3551 return 0;
3552}
3553
Jani Nikulad9278b42016-01-08 13:21:51 +02003554static bool drm_valid_hdmi_vic(u8 vic)
3555{
3556 return vic > 0 && vic < ARRAY_SIZE(edid_4k_modes);
3557}
3558
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003559static int
3560add_alternate_cea_modes(struct drm_connector *connector, struct edid *edid)
3561{
3562 struct drm_device *dev = connector->dev;
3563 struct drm_display_mode *mode, *tmp;
3564 LIST_HEAD(list);
3565 int modes = 0;
3566
3567 /* Don't add CEA modes if the CEA extension block is missing */
3568 if (!drm_find_cea_extension(edid))
3569 return 0;
3570
3571 /*
3572 * Go through all probed modes and create a new mode
3573 * with the alternate clock for certain CEA modes.
3574 */
3575 list_for_each_entry(mode, &connector->probed_modes, head) {
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003576 const struct drm_display_mode *cea_mode = NULL;
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003577 struct drm_display_mode *newmode;
Jani Nikulad9278b42016-01-08 13:21:51 +02003578 u8 vic = drm_match_cea_mode(mode);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003579 unsigned int clock1, clock2;
3580
Jani Nikulad9278b42016-01-08 13:21:51 +02003581 if (drm_valid_cea_vic(vic)) {
Ville Syrjälä7befe622019-12-13 19:43:45 +02003582 cea_mode = cea_mode_for_vic(vic);
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003583 clock2 = cea_mode_alternate_clock(cea_mode);
3584 } else {
Jani Nikulad9278b42016-01-08 13:21:51 +02003585 vic = drm_match_hdmi_mode(mode);
3586 if (drm_valid_hdmi_vic(vic)) {
3587 cea_mode = &edid_4k_modes[vic];
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003588 clock2 = hdmi_mode_alternate_clock(cea_mode);
3589 }
3590 }
3591
3592 if (!cea_mode)
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003593 continue;
3594
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003595 clock1 = cea_mode->clock;
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003596
3597 if (clock1 == clock2)
3598 continue;
3599
3600 if (mode->clock != clock1 && mode->clock != clock2)
3601 continue;
3602
3603 newmode = drm_mode_duplicate(dev, cea_mode);
3604 if (!newmode)
3605 continue;
3606
Damien Lespiau27130212013-09-25 16:45:28 +01003607 /* Carry over the stereo flags */
3608 newmode->flags |= mode->flags & DRM_MODE_FLAG_3D_MASK;
3609
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003610 /*
3611 * The current mode could be either variant. Make
3612 * sure to pick the "other" clock for the new mode.
3613 */
3614 if (mode->clock != clock1)
3615 newmode->clock = clock1;
3616 else
3617 newmode->clock = clock2;
3618
3619 list_add_tail(&newmode->head, &list);
3620 }
3621
3622 list_for_each_entry_safe(mode, tmp, &list, head) {
3623 list_del(&mode->head);
3624 drm_mode_probed_add(connector, mode);
3625 modes++;
3626 }
3627
3628 return modes;
3629}
Stephane Marchesina4799032012-11-09 16:21:05 +00003630
Shashank Sharma8ec6e072017-07-13 21:03:08 +05303631static u8 svd_to_vic(u8 svd)
3632{
3633 /* 0-6 bit vic, 7th bit native mode indicator */
3634 if ((svd >= 1 && svd <= 64) || (svd >= 129 && svd <= 192))
3635 return svd & 127;
3636
3637 return svd;
3638}
3639
Thomas Woodaff04ac2013-11-29 15:33:27 +00003640static struct drm_display_mode *
3641drm_display_mode_from_vic_index(struct drm_connector *connector,
3642 const u8 *video_db, u8 video_len,
3643 u8 video_index)
3644{
3645 struct drm_device *dev = connector->dev;
3646 struct drm_display_mode *newmode;
Jani Nikulad9278b42016-01-08 13:21:51 +02003647 u8 vic;
Thomas Woodaff04ac2013-11-29 15:33:27 +00003648
3649 if (video_db == NULL || video_index >= video_len)
3650 return NULL;
3651
3652 /* CEA modes are numbered 1..127 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05303653 vic = svd_to_vic(video_db[video_index]);
Jani Nikulad9278b42016-01-08 13:21:51 +02003654 if (!drm_valid_cea_vic(vic))
Thomas Woodaff04ac2013-11-29 15:33:27 +00003655 return NULL;
3656
Ville Syrjälä7befe622019-12-13 19:43:45 +02003657 newmode = drm_mode_duplicate(dev, cea_mode_for_vic(vic));
Damien Lespiau409bbf12014-03-03 23:59:07 +00003658 if (!newmode)
3659 return NULL;
3660
Thomas Woodaff04ac2013-11-29 15:33:27 +00003661 return newmode;
3662}
3663
Shashank Sharma832d4f22017-07-14 16:03:46 +05303664/*
3665 * do_y420vdb_modes - Parse YCBCR 420 only modes
3666 * @connector: connector corresponding to the HDMI sink
3667 * @svds: start of the data block of CEA YCBCR 420 VDB
3668 * @len: length of the CEA YCBCR 420 VDB
3669 *
3670 * Parse the CEA-861-F YCBCR 420 Video Data Block (Y420VDB)
3671 * which contains modes which can be supported in YCBCR 420
3672 * output format only.
3673 */
3674static int do_y420vdb_modes(struct drm_connector *connector,
3675 const u8 *svds, u8 svds_len)
3676{
3677 int modes = 0, i;
3678 struct drm_device *dev = connector->dev;
3679 struct drm_display_info *info = &connector->display_info;
3680 struct drm_hdmi_info *hdmi = &info->hdmi;
3681
3682 for (i = 0; i < svds_len; i++) {
3683 u8 vic = svd_to_vic(svds[i]);
3684 struct drm_display_mode *newmode;
3685
3686 if (!drm_valid_cea_vic(vic))
3687 continue;
3688
Ville Syrjälä7befe622019-12-13 19:43:45 +02003689 newmode = drm_mode_duplicate(dev, cea_mode_for_vic(vic));
Shashank Sharma832d4f22017-07-14 16:03:46 +05303690 if (!newmode)
3691 break;
3692 bitmap_set(hdmi->y420_vdb_modes, vic, 1);
3693 drm_mode_probed_add(connector, newmode);
3694 modes++;
3695 }
3696
3697 if (modes > 0)
3698 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
3699 return modes;
3700}
3701
3702/*
3703 * drm_add_cmdb_modes - Add a YCBCR 420 mode into bitmap
3704 * @connector: connector corresponding to the HDMI sink
3705 * @vic: CEA vic for the video mode to be added in the map
3706 *
3707 * Makes an entry for a videomode in the YCBCR 420 bitmap
3708 */
3709static void
3710drm_add_cmdb_modes(struct drm_connector *connector, u8 svd)
3711{
3712 u8 vic = svd_to_vic(svd);
3713 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
3714
3715 if (!drm_valid_cea_vic(vic))
3716 return;
3717
3718 bitmap_set(hdmi->y420_cmdb_modes, vic, 1);
3719}
3720
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003721static int
Lespiau, Damien13ac3f52013-08-19 16:58:53 +01003722do_cea_modes(struct drm_connector *connector, const u8 *db, u8 len)
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003723{
Thomas Woodaff04ac2013-11-29 15:33:27 +00003724 int i, modes = 0;
Shashank Sharma832d4f22017-07-14 16:03:46 +05303725 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003726
Thomas Woodaff04ac2013-11-29 15:33:27 +00003727 for (i = 0; i < len; i++) {
3728 struct drm_display_mode *mode;
3729 mode = drm_display_mode_from_vic_index(connector, db, len, i);
3730 if (mode) {
Shashank Sharma832d4f22017-07-14 16:03:46 +05303731 /*
3732 * YCBCR420 capability block contains a bitmap which
3733 * gives the index of CEA modes from CEA VDB, which
3734 * can support YCBCR 420 sampling output also (apart
3735 * from RGB/YCBCR444 etc).
3736 * For example, if the bit 0 in bitmap is set,
3737 * first mode in VDB can support YCBCR420 output too.
3738 * Add YCBCR420 modes only if sink is HDMI 2.0 capable.
3739 */
3740 if (i < 64 && hdmi->y420_cmdb_map & (1ULL << i))
3741 drm_add_cmdb_modes(connector, db[i]);
3742
Thomas Woodaff04ac2013-11-29 15:33:27 +00003743 drm_mode_probed_add(connector, mode);
3744 modes++;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003745 }
3746 }
3747
3748 return modes;
3749}
3750
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003751struct stereo_mandatory_mode {
3752 int width, height, vrefresh;
3753 unsigned int flags;
3754};
3755
3756static const struct stereo_mandatory_mode stereo_mandatory_modes[] = {
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003757 { 1920, 1080, 24, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3758 { 1920, 1080, 24, DRM_MODE_FLAG_3D_FRAME_PACKING },
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003759 { 1920, 1080, 50,
3760 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
3761 { 1920, 1080, 60,
3762 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003763 { 1280, 720, 50, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3764 { 1280, 720, 50, DRM_MODE_FLAG_3D_FRAME_PACKING },
3765 { 1280, 720, 60, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3766 { 1280, 720, 60, DRM_MODE_FLAG_3D_FRAME_PACKING }
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003767};
3768
3769static bool
3770stereo_match_mandatory(const struct drm_display_mode *mode,
3771 const struct stereo_mandatory_mode *stereo_mode)
3772{
3773 unsigned int interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE;
3774
3775 return mode->hdisplay == stereo_mode->width &&
3776 mode->vdisplay == stereo_mode->height &&
3777 interlaced == (stereo_mode->flags & DRM_MODE_FLAG_INTERLACE) &&
3778 drm_mode_vrefresh(mode) == stereo_mode->vrefresh;
3779}
3780
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003781static int add_hdmi_mandatory_stereo_modes(struct drm_connector *connector)
3782{
3783 struct drm_device *dev = connector->dev;
3784 const struct drm_display_mode *mode;
3785 struct list_head stereo_modes;
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003786 int modes = 0, i;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003787
3788 INIT_LIST_HEAD(&stereo_modes);
3789
3790 list_for_each_entry(mode, &connector->probed_modes, head) {
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003791 for (i = 0; i < ARRAY_SIZE(stereo_mandatory_modes); i++) {
3792 const struct stereo_mandatory_mode *mandatory;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003793 struct drm_display_mode *new_mode;
3794
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003795 if (!stereo_match_mandatory(mode,
3796 &stereo_mandatory_modes[i]))
3797 continue;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003798
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003799 mandatory = &stereo_mandatory_modes[i];
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003800 new_mode = drm_mode_duplicate(dev, mode);
3801 if (!new_mode)
3802 continue;
3803
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003804 new_mode->flags |= mandatory->flags;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003805 list_add_tail(&new_mode->head, &stereo_modes);
3806 modes++;
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003807 }
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003808 }
3809
3810 list_splice_tail(&stereo_modes, &connector->probed_modes);
3811
3812 return modes;
3813}
3814
Damien Lespiau1deee8d2013-09-25 16:45:24 +01003815static int add_hdmi_mode(struct drm_connector *connector, u8 vic)
3816{
3817 struct drm_device *dev = connector->dev;
3818 struct drm_display_mode *newmode;
3819
Jani Nikulad9278b42016-01-08 13:21:51 +02003820 if (!drm_valid_hdmi_vic(vic)) {
Damien Lespiau1deee8d2013-09-25 16:45:24 +01003821 DRM_ERROR("Unknown HDMI VIC: %d\n", vic);
3822 return 0;
3823 }
3824
3825 newmode = drm_mode_duplicate(dev, &edid_4k_modes[vic]);
3826 if (!newmode)
3827 return 0;
3828
3829 drm_mode_probed_add(connector, newmode);
3830
3831 return 1;
3832}
3833
Thomas Woodfbf46022013-10-16 15:58:50 +01003834static int add_3d_struct_modes(struct drm_connector *connector, u16 structure,
3835 const u8 *video_db, u8 video_len, u8 video_index)
3836{
Thomas Woodfbf46022013-10-16 15:58:50 +01003837 struct drm_display_mode *newmode;
3838 int modes = 0;
Thomas Woodfbf46022013-10-16 15:58:50 +01003839
3840 if (structure & (1 << 0)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003841 newmode = drm_display_mode_from_vic_index(connector, video_db,
3842 video_len,
3843 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003844 if (newmode) {
3845 newmode->flags |= DRM_MODE_FLAG_3D_FRAME_PACKING;
3846 drm_mode_probed_add(connector, newmode);
3847 modes++;
3848 }
3849 }
3850 if (structure & (1 << 6)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003851 newmode = drm_display_mode_from_vic_index(connector, video_db,
3852 video_len,
3853 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003854 if (newmode) {
3855 newmode->flags |= DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
3856 drm_mode_probed_add(connector, newmode);
3857 modes++;
3858 }
3859 }
3860 if (structure & (1 << 8)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003861 newmode = drm_display_mode_from_vic_index(connector, video_db,
3862 video_len,
3863 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003864 if (newmode) {
Thomas Wood89570ee2013-11-28 15:35:04 +00003865 newmode->flags |= DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
Thomas Woodfbf46022013-10-16 15:58:50 +01003866 drm_mode_probed_add(connector, newmode);
3867 modes++;
3868 }
3869 }
3870
3871 return modes;
3872}
3873
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003874/*
3875 * do_hdmi_vsdb_modes - Parse the HDMI Vendor Specific data block
3876 * @connector: connector corresponding to the HDMI sink
3877 * @db: start of the CEA vendor specific block
3878 * @len: length of the CEA block payload, ie. one can access up to db[len]
3879 *
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003880 * Parses the HDMI VSDB looking for modes to add to @connector. This function
3881 * also adds the stereo 3d modes when applicable.
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003882 */
3883static int
Thomas Woodfbf46022013-10-16 15:58:50 +01003884do_hdmi_vsdb_modes(struct drm_connector *connector, const u8 *db, u8 len,
3885 const u8 *video_db, u8 video_len)
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003886{
Ville Syrjäläf1781e92017-11-13 19:04:19 +02003887 struct drm_display_info *info = &connector->display_info;
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003888 int modes = 0, offset = 0, i, multi_present = 0, multi_len;
Thomas Woodfbf46022013-10-16 15:58:50 +01003889 u8 vic_len, hdmi_3d_len = 0;
3890 u16 mask;
3891 u16 structure_all;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003892
3893 if (len < 8)
3894 goto out;
3895
3896 /* no HDMI_Video_Present */
3897 if (!(db[8] & (1 << 5)))
3898 goto out;
3899
3900 /* Latency_Fields_Present */
3901 if (db[8] & (1 << 7))
3902 offset += 2;
3903
3904 /* I_Latency_Fields_Present */
3905 if (db[8] & (1 << 6))
3906 offset += 2;
3907
3908 /* the declared length is not long enough for the 2 first bytes
3909 * of additional video format capabilities */
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003910 if (len < (8 + offset + 2))
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003911 goto out;
3912
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003913 /* 3D_Present */
3914 offset++;
Thomas Woodfbf46022013-10-16 15:58:50 +01003915 if (db[8 + offset] & (1 << 7)) {
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003916 modes += add_hdmi_mandatory_stereo_modes(connector);
3917
Thomas Woodfbf46022013-10-16 15:58:50 +01003918 /* 3D_Multi_present */
3919 multi_present = (db[8 + offset] & 0x60) >> 5;
3920 }
3921
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003922 offset++;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003923 vic_len = db[8 + offset] >> 5;
Thomas Woodfbf46022013-10-16 15:58:50 +01003924 hdmi_3d_len = db[8 + offset] & 0x1f;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003925
3926 for (i = 0; i < vic_len && len >= (9 + offset + i); i++) {
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003927 u8 vic;
3928
3929 vic = db[9 + offset + i];
Damien Lespiau1deee8d2013-09-25 16:45:24 +01003930 modes += add_hdmi_mode(connector, vic);
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003931 }
Thomas Woodfbf46022013-10-16 15:58:50 +01003932 offset += 1 + vic_len;
3933
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003934 if (multi_present == 1)
3935 multi_len = 2;
3936 else if (multi_present == 2)
3937 multi_len = 4;
Thomas Woodfbf46022013-10-16 15:58:50 +01003938 else
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003939 multi_len = 0;
Thomas Woodfbf46022013-10-16 15:58:50 +01003940
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003941 if (len < (8 + offset + hdmi_3d_len - 1))
3942 goto out;
3943
3944 if (hdmi_3d_len < multi_len)
3945 goto out;
3946
3947 if (multi_present == 1 || multi_present == 2) {
3948 /* 3D_Structure_ALL */
3949 structure_all = (db[8 + offset] << 8) | db[9 + offset];
3950
3951 /* check if 3D_MASK is present */
3952 if (multi_present == 2)
3953 mask = (db[10 + offset] << 8) | db[11 + offset];
3954 else
3955 mask = 0xffff;
3956
3957 for (i = 0; i < 16; i++) {
3958 if (mask & (1 << i))
3959 modes += add_3d_struct_modes(connector,
3960 structure_all,
3961 video_db,
3962 video_len, i);
3963 }
3964 }
3965
3966 offset += multi_len;
3967
3968 for (i = 0; i < (hdmi_3d_len - multi_len); i++) {
3969 int vic_index;
3970 struct drm_display_mode *newmode = NULL;
3971 unsigned int newflag = 0;
3972 bool detail_present;
3973
3974 detail_present = ((db[8 + offset + i] & 0x0f) > 7);
3975
3976 if (detail_present && (i + 1 == hdmi_3d_len - multi_len))
3977 break;
3978
3979 /* 2D_VIC_order_X */
3980 vic_index = db[8 + offset + i] >> 4;
3981
3982 /* 3D_Structure_X */
3983 switch (db[8 + offset + i] & 0x0f) {
3984 case 0:
3985 newflag = DRM_MODE_FLAG_3D_FRAME_PACKING;
3986 break;
3987 case 6:
3988 newflag = DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
3989 break;
3990 case 8:
3991 /* 3D_Detail_X */
3992 if ((db[9 + offset + i] >> 4) == 1)
3993 newflag = DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
3994 break;
3995 }
3996
3997 if (newflag != 0) {
3998 newmode = drm_display_mode_from_vic_index(connector,
3999 video_db,
4000 video_len,
4001 vic_index);
4002
4003 if (newmode) {
4004 newmode->flags |= newflag;
4005 drm_mode_probed_add(connector, newmode);
4006 modes++;
4007 }
4008 }
4009
4010 if (detail_present)
4011 i++;
Thomas Woodfbf46022013-10-16 15:58:50 +01004012 }
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004013
4014out:
Ville Syrjäläf1781e92017-11-13 19:04:19 +02004015 if (modes > 0)
4016 info->has_hdmi_infoframe = true;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004017 return modes;
4018}
4019
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004020static int
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004021cea_db_payload_len(const u8 *db)
4022{
4023 return db[0] & 0x1f;
4024}
4025
4026static int
Shashank Sharma87563fc2017-07-13 21:03:10 +05304027cea_db_extended_tag(const u8 *db)
4028{
4029 return db[1];
4030}
4031
4032static int
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004033cea_db_tag(const u8 *db)
4034{
4035 return db[0] >> 5;
4036}
4037
4038static int
4039cea_revision(const u8 *cea)
4040{
Ville Syrjälä5036c0d2020-01-24 22:02:29 +02004041 /*
4042 * FIXME is this correct for the DispID variant?
4043 * The DispID spec doesn't really specify whether
4044 * this is the revision of the CEA extension or
4045 * the DispID CEA data block. And the only value
4046 * given as an example is 0.
4047 */
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004048 return cea[1];
4049}
4050
4051static int
4052cea_db_offsets(const u8 *cea, int *start, int *end)
4053{
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004054 /* DisplayID CTA extension blocks and top-level CEA EDID
4055 * block header definitions differ in the following bytes:
4056 * 1) Byte 2 of the header specifies length differently,
4057 * 2) Byte 3 is only present in the CEA top level block.
4058 *
4059 * The different definitions for byte 2 follow.
4060 *
4061 * DisplayID CTA extension block defines byte 2 as:
4062 * Number of payload bytes
4063 *
4064 * CEA EDID block defines byte 2 as:
4065 * Byte number (decimal) within this block where the 18-byte
4066 * DTDs begin. If no non-DTD data is present in this extension
4067 * block, the value should be set to 04h (the byte after next).
4068 * If set to 00h, there are no DTDs present in this block and
4069 * no non-DTD data.
4070 */
4071 if (cea[0] == DATA_BLOCK_CTA) {
Ville Syrjälä6e8a9422020-01-24 22:02:28 +02004072 /*
4073 * for_each_displayid_db() has already verified
4074 * that these stay within expected bounds.
4075 */
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004076 *start = 3;
4077 *end = *start + cea[2];
4078 } else if (cea[0] == CEA_EXT) {
4079 /* Data block offset in CEA extension block */
4080 *start = 4;
4081 *end = cea[2];
4082 if (*end == 0)
4083 *end = 127;
4084 if (*end < 4 || *end > 127)
4085 return -ERANGE;
4086 } else {
Daniel Vetterc7581a42019-09-04 16:39:42 +02004087 return -EOPNOTSUPP;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004088 }
4089
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004090 return 0;
4091}
4092
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004093static bool cea_db_is_hdmi_vsdb(const u8 *db)
4094{
4095 int hdmi_id;
4096
4097 if (cea_db_tag(db) != VENDOR_BLOCK)
4098 return false;
4099
4100 if (cea_db_payload_len(db) < 5)
4101 return false;
4102
4103 hdmi_id = db[1] | (db[2] << 8) | (db[3] << 16);
4104
Lespiau, Damien6cb3b7f2013-08-19 16:59:05 +01004105 return hdmi_id == HDMI_IEEE_OUI;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004106}
4107
Thierry Reding50dd1bd2017-03-13 16:54:00 +05304108static bool cea_db_is_hdmi_forum_vsdb(const u8 *db)
4109{
4110 unsigned int oui;
4111
4112 if (cea_db_tag(db) != VENDOR_BLOCK)
4113 return false;
4114
4115 if (cea_db_payload_len(db) < 7)
4116 return false;
4117
4118 oui = db[3] << 16 | db[2] << 8 | db[1];
4119
4120 return oui == HDMI_FORUM_IEEE_OUI;
4121}
4122
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02004123static bool cea_db_is_vcdb(const u8 *db)
4124{
4125 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4126 return false;
4127
4128 if (cea_db_payload_len(db) != 2)
4129 return false;
4130
4131 if (cea_db_extended_tag(db) != EXT_VIDEO_CAPABILITY_BLOCK)
4132 return false;
4133
4134 return true;
4135}
4136
Shashank Sharma832d4f22017-07-14 16:03:46 +05304137static bool cea_db_is_y420cmdb(const u8 *db)
4138{
4139 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4140 return false;
4141
4142 if (!cea_db_payload_len(db))
4143 return false;
4144
4145 if (cea_db_extended_tag(db) != EXT_VIDEO_CAP_BLOCK_Y420CMDB)
4146 return false;
4147
4148 return true;
4149}
4150
4151static bool cea_db_is_y420vdb(const u8 *db)
4152{
4153 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4154 return false;
4155
4156 if (!cea_db_payload_len(db))
4157 return false;
4158
4159 if (cea_db_extended_tag(db) != EXT_VIDEO_DATA_BLOCK_420)
4160 return false;
4161
4162 return true;
4163}
4164
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004165#define for_each_cea_db(cea, i, start, end) \
4166 for ((i) = (start); (i) < (end) && (i) + cea_db_payload_len(&(cea)[(i)]) < (end); (i) += cea_db_payload_len(&(cea)[(i)]) + 1)
4167
Shashank Sharma832d4f22017-07-14 16:03:46 +05304168static void drm_parse_y420cmdb_bitmap(struct drm_connector *connector,
4169 const u8 *db)
4170{
4171 struct drm_display_info *info = &connector->display_info;
4172 struct drm_hdmi_info *hdmi = &info->hdmi;
4173 u8 map_len = cea_db_payload_len(db) - 1;
4174 u8 count;
4175 u64 map = 0;
4176
4177 if (map_len == 0) {
4178 /* All CEA modes support ycbcr420 sampling also.*/
4179 hdmi->y420_cmdb_map = U64_MAX;
4180 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
4181 return;
4182 }
4183
4184 /*
4185 * This map indicates which of the existing CEA block modes
4186 * from VDB can support YCBCR420 output too. So if bit=0 is
4187 * set, first mode from VDB can support YCBCR420 output too.
4188 * We will parse and keep this map, before parsing VDB itself
4189 * to avoid going through the same block again and again.
4190 *
4191 * Spec is not clear about max possible size of this block.
4192 * Clamping max bitmap block size at 8 bytes. Every byte can
4193 * address 8 CEA modes, in this way this map can address
4194 * 8*8 = first 64 SVDs.
4195 */
4196 if (WARN_ON_ONCE(map_len > 8))
4197 map_len = 8;
4198
4199 for (count = 0; count < map_len; count++)
4200 map |= (u64)db[2 + count] << (8 * count);
4201
4202 if (map)
4203 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
4204
4205 hdmi->y420_cmdb_map = map;
4206}
4207
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004208static int
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004209add_cea_modes(struct drm_connector *connector, struct edid *edid)
4210{
Lespiau, Damien13ac3f52013-08-19 16:58:53 +01004211 const u8 *cea = drm_find_cea_extension(edid);
Thomas Woodfbf46022013-10-16 15:58:50 +01004212 const u8 *db, *hdmi = NULL, *video = NULL;
4213 u8 dbl, hdmi_len, video_len = 0;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004214 int modes = 0;
4215
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004216 if (cea && cea_revision(cea) >= 3) {
4217 int i, start, end;
4218
4219 if (cea_db_offsets(cea, &start, &end))
4220 return 0;
4221
4222 for_each_cea_db(cea, i, start, end) {
4223 db = &cea[i];
4224 dbl = cea_db_payload_len(db);
4225
Thomas Woodfbf46022013-10-16 15:58:50 +01004226 if (cea_db_tag(db) == VIDEO_BLOCK) {
4227 video = db + 1;
4228 video_len = dbl;
4229 modes += do_cea_modes(connector, video, dbl);
Shashank Sharma832d4f22017-07-14 16:03:46 +05304230 } else if (cea_db_is_hdmi_vsdb(db)) {
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004231 hdmi = db;
4232 hdmi_len = dbl;
Shashank Sharma832d4f22017-07-14 16:03:46 +05304233 } else if (cea_db_is_y420vdb(db)) {
4234 const u8 *vdb420 = &db[2];
4235
4236 /* Add 4:2:0(only) modes present in EDID */
4237 modes += do_y420vdb_modes(connector,
4238 vdb420,
4239 dbl - 1);
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004240 }
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004241 }
4242 }
4243
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004244 /*
4245 * We parse the HDMI VSDB after having added the cea modes as we will
4246 * be patching their flags when the sink supports stereo 3D.
4247 */
4248 if (hdmi)
Thomas Woodfbf46022013-10-16 15:58:50 +01004249 modes += do_hdmi_vsdb_modes(connector, hdmi, hdmi_len, video,
4250 video_len);
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004251
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004252 return modes;
4253}
4254
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004255static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode)
4256{
4257 const struct drm_display_mode *cea_mode;
4258 int clock1, clock2, clock;
Jani Nikulad9278b42016-01-08 13:21:51 +02004259 u8 vic;
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004260 const char *type;
4261
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02004262 /*
4263 * allow 5kHz clock difference either way to account for
4264 * the 10kHz clock resolution limit of detailed timings.
4265 */
Jani Nikulad9278b42016-01-08 13:21:51 +02004266 vic = drm_match_cea_mode_clock_tolerance(mode, 5);
4267 if (drm_valid_cea_vic(vic)) {
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004268 type = "CEA";
Ville Syrjälä7befe622019-12-13 19:43:45 +02004269 cea_mode = cea_mode_for_vic(vic);
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004270 clock1 = cea_mode->clock;
4271 clock2 = cea_mode_alternate_clock(cea_mode);
4272 } else {
Jani Nikulad9278b42016-01-08 13:21:51 +02004273 vic = drm_match_hdmi_mode_clock_tolerance(mode, 5);
4274 if (drm_valid_hdmi_vic(vic)) {
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004275 type = "HDMI";
Jani Nikulad9278b42016-01-08 13:21:51 +02004276 cea_mode = &edid_4k_modes[vic];
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004277 clock1 = cea_mode->clock;
4278 clock2 = hdmi_mode_alternate_clock(cea_mode);
4279 } else {
4280 return;
4281 }
4282 }
4283
4284 /* pick whichever is closest */
4285 if (abs(mode->clock - clock1) < abs(mode->clock - clock2))
4286 clock = clock1;
4287 else
4288 clock = clock2;
4289
4290 if (mode->clock == clock)
4291 return;
4292
4293 DRM_DEBUG("detailed mode matches %s VIC %d, adjusting clock %d -> %d\n",
Jani Nikulad9278b42016-01-08 13:21:51 +02004294 type, vic, mode->clock, clock);
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004295 mode->clock = clock;
4296}
4297
Uma Shankare85959d2019-05-16 19:40:08 +05304298static bool cea_db_is_hdmi_hdr_metadata_block(const u8 *db)
4299{
4300 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4301 return false;
4302
4303 if (db[1] != HDR_STATIC_METADATA_BLOCK)
4304 return false;
4305
4306 if (cea_db_payload_len(db) < 3)
4307 return false;
4308
4309 return true;
4310}
4311
4312static uint8_t eotf_supported(const u8 *edid_ext)
4313{
4314 return edid_ext[2] &
4315 (BIT(HDMI_EOTF_TRADITIONAL_GAMMA_SDR) |
4316 BIT(HDMI_EOTF_TRADITIONAL_GAMMA_HDR) |
Ville Syrjäläb5e3eed2019-05-16 19:40:12 +05304317 BIT(HDMI_EOTF_SMPTE_ST2084) |
4318 BIT(HDMI_EOTF_BT_2100_HLG));
Uma Shankare85959d2019-05-16 19:40:08 +05304319}
4320
4321static uint8_t hdr_metadata_type(const u8 *edid_ext)
4322{
4323 return edid_ext[3] &
4324 BIT(HDMI_STATIC_METADATA_TYPE1);
4325}
4326
4327static void
4328drm_parse_hdr_metadata_block(struct drm_connector *connector, const u8 *db)
4329{
4330 u16 len;
4331
4332 len = cea_db_payload_len(db);
4333
4334 connector->hdr_sink_metadata.hdmi_type1.eotf =
4335 eotf_supported(db);
4336 connector->hdr_sink_metadata.hdmi_type1.metadata_type =
4337 hdr_metadata_type(db);
4338
4339 if (len >= 4)
4340 connector->hdr_sink_metadata.hdmi_type1.max_cll = db[4];
4341 if (len >= 5)
4342 connector->hdr_sink_metadata.hdmi_type1.max_fall = db[5];
4343 if (len >= 6)
4344 connector->hdr_sink_metadata.hdmi_type1.min_cll = db[6];
4345}
4346
Wu Fengguang76adaa342011-09-05 14:23:20 +08004347static void
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004348drm_parse_hdmi_vsdb_audio(struct drm_connector *connector, const u8 *db)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004349{
Ville Syrjälä85040722012-08-16 14:55:05 +00004350 u8 len = cea_db_payload_len(db);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004351
Jani Nikulaf7da77852017-11-01 16:20:57 +02004352 if (len >= 6 && (db[6] & (1 << 7)))
4353 connector->eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_SUPPORTS_AI;
Ville Syrjälä85040722012-08-16 14:55:05 +00004354 if (len >= 8) {
4355 connector->latency_present[0] = db[8] >> 7;
4356 connector->latency_present[1] = (db[8] >> 6) & 1;
4357 }
4358 if (len >= 9)
4359 connector->video_latency[0] = db[9];
4360 if (len >= 10)
4361 connector->audio_latency[0] = db[10];
4362 if (len >= 11)
4363 connector->video_latency[1] = db[11];
4364 if (len >= 12)
4365 connector->audio_latency[1] = db[12];
Wu Fengguang76adaa342011-09-05 14:23:20 +08004366
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004367 DRM_DEBUG_KMS("HDMI: latency present %d %d, "
4368 "video latency %d %d, "
4369 "audio latency %d %d\n",
4370 connector->latency_present[0],
4371 connector->latency_present[1],
4372 connector->video_latency[0],
4373 connector->video_latency[1],
4374 connector->audio_latency[0],
4375 connector->audio_latency[1]);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004376}
4377
4378static void
4379monitor_name(struct detailed_timing *t, void *data)
4380{
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02004381 if (!is_display_descriptor((const u8 *)t, EDID_DETAIL_MONITOR_NAME))
4382 return;
4383
4384 *(u8 **)data = t->data.other_data.data.str.str;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004385}
4386
Jim Bride59f7c0f2016-04-14 10:18:35 -07004387static int get_monitor_name(struct edid *edid, char name[13])
4388{
4389 char *edid_name = NULL;
4390 int mnl;
4391
4392 if (!edid || !name)
4393 return 0;
4394
4395 drm_for_each_detailed_block((u8 *)edid, monitor_name, &edid_name);
4396 for (mnl = 0; edid_name && mnl < 13; mnl++) {
4397 if (edid_name[mnl] == 0x0a)
4398 break;
4399
4400 name[mnl] = edid_name[mnl];
4401 }
4402
4403 return mnl;
4404}
4405
4406/**
4407 * drm_edid_get_monitor_name - fetch the monitor name from the edid
4408 * @edid: monitor EDID information
4409 * @name: pointer to a character array to hold the name of the monitor
4410 * @bufsize: The size of the name buffer (should be at least 14 chars.)
4411 *
4412 */
4413void drm_edid_get_monitor_name(struct edid *edid, char *name, int bufsize)
4414{
4415 int name_length;
4416 char buf[13];
Ville Syrjälä4d23f482020-01-24 22:02:27 +02004417
Jim Bride59f7c0f2016-04-14 10:18:35 -07004418 if (bufsize <= 0)
4419 return;
4420
4421 name_length = min(get_monitor_name(edid, buf), bufsize - 1);
4422 memcpy(name, buf, name_length);
4423 name[name_length] = '\0';
4424}
4425EXPORT_SYMBOL(drm_edid_get_monitor_name);
4426
Jani Nikula42750d32017-11-01 16:21:00 +02004427static void clear_eld(struct drm_connector *connector)
4428{
4429 memset(connector->eld, 0, sizeof(connector->eld));
4430
4431 connector->latency_present[0] = false;
4432 connector->latency_present[1] = false;
4433 connector->video_latency[0] = 0;
4434 connector->audio_latency[0] = 0;
4435 connector->video_latency[1] = 0;
4436 connector->audio_latency[1] = 0;
4437}
4438
Jani Nikula79436a12017-11-01 16:21:03 +02004439/*
Wu Fengguang76adaa342011-09-05 14:23:20 +08004440 * drm_edid_to_eld - build ELD from EDID
4441 * @connector: connector corresponding to the HDMI/DP sink
4442 * @edid: EDID to parse
4443 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004444 * Fill the ELD (EDID-Like Data) buffer for passing to the audio driver. The
Jani Nikula1d1c3662017-11-01 16:20:58 +02004445 * HDCP and Port_ID ELD fields are left for the graphics driver to fill in.
Wu Fengguang76adaa342011-09-05 14:23:20 +08004446 */
Jani Nikula79436a12017-11-01 16:21:03 +02004447static void drm_edid_to_eld(struct drm_connector *connector, struct edid *edid)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004448{
4449 uint8_t *eld = connector->eld;
4450 u8 *cea;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004451 u8 *db;
Ville Syrjälä7c018782016-03-09 22:07:46 +02004452 int total_sad_count = 0;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004453 int mnl;
4454 int dbl;
4455
Jani Nikula42750d32017-11-01 16:21:00 +02004456 clear_eld(connector);
Ville Syrjälä85c91582016-09-28 16:51:34 +03004457
Jani Nikulae9bd0b82017-02-17 17:20:52 +02004458 if (!edid)
4459 return;
4460
Wu Fengguang76adaa342011-09-05 14:23:20 +08004461 cea = drm_find_cea_extension(edid);
4462 if (!cea) {
4463 DRM_DEBUG_KMS("ELD: no CEA Extension found\n");
4464 return;
4465 }
4466
Jani Nikulaf7da77852017-11-01 16:20:57 +02004467 mnl = get_monitor_name(edid, &eld[DRM_ELD_MONITOR_NAME_STRING]);
4468 DRM_DEBUG_KMS("ELD monitor %s\n", &eld[DRM_ELD_MONITOR_NAME_STRING]);
Jim Bride59f7c0f2016-04-14 10:18:35 -07004469
Jani Nikulaf7da77852017-11-01 16:20:57 +02004470 eld[DRM_ELD_CEA_EDID_VER_MNL] = cea[1] << DRM_ELD_CEA_EDID_VER_SHIFT;
4471 eld[DRM_ELD_CEA_EDID_VER_MNL] |= mnl;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004472
Jani Nikulaf7da77852017-11-01 16:20:57 +02004473 eld[DRM_ELD_VER] = DRM_ELD_VER_CEA861D;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004474
Jani Nikulaf7da77852017-11-01 16:20:57 +02004475 eld[DRM_ELD_MANUFACTURER_NAME0] = edid->mfg_id[0];
4476 eld[DRM_ELD_MANUFACTURER_NAME1] = edid->mfg_id[1];
4477 eld[DRM_ELD_PRODUCT_CODE0] = edid->prod_code[0];
4478 eld[DRM_ELD_PRODUCT_CODE1] = edid->prod_code[1];
Wu Fengguang76adaa342011-09-05 14:23:20 +08004479
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004480 if (cea_revision(cea) >= 3) {
4481 int i, start, end;
Kees Cookdeec2222020-03-06 09:32:13 -08004482 int sad_count;
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004483
4484 if (cea_db_offsets(cea, &start, &end)) {
4485 start = 0;
4486 end = 0;
4487 }
4488
4489 for_each_cea_db(cea, i, start, end) {
4490 db = &cea[i];
4491 dbl = cea_db_payload_len(db);
4492
4493 switch (cea_db_tag(db)) {
Christian Schmidta0ab7342011-12-19 20:03:38 +01004494 case AUDIO_BLOCK:
4495 /* Audio Data Block, contains SADs */
Ville Syrjälä7c018782016-03-09 22:07:46 +02004496 sad_count = min(dbl / 3, 15 - total_sad_count);
4497 if (sad_count >= 1)
Jani Nikulaf7da77852017-11-01 16:20:57 +02004498 memcpy(&eld[DRM_ELD_CEA_SAD(mnl, total_sad_count)],
Ville Syrjälä7c018782016-03-09 22:07:46 +02004499 &db[1], sad_count * 3);
4500 total_sad_count += sad_count;
Christian Schmidta0ab7342011-12-19 20:03:38 +01004501 break;
4502 case SPEAKER_BLOCK:
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004503 /* Speaker Allocation Data Block */
4504 if (dbl >= 1)
Jani Nikulaf7da77852017-11-01 16:20:57 +02004505 eld[DRM_ELD_SPEAKER] = db[1];
Christian Schmidta0ab7342011-12-19 20:03:38 +01004506 break;
4507 case VENDOR_BLOCK:
4508 /* HDMI Vendor-Specific Data Block */
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004509 if (cea_db_is_hdmi_vsdb(db))
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004510 drm_parse_hdmi_vsdb_audio(connector, db);
Christian Schmidta0ab7342011-12-19 20:03:38 +01004511 break;
4512 default:
4513 break;
4514 }
Wu Fengguang76adaa342011-09-05 14:23:20 +08004515 }
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004516 }
Jani Nikulaf7da77852017-11-01 16:20:57 +02004517 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= total_sad_count << DRM_ELD_SAD_COUNT_SHIFT;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004518
Jani Nikula1d1c3662017-11-01 16:20:58 +02004519 if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
4520 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
4521 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_DP;
4522 else
4523 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_HDMI;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004524
Jani Nikula938fd8a2014-10-28 16:20:48 +02004525 eld[DRM_ELD_BASELINE_ELD_LEN] =
4526 DIV_ROUND_UP(drm_eld_calc_baseline_block_size(eld), 4);
4527
4528 DRM_DEBUG_KMS("ELD size %d, SAD count %d\n",
Ville Syrjälä7c018782016-03-09 22:07:46 +02004529 drm_eld_size(eld), total_sad_count);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004530}
Wu Fengguang76adaa342011-09-05 14:23:20 +08004531
4532/**
Rafał Miłeckife214162013-04-19 19:01:25 +02004533 * drm_edid_to_sad - extracts SADs from EDID
4534 * @edid: EDID to parse
4535 * @sads: pointer that will be set to the extracted SADs
4536 *
4537 * Looks for CEA EDID block and extracts SADs (Short Audio Descriptors) from it.
Rafał Miłeckife214162013-04-19 19:01:25 +02004538 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004539 * Note: The returned pointer needs to be freed using kfree().
4540 *
4541 * Return: The number of found SADs or negative number on error.
Rafał Miłeckife214162013-04-19 19:01:25 +02004542 */
4543int drm_edid_to_sad(struct edid *edid, struct cea_sad **sads)
4544{
4545 int count = 0;
4546 int i, start, end, dbl;
4547 u8 *cea;
4548
4549 cea = drm_find_cea_extension(edid);
4550 if (!cea) {
4551 DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
Jean Delvare42908002019-11-15 17:07:36 +01004552 return 0;
Rafał Miłeckife214162013-04-19 19:01:25 +02004553 }
4554
4555 if (cea_revision(cea) < 3) {
4556 DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
Jean Delvare42908002019-11-15 17:07:36 +01004557 return 0;
Rafał Miłeckife214162013-04-19 19:01:25 +02004558 }
4559
4560 if (cea_db_offsets(cea, &start, &end)) {
4561 DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
4562 return -EPROTO;
4563 }
4564
4565 for_each_cea_db(cea, i, start, end) {
4566 u8 *db = &cea[i];
4567
4568 if (cea_db_tag(db) == AUDIO_BLOCK) {
4569 int j;
4570 dbl = cea_db_payload_len(db);
4571
4572 count = dbl / 3; /* SAD is 3B */
4573 *sads = kcalloc(count, sizeof(**sads), GFP_KERNEL);
4574 if (!*sads)
4575 return -ENOMEM;
4576 for (j = 0; j < count; j++) {
4577 u8 *sad = &db[1 + j * 3];
4578
4579 (*sads)[j].format = (sad[0] & 0x78) >> 3;
4580 (*sads)[j].channels = sad[0] & 0x7;
4581 (*sads)[j].freq = sad[1] & 0x7F;
4582 (*sads)[j].byte2 = sad[2];
4583 }
4584 break;
4585 }
4586 }
4587
4588 return count;
4589}
4590EXPORT_SYMBOL(drm_edid_to_sad);
4591
4592/**
Alex Deucherd105f472013-07-25 15:55:32 -04004593 * drm_edid_to_speaker_allocation - extracts Speaker Allocation Data Blocks from EDID
4594 * @edid: EDID to parse
4595 * @sadb: pointer to the speaker block
4596 *
4597 * Looks for CEA EDID block and extracts the Speaker Allocation Data Block from it.
Alex Deucherd105f472013-07-25 15:55:32 -04004598 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004599 * Note: The returned pointer needs to be freed using kfree().
4600 *
4601 * Return: The number of found Speaker Allocation Blocks or negative number on
4602 * error.
Alex Deucherd105f472013-07-25 15:55:32 -04004603 */
4604int drm_edid_to_speaker_allocation(struct edid *edid, u8 **sadb)
4605{
4606 int count = 0;
4607 int i, start, end, dbl;
4608 const u8 *cea;
4609
4610 cea = drm_find_cea_extension(edid);
4611 if (!cea) {
4612 DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
Jean Delvare42908002019-11-15 17:07:36 +01004613 return 0;
Alex Deucherd105f472013-07-25 15:55:32 -04004614 }
4615
4616 if (cea_revision(cea) < 3) {
4617 DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
Jean Delvare42908002019-11-15 17:07:36 +01004618 return 0;
Alex Deucherd105f472013-07-25 15:55:32 -04004619 }
4620
4621 if (cea_db_offsets(cea, &start, &end)) {
4622 DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
4623 return -EPROTO;
4624 }
4625
4626 for_each_cea_db(cea, i, start, end) {
4627 const u8 *db = &cea[i];
4628
4629 if (cea_db_tag(db) == SPEAKER_BLOCK) {
4630 dbl = cea_db_payload_len(db);
4631
4632 /* Speaker Allocation Data Block */
4633 if (dbl == 3) {
Benoit Taine89086bc2014-05-26 17:21:22 +02004634 *sadb = kmemdup(&db[1], dbl, GFP_KERNEL);
Alex Deucher618e3772013-09-27 18:46:09 -04004635 if (!*sadb)
4636 return -ENOMEM;
Alex Deucherd105f472013-07-25 15:55:32 -04004637 count = dbl;
4638 break;
4639 }
4640 }
4641 }
4642
4643 return count;
4644}
4645EXPORT_SYMBOL(drm_edid_to_speaker_allocation);
4646
4647/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004648 * drm_av_sync_delay - compute the HDMI/DP sink audio-video sync delay
Wu Fengguang76adaa342011-09-05 14:23:20 +08004649 * @connector: connector associated with the HDMI/DP sink
4650 * @mode: the display mode
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004651 *
4652 * Return: The HDMI/DP sink's audio-video sync delay in milliseconds or 0 if
4653 * the sink doesn't support audio or video.
Wu Fengguang76adaa342011-09-05 14:23:20 +08004654 */
4655int drm_av_sync_delay(struct drm_connector *connector,
Ville Syrjälä3a818d32015-09-07 18:22:58 +03004656 const struct drm_display_mode *mode)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004657{
4658 int i = !!(mode->flags & DRM_MODE_FLAG_INTERLACE);
4659 int a, v;
4660
4661 if (!connector->latency_present[0])
4662 return 0;
4663 if (!connector->latency_present[1])
4664 i = 0;
4665
4666 a = connector->audio_latency[i];
4667 v = connector->video_latency[i];
4668
4669 /*
4670 * HDMI/DP sink doesn't support audio or video?
4671 */
4672 if (a == 255 || v == 255)
4673 return 0;
4674
4675 /*
4676 * Convert raw EDID values to millisecond.
4677 * Treat unknown latency as 0ms.
4678 */
4679 if (a)
4680 a = min(2 * (a - 1), 500);
4681 if (v)
4682 v = min(2 * (v - 1), 500);
4683
4684 return max(v - a, 0);
4685}
4686EXPORT_SYMBOL(drm_av_sync_delay);
4687
4688/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004689 * drm_detect_hdmi_monitor - detect whether monitor is HDMI
Ma Lingf23c20c2009-03-26 19:26:23 +08004690 * @edid: monitor EDID information
4691 *
4692 * Parse the CEA extension according to CEA-861-B.
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004693 *
Laurent Pincharta92d0832020-02-26 13:24:23 +02004694 * Drivers that have added the modes parsed from EDID to drm_display_info
4695 * should use &drm_display_info.is_hdmi instead of calling this function.
4696 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004697 * Return: True if the monitor is HDMI, false if not or unknown.
Ma Lingf23c20c2009-03-26 19:26:23 +08004698 */
4699bool drm_detect_hdmi_monitor(struct edid *edid)
4700{
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004701 u8 *edid_ext;
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004702 int i;
Ma Lingf23c20c2009-03-26 19:26:23 +08004703 int start_offset, end_offset;
Ma Lingf23c20c2009-03-26 19:26:23 +08004704
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004705 edid_ext = drm_find_cea_extension(edid);
4706 if (!edid_ext)
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004707 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004708
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004709 if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004710 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004711
4712 /*
4713 * Because HDMI identifier is in Vendor Specific Block,
4714 * search it from all data blocks of CEA extension.
4715 */
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004716 for_each_cea_db(edid_ext, i, start_offset, end_offset) {
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004717 if (cea_db_is_hdmi_vsdb(&edid_ext[i]))
4718 return true;
Ma Lingf23c20c2009-03-26 19:26:23 +08004719 }
4720
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004721 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004722}
4723EXPORT_SYMBOL(drm_detect_hdmi_monitor);
4724
Dave Airlief453ba02008-11-07 14:05:41 -08004725/**
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004726 * drm_detect_monitor_audio - check monitor audio capability
Daniel Vetterfc668112014-01-21 12:02:26 +01004727 * @edid: EDID block to scan
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004728 *
4729 * Monitor should have CEA extension block.
4730 * If monitor has 'basic audio', but no CEA audio blocks, it's 'basic
4731 * audio' only. If there is any audio extension block and supported
4732 * audio format, assume at least 'basic audio' support, even if 'basic
4733 * audio' is not defined in EDID.
4734 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004735 * Return: True if the monitor supports audio, false otherwise.
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004736 */
4737bool drm_detect_monitor_audio(struct edid *edid)
4738{
4739 u8 *edid_ext;
4740 int i, j;
4741 bool has_audio = false;
4742 int start_offset, end_offset;
4743
4744 edid_ext = drm_find_cea_extension(edid);
4745 if (!edid_ext)
4746 goto end;
4747
4748 has_audio = ((edid_ext[3] & EDID_BASIC_AUDIO) != 0);
4749
4750 if (has_audio) {
4751 DRM_DEBUG_KMS("Monitor has basic audio support\n");
4752 goto end;
4753 }
4754
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004755 if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
4756 goto end;
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004757
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004758 for_each_cea_db(edid_ext, i, start_offset, end_offset) {
4759 if (cea_db_tag(&edid_ext[i]) == AUDIO_BLOCK) {
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004760 has_audio = true;
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004761 for (j = 1; j < cea_db_payload_len(&edid_ext[i]) + 1; j += 3)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004762 DRM_DEBUG_KMS("CEA audio format %d\n",
4763 (edid_ext[i + j] >> 3) & 0xf);
4764 goto end;
4765 }
4766 }
4767end:
4768 return has_audio;
4769}
4770EXPORT_SYMBOL(drm_detect_monitor_audio);
4771
Ville Syrjäläb1edd6a2013-01-17 16:31:30 +02004772
Ville Syrjäläc8127cf02017-01-11 16:18:35 +02004773/**
4774 * drm_default_rgb_quant_range - default RGB quantization range
4775 * @mode: display mode
4776 *
4777 * Determine the default RGB quantization range for the mode,
4778 * as specified in CEA-861.
4779 *
4780 * Return: The default RGB quantization range for the mode
4781 */
4782enum hdmi_quantization_range
4783drm_default_rgb_quant_range(const struct drm_display_mode *mode)
4784{
4785 /* All CEA modes other than VIC 1 use limited quantization range. */
4786 return drm_match_cea_mode(mode) > 1 ?
4787 HDMI_QUANTIZATION_RANGE_LIMITED :
4788 HDMI_QUANTIZATION_RANGE_FULL;
4789}
4790EXPORT_SYMBOL(drm_default_rgb_quant_range);
4791
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02004792static void drm_parse_vcdb(struct drm_connector *connector, const u8 *db)
4793{
4794 struct drm_display_info *info = &connector->display_info;
4795
4796 DRM_DEBUG_KMS("CEA VCDB 0x%02x\n", db[2]);
4797
4798 if (db[2] & EDID_CEA_VCDB_QS)
4799 info->rgb_quant_range_selectable = true;
4800}
4801
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304802static void drm_parse_ycbcr420_deep_color_info(struct drm_connector *connector,
4803 const u8 *db)
4804{
4805 u8 dc_mask;
4806 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
4807
4808 dc_mask = db[7] & DRM_EDID_YCBCR420_DC_MASK;
Clint Taylor9068e022018-10-05 14:52:15 -07004809 hdmi->y420_dc_modes = dc_mask;
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304810}
4811
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304812static void drm_parse_hdmi_forum_vsdb(struct drm_connector *connector,
4813 const u8 *hf_vsdb)
4814{
Shashank Sharma62c58af2017-03-13 16:54:02 +05304815 struct drm_display_info *display = &connector->display_info;
4816 struct drm_hdmi_info *hdmi = &display->hdmi;
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304817
Ville Syrjäläf1781e92017-11-13 19:04:19 +02004818 display->has_hdmi_infoframe = true;
4819
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304820 if (hf_vsdb[6] & 0x80) {
4821 hdmi->scdc.supported = true;
4822 if (hf_vsdb[6] & 0x40)
4823 hdmi->scdc.read_request = true;
4824 }
Shashank Sharma62c58af2017-03-13 16:54:02 +05304825
4826 /*
4827 * All HDMI 2.0 monitors must support scrambling at rates > 340 MHz.
4828 * And as per the spec, three factors confirm this:
4829 * * Availability of a HF-VSDB block in EDID (check)
4830 * * Non zero Max_TMDS_Char_Rate filed in HF-VSDB (let's check)
4831 * * SCDC support available (let's check)
4832 * Lets check it out.
4833 */
4834
4835 if (hf_vsdb[5]) {
4836 /* max clock is 5000 KHz times block value */
4837 u32 max_tmds_clock = hf_vsdb[5] * 5000;
4838 struct drm_scdc *scdc = &hdmi->scdc;
4839
4840 if (max_tmds_clock > 340000) {
4841 display->max_tmds_clock = max_tmds_clock;
4842 DRM_DEBUG_KMS("HF-VSDB: max TMDS clock %d kHz\n",
4843 display->max_tmds_clock);
4844 }
4845
4846 if (scdc->supported) {
4847 scdc->scrambling.supported = true;
4848
Thierry Redingdbe2d2b2019-12-06 14:53:35 +01004849 /* Few sinks support scrambling for clocks < 340M */
Shashank Sharma62c58af2017-03-13 16:54:02 +05304850 if ((hf_vsdb[6] & 0x8))
4851 scdc->scrambling.low_rates = true;
4852 }
4853 }
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304854
4855 drm_parse_ycbcr420_deep_color_info(connector, hf_vsdb);
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304856}
4857
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004858static void drm_parse_hdmi_deep_color_info(struct drm_connector *connector,
4859 const u8 *hdmi)
Mario Kleinerd0c94692014-03-27 19:59:39 +01004860{
Ville Syrjälä18267502016-09-28 16:51:38 +03004861 struct drm_display_info *info = &connector->display_info;
Mario Kleinerd0c94692014-03-27 19:59:39 +01004862 unsigned int dc_bpc = 0;
4863
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004864 /* HDMI supports at least 8 bpc */
4865 info->bpc = 8;
4866
4867 if (cea_db_payload_len(hdmi) < 6)
4868 return;
4869
4870 if (hdmi[6] & DRM_EDID_HDMI_DC_30) {
4871 dc_bpc = 10;
4872 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_30;
4873 DRM_DEBUG("%s: HDMI sink does deep color 30.\n",
4874 connector->name);
4875 }
4876
4877 if (hdmi[6] & DRM_EDID_HDMI_DC_36) {
4878 dc_bpc = 12;
4879 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_36;
4880 DRM_DEBUG("%s: HDMI sink does deep color 36.\n",
4881 connector->name);
4882 }
4883
4884 if (hdmi[6] & DRM_EDID_HDMI_DC_48) {
4885 dc_bpc = 16;
4886 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_48;
4887 DRM_DEBUG("%s: HDMI sink does deep color 48.\n",
4888 connector->name);
4889 }
4890
4891 if (dc_bpc == 0) {
4892 DRM_DEBUG("%s: No deep color support on this HDMI sink.\n",
4893 connector->name);
4894 return;
4895 }
4896
4897 DRM_DEBUG("%s: Assigning HDMI sink color depth as %d bpc.\n",
4898 connector->name, dc_bpc);
4899 info->bpc = dc_bpc;
4900
4901 /*
4902 * Deep color support mandates RGB444 support for all video
4903 * modes and forbids YCRCB422 support for all video modes per
4904 * HDMI 1.3 spec.
4905 */
4906 info->color_formats = DRM_COLOR_FORMAT_RGB444;
4907
4908 /* YCRCB444 is optional according to spec. */
4909 if (hdmi[6] & DRM_EDID_HDMI_DC_Y444) {
4910 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
4911 DRM_DEBUG("%s: HDMI sink does YCRCB444 in deep color.\n",
4912 connector->name);
4913 }
4914
4915 /*
4916 * Spec says that if any deep color mode is supported at all,
4917 * then deep color 36 bit must be supported.
4918 */
4919 if (!(hdmi[6] & DRM_EDID_HDMI_DC_36)) {
4920 DRM_DEBUG("%s: HDMI sink should do DC_36, but does not!\n",
4921 connector->name);
4922 }
4923}
4924
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004925static void
4926drm_parse_hdmi_vsdb_video(struct drm_connector *connector, const u8 *db)
4927{
4928 struct drm_display_info *info = &connector->display_info;
4929 u8 len = cea_db_payload_len(db);
4930
Laurent Pincharta92d0832020-02-26 13:24:23 +02004931 info->is_hdmi = true;
4932
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004933 if (len >= 6)
4934 info->dvi_dual = db[6] & 1;
4935 if (len >= 7)
4936 info->max_tmds_clock = db[7] * 5000;
4937
4938 DRM_DEBUG_KMS("HDMI: DVI dual %d, "
4939 "max TMDS clock %d kHz\n",
4940 info->dvi_dual,
4941 info->max_tmds_clock);
4942
4943 drm_parse_hdmi_deep_color_info(connector, db);
4944}
4945
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004946static void drm_parse_cea_ext(struct drm_connector *connector,
Keith Packard170178f2017-12-13 00:44:26 -08004947 const struct edid *edid)
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004948{
4949 struct drm_display_info *info = &connector->display_info;
4950 const u8 *edid_ext;
4951 int i, start, end;
4952
Mario Kleinerd0c94692014-03-27 19:59:39 +01004953 edid_ext = drm_find_cea_extension(edid);
4954 if (!edid_ext)
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004955 return;
Mario Kleinerd0c94692014-03-27 19:59:39 +01004956
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004957 info->cea_rev = edid_ext[1];
Mario Kleinerd0c94692014-03-27 19:59:39 +01004958
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004959 /* The existence of a CEA block should imply RGB support */
4960 info->color_formats = DRM_COLOR_FORMAT_RGB444;
4961 if (edid_ext[3] & EDID_CEA_YCRCB444)
4962 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
4963 if (edid_ext[3] & EDID_CEA_YCRCB422)
4964 info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
Mario Kleinerd0c94692014-03-27 19:59:39 +01004965
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004966 if (cea_db_offsets(edid_ext, &start, &end))
4967 return;
Mario Kleinerd0c94692014-03-27 19:59:39 +01004968
Ville Syrjälä1cea1462016-09-28 16:51:39 +03004969 for_each_cea_db(edid_ext, i, start, end) {
4970 const u8 *db = &edid_ext[i];
Mario Kleinerd0c94692014-03-27 19:59:39 +01004971
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004972 if (cea_db_is_hdmi_vsdb(db))
4973 drm_parse_hdmi_vsdb_video(connector, db);
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304974 if (cea_db_is_hdmi_forum_vsdb(db))
4975 drm_parse_hdmi_forum_vsdb(connector, db);
Shashank Sharma832d4f22017-07-14 16:03:46 +05304976 if (cea_db_is_y420cmdb(db))
4977 drm_parse_y420cmdb_bitmap(connector, db);
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02004978 if (cea_db_is_vcdb(db))
4979 drm_parse_vcdb(connector, db);
Uma Shankare85959d2019-05-16 19:40:08 +05304980 if (cea_db_is_hdmi_hdr_metadata_block(db))
4981 drm_parse_hdr_metadata_block(connector, db);
Mario Kleinerd0c94692014-03-27 19:59:39 +01004982 }
Mario Kleinerd0c94692014-03-27 19:59:39 +01004983}
4984
Manasi Navarea1d11d12020-03-10 16:16:51 -07004985static
4986void get_monitor_range(struct detailed_timing *timing,
4987 void *info_monitor_range)
4988{
4989 struct drm_monitor_range_info *monitor_range = info_monitor_range;
4990 const struct detailed_non_pixel *data = &timing->data.other_data;
4991 const struct detailed_data_monitor_range *range = &data->data.range;
4992
4993 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_MONITOR_RANGE))
4994 return;
4995
4996 /*
4997 * Check for flag range limits only. If flag == 1 then
4998 * no additional timing information provided.
4999 * Default GTF, GTF Secondary curve and CVT are not
5000 * supported
5001 */
5002 if (range->flags != DRM_EDID_RANGE_LIMITS_ONLY_FLAG)
5003 return;
5004
5005 monitor_range->min_vfreq = range->min_vfreq;
5006 monitor_range->max_vfreq = range->max_vfreq;
5007}
5008
5009static
5010void drm_get_monitor_range(struct drm_connector *connector,
5011 const struct edid *edid)
5012{
5013 struct drm_display_info *info = &connector->display_info;
5014
5015 if (!version_greater(edid, 1, 1))
5016 return;
5017
5018 drm_for_each_detailed_block((u8 *)edid, get_monitor_range,
5019 &info->monitor_range);
5020
5021 DRM_DEBUG_KMS("Supported Monitor Refresh rate range is %d Hz - %d Hz\n",
5022 info->monitor_range.min_vfreq,
5023 info->monitor_range.max_vfreq);
5024}
5025
Keith Packard170178f2017-12-13 00:44:26 -08005026/* A connector has no EDID information, so we've got no EDID to compute quirks from. Reset
5027 * all of the values which would have been set from EDID
5028 */
5029void
5030drm_reset_display_info(struct drm_connector *connector)
Jesse Barnes3b112282011-04-15 12:49:23 -07005031{
Ville Syrjälä18267502016-09-28 16:51:38 +03005032 struct drm_display_info *info = &connector->display_info;
Jesse Barnesebec9a7b2011-08-03 09:22:54 -07005033
Keith Packard170178f2017-12-13 00:44:26 -08005034 info->width_mm = 0;
5035 info->height_mm = 0;
5036
5037 info->bpc = 0;
5038 info->color_formats = 0;
5039 info->cea_rev = 0;
5040 info->max_tmds_clock = 0;
5041 info->dvi_dual = false;
Laurent Pincharta92d0832020-02-26 13:24:23 +02005042 info->is_hdmi = false;
Keith Packard170178f2017-12-13 00:44:26 -08005043 info->has_hdmi_infoframe = false;
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005044 info->rgb_quant_range_selectable = false;
Ville Syrjälä1f6b8ee2018-04-24 16:02:50 +03005045 memset(&info->hdmi, 0, sizeof(info->hdmi));
Keith Packard170178f2017-12-13 00:44:26 -08005046
5047 info->non_desktop = 0;
Manasi Navarea1d11d12020-03-10 16:16:51 -07005048 memset(&info->monitor_range, 0, sizeof(info->monitor_range));
Keith Packard170178f2017-12-13 00:44:26 -08005049}
Keith Packard170178f2017-12-13 00:44:26 -08005050
5051u32 drm_add_display_info(struct drm_connector *connector, const struct edid *edid)
5052{
5053 struct drm_display_info *info = &connector->display_info;
5054
5055 u32 quirks = edid_get_quirks(edid);
5056
Ville Syrjälä1f6b8ee2018-04-24 16:02:50 +03005057 drm_reset_display_info(connector);
5058
Jesse Barnes3b112282011-04-15 12:49:23 -07005059 info->width_mm = edid->width_cm * 10;
5060 info->height_mm = edid->height_cm * 10;
5061
Dave Airlie66660d42017-10-16 05:08:09 +01005062 info->non_desktop = !!(quirks & EDID_QUIRK_NON_DESKTOP);
5063
Manasi Navarea1d11d12020-03-10 16:16:51 -07005064 drm_get_monitor_range(connector, edid);
5065
Keith Packard170178f2017-12-13 00:44:26 -08005066 DRM_DEBUG_KMS("non_desktop set to %d\n", info->non_desktop);
5067
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005068 if (edid->revision < 3)
Keith Packard170178f2017-12-13 00:44:26 -08005069 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005070
5071 if (!(edid->input & DRM_EDID_INPUT_DIGITAL))
Keith Packard170178f2017-12-13 00:44:26 -08005072 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005073
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005074 drm_parse_cea_ext(connector, edid);
Mario Kleinerd0c94692014-03-27 19:59:39 +01005075
Mario Kleiner210a0212016-07-06 12:05:48 +02005076 /*
5077 * Digital sink with "DFP 1.x compliant TMDS" according to EDID 1.3?
5078 *
5079 * For such displays, the DFP spec 1.0, section 3.10 "EDID support"
5080 * tells us to assume 8 bpc color depth if the EDID doesn't have
5081 * extensions which tell otherwise.
5082 */
Ville Syrjälä3bde4492019-05-29 14:02:04 +03005083 if (info->bpc == 0 && edid->revision == 3 &&
5084 edid->input & DRM_EDID_DIGITAL_DFP_1_X) {
Mario Kleiner210a0212016-07-06 12:05:48 +02005085 info->bpc = 8;
5086 DRM_DEBUG("%s: Assigning DFP sink color depth as %d bpc.\n",
5087 connector->name, info->bpc);
5088 }
5089
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005090 /* Only defined for 1.4 with digital displays */
5091 if (edid->revision < 4)
Keith Packard170178f2017-12-13 00:44:26 -08005092 return quirks;
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005093
Jesse Barnes3b112282011-04-15 12:49:23 -07005094 switch (edid->input & DRM_EDID_DIGITAL_DEPTH_MASK) {
5095 case DRM_EDID_DIGITAL_DEPTH_6:
5096 info->bpc = 6;
5097 break;
5098 case DRM_EDID_DIGITAL_DEPTH_8:
5099 info->bpc = 8;
5100 break;
5101 case DRM_EDID_DIGITAL_DEPTH_10:
5102 info->bpc = 10;
5103 break;
5104 case DRM_EDID_DIGITAL_DEPTH_12:
5105 info->bpc = 12;
5106 break;
5107 case DRM_EDID_DIGITAL_DEPTH_14:
5108 info->bpc = 14;
5109 break;
5110 case DRM_EDID_DIGITAL_DEPTH_16:
5111 info->bpc = 16;
5112 break;
5113 case DRM_EDID_DIGITAL_DEPTH_UNDEF:
5114 default:
5115 info->bpc = 0;
5116 break;
5117 }
Jesse Barnesda05a5a72011-04-15 13:48:57 -07005118
Mario Kleinerd0c94692014-03-27 19:59:39 +01005119 DRM_DEBUG("%s: Assigning EDID-1.4 digital sink color depth as %d bpc.\n",
Jani Nikula25933822014-06-03 14:56:20 +03005120 connector->name, info->bpc);
Mario Kleinerd0c94692014-03-27 19:59:39 +01005121
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005122 info->color_formats |= DRM_COLOR_FORMAT_RGB444;
Lars-Peter Clausenee588082012-04-16 15:16:18 +02005123 if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB444)
5124 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
5125 if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB422)
5126 info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
Keith Packard170178f2017-12-13 00:44:26 -08005127 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005128}
5129
Dave Airliec97291772016-05-03 15:38:37 +10005130static int validate_displayid(u8 *displayid, int length, int idx)
5131{
Ville Syrjäläbd1f64d2020-03-13 18:20:53 +02005132 int i, dispid_length;
Dave Airliec97291772016-05-03 15:38:37 +10005133 u8 csum = 0;
5134 struct displayid_hdr *base;
5135
5136 base = (struct displayid_hdr *)&displayid[idx];
5137
5138 DRM_DEBUG_KMS("base revision 0x%x, length %d, %d %d\n",
5139 base->rev, base->bytes, base->prod_id, base->ext_count);
5140
Ville Syrjäläbd1f64d2020-03-13 18:20:53 +02005141 /* +1 for DispID checksum */
5142 dispid_length = sizeof(*base) + base->bytes + 1;
5143 if (dispid_length > length - idx)
Dave Airliec97291772016-05-03 15:38:37 +10005144 return -EINVAL;
Ville Syrjäläbd1f64d2020-03-13 18:20:53 +02005145
5146 for (i = 0; i < dispid_length; i++)
5147 csum += displayid[idx + i];
Dave Airliec97291772016-05-03 15:38:37 +10005148 if (csum) {
Chris Wilson813a7872017-02-10 19:59:13 +00005149 DRM_NOTE("DisplayID checksum invalid, remainder is %d\n", csum);
Dave Airliec97291772016-05-03 15:38:37 +10005150 return -EINVAL;
5151 }
Ville Syrjäläbd1f64d2020-03-13 18:20:53 +02005152
Dave Airliec97291772016-05-03 15:38:37 +10005153 return 0;
5154}
5155
Dave Airliea39ed682016-05-02 08:35:05 +10005156static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *dev,
5157 struct displayid_detailed_timings_1 *timings)
5158{
5159 struct drm_display_mode *mode;
5160 unsigned pixel_clock = (timings->pixel_clock[0] |
5161 (timings->pixel_clock[1] << 8) |
Ville Syrjälä6292b8e2020-04-23 18:17:43 +03005162 (timings->pixel_clock[2] << 16)) + 1;
Dave Airliea39ed682016-05-02 08:35:05 +10005163 unsigned hactive = (timings->hactive[0] | timings->hactive[1] << 8) + 1;
5164 unsigned hblank = (timings->hblank[0] | timings->hblank[1] << 8) + 1;
5165 unsigned hsync = (timings->hsync[0] | (timings->hsync[1] & 0x7f) << 8) + 1;
5166 unsigned hsync_width = (timings->hsw[0] | timings->hsw[1] << 8) + 1;
5167 unsigned vactive = (timings->vactive[0] | timings->vactive[1] << 8) + 1;
5168 unsigned vblank = (timings->vblank[0] | timings->vblank[1] << 8) + 1;
5169 unsigned vsync = (timings->vsync[0] | (timings->vsync[1] & 0x7f) << 8) + 1;
5170 unsigned vsync_width = (timings->vsw[0] | timings->vsw[1] << 8) + 1;
5171 bool hsync_positive = (timings->hsync[1] >> 7) & 0x1;
5172 bool vsync_positive = (timings->vsync[1] >> 7) & 0x1;
5173 mode = drm_mode_create(dev);
5174 if (!mode)
5175 return NULL;
5176
5177 mode->clock = pixel_clock * 10;
5178 mode->hdisplay = hactive;
5179 mode->hsync_start = mode->hdisplay + hsync;
5180 mode->hsync_end = mode->hsync_start + hsync_width;
5181 mode->htotal = mode->hdisplay + hblank;
5182
5183 mode->vdisplay = vactive;
5184 mode->vsync_start = mode->vdisplay + vsync;
5185 mode->vsync_end = mode->vsync_start + vsync_width;
5186 mode->vtotal = mode->vdisplay + vblank;
5187
5188 mode->flags = 0;
5189 mode->flags |= hsync_positive ? DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
5190 mode->flags |= vsync_positive ? DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
5191 mode->type = DRM_MODE_TYPE_DRIVER;
5192
5193 if (timings->flags & 0x80)
5194 mode->type |= DRM_MODE_TYPE_PREFERRED;
Dave Airliea39ed682016-05-02 08:35:05 +10005195 drm_mode_set_name(mode);
5196
5197 return mode;
5198}
5199
5200static int add_displayid_detailed_1_modes(struct drm_connector *connector,
5201 struct displayid_block *block)
5202{
5203 struct displayid_detailed_timing_block *det = (struct displayid_detailed_timing_block *)block;
5204 int i;
5205 int num_timings;
5206 struct drm_display_mode *newmode;
5207 int num_modes = 0;
5208 /* blocks must be multiple of 20 bytes length */
5209 if (block->num_bytes % 20)
5210 return 0;
5211
5212 num_timings = block->num_bytes / 20;
5213 for (i = 0; i < num_timings; i++) {
5214 struct displayid_detailed_timings_1 *timings = &det->timings[i];
5215
5216 newmode = drm_mode_displayid_detailed(connector->dev, timings);
5217 if (!newmode)
5218 continue;
5219
5220 drm_mode_probed_add(connector, newmode);
5221 num_modes++;
5222 }
5223 return num_modes;
5224}
5225
5226static int add_displayid_detailed_modes(struct drm_connector *connector,
5227 struct edid *edid)
5228{
5229 u8 *displayid;
Ville Syrjälä23b03862020-03-13 18:20:49 +02005230 int length, idx;
Dave Airliea39ed682016-05-02 08:35:05 +10005231 struct displayid_block *block;
5232 int num_modes = 0;
5233
Ville Syrjälä23b03862020-03-13 18:20:49 +02005234 displayid = drm_find_displayid_extension(edid, &length, &idx);
Dave Airliea39ed682016-05-02 08:35:05 +10005235 if (!displayid)
5236 return 0;
5237
Dave Airliea39ed682016-05-02 08:35:05 +10005238 idx += sizeof(struct displayid_hdr);
Andres Rodriguez80d42db2019-06-19 14:30:33 -04005239 for_each_displayid_db(displayid, block, idx, length) {
Dave Airliea39ed682016-05-02 08:35:05 +10005240 switch (block->tag) {
5241 case DATA_BLOCK_TYPE_1_DETAILED_TIMING:
5242 num_modes += add_displayid_detailed_1_modes(connector, block);
5243 break;
5244 }
5245 }
5246 return num_modes;
5247}
5248
Jesse Barnes3b112282011-04-15 12:49:23 -07005249/**
Dave Airlief453ba02008-11-07 14:05:41 -08005250 * drm_add_edid_modes - add modes from EDID data, if available
5251 * @connector: connector we're probing
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005252 * @edid: EDID data
Dave Airlief453ba02008-11-07 14:05:41 -08005253 *
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +02005254 * Add the specified modes to the connector's mode list. Also fills out the
Jani Nikulac945b8c2017-11-01 16:21:01 +02005255 * &drm_display_info structure and ELD in @connector with any information which
5256 * can be derived from the edid.
Dave Airlief453ba02008-11-07 14:05:41 -08005257 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005258 * Return: The number of modes added or 0 if we couldn't find any.
Dave Airlief453ba02008-11-07 14:05:41 -08005259 */
5260int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
5261{
5262 int num_modes = 0;
5263 u32 quirks;
5264
5265 if (edid == NULL) {
Jani Nikulac945b8c2017-11-01 16:21:01 +02005266 clear_eld(connector);
Dave Airlief453ba02008-11-07 14:05:41 -08005267 return 0;
5268 }
Alex Deucher3c537882010-02-05 04:21:19 -05005269 if (!drm_edid_is_valid(edid)) {
Jani Nikulac945b8c2017-11-01 16:21:01 +02005270 clear_eld(connector);
Jordan Crousedcdb1672010-05-27 13:40:25 -06005271 dev_warn(connector->dev->dev, "%s: EDID invalid.\n",
Jani Nikula25933822014-06-03 14:56:20 +03005272 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08005273 return 0;
5274 }
5275
Jani Nikulac945b8c2017-11-01 16:21:01 +02005276 drm_edid_to_eld(connector, edid);
5277
Adam Jacksonc867df72010-03-29 21:43:21 +00005278 /*
Shashank Sharma0f0f8702017-07-13 21:03:09 +05305279 * CEA-861-F adds ycbcr capability map block, for HDMI 2.0 sinks.
5280 * To avoid multiple parsing of same block, lets parse that map
5281 * from sink info, before parsing CEA modes.
5282 */
Keith Packard170178f2017-12-13 00:44:26 -08005283 quirks = drm_add_display_info(connector, edid);
Shashank Sharma0f0f8702017-07-13 21:03:09 +05305284
5285 /*
Adam Jacksonc867df72010-03-29 21:43:21 +00005286 * EDID spec says modes should be preferred in this order:
5287 * - preferred detailed mode
5288 * - other detailed modes from base block
5289 * - detailed modes from extension blocks
5290 * - CVT 3-byte code modes
5291 * - standard timing codes
5292 * - established timing codes
5293 * - modes inferred from GTF or CVT range information
5294 *
Adam Jackson13931572010-08-03 14:38:19 -04005295 * We get this pretty much right.
Adam Jacksonc867df72010-03-29 21:43:21 +00005296 *
5297 * XXX order for additional mode types in extension blocks?
5298 */
Adam Jackson13931572010-08-03 14:38:19 -04005299 num_modes += add_detailed_modes(connector, edid, quirks);
5300 num_modes += add_cvt_modes(connector, edid);
Adam Jacksonc867df72010-03-29 21:43:21 +00005301 num_modes += add_standard_modes(connector, edid);
5302 num_modes += add_established_modes(connector, edid);
Christian Schmidt54ac76f2011-12-19 14:53:16 +00005303 num_modes += add_cea_modes(connector, edid);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03005304 num_modes += add_alternate_cea_modes(connector, edid);
Dave Airliea39ed682016-05-02 08:35:05 +10005305 num_modes += add_displayid_detailed_modes(connector, edid);
Ville Syrjälä4d53dc02015-05-08 17:45:07 +03005306 if (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF)
5307 num_modes += add_inferred_modes(connector, edid);
Dave Airlief453ba02008-11-07 14:05:41 -08005308
5309 if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
5310 edid_fixup_preferred(connector, quirks);
5311
Mario Kleinere10aec62016-07-06 12:05:44 +02005312 if (quirks & EDID_QUIRK_FORCE_6BPC)
5313 connector->display_info.bpc = 6;
5314
Rafał Miłecki49d45a312013-12-07 13:22:42 +01005315 if (quirks & EDID_QUIRK_FORCE_8BPC)
5316 connector->display_info.bpc = 8;
5317
Mario Kleinere345da82017-04-21 17:05:08 +02005318 if (quirks & EDID_QUIRK_FORCE_10BPC)
5319 connector->display_info.bpc = 10;
5320
Mario Kleinerbc5b9642014-05-23 21:40:55 +02005321 if (quirks & EDID_QUIRK_FORCE_12BPC)
5322 connector->display_info.bpc = 12;
5323
Dave Airlief453ba02008-11-07 14:05:41 -08005324 return num_modes;
5325}
5326EXPORT_SYMBOL(drm_add_edid_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005327
5328/**
5329 * drm_add_modes_noedid - add modes for the connectors without EDID
5330 * @connector: connector we're probing
5331 * @hdisplay: the horizontal display limit
5332 * @vdisplay: the vertical display limit
5333 *
5334 * Add the specified modes to the connector's mode list. Only when the
5335 * hdisplay/vdisplay is not beyond the given limit, it will be added.
5336 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005337 * Return: The number of modes added or 0 if we couldn't find any.
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005338 */
5339int drm_add_modes_noedid(struct drm_connector *connector,
5340 int hdisplay, int vdisplay)
5341{
5342 int i, count, num_modes = 0;
Chris Wilsonb1f559e2011-01-26 09:49:47 +00005343 struct drm_display_mode *mode;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005344 struct drm_device *dev = connector->dev;
5345
Daniel Vetterfbb40b22015-08-10 11:55:37 +02005346 count = ARRAY_SIZE(drm_dmt_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005347 if (hdisplay < 0)
5348 hdisplay = 0;
5349 if (vdisplay < 0)
5350 vdisplay = 0;
5351
5352 for (i = 0; i < count; i++) {
Chris Wilsonb1f559e2011-01-26 09:49:47 +00005353 const struct drm_display_mode *ptr = &drm_dmt_modes[i];
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005354 if (hdisplay && vdisplay) {
5355 /*
5356 * Only when two are valid, they will be used to check
5357 * whether the mode should be added to the mode list of
5358 * the connector.
5359 */
5360 if (ptr->hdisplay > hdisplay ||
5361 ptr->vdisplay > vdisplay)
5362 continue;
5363 }
Adam Jacksonf985ded2009-11-23 14:23:04 -05005364 if (drm_mode_vrefresh(ptr) > 61)
5365 continue;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005366 mode = drm_mode_duplicate(dev, ptr);
5367 if (mode) {
5368 drm_mode_probed_add(connector, mode);
5369 num_modes++;
5370 }
5371 }
5372 return num_modes;
5373}
5374EXPORT_SYMBOL(drm_add_modes_noedid);
Thierry Reding10a85122012-11-21 15:31:35 +01005375
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005376/**
5377 * drm_set_preferred_mode - Sets the preferred mode of a connector
5378 * @connector: connector whose mode list should be processed
5379 * @hpref: horizontal resolution of preferred mode
5380 * @vpref: vertical resolution of preferred mode
5381 *
5382 * Marks a mode as preferred if it matches the resolution specified by @hpref
5383 * and @vpref.
5384 */
Gerd Hoffmann3cf70da2013-10-11 10:01:08 +02005385void drm_set_preferred_mode(struct drm_connector *connector,
5386 int hpref, int vpref)
5387{
5388 struct drm_display_mode *mode;
5389
5390 list_for_each_entry(mode, &connector->probed_modes, head) {
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005391 if (mode->hdisplay == hpref &&
Daniel Vetter9d3de132014-01-23 16:27:56 +01005392 mode->vdisplay == vpref)
Gerd Hoffmann3cf70da2013-10-11 10:01:08 +02005393 mode->type |= DRM_MODE_TYPE_PREFERRED;
5394 }
5395}
5396EXPORT_SYMBOL(drm_set_preferred_mode);
5397
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005398static bool is_hdmi2_sink(const struct drm_connector *connector)
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005399{
5400 /*
5401 * FIXME: sil-sii8620 doesn't have a connector around when
5402 * we need one, so we have to be prepared for a NULL connector.
5403 */
5404 if (!connector)
5405 return true;
5406
5407 return connector->display_info.hdmi.scdc.supported ||
5408 connector->display_info.color_formats & DRM_COLOR_FORMAT_YCRCB420;
5409}
5410
Uma Shankar2cdbfd62019-05-16 19:40:09 +05305411static inline bool is_eotf_supported(u8 output_eotf, u8 sink_eotf)
5412{
5413 return sink_eotf & BIT(output_eotf);
5414}
5415
5416/**
5417 * drm_hdmi_infoframe_set_hdr_metadata() - fill an HDMI DRM infoframe with
5418 * HDR metadata from userspace
5419 * @frame: HDMI DRM infoframe
Sean Paul6ac98822019-05-23 09:54:58 -04005420 * @conn_state: Connector state containing HDR metadata
Uma Shankar2cdbfd62019-05-16 19:40:09 +05305421 *
5422 * Return: 0 on success or a negative error code on failure.
5423 */
5424int
5425drm_hdmi_infoframe_set_hdr_metadata(struct hdmi_drm_infoframe *frame,
5426 const struct drm_connector_state *conn_state)
5427{
5428 struct drm_connector *connector;
5429 struct hdr_output_metadata *hdr_metadata;
5430 int err;
5431
5432 if (!frame || !conn_state)
5433 return -EINVAL;
5434
5435 connector = conn_state->connector;
5436
5437 if (!conn_state->hdr_output_metadata)
5438 return -EINVAL;
5439
5440 hdr_metadata = conn_state->hdr_output_metadata->data;
5441
5442 if (!hdr_metadata || !connector)
5443 return -EINVAL;
5444
5445 /* Sink EOTF is Bit map while infoframe is absolute values */
5446 if (!is_eotf_supported(hdr_metadata->hdmi_metadata_type1.eotf,
5447 connector->hdr_sink_metadata.hdmi_type1.eotf)) {
5448 DRM_DEBUG_KMS("EOTF Not Supported\n");
5449 return -EINVAL;
5450 }
5451
5452 err = hdmi_drm_infoframe_init(frame);
5453 if (err < 0)
5454 return err;
5455
5456 frame->eotf = hdr_metadata->hdmi_metadata_type1.eotf;
5457 frame->metadata_type = hdr_metadata->hdmi_metadata_type1.metadata_type;
5458
5459 BUILD_BUG_ON(sizeof(frame->display_primaries) !=
5460 sizeof(hdr_metadata->hdmi_metadata_type1.display_primaries));
5461 BUILD_BUG_ON(sizeof(frame->white_point) !=
5462 sizeof(hdr_metadata->hdmi_metadata_type1.white_point));
5463
5464 memcpy(&frame->display_primaries,
5465 &hdr_metadata->hdmi_metadata_type1.display_primaries,
5466 sizeof(frame->display_primaries));
5467
5468 memcpy(&frame->white_point,
5469 &hdr_metadata->hdmi_metadata_type1.white_point,
5470 sizeof(frame->white_point));
5471
5472 frame->max_display_mastering_luminance =
5473 hdr_metadata->hdmi_metadata_type1.max_display_mastering_luminance;
5474 frame->min_display_mastering_luminance =
5475 hdr_metadata->hdmi_metadata_type1.min_display_mastering_luminance;
5476 frame->max_fall = hdr_metadata->hdmi_metadata_type1.max_fall;
5477 frame->max_cll = hdr_metadata->hdmi_metadata_type1.max_cll;
5478
5479 return 0;
5480}
5481EXPORT_SYMBOL(drm_hdmi_infoframe_set_hdr_metadata);
5482
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005483static u8 drm_mode_hdmi_vic(const struct drm_connector *connector,
Ville Syrjälä949561e2019-10-04 17:19:13 +03005484 const struct drm_display_mode *mode)
5485{
5486 bool has_hdmi_infoframe = connector ?
5487 connector->display_info.has_hdmi_infoframe : false;
5488
5489 if (!has_hdmi_infoframe)
5490 return 0;
5491
5492 /* No HDMI VIC when signalling 3D video format */
5493 if (mode->flags & DRM_MODE_FLAG_3D_MASK)
5494 return 0;
5495
5496 return drm_match_hdmi_mode(mode);
5497}
5498
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005499static u8 drm_mode_cea_vic(const struct drm_connector *connector,
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005500 const struct drm_display_mode *mode)
5501{
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005502 u8 vic;
5503
5504 /*
5505 * HDMI spec says if a mode is found in HDMI 1.4b 4K modes
5506 * we should send its VIC in vendor infoframes, else send the
5507 * VIC in AVI infoframes. Lets check if this mode is present in
5508 * HDMI 1.4b 4K modes
5509 */
Ville Syrjälä949561e2019-10-04 17:19:13 +03005510 if (drm_mode_hdmi_vic(connector, mode))
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005511 return 0;
5512
5513 vic = drm_match_cea_mode(mode);
5514
5515 /*
5516 * HDMI 1.4 VIC range: 1 <= VIC <= 64 (CEA-861-D) but
5517 * HDMI 2.0 VIC range: 1 <= VIC <= 107 (CEA-861-F). So we
5518 * have to make sure we dont break HDMI 1.4 sinks.
5519 */
5520 if (!is_hdmi2_sink(connector) && vic > 64)
5521 return 0;
5522
5523 return vic;
5524}
5525
Thierry Reding10a85122012-11-21 15:31:35 +01005526/**
5527 * drm_hdmi_avi_infoframe_from_display_mode() - fill an HDMI AVI infoframe with
5528 * data from a DRM display mode
5529 * @frame: HDMI AVI infoframe
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005530 * @connector: the connector
Thierry Reding10a85122012-11-21 15:31:35 +01005531 * @mode: DRM display mode
5532 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005533 * Return: 0 on success or a negative error code on failure.
Thierry Reding10a85122012-11-21 15:31:35 +01005534 */
5535int
5536drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005537 const struct drm_connector *connector,
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005538 const struct drm_display_mode *mode)
Thierry Reding10a85122012-11-21 15:31:35 +01005539{
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305540 enum hdmi_picture_aspect picture_aspect;
Wayne Lind2b43472019-11-18 18:18:31 +08005541 u8 vic, hdmi_vic;
Thierry Reding10a85122012-11-21 15:31:35 +01005542
5543 if (!frame || !mode)
5544 return -EINVAL;
5545
Laurent Pinchart5ee0caf2020-02-26 13:24:21 +02005546 hdmi_avi_infoframe_init(frame);
Thierry Reding10a85122012-11-21 15:31:35 +01005547
Damien Lespiaubf02db92013-08-06 20:32:22 +01005548 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
5549 frame->pixel_repeat = 1;
5550
Wayne Lind2b43472019-11-18 18:18:31 +08005551 vic = drm_mode_cea_vic(connector, mode);
5552 hdmi_vic = drm_mode_hdmi_vic(connector, mode);
Shashank Sharma0c1f5282017-07-13 21:03:07 +05305553
Thierry Reding10a85122012-11-21 15:31:35 +01005554 frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE;
Vandana Kannan0967e6a2014-04-01 16:26:59 +05305555
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305556 /*
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03005557 * As some drivers don't support atomic, we can't use connector state.
5558 * So just initialize the frame with default values, just the same way
5559 * as it's done with other properties here.
5560 */
5561 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS;
5562 frame->itc = 0;
5563
5564 /*
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305565 * Populate picture aspect ratio from either
Wayne Lind2b43472019-11-18 18:18:31 +08005566 * user input (if specified) or from the CEA/HDMI mode lists.
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305567 */
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305568 picture_aspect = mode->picture_aspect_ratio;
Wayne Lind2b43472019-11-18 18:18:31 +08005569 if (picture_aspect == HDMI_PICTURE_ASPECT_NONE) {
5570 if (vic)
5571 picture_aspect = drm_get_cea_aspect_ratio(vic);
5572 else if (hdmi_vic)
5573 picture_aspect = drm_get_hdmi_aspect_ratio(hdmi_vic);
5574 }
Vandana Kannan0967e6a2014-04-01 16:26:59 +05305575
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305576 /*
5577 * The infoframe can't convey anything but none, 4:3
5578 * and 16:9, so if the user has asked for anything else
5579 * we can only satisfy it by specifying the right VIC.
5580 */
5581 if (picture_aspect > HDMI_PICTURE_ASPECT_16_9) {
Wayne Lind2b43472019-11-18 18:18:31 +08005582 if (vic) {
5583 if (picture_aspect != drm_get_cea_aspect_ratio(vic))
5584 return -EINVAL;
5585 } else if (hdmi_vic) {
5586 if (picture_aspect != drm_get_hdmi_aspect_ratio(hdmi_vic))
5587 return -EINVAL;
5588 } else {
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305589 return -EINVAL;
Wayne Lind2b43472019-11-18 18:18:31 +08005590 }
5591
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305592 picture_aspect = HDMI_PICTURE_ASPECT_NONE;
5593 }
5594
Wayne Lind2b43472019-11-18 18:18:31 +08005595 frame->video_code = vic;
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305596 frame->picture_aspect = picture_aspect;
Thierry Reding10a85122012-11-21 15:31:35 +01005597 frame->active_aspect = HDMI_ACTIVE_ASPECT_PICTURE;
Daniel Drake24d018052014-02-27 09:19:30 -06005598 frame->scan_mode = HDMI_SCAN_MODE_UNDERSCAN;
Thierry Reding10a85122012-11-21 15:31:35 +01005599
5600 return 0;
5601}
5602EXPORT_SYMBOL(drm_hdmi_avi_infoframe_from_display_mode);
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005603
Uma Shankar0d68b882019-02-19 22:43:00 +05305604/* HDMI Colorspace Spec Definitions */
5605#define FULL_COLORIMETRY_MASK 0x1FF
5606#define NORMAL_COLORIMETRY_MASK 0x3
5607#define EXTENDED_COLORIMETRY_MASK 0x7
5608#define EXTENDED_ACE_COLORIMETRY_MASK 0xF
5609
5610#define C(x) ((x) << 0)
5611#define EC(x) ((x) << 2)
5612#define ACE(x) ((x) << 5)
5613
5614#define HDMI_COLORIMETRY_NO_DATA 0x0
5615#define HDMI_COLORIMETRY_SMPTE_170M_YCC (C(1) | EC(0) | ACE(0))
5616#define HDMI_COLORIMETRY_BT709_YCC (C(2) | EC(0) | ACE(0))
5617#define HDMI_COLORIMETRY_XVYCC_601 (C(3) | EC(0) | ACE(0))
5618#define HDMI_COLORIMETRY_XVYCC_709 (C(3) | EC(1) | ACE(0))
5619#define HDMI_COLORIMETRY_SYCC_601 (C(3) | EC(2) | ACE(0))
5620#define HDMI_COLORIMETRY_OPYCC_601 (C(3) | EC(3) | ACE(0))
5621#define HDMI_COLORIMETRY_OPRGB (C(3) | EC(4) | ACE(0))
5622#define HDMI_COLORIMETRY_BT2020_CYCC (C(3) | EC(5) | ACE(0))
5623#define HDMI_COLORIMETRY_BT2020_RGB (C(3) | EC(6) | ACE(0))
5624#define HDMI_COLORIMETRY_BT2020_YCC (C(3) | EC(6) | ACE(0))
5625#define HDMI_COLORIMETRY_DCI_P3_RGB_D65 (C(3) | EC(7) | ACE(0))
5626#define HDMI_COLORIMETRY_DCI_P3_RGB_THEATER (C(3) | EC(7) | ACE(1))
5627
5628static const u32 hdmi_colorimetry_val[] = {
5629 [DRM_MODE_COLORIMETRY_NO_DATA] = HDMI_COLORIMETRY_NO_DATA,
5630 [DRM_MODE_COLORIMETRY_SMPTE_170M_YCC] = HDMI_COLORIMETRY_SMPTE_170M_YCC,
5631 [DRM_MODE_COLORIMETRY_BT709_YCC] = HDMI_COLORIMETRY_BT709_YCC,
5632 [DRM_MODE_COLORIMETRY_XVYCC_601] = HDMI_COLORIMETRY_XVYCC_601,
5633 [DRM_MODE_COLORIMETRY_XVYCC_709] = HDMI_COLORIMETRY_XVYCC_709,
5634 [DRM_MODE_COLORIMETRY_SYCC_601] = HDMI_COLORIMETRY_SYCC_601,
5635 [DRM_MODE_COLORIMETRY_OPYCC_601] = HDMI_COLORIMETRY_OPYCC_601,
5636 [DRM_MODE_COLORIMETRY_OPRGB] = HDMI_COLORIMETRY_OPRGB,
5637 [DRM_MODE_COLORIMETRY_BT2020_CYCC] = HDMI_COLORIMETRY_BT2020_CYCC,
5638 [DRM_MODE_COLORIMETRY_BT2020_RGB] = HDMI_COLORIMETRY_BT2020_RGB,
5639 [DRM_MODE_COLORIMETRY_BT2020_YCC] = HDMI_COLORIMETRY_BT2020_YCC,
5640};
5641
5642#undef C
5643#undef EC
5644#undef ACE
5645
5646/**
5647 * drm_hdmi_avi_infoframe_colorspace() - fill the HDMI AVI infoframe
5648 * colorspace information
5649 * @frame: HDMI AVI infoframe
5650 * @conn_state: connector state
5651 */
5652void
5653drm_hdmi_avi_infoframe_colorspace(struct hdmi_avi_infoframe *frame,
5654 const struct drm_connector_state *conn_state)
5655{
5656 u32 colorimetry_val;
5657 u32 colorimetry_index = conn_state->colorspace & FULL_COLORIMETRY_MASK;
5658
5659 if (colorimetry_index >= ARRAY_SIZE(hdmi_colorimetry_val))
5660 colorimetry_val = HDMI_COLORIMETRY_NO_DATA;
5661 else
5662 colorimetry_val = hdmi_colorimetry_val[colorimetry_index];
5663
5664 frame->colorimetry = colorimetry_val & NORMAL_COLORIMETRY_MASK;
5665 /*
5666 * ToDo: Extend it for ACE formats as well. Modify the infoframe
5667 * structure and extend it in drivers/video/hdmi
5668 */
5669 frame->extended_colorimetry = (colorimetry_val >> 2) &
5670 EXTENDED_COLORIMETRY_MASK;
5671}
5672EXPORT_SYMBOL(drm_hdmi_avi_infoframe_colorspace);
5673
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005674/**
5675 * drm_hdmi_avi_infoframe_quant_range() - fill the HDMI AVI infoframe
5676 * quantization range information
5677 * @frame: HDMI AVI infoframe
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005678 * @connector: the connector
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005679 * @mode: DRM display mode
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005680 * @rgb_quant_range: RGB quantization range (Q)
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005681 */
5682void
5683drm_hdmi_avi_infoframe_quant_range(struct hdmi_avi_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005684 const struct drm_connector *connector,
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005685 const struct drm_display_mode *mode,
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005686 enum hdmi_quantization_range rgb_quant_range)
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005687{
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005688 const struct drm_display_info *info = &connector->display_info;
5689
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005690 /*
5691 * CEA-861:
5692 * "A Source shall not send a non-zero Q value that does not correspond
5693 * to the default RGB Quantization Range for the transmitted Picture
5694 * unless the Sink indicates support for the Q bit in a Video
5695 * Capabilities Data Block."
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005696 *
5697 * HDMI 2.0 recommends sending non-zero Q when it does match the
5698 * default RGB quantization range for the mode, even when QS=0.
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005699 */
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005700 if (info->rgb_quant_range_selectable ||
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005701 rgb_quant_range == drm_default_rgb_quant_range(mode))
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005702 frame->quantization_range = rgb_quant_range;
5703 else
5704 frame->quantization_range = HDMI_QUANTIZATION_RANGE_DEFAULT;
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005705
5706 /*
5707 * CEA-861-F:
5708 * "When transmitting any RGB colorimetry, the Source should set the
5709 * YQ-field to match the RGB Quantization Range being transmitted
5710 * (e.g., when Limited Range RGB, set YQ=0 or when Full Range RGB,
5711 * set YQ=1) and the Sink shall ignore the YQ-field."
Ville Syrjälä9271c0c2017-11-08 17:25:04 +02005712 *
5713 * Unfortunate certain sinks (eg. VIZ Model 67/E261VA) get confused
5714 * by non-zero YQ when receiving RGB. There doesn't seem to be any
5715 * good way to tell which version of CEA-861 the sink supports, so
5716 * we limit non-zero YQ to HDMI 2.0 sinks only as HDMI 2.0 is based
5717 * on on CEA-861-F.
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005718 */
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005719 if (!is_hdmi2_sink(connector) ||
Ville Syrjälä9271c0c2017-11-08 17:25:04 +02005720 rgb_quant_range == HDMI_QUANTIZATION_RANGE_LIMITED)
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005721 frame->ycc_quantization_range =
5722 HDMI_YCC_QUANTIZATION_RANGE_LIMITED;
5723 else
5724 frame->ycc_quantization_range =
5725 HDMI_YCC_QUANTIZATION_RANGE_FULL;
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005726}
5727EXPORT_SYMBOL(drm_hdmi_avi_infoframe_quant_range);
5728
Ville Syrjälä076d9a52019-10-08 19:48:13 +03005729/**
5730 * drm_hdmi_avi_infoframe_bars() - fill the HDMI AVI infoframe
5731 * bar information
5732 * @frame: HDMI AVI infoframe
5733 * @conn_state: connector state
5734 */
5735void
5736drm_hdmi_avi_infoframe_bars(struct hdmi_avi_infoframe *frame,
5737 const struct drm_connector_state *conn_state)
5738{
5739 frame->right_bar = conn_state->tv.margins.right;
5740 frame->left_bar = conn_state->tv.margins.left;
5741 frame->top_bar = conn_state->tv.margins.top;
5742 frame->bottom_bar = conn_state->tv.margins.bottom;
5743}
5744EXPORT_SYMBOL(drm_hdmi_avi_infoframe_bars);
5745
Damien Lespiau4eed4a02013-09-25 16:45:26 +01005746static enum hdmi_3d_structure
5747s3d_structure_from_display_mode(const struct drm_display_mode *mode)
5748{
5749 u32 layout = mode->flags & DRM_MODE_FLAG_3D_MASK;
5750
5751 switch (layout) {
5752 case DRM_MODE_FLAG_3D_FRAME_PACKING:
5753 return HDMI_3D_STRUCTURE_FRAME_PACKING;
5754 case DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE:
5755 return HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE;
5756 case DRM_MODE_FLAG_3D_LINE_ALTERNATIVE:
5757 return HDMI_3D_STRUCTURE_LINE_ALTERNATIVE;
5758 case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL:
5759 return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL;
5760 case DRM_MODE_FLAG_3D_L_DEPTH:
5761 return HDMI_3D_STRUCTURE_L_DEPTH;
5762 case DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH:
5763 return HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH;
5764 case DRM_MODE_FLAG_3D_TOP_AND_BOTTOM:
5765 return HDMI_3D_STRUCTURE_TOP_AND_BOTTOM;
5766 case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF:
5767 return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF;
5768 default:
5769 return HDMI_3D_STRUCTURE_INVALID;
5770 }
5771}
5772
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005773/**
5774 * drm_hdmi_vendor_infoframe_from_display_mode() - fill an HDMI infoframe with
5775 * data from a DRM display mode
5776 * @frame: HDMI vendor infoframe
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005777 * @connector: the connector
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005778 * @mode: DRM display mode
5779 *
5780 * Note that there's is a need to send HDMI vendor infoframes only when using a
5781 * 4k or stereoscopic 3D mode. So when giving any other mode as input this
5782 * function will return -EINVAL, error that can be safely ignored.
5783 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005784 * Return: 0 on success or a negative error code on failure.
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005785 */
5786int
5787drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005788 const struct drm_connector *connector,
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005789 const struct drm_display_mode *mode)
5790{
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005791 /*
5792 * FIXME: sil-sii8620 doesn't have a connector around when
5793 * we need one, so we have to be prepared for a NULL connector.
5794 */
5795 bool has_hdmi_infoframe = connector ?
5796 connector->display_info.has_hdmi_infoframe : false;
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005797 int err;
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005798
5799 if (!frame || !mode)
5800 return -EINVAL;
5801
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005802 if (!has_hdmi_infoframe)
5803 return -EINVAL;
5804
Ville Syrjälä949561e2019-10-04 17:19:13 +03005805 err = hdmi_vendor_infoframe_init(frame);
5806 if (err < 0)
5807 return err;
Damien Lespiau4eed4a02013-09-25 16:45:26 +01005808
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005809 /*
5810 * Even if it's not absolutely necessary to send the infoframe
5811 * (ie.vic==0 and s3d_struct==0) we will still send it if we
5812 * know that the sink can handle it. This is based on a
5813 * suggestion in HDMI 2.0 Appendix F. Apparently some sinks
5814 * have trouble realizing that they shuld switch from 3D to 2D
5815 * mode if the source simply stops sending the infoframe when
5816 * it wants to switch from 3D to 2D.
5817 */
Ville Syrjälä949561e2019-10-04 17:19:13 +03005818 frame->vic = drm_mode_hdmi_vic(connector, mode);
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005819 frame->s3d_struct = s3d_structure_from_display_mode(mode);
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005820
5821 return 0;
5822}
5823EXPORT_SYMBOL(drm_hdmi_vendor_infoframe_from_display_mode);
Dave Airlie40d9b042014-10-20 16:29:33 +10005824
Dave Airlie5e546cd2016-05-03 15:31:12 +10005825static int drm_parse_tiled_block(struct drm_connector *connector,
Ville Syrjälä092c3672020-03-13 18:20:54 +02005826 const struct displayid_block *block)
Dave Airlie5e546cd2016-05-03 15:31:12 +10005827{
Ville Syrjälä092c3672020-03-13 18:20:54 +02005828 const struct displayid_tiled_block *tile = (struct displayid_tiled_block *)block;
Dave Airlie5e546cd2016-05-03 15:31:12 +10005829 u16 w, h;
5830 u8 tile_v_loc, tile_h_loc;
5831 u8 num_v_tile, num_h_tile;
5832 struct drm_tile_group *tg;
5833
5834 w = tile->tile_size[0] | tile->tile_size[1] << 8;
5835 h = tile->tile_size[2] | tile->tile_size[3] << 8;
5836
5837 num_v_tile = (tile->topo[0] & 0xf) | (tile->topo[2] & 0x30);
5838 num_h_tile = (tile->topo[0] >> 4) | ((tile->topo[2] >> 2) & 0x30);
5839 tile_v_loc = (tile->topo[1] & 0xf) | ((tile->topo[2] & 0x3) << 4);
5840 tile_h_loc = (tile->topo[1] >> 4) | (((tile->topo[2] >> 2) & 0x3) << 4);
5841
5842 connector->has_tile = true;
5843 if (tile->tile_cap & 0x80)
5844 connector->tile_is_single_monitor = true;
5845
5846 connector->num_h_tile = num_h_tile + 1;
5847 connector->num_v_tile = num_v_tile + 1;
5848 connector->tile_h_loc = tile_h_loc;
5849 connector->tile_v_loc = tile_v_loc;
5850 connector->tile_h_size = w + 1;
5851 connector->tile_v_size = h + 1;
5852
5853 DRM_DEBUG_KMS("tile cap 0x%x\n", tile->tile_cap);
5854 DRM_DEBUG_KMS("tile_size %d x %d\n", w + 1, h + 1);
5855 DRM_DEBUG_KMS("topo num tiles %dx%d, location %dx%d\n",
5856 num_h_tile + 1, num_v_tile + 1, tile_h_loc, tile_v_loc);
5857 DRM_DEBUG_KMS("vend %c%c%c\n", tile->topology_id[0], tile->topology_id[1], tile->topology_id[2]);
5858
5859 tg = drm_mode_get_tile_group(connector->dev, tile->topology_id);
5860 if (!tg) {
5861 tg = drm_mode_create_tile_group(connector->dev, tile->topology_id);
5862 }
5863 if (!tg)
5864 return -ENOMEM;
5865
5866 if (connector->tile_group != tg) {
5867 /* if we haven't got a pointer,
5868 take the reference, drop ref to old tile group */
5869 if (connector->tile_group) {
5870 drm_mode_put_tile_group(connector->dev, connector->tile_group);
5871 }
5872 connector->tile_group = tg;
5873 } else
5874 /* if same tile group, then release the ref we just took. */
5875 drm_mode_put_tile_group(connector->dev, tg);
5876 return 0;
5877}
5878
Ville Syrjälä092c3672020-03-13 18:20:54 +02005879static int drm_displayid_parse_tiled(struct drm_connector *connector,
5880 const u8 *displayid, int length, int idx)
Dave Airlie40d9b042014-10-20 16:29:33 +10005881{
Ville Syrjälä092c3672020-03-13 18:20:54 +02005882 const struct displayid_block *block;
Dave Airlie5e546cd2016-05-03 15:31:12 +10005883 int ret;
Dave Airlie40d9b042014-10-20 16:29:33 +10005884
Tomas Bzatek3a4a2ea2016-05-01 15:02:45 +02005885 idx += sizeof(struct displayid_hdr);
Andres Rodriguez80d42db2019-06-19 14:30:33 -04005886 for_each_displayid_db(displayid, block, idx, length) {
Tomas Bzatek3a4a2ea2016-05-01 15:02:45 +02005887 DRM_DEBUG_KMS("block id 0x%x, rev %d, len %d\n",
5888 block->tag, block->rev, block->num_bytes);
Dave Airlie40d9b042014-10-20 16:29:33 +10005889
Tomas Bzatek3a4a2ea2016-05-01 15:02:45 +02005890 switch (block->tag) {
5891 case DATA_BLOCK_TILED_DISPLAY:
5892 ret = drm_parse_tiled_block(connector, block);
5893 if (ret)
5894 return ret;
5895 break;
5896 default:
5897 DRM_DEBUG_KMS("found DisplayID tag 0x%x, unhandled\n", block->tag);
5898 break;
5899 }
Dave Airlie40d9b042014-10-20 16:29:33 +10005900 }
5901 return 0;
5902}
5903
Ville Syrjälä092c3672020-03-13 18:20:54 +02005904void drm_update_tile_info(struct drm_connector *connector,
5905 const struct edid *edid)
Dave Airlie40d9b042014-10-20 16:29:33 +10005906{
Ville Syrjälä092c3672020-03-13 18:20:54 +02005907 const void *displayid = NULL;
Ville Syrjälä23b03862020-03-13 18:20:49 +02005908 int length, idx;
Dave Airlie40d9b042014-10-20 16:29:33 +10005909 int ret;
Ville Syrjälä36881182020-03-13 18:20:48 +02005910
Dave Airlie40d9b042014-10-20 16:29:33 +10005911 connector->has_tile = false;
Ville Syrjälä23b03862020-03-13 18:20:49 +02005912 displayid = drm_find_displayid_extension(edid, &length, &idx);
Dave Airlie40d9b042014-10-20 16:29:33 +10005913 if (!displayid) {
5914 /* drop reference to any tile group we had */
5915 goto out_drop_ref;
5916 }
5917
Ville Syrjälä092c3672020-03-13 18:20:54 +02005918 ret = drm_displayid_parse_tiled(connector, displayid, length, idx);
Dave Airlie40d9b042014-10-20 16:29:33 +10005919 if (ret < 0)
5920 goto out_drop_ref;
5921 if (!connector->has_tile)
5922 goto out_drop_ref;
5923 return;
5924out_drop_ref:
5925 if (connector->tile_group) {
5926 drm_mode_put_tile_group(connector->dev, connector->tile_group);
5927 connector->tile_group = NULL;
5928 }
5929 return;
5930}