drm/i915: move edp low vswing config to vbt data
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_bios.c
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 <drm/drm_dp_helper.h>
29 #include <drm/drmP.h>
30 #include <drm/i915_drm.h>
31 #include "i915_drv.h"
32
33 #define _INTEL_BIOS_PRIVATE
34 #include "intel_vbt_defs.h"
35
36 /**
37 * DOC: Video BIOS Table (VBT)
38 *
39 * The Video BIOS Table, or VBT, provides platform and board specific
40 * configuration information to the driver that is not discoverable or available
41 * through other means. The configuration is mostly related to display
42 * hardware. The VBT is available via the ACPI OpRegion or, on older systems, in
43 * the PCI ROM.
44 *
45 * The VBT consists of a VBT Header (defined as &struct vbt_header), a BDB
46 * Header (&struct bdb_header), and a number of BIOS Data Blocks (BDB) that
47 * contain the actual configuration information. The VBT Header, and thus the
48 * VBT, begins with "$VBT" signature. The VBT Header contains the offset of the
49 * BDB Header. The data blocks are concatenated after the BDB Header. The data
50 * blocks have a 1-byte Block ID, 2-byte Block Size, and Block Size bytes of
51 * data. (Block 53, the MIPI Sequence Block is an exception.)
52 *
53 * The driver parses the VBT during load. The relevant information is stored in
54 * driver private data for ease of use, and the actual VBT is not read after
55 * that.
56 */
57
58 #define SLAVE_ADDR1 0x70
59 #define SLAVE_ADDR2 0x72
60
61 static int panel_type;
62
63 /* Get BDB block size given a pointer to Block ID. */
64 static u32 _get_blocksize(const u8 *block_base)
65 {
66 /* The MIPI Sequence Block v3+ has a separate size field. */
67 if (*block_base == BDB_MIPI_SEQUENCE && *(block_base + 3) >= 3)
68 return *((const u32 *)(block_base + 4));
69 else
70 return *((const u16 *)(block_base + 1));
71 }
72
73 /* Get BDB block size give a pointer to data after Block ID and Block Size. */
74 static u32 get_blocksize(const void *block_data)
75 {
76 return _get_blocksize(block_data - 3);
77 }
78
79 static const void *
80 find_section(const void *_bdb, int section_id)
81 {
82 const struct bdb_header *bdb = _bdb;
83 const u8 *base = _bdb;
84 int index = 0;
85 u32 total, current_size;
86 u8 current_id;
87
88 /* skip to first section */
89 index += bdb->header_size;
90 total = bdb->bdb_size;
91
92 /* walk the sections looking for section_id */
93 while (index + 3 < total) {
94 current_id = *(base + index);
95 current_size = _get_blocksize(base + index);
96 index += 3;
97
98 if (index + current_size > total)
99 return NULL;
100
101 if (current_id == section_id)
102 return base + index;
103
104 index += current_size;
105 }
106
107 return NULL;
108 }
109
110 static void
111 fill_detail_timing_data(struct drm_display_mode *panel_fixed_mode,
112 const struct lvds_dvo_timing *dvo_timing)
113 {
114 panel_fixed_mode->hdisplay = (dvo_timing->hactive_hi << 8) |
115 dvo_timing->hactive_lo;
116 panel_fixed_mode->hsync_start = panel_fixed_mode->hdisplay +
117 ((dvo_timing->hsync_off_hi << 8) | dvo_timing->hsync_off_lo);
118 panel_fixed_mode->hsync_end = panel_fixed_mode->hsync_start +
119 dvo_timing->hsync_pulse_width;
120 panel_fixed_mode->htotal = panel_fixed_mode->hdisplay +
121 ((dvo_timing->hblank_hi << 8) | dvo_timing->hblank_lo);
122
123 panel_fixed_mode->vdisplay = (dvo_timing->vactive_hi << 8) |
124 dvo_timing->vactive_lo;
125 panel_fixed_mode->vsync_start = panel_fixed_mode->vdisplay +
126 dvo_timing->vsync_off;
127 panel_fixed_mode->vsync_end = panel_fixed_mode->vsync_start +
128 dvo_timing->vsync_pulse_width;
129 panel_fixed_mode->vtotal = panel_fixed_mode->vdisplay +
130 ((dvo_timing->vblank_hi << 8) | dvo_timing->vblank_lo);
131 panel_fixed_mode->clock = dvo_timing->clock * 10;
132 panel_fixed_mode->type = DRM_MODE_TYPE_PREFERRED;
133
134 if (dvo_timing->hsync_positive)
135 panel_fixed_mode->flags |= DRM_MODE_FLAG_PHSYNC;
136 else
137 panel_fixed_mode->flags |= DRM_MODE_FLAG_NHSYNC;
138
139 if (dvo_timing->vsync_positive)
140 panel_fixed_mode->flags |= DRM_MODE_FLAG_PVSYNC;
141 else
142 panel_fixed_mode->flags |= DRM_MODE_FLAG_NVSYNC;
143
144 /* Some VBTs have bogus h/vtotal values */
145 if (panel_fixed_mode->hsync_end > panel_fixed_mode->htotal)
146 panel_fixed_mode->htotal = panel_fixed_mode->hsync_end + 1;
147 if (panel_fixed_mode->vsync_end > panel_fixed_mode->vtotal)
148 panel_fixed_mode->vtotal = panel_fixed_mode->vsync_end + 1;
149
150 drm_mode_set_name(panel_fixed_mode);
151 }
152
153 static const struct lvds_dvo_timing *
154 get_lvds_dvo_timing(const struct bdb_lvds_lfp_data *lvds_lfp_data,
155 const struct bdb_lvds_lfp_data_ptrs *lvds_lfp_data_ptrs,
156 int index)
157 {
158 /*
159 * the size of fp_timing varies on the different platform.
160 * So calculate the DVO timing relative offset in LVDS data
161 * entry to get the DVO timing entry
162 */
163
164 int lfp_data_size =
165 lvds_lfp_data_ptrs->ptr[1].dvo_timing_offset -
166 lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset;
167 int dvo_timing_offset =
168 lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset -
169 lvds_lfp_data_ptrs->ptr[0].fp_timing_offset;
170 char *entry = (char *)lvds_lfp_data->data + lfp_data_size * index;
171
172 return (struct lvds_dvo_timing *)(entry + dvo_timing_offset);
173 }
174
175 /* get lvds_fp_timing entry
176 * this function may return NULL if the corresponding entry is invalid
177 */
178 static const struct lvds_fp_timing *
179 get_lvds_fp_timing(const struct bdb_header *bdb,
180 const struct bdb_lvds_lfp_data *data,
181 const struct bdb_lvds_lfp_data_ptrs *ptrs,
182 int index)
183 {
184 size_t data_ofs = (const u8 *)data - (const u8 *)bdb;
185 u16 data_size = ((const u16 *)data)[-1]; /* stored in header */
186 size_t ofs;
187
188 if (index >= ARRAY_SIZE(ptrs->ptr))
189 return NULL;
190 ofs = ptrs->ptr[index].fp_timing_offset;
191 if (ofs < data_ofs ||
192 ofs + sizeof(struct lvds_fp_timing) > data_ofs + data_size)
193 return NULL;
194 return (const struct lvds_fp_timing *)((const u8 *)bdb + ofs);
195 }
196
197 /* Try to find integrated panel data */
198 static void
199 parse_lfp_panel_data(struct drm_i915_private *dev_priv,
200 const struct bdb_header *bdb)
201 {
202 const struct bdb_lvds_options *lvds_options;
203 const struct bdb_lvds_lfp_data *lvds_lfp_data;
204 const struct bdb_lvds_lfp_data_ptrs *lvds_lfp_data_ptrs;
205 const struct lvds_dvo_timing *panel_dvo_timing;
206 const struct lvds_fp_timing *fp_timing;
207 struct drm_display_mode *panel_fixed_mode;
208 int drrs_mode;
209
210 lvds_options = find_section(bdb, BDB_LVDS_OPTIONS);
211 if (!lvds_options)
212 return;
213
214 dev_priv->vbt.lvds_dither = lvds_options->pixel_dither;
215 if (lvds_options->panel_type == 0xff)
216 return;
217
218 panel_type = lvds_options->panel_type;
219
220 drrs_mode = (lvds_options->dps_panel_type_bits
221 >> (panel_type * 2)) & MODE_MASK;
222 /*
223 * VBT has static DRRS = 0 and seamless DRRS = 2.
224 * The below piece of code is required to adjust vbt.drrs_type
225 * to match the enum drrs_support_type.
226 */
227 switch (drrs_mode) {
228 case 0:
229 dev_priv->vbt.drrs_type = STATIC_DRRS_SUPPORT;
230 DRM_DEBUG_KMS("DRRS supported mode is static\n");
231 break;
232 case 2:
233 dev_priv->vbt.drrs_type = SEAMLESS_DRRS_SUPPORT;
234 DRM_DEBUG_KMS("DRRS supported mode is seamless\n");
235 break;
236 default:
237 dev_priv->vbt.drrs_type = DRRS_NOT_SUPPORTED;
238 DRM_DEBUG_KMS("DRRS not supported (VBT input)\n");
239 break;
240 }
241
242 lvds_lfp_data = find_section(bdb, BDB_LVDS_LFP_DATA);
243 if (!lvds_lfp_data)
244 return;
245
246 lvds_lfp_data_ptrs = find_section(bdb, BDB_LVDS_LFP_DATA_PTRS);
247 if (!lvds_lfp_data_ptrs)
248 return;
249
250 dev_priv->vbt.lvds_vbt = 1;
251
252 panel_dvo_timing = get_lvds_dvo_timing(lvds_lfp_data,
253 lvds_lfp_data_ptrs,
254 lvds_options->panel_type);
255
256 panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL);
257 if (!panel_fixed_mode)
258 return;
259
260 fill_detail_timing_data(panel_fixed_mode, panel_dvo_timing);
261
262 dev_priv->vbt.lfp_lvds_vbt_mode = panel_fixed_mode;
263
264 DRM_DEBUG_KMS("Found panel mode in BIOS VBT tables:\n");
265 drm_mode_debug_printmodeline(panel_fixed_mode);
266
267 fp_timing = get_lvds_fp_timing(bdb, lvds_lfp_data,
268 lvds_lfp_data_ptrs,
269 lvds_options->panel_type);
270 if (fp_timing) {
271 /* check the resolution, just to be sure */
272 if (fp_timing->x_res == panel_fixed_mode->hdisplay &&
273 fp_timing->y_res == panel_fixed_mode->vdisplay) {
274 dev_priv->vbt.bios_lvds_val = fp_timing->lvds_reg_val;
275 DRM_DEBUG_KMS("VBT initial LVDS value %x\n",
276 dev_priv->vbt.bios_lvds_val);
277 }
278 }
279 }
280
281 static void
282 parse_lfp_backlight(struct drm_i915_private *dev_priv,
283 const struct bdb_header *bdb)
284 {
285 const struct bdb_lfp_backlight_data *backlight_data;
286 const struct bdb_lfp_backlight_data_entry *entry;
287
288 backlight_data = find_section(bdb, BDB_LVDS_BACKLIGHT);
289 if (!backlight_data)
290 return;
291
292 if (backlight_data->entry_size != sizeof(backlight_data->data[0])) {
293 DRM_DEBUG_KMS("Unsupported backlight data entry size %u\n",
294 backlight_data->entry_size);
295 return;
296 }
297
298 entry = &backlight_data->data[panel_type];
299
300 dev_priv->vbt.backlight.present = entry->type == BDB_BACKLIGHT_TYPE_PWM;
301 if (!dev_priv->vbt.backlight.present) {
302 DRM_DEBUG_KMS("PWM backlight not present in VBT (type %u)\n",
303 entry->type);
304 return;
305 }
306
307 dev_priv->vbt.backlight.pwm_freq_hz = entry->pwm_freq_hz;
308 dev_priv->vbt.backlight.active_low_pwm = entry->active_low_pwm;
309 dev_priv->vbt.backlight.min_brightness = entry->min_brightness;
310 DRM_DEBUG_KMS("VBT backlight PWM modulation frequency %u Hz, "
311 "active %s, min brightness %u, level %u\n",
312 dev_priv->vbt.backlight.pwm_freq_hz,
313 dev_priv->vbt.backlight.active_low_pwm ? "low" : "high",
314 dev_priv->vbt.backlight.min_brightness,
315 backlight_data->level[panel_type]);
316 }
317
318 /* Try to find sdvo panel data */
319 static void
320 parse_sdvo_panel_data(struct drm_i915_private *dev_priv,
321 const struct bdb_header *bdb)
322 {
323 const struct lvds_dvo_timing *dvo_timing;
324 struct drm_display_mode *panel_fixed_mode;
325 int index;
326
327 index = i915.vbt_sdvo_panel_type;
328 if (index == -2) {
329 DRM_DEBUG_KMS("Ignore SDVO panel mode from BIOS VBT tables.\n");
330 return;
331 }
332
333 if (index == -1) {
334 const struct bdb_sdvo_lvds_options *sdvo_lvds_options;
335
336 sdvo_lvds_options = find_section(bdb, BDB_SDVO_LVDS_OPTIONS);
337 if (!sdvo_lvds_options)
338 return;
339
340 index = sdvo_lvds_options->panel_type;
341 }
342
343 dvo_timing = find_section(bdb, BDB_SDVO_PANEL_DTDS);
344 if (!dvo_timing)
345 return;
346
347 panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL);
348 if (!panel_fixed_mode)
349 return;
350
351 fill_detail_timing_data(panel_fixed_mode, dvo_timing + index);
352
353 dev_priv->vbt.sdvo_lvds_vbt_mode = panel_fixed_mode;
354
355 DRM_DEBUG_KMS("Found SDVO panel mode in BIOS VBT tables:\n");
356 drm_mode_debug_printmodeline(panel_fixed_mode);
357 }
358
359 static int intel_bios_ssc_frequency(struct drm_i915_private *dev_priv,
360 bool alternate)
361 {
362 switch (INTEL_INFO(dev_priv)->gen) {
363 case 2:
364 return alternate ? 66667 : 48000;
365 case 3:
366 case 4:
367 return alternate ? 100000 : 96000;
368 default:
369 return alternate ? 100000 : 120000;
370 }
371 }
372
373 static void
374 parse_general_features(struct drm_i915_private *dev_priv,
375 const struct bdb_header *bdb)
376 {
377 const struct bdb_general_features *general;
378
379 general = find_section(bdb, BDB_GENERAL_FEATURES);
380 if (!general)
381 return;
382
383 dev_priv->vbt.int_tv_support = general->int_tv_support;
384 /* int_crt_support can't be trusted on earlier platforms */
385 if (bdb->version >= 155 &&
386 (HAS_DDI(dev_priv) || IS_VALLEYVIEW(dev_priv)))
387 dev_priv->vbt.int_crt_support = general->int_crt_support;
388 dev_priv->vbt.lvds_use_ssc = general->enable_ssc;
389 dev_priv->vbt.lvds_ssc_freq =
390 intel_bios_ssc_frequency(dev_priv, general->ssc_freq);
391 dev_priv->vbt.display_clock_mode = general->display_clock_mode;
392 dev_priv->vbt.fdi_rx_polarity_inverted = general->fdi_rx_polarity_inverted;
393 DRM_DEBUG_KMS("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",
394 dev_priv->vbt.int_tv_support,
395 dev_priv->vbt.int_crt_support,
396 dev_priv->vbt.lvds_use_ssc,
397 dev_priv->vbt.lvds_ssc_freq,
398 dev_priv->vbt.display_clock_mode,
399 dev_priv->vbt.fdi_rx_polarity_inverted);
400 }
401
402 static void
403 parse_general_definitions(struct drm_i915_private *dev_priv,
404 const struct bdb_header *bdb)
405 {
406 const struct bdb_general_definitions *general;
407
408 general = find_section(bdb, BDB_GENERAL_DEFINITIONS);
409 if (general) {
410 u16 block_size = get_blocksize(general);
411 if (block_size >= sizeof(*general)) {
412 int bus_pin = general->crt_ddc_gmbus_pin;
413 DRM_DEBUG_KMS("crt_ddc_bus_pin: %d\n", bus_pin);
414 if (intel_gmbus_is_valid_pin(dev_priv, bus_pin))
415 dev_priv->vbt.crt_ddc_pin = bus_pin;
416 } else {
417 DRM_DEBUG_KMS("BDB_GD too small (%d). Invalid.\n",
418 block_size);
419 }
420 }
421 }
422
423 static const union child_device_config *
424 child_device_ptr(const struct bdb_general_definitions *p_defs, int i)
425 {
426 return (const void *) &p_defs->devices[i * p_defs->child_dev_size];
427 }
428
429 static void
430 parse_sdvo_device_mapping(struct drm_i915_private *dev_priv,
431 const struct bdb_header *bdb)
432 {
433 struct sdvo_device_mapping *p_mapping;
434 const struct bdb_general_definitions *p_defs;
435 const struct old_child_dev_config *child; /* legacy */
436 int i, child_device_num, count;
437 u16 block_size;
438
439 p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS);
440 if (!p_defs) {
441 DRM_DEBUG_KMS("No general definition block is found, unable to construct sdvo mapping.\n");
442 return;
443 }
444
445 /*
446 * Only parse SDVO mappings when the general definitions block child
447 * device size matches that of the *legacy* child device config
448 * struct. Thus, SDVO mapping will be skipped for newer VBT.
449 */
450 if (p_defs->child_dev_size != sizeof(*child)) {
451 DRM_DEBUG_KMS("Unsupported child device size for SDVO mapping.\n");
452 return;
453 }
454 /* get the block size of general definitions */
455 block_size = get_blocksize(p_defs);
456 /* get the number of child device */
457 child_device_num = (block_size - sizeof(*p_defs)) /
458 p_defs->child_dev_size;
459 count = 0;
460 for (i = 0; i < child_device_num; i++) {
461 child = &child_device_ptr(p_defs, i)->old;
462 if (!child->device_type) {
463 /* skip the device block if device type is invalid */
464 continue;
465 }
466 if (child->slave_addr != SLAVE_ADDR1 &&
467 child->slave_addr != SLAVE_ADDR2) {
468 /*
469 * If the slave address is neither 0x70 nor 0x72,
470 * it is not a SDVO device. Skip it.
471 */
472 continue;
473 }
474 if (child->dvo_port != DEVICE_PORT_DVOB &&
475 child->dvo_port != DEVICE_PORT_DVOC) {
476 /* skip the incorrect SDVO port */
477 DRM_DEBUG_KMS("Incorrect SDVO port. Skip it\n");
478 continue;
479 }
480 DRM_DEBUG_KMS("the SDVO device with slave addr %2x is found on"
481 " %s port\n",
482 child->slave_addr,
483 (child->dvo_port == DEVICE_PORT_DVOB) ?
484 "SDVOB" : "SDVOC");
485 p_mapping = &(dev_priv->sdvo_mappings[child->dvo_port - 1]);
486 if (!p_mapping->initialized) {
487 p_mapping->dvo_port = child->dvo_port;
488 p_mapping->slave_addr = child->slave_addr;
489 p_mapping->dvo_wiring = child->dvo_wiring;
490 p_mapping->ddc_pin = child->ddc_pin;
491 p_mapping->i2c_pin = child->i2c_pin;
492 p_mapping->initialized = 1;
493 DRM_DEBUG_KMS("SDVO device: dvo=%x, addr=%x, wiring=%d, ddc_pin=%d, i2c_pin=%d\n",
494 p_mapping->dvo_port,
495 p_mapping->slave_addr,
496 p_mapping->dvo_wiring,
497 p_mapping->ddc_pin,
498 p_mapping->i2c_pin);
499 } else {
500 DRM_DEBUG_KMS("Maybe one SDVO port is shared by "
501 "two SDVO device.\n");
502 }
503 if (child->slave2_addr) {
504 /* Maybe this is a SDVO device with multiple inputs */
505 /* And the mapping info is not added */
506 DRM_DEBUG_KMS("there exists the slave2_addr. Maybe this"
507 " is a SDVO device with multiple inputs.\n");
508 }
509 count++;
510 }
511
512 if (!count) {
513 /* No SDVO device info is found */
514 DRM_DEBUG_KMS("No SDVO device info is found in VBT\n");
515 }
516 return;
517 }
518
519 static void
520 parse_driver_features(struct drm_i915_private *dev_priv,
521 const struct bdb_header *bdb)
522 {
523 const struct bdb_driver_features *driver;
524
525 driver = find_section(bdb, BDB_DRIVER_FEATURES);
526 if (!driver)
527 return;
528
529 if (driver->lvds_config == BDB_DRIVER_FEATURE_EDP)
530 dev_priv->vbt.edp.support = 1;
531
532 if (driver->dual_frequency)
533 dev_priv->render_reclock_avail = true;
534
535 DRM_DEBUG_KMS("DRRS State Enabled:%d\n", driver->drrs_enabled);
536 /*
537 * If DRRS is not supported, drrs_type has to be set to 0.
538 * This is because, VBT is configured in such a way that
539 * static DRRS is 0 and DRRS not supported is represented by
540 * driver->drrs_enabled=false
541 */
542 if (!driver->drrs_enabled)
543 dev_priv->vbt.drrs_type = DRRS_NOT_SUPPORTED;
544 }
545
546 static void
547 parse_edp(struct drm_i915_private *dev_priv, const struct bdb_header *bdb)
548 {
549 const struct bdb_edp *edp;
550 const struct edp_power_seq *edp_pps;
551 const struct edp_link_params *edp_link_params;
552
553 edp = find_section(bdb, BDB_EDP);
554 if (!edp) {
555 if (dev_priv->vbt.edp.support)
556 DRM_DEBUG_KMS("No eDP BDB found but eDP panel supported.\n");
557 return;
558 }
559
560 switch ((edp->color_depth >> (panel_type * 2)) & 3) {
561 case EDP_18BPP:
562 dev_priv->vbt.edp.bpp = 18;
563 break;
564 case EDP_24BPP:
565 dev_priv->vbt.edp.bpp = 24;
566 break;
567 case EDP_30BPP:
568 dev_priv->vbt.edp.bpp = 30;
569 break;
570 }
571
572 /* Get the eDP sequencing and link info */
573 edp_pps = &edp->power_seqs[panel_type];
574 edp_link_params = &edp->link_params[panel_type];
575
576 dev_priv->vbt.edp.pps = *edp_pps;
577
578 switch (edp_link_params->rate) {
579 case EDP_RATE_1_62:
580 dev_priv->vbt.edp.rate = DP_LINK_BW_1_62;
581 break;
582 case EDP_RATE_2_7:
583 dev_priv->vbt.edp.rate = DP_LINK_BW_2_7;
584 break;
585 default:
586 DRM_DEBUG_KMS("VBT has unknown eDP link rate value %u\n",
587 edp_link_params->rate);
588 break;
589 }
590
591 switch (edp_link_params->lanes) {
592 case EDP_LANE_1:
593 dev_priv->vbt.edp.lanes = 1;
594 break;
595 case EDP_LANE_2:
596 dev_priv->vbt.edp.lanes = 2;
597 break;
598 case EDP_LANE_4:
599 dev_priv->vbt.edp.lanes = 4;
600 break;
601 default:
602 DRM_DEBUG_KMS("VBT has unknown eDP lane count value %u\n",
603 edp_link_params->lanes);
604 break;
605 }
606
607 switch (edp_link_params->preemphasis) {
608 case EDP_PREEMPHASIS_NONE:
609 dev_priv->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_0;
610 break;
611 case EDP_PREEMPHASIS_3_5dB:
612 dev_priv->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_1;
613 break;
614 case EDP_PREEMPHASIS_6dB:
615 dev_priv->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_2;
616 break;
617 case EDP_PREEMPHASIS_9_5dB:
618 dev_priv->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_3;
619 break;
620 default:
621 DRM_DEBUG_KMS("VBT has unknown eDP pre-emphasis value %u\n",
622 edp_link_params->preemphasis);
623 break;
624 }
625
626 switch (edp_link_params->vswing) {
627 case EDP_VSWING_0_4V:
628 dev_priv->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_0;
629 break;
630 case EDP_VSWING_0_6V:
631 dev_priv->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_1;
632 break;
633 case EDP_VSWING_0_8V:
634 dev_priv->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_2;
635 break;
636 case EDP_VSWING_1_2V:
637 dev_priv->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_3;
638 break;
639 default:
640 DRM_DEBUG_KMS("VBT has unknown eDP voltage swing value %u\n",
641 edp_link_params->vswing);
642 break;
643 }
644
645 if (bdb->version >= 173) {
646 uint8_t vswing;
647
648 /* Don't read from VBT if module parameter has valid value*/
649 if (i915.edp_vswing) {
650 dev_priv->vbt.edp.low_vswing = i915.edp_vswing == 1;
651 } else {
652 vswing = (edp->edp_vswing_preemph >> (panel_type * 4)) & 0xF;
653 dev_priv->vbt.edp.low_vswing = vswing == 0;
654 }
655 }
656 }
657
658 static void
659 parse_psr(struct drm_i915_private *dev_priv, const struct bdb_header *bdb)
660 {
661 const struct bdb_psr *psr;
662 const struct psr_table *psr_table;
663
664 psr = find_section(bdb, BDB_PSR);
665 if (!psr) {
666 DRM_DEBUG_KMS("No PSR BDB found.\n");
667 return;
668 }
669
670 psr_table = &psr->psr_table[panel_type];
671
672 dev_priv->vbt.psr.full_link = psr_table->full_link;
673 dev_priv->vbt.psr.require_aux_wakeup = psr_table->require_aux_to_wakeup;
674
675 /* Allowed VBT values goes from 0 to 15 */
676 dev_priv->vbt.psr.idle_frames = psr_table->idle_frames < 0 ? 0 :
677 psr_table->idle_frames > 15 ? 15 : psr_table->idle_frames;
678
679 switch (psr_table->lines_to_wait) {
680 case 0:
681 dev_priv->vbt.psr.lines_to_wait = PSR_0_LINES_TO_WAIT;
682 break;
683 case 1:
684 dev_priv->vbt.psr.lines_to_wait = PSR_1_LINE_TO_WAIT;
685 break;
686 case 2:
687 dev_priv->vbt.psr.lines_to_wait = PSR_4_LINES_TO_WAIT;
688 break;
689 case 3:
690 dev_priv->vbt.psr.lines_to_wait = PSR_8_LINES_TO_WAIT;
691 break;
692 default:
693 DRM_DEBUG_KMS("VBT has unknown PSR lines to wait %u\n",
694 psr_table->lines_to_wait);
695 break;
696 }
697
698 dev_priv->vbt.psr.tp1_wakeup_time = psr_table->tp1_wakeup_time;
699 dev_priv->vbt.psr.tp2_tp3_wakeup_time = psr_table->tp2_tp3_wakeup_time;
700 }
701
702 static void
703 parse_mipi_config(struct drm_i915_private *dev_priv,
704 const struct bdb_header *bdb)
705 {
706 const struct bdb_mipi_config *start;
707 const struct mipi_config *config;
708 const struct mipi_pps_data *pps;
709
710 /* parse MIPI blocks only if LFP type is MIPI */
711 if (!intel_bios_is_dsi_present(dev_priv, NULL))
712 return;
713
714 /* Initialize this to undefined indicating no generic MIPI support */
715 dev_priv->vbt.dsi.panel_id = MIPI_DSI_UNDEFINED_PANEL_ID;
716
717 /* Block #40 is already parsed and panel_fixed_mode is
718 * stored in dev_priv->lfp_lvds_vbt_mode
719 * resuse this when needed
720 */
721
722 /* Parse #52 for panel index used from panel_type already
723 * parsed
724 */
725 start = find_section(bdb, BDB_MIPI_CONFIG);
726 if (!start) {
727 DRM_DEBUG_KMS("No MIPI config BDB found");
728 return;
729 }
730
731 DRM_DEBUG_DRIVER("Found MIPI Config block, panel index = %d\n",
732 panel_type);
733
734 /*
735 * get hold of the correct configuration block and pps data as per
736 * the panel_type as index
737 */
738 config = &start->config[panel_type];
739 pps = &start->pps[panel_type];
740
741 /* store as of now full data. Trim when we realise all is not needed */
742 dev_priv->vbt.dsi.config = kmemdup(config, sizeof(struct mipi_config), GFP_KERNEL);
743 if (!dev_priv->vbt.dsi.config)
744 return;
745
746 dev_priv->vbt.dsi.pps = kmemdup(pps, sizeof(struct mipi_pps_data), GFP_KERNEL);
747 if (!dev_priv->vbt.dsi.pps) {
748 kfree(dev_priv->vbt.dsi.config);
749 return;
750 }
751
752 /* We have mandatory mipi config blocks. Initialize as generic panel */
753 dev_priv->vbt.dsi.panel_id = MIPI_DSI_GENERIC_PANEL_ID;
754 }
755
756 /* Find the sequence block and size for the given panel. */
757 static const u8 *
758 find_panel_sequence_block(const struct bdb_mipi_sequence *sequence,
759 u16 panel_id, u32 *seq_size)
760 {
761 u32 total = get_blocksize(sequence);
762 const u8 *data = &sequence->data[0];
763 u8 current_id;
764 u32 current_size;
765 int header_size = sequence->version >= 3 ? 5 : 3;
766 int index = 0;
767 int i;
768
769 /* skip new block size */
770 if (sequence->version >= 3)
771 data += 4;
772
773 for (i = 0; i < MAX_MIPI_CONFIGURATIONS && index < total; i++) {
774 if (index + header_size > total) {
775 DRM_ERROR("Invalid sequence block (header)\n");
776 return NULL;
777 }
778
779 current_id = *(data + index);
780 if (sequence->version >= 3)
781 current_size = *((const u32 *)(data + index + 1));
782 else
783 current_size = *((const u16 *)(data + index + 1));
784
785 index += header_size;
786
787 if (index + current_size > total) {
788 DRM_ERROR("Invalid sequence block\n");
789 return NULL;
790 }
791
792 if (current_id == panel_id) {
793 *seq_size = current_size;
794 return data + index;
795 }
796
797 index += current_size;
798 }
799
800 DRM_ERROR("Sequence block detected but no valid configuration\n");
801
802 return NULL;
803 }
804
805 static int goto_next_sequence(const u8 *data, int index, int total)
806 {
807 u16 len;
808
809 /* Skip Sequence Byte. */
810 for (index = index + 1; index < total; index += len) {
811 u8 operation_byte = *(data + index);
812 index++;
813
814 switch (operation_byte) {
815 case MIPI_SEQ_ELEM_END:
816 return index;
817 case MIPI_SEQ_ELEM_SEND_PKT:
818 if (index + 4 > total)
819 return 0;
820
821 len = *((const u16 *)(data + index + 2)) + 4;
822 break;
823 case MIPI_SEQ_ELEM_DELAY:
824 len = 4;
825 break;
826 case MIPI_SEQ_ELEM_GPIO:
827 len = 2;
828 break;
829 case MIPI_SEQ_ELEM_I2C:
830 if (index + 7 > total)
831 return 0;
832 len = *(data + index + 6) + 7;
833 break;
834 default:
835 DRM_ERROR("Unknown operation byte\n");
836 return 0;
837 }
838 }
839
840 return 0;
841 }
842
843 static int goto_next_sequence_v3(const u8 *data, int index, int total)
844 {
845 int seq_end;
846 u16 len;
847 u32 size_of_sequence;
848
849 /*
850 * Could skip sequence based on Size of Sequence alone, but also do some
851 * checking on the structure.
852 */
853 if (total < 5) {
854 DRM_ERROR("Too small sequence size\n");
855 return 0;
856 }
857
858 /* Skip Sequence Byte. */
859 index++;
860
861 /*
862 * Size of Sequence. Excludes the Sequence Byte and the size itself,
863 * includes MIPI_SEQ_ELEM_END byte, excludes the final MIPI_SEQ_END
864 * byte.
865 */
866 size_of_sequence = *((const uint32_t *)(data + index));
867 index += 4;
868
869 seq_end = index + size_of_sequence;
870 if (seq_end > total) {
871 DRM_ERROR("Invalid sequence size\n");
872 return 0;
873 }
874
875 for (; index < total; index += len) {
876 u8 operation_byte = *(data + index);
877 index++;
878
879 if (operation_byte == MIPI_SEQ_ELEM_END) {
880 if (index != seq_end) {
881 DRM_ERROR("Invalid element structure\n");
882 return 0;
883 }
884 return index;
885 }
886
887 len = *(data + index);
888 index++;
889
890 /*
891 * FIXME: Would be nice to check elements like for v1/v2 in
892 * goto_next_sequence() above.
893 */
894 switch (operation_byte) {
895 case MIPI_SEQ_ELEM_SEND_PKT:
896 case MIPI_SEQ_ELEM_DELAY:
897 case MIPI_SEQ_ELEM_GPIO:
898 case MIPI_SEQ_ELEM_I2C:
899 case MIPI_SEQ_ELEM_SPI:
900 case MIPI_SEQ_ELEM_PMIC:
901 break;
902 default:
903 DRM_ERROR("Unknown operation byte %u\n",
904 operation_byte);
905 break;
906 }
907 }
908
909 return 0;
910 }
911
912 static void
913 parse_mipi_sequence(struct drm_i915_private *dev_priv,
914 const struct bdb_header *bdb)
915 {
916 const struct bdb_mipi_sequence *sequence;
917 const u8 *seq_data;
918 u32 seq_size;
919 u8 *data;
920 int index = 0;
921
922 /* Only our generic panel driver uses the sequence block. */
923 if (dev_priv->vbt.dsi.panel_id != MIPI_DSI_GENERIC_PANEL_ID)
924 return;
925
926 sequence = find_section(bdb, BDB_MIPI_SEQUENCE);
927 if (!sequence) {
928 DRM_DEBUG_KMS("No MIPI Sequence found, parsing complete\n");
929 return;
930 }
931
932 /* Fail gracefully for forward incompatible sequence block. */
933 if (sequence->version >= 4) {
934 DRM_ERROR("Unable to parse MIPI Sequence Block v%u\n",
935 sequence->version);
936 return;
937 }
938
939 DRM_DEBUG_DRIVER("Found MIPI sequence block v%u\n", sequence->version);
940
941 seq_data = find_panel_sequence_block(sequence, panel_type, &seq_size);
942 if (!seq_data)
943 return;
944
945 data = kmemdup(seq_data, seq_size, GFP_KERNEL);
946 if (!data)
947 return;
948
949 /* Parse the sequences, store pointers to each sequence. */
950 for (;;) {
951 u8 seq_id = *(data + index);
952 if (seq_id == MIPI_SEQ_END)
953 break;
954
955 if (seq_id >= MIPI_SEQ_MAX) {
956 DRM_ERROR("Unknown sequence %u\n", seq_id);
957 goto err;
958 }
959
960 dev_priv->vbt.dsi.sequence[seq_id] = data + index;
961
962 if (sequence->version >= 3)
963 index = goto_next_sequence_v3(data, index, seq_size);
964 else
965 index = goto_next_sequence(data, index, seq_size);
966 if (!index) {
967 DRM_ERROR("Invalid sequence %u\n", seq_id);
968 goto err;
969 }
970 }
971
972 dev_priv->vbt.dsi.data = data;
973 dev_priv->vbt.dsi.size = seq_size;
974 dev_priv->vbt.dsi.seq_version = sequence->version;
975
976 DRM_DEBUG_DRIVER("MIPI related VBT parsing complete\n");
977 return;
978
979 err:
980 kfree(data);
981 memset(dev_priv->vbt.dsi.sequence, 0, sizeof(dev_priv->vbt.dsi.sequence));
982 }
983
984 static u8 translate_iboost(u8 val)
985 {
986 static const u8 mapping[] = { 1, 3, 7 }; /* See VBT spec */
987
988 if (val >= ARRAY_SIZE(mapping)) {
989 DRM_DEBUG_KMS("Unsupported I_boost value found in VBT (%d), display may not work properly\n", val);
990 return 0;
991 }
992 return mapping[val];
993 }
994
995 static void parse_ddi_port(struct drm_i915_private *dev_priv, enum port port,
996 const struct bdb_header *bdb)
997 {
998 union child_device_config *it, *child = NULL;
999 struct ddi_vbt_port_info *info = &dev_priv->vbt.ddi_port_info[port];
1000 uint8_t hdmi_level_shift;
1001 int i, j;
1002 bool is_dvi, is_hdmi, is_dp, is_edp, is_crt;
1003 uint8_t aux_channel, ddc_pin;
1004 /* Each DDI port can have more than one value on the "DVO Port" field,
1005 * so look for all the possible values for each port and abort if more
1006 * than one is found. */
1007 int dvo_ports[][3] = {
1008 {DVO_PORT_HDMIA, DVO_PORT_DPA, -1},
1009 {DVO_PORT_HDMIB, DVO_PORT_DPB, -1},
1010 {DVO_PORT_HDMIC, DVO_PORT_DPC, -1},
1011 {DVO_PORT_HDMID, DVO_PORT_DPD, -1},
1012 {DVO_PORT_CRT, DVO_PORT_HDMIE, DVO_PORT_DPE},
1013 };
1014
1015 /* Find the child device to use, abort if more than one found. */
1016 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
1017 it = dev_priv->vbt.child_dev + i;
1018
1019 for (j = 0; j < 3; j++) {
1020 if (dvo_ports[port][j] == -1)
1021 break;
1022
1023 if (it->common.dvo_port == dvo_ports[port][j]) {
1024 if (child) {
1025 DRM_DEBUG_KMS("More than one child device for port %c in VBT.\n",
1026 port_name(port));
1027 return;
1028 }
1029 child = it;
1030 }
1031 }
1032 }
1033 if (!child)
1034 return;
1035
1036 aux_channel = child->raw[25];
1037 ddc_pin = child->common.ddc_pin;
1038
1039 is_dvi = child->common.device_type & DEVICE_TYPE_TMDS_DVI_SIGNALING;
1040 is_dp = child->common.device_type & DEVICE_TYPE_DISPLAYPORT_OUTPUT;
1041 is_crt = child->common.device_type & DEVICE_TYPE_ANALOG_OUTPUT;
1042 is_hdmi = is_dvi && (child->common.device_type & DEVICE_TYPE_NOT_HDMI_OUTPUT) == 0;
1043 is_edp = is_dp && (child->common.device_type & DEVICE_TYPE_INTERNAL_CONNECTOR);
1044
1045 info->supports_dvi = is_dvi;
1046 info->supports_hdmi = is_hdmi;
1047 info->supports_dp = is_dp;
1048
1049 DRM_DEBUG_KMS("Port %c VBT info: DP:%d HDMI:%d DVI:%d EDP:%d CRT:%d\n",
1050 port_name(port), is_dp, is_hdmi, is_dvi, is_edp, is_crt);
1051
1052 if (is_edp && is_dvi)
1053 DRM_DEBUG_KMS("Internal DP port %c is TMDS compatible\n",
1054 port_name(port));
1055 if (is_crt && port != PORT_E)
1056 DRM_DEBUG_KMS("Port %c is analog\n", port_name(port));
1057 if (is_crt && (is_dvi || is_dp))
1058 DRM_DEBUG_KMS("Analog port %c is also DP or TMDS compatible\n",
1059 port_name(port));
1060 if (is_dvi && (port == PORT_A || port == PORT_E))
1061 DRM_DEBUG_KMS("Port %c is TMDS compatible\n", port_name(port));
1062 if (!is_dvi && !is_dp && !is_crt)
1063 DRM_DEBUG_KMS("Port %c is not DP/TMDS/CRT compatible\n",
1064 port_name(port));
1065 if (is_edp && (port == PORT_B || port == PORT_C || port == PORT_E))
1066 DRM_DEBUG_KMS("Port %c is internal DP\n", port_name(port));
1067
1068 if (is_dvi) {
1069 if (port == PORT_E) {
1070 info->alternate_ddc_pin = ddc_pin;
1071 /* if DDIE share ddc pin with other port, then
1072 * dvi/hdmi couldn't exist on the shared port.
1073 * Otherwise they share the same ddc bin and system
1074 * couldn't communicate with them seperately. */
1075 if (ddc_pin == DDC_PIN_B) {
1076 dev_priv->vbt.ddi_port_info[PORT_B].supports_dvi = 0;
1077 dev_priv->vbt.ddi_port_info[PORT_B].supports_hdmi = 0;
1078 } else if (ddc_pin == DDC_PIN_C) {
1079 dev_priv->vbt.ddi_port_info[PORT_C].supports_dvi = 0;
1080 dev_priv->vbt.ddi_port_info[PORT_C].supports_hdmi = 0;
1081 } else if (ddc_pin == DDC_PIN_D) {
1082 dev_priv->vbt.ddi_port_info[PORT_D].supports_dvi = 0;
1083 dev_priv->vbt.ddi_port_info[PORT_D].supports_hdmi = 0;
1084 }
1085 } else if (ddc_pin == DDC_PIN_B && port != PORT_B)
1086 DRM_DEBUG_KMS("Unexpected DDC pin for port B\n");
1087 else if (ddc_pin == DDC_PIN_C && port != PORT_C)
1088 DRM_DEBUG_KMS("Unexpected DDC pin for port C\n");
1089 else if (ddc_pin == DDC_PIN_D && port != PORT_D)
1090 DRM_DEBUG_KMS("Unexpected DDC pin for port D\n");
1091 }
1092
1093 if (is_dp) {
1094 if (port == PORT_E) {
1095 info->alternate_aux_channel = aux_channel;
1096 /* if DDIE share aux channel with other port, then
1097 * DP couldn't exist on the shared port. Otherwise
1098 * they share the same aux channel and system
1099 * couldn't communicate with them seperately. */
1100 if (aux_channel == DP_AUX_A)
1101 dev_priv->vbt.ddi_port_info[PORT_A].supports_dp = 0;
1102 else if (aux_channel == DP_AUX_B)
1103 dev_priv->vbt.ddi_port_info[PORT_B].supports_dp = 0;
1104 else if (aux_channel == DP_AUX_C)
1105 dev_priv->vbt.ddi_port_info[PORT_C].supports_dp = 0;
1106 else if (aux_channel == DP_AUX_D)
1107 dev_priv->vbt.ddi_port_info[PORT_D].supports_dp = 0;
1108 }
1109 else if (aux_channel == DP_AUX_A && port != PORT_A)
1110 DRM_DEBUG_KMS("Unexpected AUX channel for port A\n");
1111 else if (aux_channel == DP_AUX_B && port != PORT_B)
1112 DRM_DEBUG_KMS("Unexpected AUX channel for port B\n");
1113 else if (aux_channel == DP_AUX_C && port != PORT_C)
1114 DRM_DEBUG_KMS("Unexpected AUX channel for port C\n");
1115 else if (aux_channel == DP_AUX_D && port != PORT_D)
1116 DRM_DEBUG_KMS("Unexpected AUX channel for port D\n");
1117 }
1118
1119 if (bdb->version >= 158) {
1120 /* The VBT HDMI level shift values match the table we have. */
1121 hdmi_level_shift = child->raw[7] & 0xF;
1122 DRM_DEBUG_KMS("VBT HDMI level shift for port %c: %d\n",
1123 port_name(port),
1124 hdmi_level_shift);
1125 info->hdmi_level_shift = hdmi_level_shift;
1126 }
1127
1128 /* Parse the I_boost config for SKL and above */
1129 if (bdb->version >= 196 && (child->common.flags_1 & IBOOST_ENABLE)) {
1130 info->dp_boost_level = translate_iboost(child->common.iboost_level & 0xF);
1131 DRM_DEBUG_KMS("VBT (e)DP boost level for port %c: %d\n",
1132 port_name(port), info->dp_boost_level);
1133 info->hdmi_boost_level = translate_iboost(child->common.iboost_level >> 4);
1134 DRM_DEBUG_KMS("VBT HDMI boost level for port %c: %d\n",
1135 port_name(port), info->hdmi_boost_level);
1136 }
1137 }
1138
1139 static void parse_ddi_ports(struct drm_i915_private *dev_priv,
1140 const struct bdb_header *bdb)
1141 {
1142 enum port port;
1143
1144 if (!HAS_DDI(dev_priv))
1145 return;
1146
1147 if (!dev_priv->vbt.child_dev_num)
1148 return;
1149
1150 if (bdb->version < 155)
1151 return;
1152
1153 for (port = PORT_A; port < I915_MAX_PORTS; port++)
1154 parse_ddi_port(dev_priv, port, bdb);
1155 }
1156
1157 static void
1158 parse_device_mapping(struct drm_i915_private *dev_priv,
1159 const struct bdb_header *bdb)
1160 {
1161 const struct bdb_general_definitions *p_defs;
1162 const union child_device_config *p_child;
1163 union child_device_config *child_dev_ptr;
1164 int i, child_device_num, count;
1165 u8 expected_size;
1166 u16 block_size;
1167
1168 p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS);
1169 if (!p_defs) {
1170 DRM_DEBUG_KMS("No general definition block is found, no devices defined.\n");
1171 return;
1172 }
1173 if (bdb->version < 106) {
1174 expected_size = 22;
1175 } else if (bdb->version < 109) {
1176 expected_size = 27;
1177 } else if (bdb->version < 195) {
1178 BUILD_BUG_ON(sizeof(struct old_child_dev_config) != 33);
1179 expected_size = sizeof(struct old_child_dev_config);
1180 } else if (bdb->version == 195) {
1181 expected_size = 37;
1182 } else if (bdb->version <= 197) {
1183 expected_size = 38;
1184 } else {
1185 expected_size = 38;
1186 BUILD_BUG_ON(sizeof(*p_child) < 38);
1187 DRM_DEBUG_DRIVER("Expected child device config size for VBT version %u not known; assuming %u\n",
1188 bdb->version, expected_size);
1189 }
1190
1191 /* Flag an error for unexpected size, but continue anyway. */
1192 if (p_defs->child_dev_size != expected_size)
1193 DRM_ERROR("Unexpected child device config size %u (expected %u for VBT version %u)\n",
1194 p_defs->child_dev_size, expected_size, bdb->version);
1195
1196 /* The legacy sized child device config is the minimum we need. */
1197 if (p_defs->child_dev_size < sizeof(struct old_child_dev_config)) {
1198 DRM_DEBUG_KMS("Child device config size %u is too small.\n",
1199 p_defs->child_dev_size);
1200 return;
1201 }
1202
1203 /* get the block size of general definitions */
1204 block_size = get_blocksize(p_defs);
1205 /* get the number of child device */
1206 child_device_num = (block_size - sizeof(*p_defs)) /
1207 p_defs->child_dev_size;
1208 count = 0;
1209 /* get the number of child device that is present */
1210 for (i = 0; i < child_device_num; i++) {
1211 p_child = child_device_ptr(p_defs, i);
1212 if (!p_child->common.device_type) {
1213 /* skip the device block if device type is invalid */
1214 continue;
1215 }
1216 count++;
1217 }
1218 if (!count) {
1219 DRM_DEBUG_KMS("no child dev is parsed from VBT\n");
1220 return;
1221 }
1222 dev_priv->vbt.child_dev = kcalloc(count, sizeof(*p_child), GFP_KERNEL);
1223 if (!dev_priv->vbt.child_dev) {
1224 DRM_DEBUG_KMS("No memory space for child device\n");
1225 return;
1226 }
1227
1228 dev_priv->vbt.child_dev_num = count;
1229 count = 0;
1230 for (i = 0; i < child_device_num; i++) {
1231 p_child = child_device_ptr(p_defs, i);
1232 if (!p_child->common.device_type) {
1233 /* skip the device block if device type is invalid */
1234 continue;
1235 }
1236
1237 child_dev_ptr = dev_priv->vbt.child_dev + count;
1238 count++;
1239
1240 /*
1241 * Copy as much as we know (sizeof) and is available
1242 * (child_dev_size) of the child device. Accessing the data must
1243 * depend on VBT version.
1244 */
1245 memcpy(child_dev_ptr, p_child,
1246 min_t(size_t, p_defs->child_dev_size, sizeof(*p_child)));
1247 }
1248 return;
1249 }
1250
1251 static void
1252 init_vbt_defaults(struct drm_i915_private *dev_priv)
1253 {
1254 enum port port;
1255
1256 dev_priv->vbt.crt_ddc_pin = GMBUS_PIN_VGADDC;
1257
1258 /* Default to having backlight */
1259 dev_priv->vbt.backlight.present = true;
1260
1261 /* LFP panel data */
1262 dev_priv->vbt.lvds_dither = 1;
1263 dev_priv->vbt.lvds_vbt = 0;
1264
1265 /* SDVO panel data */
1266 dev_priv->vbt.sdvo_lvds_vbt_mode = NULL;
1267
1268 /* general features */
1269 dev_priv->vbt.int_tv_support = 1;
1270 dev_priv->vbt.int_crt_support = 1;
1271
1272 /* Default to using SSC */
1273 dev_priv->vbt.lvds_use_ssc = 1;
1274 /*
1275 * Core/SandyBridge/IvyBridge use alternative (120MHz) reference
1276 * clock for LVDS.
1277 */
1278 dev_priv->vbt.lvds_ssc_freq = intel_bios_ssc_frequency(dev_priv,
1279 !HAS_PCH_SPLIT(dev_priv));
1280 DRM_DEBUG_KMS("Set default to SSC at %d kHz\n", dev_priv->vbt.lvds_ssc_freq);
1281
1282 for (port = PORT_A; port < I915_MAX_PORTS; port++) {
1283 struct ddi_vbt_port_info *info =
1284 &dev_priv->vbt.ddi_port_info[port];
1285
1286 info->hdmi_level_shift = HDMI_LEVEL_SHIFT_UNKNOWN;
1287
1288 info->supports_dvi = (port != PORT_A && port != PORT_E);
1289 info->supports_hdmi = info->supports_dvi;
1290 info->supports_dp = (port != PORT_E);
1291 }
1292 }
1293
1294 static const struct bdb_header *get_bdb_header(const struct vbt_header *vbt)
1295 {
1296 const void *_vbt = vbt;
1297
1298 return _vbt + vbt->bdb_offset;
1299 }
1300
1301 /**
1302 * intel_bios_is_valid_vbt - does the given buffer contain a valid VBT
1303 * @buf: pointer to a buffer to validate
1304 * @size: size of the buffer
1305 *
1306 * Returns true on valid VBT.
1307 */
1308 bool intel_bios_is_valid_vbt(const void *buf, size_t size)
1309 {
1310 const struct vbt_header *vbt = buf;
1311 const struct bdb_header *bdb;
1312
1313 if (!vbt)
1314 return false;
1315
1316 if (sizeof(struct vbt_header) > size) {
1317 DRM_DEBUG_DRIVER("VBT header incomplete\n");
1318 return false;
1319 }
1320
1321 if (memcmp(vbt->signature, "$VBT", 4)) {
1322 DRM_DEBUG_DRIVER("VBT invalid signature\n");
1323 return false;
1324 }
1325
1326 if (vbt->bdb_offset + sizeof(struct bdb_header) > size) {
1327 DRM_DEBUG_DRIVER("BDB header incomplete\n");
1328 return false;
1329 }
1330
1331 bdb = get_bdb_header(vbt);
1332 if (vbt->bdb_offset + bdb->bdb_size > size) {
1333 DRM_DEBUG_DRIVER("BDB incomplete\n");
1334 return false;
1335 }
1336
1337 return vbt;
1338 }
1339
1340 static const struct vbt_header *find_vbt(void __iomem *bios, size_t size)
1341 {
1342 size_t i;
1343
1344 /* Scour memory looking for the VBT signature. */
1345 for (i = 0; i + 4 < size; i++) {
1346 void *vbt;
1347
1348 if (ioread32(bios + i) != *((const u32 *) "$VBT"))
1349 continue;
1350
1351 /*
1352 * This is the one place where we explicitly discard the address
1353 * space (__iomem) of the BIOS/VBT.
1354 */
1355 vbt = (void __force *) bios + i;
1356 if (intel_bios_is_valid_vbt(vbt, size - i))
1357 return vbt;
1358
1359 break;
1360 }
1361
1362 return NULL;
1363 }
1364
1365 /**
1366 * intel_bios_init - find VBT and initialize settings from the BIOS
1367 * @dev_priv: i915 device instance
1368 *
1369 * Loads the Video BIOS and checks that the VBT exists. Sets scratch registers
1370 * to appropriate values.
1371 *
1372 * Returns 0 on success, nonzero on failure.
1373 */
1374 int
1375 intel_bios_init(struct drm_i915_private *dev_priv)
1376 {
1377 struct pci_dev *pdev = dev_priv->dev->pdev;
1378 const struct vbt_header *vbt = dev_priv->opregion.vbt;
1379 const struct bdb_header *bdb;
1380 u8 __iomem *bios = NULL;
1381
1382 if (HAS_PCH_NOP(dev_priv))
1383 return -ENODEV;
1384
1385 init_vbt_defaults(dev_priv);
1386
1387 if (!vbt) {
1388 size_t size;
1389
1390 bios = pci_map_rom(pdev, &size);
1391 if (!bios)
1392 return -1;
1393
1394 vbt = find_vbt(bios, size);
1395 if (!vbt) {
1396 pci_unmap_rom(pdev, bios);
1397 return -1;
1398 }
1399
1400 DRM_DEBUG_KMS("Found valid VBT in PCI ROM\n");
1401 }
1402
1403 bdb = get_bdb_header(vbt);
1404
1405 DRM_DEBUG_KMS("VBT signature \"%.*s\", BDB version %d\n",
1406 (int)sizeof(vbt->signature), vbt->signature, bdb->version);
1407
1408 /* Grab useful general definitions */
1409 parse_general_features(dev_priv, bdb);
1410 parse_general_definitions(dev_priv, bdb);
1411 parse_lfp_panel_data(dev_priv, bdb);
1412 parse_lfp_backlight(dev_priv, bdb);
1413 parse_sdvo_panel_data(dev_priv, bdb);
1414 parse_sdvo_device_mapping(dev_priv, bdb);
1415 parse_device_mapping(dev_priv, bdb);
1416 parse_driver_features(dev_priv, bdb);
1417 parse_edp(dev_priv, bdb);
1418 parse_psr(dev_priv, bdb);
1419 parse_mipi_config(dev_priv, bdb);
1420 parse_mipi_sequence(dev_priv, bdb);
1421 parse_ddi_ports(dev_priv, bdb);
1422
1423 if (bios)
1424 pci_unmap_rom(pdev, bios);
1425
1426 return 0;
1427 }
1428
1429 /**
1430 * intel_bios_is_tv_present - is integrated TV present in VBT
1431 * @dev_priv: i915 device instance
1432 *
1433 * Return true if TV is present. If no child devices were parsed from VBT,
1434 * assume TV is present.
1435 */
1436 bool intel_bios_is_tv_present(struct drm_i915_private *dev_priv)
1437 {
1438 union child_device_config *p_child;
1439 int i;
1440
1441 if (!dev_priv->vbt.int_tv_support)
1442 return false;
1443
1444 if (!dev_priv->vbt.child_dev_num)
1445 return true;
1446
1447 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
1448 p_child = dev_priv->vbt.child_dev + i;
1449 /*
1450 * If the device type is not TV, continue.
1451 */
1452 switch (p_child->old.device_type) {
1453 case DEVICE_TYPE_INT_TV:
1454 case DEVICE_TYPE_TV:
1455 case DEVICE_TYPE_TV_SVIDEO_COMPOSITE:
1456 break;
1457 default:
1458 continue;
1459 }
1460 /* Only when the addin_offset is non-zero, it is regarded
1461 * as present.
1462 */
1463 if (p_child->old.addin_offset)
1464 return true;
1465 }
1466
1467 return false;
1468 }
1469
1470 /**
1471 * intel_bios_is_lvds_present - is LVDS present in VBT
1472 * @dev_priv: i915 device instance
1473 * @i2c_pin: i2c pin for LVDS if present
1474 *
1475 * Return true if LVDS is present. If no child devices were parsed from VBT,
1476 * assume LVDS is present.
1477 */
1478 bool intel_bios_is_lvds_present(struct drm_i915_private *dev_priv, u8 *i2c_pin)
1479 {
1480 int i;
1481
1482 if (!dev_priv->vbt.child_dev_num)
1483 return true;
1484
1485 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
1486 union child_device_config *uchild = dev_priv->vbt.child_dev + i;
1487 struct old_child_dev_config *child = &uchild->old;
1488
1489 /* If the device type is not LFP, continue.
1490 * We have to check both the new identifiers as well as the
1491 * old for compatibility with some BIOSes.
1492 */
1493 if (child->device_type != DEVICE_TYPE_INT_LFP &&
1494 child->device_type != DEVICE_TYPE_LFP)
1495 continue;
1496
1497 if (intel_gmbus_is_valid_pin(dev_priv, child->i2c_pin))
1498 *i2c_pin = child->i2c_pin;
1499
1500 /* However, we cannot trust the BIOS writers to populate
1501 * the VBT correctly. Since LVDS requires additional
1502 * information from AIM blocks, a non-zero addin offset is
1503 * a good indicator that the LVDS is actually present.
1504 */
1505 if (child->addin_offset)
1506 return true;
1507
1508 /* But even then some BIOS writers perform some black magic
1509 * and instantiate the device without reference to any
1510 * additional data. Trust that if the VBT was written into
1511 * the OpRegion then they have validated the LVDS's existence.
1512 */
1513 if (dev_priv->opregion.vbt)
1514 return true;
1515 }
1516
1517 return false;
1518 }
1519
1520 /**
1521 * intel_bios_is_port_edp - is the device in given port eDP
1522 * @dev_priv: i915 device instance
1523 * @port: port to check
1524 *
1525 * Return true if the device in %port is eDP.
1526 */
1527 bool intel_bios_is_port_edp(struct drm_i915_private *dev_priv, enum port port)
1528 {
1529 union child_device_config *p_child;
1530 static const short port_mapping[] = {
1531 [PORT_B] = DVO_PORT_DPB,
1532 [PORT_C] = DVO_PORT_DPC,
1533 [PORT_D] = DVO_PORT_DPD,
1534 [PORT_E] = DVO_PORT_DPE,
1535 };
1536 int i;
1537
1538 if (!dev_priv->vbt.child_dev_num)
1539 return false;
1540
1541 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
1542 p_child = dev_priv->vbt.child_dev + i;
1543
1544 if (p_child->common.dvo_port == port_mapping[port] &&
1545 (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) ==
1546 (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS))
1547 return true;
1548 }
1549
1550 return false;
1551 }
1552
1553 /**
1554 * intel_bios_is_dsi_present - is DSI present in VBT
1555 * @dev_priv: i915 device instance
1556 * @port: port for DSI if present
1557 *
1558 * Return true if DSI is present, and return the port in %port.
1559 */
1560 bool intel_bios_is_dsi_present(struct drm_i915_private *dev_priv,
1561 enum port *port)
1562 {
1563 union child_device_config *p_child;
1564 u8 dvo_port;
1565 int i;
1566
1567 for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
1568 p_child = dev_priv->vbt.child_dev + i;
1569
1570 if (!(p_child->common.device_type & DEVICE_TYPE_MIPI_OUTPUT))
1571 continue;
1572
1573 dvo_port = p_child->common.dvo_port;
1574
1575 switch (dvo_port) {
1576 case DVO_PORT_MIPIA:
1577 case DVO_PORT_MIPIC:
1578 if (port)
1579 *port = dvo_port - DVO_PORT_MIPIA;
1580 return true;
1581 case DVO_PORT_MIPIB:
1582 case DVO_PORT_MIPID:
1583 DRM_DEBUG_KMS("VBT has unsupported DSI port %c\n",
1584 port_name(dvo_port - DVO_PORT_MIPIA));
1585 break;
1586 }
1587 }
1588
1589 return false;
1590 }
This page took 0.104893 seconds and 5 git commands to generate.