blob: 48a0f03b60c31f6b4a0a6809dfa1fb992830a11a [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 */
Jesse Barnes9f0e7ff42010-10-07 16:01:14 -070027#include <drm/drm_dp_helper.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080028#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
32#include "intel_bios.h"
33
yakui_zhao9b9d1722009-05-31 17:17:17 +080034#define SLAVE_ADDR1 0x70
35#define SLAVE_ADDR2 0x72
Jesse Barnes79e53942008-11-07 14:24:08 -080036
Zhenyu Wang500a8cc2010-01-13 11:19:52 +080037static int panel_type;
38
Jesse Barnes79e53942008-11-07 14:24:08 -080039static void *
40find_section(struct bdb_header *bdb, int section_id)
41{
42 u8 *base = (u8 *)bdb;
43 int index = 0;
44 u16 total, current_size;
45 u8 current_id;
46
47 /* skip to first section */
48 index += bdb->header_size;
49 total = bdb->bdb_size;
50
51 /* walk the sections looking for section_id */
52 while (index < total) {
53 current_id = *(base + index);
54 index++;
55 current_size = *((u16 *)(base + index));
56 index += 2;
57 if (current_id == section_id)
58 return base + index;
59 index += current_size;
60 }
61
62 return NULL;
63}
64
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +020065static u16
66get_blocksize(void *p)
67{
68 u16 *block_ptr, block_size;
69
70 block_ptr = (u16 *)((char *)p - 2);
71 block_size = *block_ptr;
72 return block_size;
73}
74
Jesse Barnes79e53942008-11-07 14:24:08 -080075static void
Ma Ling88631702009-05-13 11:19:55 +080076fill_detail_timing_data(struct drm_display_mode *panel_fixed_mode,
77 struct lvds_dvo_timing *dvo_timing)
78{
79 panel_fixed_mode->hdisplay = (dvo_timing->hactive_hi << 8) |
80 dvo_timing->hactive_lo;
81 panel_fixed_mode->hsync_start = panel_fixed_mode->hdisplay +
82 ((dvo_timing->hsync_off_hi << 8) | dvo_timing->hsync_off_lo);
83 panel_fixed_mode->hsync_end = panel_fixed_mode->hsync_start +
84 dvo_timing->hsync_pulse_width;
85 panel_fixed_mode->htotal = panel_fixed_mode->hdisplay +
86 ((dvo_timing->hblank_hi << 8) | dvo_timing->hblank_lo);
87
88 panel_fixed_mode->vdisplay = (dvo_timing->vactive_hi << 8) |
89 dvo_timing->vactive_lo;
90 panel_fixed_mode->vsync_start = panel_fixed_mode->vdisplay +
91 dvo_timing->vsync_off;
92 panel_fixed_mode->vsync_end = panel_fixed_mode->vsync_start +
93 dvo_timing->vsync_pulse_width;
94 panel_fixed_mode->vtotal = panel_fixed_mode->vdisplay +
95 ((dvo_timing->vblank_hi << 8) | dvo_timing->vblank_lo);
96 panel_fixed_mode->clock = dvo_timing->clock * 10;
97 panel_fixed_mode->type = DRM_MODE_TYPE_PREFERRED;
98
Adam Jackson9bc35492010-05-28 17:17:37 -040099 if (dvo_timing->hsync_positive)
100 panel_fixed_mode->flags |= DRM_MODE_FLAG_PHSYNC;
101 else
102 panel_fixed_mode->flags |= DRM_MODE_FLAG_NHSYNC;
103
104 if (dvo_timing->vsync_positive)
105 panel_fixed_mode->flags |= DRM_MODE_FLAG_PVSYNC;
106 else
107 panel_fixed_mode->flags |= DRM_MODE_FLAG_NVSYNC;
108
Ma Ling88631702009-05-13 11:19:55 +0800109 /* Some VBTs have bogus h/vtotal values */
110 if (panel_fixed_mode->hsync_end > panel_fixed_mode->htotal)
111 panel_fixed_mode->htotal = panel_fixed_mode->hsync_end + 1;
112 if (panel_fixed_mode->vsync_end > panel_fixed_mode->vtotal)
113 panel_fixed_mode->vtotal = panel_fixed_mode->vsync_end + 1;
114
115 drm_mode_set_name(panel_fixed_mode);
116}
117
118/* Try to find integrated panel data */
119static void
120parse_lfp_panel_data(struct drm_i915_private *dev_priv,
121 struct bdb_header *bdb)
Jesse Barnes79e53942008-11-07 14:24:08 -0800122{
123 struct bdb_lvds_options *lvds_options;
124 struct bdb_lvds_lfp_data *lvds_lfp_data;
Jesse Barnes1b16de02009-06-22 11:30:30 -0700125 struct bdb_lvds_lfp_data_ptrs *lvds_lfp_data_ptrs;
Jesse Barnes79e53942008-11-07 14:24:08 -0800126 struct bdb_lvds_lfp_data_entry *entry;
127 struct lvds_dvo_timing *dvo_timing;
128 struct drm_display_mode *panel_fixed_mode;
Zhao Yakuicdaa0522009-07-28 10:54:13 +0800129 int lfp_data_size, dvo_timing_offset;
Zhao Yakuid1fcea6a2009-11-20 11:24:17 +0800130 int i, temp_downclock;
131 struct drm_display_mode *temp_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -0800132
Jesse Barnes79e53942008-11-07 14:24:08 -0800133 lvds_options = find_section(bdb, BDB_LVDS_OPTIONS);
134 if (!lvds_options)
135 return;
136
137 dev_priv->lvds_dither = lvds_options->pixel_dither;
138 if (lvds_options->panel_type == 0xff)
139 return;
Simon Que6a040022010-09-30 09:36:39 +0100140
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800141 panel_type = lvds_options->panel_type;
Jesse Barnes79e53942008-11-07 14:24:08 -0800142
143 lvds_lfp_data = find_section(bdb, BDB_LVDS_LFP_DATA);
144 if (!lvds_lfp_data)
145 return;
146
Jesse Barnes1b16de02009-06-22 11:30:30 -0700147 lvds_lfp_data_ptrs = find_section(bdb, BDB_LVDS_LFP_DATA_PTRS);
148 if (!lvds_lfp_data_ptrs)
149 return;
150
Jesse Barnes79e53942008-11-07 14:24:08 -0800151 dev_priv->lvds_vbt = 1;
152
Jesse Barnes1b16de02009-06-22 11:30:30 -0700153 lfp_data_size = lvds_lfp_data_ptrs->ptr[1].dvo_timing_offset -
154 lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset;
155 entry = (struct bdb_lvds_lfp_data_entry *)
156 ((uint8_t *)lvds_lfp_data->data + (lfp_data_size *
157 lvds_options->panel_type));
Zhao Yakuicdaa0522009-07-28 10:54:13 +0800158 dvo_timing_offset = lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset -
159 lvds_lfp_data_ptrs->ptr[0].fp_timing_offset;
Zhenyu Wang50199142009-07-10 14:39:59 +0800160
Zhao Yakuicdaa0522009-07-28 10:54:13 +0800161 /*
162 * the size of fp_timing varies on the different platform.
163 * So calculate the DVO timing relative offset in LVDS data
164 * entry to get the DVO timing entry
165 */
166 dvo_timing = (struct lvds_dvo_timing *)
167 ((unsigned char *)entry + dvo_timing_offset);
Jesse Barnes79e53942008-11-07 14:24:08 -0800168
Eric Anholt9a298b22009-03-24 12:23:04 -0700169 panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL);
Chris Wilson6edc3242010-09-12 17:16:17 +0100170 if (!panel_fixed_mode)
171 return;
Jesse Barnes79e53942008-11-07 14:24:08 -0800172
Ma Ling88631702009-05-13 11:19:55 +0800173 fill_detail_timing_data(panel_fixed_mode, dvo_timing);
Jesse Barnes79e53942008-11-07 14:24:08 -0800174
Ma Ling88631702009-05-13 11:19:55 +0800175 dev_priv->lfp_lvds_vbt_mode = panel_fixed_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -0800176
Zhao Yakui28c97732009-10-09 11:39:41 +0800177 DRM_DEBUG_KMS("Found panel mode in BIOS VBT tables:\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800178 drm_mode_debug_printmodeline(panel_fixed_mode);
179
Zhao Yakuid1fcea6a2009-11-20 11:24:17 +0800180 temp_mode = kzalloc(sizeof(*temp_mode), GFP_KERNEL);
181 temp_downclock = panel_fixed_mode->clock;
182 /*
183 * enumerate the LVDS panel timing info entry in VBT to check whether
184 * the LVDS downclock is found.
185 */
186 for (i = 0; i < 16; i++) {
187 entry = (struct bdb_lvds_lfp_data_entry *)
188 ((uint8_t *)lvds_lfp_data->data + (lfp_data_size * i));
189 dvo_timing = (struct lvds_dvo_timing *)
190 ((unsigned char *)entry + dvo_timing_offset);
191
192 fill_detail_timing_data(temp_mode, dvo_timing);
193
194 if (temp_mode->hdisplay == panel_fixed_mode->hdisplay &&
195 temp_mode->hsync_start == panel_fixed_mode->hsync_start &&
196 temp_mode->hsync_end == panel_fixed_mode->hsync_end &&
197 temp_mode->htotal == panel_fixed_mode->htotal &&
198 temp_mode->vdisplay == panel_fixed_mode->vdisplay &&
199 temp_mode->vsync_start == panel_fixed_mode->vsync_start &&
200 temp_mode->vsync_end == panel_fixed_mode->vsync_end &&
201 temp_mode->vtotal == panel_fixed_mode->vtotal &&
202 temp_mode->clock < temp_downclock) {
203 /*
204 * downclock is already found. But we expect
205 * to find the lower downclock.
206 */
207 temp_downclock = temp_mode->clock;
208 }
209 /* clear it to zero */
210 memset(temp_mode, 0, sizeof(*temp_mode));
211 }
212 kfree(temp_mode);
Jesse Barnes33814342010-01-14 20:48:02 +0000213 if (temp_downclock < panel_fixed_mode->clock &&
214 i915_lvds_downclock) {
Zhao Yakuid1fcea6a2009-11-20 11:24:17 +0800215 dev_priv->lvds_downclock_avail = 1;
216 dev_priv->lvds_downclock = temp_downclock;
217 DRM_DEBUG_KMS("LVDS downclock is found in VBT. ",
218 "Normal Clock %dKHz, downclock %dKHz\n",
219 temp_downclock, panel_fixed_mode->clock);
220 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800221 return;
222}
223
Ma Ling88631702009-05-13 11:19:55 +0800224/* Try to find sdvo panel data */
225static void
226parse_sdvo_panel_data(struct drm_i915_private *dev_priv,
227 struct bdb_header *bdb)
228{
Ma Ling88631702009-05-13 11:19:55 +0800229 struct lvds_dvo_timing *dvo_timing;
230 struct drm_display_mode *panel_fixed_mode;
Chris Wilson5a1e5b62011-01-29 16:50:25 +0000231 int index;
Ma Ling88631702009-05-13 11:19:55 +0800232
Chris Wilson5a1e5b62011-01-29 16:50:25 +0000233 index = i915_vbt_sdvo_panel_type;
234 if (index == -1) {
235 struct bdb_sdvo_lvds_options *sdvo_lvds_options;
236
237 sdvo_lvds_options = find_section(bdb, BDB_SDVO_LVDS_OPTIONS);
238 if (!sdvo_lvds_options)
239 return;
240
241 index = sdvo_lvds_options->panel_type;
242 }
Ma Ling88631702009-05-13 11:19:55 +0800243
244 dvo_timing = find_section(bdb, BDB_SDVO_PANEL_DTDS);
245 if (!dvo_timing)
246 return;
247
Eric Anholt9a298b22009-03-24 12:23:04 -0700248 panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL);
Ma Ling88631702009-05-13 11:19:55 +0800249 if (!panel_fixed_mode)
250 return;
251
Chris Wilson5a1e5b62011-01-29 16:50:25 +0000252 fill_detail_timing_data(panel_fixed_mode, dvo_timing + index);
Ma Ling88631702009-05-13 11:19:55 +0800253
254 dev_priv->sdvo_lvds_vbt_mode = panel_fixed_mode;
255
Chris Wilson5a1e5b62011-01-29 16:50:25 +0000256 DRM_DEBUG_KMS("Found SDVO panel mode in BIOS VBT tables:\n");
257 drm_mode_debug_printmodeline(panel_fixed_mode);
Ma Ling88631702009-05-13 11:19:55 +0800258}
259
Bryan Freed9a4114f2011-01-12 13:38:39 -0800260static int intel_bios_ssc_frequency(struct drm_device *dev,
261 bool alternate)
262{
263 switch (INTEL_INFO(dev)->gen) {
264 case 2:
265 return alternate ? 66 : 48;
266 case 3:
267 case 4:
268 return alternate ? 100 : 96;
269 default:
270 return alternate ? 100 : 120;
271 }
272}
273
Jesse Barnes79e53942008-11-07 14:24:08 -0800274static void
275parse_general_features(struct drm_i915_private *dev_priv,
276 struct bdb_header *bdb)
277{
Eric Anholtbad720f2009-10-22 16:11:14 -0700278 struct drm_device *dev = dev_priv->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800279 struct bdb_general_features *general;
280
Jesse Barnes79e53942008-11-07 14:24:08 -0800281 general = find_section(bdb, BDB_GENERAL_FEATURES);
282 if (general) {
283 dev_priv->int_tv_support = general->int_tv_support;
284 dev_priv->int_crt_support = general->int_crt_support;
Kristian Høgsberg43565a02009-02-13 20:56:52 -0500285 dev_priv->lvds_use_ssc = general->enable_ssc;
Bryan Freed9a4114f2011-01-12 13:38:39 -0800286 dev_priv->lvds_ssc_freq =
287 intel_bios_ssc_frequency(dev, general->ssc_freq);
Chris Wilson633f2ea2011-01-19 13:29:42 +0000288 dev_priv->display_clock_mode = general->display_clock_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -0800289 }
290}
291
yakui_zhao9b9d1722009-05-31 17:17:17 +0800292static void
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200293parse_general_definitions(struct drm_i915_private *dev_priv,
294 struct bdb_header *bdb)
295{
296 struct bdb_general_definitions *general;
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200297
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200298 general = find_section(bdb, BDB_GENERAL_DEFINITIONS);
299 if (general) {
300 u16 block_size = get_blocksize(general);
301 if (block_size >= sizeof(*general)) {
302 int bus_pin = general->crt_ddc_gmbus_pin;
Zhao Yakui28c97732009-10-09 11:39:41 +0800303 DRM_DEBUG_KMS("crt_ddc_bus_pin: %d\n", bus_pin);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700304 if (bus_pin >= 1 && bus_pin <= 6)
Chris Wilson2896b532010-09-22 10:54:48 +0100305 dev_priv->crt_ddc_pin = bus_pin;
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200306 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +0800307 DRM_DEBUG_KMS("BDB_GD too small (%d). Invalid.\n",
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200308 block_size);
309 }
310 }
311}
312
313static void
yakui_zhao9b9d1722009-05-31 17:17:17 +0800314parse_sdvo_device_mapping(struct drm_i915_private *dev_priv,
Chris Wilson44834a62010-08-19 16:09:23 +0100315 struct bdb_header *bdb)
yakui_zhao9b9d1722009-05-31 17:17:17 +0800316{
317 struct sdvo_device_mapping *p_mapping;
318 struct bdb_general_definitions *p_defs;
319 struct child_device_config *p_child;
320 int i, child_device_num, count;
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200321 u16 block_size;
yakui_zhao9b9d1722009-05-31 17:17:17 +0800322
323 p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS);
324 if (!p_defs) {
Chris Wilson44834a62010-08-19 16:09:23 +0100325 DRM_DEBUG_KMS("No general definition block is found, unable to construct sdvo mapping.\n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800326 return;
327 }
328 /* judge whether the size of child device meets the requirements.
329 * If the child device size obtained from general definition block
330 * is different with sizeof(struct child_device_config), skip the
331 * parsing of sdvo device info
332 */
333 if (p_defs->child_dev_size != sizeof(*p_child)) {
334 /* different child dev size . Ignore it */
Zhao Yakui28c97732009-10-09 11:39:41 +0800335 DRM_DEBUG_KMS("different child size is found. Invalid.\n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800336 return;
337 }
338 /* get the block size of general definitions */
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200339 block_size = get_blocksize(p_defs);
yakui_zhao9b9d1722009-05-31 17:17:17 +0800340 /* get the number of child device */
341 child_device_num = (block_size - sizeof(*p_defs)) /
342 sizeof(*p_child);
343 count = 0;
344 for (i = 0; i < child_device_num; i++) {
345 p_child = &(p_defs->devices[i]);
346 if (!p_child->device_type) {
347 /* skip the device block if device type is invalid */
348 continue;
349 }
350 if (p_child->slave_addr != SLAVE_ADDR1 &&
351 p_child->slave_addr != SLAVE_ADDR2) {
352 /*
353 * If the slave address is neither 0x70 nor 0x72,
354 * it is not a SDVO device. Skip it.
355 */
356 continue;
357 }
358 if (p_child->dvo_port != DEVICE_PORT_DVOB &&
359 p_child->dvo_port != DEVICE_PORT_DVOC) {
360 /* skip the incorrect SDVO port */
Zhao Yakui28c97732009-10-09 11:39:41 +0800361 DRM_DEBUG_KMS("Incorrect SDVO port. Skip it \n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800362 continue;
363 }
Zhao Yakui28c97732009-10-09 11:39:41 +0800364 DRM_DEBUG_KMS("the SDVO device with slave addr %2x is found on"
365 " %s port\n",
yakui_zhao9b9d1722009-05-31 17:17:17 +0800366 p_child->slave_addr,
367 (p_child->dvo_port == DEVICE_PORT_DVOB) ?
368 "SDVOB" : "SDVOC");
369 p_mapping = &(dev_priv->sdvo_mappings[p_child->dvo_port - 1]);
370 if (!p_mapping->initialized) {
371 p_mapping->dvo_port = p_child->dvo_port;
372 p_mapping->slave_addr = p_child->slave_addr;
373 p_mapping->dvo_wiring = p_child->dvo_wiring;
Adam Jacksonb1083332010-04-23 16:07:40 -0400374 p_mapping->ddc_pin = p_child->ddc_pin;
Chris Wilsone957d772010-09-24 12:52:03 +0100375 p_mapping->i2c_pin = p_child->i2c_pin;
376 p_mapping->i2c_speed = p_child->i2c_speed;
yakui_zhao9b9d1722009-05-31 17:17:17 +0800377 p_mapping->initialized = 1;
Chris Wilsone957d772010-09-24 12:52:03 +0100378 DRM_DEBUG_KMS("SDVO device: dvo=%x, addr=%x, wiring=%d, ddc_pin=%d, i2c_pin=%d, i2c_speed=%d\n",
379 p_mapping->dvo_port,
380 p_mapping->slave_addr,
381 p_mapping->dvo_wiring,
382 p_mapping->ddc_pin,
383 p_mapping->i2c_pin,
384 p_mapping->i2c_speed);
yakui_zhao9b9d1722009-05-31 17:17:17 +0800385 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +0800386 DRM_DEBUG_KMS("Maybe one SDVO port is shared by "
yakui_zhao9b9d1722009-05-31 17:17:17 +0800387 "two SDVO device.\n");
388 }
389 if (p_child->slave2_addr) {
390 /* Maybe this is a SDVO device with multiple inputs */
391 /* And the mapping info is not added */
Zhao Yakui28c97732009-10-09 11:39:41 +0800392 DRM_DEBUG_KMS("there exists the slave2_addr. Maybe this"
393 " is a SDVO device with multiple inputs.\n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800394 }
395 count++;
396 }
397
398 if (!count) {
399 /* No SDVO device info is found */
Zhao Yakui28c97732009-10-09 11:39:41 +0800400 DRM_DEBUG_KMS("No SDVO device info is found in VBT\n");
yakui_zhao9b9d1722009-05-31 17:17:17 +0800401 }
402 return;
403}
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800404
405static void
406parse_driver_features(struct drm_i915_private *dev_priv,
407 struct bdb_header *bdb)
408{
409 struct drm_device *dev = dev_priv->dev;
410 struct bdb_driver_features *driver;
411
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800412 driver = find_section(bdb, BDB_DRIVER_FEATURES);
Jesse Barnes652c3932009-08-17 13:31:43 -0700413 if (!driver)
414 return;
415
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100416 if (SUPPORTS_EDP(dev) &&
417 driver->lvds_config == BDB_DRIVER_FEATURE_EDP)
418 dev_priv->edp.support = 1;
Jesse Barnes652c3932009-08-17 13:31:43 -0700419
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100420 if (driver->dual_frequency)
Jesse Barnes652c3932009-08-17 13:31:43 -0700421 dev_priv->render_reclock_avail = true;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800422}
423
Zhao Yakui6363ee62009-11-24 09:48:44 +0800424static void
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800425parse_edp(struct drm_i915_private *dev_priv, struct bdb_header *bdb)
426{
427 struct bdb_edp *edp;
Jesse Barnes9f0e7ff42010-10-07 16:01:14 -0700428 struct edp_power_seq *edp_pps;
429 struct edp_link_params *edp_link_params;
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800430
431 edp = find_section(bdb, BDB_EDP);
432 if (!edp) {
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100433 if (SUPPORTS_EDP(dev_priv->dev) && dev_priv->edp.support) {
Joe Perches76e47c32010-03-11 14:01:38 -0800434 DRM_DEBUG_KMS("No eDP BDB found but eDP panel "
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100435 "supported, assume %dbpp panel color "
436 "depth.\n",
437 dev_priv->edp.bpp);
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800438 }
439 return;
440 }
441
442 switch ((edp->color_depth >> (panel_type * 2)) & 3) {
443 case EDP_18BPP:
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100444 dev_priv->edp.bpp = 18;
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800445 break;
446 case EDP_24BPP:
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100447 dev_priv->edp.bpp = 24;
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800448 break;
449 case EDP_30BPP:
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100450 dev_priv->edp.bpp = 30;
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800451 break;
452 }
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100453
Jesse Barnes9f0e7ff42010-10-07 16:01:14 -0700454 /* Get the eDP sequencing and link info */
455 edp_pps = &edp->power_seqs[panel_type];
456 edp_link_params = &edp->link_params[panel_type];
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100457
Jesse Barnes9f0e7ff42010-10-07 16:01:14 -0700458 dev_priv->edp.pps = *edp_pps;
Chris Wilson5ceb0f92010-09-24 10:24:28 +0100459
Jesse Barnes9f0e7ff42010-10-07 16:01:14 -0700460 dev_priv->edp.rate = edp_link_params->rate ? DP_LINK_BW_2_7 :
461 DP_LINK_BW_1_62;
462 switch (edp_link_params->lanes) {
463 case 0:
464 dev_priv->edp.lanes = 1;
465 break;
466 case 1:
467 dev_priv->edp.lanes = 2;
468 break;
469 case 3:
470 default:
471 dev_priv->edp.lanes = 4;
472 break;
473 }
474 switch (edp_link_params->preemphasis) {
475 case 0:
476 dev_priv->edp.preemphasis = DP_TRAIN_PRE_EMPHASIS_0;
477 break;
478 case 1:
479 dev_priv->edp.preemphasis = DP_TRAIN_PRE_EMPHASIS_3_5;
480 break;
481 case 2:
482 dev_priv->edp.preemphasis = DP_TRAIN_PRE_EMPHASIS_6;
483 break;
484 case 3:
485 dev_priv->edp.preemphasis = DP_TRAIN_PRE_EMPHASIS_9_5;
486 break;
487 }
488 switch (edp_link_params->vswing) {
489 case 0:
490 dev_priv->edp.vswing = DP_TRAIN_VOLTAGE_SWING_400;
491 break;
492 case 1:
493 dev_priv->edp.vswing = DP_TRAIN_VOLTAGE_SWING_600;
494 break;
495 case 2:
496 dev_priv->edp.vswing = DP_TRAIN_VOLTAGE_SWING_800;
497 break;
498 case 3:
499 dev_priv->edp.vswing = DP_TRAIN_VOLTAGE_SWING_1200;
500 break;
501 }
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800502}
503
504static void
Zhao Yakui6363ee62009-11-24 09:48:44 +0800505parse_device_mapping(struct drm_i915_private *dev_priv,
506 struct bdb_header *bdb)
507{
508 struct bdb_general_definitions *p_defs;
509 struct child_device_config *p_child, *child_dev_ptr;
510 int i, child_device_num, count;
511 u16 block_size;
512
513 p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS);
514 if (!p_defs) {
Chris Wilson44834a62010-08-19 16:09:23 +0100515 DRM_DEBUG_KMS("No general definition block is found, no devices defined.\n");
Zhao Yakui6363ee62009-11-24 09:48:44 +0800516 return;
517 }
518 /* judge whether the size of child device meets the requirements.
519 * If the child device size obtained from general definition block
520 * is different with sizeof(struct child_device_config), skip the
521 * parsing of sdvo device info
522 */
523 if (p_defs->child_dev_size != sizeof(*p_child)) {
524 /* different child dev size . Ignore it */
525 DRM_DEBUG_KMS("different child size is found. Invalid.\n");
526 return;
527 }
528 /* get the block size of general definitions */
529 block_size = get_blocksize(p_defs);
530 /* get the number of child device */
531 child_device_num = (block_size - sizeof(*p_defs)) /
532 sizeof(*p_child);
533 count = 0;
534 /* get the number of child device that is present */
535 for (i = 0; i < child_device_num; i++) {
536 p_child = &(p_defs->devices[i]);
537 if (!p_child->device_type) {
538 /* skip the device block if device type is invalid */
539 continue;
540 }
541 count++;
542 }
543 if (!count) {
544 DRM_DEBUG_KMS("no child dev is parsed from VBT \n");
545 return;
546 }
547 dev_priv->child_dev = kzalloc(sizeof(*p_child) * count, GFP_KERNEL);
548 if (!dev_priv->child_dev) {
549 DRM_DEBUG_KMS("No memory space for child device\n");
550 return;
551 }
552
553 dev_priv->child_dev_num = count;
554 count = 0;
555 for (i = 0; i < child_device_num; i++) {
556 p_child = &(p_defs->devices[i]);
557 if (!p_child->device_type) {
558 /* skip the device block if device type is invalid */
559 continue;
560 }
561 child_dev_ptr = dev_priv->child_dev + count;
562 count++;
563 memcpy((void *)child_dev_ptr, (void *)p_child,
564 sizeof(*p_child));
565 }
566 return;
567}
Chris Wilson44834a62010-08-19 16:09:23 +0100568
Simon Que6a040022010-09-30 09:36:39 +0100569static void
570init_vbt_defaults(struct drm_i915_private *dev_priv)
571{
Bryan Freed9a4114f2011-01-12 13:38:39 -0800572 struct drm_device *dev = dev_priv->dev;
573
Simon Que6a040022010-09-30 09:36:39 +0100574 dev_priv->crt_ddc_pin = GMBUS_PORT_VGADDC;
575
576 /* LFP panel data */
577 dev_priv->lvds_dither = 1;
578 dev_priv->lvds_vbt = 0;
579
580 /* SDVO panel data */
581 dev_priv->sdvo_lvds_vbt_mode = NULL;
582
583 /* general features */
584 dev_priv->int_tv_support = 1;
585 dev_priv->int_crt_support = 1;
Bryan Freed9a4114f2011-01-12 13:38:39 -0800586
587 /* Default to using SSC */
588 dev_priv->lvds_use_ssc = 1;
589 dev_priv->lvds_ssc_freq = intel_bios_ssc_frequency(dev, 1);
590 DRM_DEBUG("Set default to SSC at %dMHz\n", dev_priv->lvds_ssc_freq);
Simon Que6a040022010-09-30 09:36:39 +0100591
592 /* eDP data */
593 dev_priv->edp.bpp = 18;
594}
595
Jesse Barnes79e53942008-11-07 14:24:08 -0800596/**
Bryan Freed6d139a82010-10-14 09:14:51 +0100597 * intel_parse_bios - find VBT and initialize settings from the BIOS
Jesse Barnes79e53942008-11-07 14:24:08 -0800598 * @dev: DRM device
599 *
600 * Loads the Video BIOS and checks that the VBT exists. Sets scratch registers
601 * to appropriate values.
602 *
Jesse Barnes79e53942008-11-07 14:24:08 -0800603 * Returns 0 on success, nonzero on failure.
604 */
605bool
Bryan Freed6d139a82010-10-14 09:14:51 +0100606intel_parse_bios(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -0800607{
608 struct drm_i915_private *dev_priv = dev->dev_private;
609 struct pci_dev *pdev = dev->pdev;
Chris Wilson44834a62010-08-19 16:09:23 +0100610 struct bdb_header *bdb = NULL;
611 u8 __iomem *bios = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -0800612
Simon Que6a040022010-09-30 09:36:39 +0100613 init_vbt_defaults(dev_priv);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700614
Chris Wilson44834a62010-08-19 16:09:23 +0100615 /* XXX Should this validation be moved to intel_opregion.c? */
616 if (dev_priv->opregion.vbt) {
617 struct vbt_header *vbt = dev_priv->opregion.vbt;
618 if (memcmp(vbt->signature, "$VBT", 4) == 0) {
619 DRM_DEBUG_DRIVER("Using VBT from OpRegion: %20s\n",
620 vbt->signature);
621 bdb = (struct bdb_header *)((char *)vbt + vbt->bdb_offset);
622 } else
623 dev_priv->opregion.vbt = NULL;
624 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800625
Chris Wilson44834a62010-08-19 16:09:23 +0100626 if (bdb == NULL) {
627 struct vbt_header *vbt = NULL;
628 size_t size;
629 int i;
630
631 bios = pci_map_rom(pdev, &size);
632 if (!bios)
633 return -1;
634
635 /* Scour memory looking for the VBT signature */
636 for (i = 0; i + 4 < size; i++) {
637 if (!memcmp(bios + i, "$VBT", 4)) {
638 vbt = (struct vbt_header *)(bios + i);
639 break;
640 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800641 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800642
Chris Wilson44834a62010-08-19 16:09:23 +0100643 if (!vbt) {
644 DRM_ERROR("VBT signature missing\n");
645 pci_unmap_rom(pdev, bios);
646 return -1;
647 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800648
Chris Wilson44834a62010-08-19 16:09:23 +0100649 bdb = (struct bdb_header *)(bios + i + vbt->bdb_offset);
650 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800651
652 /* Grab useful general definitions */
653 parse_general_features(dev_priv, bdb);
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200654 parse_general_definitions(dev_priv, bdb);
Ma Ling88631702009-05-13 11:19:55 +0800655 parse_lfp_panel_data(dev_priv, bdb);
656 parse_sdvo_panel_data(dev_priv, bdb);
yakui_zhao9b9d1722009-05-31 17:17:17 +0800657 parse_sdvo_device_mapping(dev_priv, bdb);
Zhao Yakui6363ee62009-11-24 09:48:44 +0800658 parse_device_mapping(dev_priv, bdb);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800659 parse_driver_features(dev_priv, bdb);
Zhenyu Wang500a8cc2010-01-13 11:19:52 +0800660 parse_edp(dev_priv, bdb);
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800661
Chris Wilson44834a62010-08-19 16:09:23 +0100662 if (bios)
663 pci_unmap_rom(pdev, bios);
Jesse Barnes79e53942008-11-07 14:24:08 -0800664
665 return 0;
666}
Bryan Freed6d139a82010-10-14 09:14:51 +0100667
668/* Ensure that vital registers have been initialised, even if the BIOS
669 * is absent or just failing to do its job.
670 */
671void intel_setup_bios(struct drm_device *dev)
672{
673 struct drm_i915_private *dev_priv = dev->dev_private;
674
675 /* Set the Panel Power On/Off timings if uninitialized. */
676 if ((I915_READ(PP_ON_DELAYS) == 0) && (I915_READ(PP_OFF_DELAYS) == 0)) {
677 /* Set T2 to 40ms and T5 to 200ms */
678 I915_WRITE(PP_ON_DELAYS, 0x019007d0);
679
680 /* Set T3 to 35ms and Tx to 200ms */
681 I915_WRITE(PP_OFF_DELAYS, 0x015e07d0);
682 }
683}