2 * Copyright © 2006 Intel Corporation
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:
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
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
24 * Eric Anholt <eric@anholt.net>
31 #include "intel_bios.h"
33 #define SLAVE_ADDR1 0x70
34 #define SLAVE_ADDR2 0x72
36 static int panel_type
;
39 find_section(struct bdb_header
*bdb
, int section_id
)
43 u16 total
, current_size
;
46 /* skip to first section */
47 index
+= bdb
->header_size
;
48 total
= bdb
->bdb_size
;
50 /* walk the sections looking for section_id */
51 while (index
< total
) {
52 current_id
= *(base
+ index
);
54 current_size
= *((u16
*)(base
+ index
));
56 if (current_id
== section_id
)
58 index
+= current_size
;
65 get_blocksize(void *p
)
67 u16
*block_ptr
, block_size
;
69 block_ptr
= (u16
*)((char *)p
- 2);
70 block_size
= *block_ptr
;
75 fill_detail_timing_data(struct drm_display_mode
*panel_fixed_mode
,
76 struct lvds_dvo_timing
*dvo_timing
)
78 panel_fixed_mode
->hdisplay
= (dvo_timing
->hactive_hi
<< 8) |
79 dvo_timing
->hactive_lo
;
80 panel_fixed_mode
->hsync_start
= panel_fixed_mode
->hdisplay
+
81 ((dvo_timing
->hsync_off_hi
<< 8) | dvo_timing
->hsync_off_lo
);
82 panel_fixed_mode
->hsync_end
= panel_fixed_mode
->hsync_start
+
83 dvo_timing
->hsync_pulse_width
;
84 panel_fixed_mode
->htotal
= panel_fixed_mode
->hdisplay
+
85 ((dvo_timing
->hblank_hi
<< 8) | dvo_timing
->hblank_lo
);
87 panel_fixed_mode
->vdisplay
= (dvo_timing
->vactive_hi
<< 8) |
88 dvo_timing
->vactive_lo
;
89 panel_fixed_mode
->vsync_start
= panel_fixed_mode
->vdisplay
+
90 dvo_timing
->vsync_off
;
91 panel_fixed_mode
->vsync_end
= panel_fixed_mode
->vsync_start
+
92 dvo_timing
->vsync_pulse_width
;
93 panel_fixed_mode
->vtotal
= panel_fixed_mode
->vdisplay
+
94 ((dvo_timing
->vblank_hi
<< 8) | dvo_timing
->vblank_lo
);
95 panel_fixed_mode
->clock
= dvo_timing
->clock
* 10;
96 panel_fixed_mode
->type
= DRM_MODE_TYPE_PREFERRED
;
98 /* Some VBTs have bogus h/vtotal values */
99 if (panel_fixed_mode
->hsync_end
> panel_fixed_mode
->htotal
)
100 panel_fixed_mode
->htotal
= panel_fixed_mode
->hsync_end
+ 1;
101 if (panel_fixed_mode
->vsync_end
> panel_fixed_mode
->vtotal
)
102 panel_fixed_mode
->vtotal
= panel_fixed_mode
->vsync_end
+ 1;
104 drm_mode_set_name(panel_fixed_mode
);
107 /* Try to find integrated panel data */
109 parse_lfp_panel_data(struct drm_i915_private
*dev_priv
,
110 struct bdb_header
*bdb
)
112 struct bdb_lvds_options
*lvds_options
;
113 struct bdb_lvds_lfp_data
*lvds_lfp_data
;
114 struct bdb_lvds_lfp_data_ptrs
*lvds_lfp_data_ptrs
;
115 struct bdb_lvds_lfp_data_entry
*entry
;
116 struct lvds_dvo_timing
*dvo_timing
;
117 struct drm_display_mode
*panel_fixed_mode
;
118 int lfp_data_size
, dvo_timing_offset
;
119 int i
, temp_downclock
;
120 struct drm_display_mode
*temp_mode
;
122 /* Defaults if we can't find VBT info */
123 dev_priv
->lvds_dither
= 0;
124 dev_priv
->lvds_vbt
= 0;
126 lvds_options
= find_section(bdb
, BDB_LVDS_OPTIONS
);
130 dev_priv
->lvds_dither
= lvds_options
->pixel_dither
;
131 if (lvds_options
->panel_type
== 0xff)
133 panel_type
= lvds_options
->panel_type
;
135 lvds_lfp_data
= find_section(bdb
, BDB_LVDS_LFP_DATA
);
139 lvds_lfp_data_ptrs
= find_section(bdb
, BDB_LVDS_LFP_DATA_PTRS
);
140 if (!lvds_lfp_data_ptrs
)
143 dev_priv
->lvds_vbt
= 1;
145 lfp_data_size
= lvds_lfp_data_ptrs
->ptr
[1].dvo_timing_offset
-
146 lvds_lfp_data_ptrs
->ptr
[0].dvo_timing_offset
;
147 entry
= (struct bdb_lvds_lfp_data_entry
*)
148 ((uint8_t *)lvds_lfp_data
->data
+ (lfp_data_size
*
149 lvds_options
->panel_type
));
150 dvo_timing_offset
= lvds_lfp_data_ptrs
->ptr
[0].dvo_timing_offset
-
151 lvds_lfp_data_ptrs
->ptr
[0].fp_timing_offset
;
154 * the size of fp_timing varies on the different platform.
155 * So calculate the DVO timing relative offset in LVDS data
156 * entry to get the DVO timing entry
158 dvo_timing
= (struct lvds_dvo_timing
*)
159 ((unsigned char *)entry
+ dvo_timing_offset
);
161 panel_fixed_mode
= kzalloc(sizeof(*panel_fixed_mode
), GFP_KERNEL
);
163 fill_detail_timing_data(panel_fixed_mode
, dvo_timing
);
165 dev_priv
->lfp_lvds_vbt_mode
= panel_fixed_mode
;
167 DRM_DEBUG_KMS("Found panel mode in BIOS VBT tables:\n");
168 drm_mode_debug_printmodeline(panel_fixed_mode
);
170 temp_mode
= kzalloc(sizeof(*temp_mode
), GFP_KERNEL
);
171 temp_downclock
= panel_fixed_mode
->clock
;
173 * enumerate the LVDS panel timing info entry in VBT to check whether
174 * the LVDS downclock is found.
176 for (i
= 0; i
< 16; i
++) {
177 entry
= (struct bdb_lvds_lfp_data_entry
*)
178 ((uint8_t *)lvds_lfp_data
->data
+ (lfp_data_size
* i
));
179 dvo_timing
= (struct lvds_dvo_timing
*)
180 ((unsigned char *)entry
+ dvo_timing_offset
);
182 fill_detail_timing_data(temp_mode
, dvo_timing
);
184 if (temp_mode
->hdisplay
== panel_fixed_mode
->hdisplay
&&
185 temp_mode
->hsync_start
== panel_fixed_mode
->hsync_start
&&
186 temp_mode
->hsync_end
== panel_fixed_mode
->hsync_end
&&
187 temp_mode
->htotal
== panel_fixed_mode
->htotal
&&
188 temp_mode
->vdisplay
== panel_fixed_mode
->vdisplay
&&
189 temp_mode
->vsync_start
== panel_fixed_mode
->vsync_start
&&
190 temp_mode
->vsync_end
== panel_fixed_mode
->vsync_end
&&
191 temp_mode
->vtotal
== panel_fixed_mode
->vtotal
&&
192 temp_mode
->clock
< temp_downclock
) {
194 * downclock is already found. But we expect
195 * to find the lower downclock.
197 temp_downclock
= temp_mode
->clock
;
199 /* clear it to zero */
200 memset(temp_mode
, 0, sizeof(*temp_mode
));
203 if (temp_downclock
< panel_fixed_mode
->clock
&&
204 i915_lvds_downclock
) {
205 dev_priv
->lvds_downclock_avail
= 1;
206 dev_priv
->lvds_downclock
= temp_downclock
;
207 DRM_DEBUG_KMS("LVDS downclock is found in VBT. ",
208 "Normal Clock %dKHz, downclock %dKHz\n",
209 temp_downclock
, panel_fixed_mode
->clock
);
214 /* Try to find sdvo panel data */
216 parse_sdvo_panel_data(struct drm_i915_private
*dev_priv
,
217 struct bdb_header
*bdb
)
219 struct bdb_sdvo_lvds_options
*sdvo_lvds_options
;
220 struct lvds_dvo_timing
*dvo_timing
;
221 struct drm_display_mode
*panel_fixed_mode
;
223 dev_priv
->sdvo_lvds_vbt_mode
= NULL
;
225 sdvo_lvds_options
= find_section(bdb
, BDB_SDVO_LVDS_OPTIONS
);
226 if (!sdvo_lvds_options
)
229 dvo_timing
= find_section(bdb
, BDB_SDVO_PANEL_DTDS
);
233 panel_fixed_mode
= kzalloc(sizeof(*panel_fixed_mode
), GFP_KERNEL
);
235 if (!panel_fixed_mode
)
238 fill_detail_timing_data(panel_fixed_mode
,
239 dvo_timing
+ sdvo_lvds_options
->panel_type
);
241 dev_priv
->sdvo_lvds_vbt_mode
= panel_fixed_mode
;
247 parse_general_features(struct drm_i915_private
*dev_priv
,
248 struct bdb_header
*bdb
)
250 struct bdb_general_features
*general
;
252 /* Set sensible defaults in case we can't find the general block */
253 dev_priv
->int_tv_support
= 1;
254 dev_priv
->int_crt_support
= 1;
256 general
= find_section(bdb
, BDB_GENERAL_FEATURES
);
258 dev_priv
->int_tv_support
= general
->int_tv_support
;
259 dev_priv
->int_crt_support
= general
->int_crt_support
;
260 dev_priv
->lvds_use_ssc
= general
->enable_ssc
;
262 if (dev_priv
->lvds_use_ssc
) {
263 if (IS_I85X(dev_priv
->dev
))
264 dev_priv
->lvds_ssc_freq
=
265 general
->ssc_freq
? 66 : 48;
266 else if (IS_IRONLAKE(dev_priv
->dev
))
267 dev_priv
->lvds_ssc_freq
=
268 general
->ssc_freq
? 100 : 120;
270 dev_priv
->lvds_ssc_freq
=
271 general
->ssc_freq
? 100 : 96;
277 parse_general_definitions(struct drm_i915_private
*dev_priv
,
278 struct bdb_header
*bdb
)
280 struct bdb_general_definitions
*general
;
281 const int crt_bus_map_table
[] = {
290 general
= find_section(bdb
, BDB_GENERAL_DEFINITIONS
);
292 u16 block_size
= get_blocksize(general
);
293 if (block_size
>= sizeof(*general
)) {
294 int bus_pin
= general
->crt_ddc_gmbus_pin
;
295 DRM_DEBUG_KMS("crt_ddc_bus_pin: %d\n", bus_pin
);
296 if ((bus_pin
>= 1) && (bus_pin
<= 6)) {
297 dev_priv
->crt_ddc_bus
=
298 crt_bus_map_table
[bus_pin
-1];
301 DRM_DEBUG_KMS("BDB_GD too small (%d). Invalid.\n",
308 parse_sdvo_device_mapping(struct drm_i915_private
*dev_priv
,
309 struct bdb_header
*bdb
)
311 struct sdvo_device_mapping
*p_mapping
;
312 struct bdb_general_definitions
*p_defs
;
313 struct child_device_config
*p_child
;
314 int i
, child_device_num
, count
;
317 p_defs
= find_section(bdb
, BDB_GENERAL_DEFINITIONS
);
319 DRM_DEBUG_KMS("No general definition block is found\n");
322 /* judge whether the size of child device meets the requirements.
323 * If the child device size obtained from general definition block
324 * is different with sizeof(struct child_device_config), skip the
325 * parsing of sdvo device info
327 if (p_defs
->child_dev_size
!= sizeof(*p_child
)) {
328 /* different child dev size . Ignore it */
329 DRM_DEBUG_KMS("different child size is found. Invalid.\n");
332 /* get the block size of general definitions */
333 block_size
= get_blocksize(p_defs
);
334 /* get the number of child device */
335 child_device_num
= (block_size
- sizeof(*p_defs
)) /
338 for (i
= 0; i
< child_device_num
; i
++) {
339 p_child
= &(p_defs
->devices
[i
]);
340 if (!p_child
->device_type
) {
341 /* skip the device block if device type is invalid */
344 if (p_child
->slave_addr
!= SLAVE_ADDR1
&&
345 p_child
->slave_addr
!= SLAVE_ADDR2
) {
347 * If the slave address is neither 0x70 nor 0x72,
348 * it is not a SDVO device. Skip it.
352 if (p_child
->dvo_port
!= DEVICE_PORT_DVOB
&&
353 p_child
->dvo_port
!= DEVICE_PORT_DVOC
) {
354 /* skip the incorrect SDVO port */
355 DRM_DEBUG_KMS("Incorrect SDVO port. Skip it \n");
358 DRM_DEBUG_KMS("the SDVO device with slave addr %2x is found on"
361 (p_child
->dvo_port
== DEVICE_PORT_DVOB
) ?
363 p_mapping
= &(dev_priv
->sdvo_mappings
[p_child
->dvo_port
- 1]);
364 if (!p_mapping
->initialized
) {
365 p_mapping
->dvo_port
= p_child
->dvo_port
;
366 p_mapping
->slave_addr
= p_child
->slave_addr
;
367 p_mapping
->dvo_wiring
= p_child
->dvo_wiring
;
368 p_mapping
->initialized
= 1;
370 DRM_DEBUG_KMS("Maybe one SDVO port is shared by "
371 "two SDVO device.\n");
373 if (p_child
->slave2_addr
) {
374 /* Maybe this is a SDVO device with multiple inputs */
375 /* And the mapping info is not added */
376 DRM_DEBUG_KMS("there exists the slave2_addr. Maybe this"
377 " is a SDVO device with multiple inputs.\n");
383 /* No SDVO device info is found */
384 DRM_DEBUG_KMS("No SDVO device info is found in VBT\n");
390 parse_driver_features(struct drm_i915_private
*dev_priv
,
391 struct bdb_header
*bdb
)
393 struct drm_device
*dev
= dev_priv
->dev
;
394 struct bdb_driver_features
*driver
;
396 driver
= find_section(bdb
, BDB_DRIVER_FEATURES
);
400 if (driver
&& SUPPORTS_EDP(dev
) &&
401 driver
->lvds_config
== BDB_DRIVER_FEATURE_EDP
) {
402 dev_priv
->edp_support
= 1;
404 dev_priv
->edp_support
= 0;
407 if (driver
&& driver
->dual_frequency
)
408 dev_priv
->render_reclock_avail
= true;
412 parse_edp(struct drm_i915_private
*dev_priv
, struct bdb_header
*bdb
)
416 edp
= find_section(bdb
, BDB_EDP
);
418 if (SUPPORTS_EDP(dev_priv
->dev
) && dev_priv
->edp_support
) {
419 DRM_DEBUG_KMS("No eDP BDB found but eDP panel supported,\
420 assume 18bpp panel color depth.\n");
421 dev_priv
->edp_bpp
= 18;
426 switch ((edp
->color_depth
>> (panel_type
* 2)) & 3) {
428 dev_priv
->edp_bpp
= 18;
431 dev_priv
->edp_bpp
= 24;
434 dev_priv
->edp_bpp
= 30;
440 parse_device_mapping(struct drm_i915_private
*dev_priv
,
441 struct bdb_header
*bdb
)
443 struct bdb_general_definitions
*p_defs
;
444 struct child_device_config
*p_child
, *child_dev_ptr
;
445 int i
, child_device_num
, count
;
448 p_defs
= find_section(bdb
, BDB_GENERAL_DEFINITIONS
);
450 DRM_DEBUG_KMS("No general definition block is found\n");
453 /* judge whether the size of child device meets the requirements.
454 * If the child device size obtained from general definition block
455 * is different with sizeof(struct child_device_config), skip the
456 * parsing of sdvo device info
458 if (p_defs
->child_dev_size
!= sizeof(*p_child
)) {
459 /* different child dev size . Ignore it */
460 DRM_DEBUG_KMS("different child size is found. Invalid.\n");
463 /* get the block size of general definitions */
464 block_size
= get_blocksize(p_defs
);
465 /* get the number of child device */
466 child_device_num
= (block_size
- sizeof(*p_defs
)) /
469 /* get the number of child device that is present */
470 for (i
= 0; i
< child_device_num
; i
++) {
471 p_child
= &(p_defs
->devices
[i
]);
472 if (!p_child
->device_type
) {
473 /* skip the device block if device type is invalid */
479 DRM_DEBUG_KMS("no child dev is parsed from VBT \n");
482 dev_priv
->child_dev
= kzalloc(sizeof(*p_child
) * count
, GFP_KERNEL
);
483 if (!dev_priv
->child_dev
) {
484 DRM_DEBUG_KMS("No memory space for child device\n");
488 dev_priv
->child_dev_num
= count
;
490 for (i
= 0; i
< child_device_num
; i
++) {
491 p_child
= &(p_defs
->devices
[i
]);
492 if (!p_child
->device_type
) {
493 /* skip the device block if device type is invalid */
496 child_dev_ptr
= dev_priv
->child_dev
+ count
;
498 memcpy((void *)child_dev_ptr
, (void *)p_child
,
504 * intel_init_bios - initialize VBIOS settings & find VBT
507 * Loads the Video BIOS and checks that the VBT exists. Sets scratch registers
508 * to appropriate values.
510 * VBT existence is a sanity check that is relied on by other i830_bios.c code.
511 * Note that it would be better to use a BIOS call to get the VBT, as BIOSes may
512 * feed an updated VBT back through that, compared to what we'll fetch using
513 * this method of groping around in the BIOS data.
515 * Returns 0 on success, nonzero on failure.
518 intel_init_bios(struct drm_device
*dev
)
520 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
521 struct pci_dev
*pdev
= dev
->pdev
;
522 struct vbt_header
*vbt
= NULL
;
523 struct bdb_header
*bdb
;
528 bios
= pci_map_rom(pdev
, &size
);
532 /* Scour memory looking for the VBT signature */
533 for (i
= 0; i
+ 4 < size
; i
++) {
534 if (!memcmp(bios
+ i
, "$VBT", 4)) {
535 vbt
= (struct vbt_header
*)(bios
+ i
);
541 DRM_ERROR("VBT signature missing\n");
542 pci_unmap_rom(pdev
, bios
);
546 bdb
= (struct bdb_header
*)(bios
+ i
+ vbt
->bdb_offset
);
548 /* Grab useful general definitions */
549 parse_general_features(dev_priv
, bdb
);
550 parse_general_definitions(dev_priv
, bdb
);
551 parse_lfp_panel_data(dev_priv
, bdb
);
552 parse_sdvo_panel_data(dev_priv
, bdb
);
553 parse_sdvo_device_mapping(dev_priv
, bdb
);
554 parse_device_mapping(dev_priv
, bdb
);
555 parse_driver_features(dev_priv
, bdb
);
556 parse_edp(dev_priv
, bdb
);
558 pci_unmap_rom(pdev
, bios
);