blob: d510b827a1f8ab82b55d1721c26307a16ed35224 [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>
Thomas Zimmermann36b73b02021-01-18 14:14:15 +010035#include <linux/pci.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030036#include <linux/slab.h>
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +010037#include <linux/vga_switcheroo.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030038
39#include <drm/drm_displayid.h>
40#include <drm/drm_drv.h>
David Howells760285e2012-10-02 18:01:07 +010041#include <drm/drm_edid.h>
Laurent Pinchart93382032016-11-28 20:51:09 +020042#include <drm/drm_encoder.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030043#include <drm/drm_print.h>
Shashank Sharma62c58af2017-03-13 16:54:02 +053044#include <drm/drm_scdc_helper.h>
Dave Airlief453ba02008-11-07 14:05:41 -080045
Takashi Iwai969218f2017-01-17 17:43:29 +010046#include "drm_crtc_internal.h"
47
Adam Jackson13931572010-08-03 14:38:19 -040048#define version_greater(edid, maj, min) \
49 (((edid)->version > (maj)) || \
50 ((edid)->version == (maj) && (edid)->revision > (min)))
Dave Airlief453ba02008-11-07 14:05:41 -080051
Adam Jacksond1ff6402010-03-29 21:43:26 +000052#define EDID_EST_TIMINGS 16
53#define EDID_STD_TIMINGS 8
54#define EDID_DETAILED_TIMINGS 4
Dave Airlief453ba02008-11-07 14:05:41 -080055
56/*
57 * EDID blocks out in the wild have a variety of bugs, try to collect
58 * them here (note that userspace may work around broken monitors first,
59 * but fixes should make their way here so that the kernel "just works"
60 * on as many displays as possible).
61 */
62
63/* First detailed mode wrong, use largest 60Hz mode */
64#define EDID_QUIRK_PREFER_LARGE_60 (1 << 0)
65/* Reported 135MHz pixel clock is too high, needs adjustment */
66#define EDID_QUIRK_135_CLOCK_TOO_HIGH (1 << 1)
67/* Prefer the largest mode at 75 Hz */
68#define EDID_QUIRK_PREFER_LARGE_75 (1 << 2)
69/* Detail timing is in cm not mm */
70#define EDID_QUIRK_DETAILED_IN_CM (1 << 3)
71/* Detailed timing descriptors have bogus size values, so just take the
72 * maximum size and use that.
73 */
74#define EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE (1 << 4)
Dave Airlief453ba02008-11-07 14:05:41 -080075/* use +hsync +vsync for detailed mode */
76#define EDID_QUIRK_DETAILED_SYNC_PP (1 << 6)
Adam Jacksonbc42aab2012-05-23 16:26:54 -040077/* Force reduced-blanking timings for detailed modes */
78#define EDID_QUIRK_FORCE_REDUCED_BLANKING (1 << 7)
Rafał Miłecki49d45a312013-12-07 13:22:42 +010079/* Force 8bpc */
80#define EDID_QUIRK_FORCE_8BPC (1 << 8)
Mario Kleinerbc5b9642014-05-23 21:40:55 +020081/* Force 12bpc */
82#define EDID_QUIRK_FORCE_12BPC (1 << 9)
Mario Kleinere10aec62016-07-06 12:05:44 +020083/* Force 6bpc */
84#define EDID_QUIRK_FORCE_6BPC (1 << 10)
Mario Kleinere345da82017-04-21 17:05:08 +020085/* Force 10bpc */
86#define EDID_QUIRK_FORCE_10BPC (1 << 11)
Dave Airlie66660d42017-10-16 05:08:09 +010087/* Non desktop display (i.e. HMD) */
88#define EDID_QUIRK_NON_DESKTOP (1 << 12)
Alex Deucher3c537882010-02-05 04:21:19 -050089
Adam Jackson13931572010-08-03 14:38:19 -040090struct detailed_mode_closure {
91 struct drm_connector *connector;
92 struct edid *edid;
93 bool preferred;
94 u32 quirks;
95 int modes;
96};
Dave Airlief453ba02008-11-07 14:05:41 -080097
Zhao Yakui5c612592009-06-22 13:17:10 +080098#define LEVEL_DMT 0
99#define LEVEL_GTF 1
Adam Jackson7a374352010-03-29 21:43:30 +0000100#define LEVEL_GTF2 2
101#define LEVEL_CVT 3
Zhao Yakui5c612592009-06-22 13:17:10 +0800102
Jani Nikula23c4cfb2016-12-28 13:06:26 +0200103static const struct edid_quirk {
Ian Pilcherc51a3fd62012-04-22 11:40:26 -0500104 char vendor[4];
Dave Airlief453ba02008-11-07 14:05:41 -0800105 int product_id;
106 u32 quirks;
107} edid_quirk_list[] = {
108 /* Acer AL1706 */
109 { "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
110 /* Acer F51 */
111 { "API", 0x7602, EDID_QUIRK_PREFER_LARGE_60 },
Dave Airlief453ba02008-11-07 14:05:41 -0800112
Mario Kleinere10aec62016-07-06 12:05:44 +0200113 /* AEO model 0 reports 8 bpc, but is a 6 bpc panel */
114 { "AEO", 0, EDID_QUIRK_FORCE_6BPC },
115
Kai-Heng Feng0711a432018-10-02 23:29:11 +0800116 /* BOE model on HP Pavilion 15-n233sl reports 8 bpc, but is a 6 bpc panel */
117 { "BOE", 0x78b, EDID_QUIRK_FORCE_6BPC },
118
Kai-Heng Feng06998a752018-02-18 16:53:59 +0800119 /* CPT panel of Asus UX303LA reports 8 bpc, but is a 6 bpc panel */
120 { "CPT", 0x17df, EDID_QUIRK_FORCE_6BPC },
121
Kai-Heng Feng25da7502018-08-23 05:53:32 +0000122 /* SDC panel of Lenovo B50-80 reports 8 bpc, but is a 6 bpc panel */
123 { "SDC", 0x3652, EDID_QUIRK_FORCE_6BPC },
124
Lee, Shawn C922dcef2018-10-28 22:49:33 -0700125 /* BOE model 0x0771 reports 8 bpc, but is a 6 bpc panel */
126 { "BOE", 0x0771, EDID_QUIRK_FORCE_6BPC },
127
Dave Airlief453ba02008-11-07 14:05:41 -0800128 /* Belinea 10 15 55 */
129 { "MAX", 1516, EDID_QUIRK_PREFER_LARGE_60 },
130 { "MAX", 0x77e, EDID_QUIRK_PREFER_LARGE_60 },
131
132 /* Envision Peripherals, Inc. EN-7100e */
133 { "EPI", 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH },
Adam Jacksonba1163d2010-04-06 16:11:00 +0000134 /* Envision EN2028 */
135 { "EPI", 8232, EDID_QUIRK_PREFER_LARGE_60 },
Dave Airlief453ba02008-11-07 14:05:41 -0800136
137 /* Funai Electronics PM36B */
138 { "FCM", 13600, EDID_QUIRK_PREFER_LARGE_75 |
139 EDID_QUIRK_DETAILED_IN_CM },
140
Mario Kleinere345da82017-04-21 17:05:08 +0200141 /* LGD panel of HP zBook 17 G2, eDP 10 bpc, but reports unknown bpc */
142 { "LGD", 764, EDID_QUIRK_FORCE_10BPC },
143
Dave Airlief453ba02008-11-07 14:05:41 -0800144 /* LG Philips LCD LP154W01-A5 */
145 { "LPL", 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
146 { "LPL", 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE },
147
Dave Airlief453ba02008-11-07 14:05:41 -0800148 /* Samsung SyncMaster 205BW. Note: irony */
149 { "SAM", 541, EDID_QUIRK_DETAILED_SYNC_PP },
150 /* Samsung SyncMaster 22[5-6]BW */
151 { "SAM", 596, EDID_QUIRK_PREFER_LARGE_60 },
152 { "SAM", 638, EDID_QUIRK_PREFER_LARGE_60 },
Adam Jacksonbc42aab2012-05-23 16:26:54 -0400153
Mario Kleinerbc5b9642014-05-23 21:40:55 +0200154 /* Sony PVM-2541A does up to 12 bpc, but only reports max 8 bpc */
155 { "SNY", 0x2541, EDID_QUIRK_FORCE_12BPC },
156
Adam Jacksonbc42aab2012-05-23 16:26:54 -0400157 /* ViewSonic VA2026w */
158 { "VSC", 5020, EDID_QUIRK_FORCE_REDUCED_BLANKING },
Alex Deucher118bdbd2013-08-12 11:04:29 -0400159
160 /* Medion MD 30217 PG */
161 { "MED", 0x7b8, EDID_QUIRK_PREFER_LARGE_75 },
Rafał Miłecki49d45a312013-12-07 13:22:42 +0100162
Kai-Heng Feng11bcf5f2019-04-02 11:30:37 +0800163 /* Lenovo G50 */
164 { "SDC", 18514, EDID_QUIRK_FORCE_6BPC },
165
Rafał Miłecki49d45a312013-12-07 13:22:42 +0100166 /* Panel in Samsung NP700G7A-S01PL notebook reports 6bpc */
167 { "SEC", 0xd033, EDID_QUIRK_FORCE_8BPC },
Tomeu Vizoso36fc5792017-02-20 16:25:45 +0100168
169 /* Rotel RSX-1058 forwards sink's EDID but only does HDMI 1.1*/
170 { "ETR", 13896, EDID_QUIRK_FORCE_8BPC },
Dave Airlieacb1d8e2017-10-16 05:26:19 +0100171
Andres Rodriguez30d62d42019-05-02 15:31:57 -0400172 /* Valve Index Headset */
173 { "VLV", 0x91a8, EDID_QUIRK_NON_DESKTOP },
174 { "VLV", 0x91b0, EDID_QUIRK_NON_DESKTOP },
175 { "VLV", 0x91b1, EDID_QUIRK_NON_DESKTOP },
176 { "VLV", 0x91b2, EDID_QUIRK_NON_DESKTOP },
177 { "VLV", 0x91b3, EDID_QUIRK_NON_DESKTOP },
178 { "VLV", 0x91b4, EDID_QUIRK_NON_DESKTOP },
179 { "VLV", 0x91b5, EDID_QUIRK_NON_DESKTOP },
180 { "VLV", 0x91b6, EDID_QUIRK_NON_DESKTOP },
181 { "VLV", 0x91b7, EDID_QUIRK_NON_DESKTOP },
182 { "VLV", 0x91b8, EDID_QUIRK_NON_DESKTOP },
183 { "VLV", 0x91b9, EDID_QUIRK_NON_DESKTOP },
184 { "VLV", 0x91ba, EDID_QUIRK_NON_DESKTOP },
185 { "VLV", 0x91bb, EDID_QUIRK_NON_DESKTOP },
186 { "VLV", 0x91bc, EDID_QUIRK_NON_DESKTOP },
187 { "VLV", 0x91bd, EDID_QUIRK_NON_DESKTOP },
188 { "VLV", 0x91be, EDID_QUIRK_NON_DESKTOP },
189 { "VLV", 0x91bf, EDID_QUIRK_NON_DESKTOP },
190
Lubosz Sarnecki69313172018-05-29 13:52:15 +0200191 /* HTC Vive and Vive Pro VR Headsets */
Dave Airlieacb1d8e2017-10-16 05:26:19 +0100192 { "HVR", 0xaa01, EDID_QUIRK_NON_DESKTOP },
Lubosz Sarnecki69313172018-05-29 13:52:15 +0200193 { "HVR", 0xaa02, EDID_QUIRK_NON_DESKTOP },
Philipp Zabelb3b12ea2018-02-19 18:59:36 +0100194
Jan Schmidt5a3f6102020-05-08 04:06:28 +1000195 /* Oculus Rift DK1, DK2, CV1 and Rift S VR Headsets */
Philipp Zabelb3b12ea2018-02-19 18:59:36 +0100196 { "OVR", 0x0001, EDID_QUIRK_NON_DESKTOP },
197 { "OVR", 0x0003, EDID_QUIRK_NON_DESKTOP },
198 { "OVR", 0x0004, EDID_QUIRK_NON_DESKTOP },
Jan Schmidt5a3f6102020-05-08 04:06:28 +1000199 { "OVR", 0x0012, EDID_QUIRK_NON_DESKTOP },
Philipp Zabel90eda8f2018-02-19 18:59:37 +0100200
201 /* Windows Mixed Reality Headsets */
202 { "ACR", 0x7fce, EDID_QUIRK_NON_DESKTOP },
203 { "HPN", 0x3515, EDID_QUIRK_NON_DESKTOP },
204 { "LEN", 0x0408, EDID_QUIRK_NON_DESKTOP },
205 { "LEN", 0xb800, EDID_QUIRK_NON_DESKTOP },
206 { "FUJ", 0x1970, EDID_QUIRK_NON_DESKTOP },
207 { "DEL", 0x7fce, EDID_QUIRK_NON_DESKTOP },
208 { "SEC", 0x144a, EDID_QUIRK_NON_DESKTOP },
209 { "AUS", 0xc102, EDID_QUIRK_NON_DESKTOP },
Philipp Zabelccffc9e2018-02-19 18:59:38 +0100210
211 /* Sony PlayStation VR Headset */
212 { "SNY", 0x0704, EDID_QUIRK_NON_DESKTOP },
Ryan Pavlik29054232018-12-03 10:46:44 -0600213
214 /* Sensics VR Headsets */
215 { "SEN", 0x1019, EDID_QUIRK_NON_DESKTOP },
216
217 /* OSVR HDK and HDK2 VR Headsets */
218 { "SVR", 0x1019, EDID_QUIRK_NON_DESKTOP },
Dave Airlief453ba02008-11-07 14:05:41 -0800219};
220
Thierry Redinga6b21832012-11-23 15:01:42 +0100221/*
222 * Autogenerated from the DMT spec.
223 * This table is copied from xfree86/modes/xf86EdidModes.c.
224 */
225static const struct drm_display_mode drm_dmt_modes[] = {
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300226 /* 0x01 - 640x350@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100227 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
228 736, 832, 0, 350, 382, 385, 445, 0,
229 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300230 /* 0x02 - 640x400@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100231 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
232 736, 832, 0, 400, 401, 404, 445, 0,
233 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300234 /* 0x03 - 720x400@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100235 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
236 828, 936, 0, 400, 401, 404, 446, 0,
237 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300238 /* 0x04 - 640x480@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100239 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300240 752, 800, 0, 480, 490, 492, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100241 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300242 /* 0x05 - 640x480@72Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100243 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
244 704, 832, 0, 480, 489, 492, 520, 0,
245 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300246 /* 0x06 - 640x480@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100247 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
248 720, 840, 0, 480, 481, 484, 500, 0,
249 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300250 /* 0x07 - 640x480@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100251 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
252 752, 832, 0, 480, 481, 484, 509, 0,
253 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300254 /* 0x08 - 800x600@56Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100255 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
256 896, 1024, 0, 600, 601, 603, 625, 0,
257 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300258 /* 0x09 - 800x600@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100259 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
260 968, 1056, 0, 600, 601, 605, 628, 0,
261 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300262 /* 0x0a - 800x600@72Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100263 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
264 976, 1040, 0, 600, 637, 643, 666, 0,
265 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300266 /* 0x0b - 800x600@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100267 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
268 896, 1056, 0, 600, 601, 604, 625, 0,
269 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300270 /* 0x0c - 800x600@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100271 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
272 896, 1048, 0, 600, 601, 604, 631, 0,
273 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300274 /* 0x0d - 800x600@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100275 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 73250, 800, 848,
276 880, 960, 0, 600, 603, 607, 636, 0,
277 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300278 /* 0x0e - 848x480@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100279 { DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
280 976, 1088, 0, 480, 486, 494, 517, 0,
281 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300282 /* 0x0f - 1024x768@43Hz, interlace */
Thierry Redinga6b21832012-11-23 15:01:42 +0100283 { DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
Paul Parsons735b1002016-04-04 20:36:34 +0100284 1208, 1264, 0, 768, 768, 776, 817, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100285 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300286 DRM_MODE_FLAG_INTERLACE) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300287 /* 0x10 - 1024x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100288 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
289 1184, 1344, 0, 768, 771, 777, 806, 0,
290 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300291 /* 0x11 - 1024x768@70Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100292 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
293 1184, 1328, 0, 768, 771, 777, 806, 0,
294 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300295 /* 0x12 - 1024x768@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100296 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
297 1136, 1312, 0, 768, 769, 772, 800, 0,
298 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300299 /* 0x13 - 1024x768@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100300 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
301 1168, 1376, 0, 768, 769, 772, 808, 0,
302 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300303 /* 0x14 - 1024x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100304 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 115500, 1024, 1072,
305 1104, 1184, 0, 768, 771, 775, 813, 0,
306 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300307 /* 0x15 - 1152x864@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100308 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
309 1344, 1600, 0, 864, 865, 868, 900, 0,
310 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300311 /* 0x55 - 1280x720@60Hz */
312 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
313 1430, 1650, 0, 720, 725, 730, 750, 0,
314 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300315 /* 0x16 - 1280x768@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100316 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 68250, 1280, 1328,
317 1360, 1440, 0, 768, 771, 778, 790, 0,
318 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300319 /* 0x17 - 1280x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100320 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
321 1472, 1664, 0, 768, 771, 778, 798, 0,
322 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300323 /* 0x18 - 1280x768@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100324 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
325 1488, 1696, 0, 768, 771, 778, 805, 0,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300326 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300327 /* 0x19 - 1280x768@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100328 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
329 1496, 1712, 0, 768, 771, 778, 809, 0,
330 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300331 /* 0x1a - 1280x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100332 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 140250, 1280, 1328,
333 1360, 1440, 0, 768, 771, 778, 813, 0,
334 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300335 /* 0x1b - 1280x800@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100336 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 71000, 1280, 1328,
337 1360, 1440, 0, 800, 803, 809, 823, 0,
338 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300339 /* 0x1c - 1280x800@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100340 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
341 1480, 1680, 0, 800, 803, 809, 831, 0,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300342 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300343 /* 0x1d - 1280x800@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100344 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
345 1488, 1696, 0, 800, 803, 809, 838, 0,
346 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300347 /* 0x1e - 1280x800@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100348 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
349 1496, 1712, 0, 800, 803, 809, 843, 0,
350 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300351 /* 0x1f - 1280x800@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100352 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 146250, 1280, 1328,
353 1360, 1440, 0, 800, 803, 809, 847, 0,
354 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300355 /* 0x20 - 1280x960@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100356 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
357 1488, 1800, 0, 960, 961, 964, 1000, 0,
358 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300359 /* 0x21 - 1280x960@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100360 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
361 1504, 1728, 0, 960, 961, 964, 1011, 0,
362 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300363 /* 0x22 - 1280x960@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100364 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 175500, 1280, 1328,
365 1360, 1440, 0, 960, 963, 967, 1017, 0,
366 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300367 /* 0x23 - 1280x1024@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100368 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
369 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
370 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300371 /* 0x24 - 1280x1024@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100372 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
373 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
374 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300375 /* 0x25 - 1280x1024@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100376 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
377 1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
378 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300379 /* 0x26 - 1280x1024@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100380 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 187250, 1280, 1328,
381 1360, 1440, 0, 1024, 1027, 1034, 1084, 0,
382 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300383 /* 0x27 - 1360x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100384 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
385 1536, 1792, 0, 768, 771, 777, 795, 0,
386 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300387 /* 0x28 - 1360x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100388 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 148250, 1360, 1408,
389 1440, 1520, 0, 768, 771, 776, 813, 0,
390 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300391 /* 0x51 - 1366x768@60Hz */
392 { DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 85500, 1366, 1436,
393 1579, 1792, 0, 768, 771, 774, 798, 0,
394 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
395 /* 0x56 - 1366x768@60Hz */
396 { DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 72000, 1366, 1380,
397 1436, 1500, 0, 768, 769, 772, 800, 0,
398 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300399 /* 0x29 - 1400x1050@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100400 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 101000, 1400, 1448,
401 1480, 1560, 0, 1050, 1053, 1057, 1080, 0,
402 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300403 /* 0x2a - 1400x1050@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100404 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
405 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
406 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300407 /* 0x2b - 1400x1050@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100408 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
409 1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
410 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300411 /* 0x2c - 1400x1050@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100412 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
413 1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
414 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300415 /* 0x2d - 1400x1050@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100416 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 208000, 1400, 1448,
417 1480, 1560, 0, 1050, 1053, 1057, 1112, 0,
418 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300419 /* 0x2e - 1440x900@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100420 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 88750, 1440, 1488,
421 1520, 1600, 0, 900, 903, 909, 926, 0,
422 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300423 /* 0x2f - 1440x900@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100424 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
425 1672, 1904, 0, 900, 903, 909, 934, 0,
426 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300427 /* 0x30 - 1440x900@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100428 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
429 1688, 1936, 0, 900, 903, 909, 942, 0,
430 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300431 /* 0x31 - 1440x900@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100432 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
433 1696, 1952, 0, 900, 903, 909, 948, 0,
434 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300435 /* 0x32 - 1440x900@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100436 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 182750, 1440, 1488,
437 1520, 1600, 0, 900, 903, 909, 953, 0,
438 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300439 /* 0x53 - 1600x900@60Hz */
440 { DRM_MODE("1600x900", DRM_MODE_TYPE_DRIVER, 108000, 1600, 1624,
441 1704, 1800, 0, 900, 901, 904, 1000, 0,
442 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300443 /* 0x33 - 1600x1200@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100444 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 1600, 1664,
445 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
446 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300447 /* 0x34 - 1600x1200@65Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100448 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 1600, 1664,
449 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
450 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300451 /* 0x35 - 1600x1200@70Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100452 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
453 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
454 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300455 /* 0x36 - 1600x1200@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100456 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 202500, 1600, 1664,
457 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
458 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300459 /* 0x37 - 1600x1200@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100460 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
461 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
462 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300463 /* 0x38 - 1600x1200@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100464 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 268250, 1600, 1648,
465 1680, 1760, 0, 1200, 1203, 1207, 1271, 0,
466 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300467 /* 0x39 - 1680x1050@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100468 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 119000, 1680, 1728,
469 1760, 1840, 0, 1050, 1053, 1059, 1080, 0,
470 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300471 /* 0x3a - 1680x1050@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100472 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
473 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
474 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300475 /* 0x3b - 1680x1050@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100476 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
477 1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
478 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300479 /* 0x3c - 1680x1050@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100480 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
481 1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
482 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300483 /* 0x3d - 1680x1050@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100484 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 245500, 1680, 1728,
485 1760, 1840, 0, 1050, 1053, 1059, 1112, 0,
486 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300487 /* 0x3e - 1792x1344@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100488 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
489 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
490 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300491 /* 0x3f - 1792x1344@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100492 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
493 2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
494 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300495 /* 0x40 - 1792x1344@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100496 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 333250, 1792, 1840,
497 1872, 1952, 0, 1344, 1347, 1351, 1423, 0,
498 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300499 /* 0x41 - 1856x1392@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100500 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
501 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
502 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300503 /* 0x42 - 1856x1392@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100504 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300505 2208, 2560, 0, 1392, 1393, 1396, 1500, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100506 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300507 /* 0x43 - 1856x1392@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100508 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 356500, 1856, 1904,
509 1936, 2016, 0, 1392, 1395, 1399, 1474, 0,
510 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300511 /* 0x52 - 1920x1080@60Hz */
512 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
513 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
514 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300515 /* 0x44 - 1920x1200@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100516 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 154000, 1920, 1968,
517 2000, 2080, 0, 1200, 1203, 1209, 1235, 0,
518 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300519 /* 0x45 - 1920x1200@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100520 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
521 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
522 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300523 /* 0x46 - 1920x1200@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100524 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
525 2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
526 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300527 /* 0x47 - 1920x1200@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100528 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
529 2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
530 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300531 /* 0x48 - 1920x1200@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100532 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 317000, 1920, 1968,
533 2000, 2080, 0, 1200, 1203, 1209, 1271, 0,
534 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300535 /* 0x49 - 1920x1440@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100536 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
537 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
538 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300539 /* 0x4a - 1920x1440@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100540 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
541 2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
542 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300543 /* 0x4b - 1920x1440@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100544 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 380500, 1920, 1968,
545 2000, 2080, 0, 1440, 1443, 1447, 1525, 0,
546 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300547 /* 0x54 - 2048x1152@60Hz */
548 { DRM_MODE("2048x1152", DRM_MODE_TYPE_DRIVER, 162000, 2048, 2074,
549 2154, 2250, 0, 1152, 1153, 1156, 1200, 0,
550 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300551 /* 0x4c - 2560x1600@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100552 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 268500, 2560, 2608,
553 2640, 2720, 0, 1600, 1603, 1609, 1646, 0,
554 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300555 /* 0x4d - 2560x1600@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100556 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
557 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
558 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300559 /* 0x4e - 2560x1600@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100560 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
561 3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
562 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300563 /* 0x4f - 2560x1600@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100564 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
565 3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
566 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300567 /* 0x50 - 2560x1600@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100568 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 552750, 2560, 2608,
569 2640, 2720, 0, 1600, 1603, 1609, 1694, 0,
570 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300571 /* 0x57 - 4096x2160@60Hz RB */
572 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556744, 4096, 4104,
573 4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
574 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
575 /* 0x58 - 4096x2160@59.94Hz RB */
576 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556188, 4096, 4104,
577 4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
578 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Thierry Redinga6b21832012-11-23 15:01:42 +0100579};
580
Ville Syrjäläe7bfa5c2013-10-14 16:44:27 +0300581/*
582 * These more or less come from the DMT spec. The 720x400 modes are
583 * inferred from historical 80x25 practice. The 640x480@67 and 832x624@75
584 * modes are old-school Mac modes. The EDID spec says the 1152x864@75 mode
585 * should be 1152x870, again for the Mac, but instead we use the x864 DMT
586 * mode.
587 *
588 * The DMT modes have been fact-checked; the rest are mild guesses.
589 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100590static const struct drm_display_mode edid_est_modes[] = {
591 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
592 968, 1056, 0, 600, 601, 605, 628, 0,
593 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
594 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
595 896, 1024, 0, 600, 601, 603, 625, 0,
596 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
597 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
598 720, 840, 0, 480, 481, 484, 500, 0,
599 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
600 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
Paul Parsons87707cf2016-04-02 11:08:06 +0100601 704, 832, 0, 480, 489, 492, 520, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100602 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
603 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
604 768, 864, 0, 480, 483, 486, 525, 0,
605 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
Paul Parsons87707cf2016-04-02 11:08:06 +0100606 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
Thierry Redinga6b21832012-11-23 15:01:42 +0100607 752, 800, 0, 480, 490, 492, 525, 0,
608 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
609 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
610 846, 900, 0, 400, 421, 423, 449, 0,
611 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
612 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
613 846, 900, 0, 400, 412, 414, 449, 0,
614 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
615 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
616 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
617 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
Paul Parsons87707cf2016-04-02 11:08:06 +0100618 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
Thierry Redinga6b21832012-11-23 15:01:42 +0100619 1136, 1312, 0, 768, 769, 772, 800, 0,
620 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
621 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
622 1184, 1328, 0, 768, 771, 777, 806, 0,
623 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
624 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
625 1184, 1344, 0, 768, 771, 777, 806, 0,
626 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
627 { DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
628 1208, 1264, 0, 768, 768, 776, 817, 0,
629 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
630 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
631 928, 1152, 0, 624, 625, 628, 667, 0,
632 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
633 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
634 896, 1056, 0, 600, 601, 604, 625, 0,
635 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
636 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
637 976, 1040, 0, 600, 637, 643, 666, 0,
638 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
639 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
640 1344, 1600, 0, 864, 865, 868, 900, 0,
641 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
642};
643
644struct minimode {
645 short w;
646 short h;
647 short r;
648 short rb;
649};
650
651static const struct minimode est3_modes[] = {
652 /* byte 6 */
653 { 640, 350, 85, 0 },
654 { 640, 400, 85, 0 },
655 { 720, 400, 85, 0 },
656 { 640, 480, 85, 0 },
657 { 848, 480, 60, 0 },
658 { 800, 600, 85, 0 },
659 { 1024, 768, 85, 0 },
660 { 1152, 864, 75, 0 },
661 /* byte 7 */
662 { 1280, 768, 60, 1 },
663 { 1280, 768, 60, 0 },
664 { 1280, 768, 75, 0 },
665 { 1280, 768, 85, 0 },
666 { 1280, 960, 60, 0 },
667 { 1280, 960, 85, 0 },
668 { 1280, 1024, 60, 0 },
669 { 1280, 1024, 85, 0 },
670 /* byte 8 */
671 { 1360, 768, 60, 0 },
672 { 1440, 900, 60, 1 },
673 { 1440, 900, 60, 0 },
674 { 1440, 900, 75, 0 },
675 { 1440, 900, 85, 0 },
676 { 1400, 1050, 60, 1 },
677 { 1400, 1050, 60, 0 },
678 { 1400, 1050, 75, 0 },
679 /* byte 9 */
680 { 1400, 1050, 85, 0 },
681 { 1680, 1050, 60, 1 },
682 { 1680, 1050, 60, 0 },
683 { 1680, 1050, 75, 0 },
684 { 1680, 1050, 85, 0 },
685 { 1600, 1200, 60, 0 },
686 { 1600, 1200, 65, 0 },
687 { 1600, 1200, 70, 0 },
688 /* byte 10 */
689 { 1600, 1200, 75, 0 },
690 { 1600, 1200, 85, 0 },
691 { 1792, 1344, 60, 0 },
Ville Syrjäläc068b322013-10-14 16:44:25 +0300692 { 1792, 1344, 75, 0 },
Thierry Redinga6b21832012-11-23 15:01:42 +0100693 { 1856, 1392, 60, 0 },
694 { 1856, 1392, 75, 0 },
695 { 1920, 1200, 60, 1 },
696 { 1920, 1200, 60, 0 },
697 /* byte 11 */
698 { 1920, 1200, 75, 0 },
699 { 1920, 1200, 85, 0 },
700 { 1920, 1440, 60, 0 },
701 { 1920, 1440, 75, 0 },
702};
703
704static const struct minimode extra_modes[] = {
705 { 1024, 576, 60, 0 },
706 { 1366, 768, 60, 0 },
707 { 1600, 900, 60, 0 },
708 { 1680, 945, 60, 0 },
709 { 1920, 1080, 60, 0 },
710 { 2048, 1152, 60, 0 },
711 { 2048, 1536, 60, 0 },
712};
713
714/*
Ville Syrjälä7befe622019-12-13 19:43:45 +0200715 * From CEA/CTA-861 spec.
Jani Nikulad9278b42016-01-08 13:21:51 +0200716 *
Ville Syrjälä7befe622019-12-13 19:43:45 +0200717 * Do not access directly, instead always use cea_mode_for_vic().
Thierry Redinga6b21832012-11-23 15:01:42 +0100718 */
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +0200719static const struct drm_display_mode edid_cea_modes_1[] = {
Ville Syrjälä78691962018-05-24 22:20:35 +0300720 /* 1 - 640x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100721 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
722 752, 800, 0, 480, 490, 492, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300723 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300724 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300725 /* 2 - 720x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100726 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
727 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300728 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300729 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300730 /* 3 - 720x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100731 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
732 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300733 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300734 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300735 /* 4 - 1280x720@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100736 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
737 1430, 1650, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300738 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300739 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300740 /* 5 - 1920x1080i@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100741 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
742 2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
743 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300744 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300745 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300746 /* 6 - 720(1440)x480i@60Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700747 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
748 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100749 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300750 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300751 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300752 /* 7 - 720(1440)x480i@60Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700753 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
754 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100755 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300756 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300757 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300758 /* 8 - 720(1440)x240@60Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700759 { DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
760 801, 858, 0, 240, 244, 247, 262, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100761 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300762 DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300763 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300764 /* 9 - 720(1440)x240@60Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700765 { DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
766 801, 858, 0, 240, 244, 247, 262, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100767 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300768 DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300769 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300770 /* 10 - 2880x480i@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100771 { DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
772 3204, 3432, 0, 480, 488, 494, 525, 0,
773 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300774 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300775 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300776 /* 11 - 2880x480i@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100777 { DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
778 3204, 3432, 0, 480, 488, 494, 525, 0,
779 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300780 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300781 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300782 /* 12 - 2880x240@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100783 { DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
784 3204, 3432, 0, 240, 244, 247, 262, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300785 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300786 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300787 /* 13 - 2880x240@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100788 { DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
789 3204, 3432, 0, 240, 244, 247, 262, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300790 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300791 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300792 /* 14 - 1440x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100793 { DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
794 1596, 1716, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300795 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300796 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300797 /* 15 - 1440x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100798 { DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
799 1596, 1716, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300800 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300801 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300802 /* 16 - 1920x1080@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100803 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
804 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300805 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300806 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300807 /* 17 - 720x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100808 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
809 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300810 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300811 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300812 /* 18 - 720x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100813 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
814 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300815 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300816 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300817 /* 19 - 1280x720@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100818 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
819 1760, 1980, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300820 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300821 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300822 /* 20 - 1920x1080i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100823 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
824 2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
825 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300826 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300827 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300828 /* 21 - 720(1440)x576i@50Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700829 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
830 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100831 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300832 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300833 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300834 /* 22 - 720(1440)x576i@50Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700835 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
836 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100837 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300838 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300839 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300840 /* 23 - 720(1440)x288@50Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700841 { DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
842 795, 864, 0, 288, 290, 293, 312, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100843 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300844 DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300845 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300846 /* 24 - 720(1440)x288@50Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700847 { DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
848 795, 864, 0, 288, 290, 293, 312, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100849 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300850 DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300851 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300852 /* 25 - 2880x576i@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100853 { DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
854 3180, 3456, 0, 576, 580, 586, 625, 0,
855 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300856 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300857 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300858 /* 26 - 2880x576i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100859 { DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
860 3180, 3456, 0, 576, 580, 586, 625, 0,
861 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300862 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300863 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300864 /* 27 - 2880x288@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100865 { DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
866 3180, 3456, 0, 288, 290, 293, 312, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300867 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300868 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300869 /* 28 - 2880x288@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100870 { DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
871 3180, 3456, 0, 288, 290, 293, 312, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300872 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300873 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300874 /* 29 - 1440x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100875 { DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
876 1592, 1728, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300877 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300878 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300879 /* 30 - 1440x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100880 { DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
881 1592, 1728, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300882 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300883 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300884 /* 31 - 1920x1080@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100885 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
886 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300887 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300888 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300889 /* 32 - 1920x1080@24Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100890 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
891 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300892 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300893 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300894 /* 33 - 1920x1080@25Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100895 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
896 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300897 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300898 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300899 /* 34 - 1920x1080@30Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100900 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
901 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300902 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300903 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300904 /* 35 - 2880x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100905 { DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
906 3192, 3432, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300907 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300908 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300909 /* 36 - 2880x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100910 { DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
911 3192, 3432, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300912 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300913 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300914 /* 37 - 2880x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100915 { DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
916 3184, 3456, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300917 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300918 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300919 /* 38 - 2880x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100920 { DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
921 3184, 3456, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300922 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300923 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300924 /* 39 - 1920x1080i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100925 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 72000, 1920, 1952,
926 2120, 2304, 0, 1080, 1126, 1136, 1250, 0,
927 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300928 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300929 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300930 /* 40 - 1920x1080i@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100931 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
932 2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
933 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300934 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300935 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300936 /* 41 - 1280x720@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100937 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
938 1760, 1980, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300939 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300940 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300941 /* 42 - 720x576@100Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100942 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
943 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300944 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300945 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300946 /* 43 - 720x576@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100947 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
948 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300949 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300950 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300951 /* 44 - 720(1440)x576i@100Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700952 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
953 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100954 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300955 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300956 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300957 /* 45 - 720(1440)x576i@100Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700958 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
959 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100960 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300961 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300962 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300963 /* 46 - 1920x1080i@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100964 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
965 2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
966 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300967 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300968 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300969 /* 47 - 1280x720@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100970 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
971 1430, 1650, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300972 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300973 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300974 /* 48 - 720x480@120Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100975 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
976 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300977 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300978 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300979 /* 49 - 720x480@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100980 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
981 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300982 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300983 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300984 /* 50 - 720(1440)x480i@120Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700985 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
986 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100987 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300988 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300989 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300990 /* 51 - 720(1440)x480i@120Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700991 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
992 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100993 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300994 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300995 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300996 /* 52 - 720x576@200Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100997 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
998 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300999 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001000 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001001 /* 53 - 720x576@200Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001002 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
1003 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001004 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001005 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001006 /* 54 - 720(1440)x576i@200Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001007 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
1008 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001009 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001010 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001011 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001012 /* 55 - 720(1440)x576i@200Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001013 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
1014 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001015 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001016 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001017 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001018 /* 56 - 720x480@240Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001019 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
1020 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001021 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001022 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001023 /* 57 - 720x480@240Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001024 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
1025 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001026 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001027 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001028 /* 58 - 720(1440)x480i@240Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001029 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
1030 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001031 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001032 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001033 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001034 /* 59 - 720(1440)x480i@240Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001035 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
1036 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001037 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001038 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001039 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001040 /* 60 - 1280x720@24Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001041 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
1042 3080, 3300, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001043 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001044 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001045 /* 61 - 1280x720@25Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001046 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
1047 3740, 3960, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001048 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001049 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001050 /* 62 - 1280x720@30Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001051 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
1052 3080, 3300, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001053 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001054 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001055 /* 63 - 1920x1080@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001056 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1057 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001058 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001059 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001060 /* 64 - 1920x1080@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001061 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
Clint Taylor8f0e4902016-08-15 10:31:28 -07001062 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001063 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001064 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001065 /* 65 - 1280x720@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301066 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
1067 3080, 3300, 0, 720, 725, 730, 750, 0,
1068 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001069 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001070 /* 66 - 1280x720@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301071 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
1072 3740, 3960, 0, 720, 725, 730, 750, 0,
1073 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001074 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001075 /* 67 - 1280x720@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301076 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
1077 3080, 3300, 0, 720, 725, 730, 750, 0,
1078 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001079 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001080 /* 68 - 1280x720@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301081 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
1082 1760, 1980, 0, 720, 725, 730, 750, 0,
1083 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001084 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001085 /* 69 - 1280x720@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301086 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
1087 1430, 1650, 0, 720, 725, 730, 750, 0,
1088 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001089 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001090 /* 70 - 1280x720@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301091 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
1092 1760, 1980, 0, 720, 725, 730, 750, 0,
1093 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001094 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001095 /* 71 - 1280x720@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301096 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
1097 1430, 1650, 0, 720, 725, 730, 750, 0,
1098 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001099 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001100 /* 72 - 1920x1080@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301101 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
1102 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1103 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001104 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001105 /* 73 - 1920x1080@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301106 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
1107 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1108 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001109 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001110 /* 74 - 1920x1080@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301111 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
1112 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1113 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001114 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001115 /* 75 - 1920x1080@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301116 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
1117 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1118 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001119 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001120 /* 76 - 1920x1080@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301121 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
1122 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1123 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001124 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001125 /* 77 - 1920x1080@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301126 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
1127 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1128 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001129 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001130 /* 78 - 1920x1080@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301131 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1132 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1133 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001134 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001135 /* 79 - 1680x720@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301136 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 3040,
1137 3080, 3300, 0, 720, 725, 730, 750, 0,
1138 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001139 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001140 /* 80 - 1680x720@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301141 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 2908,
1142 2948, 3168, 0, 720, 725, 730, 750, 0,
1143 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001144 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001145 /* 81 - 1680x720@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301146 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 2380,
1147 2420, 2640, 0, 720, 725, 730, 750, 0,
1148 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001149 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001150 /* 82 - 1680x720@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301151 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 82500, 1680, 1940,
1152 1980, 2200, 0, 720, 725, 730, 750, 0,
1153 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001154 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001155 /* 83 - 1680x720@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301156 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 99000, 1680, 1940,
1157 1980, 2200, 0, 720, 725, 730, 750, 0,
1158 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001159 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001160 /* 84 - 1680x720@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301161 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 165000, 1680, 1740,
1162 1780, 2000, 0, 720, 725, 730, 825, 0,
1163 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001164 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001165 /* 85 - 1680x720@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301166 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 198000, 1680, 1740,
1167 1780, 2000, 0, 720, 725, 730, 825, 0,
1168 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001169 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001170 /* 86 - 2560x1080@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301171 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 99000, 2560, 3558,
1172 3602, 3750, 0, 1080, 1084, 1089, 1100, 0,
1173 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001174 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001175 /* 87 - 2560x1080@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301176 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 90000, 2560, 3008,
1177 3052, 3200, 0, 1080, 1084, 1089, 1125, 0,
1178 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001179 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001180 /* 88 - 2560x1080@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301181 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 118800, 2560, 3328,
1182 3372, 3520, 0, 1080, 1084, 1089, 1125, 0,
1183 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001184 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001185 /* 89 - 2560x1080@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301186 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 185625, 2560, 3108,
1187 3152, 3300, 0, 1080, 1084, 1089, 1125, 0,
1188 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001189 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001190 /* 90 - 2560x1080@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301191 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 198000, 2560, 2808,
1192 2852, 3000, 0, 1080, 1084, 1089, 1100, 0,
1193 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001194 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001195 /* 91 - 2560x1080@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301196 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 371250, 2560, 2778,
1197 2822, 2970, 0, 1080, 1084, 1089, 1250, 0,
1198 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001199 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001200 /* 92 - 2560x1080@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301201 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 495000, 2560, 3108,
1202 3152, 3300, 0, 1080, 1084, 1089, 1250, 0,
1203 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001204 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001205 /* 93 - 3840x2160@24Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301206 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 5116,
1207 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1208 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001209 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001210 /* 94 - 3840x2160@25Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301211 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4896,
1212 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1213 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001214 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001215 /* 95 - 3840x2160@30Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301216 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4016,
1217 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1218 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001219 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001220 /* 96 - 3840x2160@50Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301221 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4896,
1222 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1223 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001224 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001225 /* 97 - 3840x2160@60Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301226 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4016,
1227 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1228 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001229 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001230 /* 98 - 4096x2160@24Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301231 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 5116,
1232 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1233 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001234 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001235 /* 99 - 4096x2160@25Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301236 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 5064,
1237 5152, 5280, 0, 2160, 2168, 2178, 2250, 0,
1238 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001239 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001240 /* 100 - 4096x2160@30Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301241 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 4184,
1242 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1243 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001244 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001245 /* 101 - 4096x2160@50Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301246 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 5064,
1247 5152, 5280, 0, 2160, 2168, 2178, 2250, 0,
1248 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001249 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001250 /* 102 - 4096x2160@60Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301251 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 4184,
1252 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1253 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001254 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001255 /* 103 - 3840x2160@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301256 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 5116,
1257 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1258 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001259 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001260 /* 104 - 3840x2160@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301261 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4896,
1262 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1263 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001264 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001265 /* 105 - 3840x2160@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301266 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4016,
1267 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1268 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001269 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001270 /* 106 - 3840x2160@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301271 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4896,
1272 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1273 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001274 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001275 /* 107 - 3840x2160@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301276 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4016,
1277 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1278 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001279 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001280 /* 108 - 1280x720@48Hz 16:9 */
1281 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 90000, 1280, 2240,
1282 2280, 2500, 0, 720, 725, 730, 750, 0,
1283 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001284 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001285 /* 109 - 1280x720@48Hz 64:27 */
1286 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 90000, 1280, 2240,
1287 2280, 2500, 0, 720, 725, 730, 750, 0,
1288 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001289 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001290 /* 110 - 1680x720@48Hz 64:27 */
1291 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 99000, 1680, 2490,
1292 2530, 2750, 0, 720, 725, 730, 750, 0,
1293 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001294 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001295 /* 111 - 1920x1080@48Hz 16:9 */
1296 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2558,
1297 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1298 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001299 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001300 /* 112 - 1920x1080@48Hz 64:27 */
1301 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2558,
1302 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1303 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001304 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001305 /* 113 - 2560x1080@48Hz 64:27 */
1306 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 198000, 2560, 3558,
1307 3602, 3750, 0, 1080, 1084, 1089, 1100, 0,
1308 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001309 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001310 /* 114 - 3840x2160@48Hz 16:9 */
1311 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 5116,
1312 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1313 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001314 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001315 /* 115 - 4096x2160@48Hz 256:135 */
1316 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 5116,
1317 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1318 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001319 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001320 /* 116 - 3840x2160@48Hz 64:27 */
1321 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 5116,
1322 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1323 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001324 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001325 /* 117 - 3840x2160@100Hz 16:9 */
1326 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4896,
1327 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1328 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001329 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001330 /* 118 - 3840x2160@120Hz 16:9 */
1331 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4016,
1332 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1333 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001334 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001335 /* 119 - 3840x2160@100Hz 64:27 */
1336 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4896,
1337 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1338 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001339 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001340 /* 120 - 3840x2160@120Hz 64:27 */
1341 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4016,
1342 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1343 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001344 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001345 /* 121 - 5120x2160@24Hz 64:27 */
1346 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 7116,
1347 7204, 7500, 0, 2160, 2168, 2178, 2200, 0,
1348 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001349 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001350 /* 122 - 5120x2160@25Hz 64:27 */
1351 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 6816,
1352 6904, 7200, 0, 2160, 2168, 2178, 2200, 0,
1353 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001354 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001355 /* 123 - 5120x2160@30Hz 64:27 */
1356 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 5784,
1357 5872, 6000, 0, 2160, 2168, 2178, 2200, 0,
1358 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001359 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001360 /* 124 - 5120x2160@48Hz 64:27 */
1361 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 5866,
1362 5954, 6250, 0, 2160, 2168, 2178, 2475, 0,
1363 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001364 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001365 /* 125 - 5120x2160@50Hz 64:27 */
1366 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 6216,
1367 6304, 6600, 0, 2160, 2168, 2178, 2250, 0,
1368 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001369 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001370 /* 126 - 5120x2160@60Hz 64:27 */
1371 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 5284,
1372 5372, 5500, 0, 2160, 2168, 2178, 2250, 0,
1373 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001374 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001375 /* 127 - 5120x2160@100Hz 64:27 */
1376 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 1485000, 5120, 6216,
1377 6304, 6600, 0, 2160, 2168, 2178, 2250, 0,
1378 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001379 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Thierry Redinga6b21832012-11-23 15:01:42 +01001380};
1381
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001382/*
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001383 * From CEA/CTA-861 spec.
1384 *
1385 * Do not access directly, instead always use cea_mode_for_vic().
1386 */
1387static const struct drm_display_mode edid_cea_modes_193[] = {
1388 /* 193 - 5120x2160@120Hz 64:27 */
1389 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 1485000, 5120, 5284,
1390 5372, 5500, 0, 2160, 2168, 2178, 2250, 0,
1391 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001392 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001393 /* 194 - 7680x4320@24Hz 16:9 */
1394 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10232,
1395 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1396 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001397 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001398 /* 195 - 7680x4320@25Hz 16:9 */
1399 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10032,
1400 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1401 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001402 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001403 /* 196 - 7680x4320@30Hz 16:9 */
1404 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 8232,
1405 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1406 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001407 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001408 /* 197 - 7680x4320@48Hz 16:9 */
1409 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10232,
1410 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1411 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001412 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001413 /* 198 - 7680x4320@50Hz 16:9 */
1414 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10032,
1415 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1416 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001417 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001418 /* 199 - 7680x4320@60Hz 16:9 */
1419 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 8232,
1420 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1421 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001422 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001423 /* 200 - 7680x4320@100Hz 16:9 */
1424 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 9792,
1425 9968, 10560, 0, 4320, 4336, 4356, 4500, 0,
1426 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001427 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001428 /* 201 - 7680x4320@120Hz 16:9 */
1429 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 8032,
1430 8208, 8800, 0, 4320, 4336, 4356, 4500, 0,
1431 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001432 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001433 /* 202 - 7680x4320@24Hz 64:27 */
1434 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10232,
1435 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1436 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001437 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001438 /* 203 - 7680x4320@25Hz 64:27 */
1439 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10032,
1440 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1441 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001442 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001443 /* 204 - 7680x4320@30Hz 64:27 */
1444 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 8232,
1445 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1446 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001447 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001448 /* 205 - 7680x4320@48Hz 64:27 */
1449 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10232,
1450 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1451 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001452 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001453 /* 206 - 7680x4320@50Hz 64:27 */
1454 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10032,
1455 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1456 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001457 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001458 /* 207 - 7680x4320@60Hz 64:27 */
1459 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 8232,
1460 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1461 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001462 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001463 /* 208 - 7680x4320@100Hz 64:27 */
1464 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 9792,
1465 9968, 10560, 0, 4320, 4336, 4356, 4500, 0,
1466 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001467 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001468 /* 209 - 7680x4320@120Hz 64:27 */
1469 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 8032,
1470 8208, 8800, 0, 4320, 4336, 4356, 4500, 0,
1471 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001472 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001473 /* 210 - 10240x4320@24Hz 64:27 */
1474 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 11732,
1475 11908, 12500, 0, 4320, 4336, 4356, 4950, 0,
1476 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001477 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001478 /* 211 - 10240x4320@25Hz 64:27 */
1479 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 12732,
1480 12908, 13500, 0, 4320, 4336, 4356, 4400, 0,
1481 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001482 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001483 /* 212 - 10240x4320@30Hz 64:27 */
1484 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 10528,
1485 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1486 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001487 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001488 /* 213 - 10240x4320@48Hz 64:27 */
1489 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 11732,
1490 11908, 12500, 0, 4320, 4336, 4356, 4950, 0,
1491 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001492 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001493 /* 214 - 10240x4320@50Hz 64:27 */
1494 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 12732,
1495 12908, 13500, 0, 4320, 4336, 4356, 4400, 0,
1496 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001497 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001498 /* 215 - 10240x4320@60Hz 64:27 */
1499 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 10528,
1500 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1501 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001502 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001503 /* 216 - 10240x4320@100Hz 64:27 */
1504 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 5940000, 10240, 12432,
1505 12608, 13200, 0, 4320, 4336, 4356, 4500, 0,
1506 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001507 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001508 /* 217 - 10240x4320@120Hz 64:27 */
1509 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 5940000, 10240, 10528,
1510 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1511 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001512 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001513 /* 218 - 4096x2160@100Hz 256:135 */
1514 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 1188000, 4096, 4896,
1515 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1516 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001517 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001518 /* 219 - 4096x2160@120Hz 256:135 */
1519 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 1188000, 4096, 4184,
1520 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1521 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001522 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001523};
1524
1525/*
Jani Nikulad9278b42016-01-08 13:21:51 +02001526 * HDMI 1.4 4k modes. Index using the VIC.
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001527 */
1528static const struct drm_display_mode edid_4k_modes[] = {
Jani Nikulad9278b42016-01-08 13:21:51 +02001529 /* 0 - dummy, VICs start at 1 */
1530 { },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001531 /* 1 - 3840x2160@30Hz */
1532 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1533 3840, 4016, 4104, 4400, 0,
1534 2160, 2168, 2178, 2250, 0,
1535 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001536 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001537 /* 2 - 3840x2160@25Hz */
1538 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1539 3840, 4896, 4984, 5280, 0,
1540 2160, 2168, 2178, 2250, 0,
1541 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001542 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001543 /* 3 - 3840x2160@24Hz */
1544 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1545 3840, 5116, 5204, 5500, 0,
1546 2160, 2168, 2178, 2250, 0,
1547 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001548 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001549 /* 4 - 4096x2160@24Hz (SMPTE) */
1550 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000,
1551 4096, 5116, 5204, 5500, 0,
1552 2160, 2168, 2178, 2250, 0,
1553 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001554 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001555};
1556
Adam Jackson61e57a82010-03-29 21:43:18 +00001557/*** DDC fetch and block validation ***/
Dave Airlief453ba02008-11-07 14:05:41 -08001558
Adam Jackson083ae052009-09-23 17:30:45 -04001559static const u8 edid_header[] = {
1560 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
1561};
Dave Airlief453ba02008-11-07 14:05:41 -08001562
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001563/**
1564 * drm_edid_header_is_valid - sanity check the header of the base EDID block
1565 * @raw_edid: pointer to raw base EDID block
1566 *
1567 * Sanity check the header of the base EDID block.
1568 *
1569 * Return: 8 if the header is perfect, down to 0 if it's totally wrong.
Thomas Reim051963d2011-07-29 14:28:57 +00001570 */
1571int drm_edid_header_is_valid(const u8 *raw_edid)
1572{
1573 int i, score = 0;
1574
1575 for (i = 0; i < sizeof(edid_header); i++)
1576 if (raw_edid[i] == edid_header[i])
1577 score++;
1578
1579 return score;
1580}
1581EXPORT_SYMBOL(drm_edid_header_is_valid);
1582
Adam Jackson47819ba2012-05-30 16:42:39 -04001583static int edid_fixup __read_mostly = 6;
1584module_param_named(edid_fixup, edid_fixup, int, 0400);
1585MODULE_PARM_DESC(edid_fixup,
1586 "Minimum number of valid EDID header bytes (0-8, default 6)");
Thomas Reim051963d2011-07-29 14:28:57 +00001587
Jani Nikula43d16d82021-03-29 16:37:15 +03001588static int validate_displayid(const u8 *displayid, int length, int idx);
Dave Airlieda9df2f2014-12-11 10:12:57 +10001589
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001590static int drm_edid_block_checksum(const u8 *raw_edid)
1591{
1592 int i;
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001593 u8 csum = 0, crc = 0;
1594
1595 for (i = 0; i < EDID_LENGTH - 1; i++)
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001596 csum += raw_edid[i];
1597
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001598 crc = 0x100 - csum;
1599
1600 return crc;
1601}
1602
1603static bool drm_edid_block_checksum_diff(const u8 *raw_edid, u8 real_checksum)
1604{
1605 if (raw_edid[EDID_LENGTH - 1] != real_checksum)
1606 return true;
1607 else
1608 return false;
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001609}
1610
Stefan Brünsd6885d62014-11-30 19:57:41 +01001611static bool drm_edid_is_zero(const u8 *in_edid, int length)
1612{
1613 if (memchr_inv(in_edid, 0, length))
1614 return false;
1615
1616 return true;
1617}
1618
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001619/**
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301620 * drm_edid_are_equal - compare two edid blobs.
1621 * @edid1: pointer to first blob
1622 * @edid2: pointer to second blob
1623 * This helper can be used during probing to determine if
1624 * edid had changed.
1625 */
1626bool drm_edid_are_equal(const struct edid *edid1, const struct edid *edid2)
1627{
1628 int edid1_len, edid2_len;
1629 bool edid1_present = edid1 != NULL;
1630 bool edid2_present = edid2 != NULL;
1631
1632 if (edid1_present != edid2_present)
1633 return false;
1634
1635 if (edid1) {
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301636 edid1_len = EDID_LENGTH * (1 + edid1->extensions);
1637 edid2_len = EDID_LENGTH * (1 + edid2->extensions);
1638
1639 if (edid1_len != edid2_len)
1640 return false;
1641
1642 if (memcmp(edid1, edid2, edid1_len))
1643 return false;
1644 }
1645
1646 return true;
1647}
1648EXPORT_SYMBOL(drm_edid_are_equal);
1649
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301650/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001651 * drm_edid_block_valid - Sanity check the EDID block (base or extension)
1652 * @raw_edid: pointer to raw EDID block
1653 * @block: type of block to validate (0 for base, extension otherwise)
1654 * @print_bad_edid: if true, dump bad EDID blocks to the console
Todd Previte6ba2bd32015-04-21 11:09:41 -07001655 * @edid_corrupt: if true, the header or checksum is invalid
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001656 *
1657 * Validate a base or extension EDID block and optionally dump bad blocks to
1658 * the console.
1659 *
1660 * Return: True if the block is valid, false otherwise.
Dave Airlief453ba02008-11-07 14:05:41 -08001661 */
Todd Previte6ba2bd32015-04-21 11:09:41 -07001662bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid,
1663 bool *edid_corrupt)
Dave Airlief453ba02008-11-07 14:05:41 -08001664{
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001665 u8 csum;
Adam Jackson61e57a82010-03-29 21:43:18 +00001666 struct edid *edid = (struct edid *)raw_edid;
Dave Airlief453ba02008-11-07 14:05:41 -08001667
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001668 if (WARN_ON(!raw_edid))
1669 return false;
1670
Adam Jackson47819ba2012-05-30 16:42:39 -04001671 if (edid_fixup > 8 || edid_fixup < 0)
1672 edid_fixup = 6;
1673
Adam Jacksonf89ec8a2012-04-16 10:40:08 -04001674 if (block == 0) {
Thomas Reim051963d2011-07-29 14:28:57 +00001675 int score = drm_edid_header_is_valid(raw_edid);
Suraj Upadhyay948de8422020-07-02 18:53:32 +05301676
Todd Previte6ba2bd32015-04-21 11:09:41 -07001677 if (score == 8) {
1678 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001679 *edid_corrupt = false;
Todd Previte6ba2bd32015-04-21 11:09:41 -07001680 } else if (score >= edid_fixup) {
1681 /* Displayport Link CTS Core 1.2 rev1.1 test 4.2.2.6
1682 * The corrupt flag needs to be set here otherwise, the
1683 * fix-up code here will correct the problem, the
1684 * checksum is correct and the test fails
1685 */
1686 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001687 *edid_corrupt = true;
Adam Jackson61e57a82010-03-29 21:43:18 +00001688 DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
1689 memcpy(raw_edid, edid_header, sizeof(edid_header));
1690 } else {
Todd Previte6ba2bd32015-04-21 11:09:41 -07001691 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001692 *edid_corrupt = true;
Adam Jackson61e57a82010-03-29 21:43:18 +00001693 goto bad;
1694 }
1695 }
Dave Airlief453ba02008-11-07 14:05:41 -08001696
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001697 csum = drm_edid_block_checksum(raw_edid);
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001698 if (drm_edid_block_checksum_diff(raw_edid, csum)) {
Todd Previte6ba2bd32015-04-21 11:09:41 -07001699 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001700 *edid_corrupt = true;
Todd Previte6ba2bd32015-04-21 11:09:41 -07001701
Adam Jackson4a638b42010-05-25 16:33:09 -04001702 /* allow CEA to slide through, switches mangle this */
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001703 if (raw_edid[0] == CEA_EXT) {
1704 DRM_DEBUG("EDID checksum is invalid, remainder is %d\n", csum);
1705 DRM_DEBUG("Assuming a KVM switch modified the CEA block but left the original checksum\n");
1706 } else {
1707 if (print_bad_edid)
Chris Wilson813a7872017-02-10 19:59:13 +00001708 DRM_NOTE("EDID checksum is invalid, remainder is %d\n", csum);
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001709
Adam Jackson4a638b42010-05-25 16:33:09 -04001710 goto bad;
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001711 }
Dave Airlief453ba02008-11-07 14:05:41 -08001712 }
1713
Adam Jackson61e57a82010-03-29 21:43:18 +00001714 /* per-block-type checks */
1715 switch (raw_edid[0]) {
1716 case 0: /* base */
1717 if (edid->version != 1) {
Chris Wilson813a7872017-02-10 19:59:13 +00001718 DRM_NOTE("EDID has major version %d, instead of 1\n", edid->version);
Adam Jackson61e57a82010-03-29 21:43:18 +00001719 goto bad;
1720 }
Adam Jackson862b89c2009-11-23 14:23:06 -05001721
Adam Jackson61e57a82010-03-29 21:43:18 +00001722 if (edid->revision > 4)
1723 DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
1724 break;
1725
1726 default:
1727 break;
1728 }
Adam Jackson47ee4ccf2009-11-23 14:23:05 -05001729
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001730 return true;
Dave Airlief453ba02008-11-07 14:05:41 -08001731
1732bad:
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001733 if (print_bad_edid) {
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001734 if (drm_edid_is_zero(raw_edid, EDID_LENGTH)) {
Joe Perches499447d2017-02-28 04:55:53 -08001735 pr_notice("EDID block is all zeroes\n");
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001736 } else {
Joe Perches499447d2017-02-28 04:55:53 -08001737 pr_notice("Raw EDID:\n");
Chris Wilson813a7872017-02-10 19:59:13 +00001738 print_hex_dump(KERN_NOTICE,
1739 " \t", DUMP_PREFIX_NONE, 16, 1,
1740 raw_edid, EDID_LENGTH, false);
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001741 }
Dave Airlief453ba02008-11-07 14:05:41 -08001742 }
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001743 return false;
Dave Airlief453ba02008-11-07 14:05:41 -08001744}
Carsten Emdeda0df922012-03-18 22:37:33 +01001745EXPORT_SYMBOL(drm_edid_block_valid);
Adam Jackson61e57a82010-03-29 21:43:18 +00001746
1747/**
1748 * drm_edid_is_valid - sanity check EDID data
1749 * @edid: EDID data
1750 *
1751 * Sanity-check an entire EDID record (including extensions)
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001752 *
1753 * Return: True if the EDID data is valid, false otherwise.
Adam Jackson61e57a82010-03-29 21:43:18 +00001754 */
1755bool drm_edid_is_valid(struct edid *edid)
1756{
1757 int i;
1758 u8 *raw = (u8 *)edid;
1759
1760 if (!edid)
1761 return false;
1762
1763 for (i = 0; i <= edid->extensions; i++)
Todd Previte6ba2bd32015-04-21 11:09:41 -07001764 if (!drm_edid_block_valid(raw + i * EDID_LENGTH, i, true, NULL))
Adam Jackson61e57a82010-03-29 21:43:18 +00001765 return false;
1766
1767 return true;
1768}
Alex Deucher3c537882010-02-05 04:21:19 -05001769EXPORT_SYMBOL(drm_edid_is_valid);
Dave Airlief453ba02008-11-07 14:05:41 -08001770
Adam Jackson61e57a82010-03-29 21:43:18 +00001771#define DDC_SEGMENT_ADDR 0x30
1772/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001773 * drm_do_probe_ddc_edid() - get EDID information via I2C
Thierry Reding7c58e872014-12-03 16:52:18 +01001774 * @data: I2C device adapter
Daniel Vetterfc668112014-01-21 12:02:26 +01001775 * @buf: EDID data buffer to be filled
1776 * @block: 128 byte EDID block to start fetching from
1777 * @len: EDID data buffer length to fetch
1778 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001779 * Try to fetch EDID information by calling I2C driver functions.
Daniel Vetterfc668112014-01-21 12:02:26 +01001780 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001781 * Return: 0 on success or -1 on failure.
Adam Jackson61e57a82010-03-29 21:43:18 +00001782 */
1783static int
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001784drm_do_probe_ddc_edid(void *data, u8 *buf, unsigned int block, size_t len)
Adam Jackson61e57a82010-03-29 21:43:18 +00001785{
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001786 struct i2c_adapter *adapter = data;
Adam Jackson61e57a82010-03-29 21:43:18 +00001787 unsigned char start = block * EDID_LENGTH;
Shirish Scd004b32012-08-30 07:04:06 +00001788 unsigned char segment = block >> 1;
1789 unsigned char xfers = segment ? 3 : 2;
Chris Wilson4819d2e2011-03-15 11:04:41 +00001790 int ret, retries = 5;
Adam Jackson61e57a82010-03-29 21:43:18 +00001791
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001792 /*
1793 * The core I2C driver will automatically retry the transfer if the
Chris Wilson4819d2e2011-03-15 11:04:41 +00001794 * adapter reports EAGAIN. However, we find that bit-banging transfers
1795 * are susceptible to errors under a heavily loaded machine and
1796 * generate spurious NAKs and timeouts. Retrying the transfer
1797 * of the individual block a few times seems to overcome this.
1798 */
1799 do {
1800 struct i2c_msg msgs[] = {
1801 {
Shirish Scd004b32012-08-30 07:04:06 +00001802 .addr = DDC_SEGMENT_ADDR,
1803 .flags = 0,
1804 .len = 1,
1805 .buf = &segment,
1806 }, {
Chris Wilson4819d2e2011-03-15 11:04:41 +00001807 .addr = DDC_ADDR,
1808 .flags = 0,
1809 .len = 1,
1810 .buf = &start,
1811 }, {
1812 .addr = DDC_ADDR,
1813 .flags = I2C_M_RD,
1814 .len = len,
1815 .buf = buf,
1816 }
1817 };
Shirish Scd004b32012-08-30 07:04:06 +00001818
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001819 /*
1820 * Avoid sending the segment addr to not upset non-compliant
1821 * DDC monitors.
1822 */
Shirish Scd004b32012-08-30 07:04:06 +00001823 ret = i2c_transfer(adapter, &msgs[3 - xfers], xfers);
1824
Eugeni Dodonov9292f372012-01-05 09:34:28 -02001825 if (ret == -ENXIO) {
1826 DRM_DEBUG_KMS("drm: skipping non-existent adapter %s\n",
1827 adapter->name);
1828 break;
1829 }
Shirish Scd004b32012-08-30 07:04:06 +00001830 } while (ret != xfers && --retries);
Adam Jackson61e57a82010-03-29 21:43:18 +00001831
Shirish Scd004b32012-08-30 07:04:06 +00001832 return ret == xfers ? 0 : -1;
Adam Jackson61e57a82010-03-29 21:43:18 +00001833}
1834
Chris Wilson14544d02016-10-24 12:38:21 +01001835static void connector_bad_edid(struct drm_connector *connector,
1836 u8 *edid, int num_blocks)
1837{
1838 int i;
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001839 u8 num_of_ext = edid[0x7e];
1840
1841 /* Calculate real checksum for the last edid extension block data */
1842 connector->real_edid_checksum =
1843 drm_edid_block_checksum(edid + num_of_ext * EDID_LENGTH);
Chris Wilson14544d02016-10-24 12:38:21 +01001844
Jani Nikulaf0a8f532019-10-01 17:06:14 +03001845 if (connector->bad_edid_counter++ && !drm_debug_enabled(DRM_UT_KMS))
Chris Wilson14544d02016-10-24 12:38:21 +01001846 return;
1847
Chris Wilsonfa3bfa32020-10-29 21:30:42 +00001848 drm_dbg_kms(connector->dev, "%s: EDID is invalid:\n", connector->name);
Chris Wilson14544d02016-10-24 12:38:21 +01001849 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
Chris Wilsonfa3bfa32020-10-29 21:30:42 +00001860 print_hex_dump(KERN_DEBUG,
Chris Wilson14544d02016-10-24 12:38:21 +01001861 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{
Thomas Zimmermann36b73b02021-01-18 14:14:15 +01002079 struct drm_device *dev = connector->dev;
2080 struct pci_dev *pdev = to_pci_dev(dev->dev);
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +01002081 struct edid *edid;
2082
Thomas Zimmermann36b73b02021-01-18 14:14:15 +01002083 if (drm_WARN_ON_ONCE(dev, !dev_is_pci(dev->dev)))
2084 return NULL;
2085
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +01002086 vga_switcheroo_lock_ddc(pdev);
2087 edid = drm_get_edid(connector, adapter);
2088 vga_switcheroo_unlock_ddc(pdev);
2089
2090 return edid;
2091}
2092EXPORT_SYMBOL(drm_get_edid_switcheroo);
2093
2094/**
Jani Nikula51f8da52013-09-27 15:08:27 +03002095 * drm_edid_duplicate - duplicate an EDID and the extensions
2096 * @edid: EDID to duplicate
2097 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002098 * Return: Pointer to duplicated EDID or NULL on allocation failure.
Jani Nikula51f8da52013-09-27 15:08:27 +03002099 */
2100struct edid *drm_edid_duplicate(const struct edid *edid)
2101{
2102 return kmemdup(edid, (edid->extensions + 1) * EDID_LENGTH, GFP_KERNEL);
2103}
2104EXPORT_SYMBOL(drm_edid_duplicate);
2105
Adam Jackson61e57a82010-03-29 21:43:18 +00002106/*** EDID parsing ***/
2107
Dave Airlief453ba02008-11-07 14:05:41 -08002108/**
2109 * edid_vendor - match a string against EDID's obfuscated vendor field
2110 * @edid: EDID to match
2111 * @vendor: vendor string
2112 *
2113 * Returns true if @vendor is in @edid, false otherwise
2114 */
Keith Packard170178f2017-12-13 00:44:26 -08002115static bool edid_vendor(const struct edid *edid, const char *vendor)
Dave Airlief453ba02008-11-07 14:05:41 -08002116{
2117 char edid_vendor[3];
2118
2119 edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@';
2120 edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) |
2121 ((edid->mfg_id[1] & 0xe0) >> 5)) + '@';
Dave Airlie16456c82009-04-03 09:10:33 +10002122 edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@';
Dave Airlief453ba02008-11-07 14:05:41 -08002123
2124 return !strncmp(edid_vendor, vendor, 3);
2125}
2126
2127/**
2128 * edid_get_quirks - return quirk flags for a given EDID
2129 * @edid: EDID to process
2130 *
2131 * This tells subsequent routines what fixes they need to apply.
2132 */
Keith Packard170178f2017-12-13 00:44:26 -08002133static u32 edid_get_quirks(const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08002134{
Jani Nikula23c4cfb2016-12-28 13:06:26 +02002135 const struct edid_quirk *quirk;
Dave Airlief453ba02008-11-07 14:05:41 -08002136 int i;
2137
2138 for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
2139 quirk = &edid_quirk_list[i];
2140
2141 if (edid_vendor(edid, quirk->vendor) &&
2142 (EDID_PRODUCT_ID(edid) == quirk->product_id))
2143 return quirk->quirks;
2144 }
2145
2146 return 0;
2147}
2148
2149#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
Alex Deucher339d2022013-08-15 11:42:14 -04002150#define MODE_REFRESH_DIFF(c,t) (abs((c) - (t)))
Dave Airlief453ba02008-11-07 14:05:41 -08002151
Dave Airlief453ba02008-11-07 14:05:41 -08002152/**
2153 * edid_fixup_preferred - set preferred modes based on quirk list
2154 * @connector: has mode list to fix up
2155 * @quirks: quirks list
2156 *
2157 * Walk the mode list for @connector, clearing the preferred status
2158 * on existing modes and setting it anew for the right mode ala @quirks.
2159 */
2160static void edid_fixup_preferred(struct drm_connector *connector,
2161 u32 quirks)
2162{
2163 struct drm_display_mode *t, *cur_mode, *preferred_mode;
Dave Airlief8906072008-12-18 16:59:02 +10002164 int target_refresh = 0;
Alex Deucher339d2022013-08-15 11:42:14 -04002165 int cur_vrefresh, preferred_vrefresh;
Dave Airlief453ba02008-11-07 14:05:41 -08002166
2167 if (list_empty(&connector->probed_modes))
2168 return;
2169
2170 if (quirks & EDID_QUIRK_PREFER_LARGE_60)
2171 target_refresh = 60;
2172 if (quirks & EDID_QUIRK_PREFER_LARGE_75)
2173 target_refresh = 75;
2174
2175 preferred_mode = list_first_entry(&connector->probed_modes,
2176 struct drm_display_mode, head);
2177
2178 list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
2179 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
2180
2181 if (cur_mode == preferred_mode)
2182 continue;
2183
2184 /* Largest mode is preferred */
2185 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
2186 preferred_mode = cur_mode;
2187
Ville Syrjälä04256622020-04-28 20:19:27 +03002188 cur_vrefresh = drm_mode_vrefresh(cur_mode);
2189 preferred_vrefresh = drm_mode_vrefresh(preferred_mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002190 /* At a given size, try to get closest to target refresh */
2191 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
Alex Deucher339d2022013-08-15 11:42:14 -04002192 MODE_REFRESH_DIFF(cur_vrefresh, target_refresh) <
2193 MODE_REFRESH_DIFF(preferred_vrefresh, target_refresh)) {
Dave Airlief453ba02008-11-07 14:05:41 -08002194 preferred_mode = cur_mode;
2195 }
2196 }
2197
2198 preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
2199}
2200
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002201static bool
2202mode_is_rb(const struct drm_display_mode *mode)
2203{
2204 return (mode->htotal - mode->hdisplay == 160) &&
2205 (mode->hsync_end - mode->hdisplay == 80) &&
2206 (mode->hsync_end - mode->hsync_start == 32) &&
2207 (mode->vsync_start - mode->vdisplay == 3);
2208}
2209
Adam Jackson33c75312012-04-13 16:33:29 -04002210/*
2211 * drm_mode_find_dmt - Create a copy of a mode if present in DMT
2212 * @dev: Device to duplicate against
2213 * @hsize: Mode width
2214 * @vsize: Mode height
2215 * @fresh: Mode refresh rate
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002216 * @rb: Mode reduced-blanking-ness
Adam Jackson33c75312012-04-13 16:33:29 -04002217 *
2218 * Walk the DMT mode list looking for a match for the given parameters.
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002219 *
2220 * Return: A newly allocated copy of the mode, or NULL if not found.
Adam Jackson33c75312012-04-13 16:33:29 -04002221 */
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002222struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002223 int hsize, int vsize, int fresh,
2224 bool rb)
Zhao Yakui559ee212009-09-03 09:33:47 +08002225{
Adam Jackson07a5e632009-12-03 17:44:38 -05002226 int i;
Zhao Yakui559ee212009-09-03 09:33:47 +08002227
Thierry Redinga6b21832012-11-23 15:01:42 +01002228 for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002229 const struct drm_display_mode *ptr = &drm_dmt_modes[i];
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302230
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002231 if (hsize != ptr->hdisplay)
2232 continue;
2233 if (vsize != ptr->vdisplay)
2234 continue;
2235 if (fresh != drm_mode_vrefresh(ptr))
2236 continue;
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002237 if (rb != mode_is_rb(ptr))
2238 continue;
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002239
2240 return drm_mode_duplicate(dev, ptr);
Zhao Yakui559ee212009-09-03 09:33:47 +08002241 }
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002242
2243 return NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +08002244}
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002245EXPORT_SYMBOL(drm_mode_find_dmt);
Adam Jackson23425ca2009-09-23 17:30:58 -04002246
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002247static bool is_display_descriptor(const u8 d[18], u8 tag)
2248{
2249 return d[0] == 0x00 && d[1] == 0x00 &&
2250 d[2] == 0x00 && d[3] == tag;
2251}
2252
Ville Syrjäläf447dd12020-01-24 22:02:26 +02002253static bool is_detailed_timing_descriptor(const u8 d[18])
2254{
2255 return d[0] != 0x00 || d[1] != 0x00;
2256}
2257
Adam Jacksond1ff6402010-03-29 21:43:26 +00002258typedef void detailed_cb(struct detailed_timing *timing, void *closure);
2259
2260static void
Adam Jackson4d76a222010-08-03 14:38:17 -04002261cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
2262{
Ville Syrjälä7304b982020-01-24 22:02:24 +02002263 int i, n;
Christian Schmidt4966b2a2011-12-19 20:03:43 +01002264 u8 d = ext[0x02];
Adam Jackson4d76a222010-08-03 14:38:17 -04002265 u8 *det_base = ext + d;
2266
Ville Syrjälä7304b982020-01-24 22:02:24 +02002267 if (d < 4 || d > 127)
2268 return;
2269
Christian Schmidt4966b2a2011-12-19 20:03:43 +01002270 n = (127 - d) / 18;
Adam Jackson4d76a222010-08-03 14:38:17 -04002271 for (i = 0; i < n; i++)
2272 cb((struct detailed_timing *)(det_base + 18 * i), closure);
2273}
2274
2275static void
Adam Jacksoncbba98f2010-08-03 14:38:18 -04002276vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
2277{
2278 unsigned int i, n = min((int)ext[0x02], 6);
2279 u8 *det_base = ext + 5;
2280
2281 if (ext[0x01] != 1)
2282 return; /* unknown version */
2283
2284 for (i = 0; i < n; i++)
2285 cb((struct detailed_timing *)(det_base + 18 * i), closure);
2286}
2287
2288static void
Adam Jacksond1ff6402010-03-29 21:43:26 +00002289drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure)
2290{
2291 int i;
2292 struct edid *edid = (struct edid *)raw_edid;
2293
2294 if (edid == NULL)
2295 return;
2296
2297 for (i = 0; i < EDID_DETAILED_TIMINGS; i++)
2298 cb(&(edid->detailed_timings[i]), closure);
2299
Adam Jackson4d76a222010-08-03 14:38:17 -04002300 for (i = 1; i <= raw_edid[0x7e]; i++) {
2301 u8 *ext = raw_edid + (i * EDID_LENGTH);
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302302
Adam Jackson4d76a222010-08-03 14:38:17 -04002303 switch (*ext) {
2304 case CEA_EXT:
2305 cea_for_each_detailed_block(ext, cb, closure);
2306 break;
Adam Jacksoncbba98f2010-08-03 14:38:18 -04002307 case VTB_EXT:
2308 vtb_for_each_detailed_block(ext, cb, closure);
2309 break;
Adam Jackson4d76a222010-08-03 14:38:17 -04002310 default:
2311 break;
2312 }
2313 }
Adam Jacksond1ff6402010-03-29 21:43:26 +00002314}
2315
2316static void
2317is_rb(struct detailed_timing *t, void *data)
2318{
2319 u8 *r = (u8 *)t;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002320
2321 if (!is_display_descriptor(r, EDID_DETAIL_MONITOR_RANGE))
2322 return;
2323
2324 if (r[15] & 0x10)
2325 *(bool *)data = true;
Adam Jacksond1ff6402010-03-29 21:43:26 +00002326}
2327
2328/* EDID 1.4 defines this explicitly. For EDID 1.3, we guess, badly. */
2329static bool
2330drm_monitor_supports_rb(struct edid *edid)
2331{
2332 if (edid->revision >= 4) {
Daniel Vetterb196a492012-06-19 11:33:06 +02002333 bool ret = false;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302334
Adam Jacksond1ff6402010-03-29 21:43:26 +00002335 drm_for_each_detailed_block((u8 *)edid, is_rb, &ret);
2336 return ret;
2337 }
2338
2339 return ((edid->input & DRM_EDID_INPUT_DIGITAL) != 0);
2340}
2341
Adam Jackson7a374352010-03-29 21:43:30 +00002342static void
2343find_gtf2(struct detailed_timing *t, void *data)
2344{
2345 u8 *r = (u8 *)t;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002346
2347 if (!is_display_descriptor(r, EDID_DETAIL_MONITOR_RANGE))
2348 return;
2349
2350 if (r[10] == 0x02)
Adam Jackson7a374352010-03-29 21:43:30 +00002351 *(u8 **)data = r;
2352}
2353
2354/* Secondary GTF curve kicks in above some break frequency */
2355static int
2356drm_gtf2_hbreak(struct edid *edid)
2357{
2358 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302359
Adam Jackson7a374352010-03-29 21:43:30 +00002360 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2361 return r ? (r[12] * 2) : 0;
2362}
2363
2364static int
2365drm_gtf2_2c(struct edid *edid)
2366{
2367 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302368
Adam Jackson7a374352010-03-29 21:43:30 +00002369 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2370 return r ? r[13] : 0;
2371}
2372
2373static int
2374drm_gtf2_m(struct edid *edid)
2375{
2376 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302377
Adam Jackson7a374352010-03-29 21:43:30 +00002378 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2379 return r ? (r[15] << 8) + r[14] : 0;
2380}
2381
2382static int
2383drm_gtf2_k(struct edid *edid)
2384{
2385 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302386
Adam Jackson7a374352010-03-29 21:43:30 +00002387 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2388 return r ? r[16] : 0;
2389}
2390
2391static int
2392drm_gtf2_2j(struct edid *edid)
2393{
2394 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302395
Adam Jackson7a374352010-03-29 21:43:30 +00002396 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2397 return r ? r[17] : 0;
2398}
2399
2400/**
2401 * standard_timing_level - get std. timing level(CVT/GTF/DMT)
2402 * @edid: EDID block to scan
2403 */
2404static int standard_timing_level(struct edid *edid)
2405{
2406 if (edid->revision >= 2) {
2407 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
2408 return LEVEL_CVT;
2409 if (drm_gtf2_hbreak(edid))
2410 return LEVEL_GTF2;
Lee Shawn Cbfef04a2019-10-07 21:51:27 +08002411 if (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF)
2412 return LEVEL_GTF;
Adam Jackson7a374352010-03-29 21:43:30 +00002413 }
2414 return LEVEL_DMT;
2415}
2416
Adam Jackson23425ca2009-09-23 17:30:58 -04002417/*
2418 * 0 is reserved. The spec says 0x01 fill for unused timings. Some old
2419 * monitors fill with ascii space (0x20) instead.
2420 */
2421static int
2422bad_std_timing(u8 a, u8 b)
2423{
2424 return (a == 0x00 && b == 0x00) ||
2425 (a == 0x01 && b == 0x01) ||
2426 (a == 0x20 && b == 0x20);
2427}
2428
Ville Syrjälä58911c22020-04-28 20:19:25 +03002429static int drm_mode_hsync(const struct drm_display_mode *mode)
2430{
2431 if (mode->htotal <= 0)
2432 return 0;
2433
2434 return DIV_ROUND_CLOSEST(mode->clock, mode->htotal);
2435}
2436
Dave Airlief453ba02008-11-07 14:05:41 -08002437/**
2438 * drm_mode_std - convert standard mode info (width, height, refresh) into mode
Daniel Vetterfc668112014-01-21 12:02:26 +01002439 * @connector: connector of for the EDID block
2440 * @edid: EDID block to scan
Dave Airlief453ba02008-11-07 14:05:41 -08002441 * @t: standard timing params
2442 *
2443 * Take the standard timing params (in this case width, aspect, and refresh)
Zhao Yakui5c612592009-06-22 13:17:10 +08002444 * and convert them into a real mode using CVT/GTF/DMT.
Dave Airlief453ba02008-11-07 14:05:41 -08002445 */
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002446static struct drm_display_mode *
Adam Jackson7a374352010-03-29 21:43:30 +00002447drm_mode_std(struct drm_connector *connector, struct edid *edid,
Thierry Reding464fdec2014-04-29 11:44:33 +02002448 struct std_timing *t)
Dave Airlief453ba02008-11-07 14:05:41 -08002449{
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002450 struct drm_device *dev = connector->dev;
2451 struct drm_display_mode *m, *mode = NULL;
Zhao Yakui5c612592009-06-22 13:17:10 +08002452 int hsize, vsize;
2453 int vrefresh_rate;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002454 unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
2455 >> EDID_TIMING_ASPECT_SHIFT;
Zhao Yakui5c612592009-06-22 13:17:10 +08002456 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
2457 >> EDID_TIMING_VFREQ_SHIFT;
Adam Jackson7a374352010-03-29 21:43:30 +00002458 int timing_level = standard_timing_level(edid);
Dave Airlief453ba02008-11-07 14:05:41 -08002459
Adam Jackson23425ca2009-09-23 17:30:58 -04002460 if (bad_std_timing(t->hsize, t->vfreq_aspect))
2461 return NULL;
2462
Zhao Yakui5c612592009-06-22 13:17:10 +08002463 /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
2464 hsize = t->hsize * 8 + 248;
2465 /* vrefresh_rate = vfreq + 60 */
2466 vrefresh_rate = vfreq + 60;
2467 /* the vdisplay is calculated based on the aspect ratio */
Adam Jacksonf066a172009-09-23 17:31:21 -04002468 if (aspect_ratio == 0) {
Thierry Reding464fdec2014-04-29 11:44:33 +02002469 if (edid->revision < 3)
Adam Jacksonf066a172009-09-23 17:31:21 -04002470 vsize = hsize;
2471 else
2472 vsize = (hsize * 10) / 16;
2473 } else if (aspect_ratio == 1)
Dave Airlief453ba02008-11-07 14:05:41 -08002474 vsize = (hsize * 3) / 4;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002475 else if (aspect_ratio == 2)
Dave Airlief453ba02008-11-07 14:05:41 -08002476 vsize = (hsize * 4) / 5;
2477 else
2478 vsize = (hsize * 9) / 16;
Adam Jacksona0910c82010-03-29 21:43:28 +00002479
2480 /* HDTV hack, part 1 */
2481 if (vrefresh_rate == 60 &&
2482 ((hsize == 1360 && vsize == 765) ||
2483 (hsize == 1368 && vsize == 769))) {
2484 hsize = 1366;
2485 vsize = 768;
2486 }
2487
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002488 /*
2489 * If this connector already has a mode for this size and refresh
2490 * rate (because it came from detailed or CVT info), use that
2491 * instead. This way we don't have to guess at interlace or
2492 * reduced blanking.
2493 */
Adam Jackson522032d2010-04-09 16:52:49 +00002494 list_for_each_entry(m, &connector->probed_modes, head)
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002495 if (m->hdisplay == hsize && m->vdisplay == vsize &&
2496 drm_mode_vrefresh(m) == vrefresh_rate)
2497 return NULL;
2498
Adam Jacksona0910c82010-03-29 21:43:28 +00002499 /* HDTV hack, part 2 */
2500 if (hsize == 1366 && vsize == 768 && vrefresh_rate == 60) {
2501 mode = drm_cvt_mode(dev, 1366, 768, vrefresh_rate, 0, 0,
Dave Airlied50ba252009-09-23 14:44:08 +10002502 false);
Joe Moriartya5ef6562018-02-12 14:51:43 -05002503 if (!mode)
2504 return NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +08002505 mode->hdisplay = 1366;
Adam Jacksona4967de62010-07-28 07:40:32 +10002506 mode->hsync_start = mode->hsync_start - 1;
2507 mode->hsync_end = mode->hsync_end - 1;
Zhao Yakui559ee212009-09-03 09:33:47 +08002508 return mode;
2509 }
Adam Jacksona0910c82010-03-29 21:43:28 +00002510
Zhao Yakui559ee212009-09-03 09:33:47 +08002511 /* check whether it can be found in default mode table */
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002512 if (drm_monitor_supports_rb(edid)) {
2513 mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate,
2514 true);
2515 if (mode)
2516 return mode;
2517 }
2518 mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate, false);
Zhao Yakui559ee212009-09-03 09:33:47 +08002519 if (mode)
2520 return mode;
2521
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002522 /* okay, generate it */
Zhao Yakui5c612592009-06-22 13:17:10 +08002523 switch (timing_level) {
2524 case LEVEL_DMT:
Zhao Yakui5c612592009-06-22 13:17:10 +08002525 break;
2526 case LEVEL_GTF:
2527 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
2528 break;
Adam Jackson7a374352010-03-29 21:43:30 +00002529 case LEVEL_GTF2:
2530 /*
2531 * This is potentially wrong if there's ever a monitor with
2532 * more than one ranges section, each claiming a different
2533 * secondary GTF curve. Please don't do that.
2534 */
2535 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002536 if (!mode)
2537 return NULL;
Adam Jackson7a374352010-03-29 21:43:30 +00002538 if (drm_mode_hsync(mode) > drm_gtf2_hbreak(edid)) {
Sascha Haueraefd3302012-02-01 11:38:21 +01002539 drm_mode_destroy(dev, mode);
Adam Jackson7a374352010-03-29 21:43:30 +00002540 mode = drm_gtf_mode_complex(dev, hsize, vsize,
2541 vrefresh_rate, 0, 0,
2542 drm_gtf2_m(edid),
2543 drm_gtf2_2c(edid),
2544 drm_gtf2_k(edid),
2545 drm_gtf2_2j(edid));
2546 }
2547 break;
Zhao Yakui5c612592009-06-22 13:17:10 +08002548 case LEVEL_CVT:
Dave Airlied50ba252009-09-23 14:44:08 +10002549 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
2550 false);
Zhao Yakui5c612592009-06-22 13:17:10 +08002551 break;
2552 }
Dave Airlief453ba02008-11-07 14:05:41 -08002553 return mode;
2554}
2555
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002556/*
2557 * EDID is delightfully ambiguous about how interlaced modes are to be
2558 * encoded. Our internal representation is of frame height, but some
2559 * HDTV detailed timings are encoded as field height.
2560 *
2561 * The format list here is from CEA, in frame size. Technically we
2562 * should be checking refresh rate too. Whatever.
2563 */
2564static void
2565drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
2566 struct detailed_pixel_timing *pt)
2567{
2568 int i;
2569 static const struct {
2570 int w, h;
2571 } cea_interlaced[] = {
2572 { 1920, 1080 },
2573 { 720, 480 },
2574 { 1440, 480 },
2575 { 2880, 480 },
2576 { 720, 576 },
2577 { 1440, 576 },
2578 { 2880, 576 },
2579 };
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002580
2581 if (!(pt->misc & DRM_EDID_PT_INTERLACED))
2582 return;
2583
Kulikov Vasiliy3c581412010-06-28 15:54:52 +04002584 for (i = 0; i < ARRAY_SIZE(cea_interlaced); i++) {
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002585 if ((mode->hdisplay == cea_interlaced[i].w) &&
2586 (mode->vdisplay == cea_interlaced[i].h / 2)) {
2587 mode->vdisplay *= 2;
2588 mode->vsync_start *= 2;
2589 mode->vsync_end *= 2;
2590 mode->vtotal *= 2;
2591 mode->vtotal |= 1;
2592 }
2593 }
2594
2595 mode->flags |= DRM_MODE_FLAG_INTERLACE;
2596}
2597
Dave Airlief453ba02008-11-07 14:05:41 -08002598/**
2599 * drm_mode_detailed - create a new mode from an EDID detailed timing section
2600 * @dev: DRM device (needed to create new mode)
2601 * @edid: EDID block
2602 * @timing: EDID detailed timing info
2603 * @quirks: quirks to apply
2604 *
2605 * An EDID detailed timing block contains enough info for us to create and
2606 * return a new struct drm_display_mode.
2607 */
2608static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
2609 struct edid *edid,
2610 struct detailed_timing *timing,
2611 u32 quirks)
2612{
2613 struct drm_display_mode *mode;
2614 struct detailed_pixel_timing *pt = &timing->data.pixel_data;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002615 unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
2616 unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
2617 unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
2618 unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
Michel Dänzere14cbee2009-06-23 12:36:32 +02002619 unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
2620 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 +01002621 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 +02002622 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 -08002623
Adam Jacksonfc438962009-06-04 10:20:34 +10002624 /* ignore tiny modes */
Michel Dänzer0454bea2009-06-15 16:56:07 +02002625 if (hactive < 64 || vactive < 64)
Adam Jacksonfc438962009-06-04 10:20:34 +10002626 return NULL;
2627
Michel Dänzer0454bea2009-06-15 16:56:07 +02002628 if (pt->misc & DRM_EDID_PT_STEREO) {
Egbert Eichc7d015f32013-06-13 21:01:19 +02002629 DRM_DEBUG_KMS("stereo mode not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002630 return NULL;
2631 }
Michel Dänzer0454bea2009-06-15 16:56:07 +02002632 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
Egbert Eichc7d015f32013-06-13 21:01:19 +02002633 DRM_DEBUG_KMS("composite sync not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002634 }
2635
Zhao Yakuifcb45612009-10-14 09:11:25 +08002636 /* it is incorrect if hsync/vsync width is zero */
2637 if (!hsync_pulse_width || !vsync_pulse_width) {
2638 DRM_DEBUG_KMS("Incorrect Detailed timing. "
2639 "Wrong Hsync/Vsync pulse width\n");
2640 return NULL;
2641 }
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002642
2643 if (quirks & EDID_QUIRK_FORCE_REDUCED_BLANKING) {
2644 mode = drm_cvt_mode(dev, hactive, vactive, 60, true, false, false);
2645 if (!mode)
2646 return NULL;
2647
2648 goto set_size;
2649 }
2650
Dave Airlief453ba02008-11-07 14:05:41 -08002651 mode = drm_mode_create(dev);
2652 if (!mode)
2653 return NULL;
2654
Dave Airlief453ba02008-11-07 14:05:41 -08002655 if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
Michel Dänzer0454bea2009-06-15 16:56:07 +02002656 timing->pixel_clock = cpu_to_le16(1088);
Dave Airlief453ba02008-11-07 14:05:41 -08002657
Michel Dänzer0454bea2009-06-15 16:56:07 +02002658 mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
Dave Airlief453ba02008-11-07 14:05:41 -08002659
Michel Dänzer0454bea2009-06-15 16:56:07 +02002660 mode->hdisplay = hactive;
2661 mode->hsync_start = mode->hdisplay + hsync_offset;
2662 mode->hsync_end = mode->hsync_start + hsync_pulse_width;
2663 mode->htotal = mode->hdisplay + hblank;
Dave Airlief453ba02008-11-07 14:05:41 -08002664
Michel Dänzer0454bea2009-06-15 16:56:07 +02002665 mode->vdisplay = vactive;
2666 mode->vsync_start = mode->vdisplay + vsync_offset;
2667 mode->vsync_end = mode->vsync_start + vsync_pulse_width;
2668 mode->vtotal = mode->vdisplay + vblank;
Dave Airlief453ba02008-11-07 14:05:41 -08002669
Jesse Barnes7064fef2009-11-05 10:12:54 -08002670 /* Some EDIDs have bogus h/vtotal values */
2671 if (mode->hsync_end > mode->htotal)
2672 mode->htotal = mode->hsync_end + 1;
2673 if (mode->vsync_end > mode->vtotal)
2674 mode->vtotal = mode->vsync_end + 1;
2675
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002676 drm_mode_do_interlace_quirk(mode, pt);
Dave Airlief453ba02008-11-07 14:05:41 -08002677
2678 if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
Michel Dänzer0454bea2009-06-15 16:56:07 +02002679 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
Dave Airlief453ba02008-11-07 14:05:41 -08002680 }
2681
Michel Dänzer0454bea2009-06-15 16:56:07 +02002682 mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
2683 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
2684 mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
2685 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
Dave Airlief453ba02008-11-07 14:05:41 -08002686
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002687set_size:
Michel Dänzere14cbee2009-06-23 12:36:32 +02002688 mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
2689 mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
Dave Airlief453ba02008-11-07 14:05:41 -08002690
2691 if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
2692 mode->width_mm *= 10;
2693 mode->height_mm *= 10;
2694 }
2695
2696 if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
2697 mode->width_mm = edid->width_cm * 10;
2698 mode->height_mm = edid->height_cm * 10;
2699 }
2700
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002701 mode->type = DRM_MODE_TYPE_DRIVER;
2702 drm_mode_set_name(mode);
2703
Dave Airlief453ba02008-11-07 14:05:41 -08002704 return mode;
2705}
2706
Adam Jackson07a5e632009-12-03 17:44:38 -05002707static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002708mode_in_hsync_range(const struct drm_display_mode *mode,
2709 struct edid *edid, u8 *t)
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002710{
2711 int hsync, hmin, hmax;
Adam Jackson07a5e632009-12-03 17:44:38 -05002712
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002713 hmin = t[7];
2714 if (edid->revision >= 4)
2715 hmin += ((t[4] & 0x04) ? 255 : 0);
2716 hmax = t[8];
2717 if (edid->revision >= 4)
2718 hmax += ((t[4] & 0x08) ? 255 : 0);
Adam Jackson07a5e632009-12-03 17:44:38 -05002719 hsync = drm_mode_hsync(mode);
Adam Jackson07a5e632009-12-03 17:44:38 -05002720
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002721 return (hsync <= hmax && hsync >= hmin);
2722}
2723
2724static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002725mode_in_vsync_range(const struct drm_display_mode *mode,
2726 struct edid *edid, u8 *t)
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002727{
2728 int vsync, vmin, vmax;
2729
2730 vmin = t[5];
2731 if (edid->revision >= 4)
2732 vmin += ((t[4] & 0x01) ? 255 : 0);
2733 vmax = t[6];
2734 if (edid->revision >= 4)
2735 vmax += ((t[4] & 0x02) ? 255 : 0);
2736 vsync = drm_mode_vrefresh(mode);
2737
2738 return (vsync <= vmax && vsync >= vmin);
2739}
2740
2741static u32
2742range_pixel_clock(struct edid *edid, u8 *t)
2743{
2744 /* unspecified */
2745 if (t[9] == 0 || t[9] == 255)
2746 return 0;
2747
2748 /* 1.4 with CVT support gives us real precision, yay */
2749 if (edid->revision >= 4 && t[10] == 0x04)
2750 return (t[9] * 10000) - ((t[12] >> 2) * 250);
2751
2752 /* 1.3 is pathetic, so fuzz up a bit */
2753 return t[9] * 10000 + 5001;
2754}
2755
Adam Jackson07a5e632009-12-03 17:44:38 -05002756static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002757mode_in_range(const struct drm_display_mode *mode, struct edid *edid,
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002758 struct detailed_timing *timing)
Adam Jackson07a5e632009-12-03 17:44:38 -05002759{
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002760 u32 max_clock;
2761 u8 *t = (u8 *)timing;
Adam Jackson07a5e632009-12-03 17:44:38 -05002762
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002763 if (!mode_in_hsync_range(mode, edid, t))
Adam Jackson07a5e632009-12-03 17:44:38 -05002764 return false;
2765
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002766 if (!mode_in_vsync_range(mode, edid, t))
Adam Jackson07a5e632009-12-03 17:44:38 -05002767 return false;
2768
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002769 if ((max_clock = range_pixel_clock(edid, t)))
Adam Jackson07a5e632009-12-03 17:44:38 -05002770 if (mode->clock > max_clock)
2771 return false;
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002772
2773 /* 1.4 max horizontal check */
2774 if (edid->revision >= 4 && t[10] == 0x04)
2775 if (t[13] && mode->hdisplay > 8 * (t[13] + (256 * (t[12]&0x3))))
2776 return false;
2777
2778 if (mode_is_rb(mode) && !drm_monitor_supports_rb(edid))
2779 return false;
Adam Jackson07a5e632009-12-03 17:44:38 -05002780
2781 return true;
2782}
2783
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002784static bool valid_inferred_mode(const struct drm_connector *connector,
2785 const struct drm_display_mode *mode)
2786{
Ville Syrjälä85f8fcd2015-09-07 18:22:56 +03002787 const struct drm_display_mode *m;
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002788 bool ok = false;
2789
2790 list_for_each_entry(m, &connector->probed_modes, head) {
2791 if (mode->hdisplay == m->hdisplay &&
2792 mode->vdisplay == m->vdisplay &&
2793 drm_mode_vrefresh(mode) == drm_mode_vrefresh(m))
2794 return false; /* duplicated */
2795 if (mode->hdisplay <= m->hdisplay &&
2796 mode->vdisplay <= m->vdisplay)
2797 ok = true;
2798 }
2799 return ok;
2800}
2801
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002802static int
Adam Jacksoncd4cd3d2012-04-13 16:33:33 -04002803drm_dmt_modes_for_range(struct drm_connector *connector, struct edid *edid,
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002804 struct detailed_timing *timing)
Adam Jackson07a5e632009-12-03 17:44:38 -05002805{
2806 int i, modes = 0;
2807 struct drm_display_mode *newmode;
2808 struct drm_device *dev = connector->dev;
2809
Thierry Redinga6b21832012-11-23 15:01:42 +01002810 for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002811 if (mode_in_range(drm_dmt_modes + i, edid, timing) &&
2812 valid_inferred_mode(connector, drm_dmt_modes + i)) {
Adam Jackson07a5e632009-12-03 17:44:38 -05002813 newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
2814 if (newmode) {
2815 drm_mode_probed_add(connector, newmode);
2816 modes++;
2817 }
2818 }
2819 }
2820
2821 return modes;
2822}
2823
Takashi Iwaic09dedb2012-04-23 17:40:33 +01002824/* fix up 1366x768 mode from 1368x768;
2825 * GFT/CVT can't express 1366 width which isn't dividable by 8
2826 */
Takashi Iwai969218f2017-01-17 17:43:29 +01002827void drm_mode_fixup_1366x768(struct drm_display_mode *mode)
Takashi Iwaic09dedb2012-04-23 17:40:33 +01002828{
2829 if (mode->hdisplay == 1368 && mode->vdisplay == 768) {
2830 mode->hdisplay = 1366;
2831 mode->hsync_start--;
2832 mode->hsync_end--;
2833 drm_mode_set_name(mode);
2834 }
2835}
2836
Adam Jacksonb309bd32012-04-13 16:33:40 -04002837static int
2838drm_gtf_modes_for_range(struct drm_connector *connector, struct edid *edid,
2839 struct detailed_timing *timing)
2840{
2841 int i, modes = 0;
2842 struct drm_display_mode *newmode;
2843 struct drm_device *dev = connector->dev;
2844
Thierry Redinga6b21832012-11-23 15:01:42 +01002845 for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002846 const struct minimode *m = &extra_modes[i];
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302847
Adam Jacksonb309bd32012-04-13 16:33:40 -04002848 newmode = drm_gtf_mode(dev, m->w, m->h, m->r, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002849 if (!newmode)
2850 return modes;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002851
Takashi Iwai969218f2017-01-17 17:43:29 +01002852 drm_mode_fixup_1366x768(newmode);
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002853 if (!mode_in_range(newmode, edid, timing) ||
2854 !valid_inferred_mode(connector, newmode)) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002855 drm_mode_destroy(dev, newmode);
2856 continue;
2857 }
2858
2859 drm_mode_probed_add(connector, newmode);
2860 modes++;
2861 }
2862
2863 return modes;
2864}
2865
2866static int
2867drm_cvt_modes_for_range(struct drm_connector *connector, struct edid *edid,
2868 struct detailed_timing *timing)
2869{
2870 int i, modes = 0;
2871 struct drm_display_mode *newmode;
2872 struct drm_device *dev = connector->dev;
2873 bool rb = drm_monitor_supports_rb(edid);
2874
Thierry Redinga6b21832012-11-23 15:01:42 +01002875 for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002876 const struct minimode *m = &extra_modes[i];
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302877
Adam Jacksonb309bd32012-04-13 16:33:40 -04002878 newmode = drm_cvt_mode(dev, m->w, m->h, m->r, rb, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002879 if (!newmode)
2880 return modes;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002881
Takashi Iwai969218f2017-01-17 17:43:29 +01002882 drm_mode_fixup_1366x768(newmode);
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002883 if (!mode_in_range(newmode, edid, timing) ||
2884 !valid_inferred_mode(connector, newmode)) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002885 drm_mode_destroy(dev, newmode);
2886 continue;
2887 }
2888
2889 drm_mode_probed_add(connector, newmode);
2890 modes++;
2891 }
2892
2893 return modes;
2894}
2895
Adam Jackson13931572010-08-03 14:38:19 -04002896static void
2897do_inferred_modes(struct detailed_timing *timing, void *c)
Adam Jackson9340d8c2009-12-03 17:44:40 -05002898{
Adam Jackson13931572010-08-03 14:38:19 -04002899 struct detailed_mode_closure *closure = c;
2900 struct detailed_non_pixel *data = &timing->data.other_data;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002901 struct detailed_data_monitor_range *range = &data->data.range;
Adam Jackson9340d8c2009-12-03 17:44:40 -05002902
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002903 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_MONITOR_RANGE))
Adam Jacksoncb21aaf2012-04-13 16:33:36 -04002904 return;
2905
2906 closure->modes += drm_dmt_modes_for_range(closure->connector,
2907 closure->edid,
2908 timing);
Ville Syrjälä4d23f482020-01-24 22:02:27 +02002909
Adam Jacksonb309bd32012-04-13 16:33:40 -04002910 if (!version_greater(closure->edid, 1, 1))
2911 return; /* GTF not defined yet */
2912
2913 switch (range->flags) {
2914 case 0x02: /* secondary gtf, XXX could do more */
2915 case 0x00: /* default gtf */
2916 closure->modes += drm_gtf_modes_for_range(closure->connector,
2917 closure->edid,
2918 timing);
2919 break;
2920 case 0x04: /* cvt, only in 1.4+ */
2921 if (!version_greater(closure->edid, 1, 3))
2922 break;
2923
2924 closure->modes += drm_cvt_modes_for_range(closure->connector,
2925 closure->edid,
2926 timing);
2927 break;
2928 case 0x01: /* just the ranges, no formula */
2929 default:
2930 break;
2931 }
Adam Jackson9340d8c2009-12-03 17:44:40 -05002932}
2933
Adam Jackson13931572010-08-03 14:38:19 -04002934static int
2935add_inferred_modes(struct drm_connector *connector, struct edid *edid)
2936{
2937 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02002938 .connector = connector,
2939 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04002940 };
2941
2942 if (version_greater(edid, 1, 0))
2943 drm_for_each_detailed_block((u8 *)edid, do_inferred_modes,
2944 &closure);
2945
2946 return closure.modes;
2947}
2948
Adam Jackson2255be12010-03-29 21:43:22 +00002949static int
2950drm_est3_modes(struct drm_connector *connector, struct detailed_timing *timing)
2951{
2952 int i, j, m, modes = 0;
2953 struct drm_display_mode *mode;
Paul Parsonsf3a32d72016-03-26 13:18:38 +00002954 u8 *est = ((u8 *)timing) + 6;
Adam Jackson2255be12010-03-29 21:43:22 +00002955
2956 for (i = 0; i < 6; i++) {
Ville Syrjälä891a7462013-10-14 16:44:26 +03002957 for (j = 7; j >= 0; j--) {
Adam Jackson2255be12010-03-29 21:43:22 +00002958 m = (i * 8) + (7 - j);
Linus Torvaldsaa9f56b2010-08-12 09:21:39 -07002959 if (m >= ARRAY_SIZE(est3_modes))
Adam Jackson2255be12010-03-29 21:43:22 +00002960 break;
2961 if (est[i] & (1 << j)) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002962 mode = drm_mode_find_dmt(connector->dev,
2963 est3_modes[m].w,
2964 est3_modes[m].h,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002965 est3_modes[m].r,
2966 est3_modes[m].rb);
Adam Jackson2255be12010-03-29 21:43:22 +00002967 if (mode) {
2968 drm_mode_probed_add(connector, mode);
2969 modes++;
2970 }
2971 }
2972 }
2973 }
2974
2975 return modes;
2976}
2977
Adam Jackson13931572010-08-03 14:38:19 -04002978static void
2979do_established_modes(struct detailed_timing *timing, void *c)
Adam Jackson9cf00972009-12-03 17:44:36 -05002980{
Adam Jackson13931572010-08-03 14:38:19 -04002981 struct detailed_mode_closure *closure = c;
Adam Jackson13931572010-08-03 14:38:19 -04002982
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002983 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_EST_TIMINGS))
2984 return;
2985
2986 closure->modes += drm_est3_modes(closure->connector, timing);
Adam Jackson13931572010-08-03 14:38:19 -04002987}
2988
2989/**
2990 * add_established_modes - get est. modes from EDID and add them
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002991 * @connector: connector to add mode(s) to
Adam Jackson13931572010-08-03 14:38:19 -04002992 * @edid: EDID block to scan
2993 *
2994 * Each EDID block contains a bitmap of the supported "established modes" list
2995 * (defined above). Tease them out and add them to the global modes list.
2996 */
2997static int
2998add_established_modes(struct drm_connector *connector, struct edid *edid)
2999{
Adam Jackson9cf00972009-12-03 17:44:36 -05003000 struct drm_device *dev = connector->dev;
Adam Jackson13931572010-08-03 14:38:19 -04003001 unsigned long est_bits = edid->established_timings.t1 |
3002 (edid->established_timings.t2 << 8) |
3003 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
3004 int i, modes = 0;
3005 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003006 .connector = connector,
3007 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003008 };
Adam Jackson9cf00972009-12-03 17:44:36 -05003009
Adam Jackson13931572010-08-03 14:38:19 -04003010 for (i = 0; i <= EDID_EST_TIMINGS; i++) {
3011 if (est_bits & (1<<i)) {
3012 struct drm_display_mode *newmode;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05303013
Adam Jackson13931572010-08-03 14:38:19 -04003014 newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
3015 if (newmode) {
3016 drm_mode_probed_add(connector, newmode);
3017 modes++;
3018 }
3019 }
Adam Jackson9cf00972009-12-03 17:44:36 -05003020 }
3021
Adam Jackson13931572010-08-03 14:38:19 -04003022 if (version_greater(edid, 1, 0))
3023 drm_for_each_detailed_block((u8 *)edid,
3024 do_established_modes, &closure);
3025
3026 return modes + closure.modes;
3027}
3028
3029static void
3030do_standard_modes(struct detailed_timing *timing, void *c)
3031{
3032 struct detailed_mode_closure *closure = c;
3033 struct detailed_non_pixel *data = &timing->data.other_data;
3034 struct drm_connector *connector = closure->connector;
3035 struct edid *edid = closure->edid;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003036 int i;
Adam Jackson13931572010-08-03 14:38:19 -04003037
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003038 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_STD_MODES))
3039 return;
Adam Jackson9cf00972009-12-03 17:44:36 -05003040
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003041 for (i = 0; i < 6; i++) {
3042 struct std_timing *std = &data->data.timings[i];
3043 struct drm_display_mode *newmode;
3044
3045 newmode = drm_mode_std(connector, edid, std);
3046 if (newmode) {
3047 drm_mode_probed_add(connector, newmode);
3048 closure->modes++;
Adam Jackson9cf00972009-12-03 17:44:36 -05003049 }
Adam Jackson13931572010-08-03 14:38:19 -04003050 }
3051}
3052
3053/**
3054 * add_standard_modes - get std. modes from EDID and add them
Thierry Redingdb6cf8332014-04-29 11:44:34 +02003055 * @connector: connector to add mode(s) to
Adam Jackson13931572010-08-03 14:38:19 -04003056 * @edid: EDID block to scan
3057 *
3058 * Standard modes can be calculated using the appropriate standard (DMT,
3059 * GTF or CVT. Grab them from @edid and add them to the list.
3060 */
3061static int
3062add_standard_modes(struct drm_connector *connector, struct edid *edid)
3063{
3064 int i, modes = 0;
3065 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003066 .connector = connector,
3067 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003068 };
3069
3070 for (i = 0; i < EDID_STD_TIMINGS; i++) {
3071 struct drm_display_mode *newmode;
3072
3073 newmode = drm_mode_std(connector, edid,
Thierry Reding464fdec2014-04-29 11:44:33 +02003074 &edid->standard_timings[i]);
Adam Jackson13931572010-08-03 14:38:19 -04003075 if (newmode) {
3076 drm_mode_probed_add(connector, newmode);
3077 modes++;
3078 }
3079 }
3080
3081 if (version_greater(edid, 1, 0))
3082 drm_for_each_detailed_block((u8 *)edid, do_standard_modes,
3083 &closure);
3084
3085 /* XXX should also look for standard codes in VTB blocks */
3086
3087 return modes + closure.modes;
3088}
3089
Dave Airlief453ba02008-11-07 14:05:41 -08003090static int drm_cvt_modes(struct drm_connector *connector,
3091 struct detailed_timing *timing)
3092{
3093 int i, j, modes = 0;
3094 struct drm_display_mode *newmode;
3095 struct drm_device *dev = connector->dev;
Zhao Yakui5c612592009-06-22 13:17:10 +08003096 struct cvt_timing *cvt;
3097 const int rates[] = { 60, 85, 75, 60, 50 };
3098 const u8 empty[3] = { 0, 0, 0 };
Dave Airlief453ba02008-11-07 14:05:41 -08003099
3100 for (i = 0; i < 4; i++) {
Kees Cook3f649ab2020-06-03 13:09:38 -07003101 int width, height;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05303102
Dave Airlief453ba02008-11-07 14:05:41 -08003103 cvt = &(timing->data.other_data.data.cvt[i]);
3104
3105 if (!memcmp(cvt->code, empty, 3))
Michel Dänzer0454bea2009-06-15 16:56:07 +02003106 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08003107
3108 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
Zhao Yakui5c612592009-06-22 13:17:10 +08003109 switch (cvt->code[1] & 0x0c) {
Linus Torvaldsd652d5f2020-12-17 09:27:57 -08003110 /* default - because compiler doesn't see that we've enumerated all cases */
3111 default:
Adam Jacksonf066a172009-09-23 17:31:21 -04003112 case 0x00:
Dave Airlief453ba02008-11-07 14:05:41 -08003113 width = height * 4 / 3;
3114 break;
3115 case 0x04:
3116 width = height * 16 / 9;
3117 break;
3118 case 0x08:
3119 width = height * 16 / 10;
3120 break;
3121 case 0x0c:
Dave Airlief453ba02008-11-07 14:05:41 -08003122 width = height * 15 / 9;
3123 break;
3124 }
3125
3126 for (j = 1; j < 5; j++) {
3127 if (cvt->code[2] & (1 << j)) {
3128 newmode = drm_cvt_mode(dev, width, height,
3129 rates[j], j == 0,
3130 false, false);
3131 if (newmode) {
3132 drm_mode_probed_add(connector, newmode);
3133 modes++;
3134 }
3135 }
3136 }
3137 }
3138
3139 return modes;
3140}
3141
Adam Jackson13931572010-08-03 14:38:19 -04003142static void
3143do_cvt_mode(struct detailed_timing *timing, void *c)
3144{
3145 struct detailed_mode_closure *closure = c;
Adam Jackson13931572010-08-03 14:38:19 -04003146
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003147 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_CVT_3BYTE))
3148 return;
3149
3150 closure->modes += drm_cvt_modes(closure->connector, timing);
Adam Jackson13931572010-08-03 14:38:19 -04003151}
Adam Jackson9cf00972009-12-03 17:44:36 -05003152
3153static int
Adam Jackson13931572010-08-03 14:38:19 -04003154add_cvt_modes(struct drm_connector *connector, struct edid *edid)
Ville Syrjälä4d23f482020-01-24 22:02:27 +02003155{
Adam Jackson13931572010-08-03 14:38:19 -04003156 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003157 .connector = connector,
3158 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003159 };
Adam Jackson9cf00972009-12-03 17:44:36 -05003160
Adam Jackson13931572010-08-03 14:38:19 -04003161 if (version_greater(edid, 1, 2))
3162 drm_for_each_detailed_block((u8 *)edid, do_cvt_mode, &closure);
Dave Airlief453ba02008-11-07 14:05:41 -08003163
Adam Jackson13931572010-08-03 14:38:19 -04003164 /* XXX should also look for CVT codes in VTB blocks */
3165
3166 return closure.modes;
Dave Airlief453ba02008-11-07 14:05:41 -08003167}
3168
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03003169static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode);
3170
Adam Jackson13931572010-08-03 14:38:19 -04003171static void
3172do_detailed_mode(struct detailed_timing *timing, void *c)
Dave Airlief453ba02008-11-07 14:05:41 -08003173{
Adam Jackson13931572010-08-03 14:38:19 -04003174 struct detailed_mode_closure *closure = c;
Dave Airlief453ba02008-11-07 14:05:41 -08003175 struct drm_display_mode *newmode;
Adam Jackson9cf00972009-12-03 17:44:36 -05003176
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003177 if (!is_detailed_timing_descriptor((const u8 *)timing))
3178 return;
Adam Jackson9cf00972009-12-03 17:44:36 -05003179
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003180 newmode = drm_mode_detailed(closure->connector->dev,
3181 closure->edid, timing,
3182 closure->quirks);
3183 if (!newmode)
3184 return;
Dave Airlief453ba02008-11-07 14:05:41 -08003185
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003186 if (closure->preferred)
3187 newmode->type |= DRM_MODE_TYPE_PREFERRED;
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03003188
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003189 /*
3190 * Detailed modes are limited to 10kHz pixel clock resolution,
3191 * so fix up anything that looks like CEA/HDMI mode, but the clock
3192 * is just slightly off.
3193 */
3194 fixup_detailed_cea_mode_clock(newmode);
3195
3196 drm_mode_probed_add(closure->connector, newmode);
3197 closure->modes++;
3198 closure->preferred = false;
Ma Ling167f3a02009-03-20 14:09:48 +08003199}
3200
Adam Jackson13931572010-08-03 14:38:19 -04003201/*
3202 * add_detailed_modes - Add modes from detailed timings
Dave Airlief453ba02008-11-07 14:05:41 -08003203 * @connector: attached connector
3204 * @edid: EDID block to scan
3205 * @quirks: quirks to apply
Dave Airlief453ba02008-11-07 14:05:41 -08003206 */
Adam Jackson13931572010-08-03 14:38:19 -04003207static int
3208add_detailed_modes(struct drm_connector *connector, struct edid *edid,
3209 u32 quirks)
Dave Airlief453ba02008-11-07 14:05:41 -08003210{
Adam Jackson13931572010-08-03 14:38:19 -04003211 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003212 .connector = connector,
3213 .edid = edid,
Gustavo A. R. Silvac2925bd2018-01-30 04:05:28 -06003214 .preferred = true,
Julia Lawalld456ea22014-08-23 18:09:56 +02003215 .quirks = quirks,
Adam Jackson13931572010-08-03 14:38:19 -04003216 };
Dave Airlief453ba02008-11-07 14:05:41 -08003217
Adam Jackson13931572010-08-03 14:38:19 -04003218 if (closure.preferred && !version_greater(edid, 1, 3))
3219 closure.preferred =
3220 (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
Adam Jacksona327f6b2010-03-29 21:43:25 +00003221
Adam Jackson13931572010-08-03 14:38:19 -04003222 drm_for_each_detailed_block((u8 *)edid, do_detailed_mode, &closure);
Dave Airlief453ba02008-11-07 14:05:41 -08003223
Adam Jackson13931572010-08-03 14:38:19 -04003224 return closure.modes;
Zhao Yakui882f0212009-08-26 18:20:49 +08003225}
Dave Airlief453ba02008-11-07 14:05:41 -08003226
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003227#define AUDIO_BLOCK 0x01
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003228#define VIDEO_BLOCK 0x02
Ma Lingf23c20c2009-03-26 19:26:23 +08003229#define VENDOR_BLOCK 0x03
Wu Fengguang76adaa342011-09-05 14:23:20 +08003230#define SPEAKER_BLOCK 0x04
Uma Shankare85959d2019-05-16 19:40:08 +05303231#define HDR_STATIC_METADATA_BLOCK 0x6
Shashank Sharma87563fc2017-07-13 21:03:10 +05303232#define USE_EXTENDED_TAG 0x07
3233#define EXT_VIDEO_CAPABILITY_BLOCK 0x00
Shashank Sharma832d4f22017-07-14 16:03:46 +05303234#define EXT_VIDEO_DATA_BLOCK_420 0x0E
3235#define EXT_VIDEO_CAP_BLOCK_Y420CMDB 0x0F
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003236#define EDID_BASIC_AUDIO (1 << 6)
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02003237#define EDID_CEA_YCRCB444 (1 << 5)
3238#define EDID_CEA_YCRCB422 (1 << 4)
Ville Syrjäläb1edd6a2013-01-17 16:31:30 +02003239#define EDID_CEA_VCDB_QS (1 << 6)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003240
Lespiau, Damiend4e4a312013-08-19 16:58:52 +01003241/*
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003242 * Search EDID for CEA extension block.
3243 */
Jani Nikula43d16d82021-03-29 16:37:15 +03003244static const u8 *drm_find_edid_extension(const struct edid *edid,
3245 int ext_id, int *ext_index)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003246{
Jani Nikula43d16d82021-03-29 16:37:15 +03003247 const u8 *edid_ext = NULL;
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003248 int i;
3249
3250 /* No EDID or EDID extensions */
3251 if (edid == NULL || edid->extensions == 0)
3252 return NULL;
3253
3254 /* Find CEA extension */
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003255 for (i = *ext_index; i < edid->extensions; i++) {
Jani Nikula43d16d82021-03-29 16:37:15 +03003256 edid_ext = (const u8 *)edid + EDID_LENGTH * (i + 1);
Dave Airlie40d9b042014-10-20 16:29:33 +10003257 if (edid_ext[0] == ext_id)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003258 break;
3259 }
3260
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003261 if (i >= edid->extensions)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003262 return NULL;
3263
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003264 *ext_index = i + 1;
3265
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003266 return edid_ext;
3267}
3268
Dave Airlie40d9b042014-10-20 16:29:33 +10003269
Jani Nikula43d16d82021-03-29 16:37:15 +03003270static const u8 *drm_find_displayid_extension(const struct edid *edid,
3271 int *length, int *idx,
3272 int *ext_index)
Dave Airlie40d9b042014-10-20 16:29:33 +10003273{
Jani Nikula43d16d82021-03-29 16:37:15 +03003274 const u8 *displayid = drm_find_edid_extension(edid, DISPLAYID_EXT, ext_index);
3275 const struct displayid_hdr *base;
Ville Syrjäläea0aa602020-03-13 18:20:50 +02003276 int ret;
Ville Syrjälä36881182020-03-13 18:20:48 +02003277
3278 if (!displayid)
3279 return NULL;
3280
Ville Syrjälä5f706b42020-03-13 18:20:52 +02003281 /* EDID extensions block checksum isn't for us */
3282 *length = EDID_LENGTH - 1;
Ville Syrjälä36881182020-03-13 18:20:48 +02003283 *idx = 1;
3284
Ville Syrjäläea0aa602020-03-13 18:20:50 +02003285 ret = validate_displayid(displayid, *length, *idx);
3286 if (ret)
3287 return NULL;
3288
Jani Nikula43d16d82021-03-29 16:37:15 +03003289 base = (const struct displayid_hdr *)&displayid[*idx];
Ville Syrjälä8e88c752020-03-13 18:20:51 +02003290 *length = *idx + sizeof(*base) + base->bytes;
3291
Ville Syrjälä36881182020-03-13 18:20:48 +02003292 return displayid;
Dave Airlie40d9b042014-10-20 16:29:33 +10003293}
3294
Jani Nikula43d16d82021-03-29 16:37:15 +03003295static const u8 *drm_find_cea_extension(const struct edid *edid)
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003296{
Ville Syrjälä23b03862020-03-13 18:20:49 +02003297 int length, idx;
Jani Nikula43d16d82021-03-29 16:37:15 +03003298 const struct displayid_block *block;
3299 const u8 *cea;
3300 const u8 *displayid;
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003301 int ext_index;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003302
3303 /* Look for a top level CEA extension block */
Ville Syrjälä7f261af2020-05-27 16:03:09 +03003304 /* FIXME: make callers iterate through multiple CEA ext blocks? */
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003305 ext_index = 0;
3306 cea = drm_find_edid_extension(edid, CEA_EXT, &ext_index);
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003307 if (cea)
3308 return cea;
3309
3310 /* CEA blocks can also be found embedded in a DisplayID block */
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003311 ext_index = 0;
Ville Syrjälä7f261af2020-05-27 16:03:09 +03003312 for (;;) {
3313 displayid = drm_find_displayid_extension(edid, &length, &idx,
3314 &ext_index);
3315 if (!displayid)
3316 return NULL;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003317
Ville Syrjälä7f261af2020-05-27 16:03:09 +03003318 idx += sizeof(struct displayid_hdr);
3319 for_each_displayid_db(displayid, block, idx, length) {
3320 if (block->tag == DATA_BLOCK_CTA)
Jani Nikula43d16d82021-03-29 16:37:15 +03003321 return (const u8 *)block;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003322 }
3323 }
3324
Ville Syrjälä7f261af2020-05-27 16:03:09 +03003325 return NULL;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003326}
3327
Mauro Rossie1cf35b2020-02-03 22:31:13 +01003328static __always_inline const struct drm_display_mode *cea_mode_for_vic(u8 vic)
Ville Syrjälä7befe622019-12-13 19:43:45 +02003329{
Ville Syrjälä9212f8e2019-12-13 19:43:48 +02003330 BUILD_BUG_ON(1 + ARRAY_SIZE(edid_cea_modes_1) - 1 != 127);
3331 BUILD_BUG_ON(193 + ARRAY_SIZE(edid_cea_modes_193) - 1 != 219);
3332
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +02003333 if (vic >= 1 && vic < 1 + ARRAY_SIZE(edid_cea_modes_1))
3334 return &edid_cea_modes_1[vic - 1];
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003335 if (vic >= 193 && vic < 193 + ARRAY_SIZE(edid_cea_modes_193))
3336 return &edid_cea_modes_193[vic - 193];
Ville Syrjälä7befe622019-12-13 19:43:45 +02003337 return NULL;
3338}
3339
3340static u8 cea_num_vics(void)
3341{
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003342 return 193 + ARRAY_SIZE(edid_cea_modes_193);
Ville Syrjälä7befe622019-12-13 19:43:45 +02003343}
3344
3345static u8 cea_next_vic(u8 vic)
3346{
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +02003347 if (++vic == 1 + ARRAY_SIZE(edid_cea_modes_1))
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003348 vic = 193;
3349 return vic;
Ville Syrjälä7befe622019-12-13 19:43:45 +02003350}
3351
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003352/*
3353 * Calculate the alternate clock for the CEA mode
3354 * (60Hz vs. 59.94Hz etc.)
3355 */
3356static unsigned int
3357cea_mode_alternate_clock(const struct drm_display_mode *cea_mode)
3358{
3359 unsigned int clock = cea_mode->clock;
3360
Ville Syrjälä04256622020-04-28 20:19:27 +03003361 if (drm_mode_vrefresh(cea_mode) % 6 != 0)
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003362 return clock;
3363
3364 /*
3365 * edid_cea_modes contains the 59.94Hz
3366 * variant for 240 and 480 line modes,
3367 * and the 60Hz variant otherwise.
3368 */
3369 if (cea_mode->vdisplay == 240 || cea_mode->vdisplay == 480)
Ville Syrjälä9afd8082015-10-08 11:43:33 +03003370 clock = DIV_ROUND_CLOSEST(clock * 1001, 1000);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003371 else
Ville Syrjälä9afd8082015-10-08 11:43:33 +03003372 clock = DIV_ROUND_CLOSEST(clock * 1000, 1001);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003373
3374 return clock;
3375}
3376
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003377static bool
3378cea_mode_alternate_timings(u8 vic, struct drm_display_mode *mode)
3379{
3380 /*
3381 * For certain VICs the spec allows the vertical
3382 * front porch to vary by one or two lines.
3383 *
3384 * cea_modes[] stores the variant with the shortest
3385 * vertical front porch. We can adjust the mode to
3386 * get the other variants by simply increasing the
3387 * vertical front porch length.
3388 */
Ville Syrjälä7befe622019-12-13 19:43:45 +02003389 BUILD_BUG_ON(cea_mode_for_vic(8)->vtotal != 262 ||
3390 cea_mode_for_vic(9)->vtotal != 262 ||
3391 cea_mode_for_vic(12)->vtotal != 262 ||
3392 cea_mode_for_vic(13)->vtotal != 262 ||
3393 cea_mode_for_vic(23)->vtotal != 312 ||
3394 cea_mode_for_vic(24)->vtotal != 312 ||
3395 cea_mode_for_vic(27)->vtotal != 312 ||
3396 cea_mode_for_vic(28)->vtotal != 312);
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003397
3398 if (((vic == 8 || vic == 9 ||
3399 vic == 12 || vic == 13) && mode->vtotal < 263) ||
3400 ((vic == 23 || vic == 24 ||
3401 vic == 27 || vic == 28) && mode->vtotal < 314)) {
3402 mode->vsync_start++;
3403 mode->vsync_end++;
3404 mode->vtotal++;
3405
3406 return true;
3407 }
3408
3409 return false;
3410}
3411
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003412static u8 drm_match_cea_mode_clock_tolerance(const struct drm_display_mode *to_match,
3413 unsigned int clock_tolerance)
3414{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303415 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003416 u8 vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003417
3418 if (!to_match->clock)
3419 return 0;
3420
Ville Syrjälä357768c2018-05-08 16:39:38 +05303421 if (to_match->picture_aspect_ratio)
3422 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3423
Ville Syrjälä7befe622019-12-13 19:43:45 +02003424 for (vic = 1; vic < cea_num_vics(); vic = cea_next_vic(vic)) {
3425 struct drm_display_mode cea_mode = *cea_mode_for_vic(vic);
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003426 unsigned int clock1, clock2;
3427
3428 /* Check both 60Hz and 59.94Hz */
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003429 clock1 = cea_mode.clock;
3430 clock2 = cea_mode_alternate_clock(&cea_mode);
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003431
3432 if (abs(to_match->clock - clock1) > clock_tolerance &&
3433 abs(to_match->clock - clock2) > clock_tolerance)
3434 continue;
3435
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003436 do {
Ville Syrjälä357768c2018-05-08 16:39:38 +05303437 if (drm_mode_match(to_match, &cea_mode, match_flags))
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003438 return vic;
3439 } while (cea_mode_alternate_timings(vic, &cea_mode));
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003440 }
3441
3442 return 0;
3443}
3444
Thierry Reding18316c82012-12-20 15:41:44 +01003445/**
3446 * drm_match_cea_mode - look for a CEA mode matching given mode
3447 * @to_match: display mode
3448 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02003449 * 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 +01003450 * mode.
Stephane Marchesina4799032012-11-09 16:21:05 +00003451 */
Thierry Reding18316c82012-12-20 15:41:44 +01003452u8 drm_match_cea_mode(const struct drm_display_mode *to_match)
Stephane Marchesina4799032012-11-09 16:21:05 +00003453{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303454 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003455 u8 vic;
Stephane Marchesina4799032012-11-09 16:21:05 +00003456
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003457 if (!to_match->clock)
3458 return 0;
Stephane Marchesina4799032012-11-09 16:21:05 +00003459
Ville Syrjälä357768c2018-05-08 16:39:38 +05303460 if (to_match->picture_aspect_ratio)
3461 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3462
Ville Syrjälä7befe622019-12-13 19:43:45 +02003463 for (vic = 1; vic < cea_num_vics(); vic = cea_next_vic(vic)) {
3464 struct drm_display_mode cea_mode = *cea_mode_for_vic(vic);
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003465 unsigned int clock1, clock2;
3466
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003467 /* Check both 60Hz and 59.94Hz */
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003468 clock1 = cea_mode.clock;
3469 clock2 = cea_mode_alternate_clock(&cea_mode);
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003470
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003471 if (KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock1) &&
3472 KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock2))
3473 continue;
3474
3475 do {
Ville Syrjälä357768c2018-05-08 16:39:38 +05303476 if (drm_mode_match(to_match, &cea_mode, match_flags))
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003477 return vic;
3478 } while (cea_mode_alternate_timings(vic, &cea_mode));
Stephane Marchesina4799032012-11-09 16:21:05 +00003479 }
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003480
Stephane Marchesina4799032012-11-09 16:21:05 +00003481 return 0;
3482}
3483EXPORT_SYMBOL(drm_match_cea_mode);
3484
Jani Nikulad9278b42016-01-08 13:21:51 +02003485static bool drm_valid_cea_vic(u8 vic)
3486{
Ville Syrjälä7befe622019-12-13 19:43:45 +02003487 return cea_mode_for_vic(vic) != NULL;
Jani Nikulad9278b42016-01-08 13:21:51 +02003488}
3489
Ville Syrjälä28c03a442019-10-04 17:19:11 +03003490static enum hdmi_picture_aspect drm_get_cea_aspect_ratio(const u8 video_code)
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303491{
Ville Syrjälä7befe622019-12-13 19:43:45 +02003492 const struct drm_display_mode *mode = cea_mode_for_vic(video_code);
3493
3494 if (mode)
3495 return mode->picture_aspect_ratio;
3496
3497 return HDMI_PICTURE_ASPECT_NONE;
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303498}
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303499
Wayne Lind2b43472019-11-18 18:18:31 +08003500static enum hdmi_picture_aspect drm_get_hdmi_aspect_ratio(const u8 video_code)
3501{
3502 return edid_4k_modes[video_code].picture_aspect_ratio;
3503}
3504
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003505/*
3506 * Calculate the alternate clock for HDMI modes (those from the HDMI vendor
3507 * specific block).
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003508 */
3509static unsigned int
3510hdmi_mode_alternate_clock(const struct drm_display_mode *hdmi_mode)
3511{
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003512 return cea_mode_alternate_clock(hdmi_mode);
3513}
3514
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003515static u8 drm_match_hdmi_mode_clock_tolerance(const struct drm_display_mode *to_match,
3516 unsigned int clock_tolerance)
3517{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303518 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003519 u8 vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003520
3521 if (!to_match->clock)
3522 return 0;
3523
Wayne Lind2b43472019-11-18 18:18:31 +08003524 if (to_match->picture_aspect_ratio)
3525 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3526
Jani Nikulad9278b42016-01-08 13:21:51 +02003527 for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
3528 const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003529 unsigned int clock1, clock2;
3530
3531 /* Make sure to also match alternate clocks */
3532 clock1 = hdmi_mode->clock;
3533 clock2 = hdmi_mode_alternate_clock(hdmi_mode);
3534
3535 if (abs(to_match->clock - clock1) > clock_tolerance &&
3536 abs(to_match->clock - clock2) > clock_tolerance)
3537 continue;
3538
Ville Syrjälä357768c2018-05-08 16:39:38 +05303539 if (drm_mode_match(to_match, hdmi_mode, match_flags))
Jani Nikulad9278b42016-01-08 13:21:51 +02003540 return vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003541 }
3542
3543 return 0;
3544}
3545
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003546/*
3547 * drm_match_hdmi_mode - look for a HDMI mode matching given mode
3548 * @to_match: display mode
3549 *
3550 * An HDMI mode is one defined in the HDMI vendor specific block.
3551 *
3552 * Returns the HDMI Video ID (VIC) of the mode or 0 if it isn't one.
3553 */
3554static u8 drm_match_hdmi_mode(const struct drm_display_mode *to_match)
3555{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303556 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003557 u8 vic;
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003558
3559 if (!to_match->clock)
3560 return 0;
3561
Wayne Lind2b43472019-11-18 18:18:31 +08003562 if (to_match->picture_aspect_ratio)
3563 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3564
Jani Nikulad9278b42016-01-08 13:21:51 +02003565 for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
3566 const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003567 unsigned int clock1, clock2;
3568
3569 /* Make sure to also match alternate clocks */
3570 clock1 = hdmi_mode->clock;
3571 clock2 = hdmi_mode_alternate_clock(hdmi_mode);
3572
3573 if ((KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock1) ||
3574 KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock2)) &&
Ville Syrjälä357768c2018-05-08 16:39:38 +05303575 drm_mode_match(to_match, hdmi_mode, match_flags))
Jani Nikulad9278b42016-01-08 13:21:51 +02003576 return vic;
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003577 }
3578 return 0;
3579}
3580
Jani Nikulad9278b42016-01-08 13:21:51 +02003581static bool drm_valid_hdmi_vic(u8 vic)
3582{
3583 return vic > 0 && vic < ARRAY_SIZE(edid_4k_modes);
3584}
3585
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003586static int
3587add_alternate_cea_modes(struct drm_connector *connector, struct edid *edid)
3588{
3589 struct drm_device *dev = connector->dev;
3590 struct drm_display_mode *mode, *tmp;
3591 LIST_HEAD(list);
3592 int modes = 0;
3593
3594 /* Don't add CEA modes if the CEA extension block is missing */
3595 if (!drm_find_cea_extension(edid))
3596 return 0;
3597
3598 /*
3599 * Go through all probed modes and create a new mode
3600 * with the alternate clock for certain CEA modes.
3601 */
3602 list_for_each_entry(mode, &connector->probed_modes, head) {
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003603 const struct drm_display_mode *cea_mode = NULL;
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003604 struct drm_display_mode *newmode;
Jani Nikulad9278b42016-01-08 13:21:51 +02003605 u8 vic = drm_match_cea_mode(mode);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003606 unsigned int clock1, clock2;
3607
Jani Nikulad9278b42016-01-08 13:21:51 +02003608 if (drm_valid_cea_vic(vic)) {
Ville Syrjälä7befe622019-12-13 19:43:45 +02003609 cea_mode = cea_mode_for_vic(vic);
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003610 clock2 = cea_mode_alternate_clock(cea_mode);
3611 } else {
Jani Nikulad9278b42016-01-08 13:21:51 +02003612 vic = drm_match_hdmi_mode(mode);
3613 if (drm_valid_hdmi_vic(vic)) {
3614 cea_mode = &edid_4k_modes[vic];
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003615 clock2 = hdmi_mode_alternate_clock(cea_mode);
3616 }
3617 }
3618
3619 if (!cea_mode)
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003620 continue;
3621
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003622 clock1 = cea_mode->clock;
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003623
3624 if (clock1 == clock2)
3625 continue;
3626
3627 if (mode->clock != clock1 && mode->clock != clock2)
3628 continue;
3629
3630 newmode = drm_mode_duplicate(dev, cea_mode);
3631 if (!newmode)
3632 continue;
3633
Damien Lespiau27130212013-09-25 16:45:28 +01003634 /* Carry over the stereo flags */
3635 newmode->flags |= mode->flags & DRM_MODE_FLAG_3D_MASK;
3636
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003637 /*
3638 * The current mode could be either variant. Make
3639 * sure to pick the "other" clock for the new mode.
3640 */
3641 if (mode->clock != clock1)
3642 newmode->clock = clock1;
3643 else
3644 newmode->clock = clock2;
3645
3646 list_add_tail(&newmode->head, &list);
3647 }
3648
3649 list_for_each_entry_safe(mode, tmp, &list, head) {
3650 list_del(&mode->head);
3651 drm_mode_probed_add(connector, mode);
3652 modes++;
3653 }
3654
3655 return modes;
3656}
Stephane Marchesina4799032012-11-09 16:21:05 +00003657
Shashank Sharma8ec6e072017-07-13 21:03:08 +05303658static u8 svd_to_vic(u8 svd)
3659{
3660 /* 0-6 bit vic, 7th bit native mode indicator */
3661 if ((svd >= 1 && svd <= 64) || (svd >= 129 && svd <= 192))
3662 return svd & 127;
3663
3664 return svd;
3665}
3666
Thomas Woodaff04ac2013-11-29 15:33:27 +00003667static struct drm_display_mode *
3668drm_display_mode_from_vic_index(struct drm_connector *connector,
3669 const u8 *video_db, u8 video_len,
3670 u8 video_index)
3671{
3672 struct drm_device *dev = connector->dev;
3673 struct drm_display_mode *newmode;
Jani Nikulad9278b42016-01-08 13:21:51 +02003674 u8 vic;
Thomas Woodaff04ac2013-11-29 15:33:27 +00003675
3676 if (video_db == NULL || video_index >= video_len)
3677 return NULL;
3678
3679 /* CEA modes are numbered 1..127 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05303680 vic = svd_to_vic(video_db[video_index]);
Jani Nikulad9278b42016-01-08 13:21:51 +02003681 if (!drm_valid_cea_vic(vic))
Thomas Woodaff04ac2013-11-29 15:33:27 +00003682 return NULL;
3683
Ville Syrjälä7befe622019-12-13 19:43:45 +02003684 newmode = drm_mode_duplicate(dev, cea_mode_for_vic(vic));
Damien Lespiau409bbf12014-03-03 23:59:07 +00003685 if (!newmode)
3686 return NULL;
3687
Thomas Woodaff04ac2013-11-29 15:33:27 +00003688 return newmode;
3689}
3690
Shashank Sharma832d4f22017-07-14 16:03:46 +05303691/*
3692 * do_y420vdb_modes - Parse YCBCR 420 only modes
3693 * @connector: connector corresponding to the HDMI sink
3694 * @svds: start of the data block of CEA YCBCR 420 VDB
3695 * @len: length of the CEA YCBCR 420 VDB
3696 *
3697 * Parse the CEA-861-F YCBCR 420 Video Data Block (Y420VDB)
3698 * which contains modes which can be supported in YCBCR 420
3699 * output format only.
3700 */
3701static int do_y420vdb_modes(struct drm_connector *connector,
3702 const u8 *svds, u8 svds_len)
3703{
3704 int modes = 0, i;
3705 struct drm_device *dev = connector->dev;
3706 struct drm_display_info *info = &connector->display_info;
3707 struct drm_hdmi_info *hdmi = &info->hdmi;
3708
3709 for (i = 0; i < svds_len; i++) {
3710 u8 vic = svd_to_vic(svds[i]);
3711 struct drm_display_mode *newmode;
3712
3713 if (!drm_valid_cea_vic(vic))
3714 continue;
3715
Ville Syrjälä7befe622019-12-13 19:43:45 +02003716 newmode = drm_mode_duplicate(dev, cea_mode_for_vic(vic));
Shashank Sharma832d4f22017-07-14 16:03:46 +05303717 if (!newmode)
3718 break;
3719 bitmap_set(hdmi->y420_vdb_modes, vic, 1);
3720 drm_mode_probed_add(connector, newmode);
3721 modes++;
3722 }
3723
3724 if (modes > 0)
3725 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
3726 return modes;
3727}
3728
3729/*
3730 * drm_add_cmdb_modes - Add a YCBCR 420 mode into bitmap
3731 * @connector: connector corresponding to the HDMI sink
3732 * @vic: CEA vic for the video mode to be added in the map
3733 *
3734 * Makes an entry for a videomode in the YCBCR 420 bitmap
3735 */
3736static void
3737drm_add_cmdb_modes(struct drm_connector *connector, u8 svd)
3738{
3739 u8 vic = svd_to_vic(svd);
3740 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
3741
3742 if (!drm_valid_cea_vic(vic))
3743 return;
3744
3745 bitmap_set(hdmi->y420_cmdb_modes, vic, 1);
3746}
3747
Ville Syrjälä7af655b2020-09-04 14:53:49 +03003748/**
3749 * drm_display_mode_from_cea_vic() - return a mode for CEA VIC
3750 * @dev: DRM device
Mauro Carvalho Chehab8d7d8c02020-10-27 10:51:16 +01003751 * @video_code: CEA VIC of the mode
Ville Syrjälä7af655b2020-09-04 14:53:49 +03003752 *
3753 * Creates a new mode matching the specified CEA VIC.
3754 *
3755 * Returns: A new drm_display_mode on success or NULL on failure
3756 */
3757struct drm_display_mode *
3758drm_display_mode_from_cea_vic(struct drm_device *dev,
3759 u8 video_code)
3760{
3761 const struct drm_display_mode *cea_mode;
3762 struct drm_display_mode *newmode;
3763
3764 cea_mode = cea_mode_for_vic(video_code);
3765 if (!cea_mode)
3766 return NULL;
3767
3768 newmode = drm_mode_duplicate(dev, cea_mode);
3769 if (!newmode)
3770 return NULL;
3771
3772 return newmode;
3773}
3774EXPORT_SYMBOL(drm_display_mode_from_cea_vic);
3775
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003776static int
Lespiau, Damien13ac3f52013-08-19 16:58:53 +01003777do_cea_modes(struct drm_connector *connector, const u8 *db, u8 len)
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003778{
Thomas Woodaff04ac2013-11-29 15:33:27 +00003779 int i, modes = 0;
Shashank Sharma832d4f22017-07-14 16:03:46 +05303780 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003781
Thomas Woodaff04ac2013-11-29 15:33:27 +00003782 for (i = 0; i < len; i++) {
3783 struct drm_display_mode *mode;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05303784
Thomas Woodaff04ac2013-11-29 15:33:27 +00003785 mode = drm_display_mode_from_vic_index(connector, db, len, i);
3786 if (mode) {
Shashank Sharma832d4f22017-07-14 16:03:46 +05303787 /*
3788 * YCBCR420 capability block contains a bitmap which
3789 * gives the index of CEA modes from CEA VDB, which
3790 * can support YCBCR 420 sampling output also (apart
3791 * from RGB/YCBCR444 etc).
3792 * For example, if the bit 0 in bitmap is set,
3793 * first mode in VDB can support YCBCR420 output too.
3794 * Add YCBCR420 modes only if sink is HDMI 2.0 capable.
3795 */
3796 if (i < 64 && hdmi->y420_cmdb_map & (1ULL << i))
3797 drm_add_cmdb_modes(connector, db[i]);
3798
Thomas Woodaff04ac2013-11-29 15:33:27 +00003799 drm_mode_probed_add(connector, mode);
3800 modes++;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003801 }
3802 }
3803
3804 return modes;
3805}
3806
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003807struct stereo_mandatory_mode {
3808 int width, height, vrefresh;
3809 unsigned int flags;
3810};
3811
3812static const struct stereo_mandatory_mode stereo_mandatory_modes[] = {
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003813 { 1920, 1080, 24, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3814 { 1920, 1080, 24, DRM_MODE_FLAG_3D_FRAME_PACKING },
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003815 { 1920, 1080, 50,
3816 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
3817 { 1920, 1080, 60,
3818 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003819 { 1280, 720, 50, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3820 { 1280, 720, 50, DRM_MODE_FLAG_3D_FRAME_PACKING },
3821 { 1280, 720, 60, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3822 { 1280, 720, 60, DRM_MODE_FLAG_3D_FRAME_PACKING }
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003823};
3824
3825static bool
3826stereo_match_mandatory(const struct drm_display_mode *mode,
3827 const struct stereo_mandatory_mode *stereo_mode)
3828{
3829 unsigned int interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE;
3830
3831 return mode->hdisplay == stereo_mode->width &&
3832 mode->vdisplay == stereo_mode->height &&
3833 interlaced == (stereo_mode->flags & DRM_MODE_FLAG_INTERLACE) &&
3834 drm_mode_vrefresh(mode) == stereo_mode->vrefresh;
3835}
3836
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003837static int add_hdmi_mandatory_stereo_modes(struct drm_connector *connector)
3838{
3839 struct drm_device *dev = connector->dev;
3840 const struct drm_display_mode *mode;
3841 struct list_head stereo_modes;
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003842 int modes = 0, i;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003843
3844 INIT_LIST_HEAD(&stereo_modes);
3845
3846 list_for_each_entry(mode, &connector->probed_modes, head) {
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003847 for (i = 0; i < ARRAY_SIZE(stereo_mandatory_modes); i++) {
3848 const struct stereo_mandatory_mode *mandatory;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003849 struct drm_display_mode *new_mode;
3850
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003851 if (!stereo_match_mandatory(mode,
3852 &stereo_mandatory_modes[i]))
3853 continue;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003854
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003855 mandatory = &stereo_mandatory_modes[i];
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003856 new_mode = drm_mode_duplicate(dev, mode);
3857 if (!new_mode)
3858 continue;
3859
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003860 new_mode->flags |= mandatory->flags;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003861 list_add_tail(&new_mode->head, &stereo_modes);
3862 modes++;
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003863 }
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003864 }
3865
3866 list_splice_tail(&stereo_modes, &connector->probed_modes);
3867
3868 return modes;
3869}
3870
Damien Lespiau1deee8d2013-09-25 16:45:24 +01003871static int add_hdmi_mode(struct drm_connector *connector, u8 vic)
3872{
3873 struct drm_device *dev = connector->dev;
3874 struct drm_display_mode *newmode;
3875
Jani Nikulad9278b42016-01-08 13:21:51 +02003876 if (!drm_valid_hdmi_vic(vic)) {
Damien Lespiau1deee8d2013-09-25 16:45:24 +01003877 DRM_ERROR("Unknown HDMI VIC: %d\n", vic);
3878 return 0;
3879 }
3880
3881 newmode = drm_mode_duplicate(dev, &edid_4k_modes[vic]);
3882 if (!newmode)
3883 return 0;
3884
3885 drm_mode_probed_add(connector, newmode);
3886
3887 return 1;
3888}
3889
Thomas Woodfbf46022013-10-16 15:58:50 +01003890static int add_3d_struct_modes(struct drm_connector *connector, u16 structure,
3891 const u8 *video_db, u8 video_len, u8 video_index)
3892{
Thomas Woodfbf46022013-10-16 15:58:50 +01003893 struct drm_display_mode *newmode;
3894 int modes = 0;
Thomas Woodfbf46022013-10-16 15:58:50 +01003895
3896 if (structure & (1 << 0)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003897 newmode = drm_display_mode_from_vic_index(connector, video_db,
3898 video_len,
3899 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003900 if (newmode) {
3901 newmode->flags |= DRM_MODE_FLAG_3D_FRAME_PACKING;
3902 drm_mode_probed_add(connector, newmode);
3903 modes++;
3904 }
3905 }
3906 if (structure & (1 << 6)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003907 newmode = drm_display_mode_from_vic_index(connector, video_db,
3908 video_len,
3909 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003910 if (newmode) {
3911 newmode->flags |= DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
3912 drm_mode_probed_add(connector, newmode);
3913 modes++;
3914 }
3915 }
3916 if (structure & (1 << 8)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003917 newmode = drm_display_mode_from_vic_index(connector, video_db,
3918 video_len,
3919 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003920 if (newmode) {
Thomas Wood89570ee2013-11-28 15:35:04 +00003921 newmode->flags |= DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
Thomas Woodfbf46022013-10-16 15:58:50 +01003922 drm_mode_probed_add(connector, newmode);
3923 modes++;
3924 }
3925 }
3926
3927 return modes;
3928}
3929
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003930/*
3931 * do_hdmi_vsdb_modes - Parse the HDMI Vendor Specific data block
3932 * @connector: connector corresponding to the HDMI sink
3933 * @db: start of the CEA vendor specific block
3934 * @len: length of the CEA block payload, ie. one can access up to db[len]
3935 *
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003936 * Parses the HDMI VSDB looking for modes to add to @connector. This function
3937 * also adds the stereo 3d modes when applicable.
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003938 */
3939static int
Thomas Woodfbf46022013-10-16 15:58:50 +01003940do_hdmi_vsdb_modes(struct drm_connector *connector, const u8 *db, u8 len,
3941 const u8 *video_db, u8 video_len)
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003942{
Ville Syrjäläf1781e92017-11-13 19:04:19 +02003943 struct drm_display_info *info = &connector->display_info;
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003944 int modes = 0, offset = 0, i, multi_present = 0, multi_len;
Thomas Woodfbf46022013-10-16 15:58:50 +01003945 u8 vic_len, hdmi_3d_len = 0;
3946 u16 mask;
3947 u16 structure_all;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003948
3949 if (len < 8)
3950 goto out;
3951
3952 /* no HDMI_Video_Present */
3953 if (!(db[8] & (1 << 5)))
3954 goto out;
3955
3956 /* Latency_Fields_Present */
3957 if (db[8] & (1 << 7))
3958 offset += 2;
3959
3960 /* I_Latency_Fields_Present */
3961 if (db[8] & (1 << 6))
3962 offset += 2;
3963
3964 /* the declared length is not long enough for the 2 first bytes
3965 * of additional video format capabilities */
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003966 if (len < (8 + offset + 2))
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003967 goto out;
3968
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003969 /* 3D_Present */
3970 offset++;
Thomas Woodfbf46022013-10-16 15:58:50 +01003971 if (db[8 + offset] & (1 << 7)) {
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003972 modes += add_hdmi_mandatory_stereo_modes(connector);
3973
Thomas Woodfbf46022013-10-16 15:58:50 +01003974 /* 3D_Multi_present */
3975 multi_present = (db[8 + offset] & 0x60) >> 5;
3976 }
3977
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003978 offset++;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003979 vic_len = db[8 + offset] >> 5;
Thomas Woodfbf46022013-10-16 15:58:50 +01003980 hdmi_3d_len = db[8 + offset] & 0x1f;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003981
3982 for (i = 0; i < vic_len && len >= (9 + offset + i); i++) {
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003983 u8 vic;
3984
3985 vic = db[9 + offset + i];
Damien Lespiau1deee8d2013-09-25 16:45:24 +01003986 modes += add_hdmi_mode(connector, vic);
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003987 }
Thomas Woodfbf46022013-10-16 15:58:50 +01003988 offset += 1 + vic_len;
3989
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003990 if (multi_present == 1)
3991 multi_len = 2;
3992 else if (multi_present == 2)
3993 multi_len = 4;
Thomas Woodfbf46022013-10-16 15:58:50 +01003994 else
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003995 multi_len = 0;
Thomas Woodfbf46022013-10-16 15:58:50 +01003996
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003997 if (len < (8 + offset + hdmi_3d_len - 1))
3998 goto out;
3999
4000 if (hdmi_3d_len < multi_len)
4001 goto out;
4002
4003 if (multi_present == 1 || multi_present == 2) {
4004 /* 3D_Structure_ALL */
4005 structure_all = (db[8 + offset] << 8) | db[9 + offset];
4006
4007 /* check if 3D_MASK is present */
4008 if (multi_present == 2)
4009 mask = (db[10 + offset] << 8) | db[11 + offset];
4010 else
4011 mask = 0xffff;
4012
4013 for (i = 0; i < 16; i++) {
4014 if (mask & (1 << i))
4015 modes += add_3d_struct_modes(connector,
4016 structure_all,
4017 video_db,
4018 video_len, i);
4019 }
4020 }
4021
4022 offset += multi_len;
4023
4024 for (i = 0; i < (hdmi_3d_len - multi_len); i++) {
4025 int vic_index;
4026 struct drm_display_mode *newmode = NULL;
4027 unsigned int newflag = 0;
4028 bool detail_present;
4029
4030 detail_present = ((db[8 + offset + i] & 0x0f) > 7);
4031
4032 if (detail_present && (i + 1 == hdmi_3d_len - multi_len))
4033 break;
4034
4035 /* 2D_VIC_order_X */
4036 vic_index = db[8 + offset + i] >> 4;
4037
4038 /* 3D_Structure_X */
4039 switch (db[8 + offset + i] & 0x0f) {
4040 case 0:
4041 newflag = DRM_MODE_FLAG_3D_FRAME_PACKING;
4042 break;
4043 case 6:
4044 newflag = DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
4045 break;
4046 case 8:
4047 /* 3D_Detail_X */
4048 if ((db[9 + offset + i] >> 4) == 1)
4049 newflag = DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
4050 break;
4051 }
4052
4053 if (newflag != 0) {
4054 newmode = drm_display_mode_from_vic_index(connector,
4055 video_db,
4056 video_len,
4057 vic_index);
4058
4059 if (newmode) {
4060 newmode->flags |= newflag;
4061 drm_mode_probed_add(connector, newmode);
4062 modes++;
4063 }
4064 }
4065
4066 if (detail_present)
4067 i++;
Thomas Woodfbf46022013-10-16 15:58:50 +01004068 }
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004069
4070out:
Ville Syrjäläf1781e92017-11-13 19:04:19 +02004071 if (modes > 0)
4072 info->has_hdmi_infoframe = true;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004073 return modes;
4074}
4075
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004076static int
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004077cea_db_payload_len(const u8 *db)
4078{
4079 return db[0] & 0x1f;
4080}
4081
4082static int
Shashank Sharma87563fc2017-07-13 21:03:10 +05304083cea_db_extended_tag(const u8 *db)
4084{
4085 return db[1];
4086}
4087
4088static int
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004089cea_db_tag(const u8 *db)
4090{
4091 return db[0] >> 5;
4092}
4093
4094static int
4095cea_revision(const u8 *cea)
4096{
Ville Syrjälä5036c0d2020-01-24 22:02:29 +02004097 /*
4098 * FIXME is this correct for the DispID variant?
4099 * The DispID spec doesn't really specify whether
4100 * this is the revision of the CEA extension or
4101 * the DispID CEA data block. And the only value
4102 * given as an example is 0.
4103 */
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004104 return cea[1];
4105}
4106
4107static int
4108cea_db_offsets(const u8 *cea, int *start, int *end)
4109{
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004110 /* DisplayID CTA extension blocks and top-level CEA EDID
4111 * block header definitions differ in the following bytes:
4112 * 1) Byte 2 of the header specifies length differently,
4113 * 2) Byte 3 is only present in the CEA top level block.
4114 *
4115 * The different definitions for byte 2 follow.
4116 *
4117 * DisplayID CTA extension block defines byte 2 as:
4118 * Number of payload bytes
4119 *
4120 * CEA EDID block defines byte 2 as:
4121 * Byte number (decimal) within this block where the 18-byte
4122 * DTDs begin. If no non-DTD data is present in this extension
4123 * block, the value should be set to 04h (the byte after next).
4124 * If set to 00h, there are no DTDs present in this block and
4125 * no non-DTD data.
4126 */
4127 if (cea[0] == DATA_BLOCK_CTA) {
Ville Syrjälä6e8a9422020-01-24 22:02:28 +02004128 /*
4129 * for_each_displayid_db() has already verified
4130 * that these stay within expected bounds.
4131 */
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004132 *start = 3;
4133 *end = *start + cea[2];
4134 } else if (cea[0] == CEA_EXT) {
4135 /* Data block offset in CEA extension block */
4136 *start = 4;
4137 *end = cea[2];
4138 if (*end == 0)
4139 *end = 127;
4140 if (*end < 4 || *end > 127)
4141 return -ERANGE;
4142 } else {
Daniel Vetterc7581a42019-09-04 16:39:42 +02004143 return -EOPNOTSUPP;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004144 }
4145
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004146 return 0;
4147}
4148
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004149static bool cea_db_is_hdmi_vsdb(const u8 *db)
4150{
4151 int hdmi_id;
4152
4153 if (cea_db_tag(db) != VENDOR_BLOCK)
4154 return false;
4155
4156 if (cea_db_payload_len(db) < 5)
4157 return false;
4158
4159 hdmi_id = db[1] | (db[2] << 8) | (db[3] << 16);
4160
Lespiau, Damien6cb3b7f2013-08-19 16:59:05 +01004161 return hdmi_id == HDMI_IEEE_OUI;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004162}
4163
Thierry Reding50dd1bd2017-03-13 16:54:00 +05304164static bool cea_db_is_hdmi_forum_vsdb(const u8 *db)
4165{
4166 unsigned int oui;
4167
4168 if (cea_db_tag(db) != VENDOR_BLOCK)
4169 return false;
4170
4171 if (cea_db_payload_len(db) < 7)
4172 return false;
4173
4174 oui = db[3] << 16 | db[2] << 8 | db[1];
4175
4176 return oui == HDMI_FORUM_IEEE_OUI;
4177}
4178
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02004179static bool cea_db_is_vcdb(const u8 *db)
4180{
4181 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4182 return false;
4183
4184 if (cea_db_payload_len(db) != 2)
4185 return false;
4186
4187 if (cea_db_extended_tag(db) != EXT_VIDEO_CAPABILITY_BLOCK)
4188 return false;
4189
4190 return true;
4191}
4192
Shashank Sharma832d4f22017-07-14 16:03:46 +05304193static bool cea_db_is_y420cmdb(const u8 *db)
4194{
4195 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4196 return false;
4197
4198 if (!cea_db_payload_len(db))
4199 return false;
4200
4201 if (cea_db_extended_tag(db) != EXT_VIDEO_CAP_BLOCK_Y420CMDB)
4202 return false;
4203
4204 return true;
4205}
4206
4207static bool cea_db_is_y420vdb(const u8 *db)
4208{
4209 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4210 return false;
4211
4212 if (!cea_db_payload_len(db))
4213 return false;
4214
4215 if (cea_db_extended_tag(db) != EXT_VIDEO_DATA_BLOCK_420)
4216 return false;
4217
4218 return true;
4219}
4220
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004221#define for_each_cea_db(cea, i, start, end) \
4222 for ((i) = (start); (i) < (end) && (i) + cea_db_payload_len(&(cea)[(i)]) < (end); (i) += cea_db_payload_len(&(cea)[(i)]) + 1)
4223
Shashank Sharma832d4f22017-07-14 16:03:46 +05304224static void drm_parse_y420cmdb_bitmap(struct drm_connector *connector,
4225 const u8 *db)
4226{
4227 struct drm_display_info *info = &connector->display_info;
4228 struct drm_hdmi_info *hdmi = &info->hdmi;
4229 u8 map_len = cea_db_payload_len(db) - 1;
4230 u8 count;
4231 u64 map = 0;
4232
4233 if (map_len == 0) {
4234 /* All CEA modes support ycbcr420 sampling also.*/
4235 hdmi->y420_cmdb_map = U64_MAX;
4236 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
4237 return;
4238 }
4239
4240 /*
4241 * This map indicates which of the existing CEA block modes
4242 * from VDB can support YCBCR420 output too. So if bit=0 is
4243 * set, first mode from VDB can support YCBCR420 output too.
4244 * We will parse and keep this map, before parsing VDB itself
4245 * to avoid going through the same block again and again.
4246 *
4247 * Spec is not clear about max possible size of this block.
4248 * Clamping max bitmap block size at 8 bytes. Every byte can
4249 * address 8 CEA modes, in this way this map can address
4250 * 8*8 = first 64 SVDs.
4251 */
4252 if (WARN_ON_ONCE(map_len > 8))
4253 map_len = 8;
4254
4255 for (count = 0; count < map_len; count++)
4256 map |= (u64)db[2 + count] << (8 * count);
4257
4258 if (map)
4259 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
4260
4261 hdmi->y420_cmdb_map = map;
4262}
4263
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004264static int
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004265add_cea_modes(struct drm_connector *connector, struct edid *edid)
4266{
Lespiau, Damien13ac3f52013-08-19 16:58:53 +01004267 const u8 *cea = drm_find_cea_extension(edid);
Thomas Woodfbf46022013-10-16 15:58:50 +01004268 const u8 *db, *hdmi = NULL, *video = NULL;
4269 u8 dbl, hdmi_len, video_len = 0;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004270 int modes = 0;
4271
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004272 if (cea && cea_revision(cea) >= 3) {
4273 int i, start, end;
4274
4275 if (cea_db_offsets(cea, &start, &end))
4276 return 0;
4277
4278 for_each_cea_db(cea, i, start, end) {
4279 db = &cea[i];
4280 dbl = cea_db_payload_len(db);
4281
Thomas Woodfbf46022013-10-16 15:58:50 +01004282 if (cea_db_tag(db) == VIDEO_BLOCK) {
4283 video = db + 1;
4284 video_len = dbl;
4285 modes += do_cea_modes(connector, video, dbl);
Shashank Sharma832d4f22017-07-14 16:03:46 +05304286 } else if (cea_db_is_hdmi_vsdb(db)) {
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004287 hdmi = db;
4288 hdmi_len = dbl;
Shashank Sharma832d4f22017-07-14 16:03:46 +05304289 } else if (cea_db_is_y420vdb(db)) {
4290 const u8 *vdb420 = &db[2];
4291
4292 /* Add 4:2:0(only) modes present in EDID */
4293 modes += do_y420vdb_modes(connector,
4294 vdb420,
4295 dbl - 1);
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004296 }
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004297 }
4298 }
4299
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004300 /*
4301 * We parse the HDMI VSDB after having added the cea modes as we will
4302 * be patching their flags when the sink supports stereo 3D.
4303 */
4304 if (hdmi)
Thomas Woodfbf46022013-10-16 15:58:50 +01004305 modes += do_hdmi_vsdb_modes(connector, hdmi, hdmi_len, video,
4306 video_len);
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004307
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004308 return modes;
4309}
4310
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004311static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode)
4312{
4313 const struct drm_display_mode *cea_mode;
4314 int clock1, clock2, clock;
Jani Nikulad9278b42016-01-08 13:21:51 +02004315 u8 vic;
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004316 const char *type;
4317
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02004318 /*
4319 * allow 5kHz clock difference either way to account for
4320 * the 10kHz clock resolution limit of detailed timings.
4321 */
Jani Nikulad9278b42016-01-08 13:21:51 +02004322 vic = drm_match_cea_mode_clock_tolerance(mode, 5);
4323 if (drm_valid_cea_vic(vic)) {
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004324 type = "CEA";
Ville Syrjälä7befe622019-12-13 19:43:45 +02004325 cea_mode = cea_mode_for_vic(vic);
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004326 clock1 = cea_mode->clock;
4327 clock2 = cea_mode_alternate_clock(cea_mode);
4328 } else {
Jani Nikulad9278b42016-01-08 13:21:51 +02004329 vic = drm_match_hdmi_mode_clock_tolerance(mode, 5);
4330 if (drm_valid_hdmi_vic(vic)) {
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004331 type = "HDMI";
Jani Nikulad9278b42016-01-08 13:21:51 +02004332 cea_mode = &edid_4k_modes[vic];
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004333 clock1 = cea_mode->clock;
4334 clock2 = hdmi_mode_alternate_clock(cea_mode);
4335 } else {
4336 return;
4337 }
4338 }
4339
4340 /* pick whichever is closest */
4341 if (abs(mode->clock - clock1) < abs(mode->clock - clock2))
4342 clock = clock1;
4343 else
4344 clock = clock2;
4345
4346 if (mode->clock == clock)
4347 return;
4348
4349 DRM_DEBUG("detailed mode matches %s VIC %d, adjusting clock %d -> %d\n",
Jani Nikulad9278b42016-01-08 13:21:51 +02004350 type, vic, mode->clock, clock);
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004351 mode->clock = clock;
4352}
4353
Uma Shankare85959d2019-05-16 19:40:08 +05304354static bool cea_db_is_hdmi_hdr_metadata_block(const u8 *db)
4355{
4356 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4357 return false;
4358
4359 if (db[1] != HDR_STATIC_METADATA_BLOCK)
4360 return false;
4361
4362 if (cea_db_payload_len(db) < 3)
4363 return false;
4364
4365 return true;
4366}
4367
4368static uint8_t eotf_supported(const u8 *edid_ext)
4369{
4370 return edid_ext[2] &
4371 (BIT(HDMI_EOTF_TRADITIONAL_GAMMA_SDR) |
4372 BIT(HDMI_EOTF_TRADITIONAL_GAMMA_HDR) |
Ville Syrjäläb5e3eed2019-05-16 19:40:12 +05304373 BIT(HDMI_EOTF_SMPTE_ST2084) |
4374 BIT(HDMI_EOTF_BT_2100_HLG));
Uma Shankare85959d2019-05-16 19:40:08 +05304375}
4376
4377static uint8_t hdr_metadata_type(const u8 *edid_ext)
4378{
4379 return edid_ext[3] &
4380 BIT(HDMI_STATIC_METADATA_TYPE1);
4381}
4382
4383static void
4384drm_parse_hdr_metadata_block(struct drm_connector *connector, const u8 *db)
4385{
4386 u16 len;
4387
4388 len = cea_db_payload_len(db);
4389
4390 connector->hdr_sink_metadata.hdmi_type1.eotf =
4391 eotf_supported(db);
4392 connector->hdr_sink_metadata.hdmi_type1.metadata_type =
4393 hdr_metadata_type(db);
4394
4395 if (len >= 4)
4396 connector->hdr_sink_metadata.hdmi_type1.max_cll = db[4];
4397 if (len >= 5)
4398 connector->hdr_sink_metadata.hdmi_type1.max_fall = db[5];
4399 if (len >= 6)
4400 connector->hdr_sink_metadata.hdmi_type1.min_cll = db[6];
4401}
4402
Wu Fengguang76adaa342011-09-05 14:23:20 +08004403static void
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004404drm_parse_hdmi_vsdb_audio(struct drm_connector *connector, const u8 *db)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004405{
Ville Syrjälä85040722012-08-16 14:55:05 +00004406 u8 len = cea_db_payload_len(db);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004407
Jani Nikulaf7da77852017-11-01 16:20:57 +02004408 if (len >= 6 && (db[6] & (1 << 7)))
4409 connector->eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_SUPPORTS_AI;
Ville Syrjälä85040722012-08-16 14:55:05 +00004410 if (len >= 8) {
4411 connector->latency_present[0] = db[8] >> 7;
4412 connector->latency_present[1] = (db[8] >> 6) & 1;
4413 }
4414 if (len >= 9)
4415 connector->video_latency[0] = db[9];
4416 if (len >= 10)
4417 connector->audio_latency[0] = db[10];
4418 if (len >= 11)
4419 connector->video_latency[1] = db[11];
4420 if (len >= 12)
4421 connector->audio_latency[1] = db[12];
Wu Fengguang76adaa342011-09-05 14:23:20 +08004422
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004423 DRM_DEBUG_KMS("HDMI: latency present %d %d, "
4424 "video latency %d %d, "
4425 "audio latency %d %d\n",
4426 connector->latency_present[0],
4427 connector->latency_present[1],
4428 connector->video_latency[0],
4429 connector->video_latency[1],
4430 connector->audio_latency[0],
4431 connector->audio_latency[1]);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004432}
4433
4434static void
4435monitor_name(struct detailed_timing *t, void *data)
4436{
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02004437 if (!is_display_descriptor((const u8 *)t, EDID_DETAIL_MONITOR_NAME))
4438 return;
4439
4440 *(u8 **)data = t->data.other_data.data.str.str;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004441}
4442
Jim Bride59f7c0f2016-04-14 10:18:35 -07004443static int get_monitor_name(struct edid *edid, char name[13])
4444{
4445 char *edid_name = NULL;
4446 int mnl;
4447
4448 if (!edid || !name)
4449 return 0;
4450
4451 drm_for_each_detailed_block((u8 *)edid, monitor_name, &edid_name);
4452 for (mnl = 0; edid_name && mnl < 13; mnl++) {
4453 if (edid_name[mnl] == 0x0a)
4454 break;
4455
4456 name[mnl] = edid_name[mnl];
4457 }
4458
4459 return mnl;
4460}
4461
4462/**
4463 * drm_edid_get_monitor_name - fetch the monitor name from the edid
4464 * @edid: monitor EDID information
4465 * @name: pointer to a character array to hold the name of the monitor
4466 * @bufsize: The size of the name buffer (should be at least 14 chars.)
4467 *
4468 */
4469void drm_edid_get_monitor_name(struct edid *edid, char *name, int bufsize)
4470{
4471 int name_length;
4472 char buf[13];
Ville Syrjälä4d23f482020-01-24 22:02:27 +02004473
Jim Bride59f7c0f2016-04-14 10:18:35 -07004474 if (bufsize <= 0)
4475 return;
4476
4477 name_length = min(get_monitor_name(edid, buf), bufsize - 1);
4478 memcpy(name, buf, name_length);
4479 name[name_length] = '\0';
4480}
4481EXPORT_SYMBOL(drm_edid_get_monitor_name);
4482
Jani Nikula42750d32017-11-01 16:21:00 +02004483static void clear_eld(struct drm_connector *connector)
4484{
4485 memset(connector->eld, 0, sizeof(connector->eld));
4486
4487 connector->latency_present[0] = false;
4488 connector->latency_present[1] = false;
4489 connector->video_latency[0] = 0;
4490 connector->audio_latency[0] = 0;
4491 connector->video_latency[1] = 0;
4492 connector->audio_latency[1] = 0;
4493}
4494
Jani Nikula79436a12017-11-01 16:21:03 +02004495/*
Wu Fengguang76adaa342011-09-05 14:23:20 +08004496 * drm_edid_to_eld - build ELD from EDID
4497 * @connector: connector corresponding to the HDMI/DP sink
4498 * @edid: EDID to parse
4499 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004500 * Fill the ELD (EDID-Like Data) buffer for passing to the audio driver. The
Jani Nikula1d1c3662017-11-01 16:20:58 +02004501 * HDCP and Port_ID ELD fields are left for the graphics driver to fill in.
Wu Fengguang76adaa342011-09-05 14:23:20 +08004502 */
Jani Nikula79436a12017-11-01 16:21:03 +02004503static void drm_edid_to_eld(struct drm_connector *connector, struct edid *edid)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004504{
4505 uint8_t *eld = connector->eld;
Jani Nikula43d16d82021-03-29 16:37:15 +03004506 const u8 *cea;
4507 const u8 *db;
Ville Syrjälä7c018782016-03-09 22:07:46 +02004508 int total_sad_count = 0;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004509 int mnl;
4510 int dbl;
4511
Jani Nikula42750d32017-11-01 16:21:00 +02004512 clear_eld(connector);
Ville Syrjälä85c91582016-09-28 16:51:34 +03004513
Jani Nikulae9bd0b82017-02-17 17:20:52 +02004514 if (!edid)
4515 return;
4516
Wu Fengguang76adaa342011-09-05 14:23:20 +08004517 cea = drm_find_cea_extension(edid);
4518 if (!cea) {
4519 DRM_DEBUG_KMS("ELD: no CEA Extension found\n");
4520 return;
4521 }
4522
Jani Nikulaf7da77852017-11-01 16:20:57 +02004523 mnl = get_monitor_name(edid, &eld[DRM_ELD_MONITOR_NAME_STRING]);
4524 DRM_DEBUG_KMS("ELD monitor %s\n", &eld[DRM_ELD_MONITOR_NAME_STRING]);
Jim Bride59f7c0f2016-04-14 10:18:35 -07004525
Jani Nikulaf7da77852017-11-01 16:20:57 +02004526 eld[DRM_ELD_CEA_EDID_VER_MNL] = cea[1] << DRM_ELD_CEA_EDID_VER_SHIFT;
4527 eld[DRM_ELD_CEA_EDID_VER_MNL] |= mnl;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004528
Jani Nikulaf7da77852017-11-01 16:20:57 +02004529 eld[DRM_ELD_VER] = DRM_ELD_VER_CEA861D;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004530
Jani Nikulaf7da77852017-11-01 16:20:57 +02004531 eld[DRM_ELD_MANUFACTURER_NAME0] = edid->mfg_id[0];
4532 eld[DRM_ELD_MANUFACTURER_NAME1] = edid->mfg_id[1];
4533 eld[DRM_ELD_PRODUCT_CODE0] = edid->prod_code[0];
4534 eld[DRM_ELD_PRODUCT_CODE1] = edid->prod_code[1];
Wu Fengguang76adaa342011-09-05 14:23:20 +08004535
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004536 if (cea_revision(cea) >= 3) {
4537 int i, start, end;
Kees Cookdeec2222020-03-06 09:32:13 -08004538 int sad_count;
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004539
4540 if (cea_db_offsets(cea, &start, &end)) {
4541 start = 0;
4542 end = 0;
4543 }
4544
4545 for_each_cea_db(cea, i, start, end) {
4546 db = &cea[i];
4547 dbl = cea_db_payload_len(db);
4548
4549 switch (cea_db_tag(db)) {
Christian Schmidta0ab7342011-12-19 20:03:38 +01004550 case AUDIO_BLOCK:
4551 /* Audio Data Block, contains SADs */
Ville Syrjälä7c018782016-03-09 22:07:46 +02004552 sad_count = min(dbl / 3, 15 - total_sad_count);
4553 if (sad_count >= 1)
Jani Nikulaf7da77852017-11-01 16:20:57 +02004554 memcpy(&eld[DRM_ELD_CEA_SAD(mnl, total_sad_count)],
Ville Syrjälä7c018782016-03-09 22:07:46 +02004555 &db[1], sad_count * 3);
4556 total_sad_count += sad_count;
Christian Schmidta0ab7342011-12-19 20:03:38 +01004557 break;
4558 case SPEAKER_BLOCK:
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004559 /* Speaker Allocation Data Block */
4560 if (dbl >= 1)
Jani Nikulaf7da77852017-11-01 16:20:57 +02004561 eld[DRM_ELD_SPEAKER] = db[1];
Christian Schmidta0ab7342011-12-19 20:03:38 +01004562 break;
4563 case VENDOR_BLOCK:
4564 /* HDMI Vendor-Specific Data Block */
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004565 if (cea_db_is_hdmi_vsdb(db))
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004566 drm_parse_hdmi_vsdb_audio(connector, db);
Christian Schmidta0ab7342011-12-19 20:03:38 +01004567 break;
4568 default:
4569 break;
4570 }
Wu Fengguang76adaa342011-09-05 14:23:20 +08004571 }
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004572 }
Jani Nikulaf7da77852017-11-01 16:20:57 +02004573 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= total_sad_count << DRM_ELD_SAD_COUNT_SHIFT;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004574
Jani Nikula1d1c3662017-11-01 16:20:58 +02004575 if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
4576 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
4577 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_DP;
4578 else
4579 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_HDMI;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004580
Jani Nikula938fd8a2014-10-28 16:20:48 +02004581 eld[DRM_ELD_BASELINE_ELD_LEN] =
4582 DIV_ROUND_UP(drm_eld_calc_baseline_block_size(eld), 4);
4583
4584 DRM_DEBUG_KMS("ELD size %d, SAD count %d\n",
Ville Syrjälä7c018782016-03-09 22:07:46 +02004585 drm_eld_size(eld), total_sad_count);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004586}
Wu Fengguang76adaa342011-09-05 14:23:20 +08004587
4588/**
Rafał Miłeckife214162013-04-19 19:01:25 +02004589 * drm_edid_to_sad - extracts SADs from EDID
4590 * @edid: EDID to parse
4591 * @sads: pointer that will be set to the extracted SADs
4592 *
4593 * Looks for CEA EDID block and extracts SADs (Short Audio Descriptors) from it.
Rafał Miłeckife214162013-04-19 19:01:25 +02004594 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004595 * Note: The returned pointer needs to be freed using kfree().
4596 *
4597 * Return: The number of found SADs or negative number on error.
Rafał Miłeckife214162013-04-19 19:01:25 +02004598 */
4599int drm_edid_to_sad(struct edid *edid, struct cea_sad **sads)
4600{
4601 int count = 0;
4602 int i, start, end, dbl;
Jani Nikula43d16d82021-03-29 16:37:15 +03004603 const u8 *cea;
Rafał Miłeckife214162013-04-19 19:01:25 +02004604
4605 cea = drm_find_cea_extension(edid);
4606 if (!cea) {
4607 DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
Jean Delvare42908002019-11-15 17:07:36 +01004608 return 0;
Rafał Miłeckife214162013-04-19 19:01:25 +02004609 }
4610
4611 if (cea_revision(cea) < 3) {
4612 DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
Jean Delvare42908002019-11-15 17:07:36 +01004613 return 0;
Rafał Miłeckife214162013-04-19 19:01:25 +02004614 }
4615
4616 if (cea_db_offsets(cea, &start, &end)) {
4617 DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
4618 return -EPROTO;
4619 }
4620
4621 for_each_cea_db(cea, i, start, end) {
Jani Nikula43d16d82021-03-29 16:37:15 +03004622 const u8 *db = &cea[i];
Rafał Miłeckife214162013-04-19 19:01:25 +02004623
4624 if (cea_db_tag(db) == AUDIO_BLOCK) {
4625 int j;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05304626
Rafał Miłeckife214162013-04-19 19:01:25 +02004627 dbl = cea_db_payload_len(db);
4628
4629 count = dbl / 3; /* SAD is 3B */
4630 *sads = kcalloc(count, sizeof(**sads), GFP_KERNEL);
4631 if (!*sads)
4632 return -ENOMEM;
4633 for (j = 0; j < count; j++) {
Jani Nikula43d16d82021-03-29 16:37:15 +03004634 const u8 *sad = &db[1 + j * 3];
Rafał Miłeckife214162013-04-19 19:01:25 +02004635
4636 (*sads)[j].format = (sad[0] & 0x78) >> 3;
4637 (*sads)[j].channels = sad[0] & 0x7;
4638 (*sads)[j].freq = sad[1] & 0x7F;
4639 (*sads)[j].byte2 = sad[2];
4640 }
4641 break;
4642 }
4643 }
4644
4645 return count;
4646}
4647EXPORT_SYMBOL(drm_edid_to_sad);
4648
4649/**
Alex Deucherd105f472013-07-25 15:55:32 -04004650 * drm_edid_to_speaker_allocation - extracts Speaker Allocation Data Blocks from EDID
4651 * @edid: EDID to parse
4652 * @sadb: pointer to the speaker block
4653 *
4654 * Looks for CEA EDID block and extracts the Speaker Allocation Data Block from it.
Alex Deucherd105f472013-07-25 15:55:32 -04004655 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004656 * Note: The returned pointer needs to be freed using kfree().
4657 *
4658 * Return: The number of found Speaker Allocation Blocks or negative number on
4659 * error.
Alex Deucherd105f472013-07-25 15:55:32 -04004660 */
4661int drm_edid_to_speaker_allocation(struct edid *edid, u8 **sadb)
4662{
4663 int count = 0;
4664 int i, start, end, dbl;
4665 const u8 *cea;
4666
4667 cea = drm_find_cea_extension(edid);
4668 if (!cea) {
4669 DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
Jean Delvare42908002019-11-15 17:07:36 +01004670 return 0;
Alex Deucherd105f472013-07-25 15:55:32 -04004671 }
4672
4673 if (cea_revision(cea) < 3) {
4674 DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
Jean Delvare42908002019-11-15 17:07:36 +01004675 return 0;
Alex Deucherd105f472013-07-25 15:55:32 -04004676 }
4677
4678 if (cea_db_offsets(cea, &start, &end)) {
4679 DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
4680 return -EPROTO;
4681 }
4682
4683 for_each_cea_db(cea, i, start, end) {
4684 const u8 *db = &cea[i];
4685
4686 if (cea_db_tag(db) == SPEAKER_BLOCK) {
4687 dbl = cea_db_payload_len(db);
4688
4689 /* Speaker Allocation Data Block */
4690 if (dbl == 3) {
Benoit Taine89086bc2014-05-26 17:21:22 +02004691 *sadb = kmemdup(&db[1], dbl, GFP_KERNEL);
Alex Deucher618e3772013-09-27 18:46:09 -04004692 if (!*sadb)
4693 return -ENOMEM;
Alex Deucherd105f472013-07-25 15:55:32 -04004694 count = dbl;
4695 break;
4696 }
4697 }
4698 }
4699
4700 return count;
4701}
4702EXPORT_SYMBOL(drm_edid_to_speaker_allocation);
4703
4704/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004705 * drm_av_sync_delay - compute the HDMI/DP sink audio-video sync delay
Wu Fengguang76adaa342011-09-05 14:23:20 +08004706 * @connector: connector associated with the HDMI/DP sink
4707 * @mode: the display mode
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004708 *
4709 * Return: The HDMI/DP sink's audio-video sync delay in milliseconds or 0 if
4710 * the sink doesn't support audio or video.
Wu Fengguang76adaa342011-09-05 14:23:20 +08004711 */
4712int drm_av_sync_delay(struct drm_connector *connector,
Ville Syrjälä3a818d32015-09-07 18:22:58 +03004713 const struct drm_display_mode *mode)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004714{
4715 int i = !!(mode->flags & DRM_MODE_FLAG_INTERLACE);
4716 int a, v;
4717
4718 if (!connector->latency_present[0])
4719 return 0;
4720 if (!connector->latency_present[1])
4721 i = 0;
4722
4723 a = connector->audio_latency[i];
4724 v = connector->video_latency[i];
4725
4726 /*
4727 * HDMI/DP sink doesn't support audio or video?
4728 */
4729 if (a == 255 || v == 255)
4730 return 0;
4731
4732 /*
4733 * Convert raw EDID values to millisecond.
4734 * Treat unknown latency as 0ms.
4735 */
4736 if (a)
4737 a = min(2 * (a - 1), 500);
4738 if (v)
4739 v = min(2 * (v - 1), 500);
4740
4741 return max(v - a, 0);
4742}
4743EXPORT_SYMBOL(drm_av_sync_delay);
4744
4745/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004746 * drm_detect_hdmi_monitor - detect whether monitor is HDMI
Ma Lingf23c20c2009-03-26 19:26:23 +08004747 * @edid: monitor EDID information
4748 *
4749 * Parse the CEA extension according to CEA-861-B.
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004750 *
Laurent Pincharta92d0832020-02-26 13:24:23 +02004751 * Drivers that have added the modes parsed from EDID to drm_display_info
4752 * should use &drm_display_info.is_hdmi instead of calling this function.
4753 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004754 * Return: True if the monitor is HDMI, false if not or unknown.
Ma Lingf23c20c2009-03-26 19:26:23 +08004755 */
4756bool drm_detect_hdmi_monitor(struct edid *edid)
4757{
Jani Nikula43d16d82021-03-29 16:37:15 +03004758 const u8 *edid_ext;
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004759 int i;
Ma Lingf23c20c2009-03-26 19:26:23 +08004760 int start_offset, end_offset;
Ma Lingf23c20c2009-03-26 19:26:23 +08004761
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004762 edid_ext = drm_find_cea_extension(edid);
4763 if (!edid_ext)
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004764 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004765
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004766 if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004767 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004768
4769 /*
4770 * Because HDMI identifier is in Vendor Specific Block,
4771 * search it from all data blocks of CEA extension.
4772 */
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004773 for_each_cea_db(edid_ext, i, start_offset, end_offset) {
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004774 if (cea_db_is_hdmi_vsdb(&edid_ext[i]))
4775 return true;
Ma Lingf23c20c2009-03-26 19:26:23 +08004776 }
4777
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004778 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004779}
4780EXPORT_SYMBOL(drm_detect_hdmi_monitor);
4781
Dave Airlief453ba02008-11-07 14:05:41 -08004782/**
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004783 * drm_detect_monitor_audio - check monitor audio capability
Daniel Vetterfc668112014-01-21 12:02:26 +01004784 * @edid: EDID block to scan
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004785 *
4786 * Monitor should have CEA extension block.
4787 * If monitor has 'basic audio', but no CEA audio blocks, it's 'basic
4788 * audio' only. If there is any audio extension block and supported
4789 * audio format, assume at least 'basic audio' support, even if 'basic
4790 * audio' is not defined in EDID.
4791 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004792 * Return: True if the monitor supports audio, false otherwise.
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004793 */
4794bool drm_detect_monitor_audio(struct edid *edid)
4795{
Jani Nikula43d16d82021-03-29 16:37:15 +03004796 const u8 *edid_ext;
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004797 int i, j;
4798 bool has_audio = false;
4799 int start_offset, end_offset;
4800
4801 edid_ext = drm_find_cea_extension(edid);
4802 if (!edid_ext)
4803 goto end;
4804
4805 has_audio = ((edid_ext[3] & EDID_BASIC_AUDIO) != 0);
4806
4807 if (has_audio) {
4808 DRM_DEBUG_KMS("Monitor has basic audio support\n");
4809 goto end;
4810 }
4811
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004812 if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
4813 goto end;
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004814
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004815 for_each_cea_db(edid_ext, i, start_offset, end_offset) {
4816 if (cea_db_tag(&edid_ext[i]) == AUDIO_BLOCK) {
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004817 has_audio = true;
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004818 for (j = 1; j < cea_db_payload_len(&edid_ext[i]) + 1; j += 3)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004819 DRM_DEBUG_KMS("CEA audio format %d\n",
4820 (edid_ext[i + j] >> 3) & 0xf);
4821 goto end;
4822 }
4823 }
4824end:
4825 return has_audio;
4826}
4827EXPORT_SYMBOL(drm_detect_monitor_audio);
4828
Ville Syrjäläb1edd6a2013-01-17 16:31:30 +02004829
Ville Syrjäläc8127cf02017-01-11 16:18:35 +02004830/**
4831 * drm_default_rgb_quant_range - default RGB quantization range
4832 * @mode: display mode
4833 *
4834 * Determine the default RGB quantization range for the mode,
4835 * as specified in CEA-861.
4836 *
4837 * Return: The default RGB quantization range for the mode
4838 */
4839enum hdmi_quantization_range
4840drm_default_rgb_quant_range(const struct drm_display_mode *mode)
4841{
4842 /* All CEA modes other than VIC 1 use limited quantization range. */
4843 return drm_match_cea_mode(mode) > 1 ?
4844 HDMI_QUANTIZATION_RANGE_LIMITED :
4845 HDMI_QUANTIZATION_RANGE_FULL;
4846}
4847EXPORT_SYMBOL(drm_default_rgb_quant_range);
4848
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02004849static void drm_parse_vcdb(struct drm_connector *connector, const u8 *db)
4850{
4851 struct drm_display_info *info = &connector->display_info;
4852
4853 DRM_DEBUG_KMS("CEA VCDB 0x%02x\n", db[2]);
4854
4855 if (db[2] & EDID_CEA_VCDB_QS)
4856 info->rgb_quant_range_selectable = true;
4857}
4858
Swati Sharma4499d482020-12-18 16:07:10 +05304859static
4860void drm_get_max_frl_rate(int max_frl_rate, u8 *max_lanes, u8 *max_rate_per_lane)
4861{
4862 switch (max_frl_rate) {
4863 case 1:
4864 *max_lanes = 3;
4865 *max_rate_per_lane = 3;
4866 break;
4867 case 2:
4868 *max_lanes = 3;
4869 *max_rate_per_lane = 6;
4870 break;
4871 case 3:
4872 *max_lanes = 4;
4873 *max_rate_per_lane = 6;
4874 break;
4875 case 4:
4876 *max_lanes = 4;
4877 *max_rate_per_lane = 8;
4878 break;
4879 case 5:
4880 *max_lanes = 4;
4881 *max_rate_per_lane = 10;
4882 break;
4883 case 6:
4884 *max_lanes = 4;
4885 *max_rate_per_lane = 12;
4886 break;
4887 case 0:
4888 default:
4889 *max_lanes = 0;
4890 *max_rate_per_lane = 0;
4891 }
4892}
4893
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304894static void drm_parse_ycbcr420_deep_color_info(struct drm_connector *connector,
4895 const u8 *db)
4896{
4897 u8 dc_mask;
4898 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
4899
4900 dc_mask = db[7] & DRM_EDID_YCBCR420_DC_MASK;
Clint Taylor9068e022018-10-05 14:52:15 -07004901 hdmi->y420_dc_modes = dc_mask;
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304902}
4903
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304904static void drm_parse_hdmi_forum_vsdb(struct drm_connector *connector,
4905 const u8 *hf_vsdb)
4906{
Shashank Sharma62c58af2017-03-13 16:54:02 +05304907 struct drm_display_info *display = &connector->display_info;
4908 struct drm_hdmi_info *hdmi = &display->hdmi;
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304909
Ville Syrjäläf1781e92017-11-13 19:04:19 +02004910 display->has_hdmi_infoframe = true;
4911
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304912 if (hf_vsdb[6] & 0x80) {
4913 hdmi->scdc.supported = true;
4914 if (hf_vsdb[6] & 0x40)
4915 hdmi->scdc.read_request = true;
4916 }
Shashank Sharma62c58af2017-03-13 16:54:02 +05304917
4918 /*
4919 * All HDMI 2.0 monitors must support scrambling at rates > 340 MHz.
4920 * And as per the spec, three factors confirm this:
4921 * * Availability of a HF-VSDB block in EDID (check)
4922 * * Non zero Max_TMDS_Char_Rate filed in HF-VSDB (let's check)
4923 * * SCDC support available (let's check)
4924 * Lets check it out.
4925 */
4926
4927 if (hf_vsdb[5]) {
4928 /* max clock is 5000 KHz times block value */
4929 u32 max_tmds_clock = hf_vsdb[5] * 5000;
4930 struct drm_scdc *scdc = &hdmi->scdc;
4931
4932 if (max_tmds_clock > 340000) {
4933 display->max_tmds_clock = max_tmds_clock;
4934 DRM_DEBUG_KMS("HF-VSDB: max TMDS clock %d kHz\n",
4935 display->max_tmds_clock);
4936 }
4937
4938 if (scdc->supported) {
4939 scdc->scrambling.supported = true;
4940
Thierry Redingdbe2d2b2019-12-06 14:53:35 +01004941 /* Few sinks support scrambling for clocks < 340M */
Shashank Sharma62c58af2017-03-13 16:54:02 +05304942 if ((hf_vsdb[6] & 0x8))
4943 scdc->scrambling.low_rates = true;
4944 }
4945 }
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304946
Swati Sharma4499d482020-12-18 16:07:10 +05304947 if (hf_vsdb[7]) {
4948 u8 max_frl_rate;
Ankit Nautiyal76ee7b92020-12-18 16:07:11 +05304949 u8 dsc_max_frl_rate;
4950 u8 dsc_max_slices;
4951 struct drm_hdmi_dsc_cap *hdmi_dsc = &hdmi->dsc_cap;
Swati Sharma4499d482020-12-18 16:07:10 +05304952
4953 DRM_DEBUG_KMS("hdmi_21 sink detected. parsing edid\n");
4954 max_frl_rate = (hf_vsdb[7] & DRM_EDID_MAX_FRL_RATE_MASK) >> 4;
4955 drm_get_max_frl_rate(max_frl_rate, &hdmi->max_lanes,
4956 &hdmi->max_frl_rate_per_lane);
Ankit Nautiyal76ee7b92020-12-18 16:07:11 +05304957 hdmi_dsc->v_1p2 = hf_vsdb[11] & DRM_EDID_DSC_1P2;
4958
4959 if (hdmi_dsc->v_1p2) {
4960 hdmi_dsc->native_420 = hf_vsdb[11] & DRM_EDID_DSC_NATIVE_420;
4961 hdmi_dsc->all_bpp = hf_vsdb[11] & DRM_EDID_DSC_ALL_BPP;
4962
4963 if (hf_vsdb[11] & DRM_EDID_DSC_16BPC)
4964 hdmi_dsc->bpc_supported = 16;
4965 else if (hf_vsdb[11] & DRM_EDID_DSC_12BPC)
4966 hdmi_dsc->bpc_supported = 12;
4967 else if (hf_vsdb[11] & DRM_EDID_DSC_10BPC)
4968 hdmi_dsc->bpc_supported = 10;
4969 else
4970 hdmi_dsc->bpc_supported = 0;
4971
4972 dsc_max_frl_rate = (hf_vsdb[12] & DRM_EDID_DSC_MAX_FRL_RATE_MASK) >> 4;
4973 drm_get_max_frl_rate(dsc_max_frl_rate, &hdmi_dsc->max_lanes,
4974 &hdmi_dsc->max_frl_rate_per_lane);
4975 hdmi_dsc->total_chunk_kbytes = hf_vsdb[13] & DRM_EDID_DSC_TOTAL_CHUNK_KBYTES;
4976
4977 dsc_max_slices = hf_vsdb[12] & DRM_EDID_DSC_MAX_SLICES;
4978 switch (dsc_max_slices) {
4979 case 1:
4980 hdmi_dsc->max_slices = 1;
4981 hdmi_dsc->clk_per_slice = 340;
4982 break;
4983 case 2:
4984 hdmi_dsc->max_slices = 2;
4985 hdmi_dsc->clk_per_slice = 340;
4986 break;
4987 case 3:
4988 hdmi_dsc->max_slices = 4;
4989 hdmi_dsc->clk_per_slice = 340;
4990 break;
4991 case 4:
4992 hdmi_dsc->max_slices = 8;
4993 hdmi_dsc->clk_per_slice = 340;
4994 break;
4995 case 5:
4996 hdmi_dsc->max_slices = 8;
4997 hdmi_dsc->clk_per_slice = 400;
4998 break;
4999 case 6:
5000 hdmi_dsc->max_slices = 12;
5001 hdmi_dsc->clk_per_slice = 400;
5002 break;
5003 case 7:
5004 hdmi_dsc->max_slices = 16;
5005 hdmi_dsc->clk_per_slice = 400;
5006 break;
5007 case 0:
5008 default:
5009 hdmi_dsc->max_slices = 0;
5010 hdmi_dsc->clk_per_slice = 0;
5011 }
5012 }
Swati Sharma4499d482020-12-18 16:07:10 +05305013 }
5014
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05305015 drm_parse_ycbcr420_deep_color_info(connector, hf_vsdb);
Shashank Sharmaafa1c762017-03-13 16:54:01 +05305016}
5017
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005018static void drm_parse_hdmi_deep_color_info(struct drm_connector *connector,
5019 const u8 *hdmi)
Mario Kleinerd0c94692014-03-27 19:59:39 +01005020{
Ville Syrjälä18267502016-09-28 16:51:38 +03005021 struct drm_display_info *info = &connector->display_info;
Mario Kleinerd0c94692014-03-27 19:59:39 +01005022 unsigned int dc_bpc = 0;
5023
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005024 /* HDMI supports at least 8 bpc */
5025 info->bpc = 8;
5026
5027 if (cea_db_payload_len(hdmi) < 6)
5028 return;
5029
5030 if (hdmi[6] & DRM_EDID_HDMI_DC_30) {
5031 dc_bpc = 10;
5032 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_30;
5033 DRM_DEBUG("%s: HDMI sink does deep color 30.\n",
5034 connector->name);
5035 }
5036
5037 if (hdmi[6] & DRM_EDID_HDMI_DC_36) {
5038 dc_bpc = 12;
5039 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_36;
5040 DRM_DEBUG("%s: HDMI sink does deep color 36.\n",
5041 connector->name);
5042 }
5043
5044 if (hdmi[6] & DRM_EDID_HDMI_DC_48) {
5045 dc_bpc = 16;
5046 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_48;
5047 DRM_DEBUG("%s: HDMI sink does deep color 48.\n",
5048 connector->name);
5049 }
5050
5051 if (dc_bpc == 0) {
5052 DRM_DEBUG("%s: No deep color support on this HDMI sink.\n",
5053 connector->name);
5054 return;
5055 }
5056
5057 DRM_DEBUG("%s: Assigning HDMI sink color depth as %d bpc.\n",
5058 connector->name, dc_bpc);
5059 info->bpc = dc_bpc;
5060
5061 /*
5062 * Deep color support mandates RGB444 support for all video
5063 * modes and forbids YCRCB422 support for all video modes per
5064 * HDMI 1.3 spec.
5065 */
5066 info->color_formats = DRM_COLOR_FORMAT_RGB444;
5067
5068 /* YCRCB444 is optional according to spec. */
5069 if (hdmi[6] & DRM_EDID_HDMI_DC_Y444) {
5070 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
5071 DRM_DEBUG("%s: HDMI sink does YCRCB444 in deep color.\n",
5072 connector->name);
5073 }
5074
5075 /*
5076 * Spec says that if any deep color mode is supported at all,
5077 * then deep color 36 bit must be supported.
5078 */
5079 if (!(hdmi[6] & DRM_EDID_HDMI_DC_36)) {
5080 DRM_DEBUG("%s: HDMI sink should do DC_36, but does not!\n",
5081 connector->name);
5082 }
5083}
5084
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03005085static void
5086drm_parse_hdmi_vsdb_video(struct drm_connector *connector, const u8 *db)
5087{
5088 struct drm_display_info *info = &connector->display_info;
5089 u8 len = cea_db_payload_len(db);
5090
Laurent Pincharta92d0832020-02-26 13:24:23 +02005091 info->is_hdmi = true;
5092
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03005093 if (len >= 6)
5094 info->dvi_dual = db[6] & 1;
5095 if (len >= 7)
5096 info->max_tmds_clock = db[7] * 5000;
5097
5098 DRM_DEBUG_KMS("HDMI: DVI dual %d, "
5099 "max TMDS clock %d kHz\n",
5100 info->dvi_dual,
5101 info->max_tmds_clock);
5102
5103 drm_parse_hdmi_deep_color_info(connector, db);
5104}
5105
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005106static void drm_parse_cea_ext(struct drm_connector *connector,
Keith Packard170178f2017-12-13 00:44:26 -08005107 const struct edid *edid)
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005108{
5109 struct drm_display_info *info = &connector->display_info;
5110 const u8 *edid_ext;
5111 int i, start, end;
5112
Mario Kleinerd0c94692014-03-27 19:59:39 +01005113 edid_ext = drm_find_cea_extension(edid);
5114 if (!edid_ext)
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005115 return;
Mario Kleinerd0c94692014-03-27 19:59:39 +01005116
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005117 info->cea_rev = edid_ext[1];
Mario Kleinerd0c94692014-03-27 19:59:39 +01005118
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005119 /* The existence of a CEA block should imply RGB support */
5120 info->color_formats = DRM_COLOR_FORMAT_RGB444;
5121 if (edid_ext[3] & EDID_CEA_YCRCB444)
5122 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
5123 if (edid_ext[3] & EDID_CEA_YCRCB422)
5124 info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
Mario Kleinerd0c94692014-03-27 19:59:39 +01005125
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005126 if (cea_db_offsets(edid_ext, &start, &end))
5127 return;
Mario Kleinerd0c94692014-03-27 19:59:39 +01005128
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005129 for_each_cea_db(edid_ext, i, start, end) {
5130 const u8 *db = &edid_ext[i];
Mario Kleinerd0c94692014-03-27 19:59:39 +01005131
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03005132 if (cea_db_is_hdmi_vsdb(db))
5133 drm_parse_hdmi_vsdb_video(connector, db);
Shashank Sharmaafa1c762017-03-13 16:54:01 +05305134 if (cea_db_is_hdmi_forum_vsdb(db))
5135 drm_parse_hdmi_forum_vsdb(connector, db);
Shashank Sharma832d4f22017-07-14 16:03:46 +05305136 if (cea_db_is_y420cmdb(db))
5137 drm_parse_y420cmdb_bitmap(connector, db);
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005138 if (cea_db_is_vcdb(db))
5139 drm_parse_vcdb(connector, db);
Uma Shankare85959d2019-05-16 19:40:08 +05305140 if (cea_db_is_hdmi_hdr_metadata_block(db))
5141 drm_parse_hdr_metadata_block(connector, db);
Mario Kleinerd0c94692014-03-27 19:59:39 +01005142 }
Mario Kleinerd0c94692014-03-27 19:59:39 +01005143}
5144
Manasi Navarea1d11d12020-03-10 16:16:51 -07005145static
5146void get_monitor_range(struct detailed_timing *timing,
5147 void *info_monitor_range)
5148{
5149 struct drm_monitor_range_info *monitor_range = info_monitor_range;
5150 const struct detailed_non_pixel *data = &timing->data.other_data;
5151 const struct detailed_data_monitor_range *range = &data->data.range;
5152
5153 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_MONITOR_RANGE))
5154 return;
5155
5156 /*
5157 * Check for flag range limits only. If flag == 1 then
5158 * no additional timing information provided.
5159 * Default GTF, GTF Secondary curve and CVT are not
5160 * supported
5161 */
5162 if (range->flags != DRM_EDID_RANGE_LIMITS_ONLY_FLAG)
5163 return;
5164
5165 monitor_range->min_vfreq = range->min_vfreq;
5166 monitor_range->max_vfreq = range->max_vfreq;
5167}
5168
5169static
5170void drm_get_monitor_range(struct drm_connector *connector,
5171 const struct edid *edid)
5172{
5173 struct drm_display_info *info = &connector->display_info;
5174
5175 if (!version_greater(edid, 1, 1))
5176 return;
5177
5178 drm_for_each_detailed_block((u8 *)edid, get_monitor_range,
5179 &info->monitor_range);
5180
5181 DRM_DEBUG_KMS("Supported Monitor Refresh rate range is %d Hz - %d Hz\n",
5182 info->monitor_range.min_vfreq,
5183 info->monitor_range.max_vfreq);
5184}
5185
Keith Packard170178f2017-12-13 00:44:26 -08005186/* A connector has no EDID information, so we've got no EDID to compute quirks from. Reset
5187 * all of the values which would have been set from EDID
5188 */
5189void
5190drm_reset_display_info(struct drm_connector *connector)
Jesse Barnes3b112282011-04-15 12:49:23 -07005191{
Ville Syrjälä18267502016-09-28 16:51:38 +03005192 struct drm_display_info *info = &connector->display_info;
Jesse Barnesebec9a7b2011-08-03 09:22:54 -07005193
Keith Packard170178f2017-12-13 00:44:26 -08005194 info->width_mm = 0;
5195 info->height_mm = 0;
5196
5197 info->bpc = 0;
5198 info->color_formats = 0;
5199 info->cea_rev = 0;
5200 info->max_tmds_clock = 0;
5201 info->dvi_dual = false;
Laurent Pincharta92d0832020-02-26 13:24:23 +02005202 info->is_hdmi = false;
Keith Packard170178f2017-12-13 00:44:26 -08005203 info->has_hdmi_infoframe = false;
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005204 info->rgb_quant_range_selectable = false;
Ville Syrjälä1f6b8ee2018-04-24 16:02:50 +03005205 memset(&info->hdmi, 0, sizeof(info->hdmi));
Keith Packard170178f2017-12-13 00:44:26 -08005206
5207 info->non_desktop = 0;
Manasi Navarea1d11d12020-03-10 16:16:51 -07005208 memset(&info->monitor_range, 0, sizeof(info->monitor_range));
Keith Packard170178f2017-12-13 00:44:26 -08005209}
Keith Packard170178f2017-12-13 00:44:26 -08005210
5211u32 drm_add_display_info(struct drm_connector *connector, const struct edid *edid)
5212{
5213 struct drm_display_info *info = &connector->display_info;
5214
5215 u32 quirks = edid_get_quirks(edid);
5216
Ville Syrjälä1f6b8ee2018-04-24 16:02:50 +03005217 drm_reset_display_info(connector);
5218
Jesse Barnes3b112282011-04-15 12:49:23 -07005219 info->width_mm = edid->width_cm * 10;
5220 info->height_mm = edid->height_cm * 10;
5221
Dave Airlie66660d42017-10-16 05:08:09 +01005222 info->non_desktop = !!(quirks & EDID_QUIRK_NON_DESKTOP);
5223
Manasi Navarea1d11d12020-03-10 16:16:51 -07005224 drm_get_monitor_range(connector, edid);
5225
Keith Packard170178f2017-12-13 00:44:26 -08005226 DRM_DEBUG_KMS("non_desktop set to %d\n", info->non_desktop);
5227
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005228 if (edid->revision < 3)
Keith Packard170178f2017-12-13 00:44:26 -08005229 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005230
5231 if (!(edid->input & DRM_EDID_INPUT_DIGITAL))
Keith Packard170178f2017-12-13 00:44:26 -08005232 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005233
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005234 drm_parse_cea_ext(connector, edid);
Mario Kleinerd0c94692014-03-27 19:59:39 +01005235
Mario Kleiner210a0212016-07-06 12:05:48 +02005236 /*
5237 * Digital sink with "DFP 1.x compliant TMDS" according to EDID 1.3?
5238 *
5239 * For such displays, the DFP spec 1.0, section 3.10 "EDID support"
5240 * tells us to assume 8 bpc color depth if the EDID doesn't have
5241 * extensions which tell otherwise.
5242 */
Ville Syrjälä3bde4492019-05-29 14:02:04 +03005243 if (info->bpc == 0 && edid->revision == 3 &&
5244 edid->input & DRM_EDID_DIGITAL_DFP_1_X) {
Mario Kleiner210a0212016-07-06 12:05:48 +02005245 info->bpc = 8;
5246 DRM_DEBUG("%s: Assigning DFP sink color depth as %d bpc.\n",
5247 connector->name, info->bpc);
5248 }
5249
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005250 /* Only defined for 1.4 with digital displays */
5251 if (edid->revision < 4)
Keith Packard170178f2017-12-13 00:44:26 -08005252 return quirks;
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005253
Jesse Barnes3b112282011-04-15 12:49:23 -07005254 switch (edid->input & DRM_EDID_DIGITAL_DEPTH_MASK) {
5255 case DRM_EDID_DIGITAL_DEPTH_6:
5256 info->bpc = 6;
5257 break;
5258 case DRM_EDID_DIGITAL_DEPTH_8:
5259 info->bpc = 8;
5260 break;
5261 case DRM_EDID_DIGITAL_DEPTH_10:
5262 info->bpc = 10;
5263 break;
5264 case DRM_EDID_DIGITAL_DEPTH_12:
5265 info->bpc = 12;
5266 break;
5267 case DRM_EDID_DIGITAL_DEPTH_14:
5268 info->bpc = 14;
5269 break;
5270 case DRM_EDID_DIGITAL_DEPTH_16:
5271 info->bpc = 16;
5272 break;
5273 case DRM_EDID_DIGITAL_DEPTH_UNDEF:
5274 default:
5275 info->bpc = 0;
5276 break;
5277 }
Jesse Barnesda05a5a72011-04-15 13:48:57 -07005278
Mario Kleinerd0c94692014-03-27 19:59:39 +01005279 DRM_DEBUG("%s: Assigning EDID-1.4 digital sink color depth as %d bpc.\n",
Jani Nikula25933822014-06-03 14:56:20 +03005280 connector->name, info->bpc);
Mario Kleinerd0c94692014-03-27 19:59:39 +01005281
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005282 info->color_formats |= DRM_COLOR_FORMAT_RGB444;
Lars-Peter Clausenee588082012-04-16 15:16:18 +02005283 if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB444)
5284 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
5285 if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB422)
5286 info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
Keith Packard170178f2017-12-13 00:44:26 -08005287 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005288}
5289
Jani Nikula43d16d82021-03-29 16:37:15 +03005290static int validate_displayid(const u8 *displayid, int length, int idx)
Dave Airliec97291772016-05-03 15:38:37 +10005291{
Ville Syrjäläbd1f64d2020-03-13 18:20:53 +02005292 int i, dispid_length;
Dave Airliec97291772016-05-03 15:38:37 +10005293 u8 csum = 0;
Jani Nikula43d16d82021-03-29 16:37:15 +03005294 const struct displayid_hdr *base;
Dave Airliec97291772016-05-03 15:38:37 +10005295
Jani Nikula43d16d82021-03-29 16:37:15 +03005296 base = (const struct displayid_hdr *)&displayid[idx];
Dave Airliec97291772016-05-03 15:38:37 +10005297
5298 DRM_DEBUG_KMS("base revision 0x%x, length %d, %d %d\n",
5299 base->rev, base->bytes, base->prod_id, base->ext_count);
5300
Ville Syrjäläbd1f64d2020-03-13 18:20:53 +02005301 /* +1 for DispID checksum */
5302 dispid_length = sizeof(*base) + base->bytes + 1;
5303 if (dispid_length > length - idx)
Dave Airliec97291772016-05-03 15:38:37 +10005304 return -EINVAL;
Ville Syrjäläbd1f64d2020-03-13 18:20:53 +02005305
5306 for (i = 0; i < dispid_length; i++)
5307 csum += displayid[idx + i];
Dave Airliec97291772016-05-03 15:38:37 +10005308 if (csum) {
Chris Wilson813a7872017-02-10 19:59:13 +00005309 DRM_NOTE("DisplayID checksum invalid, remainder is %d\n", csum);
Dave Airliec97291772016-05-03 15:38:37 +10005310 return -EINVAL;
5311 }
Ville Syrjäläbd1f64d2020-03-13 18:20:53 +02005312
Dave Airliec97291772016-05-03 15:38:37 +10005313 return 0;
5314}
5315
Dave Airliea39ed682016-05-02 08:35:05 +10005316static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *dev,
5317 struct displayid_detailed_timings_1 *timings)
5318{
5319 struct drm_display_mode *mode;
5320 unsigned pixel_clock = (timings->pixel_clock[0] |
5321 (timings->pixel_clock[1] << 8) |
Ville Syrjälä6292b8e2020-04-23 18:17:43 +03005322 (timings->pixel_clock[2] << 16)) + 1;
Dave Airliea39ed682016-05-02 08:35:05 +10005323 unsigned hactive = (timings->hactive[0] | timings->hactive[1] << 8) + 1;
5324 unsigned hblank = (timings->hblank[0] | timings->hblank[1] << 8) + 1;
5325 unsigned hsync = (timings->hsync[0] | (timings->hsync[1] & 0x7f) << 8) + 1;
5326 unsigned hsync_width = (timings->hsw[0] | timings->hsw[1] << 8) + 1;
5327 unsigned vactive = (timings->vactive[0] | timings->vactive[1] << 8) + 1;
5328 unsigned vblank = (timings->vblank[0] | timings->vblank[1] << 8) + 1;
5329 unsigned vsync = (timings->vsync[0] | (timings->vsync[1] & 0x7f) << 8) + 1;
5330 unsigned vsync_width = (timings->vsw[0] | timings->vsw[1] << 8) + 1;
5331 bool hsync_positive = (timings->hsync[1] >> 7) & 0x1;
5332 bool vsync_positive = (timings->vsync[1] >> 7) & 0x1;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05305333
Dave Airliea39ed682016-05-02 08:35:05 +10005334 mode = drm_mode_create(dev);
5335 if (!mode)
5336 return NULL;
5337
5338 mode->clock = pixel_clock * 10;
5339 mode->hdisplay = hactive;
5340 mode->hsync_start = mode->hdisplay + hsync;
5341 mode->hsync_end = mode->hsync_start + hsync_width;
5342 mode->htotal = mode->hdisplay + hblank;
5343
5344 mode->vdisplay = vactive;
5345 mode->vsync_start = mode->vdisplay + vsync;
5346 mode->vsync_end = mode->vsync_start + vsync_width;
5347 mode->vtotal = mode->vdisplay + vblank;
5348
5349 mode->flags = 0;
5350 mode->flags |= hsync_positive ? DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
5351 mode->flags |= vsync_positive ? DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
5352 mode->type = DRM_MODE_TYPE_DRIVER;
5353
5354 if (timings->flags & 0x80)
5355 mode->type |= DRM_MODE_TYPE_PREFERRED;
Dave Airliea39ed682016-05-02 08:35:05 +10005356 drm_mode_set_name(mode);
5357
5358 return mode;
5359}
5360
5361static int add_displayid_detailed_1_modes(struct drm_connector *connector,
Jani Nikula43d16d82021-03-29 16:37:15 +03005362 const struct displayid_block *block)
Dave Airliea39ed682016-05-02 08:35:05 +10005363{
5364 struct displayid_detailed_timing_block *det = (struct displayid_detailed_timing_block *)block;
5365 int i;
5366 int num_timings;
5367 struct drm_display_mode *newmode;
5368 int num_modes = 0;
5369 /* blocks must be multiple of 20 bytes length */
5370 if (block->num_bytes % 20)
5371 return 0;
5372
5373 num_timings = block->num_bytes / 20;
5374 for (i = 0; i < num_timings; i++) {
5375 struct displayid_detailed_timings_1 *timings = &det->timings[i];
5376
5377 newmode = drm_mode_displayid_detailed(connector->dev, timings);
5378 if (!newmode)
5379 continue;
5380
5381 drm_mode_probed_add(connector, newmode);
5382 num_modes++;
5383 }
5384 return num_modes;
5385}
5386
5387static int add_displayid_detailed_modes(struct drm_connector *connector,
5388 struct edid *edid)
5389{
Jani Nikula43d16d82021-03-29 16:37:15 +03005390 const u8 *displayid;
Ville Syrjälä23b03862020-03-13 18:20:49 +02005391 int length, idx;
Jani Nikula43d16d82021-03-29 16:37:15 +03005392 const struct displayid_block *block;
Dave Airliea39ed682016-05-02 08:35:05 +10005393 int num_modes = 0;
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03005394 int ext_index = 0;
Dave Airliea39ed682016-05-02 08:35:05 +10005395
Ville Syrjälä7f261af2020-05-27 16:03:09 +03005396 for (;;) {
5397 displayid = drm_find_displayid_extension(edid, &length, &idx,
5398 &ext_index);
5399 if (!displayid)
Dave Airliea39ed682016-05-02 08:35:05 +10005400 break;
Ville Syrjälä7f261af2020-05-27 16:03:09 +03005401
5402 idx += sizeof(struct displayid_hdr);
5403 for_each_displayid_db(displayid, block, idx, length) {
5404 switch (block->tag) {
5405 case DATA_BLOCK_TYPE_1_DETAILED_TIMING:
5406 num_modes += add_displayid_detailed_1_modes(connector, block);
5407 break;
5408 }
Dave Airliea39ed682016-05-02 08:35:05 +10005409 }
5410 }
Ville Syrjälä7f261af2020-05-27 16:03:09 +03005411
Dave Airliea39ed682016-05-02 08:35:05 +10005412 return num_modes;
5413}
5414
Jesse Barnes3b112282011-04-15 12:49:23 -07005415/**
Dave Airlief453ba02008-11-07 14:05:41 -08005416 * drm_add_edid_modes - add modes from EDID data, if available
5417 * @connector: connector we're probing
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005418 * @edid: EDID data
Dave Airlief453ba02008-11-07 14:05:41 -08005419 *
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +02005420 * Add the specified modes to the connector's mode list. Also fills out the
Jani Nikulac945b8c2017-11-01 16:21:01 +02005421 * &drm_display_info structure and ELD in @connector with any information which
5422 * can be derived from the edid.
Dave Airlief453ba02008-11-07 14:05:41 -08005423 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005424 * Return: The number of modes added or 0 if we couldn't find any.
Dave Airlief453ba02008-11-07 14:05:41 -08005425 */
5426int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
5427{
5428 int num_modes = 0;
5429 u32 quirks;
5430
5431 if (edid == NULL) {
Jani Nikulac945b8c2017-11-01 16:21:01 +02005432 clear_eld(connector);
Dave Airlief453ba02008-11-07 14:05:41 -08005433 return 0;
5434 }
Alex Deucher3c537882010-02-05 04:21:19 -05005435 if (!drm_edid_is_valid(edid)) {
Jani Nikulac945b8c2017-11-01 16:21:01 +02005436 clear_eld(connector);
Suraj Upadhyay6d45fff2020-07-18 20:39:55 +05305437 drm_warn(connector->dev, "%s: EDID invalid.\n",
Jani Nikula25933822014-06-03 14:56:20 +03005438 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08005439 return 0;
5440 }
5441
Jani Nikulac945b8c2017-11-01 16:21:01 +02005442 drm_edid_to_eld(connector, edid);
5443
Adam Jacksonc867df72010-03-29 21:43:21 +00005444 /*
Shashank Sharma0f0f8702017-07-13 21:03:09 +05305445 * CEA-861-F adds ycbcr capability map block, for HDMI 2.0 sinks.
5446 * To avoid multiple parsing of same block, lets parse that map
5447 * from sink info, before parsing CEA modes.
5448 */
Keith Packard170178f2017-12-13 00:44:26 -08005449 quirks = drm_add_display_info(connector, edid);
Shashank Sharma0f0f8702017-07-13 21:03:09 +05305450
5451 /*
Adam Jacksonc867df72010-03-29 21:43:21 +00005452 * EDID spec says modes should be preferred in this order:
5453 * - preferred detailed mode
5454 * - other detailed modes from base block
5455 * - detailed modes from extension blocks
5456 * - CVT 3-byte code modes
5457 * - standard timing codes
5458 * - established timing codes
5459 * - modes inferred from GTF or CVT range information
5460 *
Adam Jackson13931572010-08-03 14:38:19 -04005461 * We get this pretty much right.
Adam Jacksonc867df72010-03-29 21:43:21 +00005462 *
5463 * XXX order for additional mode types in extension blocks?
5464 */
Adam Jackson13931572010-08-03 14:38:19 -04005465 num_modes += add_detailed_modes(connector, edid, quirks);
5466 num_modes += add_cvt_modes(connector, edid);
Adam Jacksonc867df72010-03-29 21:43:21 +00005467 num_modes += add_standard_modes(connector, edid);
5468 num_modes += add_established_modes(connector, edid);
Christian Schmidt54ac76f2011-12-19 14:53:16 +00005469 num_modes += add_cea_modes(connector, edid);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03005470 num_modes += add_alternate_cea_modes(connector, edid);
Dave Airliea39ed682016-05-02 08:35:05 +10005471 num_modes += add_displayid_detailed_modes(connector, edid);
Ville Syrjälä4d53dc02015-05-08 17:45:07 +03005472 if (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF)
5473 num_modes += add_inferred_modes(connector, edid);
Dave Airlief453ba02008-11-07 14:05:41 -08005474
5475 if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
5476 edid_fixup_preferred(connector, quirks);
5477
Mario Kleinere10aec62016-07-06 12:05:44 +02005478 if (quirks & EDID_QUIRK_FORCE_6BPC)
5479 connector->display_info.bpc = 6;
5480
Rafał Miłecki49d45a312013-12-07 13:22:42 +01005481 if (quirks & EDID_QUIRK_FORCE_8BPC)
5482 connector->display_info.bpc = 8;
5483
Mario Kleinere345da82017-04-21 17:05:08 +02005484 if (quirks & EDID_QUIRK_FORCE_10BPC)
5485 connector->display_info.bpc = 10;
5486
Mario Kleinerbc5b9642014-05-23 21:40:55 +02005487 if (quirks & EDID_QUIRK_FORCE_12BPC)
5488 connector->display_info.bpc = 12;
5489
Dave Airlief453ba02008-11-07 14:05:41 -08005490 return num_modes;
5491}
5492EXPORT_SYMBOL(drm_add_edid_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005493
5494/**
5495 * drm_add_modes_noedid - add modes for the connectors without EDID
5496 * @connector: connector we're probing
5497 * @hdisplay: the horizontal display limit
5498 * @vdisplay: the vertical display limit
5499 *
5500 * Add the specified modes to the connector's mode list. Only when the
5501 * hdisplay/vdisplay is not beyond the given limit, it will be added.
5502 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005503 * Return: The number of modes added or 0 if we couldn't find any.
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005504 */
5505int drm_add_modes_noedid(struct drm_connector *connector,
5506 int hdisplay, int vdisplay)
5507{
5508 int i, count, num_modes = 0;
Chris Wilsonb1f559e2011-01-26 09:49:47 +00005509 struct drm_display_mode *mode;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005510 struct drm_device *dev = connector->dev;
5511
Daniel Vetterfbb40b22015-08-10 11:55:37 +02005512 count = ARRAY_SIZE(drm_dmt_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005513 if (hdisplay < 0)
5514 hdisplay = 0;
5515 if (vdisplay < 0)
5516 vdisplay = 0;
5517
5518 for (i = 0; i < count; i++) {
Chris Wilsonb1f559e2011-01-26 09:49:47 +00005519 const struct drm_display_mode *ptr = &drm_dmt_modes[i];
Suraj Upadhyay948de8422020-07-02 18:53:32 +05305520
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005521 if (hdisplay && vdisplay) {
5522 /*
5523 * Only when two are valid, they will be used to check
5524 * whether the mode should be added to the mode list of
5525 * the connector.
5526 */
5527 if (ptr->hdisplay > hdisplay ||
5528 ptr->vdisplay > vdisplay)
5529 continue;
5530 }
Adam Jacksonf985ded2009-11-23 14:23:04 -05005531 if (drm_mode_vrefresh(ptr) > 61)
5532 continue;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005533 mode = drm_mode_duplicate(dev, ptr);
5534 if (mode) {
5535 drm_mode_probed_add(connector, mode);
5536 num_modes++;
5537 }
5538 }
5539 return num_modes;
5540}
5541EXPORT_SYMBOL(drm_add_modes_noedid);
Thierry Reding10a85122012-11-21 15:31:35 +01005542
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005543/**
5544 * drm_set_preferred_mode - Sets the preferred mode of a connector
5545 * @connector: connector whose mode list should be processed
5546 * @hpref: horizontal resolution of preferred mode
5547 * @vpref: vertical resolution of preferred mode
5548 *
5549 * Marks a mode as preferred if it matches the resolution specified by @hpref
5550 * and @vpref.
5551 */
Gerd Hoffmann3cf70da2013-10-11 10:01:08 +02005552void drm_set_preferred_mode(struct drm_connector *connector,
5553 int hpref, int vpref)
5554{
5555 struct drm_display_mode *mode;
5556
5557 list_for_each_entry(mode, &connector->probed_modes, head) {
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005558 if (mode->hdisplay == hpref &&
Daniel Vetter9d3de132014-01-23 16:27:56 +01005559 mode->vdisplay == vpref)
Gerd Hoffmann3cf70da2013-10-11 10:01:08 +02005560 mode->type |= DRM_MODE_TYPE_PREFERRED;
5561 }
5562}
5563EXPORT_SYMBOL(drm_set_preferred_mode);
5564
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005565static bool is_hdmi2_sink(const struct drm_connector *connector)
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005566{
5567 /*
5568 * FIXME: sil-sii8620 doesn't have a connector around when
5569 * we need one, so we have to be prepared for a NULL connector.
5570 */
5571 if (!connector)
5572 return true;
5573
5574 return connector->display_info.hdmi.scdc.supported ||
5575 connector->display_info.color_formats & DRM_COLOR_FORMAT_YCRCB420;
5576}
5577
Uma Shankar2cdbfd62019-05-16 19:40:09 +05305578static inline bool is_eotf_supported(u8 output_eotf, u8 sink_eotf)
5579{
5580 return sink_eotf & BIT(output_eotf);
5581}
5582
5583/**
5584 * drm_hdmi_infoframe_set_hdr_metadata() - fill an HDMI DRM infoframe with
5585 * HDR metadata from userspace
5586 * @frame: HDMI DRM infoframe
Sean Paul6ac98822019-05-23 09:54:58 -04005587 * @conn_state: Connector state containing HDR metadata
Uma Shankar2cdbfd62019-05-16 19:40:09 +05305588 *
5589 * Return: 0 on success or a negative error code on failure.
5590 */
5591int
5592drm_hdmi_infoframe_set_hdr_metadata(struct hdmi_drm_infoframe *frame,
5593 const struct drm_connector_state *conn_state)
5594{
5595 struct drm_connector *connector;
5596 struct hdr_output_metadata *hdr_metadata;
5597 int err;
5598
5599 if (!frame || !conn_state)
5600 return -EINVAL;
5601
5602 connector = conn_state->connector;
5603
5604 if (!conn_state->hdr_output_metadata)
5605 return -EINVAL;
5606
5607 hdr_metadata = conn_state->hdr_output_metadata->data;
5608
5609 if (!hdr_metadata || !connector)
5610 return -EINVAL;
5611
5612 /* Sink EOTF is Bit map while infoframe is absolute values */
5613 if (!is_eotf_supported(hdr_metadata->hdmi_metadata_type1.eotf,
5614 connector->hdr_sink_metadata.hdmi_type1.eotf)) {
5615 DRM_DEBUG_KMS("EOTF Not Supported\n");
5616 return -EINVAL;
5617 }
5618
5619 err = hdmi_drm_infoframe_init(frame);
5620 if (err < 0)
5621 return err;
5622
5623 frame->eotf = hdr_metadata->hdmi_metadata_type1.eotf;
5624 frame->metadata_type = hdr_metadata->hdmi_metadata_type1.metadata_type;
5625
5626 BUILD_BUG_ON(sizeof(frame->display_primaries) !=
5627 sizeof(hdr_metadata->hdmi_metadata_type1.display_primaries));
5628 BUILD_BUG_ON(sizeof(frame->white_point) !=
5629 sizeof(hdr_metadata->hdmi_metadata_type1.white_point));
5630
5631 memcpy(&frame->display_primaries,
5632 &hdr_metadata->hdmi_metadata_type1.display_primaries,
5633 sizeof(frame->display_primaries));
5634
5635 memcpy(&frame->white_point,
5636 &hdr_metadata->hdmi_metadata_type1.white_point,
5637 sizeof(frame->white_point));
5638
5639 frame->max_display_mastering_luminance =
5640 hdr_metadata->hdmi_metadata_type1.max_display_mastering_luminance;
5641 frame->min_display_mastering_luminance =
5642 hdr_metadata->hdmi_metadata_type1.min_display_mastering_luminance;
5643 frame->max_fall = hdr_metadata->hdmi_metadata_type1.max_fall;
5644 frame->max_cll = hdr_metadata->hdmi_metadata_type1.max_cll;
5645
5646 return 0;
5647}
5648EXPORT_SYMBOL(drm_hdmi_infoframe_set_hdr_metadata);
5649
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005650static u8 drm_mode_hdmi_vic(const struct drm_connector *connector,
Ville Syrjälä949561e2019-10-04 17:19:13 +03005651 const struct drm_display_mode *mode)
5652{
5653 bool has_hdmi_infoframe = connector ?
5654 connector->display_info.has_hdmi_infoframe : false;
5655
5656 if (!has_hdmi_infoframe)
5657 return 0;
5658
5659 /* No HDMI VIC when signalling 3D video format */
5660 if (mode->flags & DRM_MODE_FLAG_3D_MASK)
5661 return 0;
5662
5663 return drm_match_hdmi_mode(mode);
5664}
5665
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005666static u8 drm_mode_cea_vic(const struct drm_connector *connector,
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005667 const struct drm_display_mode *mode)
5668{
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005669 u8 vic;
5670
5671 /*
5672 * HDMI spec says if a mode is found in HDMI 1.4b 4K modes
5673 * we should send its VIC in vendor infoframes, else send the
5674 * VIC in AVI infoframes. Lets check if this mode is present in
5675 * HDMI 1.4b 4K modes
5676 */
Ville Syrjälä949561e2019-10-04 17:19:13 +03005677 if (drm_mode_hdmi_vic(connector, mode))
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005678 return 0;
5679
5680 vic = drm_match_cea_mode(mode);
5681
5682 /*
5683 * HDMI 1.4 VIC range: 1 <= VIC <= 64 (CEA-861-D) but
5684 * HDMI 2.0 VIC range: 1 <= VIC <= 107 (CEA-861-F). So we
5685 * have to make sure we dont break HDMI 1.4 sinks.
5686 */
5687 if (!is_hdmi2_sink(connector) && vic > 64)
5688 return 0;
5689
5690 return vic;
5691}
5692
Thierry Reding10a85122012-11-21 15:31:35 +01005693/**
5694 * drm_hdmi_avi_infoframe_from_display_mode() - fill an HDMI AVI infoframe with
5695 * data from a DRM display mode
5696 * @frame: HDMI AVI infoframe
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005697 * @connector: the connector
Thierry Reding10a85122012-11-21 15:31:35 +01005698 * @mode: DRM display mode
5699 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005700 * Return: 0 on success or a negative error code on failure.
Thierry Reding10a85122012-11-21 15:31:35 +01005701 */
5702int
5703drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005704 const struct drm_connector *connector,
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005705 const struct drm_display_mode *mode)
Thierry Reding10a85122012-11-21 15:31:35 +01005706{
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305707 enum hdmi_picture_aspect picture_aspect;
Wayne Lind2b43472019-11-18 18:18:31 +08005708 u8 vic, hdmi_vic;
Thierry Reding10a85122012-11-21 15:31:35 +01005709
5710 if (!frame || !mode)
5711 return -EINVAL;
5712
Laurent Pinchart5ee0caf2020-02-26 13:24:21 +02005713 hdmi_avi_infoframe_init(frame);
Thierry Reding10a85122012-11-21 15:31:35 +01005714
Damien Lespiaubf02db92013-08-06 20:32:22 +01005715 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
5716 frame->pixel_repeat = 1;
5717
Wayne Lind2b43472019-11-18 18:18:31 +08005718 vic = drm_mode_cea_vic(connector, mode);
5719 hdmi_vic = drm_mode_hdmi_vic(connector, mode);
Shashank Sharma0c1f5282017-07-13 21:03:07 +05305720
Thierry Reding10a85122012-11-21 15:31:35 +01005721 frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE;
Vandana Kannan0967e6a2014-04-01 16:26:59 +05305722
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305723 /*
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03005724 * As some drivers don't support atomic, we can't use connector state.
5725 * So just initialize the frame with default values, just the same way
5726 * as it's done with other properties here.
5727 */
5728 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS;
5729 frame->itc = 0;
5730
5731 /*
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305732 * Populate picture aspect ratio from either
Wayne Lind2b43472019-11-18 18:18:31 +08005733 * user input (if specified) or from the CEA/HDMI mode lists.
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305734 */
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305735 picture_aspect = mode->picture_aspect_ratio;
Wayne Lind2b43472019-11-18 18:18:31 +08005736 if (picture_aspect == HDMI_PICTURE_ASPECT_NONE) {
5737 if (vic)
5738 picture_aspect = drm_get_cea_aspect_ratio(vic);
5739 else if (hdmi_vic)
5740 picture_aspect = drm_get_hdmi_aspect_ratio(hdmi_vic);
5741 }
Vandana Kannan0967e6a2014-04-01 16:26:59 +05305742
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305743 /*
5744 * The infoframe can't convey anything but none, 4:3
5745 * and 16:9, so if the user has asked for anything else
5746 * we can only satisfy it by specifying the right VIC.
5747 */
5748 if (picture_aspect > HDMI_PICTURE_ASPECT_16_9) {
Wayne Lind2b43472019-11-18 18:18:31 +08005749 if (vic) {
5750 if (picture_aspect != drm_get_cea_aspect_ratio(vic))
5751 return -EINVAL;
5752 } else if (hdmi_vic) {
5753 if (picture_aspect != drm_get_hdmi_aspect_ratio(hdmi_vic))
5754 return -EINVAL;
5755 } else {
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305756 return -EINVAL;
Wayne Lind2b43472019-11-18 18:18:31 +08005757 }
5758
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305759 picture_aspect = HDMI_PICTURE_ASPECT_NONE;
5760 }
5761
Wayne Lind2b43472019-11-18 18:18:31 +08005762 frame->video_code = vic;
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305763 frame->picture_aspect = picture_aspect;
Thierry Reding10a85122012-11-21 15:31:35 +01005764 frame->active_aspect = HDMI_ACTIVE_ASPECT_PICTURE;
Daniel Drake24d018052014-02-27 09:19:30 -06005765 frame->scan_mode = HDMI_SCAN_MODE_UNDERSCAN;
Thierry Reding10a85122012-11-21 15:31:35 +01005766
5767 return 0;
5768}
5769EXPORT_SYMBOL(drm_hdmi_avi_infoframe_from_display_mode);
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005770
Uma Shankar0d68b882019-02-19 22:43:00 +05305771/* HDMI Colorspace Spec Definitions */
5772#define FULL_COLORIMETRY_MASK 0x1FF
5773#define NORMAL_COLORIMETRY_MASK 0x3
5774#define EXTENDED_COLORIMETRY_MASK 0x7
5775#define EXTENDED_ACE_COLORIMETRY_MASK 0xF
5776
5777#define C(x) ((x) << 0)
5778#define EC(x) ((x) << 2)
5779#define ACE(x) ((x) << 5)
5780
5781#define HDMI_COLORIMETRY_NO_DATA 0x0
5782#define HDMI_COLORIMETRY_SMPTE_170M_YCC (C(1) | EC(0) | ACE(0))
5783#define HDMI_COLORIMETRY_BT709_YCC (C(2) | EC(0) | ACE(0))
5784#define HDMI_COLORIMETRY_XVYCC_601 (C(3) | EC(0) | ACE(0))
5785#define HDMI_COLORIMETRY_XVYCC_709 (C(3) | EC(1) | ACE(0))
5786#define HDMI_COLORIMETRY_SYCC_601 (C(3) | EC(2) | ACE(0))
5787#define HDMI_COLORIMETRY_OPYCC_601 (C(3) | EC(3) | ACE(0))
5788#define HDMI_COLORIMETRY_OPRGB (C(3) | EC(4) | ACE(0))
5789#define HDMI_COLORIMETRY_BT2020_CYCC (C(3) | EC(5) | ACE(0))
5790#define HDMI_COLORIMETRY_BT2020_RGB (C(3) | EC(6) | ACE(0))
5791#define HDMI_COLORIMETRY_BT2020_YCC (C(3) | EC(6) | ACE(0))
5792#define HDMI_COLORIMETRY_DCI_P3_RGB_D65 (C(3) | EC(7) | ACE(0))
5793#define HDMI_COLORIMETRY_DCI_P3_RGB_THEATER (C(3) | EC(7) | ACE(1))
5794
5795static const u32 hdmi_colorimetry_val[] = {
5796 [DRM_MODE_COLORIMETRY_NO_DATA] = HDMI_COLORIMETRY_NO_DATA,
5797 [DRM_MODE_COLORIMETRY_SMPTE_170M_YCC] = HDMI_COLORIMETRY_SMPTE_170M_YCC,
5798 [DRM_MODE_COLORIMETRY_BT709_YCC] = HDMI_COLORIMETRY_BT709_YCC,
5799 [DRM_MODE_COLORIMETRY_XVYCC_601] = HDMI_COLORIMETRY_XVYCC_601,
5800 [DRM_MODE_COLORIMETRY_XVYCC_709] = HDMI_COLORIMETRY_XVYCC_709,
5801 [DRM_MODE_COLORIMETRY_SYCC_601] = HDMI_COLORIMETRY_SYCC_601,
5802 [DRM_MODE_COLORIMETRY_OPYCC_601] = HDMI_COLORIMETRY_OPYCC_601,
5803 [DRM_MODE_COLORIMETRY_OPRGB] = HDMI_COLORIMETRY_OPRGB,
5804 [DRM_MODE_COLORIMETRY_BT2020_CYCC] = HDMI_COLORIMETRY_BT2020_CYCC,
5805 [DRM_MODE_COLORIMETRY_BT2020_RGB] = HDMI_COLORIMETRY_BT2020_RGB,
5806 [DRM_MODE_COLORIMETRY_BT2020_YCC] = HDMI_COLORIMETRY_BT2020_YCC,
5807};
5808
5809#undef C
5810#undef EC
5811#undef ACE
5812
5813/**
5814 * drm_hdmi_avi_infoframe_colorspace() - fill the HDMI AVI infoframe
5815 * colorspace information
5816 * @frame: HDMI AVI infoframe
5817 * @conn_state: connector state
5818 */
5819void
5820drm_hdmi_avi_infoframe_colorspace(struct hdmi_avi_infoframe *frame,
5821 const struct drm_connector_state *conn_state)
5822{
5823 u32 colorimetry_val;
5824 u32 colorimetry_index = conn_state->colorspace & FULL_COLORIMETRY_MASK;
5825
5826 if (colorimetry_index >= ARRAY_SIZE(hdmi_colorimetry_val))
5827 colorimetry_val = HDMI_COLORIMETRY_NO_DATA;
5828 else
5829 colorimetry_val = hdmi_colorimetry_val[colorimetry_index];
5830
5831 frame->colorimetry = colorimetry_val & NORMAL_COLORIMETRY_MASK;
5832 /*
5833 * ToDo: Extend it for ACE formats as well. Modify the infoframe
5834 * structure and extend it in drivers/video/hdmi
5835 */
5836 frame->extended_colorimetry = (colorimetry_val >> 2) &
5837 EXTENDED_COLORIMETRY_MASK;
5838}
5839EXPORT_SYMBOL(drm_hdmi_avi_infoframe_colorspace);
5840
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005841/**
5842 * drm_hdmi_avi_infoframe_quant_range() - fill the HDMI AVI infoframe
5843 * quantization range information
5844 * @frame: HDMI AVI infoframe
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005845 * @connector: the connector
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005846 * @mode: DRM display mode
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005847 * @rgb_quant_range: RGB quantization range (Q)
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005848 */
5849void
5850drm_hdmi_avi_infoframe_quant_range(struct hdmi_avi_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005851 const struct drm_connector *connector,
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005852 const struct drm_display_mode *mode,
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005853 enum hdmi_quantization_range rgb_quant_range)
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005854{
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005855 const struct drm_display_info *info = &connector->display_info;
5856
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005857 /*
5858 * CEA-861:
5859 * "A Source shall not send a non-zero Q value that does not correspond
5860 * to the default RGB Quantization Range for the transmitted Picture
5861 * unless the Sink indicates support for the Q bit in a Video
5862 * Capabilities Data Block."
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005863 *
5864 * HDMI 2.0 recommends sending non-zero Q when it does match the
5865 * default RGB quantization range for the mode, even when QS=0.
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005866 */
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005867 if (info->rgb_quant_range_selectable ||
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005868 rgb_quant_range == drm_default_rgb_quant_range(mode))
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005869 frame->quantization_range = rgb_quant_range;
5870 else
5871 frame->quantization_range = HDMI_QUANTIZATION_RANGE_DEFAULT;
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005872
5873 /*
5874 * CEA-861-F:
5875 * "When transmitting any RGB colorimetry, the Source should set the
5876 * YQ-field to match the RGB Quantization Range being transmitted
5877 * (e.g., when Limited Range RGB, set YQ=0 or when Full Range RGB,
5878 * set YQ=1) and the Sink shall ignore the YQ-field."
Ville Syrjälä9271c0c2017-11-08 17:25:04 +02005879 *
5880 * Unfortunate certain sinks (eg. VIZ Model 67/E261VA) get confused
5881 * by non-zero YQ when receiving RGB. There doesn't seem to be any
5882 * good way to tell which version of CEA-861 the sink supports, so
5883 * we limit non-zero YQ to HDMI 2.0 sinks only as HDMI 2.0 is based
5884 * on on CEA-861-F.
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005885 */
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005886 if (!is_hdmi2_sink(connector) ||
Ville Syrjälä9271c0c2017-11-08 17:25:04 +02005887 rgb_quant_range == HDMI_QUANTIZATION_RANGE_LIMITED)
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005888 frame->ycc_quantization_range =
5889 HDMI_YCC_QUANTIZATION_RANGE_LIMITED;
5890 else
5891 frame->ycc_quantization_range =
5892 HDMI_YCC_QUANTIZATION_RANGE_FULL;
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005893}
5894EXPORT_SYMBOL(drm_hdmi_avi_infoframe_quant_range);
5895
Ville Syrjälä076d9a52019-10-08 19:48:13 +03005896/**
5897 * drm_hdmi_avi_infoframe_bars() - fill the HDMI AVI infoframe
5898 * bar information
5899 * @frame: HDMI AVI infoframe
5900 * @conn_state: connector state
5901 */
5902void
5903drm_hdmi_avi_infoframe_bars(struct hdmi_avi_infoframe *frame,
5904 const struct drm_connector_state *conn_state)
5905{
5906 frame->right_bar = conn_state->tv.margins.right;
5907 frame->left_bar = conn_state->tv.margins.left;
5908 frame->top_bar = conn_state->tv.margins.top;
5909 frame->bottom_bar = conn_state->tv.margins.bottom;
5910}
5911EXPORT_SYMBOL(drm_hdmi_avi_infoframe_bars);
5912
Damien Lespiau4eed4a02013-09-25 16:45:26 +01005913static enum hdmi_3d_structure
5914s3d_structure_from_display_mode(const struct drm_display_mode *mode)
5915{
5916 u32 layout = mode->flags & DRM_MODE_FLAG_3D_MASK;
5917
5918 switch (layout) {
5919 case DRM_MODE_FLAG_3D_FRAME_PACKING:
5920 return HDMI_3D_STRUCTURE_FRAME_PACKING;
5921 case DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE:
5922 return HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE;
5923 case DRM_MODE_FLAG_3D_LINE_ALTERNATIVE:
5924 return HDMI_3D_STRUCTURE_LINE_ALTERNATIVE;
5925 case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL:
5926 return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL;
5927 case DRM_MODE_FLAG_3D_L_DEPTH:
5928 return HDMI_3D_STRUCTURE_L_DEPTH;
5929 case DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH:
5930 return HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH;
5931 case DRM_MODE_FLAG_3D_TOP_AND_BOTTOM:
5932 return HDMI_3D_STRUCTURE_TOP_AND_BOTTOM;
5933 case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF:
5934 return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF;
5935 default:
5936 return HDMI_3D_STRUCTURE_INVALID;
5937 }
5938}
5939
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005940/**
5941 * drm_hdmi_vendor_infoframe_from_display_mode() - fill an HDMI infoframe with
5942 * data from a DRM display mode
5943 * @frame: HDMI vendor infoframe
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005944 * @connector: the connector
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005945 * @mode: DRM display mode
5946 *
5947 * Note that there's is a need to send HDMI vendor infoframes only when using a
5948 * 4k or stereoscopic 3D mode. So when giving any other mode as input this
5949 * function will return -EINVAL, error that can be safely ignored.
5950 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005951 * Return: 0 on success or a negative error code on failure.
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005952 */
5953int
5954drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005955 const struct drm_connector *connector,
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005956 const struct drm_display_mode *mode)
5957{
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005958 /*
5959 * FIXME: sil-sii8620 doesn't have a connector around when
5960 * we need one, so we have to be prepared for a NULL connector.
5961 */
5962 bool has_hdmi_infoframe = connector ?
5963 connector->display_info.has_hdmi_infoframe : false;
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005964 int err;
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005965
5966 if (!frame || !mode)
5967 return -EINVAL;
5968
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005969 if (!has_hdmi_infoframe)
5970 return -EINVAL;
5971
Ville Syrjälä949561e2019-10-04 17:19:13 +03005972 err = hdmi_vendor_infoframe_init(frame);
5973 if (err < 0)
5974 return err;
Damien Lespiau4eed4a02013-09-25 16:45:26 +01005975
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005976 /*
5977 * Even if it's not absolutely necessary to send the infoframe
5978 * (ie.vic==0 and s3d_struct==0) we will still send it if we
5979 * know that the sink can handle it. This is based on a
5980 * suggestion in HDMI 2.0 Appendix F. Apparently some sinks
5981 * have trouble realizing that they shuld switch from 3D to 2D
5982 * mode if the source simply stops sending the infoframe when
5983 * it wants to switch from 3D to 2D.
5984 */
Ville Syrjälä949561e2019-10-04 17:19:13 +03005985 frame->vic = drm_mode_hdmi_vic(connector, mode);
Ville Syrjäläf1781e92017-11-13 19:04:19 +02005986 frame->s3d_struct = s3d_structure_from_display_mode(mode);
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005987
5988 return 0;
5989}
5990EXPORT_SYMBOL(drm_hdmi_vendor_infoframe_from_display_mode);
Dave Airlie40d9b042014-10-20 16:29:33 +10005991
Ville Syrjälä7f261af2020-05-27 16:03:09 +03005992static void drm_parse_tiled_block(struct drm_connector *connector,
5993 const struct displayid_block *block)
Dave Airlie5e546cd2016-05-03 15:31:12 +10005994{
Ville Syrjälä092c3672020-03-13 18:20:54 +02005995 const struct displayid_tiled_block *tile = (struct displayid_tiled_block *)block;
Dave Airlie5e546cd2016-05-03 15:31:12 +10005996 u16 w, h;
5997 u8 tile_v_loc, tile_h_loc;
5998 u8 num_v_tile, num_h_tile;
5999 struct drm_tile_group *tg;
6000
6001 w = tile->tile_size[0] | tile->tile_size[1] << 8;
6002 h = tile->tile_size[2] | tile->tile_size[3] << 8;
6003
6004 num_v_tile = (tile->topo[0] & 0xf) | (tile->topo[2] & 0x30);
6005 num_h_tile = (tile->topo[0] >> 4) | ((tile->topo[2] >> 2) & 0x30);
6006 tile_v_loc = (tile->topo[1] & 0xf) | ((tile->topo[2] & 0x3) << 4);
6007 tile_h_loc = (tile->topo[1] >> 4) | (((tile->topo[2] >> 2) & 0x3) << 4);
6008
6009 connector->has_tile = true;
6010 if (tile->tile_cap & 0x80)
6011 connector->tile_is_single_monitor = true;
6012
6013 connector->num_h_tile = num_h_tile + 1;
6014 connector->num_v_tile = num_v_tile + 1;
6015 connector->tile_h_loc = tile_h_loc;
6016 connector->tile_v_loc = tile_v_loc;
6017 connector->tile_h_size = w + 1;
6018 connector->tile_v_size = h + 1;
6019
6020 DRM_DEBUG_KMS("tile cap 0x%x\n", tile->tile_cap);
6021 DRM_DEBUG_KMS("tile_size %d x %d\n", w + 1, h + 1);
6022 DRM_DEBUG_KMS("topo num tiles %dx%d, location %dx%d\n",
6023 num_h_tile + 1, num_v_tile + 1, tile_h_loc, tile_v_loc);
6024 DRM_DEBUG_KMS("vend %c%c%c\n", tile->topology_id[0], tile->topology_id[1], tile->topology_id[2]);
6025
6026 tg = drm_mode_get_tile_group(connector->dev, tile->topology_id);
Dave Airlie5e546cd2016-05-03 15:31:12 +10006027 if (!tg)
Dave Airlie5e546cd2016-05-03 15:31:12 +10006028 tg = drm_mode_create_tile_group(connector->dev, tile->topology_id);
Dave Airlie5e546cd2016-05-03 15:31:12 +10006029 if (!tg)
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006030 return;
Dave Airlie5e546cd2016-05-03 15:31:12 +10006031
6032 if (connector->tile_group != tg) {
6033 /* if we haven't got a pointer,
6034 take the reference, drop ref to old tile group */
Ville Syrjälä392f9fc2020-05-27 16:03:10 +03006035 if (connector->tile_group)
Dave Airlie5e546cd2016-05-03 15:31:12 +10006036 drm_mode_put_tile_group(connector->dev, connector->tile_group);
Dave Airlie5e546cd2016-05-03 15:31:12 +10006037 connector->tile_group = tg;
Ville Syrjälä392f9fc2020-05-27 16:03:10 +03006038 } else {
Dave Airlie5e546cd2016-05-03 15:31:12 +10006039 /* if same tile group, then release the ref we just took. */
6040 drm_mode_put_tile_group(connector->dev, tg);
Ville Syrjälä392f9fc2020-05-27 16:03:10 +03006041 }
Dave Airlie5e546cd2016-05-03 15:31:12 +10006042}
6043
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006044static void drm_displayid_parse_tiled(struct drm_connector *connector,
6045 const u8 *displayid, int length, int idx)
Dave Airlie40d9b042014-10-20 16:29:33 +10006046{
Ville Syrjälä092c3672020-03-13 18:20:54 +02006047 const struct displayid_block *block;
Dave Airlie40d9b042014-10-20 16:29:33 +10006048
Tomas Bzatek3a4a2ea2016-05-01 15:02:45 +02006049 idx += sizeof(struct displayid_hdr);
Andres Rodriguez80d42db2019-06-19 14:30:33 -04006050 for_each_displayid_db(displayid, block, idx, length) {
Tomas Bzatek3a4a2ea2016-05-01 15:02:45 +02006051 DRM_DEBUG_KMS("block id 0x%x, rev %d, len %d\n",
6052 block->tag, block->rev, block->num_bytes);
Dave Airlie40d9b042014-10-20 16:29:33 +10006053
Tomas Bzatek3a4a2ea2016-05-01 15:02:45 +02006054 switch (block->tag) {
6055 case DATA_BLOCK_TILED_DISPLAY:
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006056 drm_parse_tiled_block(connector, block);
Tomas Bzatek3a4a2ea2016-05-01 15:02:45 +02006057 break;
6058 default:
6059 DRM_DEBUG_KMS("found DisplayID tag 0x%x, unhandled\n", block->tag);
6060 break;
6061 }
Dave Airlie40d9b042014-10-20 16:29:33 +10006062 }
Dave Airlie40d9b042014-10-20 16:29:33 +10006063}
6064
Ville Syrjälä092c3672020-03-13 18:20:54 +02006065void drm_update_tile_info(struct drm_connector *connector,
6066 const struct edid *edid)
Dave Airlie40d9b042014-10-20 16:29:33 +10006067{
Ville Syrjälä092c3672020-03-13 18:20:54 +02006068 const void *displayid = NULL;
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03006069 int ext_index = 0;
Ville Syrjälä23b03862020-03-13 18:20:49 +02006070 int length, idx;
Ville Syrjälä36881182020-03-13 18:20:48 +02006071
Dave Airlie40d9b042014-10-20 16:29:33 +10006072 connector->has_tile = false;
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006073 for (;;) {
6074 displayid = drm_find_displayid_extension(edid, &length, &idx,
6075 &ext_index);
6076 if (!displayid)
6077 break;
6078
6079 drm_displayid_parse_tiled(connector, displayid, length, idx);
Dave Airlie40d9b042014-10-20 16:29:33 +10006080 }
6081
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006082 if (!connector->has_tile && connector->tile_group) {
Dave Airlie40d9b042014-10-20 16:29:33 +10006083 drm_mode_put_tile_group(connector->dev, connector->tile_group);
6084 connector->tile_group = NULL;
6085 }
Dave Airlie40d9b042014-10-20 16:29:33 +10006086}