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
37 find_section(struct bdb_header
*bdb
, int section_id
)
41 u16 total
, current_size
;
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
);
52 current_size
= *((u16
*)(base
+ index
));
54 if (current_id
== section_id
)
56 index
+= current_size
;
63 fill_detail_timing_data(struct drm_display_mode
*panel_fixed_mode
,
64 struct lvds_dvo_timing
*dvo_timing
)
66 panel_fixed_mode
->hdisplay
= (dvo_timing
->hactive_hi
<< 8) |
67 dvo_timing
->hactive_lo
;
68 panel_fixed_mode
->hsync_start
= panel_fixed_mode
->hdisplay
+
69 ((dvo_timing
->hsync_off_hi
<< 8) | dvo_timing
->hsync_off_lo
);
70 panel_fixed_mode
->hsync_end
= panel_fixed_mode
->hsync_start
+
71 dvo_timing
->hsync_pulse_width
;
72 panel_fixed_mode
->htotal
= panel_fixed_mode
->hdisplay
+
73 ((dvo_timing
->hblank_hi
<< 8) | dvo_timing
->hblank_lo
);
75 panel_fixed_mode
->vdisplay
= (dvo_timing
->vactive_hi
<< 8) |
76 dvo_timing
->vactive_lo
;
77 panel_fixed_mode
->vsync_start
= panel_fixed_mode
->vdisplay
+
78 dvo_timing
->vsync_off
;
79 panel_fixed_mode
->vsync_end
= panel_fixed_mode
->vsync_start
+
80 dvo_timing
->vsync_pulse_width
;
81 panel_fixed_mode
->vtotal
= panel_fixed_mode
->vdisplay
+
82 ((dvo_timing
->vblank_hi
<< 8) | dvo_timing
->vblank_lo
);
83 panel_fixed_mode
->clock
= dvo_timing
->clock
* 10;
84 panel_fixed_mode
->type
= DRM_MODE_TYPE_PREFERRED
;
86 /* Some VBTs have bogus h/vtotal values */
87 if (panel_fixed_mode
->hsync_end
> panel_fixed_mode
->htotal
)
88 panel_fixed_mode
->htotal
= panel_fixed_mode
->hsync_end
+ 1;
89 if (panel_fixed_mode
->vsync_end
> panel_fixed_mode
->vtotal
)
90 panel_fixed_mode
->vtotal
= panel_fixed_mode
->vsync_end
+ 1;
92 drm_mode_set_name(panel_fixed_mode
);
95 /* Try to find integrated panel data */
97 parse_lfp_panel_data(struct drm_i915_private
*dev_priv
,
98 struct bdb_header
*bdb
)
100 struct bdb_lvds_options
*lvds_options
;
101 struct bdb_lvds_lfp_data
*lvds_lfp_data
;
102 struct bdb_lvds_lfp_data_entry
*entry
;
103 struct lvds_dvo_timing
*dvo_timing
;
104 struct drm_display_mode
*panel_fixed_mode
;
106 /* Defaults if we can't find VBT info */
107 dev_priv
->lvds_dither
= 0;
108 dev_priv
->lvds_vbt
= 0;
110 lvds_options
= find_section(bdb
, BDB_LVDS_OPTIONS
);
114 dev_priv
->lvds_dither
= lvds_options
->pixel_dither
;
115 if (lvds_options
->panel_type
== 0xff)
118 lvds_lfp_data
= find_section(bdb
, BDB_LVDS_LFP_DATA
);
122 dev_priv
->lvds_vbt
= 1;
124 entry
= &lvds_lfp_data
->data
[lvds_options
->panel_type
];
125 dvo_timing
= &entry
->dvo_timing
;
127 panel_fixed_mode
= drm_calloc(1, sizeof(*panel_fixed_mode
),
130 fill_detail_timing_data(panel_fixed_mode
, dvo_timing
);
132 dev_priv
->lfp_lvds_vbt_mode
= panel_fixed_mode
;
134 DRM_DEBUG("Found panel mode in BIOS VBT tables:\n");
135 drm_mode_debug_printmodeline(panel_fixed_mode
);
140 /* Try to find sdvo panel data */
142 parse_sdvo_panel_data(struct drm_i915_private
*dev_priv
,
143 struct bdb_header
*bdb
)
145 struct bdb_sdvo_lvds_options
*sdvo_lvds_options
;
146 struct lvds_dvo_timing
*dvo_timing
;
147 struct drm_display_mode
*panel_fixed_mode
;
149 dev_priv
->sdvo_lvds_vbt_mode
= NULL
;
151 sdvo_lvds_options
= find_section(bdb
, BDB_SDVO_LVDS_OPTIONS
);
152 if (!sdvo_lvds_options
)
155 dvo_timing
= find_section(bdb
, BDB_SDVO_PANEL_DTDS
);
159 panel_fixed_mode
= drm_calloc(1, sizeof(*panel_fixed_mode
),
162 if (!panel_fixed_mode
)
165 fill_detail_timing_data(panel_fixed_mode
,
166 dvo_timing
+ sdvo_lvds_options
->panel_type
);
168 dev_priv
->sdvo_lvds_vbt_mode
= panel_fixed_mode
;
174 parse_general_features(struct drm_i915_private
*dev_priv
,
175 struct bdb_header
*bdb
)
177 struct bdb_general_features
*general
;
179 /* Set sensible defaults in case we can't find the general block */
180 dev_priv
->int_tv_support
= 1;
181 dev_priv
->int_crt_support
= 1;
183 general
= find_section(bdb
, BDB_GENERAL_FEATURES
);
185 dev_priv
->int_tv_support
= general
->int_tv_support
;
186 dev_priv
->int_crt_support
= general
->int_crt_support
;
187 dev_priv
->lvds_use_ssc
= general
->enable_ssc
;
189 if (dev_priv
->lvds_use_ssc
) {
190 if (IS_I855(dev_priv
->dev
))
191 dev_priv
->lvds_ssc_freq
= general
->ssc_freq
? 66 : 48;
193 dev_priv
->lvds_ssc_freq
= general
->ssc_freq
? 100 : 96;
199 parse_sdvo_device_mapping(struct drm_i915_private
*dev_priv
,
200 struct bdb_header
*bdb
)
202 struct sdvo_device_mapping
*p_mapping
;
203 struct bdb_general_definitions
*p_defs
;
204 struct child_device_config
*p_child
;
205 int i
, child_device_num
, count
;
206 u16 block_size
, *block_ptr
;
208 p_defs
= find_section(bdb
, BDB_GENERAL_DEFINITIONS
);
210 DRM_DEBUG("No general definition block is found\n");
213 /* judge whether the size of child device meets the requirements.
214 * If the child device size obtained from general definition block
215 * is different with sizeof(struct child_device_config), skip the
216 * parsing of sdvo device info
218 if (p_defs
->child_dev_size
!= sizeof(*p_child
)) {
219 /* different child dev size . Ignore it */
220 DRM_DEBUG("different child size is found. Invalid.\n");
223 /* get the block size of general definitions */
224 block_ptr
= (u16
*)((char *)p_defs
- 2);
225 block_size
= *block_ptr
;
226 /* get the number of child device */
227 child_device_num
= (block_size
- sizeof(*p_defs
)) /
230 for (i
= 0; i
< child_device_num
; i
++) {
231 p_child
= &(p_defs
->devices
[i
]);
232 if (!p_child
->device_type
) {
233 /* skip the device block if device type is invalid */
236 if (p_child
->slave_addr
!= SLAVE_ADDR1
&&
237 p_child
->slave_addr
!= SLAVE_ADDR2
) {
239 * If the slave address is neither 0x70 nor 0x72,
240 * it is not a SDVO device. Skip it.
244 if (p_child
->dvo_port
!= DEVICE_PORT_DVOB
&&
245 p_child
->dvo_port
!= DEVICE_PORT_DVOC
) {
246 /* skip the incorrect SDVO port */
247 DRM_DEBUG("Incorrect SDVO port. Skip it \n");
250 DRM_DEBUG("the SDVO device with slave addr %2x is found on "
253 (p_child
->dvo_port
== DEVICE_PORT_DVOB
) ?
255 p_mapping
= &(dev_priv
->sdvo_mappings
[p_child
->dvo_port
- 1]);
256 if (!p_mapping
->initialized
) {
257 p_mapping
->dvo_port
= p_child
->dvo_port
;
258 p_mapping
->slave_addr
= p_child
->slave_addr
;
259 p_mapping
->dvo_wiring
= p_child
->dvo_wiring
;
260 p_mapping
->initialized
= 1;
262 DRM_DEBUG("Maybe one SDVO port is shared by "
263 "two SDVO device.\n");
265 if (p_child
->slave2_addr
) {
266 /* Maybe this is a SDVO device with multiple inputs */
267 /* And the mapping info is not added */
268 DRM_DEBUG("there exists the slave2_addr. Maybe this "
269 "is a SDVO device with multiple inputs.\n");
275 /* No SDVO device info is found */
276 DRM_DEBUG("No SDVO device info is found in VBT\n");
281 * intel_init_bios - initialize VBIOS settings & find VBT
284 * Loads the Video BIOS and checks that the VBT exists. Sets scratch registers
285 * to appropriate values.
287 * VBT existence is a sanity check that is relied on by other i830_bios.c code.
288 * Note that it would be better to use a BIOS call to get the VBT, as BIOSes may
289 * feed an updated VBT back through that, compared to what we'll fetch using
290 * this method of groping around in the BIOS data.
292 * Returns 0 on success, nonzero on failure.
295 intel_init_bios(struct drm_device
*dev
)
297 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
298 struct pci_dev
*pdev
= dev
->pdev
;
299 struct vbt_header
*vbt
= NULL
;
300 struct bdb_header
*bdb
;
305 bios
= pci_map_rom(pdev
, &size
);
309 /* Scour memory looking for the VBT signature */
310 for (i
= 0; i
+ 4 < size
; i
++) {
311 if (!memcmp(bios
+ i
, "$VBT", 4)) {
312 vbt
= (struct vbt_header
*)(bios
+ i
);
318 DRM_ERROR("VBT signature missing\n");
319 pci_unmap_rom(pdev
, bios
);
323 bdb
= (struct bdb_header
*)(bios
+ i
+ vbt
->bdb_offset
);
325 /* Grab useful general definitions */
326 parse_general_features(dev_priv
, bdb
);
327 parse_lfp_panel_data(dev_priv
, bdb
);
328 parse_sdvo_panel_data(dev_priv
, bdb
);
329 parse_sdvo_device_mapping(dev_priv
, bdb
);
330 pci_unmap_rom(pdev
, bios
);