blob: 12893e7be89bb8108f7b65c112724ce897e188c0 [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
Jani Nikula18a9cbb2021-08-31 17:17:33 +030031#include <linux/bitfield.h>
Thierry Reding10a85122012-11-21 15:31:35 +010032#include <linux/hdmi.h>
Dave Airlief453ba02008-11-07 14:05:41 -080033#include <linux/i2c.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030034#include <linux/kernel.h>
Adam Jackson47819ba2012-05-30 16:42:39 -040035#include <linux/module.h>
Thomas Zimmermann36b73b02021-01-18 14:14:15 +010036#include <linux/pci.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030037#include <linux/slab.h>
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +010038#include <linux/vga_switcheroo.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030039
40#include <drm/drm_displayid.h>
41#include <drm/drm_drv.h>
David Howells760285e2012-10-02 18:01:07 +010042#include <drm/drm_edid.h>
Laurent Pinchart93382032016-11-28 20:51:09 +020043#include <drm/drm_encoder.h>
Jani Nikula9c79ede2019-05-06 12:52:48 +030044#include <drm/drm_print.h>
Shashank Sharma62c58af2017-03-13 16:54:02 +053045#include <drm/drm_scdc_helper.h>
Dave Airlief453ba02008-11-07 14:05:41 -080046
Takashi Iwai969218f2017-01-17 17:43:29 +010047#include "drm_crtc_internal.h"
48
Adam Jackson13931572010-08-03 14:38:19 -040049#define version_greater(edid, maj, min) \
50 (((edid)->version > (maj)) || \
51 ((edid)->version == (maj) && (edid)->revision > (min)))
Dave Airlief453ba02008-11-07 14:05:41 -080052
Jani Nikula37eab1f2021-08-31 17:17:32 +030053static int oui(u8 first, u8 second, u8 third)
54{
55 return (first << 16) | (second << 8) | third;
56}
57
Adam Jacksond1ff6402010-03-29 21:43:26 +000058#define EDID_EST_TIMINGS 16
59#define EDID_STD_TIMINGS 8
60#define EDID_DETAILED_TIMINGS 4
Dave Airlief453ba02008-11-07 14:05:41 -080061
62/*
63 * EDID blocks out in the wild have a variety of bugs, try to collect
64 * them here (note that userspace may work around broken monitors first,
65 * but fixes should make their way here so that the kernel "just works"
66 * on as many displays as possible).
67 */
68
69/* First detailed mode wrong, use largest 60Hz mode */
70#define EDID_QUIRK_PREFER_LARGE_60 (1 << 0)
71/* Reported 135MHz pixel clock is too high, needs adjustment */
72#define EDID_QUIRK_135_CLOCK_TOO_HIGH (1 << 1)
73/* Prefer the largest mode at 75 Hz */
74#define EDID_QUIRK_PREFER_LARGE_75 (1 << 2)
75/* Detail timing is in cm not mm */
76#define EDID_QUIRK_DETAILED_IN_CM (1 << 3)
77/* Detailed timing descriptors have bogus size values, so just take the
78 * maximum size and use that.
79 */
80#define EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE (1 << 4)
Dave Airlief453ba02008-11-07 14:05:41 -080081/* use +hsync +vsync for detailed mode */
82#define EDID_QUIRK_DETAILED_SYNC_PP (1 << 6)
Adam Jacksonbc42aab2012-05-23 16:26:54 -040083/* Force reduced-blanking timings for detailed modes */
84#define EDID_QUIRK_FORCE_REDUCED_BLANKING (1 << 7)
Rafał Miłecki49d45a312013-12-07 13:22:42 +010085/* Force 8bpc */
86#define EDID_QUIRK_FORCE_8BPC (1 << 8)
Mario Kleinerbc5b9642014-05-23 21:40:55 +020087/* Force 12bpc */
88#define EDID_QUIRK_FORCE_12BPC (1 << 9)
Mario Kleinere10aec62016-07-06 12:05:44 +020089/* Force 6bpc */
90#define EDID_QUIRK_FORCE_6BPC (1 << 10)
Mario Kleinere345da82017-04-21 17:05:08 +020091/* Force 10bpc */
92#define EDID_QUIRK_FORCE_10BPC (1 << 11)
Dave Airlie66660d42017-10-16 05:08:09 +010093/* Non desktop display (i.e. HMD) */
94#define EDID_QUIRK_NON_DESKTOP (1 << 12)
Alex Deucher3c537882010-02-05 04:21:19 -050095
Adam Jackson13931572010-08-03 14:38:19 -040096struct detailed_mode_closure {
97 struct drm_connector *connector;
98 struct edid *edid;
99 bool preferred;
100 u32 quirks;
101 int modes;
102};
Dave Airlief453ba02008-11-07 14:05:41 -0800103
Zhao Yakui5c612592009-06-22 13:17:10 +0800104#define LEVEL_DMT 0
105#define LEVEL_GTF 1
Adam Jackson7a374352010-03-29 21:43:30 +0000106#define LEVEL_GTF2 2
107#define LEVEL_CVT 3
Zhao Yakui5c612592009-06-22 13:17:10 +0800108
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700109#define EDID_QUIRK(vend_chr_0, vend_chr_1, vend_chr_2, product_id, _quirks) \
Douglas Andersone8de4d52021-09-14 13:21:51 -0700110{ \
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700111 .panel_id = drm_edid_encode_panel_id(vend_chr_0, vend_chr_1, vend_chr_2, \
112 product_id), \
Douglas Andersone8de4d52021-09-14 13:21:51 -0700113 .quirks = _quirks \
114}
115
Jani Nikula23c4cfb2016-12-28 13:06:26 +0200116static const struct edid_quirk {
Douglas Andersone8de4d52021-09-14 13:21:51 -0700117 u32 panel_id;
Dave Airlief453ba02008-11-07 14:05:41 -0800118 u32 quirks;
119} edid_quirk_list[] = {
120 /* Acer AL1706 */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700121 EDID_QUIRK('A', 'C', 'R', 44358, EDID_QUIRK_PREFER_LARGE_60),
Dave Airlief453ba02008-11-07 14:05:41 -0800122 /* Acer F51 */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700123 EDID_QUIRK('A', 'P', 'I', 0x7602, EDID_QUIRK_PREFER_LARGE_60),
Dave Airlief453ba02008-11-07 14:05:41 -0800124
Mario Kleinere10aec62016-07-06 12:05:44 +0200125 /* AEO model 0 reports 8 bpc, but is a 6 bpc panel */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700126 EDID_QUIRK('A', 'E', 'O', 0, EDID_QUIRK_FORCE_6BPC),
Mario Kleinere10aec62016-07-06 12:05:44 +0200127
Kai-Heng Feng0711a432018-10-02 23:29:11 +0800128 /* BOE model on HP Pavilion 15-n233sl reports 8 bpc, but is a 6 bpc panel */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700129 EDID_QUIRK('B', 'O', 'E', 0x78b, EDID_QUIRK_FORCE_6BPC),
Kai-Heng Feng0711a432018-10-02 23:29:11 +0800130
Kai-Heng Feng06998a752018-02-18 16:53:59 +0800131 /* CPT panel of Asus UX303LA reports 8 bpc, but is a 6 bpc panel */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700132 EDID_QUIRK('C', 'P', 'T', 0x17df, EDID_QUIRK_FORCE_6BPC),
Kai-Heng Feng06998a752018-02-18 16:53:59 +0800133
Kai-Heng Feng25da7502018-08-23 05:53:32 +0000134 /* SDC panel of Lenovo B50-80 reports 8 bpc, but is a 6 bpc panel */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700135 EDID_QUIRK('S', 'D', 'C', 0x3652, EDID_QUIRK_FORCE_6BPC),
Kai-Heng Feng25da7502018-08-23 05:53:32 +0000136
Lee, Shawn C922dcef2018-10-28 22:49:33 -0700137 /* BOE model 0x0771 reports 8 bpc, but is a 6 bpc panel */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700138 EDID_QUIRK('B', 'O', 'E', 0x0771, EDID_QUIRK_FORCE_6BPC),
Lee, Shawn C922dcef2018-10-28 22:49:33 -0700139
Dave Airlief453ba02008-11-07 14:05:41 -0800140 /* Belinea 10 15 55 */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700141 EDID_QUIRK('M', 'A', 'X', 1516, EDID_QUIRK_PREFER_LARGE_60),
142 EDID_QUIRK('M', 'A', 'X', 0x77e, EDID_QUIRK_PREFER_LARGE_60),
Dave Airlief453ba02008-11-07 14:05:41 -0800143
144 /* Envision Peripherals, Inc. EN-7100e */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700145 EDID_QUIRK('E', 'P', 'I', 59264, EDID_QUIRK_135_CLOCK_TOO_HIGH),
Adam Jacksonba1163d2010-04-06 16:11:00 +0000146 /* Envision EN2028 */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700147 EDID_QUIRK('E', 'P', 'I', 8232, EDID_QUIRK_PREFER_LARGE_60),
Dave Airlief453ba02008-11-07 14:05:41 -0800148
149 /* Funai Electronics PM36B */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700150 EDID_QUIRK('F', 'C', 'M', 13600, EDID_QUIRK_PREFER_LARGE_75 |
Douglas Andersone8de4d52021-09-14 13:21:51 -0700151 EDID_QUIRK_DETAILED_IN_CM),
Dave Airlief453ba02008-11-07 14:05:41 -0800152
Mario Kleinere345da82017-04-21 17:05:08 +0200153 /* LGD panel of HP zBook 17 G2, eDP 10 bpc, but reports unknown bpc */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700154 EDID_QUIRK('L', 'G', 'D', 764, EDID_QUIRK_FORCE_10BPC),
Mario Kleinere345da82017-04-21 17:05:08 +0200155
Dave Airlief453ba02008-11-07 14:05:41 -0800156 /* LG Philips LCD LP154W01-A5 */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700157 EDID_QUIRK('L', 'P', 'L', 0, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE),
158 EDID_QUIRK('L', 'P', 'L', 0x2a00, EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE),
Dave Airlief453ba02008-11-07 14:05:41 -0800159
Dave Airlief453ba02008-11-07 14:05:41 -0800160 /* Samsung SyncMaster 205BW. Note: irony */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700161 EDID_QUIRK('S', 'A', 'M', 541, EDID_QUIRK_DETAILED_SYNC_PP),
Dave Airlief453ba02008-11-07 14:05:41 -0800162 /* Samsung SyncMaster 22[5-6]BW */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700163 EDID_QUIRK('S', 'A', 'M', 596, EDID_QUIRK_PREFER_LARGE_60),
164 EDID_QUIRK('S', 'A', 'M', 638, EDID_QUIRK_PREFER_LARGE_60),
Adam Jacksonbc42aab2012-05-23 16:26:54 -0400165
Mario Kleinerbc5b9642014-05-23 21:40:55 +0200166 /* Sony PVM-2541A does up to 12 bpc, but only reports max 8 bpc */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700167 EDID_QUIRK('S', 'N', 'Y', 0x2541, EDID_QUIRK_FORCE_12BPC),
Mario Kleinerbc5b9642014-05-23 21:40:55 +0200168
Adam Jacksonbc42aab2012-05-23 16:26:54 -0400169 /* ViewSonic VA2026w */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700170 EDID_QUIRK('V', 'S', 'C', 5020, EDID_QUIRK_FORCE_REDUCED_BLANKING),
Alex Deucher118bdbd2013-08-12 11:04:29 -0400171
172 /* Medion MD 30217 PG */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700173 EDID_QUIRK('M', 'E', 'D', 0x7b8, EDID_QUIRK_PREFER_LARGE_75),
Rafał Miłecki49d45a312013-12-07 13:22:42 +0100174
Kai-Heng Feng11bcf5f2019-04-02 11:30:37 +0800175 /* Lenovo G50 */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700176 EDID_QUIRK('S', 'D', 'C', 18514, EDID_QUIRK_FORCE_6BPC),
Kai-Heng Feng11bcf5f2019-04-02 11:30:37 +0800177
Rafał Miłecki49d45a312013-12-07 13:22:42 +0100178 /* Panel in Samsung NP700G7A-S01PL notebook reports 6bpc */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700179 EDID_QUIRK('S', 'E', 'C', 0xd033, EDID_QUIRK_FORCE_8BPC),
Tomeu Vizoso36fc5792017-02-20 16:25:45 +0100180
181 /* Rotel RSX-1058 forwards sink's EDID but only does HDMI 1.1*/
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700182 EDID_QUIRK('E', 'T', 'R', 13896, EDID_QUIRK_FORCE_8BPC),
Dave Airlieacb1d8e2017-10-16 05:26:19 +0100183
Andres Rodriguez30d62d42019-05-02 15:31:57 -0400184 /* Valve Index Headset */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700185 EDID_QUIRK('V', 'L', 'V', 0x91a8, EDID_QUIRK_NON_DESKTOP),
186 EDID_QUIRK('V', 'L', 'V', 0x91b0, EDID_QUIRK_NON_DESKTOP),
187 EDID_QUIRK('V', 'L', 'V', 0x91b1, EDID_QUIRK_NON_DESKTOP),
188 EDID_QUIRK('V', 'L', 'V', 0x91b2, EDID_QUIRK_NON_DESKTOP),
189 EDID_QUIRK('V', 'L', 'V', 0x91b3, EDID_QUIRK_NON_DESKTOP),
190 EDID_QUIRK('V', 'L', 'V', 0x91b4, EDID_QUIRK_NON_DESKTOP),
191 EDID_QUIRK('V', 'L', 'V', 0x91b5, EDID_QUIRK_NON_DESKTOP),
192 EDID_QUIRK('V', 'L', 'V', 0x91b6, EDID_QUIRK_NON_DESKTOP),
193 EDID_QUIRK('V', 'L', 'V', 0x91b7, EDID_QUIRK_NON_DESKTOP),
194 EDID_QUIRK('V', 'L', 'V', 0x91b8, EDID_QUIRK_NON_DESKTOP),
195 EDID_QUIRK('V', 'L', 'V', 0x91b9, EDID_QUIRK_NON_DESKTOP),
196 EDID_QUIRK('V', 'L', 'V', 0x91ba, EDID_QUIRK_NON_DESKTOP),
197 EDID_QUIRK('V', 'L', 'V', 0x91bb, EDID_QUIRK_NON_DESKTOP),
198 EDID_QUIRK('V', 'L', 'V', 0x91bc, EDID_QUIRK_NON_DESKTOP),
199 EDID_QUIRK('V', 'L', 'V', 0x91bd, EDID_QUIRK_NON_DESKTOP),
200 EDID_QUIRK('V', 'L', 'V', 0x91be, EDID_QUIRK_NON_DESKTOP),
201 EDID_QUIRK('V', 'L', 'V', 0x91bf, EDID_QUIRK_NON_DESKTOP),
Andres Rodriguez30d62d42019-05-02 15:31:57 -0400202
Lubosz Sarnecki69313172018-05-29 13:52:15 +0200203 /* HTC Vive and Vive Pro VR Headsets */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700204 EDID_QUIRK('H', 'V', 'R', 0xaa01, EDID_QUIRK_NON_DESKTOP),
205 EDID_QUIRK('H', 'V', 'R', 0xaa02, EDID_QUIRK_NON_DESKTOP),
Philipp Zabelb3b12ea2018-02-19 18:59:36 +0100206
Jan Schmidt5a3f6102020-05-08 04:06:28 +1000207 /* Oculus Rift DK1, DK2, CV1 and Rift S VR Headsets */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700208 EDID_QUIRK('O', 'V', 'R', 0x0001, EDID_QUIRK_NON_DESKTOP),
209 EDID_QUIRK('O', 'V', 'R', 0x0003, EDID_QUIRK_NON_DESKTOP),
210 EDID_QUIRK('O', 'V', 'R', 0x0004, EDID_QUIRK_NON_DESKTOP),
211 EDID_QUIRK('O', 'V', 'R', 0x0012, EDID_QUIRK_NON_DESKTOP),
Philipp Zabel90eda8f2018-02-19 18:59:37 +0100212
213 /* Windows Mixed Reality Headsets */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700214 EDID_QUIRK('A', 'C', 'R', 0x7fce, EDID_QUIRK_NON_DESKTOP),
215 EDID_QUIRK('H', 'P', 'N', 0x3515, EDID_QUIRK_NON_DESKTOP),
216 EDID_QUIRK('L', 'E', 'N', 0x0408, EDID_QUIRK_NON_DESKTOP),
217 EDID_QUIRK('L', 'E', 'N', 0xb800, EDID_QUIRK_NON_DESKTOP),
218 EDID_QUIRK('F', 'U', 'J', 0x1970, EDID_QUIRK_NON_DESKTOP),
219 EDID_QUIRK('D', 'E', 'L', 0x7fce, EDID_QUIRK_NON_DESKTOP),
220 EDID_QUIRK('S', 'E', 'C', 0x144a, EDID_QUIRK_NON_DESKTOP),
221 EDID_QUIRK('A', 'U', 'S', 0xc102, EDID_QUIRK_NON_DESKTOP),
Philipp Zabelccffc9e2018-02-19 18:59:38 +0100222
223 /* Sony PlayStation VR Headset */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700224 EDID_QUIRK('S', 'N', 'Y', 0x0704, EDID_QUIRK_NON_DESKTOP),
Ryan Pavlik29054232018-12-03 10:46:44 -0600225
226 /* Sensics VR Headsets */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700227 EDID_QUIRK('S', 'E', 'N', 0x1019, EDID_QUIRK_NON_DESKTOP),
Ryan Pavlik29054232018-12-03 10:46:44 -0600228
229 /* OSVR HDK and HDK2 VR Headsets */
Douglas Anderson7d1be0a02021-09-24 07:53:21 -0700230 EDID_QUIRK('S', 'V', 'R', 0x1019, EDID_QUIRK_NON_DESKTOP),
Dave Airlief453ba02008-11-07 14:05:41 -0800231};
232
Thierry Redinga6b21832012-11-23 15:01:42 +0100233/*
234 * Autogenerated from the DMT spec.
235 * This table is copied from xfree86/modes/xf86EdidModes.c.
236 */
237static const struct drm_display_mode drm_dmt_modes[] = {
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300238 /* 0x01 - 640x350@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100239 { DRM_MODE("640x350", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
240 736, 832, 0, 350, 382, 385, 445, 0,
241 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300242 /* 0x02 - 640x400@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100243 { DRM_MODE("640x400", DRM_MODE_TYPE_DRIVER, 31500, 640, 672,
244 736, 832, 0, 400, 401, 404, 445, 0,
245 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300246 /* 0x03 - 720x400@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100247 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 756,
248 828, 936, 0, 400, 401, 404, 446, 0,
249 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300250 /* 0x04 - 640x480@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100251 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300252 752, 800, 0, 480, 490, 492, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100253 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300254 /* 0x05 - 640x480@72Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100255 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
256 704, 832, 0, 480, 489, 492, 520, 0,
257 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300258 /* 0x06 - 640x480@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100259 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
260 720, 840, 0, 480, 481, 484, 500, 0,
261 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300262 /* 0x07 - 640x480@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100263 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 36000, 640, 696,
264 752, 832, 0, 480, 481, 484, 509, 0,
265 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300266 /* 0x08 - 800x600@56Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100267 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
268 896, 1024, 0, 600, 601, 603, 625, 0,
269 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300270 /* 0x09 - 800x600@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100271 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
272 968, 1056, 0, 600, 601, 605, 628, 0,
273 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300274 /* 0x0a - 800x600@72Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100275 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
276 976, 1040, 0, 600, 637, 643, 666, 0,
277 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300278 /* 0x0b - 800x600@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100279 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
280 896, 1056, 0, 600, 601, 604, 625, 0,
281 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300282 /* 0x0c - 800x600@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100283 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 56250, 800, 832,
284 896, 1048, 0, 600, 601, 604, 631, 0,
285 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300286 /* 0x0d - 800x600@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100287 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 73250, 800, 848,
288 880, 960, 0, 600, 603, 607, 636, 0,
289 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300290 /* 0x0e - 848x480@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100291 { DRM_MODE("848x480", DRM_MODE_TYPE_DRIVER, 33750, 848, 864,
292 976, 1088, 0, 480, 486, 494, 517, 0,
293 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300294 /* 0x0f - 1024x768@43Hz, interlace */
Thierry Redinga6b21832012-11-23 15:01:42 +0100295 { DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER, 44900, 1024, 1032,
Paul Parsons735b1002016-04-04 20:36:34 +0100296 1208, 1264, 0, 768, 768, 776, 817, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100297 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300298 DRM_MODE_FLAG_INTERLACE) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300299 /* 0x10 - 1024x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100300 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
301 1184, 1344, 0, 768, 771, 777, 806, 0,
302 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300303 /* 0x11 - 1024x768@70Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100304 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
305 1184, 1328, 0, 768, 771, 777, 806, 0,
306 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300307 /* 0x12 - 1024x768@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100308 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
309 1136, 1312, 0, 768, 769, 772, 800, 0,
310 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300311 /* 0x13 - 1024x768@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100312 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 94500, 1024, 1072,
313 1168, 1376, 0, 768, 769, 772, 808, 0,
314 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300315 /* 0x14 - 1024x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100316 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 115500, 1024, 1072,
317 1104, 1184, 0, 768, 771, 775, 813, 0,
318 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300319 /* 0x15 - 1152x864@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100320 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
321 1344, 1600, 0, 864, 865, 868, 900, 0,
322 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300323 /* 0x55 - 1280x720@60Hz */
324 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
325 1430, 1650, 0, 720, 725, 730, 750, 0,
326 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300327 /* 0x16 - 1280x768@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100328 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 68250, 1280, 1328,
329 1360, 1440, 0, 768, 771, 778, 790, 0,
330 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300331 /* 0x17 - 1280x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100332 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 79500, 1280, 1344,
333 1472, 1664, 0, 768, 771, 778, 798, 0,
334 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300335 /* 0x18 - 1280x768@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100336 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 102250, 1280, 1360,
337 1488, 1696, 0, 768, 771, 778, 805, 0,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300338 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300339 /* 0x19 - 1280x768@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100340 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 117500, 1280, 1360,
341 1496, 1712, 0, 768, 771, 778, 809, 0,
342 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300343 /* 0x1a - 1280x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100344 { DRM_MODE("1280x768", DRM_MODE_TYPE_DRIVER, 140250, 1280, 1328,
345 1360, 1440, 0, 768, 771, 778, 813, 0,
346 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300347 /* 0x1b - 1280x800@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100348 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 71000, 1280, 1328,
349 1360, 1440, 0, 800, 803, 809, 823, 0,
350 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300351 /* 0x1c - 1280x800@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100352 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 83500, 1280, 1352,
353 1480, 1680, 0, 800, 803, 809, 831, 0,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300354 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300355 /* 0x1d - 1280x800@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100356 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 106500, 1280, 1360,
357 1488, 1696, 0, 800, 803, 809, 838, 0,
358 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300359 /* 0x1e - 1280x800@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100360 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 122500, 1280, 1360,
361 1496, 1712, 0, 800, 803, 809, 843, 0,
362 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300363 /* 0x1f - 1280x800@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100364 { DRM_MODE("1280x800", DRM_MODE_TYPE_DRIVER, 146250, 1280, 1328,
365 1360, 1440, 0, 800, 803, 809, 847, 0,
366 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300367 /* 0x20 - 1280x960@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100368 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1376,
369 1488, 1800, 0, 960, 961, 964, 1000, 0,
370 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300371 /* 0x21 - 1280x960@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100372 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1344,
373 1504, 1728, 0, 960, 961, 964, 1011, 0,
374 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300375 /* 0x22 - 1280x960@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100376 { DRM_MODE("1280x960", DRM_MODE_TYPE_DRIVER, 175500, 1280, 1328,
377 1360, 1440, 0, 960, 963, 967, 1017, 0,
378 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300379 /* 0x23 - 1280x1024@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100380 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 108000, 1280, 1328,
381 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
382 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300383 /* 0x24 - 1280x1024@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100384 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
385 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
386 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300387 /* 0x25 - 1280x1024@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100388 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 157500, 1280, 1344,
389 1504, 1728, 0, 1024, 1025, 1028, 1072, 0,
390 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300391 /* 0x26 - 1280x1024@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100392 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 187250, 1280, 1328,
393 1360, 1440, 0, 1024, 1027, 1034, 1084, 0,
394 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300395 /* 0x27 - 1360x768@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100396 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 85500, 1360, 1424,
397 1536, 1792, 0, 768, 771, 777, 795, 0,
398 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300399 /* 0x28 - 1360x768@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100400 { DRM_MODE("1360x768", DRM_MODE_TYPE_DRIVER, 148250, 1360, 1408,
401 1440, 1520, 0, 768, 771, 776, 813, 0,
402 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300403 /* 0x51 - 1366x768@60Hz */
404 { DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 85500, 1366, 1436,
405 1579, 1792, 0, 768, 771, 774, 798, 0,
406 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
407 /* 0x56 - 1366x768@60Hz */
408 { DRM_MODE("1366x768", DRM_MODE_TYPE_DRIVER, 72000, 1366, 1380,
409 1436, 1500, 0, 768, 769, 772, 800, 0,
410 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300411 /* 0x29 - 1400x1050@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100412 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 101000, 1400, 1448,
413 1480, 1560, 0, 1050, 1053, 1057, 1080, 0,
414 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300415 /* 0x2a - 1400x1050@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100416 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 121750, 1400, 1488,
417 1632, 1864, 0, 1050, 1053, 1057, 1089, 0,
418 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300419 /* 0x2b - 1400x1050@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100420 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 156000, 1400, 1504,
421 1648, 1896, 0, 1050, 1053, 1057, 1099, 0,
422 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300423 /* 0x2c - 1400x1050@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100424 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 179500, 1400, 1504,
425 1656, 1912, 0, 1050, 1053, 1057, 1105, 0,
426 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300427 /* 0x2d - 1400x1050@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100428 { DRM_MODE("1400x1050", DRM_MODE_TYPE_DRIVER, 208000, 1400, 1448,
429 1480, 1560, 0, 1050, 1053, 1057, 1112, 0,
430 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300431 /* 0x2e - 1440x900@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100432 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 88750, 1440, 1488,
433 1520, 1600, 0, 900, 903, 909, 926, 0,
434 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300435 /* 0x2f - 1440x900@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100436 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 106500, 1440, 1520,
437 1672, 1904, 0, 900, 903, 909, 934, 0,
438 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300439 /* 0x30 - 1440x900@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100440 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 136750, 1440, 1536,
441 1688, 1936, 0, 900, 903, 909, 942, 0,
442 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300443 /* 0x31 - 1440x900@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100444 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 157000, 1440, 1544,
445 1696, 1952, 0, 900, 903, 909, 948, 0,
446 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300447 /* 0x32 - 1440x900@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100448 { DRM_MODE("1440x900", DRM_MODE_TYPE_DRIVER, 182750, 1440, 1488,
449 1520, 1600, 0, 900, 903, 909, 953, 0,
450 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300451 /* 0x53 - 1600x900@60Hz */
452 { DRM_MODE("1600x900", DRM_MODE_TYPE_DRIVER, 108000, 1600, 1624,
453 1704, 1800, 0, 900, 901, 904, 1000, 0,
454 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300455 /* 0x33 - 1600x1200@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100456 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 162000, 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 /* 0x34 - 1600x1200@65Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100460 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 175500, 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 /* 0x35 - 1600x1200@70Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100464 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 189000, 1600, 1664,
465 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
466 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300467 /* 0x36 - 1600x1200@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100468 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 202500, 1600, 1664,
469 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
470 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300471 /* 0x37 - 1600x1200@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100472 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 229500, 1600, 1664,
473 1856, 2160, 0, 1200, 1201, 1204, 1250, 0,
474 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300475 /* 0x38 - 1600x1200@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100476 { DRM_MODE("1600x1200", DRM_MODE_TYPE_DRIVER, 268250, 1600, 1648,
477 1680, 1760, 0, 1200, 1203, 1207, 1271, 0,
478 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300479 /* 0x39 - 1680x1050@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100480 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 119000, 1680, 1728,
481 1760, 1840, 0, 1050, 1053, 1059, 1080, 0,
482 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300483 /* 0x3a - 1680x1050@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100484 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 146250, 1680, 1784,
485 1960, 2240, 0, 1050, 1053, 1059, 1089, 0,
486 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300487 /* 0x3b - 1680x1050@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100488 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 187000, 1680, 1800,
489 1976, 2272, 0, 1050, 1053, 1059, 1099, 0,
490 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300491 /* 0x3c - 1680x1050@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100492 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 214750, 1680, 1808,
493 1984, 2288, 0, 1050, 1053, 1059, 1105, 0,
494 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300495 /* 0x3d - 1680x1050@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100496 { DRM_MODE("1680x1050", DRM_MODE_TYPE_DRIVER, 245500, 1680, 1728,
497 1760, 1840, 0, 1050, 1053, 1059, 1112, 0,
498 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300499 /* 0x3e - 1792x1344@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100500 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 204750, 1792, 1920,
501 2120, 2448, 0, 1344, 1345, 1348, 1394, 0,
502 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300503 /* 0x3f - 1792x1344@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100504 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 261000, 1792, 1888,
505 2104, 2456, 0, 1344, 1345, 1348, 1417, 0,
506 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300507 /* 0x40 - 1792x1344@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100508 { DRM_MODE("1792x1344", DRM_MODE_TYPE_DRIVER, 333250, 1792, 1840,
509 1872, 1952, 0, 1344, 1347, 1351, 1423, 0,
510 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300511 /* 0x41 - 1856x1392@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100512 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 218250, 1856, 1952,
513 2176, 2528, 0, 1392, 1393, 1396, 1439, 0,
514 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300515 /* 0x42 - 1856x1392@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100516 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 288000, 1856, 1984,
Ville Syrjäläfcf22d02015-04-02 17:02:09 +0300517 2208, 2560, 0, 1392, 1393, 1396, 1500, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100518 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300519 /* 0x43 - 1856x1392@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100520 { DRM_MODE("1856x1392", DRM_MODE_TYPE_DRIVER, 356500, 1856, 1904,
521 1936, 2016, 0, 1392, 1395, 1399, 1474, 0,
522 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300523 /* 0x52 - 1920x1080@60Hz */
524 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
525 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
526 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300527 /* 0x44 - 1920x1200@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100528 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 154000, 1920, 1968,
529 2000, 2080, 0, 1200, 1203, 1209, 1235, 0,
530 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300531 /* 0x45 - 1920x1200@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100532 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 193250, 1920, 2056,
533 2256, 2592, 0, 1200, 1203, 1209, 1245, 0,
534 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300535 /* 0x46 - 1920x1200@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100536 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 245250, 1920, 2056,
537 2264, 2608, 0, 1200, 1203, 1209, 1255, 0,
538 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300539 /* 0x47 - 1920x1200@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100540 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 281250, 1920, 2064,
541 2272, 2624, 0, 1200, 1203, 1209, 1262, 0,
542 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300543 /* 0x48 - 1920x1200@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100544 { DRM_MODE("1920x1200", DRM_MODE_TYPE_DRIVER, 317000, 1920, 1968,
545 2000, 2080, 0, 1200, 1203, 1209, 1271, 0,
546 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300547 /* 0x49 - 1920x1440@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100548 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 234000, 1920, 2048,
549 2256, 2600, 0, 1440, 1441, 1444, 1500, 0,
550 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300551 /* 0x4a - 1920x1440@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100552 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2064,
553 2288, 2640, 0, 1440, 1441, 1444, 1500, 0,
554 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300555 /* 0x4b - 1920x1440@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100556 { DRM_MODE("1920x1440", DRM_MODE_TYPE_DRIVER, 380500, 1920, 1968,
557 2000, 2080, 0, 1440, 1443, 1447, 1525, 0,
558 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300559 /* 0x54 - 2048x1152@60Hz */
560 { DRM_MODE("2048x1152", DRM_MODE_TYPE_DRIVER, 162000, 2048, 2074,
561 2154, 2250, 0, 1152, 1153, 1156, 1200, 0,
562 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300563 /* 0x4c - 2560x1600@60Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100564 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 268500, 2560, 2608,
565 2640, 2720, 0, 1600, 1603, 1609, 1646, 0,
566 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300567 /* 0x4d - 2560x1600@60Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100568 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 348500, 2560, 2752,
569 3032, 3504, 0, 1600, 1603, 1609, 1658, 0,
570 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300571 /* 0x4e - 2560x1600@75Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100572 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 443250, 2560, 2768,
573 3048, 3536, 0, 1600, 1603, 1609, 1672, 0,
574 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300575 /* 0x4f - 2560x1600@85Hz */
Thierry Redinga6b21832012-11-23 15:01:42 +0100576 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 505250, 2560, 2768,
577 3048, 3536, 0, 1600, 1603, 1609, 1682, 0,
578 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) },
Ville Syrjälä24b856b2015-04-02 17:02:10 +0300579 /* 0x50 - 2560x1600@120Hz RB */
Thierry Redinga6b21832012-11-23 15:01:42 +0100580 { DRM_MODE("2560x1600", DRM_MODE_TYPE_DRIVER, 552750, 2560, 2608,
581 2640, 2720, 0, 1600, 1603, 1609, 1694, 0,
582 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Ville Syrjäläbfcd74d2015-04-02 17:02:11 +0300583 /* 0x57 - 4096x2160@60Hz RB */
584 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556744, 4096, 4104,
585 4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
586 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
587 /* 0x58 - 4096x2160@59.94Hz RB */
588 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 556188, 4096, 4104,
589 4136, 4176, 0, 2160, 2208, 2216, 2222, 0,
590 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC) },
Thierry Redinga6b21832012-11-23 15:01:42 +0100591};
592
Ville Syrjäläe7bfa5c2013-10-14 16:44:27 +0300593/*
594 * These more or less come from the DMT spec. The 720x400 modes are
595 * inferred from historical 80x25 practice. The 640x480@67 and 832x624@75
596 * modes are old-school Mac modes. The EDID spec says the 1152x864@75 mode
597 * should be 1152x870, again for the Mac, but instead we use the x864 DMT
598 * mode.
599 *
600 * The DMT modes have been fact-checked; the rest are mild guesses.
601 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100602static const struct drm_display_mode edid_est_modes[] = {
603 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 40000, 800, 840,
604 968, 1056, 0, 600, 601, 605, 628, 0,
605 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@60Hz */
606 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 36000, 800, 824,
607 896, 1024, 0, 600, 601, 603, 625, 0,
608 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@56Hz */
609 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 656,
610 720, 840, 0, 480, 481, 484, 500, 0,
611 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@75Hz */
612 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
Paul Parsons87707cf2016-04-02 11:08:06 +0100613 704, 832, 0, 480, 489, 492, 520, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100614 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@72Hz */
615 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 30240, 640, 704,
616 768, 864, 0, 480, 483, 486, 525, 0,
617 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@67Hz */
Paul Parsons87707cf2016-04-02 11:08:06 +0100618 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
Thierry Redinga6b21832012-11-23 15:01:42 +0100619 752, 800, 0, 480, 490, 492, 525, 0,
620 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 640x480@60Hz */
621 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 35500, 720, 738,
622 846, 900, 0, 400, 421, 423, 449, 0,
623 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 720x400@88Hz */
624 { DRM_MODE("720x400", DRM_MODE_TYPE_DRIVER, 28320, 720, 738,
625 846, 900, 0, 400, 412, 414, 449, 0,
626 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 720x400@70Hz */
627 { DRM_MODE("1280x1024", DRM_MODE_TYPE_DRIVER, 135000, 1280, 1296,
628 1440, 1688, 0, 1024, 1025, 1028, 1066, 0,
629 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1280x1024@75Hz */
Paul Parsons87707cf2016-04-02 11:08:06 +0100630 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 78750, 1024, 1040,
Thierry Redinga6b21832012-11-23 15:01:42 +0100631 1136, 1312, 0, 768, 769, 772, 800, 0,
632 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1024x768@75Hz */
633 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 75000, 1024, 1048,
634 1184, 1328, 0, 768, 771, 777, 806, 0,
635 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@70Hz */
636 { DRM_MODE("1024x768", DRM_MODE_TYPE_DRIVER, 65000, 1024, 1048,
637 1184, 1344, 0, 768, 771, 777, 806, 0,
638 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 1024x768@60Hz */
639 { DRM_MODE("1024x768i", DRM_MODE_TYPE_DRIVER,44900, 1024, 1032,
640 1208, 1264, 0, 768, 768, 776, 817, 0,
641 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_INTERLACE) }, /* 1024x768@43Hz */
642 { DRM_MODE("832x624", DRM_MODE_TYPE_DRIVER, 57284, 832, 864,
643 928, 1152, 0, 624, 625, 628, 667, 0,
644 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /* 832x624@75Hz */
645 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 49500, 800, 816,
646 896, 1056, 0, 600, 601, 604, 625, 0,
647 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@75Hz */
648 { DRM_MODE("800x600", DRM_MODE_TYPE_DRIVER, 50000, 800, 856,
649 976, 1040, 0, 600, 637, 643, 666, 0,
650 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 800x600@72Hz */
651 { DRM_MODE("1152x864", DRM_MODE_TYPE_DRIVER, 108000, 1152, 1216,
652 1344, 1600, 0, 864, 865, 868, 900, 0,
653 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) }, /* 1152x864@75Hz */
654};
655
656struct minimode {
657 short w;
658 short h;
659 short r;
660 short rb;
661};
662
663static const struct minimode est3_modes[] = {
664 /* byte 6 */
665 { 640, 350, 85, 0 },
666 { 640, 400, 85, 0 },
667 { 720, 400, 85, 0 },
668 { 640, 480, 85, 0 },
669 { 848, 480, 60, 0 },
670 { 800, 600, 85, 0 },
671 { 1024, 768, 85, 0 },
672 { 1152, 864, 75, 0 },
673 /* byte 7 */
674 { 1280, 768, 60, 1 },
675 { 1280, 768, 60, 0 },
676 { 1280, 768, 75, 0 },
677 { 1280, 768, 85, 0 },
678 { 1280, 960, 60, 0 },
679 { 1280, 960, 85, 0 },
680 { 1280, 1024, 60, 0 },
681 { 1280, 1024, 85, 0 },
682 /* byte 8 */
683 { 1360, 768, 60, 0 },
684 { 1440, 900, 60, 1 },
685 { 1440, 900, 60, 0 },
686 { 1440, 900, 75, 0 },
687 { 1440, 900, 85, 0 },
688 { 1400, 1050, 60, 1 },
689 { 1400, 1050, 60, 0 },
690 { 1400, 1050, 75, 0 },
691 /* byte 9 */
692 { 1400, 1050, 85, 0 },
693 { 1680, 1050, 60, 1 },
694 { 1680, 1050, 60, 0 },
695 { 1680, 1050, 75, 0 },
696 { 1680, 1050, 85, 0 },
697 { 1600, 1200, 60, 0 },
698 { 1600, 1200, 65, 0 },
699 { 1600, 1200, 70, 0 },
700 /* byte 10 */
701 { 1600, 1200, 75, 0 },
702 { 1600, 1200, 85, 0 },
703 { 1792, 1344, 60, 0 },
Ville Syrjäläc068b322013-10-14 16:44:25 +0300704 { 1792, 1344, 75, 0 },
Thierry Redinga6b21832012-11-23 15:01:42 +0100705 { 1856, 1392, 60, 0 },
706 { 1856, 1392, 75, 0 },
707 { 1920, 1200, 60, 1 },
708 { 1920, 1200, 60, 0 },
709 /* byte 11 */
710 { 1920, 1200, 75, 0 },
711 { 1920, 1200, 85, 0 },
712 { 1920, 1440, 60, 0 },
713 { 1920, 1440, 75, 0 },
714};
715
716static const struct minimode extra_modes[] = {
717 { 1024, 576, 60, 0 },
718 { 1366, 768, 60, 0 },
719 { 1600, 900, 60, 0 },
720 { 1680, 945, 60, 0 },
721 { 1920, 1080, 60, 0 },
722 { 2048, 1152, 60, 0 },
723 { 2048, 1536, 60, 0 },
724};
725
726/*
Ville Syrjälä7befe622019-12-13 19:43:45 +0200727 * From CEA/CTA-861 spec.
Jani Nikulad9278b42016-01-08 13:21:51 +0200728 *
Ville Syrjälä7befe622019-12-13 19:43:45 +0200729 * Do not access directly, instead always use cea_mode_for_vic().
Thierry Redinga6b21832012-11-23 15:01:42 +0100730 */
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +0200731static const struct drm_display_mode edid_cea_modes_1[] = {
Ville Syrjälä78691962018-05-24 22:20:35 +0300732 /* 1 - 640x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100733 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
734 752, 800, 0, 480, 490, 492, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300735 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300736 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300737 /* 2 - 720x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100738 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
739 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300740 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300741 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300742 /* 3 - 720x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100743 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 27000, 720, 736,
744 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300745 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300746 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300747 /* 4 - 1280x720@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100748 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
749 1430, 1650, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300750 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300751 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300752 /* 5 - 1920x1080i@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100753 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
754 2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
755 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300756 DRM_MODE_FLAG_INTERLACE),
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 /* 6 - 720(1440)x480i@60Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700759 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
760 801, 858, 0, 480, 488, 494, 525, 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_INTERLACE | 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 /* 7 - 720(1440)x480i@60Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700765 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
766 801, 858, 0, 480, 488, 494, 525, 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_INTERLACE | 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 /* 8 - 720(1440)x240@60Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700771 { DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
772 801, 858, 0, 240, 244, 247, 262, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100773 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300774 DRM_MODE_FLAG_DBLCLK),
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 /* 9 - 720(1440)x240@60Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700777 { DRM_MODE("720x240", DRM_MODE_TYPE_DRIVER, 13500, 720, 739,
778 801, 858, 0, 240, 244, 247, 262, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100779 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300780 DRM_MODE_FLAG_DBLCLK),
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 /* 10 - 2880x480i@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100783 { DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
784 3204, 3432, 0, 480, 488, 494, 525, 0,
785 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300786 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300787 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300788 /* 11 - 2880x480i@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100789 { DRM_MODE("2880x480i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
790 3204, 3432, 0, 480, 488, 494, 525, 0,
791 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300792 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300793 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300794 /* 12 - 2880x240@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100795 { DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
796 3204, 3432, 0, 240, 244, 247, 262, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300797 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300798 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300799 /* 13 - 2880x240@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100800 { DRM_MODE("2880x240", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2956,
801 3204, 3432, 0, 240, 244, 247, 262, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300802 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300803 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300804 /* 14 - 1440x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100805 { DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
806 1596, 1716, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300807 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300808 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300809 /* 15 - 1440x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100810 { DRM_MODE("1440x480", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1472,
811 1596, 1716, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300812 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300813 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300814 /* 16 - 1920x1080@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100815 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
816 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300817 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300818 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300819 /* 17 - 720x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100820 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
821 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300822 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300823 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300824 /* 18 - 720x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100825 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
826 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300827 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300828 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300829 /* 19 - 1280x720@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100830 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
831 1760, 1980, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300832 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300833 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300834 /* 20 - 1920x1080i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100835 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
836 2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
837 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300838 DRM_MODE_FLAG_INTERLACE),
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 /* 21 - 720(1440)x576i@50Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700841 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
842 795, 864, 0, 576, 580, 586, 625, 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_INTERLACE | 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 /* 22 - 720(1440)x576i@50Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700847 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
848 795, 864, 0, 576, 580, 586, 625, 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_INTERLACE | 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 /* 23 - 720(1440)x288@50Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700853 { DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
854 795, 864, 0, 288, 290, 293, 312, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100855 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300856 DRM_MODE_FLAG_DBLCLK),
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 /* 24 - 720(1440)x288@50Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700859 { DRM_MODE("720x288", DRM_MODE_TYPE_DRIVER, 13500, 720, 732,
860 795, 864, 0, 288, 290, 293, 312, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100861 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300862 DRM_MODE_FLAG_DBLCLK),
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 /* 25 - 2880x576i@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100865 { DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
866 3180, 3456, 0, 576, 580, 586, 625, 0,
867 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300868 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300869 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300870 /* 26 - 2880x576i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100871 { DRM_MODE("2880x576i", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
872 3180, 3456, 0, 576, 580, 586, 625, 0,
873 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300874 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300875 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300876 /* 27 - 2880x288@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100877 { DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
878 3180, 3456, 0, 288, 290, 293, 312, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300879 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300880 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300881 /* 28 - 2880x288@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100882 { DRM_MODE("2880x288", DRM_MODE_TYPE_DRIVER, 54000, 2880, 2928,
883 3180, 3456, 0, 288, 290, 293, 312, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300884 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300885 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300886 /* 29 - 1440x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100887 { DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
888 1592, 1728, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300889 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300890 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300891 /* 30 - 1440x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100892 { DRM_MODE("1440x576", DRM_MODE_TYPE_DRIVER, 54000, 1440, 1464,
893 1592, 1728, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300894 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300895 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300896 /* 31 - 1920x1080@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100897 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
898 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300899 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300900 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300901 /* 32 - 1920x1080@24Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100902 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
903 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300904 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300905 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300906 /* 33 - 1920x1080@25Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100907 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
908 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300909 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300910 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300911 /* 34 - 1920x1080@30Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100912 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
913 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300914 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300915 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300916 /* 35 - 2880x480@60Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100917 { DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
918 3192, 3432, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300919 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300920 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300921 /* 36 - 2880x480@60Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100922 { DRM_MODE("2880x480", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2944,
923 3192, 3432, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300924 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300925 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300926 /* 37 - 2880x576@50Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100927 { DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
928 3184, 3456, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300929 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300930 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300931 /* 38 - 2880x576@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100932 { DRM_MODE("2880x576", DRM_MODE_TYPE_DRIVER, 108000, 2880, 2928,
933 3184, 3456, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300934 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
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 /* 39 - 1920x1080i@50Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100937 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 72000, 1920, 1952,
938 2120, 2304, 0, 1080, 1126, 1136, 1250, 0,
939 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300940 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300941 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300942 /* 40 - 1920x1080i@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100943 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
944 2492, 2640, 0, 1080, 1084, 1094, 1125, 0,
945 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300946 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300947 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300948 /* 41 - 1280x720@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100949 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
950 1760, 1980, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300951 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300952 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300953 /* 42 - 720x576@100Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100954 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
955 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300956 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300957 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300958 /* 43 - 720x576@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100959 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
960 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300961 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
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 /* 44 - 720(1440)x576i@100Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700964 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
965 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100966 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300967 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300968 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300969 /* 45 - 720(1440)x576i@100Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700970 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 27000, 720, 732,
971 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100972 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300973 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +0300974 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300975 /* 46 - 1920x1080i@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100976 { DRM_MODE("1920x1080i", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
977 2052, 2200, 0, 1080, 1084, 1094, 1125, 0,
978 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +0300979 DRM_MODE_FLAG_INTERLACE),
Ville Syrjälä04256622020-04-28 20:19:27 +0300980 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300981 /* 47 - 1280x720@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100982 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
983 1430, 1650, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300984 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300985 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300986 /* 48 - 720x480@120Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100987 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
988 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300989 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +0300990 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +0300991 /* 49 - 720x480@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +0100992 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 54000, 720, 736,
993 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +0300994 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
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 /* 50 - 720(1440)x480i@120Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -0700997 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
998 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +0100999 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001000 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001001 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001002 /* 51 - 720(1440)x480i@120Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001003 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 27000, 720, 739,
1004 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001005 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001006 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001007 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001008 /* 52 - 720x576@200Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001009 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
1010 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001011 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001012 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001013 /* 53 - 720x576@200Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001014 { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 108000, 720, 732,
1015 796, 864, 0, 576, 581, 586, 625, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001016 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
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 /* 54 - 720(1440)x576i@200Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001019 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
1020 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001021 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001022 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001023 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001024 /* 55 - 720(1440)x576i@200Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001025 { DRM_MODE("720x576i", DRM_MODE_TYPE_DRIVER, 54000, 720, 732,
1026 795, 864, 0, 576, 580, 586, 625, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001027 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001028 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001029 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001030 /* 56 - 720x480@240Hz 4:3 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001031 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
1032 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001033 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001034 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001035 /* 57 - 720x480@240Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001036 { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 108000, 720, 736,
1037 798, 858, 0, 480, 489, 495, 525, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001038 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
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 /* 58 - 720(1440)x480i@240Hz 4:3 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001041 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
1042 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001043 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001044 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001045 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001046 /* 59 - 720(1440)x480i@240Hz 16:9 */
Clint Taylorfb01d282014-09-02 17:03:35 -07001047 { DRM_MODE("720x480i", DRM_MODE_TYPE_DRIVER, 54000, 720, 739,
1048 801, 858, 0, 480, 488, 494, 525, 0,
Thierry Redinga6b21832012-11-23 15:01:42 +01001049 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC |
Ville Syrjälä78691962018-05-24 22:20:35 +03001050 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLCLK),
Ville Syrjälä04256622020-04-28 20:19:27 +03001051 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001052 /* 60 - 1280x720@24Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001053 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
1054 3080, 3300, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001055 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001056 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001057 /* 61 - 1280x720@25Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001058 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
1059 3740, 3960, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001060 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001061 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001062 /* 62 - 1280x720@30Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001063 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
1064 3080, 3300, 0, 720, 725, 730, 750, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001065 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001066 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001067 /* 63 - 1920x1080@120Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001068 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1069 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001070 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001071 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001072 /* 64 - 1920x1080@100Hz 16:9 */
Thierry Redinga6b21832012-11-23 15:01:42 +01001073 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
Clint Taylor8f0e4902016-08-15 10:31:28 -07001074 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
Ville Syrjäläee7925b2013-04-24 19:07:17 +03001075 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001076 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001077 /* 65 - 1280x720@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301078 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 59400, 1280, 3040,
1079 3080, 3300, 0, 720, 725, 730, 750, 0,
1080 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001081 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001082 /* 66 - 1280x720@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301083 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3700,
1084 3740, 3960, 0, 720, 725, 730, 750, 0,
1085 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001086 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001087 /* 67 - 1280x720@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301088 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 3040,
1089 3080, 3300, 0, 720, 725, 730, 750, 0,
1090 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001091 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001092 /* 68 - 1280x720@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301093 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1720,
1094 1760, 1980, 0, 720, 725, 730, 750, 0,
1095 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001096 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001097 /* 69 - 1280x720@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301098 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 74250, 1280, 1390,
1099 1430, 1650, 0, 720, 725, 730, 750, 0,
1100 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001101 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001102 /* 70 - 1280x720@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301103 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1720,
1104 1760, 1980, 0, 720, 725, 730, 750, 0,
1105 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001106 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001107 /* 71 - 1280x720@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301108 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 148500, 1280, 1390,
1109 1430, 1650, 0, 720, 725, 730, 750, 0,
1110 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001111 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001112 /* 72 - 1920x1080@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301113 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2558,
1114 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1115 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001116 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001117 /* 73 - 1920x1080@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301118 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2448,
1119 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1120 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001121 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001122 /* 74 - 1920x1080@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301123 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 74250, 1920, 2008,
1124 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1125 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001126 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001127 /* 75 - 1920x1080@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301128 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2448,
1129 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1130 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001131 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001132 /* 76 - 1920x1080@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301133 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2008,
1134 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1135 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001136 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001137 /* 77 - 1920x1080@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301138 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2448,
1139 2492, 2640, 0, 1080, 1084, 1089, 1125, 0,
1140 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001141 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001142 /* 78 - 1920x1080@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301143 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 297000, 1920, 2008,
1144 2052, 2200, 0, 1080, 1084, 1089, 1125, 0,
1145 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001146 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001147 /* 79 - 1680x720@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301148 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 3040,
1149 3080, 3300, 0, 720, 725, 730, 750, 0,
1150 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001151 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001152 /* 80 - 1680x720@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301153 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 2908,
1154 2948, 3168, 0, 720, 725, 730, 750, 0,
1155 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001156 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001157 /* 81 - 1680x720@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301158 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 59400, 1680, 2380,
1159 2420, 2640, 0, 720, 725, 730, 750, 0,
1160 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001161 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001162 /* 82 - 1680x720@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301163 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 82500, 1680, 1940,
1164 1980, 2200, 0, 720, 725, 730, 750, 0,
1165 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001166 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001167 /* 83 - 1680x720@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301168 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 99000, 1680, 1940,
1169 1980, 2200, 0, 720, 725, 730, 750, 0,
1170 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001171 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001172 /* 84 - 1680x720@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301173 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 165000, 1680, 1740,
1174 1780, 2000, 0, 720, 725, 730, 825, 0,
1175 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001176 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001177 /* 85 - 1680x720@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301178 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 198000, 1680, 1740,
1179 1780, 2000, 0, 720, 725, 730, 825, 0,
1180 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001181 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001182 /* 86 - 2560x1080@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301183 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 99000, 2560, 3558,
1184 3602, 3750, 0, 1080, 1084, 1089, 1100, 0,
1185 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001186 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001187 /* 87 - 2560x1080@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301188 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 90000, 2560, 3008,
1189 3052, 3200, 0, 1080, 1084, 1089, 1125, 0,
1190 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001191 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001192 /* 88 - 2560x1080@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301193 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 118800, 2560, 3328,
1194 3372, 3520, 0, 1080, 1084, 1089, 1125, 0,
1195 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001196 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001197 /* 89 - 2560x1080@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301198 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 185625, 2560, 3108,
1199 3152, 3300, 0, 1080, 1084, 1089, 1125, 0,
1200 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001201 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001202 /* 90 - 2560x1080@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301203 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 198000, 2560, 2808,
1204 2852, 3000, 0, 1080, 1084, 1089, 1100, 0,
1205 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001206 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001207 /* 91 - 2560x1080@100Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301208 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 371250, 2560, 2778,
1209 2822, 2970, 0, 1080, 1084, 1089, 1250, 0,
1210 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001211 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001212 /* 92 - 2560x1080@120Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301213 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 495000, 2560, 3108,
1214 3152, 3300, 0, 1080, 1084, 1089, 1250, 0,
1215 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001216 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001217 /* 93 - 3840x2160@24Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301218 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 5116,
1219 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1220 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001221 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001222 /* 94 - 3840x2160@25Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301223 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4896,
1224 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1225 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001226 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001227 /* 95 - 3840x2160@30Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301228 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4016,
1229 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1230 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001231 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001232 /* 96 - 3840x2160@50Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301233 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4896,
1234 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1235 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001236 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001237 /* 97 - 3840x2160@60Hz 16:9 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301238 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4016,
1239 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1240 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001241 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001242 /* 98 - 4096x2160@24Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301243 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 5116,
1244 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1245 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001246 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001247 /* 99 - 4096x2160@25Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301248 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 5064,
1249 5152, 5280, 0, 2160, 2168, 2178, 2250, 0,
1250 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001251 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001252 /* 100 - 4096x2160@30Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301253 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000, 4096, 4184,
1254 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1255 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001256 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001257 /* 101 - 4096x2160@50Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301258 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 5064,
1259 5152, 5280, 0, 2160, 2168, 2178, 2250, 0,
1260 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001261 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001262 /* 102 - 4096x2160@60Hz 256:135 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301263 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 4184,
1264 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1265 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001266 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001267 /* 103 - 3840x2160@24Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301268 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 5116,
1269 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1270 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001271 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001272 /* 104 - 3840x2160@25Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301273 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4896,
1274 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1275 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001276 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001277 /* 105 - 3840x2160@30Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301278 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000, 3840, 4016,
1279 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1280 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001281 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001282 /* 106 - 3840x2160@50Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301283 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4896,
1284 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1285 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001286 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä78691962018-05-24 22:20:35 +03001287 /* 107 - 3840x2160@60Hz 64:27 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05301288 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 4016,
1289 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1290 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001291 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001292 /* 108 - 1280x720@48Hz 16:9 */
1293 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 90000, 1280, 2240,
1294 2280, 2500, 0, 720, 725, 730, 750, 0,
1295 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001296 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001297 /* 109 - 1280x720@48Hz 64:27 */
1298 { DRM_MODE("1280x720", DRM_MODE_TYPE_DRIVER, 90000, 1280, 2240,
1299 2280, 2500, 0, 720, 725, 730, 750, 0,
1300 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001301 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001302 /* 110 - 1680x720@48Hz 64:27 */
1303 { DRM_MODE("1680x720", DRM_MODE_TYPE_DRIVER, 99000, 1680, 2490,
1304 2530, 2750, 0, 720, 725, 730, 750, 0,
1305 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001306 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001307 /* 111 - 1920x1080@48Hz 16:9 */
1308 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2558,
1309 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1310 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001311 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001312 /* 112 - 1920x1080@48Hz 64:27 */
1313 { DRM_MODE("1920x1080", DRM_MODE_TYPE_DRIVER, 148500, 1920, 2558,
1314 2602, 2750, 0, 1080, 1084, 1089, 1125, 0,
1315 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001316 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001317 /* 113 - 2560x1080@48Hz 64:27 */
1318 { DRM_MODE("2560x1080", DRM_MODE_TYPE_DRIVER, 198000, 2560, 3558,
1319 3602, 3750, 0, 1080, 1084, 1089, 1100, 0,
1320 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001321 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001322 /* 114 - 3840x2160@48Hz 16:9 */
1323 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 5116,
1324 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1325 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001326 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001327 /* 115 - 4096x2160@48Hz 256:135 */
1328 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 594000, 4096, 5116,
1329 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1330 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001331 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001332 /* 116 - 3840x2160@48Hz 64:27 */
1333 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000, 3840, 5116,
1334 5204, 5500, 0, 2160, 2168, 2178, 2250, 0,
1335 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001336 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001337 /* 117 - 3840x2160@100Hz 16:9 */
1338 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4896,
1339 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1340 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001341 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001342 /* 118 - 3840x2160@120Hz 16:9 */
1343 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4016,
1344 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1345 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001346 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001347 /* 119 - 3840x2160@100Hz 64:27 */
1348 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4896,
1349 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1350 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001351 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001352 /* 120 - 3840x2160@120Hz 64:27 */
1353 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 1188000, 3840, 4016,
1354 4104, 4400, 0, 2160, 2168, 2178, 2250, 0,
1355 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001356 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001357 /* 121 - 5120x2160@24Hz 64:27 */
1358 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 7116,
1359 7204, 7500, 0, 2160, 2168, 2178, 2200, 0,
1360 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001361 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001362 /* 122 - 5120x2160@25Hz 64:27 */
1363 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 6816,
1364 6904, 7200, 0, 2160, 2168, 2178, 2200, 0,
1365 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001366 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001367 /* 123 - 5120x2160@30Hz 64:27 */
1368 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 396000, 5120, 5784,
1369 5872, 6000, 0, 2160, 2168, 2178, 2200, 0,
1370 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001371 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001372 /* 124 - 5120x2160@48Hz 64:27 */
1373 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 5866,
1374 5954, 6250, 0, 2160, 2168, 2178, 2475, 0,
1375 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001376 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001377 /* 125 - 5120x2160@50Hz 64:27 */
1378 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 6216,
1379 6304, 6600, 0, 2160, 2168, 2178, 2250, 0,
1380 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001381 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001382 /* 126 - 5120x2160@60Hz 64:27 */
1383 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 742500, 5120, 5284,
1384 5372, 5500, 0, 2160, 2168, 2178, 2250, 0,
1385 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001386 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjälä978f6b02019-07-11 13:32:30 +03001387 /* 127 - 5120x2160@100Hz 64:27 */
1388 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 1485000, 5120, 6216,
1389 6304, 6600, 0, 2160, 2168, 2178, 2250, 0,
1390 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001391 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Thierry Redinga6b21832012-11-23 15:01:42 +01001392};
1393
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001394/*
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001395 * From CEA/CTA-861 spec.
1396 *
1397 * Do not access directly, instead always use cea_mode_for_vic().
1398 */
1399static const struct drm_display_mode edid_cea_modes_193[] = {
1400 /* 193 - 5120x2160@120Hz 64:27 */
1401 { DRM_MODE("5120x2160", DRM_MODE_TYPE_DRIVER, 1485000, 5120, 5284,
1402 5372, 5500, 0, 2160, 2168, 2178, 2250, 0,
1403 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001404 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001405 /* 194 - 7680x4320@24Hz 16:9 */
1406 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10232,
1407 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1408 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001409 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001410 /* 195 - 7680x4320@25Hz 16:9 */
1411 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10032,
1412 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1413 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001414 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001415 /* 196 - 7680x4320@30Hz 16:9 */
1416 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 8232,
1417 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1418 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001419 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001420 /* 197 - 7680x4320@48Hz 16:9 */
1421 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10232,
1422 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1423 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001424 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001425 /* 198 - 7680x4320@50Hz 16:9 */
1426 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10032,
1427 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1428 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001429 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001430 /* 199 - 7680x4320@60Hz 16:9 */
1431 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 8232,
1432 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1433 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001434 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001435 /* 200 - 7680x4320@100Hz 16:9 */
1436 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 9792,
1437 9968, 10560, 0, 4320, 4336, 4356, 4500, 0,
1438 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001439 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001440 /* 201 - 7680x4320@120Hz 16:9 */
1441 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 8032,
1442 8208, 8800, 0, 4320, 4336, 4356, 4500, 0,
1443 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001444 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001445 /* 202 - 7680x4320@24Hz 64:27 */
1446 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10232,
1447 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1448 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001449 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001450 /* 203 - 7680x4320@25Hz 64:27 */
1451 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 10032,
1452 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1453 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001454 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001455 /* 204 - 7680x4320@30Hz 64:27 */
1456 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 1188000, 7680, 8232,
1457 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1458 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001459 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001460 /* 205 - 7680x4320@48Hz 64:27 */
1461 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10232,
1462 10408, 11000, 0, 4320, 4336, 4356, 4500, 0,
1463 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001464 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001465 /* 206 - 7680x4320@50Hz 64:27 */
1466 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 10032,
1467 10208, 10800, 0, 4320, 4336, 4356, 4400, 0,
1468 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001469 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001470 /* 207 - 7680x4320@60Hz 64:27 */
1471 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 2376000, 7680, 8232,
1472 8408, 9000, 0, 4320, 4336, 4356, 4400, 0,
1473 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001474 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001475 /* 208 - 7680x4320@100Hz 64:27 */
1476 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 9792,
1477 9968, 10560, 0, 4320, 4336, 4356, 4500, 0,
1478 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001479 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001480 /* 209 - 7680x4320@120Hz 64:27 */
1481 { DRM_MODE("7680x4320", DRM_MODE_TYPE_DRIVER, 4752000, 7680, 8032,
1482 8208, 8800, 0, 4320, 4336, 4356, 4500, 0,
1483 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001484 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001485 /* 210 - 10240x4320@24Hz 64:27 */
1486 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 11732,
1487 11908, 12500, 0, 4320, 4336, 4356, 4950, 0,
1488 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001489 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001490 /* 211 - 10240x4320@25Hz 64:27 */
1491 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 12732,
1492 12908, 13500, 0, 4320, 4336, 4356, 4400, 0,
1493 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001494 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001495 /* 212 - 10240x4320@30Hz 64:27 */
1496 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 1485000, 10240, 10528,
1497 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1498 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001499 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001500 /* 213 - 10240x4320@48Hz 64:27 */
1501 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 11732,
1502 11908, 12500, 0, 4320, 4336, 4356, 4950, 0,
1503 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001504 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001505 /* 214 - 10240x4320@50Hz 64:27 */
1506 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 12732,
1507 12908, 13500, 0, 4320, 4336, 4356, 4400, 0,
1508 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001509 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001510 /* 215 - 10240x4320@60Hz 64:27 */
1511 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 2970000, 10240, 10528,
1512 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1513 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001514 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001515 /* 216 - 10240x4320@100Hz 64:27 */
1516 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 5940000, 10240, 12432,
1517 12608, 13200, 0, 4320, 4336, 4356, 4500, 0,
1518 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001519 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001520 /* 217 - 10240x4320@120Hz 64:27 */
1521 { DRM_MODE("10240x4320", DRM_MODE_TYPE_DRIVER, 5940000, 10240, 10528,
1522 10704, 11000, 0, 4320, 4336, 4356, 4500, 0,
1523 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001524 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001525 /* 218 - 4096x2160@100Hz 256:135 */
1526 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 1188000, 4096, 4896,
1527 4984, 5280, 0, 2160, 2168, 2178, 2250, 0,
1528 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001529 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001530 /* 219 - 4096x2160@120Hz 256:135 */
1531 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 1188000, 4096, 4184,
1532 4272, 4400, 0, 2160, 2168, 2178, 2250, 0,
1533 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001534 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Ville Syrjäläf7655d42019-12-13 19:43:46 +02001535};
1536
1537/*
Jani Nikulad9278b42016-01-08 13:21:51 +02001538 * HDMI 1.4 4k modes. Index using the VIC.
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001539 */
1540static const struct drm_display_mode edid_4k_modes[] = {
Jani Nikulad9278b42016-01-08 13:21:51 +02001541 /* 0 - dummy, VICs start at 1 */
1542 { },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001543 /* 1 - 3840x2160@30Hz */
1544 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1545 3840, 4016, 4104, 4400, 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 /* 2 - 3840x2160@25Hz */
1550 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1551 3840, 4896, 4984, 5280, 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_16_9, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001555 /* 3 - 3840x2160@24Hz */
1556 { DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 297000,
1557 3840, 5116, 5204, 5500, 0,
1558 2160, 2168, 2178, 2250, 0,
1559 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001560 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001561 /* 4 - 4096x2160@24Hz (SMPTE) */
1562 { DRM_MODE("4096x2160", DRM_MODE_TYPE_DRIVER, 297000,
1563 4096, 5116, 5204, 5500, 0,
1564 2160, 2168, 2178, 2250, 0,
1565 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
Ville Syrjälä04256622020-04-28 20:19:27 +03001566 .picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135, },
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01001567};
1568
Adam Jackson61e57a82010-03-29 21:43:18 +00001569/*** DDC fetch and block validation ***/
Dave Airlief453ba02008-11-07 14:05:41 -08001570
Adam Jackson083ae052009-09-23 17:30:45 -04001571static const u8 edid_header[] = {
1572 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00
1573};
Dave Airlief453ba02008-11-07 14:05:41 -08001574
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001575/**
1576 * drm_edid_header_is_valid - sanity check the header of the base EDID block
1577 * @raw_edid: pointer to raw base EDID block
1578 *
1579 * Sanity check the header of the base EDID block.
1580 *
1581 * Return: 8 if the header is perfect, down to 0 if it's totally wrong.
Thomas Reim051963d2011-07-29 14:28:57 +00001582 */
1583int drm_edid_header_is_valid(const u8 *raw_edid)
1584{
1585 int i, score = 0;
1586
1587 for (i = 0; i < sizeof(edid_header); i++)
1588 if (raw_edid[i] == edid_header[i])
1589 score++;
1590
1591 return score;
1592}
1593EXPORT_SYMBOL(drm_edid_header_is_valid);
1594
Adam Jackson47819ba2012-05-30 16:42:39 -04001595static int edid_fixup __read_mostly = 6;
1596module_param_named(edid_fixup, edid_fixup, int, 0400);
1597MODULE_PARM_DESC(edid_fixup,
1598 "Minimum number of valid EDID header bytes (0-8, default 6)");
Thomas Reim051963d2011-07-29 14:28:57 +00001599
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001600static int drm_edid_block_checksum(const u8 *raw_edid)
1601{
1602 int i;
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001603 u8 csum = 0, crc = 0;
1604
1605 for (i = 0; i < EDID_LENGTH - 1; i++)
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001606 csum += raw_edid[i];
1607
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001608 crc = 0x100 - csum;
1609
1610 return crc;
1611}
1612
1613static bool drm_edid_block_checksum_diff(const u8 *raw_edid, u8 real_checksum)
1614{
1615 if (raw_edid[EDID_LENGTH - 1] != real_checksum)
1616 return true;
1617 else
1618 return false;
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001619}
1620
Stefan Brünsd6885d62014-11-30 19:57:41 +01001621static bool drm_edid_is_zero(const u8 *in_edid, int length)
1622{
1623 if (memchr_inv(in_edid, 0, length))
1624 return false;
1625
1626 return true;
1627}
1628
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001629/**
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301630 * drm_edid_are_equal - compare two edid blobs.
1631 * @edid1: pointer to first blob
1632 * @edid2: pointer to second blob
1633 * This helper can be used during probing to determine if
1634 * edid had changed.
1635 */
1636bool drm_edid_are_equal(const struct edid *edid1, const struct edid *edid2)
1637{
1638 int edid1_len, edid2_len;
1639 bool edid1_present = edid1 != NULL;
1640 bool edid2_present = edid2 != NULL;
1641
1642 if (edid1_present != edid2_present)
1643 return false;
1644
1645 if (edid1) {
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301646 edid1_len = EDID_LENGTH * (1 + edid1->extensions);
1647 edid2_len = EDID_LENGTH * (1 + edid2->extensions);
1648
1649 if (edid1_len != edid2_len)
1650 return false;
1651
1652 if (memcmp(edid1, edid2, edid1_len))
1653 return false;
1654 }
1655
1656 return true;
1657}
1658EXPORT_SYMBOL(drm_edid_are_equal);
1659
Stanislav Lisovskiy536faa42020-06-30 05:56:58 +05301660/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001661 * drm_edid_block_valid - Sanity check the EDID block (base or extension)
1662 * @raw_edid: pointer to raw EDID block
1663 * @block: type of block to validate (0 for base, extension otherwise)
1664 * @print_bad_edid: if true, dump bad EDID blocks to the console
Todd Previte6ba2bd32015-04-21 11:09:41 -07001665 * @edid_corrupt: if true, the header or checksum is invalid
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001666 *
1667 * Validate a base or extension EDID block and optionally dump bad blocks to
1668 * the console.
1669 *
1670 * Return: True if the block is valid, false otherwise.
Dave Airlief453ba02008-11-07 14:05:41 -08001671 */
Todd Previte6ba2bd32015-04-21 11:09:41 -07001672bool drm_edid_block_valid(u8 *raw_edid, int block, bool print_bad_edid,
1673 bool *edid_corrupt)
Dave Airlief453ba02008-11-07 14:05:41 -08001674{
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001675 u8 csum;
Adam Jackson61e57a82010-03-29 21:43:18 +00001676 struct edid *edid = (struct edid *)raw_edid;
Dave Airlief453ba02008-11-07 14:05:41 -08001677
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001678 if (WARN_ON(!raw_edid))
1679 return false;
1680
Adam Jackson47819ba2012-05-30 16:42:39 -04001681 if (edid_fixup > 8 || edid_fixup < 0)
1682 edid_fixup = 6;
1683
Adam Jacksonf89ec8a2012-04-16 10:40:08 -04001684 if (block == 0) {
Thomas Reim051963d2011-07-29 14:28:57 +00001685 int score = drm_edid_header_is_valid(raw_edid);
Suraj Upadhyay948de8422020-07-02 18:53:32 +05301686
Todd Previte6ba2bd32015-04-21 11:09:41 -07001687 if (score == 8) {
1688 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001689 *edid_corrupt = false;
Todd Previte6ba2bd32015-04-21 11:09:41 -07001690 } else if (score >= edid_fixup) {
1691 /* Displayport Link CTS Core 1.2 rev1.1 test 4.2.2.6
1692 * The corrupt flag needs to be set here otherwise, the
1693 * fix-up code here will correct the problem, the
1694 * checksum is correct and the test fails
1695 */
1696 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001697 *edid_corrupt = true;
Adam Jackson61e57a82010-03-29 21:43:18 +00001698 DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
1699 memcpy(raw_edid, edid_header, sizeof(edid_header));
1700 } else {
Todd Previte6ba2bd32015-04-21 11:09:41 -07001701 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001702 *edid_corrupt = true;
Adam Jackson61e57a82010-03-29 21:43:18 +00001703 goto bad;
1704 }
1705 }
Dave Airlief453ba02008-11-07 14:05:41 -08001706
Stefan Brünsc465bbc2014-11-30 19:57:43 +01001707 csum = drm_edid_block_checksum(raw_edid);
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001708 if (drm_edid_block_checksum_diff(raw_edid, csum)) {
Todd Previte6ba2bd32015-04-21 11:09:41 -07001709 if (edid_corrupt)
Daniel Vetterac6f2e22015-05-08 16:15:41 +02001710 *edid_corrupt = true;
Todd Previte6ba2bd32015-04-21 11:09:41 -07001711
Adam Jackson4a638b42010-05-25 16:33:09 -04001712 /* allow CEA to slide through, switches mangle this */
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001713 if (raw_edid[0] == CEA_EXT) {
1714 DRM_DEBUG("EDID checksum is invalid, remainder is %d\n", csum);
1715 DRM_DEBUG("Assuming a KVM switch modified the CEA block but left the original checksum\n");
1716 } else {
1717 if (print_bad_edid)
Chris Wilson813a7872017-02-10 19:59:13 +00001718 DRM_NOTE("EDID checksum is invalid, remainder is %d\n", csum);
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001719
Adam Jackson4a638b42010-05-25 16:33:09 -04001720 goto bad;
Tomeu Vizoso82d75352016-12-08 14:11:56 +01001721 }
Dave Airlief453ba02008-11-07 14:05:41 -08001722 }
1723
Adam Jackson61e57a82010-03-29 21:43:18 +00001724 /* per-block-type checks */
1725 switch (raw_edid[0]) {
1726 case 0: /* base */
1727 if (edid->version != 1) {
Chris Wilson813a7872017-02-10 19:59:13 +00001728 DRM_NOTE("EDID has major version %d, instead of 1\n", edid->version);
Adam Jackson61e57a82010-03-29 21:43:18 +00001729 goto bad;
1730 }
Adam Jackson862b89c2009-11-23 14:23:06 -05001731
Adam Jackson61e57a82010-03-29 21:43:18 +00001732 if (edid->revision > 4)
1733 DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
1734 break;
1735
1736 default:
1737 break;
1738 }
Adam Jackson47ee4ccf2009-11-23 14:23:05 -05001739
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001740 return true;
Dave Airlief453ba02008-11-07 14:05:41 -08001741
1742bad:
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001743 if (print_bad_edid) {
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001744 if (drm_edid_is_zero(raw_edid, EDID_LENGTH)) {
Joe Perches499447d2017-02-28 04:55:53 -08001745 pr_notice("EDID block is all zeroes\n");
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001746 } else {
Joe Perches499447d2017-02-28 04:55:53 -08001747 pr_notice("Raw EDID:\n");
Chris Wilson813a7872017-02-10 19:59:13 +00001748 print_hex_dump(KERN_NOTICE,
1749 " \t", DUMP_PREFIX_NONE, 16, 1,
1750 raw_edid, EDID_LENGTH, false);
Stefan Brünsda4c07b2014-11-30 19:57:42 +01001751 }
Dave Airlief453ba02008-11-07 14:05:41 -08001752 }
Seung-Woo Kimfe2ef782013-07-02 17:57:04 +09001753 return false;
Dave Airlief453ba02008-11-07 14:05:41 -08001754}
Carsten Emdeda0df922012-03-18 22:37:33 +01001755EXPORT_SYMBOL(drm_edid_block_valid);
Adam Jackson61e57a82010-03-29 21:43:18 +00001756
1757/**
1758 * drm_edid_is_valid - sanity check EDID data
1759 * @edid: EDID data
1760 *
1761 * Sanity-check an entire EDID record (including extensions)
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001762 *
1763 * Return: True if the EDID data is valid, false otherwise.
Adam Jackson61e57a82010-03-29 21:43:18 +00001764 */
1765bool drm_edid_is_valid(struct edid *edid)
1766{
1767 int i;
1768 u8 *raw = (u8 *)edid;
1769
1770 if (!edid)
1771 return false;
1772
1773 for (i = 0; i <= edid->extensions; i++)
Todd Previte6ba2bd32015-04-21 11:09:41 -07001774 if (!drm_edid_block_valid(raw + i * EDID_LENGTH, i, true, NULL))
Adam Jackson61e57a82010-03-29 21:43:18 +00001775 return false;
1776
1777 return true;
1778}
Alex Deucher3c537882010-02-05 04:21:19 -05001779EXPORT_SYMBOL(drm_edid_is_valid);
Dave Airlief453ba02008-11-07 14:05:41 -08001780
Adam Jackson61e57a82010-03-29 21:43:18 +00001781#define DDC_SEGMENT_ADDR 0x30
1782/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001783 * drm_do_probe_ddc_edid() - get EDID information via I2C
Thierry Reding7c58e872014-12-03 16:52:18 +01001784 * @data: I2C device adapter
Daniel Vetterfc668112014-01-21 12:02:26 +01001785 * @buf: EDID data buffer to be filled
1786 * @block: 128 byte EDID block to start fetching from
1787 * @len: EDID data buffer length to fetch
1788 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001789 * Try to fetch EDID information by calling I2C driver functions.
Daniel Vetterfc668112014-01-21 12:02:26 +01001790 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001791 * Return: 0 on success or -1 on failure.
Adam Jackson61e57a82010-03-29 21:43:18 +00001792 */
1793static int
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001794drm_do_probe_ddc_edid(void *data, u8 *buf, unsigned int block, size_t len)
Adam Jackson61e57a82010-03-29 21:43:18 +00001795{
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001796 struct i2c_adapter *adapter = data;
Adam Jackson61e57a82010-03-29 21:43:18 +00001797 unsigned char start = block * EDID_LENGTH;
Shirish Scd004b32012-08-30 07:04:06 +00001798 unsigned char segment = block >> 1;
1799 unsigned char xfers = segment ? 3 : 2;
Chris Wilson4819d2e2011-03-15 11:04:41 +00001800 int ret, retries = 5;
Adam Jackson61e57a82010-03-29 21:43:18 +00001801
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001802 /*
1803 * The core I2C driver will automatically retry the transfer if the
Chris Wilson4819d2e2011-03-15 11:04:41 +00001804 * adapter reports EAGAIN. However, we find that bit-banging transfers
1805 * are susceptible to errors under a heavily loaded machine and
1806 * generate spurious NAKs and timeouts. Retrying the transfer
1807 * of the individual block a few times seems to overcome this.
1808 */
1809 do {
1810 struct i2c_msg msgs[] = {
1811 {
Shirish Scd004b32012-08-30 07:04:06 +00001812 .addr = DDC_SEGMENT_ADDR,
1813 .flags = 0,
1814 .len = 1,
1815 .buf = &segment,
1816 }, {
Chris Wilson4819d2e2011-03-15 11:04:41 +00001817 .addr = DDC_ADDR,
1818 .flags = 0,
1819 .len = 1,
1820 .buf = &start,
1821 }, {
1822 .addr = DDC_ADDR,
1823 .flags = I2C_M_RD,
1824 .len = len,
1825 .buf = buf,
1826 }
1827 };
Shirish Scd004b32012-08-30 07:04:06 +00001828
Thierry Redingdb6cf8332014-04-29 11:44:34 +02001829 /*
1830 * Avoid sending the segment addr to not upset non-compliant
1831 * DDC monitors.
1832 */
Shirish Scd004b32012-08-30 07:04:06 +00001833 ret = i2c_transfer(adapter, &msgs[3 - xfers], xfers);
1834
Eugeni Dodonov9292f372012-01-05 09:34:28 -02001835 if (ret == -ENXIO) {
1836 DRM_DEBUG_KMS("drm: skipping non-existent adapter %s\n",
1837 adapter->name);
1838 break;
1839 }
Shirish Scd004b32012-08-30 07:04:06 +00001840 } while (ret != xfers && --retries);
Adam Jackson61e57a82010-03-29 21:43:18 +00001841
Shirish Scd004b32012-08-30 07:04:06 +00001842 return ret == xfers ? 0 : -1;
Adam Jackson61e57a82010-03-29 21:43:18 +00001843}
1844
Chris Wilson14544d02016-10-24 12:38:21 +01001845static void connector_bad_edid(struct drm_connector *connector,
1846 u8 *edid, int num_blocks)
1847{
1848 int i;
Douglas Anderson97794172021-10-05 19:29:08 -07001849 u8 last_block;
1850
1851 /*
1852 * 0x7e in the EDID is the number of extension blocks. The EDID
1853 * is 1 (base block) + num_ext_blocks big. That means we can think
1854 * of 0x7e in the EDID of the _index_ of the last block in the
1855 * combined chunk of memory.
1856 */
1857 last_block = edid[0x7e];
Jerry (Fangzhi) Zuoe11f5bd2020-02-11 11:08:32 -05001858
1859 /* Calculate real checksum for the last edid extension block data */
Douglas Anderson97794172021-10-05 19:29:08 -07001860 if (last_block < num_blocks)
1861 connector->real_edid_checksum =
1862 drm_edid_block_checksum(edid + last_block * EDID_LENGTH);
Chris Wilson14544d02016-10-24 12:38:21 +01001863
Jani Nikulaf0a8f532019-10-01 17:06:14 +03001864 if (connector->bad_edid_counter++ && !drm_debug_enabled(DRM_UT_KMS))
Chris Wilson14544d02016-10-24 12:38:21 +01001865 return;
1866
Chris Wilsonfa3bfa32020-10-29 21:30:42 +00001867 drm_dbg_kms(connector->dev, "%s: EDID is invalid:\n", connector->name);
Chris Wilson14544d02016-10-24 12:38:21 +01001868 for (i = 0; i < num_blocks; i++) {
1869 u8 *block = edid + i * EDID_LENGTH;
1870 char prefix[20];
1871
1872 if (drm_edid_is_zero(block, EDID_LENGTH))
1873 sprintf(prefix, "\t[%02x] ZERO ", i);
1874 else if (!drm_edid_block_valid(block, i, false, NULL))
1875 sprintf(prefix, "\t[%02x] BAD ", i);
1876 else
1877 sprintf(prefix, "\t[%02x] GOOD ", i);
1878
Chris Wilsonfa3bfa32020-10-29 21:30:42 +00001879 print_hex_dump(KERN_DEBUG,
Chris Wilson14544d02016-10-24 12:38:21 +01001880 prefix, DUMP_PREFIX_NONE, 16, 1,
1881 block, EDID_LENGTH, false);
1882 }
1883}
1884
Jani Nikula56a2b7f2019-06-07 14:05:12 +03001885/* Get override or firmware EDID */
1886static struct edid *drm_get_override_edid(struct drm_connector *connector)
1887{
1888 struct edid *override = NULL;
1889
1890 if (connector->override_edid)
1891 override = drm_edid_duplicate(connector->edid_blob_ptr->data);
1892
1893 if (!override)
1894 override = drm_load_edid_firmware(connector);
1895
1896 return IS_ERR(override) ? NULL : override;
1897}
1898
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001899/**
Jani Nikula48eaeb72019-06-10 12:30:54 +03001900 * drm_add_override_edid_modes - add modes from override/firmware EDID
1901 * @connector: connector we're probing
1902 *
1903 * Add modes from the override/firmware EDID, if available. Only to be used from
1904 * drm_helper_probe_single_connector_modes() as a fallback for when DDC probe
1905 * failed during drm_get_edid() and caused the override/firmware EDID to be
1906 * skipped.
1907 *
1908 * Return: The number of modes added or 0 if we couldn't find any.
1909 */
1910int drm_add_override_edid_modes(struct drm_connector *connector)
1911{
1912 struct edid *override;
1913 int num_modes = 0;
1914
1915 override = drm_get_override_edid(connector);
1916 if (override) {
1917 drm_connector_update_edid_property(connector, override);
1918 num_modes = drm_add_edid_modes(connector, override);
1919 kfree(override);
1920
1921 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] adding %d modes via fallback override/firmware EDID\n",
1922 connector->base.id, connector->name, num_modes);
1923 }
1924
1925 return num_modes;
1926}
1927EXPORT_SYMBOL(drm_add_override_edid_modes);
1928
Douglas Andersone7bd95a2021-10-04 09:21:27 -07001929static struct edid *drm_do_get_edid_base_block(struct drm_connector *connector,
Douglas Andersonbac9c292021-09-14 13:21:49 -07001930 int (*get_edid_block)(void *data, u8 *buf, unsigned int block,
1931 size_t len),
Douglas Andersone7bd95a2021-10-04 09:21:27 -07001932 void *data)
Douglas Andersonbac9c292021-09-14 13:21:49 -07001933{
Douglas Andersone7bd95a2021-10-04 09:21:27 -07001934 int *null_edid_counter = connector ? &connector->null_edid_counter : NULL;
1935 bool *edid_corrupt = connector ? &connector->edid_corrupt : NULL;
Douglas Andersonbac9c292021-09-14 13:21:49 -07001936 void *edid;
Douglas Andersone7bd95a2021-10-04 09:21:27 -07001937 int i;
Douglas Andersonbac9c292021-09-14 13:21:49 -07001938
1939 edid = kmalloc(EDID_LENGTH, GFP_KERNEL);
1940 if (edid == NULL)
1941 return NULL;
1942
1943 /* base block fetch */
1944 for (i = 0; i < 4; i++) {
1945 if (get_edid_block(data, edid, 0, EDID_LENGTH))
1946 goto out;
1947 if (drm_edid_block_valid(edid, 0, false, edid_corrupt))
1948 break;
1949 if (i == 0 && drm_edid_is_zero(edid, EDID_LENGTH)) {
1950 if (null_edid_counter)
1951 (*null_edid_counter)++;
1952 goto carp;
1953 }
1954 }
1955 if (i == 4)
1956 goto carp;
1957
1958 return edid;
1959
1960carp:
Douglas Andersone7bd95a2021-10-04 09:21:27 -07001961 if (connector)
1962 connector_bad_edid(connector, edid, 1);
Douglas Andersonbac9c292021-09-14 13:21:49 -07001963out:
1964 kfree(edid);
1965 return NULL;
1966}
1967
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001968/**
1969 * drm_do_get_edid - get EDID data using a custom EDID block read function
1970 * @connector: connector we're probing
1971 * @get_edid_block: EDID block read function
1972 * @data: private data passed to the block read function
1973 *
1974 * When the I2C adapter connected to the DDC bus is hidden behind a device that
1975 * exposes a different interface to read EDID blocks this function can be used
1976 * to get EDID data using a custom block read function.
1977 *
1978 * As in the general case the DDC bus is accessible by the kernel at the I2C
1979 * level, drivers must make all reasonable efforts to expose it as an I2C
1980 * adapter and use drm_get_edid() instead of abusing this function.
1981 *
Cai Huoqing0ae865e2021-07-30 21:27:29 +08001982 * The EDID may be overridden using debugfs override_edid or firmware EDID
Jani Nikula53fd40a2017-09-12 11:19:26 +03001983 * (drm_load_edid_firmware() and drm.edid_firmware parameter), in this priority
1984 * order. Having either of them bypasses actual EDID reads.
1985 *
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02001986 * Return: Pointer to valid EDID or NULL if we couldn't find any.
1987 */
1988struct edid *drm_do_get_edid(struct drm_connector *connector,
1989 int (*get_edid_block)(void *data, u8 *buf, unsigned int block,
1990 size_t len),
1991 void *data)
Adam Jackson61e57a82010-03-29 21:43:18 +00001992{
Sam Tygier0ea75e22010-09-23 10:11:01 +01001993 int i, j = 0, valid_extensions = 0;
Chris Wilsonf14f3682016-10-17 09:35:12 +01001994 u8 *edid, *new;
Jani Nikula56a2b7f2019-06-07 14:05:12 +03001995 struct edid *override;
Jani Nikula53fd40a2017-09-12 11:19:26 +03001996
Jani Nikula56a2b7f2019-06-07 14:05:12 +03001997 override = drm_get_override_edid(connector);
1998 if (override)
Jani Nikula53fd40a2017-09-12 11:19:26 +03001999 return override;
Adam Jackson61e57a82010-03-29 21:43:18 +00002000
Douglas Andersone7bd95a2021-10-04 09:21:27 -07002001 edid = (u8 *)drm_do_get_edid_base_block(connector, get_edid_block, data);
2002 if (!edid)
Adam Jackson61e57a82010-03-29 21:43:18 +00002003 return NULL;
Adam Jackson61e57a82010-03-29 21:43:18 +00002004
Douglas Andersonbac9c292021-09-14 13:21:49 -07002005 /* if there's no extensions or no connector, we're done */
Chris Wilson14544d02016-10-24 12:38:21 +01002006 valid_extensions = edid[0x7e];
2007 if (valid_extensions == 0)
Chris Wilsonf14f3682016-10-17 09:35:12 +01002008 return (struct edid *)edid;
Adam Jackson61e57a82010-03-29 21:43:18 +00002009
Chris Wilson14544d02016-10-24 12:38:21 +01002010 new = krealloc(edid, (valid_extensions + 1) * EDID_LENGTH, GFP_KERNEL);
Adam Jackson61e57a82010-03-29 21:43:18 +00002011 if (!new)
2012 goto out;
Chris Wilsonf14f3682016-10-17 09:35:12 +01002013 edid = new;
Adam Jackson61e57a82010-03-29 21:43:18 +00002014
Chris Wilsonf14f3682016-10-17 09:35:12 +01002015 for (j = 1; j <= edid[0x7e]; j++) {
Chris Wilson14544d02016-10-24 12:38:21 +01002016 u8 *block = edid + j * EDID_LENGTH;
Chris Wilsona28187c2016-10-17 09:35:13 +01002017
Adam Jackson61e57a82010-03-29 21:43:18 +00002018 for (i = 0; i < 4; i++) {
Chris Wilsona28187c2016-10-17 09:35:13 +01002019 if (get_edid_block(data, block, j, EDID_LENGTH))
Adam Jackson61e57a82010-03-29 21:43:18 +00002020 goto out;
Chris Wilson14544d02016-10-24 12:38:21 +01002021 if (drm_edid_block_valid(block, j, false, NULL))
Adam Jackson61e57a82010-03-29 21:43:18 +00002022 break;
2023 }
Maarten Lankhorstf934ec8c2013-01-29 14:27:39 +01002024
Chris Wilson14544d02016-10-24 12:38:21 +01002025 if (i == 4)
2026 valid_extensions--;
Sam Tygier0ea75e22010-09-23 10:11:01 +01002027 }
2028
Chris Wilsonf14f3682016-10-17 09:35:12 +01002029 if (valid_extensions != edid[0x7e]) {
Chris Wilson14544d02016-10-24 12:38:21 +01002030 u8 *base;
2031
2032 connector_bad_edid(connector, edid, edid[0x7e] + 1);
2033
Chris Wilsonf14f3682016-10-17 09:35:12 +01002034 edid[EDID_LENGTH-1] += edid[0x7e] - valid_extensions;
2035 edid[0x7e] = valid_extensions;
Chris Wilson14544d02016-10-24 12:38:21 +01002036
Kees Cook6da2ec52018-06-12 13:55:00 -07002037 new = kmalloc_array(valid_extensions + 1, EDID_LENGTH,
2038 GFP_KERNEL);
Sam Tygier0ea75e22010-09-23 10:11:01 +01002039 if (!new)
2040 goto out;
Chris Wilson14544d02016-10-24 12:38:21 +01002041
2042 base = new;
2043 for (i = 0; i <= edid[0x7e]; i++) {
2044 u8 *block = edid + i * EDID_LENGTH;
2045
2046 if (!drm_edid_block_valid(block, i, false, NULL))
2047 continue;
2048
2049 memcpy(base, block, EDID_LENGTH);
2050 base += EDID_LENGTH;
2051 }
2052
2053 kfree(edid);
Chris Wilsonf14f3682016-10-17 09:35:12 +01002054 edid = new;
Adam Jackson61e57a82010-03-29 21:43:18 +00002055 }
2056
Chris Wilsonf14f3682016-10-17 09:35:12 +01002057 return (struct edid *)edid;
Adam Jackson61e57a82010-03-29 21:43:18 +00002058
Adam Jackson61e57a82010-03-29 21:43:18 +00002059out:
Chris Wilsonf14f3682016-10-17 09:35:12 +01002060 kfree(edid);
Adam Jackson61e57a82010-03-29 21:43:18 +00002061 return NULL;
2062}
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02002063EXPORT_SYMBOL_GPL(drm_do_get_edid);
Adam Jackson61e57a82010-03-29 21:43:18 +00002064
2065/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002066 * drm_probe_ddc() - probe DDC presence
2067 * @adapter: I2C adapter to probe
Adam Jackson61e57a82010-03-29 21:43:18 +00002068 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002069 * Return: True on success, false on failure.
Adam Jackson61e57a82010-03-29 21:43:18 +00002070 */
Adam Jacksonfbff4692012-09-18 10:58:47 -04002071bool
Adam Jackson61e57a82010-03-29 21:43:18 +00002072drm_probe_ddc(struct i2c_adapter *adapter)
2073{
2074 unsigned char out;
2075
2076 return (drm_do_probe_ddc_edid(adapter, &out, 0, 1) == 0);
2077}
Adam Jacksonfbff4692012-09-18 10:58:47 -04002078EXPORT_SYMBOL(drm_probe_ddc);
Adam Jackson61e57a82010-03-29 21:43:18 +00002079
2080/**
2081 * drm_get_edid - get EDID data, if available
2082 * @connector: connector we're probing
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002083 * @adapter: I2C adapter to use for DDC
Adam Jackson61e57a82010-03-29 21:43:18 +00002084 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002085 * Poke the given I2C channel to grab EDID data if possible. If found,
Adam Jackson61e57a82010-03-29 21:43:18 +00002086 * attach it to the connector.
2087 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002088 * Return: Pointer to valid EDID or NULL if we couldn't find any.
Adam Jackson61e57a82010-03-29 21:43:18 +00002089 */
2090struct edid *drm_get_edid(struct drm_connector *connector,
2091 struct i2c_adapter *adapter)
2092{
Stanislav Lisovskiy51864212020-06-30 05:56:59 +05302093 struct edid *edid;
2094
Jani Nikula15f080f2017-02-17 17:20:53 +02002095 if (connector->force == DRM_FORCE_OFF)
2096 return NULL;
2097
2098 if (connector->force == DRM_FORCE_UNSPECIFIED && !drm_probe_ddc(adapter))
Lars-Peter Clausen18df89f2012-04-27 11:11:58 +02002099 return NULL;
Adam Jackson61e57a82010-03-29 21:43:18 +00002100
Stanislav Lisovskiy51864212020-06-30 05:56:59 +05302101 edid = drm_do_get_edid(connector, drm_do_probe_ddc_edid, adapter);
2102 drm_connector_update_edid_property(connector, edid);
2103 return edid;
Adam Jackson61e57a82010-03-29 21:43:18 +00002104}
2105EXPORT_SYMBOL(drm_get_edid);
2106
Douglas Andersond9f91a12021-09-14 13:21:50 -07002107static u32 edid_extract_panel_id(const struct edid *edid)
2108{
2109 /*
Douglas Andersone8de4d52021-09-14 13:21:51 -07002110 * We represent the ID as a 32-bit number so it can easily be compared
2111 * with "==".
Douglas Andersond9f91a12021-09-14 13:21:50 -07002112 *
2113 * NOTE that we deal with endianness differently for the top half
2114 * of this ID than for the bottom half. The bottom half (the product
2115 * id) gets decoded as little endian by the EDID_PRODUCT_ID because
2116 * that's how everyone seems to interpret it. The top half (the mfg_id)
2117 * gets stored as big endian because that makes
2118 * drm_edid_encode_panel_id() and drm_edid_decode_panel_id() easier
2119 * to write (it's easier to extract the ASCII). It doesn't really
2120 * matter, though, as long as the number here is unique.
2121 */
2122 return (u32)edid->mfg_id[0] << 24 |
2123 (u32)edid->mfg_id[1] << 16 |
2124 (u32)EDID_PRODUCT_ID(edid);
2125}
2126
2127/**
2128 * drm_edid_get_panel_id - Get a panel's ID through DDC
2129 * @adapter: I2C adapter to use for DDC
2130 *
2131 * This function reads the first block of the EDID of a panel and (assuming
2132 * that the EDID is valid) extracts the ID out of it. The ID is a 32-bit value
2133 * (16 bits of manufacturer ID and 16 bits of per-manufacturer ID) that's
2134 * supposed to be different for each different modem of panel.
2135 *
2136 * This function is intended to be used during early probing on devices where
2137 * more than one panel might be present. Because of its intended use it must
2138 * assume that the EDID of the panel is correct, at least as far as the ID
2139 * is concerned (in other words, we don't process any overrides here).
2140 *
2141 * NOTE: it's expected that this function and drm_do_get_edid() will both
2142 * be read the EDID, but there is no caching between them. Since we're only
2143 * reading the first block, hopefully this extra overhead won't be too big.
2144 *
2145 * Return: A 32-bit ID that should be different for each make/model of panel.
2146 * See the functions drm_edid_encode_panel_id() and
2147 * drm_edid_decode_panel_id() for some details on the structure of this
2148 * ID.
2149 */
2150
2151u32 drm_edid_get_panel_id(struct i2c_adapter *adapter)
2152{
2153 struct edid *edid;
2154 u32 panel_id;
2155
Douglas Andersone7bd95a2021-10-04 09:21:27 -07002156 edid = drm_do_get_edid_base_block(NULL, drm_do_probe_ddc_edid, adapter);
Douglas Andersond9f91a12021-09-14 13:21:50 -07002157
2158 /*
2159 * There are no manufacturer IDs of 0, so if there is a problem reading
2160 * the EDID then we'll just return 0.
2161 */
Douglas Andersone7bd95a2021-10-04 09:21:27 -07002162 if (!edid)
Douglas Andersond9f91a12021-09-14 13:21:50 -07002163 return 0;
2164
2165 panel_id = edid_extract_panel_id(edid);
2166 kfree(edid);
2167
2168 return panel_id;
2169}
2170EXPORT_SYMBOL(drm_edid_get_panel_id);
2171
Jani Nikula51f8da52013-09-27 15:08:27 +03002172/**
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +01002173 * drm_get_edid_switcheroo - get EDID data for a vga_switcheroo output
2174 * @connector: connector we're probing
2175 * @adapter: I2C adapter to use for DDC
2176 *
2177 * Wrapper around drm_get_edid() for laptops with dual GPUs using one set of
2178 * outputs. The wrapper adds the requisite vga_switcheroo calls to temporarily
2179 * switch DDC to the GPU which is retrieving EDID.
2180 *
2181 * Return: Pointer to valid EDID or %NULL if we couldn't find any.
2182 */
2183struct edid *drm_get_edid_switcheroo(struct drm_connector *connector,
2184 struct i2c_adapter *adapter)
2185{
Thomas Zimmermann36b73b02021-01-18 14:14:15 +01002186 struct drm_device *dev = connector->dev;
2187 struct pci_dev *pdev = to_pci_dev(dev->dev);
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +01002188 struct edid *edid;
2189
Thomas Zimmermann36b73b02021-01-18 14:14:15 +01002190 if (drm_WARN_ON_ONCE(dev, !dev_is_pci(dev->dev)))
2191 return NULL;
2192
Lukas Wunner5cb8eaa22016-01-11 20:09:20 +01002193 vga_switcheroo_lock_ddc(pdev);
2194 edid = drm_get_edid(connector, adapter);
2195 vga_switcheroo_unlock_ddc(pdev);
2196
2197 return edid;
2198}
2199EXPORT_SYMBOL(drm_get_edid_switcheroo);
2200
2201/**
Jani Nikula51f8da52013-09-27 15:08:27 +03002202 * drm_edid_duplicate - duplicate an EDID and the extensions
2203 * @edid: EDID to duplicate
2204 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002205 * Return: Pointer to duplicated EDID or NULL on allocation failure.
Jani Nikula51f8da52013-09-27 15:08:27 +03002206 */
2207struct edid *drm_edid_duplicate(const struct edid *edid)
2208{
2209 return kmemdup(edid, (edid->extensions + 1) * EDID_LENGTH, GFP_KERNEL);
2210}
2211EXPORT_SYMBOL(drm_edid_duplicate);
2212
Adam Jackson61e57a82010-03-29 21:43:18 +00002213/*** EDID parsing ***/
2214
Dave Airlief453ba02008-11-07 14:05:41 -08002215/**
Dave Airlief453ba02008-11-07 14:05:41 -08002216 * edid_get_quirks - return quirk flags for a given EDID
2217 * @edid: EDID to process
2218 *
2219 * This tells subsequent routines what fixes they need to apply.
2220 */
Keith Packard170178f2017-12-13 00:44:26 -08002221static u32 edid_get_quirks(const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08002222{
Douglas Andersone8de4d52021-09-14 13:21:51 -07002223 u32 panel_id = edid_extract_panel_id(edid);
Jani Nikula23c4cfb2016-12-28 13:06:26 +02002224 const struct edid_quirk *quirk;
Dave Airlief453ba02008-11-07 14:05:41 -08002225 int i;
2226
2227 for (i = 0; i < ARRAY_SIZE(edid_quirk_list); i++) {
2228 quirk = &edid_quirk_list[i];
Douglas Andersone8de4d52021-09-14 13:21:51 -07002229 if (quirk->panel_id == panel_id)
Dave Airlief453ba02008-11-07 14:05:41 -08002230 return quirk->quirks;
2231 }
2232
2233 return 0;
2234}
2235
2236#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
Alex Deucher339d2022013-08-15 11:42:14 -04002237#define MODE_REFRESH_DIFF(c,t) (abs((c) - (t)))
Dave Airlief453ba02008-11-07 14:05:41 -08002238
Dave Airlief453ba02008-11-07 14:05:41 -08002239/**
2240 * edid_fixup_preferred - set preferred modes based on quirk list
2241 * @connector: has mode list to fix up
2242 * @quirks: quirks list
2243 *
2244 * Walk the mode list for @connector, clearing the preferred status
2245 * on existing modes and setting it anew for the right mode ala @quirks.
2246 */
2247static void edid_fixup_preferred(struct drm_connector *connector,
2248 u32 quirks)
2249{
2250 struct drm_display_mode *t, *cur_mode, *preferred_mode;
Dave Airlief8906072008-12-18 16:59:02 +10002251 int target_refresh = 0;
Alex Deucher339d2022013-08-15 11:42:14 -04002252 int cur_vrefresh, preferred_vrefresh;
Dave Airlief453ba02008-11-07 14:05:41 -08002253
2254 if (list_empty(&connector->probed_modes))
2255 return;
2256
2257 if (quirks & EDID_QUIRK_PREFER_LARGE_60)
2258 target_refresh = 60;
2259 if (quirks & EDID_QUIRK_PREFER_LARGE_75)
2260 target_refresh = 75;
2261
2262 preferred_mode = list_first_entry(&connector->probed_modes,
2263 struct drm_display_mode, head);
2264
2265 list_for_each_entry_safe(cur_mode, t, &connector->probed_modes, head) {
2266 cur_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
2267
2268 if (cur_mode == preferred_mode)
2269 continue;
2270
2271 /* Largest mode is preferred */
2272 if (MODE_SIZE(cur_mode) > MODE_SIZE(preferred_mode))
2273 preferred_mode = cur_mode;
2274
Ville Syrjälä04256622020-04-28 20:19:27 +03002275 cur_vrefresh = drm_mode_vrefresh(cur_mode);
2276 preferred_vrefresh = drm_mode_vrefresh(preferred_mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002277 /* At a given size, try to get closest to target refresh */
2278 if ((MODE_SIZE(cur_mode) == MODE_SIZE(preferred_mode)) &&
Alex Deucher339d2022013-08-15 11:42:14 -04002279 MODE_REFRESH_DIFF(cur_vrefresh, target_refresh) <
2280 MODE_REFRESH_DIFF(preferred_vrefresh, target_refresh)) {
Dave Airlief453ba02008-11-07 14:05:41 -08002281 preferred_mode = cur_mode;
2282 }
2283 }
2284
2285 preferred_mode->type |= DRM_MODE_TYPE_PREFERRED;
2286}
2287
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002288static bool
2289mode_is_rb(const struct drm_display_mode *mode)
2290{
2291 return (mode->htotal - mode->hdisplay == 160) &&
2292 (mode->hsync_end - mode->hdisplay == 80) &&
2293 (mode->hsync_end - mode->hsync_start == 32) &&
2294 (mode->vsync_start - mode->vdisplay == 3);
2295}
2296
Adam Jackson33c75312012-04-13 16:33:29 -04002297/*
2298 * drm_mode_find_dmt - Create a copy of a mode if present in DMT
2299 * @dev: Device to duplicate against
2300 * @hsize: Mode width
2301 * @vsize: Mode height
2302 * @fresh: Mode refresh rate
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002303 * @rb: Mode reduced-blanking-ness
Adam Jackson33c75312012-04-13 16:33:29 -04002304 *
2305 * Walk the DMT mode list looking for a match for the given parameters.
Thierry Redingdb6cf8332014-04-29 11:44:34 +02002306 *
2307 * Return: A newly allocated copy of the mode, or NULL if not found.
Adam Jackson33c75312012-04-13 16:33:29 -04002308 */
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002309struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002310 int hsize, int vsize, int fresh,
2311 bool rb)
Zhao Yakui559ee212009-09-03 09:33:47 +08002312{
Adam Jackson07a5e632009-12-03 17:44:38 -05002313 int i;
Zhao Yakui559ee212009-09-03 09:33:47 +08002314
Thierry Redinga6b21832012-11-23 15:01:42 +01002315 for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002316 const struct drm_display_mode *ptr = &drm_dmt_modes[i];
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302317
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002318 if (hsize != ptr->hdisplay)
2319 continue;
2320 if (vsize != ptr->vdisplay)
2321 continue;
2322 if (fresh != drm_mode_vrefresh(ptr))
2323 continue;
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002324 if (rb != mode_is_rb(ptr))
2325 continue;
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002326
2327 return drm_mode_duplicate(dev, ptr);
Zhao Yakui559ee212009-09-03 09:33:47 +08002328 }
Adam Jacksonf8b46a02012-04-13 16:33:30 -04002329
2330 return NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +08002331}
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002332EXPORT_SYMBOL(drm_mode_find_dmt);
Adam Jackson23425ca2009-09-23 17:30:58 -04002333
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002334static bool is_display_descriptor(const u8 d[18], u8 tag)
2335{
2336 return d[0] == 0x00 && d[1] == 0x00 &&
2337 d[2] == 0x00 && d[3] == tag;
2338}
2339
Ville Syrjäläf447dd12020-01-24 22:02:26 +02002340static bool is_detailed_timing_descriptor(const u8 d[18])
2341{
2342 return d[0] != 0x00 || d[1] != 0x00;
2343}
2344
Adam Jacksond1ff6402010-03-29 21:43:26 +00002345typedef void detailed_cb(struct detailed_timing *timing, void *closure);
2346
2347static void
Adam Jackson4d76a222010-08-03 14:38:17 -04002348cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
2349{
Ville Syrjälä7304b982020-01-24 22:02:24 +02002350 int i, n;
Christian Schmidt4966b2a2011-12-19 20:03:43 +01002351 u8 d = ext[0x02];
Adam Jackson4d76a222010-08-03 14:38:17 -04002352 u8 *det_base = ext + d;
2353
Ville Syrjälä7304b982020-01-24 22:02:24 +02002354 if (d < 4 || d > 127)
2355 return;
2356
Christian Schmidt4966b2a2011-12-19 20:03:43 +01002357 n = (127 - d) / 18;
Adam Jackson4d76a222010-08-03 14:38:17 -04002358 for (i = 0; i < n; i++)
2359 cb((struct detailed_timing *)(det_base + 18 * i), closure);
2360}
2361
2362static void
Adam Jacksoncbba98f2010-08-03 14:38:18 -04002363vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure)
2364{
2365 unsigned int i, n = min((int)ext[0x02], 6);
2366 u8 *det_base = ext + 5;
2367
2368 if (ext[0x01] != 1)
2369 return; /* unknown version */
2370
2371 for (i = 0; i < n; i++)
2372 cb((struct detailed_timing *)(det_base + 18 * i), closure);
2373}
2374
2375static void
Adam Jacksond1ff6402010-03-29 21:43:26 +00002376drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure)
2377{
2378 int i;
2379 struct edid *edid = (struct edid *)raw_edid;
2380
2381 if (edid == NULL)
2382 return;
2383
2384 for (i = 0; i < EDID_DETAILED_TIMINGS; i++)
2385 cb(&(edid->detailed_timings[i]), closure);
2386
Adam Jackson4d76a222010-08-03 14:38:17 -04002387 for (i = 1; i <= raw_edid[0x7e]; i++) {
2388 u8 *ext = raw_edid + (i * EDID_LENGTH);
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302389
Adam Jackson4d76a222010-08-03 14:38:17 -04002390 switch (*ext) {
2391 case CEA_EXT:
2392 cea_for_each_detailed_block(ext, cb, closure);
2393 break;
Adam Jacksoncbba98f2010-08-03 14:38:18 -04002394 case VTB_EXT:
2395 vtb_for_each_detailed_block(ext, cb, closure);
2396 break;
Adam Jackson4d76a222010-08-03 14:38:17 -04002397 default:
2398 break;
2399 }
2400 }
Adam Jacksond1ff6402010-03-29 21:43:26 +00002401}
2402
2403static void
2404is_rb(struct detailed_timing *t, void *data)
2405{
2406 u8 *r = (u8 *)t;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002407
2408 if (!is_display_descriptor(r, EDID_DETAIL_MONITOR_RANGE))
2409 return;
2410
2411 if (r[15] & 0x10)
2412 *(bool *)data = true;
Adam Jacksond1ff6402010-03-29 21:43:26 +00002413}
2414
2415/* EDID 1.4 defines this explicitly. For EDID 1.3, we guess, badly. */
2416static bool
2417drm_monitor_supports_rb(struct edid *edid)
2418{
2419 if (edid->revision >= 4) {
Daniel Vetterb196a492012-06-19 11:33:06 +02002420 bool ret = false;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302421
Adam Jacksond1ff6402010-03-29 21:43:26 +00002422 drm_for_each_detailed_block((u8 *)edid, is_rb, &ret);
2423 return ret;
2424 }
2425
2426 return ((edid->input & DRM_EDID_INPUT_DIGITAL) != 0);
2427}
2428
Adam Jackson7a374352010-03-29 21:43:30 +00002429static void
2430find_gtf2(struct detailed_timing *t, void *data)
2431{
2432 u8 *r = (u8 *)t;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002433
2434 if (!is_display_descriptor(r, EDID_DETAIL_MONITOR_RANGE))
2435 return;
2436
2437 if (r[10] == 0x02)
Adam Jackson7a374352010-03-29 21:43:30 +00002438 *(u8 **)data = r;
2439}
2440
2441/* Secondary GTF curve kicks in above some break frequency */
2442static int
2443drm_gtf2_hbreak(struct edid *edid)
2444{
2445 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302446
Adam Jackson7a374352010-03-29 21:43:30 +00002447 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2448 return r ? (r[12] * 2) : 0;
2449}
2450
2451static int
2452drm_gtf2_2c(struct edid *edid)
2453{
2454 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302455
Adam Jackson7a374352010-03-29 21:43:30 +00002456 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2457 return r ? r[13] : 0;
2458}
2459
2460static int
2461drm_gtf2_m(struct edid *edid)
2462{
2463 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302464
Adam Jackson7a374352010-03-29 21:43:30 +00002465 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2466 return r ? (r[15] << 8) + r[14] : 0;
2467}
2468
2469static int
2470drm_gtf2_k(struct edid *edid)
2471{
2472 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302473
Adam Jackson7a374352010-03-29 21:43:30 +00002474 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2475 return r ? r[16] : 0;
2476}
2477
2478static int
2479drm_gtf2_2j(struct edid *edid)
2480{
2481 u8 *r = NULL;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302482
Adam Jackson7a374352010-03-29 21:43:30 +00002483 drm_for_each_detailed_block((u8 *)edid, find_gtf2, &r);
2484 return r ? r[17] : 0;
2485}
2486
2487/**
2488 * standard_timing_level - get std. timing level(CVT/GTF/DMT)
2489 * @edid: EDID block to scan
2490 */
2491static int standard_timing_level(struct edid *edid)
2492{
2493 if (edid->revision >= 2) {
2494 if (edid->revision >= 4 && (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF))
2495 return LEVEL_CVT;
2496 if (drm_gtf2_hbreak(edid))
2497 return LEVEL_GTF2;
Lee Shawn Cbfef04a2019-10-07 21:51:27 +08002498 if (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF)
2499 return LEVEL_GTF;
Adam Jackson7a374352010-03-29 21:43:30 +00002500 }
2501 return LEVEL_DMT;
2502}
2503
Adam Jackson23425ca2009-09-23 17:30:58 -04002504/*
2505 * 0 is reserved. The spec says 0x01 fill for unused timings. Some old
2506 * monitors fill with ascii space (0x20) instead.
2507 */
2508static int
2509bad_std_timing(u8 a, u8 b)
2510{
2511 return (a == 0x00 && b == 0x00) ||
2512 (a == 0x01 && b == 0x01) ||
2513 (a == 0x20 && b == 0x20);
2514}
2515
Ville Syrjälä58911c22020-04-28 20:19:25 +03002516static int drm_mode_hsync(const struct drm_display_mode *mode)
2517{
2518 if (mode->htotal <= 0)
2519 return 0;
2520
2521 return DIV_ROUND_CLOSEST(mode->clock, mode->htotal);
2522}
2523
Dave Airlief453ba02008-11-07 14:05:41 -08002524/**
2525 * drm_mode_std - convert standard mode info (width, height, refresh) into mode
Daniel Vetterfc668112014-01-21 12:02:26 +01002526 * @connector: connector of for the EDID block
2527 * @edid: EDID block to scan
Dave Airlief453ba02008-11-07 14:05:41 -08002528 * @t: standard timing params
2529 *
2530 * Take the standard timing params (in this case width, aspect, and refresh)
Zhao Yakui5c612592009-06-22 13:17:10 +08002531 * and convert them into a real mode using CVT/GTF/DMT.
Dave Airlief453ba02008-11-07 14:05:41 -08002532 */
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002533static struct drm_display_mode *
Adam Jackson7a374352010-03-29 21:43:30 +00002534drm_mode_std(struct drm_connector *connector, struct edid *edid,
Thierry Reding464fdec2014-04-29 11:44:33 +02002535 struct std_timing *t)
Dave Airlief453ba02008-11-07 14:05:41 -08002536{
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002537 struct drm_device *dev = connector->dev;
2538 struct drm_display_mode *m, *mode = NULL;
Zhao Yakui5c612592009-06-22 13:17:10 +08002539 int hsize, vsize;
2540 int vrefresh_rate;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002541 unsigned aspect_ratio = (t->vfreq_aspect & EDID_TIMING_ASPECT_MASK)
2542 >> EDID_TIMING_ASPECT_SHIFT;
Zhao Yakui5c612592009-06-22 13:17:10 +08002543 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK)
2544 >> EDID_TIMING_VFREQ_SHIFT;
Adam Jackson7a374352010-03-29 21:43:30 +00002545 int timing_level = standard_timing_level(edid);
Dave Airlief453ba02008-11-07 14:05:41 -08002546
Adam Jackson23425ca2009-09-23 17:30:58 -04002547 if (bad_std_timing(t->hsize, t->vfreq_aspect))
2548 return NULL;
2549
Zhao Yakui5c612592009-06-22 13:17:10 +08002550 /* According to the EDID spec, the hdisplay = hsize * 8 + 248 */
2551 hsize = t->hsize * 8 + 248;
2552 /* vrefresh_rate = vfreq + 60 */
2553 vrefresh_rate = vfreq + 60;
2554 /* the vdisplay is calculated based on the aspect ratio */
Adam Jacksonf066a172009-09-23 17:31:21 -04002555 if (aspect_ratio == 0) {
Thierry Reding464fdec2014-04-29 11:44:33 +02002556 if (edid->revision < 3)
Adam Jacksonf066a172009-09-23 17:31:21 -04002557 vsize = hsize;
2558 else
2559 vsize = (hsize * 10) / 16;
2560 } else if (aspect_ratio == 1)
Dave Airlief453ba02008-11-07 14:05:41 -08002561 vsize = (hsize * 3) / 4;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002562 else if (aspect_ratio == 2)
Dave Airlief453ba02008-11-07 14:05:41 -08002563 vsize = (hsize * 4) / 5;
2564 else
2565 vsize = (hsize * 9) / 16;
Adam Jacksona0910c82010-03-29 21:43:28 +00002566
2567 /* HDTV hack, part 1 */
2568 if (vrefresh_rate == 60 &&
2569 ((hsize == 1360 && vsize == 765) ||
2570 (hsize == 1368 && vsize == 769))) {
2571 hsize = 1366;
2572 vsize = 768;
2573 }
2574
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002575 /*
2576 * If this connector already has a mode for this size and refresh
2577 * rate (because it came from detailed or CVT info), use that
2578 * instead. This way we don't have to guess at interlace or
2579 * reduced blanking.
2580 */
Adam Jackson522032d2010-04-09 16:52:49 +00002581 list_for_each_entry(m, &connector->probed_modes, head)
Adam Jackson7ca6adb2010-03-29 21:43:29 +00002582 if (m->hdisplay == hsize && m->vdisplay == vsize &&
2583 drm_mode_vrefresh(m) == vrefresh_rate)
2584 return NULL;
2585
Adam Jacksona0910c82010-03-29 21:43:28 +00002586 /* HDTV hack, part 2 */
2587 if (hsize == 1366 && vsize == 768 && vrefresh_rate == 60) {
2588 mode = drm_cvt_mode(dev, 1366, 768, vrefresh_rate, 0, 0,
Dave Airlied50ba252009-09-23 14:44:08 +10002589 false);
Joe Moriartya5ef6562018-02-12 14:51:43 -05002590 if (!mode)
2591 return NULL;
Zhao Yakui559ee212009-09-03 09:33:47 +08002592 mode->hdisplay = 1366;
Adam Jacksona4967de62010-07-28 07:40:32 +10002593 mode->hsync_start = mode->hsync_start - 1;
2594 mode->hsync_end = mode->hsync_end - 1;
Zhao Yakui559ee212009-09-03 09:33:47 +08002595 return mode;
2596 }
Adam Jacksona0910c82010-03-29 21:43:28 +00002597
Zhao Yakui559ee212009-09-03 09:33:47 +08002598 /* check whether it can be found in default mode table */
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002599 if (drm_monitor_supports_rb(edid)) {
2600 mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate,
2601 true);
2602 if (mode)
2603 return mode;
2604 }
2605 mode = drm_mode_find_dmt(dev, hsize, vsize, vrefresh_rate, false);
Zhao Yakui559ee212009-09-03 09:33:47 +08002606 if (mode)
2607 return mode;
2608
Adam Jacksonf6e252b2012-04-13 16:33:31 -04002609 /* okay, generate it */
Zhao Yakui5c612592009-06-22 13:17:10 +08002610 switch (timing_level) {
2611 case LEVEL_DMT:
Zhao Yakui5c612592009-06-22 13:17:10 +08002612 break;
2613 case LEVEL_GTF:
2614 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
2615 break;
Adam Jackson7a374352010-03-29 21:43:30 +00002616 case LEVEL_GTF2:
2617 /*
2618 * This is potentially wrong if there's ever a monitor with
2619 * more than one ranges section, each claiming a different
2620 * secondary GTF curve. Please don't do that.
2621 */
2622 mode = drm_gtf_mode(dev, hsize, vsize, vrefresh_rate, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002623 if (!mode)
2624 return NULL;
Adam Jackson7a374352010-03-29 21:43:30 +00002625 if (drm_mode_hsync(mode) > drm_gtf2_hbreak(edid)) {
Sascha Haueraefd3302012-02-01 11:38:21 +01002626 drm_mode_destroy(dev, mode);
Adam Jackson7a374352010-03-29 21:43:30 +00002627 mode = drm_gtf_mode_complex(dev, hsize, vsize,
2628 vrefresh_rate, 0, 0,
2629 drm_gtf2_m(edid),
2630 drm_gtf2_2c(edid),
2631 drm_gtf2_k(edid),
2632 drm_gtf2_2j(edid));
2633 }
2634 break;
Zhao Yakui5c612592009-06-22 13:17:10 +08002635 case LEVEL_CVT:
Dave Airlied50ba252009-09-23 14:44:08 +10002636 mode = drm_cvt_mode(dev, hsize, vsize, vrefresh_rate, 0, 0,
2637 false);
Zhao Yakui5c612592009-06-22 13:17:10 +08002638 break;
2639 }
Dave Airlief453ba02008-11-07 14:05:41 -08002640 return mode;
2641}
2642
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002643/*
2644 * EDID is delightfully ambiguous about how interlaced modes are to be
2645 * encoded. Our internal representation is of frame height, but some
2646 * HDTV detailed timings are encoded as field height.
2647 *
2648 * The format list here is from CEA, in frame size. Technically we
2649 * should be checking refresh rate too. Whatever.
2650 */
2651static void
2652drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
2653 struct detailed_pixel_timing *pt)
2654{
2655 int i;
2656 static const struct {
2657 int w, h;
2658 } cea_interlaced[] = {
2659 { 1920, 1080 },
2660 { 720, 480 },
2661 { 1440, 480 },
2662 { 2880, 480 },
2663 { 720, 576 },
2664 { 1440, 576 },
2665 { 2880, 576 },
2666 };
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002667
2668 if (!(pt->misc & DRM_EDID_PT_INTERLACED))
2669 return;
2670
Kulikov Vasiliy3c581412010-06-28 15:54:52 +04002671 for (i = 0; i < ARRAY_SIZE(cea_interlaced); i++) {
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002672 if ((mode->hdisplay == cea_interlaced[i].w) &&
2673 (mode->vdisplay == cea_interlaced[i].h / 2)) {
2674 mode->vdisplay *= 2;
2675 mode->vsync_start *= 2;
2676 mode->vsync_end *= 2;
2677 mode->vtotal *= 2;
2678 mode->vtotal |= 1;
2679 }
2680 }
2681
2682 mode->flags |= DRM_MODE_FLAG_INTERLACE;
2683}
2684
Dave Airlief453ba02008-11-07 14:05:41 -08002685/**
2686 * drm_mode_detailed - create a new mode from an EDID detailed timing section
2687 * @dev: DRM device (needed to create new mode)
2688 * @edid: EDID block
2689 * @timing: EDID detailed timing info
2690 * @quirks: quirks to apply
2691 *
2692 * An EDID detailed timing block contains enough info for us to create and
2693 * return a new struct drm_display_mode.
2694 */
2695static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
2696 struct edid *edid,
2697 struct detailed_timing *timing,
2698 u32 quirks)
2699{
2700 struct drm_display_mode *mode;
2701 struct detailed_pixel_timing *pt = &timing->data.pixel_data;
Michel Dänzer0454bea2009-06-15 16:56:07 +02002702 unsigned hactive = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo;
2703 unsigned vactive = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo;
2704 unsigned hblank = (pt->hactive_hblank_hi & 0xf) << 8 | pt->hblank_lo;
2705 unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;
Michel Dänzere14cbee2009-06-23 12:36:32 +02002706 unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;
2707 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 +01002708 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 +02002709 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 -08002710
Adam Jacksonfc438962009-06-04 10:20:34 +10002711 /* ignore tiny modes */
Michel Dänzer0454bea2009-06-15 16:56:07 +02002712 if (hactive < 64 || vactive < 64)
Adam Jacksonfc438962009-06-04 10:20:34 +10002713 return NULL;
2714
Michel Dänzer0454bea2009-06-15 16:56:07 +02002715 if (pt->misc & DRM_EDID_PT_STEREO) {
Egbert Eichc7d015f32013-06-13 21:01:19 +02002716 DRM_DEBUG_KMS("stereo mode not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002717 return NULL;
2718 }
Michel Dänzer0454bea2009-06-15 16:56:07 +02002719 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
Egbert Eichc7d015f32013-06-13 21:01:19 +02002720 DRM_DEBUG_KMS("composite sync not supported\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002721 }
2722
Zhao Yakuifcb45612009-10-14 09:11:25 +08002723 /* it is incorrect if hsync/vsync width is zero */
2724 if (!hsync_pulse_width || !vsync_pulse_width) {
2725 DRM_DEBUG_KMS("Incorrect Detailed timing. "
2726 "Wrong Hsync/Vsync pulse width\n");
2727 return NULL;
2728 }
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002729
2730 if (quirks & EDID_QUIRK_FORCE_REDUCED_BLANKING) {
2731 mode = drm_cvt_mode(dev, hactive, vactive, 60, true, false, false);
2732 if (!mode)
2733 return NULL;
2734
2735 goto set_size;
2736 }
2737
Dave Airlief453ba02008-11-07 14:05:41 -08002738 mode = drm_mode_create(dev);
2739 if (!mode)
2740 return NULL;
2741
Dave Airlief453ba02008-11-07 14:05:41 -08002742 if (quirks & EDID_QUIRK_135_CLOCK_TOO_HIGH)
Michel Dänzer0454bea2009-06-15 16:56:07 +02002743 timing->pixel_clock = cpu_to_le16(1088);
Dave Airlief453ba02008-11-07 14:05:41 -08002744
Michel Dänzer0454bea2009-06-15 16:56:07 +02002745 mode->clock = le16_to_cpu(timing->pixel_clock) * 10;
Dave Airlief453ba02008-11-07 14:05:41 -08002746
Michel Dänzer0454bea2009-06-15 16:56:07 +02002747 mode->hdisplay = hactive;
2748 mode->hsync_start = mode->hdisplay + hsync_offset;
2749 mode->hsync_end = mode->hsync_start + hsync_pulse_width;
2750 mode->htotal = mode->hdisplay + hblank;
Dave Airlief453ba02008-11-07 14:05:41 -08002751
Michel Dänzer0454bea2009-06-15 16:56:07 +02002752 mode->vdisplay = vactive;
2753 mode->vsync_start = mode->vdisplay + vsync_offset;
2754 mode->vsync_end = mode->vsync_start + vsync_pulse_width;
2755 mode->vtotal = mode->vdisplay + vblank;
Dave Airlief453ba02008-11-07 14:05:41 -08002756
Jesse Barnes7064fef2009-11-05 10:12:54 -08002757 /* Some EDIDs have bogus h/vtotal values */
2758 if (mode->hsync_end > mode->htotal)
2759 mode->htotal = mode->hsync_end + 1;
2760 if (mode->vsync_end > mode->vtotal)
2761 mode->vtotal = mode->vsync_end + 1;
2762
Adam Jacksonb58db2c2010-02-15 22:15:39 +00002763 drm_mode_do_interlace_quirk(mode, pt);
Dave Airlief453ba02008-11-07 14:05:41 -08002764
2765 if (quirks & EDID_QUIRK_DETAILED_SYNC_PP) {
Michel Dänzer0454bea2009-06-15 16:56:07 +02002766 pt->misc |= DRM_EDID_PT_HSYNC_POSITIVE | DRM_EDID_PT_VSYNC_POSITIVE;
Dave Airlief453ba02008-11-07 14:05:41 -08002767 }
2768
Michel Dänzer0454bea2009-06-15 16:56:07 +02002769 mode->flags |= (pt->misc & DRM_EDID_PT_HSYNC_POSITIVE) ?
2770 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
2771 mode->flags |= (pt->misc & DRM_EDID_PT_VSYNC_POSITIVE) ?
2772 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
Dave Airlief453ba02008-11-07 14:05:41 -08002773
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002774set_size:
Michel Dänzere14cbee2009-06-23 12:36:32 +02002775 mode->width_mm = pt->width_mm_lo | (pt->width_height_mm_hi & 0xf0) << 4;
2776 mode->height_mm = pt->height_mm_lo | (pt->width_height_mm_hi & 0xf) << 8;
Dave Airlief453ba02008-11-07 14:05:41 -08002777
2778 if (quirks & EDID_QUIRK_DETAILED_IN_CM) {
2779 mode->width_mm *= 10;
2780 mode->height_mm *= 10;
2781 }
2782
2783 if (quirks & EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE) {
2784 mode->width_mm = edid->width_cm * 10;
2785 mode->height_mm = edid->height_cm * 10;
2786 }
2787
Adam Jacksonbc42aab2012-05-23 16:26:54 -04002788 mode->type = DRM_MODE_TYPE_DRIVER;
2789 drm_mode_set_name(mode);
2790
Dave Airlief453ba02008-11-07 14:05:41 -08002791 return mode;
2792}
2793
Adam Jackson07a5e632009-12-03 17:44:38 -05002794static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002795mode_in_hsync_range(const struct drm_display_mode *mode,
2796 struct edid *edid, u8 *t)
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002797{
2798 int hsync, hmin, hmax;
Adam Jackson07a5e632009-12-03 17:44:38 -05002799
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002800 hmin = t[7];
2801 if (edid->revision >= 4)
2802 hmin += ((t[4] & 0x04) ? 255 : 0);
2803 hmax = t[8];
2804 if (edid->revision >= 4)
2805 hmax += ((t[4] & 0x08) ? 255 : 0);
Adam Jackson07a5e632009-12-03 17:44:38 -05002806 hsync = drm_mode_hsync(mode);
Adam Jackson07a5e632009-12-03 17:44:38 -05002807
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002808 return (hsync <= hmax && hsync >= hmin);
2809}
2810
2811static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002812mode_in_vsync_range(const struct drm_display_mode *mode,
2813 struct edid *edid, u8 *t)
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002814{
2815 int vsync, vmin, vmax;
2816
2817 vmin = t[5];
2818 if (edid->revision >= 4)
2819 vmin += ((t[4] & 0x01) ? 255 : 0);
2820 vmax = t[6];
2821 if (edid->revision >= 4)
2822 vmax += ((t[4] & 0x02) ? 255 : 0);
2823 vsync = drm_mode_vrefresh(mode);
2824
2825 return (vsync <= vmax && vsync >= vmin);
2826}
2827
2828static u32
2829range_pixel_clock(struct edid *edid, u8 *t)
2830{
2831 /* unspecified */
2832 if (t[9] == 0 || t[9] == 255)
2833 return 0;
2834
2835 /* 1.4 with CVT support gives us real precision, yay */
2836 if (edid->revision >= 4 && t[10] == 0x04)
2837 return (t[9] * 10000) - ((t[12] >> 2) * 250);
2838
2839 /* 1.3 is pathetic, so fuzz up a bit */
2840 return t[9] * 10000 + 5001;
2841}
2842
Adam Jackson07a5e632009-12-03 17:44:38 -05002843static bool
Chris Wilsonb1f559e2011-01-26 09:49:47 +00002844mode_in_range(const struct drm_display_mode *mode, struct edid *edid,
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002845 struct detailed_timing *timing)
Adam Jackson07a5e632009-12-03 17:44:38 -05002846{
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002847 u32 max_clock;
2848 u8 *t = (u8 *)timing;
Adam Jackson07a5e632009-12-03 17:44:38 -05002849
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002850 if (!mode_in_hsync_range(mode, edid, t))
Adam Jackson07a5e632009-12-03 17:44:38 -05002851 return false;
2852
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002853 if (!mode_in_vsync_range(mode, edid, t))
Adam Jackson07a5e632009-12-03 17:44:38 -05002854 return false;
2855
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002856 if ((max_clock = range_pixel_clock(edid, t)))
Adam Jackson07a5e632009-12-03 17:44:38 -05002857 if (mode->clock > max_clock)
2858 return false;
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002859
2860 /* 1.4 max horizontal check */
2861 if (edid->revision >= 4 && t[10] == 0x04)
2862 if (t[13] && mode->hdisplay > 8 * (t[13] + (256 * (t[12]&0x3))))
2863 return false;
2864
2865 if (mode_is_rb(mode) && !drm_monitor_supports_rb(edid))
2866 return false;
Adam Jackson07a5e632009-12-03 17:44:38 -05002867
2868 return true;
2869}
2870
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002871static bool valid_inferred_mode(const struct drm_connector *connector,
2872 const struct drm_display_mode *mode)
2873{
Ville Syrjälä85f8fcd2015-09-07 18:22:56 +03002874 const struct drm_display_mode *m;
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002875 bool ok = false;
2876
2877 list_for_each_entry(m, &connector->probed_modes, head) {
2878 if (mode->hdisplay == m->hdisplay &&
2879 mode->vdisplay == m->vdisplay &&
2880 drm_mode_vrefresh(mode) == drm_mode_vrefresh(m))
2881 return false; /* duplicated */
2882 if (mode->hdisplay <= m->hdisplay &&
2883 mode->vdisplay <= m->vdisplay)
2884 ok = true;
2885 }
2886 return ok;
2887}
2888
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002889static int
Adam Jacksoncd4cd3d2012-04-13 16:33:33 -04002890drm_dmt_modes_for_range(struct drm_connector *connector, struct edid *edid,
Adam Jacksonb17e52e2010-03-29 21:43:27 +00002891 struct detailed_timing *timing)
Adam Jackson07a5e632009-12-03 17:44:38 -05002892{
2893 int i, modes = 0;
2894 struct drm_display_mode *newmode;
2895 struct drm_device *dev = connector->dev;
2896
Thierry Redinga6b21832012-11-23 15:01:42 +01002897 for (i = 0; i < ARRAY_SIZE(drm_dmt_modes); i++) {
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002898 if (mode_in_range(drm_dmt_modes + i, edid, timing) &&
2899 valid_inferred_mode(connector, drm_dmt_modes + i)) {
Adam Jackson07a5e632009-12-03 17:44:38 -05002900 newmode = drm_mode_duplicate(dev, &drm_dmt_modes[i]);
2901 if (newmode) {
2902 drm_mode_probed_add(connector, newmode);
2903 modes++;
2904 }
2905 }
2906 }
2907
2908 return modes;
2909}
2910
Takashi Iwaic09dedb2012-04-23 17:40:33 +01002911/* fix up 1366x768 mode from 1368x768;
2912 * GFT/CVT can't express 1366 width which isn't dividable by 8
2913 */
Takashi Iwai969218f2017-01-17 17:43:29 +01002914void drm_mode_fixup_1366x768(struct drm_display_mode *mode)
Takashi Iwaic09dedb2012-04-23 17:40:33 +01002915{
2916 if (mode->hdisplay == 1368 && mode->vdisplay == 768) {
2917 mode->hdisplay = 1366;
2918 mode->hsync_start--;
2919 mode->hsync_end--;
2920 drm_mode_set_name(mode);
2921 }
2922}
2923
Adam Jacksonb309bd32012-04-13 16:33:40 -04002924static int
2925drm_gtf_modes_for_range(struct drm_connector *connector, struct edid *edid,
2926 struct detailed_timing *timing)
2927{
2928 int i, modes = 0;
2929 struct drm_display_mode *newmode;
2930 struct drm_device *dev = connector->dev;
2931
Thierry Redinga6b21832012-11-23 15:01:42 +01002932 for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002933 const struct minimode *m = &extra_modes[i];
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302934
Adam Jacksonb309bd32012-04-13 16:33:40 -04002935 newmode = drm_gtf_mode(dev, m->w, m->h, m->r, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002936 if (!newmode)
2937 return modes;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002938
Takashi Iwai969218f2017-01-17 17:43:29 +01002939 drm_mode_fixup_1366x768(newmode);
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002940 if (!mode_in_range(newmode, edid, timing) ||
2941 !valid_inferred_mode(connector, newmode)) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002942 drm_mode_destroy(dev, newmode);
2943 continue;
2944 }
2945
2946 drm_mode_probed_add(connector, newmode);
2947 modes++;
2948 }
2949
2950 return modes;
2951}
2952
2953static int
2954drm_cvt_modes_for_range(struct drm_connector *connector, struct edid *edid,
2955 struct detailed_timing *timing)
2956{
2957 int i, modes = 0;
2958 struct drm_display_mode *newmode;
2959 struct drm_device *dev = connector->dev;
2960 bool rb = drm_monitor_supports_rb(edid);
2961
Thierry Redinga6b21832012-11-23 15:01:42 +01002962 for (i = 0; i < ARRAY_SIZE(extra_modes); i++) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002963 const struct minimode *m = &extra_modes[i];
Suraj Upadhyay948de8422020-07-02 18:53:32 +05302964
Adam Jacksonb309bd32012-04-13 16:33:40 -04002965 newmode = drm_cvt_mode(dev, m->w, m->h, m->r, rb, 0, 0);
Takashi Iwaifc48f162012-04-20 12:59:33 +01002966 if (!newmode)
2967 return modes;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002968
Takashi Iwai969218f2017-01-17 17:43:29 +01002969 drm_mode_fixup_1366x768(newmode);
Takashi Iwai7b668eb2012-07-03 11:22:11 +02002970 if (!mode_in_range(newmode, edid, timing) ||
2971 !valid_inferred_mode(connector, newmode)) {
Adam Jacksonb309bd32012-04-13 16:33:40 -04002972 drm_mode_destroy(dev, newmode);
2973 continue;
2974 }
2975
2976 drm_mode_probed_add(connector, newmode);
2977 modes++;
2978 }
2979
2980 return modes;
2981}
2982
Adam Jackson13931572010-08-03 14:38:19 -04002983static void
2984do_inferred_modes(struct detailed_timing *timing, void *c)
Adam Jackson9340d8c2009-12-03 17:44:40 -05002985{
Adam Jackson13931572010-08-03 14:38:19 -04002986 struct detailed_mode_closure *closure = c;
2987 struct detailed_non_pixel *data = &timing->data.other_data;
Adam Jacksonb309bd32012-04-13 16:33:40 -04002988 struct detailed_data_monitor_range *range = &data->data.range;
Adam Jackson9340d8c2009-12-03 17:44:40 -05002989
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02002990 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_MONITOR_RANGE))
Adam Jacksoncb21aaf2012-04-13 16:33:36 -04002991 return;
2992
2993 closure->modes += drm_dmt_modes_for_range(closure->connector,
2994 closure->edid,
2995 timing);
Ville Syrjälä4d23f482020-01-24 22:02:27 +02002996
Adam Jacksonb309bd32012-04-13 16:33:40 -04002997 if (!version_greater(closure->edid, 1, 1))
2998 return; /* GTF not defined yet */
2999
3000 switch (range->flags) {
3001 case 0x02: /* secondary gtf, XXX could do more */
3002 case 0x00: /* default gtf */
3003 closure->modes += drm_gtf_modes_for_range(closure->connector,
3004 closure->edid,
3005 timing);
3006 break;
3007 case 0x04: /* cvt, only in 1.4+ */
3008 if (!version_greater(closure->edid, 1, 3))
3009 break;
3010
3011 closure->modes += drm_cvt_modes_for_range(closure->connector,
3012 closure->edid,
3013 timing);
3014 break;
3015 case 0x01: /* just the ranges, no formula */
3016 default:
3017 break;
3018 }
Adam Jackson9340d8c2009-12-03 17:44:40 -05003019}
3020
Adam Jackson13931572010-08-03 14:38:19 -04003021static int
3022add_inferred_modes(struct drm_connector *connector, struct edid *edid)
3023{
3024 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003025 .connector = connector,
3026 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003027 };
3028
3029 if (version_greater(edid, 1, 0))
3030 drm_for_each_detailed_block((u8 *)edid, do_inferred_modes,
3031 &closure);
3032
3033 return closure.modes;
3034}
3035
Adam Jackson2255be12010-03-29 21:43:22 +00003036static int
3037drm_est3_modes(struct drm_connector *connector, struct detailed_timing *timing)
3038{
3039 int i, j, m, modes = 0;
3040 struct drm_display_mode *mode;
Paul Parsonsf3a32d72016-03-26 13:18:38 +00003041 u8 *est = ((u8 *)timing) + 6;
Adam Jackson2255be12010-03-29 21:43:22 +00003042
3043 for (i = 0; i < 6; i++) {
Ville Syrjälä891a7462013-10-14 16:44:26 +03003044 for (j = 7; j >= 0; j--) {
Adam Jackson2255be12010-03-29 21:43:22 +00003045 m = (i * 8) + (7 - j);
Linus Torvaldsaa9f56b2010-08-12 09:21:39 -07003046 if (m >= ARRAY_SIZE(est3_modes))
Adam Jackson2255be12010-03-29 21:43:22 +00003047 break;
3048 if (est[i] & (1 << j)) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00003049 mode = drm_mode_find_dmt(connector->dev,
3050 est3_modes[m].w,
3051 est3_modes[m].h,
Adam Jacksonf6e252b2012-04-13 16:33:31 -04003052 est3_modes[m].r,
3053 est3_modes[m].rb);
Adam Jackson2255be12010-03-29 21:43:22 +00003054 if (mode) {
3055 drm_mode_probed_add(connector, mode);
3056 modes++;
3057 }
3058 }
3059 }
3060 }
3061
3062 return modes;
3063}
3064
Adam Jackson13931572010-08-03 14:38:19 -04003065static void
3066do_established_modes(struct detailed_timing *timing, void *c)
Adam Jackson9cf00972009-12-03 17:44:36 -05003067{
Adam Jackson13931572010-08-03 14:38:19 -04003068 struct detailed_mode_closure *closure = c;
Adam Jackson13931572010-08-03 14:38:19 -04003069
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003070 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_EST_TIMINGS))
3071 return;
3072
3073 closure->modes += drm_est3_modes(closure->connector, timing);
Adam Jackson13931572010-08-03 14:38:19 -04003074}
3075
3076/**
3077 * add_established_modes - get est. modes from EDID and add them
Thierry Redingdb6cf8332014-04-29 11:44:34 +02003078 * @connector: connector to add mode(s) to
Adam Jackson13931572010-08-03 14:38:19 -04003079 * @edid: EDID block to scan
3080 *
3081 * Each EDID block contains a bitmap of the supported "established modes" list
3082 * (defined above). Tease them out and add them to the global modes list.
3083 */
3084static int
3085add_established_modes(struct drm_connector *connector, struct edid *edid)
3086{
Adam Jackson9cf00972009-12-03 17:44:36 -05003087 struct drm_device *dev = connector->dev;
Adam Jackson13931572010-08-03 14:38:19 -04003088 unsigned long est_bits = edid->established_timings.t1 |
3089 (edid->established_timings.t2 << 8) |
3090 ((edid->established_timings.mfg_rsvd & 0x80) << 9);
3091 int i, modes = 0;
3092 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003093 .connector = connector,
3094 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003095 };
Adam Jackson9cf00972009-12-03 17:44:36 -05003096
Adam Jackson13931572010-08-03 14:38:19 -04003097 for (i = 0; i <= EDID_EST_TIMINGS; i++) {
3098 if (est_bits & (1<<i)) {
3099 struct drm_display_mode *newmode;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05303100
Adam Jackson13931572010-08-03 14:38:19 -04003101 newmode = drm_mode_duplicate(dev, &edid_est_modes[i]);
3102 if (newmode) {
3103 drm_mode_probed_add(connector, newmode);
3104 modes++;
3105 }
3106 }
Adam Jackson9cf00972009-12-03 17:44:36 -05003107 }
3108
Adam Jackson13931572010-08-03 14:38:19 -04003109 if (version_greater(edid, 1, 0))
3110 drm_for_each_detailed_block((u8 *)edid,
3111 do_established_modes, &closure);
3112
3113 return modes + closure.modes;
3114}
3115
3116static void
3117do_standard_modes(struct detailed_timing *timing, void *c)
3118{
3119 struct detailed_mode_closure *closure = c;
3120 struct detailed_non_pixel *data = &timing->data.other_data;
3121 struct drm_connector *connector = closure->connector;
3122 struct edid *edid = closure->edid;
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003123 int i;
Adam Jackson13931572010-08-03 14:38:19 -04003124
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003125 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_STD_MODES))
3126 return;
Adam Jackson9cf00972009-12-03 17:44:36 -05003127
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003128 for (i = 0; i < 6; i++) {
3129 struct std_timing *std = &data->data.timings[i];
3130 struct drm_display_mode *newmode;
3131
3132 newmode = drm_mode_std(connector, edid, std);
3133 if (newmode) {
3134 drm_mode_probed_add(connector, newmode);
3135 closure->modes++;
Adam Jackson9cf00972009-12-03 17:44:36 -05003136 }
Adam Jackson13931572010-08-03 14:38:19 -04003137 }
3138}
3139
3140/**
3141 * add_standard_modes - get std. modes from EDID and add them
Thierry Redingdb6cf8332014-04-29 11:44:34 +02003142 * @connector: connector to add mode(s) to
Adam Jackson13931572010-08-03 14:38:19 -04003143 * @edid: EDID block to scan
3144 *
3145 * Standard modes can be calculated using the appropriate standard (DMT,
3146 * GTF or CVT. Grab them from @edid and add them to the list.
3147 */
3148static int
3149add_standard_modes(struct drm_connector *connector, struct edid *edid)
3150{
3151 int i, modes = 0;
3152 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003153 .connector = connector,
3154 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003155 };
3156
3157 for (i = 0; i < EDID_STD_TIMINGS; i++) {
3158 struct drm_display_mode *newmode;
3159
3160 newmode = drm_mode_std(connector, edid,
Thierry Reding464fdec2014-04-29 11:44:33 +02003161 &edid->standard_timings[i]);
Adam Jackson13931572010-08-03 14:38:19 -04003162 if (newmode) {
3163 drm_mode_probed_add(connector, newmode);
3164 modes++;
3165 }
3166 }
3167
3168 if (version_greater(edid, 1, 0))
3169 drm_for_each_detailed_block((u8 *)edid, do_standard_modes,
3170 &closure);
3171
3172 /* XXX should also look for standard codes in VTB blocks */
3173
3174 return modes + closure.modes;
3175}
3176
Dave Airlief453ba02008-11-07 14:05:41 -08003177static int drm_cvt_modes(struct drm_connector *connector,
3178 struct detailed_timing *timing)
3179{
3180 int i, j, modes = 0;
3181 struct drm_display_mode *newmode;
3182 struct drm_device *dev = connector->dev;
Zhao Yakui5c612592009-06-22 13:17:10 +08003183 struct cvt_timing *cvt;
3184 const int rates[] = { 60, 85, 75, 60, 50 };
3185 const u8 empty[3] = { 0, 0, 0 };
Dave Airlief453ba02008-11-07 14:05:41 -08003186
3187 for (i = 0; i < 4; i++) {
Kees Cook3f649ab2020-06-03 13:09:38 -07003188 int width, height;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05303189
Dave Airlief453ba02008-11-07 14:05:41 -08003190 cvt = &(timing->data.other_data.data.cvt[i]);
3191
3192 if (!memcmp(cvt->code, empty, 3))
Michel Dänzer0454bea2009-06-15 16:56:07 +02003193 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08003194
3195 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2;
Zhao Yakui5c612592009-06-22 13:17:10 +08003196 switch (cvt->code[1] & 0x0c) {
Linus Torvaldsd652d5f2020-12-17 09:27:57 -08003197 /* default - because compiler doesn't see that we've enumerated all cases */
3198 default:
Adam Jacksonf066a172009-09-23 17:31:21 -04003199 case 0x00:
Dave Airlief453ba02008-11-07 14:05:41 -08003200 width = height * 4 / 3;
3201 break;
3202 case 0x04:
3203 width = height * 16 / 9;
3204 break;
3205 case 0x08:
3206 width = height * 16 / 10;
3207 break;
3208 case 0x0c:
Dave Airlief453ba02008-11-07 14:05:41 -08003209 width = height * 15 / 9;
3210 break;
3211 }
3212
3213 for (j = 1; j < 5; j++) {
3214 if (cvt->code[2] & (1 << j)) {
3215 newmode = drm_cvt_mode(dev, width, height,
3216 rates[j], j == 0,
3217 false, false);
3218 if (newmode) {
3219 drm_mode_probed_add(connector, newmode);
3220 modes++;
3221 }
3222 }
3223 }
3224 }
3225
3226 return modes;
3227}
3228
Adam Jackson13931572010-08-03 14:38:19 -04003229static void
3230do_cvt_mode(struct detailed_timing *timing, void *c)
3231{
3232 struct detailed_mode_closure *closure = c;
Adam Jackson13931572010-08-03 14:38:19 -04003233
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02003234 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_CVT_3BYTE))
3235 return;
3236
3237 closure->modes += drm_cvt_modes(closure->connector, timing);
Adam Jackson13931572010-08-03 14:38:19 -04003238}
Adam Jackson9cf00972009-12-03 17:44:36 -05003239
3240static int
Adam Jackson13931572010-08-03 14:38:19 -04003241add_cvt_modes(struct drm_connector *connector, struct edid *edid)
Ville Syrjälä4d23f482020-01-24 22:02:27 +02003242{
Adam Jackson13931572010-08-03 14:38:19 -04003243 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003244 .connector = connector,
3245 .edid = edid,
Adam Jackson13931572010-08-03 14:38:19 -04003246 };
Adam Jackson9cf00972009-12-03 17:44:36 -05003247
Adam Jackson13931572010-08-03 14:38:19 -04003248 if (version_greater(edid, 1, 2))
3249 drm_for_each_detailed_block((u8 *)edid, do_cvt_mode, &closure);
Dave Airlief453ba02008-11-07 14:05:41 -08003250
Adam Jackson13931572010-08-03 14:38:19 -04003251 /* XXX should also look for CVT codes in VTB blocks */
3252
3253 return closure.modes;
Dave Airlief453ba02008-11-07 14:05:41 -08003254}
3255
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03003256static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode);
3257
Adam Jackson13931572010-08-03 14:38:19 -04003258static void
3259do_detailed_mode(struct detailed_timing *timing, void *c)
Dave Airlief453ba02008-11-07 14:05:41 -08003260{
Adam Jackson13931572010-08-03 14:38:19 -04003261 struct detailed_mode_closure *closure = c;
Dave Airlief453ba02008-11-07 14:05:41 -08003262 struct drm_display_mode *newmode;
Adam Jackson9cf00972009-12-03 17:44:36 -05003263
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003264 if (!is_detailed_timing_descriptor((const u8 *)timing))
3265 return;
Adam Jackson9cf00972009-12-03 17:44:36 -05003266
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003267 newmode = drm_mode_detailed(closure->connector->dev,
3268 closure->edid, timing,
3269 closure->quirks);
3270 if (!newmode)
3271 return;
Dave Airlief453ba02008-11-07 14:05:41 -08003272
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003273 if (closure->preferred)
3274 newmode->type |= DRM_MODE_TYPE_PREFERRED;
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03003275
Ville Syrjäläf447dd12020-01-24 22:02:26 +02003276 /*
3277 * Detailed modes are limited to 10kHz pixel clock resolution,
3278 * so fix up anything that looks like CEA/HDMI mode, but the clock
3279 * is just slightly off.
3280 */
3281 fixup_detailed_cea_mode_clock(newmode);
3282
3283 drm_mode_probed_add(closure->connector, newmode);
3284 closure->modes++;
3285 closure->preferred = false;
Ma Ling167f3a02009-03-20 14:09:48 +08003286}
3287
Adam Jackson13931572010-08-03 14:38:19 -04003288/*
3289 * add_detailed_modes - Add modes from detailed timings
Dave Airlief453ba02008-11-07 14:05:41 -08003290 * @connector: attached connector
3291 * @edid: EDID block to scan
3292 * @quirks: quirks to apply
Dave Airlief453ba02008-11-07 14:05:41 -08003293 */
Adam Jackson13931572010-08-03 14:38:19 -04003294static int
3295add_detailed_modes(struct drm_connector *connector, struct edid *edid,
3296 u32 quirks)
Dave Airlief453ba02008-11-07 14:05:41 -08003297{
Adam Jackson13931572010-08-03 14:38:19 -04003298 struct detailed_mode_closure closure = {
Julia Lawalld456ea22014-08-23 18:09:56 +02003299 .connector = connector,
3300 .edid = edid,
Gustavo A. R. Silvac2925bd2018-01-30 04:05:28 -06003301 .preferred = true,
Julia Lawalld456ea22014-08-23 18:09:56 +02003302 .quirks = quirks,
Adam Jackson13931572010-08-03 14:38:19 -04003303 };
Dave Airlief453ba02008-11-07 14:05:41 -08003304
Adam Jackson13931572010-08-03 14:38:19 -04003305 if (closure.preferred && !version_greater(edid, 1, 3))
3306 closure.preferred =
3307 (edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING);
Adam Jacksona327f6b2010-03-29 21:43:25 +00003308
Adam Jackson13931572010-08-03 14:38:19 -04003309 drm_for_each_detailed_block((u8 *)edid, do_detailed_mode, &closure);
Dave Airlief453ba02008-11-07 14:05:41 -08003310
Adam Jackson13931572010-08-03 14:38:19 -04003311 return closure.modes;
Zhao Yakui882f0212009-08-26 18:20:49 +08003312}
Dave Airlief453ba02008-11-07 14:05:41 -08003313
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003314#define AUDIO_BLOCK 0x01
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003315#define VIDEO_BLOCK 0x02
Ma Lingf23c20c2009-03-26 19:26:23 +08003316#define VENDOR_BLOCK 0x03
Wu Fengguang76adaa342011-09-05 14:23:20 +08003317#define SPEAKER_BLOCK 0x04
Uma Shankare85959d2019-05-16 19:40:08 +05303318#define HDR_STATIC_METADATA_BLOCK 0x6
Shashank Sharma87563fc2017-07-13 21:03:10 +05303319#define USE_EXTENDED_TAG 0x07
3320#define EXT_VIDEO_CAPABILITY_BLOCK 0x00
Shashank Sharma832d4f22017-07-14 16:03:46 +05303321#define EXT_VIDEO_DATA_BLOCK_420 0x0E
3322#define EXT_VIDEO_CAP_BLOCK_Y420CMDB 0x0F
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003323#define EDID_BASIC_AUDIO (1 << 6)
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02003324#define EDID_CEA_YCRCB444 (1 << 5)
3325#define EDID_CEA_YCRCB422 (1 << 4)
Ville Syrjäläb1edd6a2013-01-17 16:31:30 +02003326#define EDID_CEA_VCDB_QS (1 << 6)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003327
Lespiau, Damiend4e4a312013-08-19 16:58:52 +01003328/*
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003329 * Search EDID for CEA extension block.
3330 */
Jani Nikula4cc4f092021-03-29 16:37:16 +03003331const u8 *drm_find_edid_extension(const struct edid *edid,
3332 int ext_id, int *ext_index)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003333{
Jani Nikula43d16d82021-03-29 16:37:15 +03003334 const u8 *edid_ext = NULL;
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003335 int i;
3336
3337 /* No EDID or EDID extensions */
3338 if (edid == NULL || edid->extensions == 0)
3339 return NULL;
3340
3341 /* Find CEA extension */
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003342 for (i = *ext_index; i < edid->extensions; i++) {
Jani Nikula43d16d82021-03-29 16:37:15 +03003343 edid_ext = (const u8 *)edid + EDID_LENGTH * (i + 1);
Dave Airlie40d9b042014-10-20 16:29:33 +10003344 if (edid_ext[0] == ext_id)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003345 break;
3346 }
3347
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003348 if (i >= edid->extensions)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003349 return NULL;
3350
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003351 *ext_index = i + 1;
3352
Zhenyu Wang8fe97902010-09-19 14:27:28 +08003353 return edid_ext;
3354}
3355
Jani Nikula43d16d82021-03-29 16:37:15 +03003356static const u8 *drm_find_cea_extension(const struct edid *edid)
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003357{
Jani Nikula43d16d82021-03-29 16:37:15 +03003358 const struct displayid_block *block;
Jani Nikula1ba63ca2021-03-29 16:37:19 +03003359 struct displayid_iter iter;
Jani Nikula43d16d82021-03-29 16:37:15 +03003360 const u8 *cea;
Jani Nikula1ba63ca2021-03-29 16:37:19 +03003361 int ext_index = 0;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003362
3363 /* Look for a top level CEA extension block */
Ville Syrjälä7f261af2020-05-27 16:03:09 +03003364 /* FIXME: make callers iterate through multiple CEA ext blocks? */
Ville Syrjälä8873cfa2020-05-27 16:03:08 +03003365 cea = drm_find_edid_extension(edid, CEA_EXT, &ext_index);
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003366 if (cea)
3367 return cea;
3368
3369 /* CEA blocks can also be found embedded in a DisplayID block */
Jani Nikula1ba63ca2021-03-29 16:37:19 +03003370 displayid_iter_edid_begin(edid, &iter);
3371 displayid_iter_for_each(block, &iter) {
3372 if (block->tag == DATA_BLOCK_CTA) {
3373 cea = (const u8 *)block;
3374 break;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003375 }
3376 }
Jani Nikula1ba63ca2021-03-29 16:37:19 +03003377 displayid_iter_end(&iter);
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003378
Jani Nikula1ba63ca2021-03-29 16:37:19 +03003379 return cea;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04003380}
3381
Mauro Rossie1cf35b2020-02-03 22:31:13 +01003382static __always_inline const struct drm_display_mode *cea_mode_for_vic(u8 vic)
Ville Syrjälä7befe622019-12-13 19:43:45 +02003383{
Ville Syrjälä9212f8e2019-12-13 19:43:48 +02003384 BUILD_BUG_ON(1 + ARRAY_SIZE(edid_cea_modes_1) - 1 != 127);
3385 BUILD_BUG_ON(193 + ARRAY_SIZE(edid_cea_modes_193) - 1 != 219);
3386
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +02003387 if (vic >= 1 && vic < 1 + ARRAY_SIZE(edid_cea_modes_1))
3388 return &edid_cea_modes_1[vic - 1];
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003389 if (vic >= 193 && vic < 193 + ARRAY_SIZE(edid_cea_modes_193))
3390 return &edid_cea_modes_193[vic - 193];
Ville Syrjälä7befe622019-12-13 19:43:45 +02003391 return NULL;
3392}
3393
3394static u8 cea_num_vics(void)
3395{
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003396 return 193 + ARRAY_SIZE(edid_cea_modes_193);
Ville Syrjälä7befe622019-12-13 19:43:45 +02003397}
3398
3399static u8 cea_next_vic(u8 vic)
3400{
Ville Syrjälä8c1b2bd2019-12-13 19:43:47 +02003401 if (++vic == 1 + ARRAY_SIZE(edid_cea_modes_1))
Ville Syrjäläf7655d42019-12-13 19:43:46 +02003402 vic = 193;
3403 return vic;
Ville Syrjälä7befe622019-12-13 19:43:45 +02003404}
3405
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003406/*
3407 * Calculate the alternate clock for the CEA mode
3408 * (60Hz vs. 59.94Hz etc.)
3409 */
3410static unsigned int
3411cea_mode_alternate_clock(const struct drm_display_mode *cea_mode)
3412{
3413 unsigned int clock = cea_mode->clock;
3414
Ville Syrjälä04256622020-04-28 20:19:27 +03003415 if (drm_mode_vrefresh(cea_mode) % 6 != 0)
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003416 return clock;
3417
3418 /*
3419 * edid_cea_modes contains the 59.94Hz
3420 * variant for 240 and 480 line modes,
3421 * and the 60Hz variant otherwise.
3422 */
3423 if (cea_mode->vdisplay == 240 || cea_mode->vdisplay == 480)
Ville Syrjälä9afd8082015-10-08 11:43:33 +03003424 clock = DIV_ROUND_CLOSEST(clock * 1001, 1000);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003425 else
Ville Syrjälä9afd8082015-10-08 11:43:33 +03003426 clock = DIV_ROUND_CLOSEST(clock * 1000, 1001);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003427
3428 return clock;
3429}
3430
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003431static bool
3432cea_mode_alternate_timings(u8 vic, struct drm_display_mode *mode)
3433{
3434 /*
3435 * For certain VICs the spec allows the vertical
3436 * front porch to vary by one or two lines.
3437 *
3438 * cea_modes[] stores the variant with the shortest
3439 * vertical front porch. We can adjust the mode to
3440 * get the other variants by simply increasing the
3441 * vertical front porch length.
3442 */
Ville Syrjälä7befe622019-12-13 19:43:45 +02003443 BUILD_BUG_ON(cea_mode_for_vic(8)->vtotal != 262 ||
3444 cea_mode_for_vic(9)->vtotal != 262 ||
3445 cea_mode_for_vic(12)->vtotal != 262 ||
3446 cea_mode_for_vic(13)->vtotal != 262 ||
3447 cea_mode_for_vic(23)->vtotal != 312 ||
3448 cea_mode_for_vic(24)->vtotal != 312 ||
3449 cea_mode_for_vic(27)->vtotal != 312 ||
3450 cea_mode_for_vic(28)->vtotal != 312);
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003451
3452 if (((vic == 8 || vic == 9 ||
3453 vic == 12 || vic == 13) && mode->vtotal < 263) ||
3454 ((vic == 23 || vic == 24 ||
3455 vic == 27 || vic == 28) && mode->vtotal < 314)) {
3456 mode->vsync_start++;
3457 mode->vsync_end++;
3458 mode->vtotal++;
3459
3460 return true;
3461 }
3462
3463 return false;
3464}
3465
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003466static u8 drm_match_cea_mode_clock_tolerance(const struct drm_display_mode *to_match,
3467 unsigned int clock_tolerance)
3468{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303469 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003470 u8 vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003471
3472 if (!to_match->clock)
3473 return 0;
3474
Ville Syrjälä357768c2018-05-08 16:39:38 +05303475 if (to_match->picture_aspect_ratio)
3476 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3477
Ville Syrjälä7befe622019-12-13 19:43:45 +02003478 for (vic = 1; vic < cea_num_vics(); vic = cea_next_vic(vic)) {
3479 struct drm_display_mode cea_mode = *cea_mode_for_vic(vic);
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003480 unsigned int clock1, clock2;
3481
3482 /* Check both 60Hz and 59.94Hz */
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003483 clock1 = cea_mode.clock;
3484 clock2 = cea_mode_alternate_clock(&cea_mode);
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003485
3486 if (abs(to_match->clock - clock1) > clock_tolerance &&
3487 abs(to_match->clock - clock2) > clock_tolerance)
3488 continue;
3489
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003490 do {
Ville Syrjälä357768c2018-05-08 16:39:38 +05303491 if (drm_mode_match(to_match, &cea_mode, match_flags))
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003492 return vic;
3493 } while (cea_mode_alternate_timings(vic, &cea_mode));
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003494 }
3495
3496 return 0;
3497}
3498
Thierry Reding18316c82012-12-20 15:41:44 +01003499/**
3500 * drm_match_cea_mode - look for a CEA mode matching given mode
3501 * @to_match: display mode
3502 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02003503 * 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 +01003504 * mode.
Stephane Marchesina4799032012-11-09 16:21:05 +00003505 */
Thierry Reding18316c82012-12-20 15:41:44 +01003506u8 drm_match_cea_mode(const struct drm_display_mode *to_match)
Stephane Marchesina4799032012-11-09 16:21:05 +00003507{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303508 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003509 u8 vic;
Stephane Marchesina4799032012-11-09 16:21:05 +00003510
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003511 if (!to_match->clock)
3512 return 0;
Stephane Marchesina4799032012-11-09 16:21:05 +00003513
Ville Syrjälä357768c2018-05-08 16:39:38 +05303514 if (to_match->picture_aspect_ratio)
3515 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3516
Ville Syrjälä7befe622019-12-13 19:43:45 +02003517 for (vic = 1; vic < cea_num_vics(); vic = cea_next_vic(vic)) {
3518 struct drm_display_mode cea_mode = *cea_mode_for_vic(vic);
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003519 unsigned int clock1, clock2;
3520
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003521 /* Check both 60Hz and 59.94Hz */
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003522 clock1 = cea_mode.clock;
3523 clock2 = cea_mode_alternate_clock(&cea_mode);
Ville Syrjäläa90b5902013-04-24 19:07:18 +03003524
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003525 if (KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock1) &&
3526 KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock2))
3527 continue;
3528
3529 do {
Ville Syrjälä357768c2018-05-08 16:39:38 +05303530 if (drm_mode_match(to_match, &cea_mode, match_flags))
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003531 return vic;
3532 } while (cea_mode_alternate_timings(vic, &cea_mode));
Stephane Marchesina4799032012-11-09 16:21:05 +00003533 }
Ville Syrjäläc45a4e42016-11-03 14:53:29 +02003534
Stephane Marchesina4799032012-11-09 16:21:05 +00003535 return 0;
3536}
3537EXPORT_SYMBOL(drm_match_cea_mode);
3538
Jani Nikulad9278b42016-01-08 13:21:51 +02003539static bool drm_valid_cea_vic(u8 vic)
3540{
Ville Syrjälä7befe622019-12-13 19:43:45 +02003541 return cea_mode_for_vic(vic) != NULL;
Jani Nikulad9278b42016-01-08 13:21:51 +02003542}
3543
Ville Syrjälä28c03a442019-10-04 17:19:11 +03003544static enum hdmi_picture_aspect drm_get_cea_aspect_ratio(const u8 video_code)
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303545{
Ville Syrjälä7befe622019-12-13 19:43:45 +02003546 const struct drm_display_mode *mode = cea_mode_for_vic(video_code);
3547
3548 if (mode)
3549 return mode->picture_aspect_ratio;
3550
3551 return HDMI_PICTURE_ASPECT_NONE;
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303552}
Vandana Kannan0967e6a2014-04-01 16:26:59 +05303553
Wayne Lind2b43472019-11-18 18:18:31 +08003554static enum hdmi_picture_aspect drm_get_hdmi_aspect_ratio(const u8 video_code)
3555{
3556 return edid_4k_modes[video_code].picture_aspect_ratio;
3557}
3558
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003559/*
3560 * Calculate the alternate clock for HDMI modes (those from the HDMI vendor
3561 * specific block).
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003562 */
3563static unsigned int
3564hdmi_mode_alternate_clock(const struct drm_display_mode *hdmi_mode)
3565{
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003566 return cea_mode_alternate_clock(hdmi_mode);
3567}
3568
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003569static u8 drm_match_hdmi_mode_clock_tolerance(const struct drm_display_mode *to_match,
3570 unsigned int clock_tolerance)
3571{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303572 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003573 u8 vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003574
3575 if (!to_match->clock)
3576 return 0;
3577
Wayne Lind2b43472019-11-18 18:18:31 +08003578 if (to_match->picture_aspect_ratio)
3579 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3580
Jani Nikulad9278b42016-01-08 13:21:51 +02003581 for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
3582 const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003583 unsigned int clock1, clock2;
3584
3585 /* Make sure to also match alternate clocks */
3586 clock1 = hdmi_mode->clock;
3587 clock2 = hdmi_mode_alternate_clock(hdmi_mode);
3588
3589 if (abs(to_match->clock - clock1) > clock_tolerance &&
3590 abs(to_match->clock - clock2) > clock_tolerance)
3591 continue;
3592
Ville Syrjälä357768c2018-05-08 16:39:38 +05303593 if (drm_mode_match(to_match, hdmi_mode, match_flags))
Jani Nikulad9278b42016-01-08 13:21:51 +02003594 return vic;
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02003595 }
3596
3597 return 0;
3598}
3599
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003600/*
3601 * drm_match_hdmi_mode - look for a HDMI mode matching given mode
3602 * @to_match: display mode
3603 *
3604 * An HDMI mode is one defined in the HDMI vendor specific block.
3605 *
3606 * Returns the HDMI Video ID (VIC) of the mode or 0 if it isn't one.
3607 */
3608static u8 drm_match_hdmi_mode(const struct drm_display_mode *to_match)
3609{
Ville Syrjälä357768c2018-05-08 16:39:38 +05303610 unsigned int match_flags = DRM_MODE_MATCH_TIMINGS | DRM_MODE_MATCH_FLAGS;
Jani Nikulad9278b42016-01-08 13:21:51 +02003611 u8 vic;
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003612
3613 if (!to_match->clock)
3614 return 0;
3615
Wayne Lind2b43472019-11-18 18:18:31 +08003616 if (to_match->picture_aspect_ratio)
3617 match_flags |= DRM_MODE_MATCH_ASPECT_RATIO;
3618
Jani Nikulad9278b42016-01-08 13:21:51 +02003619 for (vic = 1; vic < ARRAY_SIZE(edid_4k_modes); vic++) {
3620 const struct drm_display_mode *hdmi_mode = &edid_4k_modes[vic];
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003621 unsigned int clock1, clock2;
3622
3623 /* Make sure to also match alternate clocks */
3624 clock1 = hdmi_mode->clock;
3625 clock2 = hdmi_mode_alternate_clock(hdmi_mode);
3626
3627 if ((KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock1) ||
3628 KHZ2PICOS(to_match->clock) == KHZ2PICOS(clock2)) &&
Ville Syrjälä357768c2018-05-08 16:39:38 +05303629 drm_mode_match(to_match, hdmi_mode, match_flags))
Jani Nikulad9278b42016-01-08 13:21:51 +02003630 return vic;
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003631 }
3632 return 0;
3633}
3634
Jani Nikulad9278b42016-01-08 13:21:51 +02003635static bool drm_valid_hdmi_vic(u8 vic)
3636{
3637 return vic > 0 && vic < ARRAY_SIZE(edid_4k_modes);
3638}
3639
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003640static int
3641add_alternate_cea_modes(struct drm_connector *connector, struct edid *edid)
3642{
3643 struct drm_device *dev = connector->dev;
3644 struct drm_display_mode *mode, *tmp;
3645 LIST_HEAD(list);
3646 int modes = 0;
3647
3648 /* Don't add CEA modes if the CEA extension block is missing */
3649 if (!drm_find_cea_extension(edid))
3650 return 0;
3651
3652 /*
3653 * Go through all probed modes and create a new mode
3654 * with the alternate clock for certain CEA modes.
3655 */
3656 list_for_each_entry(mode, &connector->probed_modes, head) {
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003657 const struct drm_display_mode *cea_mode = NULL;
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003658 struct drm_display_mode *newmode;
Jani Nikulad9278b42016-01-08 13:21:51 +02003659 u8 vic = drm_match_cea_mode(mode);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003660 unsigned int clock1, clock2;
3661
Jani Nikulad9278b42016-01-08 13:21:51 +02003662 if (drm_valid_cea_vic(vic)) {
Ville Syrjälä7befe622019-12-13 19:43:45 +02003663 cea_mode = cea_mode_for_vic(vic);
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003664 clock2 = cea_mode_alternate_clock(cea_mode);
3665 } else {
Jani Nikulad9278b42016-01-08 13:21:51 +02003666 vic = drm_match_hdmi_mode(mode);
3667 if (drm_valid_hdmi_vic(vic)) {
3668 cea_mode = &edid_4k_modes[vic];
Lespiau, Damien3f2f6532013-08-19 16:58:55 +01003669 clock2 = hdmi_mode_alternate_clock(cea_mode);
3670 }
3671 }
3672
3673 if (!cea_mode)
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003674 continue;
3675
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003676 clock1 = cea_mode->clock;
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003677
3678 if (clock1 == clock2)
3679 continue;
3680
3681 if (mode->clock != clock1 && mode->clock != clock2)
3682 continue;
3683
3684 newmode = drm_mode_duplicate(dev, cea_mode);
3685 if (!newmode)
3686 continue;
3687
Damien Lespiau27130212013-09-25 16:45:28 +01003688 /* Carry over the stereo flags */
3689 newmode->flags |= mode->flags & DRM_MODE_FLAG_3D_MASK;
3690
Ville Syrjäläe6e79202013-05-31 15:23:41 +03003691 /*
3692 * The current mode could be either variant. Make
3693 * sure to pick the "other" clock for the new mode.
3694 */
3695 if (mode->clock != clock1)
3696 newmode->clock = clock1;
3697 else
3698 newmode->clock = clock2;
3699
3700 list_add_tail(&newmode->head, &list);
3701 }
3702
3703 list_for_each_entry_safe(mode, tmp, &list, head) {
3704 list_del(&mode->head);
3705 drm_mode_probed_add(connector, mode);
3706 modes++;
3707 }
3708
3709 return modes;
3710}
Stephane Marchesina4799032012-11-09 16:21:05 +00003711
Shashank Sharma8ec6e072017-07-13 21:03:08 +05303712static u8 svd_to_vic(u8 svd)
3713{
3714 /* 0-6 bit vic, 7th bit native mode indicator */
3715 if ((svd >= 1 && svd <= 64) || (svd >= 129 && svd <= 192))
3716 return svd & 127;
3717
3718 return svd;
3719}
3720
Thomas Woodaff04ac2013-11-29 15:33:27 +00003721static struct drm_display_mode *
3722drm_display_mode_from_vic_index(struct drm_connector *connector,
3723 const u8 *video_db, u8 video_len,
3724 u8 video_index)
3725{
3726 struct drm_device *dev = connector->dev;
3727 struct drm_display_mode *newmode;
Jani Nikulad9278b42016-01-08 13:21:51 +02003728 u8 vic;
Thomas Woodaff04ac2013-11-29 15:33:27 +00003729
3730 if (video_db == NULL || video_index >= video_len)
3731 return NULL;
3732
3733 /* CEA modes are numbered 1..127 */
Shashank Sharma8ec6e072017-07-13 21:03:08 +05303734 vic = svd_to_vic(video_db[video_index]);
Jani Nikulad9278b42016-01-08 13:21:51 +02003735 if (!drm_valid_cea_vic(vic))
Thomas Woodaff04ac2013-11-29 15:33:27 +00003736 return NULL;
3737
Ville Syrjälä7befe622019-12-13 19:43:45 +02003738 newmode = drm_mode_duplicate(dev, cea_mode_for_vic(vic));
Damien Lespiau409bbf12014-03-03 23:59:07 +00003739 if (!newmode)
3740 return NULL;
3741
Thomas Woodaff04ac2013-11-29 15:33:27 +00003742 return newmode;
3743}
3744
Shashank Sharma832d4f22017-07-14 16:03:46 +05303745/*
3746 * do_y420vdb_modes - Parse YCBCR 420 only modes
3747 * @connector: connector corresponding to the HDMI sink
3748 * @svds: start of the data block of CEA YCBCR 420 VDB
3749 * @len: length of the CEA YCBCR 420 VDB
3750 *
3751 * Parse the CEA-861-F YCBCR 420 Video Data Block (Y420VDB)
3752 * which contains modes which can be supported in YCBCR 420
3753 * output format only.
3754 */
3755static int do_y420vdb_modes(struct drm_connector *connector,
3756 const u8 *svds, u8 svds_len)
3757{
3758 int modes = 0, i;
3759 struct drm_device *dev = connector->dev;
3760 struct drm_display_info *info = &connector->display_info;
3761 struct drm_hdmi_info *hdmi = &info->hdmi;
3762
3763 for (i = 0; i < svds_len; i++) {
3764 u8 vic = svd_to_vic(svds[i]);
3765 struct drm_display_mode *newmode;
3766
3767 if (!drm_valid_cea_vic(vic))
3768 continue;
3769
Ville Syrjälä7befe622019-12-13 19:43:45 +02003770 newmode = drm_mode_duplicate(dev, cea_mode_for_vic(vic));
Shashank Sharma832d4f22017-07-14 16:03:46 +05303771 if (!newmode)
3772 break;
3773 bitmap_set(hdmi->y420_vdb_modes, vic, 1);
3774 drm_mode_probed_add(connector, newmode);
3775 modes++;
3776 }
3777
3778 if (modes > 0)
3779 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
3780 return modes;
3781}
3782
3783/*
3784 * drm_add_cmdb_modes - Add a YCBCR 420 mode into bitmap
3785 * @connector: connector corresponding to the HDMI sink
3786 * @vic: CEA vic for the video mode to be added in the map
3787 *
3788 * Makes an entry for a videomode in the YCBCR 420 bitmap
3789 */
3790static void
3791drm_add_cmdb_modes(struct drm_connector *connector, u8 svd)
3792{
3793 u8 vic = svd_to_vic(svd);
3794 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
3795
3796 if (!drm_valid_cea_vic(vic))
3797 return;
3798
3799 bitmap_set(hdmi->y420_cmdb_modes, vic, 1);
3800}
3801
Ville Syrjälä7af655b2020-09-04 14:53:49 +03003802/**
3803 * drm_display_mode_from_cea_vic() - return a mode for CEA VIC
3804 * @dev: DRM device
Mauro Carvalho Chehab8d7d8c02020-10-27 10:51:16 +01003805 * @video_code: CEA VIC of the mode
Ville Syrjälä7af655b2020-09-04 14:53:49 +03003806 *
3807 * Creates a new mode matching the specified CEA VIC.
3808 *
3809 * Returns: A new drm_display_mode on success or NULL on failure
3810 */
3811struct drm_display_mode *
3812drm_display_mode_from_cea_vic(struct drm_device *dev,
3813 u8 video_code)
3814{
3815 const struct drm_display_mode *cea_mode;
3816 struct drm_display_mode *newmode;
3817
3818 cea_mode = cea_mode_for_vic(video_code);
3819 if (!cea_mode)
3820 return NULL;
3821
3822 newmode = drm_mode_duplicate(dev, cea_mode);
3823 if (!newmode)
3824 return NULL;
3825
3826 return newmode;
3827}
3828EXPORT_SYMBOL(drm_display_mode_from_cea_vic);
3829
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003830static int
Lespiau, Damien13ac3f52013-08-19 16:58:53 +01003831do_cea_modes(struct drm_connector *connector, const u8 *db, u8 len)
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003832{
Thomas Woodaff04ac2013-11-29 15:33:27 +00003833 int i, modes = 0;
Shashank Sharma832d4f22017-07-14 16:03:46 +05303834 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003835
Thomas Woodaff04ac2013-11-29 15:33:27 +00003836 for (i = 0; i < len; i++) {
3837 struct drm_display_mode *mode;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05303838
Thomas Woodaff04ac2013-11-29 15:33:27 +00003839 mode = drm_display_mode_from_vic_index(connector, db, len, i);
3840 if (mode) {
Shashank Sharma832d4f22017-07-14 16:03:46 +05303841 /*
3842 * YCBCR420 capability block contains a bitmap which
3843 * gives the index of CEA modes from CEA VDB, which
3844 * can support YCBCR 420 sampling output also (apart
3845 * from RGB/YCBCR444 etc).
3846 * For example, if the bit 0 in bitmap is set,
3847 * first mode in VDB can support YCBCR420 output too.
3848 * Add YCBCR420 modes only if sink is HDMI 2.0 capable.
3849 */
3850 if (i < 64 && hdmi->y420_cmdb_map & (1ULL << i))
3851 drm_add_cmdb_modes(connector, db[i]);
3852
Thomas Woodaff04ac2013-11-29 15:33:27 +00003853 drm_mode_probed_add(connector, mode);
3854 modes++;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00003855 }
3856 }
3857
3858 return modes;
3859}
3860
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003861struct stereo_mandatory_mode {
3862 int width, height, vrefresh;
3863 unsigned int flags;
3864};
3865
3866static const struct stereo_mandatory_mode stereo_mandatory_modes[] = {
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003867 { 1920, 1080, 24, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3868 { 1920, 1080, 24, DRM_MODE_FLAG_3D_FRAME_PACKING },
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003869 { 1920, 1080, 50,
3870 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
3871 { 1920, 1080, 60,
3872 DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF },
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003873 { 1280, 720, 50, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3874 { 1280, 720, 50, DRM_MODE_FLAG_3D_FRAME_PACKING },
3875 { 1280, 720, 60, DRM_MODE_FLAG_3D_TOP_AND_BOTTOM },
3876 { 1280, 720, 60, DRM_MODE_FLAG_3D_FRAME_PACKING }
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003877};
3878
3879static bool
3880stereo_match_mandatory(const struct drm_display_mode *mode,
3881 const struct stereo_mandatory_mode *stereo_mode)
3882{
3883 unsigned int interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE;
3884
3885 return mode->hdisplay == stereo_mode->width &&
3886 mode->vdisplay == stereo_mode->height &&
3887 interlaced == (stereo_mode->flags & DRM_MODE_FLAG_INTERLACE) &&
3888 drm_mode_vrefresh(mode) == stereo_mode->vrefresh;
3889}
3890
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003891static int add_hdmi_mandatory_stereo_modes(struct drm_connector *connector)
3892{
3893 struct drm_device *dev = connector->dev;
3894 const struct drm_display_mode *mode;
3895 struct list_head stereo_modes;
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003896 int modes = 0, i;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003897
3898 INIT_LIST_HEAD(&stereo_modes);
3899
3900 list_for_each_entry(mode, &connector->probed_modes, head) {
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003901 for (i = 0; i < ARRAY_SIZE(stereo_mandatory_modes); i++) {
3902 const struct stereo_mandatory_mode *mandatory;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003903 struct drm_display_mode *new_mode;
3904
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003905 if (!stereo_match_mandatory(mode,
3906 &stereo_mandatory_modes[i]))
3907 continue;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003908
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003909 mandatory = &stereo_mandatory_modes[i];
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003910 new_mode = drm_mode_duplicate(dev, mode);
3911 if (!new_mode)
3912 continue;
3913
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003914 new_mode->flags |= mandatory->flags;
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003915 list_add_tail(&new_mode->head, &stereo_modes);
3916 modes++;
Damien Lespiauf7e121b2013-09-27 12:11:48 +01003917 }
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003918 }
3919
3920 list_splice_tail(&stereo_modes, &connector->probed_modes);
3921
3922 return modes;
3923}
3924
Damien Lespiau1deee8d2013-09-25 16:45:24 +01003925static int add_hdmi_mode(struct drm_connector *connector, u8 vic)
3926{
3927 struct drm_device *dev = connector->dev;
3928 struct drm_display_mode *newmode;
3929
Jani Nikulad9278b42016-01-08 13:21:51 +02003930 if (!drm_valid_hdmi_vic(vic)) {
Damien Lespiau1deee8d2013-09-25 16:45:24 +01003931 DRM_ERROR("Unknown HDMI VIC: %d\n", vic);
3932 return 0;
3933 }
3934
3935 newmode = drm_mode_duplicate(dev, &edid_4k_modes[vic]);
3936 if (!newmode)
3937 return 0;
3938
3939 drm_mode_probed_add(connector, newmode);
3940
3941 return 1;
3942}
3943
Thomas Woodfbf46022013-10-16 15:58:50 +01003944static int add_3d_struct_modes(struct drm_connector *connector, u16 structure,
3945 const u8 *video_db, u8 video_len, u8 video_index)
3946{
Thomas Woodfbf46022013-10-16 15:58:50 +01003947 struct drm_display_mode *newmode;
3948 int modes = 0;
Thomas Woodfbf46022013-10-16 15:58:50 +01003949
3950 if (structure & (1 << 0)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003951 newmode = drm_display_mode_from_vic_index(connector, video_db,
3952 video_len,
3953 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003954 if (newmode) {
3955 newmode->flags |= DRM_MODE_FLAG_3D_FRAME_PACKING;
3956 drm_mode_probed_add(connector, newmode);
3957 modes++;
3958 }
3959 }
3960 if (structure & (1 << 6)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003961 newmode = drm_display_mode_from_vic_index(connector, video_db,
3962 video_len,
3963 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003964 if (newmode) {
3965 newmode->flags |= DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
3966 drm_mode_probed_add(connector, newmode);
3967 modes++;
3968 }
3969 }
3970 if (structure & (1 << 8)) {
Thomas Woodaff04ac2013-11-29 15:33:27 +00003971 newmode = drm_display_mode_from_vic_index(connector, video_db,
3972 video_len,
3973 video_index);
Thomas Woodfbf46022013-10-16 15:58:50 +01003974 if (newmode) {
Thomas Wood89570ee2013-11-28 15:35:04 +00003975 newmode->flags |= DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
Thomas Woodfbf46022013-10-16 15:58:50 +01003976 drm_mode_probed_add(connector, newmode);
3977 modes++;
3978 }
3979 }
3980
3981 return modes;
3982}
3983
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003984/*
3985 * do_hdmi_vsdb_modes - Parse the HDMI Vendor Specific data block
3986 * @connector: connector corresponding to the HDMI sink
3987 * @db: start of the CEA vendor specific block
3988 * @len: length of the CEA block payload, ie. one can access up to db[len]
3989 *
Damien Lespiauc858cfc2013-09-25 16:45:23 +01003990 * Parses the HDMI VSDB looking for modes to add to @connector. This function
3991 * also adds the stereo 3d modes when applicable.
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003992 */
3993static int
Thomas Woodfbf46022013-10-16 15:58:50 +01003994do_hdmi_vsdb_modes(struct drm_connector *connector, const u8 *db, u8 len,
3995 const u8 *video_db, u8 video_len)
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01003996{
Ville Syrjäläf1781e92017-11-13 19:04:19 +02003997 struct drm_display_info *info = &connector->display_info;
Thomas Wood0e5083aa2013-11-29 18:18:58 +00003998 int modes = 0, offset = 0, i, multi_present = 0, multi_len;
Thomas Woodfbf46022013-10-16 15:58:50 +01003999 u8 vic_len, hdmi_3d_len = 0;
4000 u16 mask;
4001 u16 structure_all;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004002
4003 if (len < 8)
4004 goto out;
4005
4006 /* no HDMI_Video_Present */
4007 if (!(db[8] & (1 << 5)))
4008 goto out;
4009
4010 /* Latency_Fields_Present */
4011 if (db[8] & (1 << 7))
4012 offset += 2;
4013
4014 /* I_Latency_Fields_Present */
4015 if (db[8] & (1 << 6))
4016 offset += 2;
4017
4018 /* the declared length is not long enough for the 2 first bytes
4019 * of additional video format capabilities */
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004020 if (len < (8 + offset + 2))
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004021 goto out;
4022
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004023 /* 3D_Present */
4024 offset++;
Thomas Woodfbf46022013-10-16 15:58:50 +01004025 if (db[8 + offset] & (1 << 7)) {
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004026 modes += add_hdmi_mandatory_stereo_modes(connector);
4027
Thomas Woodfbf46022013-10-16 15:58:50 +01004028 /* 3D_Multi_present */
4029 multi_present = (db[8 + offset] & 0x60) >> 5;
4030 }
4031
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004032 offset++;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004033 vic_len = db[8 + offset] >> 5;
Thomas Woodfbf46022013-10-16 15:58:50 +01004034 hdmi_3d_len = db[8 + offset] & 0x1f;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004035
4036 for (i = 0; i < vic_len && len >= (9 + offset + i); i++) {
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004037 u8 vic;
4038
4039 vic = db[9 + offset + i];
Damien Lespiau1deee8d2013-09-25 16:45:24 +01004040 modes += add_hdmi_mode(connector, vic);
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004041 }
Thomas Woodfbf46022013-10-16 15:58:50 +01004042 offset += 1 + vic_len;
4043
Thomas Wood0e5083aa2013-11-29 18:18:58 +00004044 if (multi_present == 1)
4045 multi_len = 2;
4046 else if (multi_present == 2)
4047 multi_len = 4;
Thomas Woodfbf46022013-10-16 15:58:50 +01004048 else
Thomas Wood0e5083aa2013-11-29 18:18:58 +00004049 multi_len = 0;
Thomas Woodfbf46022013-10-16 15:58:50 +01004050
Thomas Wood0e5083aa2013-11-29 18:18:58 +00004051 if (len < (8 + offset + hdmi_3d_len - 1))
4052 goto out;
4053
4054 if (hdmi_3d_len < multi_len)
4055 goto out;
4056
4057 if (multi_present == 1 || multi_present == 2) {
4058 /* 3D_Structure_ALL */
4059 structure_all = (db[8 + offset] << 8) | db[9 + offset];
4060
4061 /* check if 3D_MASK is present */
4062 if (multi_present == 2)
4063 mask = (db[10 + offset] << 8) | db[11 + offset];
4064 else
4065 mask = 0xffff;
4066
4067 for (i = 0; i < 16; i++) {
4068 if (mask & (1 << i))
4069 modes += add_3d_struct_modes(connector,
4070 structure_all,
4071 video_db,
4072 video_len, i);
4073 }
4074 }
4075
4076 offset += multi_len;
4077
4078 for (i = 0; i < (hdmi_3d_len - multi_len); i++) {
4079 int vic_index;
4080 struct drm_display_mode *newmode = NULL;
4081 unsigned int newflag = 0;
4082 bool detail_present;
4083
4084 detail_present = ((db[8 + offset + i] & 0x0f) > 7);
4085
4086 if (detail_present && (i + 1 == hdmi_3d_len - multi_len))
4087 break;
4088
4089 /* 2D_VIC_order_X */
4090 vic_index = db[8 + offset + i] >> 4;
4091
4092 /* 3D_Structure_X */
4093 switch (db[8 + offset + i] & 0x0f) {
4094 case 0:
4095 newflag = DRM_MODE_FLAG_3D_FRAME_PACKING;
4096 break;
4097 case 6:
4098 newflag = DRM_MODE_FLAG_3D_TOP_AND_BOTTOM;
4099 break;
4100 case 8:
4101 /* 3D_Detail_X */
4102 if ((db[9 + offset + i] >> 4) == 1)
4103 newflag = DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF;
4104 break;
4105 }
4106
4107 if (newflag != 0) {
4108 newmode = drm_display_mode_from_vic_index(connector,
4109 video_db,
4110 video_len,
4111 vic_index);
4112
4113 if (newmode) {
4114 newmode->flags |= newflag;
4115 drm_mode_probed_add(connector, newmode);
4116 modes++;
4117 }
4118 }
4119
4120 if (detail_present)
4121 i++;
Thomas Woodfbf46022013-10-16 15:58:50 +01004122 }
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004123
4124out:
Ville Syrjäläf1781e92017-11-13 19:04:19 +02004125 if (modes > 0)
4126 info->has_hdmi_infoframe = true;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004127 return modes;
4128}
4129
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004130static int
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004131cea_db_payload_len(const u8 *db)
4132{
4133 return db[0] & 0x1f;
4134}
4135
4136static int
Shashank Sharma87563fc2017-07-13 21:03:10 +05304137cea_db_extended_tag(const u8 *db)
4138{
4139 return db[1];
4140}
4141
4142static int
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004143cea_db_tag(const u8 *db)
4144{
4145 return db[0] >> 5;
4146}
4147
4148static int
4149cea_revision(const u8 *cea)
4150{
Ville Syrjälä5036c0d2020-01-24 22:02:29 +02004151 /*
4152 * FIXME is this correct for the DispID variant?
4153 * The DispID spec doesn't really specify whether
4154 * this is the revision of the CEA extension or
4155 * the DispID CEA data block. And the only value
4156 * given as an example is 0.
4157 */
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004158 return cea[1];
4159}
4160
4161static int
4162cea_db_offsets(const u8 *cea, int *start, int *end)
4163{
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004164 /* DisplayID CTA extension blocks and top-level CEA EDID
4165 * block header definitions differ in the following bytes:
4166 * 1) Byte 2 of the header specifies length differently,
4167 * 2) Byte 3 is only present in the CEA top level block.
4168 *
4169 * The different definitions for byte 2 follow.
4170 *
4171 * DisplayID CTA extension block defines byte 2 as:
4172 * Number of payload bytes
4173 *
4174 * CEA EDID block defines byte 2 as:
4175 * Byte number (decimal) within this block where the 18-byte
4176 * DTDs begin. If no non-DTD data is present in this extension
4177 * block, the value should be set to 04h (the byte after next).
4178 * If set to 00h, there are no DTDs present in this block and
4179 * no non-DTD data.
4180 */
4181 if (cea[0] == DATA_BLOCK_CTA) {
Ville Syrjälä6e8a9422020-01-24 22:02:28 +02004182 /*
4183 * for_each_displayid_db() has already verified
4184 * that these stay within expected bounds.
4185 */
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004186 *start = 3;
4187 *end = *start + cea[2];
4188 } else if (cea[0] == CEA_EXT) {
4189 /* Data block offset in CEA extension block */
4190 *start = 4;
4191 *end = cea[2];
4192 if (*end == 0)
4193 *end = 127;
4194 if (*end < 4 || *end > 127)
4195 return -ERANGE;
4196 } else {
Daniel Vetterc7581a42019-09-04 16:39:42 +02004197 return -EOPNOTSUPP;
Andres Rodrigueze28ad542019-06-19 14:09:01 -04004198 }
4199
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004200 return 0;
4201}
4202
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004203static bool cea_db_is_hdmi_vsdb(const u8 *db)
4204{
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004205 if (cea_db_tag(db) != VENDOR_BLOCK)
4206 return false;
4207
4208 if (cea_db_payload_len(db) < 5)
4209 return false;
4210
Jani Nikula37eab1f2021-08-31 17:17:32 +03004211 return oui(db[3], db[2], db[1]) == HDMI_IEEE_OUI;
Lespiau, Damien7ebe1962013-08-19 16:58:54 +01004212}
4213
Thierry Reding50dd1bd2017-03-13 16:54:00 +05304214static bool cea_db_is_hdmi_forum_vsdb(const u8 *db)
4215{
Thierry Reding50dd1bd2017-03-13 16:54:00 +05304216 if (cea_db_tag(db) != VENDOR_BLOCK)
4217 return false;
4218
4219 if (cea_db_payload_len(db) < 7)
4220 return false;
4221
Jani Nikula37eab1f2021-08-31 17:17:32 +03004222 return oui(db[3], db[2], db[1]) == HDMI_FORUM_IEEE_OUI;
Thierry Reding50dd1bd2017-03-13 16:54:00 +05304223}
4224
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02004225static bool cea_db_is_vcdb(const u8 *db)
4226{
4227 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4228 return false;
4229
4230 if (cea_db_payload_len(db) != 2)
4231 return false;
4232
4233 if (cea_db_extended_tag(db) != EXT_VIDEO_CAPABILITY_BLOCK)
4234 return false;
4235
4236 return true;
4237}
4238
Shashank Sharma832d4f22017-07-14 16:03:46 +05304239static bool cea_db_is_y420cmdb(const u8 *db)
4240{
4241 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4242 return false;
4243
4244 if (!cea_db_payload_len(db))
4245 return false;
4246
4247 if (cea_db_extended_tag(db) != EXT_VIDEO_CAP_BLOCK_Y420CMDB)
4248 return false;
4249
4250 return true;
4251}
4252
4253static bool cea_db_is_y420vdb(const u8 *db)
4254{
4255 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4256 return false;
4257
4258 if (!cea_db_payload_len(db))
4259 return false;
4260
4261 if (cea_db_extended_tag(db) != EXT_VIDEO_DATA_BLOCK_420)
4262 return false;
4263
4264 return true;
4265}
4266
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004267#define for_each_cea_db(cea, i, start, end) \
4268 for ((i) = (start); (i) < (end) && (i) + cea_db_payload_len(&(cea)[(i)]) < (end); (i) += cea_db_payload_len(&(cea)[(i)]) + 1)
4269
Shashank Sharma832d4f22017-07-14 16:03:46 +05304270static void drm_parse_y420cmdb_bitmap(struct drm_connector *connector,
4271 const u8 *db)
4272{
4273 struct drm_display_info *info = &connector->display_info;
4274 struct drm_hdmi_info *hdmi = &info->hdmi;
4275 u8 map_len = cea_db_payload_len(db) - 1;
4276 u8 count;
4277 u64 map = 0;
4278
4279 if (map_len == 0) {
4280 /* All CEA modes support ycbcr420 sampling also.*/
4281 hdmi->y420_cmdb_map = U64_MAX;
4282 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
4283 return;
4284 }
4285
4286 /*
4287 * This map indicates which of the existing CEA block modes
4288 * from VDB can support YCBCR420 output too. So if bit=0 is
4289 * set, first mode from VDB can support YCBCR420 output too.
4290 * We will parse and keep this map, before parsing VDB itself
4291 * to avoid going through the same block again and again.
4292 *
4293 * Spec is not clear about max possible size of this block.
4294 * Clamping max bitmap block size at 8 bytes. Every byte can
4295 * address 8 CEA modes, in this way this map can address
4296 * 8*8 = first 64 SVDs.
4297 */
4298 if (WARN_ON_ONCE(map_len > 8))
4299 map_len = 8;
4300
4301 for (count = 0; count < map_len; count++)
4302 map |= (u64)db[2 + count] << (8 * count);
4303
4304 if (map)
4305 info->color_formats |= DRM_COLOR_FORMAT_YCRCB420;
4306
4307 hdmi->y420_cmdb_map = map;
4308}
4309
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004310static int
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004311add_cea_modes(struct drm_connector *connector, struct edid *edid)
4312{
Lespiau, Damien13ac3f52013-08-19 16:58:53 +01004313 const u8 *cea = drm_find_cea_extension(edid);
Thomas Woodfbf46022013-10-16 15:58:50 +01004314 const u8 *db, *hdmi = NULL, *video = NULL;
4315 u8 dbl, hdmi_len, video_len = 0;
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004316 int modes = 0;
4317
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004318 if (cea && cea_revision(cea) >= 3) {
4319 int i, start, end;
4320
4321 if (cea_db_offsets(cea, &start, &end))
4322 return 0;
4323
4324 for_each_cea_db(cea, i, start, end) {
4325 db = &cea[i];
4326 dbl = cea_db_payload_len(db);
4327
Thomas Woodfbf46022013-10-16 15:58:50 +01004328 if (cea_db_tag(db) == VIDEO_BLOCK) {
4329 video = db + 1;
4330 video_len = dbl;
4331 modes += do_cea_modes(connector, video, dbl);
Shashank Sharma832d4f22017-07-14 16:03:46 +05304332 } else if (cea_db_is_hdmi_vsdb(db)) {
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004333 hdmi = db;
4334 hdmi_len = dbl;
Shashank Sharma832d4f22017-07-14 16:03:46 +05304335 } else if (cea_db_is_y420vdb(db)) {
4336 const u8 *vdb420 = &db[2];
4337
4338 /* Add 4:2:0(only) modes present in EDID */
4339 modes += do_y420vdb_modes(connector,
4340 vdb420,
4341 dbl - 1);
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004342 }
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004343 }
4344 }
4345
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004346 /*
4347 * We parse the HDMI VSDB after having added the cea modes as we will
4348 * be patching their flags when the sink supports stereo 3D.
4349 */
4350 if (hdmi)
Thomas Woodfbf46022013-10-16 15:58:50 +01004351 modes += do_hdmi_vsdb_modes(connector, hdmi, hdmi_len, video,
4352 video_len);
Damien Lespiauc858cfc2013-09-25 16:45:23 +01004353
Christian Schmidt54ac76f2011-12-19 14:53:16 +00004354 return modes;
4355}
4356
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004357static void fixup_detailed_cea_mode_clock(struct drm_display_mode *mode)
4358{
4359 const struct drm_display_mode *cea_mode;
4360 int clock1, clock2, clock;
Jani Nikulad9278b42016-01-08 13:21:51 +02004361 u8 vic;
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004362 const char *type;
4363
Ville Syrjälä4c6bcf42015-11-16 21:05:12 +02004364 /*
4365 * allow 5kHz clock difference either way to account for
4366 * the 10kHz clock resolution limit of detailed timings.
4367 */
Jani Nikulad9278b42016-01-08 13:21:51 +02004368 vic = drm_match_cea_mode_clock_tolerance(mode, 5);
4369 if (drm_valid_cea_vic(vic)) {
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004370 type = "CEA";
Ville Syrjälä7befe622019-12-13 19:43:45 +02004371 cea_mode = cea_mode_for_vic(vic);
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004372 clock1 = cea_mode->clock;
4373 clock2 = cea_mode_alternate_clock(cea_mode);
4374 } else {
Jani Nikulad9278b42016-01-08 13:21:51 +02004375 vic = drm_match_hdmi_mode_clock_tolerance(mode, 5);
4376 if (drm_valid_hdmi_vic(vic)) {
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004377 type = "HDMI";
Jani Nikulad9278b42016-01-08 13:21:51 +02004378 cea_mode = &edid_4k_modes[vic];
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004379 clock1 = cea_mode->clock;
4380 clock2 = hdmi_mode_alternate_clock(cea_mode);
4381 } else {
4382 return;
4383 }
4384 }
4385
4386 /* pick whichever is closest */
4387 if (abs(mode->clock - clock1) < abs(mode->clock - clock2))
4388 clock = clock1;
4389 else
4390 clock = clock2;
4391
4392 if (mode->clock == clock)
4393 return;
4394
4395 DRM_DEBUG("detailed mode matches %s VIC %d, adjusting clock %d -> %d\n",
Jani Nikulad9278b42016-01-08 13:21:51 +02004396 type, vic, mode->clock, clock);
Ville Syrjäläfa3a7342015-10-08 11:43:32 +03004397 mode->clock = clock;
4398}
4399
Uma Shankare85959d2019-05-16 19:40:08 +05304400static bool cea_db_is_hdmi_hdr_metadata_block(const u8 *db)
4401{
4402 if (cea_db_tag(db) != USE_EXTENDED_TAG)
4403 return false;
4404
4405 if (db[1] != HDR_STATIC_METADATA_BLOCK)
4406 return false;
4407
4408 if (cea_db_payload_len(db) < 3)
4409 return false;
4410
4411 return true;
4412}
4413
4414static uint8_t eotf_supported(const u8 *edid_ext)
4415{
4416 return edid_ext[2] &
4417 (BIT(HDMI_EOTF_TRADITIONAL_GAMMA_SDR) |
4418 BIT(HDMI_EOTF_TRADITIONAL_GAMMA_HDR) |
Ville Syrjäläb5e3eed2019-05-16 19:40:12 +05304419 BIT(HDMI_EOTF_SMPTE_ST2084) |
4420 BIT(HDMI_EOTF_BT_2100_HLG));
Uma Shankare85959d2019-05-16 19:40:08 +05304421}
4422
4423static uint8_t hdr_metadata_type(const u8 *edid_ext)
4424{
4425 return edid_ext[3] &
4426 BIT(HDMI_STATIC_METADATA_TYPE1);
4427}
4428
4429static void
4430drm_parse_hdr_metadata_block(struct drm_connector *connector, const u8 *db)
4431{
4432 u16 len;
4433
4434 len = cea_db_payload_len(db);
4435
4436 connector->hdr_sink_metadata.hdmi_type1.eotf =
4437 eotf_supported(db);
4438 connector->hdr_sink_metadata.hdmi_type1.metadata_type =
4439 hdr_metadata_type(db);
4440
4441 if (len >= 4)
4442 connector->hdr_sink_metadata.hdmi_type1.max_cll = db[4];
4443 if (len >= 5)
4444 connector->hdr_sink_metadata.hdmi_type1.max_fall = db[5];
4445 if (len >= 6)
4446 connector->hdr_sink_metadata.hdmi_type1.min_cll = db[6];
4447}
4448
Wu Fengguang76adaa342011-09-05 14:23:20 +08004449static void
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004450drm_parse_hdmi_vsdb_audio(struct drm_connector *connector, const u8 *db)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004451{
Ville Syrjälä85040722012-08-16 14:55:05 +00004452 u8 len = cea_db_payload_len(db);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004453
Jani Nikulaf7da77852017-11-01 16:20:57 +02004454 if (len >= 6 && (db[6] & (1 << 7)))
4455 connector->eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_SUPPORTS_AI;
Ville Syrjälä85040722012-08-16 14:55:05 +00004456 if (len >= 8) {
4457 connector->latency_present[0] = db[8] >> 7;
4458 connector->latency_present[1] = (db[8] >> 6) & 1;
4459 }
4460 if (len >= 9)
4461 connector->video_latency[0] = db[9];
4462 if (len >= 10)
4463 connector->audio_latency[0] = db[10];
4464 if (len >= 11)
4465 connector->video_latency[1] = db[11];
4466 if (len >= 12)
4467 connector->audio_latency[1] = db[12];
Wu Fengguang76adaa342011-09-05 14:23:20 +08004468
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004469 DRM_DEBUG_KMS("HDMI: latency present %d %d, "
4470 "video latency %d %d, "
4471 "audio latency %d %d\n",
4472 connector->latency_present[0],
4473 connector->latency_present[1],
4474 connector->video_latency[0],
4475 connector->video_latency[1],
4476 connector->audio_latency[0],
4477 connector->audio_latency[1]);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004478}
4479
4480static void
4481monitor_name(struct detailed_timing *t, void *data)
4482{
Ville Syrjäläa7a131a2020-01-24 22:02:25 +02004483 if (!is_display_descriptor((const u8 *)t, EDID_DETAIL_MONITOR_NAME))
4484 return;
4485
4486 *(u8 **)data = t->data.other_data.data.str.str;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004487}
4488
Jim Bride59f7c0f2016-04-14 10:18:35 -07004489static int get_monitor_name(struct edid *edid, char name[13])
4490{
4491 char *edid_name = NULL;
4492 int mnl;
4493
4494 if (!edid || !name)
4495 return 0;
4496
4497 drm_for_each_detailed_block((u8 *)edid, monitor_name, &edid_name);
4498 for (mnl = 0; edid_name && mnl < 13; mnl++) {
4499 if (edid_name[mnl] == 0x0a)
4500 break;
4501
4502 name[mnl] = edid_name[mnl];
4503 }
4504
4505 return mnl;
4506}
4507
4508/**
4509 * drm_edid_get_monitor_name - fetch the monitor name from the edid
4510 * @edid: monitor EDID information
4511 * @name: pointer to a character array to hold the name of the monitor
4512 * @bufsize: The size of the name buffer (should be at least 14 chars.)
4513 *
4514 */
4515void drm_edid_get_monitor_name(struct edid *edid, char *name, int bufsize)
4516{
4517 int name_length;
4518 char buf[13];
Ville Syrjälä4d23f482020-01-24 22:02:27 +02004519
Jim Bride59f7c0f2016-04-14 10:18:35 -07004520 if (bufsize <= 0)
4521 return;
4522
4523 name_length = min(get_monitor_name(edid, buf), bufsize - 1);
4524 memcpy(name, buf, name_length);
4525 name[name_length] = '\0';
4526}
4527EXPORT_SYMBOL(drm_edid_get_monitor_name);
4528
Jani Nikula42750d32017-11-01 16:21:00 +02004529static void clear_eld(struct drm_connector *connector)
4530{
4531 memset(connector->eld, 0, sizeof(connector->eld));
4532
4533 connector->latency_present[0] = false;
4534 connector->latency_present[1] = false;
4535 connector->video_latency[0] = 0;
4536 connector->audio_latency[0] = 0;
4537 connector->video_latency[1] = 0;
4538 connector->audio_latency[1] = 0;
4539}
4540
Jani Nikula79436a12017-11-01 16:21:03 +02004541/*
Wu Fengguang76adaa342011-09-05 14:23:20 +08004542 * drm_edid_to_eld - build ELD from EDID
4543 * @connector: connector corresponding to the HDMI/DP sink
4544 * @edid: EDID to parse
4545 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004546 * Fill the ELD (EDID-Like Data) buffer for passing to the audio driver. The
Jani Nikula1d1c3662017-11-01 16:20:58 +02004547 * HDCP and Port_ID ELD fields are left for the graphics driver to fill in.
Wu Fengguang76adaa342011-09-05 14:23:20 +08004548 */
Jani Nikula79436a12017-11-01 16:21:03 +02004549static void drm_edid_to_eld(struct drm_connector *connector, struct edid *edid)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004550{
4551 uint8_t *eld = connector->eld;
Jani Nikula43d16d82021-03-29 16:37:15 +03004552 const u8 *cea;
4553 const u8 *db;
Ville Syrjälä7c018782016-03-09 22:07:46 +02004554 int total_sad_count = 0;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004555 int mnl;
4556 int dbl;
4557
Jani Nikula42750d32017-11-01 16:21:00 +02004558 clear_eld(connector);
Ville Syrjälä85c91582016-09-28 16:51:34 +03004559
Jani Nikulae9bd0b82017-02-17 17:20:52 +02004560 if (!edid)
4561 return;
4562
Wu Fengguang76adaa342011-09-05 14:23:20 +08004563 cea = drm_find_cea_extension(edid);
4564 if (!cea) {
4565 DRM_DEBUG_KMS("ELD: no CEA Extension found\n");
4566 return;
4567 }
4568
Jani Nikulaf7da77852017-11-01 16:20:57 +02004569 mnl = get_monitor_name(edid, &eld[DRM_ELD_MONITOR_NAME_STRING]);
4570 DRM_DEBUG_KMS("ELD monitor %s\n", &eld[DRM_ELD_MONITOR_NAME_STRING]);
Jim Bride59f7c0f2016-04-14 10:18:35 -07004571
Jani Nikulaf7da77852017-11-01 16:20:57 +02004572 eld[DRM_ELD_CEA_EDID_VER_MNL] = cea[1] << DRM_ELD_CEA_EDID_VER_SHIFT;
4573 eld[DRM_ELD_CEA_EDID_VER_MNL] |= mnl;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004574
Jani Nikulaf7da77852017-11-01 16:20:57 +02004575 eld[DRM_ELD_VER] = DRM_ELD_VER_CEA861D;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004576
Jani Nikulaf7da77852017-11-01 16:20:57 +02004577 eld[DRM_ELD_MANUFACTURER_NAME0] = edid->mfg_id[0];
4578 eld[DRM_ELD_MANUFACTURER_NAME1] = edid->mfg_id[1];
4579 eld[DRM_ELD_PRODUCT_CODE0] = edid->prod_code[0];
4580 eld[DRM_ELD_PRODUCT_CODE1] = edid->prod_code[1];
Wu Fengguang76adaa342011-09-05 14:23:20 +08004581
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004582 if (cea_revision(cea) >= 3) {
4583 int i, start, end;
Kees Cookdeec2222020-03-06 09:32:13 -08004584 int sad_count;
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004585
4586 if (cea_db_offsets(cea, &start, &end)) {
4587 start = 0;
4588 end = 0;
4589 }
4590
4591 for_each_cea_db(cea, i, start, end) {
4592 db = &cea[i];
4593 dbl = cea_db_payload_len(db);
4594
4595 switch (cea_db_tag(db)) {
Christian Schmidta0ab7342011-12-19 20:03:38 +01004596 case AUDIO_BLOCK:
4597 /* Audio Data Block, contains SADs */
Ville Syrjälä7c018782016-03-09 22:07:46 +02004598 sad_count = min(dbl / 3, 15 - total_sad_count);
4599 if (sad_count >= 1)
Jani Nikulaf7da77852017-11-01 16:20:57 +02004600 memcpy(&eld[DRM_ELD_CEA_SAD(mnl, total_sad_count)],
Ville Syrjälä7c018782016-03-09 22:07:46 +02004601 &db[1], sad_count * 3);
4602 total_sad_count += sad_count;
Christian Schmidta0ab7342011-12-19 20:03:38 +01004603 break;
4604 case SPEAKER_BLOCK:
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004605 /* Speaker Allocation Data Block */
4606 if (dbl >= 1)
Jani Nikulaf7da77852017-11-01 16:20:57 +02004607 eld[DRM_ELD_SPEAKER] = db[1];
Christian Schmidta0ab7342011-12-19 20:03:38 +01004608 break;
4609 case VENDOR_BLOCK:
4610 /* HDMI Vendor-Specific Data Block */
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004611 if (cea_db_is_hdmi_vsdb(db))
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03004612 drm_parse_hdmi_vsdb_audio(connector, db);
Christian Schmidta0ab7342011-12-19 20:03:38 +01004613 break;
4614 default:
4615 break;
4616 }
Wu Fengguang76adaa342011-09-05 14:23:20 +08004617 }
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004618 }
Jani Nikulaf7da77852017-11-01 16:20:57 +02004619 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= total_sad_count << DRM_ELD_SAD_COUNT_SHIFT;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004620
Jani Nikula1d1c3662017-11-01 16:20:58 +02004621 if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
4622 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
4623 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_DP;
4624 else
4625 eld[DRM_ELD_SAD_COUNT_CONN_TYPE] |= DRM_ELD_CONN_TYPE_HDMI;
Wu Fengguang76adaa342011-09-05 14:23:20 +08004626
Jani Nikula938fd8a2014-10-28 16:20:48 +02004627 eld[DRM_ELD_BASELINE_ELD_LEN] =
4628 DIV_ROUND_UP(drm_eld_calc_baseline_block_size(eld), 4);
4629
4630 DRM_DEBUG_KMS("ELD size %d, SAD count %d\n",
Ville Syrjälä7c018782016-03-09 22:07:46 +02004631 drm_eld_size(eld), total_sad_count);
Wu Fengguang76adaa342011-09-05 14:23:20 +08004632}
Wu Fengguang76adaa342011-09-05 14:23:20 +08004633
4634/**
Rafał Miłeckife214162013-04-19 19:01:25 +02004635 * drm_edid_to_sad - extracts SADs from EDID
4636 * @edid: EDID to parse
4637 * @sads: pointer that will be set to the extracted SADs
4638 *
4639 * Looks for CEA EDID block and extracts SADs (Short Audio Descriptors) from it.
Rafał Miłeckife214162013-04-19 19:01:25 +02004640 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004641 * Note: The returned pointer needs to be freed using kfree().
4642 *
4643 * Return: The number of found SADs or negative number on error.
Rafał Miłeckife214162013-04-19 19:01:25 +02004644 */
4645int drm_edid_to_sad(struct edid *edid, struct cea_sad **sads)
4646{
4647 int count = 0;
4648 int i, start, end, dbl;
Jani Nikula43d16d82021-03-29 16:37:15 +03004649 const u8 *cea;
Rafał Miłeckife214162013-04-19 19:01:25 +02004650
4651 cea = drm_find_cea_extension(edid);
4652 if (!cea) {
4653 DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
Jean Delvare42908002019-11-15 17:07:36 +01004654 return 0;
Rafał Miłeckife214162013-04-19 19:01:25 +02004655 }
4656
4657 if (cea_revision(cea) < 3) {
4658 DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
Jean Delvare42908002019-11-15 17:07:36 +01004659 return 0;
Rafał Miłeckife214162013-04-19 19:01:25 +02004660 }
4661
4662 if (cea_db_offsets(cea, &start, &end)) {
4663 DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
4664 return -EPROTO;
4665 }
4666
4667 for_each_cea_db(cea, i, start, end) {
Jani Nikula43d16d82021-03-29 16:37:15 +03004668 const u8 *db = &cea[i];
Rafał Miłeckife214162013-04-19 19:01:25 +02004669
4670 if (cea_db_tag(db) == AUDIO_BLOCK) {
4671 int j;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05304672
Rafał Miłeckife214162013-04-19 19:01:25 +02004673 dbl = cea_db_payload_len(db);
4674
4675 count = dbl / 3; /* SAD is 3B */
4676 *sads = kcalloc(count, sizeof(**sads), GFP_KERNEL);
4677 if (!*sads)
4678 return -ENOMEM;
4679 for (j = 0; j < count; j++) {
Jani Nikula43d16d82021-03-29 16:37:15 +03004680 const u8 *sad = &db[1 + j * 3];
Rafał Miłeckife214162013-04-19 19:01:25 +02004681
4682 (*sads)[j].format = (sad[0] & 0x78) >> 3;
4683 (*sads)[j].channels = sad[0] & 0x7;
4684 (*sads)[j].freq = sad[1] & 0x7F;
4685 (*sads)[j].byte2 = sad[2];
4686 }
4687 break;
4688 }
4689 }
4690
4691 return count;
4692}
4693EXPORT_SYMBOL(drm_edid_to_sad);
4694
4695/**
Alex Deucherd105f472013-07-25 15:55:32 -04004696 * drm_edid_to_speaker_allocation - extracts Speaker Allocation Data Blocks from EDID
4697 * @edid: EDID to parse
4698 * @sadb: pointer to the speaker block
4699 *
4700 * Looks for CEA EDID block and extracts the Speaker Allocation Data Block from it.
Alex Deucherd105f472013-07-25 15:55:32 -04004701 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004702 * Note: The returned pointer needs to be freed using kfree().
4703 *
4704 * Return: The number of found Speaker Allocation Blocks or negative number on
4705 * error.
Alex Deucherd105f472013-07-25 15:55:32 -04004706 */
4707int drm_edid_to_speaker_allocation(struct edid *edid, u8 **sadb)
4708{
4709 int count = 0;
4710 int i, start, end, dbl;
4711 const u8 *cea;
4712
4713 cea = drm_find_cea_extension(edid);
4714 if (!cea) {
4715 DRM_DEBUG_KMS("SAD: no CEA Extension found\n");
Jean Delvare42908002019-11-15 17:07:36 +01004716 return 0;
Alex Deucherd105f472013-07-25 15:55:32 -04004717 }
4718
4719 if (cea_revision(cea) < 3) {
4720 DRM_DEBUG_KMS("SAD: wrong CEA revision\n");
Jean Delvare42908002019-11-15 17:07:36 +01004721 return 0;
Alex Deucherd105f472013-07-25 15:55:32 -04004722 }
4723
4724 if (cea_db_offsets(cea, &start, &end)) {
4725 DRM_DEBUG_KMS("SAD: invalid data block offsets\n");
4726 return -EPROTO;
4727 }
4728
4729 for_each_cea_db(cea, i, start, end) {
4730 const u8 *db = &cea[i];
4731
4732 if (cea_db_tag(db) == SPEAKER_BLOCK) {
4733 dbl = cea_db_payload_len(db);
4734
4735 /* Speaker Allocation Data Block */
4736 if (dbl == 3) {
Benoit Taine89086bc2014-05-26 17:21:22 +02004737 *sadb = kmemdup(&db[1], dbl, GFP_KERNEL);
Alex Deucher618e3772013-09-27 18:46:09 -04004738 if (!*sadb)
4739 return -ENOMEM;
Alex Deucherd105f472013-07-25 15:55:32 -04004740 count = dbl;
4741 break;
4742 }
4743 }
4744 }
4745
4746 return count;
4747}
4748EXPORT_SYMBOL(drm_edid_to_speaker_allocation);
4749
4750/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004751 * drm_av_sync_delay - compute the HDMI/DP sink audio-video sync delay
Wu Fengguang76adaa342011-09-05 14:23:20 +08004752 * @connector: connector associated with the HDMI/DP sink
4753 * @mode: the display mode
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004754 *
4755 * Return: The HDMI/DP sink's audio-video sync delay in milliseconds or 0 if
4756 * the sink doesn't support audio or video.
Wu Fengguang76adaa342011-09-05 14:23:20 +08004757 */
4758int drm_av_sync_delay(struct drm_connector *connector,
Ville Syrjälä3a818d32015-09-07 18:22:58 +03004759 const struct drm_display_mode *mode)
Wu Fengguang76adaa342011-09-05 14:23:20 +08004760{
4761 int i = !!(mode->flags & DRM_MODE_FLAG_INTERLACE);
4762 int a, v;
4763
4764 if (!connector->latency_present[0])
4765 return 0;
4766 if (!connector->latency_present[1])
4767 i = 0;
4768
4769 a = connector->audio_latency[i];
4770 v = connector->video_latency[i];
4771
4772 /*
4773 * HDMI/DP sink doesn't support audio or video?
4774 */
4775 if (a == 255 || v == 255)
4776 return 0;
4777
4778 /*
4779 * Convert raw EDID values to millisecond.
4780 * Treat unknown latency as 0ms.
4781 */
4782 if (a)
4783 a = min(2 * (a - 1), 500);
4784 if (v)
4785 v = min(2 * (v - 1), 500);
4786
4787 return max(v - a, 0);
4788}
4789EXPORT_SYMBOL(drm_av_sync_delay);
4790
4791/**
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004792 * drm_detect_hdmi_monitor - detect whether monitor is HDMI
Ma Lingf23c20c2009-03-26 19:26:23 +08004793 * @edid: monitor EDID information
4794 *
4795 * Parse the CEA extension according to CEA-861-B.
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004796 *
Laurent Pincharta92d0832020-02-26 13:24:23 +02004797 * Drivers that have added the modes parsed from EDID to drm_display_info
4798 * should use &drm_display_info.is_hdmi instead of calling this function.
4799 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004800 * Return: True if the monitor is HDMI, false if not or unknown.
Ma Lingf23c20c2009-03-26 19:26:23 +08004801 */
4802bool drm_detect_hdmi_monitor(struct edid *edid)
4803{
Jani Nikula43d16d82021-03-29 16:37:15 +03004804 const u8 *edid_ext;
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004805 int i;
Ma Lingf23c20c2009-03-26 19:26:23 +08004806 int start_offset, end_offset;
Ma Lingf23c20c2009-03-26 19:26:23 +08004807
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004808 edid_ext = drm_find_cea_extension(edid);
4809 if (!edid_ext)
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004810 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004811
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004812 if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004813 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004814
4815 /*
4816 * Because HDMI identifier is in Vendor Specific Block,
4817 * search it from all data blocks of CEA extension.
4818 */
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004819 for_each_cea_db(edid_ext, i, start_offset, end_offset) {
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004820 if (cea_db_is_hdmi_vsdb(&edid_ext[i]))
4821 return true;
Ma Lingf23c20c2009-03-26 19:26:23 +08004822 }
4823
Ville Syrjälä14f77fd2012-08-16 14:55:06 +00004824 return false;
Ma Lingf23c20c2009-03-26 19:26:23 +08004825}
4826EXPORT_SYMBOL(drm_detect_hdmi_monitor);
4827
Dave Airlief453ba02008-11-07 14:05:41 -08004828/**
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004829 * drm_detect_monitor_audio - check monitor audio capability
Daniel Vetterfc668112014-01-21 12:02:26 +01004830 * @edid: EDID block to scan
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004831 *
4832 * Monitor should have CEA extension block.
4833 * If monitor has 'basic audio', but no CEA audio blocks, it's 'basic
4834 * audio' only. If there is any audio extension block and supported
4835 * audio format, assume at least 'basic audio' support, even if 'basic
4836 * audio' is not defined in EDID.
4837 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02004838 * Return: True if the monitor supports audio, false otherwise.
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004839 */
4840bool drm_detect_monitor_audio(struct edid *edid)
4841{
Jani Nikula43d16d82021-03-29 16:37:15 +03004842 const u8 *edid_ext;
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004843 int i, j;
4844 bool has_audio = false;
4845 int start_offset, end_offset;
4846
4847 edid_ext = drm_find_cea_extension(edid);
4848 if (!edid_ext)
4849 goto end;
4850
4851 has_audio = ((edid_ext[3] & EDID_BASIC_AUDIO) != 0);
4852
4853 if (has_audio) {
4854 DRM_DEBUG_KMS("Monitor has basic audio support\n");
4855 goto end;
4856 }
4857
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004858 if (cea_db_offsets(edid_ext, &start_offset, &end_offset))
4859 goto end;
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004860
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004861 for_each_cea_db(edid_ext, i, start_offset, end_offset) {
4862 if (cea_db_tag(&edid_ext[i]) == AUDIO_BLOCK) {
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004863 has_audio = true;
Ville Syrjälä9e50b9d2012-08-16 14:55:04 +00004864 for (j = 1; j < cea_db_payload_len(&edid_ext[i]) + 1; j += 3)
Zhenyu Wang8fe97902010-09-19 14:27:28 +08004865 DRM_DEBUG_KMS("CEA audio format %d\n",
4866 (edid_ext[i + j] >> 3) & 0xf);
4867 goto end;
4868 }
4869 }
4870end:
4871 return has_audio;
4872}
4873EXPORT_SYMBOL(drm_detect_monitor_audio);
4874
Ville Syrjäläb1edd6a2013-01-17 16:31:30 +02004875
Ville Syrjäläc8127cf02017-01-11 16:18:35 +02004876/**
4877 * drm_default_rgb_quant_range - default RGB quantization range
4878 * @mode: display mode
4879 *
4880 * Determine the default RGB quantization range for the mode,
4881 * as specified in CEA-861.
4882 *
4883 * Return: The default RGB quantization range for the mode
4884 */
4885enum hdmi_quantization_range
4886drm_default_rgb_quant_range(const struct drm_display_mode *mode)
4887{
4888 /* All CEA modes other than VIC 1 use limited quantization range. */
4889 return drm_match_cea_mode(mode) > 1 ?
4890 HDMI_QUANTIZATION_RANGE_LIMITED :
4891 HDMI_QUANTIZATION_RANGE_FULL;
4892}
4893EXPORT_SYMBOL(drm_default_rgb_quant_range);
4894
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02004895static void drm_parse_vcdb(struct drm_connector *connector, const u8 *db)
4896{
4897 struct drm_display_info *info = &connector->display_info;
4898
4899 DRM_DEBUG_KMS("CEA VCDB 0x%02x\n", db[2]);
4900
4901 if (db[2] & EDID_CEA_VCDB_QS)
4902 info->rgb_quant_range_selectable = true;
4903}
4904
Swati Sharma4499d482020-12-18 16:07:10 +05304905static
4906void drm_get_max_frl_rate(int max_frl_rate, u8 *max_lanes, u8 *max_rate_per_lane)
4907{
4908 switch (max_frl_rate) {
4909 case 1:
4910 *max_lanes = 3;
4911 *max_rate_per_lane = 3;
4912 break;
4913 case 2:
4914 *max_lanes = 3;
4915 *max_rate_per_lane = 6;
4916 break;
4917 case 3:
4918 *max_lanes = 4;
4919 *max_rate_per_lane = 6;
4920 break;
4921 case 4:
4922 *max_lanes = 4;
4923 *max_rate_per_lane = 8;
4924 break;
4925 case 5:
4926 *max_lanes = 4;
4927 *max_rate_per_lane = 10;
4928 break;
4929 case 6:
4930 *max_lanes = 4;
4931 *max_rate_per_lane = 12;
4932 break;
4933 case 0:
4934 default:
4935 *max_lanes = 0;
4936 *max_rate_per_lane = 0;
4937 }
4938}
4939
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304940static void drm_parse_ycbcr420_deep_color_info(struct drm_connector *connector,
4941 const u8 *db)
4942{
4943 u8 dc_mask;
4944 struct drm_hdmi_info *hdmi = &connector->display_info.hdmi;
4945
4946 dc_mask = db[7] & DRM_EDID_YCBCR420_DC_MASK;
Clint Taylor9068e022018-10-05 14:52:15 -07004947 hdmi->y420_dc_modes = dc_mask;
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304948}
4949
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304950static void drm_parse_hdmi_forum_vsdb(struct drm_connector *connector,
4951 const u8 *hf_vsdb)
4952{
Shashank Sharma62c58af2017-03-13 16:54:02 +05304953 struct drm_display_info *display = &connector->display_info;
4954 struct drm_hdmi_info *hdmi = &display->hdmi;
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304955
Ville Syrjäläf1781e92017-11-13 19:04:19 +02004956 display->has_hdmi_infoframe = true;
4957
Shashank Sharmaafa1c762017-03-13 16:54:01 +05304958 if (hf_vsdb[6] & 0x80) {
4959 hdmi->scdc.supported = true;
4960 if (hf_vsdb[6] & 0x40)
4961 hdmi->scdc.read_request = true;
4962 }
Shashank Sharma62c58af2017-03-13 16:54:02 +05304963
4964 /*
4965 * All HDMI 2.0 monitors must support scrambling at rates > 340 MHz.
4966 * And as per the spec, three factors confirm this:
4967 * * Availability of a HF-VSDB block in EDID (check)
4968 * * Non zero Max_TMDS_Char_Rate filed in HF-VSDB (let's check)
4969 * * SCDC support available (let's check)
4970 * Lets check it out.
4971 */
4972
4973 if (hf_vsdb[5]) {
4974 /* max clock is 5000 KHz times block value */
4975 u32 max_tmds_clock = hf_vsdb[5] * 5000;
4976 struct drm_scdc *scdc = &hdmi->scdc;
4977
4978 if (max_tmds_clock > 340000) {
4979 display->max_tmds_clock = max_tmds_clock;
4980 DRM_DEBUG_KMS("HF-VSDB: max TMDS clock %d kHz\n",
4981 display->max_tmds_clock);
4982 }
4983
4984 if (scdc->supported) {
4985 scdc->scrambling.supported = true;
4986
Thierry Redingdbe2d2b2019-12-06 14:53:35 +01004987 /* Few sinks support scrambling for clocks < 340M */
Shashank Sharma62c58af2017-03-13 16:54:02 +05304988 if ((hf_vsdb[6] & 0x8))
4989 scdc->scrambling.low_rates = true;
4990 }
4991 }
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05304992
Swati Sharma4499d482020-12-18 16:07:10 +05304993 if (hf_vsdb[7]) {
4994 u8 max_frl_rate;
Ankit Nautiyal76ee7b92020-12-18 16:07:11 +05304995 u8 dsc_max_frl_rate;
4996 u8 dsc_max_slices;
4997 struct drm_hdmi_dsc_cap *hdmi_dsc = &hdmi->dsc_cap;
Swati Sharma4499d482020-12-18 16:07:10 +05304998
4999 DRM_DEBUG_KMS("hdmi_21 sink detected. parsing edid\n");
5000 max_frl_rate = (hf_vsdb[7] & DRM_EDID_MAX_FRL_RATE_MASK) >> 4;
5001 drm_get_max_frl_rate(max_frl_rate, &hdmi->max_lanes,
5002 &hdmi->max_frl_rate_per_lane);
Ankit Nautiyal76ee7b92020-12-18 16:07:11 +05305003 hdmi_dsc->v_1p2 = hf_vsdb[11] & DRM_EDID_DSC_1P2;
5004
5005 if (hdmi_dsc->v_1p2) {
5006 hdmi_dsc->native_420 = hf_vsdb[11] & DRM_EDID_DSC_NATIVE_420;
5007 hdmi_dsc->all_bpp = hf_vsdb[11] & DRM_EDID_DSC_ALL_BPP;
5008
5009 if (hf_vsdb[11] & DRM_EDID_DSC_16BPC)
5010 hdmi_dsc->bpc_supported = 16;
5011 else if (hf_vsdb[11] & DRM_EDID_DSC_12BPC)
5012 hdmi_dsc->bpc_supported = 12;
5013 else if (hf_vsdb[11] & DRM_EDID_DSC_10BPC)
5014 hdmi_dsc->bpc_supported = 10;
5015 else
5016 hdmi_dsc->bpc_supported = 0;
5017
5018 dsc_max_frl_rate = (hf_vsdb[12] & DRM_EDID_DSC_MAX_FRL_RATE_MASK) >> 4;
5019 drm_get_max_frl_rate(dsc_max_frl_rate, &hdmi_dsc->max_lanes,
5020 &hdmi_dsc->max_frl_rate_per_lane);
5021 hdmi_dsc->total_chunk_kbytes = hf_vsdb[13] & DRM_EDID_DSC_TOTAL_CHUNK_KBYTES;
5022
5023 dsc_max_slices = hf_vsdb[12] & DRM_EDID_DSC_MAX_SLICES;
5024 switch (dsc_max_slices) {
5025 case 1:
5026 hdmi_dsc->max_slices = 1;
5027 hdmi_dsc->clk_per_slice = 340;
5028 break;
5029 case 2:
5030 hdmi_dsc->max_slices = 2;
5031 hdmi_dsc->clk_per_slice = 340;
5032 break;
5033 case 3:
5034 hdmi_dsc->max_slices = 4;
5035 hdmi_dsc->clk_per_slice = 340;
5036 break;
5037 case 4:
5038 hdmi_dsc->max_slices = 8;
5039 hdmi_dsc->clk_per_slice = 340;
5040 break;
5041 case 5:
5042 hdmi_dsc->max_slices = 8;
5043 hdmi_dsc->clk_per_slice = 400;
5044 break;
5045 case 6:
5046 hdmi_dsc->max_slices = 12;
5047 hdmi_dsc->clk_per_slice = 400;
5048 break;
5049 case 7:
5050 hdmi_dsc->max_slices = 16;
5051 hdmi_dsc->clk_per_slice = 400;
5052 break;
5053 case 0:
5054 default:
5055 hdmi_dsc->max_slices = 0;
5056 hdmi_dsc->clk_per_slice = 0;
5057 }
5058 }
Swati Sharma4499d482020-12-18 16:07:10 +05305059 }
5060
Shashank Sharmae6a9a2c2017-07-13 21:03:13 +05305061 drm_parse_ycbcr420_deep_color_info(connector, hf_vsdb);
Shashank Sharmaafa1c762017-03-13 16:54:01 +05305062}
5063
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005064static void drm_parse_hdmi_deep_color_info(struct drm_connector *connector,
5065 const u8 *hdmi)
Mario Kleinerd0c94692014-03-27 19:59:39 +01005066{
Ville Syrjälä18267502016-09-28 16:51:38 +03005067 struct drm_display_info *info = &connector->display_info;
Mario Kleinerd0c94692014-03-27 19:59:39 +01005068 unsigned int dc_bpc = 0;
5069
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005070 /* HDMI supports at least 8 bpc */
5071 info->bpc = 8;
5072
5073 if (cea_db_payload_len(hdmi) < 6)
5074 return;
5075
5076 if (hdmi[6] & DRM_EDID_HDMI_DC_30) {
5077 dc_bpc = 10;
5078 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_30;
5079 DRM_DEBUG("%s: HDMI sink does deep color 30.\n",
5080 connector->name);
5081 }
5082
5083 if (hdmi[6] & DRM_EDID_HDMI_DC_36) {
5084 dc_bpc = 12;
5085 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_36;
5086 DRM_DEBUG("%s: HDMI sink does deep color 36.\n",
5087 connector->name);
5088 }
5089
5090 if (hdmi[6] & DRM_EDID_HDMI_DC_48) {
5091 dc_bpc = 16;
5092 info->edid_hdmi_dc_modes |= DRM_EDID_HDMI_DC_48;
5093 DRM_DEBUG("%s: HDMI sink does deep color 48.\n",
5094 connector->name);
5095 }
5096
5097 if (dc_bpc == 0) {
5098 DRM_DEBUG("%s: No deep color support on this HDMI sink.\n",
5099 connector->name);
5100 return;
5101 }
5102
5103 DRM_DEBUG("%s: Assigning HDMI sink color depth as %d bpc.\n",
5104 connector->name, dc_bpc);
5105 info->bpc = dc_bpc;
5106
5107 /*
5108 * Deep color support mandates RGB444 support for all video
5109 * modes and forbids YCRCB422 support for all video modes per
5110 * HDMI 1.3 spec.
5111 */
5112 info->color_formats = DRM_COLOR_FORMAT_RGB444;
5113
5114 /* YCRCB444 is optional according to spec. */
5115 if (hdmi[6] & DRM_EDID_HDMI_DC_Y444) {
5116 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
5117 DRM_DEBUG("%s: HDMI sink does YCRCB444 in deep color.\n",
5118 connector->name);
5119 }
5120
5121 /*
5122 * Spec says that if any deep color mode is supported at all,
5123 * then deep color 36 bit must be supported.
5124 */
5125 if (!(hdmi[6] & DRM_EDID_HDMI_DC_36)) {
5126 DRM_DEBUG("%s: HDMI sink should do DC_36, but does not!\n",
5127 connector->name);
5128 }
5129}
5130
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03005131static void
5132drm_parse_hdmi_vsdb_video(struct drm_connector *connector, const u8 *db)
5133{
5134 struct drm_display_info *info = &connector->display_info;
5135 u8 len = cea_db_payload_len(db);
5136
Laurent Pincharta92d0832020-02-26 13:24:23 +02005137 info->is_hdmi = true;
5138
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03005139 if (len >= 6)
5140 info->dvi_dual = db[6] & 1;
5141 if (len >= 7)
5142 info->max_tmds_clock = db[7] * 5000;
5143
5144 DRM_DEBUG_KMS("HDMI: DVI dual %d, "
5145 "max TMDS clock %d kHz\n",
5146 info->dvi_dual,
5147 info->max_tmds_clock);
5148
5149 drm_parse_hdmi_deep_color_info(connector, db);
5150}
5151
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005152static void drm_parse_cea_ext(struct drm_connector *connector,
Keith Packard170178f2017-12-13 00:44:26 -08005153 const struct edid *edid)
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005154{
5155 struct drm_display_info *info = &connector->display_info;
5156 const u8 *edid_ext;
5157 int i, start, end;
5158
Mario Kleinerd0c94692014-03-27 19:59:39 +01005159 edid_ext = drm_find_cea_extension(edid);
5160 if (!edid_ext)
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005161 return;
Mario Kleinerd0c94692014-03-27 19:59:39 +01005162
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005163 info->cea_rev = edid_ext[1];
Mario Kleinerd0c94692014-03-27 19:59:39 +01005164
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005165 /* The existence of a CEA block should imply RGB support */
5166 info->color_formats = DRM_COLOR_FORMAT_RGB444;
5167 if (edid_ext[3] & EDID_CEA_YCRCB444)
5168 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
5169 if (edid_ext[3] & EDID_CEA_YCRCB422)
5170 info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
Mario Kleinerd0c94692014-03-27 19:59:39 +01005171
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005172 if (cea_db_offsets(edid_ext, &start, &end))
5173 return;
Mario Kleinerd0c94692014-03-27 19:59:39 +01005174
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005175 for_each_cea_db(edid_ext, i, start, end) {
5176 const u8 *db = &edid_ext[i];
Mario Kleinerd0c94692014-03-27 19:59:39 +01005177
Ville Syrjälä23ebf8b2016-09-28 16:51:41 +03005178 if (cea_db_is_hdmi_vsdb(db))
5179 drm_parse_hdmi_vsdb_video(connector, db);
Shashank Sharmaafa1c762017-03-13 16:54:01 +05305180 if (cea_db_is_hdmi_forum_vsdb(db))
5181 drm_parse_hdmi_forum_vsdb(connector, db);
Shashank Sharma832d4f22017-07-14 16:03:46 +05305182 if (cea_db_is_y420cmdb(db))
5183 drm_parse_y420cmdb_bitmap(connector, db);
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005184 if (cea_db_is_vcdb(db))
5185 drm_parse_vcdb(connector, db);
Uma Shankare85959d2019-05-16 19:40:08 +05305186 if (cea_db_is_hdmi_hdr_metadata_block(db))
5187 drm_parse_hdr_metadata_block(connector, db);
Mario Kleinerd0c94692014-03-27 19:59:39 +01005188 }
Mario Kleinerd0c94692014-03-27 19:59:39 +01005189}
5190
Manasi Navarea1d11d12020-03-10 16:16:51 -07005191static
5192void get_monitor_range(struct detailed_timing *timing,
5193 void *info_monitor_range)
5194{
5195 struct drm_monitor_range_info *monitor_range = info_monitor_range;
5196 const struct detailed_non_pixel *data = &timing->data.other_data;
5197 const struct detailed_data_monitor_range *range = &data->data.range;
5198
5199 if (!is_display_descriptor((const u8 *)timing, EDID_DETAIL_MONITOR_RANGE))
5200 return;
5201
5202 /*
5203 * Check for flag range limits only. If flag == 1 then
5204 * no additional timing information provided.
5205 * Default GTF, GTF Secondary curve and CVT are not
5206 * supported
5207 */
5208 if (range->flags != DRM_EDID_RANGE_LIMITS_ONLY_FLAG)
5209 return;
5210
5211 monitor_range->min_vfreq = range->min_vfreq;
5212 monitor_range->max_vfreq = range->max_vfreq;
5213}
5214
5215static
5216void drm_get_monitor_range(struct drm_connector *connector,
5217 const struct edid *edid)
5218{
5219 struct drm_display_info *info = &connector->display_info;
5220
5221 if (!version_greater(edid, 1, 1))
5222 return;
5223
5224 drm_for_each_detailed_block((u8 *)edid, get_monitor_range,
5225 &info->monitor_range);
5226
5227 DRM_DEBUG_KMS("Supported Monitor Refresh rate range is %d Hz - %d Hz\n",
5228 info->monitor_range.min_vfreq,
5229 info->monitor_range.max_vfreq);
5230}
5231
Jani Nikula18a9cbb2021-08-31 17:17:33 +03005232static void drm_parse_vesa_mso_data(struct drm_connector *connector,
5233 const struct displayid_block *block)
5234{
5235 struct displayid_vesa_vendor_specific_block *vesa =
5236 (struct displayid_vesa_vendor_specific_block *)block;
5237 struct drm_display_info *info = &connector->display_info;
5238
5239 if (block->num_bytes < 3) {
5240 drm_dbg_kms(connector->dev, "Unexpected vendor block size %u\n",
5241 block->num_bytes);
5242 return;
5243 }
5244
5245 if (oui(vesa->oui[0], vesa->oui[1], vesa->oui[2]) != VESA_IEEE_OUI)
5246 return;
5247
5248 if (sizeof(*vesa) != sizeof(*block) + block->num_bytes) {
5249 drm_dbg_kms(connector->dev, "Unexpected VESA vendor block size\n");
5250 return;
5251 }
5252
5253 switch (FIELD_GET(DISPLAYID_VESA_MSO_MODE, vesa->mso)) {
5254 default:
5255 drm_dbg_kms(connector->dev, "Reserved MSO mode value\n");
5256 fallthrough;
5257 case 0:
5258 info->mso_stream_count = 0;
5259 break;
5260 case 1:
5261 info->mso_stream_count = 2; /* 2 or 4 links */
5262 break;
5263 case 2:
5264 info->mso_stream_count = 4; /* 4 links */
5265 break;
5266 }
5267
5268 if (!info->mso_stream_count) {
5269 info->mso_pixel_overlap = 0;
5270 return;
5271 }
5272
5273 info->mso_pixel_overlap = FIELD_GET(DISPLAYID_VESA_MSO_OVERLAP, vesa->mso);
5274 if (info->mso_pixel_overlap > 8) {
5275 drm_dbg_kms(connector->dev, "Reserved MSO pixel overlap value %u\n",
5276 info->mso_pixel_overlap);
5277 info->mso_pixel_overlap = 8;
5278 }
5279
5280 drm_dbg_kms(connector->dev, "MSO stream count %u, pixel overlap %u\n",
5281 info->mso_stream_count, info->mso_pixel_overlap);
5282}
5283
5284static void drm_update_mso(struct drm_connector *connector, const struct edid *edid)
5285{
5286 const struct displayid_block *block;
5287 struct displayid_iter iter;
5288
5289 displayid_iter_edid_begin(edid, &iter);
5290 displayid_iter_for_each(block, &iter) {
5291 if (block->tag == DATA_BLOCK_2_VENDOR_SPECIFIC)
5292 drm_parse_vesa_mso_data(connector, block);
5293 }
5294 displayid_iter_end(&iter);
5295}
5296
Keith Packard170178f2017-12-13 00:44:26 -08005297/* A connector has no EDID information, so we've got no EDID to compute quirks from. Reset
5298 * all of the values which would have been set from EDID
5299 */
5300void
5301drm_reset_display_info(struct drm_connector *connector)
Jesse Barnes3b112282011-04-15 12:49:23 -07005302{
Ville Syrjälä18267502016-09-28 16:51:38 +03005303 struct drm_display_info *info = &connector->display_info;
Jesse Barnesebec9a7b2011-08-03 09:22:54 -07005304
Keith Packard170178f2017-12-13 00:44:26 -08005305 info->width_mm = 0;
5306 info->height_mm = 0;
5307
5308 info->bpc = 0;
5309 info->color_formats = 0;
5310 info->cea_rev = 0;
5311 info->max_tmds_clock = 0;
5312 info->dvi_dual = false;
Laurent Pincharta92d0832020-02-26 13:24:23 +02005313 info->is_hdmi = false;
Keith Packard170178f2017-12-13 00:44:26 -08005314 info->has_hdmi_infoframe = false;
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005315 info->rgb_quant_range_selectable = false;
Ville Syrjälä1f6b8ee2018-04-24 16:02:50 +03005316 memset(&info->hdmi, 0, sizeof(info->hdmi));
Keith Packard170178f2017-12-13 00:44:26 -08005317
5318 info->non_desktop = 0;
Manasi Navarea1d11d12020-03-10 16:16:51 -07005319 memset(&info->monitor_range, 0, sizeof(info->monitor_range));
Jani Nikula18a9cbb2021-08-31 17:17:33 +03005320
5321 info->mso_stream_count = 0;
5322 info->mso_pixel_overlap = 0;
Keith Packard170178f2017-12-13 00:44:26 -08005323}
Keith Packard170178f2017-12-13 00:44:26 -08005324
5325u32 drm_add_display_info(struct drm_connector *connector, const struct edid *edid)
5326{
5327 struct drm_display_info *info = &connector->display_info;
5328
5329 u32 quirks = edid_get_quirks(edid);
5330
Ville Syrjälä1f6b8ee2018-04-24 16:02:50 +03005331 drm_reset_display_info(connector);
5332
Jesse Barnes3b112282011-04-15 12:49:23 -07005333 info->width_mm = edid->width_cm * 10;
5334 info->height_mm = edid->height_cm * 10;
5335
Dave Airlie66660d42017-10-16 05:08:09 +01005336 info->non_desktop = !!(quirks & EDID_QUIRK_NON_DESKTOP);
5337
Manasi Navarea1d11d12020-03-10 16:16:51 -07005338 drm_get_monitor_range(connector, edid);
5339
Keith Packard170178f2017-12-13 00:44:26 -08005340 DRM_DEBUG_KMS("non_desktop set to %d\n", info->non_desktop);
5341
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005342 if (edid->revision < 3)
Keith Packard170178f2017-12-13 00:44:26 -08005343 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005344
5345 if (!(edid->input & DRM_EDID_INPUT_DIGITAL))
Keith Packard170178f2017-12-13 00:44:26 -08005346 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005347
Ville Syrjälä1cea1462016-09-28 16:51:39 +03005348 drm_parse_cea_ext(connector, edid);
Mario Kleinerd0c94692014-03-27 19:59:39 +01005349
Mario Kleiner210a0212016-07-06 12:05:48 +02005350 /*
5351 * Digital sink with "DFP 1.x compliant TMDS" according to EDID 1.3?
5352 *
5353 * For such displays, the DFP spec 1.0, section 3.10 "EDID support"
5354 * tells us to assume 8 bpc color depth if the EDID doesn't have
5355 * extensions which tell otherwise.
5356 */
Ville Syrjälä3bde4492019-05-29 14:02:04 +03005357 if (info->bpc == 0 && edid->revision == 3 &&
5358 edid->input & DRM_EDID_DIGITAL_DFP_1_X) {
Mario Kleiner210a0212016-07-06 12:05:48 +02005359 info->bpc = 8;
5360 DRM_DEBUG("%s: Assigning DFP sink color depth as %d bpc.\n",
5361 connector->name, info->bpc);
5362 }
5363
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005364 /* Only defined for 1.4 with digital displays */
5365 if (edid->revision < 4)
Keith Packard170178f2017-12-13 00:44:26 -08005366 return quirks;
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005367
Jesse Barnes3b112282011-04-15 12:49:23 -07005368 switch (edid->input & DRM_EDID_DIGITAL_DEPTH_MASK) {
5369 case DRM_EDID_DIGITAL_DEPTH_6:
5370 info->bpc = 6;
5371 break;
5372 case DRM_EDID_DIGITAL_DEPTH_8:
5373 info->bpc = 8;
5374 break;
5375 case DRM_EDID_DIGITAL_DEPTH_10:
5376 info->bpc = 10;
5377 break;
5378 case DRM_EDID_DIGITAL_DEPTH_12:
5379 info->bpc = 12;
5380 break;
5381 case DRM_EDID_DIGITAL_DEPTH_14:
5382 info->bpc = 14;
5383 break;
5384 case DRM_EDID_DIGITAL_DEPTH_16:
5385 info->bpc = 16;
5386 break;
5387 case DRM_EDID_DIGITAL_DEPTH_UNDEF:
5388 default:
5389 info->bpc = 0;
5390 break;
5391 }
Jesse Barnesda05a5a72011-04-15 13:48:57 -07005392
Mario Kleinerd0c94692014-03-27 19:59:39 +01005393 DRM_DEBUG("%s: Assigning EDID-1.4 digital sink color depth as %d bpc.\n",
Jani Nikula25933822014-06-03 14:56:20 +03005394 connector->name, info->bpc);
Mario Kleinerd0c94692014-03-27 19:59:39 +01005395
Lars-Peter Clausena988bc72012-04-16 15:16:19 +02005396 info->color_formats |= DRM_COLOR_FORMAT_RGB444;
Lars-Peter Clausenee588082012-04-16 15:16:18 +02005397 if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB444)
5398 info->color_formats |= DRM_COLOR_FORMAT_YCRCB444;
5399 if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB422)
5400 info->color_formats |= DRM_COLOR_FORMAT_YCRCB422;
Jani Nikula18a9cbb2021-08-31 17:17:33 +03005401
5402 drm_update_mso(connector, edid);
5403
Keith Packard170178f2017-12-13 00:44:26 -08005404 return quirks;
Jesse Barnes3b112282011-04-15 12:49:23 -07005405}
5406
Dave Airliea39ed682016-05-02 08:35:05 +10005407static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *dev,
5408 struct displayid_detailed_timings_1 *timings)
5409{
5410 struct drm_display_mode *mode;
5411 unsigned pixel_clock = (timings->pixel_clock[0] |
5412 (timings->pixel_clock[1] << 8) |
Ville Syrjälä6292b8e2020-04-23 18:17:43 +03005413 (timings->pixel_clock[2] << 16)) + 1;
Dave Airliea39ed682016-05-02 08:35:05 +10005414 unsigned hactive = (timings->hactive[0] | timings->hactive[1] << 8) + 1;
5415 unsigned hblank = (timings->hblank[0] | timings->hblank[1] << 8) + 1;
5416 unsigned hsync = (timings->hsync[0] | (timings->hsync[1] & 0x7f) << 8) + 1;
5417 unsigned hsync_width = (timings->hsw[0] | timings->hsw[1] << 8) + 1;
5418 unsigned vactive = (timings->vactive[0] | timings->vactive[1] << 8) + 1;
5419 unsigned vblank = (timings->vblank[0] | timings->vblank[1] << 8) + 1;
5420 unsigned vsync = (timings->vsync[0] | (timings->vsync[1] & 0x7f) << 8) + 1;
5421 unsigned vsync_width = (timings->vsw[0] | timings->vsw[1] << 8) + 1;
5422 bool hsync_positive = (timings->hsync[1] >> 7) & 0x1;
5423 bool vsync_positive = (timings->vsync[1] >> 7) & 0x1;
Suraj Upadhyay948de8422020-07-02 18:53:32 +05305424
Dave Airliea39ed682016-05-02 08:35:05 +10005425 mode = drm_mode_create(dev);
5426 if (!mode)
5427 return NULL;
5428
5429 mode->clock = pixel_clock * 10;
5430 mode->hdisplay = hactive;
5431 mode->hsync_start = mode->hdisplay + hsync;
5432 mode->hsync_end = mode->hsync_start + hsync_width;
5433 mode->htotal = mode->hdisplay + hblank;
5434
5435 mode->vdisplay = vactive;
5436 mode->vsync_start = mode->vdisplay + vsync;
5437 mode->vsync_end = mode->vsync_start + vsync_width;
5438 mode->vtotal = mode->vdisplay + vblank;
5439
5440 mode->flags = 0;
5441 mode->flags |= hsync_positive ? DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
5442 mode->flags |= vsync_positive ? DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
5443 mode->type = DRM_MODE_TYPE_DRIVER;
5444
5445 if (timings->flags & 0x80)
5446 mode->type |= DRM_MODE_TYPE_PREFERRED;
Dave Airliea39ed682016-05-02 08:35:05 +10005447 drm_mode_set_name(mode);
5448
5449 return mode;
5450}
5451
5452static int add_displayid_detailed_1_modes(struct drm_connector *connector,
Jani Nikula43d16d82021-03-29 16:37:15 +03005453 const struct displayid_block *block)
Dave Airliea39ed682016-05-02 08:35:05 +10005454{
5455 struct displayid_detailed_timing_block *det = (struct displayid_detailed_timing_block *)block;
5456 int i;
5457 int num_timings;
5458 struct drm_display_mode *newmode;
5459 int num_modes = 0;
5460 /* blocks must be multiple of 20 bytes length */
5461 if (block->num_bytes % 20)
5462 return 0;
5463
5464 num_timings = block->num_bytes / 20;
5465 for (i = 0; i < num_timings; i++) {
5466 struct displayid_detailed_timings_1 *timings = &det->timings[i];
5467
5468 newmode = drm_mode_displayid_detailed(connector->dev, timings);
5469 if (!newmode)
5470 continue;
5471
5472 drm_mode_probed_add(connector, newmode);
5473 num_modes++;
5474 }
5475 return num_modes;
5476}
5477
5478static int add_displayid_detailed_modes(struct drm_connector *connector,
5479 struct edid *edid)
5480{
Jani Nikula43d16d82021-03-29 16:37:15 +03005481 const struct displayid_block *block;
Jani Nikula5ef88dc2021-03-29 16:37:18 +03005482 struct displayid_iter iter;
Dave Airliea39ed682016-05-02 08:35:05 +10005483 int num_modes = 0;
5484
Jani Nikula5ef88dc2021-03-29 16:37:18 +03005485 displayid_iter_edid_begin(edid, &iter);
5486 displayid_iter_for_each(block, &iter) {
5487 if (block->tag == DATA_BLOCK_TYPE_1_DETAILED_TIMING)
5488 num_modes += add_displayid_detailed_1_modes(connector, block);
Dave Airliea39ed682016-05-02 08:35:05 +10005489 }
Jani Nikula5ef88dc2021-03-29 16:37:18 +03005490 displayid_iter_end(&iter);
Ville Syrjälä7f261af2020-05-27 16:03:09 +03005491
Dave Airliea39ed682016-05-02 08:35:05 +10005492 return num_modes;
5493}
5494
Jesse Barnes3b112282011-04-15 12:49:23 -07005495/**
Dave Airlief453ba02008-11-07 14:05:41 -08005496 * drm_add_edid_modes - add modes from EDID data, if available
5497 * @connector: connector we're probing
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005498 * @edid: EDID data
Dave Airlief453ba02008-11-07 14:05:41 -08005499 *
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +02005500 * Add the specified modes to the connector's mode list. Also fills out the
Jani Nikulac945b8c2017-11-01 16:21:01 +02005501 * &drm_display_info structure and ELD in @connector with any information which
5502 * can be derived from the edid.
Dave Airlief453ba02008-11-07 14:05:41 -08005503 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005504 * Return: The number of modes added or 0 if we couldn't find any.
Dave Airlief453ba02008-11-07 14:05:41 -08005505 */
5506int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
5507{
5508 int num_modes = 0;
5509 u32 quirks;
5510
5511 if (edid == NULL) {
Jani Nikulac945b8c2017-11-01 16:21:01 +02005512 clear_eld(connector);
Dave Airlief453ba02008-11-07 14:05:41 -08005513 return 0;
5514 }
Alex Deucher3c537882010-02-05 04:21:19 -05005515 if (!drm_edid_is_valid(edid)) {
Jani Nikulac945b8c2017-11-01 16:21:01 +02005516 clear_eld(connector);
Suraj Upadhyay6d45fff2020-07-18 20:39:55 +05305517 drm_warn(connector->dev, "%s: EDID invalid.\n",
Jani Nikula25933822014-06-03 14:56:20 +03005518 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08005519 return 0;
5520 }
5521
Jani Nikulac945b8c2017-11-01 16:21:01 +02005522 drm_edid_to_eld(connector, edid);
5523
Adam Jacksonc867df72010-03-29 21:43:21 +00005524 /*
Shashank Sharma0f0f8702017-07-13 21:03:09 +05305525 * CEA-861-F adds ycbcr capability map block, for HDMI 2.0 sinks.
5526 * To avoid multiple parsing of same block, lets parse that map
5527 * from sink info, before parsing CEA modes.
5528 */
Keith Packard170178f2017-12-13 00:44:26 -08005529 quirks = drm_add_display_info(connector, edid);
Shashank Sharma0f0f8702017-07-13 21:03:09 +05305530
5531 /*
Adam Jacksonc867df72010-03-29 21:43:21 +00005532 * EDID spec says modes should be preferred in this order:
5533 * - preferred detailed mode
5534 * - other detailed modes from base block
5535 * - detailed modes from extension blocks
5536 * - CVT 3-byte code modes
5537 * - standard timing codes
5538 * - established timing codes
5539 * - modes inferred from GTF or CVT range information
5540 *
Adam Jackson13931572010-08-03 14:38:19 -04005541 * We get this pretty much right.
Adam Jacksonc867df72010-03-29 21:43:21 +00005542 *
5543 * XXX order for additional mode types in extension blocks?
5544 */
Adam Jackson13931572010-08-03 14:38:19 -04005545 num_modes += add_detailed_modes(connector, edid, quirks);
5546 num_modes += add_cvt_modes(connector, edid);
Adam Jacksonc867df72010-03-29 21:43:21 +00005547 num_modes += add_standard_modes(connector, edid);
5548 num_modes += add_established_modes(connector, edid);
Christian Schmidt54ac76f2011-12-19 14:53:16 +00005549 num_modes += add_cea_modes(connector, edid);
Ville Syrjäläe6e79202013-05-31 15:23:41 +03005550 num_modes += add_alternate_cea_modes(connector, edid);
Dave Airliea39ed682016-05-02 08:35:05 +10005551 num_modes += add_displayid_detailed_modes(connector, edid);
Ville Syrjälä4d53dc02015-05-08 17:45:07 +03005552 if (edid->features & DRM_EDID_FEATURE_DEFAULT_GTF)
5553 num_modes += add_inferred_modes(connector, edid);
Dave Airlief453ba02008-11-07 14:05:41 -08005554
5555 if (quirks & (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
5556 edid_fixup_preferred(connector, quirks);
5557
Mario Kleinere10aec62016-07-06 12:05:44 +02005558 if (quirks & EDID_QUIRK_FORCE_6BPC)
5559 connector->display_info.bpc = 6;
5560
Rafał Miłecki49d45a312013-12-07 13:22:42 +01005561 if (quirks & EDID_QUIRK_FORCE_8BPC)
5562 connector->display_info.bpc = 8;
5563
Mario Kleinere345da82017-04-21 17:05:08 +02005564 if (quirks & EDID_QUIRK_FORCE_10BPC)
5565 connector->display_info.bpc = 10;
5566
Mario Kleinerbc5b9642014-05-23 21:40:55 +02005567 if (quirks & EDID_QUIRK_FORCE_12BPC)
5568 connector->display_info.bpc = 12;
5569
Dave Airlief453ba02008-11-07 14:05:41 -08005570 return num_modes;
5571}
5572EXPORT_SYMBOL(drm_add_edid_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005573
5574/**
5575 * drm_add_modes_noedid - add modes for the connectors without EDID
5576 * @connector: connector we're probing
5577 * @hdisplay: the horizontal display limit
5578 * @vdisplay: the vertical display limit
5579 *
5580 * Add the specified modes to the connector's mode list. Only when the
5581 * hdisplay/vdisplay is not beyond the given limit, it will be added.
5582 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005583 * Return: The number of modes added or 0 if we couldn't find any.
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005584 */
5585int drm_add_modes_noedid(struct drm_connector *connector,
5586 int hdisplay, int vdisplay)
5587{
5588 int i, count, num_modes = 0;
Chris Wilsonb1f559e2011-01-26 09:49:47 +00005589 struct drm_display_mode *mode;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005590 struct drm_device *dev = connector->dev;
5591
Daniel Vetterfbb40b22015-08-10 11:55:37 +02005592 count = ARRAY_SIZE(drm_dmt_modes);
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005593 if (hdisplay < 0)
5594 hdisplay = 0;
5595 if (vdisplay < 0)
5596 vdisplay = 0;
5597
5598 for (i = 0; i < count; i++) {
Chris Wilsonb1f559e2011-01-26 09:49:47 +00005599 const struct drm_display_mode *ptr = &drm_dmt_modes[i];
Suraj Upadhyay948de8422020-07-02 18:53:32 +05305600
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005601 if (hdisplay && vdisplay) {
5602 /*
5603 * Only when two are valid, they will be used to check
5604 * whether the mode should be added to the mode list of
5605 * the connector.
5606 */
5607 if (ptr->hdisplay > hdisplay ||
5608 ptr->vdisplay > vdisplay)
5609 continue;
5610 }
Adam Jacksonf985ded2009-11-23 14:23:04 -05005611 if (drm_mode_vrefresh(ptr) > 61)
5612 continue;
Zhao Yakuif0fda0a2009-09-03 09:33:48 +08005613 mode = drm_mode_duplicate(dev, ptr);
5614 if (mode) {
5615 drm_mode_probed_add(connector, mode);
5616 num_modes++;
5617 }
5618 }
5619 return num_modes;
5620}
5621EXPORT_SYMBOL(drm_add_modes_noedid);
Thierry Reding10a85122012-11-21 15:31:35 +01005622
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005623/**
5624 * drm_set_preferred_mode - Sets the preferred mode of a connector
5625 * @connector: connector whose mode list should be processed
5626 * @hpref: horizontal resolution of preferred mode
5627 * @vpref: vertical resolution of preferred mode
5628 *
5629 * Marks a mode as preferred if it matches the resolution specified by @hpref
5630 * and @vpref.
5631 */
Gerd Hoffmann3cf70da2013-10-11 10:01:08 +02005632void drm_set_preferred_mode(struct drm_connector *connector,
5633 int hpref, int vpref)
5634{
5635 struct drm_display_mode *mode;
5636
5637 list_for_each_entry(mode, &connector->probed_modes, head) {
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005638 if (mode->hdisplay == hpref &&
Daniel Vetter9d3de132014-01-23 16:27:56 +01005639 mode->vdisplay == vpref)
Gerd Hoffmann3cf70da2013-10-11 10:01:08 +02005640 mode->type |= DRM_MODE_TYPE_PREFERRED;
5641 }
5642}
5643EXPORT_SYMBOL(drm_set_preferred_mode);
5644
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005645static bool is_hdmi2_sink(const struct drm_connector *connector)
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005646{
5647 /*
5648 * FIXME: sil-sii8620 doesn't have a connector around when
5649 * we need one, so we have to be prepared for a NULL connector.
5650 */
5651 if (!connector)
5652 return true;
5653
5654 return connector->display_info.hdmi.scdc.supported ||
5655 connector->display_info.color_formats & DRM_COLOR_FORMAT_YCRCB420;
5656}
5657
Uma Shankar2cdbfd62019-05-16 19:40:09 +05305658static inline bool is_eotf_supported(u8 output_eotf, u8 sink_eotf)
5659{
5660 return sink_eotf & BIT(output_eotf);
5661}
5662
5663/**
5664 * drm_hdmi_infoframe_set_hdr_metadata() - fill an HDMI DRM infoframe with
5665 * HDR metadata from userspace
5666 * @frame: HDMI DRM infoframe
Sean Paul6ac98822019-05-23 09:54:58 -04005667 * @conn_state: Connector state containing HDR metadata
Uma Shankar2cdbfd62019-05-16 19:40:09 +05305668 *
5669 * Return: 0 on success or a negative error code on failure.
5670 */
5671int
5672drm_hdmi_infoframe_set_hdr_metadata(struct hdmi_drm_infoframe *frame,
5673 const struct drm_connector_state *conn_state)
5674{
5675 struct drm_connector *connector;
5676 struct hdr_output_metadata *hdr_metadata;
5677 int err;
5678
5679 if (!frame || !conn_state)
5680 return -EINVAL;
5681
5682 connector = conn_state->connector;
5683
5684 if (!conn_state->hdr_output_metadata)
5685 return -EINVAL;
5686
5687 hdr_metadata = conn_state->hdr_output_metadata->data;
5688
5689 if (!hdr_metadata || !connector)
5690 return -EINVAL;
5691
5692 /* Sink EOTF is Bit map while infoframe is absolute values */
5693 if (!is_eotf_supported(hdr_metadata->hdmi_metadata_type1.eotf,
5694 connector->hdr_sink_metadata.hdmi_type1.eotf)) {
5695 DRM_DEBUG_KMS("EOTF Not Supported\n");
5696 return -EINVAL;
5697 }
5698
5699 err = hdmi_drm_infoframe_init(frame);
5700 if (err < 0)
5701 return err;
5702
5703 frame->eotf = hdr_metadata->hdmi_metadata_type1.eotf;
5704 frame->metadata_type = hdr_metadata->hdmi_metadata_type1.metadata_type;
5705
5706 BUILD_BUG_ON(sizeof(frame->display_primaries) !=
5707 sizeof(hdr_metadata->hdmi_metadata_type1.display_primaries));
5708 BUILD_BUG_ON(sizeof(frame->white_point) !=
5709 sizeof(hdr_metadata->hdmi_metadata_type1.white_point));
5710
5711 memcpy(&frame->display_primaries,
5712 &hdr_metadata->hdmi_metadata_type1.display_primaries,
5713 sizeof(frame->display_primaries));
5714
5715 memcpy(&frame->white_point,
5716 &hdr_metadata->hdmi_metadata_type1.white_point,
5717 sizeof(frame->white_point));
5718
5719 frame->max_display_mastering_luminance =
5720 hdr_metadata->hdmi_metadata_type1.max_display_mastering_luminance;
5721 frame->min_display_mastering_luminance =
5722 hdr_metadata->hdmi_metadata_type1.min_display_mastering_luminance;
5723 frame->max_fall = hdr_metadata->hdmi_metadata_type1.max_fall;
5724 frame->max_cll = hdr_metadata->hdmi_metadata_type1.max_cll;
5725
5726 return 0;
5727}
5728EXPORT_SYMBOL(drm_hdmi_infoframe_set_hdr_metadata);
5729
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005730static u8 drm_mode_hdmi_vic(const struct drm_connector *connector,
Ville Syrjälä949561e2019-10-04 17:19:13 +03005731 const struct drm_display_mode *mode)
5732{
5733 bool has_hdmi_infoframe = connector ?
5734 connector->display_info.has_hdmi_infoframe : false;
5735
5736 if (!has_hdmi_infoframe)
5737 return 0;
5738
5739 /* No HDMI VIC when signalling 3D video format */
5740 if (mode->flags & DRM_MODE_FLAG_3D_MASK)
5741 return 0;
5742
5743 return drm_match_hdmi_mode(mode);
5744}
5745
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005746static u8 drm_mode_cea_vic(const struct drm_connector *connector,
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005747 const struct drm_display_mode *mode)
5748{
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005749 u8 vic;
5750
5751 /*
5752 * HDMI spec says if a mode is found in HDMI 1.4b 4K modes
5753 * we should send its VIC in vendor infoframes, else send the
5754 * VIC in AVI infoframes. Lets check if this mode is present in
5755 * HDMI 1.4b 4K modes
5756 */
Ville Syrjälä949561e2019-10-04 17:19:13 +03005757 if (drm_mode_hdmi_vic(connector, mode))
Ville Syrjäläcfd6f8c32019-10-04 17:19:12 +03005758 return 0;
5759
5760 vic = drm_match_cea_mode(mode);
5761
5762 /*
5763 * HDMI 1.4 VIC range: 1 <= VIC <= 64 (CEA-861-D) but
5764 * HDMI 2.0 VIC range: 1 <= VIC <= 107 (CEA-861-F). So we
5765 * have to make sure we dont break HDMI 1.4 sinks.
5766 */
5767 if (!is_hdmi2_sink(connector) && vic > 64)
5768 return 0;
5769
5770 return vic;
5771}
5772
Thierry Reding10a85122012-11-21 15:31:35 +01005773/**
5774 * drm_hdmi_avi_infoframe_from_display_mode() - fill an HDMI AVI infoframe with
5775 * data from a DRM display mode
5776 * @frame: HDMI AVI infoframe
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005777 * @connector: the connector
Thierry Reding10a85122012-11-21 15:31:35 +01005778 * @mode: DRM display mode
5779 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02005780 * Return: 0 on success or a negative error code on failure.
Thierry Reding10a85122012-11-21 15:31:35 +01005781 */
5782int
5783drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005784 const struct drm_connector *connector,
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005785 const struct drm_display_mode *mode)
Thierry Reding10a85122012-11-21 15:31:35 +01005786{
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305787 enum hdmi_picture_aspect picture_aspect;
Wayne Lind2b43472019-11-18 18:18:31 +08005788 u8 vic, hdmi_vic;
Thierry Reding10a85122012-11-21 15:31:35 +01005789
5790 if (!frame || !mode)
5791 return -EINVAL;
5792
Laurent Pinchart5ee0caf2020-02-26 13:24:21 +02005793 hdmi_avi_infoframe_init(frame);
Thierry Reding10a85122012-11-21 15:31:35 +01005794
Damien Lespiaubf02db92013-08-06 20:32:22 +01005795 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
5796 frame->pixel_repeat = 1;
5797
Wayne Lind2b43472019-11-18 18:18:31 +08005798 vic = drm_mode_cea_vic(connector, mode);
5799 hdmi_vic = drm_mode_hdmi_vic(connector, mode);
Shashank Sharma0c1f5282017-07-13 21:03:07 +05305800
Thierry Reding10a85122012-11-21 15:31:35 +01005801 frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE;
Vandana Kannan0967e6a2014-04-01 16:26:59 +05305802
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305803 /*
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03005804 * As some drivers don't support atomic, we can't use connector state.
5805 * So just initialize the frame with default values, just the same way
5806 * as it's done with other properties here.
5807 */
5808 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS;
5809 frame->itc = 0;
5810
5811 /*
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305812 * Populate picture aspect ratio from either
Wayne Lind2b43472019-11-18 18:18:31 +08005813 * user input (if specified) or from the CEA/HDMI mode lists.
Vandana Kannan69ab6d32014-06-05 14:45:29 +05305814 */
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305815 picture_aspect = mode->picture_aspect_ratio;
Wayne Lind2b43472019-11-18 18:18:31 +08005816 if (picture_aspect == HDMI_PICTURE_ASPECT_NONE) {
5817 if (vic)
5818 picture_aspect = drm_get_cea_aspect_ratio(vic);
5819 else if (hdmi_vic)
5820 picture_aspect = drm_get_hdmi_aspect_ratio(hdmi_vic);
5821 }
Vandana Kannan0967e6a2014-04-01 16:26:59 +05305822
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305823 /*
5824 * The infoframe can't convey anything but none, 4:3
5825 * and 16:9, so if the user has asked for anything else
5826 * we can only satisfy it by specifying the right VIC.
5827 */
5828 if (picture_aspect > HDMI_PICTURE_ASPECT_16_9) {
Wayne Lind2b43472019-11-18 18:18:31 +08005829 if (vic) {
5830 if (picture_aspect != drm_get_cea_aspect_ratio(vic))
5831 return -EINVAL;
5832 } else if (hdmi_vic) {
5833 if (picture_aspect != drm_get_hdmi_aspect_ratio(hdmi_vic))
5834 return -EINVAL;
5835 } else {
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305836 return -EINVAL;
Wayne Lind2b43472019-11-18 18:18:31 +08005837 }
5838
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305839 picture_aspect = HDMI_PICTURE_ASPECT_NONE;
5840 }
5841
Wayne Lind2b43472019-11-18 18:18:31 +08005842 frame->video_code = vic;
Ville Syrjäläa9c266c2018-05-08 16:39:39 +05305843 frame->picture_aspect = picture_aspect;
Thierry Reding10a85122012-11-21 15:31:35 +01005844 frame->active_aspect = HDMI_ACTIVE_ASPECT_PICTURE;
Daniel Drake24d018052014-02-27 09:19:30 -06005845 frame->scan_mode = HDMI_SCAN_MODE_UNDERSCAN;
Thierry Reding10a85122012-11-21 15:31:35 +01005846
5847 return 0;
5848}
5849EXPORT_SYMBOL(drm_hdmi_avi_infoframe_from_display_mode);
Lespiau, Damien83dd0002013-08-19 16:59:03 +01005850
Uma Shankar0d68b882019-02-19 22:43:00 +05305851/* HDMI Colorspace Spec Definitions */
5852#define FULL_COLORIMETRY_MASK 0x1FF
5853#define NORMAL_COLORIMETRY_MASK 0x3
5854#define EXTENDED_COLORIMETRY_MASK 0x7
5855#define EXTENDED_ACE_COLORIMETRY_MASK 0xF
5856
5857#define C(x) ((x) << 0)
5858#define EC(x) ((x) << 2)
5859#define ACE(x) ((x) << 5)
5860
5861#define HDMI_COLORIMETRY_NO_DATA 0x0
5862#define HDMI_COLORIMETRY_SMPTE_170M_YCC (C(1) | EC(0) | ACE(0))
5863#define HDMI_COLORIMETRY_BT709_YCC (C(2) | EC(0) | ACE(0))
5864#define HDMI_COLORIMETRY_XVYCC_601 (C(3) | EC(0) | ACE(0))
5865#define HDMI_COLORIMETRY_XVYCC_709 (C(3) | EC(1) | ACE(0))
5866#define HDMI_COLORIMETRY_SYCC_601 (C(3) | EC(2) | ACE(0))
5867#define HDMI_COLORIMETRY_OPYCC_601 (C(3) | EC(3) | ACE(0))
5868#define HDMI_COLORIMETRY_OPRGB (C(3) | EC(4) | ACE(0))
5869#define HDMI_COLORIMETRY_BT2020_CYCC (C(3) | EC(5) | ACE(0))
5870#define HDMI_COLORIMETRY_BT2020_RGB (C(3) | EC(6) | ACE(0))
5871#define HDMI_COLORIMETRY_BT2020_YCC (C(3) | EC(6) | ACE(0))
5872#define HDMI_COLORIMETRY_DCI_P3_RGB_D65 (C(3) | EC(7) | ACE(0))
5873#define HDMI_COLORIMETRY_DCI_P3_RGB_THEATER (C(3) | EC(7) | ACE(1))
5874
5875static const u32 hdmi_colorimetry_val[] = {
5876 [DRM_MODE_COLORIMETRY_NO_DATA] = HDMI_COLORIMETRY_NO_DATA,
5877 [DRM_MODE_COLORIMETRY_SMPTE_170M_YCC] = HDMI_COLORIMETRY_SMPTE_170M_YCC,
5878 [DRM_MODE_COLORIMETRY_BT709_YCC] = HDMI_COLORIMETRY_BT709_YCC,
5879 [DRM_MODE_COLORIMETRY_XVYCC_601] = HDMI_COLORIMETRY_XVYCC_601,
5880 [DRM_MODE_COLORIMETRY_XVYCC_709] = HDMI_COLORIMETRY_XVYCC_709,
5881 [DRM_MODE_COLORIMETRY_SYCC_601] = HDMI_COLORIMETRY_SYCC_601,
5882 [DRM_MODE_COLORIMETRY_OPYCC_601] = HDMI_COLORIMETRY_OPYCC_601,
5883 [DRM_MODE_COLORIMETRY_OPRGB] = HDMI_COLORIMETRY_OPRGB,
5884 [DRM_MODE_COLORIMETRY_BT2020_CYCC] = HDMI_COLORIMETRY_BT2020_CYCC,
5885 [DRM_MODE_COLORIMETRY_BT2020_RGB] = HDMI_COLORIMETRY_BT2020_RGB,
5886 [DRM_MODE_COLORIMETRY_BT2020_YCC] = HDMI_COLORIMETRY_BT2020_YCC,
5887};
5888
5889#undef C
5890#undef EC
5891#undef ACE
5892
5893/**
5894 * drm_hdmi_avi_infoframe_colorspace() - fill the HDMI AVI infoframe
5895 * colorspace information
5896 * @frame: HDMI AVI infoframe
5897 * @conn_state: connector state
5898 */
5899void
5900drm_hdmi_avi_infoframe_colorspace(struct hdmi_avi_infoframe *frame,
5901 const struct drm_connector_state *conn_state)
5902{
5903 u32 colorimetry_val;
5904 u32 colorimetry_index = conn_state->colorspace & FULL_COLORIMETRY_MASK;
5905
5906 if (colorimetry_index >= ARRAY_SIZE(hdmi_colorimetry_val))
5907 colorimetry_val = HDMI_COLORIMETRY_NO_DATA;
5908 else
5909 colorimetry_val = hdmi_colorimetry_val[colorimetry_index];
5910
5911 frame->colorimetry = colorimetry_val & NORMAL_COLORIMETRY_MASK;
5912 /*
5913 * ToDo: Extend it for ACE formats as well. Modify the infoframe
5914 * structure and extend it in drivers/video/hdmi
5915 */
5916 frame->extended_colorimetry = (colorimetry_val >> 2) &
5917 EXTENDED_COLORIMETRY_MASK;
5918}
5919EXPORT_SYMBOL(drm_hdmi_avi_infoframe_colorspace);
5920
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005921/**
5922 * drm_hdmi_avi_infoframe_quant_range() - fill the HDMI AVI infoframe
5923 * quantization range information
5924 * @frame: HDMI AVI infoframe
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005925 * @connector: the connector
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005926 * @mode: DRM display mode
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005927 * @rgb_quant_range: RGB quantization range (Q)
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005928 */
5929void
5930drm_hdmi_avi_infoframe_quant_range(struct hdmi_avi_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03005931 const struct drm_connector *connector,
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005932 const struct drm_display_mode *mode,
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005933 enum hdmi_quantization_range rgb_quant_range)
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005934{
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005935 const struct drm_display_info *info = &connector->display_info;
5936
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005937 /*
5938 * CEA-861:
5939 * "A Source shall not send a non-zero Q value that does not correspond
5940 * to the default RGB Quantization Range for the transmitted Picture
5941 * unless the Sink indicates support for the Q bit in a Video
5942 * Capabilities Data Block."
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005943 *
5944 * HDMI 2.0 recommends sending non-zero Q when it does match the
5945 * default RGB quantization range for the mode, even when QS=0.
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005946 */
Ville Syrjälä1581b2d2019-01-08 19:28:28 +02005947 if (info->rgb_quant_range_selectable ||
Ville Syrjälä779c4c22017-01-11 14:57:24 +02005948 rgb_quant_range == drm_default_rgb_quant_range(mode))
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005949 frame->quantization_range = rgb_quant_range;
5950 else
5951 frame->quantization_range = HDMI_QUANTIZATION_RANGE_DEFAULT;
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005952
5953 /*
5954 * CEA-861-F:
5955 * "When transmitting any RGB colorimetry, the Source should set the
5956 * YQ-field to match the RGB Quantization Range being transmitted
5957 * (e.g., when Limited Range RGB, set YQ=0 or when Full Range RGB,
5958 * set YQ=1) and the Sink shall ignore the YQ-field."
Ville Syrjälä9271c0c2017-11-08 17:25:04 +02005959 *
5960 * Unfortunate certain sinks (eg. VIZ Model 67/E261VA) get confused
5961 * by non-zero YQ when receiving RGB. There doesn't seem to be any
5962 * good way to tell which version of CEA-861 the sink supports, so
5963 * we limit non-zero YQ to HDMI 2.0 sinks only as HDMI 2.0 is based
5964 * on on CEA-861-F.
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005965 */
Ville Syrjälä13d0add2019-01-08 19:28:25 +02005966 if (!is_hdmi2_sink(connector) ||
Ville Syrjälä9271c0c2017-11-08 17:25:04 +02005967 rgb_quant_range == HDMI_QUANTIZATION_RANGE_LIMITED)
Ville Syrjäläfcc8a222017-01-11 14:57:25 +02005968 frame->ycc_quantization_range =
5969 HDMI_YCC_QUANTIZATION_RANGE_LIMITED;
5970 else
5971 frame->ycc_quantization_range =
5972 HDMI_YCC_QUANTIZATION_RANGE_FULL;
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +02005973}
5974EXPORT_SYMBOL(drm_hdmi_avi_infoframe_quant_range);
5975
Ville Syrjälä076d9a52019-10-08 19:48:13 +03005976/**
5977 * drm_hdmi_avi_infoframe_bars() - fill the HDMI AVI infoframe
5978 * bar information
5979 * @frame: HDMI AVI infoframe
5980 * @conn_state: connector state
5981 */
5982void
5983drm_hdmi_avi_infoframe_bars(struct hdmi_avi_infoframe *frame,
5984 const struct drm_connector_state *conn_state)
5985{
5986 frame->right_bar = conn_state->tv.margins.right;
5987 frame->left_bar = conn_state->tv.margins.left;
5988 frame->top_bar = conn_state->tv.margins.top;
5989 frame->bottom_bar = conn_state->tv.margins.bottom;
5990}
5991EXPORT_SYMBOL(drm_hdmi_avi_infoframe_bars);
5992
Damien Lespiau4eed4a02013-09-25 16:45:26 +01005993static enum hdmi_3d_structure
5994s3d_structure_from_display_mode(const struct drm_display_mode *mode)
5995{
5996 u32 layout = mode->flags & DRM_MODE_FLAG_3D_MASK;
5997
5998 switch (layout) {
5999 case DRM_MODE_FLAG_3D_FRAME_PACKING:
6000 return HDMI_3D_STRUCTURE_FRAME_PACKING;
6001 case DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE:
6002 return HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE;
6003 case DRM_MODE_FLAG_3D_LINE_ALTERNATIVE:
6004 return HDMI_3D_STRUCTURE_LINE_ALTERNATIVE;
6005 case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL:
6006 return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL;
6007 case DRM_MODE_FLAG_3D_L_DEPTH:
6008 return HDMI_3D_STRUCTURE_L_DEPTH;
6009 case DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH:
6010 return HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH;
6011 case DRM_MODE_FLAG_3D_TOP_AND_BOTTOM:
6012 return HDMI_3D_STRUCTURE_TOP_AND_BOTTOM;
6013 case DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF:
6014 return HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF;
6015 default:
6016 return HDMI_3D_STRUCTURE_INVALID;
6017 }
6018}
6019
Lespiau, Damien83dd0002013-08-19 16:59:03 +01006020/**
6021 * drm_hdmi_vendor_infoframe_from_display_mode() - fill an HDMI infoframe with
6022 * data from a DRM display mode
6023 * @frame: HDMI vendor infoframe
Ville Syrjäläf1781e92017-11-13 19:04:19 +02006024 * @connector: the connector
Lespiau, Damien83dd0002013-08-19 16:59:03 +01006025 * @mode: DRM display mode
6026 *
6027 * Note that there's is a need to send HDMI vendor infoframes only when using a
6028 * 4k or stereoscopic 3D mode. So when giving any other mode as input this
6029 * function will return -EINVAL, error that can be safely ignored.
6030 *
Thierry Redingdb6cf8332014-04-29 11:44:34 +02006031 * Return: 0 on success or a negative error code on failure.
Lespiau, Damien83dd0002013-08-19 16:59:03 +01006032 */
6033int
6034drm_hdmi_vendor_infoframe_from_display_mode(struct hdmi_vendor_infoframe *frame,
Laurent Pinchart192a3aa2020-05-26 04:14:47 +03006035 const struct drm_connector *connector,
Lespiau, Damien83dd0002013-08-19 16:59:03 +01006036 const struct drm_display_mode *mode)
6037{
Ville Syrjäläf1781e92017-11-13 19:04:19 +02006038 /*
6039 * FIXME: sil-sii8620 doesn't have a connector around when
6040 * we need one, so we have to be prepared for a NULL connector.
6041 */
6042 bool has_hdmi_infoframe = connector ?
6043 connector->display_info.has_hdmi_infoframe : false;
Lespiau, Damien83dd0002013-08-19 16:59:03 +01006044 int err;
Lespiau, Damien83dd0002013-08-19 16:59:03 +01006045
6046 if (!frame || !mode)
6047 return -EINVAL;
6048
Ville Syrjäläf1781e92017-11-13 19:04:19 +02006049 if (!has_hdmi_infoframe)
6050 return -EINVAL;
6051
Ville Syrjälä949561e2019-10-04 17:19:13 +03006052 err = hdmi_vendor_infoframe_init(frame);
6053 if (err < 0)
6054 return err;
Damien Lespiau4eed4a02013-09-25 16:45:26 +01006055
Ville Syrjäläf1781e92017-11-13 19:04:19 +02006056 /*
6057 * Even if it's not absolutely necessary to send the infoframe
6058 * (ie.vic==0 and s3d_struct==0) we will still send it if we
6059 * know that the sink can handle it. This is based on a
6060 * suggestion in HDMI 2.0 Appendix F. Apparently some sinks
Cai Huoqing0ae865e2021-07-30 21:27:29 +08006061 * have trouble realizing that they should switch from 3D to 2D
Ville Syrjäläf1781e92017-11-13 19:04:19 +02006062 * mode if the source simply stops sending the infoframe when
6063 * it wants to switch from 3D to 2D.
6064 */
Ville Syrjälä949561e2019-10-04 17:19:13 +03006065 frame->vic = drm_mode_hdmi_vic(connector, mode);
Ville Syrjäläf1781e92017-11-13 19:04:19 +02006066 frame->s3d_struct = s3d_structure_from_display_mode(mode);
Lespiau, Damien83dd0002013-08-19 16:59:03 +01006067
6068 return 0;
6069}
6070EXPORT_SYMBOL(drm_hdmi_vendor_infoframe_from_display_mode);
Dave Airlie40d9b042014-10-20 16:29:33 +10006071
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006072static void drm_parse_tiled_block(struct drm_connector *connector,
6073 const struct displayid_block *block)
Dave Airlie5e546cd2016-05-03 15:31:12 +10006074{
Ville Syrjälä092c3672020-03-13 18:20:54 +02006075 const struct displayid_tiled_block *tile = (struct displayid_tiled_block *)block;
Dave Airlie5e546cd2016-05-03 15:31:12 +10006076 u16 w, h;
6077 u8 tile_v_loc, tile_h_loc;
6078 u8 num_v_tile, num_h_tile;
6079 struct drm_tile_group *tg;
6080
6081 w = tile->tile_size[0] | tile->tile_size[1] << 8;
6082 h = tile->tile_size[2] | tile->tile_size[3] << 8;
6083
6084 num_v_tile = (tile->topo[0] & 0xf) | (tile->topo[2] & 0x30);
6085 num_h_tile = (tile->topo[0] >> 4) | ((tile->topo[2] >> 2) & 0x30);
6086 tile_v_loc = (tile->topo[1] & 0xf) | ((tile->topo[2] & 0x3) << 4);
6087 tile_h_loc = (tile->topo[1] >> 4) | (((tile->topo[2] >> 2) & 0x3) << 4);
6088
6089 connector->has_tile = true;
6090 if (tile->tile_cap & 0x80)
6091 connector->tile_is_single_monitor = true;
6092
6093 connector->num_h_tile = num_h_tile + 1;
6094 connector->num_v_tile = num_v_tile + 1;
6095 connector->tile_h_loc = tile_h_loc;
6096 connector->tile_v_loc = tile_v_loc;
6097 connector->tile_h_size = w + 1;
6098 connector->tile_v_size = h + 1;
6099
6100 DRM_DEBUG_KMS("tile cap 0x%x\n", tile->tile_cap);
6101 DRM_DEBUG_KMS("tile_size %d x %d\n", w + 1, h + 1);
6102 DRM_DEBUG_KMS("topo num tiles %dx%d, location %dx%d\n",
6103 num_h_tile + 1, num_v_tile + 1, tile_h_loc, tile_v_loc);
6104 DRM_DEBUG_KMS("vend %c%c%c\n", tile->topology_id[0], tile->topology_id[1], tile->topology_id[2]);
6105
6106 tg = drm_mode_get_tile_group(connector->dev, tile->topology_id);
Dave Airlie5e546cd2016-05-03 15:31:12 +10006107 if (!tg)
Dave Airlie5e546cd2016-05-03 15:31:12 +10006108 tg = drm_mode_create_tile_group(connector->dev, tile->topology_id);
Dave Airlie5e546cd2016-05-03 15:31:12 +10006109 if (!tg)
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006110 return;
Dave Airlie5e546cd2016-05-03 15:31:12 +10006111
6112 if (connector->tile_group != tg) {
6113 /* if we haven't got a pointer,
6114 take the reference, drop ref to old tile group */
Ville Syrjälä392f9fc2020-05-27 16:03:10 +03006115 if (connector->tile_group)
Dave Airlie5e546cd2016-05-03 15:31:12 +10006116 drm_mode_put_tile_group(connector->dev, connector->tile_group);
Dave Airlie5e546cd2016-05-03 15:31:12 +10006117 connector->tile_group = tg;
Ville Syrjälä392f9fc2020-05-27 16:03:10 +03006118 } else {
Dave Airlie5e546cd2016-05-03 15:31:12 +10006119 /* if same tile group, then release the ref we just took. */
6120 drm_mode_put_tile_group(connector->dev, tg);
Ville Syrjälä392f9fc2020-05-27 16:03:10 +03006121 }
Dave Airlie5e546cd2016-05-03 15:31:12 +10006122}
6123
Ville Syrjälä092c3672020-03-13 18:20:54 +02006124void drm_update_tile_info(struct drm_connector *connector,
6125 const struct edid *edid)
Dave Airlie40d9b042014-10-20 16:29:33 +10006126{
Jani Nikulabfd4e192021-03-29 16:37:20 +03006127 const struct displayid_block *block;
6128 struct displayid_iter iter;
Ville Syrjälä36881182020-03-13 18:20:48 +02006129
Dave Airlie40d9b042014-10-20 16:29:33 +10006130 connector->has_tile = false;
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006131
Jani Nikulabfd4e192021-03-29 16:37:20 +03006132 displayid_iter_edid_begin(edid, &iter);
6133 displayid_iter_for_each(block, &iter) {
6134 if (block->tag == DATA_BLOCK_TILED_DISPLAY)
6135 drm_parse_tiled_block(connector, block);
Dave Airlie40d9b042014-10-20 16:29:33 +10006136 }
Jani Nikulabfd4e192021-03-29 16:37:20 +03006137 displayid_iter_end(&iter);
Dave Airlie40d9b042014-10-20 16:29:33 +10006138
Ville Syrjälä7f261af2020-05-27 16:03:09 +03006139 if (!connector->has_tile && connector->tile_group) {
Dave Airlie40d9b042014-10-20 16:29:33 +10006140 drm_mode_put_tile_group(connector->dev, connector->tile_group);
6141 connector->tile_group = NULL;
6142 }
Dave Airlie40d9b042014-10-20 16:29:33 +10006143}