xref: /linux/drivers/gpu/drm/i915/display/intel_bios.c (revision f09812b85fa6f41058bcc46e70ac406bf9b0493a)
1 /*
2  * Copyright © 2006 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  *
23  * Authors:
24  *    Eric Anholt <eric@anholt.net>
25  *
26  */
27 
28 #include <linux/debugfs.h>
29 #include <linux/firmware.h>
30 
31 #include <drm/display/drm_dp_helper.h>
32 #include <drm/display/drm_dsc_helper.h>
33 #include <drm/drm_edid.h>
34 #include <drm/drm_fixed.h>
35 #include <drm/drm_print.h>
36 
37 #include "intel_display.h"
38 #include "intel_display_core.h"
39 #include "intel_display_rpm.h"
40 #include "intel_display_types.h"
41 #include "intel_display_utils.h"
42 #include "intel_gmbus.h"
43 #include "intel_rom.h"
44 #include "intel_vdsc.h"
45 
46 #define _INTEL_BIOS_PRIVATE
47 #include "intel_vbt_defs.h"
48 
49 /**
50  * DOC: Video BIOS Table (VBT)
51  *
52  * The Video BIOS Table, or VBT, provides platform and board specific
53  * configuration information to the driver that is not discoverable or available
54  * through other means. The configuration is mostly related to display
55  * hardware. The VBT is available via the ACPI OpRegion or, on older systems, in
56  * the PCI ROM.
57  *
58  * The VBT consists of a VBT Header (defined as &struct vbt_header), a BDB
59  * Header (&struct bdb_header), and a number of BIOS Data Blocks (BDB) that
60  * contain the actual configuration information. The VBT Header, and thus the
61  * VBT, begins with "$VBT" signature. The VBT Header contains the offset of the
62  * BDB Header. The data blocks are concatenated after the BDB Header. The data
63  * blocks have a 1-byte Block ID, 2-byte Block Size, and Block Size bytes of
64  * data. (Block 53, the MIPI Sequence Block is an exception.)
65  *
66  * The driver parses the VBT during load. The relevant information is stored in
67  * driver private data for ease of use, and the actual VBT is not read after
68  * that.
69  */
70 
71 /* Wrapper for VBT child device config */
72 struct intel_bios_encoder_data {
73 	struct intel_display *display;
74 
75 	struct child_device_config child;
76 	struct dsc_compression_parameters_entry *dsc;
77 	struct list_head node;
78 };
79 
80 #define	TARGET_ADDR1	0x70
81 #define	TARGET_ADDR2	0x72
82 
83 /* Get BDB block size given a pointer to Block ID. */
84 static u32 _get_blocksize(const u8 *block_base)
85 {
86 	/* The MIPI Sequence Block v3+ has a separate size field. */
87 	if (*block_base == BDB_MIPI_SEQUENCE && *(block_base + 3) >= 3)
88 		return *((const u32 *)(block_base + 4));
89 	else
90 		return *((const u16 *)(block_base + 1));
91 }
92 
93 /* Get BDB block size give a pointer to data after Block ID and Block Size. */
94 static u32 get_blocksize(const void *block_data)
95 {
96 	return _get_blocksize(block_data - 3);
97 }
98 
99 static const void *
100 find_raw_section(const void *_bdb, enum bdb_block_id section_id)
101 {
102 	const struct bdb_header *bdb = _bdb;
103 	const u8 *base = _bdb;
104 	int index = 0;
105 	u32 total, current_size;
106 	enum bdb_block_id current_id;
107 
108 	/* skip to first section */
109 	index += bdb->header_size;
110 	total = bdb->bdb_size;
111 
112 	/* walk the sections looking for section_id */
113 	while (index + 3 < total) {
114 		current_id = *(base + index);
115 		current_size = _get_blocksize(base + index);
116 		index += 3;
117 
118 		if (index + current_size > total)
119 			return NULL;
120 
121 		if (current_id == section_id)
122 			return base + index;
123 
124 		index += current_size;
125 	}
126 
127 	return NULL;
128 }
129 
130 /*
131  * Offset from the start of BDB to the start of the
132  * block data (just past the block header).
133  */
134 static u32 raw_block_offset(const void *bdb, enum bdb_block_id section_id)
135 {
136 	const void *block;
137 
138 	block = find_raw_section(bdb, section_id);
139 	if (!block)
140 		return 0;
141 
142 	return block - bdb;
143 }
144 
145 struct bdb_block_entry {
146 	struct list_head node;
147 	enum bdb_block_id section_id;
148 	u8 data[];
149 };
150 
151 static const void *
152 bdb_find_section(struct intel_display *display,
153 		 enum bdb_block_id section_id)
154 {
155 	struct bdb_block_entry *entry;
156 
157 	list_for_each_entry(entry, &display->vbt.bdb_blocks, node) {
158 		if (entry->section_id == section_id)
159 			return entry->data + 3;
160 	}
161 
162 	return NULL;
163 }
164 
165 static const struct {
166 	enum bdb_block_id section_id;
167 	size_t min_size;
168 } bdb_blocks[] = {
169 	{ .section_id = BDB_GENERAL_FEATURES,
170 	  .min_size = sizeof(struct bdb_general_features), },
171 	{ .section_id = BDB_GENERAL_DEFINITIONS,
172 	  .min_size = sizeof(struct bdb_general_definitions), },
173 	{ .section_id = BDB_PSR,
174 	  .min_size = sizeof(struct bdb_psr), },
175 	{ .section_id = BDB_DRIVER_FEATURES,
176 	  .min_size = sizeof(struct bdb_driver_features), },
177 	{ .section_id = BDB_SDVO_LVDS_OPTIONS,
178 	  .min_size = sizeof(struct bdb_sdvo_lvds_options), },
179 	{ .section_id = BDB_SDVO_LVDS_DTD,
180 	  .min_size = sizeof(struct bdb_sdvo_lvds_dtd), },
181 	{ .section_id = BDB_EDP,
182 	  .min_size = sizeof(struct bdb_edp), },
183 	{ .section_id = BDB_LFP_OPTIONS,
184 	  .min_size = sizeof(struct bdb_lfp_options), },
185 	/*
186 	 * BDB_LFP_DATA depends on BDB_LFP_DATA_PTRS,
187 	 * so keep the two ordered.
188 	 */
189 	{ .section_id = BDB_LFP_DATA_PTRS,
190 	  .min_size = sizeof(struct bdb_lfp_data_ptrs), },
191 	{ .section_id = BDB_LFP_DATA,
192 	  .min_size = 0, /* special case */ },
193 	{ .section_id = BDB_LFP_BACKLIGHT,
194 	  .min_size = sizeof(struct bdb_lfp_backlight), },
195 	{ .section_id = BDB_LFP_POWER,
196 	  .min_size = sizeof(struct bdb_lfp_power), },
197 	{ .section_id = BDB_MIPI_CONFIG,
198 	  .min_size = sizeof(struct bdb_mipi_config), },
199 	{ .section_id = BDB_MIPI_SEQUENCE,
200 	  .min_size = sizeof(struct bdb_mipi_sequence) },
201 	{ .section_id = BDB_COMPRESSION_PARAMETERS,
202 	  .min_size = sizeof(struct bdb_compression_parameters), },
203 	{ .section_id = BDB_GENERIC_DTD,
204 	  .min_size = sizeof(struct bdb_generic_dtd), },
205 };
206 
207 static size_t lfp_data_min_size(struct intel_display *display)
208 {
209 	const struct bdb_lfp_data_ptrs *ptrs;
210 	size_t size;
211 
212 	ptrs = bdb_find_section(display, BDB_LFP_DATA_PTRS);
213 	if (!ptrs)
214 		return 0;
215 
216 	size = sizeof(struct bdb_lfp_data);
217 	if (ptrs->panel_name.table_size)
218 		size = max(size, ptrs->panel_name.offset +
219 			   sizeof(struct bdb_lfp_data_tail));
220 
221 	return size;
222 }
223 
224 static bool validate_lfp_data_ptrs(const void *bdb,
225 				   const struct bdb_lfp_data_ptrs *ptrs)
226 {
227 	int fp_timing_size, dvo_timing_size, panel_pnp_id_size, panel_name_size;
228 	int data_block_size, lfp_data_size;
229 	const void *data_block;
230 	int i;
231 
232 	data_block = find_raw_section(bdb, BDB_LFP_DATA);
233 	if (!data_block)
234 		return false;
235 
236 	data_block_size = get_blocksize(data_block);
237 	if (data_block_size == 0)
238 		return false;
239 
240 	/* always 3 indicating the presence of fp_timing+dvo_timing+panel_pnp_id */
241 	if (ptrs->num_entries != 3)
242 		return false;
243 
244 	fp_timing_size = ptrs->ptr[0].fp_timing.table_size;
245 	dvo_timing_size = ptrs->ptr[0].dvo_timing.table_size;
246 	panel_pnp_id_size = ptrs->ptr[0].panel_pnp_id.table_size;
247 	panel_name_size = ptrs->panel_name.table_size;
248 
249 	/* fp_timing has variable size */
250 	if (fp_timing_size < 32 ||
251 	    dvo_timing_size != sizeof(struct bdb_edid_dtd) ||
252 	    panel_pnp_id_size != sizeof(struct bdb_edid_pnp_id))
253 		return false;
254 
255 	/* panel_name is not present in old VBTs */
256 	if (panel_name_size != 0 &&
257 	    panel_name_size != sizeof(struct bdb_edid_product_name))
258 		return false;
259 
260 	lfp_data_size = ptrs->ptr[1].fp_timing.offset - ptrs->ptr[0].fp_timing.offset;
261 	if (16 * lfp_data_size > data_block_size)
262 		return false;
263 
264 	/* make sure the table entries have uniform size */
265 	for (i = 1; i < 16; i++) {
266 		if (ptrs->ptr[i].fp_timing.table_size != fp_timing_size ||
267 		    ptrs->ptr[i].dvo_timing.table_size != dvo_timing_size ||
268 		    ptrs->ptr[i].panel_pnp_id.table_size != panel_pnp_id_size)
269 			return false;
270 
271 		if (ptrs->ptr[i].fp_timing.offset - ptrs->ptr[i-1].fp_timing.offset != lfp_data_size ||
272 		    ptrs->ptr[i].dvo_timing.offset - ptrs->ptr[i-1].dvo_timing.offset != lfp_data_size ||
273 		    ptrs->ptr[i].panel_pnp_id.offset - ptrs->ptr[i-1].panel_pnp_id.offset != lfp_data_size)
274 			return false;
275 	}
276 
277 	/*
278 	 * Except for vlv/chv machines all real VBTs seem to have 6
279 	 * unaccounted bytes in the fp_timing table. And it doesn't
280 	 * appear to be a really intentional hole as the fp_timing
281 	 * 0xffff terminator is always within those 6 missing bytes.
282 	 */
283 	if (fp_timing_size + 6 + dvo_timing_size + panel_pnp_id_size == lfp_data_size)
284 		fp_timing_size += 6;
285 
286 	if (fp_timing_size + dvo_timing_size + panel_pnp_id_size != lfp_data_size)
287 		return false;
288 
289 	if (ptrs->ptr[0].fp_timing.offset + fp_timing_size != ptrs->ptr[0].dvo_timing.offset ||
290 	    ptrs->ptr[0].dvo_timing.offset + dvo_timing_size != ptrs->ptr[0].panel_pnp_id.offset ||
291 	    ptrs->ptr[0].panel_pnp_id.offset + panel_pnp_id_size != lfp_data_size)
292 		return false;
293 
294 	/* make sure the tables fit inside the data block */
295 	for (i = 0; i < 16; i++) {
296 		if (ptrs->ptr[i].fp_timing.offset + fp_timing_size > data_block_size ||
297 		    ptrs->ptr[i].dvo_timing.offset + dvo_timing_size > data_block_size ||
298 		    ptrs->ptr[i].panel_pnp_id.offset + panel_pnp_id_size > data_block_size)
299 			return false;
300 	}
301 
302 	if (ptrs->panel_name.offset + 16 * panel_name_size > data_block_size)
303 		return false;
304 
305 	/* make sure fp_timing terminators are present at expected locations */
306 	for (i = 0; i < 16; i++) {
307 		const u16 *t = data_block + ptrs->ptr[i].fp_timing.offset +
308 			fp_timing_size - 2;
309 
310 		if (*t != 0xffff)
311 			return false;
312 	}
313 
314 	return true;
315 }
316 
317 /* make the data table offsets relative to the data block */
318 static bool fixup_lfp_data_ptrs(const void *bdb, void *ptrs_block)
319 {
320 	struct bdb_lfp_data_ptrs *ptrs = ptrs_block;
321 	u32 offset;
322 	int i;
323 
324 	offset = raw_block_offset(bdb, BDB_LFP_DATA);
325 
326 	for (i = 0; i < 16; i++) {
327 		if (ptrs->ptr[i].fp_timing.offset < offset ||
328 		    ptrs->ptr[i].dvo_timing.offset < offset ||
329 		    ptrs->ptr[i].panel_pnp_id.offset < offset)
330 			return false;
331 
332 		ptrs->ptr[i].fp_timing.offset -= offset;
333 		ptrs->ptr[i].dvo_timing.offset -= offset;
334 		ptrs->ptr[i].panel_pnp_id.offset -= offset;
335 	}
336 
337 	if (ptrs->panel_name.table_size) {
338 		if (ptrs->panel_name.offset < offset)
339 			return false;
340 
341 		ptrs->panel_name.offset -= offset;
342 	}
343 
344 	return validate_lfp_data_ptrs(bdb, ptrs);
345 }
346 
347 static int make_lfp_data_ptr(struct lfp_data_ptr_table *table,
348 			     int table_size, int total_size)
349 {
350 	if (total_size < table_size)
351 		return total_size;
352 
353 	table->table_size = table_size;
354 	table->offset = total_size - table_size;
355 
356 	return total_size - table_size;
357 }
358 
359 static void next_lfp_data_ptr(struct lfp_data_ptr_table *next,
360 			      const struct lfp_data_ptr_table *prev,
361 			      int size)
362 {
363 	next->table_size = prev->table_size;
364 	next->offset = prev->offset + size;
365 }
366 
367 static void *generate_lfp_data_ptrs(struct intel_display *display,
368 				    const void *bdb)
369 {
370 	int i, size, table_size, block_size, offset, fp_timing_size;
371 	struct bdb_lfp_data_ptrs *ptrs;
372 	const void *block;
373 	void *ptrs_block;
374 
375 	/*
376 	 * The hardcoded fp_timing_size is only valid for
377 	 * modernish VBTs. All older VBTs definitely should
378 	 * include block 41 and thus we don't need to
379 	 * generate one.
380 	 */
381 	if (display->vbt.version < 155)
382 		return NULL;
383 
384 	fp_timing_size = 38;
385 
386 	block = find_raw_section(bdb, BDB_LFP_DATA);
387 	if (!block)
388 		return NULL;
389 
390 	drm_dbg_kms(display->drm, "Generating LFP data table pointers\n");
391 
392 	block_size = get_blocksize(block);
393 
394 	size = fp_timing_size + sizeof(struct bdb_edid_dtd) +
395 		sizeof(struct bdb_edid_pnp_id);
396 	if (size * 16 > block_size)
397 		return NULL;
398 
399 	ptrs_block = kzalloc(sizeof(*ptrs) + 3, GFP_KERNEL);
400 	if (!ptrs_block)
401 		return NULL;
402 
403 	*(u8 *)(ptrs_block + 0) = BDB_LFP_DATA_PTRS;
404 	*(u16 *)(ptrs_block + 1) = sizeof(*ptrs);
405 	ptrs = ptrs_block + 3;
406 
407 	table_size = sizeof(struct bdb_edid_pnp_id);
408 	size = make_lfp_data_ptr(&ptrs->ptr[0].panel_pnp_id, table_size, size);
409 
410 	table_size = sizeof(struct bdb_edid_dtd);
411 	size = make_lfp_data_ptr(&ptrs->ptr[0].dvo_timing, table_size, size);
412 
413 	table_size = fp_timing_size;
414 	size = make_lfp_data_ptr(&ptrs->ptr[0].fp_timing, table_size, size);
415 
416 	if (ptrs->ptr[0].fp_timing.table_size)
417 		ptrs->num_entries++;
418 	if (ptrs->ptr[0].dvo_timing.table_size)
419 		ptrs->num_entries++;
420 	if (ptrs->ptr[0].panel_pnp_id.table_size)
421 		ptrs->num_entries++;
422 
423 	if (size != 0 || ptrs->num_entries != 3) {
424 		kfree(ptrs_block);
425 		return NULL;
426 	}
427 
428 	size = fp_timing_size + sizeof(struct bdb_edid_dtd) +
429 		sizeof(struct bdb_edid_pnp_id);
430 	for (i = 1; i < 16; i++) {
431 		next_lfp_data_ptr(&ptrs->ptr[i].fp_timing, &ptrs->ptr[i-1].fp_timing, size);
432 		next_lfp_data_ptr(&ptrs->ptr[i].dvo_timing, &ptrs->ptr[i-1].dvo_timing, size);
433 		next_lfp_data_ptr(&ptrs->ptr[i].panel_pnp_id, &ptrs->ptr[i-1].panel_pnp_id, size);
434 	}
435 
436 	table_size = sizeof(struct bdb_edid_product_name);
437 
438 	if (16 * (size + table_size) <= block_size) {
439 		ptrs->panel_name.table_size = table_size;
440 		ptrs->panel_name.offset = size * 16;
441 	}
442 
443 	offset = block - bdb;
444 
445 	for (i = 0; i < 16; i++) {
446 		ptrs->ptr[i].fp_timing.offset += offset;
447 		ptrs->ptr[i].dvo_timing.offset += offset;
448 		ptrs->ptr[i].panel_pnp_id.offset += offset;
449 	}
450 
451 	if (ptrs->panel_name.table_size)
452 		ptrs->panel_name.offset += offset;
453 
454 	return ptrs_block;
455 }
456 
457 static void
458 init_bdb_block(struct intel_display *display,
459 	       const void *bdb, enum bdb_block_id section_id,
460 	       size_t min_size)
461 {
462 	struct bdb_block_entry *entry;
463 	void *temp_block = NULL;
464 	const void *block;
465 	size_t block_size;
466 
467 	block = find_raw_section(bdb, section_id);
468 
469 	/* Modern VBTs lack the LFP data table pointers block, make one up */
470 	if (!block && section_id == BDB_LFP_DATA_PTRS) {
471 		temp_block = generate_lfp_data_ptrs(display, bdb);
472 		if (temp_block)
473 			block = temp_block + 3;
474 	}
475 	if (!block)
476 		return;
477 
478 	drm_WARN(display->drm, min_size == 0,
479 		 "Block %d min_size is zero\n", section_id);
480 
481 	block_size = get_blocksize(block);
482 
483 	/*
484 	 * Version number and new block size are considered
485 	 * part of the header for MIPI sequenece block v3+.
486 	 */
487 	if (section_id == BDB_MIPI_SEQUENCE && *(const u8 *)block >= 3)
488 		block_size += 5;
489 
490 	entry = kzalloc_flex(*entry, data, max(min_size, block_size) + 3);
491 	if (!entry) {
492 		kfree(temp_block);
493 		return;
494 	}
495 
496 	entry->section_id = section_id;
497 	memcpy(entry->data, block - 3, block_size + 3);
498 
499 	kfree(temp_block);
500 
501 	drm_dbg_kms(display->drm,
502 		    "Found BDB block %d (size %zu, min size %zu)\n",
503 		    section_id, block_size, min_size);
504 
505 	if (section_id == BDB_LFP_DATA_PTRS &&
506 	    !fixup_lfp_data_ptrs(bdb, entry->data + 3)) {
507 		drm_err(display->drm,
508 			"VBT has malformed LFP data table pointers\n");
509 		kfree(entry);
510 		return;
511 	}
512 
513 	list_add_tail(&entry->node, &display->vbt.bdb_blocks);
514 }
515 
516 static void init_bdb_blocks(struct intel_display *display,
517 			    const void *bdb)
518 {
519 	int i;
520 
521 	for (i = 0; i < ARRAY_SIZE(bdb_blocks); i++) {
522 		enum bdb_block_id section_id = bdb_blocks[i].section_id;
523 		size_t min_size = bdb_blocks[i].min_size;
524 
525 		if (section_id == BDB_LFP_DATA)
526 			min_size = lfp_data_min_size(display);
527 
528 		init_bdb_block(display, bdb, section_id, min_size);
529 	}
530 }
531 
532 static void
533 fill_detail_timing_data(struct intel_display *display,
534 			struct drm_display_mode *panel_fixed_mode,
535 			const struct bdb_edid_dtd *dvo_timing)
536 {
537 	panel_fixed_mode->hdisplay = (dvo_timing->hactive_hi << 8) |
538 		dvo_timing->hactive_lo;
539 	panel_fixed_mode->hsync_start = panel_fixed_mode->hdisplay +
540 		((dvo_timing->hsync_off_hi << 8) | dvo_timing->hsync_off_lo);
541 	panel_fixed_mode->hsync_end = panel_fixed_mode->hsync_start +
542 		((dvo_timing->hsync_pulse_width_hi << 8) |
543 			dvo_timing->hsync_pulse_width_lo);
544 	panel_fixed_mode->htotal = panel_fixed_mode->hdisplay +
545 		((dvo_timing->hblank_hi << 8) | dvo_timing->hblank_lo);
546 
547 	panel_fixed_mode->vdisplay = (dvo_timing->vactive_hi << 8) |
548 		dvo_timing->vactive_lo;
549 	panel_fixed_mode->vsync_start = panel_fixed_mode->vdisplay +
550 		((dvo_timing->vsync_off_hi << 4) | dvo_timing->vsync_off_lo);
551 	panel_fixed_mode->vsync_end = panel_fixed_mode->vsync_start +
552 		((dvo_timing->vsync_pulse_width_hi << 4) |
553 			dvo_timing->vsync_pulse_width_lo);
554 	panel_fixed_mode->vtotal = panel_fixed_mode->vdisplay +
555 		((dvo_timing->vblank_hi << 8) | dvo_timing->vblank_lo);
556 	panel_fixed_mode->clock = dvo_timing->clock * 10;
557 	panel_fixed_mode->type = DRM_MODE_TYPE_PREFERRED;
558 
559 	if (dvo_timing->hsync_positive)
560 		panel_fixed_mode->flags |= DRM_MODE_FLAG_PHSYNC;
561 	else
562 		panel_fixed_mode->flags |= DRM_MODE_FLAG_NHSYNC;
563 
564 	if (dvo_timing->vsync_positive)
565 		panel_fixed_mode->flags |= DRM_MODE_FLAG_PVSYNC;
566 	else
567 		panel_fixed_mode->flags |= DRM_MODE_FLAG_NVSYNC;
568 
569 	panel_fixed_mode->width_mm = (dvo_timing->himage_hi << 8) |
570 		dvo_timing->himage_lo;
571 	panel_fixed_mode->height_mm = (dvo_timing->vimage_hi << 8) |
572 		dvo_timing->vimage_lo;
573 
574 	/* Some VBTs have bogus h/vsync_end values */
575 	if (panel_fixed_mode->hsync_end > panel_fixed_mode->htotal) {
576 		drm_dbg_kms(display->drm, "reducing hsync_end %d->%d\n",
577 			    panel_fixed_mode->hsync_end, panel_fixed_mode->htotal);
578 		panel_fixed_mode->hsync_end = panel_fixed_mode->htotal;
579 	}
580 	if (panel_fixed_mode->vsync_end > panel_fixed_mode->vtotal) {
581 		drm_dbg_kms(display->drm, "reducing vsync_end %d->%d\n",
582 			    panel_fixed_mode->vsync_end, panel_fixed_mode->vtotal);
583 		panel_fixed_mode->vsync_end = panel_fixed_mode->vtotal;
584 	}
585 
586 	drm_mode_set_name(panel_fixed_mode);
587 }
588 
589 static const struct bdb_edid_dtd *
590 get_lfp_dvo_timing(const struct bdb_lfp_data *data,
591 		   const struct bdb_lfp_data_ptrs *ptrs,
592 		   int index)
593 {
594 	return (const void *)data + ptrs->ptr[index].dvo_timing.offset;
595 }
596 
597 static const struct fp_timing *
598 get_lfp_fp_timing(const struct bdb_lfp_data *data,
599 		  const struct bdb_lfp_data_ptrs *ptrs,
600 		  int index)
601 {
602 	return (const void *)data + ptrs->ptr[index].fp_timing.offset;
603 }
604 
605 static const struct drm_edid_product_id *
606 get_lfp_pnp_id(const struct bdb_lfp_data *data,
607 	       const struct bdb_lfp_data_ptrs *ptrs,
608 	       int index)
609 {
610 	/* These two are supposed to have the same layout in memory. */
611 	BUILD_BUG_ON(sizeof(struct bdb_edid_pnp_id) != sizeof(struct drm_edid_product_id));
612 
613 	return (const void *)data + ptrs->ptr[index].panel_pnp_id.offset;
614 }
615 
616 static const struct bdb_lfp_data_tail *
617 get_lfp_data_tail(const struct bdb_lfp_data *data,
618 		  const struct bdb_lfp_data_ptrs *ptrs)
619 {
620 	if (ptrs->panel_name.table_size)
621 		return (const void *)data + ptrs->panel_name.offset;
622 	else
623 		return NULL;
624 }
625 
626 static int opregion_get_panel_type(struct intel_display *display,
627 				   const struct intel_bios_encoder_data *devdata,
628 				   const struct drm_edid *drm_edid, bool use_fallback)
629 {
630 	return intel_opregion_get_panel_type(display);
631 }
632 
633 static int vbt_get_panel_type(struct intel_display *display,
634 			      const struct intel_bios_encoder_data *devdata,
635 			      const struct drm_edid *drm_edid, bool use_fallback)
636 {
637 	const struct bdb_lfp_options *lfp_options;
638 
639 	lfp_options = bdb_find_section(display, BDB_LFP_OPTIONS);
640 	if (!lfp_options)
641 		return -1;
642 
643 	if (lfp_options->panel_type > 0xf &&
644 	    lfp_options->panel_type != 0xff) {
645 		drm_dbg_kms(display->drm, "Invalid VBT panel type 0x%x\n",
646 			    lfp_options->panel_type);
647 		return -1;
648 	}
649 
650 	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2)
651 		return lfp_options->panel_type2;
652 
653 	drm_WARN_ON(display->drm,
654 		    devdata && devdata->child.handle != DEVICE_HANDLE_LFP1);
655 
656 	return lfp_options->panel_type;
657 }
658 
659 static int pnpid_get_panel_type(struct intel_display *display,
660 				const struct intel_bios_encoder_data *devdata,
661 				const struct drm_edid *drm_edid, bool use_fallback)
662 {
663 	const struct bdb_lfp_data *data;
664 	const struct bdb_lfp_data_ptrs *ptrs;
665 	struct drm_edid_product_id product_id, product_id_nodate;
666 	struct drm_printer p;
667 	int i, best = -1;
668 
669 	if (!drm_edid)
670 		return -1;
671 
672 	drm_edid_get_product_id(drm_edid, &product_id);
673 
674 	product_id_nodate = product_id;
675 	product_id_nodate.week_of_manufacture = 0;
676 	product_id_nodate.year_of_manufacture = 0;
677 
678 	p = drm_dbg_printer(display->drm, DRM_UT_KMS, "EDID");
679 	drm_edid_print_product_id(&p, &product_id, true);
680 
681 	ptrs = bdb_find_section(display, BDB_LFP_DATA_PTRS);
682 	if (!ptrs)
683 		return -1;
684 
685 	data = bdb_find_section(display, BDB_LFP_DATA);
686 	if (!data)
687 		return -1;
688 
689 	for (i = 0; i < 16; i++) {
690 		const struct drm_edid_product_id *vbt_id =
691 			get_lfp_pnp_id(data, ptrs, i);
692 
693 		/* full match? */
694 		if (!memcmp(vbt_id, &product_id, sizeof(*vbt_id)))
695 			return i;
696 
697 		/*
698 		 * Accept a match w/o date if no full match is found,
699 		 * and the VBT entry does not specify a date.
700 		 */
701 		if (best < 0 &&
702 		    !memcmp(vbt_id, &product_id_nodate, sizeof(*vbt_id)))
703 			best = i;
704 	}
705 
706 	return best;
707 }
708 
709 static int fallback_get_panel_type(struct intel_display *display,
710 				   const struct intel_bios_encoder_data *devdata,
711 				   const struct drm_edid *drm_edid, bool use_fallback)
712 {
713 	return use_fallback ? 0 : -1;
714 }
715 
716 enum panel_type {
717 	PANEL_TYPE_OPREGION,
718 	PANEL_TYPE_VBT,
719 	PANEL_TYPE_PNPID,
720 	PANEL_TYPE_FALLBACK,
721 };
722 
723 static int get_panel_type(struct intel_display *display,
724 			  const struct intel_bios_encoder_data *devdata,
725 			  const struct drm_edid *drm_edid, bool use_fallback)
726 {
727 	struct {
728 		const char *name;
729 		int (*get_panel_type)(struct intel_display *display,
730 				      const struct intel_bios_encoder_data *devdata,
731 				      const struct drm_edid *drm_edid, bool use_fallback);
732 		int panel_type;
733 	} panel_types[] = {
734 		[PANEL_TYPE_OPREGION] = {
735 			.name = "OpRegion",
736 			.get_panel_type = opregion_get_panel_type,
737 		},
738 		[PANEL_TYPE_VBT] = {
739 			.name = "VBT",
740 			.get_panel_type = vbt_get_panel_type,
741 		},
742 		[PANEL_TYPE_PNPID] = {
743 			.name = "PNPID",
744 			.get_panel_type = pnpid_get_panel_type,
745 		},
746 		[PANEL_TYPE_FALLBACK] = {
747 			.name = "fallback",
748 			.get_panel_type = fallback_get_panel_type,
749 		},
750 	};
751 	int i;
752 
753 	for (i = 0; i < ARRAY_SIZE(panel_types); i++) {
754 		panel_types[i].panel_type = panel_types[i].get_panel_type(display, devdata,
755 									  drm_edid, use_fallback);
756 
757 		drm_WARN_ON(display->drm, panel_types[i].panel_type > 0xf &&
758 			    panel_types[i].panel_type != 0xff);
759 
760 		if (panel_types[i].panel_type >= 0)
761 			drm_dbg_kms(display->drm, "Panel type (%s): %d\n",
762 				    panel_types[i].name, panel_types[i].panel_type);
763 	}
764 
765 	if (panel_types[PANEL_TYPE_OPREGION].panel_type >= 0)
766 		i = PANEL_TYPE_OPREGION;
767 	else if (panel_types[PANEL_TYPE_VBT].panel_type == 0xff &&
768 		 panel_types[PANEL_TYPE_PNPID].panel_type >= 0)
769 		i = PANEL_TYPE_PNPID;
770 	else if (panel_types[PANEL_TYPE_VBT].panel_type != 0xff &&
771 		 panel_types[PANEL_TYPE_VBT].panel_type >= 0)
772 		i = PANEL_TYPE_VBT;
773 	else
774 		i = PANEL_TYPE_FALLBACK;
775 
776 	drm_dbg_kms(display->drm, "Selected panel type (%s): %d\n",
777 		    panel_types[i].name, panel_types[i].panel_type);
778 
779 	return panel_types[i].panel_type;
780 }
781 
782 static unsigned int panel_bits(unsigned int value, int panel_type, int num_bits)
783 {
784 	return (value >> (panel_type * num_bits)) & (BIT(num_bits) - 1);
785 }
786 
787 static bool panel_bool(unsigned int value, int panel_type)
788 {
789 	return panel_bits(value, panel_type, 1);
790 }
791 
792 /* Parse general panel options */
793 static void
794 parse_panel_options(struct intel_display *display,
795 		    struct intel_panel *panel)
796 {
797 	const struct bdb_lfp_options *lfp_options;
798 	int panel_type = panel->vbt.panel_type;
799 	int drrs_mode;
800 
801 	lfp_options = bdb_find_section(display, BDB_LFP_OPTIONS);
802 	if (!lfp_options)
803 		return;
804 
805 	panel->vbt.lvds_dither = lfp_options->pixel_dither;
806 
807 	/*
808 	 * Empirical evidence indicates the block size can be
809 	 * either 4,14,16,24+ bytes. For older VBTs no clear
810 	 * relationship between the block size vs. BDB version.
811 	 */
812 	if (get_blocksize(lfp_options) < 16)
813 		return;
814 
815 	drrs_mode = panel_bits(lfp_options->dps_panel_type_bits,
816 			       panel_type, 2);
817 	/*
818 	 * VBT has static DRRS = 0 and seamless DRRS = 2.
819 	 * The below piece of code is required to adjust vbt.drrs_type
820 	 * to match the enum drrs_support_type.
821 	 */
822 	switch (drrs_mode) {
823 	case 0:
824 		panel->vbt.drrs_type = DRRS_TYPE_STATIC;
825 		drm_dbg_kms(display->drm, "DRRS supported mode is static\n");
826 		break;
827 	case 2:
828 		panel->vbt.drrs_type = DRRS_TYPE_SEAMLESS;
829 		drm_dbg_kms(display->drm,
830 			    "DRRS supported mode is seamless\n");
831 		break;
832 	default:
833 		panel->vbt.drrs_type = DRRS_TYPE_NONE;
834 		drm_dbg_kms(display->drm,
835 			    "DRRS not supported (VBT input)\n");
836 		break;
837 	}
838 }
839 
840 static void
841 parse_lfp_panel_dtd(struct intel_display *display,
842 		    struct intel_panel *panel,
843 		    const struct bdb_lfp_data *lfp_data,
844 		    const struct bdb_lfp_data_ptrs *lfp_data_ptrs)
845 {
846 	const struct bdb_edid_dtd *panel_dvo_timing;
847 	const struct fp_timing *fp_timing;
848 	struct drm_display_mode *panel_fixed_mode;
849 	int panel_type = panel->vbt.panel_type;
850 
851 	panel_dvo_timing = get_lfp_dvo_timing(lfp_data,
852 					      lfp_data_ptrs,
853 					      panel_type);
854 
855 	panel_fixed_mode = kzalloc_obj(*panel_fixed_mode);
856 	if (!panel_fixed_mode)
857 		return;
858 
859 	fill_detail_timing_data(display, panel_fixed_mode, panel_dvo_timing);
860 
861 	panel->vbt.lfp_vbt_mode = panel_fixed_mode;
862 
863 	drm_dbg_kms(display->drm,
864 		    "Found panel mode in BIOS VBT legacy lfp table: " DRM_MODE_FMT "\n",
865 		    DRM_MODE_ARG(panel_fixed_mode));
866 
867 	fp_timing = get_lfp_fp_timing(lfp_data,
868 				      lfp_data_ptrs,
869 				      panel_type);
870 
871 	/* check the resolution, just to be sure */
872 	if (fp_timing->x_res == panel_fixed_mode->hdisplay &&
873 	    fp_timing->y_res == panel_fixed_mode->vdisplay) {
874 		panel->vbt.bios_lvds_val = fp_timing->lvds_reg_val;
875 		drm_dbg_kms(display->drm,
876 			    "VBT initial LVDS value %x\n",
877 			    panel->vbt.bios_lvds_val);
878 	}
879 }
880 
881 static void
882 parse_lfp_data(struct intel_display *display,
883 	       struct intel_panel *panel)
884 {
885 	const struct bdb_lfp_data *data;
886 	const struct bdb_lfp_data_tail *tail;
887 	const struct bdb_lfp_data_ptrs *ptrs;
888 	const struct drm_edid_product_id *pnp_id;
889 	struct drm_printer p;
890 	int panel_type = panel->vbt.panel_type;
891 
892 	ptrs = bdb_find_section(display, BDB_LFP_DATA_PTRS);
893 	if (!ptrs)
894 		return;
895 
896 	data = bdb_find_section(display, BDB_LFP_DATA);
897 	if (!data)
898 		return;
899 
900 	if (!panel->vbt.lfp_vbt_mode)
901 		parse_lfp_panel_dtd(display, panel, data, ptrs);
902 
903 	pnp_id = get_lfp_pnp_id(data, ptrs, panel_type);
904 
905 	p = drm_dbg_printer(display->drm, DRM_UT_KMS, "Panel");
906 	drm_edid_print_product_id(&p, pnp_id, false);
907 
908 	tail = get_lfp_data_tail(data, ptrs);
909 	if (!tail)
910 		return;
911 
912 	drm_dbg_kms(display->drm, "Panel name: %.*s\n",
913 		    (int)sizeof(tail->panel_name[0].name),
914 		    tail->panel_name[panel_type].name);
915 
916 	if (display->vbt.version >= 188) {
917 		panel->vbt.seamless_drrs_min_refresh_rate =
918 			tail->seamless_drrs_min_refresh_rate[panel_type];
919 		drm_dbg_kms(display->drm,
920 			    "Seamless DRRS min refresh rate: %d Hz\n",
921 			    panel->vbt.seamless_drrs_min_refresh_rate);
922 	}
923 }
924 
925 static void
926 parse_generic_dtd(struct intel_display *display,
927 		  struct intel_panel *panel)
928 {
929 	const struct bdb_generic_dtd *generic_dtd;
930 	const struct generic_dtd_entry *dtd;
931 	struct drm_display_mode *panel_fixed_mode;
932 	int num_dtd;
933 
934 	/*
935 	 * Older VBTs provided DTD information for internal displays through
936 	 * the "LFP panel tables" block (42).  As of VBT revision 229 the
937 	 * DTD information should be provided via a newer "generic DTD"
938 	 * block (58).  Just to be safe, we'll try the new generic DTD block
939 	 * first on VBT >= 229, but still fall back to trying the old LFP
940 	 * block if that fails.
941 	 */
942 	if (display->vbt.version < 229)
943 		return;
944 
945 	generic_dtd = bdb_find_section(display, BDB_GENERIC_DTD);
946 	if (!generic_dtd)
947 		return;
948 
949 	if (generic_dtd->gdtd_size < sizeof(struct generic_dtd_entry)) {
950 		drm_err(display->drm, "GDTD size %u is too small.\n",
951 			generic_dtd->gdtd_size);
952 		return;
953 	} else if (generic_dtd->gdtd_size !=
954 		   sizeof(struct generic_dtd_entry)) {
955 		drm_err(display->drm, "Unexpected GDTD size %u\n",
956 			generic_dtd->gdtd_size);
957 		/* DTD has unknown fields, but keep going */
958 	}
959 
960 	num_dtd = (get_blocksize(generic_dtd) -
961 		   sizeof(struct bdb_generic_dtd)) / generic_dtd->gdtd_size;
962 	if (panel->vbt.panel_type >= num_dtd) {
963 		drm_err(display->drm,
964 			"Panel type %d not found in table of %d DTD's\n",
965 			panel->vbt.panel_type, num_dtd);
966 		return;
967 	}
968 
969 	dtd = &generic_dtd->dtd[panel->vbt.panel_type];
970 
971 	panel_fixed_mode = kzalloc_obj(*panel_fixed_mode);
972 	if (!panel_fixed_mode)
973 		return;
974 
975 	panel_fixed_mode->hdisplay = dtd->hactive;
976 	panel_fixed_mode->hsync_start =
977 		panel_fixed_mode->hdisplay + dtd->hfront_porch;
978 	panel_fixed_mode->hsync_end =
979 		panel_fixed_mode->hsync_start + dtd->hsync;
980 	panel_fixed_mode->htotal =
981 		panel_fixed_mode->hdisplay + dtd->hblank;
982 
983 	panel_fixed_mode->vdisplay = dtd->vactive;
984 	panel_fixed_mode->vsync_start =
985 		panel_fixed_mode->vdisplay + dtd->vfront_porch;
986 	panel_fixed_mode->vsync_end =
987 		panel_fixed_mode->vsync_start + dtd->vsync;
988 	panel_fixed_mode->vtotal =
989 		panel_fixed_mode->vdisplay + dtd->vblank;
990 
991 	panel_fixed_mode->clock = dtd->pixel_clock;
992 	panel_fixed_mode->width_mm = dtd->width_mm;
993 	panel_fixed_mode->height_mm = dtd->height_mm;
994 
995 	panel_fixed_mode->type = DRM_MODE_TYPE_PREFERRED;
996 	drm_mode_set_name(panel_fixed_mode);
997 
998 	if (dtd->hsync_positive_polarity)
999 		panel_fixed_mode->flags |= DRM_MODE_FLAG_PHSYNC;
1000 	else
1001 		panel_fixed_mode->flags |= DRM_MODE_FLAG_NHSYNC;
1002 
1003 	if (dtd->vsync_positive_polarity)
1004 		panel_fixed_mode->flags |= DRM_MODE_FLAG_PVSYNC;
1005 	else
1006 		panel_fixed_mode->flags |= DRM_MODE_FLAG_NVSYNC;
1007 
1008 	drm_dbg_kms(display->drm,
1009 		    "Found panel mode in BIOS VBT generic dtd table: " DRM_MODE_FMT "\n",
1010 		    DRM_MODE_ARG(panel_fixed_mode));
1011 
1012 	panel->vbt.lfp_vbt_mode = panel_fixed_mode;
1013 }
1014 
1015 static void
1016 parse_lfp_backlight(struct intel_display *display,
1017 		    struct intel_panel *panel)
1018 {
1019 	const struct bdb_lfp_backlight *backlight_data;
1020 	const struct lfp_backlight_data_entry *entry;
1021 	int panel_type = panel->vbt.panel_type;
1022 	u16 level;
1023 
1024 	backlight_data = bdb_find_section(display, BDB_LFP_BACKLIGHT);
1025 	if (!backlight_data)
1026 		return;
1027 
1028 	if (backlight_data->entry_size != sizeof(backlight_data->data[0])) {
1029 		drm_dbg_kms(display->drm,
1030 			    "Unsupported backlight data entry size %u\n",
1031 			    backlight_data->entry_size);
1032 		return;
1033 	}
1034 
1035 	entry = &backlight_data->data[panel_type];
1036 
1037 	panel->vbt.backlight.present = entry->type == BDB_BACKLIGHT_TYPE_PWM;
1038 	if (!panel->vbt.backlight.present) {
1039 		drm_dbg_kms(display->drm,
1040 			    "PWM backlight not present in VBT (type %u)\n",
1041 			    entry->type);
1042 		return;
1043 	}
1044 
1045 	panel->vbt.backlight.type = INTEL_BACKLIGHT_DISPLAY_DDI;
1046 	panel->vbt.backlight.controller = 0;
1047 	if (display->vbt.version >= 191) {
1048 		const struct lfp_backlight_control_method *method;
1049 
1050 		method = &backlight_data->backlight_control[panel_type];
1051 		panel->vbt.backlight.type = method->type;
1052 		panel->vbt.backlight.controller = method->controller;
1053 	}
1054 
1055 	panel->vbt.backlight.pwm_freq_hz = entry->pwm_freq_hz;
1056 	panel->vbt.backlight.active_low_pwm = entry->active_low_pwm;
1057 
1058 	if (display->vbt.version >= 234) {
1059 		u16 min_level;
1060 		bool scale;
1061 
1062 		level = backlight_data->brightness_level[panel_type].level;
1063 		min_level = backlight_data->brightness_min_level[panel_type].level;
1064 
1065 		if (display->vbt.version >= 236)
1066 			scale = backlight_data->brightness_precision_bits[panel_type] == 16;
1067 		else
1068 			scale = level > 255;
1069 
1070 		if (scale)
1071 			min_level = min_level / 255;
1072 
1073 		if (min_level > 255) {
1074 			drm_warn(display->drm, "Brightness min level > 255\n");
1075 			level = 255;
1076 		}
1077 		panel->vbt.backlight.min_brightness = min_level;
1078 
1079 		panel->vbt.backlight.brightness_precision_bits =
1080 			backlight_data->brightness_precision_bits[panel_type];
1081 	} else {
1082 		level = backlight_data->level[panel_type];
1083 		panel->vbt.backlight.min_brightness = entry->min_brightness;
1084 	}
1085 
1086 	if (display->vbt.version >= 239)
1087 		panel->vbt.backlight.hdr_dpcd_refresh_timeout =
1088 			DIV_ROUND_UP(backlight_data->hdr_dpcd_refresh_timeout[panel_type], 100);
1089 	else
1090 		panel->vbt.backlight.hdr_dpcd_refresh_timeout = 30;
1091 
1092 	drm_dbg_kms(display->drm,
1093 		    "VBT backlight PWM modulation frequency %u Hz, "
1094 		    "active %s, min brightness %u, level %u, controller %u\n",
1095 		    panel->vbt.backlight.pwm_freq_hz,
1096 		    panel->vbt.backlight.active_low_pwm ? "low" : "high",
1097 		    panel->vbt.backlight.min_brightness,
1098 		    level,
1099 		    panel->vbt.backlight.controller);
1100 }
1101 
1102 static void
1103 parse_sdvo_lvds_data(struct intel_display *display,
1104 		     struct intel_panel *panel)
1105 {
1106 	const struct bdb_sdvo_lvds_dtd *dtd;
1107 	struct drm_display_mode *panel_fixed_mode;
1108 	int index;
1109 
1110 	index = display->params.vbt_sdvo_panel_type;
1111 	if (index == -2) {
1112 		drm_dbg_kms(display->drm,
1113 			    "Ignore SDVO LVDS mode from BIOS VBT tables.\n");
1114 		return;
1115 	}
1116 
1117 	if (index == -1) {
1118 		const struct bdb_sdvo_lvds_options *sdvo_lvds_options;
1119 
1120 		sdvo_lvds_options = bdb_find_section(display, BDB_SDVO_LVDS_OPTIONS);
1121 		if (!sdvo_lvds_options)
1122 			return;
1123 
1124 		index = sdvo_lvds_options->panel_type;
1125 	}
1126 
1127 	dtd = bdb_find_section(display, BDB_SDVO_LVDS_DTD);
1128 	if (!dtd)
1129 		return;
1130 
1131 	/*
1132 	 * This should not happen, as long as the panel_type
1133 	 * enumeration doesn't grow over 4 items.  But if it does, it
1134 	 * could lead to hard-to-detect bugs, so better double-check
1135 	 * it here to be sure.
1136 	 */
1137 	if (index >= ARRAY_SIZE(dtd->dtd)) {
1138 		drm_err(display->drm,
1139 			"index %d is larger than dtd->dtd[4] array\n",
1140 			index);
1141 		return;
1142 	}
1143 
1144 	panel_fixed_mode = kzalloc_obj(*panel_fixed_mode);
1145 	if (!panel_fixed_mode)
1146 		return;
1147 
1148 	fill_detail_timing_data(display, panel_fixed_mode, &dtd->dtd[index]);
1149 
1150 	panel->vbt.sdvo_lvds_vbt_mode = panel_fixed_mode;
1151 
1152 	drm_dbg_kms(display->drm,
1153 		    "Found SDVO LVDS mode in BIOS VBT tables: " DRM_MODE_FMT "\n",
1154 		    DRM_MODE_ARG(panel_fixed_mode));
1155 }
1156 
1157 static int intel_bios_ssc_frequency(struct intel_display *display,
1158 				    bool alternate)
1159 {
1160 	switch (DISPLAY_VER(display)) {
1161 	case 2:
1162 		return alternate ? 66667 : 48000;
1163 	case 3:
1164 	case 4:
1165 		return alternate ? 100000 : 96000;
1166 	default:
1167 		return alternate ? 100000 : 120000;
1168 	}
1169 }
1170 
1171 static void
1172 parse_general_features(struct intel_display *display)
1173 {
1174 	const struct bdb_general_features *general;
1175 
1176 	general = bdb_find_section(display, BDB_GENERAL_FEATURES);
1177 	if (!general)
1178 		return;
1179 
1180 	display->vbt.int_tv_support = general->int_tv_support;
1181 	/* int_crt_support can't be trusted on earlier platforms */
1182 	if (display->vbt.version >= 155 &&
1183 	    (HAS_DDI(display) || display->platform.valleyview))
1184 		display->vbt.int_crt_support = general->int_crt_support;
1185 	display->vbt.lvds_use_ssc = general->enable_ssc;
1186 	display->vbt.lvds_ssc_freq =
1187 		intel_bios_ssc_frequency(display, general->ssc_freq);
1188 	display->vbt.display_clock_mode = general->display_clock_mode;
1189 	display->vbt.fdi_rx_polarity_inverted = general->fdi_rx_polarity_inverted;
1190 	if (display->vbt.version >= 181) {
1191 		display->vbt.orientation = general->rotate_180 ?
1192 			DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP :
1193 			DRM_MODE_PANEL_ORIENTATION_NORMAL;
1194 	} else {
1195 		display->vbt.orientation = DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
1196 	}
1197 
1198 	if (display->vbt.version >= 249 && general->afc_startup_config) {
1199 		display->vbt.override_afc_startup = true;
1200 		display->vbt.override_afc_startup_val = general->afc_startup_config == 1 ? 0 : 7;
1201 	}
1202 
1203 	drm_dbg_kms(display->drm,
1204 		    "BDB_GENERAL_FEATURES int_tv_support %d int_crt_support %d lvds_use_ssc %d lvds_ssc_freq %d display_clock_mode %d fdi_rx_polarity_inverted %d\n",
1205 		    display->vbt.int_tv_support,
1206 		    display->vbt.int_crt_support,
1207 		    display->vbt.lvds_use_ssc,
1208 		    display->vbt.lvds_ssc_freq,
1209 		    display->vbt.display_clock_mode,
1210 		    display->vbt.fdi_rx_polarity_inverted);
1211 }
1212 
1213 static const struct child_device_config *
1214 child_device_ptr(const struct bdb_general_definitions *defs, int i)
1215 {
1216 	return (const void *) &defs->devices[i * defs->child_dev_size];
1217 }
1218 
1219 static void
1220 parse_sdvo_device_mapping(struct intel_display *display)
1221 {
1222 	const struct intel_bios_encoder_data *devdata;
1223 	int count = 0;
1224 
1225 	/*
1226 	 * Only parse SDVO mappings on gens that could have SDVO. This isn't
1227 	 * accurate and doesn't have to be, as long as it's not too strict.
1228 	 */
1229 	if (!IS_DISPLAY_VER(display, 3, 7)) {
1230 		drm_dbg_kms(display->drm, "Skipping SDVO device mapping\n");
1231 		return;
1232 	}
1233 
1234 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
1235 		const struct child_device_config *child = &devdata->child;
1236 		struct sdvo_device_mapping *mapping;
1237 
1238 		if (child->target_addr != TARGET_ADDR1 &&
1239 		    child->target_addr != TARGET_ADDR2) {
1240 			/*
1241 			 * If the target address is neither 0x70 nor 0x72,
1242 			 * it is not a SDVO device. Skip it.
1243 			 */
1244 			continue;
1245 		}
1246 		if (child->dvo_port != DEVICE_PORT_DVOB &&
1247 		    child->dvo_port != DEVICE_PORT_DVOC) {
1248 			/* skip the incorrect SDVO port */
1249 			drm_dbg_kms(display->drm,
1250 				    "Incorrect SDVO port. Skip it\n");
1251 			continue;
1252 		}
1253 		drm_dbg_kms(display->drm,
1254 			    "the SDVO device with target addr %2x is found on"
1255 			    " %s port\n",
1256 			    child->target_addr,
1257 			    (child->dvo_port == DEVICE_PORT_DVOB) ?
1258 			    "SDVOB" : "SDVOC");
1259 		mapping = &display->vbt.sdvo_mappings[child->dvo_port - 1];
1260 		if (!mapping->initialized) {
1261 			mapping->dvo_port = child->dvo_port;
1262 			mapping->target_addr = child->target_addr;
1263 			mapping->dvo_wiring = child->dvo_wiring;
1264 			mapping->ddc_pin = child->ddc_pin;
1265 			mapping->i2c_pin = child->i2c_pin;
1266 			mapping->initialized = 1;
1267 			drm_dbg_kms(display->drm,
1268 				    "SDVO device: dvo=%x, addr=%x, wiring=%d, ddc_pin=%d, i2c_pin=%d\n",
1269 				    mapping->dvo_port, mapping->target_addr,
1270 				    mapping->dvo_wiring, mapping->ddc_pin,
1271 				    mapping->i2c_pin);
1272 		} else {
1273 			drm_dbg_kms(display->drm,
1274 				    "Maybe one SDVO port is shared by "
1275 				    "two SDVO device.\n");
1276 		}
1277 		if (child->target2_addr) {
1278 			/* Maybe this is a SDVO device with multiple inputs */
1279 			/* And the mapping info is not added */
1280 			drm_dbg_kms(display->drm,
1281 				    "there exists the target2_addr. Maybe this"
1282 				    " is a SDVO device with multiple inputs.\n");
1283 		}
1284 		count++;
1285 	}
1286 
1287 	if (!count) {
1288 		/* No SDVO device info is found */
1289 		drm_dbg_kms(display->drm,
1290 			    "No SDVO device info is found in VBT\n");
1291 	}
1292 }
1293 
1294 static void
1295 parse_driver_features(struct intel_display *display)
1296 {
1297 	const struct bdb_driver_features *driver;
1298 
1299 	driver = bdb_find_section(display, BDB_DRIVER_FEATURES);
1300 	if (!driver)
1301 		return;
1302 
1303 	if (DISPLAY_VER(display) >= 5) {
1304 		/*
1305 		 * Note that we consider BDB_DRIVER_FEATURE_INT_SDVO_LVDS
1306 		 * to mean "eDP". The VBT spec doesn't agree with that
1307 		 * interpretation, but real world VBTs seem to.
1308 		 */
1309 		if (driver->lvds_config != BDB_DRIVER_FEATURE_INT_LVDS)
1310 			display->vbt.int_lvds_support = 0;
1311 	} else {
1312 		/*
1313 		 * FIXME it's not clear which BDB version has the LVDS config
1314 		 * bits defined. Revision history in the VBT spec says:
1315 		 * "0.92 | Add two definitions for VBT value of LVDS Active
1316 		 *  Config (00b and 11b values defined) | 06/13/2005"
1317 		 * but does not the specify the BDB version.
1318 		 *
1319 		 * So far version 134 (on i945gm) is the oldest VBT observed
1320 		 * in the wild with the bits correctly populated. Version
1321 		 * 108 (on i85x) does not have the bits correctly populated.
1322 		 */
1323 		if (display->vbt.version >= 134 &&
1324 		    driver->lvds_config != BDB_DRIVER_FEATURE_INT_LVDS &&
1325 		    driver->lvds_config != BDB_DRIVER_FEATURE_INT_SDVO_LVDS)
1326 			display->vbt.int_lvds_support = 0;
1327 	}
1328 }
1329 
1330 static void
1331 parse_panel_driver_features(struct intel_display *display,
1332 			    struct intel_panel *panel)
1333 {
1334 	const struct bdb_driver_features *driver;
1335 
1336 	driver = bdb_find_section(display, BDB_DRIVER_FEATURES);
1337 	if (!driver)
1338 		return;
1339 
1340 	if (display->vbt.version < 228) {
1341 		drm_dbg_kms(display->drm, "DRRS State Enabled:%d\n",
1342 			    driver->drrs_enabled);
1343 		/*
1344 		 * If DRRS is not supported, drrs_type has to be set to 0.
1345 		 * This is because, VBT is configured in such a way that
1346 		 * static DRRS is 0 and DRRS not supported is represented by
1347 		 * driver->drrs_enabled=false
1348 		 */
1349 		if (!driver->drrs_enabled && panel->vbt.drrs_type != DRRS_TYPE_NONE) {
1350 			/*
1351 			 * FIXME Should DMRRS perhaps be treated as seamless
1352 			 * but without the automatic downclocking?
1353 			 */
1354 			if (driver->dmrrs_enabled)
1355 				panel->vbt.drrs_type = DRRS_TYPE_STATIC;
1356 			else
1357 				panel->vbt.drrs_type = DRRS_TYPE_NONE;
1358 		}
1359 
1360 		panel->vbt.psr.enable = driver->psr_enabled;
1361 	}
1362 }
1363 
1364 static void
1365 parse_power_conservation_features(struct intel_display *display,
1366 				  struct intel_panel *panel)
1367 {
1368 	const struct bdb_lfp_power *power;
1369 	u8 panel_type = panel->vbt.panel_type;
1370 
1371 	panel->vbt.vrr = true; /* matches Windows behaviour */
1372 
1373 	if (display->vbt.version < 228)
1374 		return;
1375 
1376 	power = bdb_find_section(display, BDB_LFP_POWER);
1377 	if (!power)
1378 		return;
1379 
1380 	panel->vbt.psr.enable = panel_bool(power->psr, panel_type);
1381 
1382 	/*
1383 	 * If DRRS is not supported, drrs_type has to be set to 0.
1384 	 * This is because, VBT is configured in such a way that
1385 	 * static DRRS is 0 and DRRS not supported is represented by
1386 	 * power->drrs & BIT(panel_type)=false
1387 	 */
1388 	if (!panel_bool(power->drrs, panel_type) && panel->vbt.drrs_type != DRRS_TYPE_NONE) {
1389 		/*
1390 		 * FIXME Should DMRRS perhaps be treated as seamless
1391 		 * but without the automatic downclocking?
1392 		 */
1393 		if (panel_bool(power->dmrrs, panel_type))
1394 			panel->vbt.drrs_type = DRRS_TYPE_STATIC;
1395 		else
1396 			panel->vbt.drrs_type = DRRS_TYPE_NONE;
1397 	}
1398 
1399 	if (display->vbt.version >= 232)
1400 		panel->vbt.edp.hobl = panel_bool(power->hobl, panel_type);
1401 
1402 	if (display->vbt.version >= 233)
1403 		panel->vbt.vrr = panel_bool(power->vrr_feature_enabled,
1404 					    panel_type);
1405 }
1406 
1407 static void vbt_edp_to_pps_delays(struct intel_pps_delays *pps,
1408 				  const struct edp_power_seq *edp_pps)
1409 {
1410 	pps->power_up = edp_pps->t1_t3;
1411 	pps->backlight_on = edp_pps->t8;
1412 	pps->backlight_off = edp_pps->t9;
1413 	pps->power_down = edp_pps->t10;
1414 	pps->power_cycle = edp_pps->t11_t12;
1415 }
1416 
1417 static void
1418 parse_edp(struct intel_display *display,
1419 	  struct intel_panel *panel)
1420 {
1421 	const struct bdb_edp *edp;
1422 	const struct edp_fast_link_params *edp_link_params;
1423 	int panel_type = panel->vbt.panel_type;
1424 
1425 	edp = bdb_find_section(display, BDB_EDP);
1426 	if (!edp)
1427 		return;
1428 
1429 	switch (panel_bits(edp->color_depth, panel_type, 2)) {
1430 	case EDP_18BPP:
1431 		panel->vbt.edp.bpp = 18;
1432 		break;
1433 	case EDP_24BPP:
1434 		panel->vbt.edp.bpp = 24;
1435 		break;
1436 	case EDP_30BPP:
1437 		panel->vbt.edp.bpp = 30;
1438 		break;
1439 	}
1440 
1441 	/* Get the eDP sequencing and link info */
1442 	edp_link_params = &edp->fast_link_params[panel_type];
1443 
1444 	vbt_edp_to_pps_delays(&panel->vbt.edp.pps,
1445 			      &edp->power_seqs[panel_type]);
1446 
1447 	if (display->vbt.version >= 224) {
1448 		panel->vbt.edp.rate =
1449 			edp->edp_fast_link_training_rate[panel_type] * 20;
1450 	} else {
1451 		switch (edp_link_params->rate) {
1452 		case EDP_RATE_1_62:
1453 			panel->vbt.edp.rate = 162000;
1454 			break;
1455 		case EDP_RATE_2_7:
1456 			panel->vbt.edp.rate = 270000;
1457 			break;
1458 		case EDP_RATE_5_4:
1459 			panel->vbt.edp.rate = 540000;
1460 			break;
1461 		default:
1462 			drm_dbg_kms(display->drm,
1463 				    "VBT has unknown eDP link rate value %u\n",
1464 				    edp_link_params->rate);
1465 			break;
1466 		}
1467 	}
1468 
1469 	switch (edp_link_params->lanes) {
1470 	case EDP_LANE_1:
1471 		panel->vbt.edp.lanes = 1;
1472 		break;
1473 	case EDP_LANE_2:
1474 		panel->vbt.edp.lanes = 2;
1475 		break;
1476 	case EDP_LANE_4:
1477 		panel->vbt.edp.lanes = 4;
1478 		break;
1479 	default:
1480 		drm_dbg_kms(display->drm,
1481 			    "VBT has unknown eDP lane count value %u\n",
1482 			    edp_link_params->lanes);
1483 		break;
1484 	}
1485 
1486 	switch (edp_link_params->preemphasis) {
1487 	case EDP_PREEMPHASIS_NONE:
1488 		panel->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_0;
1489 		break;
1490 	case EDP_PREEMPHASIS_3_5dB:
1491 		panel->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_1;
1492 		break;
1493 	case EDP_PREEMPHASIS_6dB:
1494 		panel->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_2;
1495 		break;
1496 	case EDP_PREEMPHASIS_9_5dB:
1497 		panel->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_3;
1498 		break;
1499 	default:
1500 		drm_dbg_kms(display->drm,
1501 			    "VBT has unknown eDP pre-emphasis value %u\n",
1502 			    edp_link_params->preemphasis);
1503 		break;
1504 	}
1505 
1506 	switch (edp_link_params->vswing) {
1507 	case EDP_VSWING_0_4V:
1508 		panel->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_0;
1509 		break;
1510 	case EDP_VSWING_0_6V:
1511 		panel->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_1;
1512 		break;
1513 	case EDP_VSWING_0_8V:
1514 		panel->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
1515 		break;
1516 	case EDP_VSWING_1_2V:
1517 		panel->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
1518 		break;
1519 	default:
1520 		drm_dbg_kms(display->drm,
1521 			    "VBT has unknown eDP voltage swing value %u\n",
1522 			    edp_link_params->vswing);
1523 		break;
1524 	}
1525 
1526 	if (display->vbt.version >= 173) {
1527 		u8 vswing;
1528 
1529 		/* Don't read from VBT if module parameter has valid value*/
1530 		if (display->params.edp_vswing) {
1531 			panel->vbt.edp.low_vswing =
1532 				display->params.edp_vswing == 1;
1533 		} else {
1534 			vswing = (edp->edp_vswing_preemph >> (panel_type * 4)) & 0xF;
1535 			panel->vbt.edp.low_vswing = vswing == 0;
1536 		}
1537 	}
1538 
1539 	panel->vbt.edp.drrs_msa_timing_delay =
1540 		panel_bits(edp->sdrrs_msa_timing_delay, panel_type, 2);
1541 
1542 	if (display->vbt.version >= 244)
1543 		panel->vbt.edp.max_link_rate =
1544 			edp->edp_max_port_link_rate[panel_type] * 20;
1545 
1546 	if (display->vbt.version >= 251)
1547 		panel->vbt.edp.dsc_disable =
1548 			panel_bool(edp->edp_dsc_disable, panel_type);
1549 
1550 	if (display->vbt.version >= 261)
1551 		panel->vbt.edp.pipe_joiner_enable =
1552 			panel_bool(edp->pipe_joiner_enable, panel_type);
1553 }
1554 
1555 static void
1556 parse_psr(struct intel_display *display,
1557 	  struct intel_panel *panel)
1558 {
1559 	const struct bdb_psr *psr;
1560 	const struct psr_table *psr_table;
1561 	int panel_type = panel->vbt.panel_type;
1562 
1563 	psr = bdb_find_section(display, BDB_PSR);
1564 	if (!psr) {
1565 		drm_dbg_kms(display->drm, "No PSR BDB found.\n");
1566 		return;
1567 	}
1568 
1569 	psr_table = &psr->psr_table[panel_type];
1570 
1571 	panel->vbt.psr.full_link = psr_table->full_link;
1572 	panel->vbt.psr.require_aux_wakeup = psr_table->require_aux_to_wakeup;
1573 	panel->vbt.psr.idle_frames = psr_table->idle_frames;
1574 
1575 	/*
1576 	 * New psr options 0=500us, 1=100us, 2=2500us, 3=0us
1577 	 * Old decimal value is wake up time in multiples of 100 us.
1578 	 */
1579 	if (display->vbt.version >= 205 &&
1580 	    (DISPLAY_VER(display) >= 9 && !display->platform.broxton)) {
1581 		switch (psr_table->tp1_wakeup_time) {
1582 		case 0:
1583 			panel->vbt.psr.tp1_wakeup_time_us = 500;
1584 			break;
1585 		case 1:
1586 			panel->vbt.psr.tp1_wakeup_time_us = 100;
1587 			break;
1588 		case 3:
1589 			panel->vbt.psr.tp1_wakeup_time_us = 0;
1590 			break;
1591 		default:
1592 			drm_dbg_kms(display->drm,
1593 				    "VBT tp1 wakeup time value %d is outside range[0-3], defaulting to max value 2500us\n",
1594 				    psr_table->tp1_wakeup_time);
1595 			fallthrough;
1596 		case 2:
1597 			panel->vbt.psr.tp1_wakeup_time_us = 2500;
1598 			break;
1599 		}
1600 
1601 		switch (psr_table->tp2_tp3_wakeup_time) {
1602 		case 0:
1603 			panel->vbt.psr.tp2_tp3_wakeup_time_us = 500;
1604 			break;
1605 		case 1:
1606 			panel->vbt.psr.tp2_tp3_wakeup_time_us = 100;
1607 			break;
1608 		case 3:
1609 			panel->vbt.psr.tp2_tp3_wakeup_time_us = 0;
1610 			break;
1611 		default:
1612 			drm_dbg_kms(display->drm,
1613 				    "VBT tp2_tp3 wakeup time value %d is outside range[0-3], defaulting to max value 2500us\n",
1614 				    psr_table->tp2_tp3_wakeup_time);
1615 			fallthrough;
1616 		case 2:
1617 			panel->vbt.psr.tp2_tp3_wakeup_time_us = 2500;
1618 		break;
1619 		}
1620 	} else {
1621 		panel->vbt.psr.tp1_wakeup_time_us = psr_table->tp1_wakeup_time * 100;
1622 		panel->vbt.psr.tp2_tp3_wakeup_time_us = psr_table->tp2_tp3_wakeup_time * 100;
1623 	}
1624 
1625 	if (display->vbt.version >= 226) {
1626 		u32 wakeup_time = psr->psr2_tp2_tp3_wakeup_time;
1627 
1628 		wakeup_time = panel_bits(wakeup_time, panel_type, 2);
1629 		switch (wakeup_time) {
1630 		case 0:
1631 			wakeup_time = 500;
1632 			break;
1633 		case 1:
1634 			wakeup_time = 100;
1635 			break;
1636 		case 3:
1637 			wakeup_time = 50;
1638 			break;
1639 		default:
1640 		case 2:
1641 			wakeup_time = 2500;
1642 			break;
1643 		}
1644 		panel->vbt.psr.psr2_tp2_tp3_wakeup_time_us = wakeup_time;
1645 	} else {
1646 		/* Reusing PSR1 wakeup time for PSR2 in older VBTs */
1647 		panel->vbt.psr.psr2_tp2_tp3_wakeup_time_us = panel->vbt.psr.tp2_tp3_wakeup_time_us;
1648 	}
1649 }
1650 
1651 static void parse_dsi_backlight_ports(struct intel_display *display,
1652 				      struct intel_panel *panel,
1653 				      enum port port)
1654 {
1655 	enum port port_bc = DISPLAY_VER(display) >= 11 ? PORT_B : PORT_C;
1656 
1657 	if (!panel->vbt.dsi.config->dual_link || display->vbt.version < 197) {
1658 		panel->vbt.dsi.bl_ports = BIT(port);
1659 		if (panel->vbt.dsi.config->cabc_supported)
1660 			panel->vbt.dsi.cabc_ports = BIT(port);
1661 
1662 		return;
1663 	}
1664 
1665 	switch (panel->vbt.dsi.config->dl_dcs_backlight_ports) {
1666 	case DL_DCS_PORT_A:
1667 		panel->vbt.dsi.bl_ports = BIT(PORT_A);
1668 		break;
1669 	case DL_DCS_PORT_C:
1670 		panel->vbt.dsi.bl_ports = BIT(port_bc);
1671 		break;
1672 	default:
1673 	case DL_DCS_PORT_A_AND_C:
1674 		panel->vbt.dsi.bl_ports = BIT(PORT_A) | BIT(port_bc);
1675 		break;
1676 	}
1677 
1678 	if (!panel->vbt.dsi.config->cabc_supported)
1679 		return;
1680 
1681 	switch (panel->vbt.dsi.config->dl_dcs_cabc_ports) {
1682 	case DL_DCS_PORT_A:
1683 		panel->vbt.dsi.cabc_ports = BIT(PORT_A);
1684 		break;
1685 	case DL_DCS_PORT_C:
1686 		panel->vbt.dsi.cabc_ports = BIT(port_bc);
1687 		break;
1688 	default:
1689 	case DL_DCS_PORT_A_AND_C:
1690 		panel->vbt.dsi.cabc_ports =
1691 					BIT(PORT_A) | BIT(port_bc);
1692 		break;
1693 	}
1694 }
1695 
1696 static void
1697 parse_mipi_config(struct intel_display *display,
1698 		  struct intel_panel *panel)
1699 {
1700 	const struct bdb_mipi_config *start;
1701 	const struct mipi_config *config;
1702 	const struct mipi_pps_data *pps;
1703 	int panel_type = panel->vbt.panel_type;
1704 	enum port port;
1705 
1706 	/* parse MIPI blocks only if LFP type is MIPI */
1707 	if (!intel_bios_is_dsi_present(display, &port))
1708 		return;
1709 
1710 	/* Initialize this to undefined indicating no generic MIPI support */
1711 	panel->vbt.dsi.panel_id = MIPI_DSI_UNDEFINED_PANEL_ID;
1712 
1713 	start = bdb_find_section(display, BDB_MIPI_CONFIG);
1714 	if (!start) {
1715 		drm_dbg_kms(display->drm, "No MIPI config BDB found");
1716 		return;
1717 	}
1718 
1719 	drm_dbg_kms(display->drm, "Found MIPI Config block, panel index = %d\n",
1720 		    panel_type);
1721 
1722 	/*
1723 	 * get hold of the correct configuration block and pps data as per
1724 	 * the panel_type as index
1725 	 */
1726 	config = &start->config[panel_type];
1727 	pps = &start->pps[panel_type];
1728 
1729 	/* store as of now full data. Trim when we realise all is not needed */
1730 	panel->vbt.dsi.config = kmemdup(config, sizeof(struct mipi_config), GFP_KERNEL);
1731 	if (!panel->vbt.dsi.config)
1732 		return;
1733 
1734 	panel->vbt.dsi.pps = kmemdup(pps, sizeof(struct mipi_pps_data), GFP_KERNEL);
1735 	if (!panel->vbt.dsi.pps) {
1736 		kfree(panel->vbt.dsi.config);
1737 		return;
1738 	}
1739 
1740 	parse_dsi_backlight_ports(display, panel, port);
1741 
1742 	/* FIXME is the 90 vs. 270 correct? */
1743 	switch (config->rotation) {
1744 	case ENABLE_ROTATION_0:
1745 		/*
1746 		 * Most (all?) VBTs claim 0 degrees despite having
1747 		 * an upside down panel, thus we do not trust this.
1748 		 */
1749 		panel->vbt.dsi.orientation =
1750 			DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
1751 		break;
1752 	case ENABLE_ROTATION_90:
1753 		panel->vbt.dsi.orientation =
1754 			DRM_MODE_PANEL_ORIENTATION_RIGHT_UP;
1755 		break;
1756 	case ENABLE_ROTATION_180:
1757 		panel->vbt.dsi.orientation =
1758 			DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP;
1759 		break;
1760 	case ENABLE_ROTATION_270:
1761 		panel->vbt.dsi.orientation =
1762 			DRM_MODE_PANEL_ORIENTATION_LEFT_UP;
1763 		break;
1764 	}
1765 
1766 	/* We have mandatory mipi config blocks. Initialize as generic panel */
1767 	panel->vbt.dsi.panel_id = MIPI_DSI_GENERIC_PANEL_ID;
1768 }
1769 
1770 /* Find the sequence block and size for the given panel. */
1771 static const u8 *
1772 find_panel_sequence_block(struct intel_display *display,
1773 			  const struct bdb_mipi_sequence *sequence,
1774 			  u16 panel_id, u32 *seq_size)
1775 {
1776 	u32 total = get_blocksize(sequence);
1777 	const u8 *data = &sequence->data[0];
1778 	u8 current_id;
1779 	u32 current_size;
1780 	int header_size = sequence->version >= 3 ? 5 : 3;
1781 	int index = 0;
1782 	int i;
1783 
1784 	/* skip new block size */
1785 	if (sequence->version >= 3)
1786 		data += 4;
1787 
1788 	for (i = 0; i < MAX_MIPI_CONFIGURATIONS && index < total; i++) {
1789 		if (index + header_size > total) {
1790 			drm_err(display->drm,
1791 				"Invalid sequence block (header)\n");
1792 			return NULL;
1793 		}
1794 
1795 		current_id = *(data + index);
1796 		if (sequence->version >= 3)
1797 			current_size = *((const u32 *)(data + index + 1));
1798 		else
1799 			current_size = *((const u16 *)(data + index + 1));
1800 
1801 		index += header_size;
1802 
1803 		if (index + current_size > total) {
1804 			drm_err(display->drm, "Invalid sequence block\n");
1805 			return NULL;
1806 		}
1807 
1808 		if (current_id == panel_id) {
1809 			*seq_size = current_size;
1810 			return data + index;
1811 		}
1812 
1813 		index += current_size;
1814 	}
1815 
1816 	drm_err(display->drm,
1817 		"Sequence block detected but no valid configuration\n");
1818 
1819 	return NULL;
1820 }
1821 
1822 static int goto_next_sequence(struct intel_display *display,
1823 			      const u8 *data, int index, int total)
1824 {
1825 	u16 len;
1826 
1827 	/* Skip Sequence Byte. */
1828 	for (index = index + 1; index < total; index += len) {
1829 		u8 operation_byte = *(data + index);
1830 		index++;
1831 
1832 		switch (operation_byte) {
1833 		case MIPI_SEQ_ELEM_END:
1834 			return index;
1835 		case MIPI_SEQ_ELEM_SEND_PKT:
1836 			if (index + 4 > total)
1837 				return 0;
1838 
1839 			len = *((const u16 *)(data + index + 2)) + 4;
1840 			break;
1841 		case MIPI_SEQ_ELEM_DELAY:
1842 			len = 4;
1843 			break;
1844 		case MIPI_SEQ_ELEM_GPIO:
1845 			len = 2;
1846 			break;
1847 		case MIPI_SEQ_ELEM_I2C:
1848 			if (index + 7 > total)
1849 				return 0;
1850 			len = *(data + index + 6) + 7;
1851 			break;
1852 		default:
1853 			drm_err(display->drm, "Unknown operation byte\n");
1854 			return 0;
1855 		}
1856 	}
1857 
1858 	return 0;
1859 }
1860 
1861 static int goto_next_sequence_v3(struct intel_display *display,
1862 				 const u8 *data, int index, int total)
1863 {
1864 	int seq_end;
1865 	u16 len;
1866 	u32 size_of_sequence;
1867 
1868 	/*
1869 	 * Could skip sequence based on Size of Sequence alone, but also do some
1870 	 * checking on the structure.
1871 	 */
1872 	if (total < 5) {
1873 		drm_err(display->drm, "Too small sequence size\n");
1874 		return 0;
1875 	}
1876 
1877 	/* Skip Sequence Byte. */
1878 	index++;
1879 
1880 	/*
1881 	 * Size of Sequence. Excludes the Sequence Byte and the size itself,
1882 	 * includes MIPI_SEQ_ELEM_END byte, excludes the final MIPI_SEQ_END
1883 	 * byte.
1884 	 */
1885 	size_of_sequence = *((const u32 *)(data + index));
1886 	index += 4;
1887 
1888 	seq_end = index + size_of_sequence;
1889 	if (seq_end > total) {
1890 		drm_err(display->drm, "Invalid sequence size\n");
1891 		return 0;
1892 	}
1893 
1894 	for (; index < total; index += len) {
1895 		u8 operation_byte = *(data + index);
1896 		index++;
1897 
1898 		if (operation_byte == MIPI_SEQ_ELEM_END) {
1899 			if (index != seq_end) {
1900 				drm_err(display->drm,
1901 					"Invalid element structure\n");
1902 				return 0;
1903 			}
1904 			return index;
1905 		}
1906 
1907 		len = *(data + index);
1908 		index++;
1909 
1910 		/*
1911 		 * FIXME: Would be nice to check elements like for v1/v2 in
1912 		 * goto_next_sequence() above.
1913 		 */
1914 		switch (operation_byte) {
1915 		case MIPI_SEQ_ELEM_SEND_PKT:
1916 		case MIPI_SEQ_ELEM_DELAY:
1917 		case MIPI_SEQ_ELEM_GPIO:
1918 		case MIPI_SEQ_ELEM_I2C:
1919 		case MIPI_SEQ_ELEM_SPI:
1920 		case MIPI_SEQ_ELEM_PMIC:
1921 			break;
1922 		default:
1923 			drm_err(display->drm, "Unknown operation byte %u\n",
1924 				operation_byte);
1925 			break;
1926 		}
1927 	}
1928 
1929 	return 0;
1930 }
1931 
1932 /*
1933  * Get len of pre-fixed deassert fragment from a v1 init OTP sequence,
1934  * skip all delay + gpio operands and stop at the first DSI packet op.
1935  */
1936 static int get_init_otp_deassert_fragment_len(struct intel_display *display,
1937 					      struct intel_panel *panel)
1938 {
1939 	const u8 *data = panel->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP];
1940 	int index, len;
1941 
1942 	if (drm_WARN_ON(display->drm,
1943 			!data || panel->vbt.dsi.seq_version >= 3))
1944 		return 0;
1945 
1946 	/* index = 1 to skip sequence byte */
1947 	for (index = 1; data[index] != MIPI_SEQ_ELEM_END; index += len) {
1948 		switch (data[index]) {
1949 		case MIPI_SEQ_ELEM_SEND_PKT:
1950 			return index == 1 ? 0 : index;
1951 		case MIPI_SEQ_ELEM_DELAY:
1952 			len = 5; /* 1 byte for operand + uint32 */
1953 			break;
1954 		case MIPI_SEQ_ELEM_GPIO:
1955 			len = 3; /* 1 byte for op, 1 for gpio_nr, 1 for value */
1956 			break;
1957 		default:
1958 			return 0;
1959 		}
1960 	}
1961 
1962 	return 0;
1963 }
1964 
1965 /*
1966  * Some v1/v2 VBT MIPI sequences do the deassert in the init OTP sequence.
1967  * The deassert must be done before calling intel_dsi_device_ready, so for
1968  * these devices we split the init OTP sequence into a deassert sequence and
1969  * the actual init OTP part.
1970  */
1971 static void vlv_fixup_mipi_sequences(struct intel_display *display,
1972 				     struct intel_panel *panel)
1973 {
1974 	u8 *init_otp;
1975 	int len;
1976 
1977 	/* Limit this to v1/v2 vid-mode sequences */
1978 	if (panel->vbt.dsi.config->is_cmd_mode ||
1979 	    panel->vbt.dsi.seq_version >= 3)
1980 		return;
1981 
1982 	/* Only do this if there are otp and assert seqs and no deassert seq */
1983 	if (!panel->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP] ||
1984 	    !panel->vbt.dsi.sequence[MIPI_SEQ_ASSERT_RESET] ||
1985 	    panel->vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET])
1986 		return;
1987 
1988 	/* The deassert-sequence ends at the first DSI packet */
1989 	len = get_init_otp_deassert_fragment_len(display, panel);
1990 	if (!len)
1991 		return;
1992 
1993 	drm_dbg_kms(display->drm,
1994 		    "Using init OTP fragment to deassert reset\n");
1995 
1996 	/* Copy the fragment, update seq byte and terminate it */
1997 	init_otp = (u8 *)panel->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP];
1998 	panel->vbt.dsi.deassert_seq = kmemdup(init_otp, len + 1, GFP_KERNEL);
1999 	if (!panel->vbt.dsi.deassert_seq)
2000 		return;
2001 	panel->vbt.dsi.deassert_seq[0] = MIPI_SEQ_DEASSERT_RESET;
2002 	panel->vbt.dsi.deassert_seq[len] = MIPI_SEQ_ELEM_END;
2003 	/* Use the copy for deassert */
2004 	panel->vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET] =
2005 		panel->vbt.dsi.deassert_seq;
2006 	/* Replace the last byte of the fragment with init OTP seq byte */
2007 	init_otp[len - 1] = MIPI_SEQ_INIT_OTP;
2008 	/* And make MIPI_MIPI_SEQ_INIT_OTP point to it */
2009 	panel->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP] = init_otp + len - 1;
2010 }
2011 
2012 /*
2013  * Some machines (eg. Lenovo 82TQ) appear to have broken
2014  * VBT sequences:
2015  * - INIT_OTP is not present at all
2016  * - what should be in INIT_OTP is in DISPLAY_ON
2017  * - what should be in DISPLAY_ON is in BACKLIGHT_ON
2018  *   (along with the actual backlight stuff)
2019  *
2020  * To make those work we simply swap DISPLAY_ON and INIT_OTP.
2021  *
2022  * TODO: Do we need to limit this to specific machines,
2023  *       or examine the contents of the sequences to
2024  *       avoid false positives?
2025  */
2026 static void icl_fixup_mipi_sequences(struct intel_display *display,
2027 				     struct intel_panel *panel)
2028 {
2029 	if (!panel->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP] &&
2030 	    panel->vbt.dsi.sequence[MIPI_SEQ_DISPLAY_ON]) {
2031 		drm_dbg_kms(display->drm,
2032 			    "Broken VBT: Swapping INIT_OTP and DISPLAY_ON sequences\n");
2033 
2034 		swap(panel->vbt.dsi.sequence[MIPI_SEQ_INIT_OTP],
2035 		     panel->vbt.dsi.sequence[MIPI_SEQ_DISPLAY_ON]);
2036 	}
2037 }
2038 
2039 static void fixup_mipi_sequences(struct intel_display *display,
2040 				 struct intel_panel *panel)
2041 {
2042 	if (DISPLAY_VER(display) >= 11)
2043 		icl_fixup_mipi_sequences(display, panel);
2044 	else if (display->platform.valleyview)
2045 		vlv_fixup_mipi_sequences(display, panel);
2046 }
2047 
2048 static void
2049 parse_mipi_sequence(struct intel_display *display,
2050 		    struct intel_panel *panel)
2051 {
2052 	int panel_type = panel->vbt.panel_type;
2053 	const struct bdb_mipi_sequence *sequence;
2054 	const u8 *seq_data;
2055 	u32 seq_size;
2056 	u8 *data;
2057 	int index = 0;
2058 
2059 	/* Only our generic panel driver uses the sequence block. */
2060 	if (panel->vbt.dsi.panel_id != MIPI_DSI_GENERIC_PANEL_ID)
2061 		return;
2062 
2063 	sequence = bdb_find_section(display, BDB_MIPI_SEQUENCE);
2064 	if (!sequence) {
2065 		drm_dbg_kms(display->drm,
2066 			    "No MIPI Sequence found, parsing complete\n");
2067 		return;
2068 	}
2069 
2070 	/* Fail gracefully for forward incompatible sequence block. */
2071 	if (sequence->version >= 4) {
2072 		drm_err(display->drm,
2073 			"Unable to parse MIPI Sequence Block v%u\n",
2074 			sequence->version);
2075 		return;
2076 	}
2077 
2078 	drm_dbg_kms(display->drm, "Found MIPI sequence block v%u\n",
2079 		    sequence->version);
2080 
2081 	seq_data = find_panel_sequence_block(display, sequence, panel_type, &seq_size);
2082 	if (!seq_data)
2083 		return;
2084 
2085 	data = kmemdup(seq_data, seq_size, GFP_KERNEL);
2086 	if (!data)
2087 		return;
2088 
2089 	/* Parse the sequences, store pointers to each sequence. */
2090 	for (;;) {
2091 		u8 seq_id = *(data + index);
2092 		if (seq_id == MIPI_SEQ_END)
2093 			break;
2094 
2095 		if (seq_id >= MIPI_SEQ_MAX) {
2096 			drm_err(display->drm, "Unknown sequence %u\n",
2097 				seq_id);
2098 			goto err;
2099 		}
2100 
2101 		/* Log about presence of sequences we won't run. */
2102 		if (seq_id == MIPI_SEQ_TEAR_ON || seq_id == MIPI_SEQ_TEAR_OFF)
2103 			drm_dbg_kms(display->drm,
2104 				    "Unsupported sequence %u\n", seq_id);
2105 
2106 		panel->vbt.dsi.sequence[seq_id] = data + index;
2107 
2108 		if (sequence->version >= 3)
2109 			index = goto_next_sequence_v3(display, data, index, seq_size);
2110 		else
2111 			index = goto_next_sequence(display, data, index, seq_size);
2112 		if (!index) {
2113 			drm_err(display->drm, "Invalid sequence %u\n",
2114 				seq_id);
2115 			goto err;
2116 		}
2117 	}
2118 
2119 	panel->vbt.dsi.data = data;
2120 	panel->vbt.dsi.size = seq_size;
2121 	panel->vbt.dsi.seq_version = sequence->version;
2122 
2123 	fixup_mipi_sequences(display, panel);
2124 
2125 	drm_dbg_kms(display->drm, "MIPI related VBT parsing complete\n");
2126 	return;
2127 
2128 err:
2129 	kfree(data);
2130 	memset(panel->vbt.dsi.sequence, 0, sizeof(panel->vbt.dsi.sequence));
2131 }
2132 
2133 static void
2134 parse_compression_parameters(struct intel_display *display)
2135 {
2136 	const struct bdb_compression_parameters *params;
2137 	struct intel_bios_encoder_data *devdata;
2138 	u16 block_size;
2139 	int index;
2140 
2141 	if (display->vbt.version < 198)
2142 		return;
2143 
2144 	params = bdb_find_section(display, BDB_COMPRESSION_PARAMETERS);
2145 	if (params) {
2146 		/* Sanity checks */
2147 		if (params->entry_size != sizeof(params->data[0])) {
2148 			drm_dbg_kms(display->drm,
2149 				    "VBT: unsupported compression param entry size\n");
2150 			return;
2151 		}
2152 
2153 		block_size = get_blocksize(params);
2154 		if (block_size < sizeof(*params)) {
2155 			drm_dbg_kms(display->drm,
2156 				    "VBT: expected 16 compression param entries\n");
2157 			return;
2158 		}
2159 	}
2160 
2161 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
2162 		const struct child_device_config *child = &devdata->child;
2163 
2164 		if (!child->compression_enable)
2165 			continue;
2166 
2167 		if (!params) {
2168 			drm_dbg_kms(display->drm,
2169 				    "VBT: compression params not available\n");
2170 			continue;
2171 		}
2172 
2173 		if (child->compression_method_cps) {
2174 			drm_dbg_kms(display->drm,
2175 				    "VBT: CPS compression not supported\n");
2176 			continue;
2177 		}
2178 
2179 		index = child->compression_structure_index;
2180 
2181 		devdata->dsc = kmemdup(&params->data[index],
2182 				       sizeof(*devdata->dsc), GFP_KERNEL);
2183 	}
2184 }
2185 
2186 static u8 translate_iboost(struct intel_display *display, u8 val)
2187 {
2188 	static const u8 mapping[] = { 1, 3, 7 }; /* See VBT spec */
2189 
2190 	if (val >= ARRAY_SIZE(mapping)) {
2191 		drm_dbg_kms(display->drm,
2192 			    "Unsupported I_boost value found in VBT (%d), display may not work properly\n", val);
2193 		return 0;
2194 	}
2195 	return mapping[val];
2196 }
2197 
2198 static const u8 cnp_ddc_pin_map[] = {
2199 	[0] = 0, /* N/A */
2200 	[GMBUS_PIN_1_BXT] = DDC_BUS_DDI_B,
2201 	[GMBUS_PIN_2_BXT] = DDC_BUS_DDI_C,
2202 	[GMBUS_PIN_4_CNP] = DDC_BUS_DDI_D, /* sic */
2203 	[GMBUS_PIN_3_BXT] = DDC_BUS_DDI_F, /* sic */
2204 };
2205 
2206 static const u8 icp_ddc_pin_map[] = {
2207 	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
2208 	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
2209 	[GMBUS_PIN_3_BXT] = TGL_DDC_BUS_DDI_C,
2210 	[GMBUS_PIN_9_TC1_ICP] = ICL_DDC_BUS_PORT_1,
2211 	[GMBUS_PIN_10_TC2_ICP] = ICL_DDC_BUS_PORT_2,
2212 	[GMBUS_PIN_11_TC3_ICP] = ICL_DDC_BUS_PORT_3,
2213 	[GMBUS_PIN_12_TC4_ICP] = ICL_DDC_BUS_PORT_4,
2214 	[GMBUS_PIN_13_TC5_TGP] = TGL_DDC_BUS_PORT_5,
2215 	[GMBUS_PIN_14_TC6_TGP] = TGL_DDC_BUS_PORT_6,
2216 };
2217 
2218 static const u8 rkl_pch_tgp_ddc_pin_map[] = {
2219 	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
2220 	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
2221 	[GMBUS_PIN_9_TC1_ICP] = RKL_DDC_BUS_DDI_D,
2222 	[GMBUS_PIN_10_TC2_ICP] = RKL_DDC_BUS_DDI_E,
2223 };
2224 
2225 static const u8 adls_ddc_pin_map[] = {
2226 	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
2227 	[GMBUS_PIN_9_TC1_ICP] = ADLS_DDC_BUS_PORT_TC1,
2228 	[GMBUS_PIN_10_TC2_ICP] = ADLS_DDC_BUS_PORT_TC2,
2229 	[GMBUS_PIN_11_TC3_ICP] = ADLS_DDC_BUS_PORT_TC3,
2230 	[GMBUS_PIN_12_TC4_ICP] = ADLS_DDC_BUS_PORT_TC4,
2231 };
2232 
2233 static const u8 gen9bc_tgp_ddc_pin_map[] = {
2234 	[GMBUS_PIN_2_BXT] = DDC_BUS_DDI_B,
2235 	[GMBUS_PIN_9_TC1_ICP] = DDC_BUS_DDI_C,
2236 	[GMBUS_PIN_10_TC2_ICP] = DDC_BUS_DDI_D,
2237 };
2238 
2239 static const u8 adlp_ddc_pin_map[] = {
2240 	[GMBUS_PIN_1_BXT] = ICL_DDC_BUS_DDI_A,
2241 	[GMBUS_PIN_2_BXT] = ICL_DDC_BUS_DDI_B,
2242 	[GMBUS_PIN_9_TC1_ICP] = ADLP_DDC_BUS_PORT_TC1,
2243 	[GMBUS_PIN_10_TC2_ICP] = ADLP_DDC_BUS_PORT_TC2,
2244 	[GMBUS_PIN_11_TC3_ICP] = ADLP_DDC_BUS_PORT_TC3,
2245 	[GMBUS_PIN_12_TC4_ICP] = ADLP_DDC_BUS_PORT_TC4,
2246 };
2247 
2248 static u8 map_ddc_pin(struct intel_display *display, u8 vbt_pin)
2249 {
2250 	const u8 *ddc_pin_map;
2251 	int i, n_entries;
2252 
2253 	if (INTEL_PCH_TYPE(display) >= PCH_MTL || display->platform.alderlake_p) {
2254 		ddc_pin_map = adlp_ddc_pin_map;
2255 		n_entries = ARRAY_SIZE(adlp_ddc_pin_map);
2256 	} else if (display->platform.alderlake_s) {
2257 		ddc_pin_map = adls_ddc_pin_map;
2258 		n_entries = ARRAY_SIZE(adls_ddc_pin_map);
2259 	} else if (INTEL_PCH_TYPE(display) >= PCH_DG1) {
2260 		return vbt_pin;
2261 	} else if (display->platform.rocketlake && INTEL_PCH_TYPE(display) == PCH_TGP) {
2262 		ddc_pin_map = rkl_pch_tgp_ddc_pin_map;
2263 		n_entries = ARRAY_SIZE(rkl_pch_tgp_ddc_pin_map);
2264 	} else if (HAS_PCH_TGP(display) && DISPLAY_VER(display) == 9) {
2265 		ddc_pin_map = gen9bc_tgp_ddc_pin_map;
2266 		n_entries = ARRAY_SIZE(gen9bc_tgp_ddc_pin_map);
2267 	} else if (INTEL_PCH_TYPE(display) >= PCH_ICP) {
2268 		ddc_pin_map = icp_ddc_pin_map;
2269 		n_entries = ARRAY_SIZE(icp_ddc_pin_map);
2270 	} else if (HAS_PCH_CNP(display)) {
2271 		ddc_pin_map = cnp_ddc_pin_map;
2272 		n_entries = ARRAY_SIZE(cnp_ddc_pin_map);
2273 	} else {
2274 		/* Assuming direct map */
2275 		return vbt_pin;
2276 	}
2277 
2278 	for (i = 0; i < n_entries; i++) {
2279 		if (ddc_pin_map[i] == vbt_pin)
2280 			return i;
2281 	}
2282 
2283 	drm_dbg_kms(display->drm,
2284 		    "Ignoring alternate pin: VBT claims DDC pin %d, which is not valid for this platform\n",
2285 		    vbt_pin);
2286 	return 0;
2287 }
2288 
2289 static u8 dvo_port_type(u8 dvo_port)
2290 {
2291 	switch (dvo_port) {
2292 	case DVO_PORT_HDMIA:
2293 	case DVO_PORT_HDMIB:
2294 	case DVO_PORT_HDMIC:
2295 	case DVO_PORT_HDMID:
2296 	case DVO_PORT_HDMIE:
2297 	case DVO_PORT_HDMIF:
2298 	case DVO_PORT_HDMIG:
2299 	case DVO_PORT_HDMIH:
2300 	case DVO_PORT_HDMII:
2301 		return DVO_PORT_HDMIA;
2302 	case DVO_PORT_DPA:
2303 	case DVO_PORT_DPB:
2304 	case DVO_PORT_DPC:
2305 	case DVO_PORT_DPD:
2306 	case DVO_PORT_DPE:
2307 	case DVO_PORT_DPF:
2308 	case DVO_PORT_DPG:
2309 	case DVO_PORT_DPH:
2310 	case DVO_PORT_DPI:
2311 		return DVO_PORT_DPA;
2312 	case DVO_PORT_MIPIA:
2313 	case DVO_PORT_MIPIB:
2314 	case DVO_PORT_MIPIC:
2315 	case DVO_PORT_MIPID:
2316 		return DVO_PORT_MIPIA;
2317 	default:
2318 		return dvo_port;
2319 	}
2320 }
2321 
2322 static enum port __dvo_port_to_port(int n_ports, int n_dvo,
2323 				    const int port_mapping[][3], u8 dvo_port)
2324 {
2325 	enum port port;
2326 	int i;
2327 
2328 	for (port = PORT_A; port < n_ports; port++) {
2329 		for (i = 0; i < n_dvo; i++) {
2330 			if (port_mapping[port][i] == -1)
2331 				break;
2332 
2333 			if (dvo_port == port_mapping[port][i])
2334 				return port;
2335 		}
2336 	}
2337 
2338 	return PORT_NONE;
2339 }
2340 
2341 static enum port dvo_port_to_port(struct intel_display *display,
2342 				  u8 dvo_port)
2343 {
2344 	/*
2345 	 * Each DDI port can have more than one value on the "DVO Port" field,
2346 	 * so look for all the possible values for each port.
2347 	 */
2348 	static const int port_mapping[][3] = {
2349 		[PORT_A] = { DVO_PORT_HDMIA, DVO_PORT_DPA, -1 },
2350 		[PORT_B] = { DVO_PORT_HDMIB, DVO_PORT_DPB, -1 },
2351 		[PORT_C] = { DVO_PORT_HDMIC, DVO_PORT_DPC, -1 },
2352 		[PORT_D] = { DVO_PORT_HDMID, DVO_PORT_DPD, -1 },
2353 		[PORT_E] = { DVO_PORT_HDMIE, DVO_PORT_DPE, DVO_PORT_CRT },
2354 		[PORT_F] = { DVO_PORT_HDMIF, DVO_PORT_DPF, -1 },
2355 		[PORT_G] = { DVO_PORT_HDMIG, DVO_PORT_DPG, -1 },
2356 		[PORT_H] = { DVO_PORT_HDMIH, DVO_PORT_DPH, -1 },
2357 		[PORT_I] = { DVO_PORT_HDMII, DVO_PORT_DPI, -1 },
2358 	};
2359 	/*
2360 	 * RKL VBT uses PHY based mapping. Combo PHYs A,B,C,D
2361 	 * map to DDI A,B,TC1,TC2 respectively.
2362 	 */
2363 	static const int rkl_port_mapping[][3] = {
2364 		[PORT_A] = { DVO_PORT_HDMIA, DVO_PORT_DPA, -1 },
2365 		[PORT_B] = { DVO_PORT_HDMIB, DVO_PORT_DPB, -1 },
2366 		[PORT_C] = { -1 },
2367 		[PORT_TC1] = { DVO_PORT_HDMIC, DVO_PORT_DPC, -1 },
2368 		[PORT_TC2] = { DVO_PORT_HDMID, DVO_PORT_DPD, -1 },
2369 	};
2370 	/*
2371 	 * Alderlake S ports used in the driver are PORT_A, PORT_D, PORT_E,
2372 	 * PORT_F and PORT_G, we need to map that to correct VBT sections.
2373 	 */
2374 	static const int adls_port_mapping[][3] = {
2375 		[PORT_A] = { DVO_PORT_HDMIA, DVO_PORT_DPA, -1 },
2376 		[PORT_B] = { -1 },
2377 		[PORT_C] = { -1 },
2378 		[PORT_TC1] = { DVO_PORT_HDMIB, DVO_PORT_DPB, -1 },
2379 		[PORT_TC2] = { DVO_PORT_HDMIC, DVO_PORT_DPC, -1 },
2380 		[PORT_TC3] = { DVO_PORT_HDMID, DVO_PORT_DPD, -1 },
2381 		[PORT_TC4] = { DVO_PORT_HDMIE, DVO_PORT_DPE, -1 },
2382 	};
2383 	static const int xelpd_port_mapping[][3] = {
2384 		[PORT_A] = { DVO_PORT_HDMIA, DVO_PORT_DPA, -1 },
2385 		[PORT_B] = { DVO_PORT_HDMIB, DVO_PORT_DPB, -1 },
2386 		[PORT_C] = { DVO_PORT_HDMIC, DVO_PORT_DPC, -1 },
2387 		[PORT_D_XELPD] = { DVO_PORT_HDMID, DVO_PORT_DPD, -1 },
2388 		[PORT_E_XELPD] = { DVO_PORT_HDMIE, DVO_PORT_DPE, -1 },
2389 		[PORT_TC1] = { DVO_PORT_HDMIF, DVO_PORT_DPF, -1 },
2390 		[PORT_TC2] = { DVO_PORT_HDMIG, DVO_PORT_DPG, -1 },
2391 		[PORT_TC3] = { DVO_PORT_HDMIH, DVO_PORT_DPH, -1 },
2392 		[PORT_TC4] = { DVO_PORT_HDMII, DVO_PORT_DPI, -1 },
2393 	};
2394 
2395 	if (DISPLAY_VER(display) >= 13)
2396 		return __dvo_port_to_port(ARRAY_SIZE(xelpd_port_mapping),
2397 					  ARRAY_SIZE(xelpd_port_mapping[0]),
2398 					  xelpd_port_mapping,
2399 					  dvo_port);
2400 	else if (display->platform.alderlake_s)
2401 		return __dvo_port_to_port(ARRAY_SIZE(adls_port_mapping),
2402 					  ARRAY_SIZE(adls_port_mapping[0]),
2403 					  adls_port_mapping,
2404 					  dvo_port);
2405 	else if (display->platform.dg1 || display->platform.rocketlake)
2406 		return __dvo_port_to_port(ARRAY_SIZE(rkl_port_mapping),
2407 					  ARRAY_SIZE(rkl_port_mapping[0]),
2408 					  rkl_port_mapping,
2409 					  dvo_port);
2410 	else
2411 		return __dvo_port_to_port(ARRAY_SIZE(port_mapping),
2412 					  ARRAY_SIZE(port_mapping[0]),
2413 					  port_mapping,
2414 					  dvo_port);
2415 }
2416 
2417 static enum port
2418 dsi_dvo_port_to_port(struct intel_display *display, u8 dvo_port)
2419 {
2420 	switch (dvo_port) {
2421 	case DVO_PORT_MIPIA:
2422 		return PORT_A;
2423 	case DVO_PORT_MIPIC:
2424 		if (DISPLAY_VER(display) >= 11)
2425 			return PORT_B;
2426 		else
2427 			return PORT_C;
2428 	default:
2429 		return PORT_NONE;
2430 	}
2431 }
2432 
2433 enum port intel_bios_encoder_port(const struct intel_bios_encoder_data *devdata)
2434 {
2435 	struct intel_display *display = devdata->display;
2436 	const struct child_device_config *child = &devdata->child;
2437 	enum port port;
2438 
2439 	port = dvo_port_to_port(display, child->dvo_port);
2440 	if (port == PORT_NONE && DISPLAY_VER(display) >= 11)
2441 		port = dsi_dvo_port_to_port(display, child->dvo_port);
2442 
2443 	return port;
2444 }
2445 
2446 static int parse_bdb_230_dp_max_link_rate(const int vbt_max_link_rate)
2447 {
2448 	switch (vbt_max_link_rate) {
2449 	default:
2450 	case BDB_230_VBT_DP_MAX_LINK_RATE_DEF:
2451 		return 0;
2452 	case BDB_230_VBT_DP_MAX_LINK_RATE_UHBR20:
2453 		return 2000000;
2454 	case BDB_230_VBT_DP_MAX_LINK_RATE_UHBR13P5:
2455 		return 1350000;
2456 	case BDB_230_VBT_DP_MAX_LINK_RATE_UHBR10:
2457 		return 1000000;
2458 	case BDB_230_VBT_DP_MAX_LINK_RATE_HBR3:
2459 		return 810000;
2460 	case BDB_230_VBT_DP_MAX_LINK_RATE_HBR2:
2461 		return 540000;
2462 	case BDB_230_VBT_DP_MAX_LINK_RATE_HBR:
2463 		return 270000;
2464 	case BDB_230_VBT_DP_MAX_LINK_RATE_LBR:
2465 		return 162000;
2466 	}
2467 }
2468 
2469 static int parse_bdb_216_dp_max_link_rate(const int vbt_max_link_rate)
2470 {
2471 	switch (vbt_max_link_rate) {
2472 	default:
2473 	case BDB_216_VBT_DP_MAX_LINK_RATE_HBR3:
2474 		return 810000;
2475 	case BDB_216_VBT_DP_MAX_LINK_RATE_HBR2:
2476 		return 540000;
2477 	case BDB_216_VBT_DP_MAX_LINK_RATE_HBR:
2478 		return 270000;
2479 	case BDB_216_VBT_DP_MAX_LINK_RATE_LBR:
2480 		return 162000;
2481 	}
2482 }
2483 
2484 static u32 edp_rate_override_mask(int rate)
2485 {
2486 	switch (rate) {
2487 	case 2000000: return BDB_263_VBT_EDP_LINK_RATE_20;
2488 	case 1350000: return BDB_263_VBT_EDP_LINK_RATE_13_5;
2489 	case 1000000: return BDB_263_VBT_EDP_LINK_RATE_10;
2490 	case 810000: return BDB_263_VBT_EDP_LINK_RATE_8_1;
2491 	case 675000: return BDB_263_VBT_EDP_LINK_RATE_6_75;
2492 	case 540000: return BDB_263_VBT_EDP_LINK_RATE_5_4;
2493 	case 432000: return BDB_263_VBT_EDP_LINK_RATE_4_32;
2494 	case 324000: return BDB_263_VBT_EDP_LINK_RATE_3_24;
2495 	case 270000: return BDB_263_VBT_EDP_LINK_RATE_2_7;
2496 	case 243000: return BDB_263_VBT_EDP_LINK_RATE_2_43;
2497 	case 216000: return BDB_263_VBT_EDP_LINK_RATE_2_16;
2498 	case 162000: return BDB_263_VBT_EDP_LINK_RATE_1_62;
2499 	default: return 0;
2500 	}
2501 }
2502 
2503 int intel_bios_dp_max_link_rate(const struct intel_bios_encoder_data *devdata)
2504 {
2505 	if (!devdata || devdata->display->vbt.version < 216)
2506 		return 0;
2507 
2508 	if (devdata->display->vbt.version >= 230)
2509 		return parse_bdb_230_dp_max_link_rate(devdata->child.dp_max_link_rate);
2510 	else
2511 		return parse_bdb_216_dp_max_link_rate(devdata->child.dp_max_link_rate);
2512 }
2513 
2514 int intel_bios_dp_max_lane_count(const struct intel_bios_encoder_data *devdata)
2515 {
2516 	if (!devdata || devdata->display->vbt.version < 244)
2517 		return 0;
2518 
2519 	return devdata->child.dp_max_lane_count + 1;
2520 }
2521 
2522 bool
2523 intel_bios_encoder_reject_edp_rate(const struct intel_bios_encoder_data *devdata,
2524 				   int rate)
2525 {
2526 	if (!devdata || devdata->display->vbt.version < 263)
2527 		return false;
2528 
2529 	if (devdata->child.edp_data_rate_override == BDB_263_VBT_EDP_RATES_MASK)
2530 		return false;
2531 
2532 	return devdata->child.edp_data_rate_override & edp_rate_override_mask(rate);
2533 }
2534 
2535 static void sanitize_dedicated_external(struct intel_bios_encoder_data *devdata,
2536 					enum port port)
2537 {
2538 	struct intel_display *display = devdata->display;
2539 
2540 	if (!intel_bios_encoder_is_dedicated_external(devdata))
2541 		return;
2542 
2543 	/*
2544 	 * Since dedicated_external is for ports connected to PHYs outside of
2545 	 * the Type-C subsystem, clear bits that would only make sense for ports
2546 	 * with PHYs in the Type-C subsystem.
2547 	 */
2548 
2549 	/*
2550 	 * Bit dp_usb_type_c is marked as "don't care" in Bspec when
2551 	 * dedicated_external is set.
2552 	 */
2553 	if (devdata->child.dp_usb_type_c) {
2554 		drm_dbg_kms(display->drm,
2555 			    "VBT claims Port %c supports USB Type-C, but the port is dedicated external, ignoring\n",
2556 			    port_name(port));
2557 		devdata->child.dp_usb_type_c = 0;
2558 	}
2559 
2560 	/*
2561 	 * Bit tbt is marked as "don't care" in Bspec when dedicated_external is
2562 	 * set.
2563 	 */
2564 	if (devdata->child.tbt) {
2565 		drm_dbg_kms(display->drm,
2566 			    "VBT claims Port %c supports TBT, but the port is dedicated external, ignoring\n",
2567 			    port_name(port));
2568 		devdata->child.tbt = 0;
2569 	}
2570 
2571 	/*
2572 	 * DDI allocation for TC capable ports only make sense for PHYs in the
2573 	 * Type-C subsystem.
2574 	 */
2575 	if (devdata->child.dyn_port_over_tc) {
2576 		drm_dbg_kms(display->drm,
2577 			    "VBT claims Port %c supports dynamic DDI allocation in TCSS, but the port is dedicated external, ignoring\n",
2578 			    port_name(port));
2579 		devdata->child.dyn_port_over_tc = 0;
2580 	}
2581 }
2582 
2583 static void sanitize_device_type(struct intel_bios_encoder_data *devdata,
2584 				 enum port port)
2585 {
2586 	struct intel_display *display = devdata->display;
2587 	bool is_hdmi;
2588 
2589 	if (port != PORT_A || DISPLAY_VER(display) >= 12)
2590 		return;
2591 
2592 	if (!intel_bios_encoder_supports_dvi(devdata))
2593 		return;
2594 
2595 	is_hdmi = intel_bios_encoder_supports_hdmi(devdata);
2596 
2597 	drm_dbg_kms(display->drm, "VBT claims port A supports DVI%s, ignoring\n",
2598 		    is_hdmi ? "/HDMI" : "");
2599 
2600 	devdata->child.device_type &= ~DEVICE_TYPE_TMDS_DVI_SIGNALING;
2601 	devdata->child.device_type |= DEVICE_TYPE_NOT_HDMI_OUTPUT;
2602 }
2603 
2604 static void sanitize_hdmi_level_shift(struct intel_bios_encoder_data *devdata,
2605 				      enum port port)
2606 {
2607 	struct intel_display *display = devdata->display;
2608 
2609 	if (!intel_bios_encoder_supports_dvi(devdata))
2610 		return;
2611 
2612 	/*
2613 	 * Some BDW machines (eg. HP Pavilion 15-ab) shipped
2614 	 * with a HSW VBT where the level shifter value goes
2615 	 * up to 11, whereas the BDW max is 9.
2616 	 */
2617 	if (display->platform.broadwell && devdata->child.hdmi_level_shifter_value > 9) {
2618 		drm_dbg_kms(display->drm,
2619 			    "Bogus port %c VBT HDMI level shift %d, adjusting to %d\n",
2620 			    port_name(port), devdata->child.hdmi_level_shifter_value, 9);
2621 
2622 		devdata->child.hdmi_level_shifter_value = 9;
2623 	}
2624 }
2625 
2626 static bool
2627 intel_bios_encoder_supports_crt(const struct intel_bios_encoder_data *devdata)
2628 {
2629 	return devdata->child.device_type & DEVICE_TYPE_ANALOG_OUTPUT;
2630 }
2631 
2632 bool
2633 intel_bios_encoder_supports_dvi(const struct intel_bios_encoder_data *devdata)
2634 {
2635 	return devdata->child.device_type & DEVICE_TYPE_TMDS_DVI_SIGNALING;
2636 }
2637 
2638 bool
2639 intel_bios_encoder_supports_hdmi(const struct intel_bios_encoder_data *devdata)
2640 {
2641 	return intel_bios_encoder_supports_dvi(devdata) &&
2642 		(devdata->child.device_type & DEVICE_TYPE_NOT_HDMI_OUTPUT) == 0;
2643 }
2644 
2645 bool
2646 intel_bios_encoder_supports_dp(const struct intel_bios_encoder_data *devdata)
2647 {
2648 	return devdata->child.device_type & DEVICE_TYPE_DISPLAYPORT_OUTPUT;
2649 }
2650 
2651 bool
2652 intel_bios_encoder_supports_edp(const struct intel_bios_encoder_data *devdata)
2653 {
2654 	return intel_bios_encoder_supports_dp(devdata) &&
2655 		devdata->child.device_type & DEVICE_TYPE_INTERNAL_CONNECTOR;
2656 }
2657 
2658 bool
2659 intel_bios_encoder_supports_dsi(const struct intel_bios_encoder_data *devdata)
2660 {
2661 	return devdata->child.device_type & DEVICE_TYPE_MIPI_OUTPUT;
2662 }
2663 
2664 bool
2665 intel_bios_encoder_is_lspcon(const struct intel_bios_encoder_data *devdata)
2666 {
2667 	return devdata && HAS_LSPCON(devdata->display) && devdata->child.lspcon;
2668 }
2669 
2670 /* This is an index in the HDMI/DVI DDI buffer translation table, or -1 */
2671 int intel_bios_hdmi_level_shift(const struct intel_bios_encoder_data *devdata)
2672 {
2673 	if (!devdata || devdata->display->vbt.version < 158 ||
2674 	    DISPLAY_VER(devdata->display) >= 14)
2675 		return -1;
2676 
2677 	return devdata->child.hdmi_level_shifter_value;
2678 }
2679 
2680 int intel_bios_hdmi_max_tmds_clock(const struct intel_bios_encoder_data *devdata)
2681 {
2682 	if (!devdata || devdata->display->vbt.version < 204)
2683 		return 0;
2684 
2685 	switch (devdata->child.hdmi_max_data_rate) {
2686 	default:
2687 		MISSING_CASE(devdata->child.hdmi_max_data_rate);
2688 		fallthrough;
2689 	case HDMI_MAX_DATA_RATE_PLATFORM:
2690 		return 0;
2691 	case HDMI_MAX_DATA_RATE_594:
2692 		return 594000;
2693 	case HDMI_MAX_DATA_RATE_340:
2694 		return 340000;
2695 	case HDMI_MAX_DATA_RATE_300:
2696 		return 300000;
2697 	case HDMI_MAX_DATA_RATE_297:
2698 		return 297000;
2699 	case HDMI_MAX_DATA_RATE_165:
2700 		return 165000;
2701 	}
2702 }
2703 
2704 static bool is_port_valid(struct intel_display *display, enum port port)
2705 {
2706 	/*
2707 	 * On some ICL SKUs port F is not present, but broken VBTs mark
2708 	 * the port as present. Only try to initialize port F for the
2709 	 * SKUs that may actually have it.
2710 	 */
2711 	if (port == PORT_F && display->platform.icelake)
2712 		return display->platform.icelake_port_f;
2713 
2714 	return true;
2715 }
2716 
2717 static void print_ddi_port(const struct intel_bios_encoder_data *devdata)
2718 {
2719 	struct intel_display *display = devdata->display;
2720 	const struct child_device_config *child = &devdata->child;
2721 	bool is_dvi, is_hdmi, is_dp, is_edp, is_dsi, is_crt, supports_typec_usb, supports_tbt;
2722 	int dp_boost_level, dp_max_link_rate, hdmi_boost_level, hdmi_level_shift, max_tmds_clock;
2723 	enum port port;
2724 
2725 	port = intel_bios_encoder_port(devdata);
2726 	if (port == PORT_NONE)
2727 		return;
2728 
2729 	is_dvi = intel_bios_encoder_supports_dvi(devdata);
2730 	is_dp = intel_bios_encoder_supports_dp(devdata);
2731 	is_crt = intel_bios_encoder_supports_crt(devdata);
2732 	is_hdmi = intel_bios_encoder_supports_hdmi(devdata);
2733 	is_edp = intel_bios_encoder_supports_edp(devdata);
2734 	is_dsi = intel_bios_encoder_supports_dsi(devdata);
2735 
2736 	supports_typec_usb = intel_bios_encoder_supports_typec_usb(devdata);
2737 	supports_tbt = intel_bios_encoder_supports_tbt(devdata);
2738 
2739 	drm_dbg_kms(display->drm,
2740 		    "Port %c VBT info: CRT:%d DVI:%d HDMI:%d DP:%d eDP:%d DSI:%d DP++:%d LSPCON:%d USB-Type-C:%d TBT:%d DSC:%d\n",
2741 		    port_name(port), is_crt, is_dvi, is_hdmi, is_dp, is_edp, is_dsi,
2742 		    intel_bios_encoder_supports_dp_dual_mode(devdata),
2743 		    intel_bios_encoder_is_lspcon(devdata),
2744 		    supports_typec_usb, supports_tbt,
2745 		    devdata->dsc != NULL);
2746 
2747 	if (intel_bios_encoder_is_dedicated_external(devdata))
2748 		drm_dbg_kms(display->drm,
2749 			    "Port %c is dedicated external\n",
2750 			    port_name(port));
2751 
2752 	if (intel_bios_encoder_supports_dyn_port_over_tc(devdata))
2753 		drm_dbg_kms(display->drm,
2754 			    "Port %c supports dynamic DDI allocation in TCSS\n",
2755 			    port_name(port));
2756 
2757 	hdmi_level_shift = intel_bios_hdmi_level_shift(devdata);
2758 	if (hdmi_level_shift >= 0) {
2759 		drm_dbg_kms(display->drm,
2760 			    "Port %c VBT HDMI level shift: %d\n",
2761 			    port_name(port), hdmi_level_shift);
2762 	}
2763 
2764 	max_tmds_clock = intel_bios_hdmi_max_tmds_clock(devdata);
2765 	if (max_tmds_clock)
2766 		drm_dbg_kms(display->drm,
2767 			    "Port %c VBT HDMI max TMDS clock: %d kHz\n",
2768 			    port_name(port), max_tmds_clock);
2769 
2770 	/* I_boost config for SKL and above */
2771 	dp_boost_level = intel_bios_dp_boost_level(devdata);
2772 	if (dp_boost_level)
2773 		drm_dbg_kms(display->drm,
2774 			    "Port %c VBT (e)DP boost level: %d\n",
2775 			    port_name(port), dp_boost_level);
2776 
2777 	hdmi_boost_level = intel_bios_hdmi_boost_level(devdata);
2778 	if (hdmi_boost_level)
2779 		drm_dbg_kms(display->drm,
2780 			    "Port %c VBT HDMI boost level: %d\n",
2781 			    port_name(port), hdmi_boost_level);
2782 
2783 	dp_max_link_rate = intel_bios_dp_max_link_rate(devdata);
2784 	if (dp_max_link_rate)
2785 		drm_dbg_kms(display->drm,
2786 			    "Port %c VBT DP max link rate: %d\n",
2787 			    port_name(port), dp_max_link_rate);
2788 
2789 	/*
2790 	 * FIXME need to implement support for VBT
2791 	 * vswing/preemph tables should this ever trigger.
2792 	 */
2793 	drm_WARN(display->drm, child->use_vbt_vswing,
2794 		 "Port %c asks to use VBT vswing/preemph tables\n",
2795 		 port_name(port));
2796 }
2797 
2798 static void parse_ddi_port(struct intel_bios_encoder_data *devdata)
2799 {
2800 	struct intel_display *display = devdata->display;
2801 	enum port port;
2802 
2803 	port = intel_bios_encoder_port(devdata);
2804 	if (port == PORT_NONE)
2805 		return;
2806 
2807 	if (!is_port_valid(display, port)) {
2808 		drm_dbg_kms(display->drm,
2809 			    "VBT reports port %c as supported, but that can't be true: skipping\n",
2810 			    port_name(port));
2811 		return;
2812 	}
2813 
2814 	sanitize_dedicated_external(devdata, port);
2815 	sanitize_device_type(devdata, port);
2816 	sanitize_hdmi_level_shift(devdata, port);
2817 }
2818 
2819 static bool has_ddi_port_info(struct intel_display *display)
2820 {
2821 	return DISPLAY_VER(display) >= 5 || display->platform.g4x;
2822 }
2823 
2824 static void parse_ddi_ports(struct intel_display *display)
2825 {
2826 	struct intel_bios_encoder_data *devdata;
2827 
2828 	if (!has_ddi_port_info(display))
2829 		return;
2830 
2831 	list_for_each_entry(devdata, &display->vbt.display_devices, node)
2832 		parse_ddi_port(devdata);
2833 
2834 	list_for_each_entry(devdata, &display->vbt.display_devices, node)
2835 		print_ddi_port(devdata);
2836 }
2837 
2838 static int child_device_expected_size(u16 version)
2839 {
2840 	BUILD_BUG_ON(sizeof(struct child_device_config) < 40);
2841 
2842 	if (version > 264)
2843 		return -ENOENT;
2844 	else if (version >= 263)
2845 		return 44;
2846 	else if (version >= 256)
2847 		return 40;
2848 	else if (version >= 216)
2849 		return 39;
2850 	else if (version >= 196)
2851 		return 38;
2852 	else if (version >= 195)
2853 		return 37;
2854 	else if (version >= 111)
2855 		return LEGACY_CHILD_DEVICE_CONFIG_SIZE;
2856 	else if (version >= 106)
2857 		return 27;
2858 	else
2859 		return 22;
2860 }
2861 
2862 static bool child_device_size_valid(struct intel_display *display, int size)
2863 {
2864 	int expected_size;
2865 
2866 	expected_size = child_device_expected_size(display->vbt.version);
2867 	if (expected_size < 0) {
2868 		expected_size = sizeof(struct child_device_config);
2869 		drm_dbg_kms(display->drm,
2870 			    "Expected child device config size for VBT version %u not known; assuming %d\n",
2871 			    display->vbt.version, expected_size);
2872 	}
2873 
2874 	/* Flag an error for unexpected size, but continue anyway. */
2875 	if (size != expected_size)
2876 		drm_err(display->drm,
2877 			"Unexpected child device config size %d (expected %d for VBT version %u)\n",
2878 			size, expected_size, display->vbt.version);
2879 
2880 	/* The legacy sized child device config is the minimum we need. */
2881 	if (size < LEGACY_CHILD_DEVICE_CONFIG_SIZE) {
2882 		drm_dbg_kms(display->drm,
2883 			    "Child device config size %d is too small.\n",
2884 			    size);
2885 		return false;
2886 	}
2887 
2888 	return true;
2889 }
2890 
2891 static void
2892 parse_general_definitions(struct intel_display *display)
2893 {
2894 	const struct bdb_general_definitions *defs;
2895 	struct intel_bios_encoder_data *devdata;
2896 	const struct child_device_config *child;
2897 	int i, child_device_num;
2898 	u16 block_size;
2899 	int bus_pin;
2900 
2901 	defs = bdb_find_section(display, BDB_GENERAL_DEFINITIONS);
2902 	if (!defs) {
2903 		drm_dbg_kms(display->drm,
2904 			    "No general definition block is found, no devices defined.\n");
2905 		return;
2906 	}
2907 
2908 	block_size = get_blocksize(defs);
2909 	if (block_size < sizeof(*defs)) {
2910 		drm_dbg_kms(display->drm,
2911 			    "General definitions block too small (%u)\n",
2912 			    block_size);
2913 		return;
2914 	}
2915 
2916 	bus_pin = defs->crt_ddc_gmbus_pin;
2917 	drm_dbg_kms(display->drm, "crt_ddc_bus_pin: %d\n", bus_pin);
2918 	if (intel_gmbus_is_valid_pin(display, bus_pin))
2919 		display->vbt.crt_ddc_pin = bus_pin;
2920 
2921 	if (!child_device_size_valid(display, defs->child_dev_size))
2922 		return;
2923 
2924 	/* get the number of child device */
2925 	child_device_num = (block_size - sizeof(*defs)) / defs->child_dev_size;
2926 
2927 	for (i = 0; i < child_device_num; i++) {
2928 		child = child_device_ptr(defs, i);
2929 		if (!child->device_type)
2930 			continue;
2931 
2932 		drm_dbg_kms(display->drm,
2933 			    "Found VBT child device with type 0x%x\n",
2934 			    child->device_type);
2935 
2936 		devdata = kzalloc_obj(*devdata);
2937 		if (!devdata)
2938 			break;
2939 
2940 		devdata->display = display;
2941 
2942 		/*
2943 		 * Copy as much as we know (sizeof) and is available
2944 		 * (child_dev_size) of the child device config. Accessing the
2945 		 * data must depend on VBT version.
2946 		 */
2947 		memcpy(&devdata->child, child,
2948 		       min_t(size_t, defs->child_dev_size, sizeof(*child)));
2949 
2950 		list_add_tail(&devdata->node, &display->vbt.display_devices);
2951 	}
2952 
2953 	if (list_empty(&display->vbt.display_devices))
2954 		drm_dbg_kms(display->drm,
2955 			    "no child dev is parsed from VBT\n");
2956 }
2957 
2958 /* Common defaults which may be overridden by VBT. */
2959 static void
2960 init_vbt_defaults(struct intel_display *display)
2961 {
2962 	display->vbt.crt_ddc_pin = GMBUS_PIN_VGADDC;
2963 
2964 	/* general features */
2965 	display->vbt.int_tv_support = 1;
2966 	display->vbt.int_crt_support = 1;
2967 
2968 	/* driver features */
2969 	display->vbt.int_lvds_support = 1;
2970 
2971 	/* Default to using SSC */
2972 	display->vbt.lvds_use_ssc = 1;
2973 	/*
2974 	 * Core/SandyBridge/IvyBridge use alternative (120MHz) reference
2975 	 * clock for LVDS.
2976 	 */
2977 	display->vbt.lvds_ssc_freq = intel_bios_ssc_frequency(display,
2978 							      !HAS_PCH_SPLIT(display));
2979 	drm_dbg_kms(display->drm, "Set default to SSC at %d kHz\n",
2980 		    display->vbt.lvds_ssc_freq);
2981 }
2982 
2983 /* Common defaults which may be overridden by VBT. */
2984 static void
2985 init_vbt_panel_defaults(struct intel_panel *panel)
2986 {
2987 	/* Default to having backlight */
2988 	panel->vbt.backlight.present = true;
2989 
2990 	/* LFP panel data */
2991 	panel->vbt.lvds_dither = true;
2992 }
2993 
2994 /* Defaults to initialize only if there is no VBT. */
2995 static void
2996 init_vbt_missing_defaults(struct intel_display *display)
2997 {
2998 	unsigned int ports = DISPLAY_RUNTIME_INFO(display)->port_mask;
2999 	enum port port;
3000 
3001 	if (!HAS_DDI(display) && !display->platform.cherryview)
3002 		return;
3003 
3004 	for_each_port_masked(port, ports) {
3005 		struct intel_bios_encoder_data *devdata;
3006 		struct child_device_config *child;
3007 		enum phy phy = intel_port_to_phy(display, port);
3008 
3009 		/*
3010 		 * VBT has the TypeC mode (native,TBT/USB) and we don't want
3011 		 * to detect it.
3012 		 */
3013 		if (intel_phy_is_tc(display, phy))
3014 			continue;
3015 
3016 		/* Create fake child device config */
3017 		devdata = kzalloc_obj(*devdata);
3018 		if (!devdata)
3019 			break;
3020 
3021 		devdata->display = display;
3022 		child = &devdata->child;
3023 
3024 		if (port == PORT_F)
3025 			child->dvo_port = DVO_PORT_HDMIF;
3026 		else if (port == PORT_E)
3027 			child->dvo_port = DVO_PORT_HDMIE;
3028 		else
3029 			child->dvo_port = DVO_PORT_HDMIA + port;
3030 
3031 		if (port != PORT_A && port != PORT_E)
3032 			child->device_type |= DEVICE_TYPE_TMDS_DVI_SIGNALING;
3033 
3034 		if (port != PORT_E)
3035 			child->device_type |= DEVICE_TYPE_DISPLAYPORT_OUTPUT;
3036 
3037 		if (port == PORT_A)
3038 			child->device_type |= DEVICE_TYPE_INTERNAL_CONNECTOR;
3039 
3040 		list_add_tail(&devdata->node, &display->vbt.display_devices);
3041 
3042 		drm_dbg_kms(display->drm,
3043 			    "Generating default VBT child device with type 0x%04x on port %c\n",
3044 			    child->device_type, port_name(port));
3045 	}
3046 
3047 	/* Bypass some minimum baseline VBT version checks */
3048 	display->vbt.version = 155;
3049 }
3050 
3051 static const struct bdb_header *get_bdb_header(const struct vbt_header *vbt)
3052 {
3053 	const void *_vbt = vbt;
3054 
3055 	return _vbt + vbt->bdb_offset;
3056 }
3057 
3058 static const char vbt_signature[] = "$VBT";
3059 static const int vbt_signature_len = 4;
3060 
3061 /**
3062  * intel_bios_is_valid_vbt - does the given buffer contain a valid VBT
3063  * @display:	display device
3064  * @buf:	pointer to a buffer to validate
3065  * @size:	size of the buffer
3066  *
3067  * Returns true on valid VBT.
3068  */
3069 bool intel_bios_is_valid_vbt(struct intel_display *display,
3070 			     const void *buf, size_t size)
3071 {
3072 	const struct vbt_header *vbt = buf;
3073 	const struct bdb_header *bdb;
3074 
3075 	if (!vbt)
3076 		return false;
3077 
3078 	if (sizeof(struct vbt_header) > size) {
3079 		drm_dbg_kms(display->drm, "VBT header incomplete\n");
3080 		return false;
3081 	}
3082 
3083 	if (memcmp(vbt->signature, vbt_signature, vbt_signature_len)) {
3084 		drm_dbg_kms(display->drm, "VBT invalid signature\n");
3085 		return false;
3086 	}
3087 
3088 	if (vbt->vbt_size > size) {
3089 		drm_dbg_kms(display->drm,
3090 			    "VBT incomplete (vbt_size overflows)\n");
3091 		return false;
3092 	}
3093 
3094 	size = vbt->vbt_size;
3095 
3096 	if (range_overflows_t(size_t,
3097 			      vbt->bdb_offset,
3098 			      sizeof(struct bdb_header),
3099 			      size)) {
3100 		drm_dbg_kms(display->drm, "BDB header incomplete\n");
3101 		return false;
3102 	}
3103 
3104 	bdb = get_bdb_header(vbt);
3105 	if (range_overflows_t(size_t, vbt->bdb_offset, bdb->bdb_size, size)) {
3106 		drm_dbg_kms(display->drm, "BDB incomplete\n");
3107 		return false;
3108 	}
3109 
3110 	return vbt;
3111 }
3112 
3113 static struct vbt_header *firmware_get_vbt(struct intel_display *display,
3114 					   size_t *size)
3115 {
3116 	struct vbt_header *vbt = NULL;
3117 	const struct firmware *fw = NULL;
3118 	const char *name = display->params.vbt_firmware;
3119 	int ret;
3120 
3121 	if (!name || !*name)
3122 		return NULL;
3123 
3124 	ret = request_firmware(&fw, name, display->drm->dev);
3125 	if (ret) {
3126 		drm_err(display->drm,
3127 			"Requesting VBT firmware \"%s\" failed (%d)\n",
3128 			name, ret);
3129 		return NULL;
3130 	}
3131 
3132 	if (intel_bios_is_valid_vbt(display, fw->data, fw->size)) {
3133 		vbt = kmemdup(fw->data, fw->size, GFP_KERNEL);
3134 		if (vbt) {
3135 			drm_dbg_kms(display->drm,
3136 				    "Found valid VBT firmware \"%s\"\n", name);
3137 			if (size)
3138 				*size = fw->size;
3139 		}
3140 	} else {
3141 		drm_dbg_kms(display->drm, "Invalid VBT firmware \"%s\"\n",
3142 			    name);
3143 	}
3144 
3145 	release_firmware(fw);
3146 
3147 	return vbt;
3148 }
3149 
3150 static struct vbt_header *oprom_get_vbt(struct intel_display *display,
3151 					struct intel_rom *rom,
3152 					size_t *size, const char *type)
3153 {
3154 	struct vbt_header *vbt;
3155 	size_t vbt_size;
3156 	loff_t offset;
3157 
3158 	if (!rom)
3159 		return NULL;
3160 
3161 	BUILD_BUG_ON(vbt_signature_len != sizeof(vbt_signature) - 1);
3162 	BUILD_BUG_ON(vbt_signature_len != sizeof(u32));
3163 
3164 	offset = intel_rom_find(rom, *(const u32 *)vbt_signature);
3165 	if (offset < 0)
3166 		goto err_free_rom;
3167 
3168 	if (sizeof(struct vbt_header) > intel_rom_size(rom) - offset) {
3169 		drm_dbg_kms(display->drm, "VBT header incomplete\n");
3170 		goto err_free_rom;
3171 	}
3172 
3173 	BUILD_BUG_ON(sizeof(vbt->vbt_size) != sizeof(u16));
3174 
3175 	vbt_size = intel_rom_read16(rom, offset + offsetof(struct vbt_header, vbt_size));
3176 	if (vbt_size > intel_rom_size(rom) - offset) {
3177 		drm_dbg_kms(display->drm, "VBT incomplete (vbt_size overflows)\n");
3178 		goto err_free_rom;
3179 	}
3180 
3181 	vbt = kzalloc(round_up(vbt_size, 4), GFP_KERNEL);
3182 	if (!vbt)
3183 		goto err_free_rom;
3184 
3185 	intel_rom_read_block(rom, vbt, offset, vbt_size);
3186 
3187 	if (!intel_bios_is_valid_vbt(display, vbt, vbt_size))
3188 		goto err_free_vbt;
3189 
3190 	drm_dbg_kms(display->drm, "Found valid VBT in %s\n", type);
3191 
3192 	if (size)
3193 		*size = vbt_size;
3194 
3195 	intel_rom_free(rom);
3196 
3197 	return vbt;
3198 
3199 err_free_vbt:
3200 	kfree(vbt);
3201 err_free_rom:
3202 	intel_rom_free(rom);
3203 	return NULL;
3204 }
3205 
3206 static const struct vbt_header *intel_bios_get_vbt(struct intel_display *display,
3207 						   size_t *sizep)
3208 {
3209 	const struct vbt_header *vbt = NULL;
3210 
3211 	vbt = firmware_get_vbt(display, sizep);
3212 
3213 	if (!vbt)
3214 		vbt = intel_opregion_get_vbt(display, sizep);
3215 
3216 	/*
3217 	 * If the OpRegion does not have VBT, look in SPI flash
3218 	 * through MMIO or PCI mapping
3219 	 */
3220 	if (!vbt && display->platform.dgfx)
3221 		with_intel_display_rpm(display)
3222 			vbt = oprom_get_vbt(display, intel_rom_spi(display->drm), sizep, "SPI flash");
3223 
3224 	if (!vbt)
3225 		with_intel_display_rpm(display)
3226 			vbt = oprom_get_vbt(display, intel_rom_pci(display->drm), sizep, "PCI ROM");
3227 
3228 	return vbt;
3229 }
3230 
3231 /**
3232  * intel_bios_init - find VBT and initialize settings from the BIOS
3233  * @display: display device instance
3234  *
3235  * Parse and initialize settings from the Video BIOS Tables (VBT). If the VBT
3236  * was not found in ACPI OpRegion, try to find it in PCI ROM first. Also
3237  * initialize some defaults if the VBT is not present at all.
3238  */
3239 void intel_bios_init(struct intel_display *display)
3240 {
3241 	const struct vbt_header *vbt;
3242 	const struct bdb_header *bdb;
3243 
3244 	INIT_LIST_HEAD(&display->vbt.display_devices);
3245 	INIT_LIST_HEAD(&display->vbt.bdb_blocks);
3246 
3247 	if (!HAS_DISPLAY(display)) {
3248 		drm_dbg_kms(display->drm,
3249 			    "Skipping VBT init due to disabled display.\n");
3250 		return;
3251 	}
3252 
3253 	init_vbt_defaults(display);
3254 
3255 	vbt = intel_bios_get_vbt(display, NULL);
3256 
3257 	if (!vbt)
3258 		goto out;
3259 
3260 	bdb = get_bdb_header(vbt);
3261 	display->vbt.version = bdb->version;
3262 
3263 	drm_dbg_kms(display->drm,
3264 		    "VBT signature \"%.*s\", BDB version %d\n",
3265 		    (int)sizeof(vbt->signature), vbt->signature,
3266 		    display->vbt.version);
3267 
3268 	init_bdb_blocks(display, bdb);
3269 
3270 	/* Grab useful general definitions */
3271 	parse_general_features(display);
3272 	parse_general_definitions(display);
3273 	parse_driver_features(display);
3274 
3275 	/* Depends on child device list */
3276 	parse_compression_parameters(display);
3277 
3278 out:
3279 	if (!vbt) {
3280 		drm_info(display->drm,
3281 			 "Failed to find VBIOS tables (VBT)\n");
3282 		init_vbt_missing_defaults(display);
3283 	}
3284 
3285 	/* Further processing on pre-parsed or generated child device data */
3286 	parse_sdvo_device_mapping(display);
3287 	parse_ddi_ports(display);
3288 
3289 	kfree(vbt);
3290 }
3291 
3292 static void intel_bios_init_panel(struct intel_display *display,
3293 				  struct intel_panel *panel,
3294 				  const struct intel_bios_encoder_data *devdata,
3295 				  const struct drm_edid *drm_edid,
3296 				  bool use_fallback)
3297 {
3298 	/* already have it? */
3299 	if (panel->vbt.panel_type >= 0) {
3300 		drm_WARN_ON(display->drm, !use_fallback);
3301 		return;
3302 	}
3303 
3304 	panel->vbt.panel_type = get_panel_type(display, devdata,
3305 					       drm_edid, use_fallback);
3306 	if (panel->vbt.panel_type < 0) {
3307 		drm_WARN_ON(display->drm, use_fallback);
3308 		return;
3309 	}
3310 
3311 	init_vbt_panel_defaults(panel);
3312 
3313 	parse_panel_options(display, panel);
3314 	parse_generic_dtd(display, panel);
3315 	parse_lfp_data(display, panel);
3316 	parse_lfp_backlight(display, panel);
3317 	parse_sdvo_lvds_data(display, panel);
3318 	parse_panel_driver_features(display, panel);
3319 	parse_power_conservation_features(display, panel);
3320 	parse_edp(display, panel);
3321 	parse_psr(display, panel);
3322 	parse_mipi_config(display, panel);
3323 	parse_mipi_sequence(display, panel);
3324 }
3325 
3326 void intel_bios_init_panel_early(struct intel_display *display,
3327 				 struct intel_panel *panel,
3328 				 const struct intel_bios_encoder_data *devdata)
3329 {
3330 	intel_bios_init_panel(display, panel, devdata, NULL, false);
3331 }
3332 
3333 void intel_bios_init_panel_late(struct intel_display *display,
3334 				struct intel_panel *panel,
3335 				const struct intel_bios_encoder_data *devdata,
3336 				const struct drm_edid *drm_edid)
3337 {
3338 	intel_bios_init_panel(display, panel, devdata, drm_edid, true);
3339 }
3340 
3341 /**
3342  * intel_bios_driver_remove - Free any resources allocated by intel_bios_init()
3343  * @display: display device instance
3344  */
3345 void intel_bios_driver_remove(struct intel_display *display)
3346 {
3347 	struct intel_bios_encoder_data *devdata, *nd;
3348 	struct bdb_block_entry *entry, *ne;
3349 
3350 	list_for_each_entry_safe(devdata, nd, &display->vbt.display_devices,
3351 				 node) {
3352 		list_del(&devdata->node);
3353 		kfree(devdata->dsc);
3354 		kfree(devdata);
3355 	}
3356 
3357 	list_for_each_entry_safe(entry, ne, &display->vbt.bdb_blocks, node) {
3358 		list_del(&entry->node);
3359 		kfree(entry);
3360 	}
3361 }
3362 
3363 void intel_bios_fini_panel(struct intel_panel *panel)
3364 {
3365 	kfree(panel->vbt.sdvo_lvds_vbt_mode);
3366 	panel->vbt.sdvo_lvds_vbt_mode = NULL;
3367 	kfree(panel->vbt.lfp_vbt_mode);
3368 	panel->vbt.lfp_vbt_mode = NULL;
3369 	kfree(panel->vbt.dsi.data);
3370 	panel->vbt.dsi.data = NULL;
3371 	kfree(panel->vbt.dsi.pps);
3372 	panel->vbt.dsi.pps = NULL;
3373 	kfree(panel->vbt.dsi.config);
3374 	panel->vbt.dsi.config = NULL;
3375 	kfree(panel->vbt.dsi.deassert_seq);
3376 	panel->vbt.dsi.deassert_seq = NULL;
3377 }
3378 
3379 /**
3380  * intel_bios_is_tv_present - is integrated TV present in VBT
3381  * @display: display device instance
3382  *
3383  * Return true if TV is present. If no child devices were parsed from VBT,
3384  * assume TV is present.
3385  */
3386 bool intel_bios_is_tv_present(struct intel_display *display)
3387 {
3388 	const struct intel_bios_encoder_data *devdata;
3389 
3390 	if (!display->vbt.int_tv_support)
3391 		return false;
3392 
3393 	if (list_empty(&display->vbt.display_devices))
3394 		return true;
3395 
3396 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
3397 		const struct child_device_config *child = &devdata->child;
3398 
3399 		/*
3400 		 * If the device type is not TV, continue.
3401 		 */
3402 		switch (child->device_type) {
3403 		case DEVICE_TYPE_INT_TV:
3404 		case DEVICE_TYPE_TV:
3405 		case DEVICE_TYPE_TV_SVIDEO_COMPOSITE:
3406 			break;
3407 		default:
3408 			continue;
3409 		}
3410 		/* Only when the addin_offset is non-zero, it is regarded
3411 		 * as present.
3412 		 */
3413 		if (child->addin_offset)
3414 			return true;
3415 	}
3416 
3417 	return false;
3418 }
3419 
3420 /**
3421  * intel_bios_is_lvds_present - is LVDS present in VBT
3422  * @display: display device instance
3423  * @i2c_pin:	i2c pin for LVDS if present
3424  *
3425  * Return true if LVDS is present. If no child devices were parsed from VBT,
3426  * assume LVDS is present.
3427  */
3428 bool intel_bios_is_lvds_present(struct intel_display *display, u8 *i2c_pin)
3429 {
3430 	const struct intel_bios_encoder_data *devdata;
3431 
3432 	if (list_empty(&display->vbt.display_devices))
3433 		return true;
3434 
3435 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
3436 		const struct child_device_config *child = &devdata->child;
3437 
3438 		/* If the device type is not LFP, continue.
3439 		 * We have to check both the new identifiers as well as the
3440 		 * old for compatibility with some BIOSes.
3441 		 */
3442 		if (child->device_type != DEVICE_TYPE_INT_LFP &&
3443 		    child->device_type != DEVICE_TYPE_LFP)
3444 			continue;
3445 
3446 		if (intel_gmbus_is_valid_pin(display, child->i2c_pin))
3447 			*i2c_pin = child->i2c_pin;
3448 
3449 		/* However, we cannot trust the BIOS writers to populate
3450 		 * the VBT correctly.  Since LVDS requires additional
3451 		 * information from AIM blocks, a non-zero addin offset is
3452 		 * a good indicator that the LVDS is actually present.
3453 		 */
3454 		if (child->addin_offset)
3455 			return true;
3456 
3457 		/* But even then some BIOS writers perform some black magic
3458 		 * and instantiate the device without reference to any
3459 		 * additional data.  Trust that if the VBT was written into
3460 		 * the OpRegion then they have validated the LVDS's existence.
3461 		 */
3462 		return intel_opregion_vbt_present(display);
3463 	}
3464 
3465 	return false;
3466 }
3467 
3468 /**
3469  * intel_bios_is_port_present - is the specified digital port present
3470  * @display: display device instance
3471  * @port:	port to check
3472  *
3473  * Return true if the device in %port is present.
3474  */
3475 bool intel_bios_is_port_present(struct intel_display *display, enum port port)
3476 {
3477 	const struct intel_bios_encoder_data *devdata;
3478 
3479 	if (WARN_ON(!has_ddi_port_info(display)))
3480 		return true;
3481 
3482 	if (!is_port_valid(display, port))
3483 		return false;
3484 
3485 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
3486 		const struct child_device_config *child = &devdata->child;
3487 
3488 		if (dvo_port_to_port(display, child->dvo_port) == port)
3489 			return true;
3490 	}
3491 
3492 	return false;
3493 }
3494 
3495 bool intel_bios_encoder_supports_dp_dual_mode(const struct intel_bios_encoder_data *devdata)
3496 {
3497 	const struct child_device_config *child = &devdata->child;
3498 
3499 	if (!devdata)
3500 		return false;
3501 
3502 	if (!intel_bios_encoder_supports_dp(devdata) ||
3503 	    !intel_bios_encoder_supports_hdmi(devdata))
3504 		return false;
3505 
3506 	if (dvo_port_type(child->dvo_port) == DVO_PORT_DPA)
3507 		return true;
3508 
3509 	/* Only accept a HDMI dvo_port as DP++ if it has an AUX channel */
3510 	if (dvo_port_type(child->dvo_port) == DVO_PORT_HDMIA &&
3511 	    child->aux_channel != 0)
3512 		return true;
3513 
3514 	return false;
3515 }
3516 
3517 /**
3518  * intel_bios_is_dsi_present - is DSI present in VBT
3519  * @display: display device instance
3520  * @port:	port for DSI if present
3521  *
3522  * Return true if DSI is present, and return the port in %port.
3523  */
3524 bool intel_bios_is_dsi_present(struct intel_display *display,
3525 			       enum port *port)
3526 {
3527 	const struct intel_bios_encoder_data *devdata;
3528 
3529 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
3530 		const struct child_device_config *child = &devdata->child;
3531 		u8 dvo_port = child->dvo_port;
3532 
3533 		if (!(child->device_type & DEVICE_TYPE_MIPI_OUTPUT))
3534 			continue;
3535 
3536 		if (dsi_dvo_port_to_port(display, dvo_port) == PORT_NONE) {
3537 			drm_dbg_kms(display->drm,
3538 				    "VBT has unsupported DSI port %c\n",
3539 				    port_name(dvo_port - DVO_PORT_MIPIA));
3540 			continue;
3541 		}
3542 
3543 		if (port)
3544 			*port = dsi_dvo_port_to_port(display, dvo_port);
3545 		return true;
3546 	}
3547 
3548 	return false;
3549 }
3550 
3551 static bool fill_dsc(struct intel_crtc_state *crtc_state,
3552 		     struct dsc_compression_parameters_entry *dsc,
3553 		     int dsc_max_bpc)
3554 {
3555 	struct intel_display *display = to_intel_display(crtc_state);
3556 	struct drm_dsc_config *vdsc_cfg = &crtc_state->dsc.config;
3557 	int slices_per_line;
3558 	int bpc = 8;
3559 
3560 	vdsc_cfg->dsc_version_major = dsc->version_major;
3561 	vdsc_cfg->dsc_version_minor = dsc->version_minor;
3562 
3563 	if (dsc->support_12bpc && dsc_max_bpc >= 12)
3564 		bpc = 12;
3565 	else if (dsc->support_10bpc && dsc_max_bpc >= 10)
3566 		bpc = 10;
3567 	else if (dsc->support_8bpc && dsc_max_bpc >= 8)
3568 		bpc = 8;
3569 	else
3570 		drm_dbg_kms(display->drm, "VBT: Unsupported BPC %d for DCS\n",
3571 			    dsc_max_bpc);
3572 
3573 	crtc_state->pipe_bpp = bpc * 3;
3574 
3575 	crtc_state->dsc.compressed_bpp_x16 = fxp_q4_from_int(min(crtc_state->pipe_bpp,
3576 								 VBT_DSC_MAX_BPP(dsc->max_bpp)));
3577 
3578 	/*
3579 	 * FIXME: This is ugly, and slice count should take DSC engine
3580 	 * throughput etc. into account.
3581 	 *
3582 	 * Also, per spec DSI supports 1, 2, 3 or 4 horizontal slices.
3583 	 *
3584 	 * FIXME: split only when necessary
3585 	 */
3586 	if (dsc->slices_per_line & BIT(2)) {
3587 		slices_per_line = 4;
3588 	} else if (dsc->slices_per_line & BIT(1)) {
3589 		slices_per_line = 2;
3590 	} else {
3591 		/* FIXME */
3592 		if (!(dsc->slices_per_line & BIT(0)))
3593 			drm_dbg_kms(display->drm,
3594 				    "VBT: Unsupported DSC slice count for DSI\n");
3595 
3596 		slices_per_line = 1;
3597 	}
3598 
3599 	if (drm_WARN_ON(display->drm,
3600 			!intel_dsc_get_slice_config(display, 1, slices_per_line,
3601 						    &crtc_state->dsc.slice_config)))
3602 		return false;
3603 
3604 	if (crtc_state->hw.adjusted_mode.crtc_hdisplay %
3605 	    intel_dsc_line_slice_count(&crtc_state->dsc.slice_config) != 0)
3606 		drm_dbg_kms(display->drm,
3607 			    "VBT: DSC hdisplay %d not divisible by slice count %d\n",
3608 			    crtc_state->hw.adjusted_mode.crtc_hdisplay,
3609 			    intel_dsc_line_slice_count(&crtc_state->dsc.slice_config));
3610 
3611 	/*
3612 	 * The VBT rc_buffer_block_size and rc_buffer_size definitions
3613 	 * correspond to DP 1.4 DPCD offsets 0x62 and 0x63.
3614 	 */
3615 	vdsc_cfg->rc_model_size = drm_dsc_dp_rc_buffer_size(dsc->rc_buffer_block_size,
3616 							    dsc->rc_buffer_size);
3617 
3618 	/* FIXME: DSI spec says bpc + 1 for this one */
3619 	vdsc_cfg->line_buf_depth = VBT_DSC_LINE_BUFFER_DEPTH(dsc->line_buffer_depth);
3620 
3621 	vdsc_cfg->block_pred_enable = dsc->block_prediction_enable;
3622 
3623 	vdsc_cfg->slice_height = dsc->slice_height;
3624 
3625 	return true;
3626 }
3627 
3628 /* FIXME: initially DSI specific */
3629 bool intel_bios_get_dsc_params(struct intel_encoder *encoder,
3630 			       struct intel_crtc_state *crtc_state,
3631 			       int dsc_max_bpc)
3632 {
3633 	struct intel_display *display = to_intel_display(encoder);
3634 	const struct intel_bios_encoder_data *devdata;
3635 
3636 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
3637 		const struct child_device_config *child = &devdata->child;
3638 
3639 		if (!(child->device_type & DEVICE_TYPE_MIPI_OUTPUT))
3640 			continue;
3641 
3642 		if (dsi_dvo_port_to_port(display, child->dvo_port) == encoder->port) {
3643 			if (!devdata->dsc)
3644 				return false;
3645 
3646 			return fill_dsc(crtc_state, devdata->dsc, dsc_max_bpc);
3647 		}
3648 	}
3649 
3650 	return false;
3651 }
3652 
3653 static const u8 adlp_aux_ch_map[] = {
3654 	[AUX_CH_A] = DP_AUX_A,
3655 	[AUX_CH_B] = DP_AUX_B,
3656 	[AUX_CH_C] = DP_AUX_C,
3657 	[AUX_CH_D_XELPD] = DP_AUX_D,
3658 	[AUX_CH_E_XELPD] = DP_AUX_E,
3659 	[AUX_CH_USBC1] = DP_AUX_F,
3660 	[AUX_CH_USBC2] = DP_AUX_G,
3661 	[AUX_CH_USBC3] = DP_AUX_H,
3662 	[AUX_CH_USBC4] = DP_AUX_I,
3663 };
3664 
3665 /*
3666  * ADL-S VBT uses PHY based mapping. Combo PHYs A,B,C,D,E
3667  * map to DDI A,TC1,TC2,TC3,TC4 respectively.
3668  */
3669 static const u8 adls_aux_ch_map[] = {
3670 	[AUX_CH_A] = DP_AUX_A,
3671 	[AUX_CH_USBC1] = DP_AUX_B,
3672 	[AUX_CH_USBC2] = DP_AUX_C,
3673 	[AUX_CH_USBC3] = DP_AUX_D,
3674 	[AUX_CH_USBC4] = DP_AUX_E,
3675 };
3676 
3677 /*
3678  * RKL/DG1 VBT uses PHY based mapping. Combo PHYs A,B,C,D
3679  * map to DDI A,B,TC1,TC2 respectively.
3680  */
3681 static const u8 rkl_aux_ch_map[] = {
3682 	[AUX_CH_A] = DP_AUX_A,
3683 	[AUX_CH_B] = DP_AUX_B,
3684 	[AUX_CH_USBC1] = DP_AUX_C,
3685 	[AUX_CH_USBC2] = DP_AUX_D,
3686 };
3687 
3688 static const u8 direct_aux_ch_map[] = {
3689 	[AUX_CH_A] = DP_AUX_A,
3690 	[AUX_CH_B] = DP_AUX_B,
3691 	[AUX_CH_C] = DP_AUX_C,
3692 	[AUX_CH_D] = DP_AUX_D, /* aka AUX_CH_USBC1 */
3693 	[AUX_CH_E] = DP_AUX_E, /* aka AUX_CH_USBC2 */
3694 	[AUX_CH_F] = DP_AUX_F, /* aka AUX_CH_USBC3 */
3695 	[AUX_CH_G] = DP_AUX_G, /* aka AUX_CH_USBC4 */
3696 	[AUX_CH_H] = DP_AUX_H, /* aka AUX_CH_USBC5 */
3697 	[AUX_CH_I] = DP_AUX_I, /* aka AUX_CH_USBC6 */
3698 };
3699 
3700 static enum aux_ch map_aux_ch(struct intel_display *display, u8 aux_channel)
3701 {
3702 	const u8 *aux_ch_map;
3703 	int i, n_entries;
3704 
3705 	if (DISPLAY_VER(display) >= 13) {
3706 		aux_ch_map = adlp_aux_ch_map;
3707 		n_entries = ARRAY_SIZE(adlp_aux_ch_map);
3708 	} else if (display->platform.alderlake_s) {
3709 		aux_ch_map = adls_aux_ch_map;
3710 		n_entries = ARRAY_SIZE(adls_aux_ch_map);
3711 	} else if (display->platform.dg1 || display->platform.rocketlake) {
3712 		aux_ch_map = rkl_aux_ch_map;
3713 		n_entries = ARRAY_SIZE(rkl_aux_ch_map);
3714 	} else {
3715 		aux_ch_map = direct_aux_ch_map;
3716 		n_entries = ARRAY_SIZE(direct_aux_ch_map);
3717 	}
3718 
3719 	for (i = 0; i < n_entries; i++) {
3720 		if (aux_ch_map[i] == aux_channel)
3721 			return i;
3722 	}
3723 
3724 	drm_dbg_kms(display->drm,
3725 		    "Ignoring alternate AUX CH: VBT claims AUX 0x%x, which is not valid for this platform\n",
3726 		    aux_channel);
3727 
3728 	return AUX_CH_NONE;
3729 }
3730 
3731 enum aux_ch intel_bios_dp_aux_ch(const struct intel_bios_encoder_data *devdata)
3732 {
3733 	if (!devdata || !devdata->child.aux_channel)
3734 		return AUX_CH_NONE;
3735 
3736 	return map_aux_ch(devdata->display, devdata->child.aux_channel);
3737 }
3738 
3739 bool intel_bios_dp_has_shared_aux_ch(const struct intel_bios_encoder_data *devdata)
3740 {
3741 	struct intel_display *display;
3742 	u8 aux_channel;
3743 	int count = 0;
3744 
3745 	if (!devdata || !devdata->child.aux_channel)
3746 		return false;
3747 
3748 	display = devdata->display;
3749 	aux_channel = devdata->child.aux_channel;
3750 
3751 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
3752 		if (intel_bios_encoder_supports_dp(devdata) &&
3753 		    aux_channel == devdata->child.aux_channel)
3754 			count++;
3755 	}
3756 
3757 	return count > 1;
3758 }
3759 
3760 int intel_bios_dp_boost_level(const struct intel_bios_encoder_data *devdata)
3761 {
3762 	if (!devdata || devdata->display->vbt.version < 196 || !devdata->child.iboost)
3763 		return 0;
3764 
3765 	return translate_iboost(devdata->display, devdata->child.dp_iboost_level);
3766 }
3767 
3768 int intel_bios_hdmi_boost_level(const struct intel_bios_encoder_data *devdata)
3769 {
3770 	if (!devdata || devdata->display->vbt.version < 196 || !devdata->child.iboost)
3771 		return 0;
3772 
3773 	return translate_iboost(devdata->display, devdata->child.hdmi_iboost_level);
3774 }
3775 
3776 int intel_bios_hdmi_ddc_pin(const struct intel_bios_encoder_data *devdata)
3777 {
3778 	if (!devdata || !devdata->child.ddc_pin)
3779 		return 0;
3780 
3781 	return map_ddc_pin(devdata->display, devdata->child.ddc_pin);
3782 }
3783 
3784 bool intel_bios_encoder_supports_typec_usb(const struct intel_bios_encoder_data *devdata)
3785 {
3786 	return devdata->display->vbt.version >= 195 && devdata->child.dp_usb_type_c;
3787 }
3788 
3789 bool intel_bios_encoder_supports_tbt(const struct intel_bios_encoder_data *devdata)
3790 {
3791 	return devdata->display->vbt.version >= 209 && devdata->child.tbt;
3792 }
3793 
3794 bool intel_bios_encoder_is_dedicated_external(const struct intel_bios_encoder_data *devdata)
3795 {
3796 	return devdata->display->vbt.version >= 264 &&
3797 		devdata->child.dedicated_external;
3798 }
3799 
3800 bool intel_bios_encoder_supports_dyn_port_over_tc(const struct intel_bios_encoder_data *devdata)
3801 {
3802 	return devdata->display->vbt.version >= 264 &&
3803 		devdata->child.dyn_port_over_tc;
3804 }
3805 
3806 bool intel_bios_encoder_lane_reversal(const struct intel_bios_encoder_data *devdata)
3807 {
3808 	return devdata && devdata->child.lane_reversal;
3809 }
3810 
3811 bool intel_bios_encoder_hpd_invert(const struct intel_bios_encoder_data *devdata)
3812 {
3813 	return devdata && devdata->child.hpd_invert;
3814 }
3815 
3816 const struct intel_bios_encoder_data *
3817 intel_bios_encoder_data_lookup(struct intel_display *display, enum port port)
3818 {
3819 	struct intel_bios_encoder_data *devdata;
3820 
3821 	list_for_each_entry(devdata, &display->vbt.display_devices, node) {
3822 		if (intel_bios_encoder_port(devdata) == port)
3823 			return devdata;
3824 	}
3825 
3826 	return NULL;
3827 }
3828 
3829 void intel_bios_for_each_encoder(struct intel_display *display,
3830 				 void (*func)(struct intel_display *display,
3831 					      const struct intel_bios_encoder_data *devdata))
3832 {
3833 	struct intel_bios_encoder_data *devdata;
3834 
3835 	list_for_each_entry(devdata, &display->vbt.display_devices, node)
3836 		func(display, devdata);
3837 }
3838 
3839 static int intel_bios_vbt_show(struct seq_file *m, void *unused)
3840 {
3841 	struct intel_display *display = m->private;
3842 	const void *vbt;
3843 	size_t vbt_size;
3844 
3845 	vbt = intel_bios_get_vbt(display, &vbt_size);
3846 
3847 	if (vbt) {
3848 		seq_write(m, vbt, vbt_size);
3849 		kfree(vbt);
3850 	}
3851 
3852 	return 0;
3853 }
3854 
3855 DEFINE_SHOW_ATTRIBUTE(intel_bios_vbt);
3856 
3857 void intel_bios_debugfs_register(struct intel_display *display)
3858 {
3859 	debugfs_create_file("i915_vbt", 0444, display->drm->debugfs_root,
3860 			    display, &intel_bios_vbt_fops);
3861 }
3862