init from v2.6.32.60
[mach-moxart.git] / drivers / gpu / drm / i915 / intel_bios.c
blobd4b5b18f2f115d56d9cc58fcebc99f8c150e64c7
1 /*
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
13 * Software.
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.
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
27 #include "drmP.h"
28 #include "drm.h"
29 #include "i915_drm.h"
30 #include "i915_drv.h"
31 #include "intel_bios.h"
33 #define SLAVE_ADDR1 0x70
34 #define SLAVE_ADDR2 0x72
36 static void *
37 find_section(struct bdb_header *bdb, int section_id)
39 u8 *base = (u8 *)bdb;
40 int index = 0;
41 u16 total, current_size;
42 u8 current_id;
44 /* skip to first section */
45 index += bdb->header_size;
46 total = bdb->bdb_size;
48 /* walk the sections looking for section_id */
49 while (index < total) {
50 current_id = *(base + index);
51 index++;
52 current_size = *((u16 *)(base + index));
53 index += 2;
54 if (current_id == section_id)
55 return base + index;
56 index += current_size;
59 return NULL;
62 static u16
63 get_blocksize(void *p)
65 u16 *block_ptr, block_size;
67 block_ptr = (u16 *)((char *)p - 2);
68 block_size = *block_ptr;
69 return block_size;
72 static void
73 fill_detail_timing_data(struct drm_display_mode *panel_fixed_mode,
74 struct lvds_dvo_timing *dvo_timing)
76 panel_fixed_mode->hdisplay = (dvo_timing->hactive_hi << 8) |
77 dvo_timing->hactive_lo;
78 panel_fixed_mode->hsync_start = panel_fixed_mode->hdisplay +
79 ((dvo_timing->hsync_off_hi << 8) | dvo_timing->hsync_off_lo);
80 panel_fixed_mode->hsync_end = panel_fixed_mode->hsync_start +
81 dvo_timing->hsync_pulse_width;
82 panel_fixed_mode->htotal = panel_fixed_mode->hdisplay +
83 ((dvo_timing->hblank_hi << 8) | dvo_timing->hblank_lo);
85 panel_fixed_mode->vdisplay = (dvo_timing->vactive_hi << 8) |
86 dvo_timing->vactive_lo;
87 panel_fixed_mode->vsync_start = panel_fixed_mode->vdisplay +
88 dvo_timing->vsync_off;
89 panel_fixed_mode->vsync_end = panel_fixed_mode->vsync_start +
90 dvo_timing->vsync_pulse_width;
91 panel_fixed_mode->vtotal = panel_fixed_mode->vdisplay +
92 ((dvo_timing->vblank_hi << 8) | dvo_timing->vblank_lo);
93 panel_fixed_mode->clock = dvo_timing->clock * 10;
94 panel_fixed_mode->type = DRM_MODE_TYPE_PREFERRED;
96 /* Some VBTs have bogus h/vtotal values */
97 if (panel_fixed_mode->hsync_end > panel_fixed_mode->htotal)
98 panel_fixed_mode->htotal = panel_fixed_mode->hsync_end + 1;
99 if (panel_fixed_mode->vsync_end > panel_fixed_mode->vtotal)
100 panel_fixed_mode->vtotal = panel_fixed_mode->vsync_end + 1;
102 drm_mode_set_name(panel_fixed_mode);
105 /* Try to find integrated panel data */
106 static void
107 parse_lfp_panel_data(struct drm_i915_private *dev_priv,
108 struct bdb_header *bdb)
110 struct bdb_lvds_options *lvds_options;
111 struct bdb_lvds_lfp_data *lvds_lfp_data;
112 struct bdb_lvds_lfp_data_ptrs *lvds_lfp_data_ptrs;
113 struct bdb_lvds_lfp_data_entry *entry;
114 struct lvds_dvo_timing *dvo_timing;
115 struct drm_display_mode *panel_fixed_mode;
116 int lfp_data_size, dvo_timing_offset;
118 /* Defaults if we can't find VBT info */
119 dev_priv->lvds_dither = 0;
120 dev_priv->lvds_vbt = 0;
122 lvds_options = find_section(bdb, BDB_LVDS_OPTIONS);
123 if (!lvds_options)
124 return;
126 dev_priv->lvds_dither = lvds_options->pixel_dither;
127 if (lvds_options->panel_type == 0xff)
128 return;
130 lvds_lfp_data = find_section(bdb, BDB_LVDS_LFP_DATA);
131 if (!lvds_lfp_data)
132 return;
134 lvds_lfp_data_ptrs = find_section(bdb, BDB_LVDS_LFP_DATA_PTRS);
135 if (!lvds_lfp_data_ptrs)
136 return;
138 dev_priv->lvds_vbt = 1;
140 lfp_data_size = lvds_lfp_data_ptrs->ptr[1].dvo_timing_offset -
141 lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset;
142 entry = (struct bdb_lvds_lfp_data_entry *)
143 ((uint8_t *)lvds_lfp_data->data + (lfp_data_size *
144 lvds_options->panel_type));
145 dvo_timing_offset = lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset -
146 lvds_lfp_data_ptrs->ptr[0].fp_timing_offset;
149 * the size of fp_timing varies on the different platform.
150 * So calculate the DVO timing relative offset in LVDS data
151 * entry to get the DVO timing entry
153 dvo_timing = (struct lvds_dvo_timing *)
154 ((unsigned char *)entry + dvo_timing_offset);
156 panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL);
158 fill_detail_timing_data(panel_fixed_mode, dvo_timing);
160 dev_priv->lfp_lvds_vbt_mode = panel_fixed_mode;
162 DRM_DEBUG("Found panel mode in BIOS VBT tables:\n");
163 drm_mode_debug_printmodeline(panel_fixed_mode);
165 return;
168 /* Try to find sdvo panel data */
169 static void
170 parse_sdvo_panel_data(struct drm_i915_private *dev_priv,
171 struct bdb_header *bdb)
173 struct bdb_sdvo_lvds_options *sdvo_lvds_options;
174 struct lvds_dvo_timing *dvo_timing;
175 struct drm_display_mode *panel_fixed_mode;
177 dev_priv->sdvo_lvds_vbt_mode = NULL;
179 sdvo_lvds_options = find_section(bdb, BDB_SDVO_LVDS_OPTIONS);
180 if (!sdvo_lvds_options)
181 return;
183 dvo_timing = find_section(bdb, BDB_SDVO_PANEL_DTDS);
184 if (!dvo_timing)
185 return;
187 panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL);
189 if (!panel_fixed_mode)
190 return;
192 fill_detail_timing_data(panel_fixed_mode,
193 dvo_timing + sdvo_lvds_options->panel_type);
195 dev_priv->sdvo_lvds_vbt_mode = panel_fixed_mode;
197 return;
200 static void
201 parse_general_features(struct drm_i915_private *dev_priv,
202 struct bdb_header *bdb)
204 struct bdb_general_features *general;
206 /* Set sensible defaults in case we can't find the general block */
207 dev_priv->int_tv_support = 1;
208 dev_priv->int_crt_support = 1;
210 general = find_section(bdb, BDB_GENERAL_FEATURES);
211 if (general) {
212 dev_priv->int_tv_support = general->int_tv_support;
213 dev_priv->int_crt_support = general->int_crt_support;
214 dev_priv->lvds_use_ssc = general->enable_ssc;
216 if (dev_priv->lvds_use_ssc) {
217 if (IS_I85X(dev_priv->dev))
218 dev_priv->lvds_ssc_freq =
219 general->ssc_freq ? 66 : 48;
220 else if (IS_IGDNG(dev_priv->dev))
221 dev_priv->lvds_ssc_freq =
222 general->ssc_freq ? 100 : 120;
223 else
224 dev_priv->lvds_ssc_freq =
225 general->ssc_freq ? 100 : 96;
230 static void
231 parse_general_definitions(struct drm_i915_private *dev_priv,
232 struct bdb_header *bdb)
234 struct bdb_general_definitions *general;
235 const int crt_bus_map_table[] = {
236 GPIOB,
237 GPIOA,
238 GPIOC,
239 GPIOD,
240 GPIOE,
241 GPIOF,
244 general = find_section(bdb, BDB_GENERAL_DEFINITIONS);
245 if (general) {
246 u16 block_size = get_blocksize(general);
247 if (block_size >= sizeof(*general)) {
248 int bus_pin = general->crt_ddc_gmbus_pin;
249 DRM_DEBUG("crt_ddc_bus_pin: %d\n", bus_pin);
250 if ((bus_pin >= 1) && (bus_pin <= 6)) {
251 dev_priv->crt_ddc_bus =
252 crt_bus_map_table[bus_pin-1];
254 } else {
255 DRM_DEBUG("BDB_GD too small (%d). Invalid.\n",
256 block_size);
261 static void
262 parse_sdvo_device_mapping(struct drm_i915_private *dev_priv,
263 struct bdb_header *bdb)
265 struct sdvo_device_mapping *p_mapping;
266 struct bdb_general_definitions *p_defs;
267 struct child_device_config *p_child;
268 int i, child_device_num, count;
269 u16 block_size;
271 p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS);
272 if (!p_defs) {
273 DRM_DEBUG("No general definition block is found\n");
274 return;
276 /* judge whether the size of child device meets the requirements.
277 * If the child device size obtained from general definition block
278 * is different with sizeof(struct child_device_config), skip the
279 * parsing of sdvo device info
281 if (p_defs->child_dev_size != sizeof(*p_child)) {
282 /* different child dev size . Ignore it */
283 DRM_DEBUG("different child size is found. Invalid.\n");
284 return;
286 /* get the block size of general definitions */
287 block_size = get_blocksize(p_defs);
288 /* get the number of child device */
289 child_device_num = (block_size - sizeof(*p_defs)) /
290 sizeof(*p_child);
291 count = 0;
292 for (i = 0; i < child_device_num; i++) {
293 p_child = &(p_defs->devices[i]);
294 if (!p_child->device_type) {
295 /* skip the device block if device type is invalid */
296 continue;
298 if (p_child->slave_addr != SLAVE_ADDR1 &&
299 p_child->slave_addr != SLAVE_ADDR2) {
301 * If the slave address is neither 0x70 nor 0x72,
302 * it is not a SDVO device. Skip it.
304 continue;
306 if (p_child->dvo_port != DEVICE_PORT_DVOB &&
307 p_child->dvo_port != DEVICE_PORT_DVOC) {
308 /* skip the incorrect SDVO port */
309 DRM_DEBUG("Incorrect SDVO port. Skip it \n");
310 continue;
312 DRM_DEBUG("the SDVO device with slave addr %2x is found on "
313 "%s port\n",
314 p_child->slave_addr,
315 (p_child->dvo_port == DEVICE_PORT_DVOB) ?
316 "SDVOB" : "SDVOC");
317 p_mapping = &(dev_priv->sdvo_mappings[p_child->dvo_port - 1]);
318 if (!p_mapping->initialized) {
319 p_mapping->dvo_port = p_child->dvo_port;
320 p_mapping->slave_addr = p_child->slave_addr;
321 p_mapping->dvo_wiring = p_child->dvo_wiring;
322 p_mapping->initialized = 1;
323 } else {
324 DRM_DEBUG("Maybe one SDVO port is shared by "
325 "two SDVO device.\n");
327 if (p_child->slave2_addr) {
328 /* Maybe this is a SDVO device with multiple inputs */
329 /* And the mapping info is not added */
330 DRM_DEBUG("there exists the slave2_addr. Maybe this "
331 "is a SDVO device with multiple inputs.\n");
333 count++;
336 if (!count) {
337 /* No SDVO device info is found */
338 DRM_DEBUG("No SDVO device info is found in VBT\n");
340 return;
343 static void
344 parse_driver_features(struct drm_i915_private *dev_priv,
345 struct bdb_header *bdb)
347 struct drm_device *dev = dev_priv->dev;
348 struct bdb_driver_features *driver;
350 driver = find_section(bdb, BDB_DRIVER_FEATURES);
351 if (!driver)
352 return;
354 if (driver && SUPPORTS_EDP(dev) &&
355 driver->lvds_config == BDB_DRIVER_FEATURE_EDP) {
356 dev_priv->edp_support = 1;
357 } else {
358 dev_priv->edp_support = 0;
361 if (driver && driver->dual_frequency)
362 dev_priv->render_reclock_avail = true;
365 static void
366 parse_device_mapping(struct drm_i915_private *dev_priv,
367 struct bdb_header *bdb)
369 struct bdb_general_definitions *p_defs;
370 struct child_device_config *p_child, *child_dev_ptr;
371 int i, child_device_num, count;
372 u16 block_size;
374 p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS);
375 if (!p_defs) {
376 DRM_DEBUG_KMS("No general definition block is found\n");
377 return;
379 /* judge whether the size of child device meets the requirements.
380 * If the child device size obtained from general definition block
381 * is different with sizeof(struct child_device_config), skip the
382 * parsing of sdvo device info
384 if (p_defs->child_dev_size != sizeof(*p_child)) {
385 /* different child dev size . Ignore it */
386 DRM_DEBUG_KMS("different child size is found. Invalid.\n");
387 return;
389 /* get the block size of general definitions */
390 block_size = get_blocksize(p_defs);
391 /* get the number of child device */
392 child_device_num = (block_size - sizeof(*p_defs)) /
393 sizeof(*p_child);
394 count = 0;
395 /* get the number of child device that is present */
396 for (i = 0; i < child_device_num; i++) {
397 p_child = &(p_defs->devices[i]);
398 if (!p_child->device_type) {
399 /* skip the device block if device type is invalid */
400 continue;
402 count++;
404 if (!count) {
405 DRM_DEBUG_KMS("no child dev is parsed from VBT \n");
406 return;
408 dev_priv->child_dev = kzalloc(sizeof(*p_child) * count, GFP_KERNEL);
409 if (!dev_priv->child_dev) {
410 DRM_DEBUG_KMS("No memory space for child device\n");
411 return;
414 dev_priv->child_dev_num = count;
415 count = 0;
416 for (i = 0; i < child_device_num; i++) {
417 p_child = &(p_defs->devices[i]);
418 if (!p_child->device_type) {
419 /* skip the device block if device type is invalid */
420 continue;
422 child_dev_ptr = dev_priv->child_dev + count;
423 count++;
424 memcpy((void *)child_dev_ptr, (void *)p_child,
425 sizeof(*p_child));
427 return;
430 * intel_init_bios - initialize VBIOS settings & find VBT
431 * @dev: DRM device
433 * Loads the Video BIOS and checks that the VBT exists. Sets scratch registers
434 * to appropriate values.
436 * VBT existence is a sanity check that is relied on by other i830_bios.c code.
437 * Note that it would be better to use a BIOS call to get the VBT, as BIOSes may
438 * feed an updated VBT back through that, compared to what we'll fetch using
439 * this method of groping around in the BIOS data.
441 * Returns 0 on success, nonzero on failure.
443 bool
444 intel_init_bios(struct drm_device *dev)
446 struct drm_i915_private *dev_priv = dev->dev_private;
447 struct pci_dev *pdev = dev->pdev;
448 struct vbt_header *vbt = NULL;
449 struct bdb_header *bdb;
450 u8 __iomem *bios;
451 size_t size;
452 int i;
454 bios = pci_map_rom(pdev, &size);
455 if (!bios)
456 return -1;
458 /* Scour memory looking for the VBT signature */
459 for (i = 0; i + 4 < size; i++) {
460 if (!memcmp(bios + i, "$VBT", 4)) {
461 vbt = (struct vbt_header *)(bios + i);
462 break;
466 if (!vbt) {
467 DRM_ERROR("VBT signature missing\n");
468 pci_unmap_rom(pdev, bios);
469 return -1;
472 bdb = (struct bdb_header *)(bios + i + vbt->bdb_offset);
474 /* Grab useful general definitions */
475 parse_general_features(dev_priv, bdb);
476 parse_general_definitions(dev_priv, bdb);
477 parse_lfp_panel_data(dev_priv, bdb);
478 parse_sdvo_panel_data(dev_priv, bdb);
479 parse_sdvo_device_mapping(dev_priv, bdb);
480 parse_device_mapping(dev_priv, bdb);
481 parse_driver_features(dev_priv, bdb);
483 pci_unmap_rom(pdev, bios);
485 return 0;