blob: 8986a4b898dbc54291ed3b114e736f6bb5e4a251 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
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#include "drmP.h"
28#include "drm.h"
29#include "i915_drm.h"
30#include "i915_drv.h"
31#include "intel_bios.h"
32
yakui_zhao9b9d1722009-05-31 17:17:17 +080033#define SLAVE_ADDR1 0x70
34#define SLAVE_ADDR2 0x72
Jesse Barnes79e53942008-11-07 14:24:08 -080035
Zhenyu Wang500a8cc2010-01-13 11:19:52 +080036static int panel_type;
37
Jesse Barnes79e53942008-11-07 14:24:08 -080038static void *
39find_section(struct bdb_header *bdb, int section_id)
40{
41 u8 *base = (u8 *)bdb;
42 int index = 0;
43 u16 total, current_size;
44 u8 current_id;
45
46 /* skip to first section */
47 index += bdb->header_size;
48 total = bdb->bdb_size;
49
50 /* walk the sections looking for section_id */
51 while (index < total) {
52 current_id = *(base + index);
53 index++;
54 current_size = *((u16 *)(base + index));
55 index += 2;
56 if (current_id == section_id)
57 return base + index;
58 index += current_size;
59 }
60
61 return NULL;
62}
63
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +020064static u16
65get_blocksize(void *p)
66{
67 u16 *block_ptr, block_size;
68
69 block_ptr = (u16 *)((char *)p - 2);
70 block_size = *block_ptr;
71 return block_size;
72}
73
Jesse Barnes79e53942008-11-07 14:24:08 -080074static void
Ma Ling88631702009-05-13 11:19:55 +080075fill_detail_timing_data(struct drm_display_mode *panel_fixed_mode,
76 struct lvds_dvo_timing *dvo_timing)
77{
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);
86
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;
97
Adam Jackson9bc35492010-05-28 17:17:37 -040098 if (dvo_timing->hsync_positive)
99 panel_fixed_mode->flags |= DRM_MODE_FLAG_PHSYNC;
100 else
101 panel_fixed_mode->flags |= DRM_MODE_FLAG_NHSYNC;
102
103 if (dvo_timing->vsync_positive)
104 panel_fixed_mode->flags |= DRM_MODE_FLAG_PVSYNC;
105 else
106 panel_fixed_mode->flags |= DRM_MODE_FLAG_NVSYNC;
107
Ma Ling88631702009-05-13 11:19:55 +0800108 /* Some VBTs have bogus h/vtotal values */
109 if (panel_fixed_mode->hsync_end > panel_fixed_mode->htotal)
110 panel_fixed_mode->htotal = panel_fixed_mode->hsync_end + 1;
111 if (panel_fixed_mode->vsync_end > panel_fixed_mode->vtotal)
112 panel_fixed_mode->vtotal = panel_fixed_mode->vsync_end + 1;
113
114 drm_mode_set_name(panel_fixed_mode);
115}
116
117/* Try to find integrated panel data */
118static void
119parse_lfp_panel_data(struct drm_i915_private *dev_priv,
120 struct bdb_header *bdb)
Jesse Barnes79e53942008-11-07 14:24:08 -0800121{
122 struct bdb_lvds_options *lvds_options;
123 struct bdb_lvds_lfp_data *lvds_lfp_data;
Jesse Barnes1b16de02009-06-22 11:30:30 -0700124 struct bdb_lvds_lfp_data_ptrs *lvds_lfp_data_ptrs;
Jesse Barnes79e53942008-11-07 14:24:08 -0800125 struct bdb_lvds_lfp_data_entry *entry;
126 struct lvds_dvo_timing *dvo_timing;
127 struct drm_display_mode *panel_fixed_mode;
Zhao Yakuicdaa0522009-07-28 10:54:13 +0800128 int lfp_data_size, dvo_timing_offset;
Zhao Yakuid1fcea62009-11-20 11:24:17 +0800129 int i, temp_downclock;
130 struct drm_display_mode *temp_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -0800131
132 /* Defaults if we can't find VBT info */
133 dev_priv->lvds_dither = 0;
134 dev_priv->lvds_vbt = 0;
135
136 lvds_options = find_section(bdb, BDB_LVDS_OPTIONS);
137 if (!lvds_options)
138 return;
139
140 dev_priv->lvds_dither = lvds_options->pixel_dither;
141 if (lvds_options->panel_type == 0xff)
142 return;
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800143 panel_type = lvds_options->panel_type;
Jesse Barnes79e53942008-11-07 14:24:08 -0800144
145 lvds_lfp_data = find_section(bdb, BDB_LVDS_LFP_DATA);
146 if (!lvds_lfp_data)
147 return;
148
Jesse Barnes1b16de02009-06-22 11:30:30 -0700149 lvds_lfp_data_ptrs = find_section(bdb, BDB_LVDS_LFP_DATA_PTRS);
150 if (!lvds_lfp_data_ptrs)
151 return;
152
Jesse Barnes79e53942008-11-07 14:24:08 -0800153 dev_priv->lvds_vbt = 1;
154
Jesse Barnes1b16de02009-06-22 11:30:30 -0700155 lfp_data_size = lvds_lfp_data_ptrs->ptr[1].dvo_timing_offset -
156 lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset;
157 entry = (struct bdb_lvds_lfp_data_entry *)
158 ((uint8_t *)lvds_lfp_data->data + (lfp_data_size *
159 lvds_options->panel_type));
Zhao Yakuicdaa0522009-07-28 10:54:13 +0800160 dvo_timing_offset = lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset -
161 lvds_lfp_data_ptrs->ptr[0].fp_timing_offset;
Zhenyu Wang50199142009-07-10 14:39:59 +0800162
Zhao Yakuicdaa0522009-07-28 10:54:13 +0800163 /*
164 * the size of fp_timing varies on the different platform.
165 * So calculate the DVO timing relative offset in LVDS data
166 * entry to get the DVO timing entry
167 */
168 dvo_timing = (struct lvds_dvo_timing *)
169 ((unsigned char *)entry + dvo_timing_offset);
Jesse Barnes79e53942008-11-07 14:24:08 -0800170
Eric Anholt9a298b22009-03-24 12:23:04 -0700171 panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL);
Chris Wilson6edc3242010-09-12 17:16:17 +0100172 if (!panel_fixed_mode)
173 return;
Jesse Barnes79e53942008-11-07 14:24:08 -0800174
Ma Ling88631702009-05-13 11:19:55 +0800175 fill_detail_timing_data(panel_fixed_mode, dvo_timing);
Jesse Barnes79e53942008-11-07 14:24:08 -0800176
Ma Ling88631702009-05-13 11:19:55 +0800177 dev_priv->lfp_lvds_vbt_mode = panel_fixed_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -0800178
Zhao Yakui28c97732009-10-09 11:39:41 +0800179 DRM_DEBUG_KMS("Found panel mode in BIOS VBT tables:\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800180 drm_mode_debug_printmodeline(panel_fixed_mode);
181
Zhao Yakuid1fcea62009-11-20 11:24:17 +0800182 temp_mode = kzalloc(sizeof(*temp_mode), GFP_KERNEL);
183 temp_downclock = panel_fixed_mode->clock;
184 /*
185 * enumerate the LVDS panel timing info entry in VBT to check whether
186 * the LVDS downclock is found.
187 */
188 for (i = 0; i < 16; i++) {
189 entry = (struct bdb_lvds_lfp_data_entry *)
190 ((uint8_t *)lvds_lfp_data->data + (lfp_data_size * i));
191 dvo_timing = (struct lvds_dvo_timing *)
192 ((unsigned char *)entry + dvo_timing_offset);
193
194 fill_detail_timing_data(temp_mode, dvo_timing);
195
196 if (temp_mode->hdisplay == panel_fixed_mode->hdisplay &&
197 temp_mode->hsync_start == panel_fixed_mode->hsync_start &&
198 temp_mode->hsync_end == panel_fixed_mode->hsync_end &&
199 temp_mode->htotal == panel_fixed_mode->htotal &&
200 temp_mode->vdisplay == panel_fixed_mode->vdisplay &&
201 temp_mode->vsync_start == panel_fixed_mode->vsync_start &&
202 temp_mode->vsync_end == panel_fixed_mode->vsync_end &&
203 temp_mode->vtotal == panel_fixed_mode->vtotal &&
204 temp_mode->clock < temp_downclock) {
205 /*
206 * downclock is already found. But we expect
207 * to find the lower downclock.
208 */
209 temp_downclock = temp_mode->clock;
210 }
211 /* clear it to zero */
212 memset(temp_mode, 0, sizeof(*temp_mode));
213 }
214 kfree(temp_mode);
Jesse Barnes33814342010-01-14 20:48:02 +0000215 if (temp_downclock < panel_fixed_mode->clock &&
216 i915_lvds_downclock) {
Zhao Yakuid1fcea62009-11-20 11:24:17 +0800217 dev_priv->lvds_downclock_avail = 1;
218 dev_priv->lvds_downclock = temp_downclock;
219 DRM_DEBUG_KMS("LVDS downclock is found in VBT. ",
220 "Normal Clock %dKHz, downclock %dKHz\n",
221 temp_downclock, panel_fixed_mode->clock);
222 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800223 return;
224}
225
Ma Ling88631702009-05-13 11:19:55 +0800226/* Try to find sdvo panel data */
227static void
228parse_sdvo_panel_data(struct drm_i915_private *dev_priv,
229 struct bdb_header *bdb)
230{
231 struct bdb_sdvo_lvds_options *sdvo_lvds_options;
232 struct lvds_dvo_timing *dvo_timing;
233 struct drm_display_mode *panel_fixed_mode;
234
235 dev_priv->sdvo_lvds_vbt_mode = NULL;
236
237 sdvo_lvds_options = find_section(bdb, BDB_SDVO_LVDS_OPTIONS);
238 if (!sdvo_lvds_options)
239 return;
240
241 dvo_timing = find_section(bdb, BDB_SDVO_PANEL_DTDS);
242 if (!dvo_timing)
243 return;
244
Eric Anholt9a298b22009-03-24 12:23:04 -0700245 panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL);
Ma Ling88631702009-05-13 11:19:55 +0800246
247 if (!panel_fixed_mode)
248 return;
249
250 fill_detail_timing_data(panel_fixed_mode,
251 dvo_timing + sdvo_lvds_options->panel_type);
252
253 dev_priv->sdvo_lvds_vbt_mode = panel_fixed_mode;
254
255 return;
256}
257
Jesse Barnes79e53942008-11-07 14:24:08 -0800258static void
259parse_general_features(struct drm_i915_private *dev_priv,
260 struct bdb_header *bdb)
261{
Eric Anholtbad720f2009-10-22 16:11:14 -0700262 struct drm_device *dev = dev_priv->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800263 struct bdb_general_features *general;
264
265 /* Set sensible defaults in case we can't find the general block */
266 dev_priv->int_tv_support = 1;
267 dev_priv->int_crt_support = 1;
268
269 general = find_section(bdb, BDB_GENERAL_FEATURES);
270 if (general) {
271 dev_priv->int_tv_support = general->int_tv_support;
272 dev_priv->int_crt_support = general->int_crt_support;
Kristian Høgsberg43565a02009-02-13 20:56:52 -0500273 dev_priv->lvds_use_ssc = general->enable_ssc;
274
275 if (dev_priv->lvds_use_ssc) {
ling.ma@intel.com6ff4fd02009-06-25 10:59:22 +0800276 if (IS_I85X(dev_priv->dev))
277 dev_priv->lvds_ssc_freq =
278 general->ssc_freq ? 66 : 48;
Eric Anholtbad720f2009-10-22 16:11:14 -0700279 else if (IS_IRONLAKE(dev_priv->dev) || IS_GEN6(dev))
Zhenyu Wang339e5a42009-09-19 14:54:07 +0800280 dev_priv->lvds_ssc_freq =
281 general->ssc_freq ? 100 : 120;
ling.ma@intel.com6ff4fd02009-06-25 10:59:22 +0800282 else
283 dev_priv->lvds_ssc_freq =
284 general->ssc_freq ? 100 : 96;
Kristian Høgsberg43565a02009-02-13 20:56:52 -0500285 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800286 }
287}
288
yakui_zhao9b9d1722009-05-31 17:17:17 +0800289static void
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200290parse_general_definitions(struct drm_i915_private *dev_priv,
291 struct bdb_header *bdb)
292{
293 struct bdb_general_definitions *general;
294 const int crt_bus_map_table[] = {
295 GPIOB,
296 GPIOA,
297 GPIOC,
298 GPIOD,
299 GPIOE,
300 GPIOF,
301 };
302
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200303 general = find_section(bdb, BDB_GENERAL_DEFINITIONS);
304 if (general) {
305 u16 block_size = get_blocksize(general);
306 if (block_size >= sizeof(*general)) {
307 int bus_pin = general->crt_ddc_gmbus_pin;
Zhao Yakui28c97732009-10-09 11:39:41 +0800308 DRM_DEBUG_KMS("crt_ddc_bus_pin: %d\n", bus_pin);
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200309 if ((bus_pin >= 1) && (bus_pin <= 6)) {
310 dev_priv->crt_ddc_bus =
311 crt_bus_map_table[bus_pin-1];
312 }
313 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +0800314 DRM_DEBUG_KMS("BDB_GD too small (%d). Invalid.\n",
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200315 block_size);
316 }
317 }
318}
319
320static void
yakui_zhao9b9d1722009-05-31 17:17:17 +0800321parse_sdvo_device_mapping(struct drm_i915_private *dev_priv,
Chris Wilson44834a62010-08-19 16:09:23 +0100322 struct bdb_header *bdb)
yakui_zhao9b9d1722009-05-31 17:17:17 +0800323{
324 struct sdvo_device_mapping *p_mapping;
325 struct bdb_general_definitions *p_defs;
326 struct child_device_config *p_child;
327 int i, child_device_num, count;
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200328 u16 block_size;
yakui_zhao9b9d1722009-05-31 17:17:17 +0800329
330 p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS);
331 if (!p_defs) {
Chris Wilson44834a62010-08-19 16:09:23 +0100332 DRM_DEBUG_KMS("No general definition block is found, unable to construct sdvo mapping.\n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800333 return;
334 }
335 /* judge whether the size of child device meets the requirements.
336 * If the child device size obtained from general definition block
337 * is different with sizeof(struct child_device_config), skip the
338 * parsing of sdvo device info
339 */
340 if (p_defs->child_dev_size != sizeof(*p_child)) {
341 /* different child dev size . Ignore it */
Zhao Yakui28c97732009-10-09 11:39:41 +0800342 DRM_DEBUG_KMS("different child size is found. Invalid.\n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800343 return;
344 }
345 /* get the block size of general definitions */
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200346 block_size = get_blocksize(p_defs);
yakui_zhao9b9d1722009-05-31 17:17:17 +0800347 /* get the number of child device */
348 child_device_num = (block_size - sizeof(*p_defs)) /
349 sizeof(*p_child);
350 count = 0;
351 for (i = 0; i < child_device_num; i++) {
352 p_child = &(p_defs->devices[i]);
353 if (!p_child->device_type) {
354 /* skip the device block if device type is invalid */
355 continue;
356 }
357 if (p_child->slave_addr != SLAVE_ADDR1 &&
358 p_child->slave_addr != SLAVE_ADDR2) {
359 /*
360 * If the slave address is neither 0x70 nor 0x72,
361 * it is not a SDVO device. Skip it.
362 */
363 continue;
364 }
365 if (p_child->dvo_port != DEVICE_PORT_DVOB &&
366 p_child->dvo_port != DEVICE_PORT_DVOC) {
367 /* skip the incorrect SDVO port */
Zhao Yakui28c97732009-10-09 11:39:41 +0800368 DRM_DEBUG_KMS("Incorrect SDVO port. Skip it \n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800369 continue;
370 }
Zhao Yakui28c97732009-10-09 11:39:41 +0800371 DRM_DEBUG_KMS("the SDVO device with slave addr %2x is found on"
372 " %s port\n",
yakui_zhao9b9d1722009-05-31 17:17:17 +0800373 p_child->slave_addr,
374 (p_child->dvo_port == DEVICE_PORT_DVOB) ?
375 "SDVOB" : "SDVOC");
376 p_mapping = &(dev_priv->sdvo_mappings[p_child->dvo_port - 1]);
377 if (!p_mapping->initialized) {
378 p_mapping->dvo_port = p_child->dvo_port;
379 p_mapping->slave_addr = p_child->slave_addr;
380 p_mapping->dvo_wiring = p_child->dvo_wiring;
Adam Jacksonb1083332010-04-23 16:07:40 -0400381 p_mapping->ddc_pin = p_child->ddc_pin;
yakui_zhao9b9d1722009-05-31 17:17:17 +0800382 p_mapping->initialized = 1;
383 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +0800384 DRM_DEBUG_KMS("Maybe one SDVO port is shared by "
yakui_zhao9b9d1722009-05-31 17:17:17 +0800385 "two SDVO device.\n");
386 }
387 if (p_child->slave2_addr) {
388 /* Maybe this is a SDVO device with multiple inputs */
389 /* And the mapping info is not added */
Zhao Yakui28c97732009-10-09 11:39:41 +0800390 DRM_DEBUG_KMS("there exists the slave2_addr. Maybe this"
391 " is a SDVO device with multiple inputs.\n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800392 }
393 count++;
394 }
395
396 if (!count) {
397 /* No SDVO device info is found */
Zhao Yakui28c97732009-10-09 11:39:41 +0800398 DRM_DEBUG_KMS("No SDVO device info is found in VBT\n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800399 }
400 return;
401}
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800402
403static void
404parse_driver_features(struct drm_i915_private *dev_priv,
405 struct bdb_header *bdb)
406{
407 struct drm_device *dev = dev_priv->dev;
408 struct bdb_driver_features *driver;
409
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800410 driver = find_section(bdb, BDB_DRIVER_FEATURES);
Jesse Barnes652c3932009-08-17 13:31:43 -0700411 if (!driver)
412 return;
413
Andy Lutomirski181a5332009-10-13 10:40:52 -0700414 if (driver && SUPPORTS_EDP(dev) &&
415 driver->lvds_config == BDB_DRIVER_FEATURE_EDP) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800416 dev_priv->edp_support = 1;
Andy Lutomirski181a5332009-10-13 10:40:52 -0700417 } else {
418 dev_priv->edp_support = 0;
419 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700420
Andy Lutomirski181a5332009-10-13 10:40:52 -0700421 if (driver && driver->dual_frequency)
Jesse Barnes652c3932009-08-17 13:31:43 -0700422 dev_priv->render_reclock_avail = true;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800423}
424
Zhao Yakui6363ee62009-11-24 09:48:44 +0800425static void
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800426parse_edp(struct drm_i915_private *dev_priv, struct bdb_header *bdb)
427{
428 struct bdb_edp *edp;
429
430 edp = find_section(bdb, BDB_EDP);
431 if (!edp) {
432 if (SUPPORTS_EDP(dev_priv->dev) && dev_priv->edp_support) {
Joe Perches76e47c32010-03-11 14:01:38 -0800433 DRM_DEBUG_KMS("No eDP BDB found but eDP panel "
434 "supported, assume 18bpp panel color "
435 "depth.\n");
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800436 dev_priv->edp_bpp = 18;
437 }
438 return;
439 }
440
441 switch ((edp->color_depth >> (panel_type * 2)) & 3) {
442 case EDP_18BPP:
443 dev_priv->edp_bpp = 18;
444 break;
445 case EDP_24BPP:
446 dev_priv->edp_bpp = 24;
447 break;
448 case EDP_30BPP:
449 dev_priv->edp_bpp = 30;
450 break;
451 }
452}
453
454static void
Zhao Yakui6363ee62009-11-24 09:48:44 +0800455parse_device_mapping(struct drm_i915_private *dev_priv,
456 struct bdb_header *bdb)
457{
458 struct bdb_general_definitions *p_defs;
459 struct child_device_config *p_child, *child_dev_ptr;
460 int i, child_device_num, count;
461 u16 block_size;
462
463 p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS);
464 if (!p_defs) {
Chris Wilson44834a62010-08-19 16:09:23 +0100465 DRM_DEBUG_KMS("No general definition block is found, no devices defined.\n");
Zhao Yakui6363ee62009-11-24 09:48:44 +0800466 return;
467 }
468 /* judge whether the size of child device meets the requirements.
469 * If the child device size obtained from general definition block
470 * is different with sizeof(struct child_device_config), skip the
471 * parsing of sdvo device info
472 */
473 if (p_defs->child_dev_size != sizeof(*p_child)) {
474 /* different child dev size . Ignore it */
475 DRM_DEBUG_KMS("different child size is found. Invalid.\n");
476 return;
477 }
478 /* get the block size of general definitions */
479 block_size = get_blocksize(p_defs);
480 /* get the number of child device */
481 child_device_num = (block_size - sizeof(*p_defs)) /
482 sizeof(*p_child);
483 count = 0;
484 /* get the number of child device that is present */
485 for (i = 0; i < child_device_num; i++) {
486 p_child = &(p_defs->devices[i]);
487 if (!p_child->device_type) {
488 /* skip the device block if device type is invalid */
489 continue;
490 }
491 count++;
492 }
493 if (!count) {
494 DRM_DEBUG_KMS("no child dev is parsed from VBT \n");
495 return;
496 }
497 dev_priv->child_dev = kzalloc(sizeof(*p_child) * count, GFP_KERNEL);
498 if (!dev_priv->child_dev) {
499 DRM_DEBUG_KMS("No memory space for child device\n");
500 return;
501 }
502
503 dev_priv->child_dev_num = count;
504 count = 0;
505 for (i = 0; i < child_device_num; i++) {
506 p_child = &(p_defs->devices[i]);
507 if (!p_child->device_type) {
508 /* skip the device block if device type is invalid */
509 continue;
510 }
511 child_dev_ptr = dev_priv->child_dev + count;
512 count++;
513 memcpy((void *)child_dev_ptr, (void *)p_child,
514 sizeof(*p_child));
515 }
516 return;
517}
Chris Wilson44834a62010-08-19 16:09:23 +0100518
Jesse Barnes79e53942008-11-07 14:24:08 -0800519/**
520 * intel_init_bios - initialize VBIOS settings & find VBT
521 * @dev: DRM device
522 *
523 * Loads the Video BIOS and checks that the VBT exists. Sets scratch registers
524 * to appropriate values.
525 *
Jesse Barnes79e53942008-11-07 14:24:08 -0800526 * Returns 0 on success, nonzero on failure.
527 */
528bool
529intel_init_bios(struct drm_device *dev)
530{
531 struct drm_i915_private *dev_priv = dev->dev_private;
532 struct pci_dev *pdev = dev->pdev;
Chris Wilson44834a62010-08-19 16:09:23 +0100533 struct bdb_header *bdb = NULL;
534 u8 __iomem *bios = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -0800535
Chris Wilson44834a62010-08-19 16:09:23 +0100536 /* XXX Should this validation be moved to intel_opregion.c? */
537 if (dev_priv->opregion.vbt) {
538 struct vbt_header *vbt = dev_priv->opregion.vbt;
539 if (memcmp(vbt->signature, "$VBT", 4) == 0) {
540 DRM_DEBUG_DRIVER("Using VBT from OpRegion: %20s\n",
541 vbt->signature);
542 bdb = (struct bdb_header *)((char *)vbt + vbt->bdb_offset);
543 } else
544 dev_priv->opregion.vbt = NULL;
545 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800546
Chris Wilson44834a62010-08-19 16:09:23 +0100547 if (bdb == NULL) {
548 struct vbt_header *vbt = NULL;
549 size_t size;
550 int i;
551
552 bios = pci_map_rom(pdev, &size);
553 if (!bios)
554 return -1;
555
556 /* Scour memory looking for the VBT signature */
557 for (i = 0; i + 4 < size; i++) {
558 if (!memcmp(bios + i, "$VBT", 4)) {
559 vbt = (struct vbt_header *)(bios + i);
560 break;
561 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800562 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800563
Chris Wilson44834a62010-08-19 16:09:23 +0100564 if (!vbt) {
565 DRM_ERROR("VBT signature missing\n");
566 pci_unmap_rom(pdev, bios);
567 return -1;
568 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800569
Chris Wilson44834a62010-08-19 16:09:23 +0100570 bdb = (struct bdb_header *)(bios + i + vbt->bdb_offset);
571 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800572
573 /* Grab useful general definitions */
574 parse_general_features(dev_priv, bdb);
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200575 parse_general_definitions(dev_priv, bdb);
Ma Ling88631702009-05-13 11:19:55 +0800576 parse_lfp_panel_data(dev_priv, bdb);
577 parse_sdvo_panel_data(dev_priv, bdb);
yakui_zhao9b9d1722009-05-31 17:17:17 +0800578 parse_sdvo_device_mapping(dev_priv, bdb);
Zhao Yakui6363ee62009-11-24 09:48:44 +0800579 parse_device_mapping(dev_priv, bdb);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800580 parse_driver_features(dev_priv, bdb);
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800581 parse_edp(dev_priv, bdb);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800582
Chris Wilson44834a62010-08-19 16:09:23 +0100583 if (bios)
584 pci_unmap_rom(pdev, bios);
Jesse Barnes79e53942008-11-07 14:24:08 -0800585
586 return 0;
587}