Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 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 | #include "drmP.h" |
| 28 | #include "drm.h" |
| 29 | #include "i915_drm.h" |
| 30 | #include "i915_drv.h" |
| 31 | #include "intel_bios.h" |
| 32 | |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 33 | #define SLAVE_ADDR1 0x70 |
| 34 | #define SLAVE_ADDR2 0x72 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 35 | |
| 36 | static void * |
| 37 | find_section(struct bdb_header *bdb, int section_id) |
| 38 | { |
| 39 | u8 *base = (u8 *)bdb; |
| 40 | int index = 0; |
| 41 | u16 total, current_size; |
| 42 | u8 current_id; |
| 43 | |
| 44 | /* skip to first section */ |
| 45 | index += bdb->header_size; |
| 46 | total = bdb->bdb_size; |
| 47 | |
| 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; |
| 57 | } |
| 58 | |
| 59 | return NULL; |
| 60 | } |
| 61 | |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 62 | static u16 |
| 63 | get_blocksize(void *p) |
| 64 | { |
| 65 | u16 *block_ptr, block_size; |
| 66 | |
| 67 | block_ptr = (u16 *)((char *)p - 2); |
| 68 | block_size = *block_ptr; |
| 69 | return block_size; |
| 70 | } |
| 71 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 72 | static void |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 73 | fill_detail_timing_data(struct drm_display_mode *panel_fixed_mode, |
| 74 | struct lvds_dvo_timing *dvo_timing) |
| 75 | { |
| 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); |
| 84 | |
| 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; |
| 95 | |
| 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; |
| 101 | |
| 102 | drm_mode_set_name(panel_fixed_mode); |
| 103 | } |
| 104 | |
| 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) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 109 | { |
| 110 | struct bdb_lvds_options *lvds_options; |
| 111 | struct bdb_lvds_lfp_data *lvds_lfp_data; |
Jesse Barnes | 1b16de0 | 2009-06-22 11:30:30 -0700 | [diff] [blame] | 112 | struct bdb_lvds_lfp_data_ptrs *lvds_lfp_data_ptrs; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 113 | struct bdb_lvds_lfp_data_entry *entry; |
| 114 | struct lvds_dvo_timing *dvo_timing; |
| 115 | struct drm_display_mode *panel_fixed_mode; |
Zhao Yakui | cdaa052 | 2009-07-28 10:54:13 +0800 | [diff] [blame] | 116 | int lfp_data_size, dvo_timing_offset; |
Zhao Yakui | d1fcea6 | 2009-11-20 11:24:17 +0800 | [diff] [blame^] | 117 | int i, temp_downclock; |
| 118 | struct drm_display_mode *temp_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 119 | |
| 120 | /* Defaults if we can't find VBT info */ |
| 121 | dev_priv->lvds_dither = 0; |
| 122 | dev_priv->lvds_vbt = 0; |
| 123 | |
| 124 | lvds_options = find_section(bdb, BDB_LVDS_OPTIONS); |
| 125 | if (!lvds_options) |
| 126 | return; |
| 127 | |
| 128 | dev_priv->lvds_dither = lvds_options->pixel_dither; |
| 129 | if (lvds_options->panel_type == 0xff) |
| 130 | return; |
| 131 | |
| 132 | lvds_lfp_data = find_section(bdb, BDB_LVDS_LFP_DATA); |
| 133 | if (!lvds_lfp_data) |
| 134 | return; |
| 135 | |
Jesse Barnes | 1b16de0 | 2009-06-22 11:30:30 -0700 | [diff] [blame] | 136 | lvds_lfp_data_ptrs = find_section(bdb, BDB_LVDS_LFP_DATA_PTRS); |
| 137 | if (!lvds_lfp_data_ptrs) |
| 138 | return; |
| 139 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 140 | dev_priv->lvds_vbt = 1; |
| 141 | |
Jesse Barnes | 1b16de0 | 2009-06-22 11:30:30 -0700 | [diff] [blame] | 142 | lfp_data_size = lvds_lfp_data_ptrs->ptr[1].dvo_timing_offset - |
| 143 | lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset; |
| 144 | entry = (struct bdb_lvds_lfp_data_entry *) |
| 145 | ((uint8_t *)lvds_lfp_data->data + (lfp_data_size * |
| 146 | lvds_options->panel_type)); |
Zhao Yakui | cdaa052 | 2009-07-28 10:54:13 +0800 | [diff] [blame] | 147 | dvo_timing_offset = lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset - |
| 148 | lvds_lfp_data_ptrs->ptr[0].fp_timing_offset; |
Zhenyu Wang | 5019914 | 2009-07-10 14:39:59 +0800 | [diff] [blame] | 149 | |
Zhao Yakui | cdaa052 | 2009-07-28 10:54:13 +0800 | [diff] [blame] | 150 | /* |
| 151 | * the size of fp_timing varies on the different platform. |
| 152 | * So calculate the DVO timing relative offset in LVDS data |
| 153 | * entry to get the DVO timing entry |
| 154 | */ |
| 155 | dvo_timing = (struct lvds_dvo_timing *) |
| 156 | ((unsigned char *)entry + dvo_timing_offset); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 157 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 158 | panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 159 | |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 160 | fill_detail_timing_data(panel_fixed_mode, dvo_timing); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 161 | |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 162 | dev_priv->lfp_lvds_vbt_mode = panel_fixed_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 163 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 164 | DRM_DEBUG_KMS("Found panel mode in BIOS VBT tables:\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 165 | drm_mode_debug_printmodeline(panel_fixed_mode); |
| 166 | |
Zhao Yakui | d1fcea6 | 2009-11-20 11:24:17 +0800 | [diff] [blame^] | 167 | temp_mode = kzalloc(sizeof(*temp_mode), GFP_KERNEL); |
| 168 | temp_downclock = panel_fixed_mode->clock; |
| 169 | /* |
| 170 | * enumerate the LVDS panel timing info entry in VBT to check whether |
| 171 | * the LVDS downclock is found. |
| 172 | */ |
| 173 | for (i = 0; i < 16; i++) { |
| 174 | entry = (struct bdb_lvds_lfp_data_entry *) |
| 175 | ((uint8_t *)lvds_lfp_data->data + (lfp_data_size * i)); |
| 176 | dvo_timing = (struct lvds_dvo_timing *) |
| 177 | ((unsigned char *)entry + dvo_timing_offset); |
| 178 | |
| 179 | fill_detail_timing_data(temp_mode, dvo_timing); |
| 180 | |
| 181 | if (temp_mode->hdisplay == panel_fixed_mode->hdisplay && |
| 182 | temp_mode->hsync_start == panel_fixed_mode->hsync_start && |
| 183 | temp_mode->hsync_end == panel_fixed_mode->hsync_end && |
| 184 | temp_mode->htotal == panel_fixed_mode->htotal && |
| 185 | temp_mode->vdisplay == panel_fixed_mode->vdisplay && |
| 186 | temp_mode->vsync_start == panel_fixed_mode->vsync_start && |
| 187 | temp_mode->vsync_end == panel_fixed_mode->vsync_end && |
| 188 | temp_mode->vtotal == panel_fixed_mode->vtotal && |
| 189 | temp_mode->clock < temp_downclock) { |
| 190 | /* |
| 191 | * downclock is already found. But we expect |
| 192 | * to find the lower downclock. |
| 193 | */ |
| 194 | temp_downclock = temp_mode->clock; |
| 195 | } |
| 196 | /* clear it to zero */ |
| 197 | memset(temp_mode, 0, sizeof(*temp_mode)); |
| 198 | } |
| 199 | kfree(temp_mode); |
| 200 | if (temp_downclock < panel_fixed_mode->clock) { |
| 201 | dev_priv->lvds_downclock_avail = 1; |
| 202 | dev_priv->lvds_downclock = temp_downclock; |
| 203 | DRM_DEBUG_KMS("LVDS downclock is found in VBT. ", |
| 204 | "Normal Clock %dKHz, downclock %dKHz\n", |
| 205 | temp_downclock, panel_fixed_mode->clock); |
| 206 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 207 | return; |
| 208 | } |
| 209 | |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 210 | /* Try to find sdvo panel data */ |
| 211 | static void |
| 212 | parse_sdvo_panel_data(struct drm_i915_private *dev_priv, |
| 213 | struct bdb_header *bdb) |
| 214 | { |
| 215 | struct bdb_sdvo_lvds_options *sdvo_lvds_options; |
| 216 | struct lvds_dvo_timing *dvo_timing; |
| 217 | struct drm_display_mode *panel_fixed_mode; |
| 218 | |
| 219 | dev_priv->sdvo_lvds_vbt_mode = NULL; |
| 220 | |
| 221 | sdvo_lvds_options = find_section(bdb, BDB_SDVO_LVDS_OPTIONS); |
| 222 | if (!sdvo_lvds_options) |
| 223 | return; |
| 224 | |
| 225 | dvo_timing = find_section(bdb, BDB_SDVO_PANEL_DTDS); |
| 226 | if (!dvo_timing) |
| 227 | return; |
| 228 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 229 | panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL); |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 230 | |
| 231 | if (!panel_fixed_mode) |
| 232 | return; |
| 233 | |
| 234 | fill_detail_timing_data(panel_fixed_mode, |
| 235 | dvo_timing + sdvo_lvds_options->panel_type); |
| 236 | |
| 237 | dev_priv->sdvo_lvds_vbt_mode = panel_fixed_mode; |
| 238 | |
| 239 | return; |
| 240 | } |
| 241 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 242 | static void |
| 243 | parse_general_features(struct drm_i915_private *dev_priv, |
| 244 | struct bdb_header *bdb) |
| 245 | { |
| 246 | struct bdb_general_features *general; |
| 247 | |
| 248 | /* Set sensible defaults in case we can't find the general block */ |
| 249 | dev_priv->int_tv_support = 1; |
| 250 | dev_priv->int_crt_support = 1; |
| 251 | |
| 252 | general = find_section(bdb, BDB_GENERAL_FEATURES); |
| 253 | if (general) { |
| 254 | dev_priv->int_tv_support = general->int_tv_support; |
| 255 | dev_priv->int_crt_support = general->int_crt_support; |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 256 | dev_priv->lvds_use_ssc = general->enable_ssc; |
| 257 | |
| 258 | if (dev_priv->lvds_use_ssc) { |
ling.ma@intel.com | 6ff4fd0 | 2009-06-25 10:59:22 +0800 | [diff] [blame] | 259 | if (IS_I85X(dev_priv->dev)) |
| 260 | dev_priv->lvds_ssc_freq = |
| 261 | general->ssc_freq ? 66 : 48; |
Zhenyu Wang | 339e5a4 | 2009-09-19 14:54:07 +0800 | [diff] [blame] | 262 | else if (IS_IGDNG(dev_priv->dev)) |
| 263 | dev_priv->lvds_ssc_freq = |
| 264 | general->ssc_freq ? 100 : 120; |
ling.ma@intel.com | 6ff4fd0 | 2009-06-25 10:59:22 +0800 | [diff] [blame] | 265 | else |
| 266 | dev_priv->lvds_ssc_freq = |
| 267 | general->ssc_freq ? 100 : 96; |
Kristian Høgsberg | 43565a0 | 2009-02-13 20:56:52 -0500 | [diff] [blame] | 268 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 269 | } |
| 270 | } |
| 271 | |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 272 | static void |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 273 | parse_general_definitions(struct drm_i915_private *dev_priv, |
| 274 | struct bdb_header *bdb) |
| 275 | { |
| 276 | struct bdb_general_definitions *general; |
| 277 | const int crt_bus_map_table[] = { |
| 278 | GPIOB, |
| 279 | GPIOA, |
| 280 | GPIOC, |
| 281 | GPIOD, |
| 282 | GPIOE, |
| 283 | GPIOF, |
| 284 | }; |
| 285 | |
| 286 | /* Set sensible defaults in case we can't find the general block |
| 287 | or it is the wrong chipset */ |
| 288 | dev_priv->crt_ddc_bus = -1; |
| 289 | |
| 290 | general = find_section(bdb, BDB_GENERAL_DEFINITIONS); |
| 291 | if (general) { |
| 292 | u16 block_size = get_blocksize(general); |
| 293 | if (block_size >= sizeof(*general)) { |
| 294 | int bus_pin = general->crt_ddc_gmbus_pin; |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 295 | DRM_DEBUG_KMS("crt_ddc_bus_pin: %d\n", bus_pin); |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 296 | if ((bus_pin >= 1) && (bus_pin <= 6)) { |
| 297 | dev_priv->crt_ddc_bus = |
| 298 | crt_bus_map_table[bus_pin-1]; |
| 299 | } |
| 300 | } else { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 301 | DRM_DEBUG_KMS("BDB_GD too small (%d). Invalid.\n", |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 302 | block_size); |
| 303 | } |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | static void |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 308 | parse_sdvo_device_mapping(struct drm_i915_private *dev_priv, |
| 309 | struct bdb_header *bdb) |
| 310 | { |
| 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; |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 315 | u16 block_size; |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 316 | |
| 317 | p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS); |
| 318 | if (!p_defs) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 319 | DRM_DEBUG_KMS("No general definition block is found\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 320 | return; |
| 321 | } |
| 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 |
| 326 | */ |
| 327 | if (p_defs->child_dev_size != sizeof(*p_child)) { |
| 328 | /* different child dev size . Ignore it */ |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 329 | DRM_DEBUG_KMS("different child size is found. Invalid.\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 330 | return; |
| 331 | } |
| 332 | /* get the block size of general definitions */ |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 333 | block_size = get_blocksize(p_defs); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 334 | /* get the number of child device */ |
| 335 | child_device_num = (block_size - sizeof(*p_defs)) / |
| 336 | sizeof(*p_child); |
| 337 | count = 0; |
| 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 */ |
| 342 | continue; |
| 343 | } |
| 344 | if (p_child->slave_addr != SLAVE_ADDR1 && |
| 345 | p_child->slave_addr != SLAVE_ADDR2) { |
| 346 | /* |
| 347 | * If the slave address is neither 0x70 nor 0x72, |
| 348 | * it is not a SDVO device. Skip it. |
| 349 | */ |
| 350 | continue; |
| 351 | } |
| 352 | if (p_child->dvo_port != DEVICE_PORT_DVOB && |
| 353 | p_child->dvo_port != DEVICE_PORT_DVOC) { |
| 354 | /* skip the incorrect SDVO port */ |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 355 | DRM_DEBUG_KMS("Incorrect SDVO port. Skip it \n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 356 | continue; |
| 357 | } |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 358 | DRM_DEBUG_KMS("the SDVO device with slave addr %2x is found on" |
| 359 | " %s port\n", |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 360 | p_child->slave_addr, |
| 361 | (p_child->dvo_port == DEVICE_PORT_DVOB) ? |
| 362 | "SDVOB" : "SDVOC"); |
| 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; |
| 369 | } else { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 370 | DRM_DEBUG_KMS("Maybe one SDVO port is shared by " |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 371 | "two SDVO device.\n"); |
| 372 | } |
| 373 | if (p_child->slave2_addr) { |
| 374 | /* Maybe this is a SDVO device with multiple inputs */ |
| 375 | /* And the mapping info is not added */ |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 376 | DRM_DEBUG_KMS("there exists the slave2_addr. Maybe this" |
| 377 | " is a SDVO device with multiple inputs.\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 378 | } |
| 379 | count++; |
| 380 | } |
| 381 | |
| 382 | if (!count) { |
| 383 | /* No SDVO device info is found */ |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 384 | DRM_DEBUG_KMS("No SDVO device info is found in VBT\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 385 | } |
| 386 | return; |
| 387 | } |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 388 | |
| 389 | static void |
| 390 | parse_driver_features(struct drm_i915_private *dev_priv, |
| 391 | struct bdb_header *bdb) |
| 392 | { |
| 393 | struct drm_device *dev = dev_priv->dev; |
| 394 | struct bdb_driver_features *driver; |
| 395 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 396 | driver = find_section(bdb, BDB_DRIVER_FEATURES); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 397 | if (!driver) |
| 398 | return; |
| 399 | |
Andy Lutomirski | 181a533 | 2009-10-13 10:40:52 -0700 | [diff] [blame] | 400 | if (driver && SUPPORTS_EDP(dev) && |
| 401 | driver->lvds_config == BDB_DRIVER_FEATURE_EDP) { |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 402 | dev_priv->edp_support = 1; |
Andy Lutomirski | 181a533 | 2009-10-13 10:40:52 -0700 | [diff] [blame] | 403 | } else { |
| 404 | dev_priv->edp_support = 0; |
| 405 | } |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 406 | |
Andy Lutomirski | 181a533 | 2009-10-13 10:40:52 -0700 | [diff] [blame] | 407 | if (driver && driver->dual_frequency) |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 408 | dev_priv->render_reclock_avail = true; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 409 | } |
| 410 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 411 | /** |
| 412 | * intel_init_bios - initialize VBIOS settings & find VBT |
| 413 | * @dev: DRM device |
| 414 | * |
| 415 | * Loads the Video BIOS and checks that the VBT exists. Sets scratch registers |
| 416 | * to appropriate values. |
| 417 | * |
| 418 | * VBT existence is a sanity check that is relied on by other i830_bios.c code. |
| 419 | * Note that it would be better to use a BIOS call to get the VBT, as BIOSes may |
| 420 | * feed an updated VBT back through that, compared to what we'll fetch using |
| 421 | * this method of groping around in the BIOS data. |
| 422 | * |
| 423 | * Returns 0 on success, nonzero on failure. |
| 424 | */ |
| 425 | bool |
| 426 | intel_init_bios(struct drm_device *dev) |
| 427 | { |
| 428 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 429 | struct pci_dev *pdev = dev->pdev; |
| 430 | struct vbt_header *vbt = NULL; |
| 431 | struct bdb_header *bdb; |
| 432 | u8 __iomem *bios; |
| 433 | size_t size; |
| 434 | int i; |
| 435 | |
| 436 | bios = pci_map_rom(pdev, &size); |
| 437 | if (!bios) |
| 438 | return -1; |
| 439 | |
| 440 | /* Scour memory looking for the VBT signature */ |
| 441 | for (i = 0; i + 4 < size; i++) { |
| 442 | if (!memcmp(bios + i, "$VBT", 4)) { |
| 443 | vbt = (struct vbt_header *)(bios + i); |
| 444 | break; |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | if (!vbt) { |
| 449 | DRM_ERROR("VBT signature missing\n"); |
| 450 | pci_unmap_rom(pdev, bios); |
| 451 | return -1; |
| 452 | } |
| 453 | |
| 454 | bdb = (struct bdb_header *)(bios + i + vbt->bdb_offset); |
| 455 | |
| 456 | /* Grab useful general definitions */ |
| 457 | parse_general_features(dev_priv, bdb); |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 458 | parse_general_definitions(dev_priv, bdb); |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 459 | parse_lfp_panel_data(dev_priv, bdb); |
| 460 | parse_sdvo_panel_data(dev_priv, bdb); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 461 | parse_sdvo_device_mapping(dev_priv, bdb); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 462 | parse_driver_features(dev_priv, bdb); |
| 463 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 464 | pci_unmap_rom(pdev, bios); |
| 465 | |
| 466 | return 0; |
| 467 | } |