Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1 | /* |
Keith Packard | 3950725 | 2011-09-22 12:30:16 -0700 | [diff] [blame] | 2 | * Copyright © 2006 Intel Corporation |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 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 | */ |
Jani Nikula | b30581a | 2015-12-14 12:50:46 +0200 | [diff] [blame] | 27 | |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 28 | #include <drm/drm_dp_helper.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 29 | #include <drm/drmP.h> |
| 30 | #include <drm/i915_drm.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 31 | #include "i915_drv.h" |
Jani Nikula | 72341af | 2016-03-16 12:43:35 +0200 | [diff] [blame] | 32 | |
| 33 | #define _INTEL_BIOS_PRIVATE |
| 34 | #include "intel_vbt_defs.h" |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 35 | |
Jani Nikula | dd97950 | 2015-12-21 15:10:52 +0200 | [diff] [blame] | 36 | /** |
| 37 | * DOC: Video BIOS Table (VBT) |
| 38 | * |
| 39 | * The Video BIOS Table, or VBT, provides platform and board specific |
| 40 | * configuration information to the driver that is not discoverable or available |
| 41 | * through other means. The configuration is mostly related to display |
| 42 | * hardware. The VBT is available via the ACPI OpRegion or, on older systems, in |
| 43 | * the PCI ROM. |
| 44 | * |
| 45 | * The VBT consists of a VBT Header (defined as &struct vbt_header), a BDB |
| 46 | * Header (&struct bdb_header), and a number of BIOS Data Blocks (BDB) that |
| 47 | * contain the actual configuration information. The VBT Header, and thus the |
| 48 | * VBT, begins with "$VBT" signature. The VBT Header contains the offset of the |
| 49 | * BDB Header. The data blocks are concatenated after the BDB Header. The data |
| 50 | * blocks have a 1-byte Block ID, 2-byte Block Size, and Block Size bytes of |
| 51 | * data. (Block 53, the MIPI Sequence Block is an exception.) |
| 52 | * |
| 53 | * The driver parses the VBT during load. The relevant information is stored in |
| 54 | * driver private data for ease of use, and the actual VBT is not read after |
| 55 | * that. |
| 56 | */ |
| 57 | |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 58 | #define SLAVE_ADDR1 0x70 |
| 59 | #define SLAVE_ADDR2 0x72 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 60 | |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 61 | static int panel_type; |
| 62 | |
Jani Nikula | 08c0888 | 2015-12-21 15:10:55 +0200 | [diff] [blame] | 63 | /* Get BDB block size given a pointer to Block ID. */ |
| 64 | static u32 _get_blocksize(const u8 *block_base) |
| 65 | { |
| 66 | /* The MIPI Sequence Block v3+ has a separate size field. */ |
| 67 | if (*block_base == BDB_MIPI_SEQUENCE && *(block_base + 3) >= 3) |
| 68 | return *((const u32 *)(block_base + 4)); |
| 69 | else |
| 70 | return *((const u16 *)(block_base + 1)); |
| 71 | } |
| 72 | |
| 73 | /* Get BDB block size give a pointer to data after Block ID and Block Size. */ |
| 74 | static u32 get_blocksize(const void *block_data) |
| 75 | { |
| 76 | return _get_blocksize(block_data - 3); |
| 77 | } |
| 78 | |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 79 | static const void * |
| 80 | find_section(const void *_bdb, int section_id) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 81 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 82 | const struct bdb_header *bdb = _bdb; |
| 83 | const u8 *base = _bdb; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 84 | int index = 0; |
Jani Nikula | cd67d22 | 2015-09-17 16:42:07 +0300 | [diff] [blame] | 85 | u32 total, current_size; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 86 | u8 current_id; |
| 87 | |
| 88 | /* skip to first section */ |
| 89 | index += bdb->header_size; |
| 90 | total = bdb->bdb_size; |
| 91 | |
| 92 | /* walk the sections looking for section_id */ |
Chris Wilson | d1f13fd | 2014-04-18 18:04:23 -0300 | [diff] [blame] | 93 | while (index + 3 < total) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 94 | current_id = *(base + index); |
Jani Nikula | 08c0888 | 2015-12-21 15:10:55 +0200 | [diff] [blame] | 95 | current_size = _get_blocksize(base + index); |
| 96 | index += 3; |
Jani Nikula | cd67d22 | 2015-09-17 16:42:07 +0300 | [diff] [blame] | 97 | |
Chris Wilson | d1f13fd | 2014-04-18 18:04:23 -0300 | [diff] [blame] | 98 | if (index + current_size > total) |
| 99 | return NULL; |
| 100 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 101 | if (current_id == section_id) |
| 102 | return base + index; |
Chris Wilson | d1f13fd | 2014-04-18 18:04:23 -0300 | [diff] [blame] | 103 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 104 | index += current_size; |
| 105 | } |
| 106 | |
| 107 | return NULL; |
| 108 | } |
| 109 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 110 | static void |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 111 | fill_detail_timing_data(struct drm_display_mode *panel_fixed_mode, |
Chris Wilson | 99834ea | 2011-07-13 21:01:46 +0100 | [diff] [blame] | 112 | const struct lvds_dvo_timing *dvo_timing) |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 113 | { |
| 114 | panel_fixed_mode->hdisplay = (dvo_timing->hactive_hi << 8) | |
| 115 | dvo_timing->hactive_lo; |
| 116 | panel_fixed_mode->hsync_start = panel_fixed_mode->hdisplay + |
| 117 | ((dvo_timing->hsync_off_hi << 8) | dvo_timing->hsync_off_lo); |
| 118 | panel_fixed_mode->hsync_end = panel_fixed_mode->hsync_start + |
| 119 | dvo_timing->hsync_pulse_width; |
| 120 | panel_fixed_mode->htotal = panel_fixed_mode->hdisplay + |
| 121 | ((dvo_timing->hblank_hi << 8) | dvo_timing->hblank_lo); |
| 122 | |
| 123 | panel_fixed_mode->vdisplay = (dvo_timing->vactive_hi << 8) | |
| 124 | dvo_timing->vactive_lo; |
| 125 | panel_fixed_mode->vsync_start = panel_fixed_mode->vdisplay + |
| 126 | dvo_timing->vsync_off; |
| 127 | panel_fixed_mode->vsync_end = panel_fixed_mode->vsync_start + |
| 128 | dvo_timing->vsync_pulse_width; |
| 129 | panel_fixed_mode->vtotal = panel_fixed_mode->vdisplay + |
| 130 | ((dvo_timing->vblank_hi << 8) | dvo_timing->vblank_lo); |
| 131 | panel_fixed_mode->clock = dvo_timing->clock * 10; |
| 132 | panel_fixed_mode->type = DRM_MODE_TYPE_PREFERRED; |
| 133 | |
Adam Jackson | 9bc3549 | 2010-05-28 17:17:37 -0400 | [diff] [blame] | 134 | if (dvo_timing->hsync_positive) |
| 135 | panel_fixed_mode->flags |= DRM_MODE_FLAG_PHSYNC; |
| 136 | else |
| 137 | panel_fixed_mode->flags |= DRM_MODE_FLAG_NHSYNC; |
| 138 | |
| 139 | if (dvo_timing->vsync_positive) |
| 140 | panel_fixed_mode->flags |= DRM_MODE_FLAG_PVSYNC; |
| 141 | else |
| 142 | panel_fixed_mode->flags |= DRM_MODE_FLAG_NVSYNC; |
| 143 | |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 144 | /* Some VBTs have bogus h/vtotal values */ |
| 145 | if (panel_fixed_mode->hsync_end > panel_fixed_mode->htotal) |
| 146 | panel_fixed_mode->htotal = panel_fixed_mode->hsync_end + 1; |
| 147 | if (panel_fixed_mode->vsync_end > panel_fixed_mode->vtotal) |
| 148 | panel_fixed_mode->vtotal = panel_fixed_mode->vsync_end + 1; |
| 149 | |
| 150 | drm_mode_set_name(panel_fixed_mode); |
| 151 | } |
| 152 | |
Chris Wilson | 99834ea | 2011-07-13 21:01:46 +0100 | [diff] [blame] | 153 | static const struct lvds_dvo_timing * |
| 154 | get_lvds_dvo_timing(const struct bdb_lvds_lfp_data *lvds_lfp_data, |
| 155 | const struct bdb_lvds_lfp_data_ptrs *lvds_lfp_data_ptrs, |
| 156 | int index) |
| 157 | { |
| 158 | /* |
| 159 | * the size of fp_timing varies on the different platform. |
| 160 | * So calculate the DVO timing relative offset in LVDS data |
| 161 | * entry to get the DVO timing entry |
| 162 | */ |
| 163 | |
| 164 | int lfp_data_size = |
| 165 | lvds_lfp_data_ptrs->ptr[1].dvo_timing_offset - |
| 166 | lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset; |
| 167 | int dvo_timing_offset = |
| 168 | lvds_lfp_data_ptrs->ptr[0].dvo_timing_offset - |
| 169 | lvds_lfp_data_ptrs->ptr[0].fp_timing_offset; |
| 170 | char *entry = (char *)lvds_lfp_data->data + lfp_data_size * index; |
| 171 | |
| 172 | return (struct lvds_dvo_timing *)(entry + dvo_timing_offset); |
| 173 | } |
| 174 | |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 175 | /* get lvds_fp_timing entry |
| 176 | * this function may return NULL if the corresponding entry is invalid |
| 177 | */ |
| 178 | static const struct lvds_fp_timing * |
| 179 | get_lvds_fp_timing(const struct bdb_header *bdb, |
| 180 | const struct bdb_lvds_lfp_data *data, |
| 181 | const struct bdb_lvds_lfp_data_ptrs *ptrs, |
| 182 | int index) |
| 183 | { |
| 184 | size_t data_ofs = (const u8 *)data - (const u8 *)bdb; |
| 185 | u16 data_size = ((const u16 *)data)[-1]; /* stored in header */ |
| 186 | size_t ofs; |
| 187 | |
| 188 | if (index >= ARRAY_SIZE(ptrs->ptr)) |
| 189 | return NULL; |
| 190 | ofs = ptrs->ptr[index].fp_timing_offset; |
| 191 | if (ofs < data_ofs || |
| 192 | ofs + sizeof(struct lvds_fp_timing) > data_ofs + data_size) |
| 193 | return NULL; |
| 194 | return (const struct lvds_fp_timing *)((const u8 *)bdb + ofs); |
| 195 | } |
| 196 | |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 197 | /* Try to find integrated panel data */ |
| 198 | static void |
| 199 | parse_lfp_panel_data(struct drm_i915_private *dev_priv, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 200 | const struct bdb_header *bdb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 201 | { |
Chris Wilson | 99834ea | 2011-07-13 21:01:46 +0100 | [diff] [blame] | 202 | const struct bdb_lvds_options *lvds_options; |
| 203 | const struct bdb_lvds_lfp_data *lvds_lfp_data; |
| 204 | const struct bdb_lvds_lfp_data_ptrs *lvds_lfp_data_ptrs; |
| 205 | const struct lvds_dvo_timing *panel_dvo_timing; |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 206 | const struct lvds_fp_timing *fp_timing; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 207 | struct drm_display_mode *panel_fixed_mode; |
Daniel Vetter | c329a4e | 2015-06-18 10:30:23 +0200 | [diff] [blame] | 208 | int drrs_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 209 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 210 | lvds_options = find_section(bdb, BDB_LVDS_OPTIONS); |
| 211 | if (!lvds_options) |
| 212 | return; |
| 213 | |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 214 | dev_priv->vbt.lvds_dither = lvds_options->pixel_dither; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 215 | if (lvds_options->panel_type == 0xff) |
| 216 | return; |
Simon Que | 6a04002 | 2010-09-30 09:36:39 +0100 | [diff] [blame] | 217 | |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 218 | panel_type = lvds_options->panel_type; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 219 | |
Pradeep Bhat | 83a7280 | 2014-03-28 10:14:57 +0530 | [diff] [blame] | 220 | drrs_mode = (lvds_options->dps_panel_type_bits |
| 221 | >> (panel_type * 2)) & MODE_MASK; |
| 222 | /* |
| 223 | * VBT has static DRRS = 0 and seamless DRRS = 2. |
| 224 | * The below piece of code is required to adjust vbt.drrs_type |
| 225 | * to match the enum drrs_support_type. |
| 226 | */ |
| 227 | switch (drrs_mode) { |
| 228 | case 0: |
| 229 | dev_priv->vbt.drrs_type = STATIC_DRRS_SUPPORT; |
| 230 | DRM_DEBUG_KMS("DRRS supported mode is static\n"); |
| 231 | break; |
| 232 | case 2: |
| 233 | dev_priv->vbt.drrs_type = SEAMLESS_DRRS_SUPPORT; |
| 234 | DRM_DEBUG_KMS("DRRS supported mode is seamless\n"); |
| 235 | break; |
| 236 | default: |
| 237 | dev_priv->vbt.drrs_type = DRRS_NOT_SUPPORTED; |
| 238 | DRM_DEBUG_KMS("DRRS not supported (VBT input)\n"); |
| 239 | break; |
| 240 | } |
| 241 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 242 | lvds_lfp_data = find_section(bdb, BDB_LVDS_LFP_DATA); |
| 243 | if (!lvds_lfp_data) |
| 244 | return; |
| 245 | |
Jesse Barnes | 1b16de0 | 2009-06-22 11:30:30 -0700 | [diff] [blame] | 246 | lvds_lfp_data_ptrs = find_section(bdb, BDB_LVDS_LFP_DATA_PTRS); |
| 247 | if (!lvds_lfp_data_ptrs) |
| 248 | return; |
| 249 | |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 250 | dev_priv->vbt.lvds_vbt = 1; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 251 | |
Chris Wilson | 99834ea | 2011-07-13 21:01:46 +0100 | [diff] [blame] | 252 | panel_dvo_timing = get_lvds_dvo_timing(lvds_lfp_data, |
| 253 | lvds_lfp_data_ptrs, |
| 254 | lvds_options->panel_type); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 255 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 256 | panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL); |
Chris Wilson | 6edc324 | 2010-09-12 17:16:17 +0100 | [diff] [blame] | 257 | if (!panel_fixed_mode) |
| 258 | return; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 259 | |
Chris Wilson | 99834ea | 2011-07-13 21:01:46 +0100 | [diff] [blame] | 260 | fill_detail_timing_data(panel_fixed_mode, panel_dvo_timing); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 261 | |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 262 | dev_priv->vbt.lfp_lvds_vbt_mode = panel_fixed_mode; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 263 | |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 264 | DRM_DEBUG_KMS("Found panel mode in BIOS VBT tables:\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 265 | drm_mode_debug_printmodeline(panel_fixed_mode); |
| 266 | |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 267 | fp_timing = get_lvds_fp_timing(bdb, lvds_lfp_data, |
| 268 | lvds_lfp_data_ptrs, |
| 269 | lvds_options->panel_type); |
| 270 | if (fp_timing) { |
| 271 | /* check the resolution, just to be sure */ |
| 272 | if (fp_timing->x_res == panel_fixed_mode->hdisplay && |
| 273 | fp_timing->y_res == panel_fixed_mode->vdisplay) { |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 274 | dev_priv->vbt.bios_lvds_val = fp_timing->lvds_reg_val; |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 275 | DRM_DEBUG_KMS("VBT initial LVDS value %x\n", |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 276 | dev_priv->vbt.bios_lvds_val); |
Takashi Iwai | b035438 | 2012-03-20 13:07:05 +0100 | [diff] [blame] | 277 | } |
| 278 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 279 | } |
| 280 | |
Jani Nikula | f00076d | 2013-12-14 20:38:29 -0200 | [diff] [blame] | 281 | static void |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 282 | parse_lfp_backlight(struct drm_i915_private *dev_priv, |
| 283 | const struct bdb_header *bdb) |
Jani Nikula | f00076d | 2013-12-14 20:38:29 -0200 | [diff] [blame] | 284 | { |
| 285 | const struct bdb_lfp_backlight_data *backlight_data; |
| 286 | const struct bdb_lfp_backlight_data_entry *entry; |
| 287 | |
| 288 | backlight_data = find_section(bdb, BDB_LVDS_BACKLIGHT); |
| 289 | if (!backlight_data) |
| 290 | return; |
| 291 | |
| 292 | if (backlight_data->entry_size != sizeof(backlight_data->data[0])) { |
| 293 | DRM_DEBUG_KMS("Unsupported backlight data entry size %u\n", |
| 294 | backlight_data->entry_size); |
| 295 | return; |
| 296 | } |
| 297 | |
| 298 | entry = &backlight_data->data[panel_type]; |
| 299 | |
Jani Nikula | 39fbc9c | 2014-04-09 11:22:06 +0300 | [diff] [blame] | 300 | dev_priv->vbt.backlight.present = entry->type == BDB_BACKLIGHT_TYPE_PWM; |
| 301 | if (!dev_priv->vbt.backlight.present) { |
| 302 | DRM_DEBUG_KMS("PWM backlight not present in VBT (type %u)\n", |
| 303 | entry->type); |
| 304 | return; |
| 305 | } |
| 306 | |
Jani Nikula | f00076d | 2013-12-14 20:38:29 -0200 | [diff] [blame] | 307 | dev_priv->vbt.backlight.pwm_freq_hz = entry->pwm_freq_hz; |
| 308 | dev_priv->vbt.backlight.active_low_pwm = entry->active_low_pwm; |
Jani Nikula | 1de6068 | 2014-06-24 18:27:39 +0300 | [diff] [blame] | 309 | dev_priv->vbt.backlight.min_brightness = entry->min_brightness; |
Jani Nikula | f00076d | 2013-12-14 20:38:29 -0200 | [diff] [blame] | 310 | DRM_DEBUG_KMS("VBT backlight PWM modulation frequency %u Hz, " |
| 311 | "active %s, min brightness %u, level %u\n", |
| 312 | dev_priv->vbt.backlight.pwm_freq_hz, |
| 313 | dev_priv->vbt.backlight.active_low_pwm ? "low" : "high", |
Jani Nikula | 1de6068 | 2014-06-24 18:27:39 +0300 | [diff] [blame] | 314 | dev_priv->vbt.backlight.min_brightness, |
Jani Nikula | f00076d | 2013-12-14 20:38:29 -0200 | [diff] [blame] | 315 | backlight_data->level[panel_type]); |
| 316 | } |
| 317 | |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 318 | /* Try to find sdvo panel data */ |
| 319 | static void |
| 320 | parse_sdvo_panel_data(struct drm_i915_private *dev_priv, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 321 | const struct bdb_header *bdb) |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 322 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 323 | const struct lvds_dvo_timing *dvo_timing; |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 324 | struct drm_display_mode *panel_fixed_mode; |
Chris Wilson | 5a1e5b6 | 2011-01-29 16:50:25 +0000 | [diff] [blame] | 325 | int index; |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 326 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 327 | index = i915.vbt_sdvo_panel_type; |
Mathias Fröhlich | c10e408 | 2012-03-01 06:44:35 +0100 | [diff] [blame] | 328 | if (index == -2) { |
| 329 | DRM_DEBUG_KMS("Ignore SDVO panel mode from BIOS VBT tables.\n"); |
| 330 | return; |
| 331 | } |
| 332 | |
Chris Wilson | 5a1e5b6 | 2011-01-29 16:50:25 +0000 | [diff] [blame] | 333 | if (index == -1) { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 334 | const struct bdb_sdvo_lvds_options *sdvo_lvds_options; |
Chris Wilson | 5a1e5b6 | 2011-01-29 16:50:25 +0000 | [diff] [blame] | 335 | |
| 336 | sdvo_lvds_options = find_section(bdb, BDB_SDVO_LVDS_OPTIONS); |
| 337 | if (!sdvo_lvds_options) |
| 338 | return; |
| 339 | |
| 340 | index = sdvo_lvds_options->panel_type; |
| 341 | } |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 342 | |
| 343 | dvo_timing = find_section(bdb, BDB_SDVO_PANEL_DTDS); |
| 344 | if (!dvo_timing) |
| 345 | return; |
| 346 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 347 | panel_fixed_mode = kzalloc(sizeof(*panel_fixed_mode), GFP_KERNEL); |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 348 | if (!panel_fixed_mode) |
| 349 | return; |
| 350 | |
Chris Wilson | 5a1e5b6 | 2011-01-29 16:50:25 +0000 | [diff] [blame] | 351 | fill_detail_timing_data(panel_fixed_mode, dvo_timing + index); |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 352 | |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 353 | dev_priv->vbt.sdvo_lvds_vbt_mode = panel_fixed_mode; |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 354 | |
Chris Wilson | 5a1e5b6 | 2011-01-29 16:50:25 +0000 | [diff] [blame] | 355 | DRM_DEBUG_KMS("Found SDVO panel mode in BIOS VBT tables:\n"); |
| 356 | drm_mode_debug_printmodeline(panel_fixed_mode); |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 357 | } |
| 358 | |
Jani Nikula | 98f3a1d | 2015-12-16 15:04:20 +0200 | [diff] [blame] | 359 | static int intel_bios_ssc_frequency(struct drm_i915_private *dev_priv, |
Bryan Freed | 9a4114f | 2011-01-12 13:38:39 -0800 | [diff] [blame] | 360 | bool alternate) |
| 361 | { |
Jani Nikula | 98f3a1d | 2015-12-16 15:04:20 +0200 | [diff] [blame] | 362 | switch (INTEL_INFO(dev_priv)->gen) { |
Bryan Freed | 9a4114f | 2011-01-12 13:38:39 -0800 | [diff] [blame] | 363 | case 2: |
Ville Syrjälä | e91e941 | 2013-12-09 18:54:16 +0200 | [diff] [blame] | 364 | return alternate ? 66667 : 48000; |
Bryan Freed | 9a4114f | 2011-01-12 13:38:39 -0800 | [diff] [blame] | 365 | case 3: |
| 366 | case 4: |
Ville Syrjälä | e91e941 | 2013-12-09 18:54:16 +0200 | [diff] [blame] | 367 | return alternate ? 100000 : 96000; |
Bryan Freed | 9a4114f | 2011-01-12 13:38:39 -0800 | [diff] [blame] | 368 | default: |
Ville Syrjälä | e91e941 | 2013-12-09 18:54:16 +0200 | [diff] [blame] | 369 | return alternate ? 100000 : 120000; |
Bryan Freed | 9a4114f | 2011-01-12 13:38:39 -0800 | [diff] [blame] | 370 | } |
| 371 | } |
| 372 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 373 | static void |
| 374 | parse_general_features(struct drm_i915_private *dev_priv, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 375 | const struct bdb_header *bdb) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 376 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 377 | const struct bdb_general_features *general; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 378 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 379 | general = find_section(bdb, BDB_GENERAL_FEATURES); |
Jani Nikula | 34957e8 | 2015-12-16 15:04:21 +0200 | [diff] [blame] | 380 | if (!general) |
| 381 | return; |
| 382 | |
| 383 | dev_priv->vbt.int_tv_support = general->int_tv_support; |
| 384 | /* int_crt_support can't be trusted on earlier platforms */ |
| 385 | if (bdb->version >= 155 && |
| 386 | (HAS_DDI(dev_priv) || IS_VALLEYVIEW(dev_priv))) |
| 387 | dev_priv->vbt.int_crt_support = general->int_crt_support; |
| 388 | dev_priv->vbt.lvds_use_ssc = general->enable_ssc; |
| 389 | dev_priv->vbt.lvds_ssc_freq = |
| 390 | intel_bios_ssc_frequency(dev_priv, general->ssc_freq); |
| 391 | dev_priv->vbt.display_clock_mode = general->display_clock_mode; |
| 392 | dev_priv->vbt.fdi_rx_polarity_inverted = general->fdi_rx_polarity_inverted; |
| 393 | DRM_DEBUG_KMS("BDB_GENERAL_FEATURES int_tv_support %d int_crt_support %d lvds_use_ssc %d lvds_ssc_freq %d display_clock_mode %d fdi_rx_polarity_inverted %d\n", |
| 394 | dev_priv->vbt.int_tv_support, |
| 395 | dev_priv->vbt.int_crt_support, |
| 396 | dev_priv->vbt.lvds_use_ssc, |
| 397 | dev_priv->vbt.lvds_ssc_freq, |
| 398 | dev_priv->vbt.display_clock_mode, |
| 399 | dev_priv->vbt.fdi_rx_polarity_inverted); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 400 | } |
| 401 | |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 402 | static void |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 403 | parse_general_definitions(struct drm_i915_private *dev_priv, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 404 | const struct bdb_header *bdb) |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 405 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 406 | const struct bdb_general_definitions *general; |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 407 | |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 408 | general = find_section(bdb, BDB_GENERAL_DEFINITIONS); |
| 409 | if (general) { |
| 410 | u16 block_size = get_blocksize(general); |
| 411 | if (block_size >= sizeof(*general)) { |
| 412 | int bus_pin = general->crt_ddc_gmbus_pin; |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 413 | DRM_DEBUG_KMS("crt_ddc_bus_pin: %d\n", bus_pin); |
Jani Nikula | 88ac793 | 2015-03-27 00:20:22 +0200 | [diff] [blame] | 414 | if (intel_gmbus_is_valid_pin(dev_priv, bus_pin)) |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 415 | dev_priv->vbt.crt_ddc_pin = bus_pin; |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 416 | } else { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 417 | DRM_DEBUG_KMS("BDB_GD too small (%d). Invalid.\n", |
Daniel Kurtz | 3bd7d90 | 2012-03-28 02:36:14 +0800 | [diff] [blame] | 418 | block_size); |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 419 | } |
| 420 | } |
| 421 | } |
| 422 | |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 423 | static const union child_device_config * |
| 424 | child_device_ptr(const struct bdb_general_definitions *p_defs, int i) |
Ville Syrjälä | 90e4f15 | 2015-03-25 18:45:58 +0200 | [diff] [blame] | 425 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 426 | return (const void *) &p_defs->devices[i * p_defs->child_dev_size]; |
Ville Syrjälä | 90e4f15 | 2015-03-25 18:45:58 +0200 | [diff] [blame] | 427 | } |
| 428 | |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 429 | static void |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 430 | parse_sdvo_device_mapping(struct drm_i915_private *dev_priv, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 431 | const struct bdb_header *bdb) |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 432 | { |
| 433 | struct sdvo_device_mapping *p_mapping; |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 434 | const struct bdb_general_definitions *p_defs; |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 435 | const struct old_child_dev_config *child; /* legacy */ |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 436 | int i, child_device_num, count; |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 437 | u16 block_size; |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 438 | |
| 439 | p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS); |
| 440 | if (!p_defs) { |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 441 | DRM_DEBUG_KMS("No general definition block is found, unable to construct sdvo mapping.\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 442 | return; |
| 443 | } |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 444 | |
| 445 | /* |
| 446 | * Only parse SDVO mappings when the general definitions block child |
| 447 | * device size matches that of the *legacy* child device config |
| 448 | * struct. Thus, SDVO mapping will be skipped for newer VBT. |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 449 | */ |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 450 | if (p_defs->child_dev_size != sizeof(*child)) { |
| 451 | DRM_DEBUG_KMS("Unsupported child device size for SDVO mapping.\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 452 | return; |
| 453 | } |
| 454 | /* get the block size of general definitions */ |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 455 | block_size = get_blocksize(p_defs); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 456 | /* get the number of child device */ |
| 457 | child_device_num = (block_size - sizeof(*p_defs)) / |
Ville Syrjälä | 90e4f15 | 2015-03-25 18:45:58 +0200 | [diff] [blame] | 458 | p_defs->child_dev_size; |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 459 | count = 0; |
| 460 | for (i = 0; i < child_device_num; i++) { |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 461 | child = &child_device_ptr(p_defs, i)->old; |
| 462 | if (!child->device_type) { |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 463 | /* skip the device block if device type is invalid */ |
| 464 | continue; |
| 465 | } |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 466 | if (child->slave_addr != SLAVE_ADDR1 && |
| 467 | child->slave_addr != SLAVE_ADDR2) { |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 468 | /* |
| 469 | * If the slave address is neither 0x70 nor 0x72, |
| 470 | * it is not a SDVO device. Skip it. |
| 471 | */ |
| 472 | continue; |
| 473 | } |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 474 | if (child->dvo_port != DEVICE_PORT_DVOB && |
| 475 | child->dvo_port != DEVICE_PORT_DVOC) { |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 476 | /* skip the incorrect SDVO port */ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 477 | DRM_DEBUG_KMS("Incorrect SDVO port. Skip it\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 478 | continue; |
| 479 | } |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 480 | DRM_DEBUG_KMS("the SDVO device with slave addr %2x is found on" |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 481 | " %s port\n", |
| 482 | child->slave_addr, |
| 483 | (child->dvo_port == DEVICE_PORT_DVOB) ? |
| 484 | "SDVOB" : "SDVOC"); |
Jani Nikula | 9d6c875 | 2016-03-24 17:50:22 +0200 | [diff] [blame] | 485 | p_mapping = &dev_priv->vbt.sdvo_mappings[child->dvo_port - 1]; |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 486 | if (!p_mapping->initialized) { |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 487 | p_mapping->dvo_port = child->dvo_port; |
| 488 | p_mapping->slave_addr = child->slave_addr; |
| 489 | p_mapping->dvo_wiring = child->dvo_wiring; |
| 490 | p_mapping->ddc_pin = child->ddc_pin; |
| 491 | p_mapping->i2c_pin = child->i2c_pin; |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 492 | p_mapping->initialized = 1; |
Adam Jackson | 46eb303 | 2011-06-16 16:36:23 -0400 | [diff] [blame] | 493 | DRM_DEBUG_KMS("SDVO device: dvo=%x, addr=%x, wiring=%d, ddc_pin=%d, i2c_pin=%d\n", |
Chris Wilson | e957d77 | 2010-09-24 12:52:03 +0100 | [diff] [blame] | 494 | p_mapping->dvo_port, |
| 495 | p_mapping->slave_addr, |
| 496 | p_mapping->dvo_wiring, |
| 497 | p_mapping->ddc_pin, |
Adam Jackson | 46eb303 | 2011-06-16 16:36:23 -0400 | [diff] [blame] | 498 | p_mapping->i2c_pin); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 499 | } else { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 500 | DRM_DEBUG_KMS("Maybe one SDVO port is shared by " |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 501 | "two SDVO device.\n"); |
| 502 | } |
Jani Nikula | 6cc38ac | 2015-08-18 14:28:55 +0300 | [diff] [blame] | 503 | if (child->slave2_addr) { |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 504 | /* Maybe this is a SDVO device with multiple inputs */ |
| 505 | /* And the mapping info is not added */ |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 506 | DRM_DEBUG_KMS("there exists the slave2_addr. Maybe this" |
| 507 | " is a SDVO device with multiple inputs.\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 508 | } |
| 509 | count++; |
| 510 | } |
| 511 | |
| 512 | if (!count) { |
| 513 | /* No SDVO device info is found */ |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 514 | DRM_DEBUG_KMS("No SDVO device info is found in VBT\n"); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 515 | } |
| 516 | return; |
| 517 | } |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 518 | |
| 519 | static void |
| 520 | parse_driver_features(struct drm_i915_private *dev_priv, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 521 | const struct bdb_header *bdb) |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 522 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 523 | const struct bdb_driver_features *driver; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 524 | |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 525 | driver = find_section(bdb, BDB_DRIVER_FEATURES); |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 526 | if (!driver) |
| 527 | return; |
| 528 | |
Daniel Vetter | 6fca55b | 2013-09-21 00:48:39 +0200 | [diff] [blame] | 529 | if (driver->lvds_config == BDB_DRIVER_FEATURE_EDP) |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 530 | dev_priv->vbt.edp.support = 1; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 531 | |
Pradeep Bhat | 83a7280 | 2014-03-28 10:14:57 +0530 | [diff] [blame] | 532 | DRM_DEBUG_KMS("DRRS State Enabled:%d\n", driver->drrs_enabled); |
| 533 | /* |
| 534 | * If DRRS is not supported, drrs_type has to be set to 0. |
| 535 | * This is because, VBT is configured in such a way that |
| 536 | * static DRRS is 0 and DRRS not supported is represented by |
| 537 | * driver->drrs_enabled=false |
| 538 | */ |
| 539 | if (!driver->drrs_enabled) |
| 540 | dev_priv->vbt.drrs_type = DRRS_NOT_SUPPORTED; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 541 | } |
| 542 | |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 543 | static void |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 544 | parse_edp(struct drm_i915_private *dev_priv, const struct bdb_header *bdb) |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 545 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 546 | const struct bdb_edp *edp; |
| 547 | const struct edp_power_seq *edp_pps; |
| 548 | const struct edp_link_params *edp_link_params; |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 549 | |
| 550 | edp = find_section(bdb, BDB_EDP); |
| 551 | if (!edp) { |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 552 | if (dev_priv->vbt.edp.support) |
Jani Nikula | 9a30a61 | 2012-11-12 14:33:45 +0200 | [diff] [blame] | 553 | DRM_DEBUG_KMS("No eDP BDB found but eDP panel supported.\n"); |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 554 | return; |
| 555 | } |
| 556 | |
| 557 | switch ((edp->color_depth >> (panel_type * 2)) & 3) { |
| 558 | case EDP_18BPP: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 559 | dev_priv->vbt.edp.bpp = 18; |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 560 | break; |
| 561 | case EDP_24BPP: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 562 | dev_priv->vbt.edp.bpp = 24; |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 563 | break; |
| 564 | case EDP_30BPP: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 565 | dev_priv->vbt.edp.bpp = 30; |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 566 | break; |
| 567 | } |
Chris Wilson | 5ceb0f9 | 2010-09-24 10:24:28 +0100 | [diff] [blame] | 568 | |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 569 | /* Get the eDP sequencing and link info */ |
| 570 | edp_pps = &edp->power_seqs[panel_type]; |
| 571 | edp_link_params = &edp->link_params[panel_type]; |
Chris Wilson | 5ceb0f9 | 2010-09-24 10:24:28 +0100 | [diff] [blame] | 572 | |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 573 | dev_priv->vbt.edp.pps = *edp_pps; |
Chris Wilson | 5ceb0f9 | 2010-09-24 10:24:28 +0100 | [diff] [blame] | 574 | |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 575 | switch (edp_link_params->rate) { |
| 576 | case EDP_RATE_1_62: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 577 | dev_priv->vbt.edp.rate = DP_LINK_BW_1_62; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 578 | break; |
| 579 | case EDP_RATE_2_7: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 580 | dev_priv->vbt.edp.rate = DP_LINK_BW_2_7; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 581 | break; |
| 582 | default: |
| 583 | DRM_DEBUG_KMS("VBT has unknown eDP link rate value %u\n", |
| 584 | edp_link_params->rate); |
| 585 | break; |
| 586 | } |
| 587 | |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 588 | switch (edp_link_params->lanes) { |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 589 | case EDP_LANE_1: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 590 | dev_priv->vbt.edp.lanes = 1; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 591 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 592 | case EDP_LANE_2: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 593 | dev_priv->vbt.edp.lanes = 2; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 594 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 595 | case EDP_LANE_4: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 596 | dev_priv->vbt.edp.lanes = 4; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 597 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 598 | default: |
| 599 | DRM_DEBUG_KMS("VBT has unknown eDP lane count value %u\n", |
| 600 | edp_link_params->lanes); |
| 601 | break; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 602 | } |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 603 | |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 604 | switch (edp_link_params->preemphasis) { |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 605 | case EDP_PREEMPHASIS_NONE: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 606 | dev_priv->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_0; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 607 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 608 | case EDP_PREEMPHASIS_3_5dB: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 609 | dev_priv->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_1; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 610 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 611 | case EDP_PREEMPHASIS_6dB: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 612 | dev_priv->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_2; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 613 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 614 | case EDP_PREEMPHASIS_9_5dB: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 615 | dev_priv->vbt.edp.preemphasis = DP_TRAIN_PRE_EMPH_LEVEL_3; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 616 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 617 | default: |
| 618 | DRM_DEBUG_KMS("VBT has unknown eDP pre-emphasis value %u\n", |
| 619 | edp_link_params->preemphasis); |
| 620 | break; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 621 | } |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 622 | |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 623 | switch (edp_link_params->vswing) { |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 624 | case EDP_VSWING_0_4V: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 625 | dev_priv->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_0; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 626 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 627 | case EDP_VSWING_0_6V: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 628 | dev_priv->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_1; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 629 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 630 | case EDP_VSWING_0_8V: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 631 | dev_priv->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_2; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 632 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 633 | case EDP_VSWING_1_2V: |
Jani Nikula | 6aa23e6 | 2016-03-24 17:50:20 +0200 | [diff] [blame] | 634 | dev_priv->vbt.edp.vswing = DP_TRAIN_VOLTAGE_SWING_LEVEL_3; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 635 | break; |
Jani Nikula | e13e2b2 | 2014-05-06 14:56:51 +0300 | [diff] [blame] | 636 | default: |
| 637 | DRM_DEBUG_KMS("VBT has unknown eDP voltage swing value %u\n", |
| 638 | edp_link_params->vswing); |
| 639 | break; |
Jesse Barnes | 9f0e7ff4 | 2010-10-07 16:01:14 -0700 | [diff] [blame] | 640 | } |
Sonika Jindal | 9a57f5b | 2015-02-25 10:29:11 +0530 | [diff] [blame] | 641 | |
| 642 | if (bdb->version >= 173) { |
| 643 | uint8_t vswing; |
| 644 | |
Sonika Jindal | 9e45803 | 2015-05-06 17:35:48 +0530 | [diff] [blame] | 645 | /* Don't read from VBT if module parameter has valid value*/ |
| 646 | if (i915.edp_vswing) { |
Jani Nikula | 06411f0 | 2016-03-24 17:50:21 +0200 | [diff] [blame] | 647 | dev_priv->vbt.edp.low_vswing = i915.edp_vswing == 1; |
Sonika Jindal | 9e45803 | 2015-05-06 17:35:48 +0530 | [diff] [blame] | 648 | } else { |
| 649 | vswing = (edp->edp_vswing_preemph >> (panel_type * 4)) & 0xF; |
Jani Nikula | 06411f0 | 2016-03-24 17:50:21 +0200 | [diff] [blame] | 650 | dev_priv->vbt.edp.low_vswing = vswing == 0; |
Sonika Jindal | 9e45803 | 2015-05-06 17:35:48 +0530 | [diff] [blame] | 651 | } |
Sonika Jindal | 9a57f5b | 2015-02-25 10:29:11 +0530 | [diff] [blame] | 652 | } |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 653 | } |
| 654 | |
Rodrigo Vivi | bfd7ebd | 2014-11-14 08:52:30 -0800 | [diff] [blame] | 655 | static void |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 656 | parse_psr(struct drm_i915_private *dev_priv, const struct bdb_header *bdb) |
Rodrigo Vivi | bfd7ebd | 2014-11-14 08:52:30 -0800 | [diff] [blame] | 657 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 658 | const struct bdb_psr *psr; |
| 659 | const struct psr_table *psr_table; |
Rodrigo Vivi | bfd7ebd | 2014-11-14 08:52:30 -0800 | [diff] [blame] | 660 | |
| 661 | psr = find_section(bdb, BDB_PSR); |
| 662 | if (!psr) { |
| 663 | DRM_DEBUG_KMS("No PSR BDB found.\n"); |
| 664 | return; |
| 665 | } |
| 666 | |
| 667 | psr_table = &psr->psr_table[panel_type]; |
| 668 | |
| 669 | dev_priv->vbt.psr.full_link = psr_table->full_link; |
| 670 | dev_priv->vbt.psr.require_aux_wakeup = psr_table->require_aux_to_wakeup; |
| 671 | |
| 672 | /* Allowed VBT values goes from 0 to 15 */ |
| 673 | dev_priv->vbt.psr.idle_frames = psr_table->idle_frames < 0 ? 0 : |
| 674 | psr_table->idle_frames > 15 ? 15 : psr_table->idle_frames; |
| 675 | |
| 676 | switch (psr_table->lines_to_wait) { |
| 677 | case 0: |
| 678 | dev_priv->vbt.psr.lines_to_wait = PSR_0_LINES_TO_WAIT; |
| 679 | break; |
| 680 | case 1: |
| 681 | dev_priv->vbt.psr.lines_to_wait = PSR_1_LINE_TO_WAIT; |
| 682 | break; |
| 683 | case 2: |
| 684 | dev_priv->vbt.psr.lines_to_wait = PSR_4_LINES_TO_WAIT; |
| 685 | break; |
| 686 | case 3: |
| 687 | dev_priv->vbt.psr.lines_to_wait = PSR_8_LINES_TO_WAIT; |
| 688 | break; |
| 689 | default: |
| 690 | DRM_DEBUG_KMS("VBT has unknown PSR lines to wait %u\n", |
| 691 | psr_table->lines_to_wait); |
| 692 | break; |
| 693 | } |
| 694 | |
| 695 | dev_priv->vbt.psr.tp1_wakeup_time = psr_table->tp1_wakeup_time; |
| 696 | dev_priv->vbt.psr.tp2_tp3_wakeup_time = psr_table->tp2_tp3_wakeup_time; |
| 697 | } |
| 698 | |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 699 | static void |
Jani Nikula | 0f8689f | 2015-12-21 15:10:54 +0200 | [diff] [blame] | 700 | parse_mipi_config(struct drm_i915_private *dev_priv, |
| 701 | const struct bdb_header *bdb) |
Shobhit Kumar | d17c544 | 2013-08-27 15:12:25 +0300 | [diff] [blame] | 702 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 703 | const struct bdb_mipi_config *start; |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 704 | const struct mipi_config *config; |
| 705 | const struct mipi_pps_data *pps; |
Shobhit Kumar | d17c544 | 2013-08-27 15:12:25 +0300 | [diff] [blame] | 706 | |
Shobhit Kumar | 3e6bd01 | 2014-05-27 19:33:59 +0530 | [diff] [blame] | 707 | /* parse MIPI blocks only if LFP type is MIPI */ |
Jani Nikula | 7caaef3 | 2016-03-16 12:43:34 +0200 | [diff] [blame] | 708 | if (!intel_bios_is_dsi_present(dev_priv, NULL)) |
Shobhit Kumar | 3e6bd01 | 2014-05-27 19:33:59 +0530 | [diff] [blame] | 709 | return; |
| 710 | |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 711 | /* Initialize this to undefined indicating no generic MIPI support */ |
| 712 | dev_priv->vbt.dsi.panel_id = MIPI_DSI_UNDEFINED_PANEL_ID; |
| 713 | |
| 714 | /* Block #40 is already parsed and panel_fixed_mode is |
| 715 | * stored in dev_priv->lfp_lvds_vbt_mode |
| 716 | * resuse this when needed |
| 717 | */ |
| 718 | |
| 719 | /* Parse #52 for panel index used from panel_type already |
| 720 | * parsed |
| 721 | */ |
| 722 | start = find_section(bdb, BDB_MIPI_CONFIG); |
| 723 | if (!start) { |
| 724 | DRM_DEBUG_KMS("No MIPI config BDB found"); |
Shobhit Kumar | d17c544 | 2013-08-27 15:12:25 +0300 | [diff] [blame] | 725 | return; |
| 726 | } |
| 727 | |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 728 | DRM_DEBUG_DRIVER("Found MIPI Config block, panel index = %d\n", |
| 729 | panel_type); |
| 730 | |
| 731 | /* |
| 732 | * get hold of the correct configuration block and pps data as per |
| 733 | * the panel_type as index |
| 734 | */ |
| 735 | config = &start->config[panel_type]; |
| 736 | pps = &start->pps[panel_type]; |
| 737 | |
| 738 | /* store as of now full data. Trim when we realise all is not needed */ |
| 739 | dev_priv->vbt.dsi.config = kmemdup(config, sizeof(struct mipi_config), GFP_KERNEL); |
| 740 | if (!dev_priv->vbt.dsi.config) |
| 741 | return; |
| 742 | |
| 743 | dev_priv->vbt.dsi.pps = kmemdup(pps, sizeof(struct mipi_pps_data), GFP_KERNEL); |
| 744 | if (!dev_priv->vbt.dsi.pps) { |
| 745 | kfree(dev_priv->vbt.dsi.config); |
| 746 | return; |
| 747 | } |
| 748 | |
| 749 | /* We have mandatory mipi config blocks. Initialize as generic panel */ |
Shobhit Kumar | ea9a6ba | 2014-02-28 11:18:46 +0530 | [diff] [blame] | 750 | dev_priv->vbt.dsi.panel_id = MIPI_DSI_GENERIC_PANEL_ID; |
Jani Nikula | 0f8689f | 2015-12-21 15:10:54 +0200 | [diff] [blame] | 751 | } |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 752 | |
Jani Nikula | 5db7209 | 2016-01-05 15:50:51 +0200 | [diff] [blame] | 753 | /* Find the sequence block and size for the given panel. */ |
| 754 | static const u8 * |
| 755 | find_panel_sequence_block(const struct bdb_mipi_sequence *sequence, |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 756 | u16 panel_id, u32 *seq_size) |
Jani Nikula | 5db7209 | 2016-01-05 15:50:51 +0200 | [diff] [blame] | 757 | { |
| 758 | u32 total = get_blocksize(sequence); |
| 759 | const u8 *data = &sequence->data[0]; |
| 760 | u8 current_id; |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 761 | u32 current_size; |
| 762 | int header_size = sequence->version >= 3 ? 5 : 3; |
Jani Nikula | 5db7209 | 2016-01-05 15:50:51 +0200 | [diff] [blame] | 763 | int index = 0; |
| 764 | int i; |
| 765 | |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 766 | /* skip new block size */ |
| 767 | if (sequence->version >= 3) |
| 768 | data += 4; |
Jani Nikula | 5db7209 | 2016-01-05 15:50:51 +0200 | [diff] [blame] | 769 | |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 770 | for (i = 0; i < MAX_MIPI_CONFIGURATIONS && index < total; i++) { |
| 771 | if (index + header_size > total) { |
| 772 | DRM_ERROR("Invalid sequence block (header)\n"); |
| 773 | return NULL; |
| 774 | } |
| 775 | |
| 776 | current_id = *(data + index); |
| 777 | if (sequence->version >= 3) |
| 778 | current_size = *((const u32 *)(data + index + 1)); |
| 779 | else |
| 780 | current_size = *((const u16 *)(data + index + 1)); |
| 781 | |
| 782 | index += header_size; |
Jani Nikula | 5db7209 | 2016-01-05 15:50:51 +0200 | [diff] [blame] | 783 | |
| 784 | if (index + current_size > total) { |
| 785 | DRM_ERROR("Invalid sequence block\n"); |
| 786 | return NULL; |
| 787 | } |
| 788 | |
| 789 | if (current_id == panel_id) { |
| 790 | *seq_size = current_size; |
| 791 | return data + index; |
| 792 | } |
| 793 | |
| 794 | index += current_size; |
| 795 | } |
| 796 | |
| 797 | DRM_ERROR("Sequence block detected but no valid configuration\n"); |
| 798 | |
| 799 | return NULL; |
| 800 | } |
| 801 | |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 802 | static int goto_next_sequence(const u8 *data, int index, int total) |
| 803 | { |
| 804 | u16 len; |
| 805 | |
| 806 | /* Skip Sequence Byte. */ |
| 807 | for (index = index + 1; index < total; index += len) { |
| 808 | u8 operation_byte = *(data + index); |
| 809 | index++; |
| 810 | |
| 811 | switch (operation_byte) { |
| 812 | case MIPI_SEQ_ELEM_END: |
| 813 | return index; |
| 814 | case MIPI_SEQ_ELEM_SEND_PKT: |
| 815 | if (index + 4 > total) |
| 816 | return 0; |
| 817 | |
| 818 | len = *((const u16 *)(data + index + 2)) + 4; |
| 819 | break; |
| 820 | case MIPI_SEQ_ELEM_DELAY: |
| 821 | len = 4; |
| 822 | break; |
| 823 | case MIPI_SEQ_ELEM_GPIO: |
| 824 | len = 2; |
| 825 | break; |
Jani Nikula | f4d6493 | 2015-12-21 15:11:00 +0200 | [diff] [blame] | 826 | case MIPI_SEQ_ELEM_I2C: |
| 827 | if (index + 7 > total) |
| 828 | return 0; |
| 829 | len = *(data + index + 6) + 7; |
| 830 | break; |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 831 | default: |
| 832 | DRM_ERROR("Unknown operation byte\n"); |
| 833 | return 0; |
| 834 | } |
| 835 | } |
| 836 | |
| 837 | return 0; |
| 838 | } |
| 839 | |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 840 | static int goto_next_sequence_v3(const u8 *data, int index, int total) |
| 841 | { |
| 842 | int seq_end; |
| 843 | u16 len; |
Jani Nikula | 6765bd6 | 2016-01-14 17:12:07 +0200 | [diff] [blame] | 844 | u32 size_of_sequence; |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 845 | |
| 846 | /* |
| 847 | * Could skip sequence based on Size of Sequence alone, but also do some |
| 848 | * checking on the structure. |
| 849 | */ |
| 850 | if (total < 5) { |
| 851 | DRM_ERROR("Too small sequence size\n"); |
| 852 | return 0; |
| 853 | } |
| 854 | |
Jani Nikula | 6765bd6 | 2016-01-14 17:12:07 +0200 | [diff] [blame] | 855 | /* Skip Sequence Byte. */ |
| 856 | index++; |
| 857 | |
| 858 | /* |
| 859 | * Size of Sequence. Excludes the Sequence Byte and the size itself, |
| 860 | * includes MIPI_SEQ_ELEM_END byte, excludes the final MIPI_SEQ_END |
| 861 | * byte. |
| 862 | */ |
| 863 | size_of_sequence = *((const uint32_t *)(data + index)); |
| 864 | index += 4; |
| 865 | |
| 866 | seq_end = index + size_of_sequence; |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 867 | if (seq_end > total) { |
| 868 | DRM_ERROR("Invalid sequence size\n"); |
| 869 | return 0; |
| 870 | } |
| 871 | |
Jani Nikula | 6765bd6 | 2016-01-14 17:12:07 +0200 | [diff] [blame] | 872 | for (; index < total; index += len) { |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 873 | u8 operation_byte = *(data + index); |
| 874 | index++; |
| 875 | |
| 876 | if (operation_byte == MIPI_SEQ_ELEM_END) { |
| 877 | if (index != seq_end) { |
| 878 | DRM_ERROR("Invalid element structure\n"); |
| 879 | return 0; |
| 880 | } |
| 881 | return index; |
| 882 | } |
| 883 | |
| 884 | len = *(data + index); |
| 885 | index++; |
| 886 | |
| 887 | /* |
| 888 | * FIXME: Would be nice to check elements like for v1/v2 in |
| 889 | * goto_next_sequence() above. |
| 890 | */ |
| 891 | switch (operation_byte) { |
| 892 | case MIPI_SEQ_ELEM_SEND_PKT: |
| 893 | case MIPI_SEQ_ELEM_DELAY: |
| 894 | case MIPI_SEQ_ELEM_GPIO: |
| 895 | case MIPI_SEQ_ELEM_I2C: |
| 896 | case MIPI_SEQ_ELEM_SPI: |
| 897 | case MIPI_SEQ_ELEM_PMIC: |
| 898 | break; |
| 899 | default: |
| 900 | DRM_ERROR("Unknown operation byte %u\n", |
| 901 | operation_byte); |
| 902 | break; |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | return 0; |
| 907 | } |
| 908 | |
Jani Nikula | 0f8689f | 2015-12-21 15:10:54 +0200 | [diff] [blame] | 909 | static void |
| 910 | parse_mipi_sequence(struct drm_i915_private *dev_priv, |
| 911 | const struct bdb_header *bdb) |
| 912 | { |
| 913 | const struct bdb_mipi_sequence *sequence; |
| 914 | const u8 *seq_data; |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 915 | u32 seq_size; |
Jani Nikula | 0f8689f | 2015-12-21 15:10:54 +0200 | [diff] [blame] | 916 | u8 *data; |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 917 | int index = 0; |
Jani Nikula | 0f8689f | 2015-12-21 15:10:54 +0200 | [diff] [blame] | 918 | |
| 919 | /* Only our generic panel driver uses the sequence block. */ |
| 920 | if (dev_priv->vbt.dsi.panel_id != MIPI_DSI_GENERIC_PANEL_ID) |
| 921 | return; |
| 922 | |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 923 | sequence = find_section(bdb, BDB_MIPI_SEQUENCE); |
| 924 | if (!sequence) { |
| 925 | DRM_DEBUG_KMS("No MIPI Sequence found, parsing complete\n"); |
| 926 | return; |
| 927 | } |
| 928 | |
Jani Nikula | cd67d22 | 2015-09-17 16:42:07 +0300 | [diff] [blame] | 929 | /* Fail gracefully for forward incompatible sequence block. */ |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 930 | if (sequence->version >= 4) { |
| 931 | DRM_ERROR("Unable to parse MIPI Sequence Block v%u\n", |
| 932 | sequence->version); |
Jani Nikula | cd67d22 | 2015-09-17 16:42:07 +0300 | [diff] [blame] | 933 | return; |
| 934 | } |
| 935 | |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 936 | DRM_DEBUG_DRIVER("Found MIPI sequence block v%u\n", sequence->version); |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 937 | |
Jani Nikula | 5db7209 | 2016-01-05 15:50:51 +0200 | [diff] [blame] | 938 | seq_data = find_panel_sequence_block(sequence, panel_type, &seq_size); |
| 939 | if (!seq_data) |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 940 | return; |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 941 | |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 942 | data = kmemdup(seq_data, seq_size, GFP_KERNEL); |
| 943 | if (!data) |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 944 | return; |
| 945 | |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 946 | /* Parse the sequences, store pointers to each sequence. */ |
| 947 | for (;;) { |
| 948 | u8 seq_id = *(data + index); |
| 949 | if (seq_id == MIPI_SEQ_END) |
| 950 | break; |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 951 | |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 952 | if (seq_id >= MIPI_SEQ_MAX) { |
| 953 | DRM_ERROR("Unknown sequence %u\n", seq_id); |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 954 | goto err; |
| 955 | } |
| 956 | |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 957 | dev_priv->vbt.dsi.sequence[seq_id] = data + index; |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 958 | |
Jani Nikula | 2a33d93 | 2016-01-11 15:15:02 +0200 | [diff] [blame] | 959 | if (sequence->version >= 3) |
| 960 | index = goto_next_sequence_v3(data, index, seq_size); |
| 961 | else |
| 962 | index = goto_next_sequence(data, index, seq_size); |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 963 | if (!index) { |
| 964 | DRM_ERROR("Invalid sequence %u\n", seq_id); |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 965 | goto err; |
| 966 | } |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 967 | } |
| 968 | |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 969 | dev_priv->vbt.dsi.data = data; |
| 970 | dev_priv->vbt.dsi.size = seq_size; |
| 971 | dev_priv->vbt.dsi.seq_version = sequence->version; |
Shobhit Kumar | d3b542f | 2014-04-14 11:00:34 +0530 | [diff] [blame] | 972 | |
Jani Nikula | 8d3ed2f | 2015-12-21 15:10:57 +0200 | [diff] [blame] | 973 | DRM_DEBUG_DRIVER("MIPI related VBT parsing complete\n"); |
| 974 | return; |
| 975 | |
| 976 | err: |
| 977 | kfree(data); |
Rafael Barbalho | ed3b667 | 2014-07-24 15:16:12 +0100 | [diff] [blame] | 978 | memset(dev_priv->vbt.dsi.sequence, 0, sizeof(dev_priv->vbt.dsi.sequence)); |
Shobhit Kumar | d17c544 | 2013-08-27 15:12:25 +0300 | [diff] [blame] | 979 | } |
| 980 | |
Antti Koskipaa | 75067dd | 2015-07-10 14:10:55 +0300 | [diff] [blame] | 981 | static u8 translate_iboost(u8 val) |
| 982 | { |
| 983 | static const u8 mapping[] = { 1, 3, 7 }; /* See VBT spec */ |
| 984 | |
| 985 | if (val >= ARRAY_SIZE(mapping)) { |
| 986 | DRM_DEBUG_KMS("Unsupported I_boost value found in VBT (%d), display may not work properly\n", val); |
| 987 | return 0; |
| 988 | } |
| 989 | return mapping[val]; |
| 990 | } |
| 991 | |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 992 | static void parse_ddi_port(struct drm_i915_private *dev_priv, enum port port, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 993 | const struct bdb_header *bdb) |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 994 | { |
| 995 | union child_device_config *it, *child = NULL; |
| 996 | struct ddi_vbt_port_info *info = &dev_priv->vbt.ddi_port_info[port]; |
| 997 | uint8_t hdmi_level_shift; |
| 998 | int i, j; |
Paulo Zanoni | 554d6af | 2013-09-12 17:10:11 -0300 | [diff] [blame] | 999 | bool is_dvi, is_hdmi, is_dp, is_edp, is_crt; |
Xiong Zhang | 11c1b65 | 2015-08-17 16:04:04 +0800 | [diff] [blame] | 1000 | uint8_t aux_channel, ddc_pin; |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1001 | /* Each DDI port can have more than one value on the "DVO Port" field, |
| 1002 | * so look for all the possible values for each port and abort if more |
| 1003 | * than one is found. */ |
Rodrigo Vivi | 2800e4c | 2015-08-07 17:35:21 -0700 | [diff] [blame] | 1004 | int dvo_ports[][3] = { |
| 1005 | {DVO_PORT_HDMIA, DVO_PORT_DPA, -1}, |
| 1006 | {DVO_PORT_HDMIB, DVO_PORT_DPB, -1}, |
| 1007 | {DVO_PORT_HDMIC, DVO_PORT_DPC, -1}, |
| 1008 | {DVO_PORT_HDMID, DVO_PORT_DPD, -1}, |
| 1009 | {DVO_PORT_CRT, DVO_PORT_HDMIE, DVO_PORT_DPE}, |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1010 | }; |
| 1011 | |
| 1012 | /* Find the child device to use, abort if more than one found. */ |
| 1013 | for (i = 0; i < dev_priv->vbt.child_dev_num; i++) { |
| 1014 | it = dev_priv->vbt.child_dev + i; |
| 1015 | |
Rodrigo Vivi | 2800e4c | 2015-08-07 17:35:21 -0700 | [diff] [blame] | 1016 | for (j = 0; j < 3; j++) { |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1017 | if (dvo_ports[port][j] == -1) |
| 1018 | break; |
| 1019 | |
| 1020 | if (it->common.dvo_port == dvo_ports[port][j]) { |
| 1021 | if (child) { |
| 1022 | DRM_DEBUG_KMS("More than one child device for port %c in VBT.\n", |
| 1023 | port_name(port)); |
| 1024 | return; |
| 1025 | } |
| 1026 | child = it; |
| 1027 | } |
| 1028 | } |
| 1029 | } |
| 1030 | if (!child) |
| 1031 | return; |
| 1032 | |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1033 | aux_channel = child->raw[25]; |
Xiong Zhang | 11c1b65 | 2015-08-17 16:04:04 +0800 | [diff] [blame] | 1034 | ddc_pin = child->common.ddc_pin; |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1035 | |
Ville Syrjälä | 78eb06c | 2013-11-01 20:32:07 +0200 | [diff] [blame] | 1036 | is_dvi = child->common.device_type & DEVICE_TYPE_TMDS_DVI_SIGNALING; |
| 1037 | is_dp = child->common.device_type & DEVICE_TYPE_DISPLAYPORT_OUTPUT; |
| 1038 | is_crt = child->common.device_type & DEVICE_TYPE_ANALOG_OUTPUT; |
| 1039 | is_hdmi = is_dvi && (child->common.device_type & DEVICE_TYPE_NOT_HDMI_OUTPUT) == 0; |
| 1040 | is_edp = is_dp && (child->common.device_type & DEVICE_TYPE_INTERNAL_CONNECTOR); |
Paulo Zanoni | 554d6af | 2013-09-12 17:10:11 -0300 | [diff] [blame] | 1041 | |
Paulo Zanoni | 311a209 | 2013-09-12 17:12:18 -0300 | [diff] [blame] | 1042 | info->supports_dvi = is_dvi; |
| 1043 | info->supports_hdmi = is_hdmi; |
| 1044 | info->supports_dp = is_dp; |
| 1045 | |
Paulo Zanoni | 554d6af | 2013-09-12 17:10:11 -0300 | [diff] [blame] | 1046 | DRM_DEBUG_KMS("Port %c VBT info: DP:%d HDMI:%d DVI:%d EDP:%d CRT:%d\n", |
| 1047 | port_name(port), is_dp, is_hdmi, is_dvi, is_edp, is_crt); |
| 1048 | |
| 1049 | if (is_edp && is_dvi) |
| 1050 | DRM_DEBUG_KMS("Internal DP port %c is TMDS compatible\n", |
| 1051 | port_name(port)); |
| 1052 | if (is_crt && port != PORT_E) |
| 1053 | DRM_DEBUG_KMS("Port %c is analog\n", port_name(port)); |
| 1054 | if (is_crt && (is_dvi || is_dp)) |
| 1055 | DRM_DEBUG_KMS("Analog port %c is also DP or TMDS compatible\n", |
| 1056 | port_name(port)); |
| 1057 | if (is_dvi && (port == PORT_A || port == PORT_E)) |
Masanari Iida | 9b13494 | 2014-08-06 22:31:28 +0900 | [diff] [blame] | 1058 | DRM_DEBUG_KMS("Port %c is TMDS compatible\n", port_name(port)); |
Paulo Zanoni | 554d6af | 2013-09-12 17:10:11 -0300 | [diff] [blame] | 1059 | if (!is_dvi && !is_dp && !is_crt) |
| 1060 | DRM_DEBUG_KMS("Port %c is not DP/TMDS/CRT compatible\n", |
| 1061 | port_name(port)); |
| 1062 | if (is_edp && (port == PORT_B || port == PORT_C || port == PORT_E)) |
| 1063 | DRM_DEBUG_KMS("Port %c is internal DP\n", port_name(port)); |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1064 | |
| 1065 | if (is_dvi) { |
Xiong Zhang | 11c1b65 | 2015-08-17 16:04:04 +0800 | [diff] [blame] | 1066 | if (port == PORT_E) { |
| 1067 | info->alternate_ddc_pin = ddc_pin; |
| 1068 | /* if DDIE share ddc pin with other port, then |
| 1069 | * dvi/hdmi couldn't exist on the shared port. |
| 1070 | * Otherwise they share the same ddc bin and system |
| 1071 | * couldn't communicate with them seperately. */ |
| 1072 | if (ddc_pin == DDC_PIN_B) { |
| 1073 | dev_priv->vbt.ddi_port_info[PORT_B].supports_dvi = 0; |
| 1074 | dev_priv->vbt.ddi_port_info[PORT_B].supports_hdmi = 0; |
| 1075 | } else if (ddc_pin == DDC_PIN_C) { |
| 1076 | dev_priv->vbt.ddi_port_info[PORT_C].supports_dvi = 0; |
| 1077 | dev_priv->vbt.ddi_port_info[PORT_C].supports_hdmi = 0; |
| 1078 | } else if (ddc_pin == DDC_PIN_D) { |
| 1079 | dev_priv->vbt.ddi_port_info[PORT_D].supports_dvi = 0; |
| 1080 | dev_priv->vbt.ddi_port_info[PORT_D].supports_hdmi = 0; |
| 1081 | } |
| 1082 | } else if (ddc_pin == DDC_PIN_B && port != PORT_B) |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1083 | DRM_DEBUG_KMS("Unexpected DDC pin for port B\n"); |
Xiong Zhang | 11c1b65 | 2015-08-17 16:04:04 +0800 | [diff] [blame] | 1084 | else if (ddc_pin == DDC_PIN_C && port != PORT_C) |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1085 | DRM_DEBUG_KMS("Unexpected DDC pin for port C\n"); |
Xiong Zhang | 11c1b65 | 2015-08-17 16:04:04 +0800 | [diff] [blame] | 1086 | else if (ddc_pin == DDC_PIN_D && port != PORT_D) |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1087 | DRM_DEBUG_KMS("Unexpected DDC pin for port D\n"); |
| 1088 | } |
| 1089 | |
| 1090 | if (is_dp) { |
Rodrigo Vivi | 500ea70 | 2015-08-07 17:01:16 -0700 | [diff] [blame] | 1091 | if (port == PORT_E) { |
| 1092 | info->alternate_aux_channel = aux_channel; |
| 1093 | /* if DDIE share aux channel with other port, then |
| 1094 | * DP couldn't exist on the shared port. Otherwise |
| 1095 | * they share the same aux channel and system |
| 1096 | * couldn't communicate with them seperately. */ |
| 1097 | if (aux_channel == DP_AUX_A) |
| 1098 | dev_priv->vbt.ddi_port_info[PORT_A].supports_dp = 0; |
| 1099 | else if (aux_channel == DP_AUX_B) |
| 1100 | dev_priv->vbt.ddi_port_info[PORT_B].supports_dp = 0; |
| 1101 | else if (aux_channel == DP_AUX_C) |
| 1102 | dev_priv->vbt.ddi_port_info[PORT_C].supports_dp = 0; |
| 1103 | else if (aux_channel == DP_AUX_D) |
| 1104 | dev_priv->vbt.ddi_port_info[PORT_D].supports_dp = 0; |
| 1105 | } |
| 1106 | else if (aux_channel == DP_AUX_A && port != PORT_A) |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1107 | DRM_DEBUG_KMS("Unexpected AUX channel for port A\n"); |
Rodrigo Vivi | 500ea70 | 2015-08-07 17:01:16 -0700 | [diff] [blame] | 1108 | else if (aux_channel == DP_AUX_B && port != PORT_B) |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1109 | DRM_DEBUG_KMS("Unexpected AUX channel for port B\n"); |
Rodrigo Vivi | 500ea70 | 2015-08-07 17:01:16 -0700 | [diff] [blame] | 1110 | else if (aux_channel == DP_AUX_C && port != PORT_C) |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1111 | DRM_DEBUG_KMS("Unexpected AUX channel for port C\n"); |
Rodrigo Vivi | 500ea70 | 2015-08-07 17:01:16 -0700 | [diff] [blame] | 1112 | else if (aux_channel == DP_AUX_D && port != PORT_D) |
Paulo Zanoni | 6bf19e7 | 2013-09-12 17:07:55 -0300 | [diff] [blame] | 1113 | DRM_DEBUG_KMS("Unexpected AUX channel for port D\n"); |
| 1114 | } |
| 1115 | |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1116 | if (bdb->version >= 158) { |
| 1117 | /* The VBT HDMI level shift values match the table we have. */ |
| 1118 | hdmi_level_shift = child->raw[7] & 0xF; |
Damien Lespiau | ce4dd49 | 2014-08-01 11:07:54 +0100 | [diff] [blame] | 1119 | DRM_DEBUG_KMS("VBT HDMI level shift for port %c: %d\n", |
| 1120 | port_name(port), |
| 1121 | hdmi_level_shift); |
| 1122 | info->hdmi_level_shift = hdmi_level_shift; |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1123 | } |
Antti Koskipaa | 75067dd | 2015-07-10 14:10:55 +0300 | [diff] [blame] | 1124 | |
| 1125 | /* Parse the I_boost config for SKL and above */ |
Shubhangi Shrivastava | 4e27bd5 | 2016-03-31 16:11:46 +0530 | [diff] [blame] | 1126 | if (bdb->version >= 196 && child->common.iboost) { |
Antti Koskipaa | 75067dd | 2015-07-10 14:10:55 +0300 | [diff] [blame] | 1127 | info->dp_boost_level = translate_iboost(child->common.iboost_level & 0xF); |
| 1128 | DRM_DEBUG_KMS("VBT (e)DP boost level for port %c: %d\n", |
| 1129 | port_name(port), info->dp_boost_level); |
| 1130 | info->hdmi_boost_level = translate_iboost(child->common.iboost_level >> 4); |
| 1131 | DRM_DEBUG_KMS("VBT HDMI boost level for port %c: %d\n", |
| 1132 | port_name(port), info->hdmi_boost_level); |
| 1133 | } |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1134 | } |
| 1135 | |
| 1136 | static void parse_ddi_ports(struct drm_i915_private *dev_priv, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 1137 | const struct bdb_header *bdb) |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1138 | { |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1139 | enum port port; |
| 1140 | |
Jani Nikula | 98f3a1d | 2015-12-16 15:04:20 +0200 | [diff] [blame] | 1141 | if (!HAS_DDI(dev_priv)) |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1142 | return; |
| 1143 | |
| 1144 | if (!dev_priv->vbt.child_dev_num) |
| 1145 | return; |
| 1146 | |
| 1147 | if (bdb->version < 155) |
| 1148 | return; |
| 1149 | |
| 1150 | for (port = PORT_A; port < I915_MAX_PORTS; port++) |
| 1151 | parse_ddi_port(dev_priv, port, bdb); |
| 1152 | } |
| 1153 | |
Shobhit Kumar | d17c544 | 2013-08-27 15:12:25 +0300 | [diff] [blame] | 1154 | static void |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1155 | parse_device_mapping(struct drm_i915_private *dev_priv, |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 1156 | const struct bdb_header *bdb) |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1157 | { |
Jani Nikula | e8ef3b4 | 2015-04-15 15:18:28 +0300 | [diff] [blame] | 1158 | const struct bdb_general_definitions *p_defs; |
| 1159 | const union child_device_config *p_child; |
| 1160 | union child_device_config *child_dev_ptr; |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1161 | int i, child_device_num, count; |
David Weinehall | e2d6cf7 | 2015-08-21 16:52:01 +0300 | [diff] [blame] | 1162 | u8 expected_size; |
| 1163 | u16 block_size; |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1164 | |
| 1165 | p_defs = find_section(bdb, BDB_GENERAL_DEFINITIONS); |
| 1166 | if (!p_defs) { |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1167 | DRM_DEBUG_KMS("No general definition block is found, no devices defined.\n"); |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1168 | return; |
| 1169 | } |
Ville Syrjälä | 7244f30 | 2015-12-14 18:23:47 +0200 | [diff] [blame] | 1170 | if (bdb->version < 106) { |
| 1171 | expected_size = 22; |
| 1172 | } else if (bdb->version < 109) { |
Ville Syrjälä | 52b69c8 | 2015-12-14 18:23:46 +0200 | [diff] [blame] | 1173 | expected_size = 27; |
| 1174 | } else if (bdb->version < 195) { |
| 1175 | BUILD_BUG_ON(sizeof(struct old_child_dev_config) != 33); |
David Weinehall | e2d6cf7 | 2015-08-21 16:52:01 +0300 | [diff] [blame] | 1176 | expected_size = sizeof(struct old_child_dev_config); |
| 1177 | } else if (bdb->version == 195) { |
| 1178 | expected_size = 37; |
| 1179 | } else if (bdb->version <= 197) { |
| 1180 | expected_size = 38; |
| 1181 | } else { |
| 1182 | expected_size = 38; |
| 1183 | BUILD_BUG_ON(sizeof(*p_child) < 38); |
| 1184 | DRM_DEBUG_DRIVER("Expected child device config size for VBT version %u not known; assuming %u\n", |
| 1185 | bdb->version, expected_size); |
| 1186 | } |
| 1187 | |
David Weinehall | e2d6cf7 | 2015-08-21 16:52:01 +0300 | [diff] [blame] | 1188 | /* Flag an error for unexpected size, but continue anyway. */ |
| 1189 | if (p_defs->child_dev_size != expected_size) |
| 1190 | DRM_ERROR("Unexpected child device config size %u (expected %u for VBT version %u)\n", |
| 1191 | p_defs->child_dev_size, expected_size, bdb->version); |
| 1192 | |
Ville Syrjälä | 52b69c8 | 2015-12-14 18:23:46 +0200 | [diff] [blame] | 1193 | /* The legacy sized child device config is the minimum we need. */ |
| 1194 | if (p_defs->child_dev_size < sizeof(struct old_child_dev_config)) { |
| 1195 | DRM_DEBUG_KMS("Child device config size %u is too small.\n", |
| 1196 | p_defs->child_dev_size); |
| 1197 | return; |
| 1198 | } |
| 1199 | |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1200 | /* get the block size of general definitions */ |
| 1201 | block_size = get_blocksize(p_defs); |
| 1202 | /* get the number of child device */ |
| 1203 | child_device_num = (block_size - sizeof(*p_defs)) / |
Ville Syrjälä | 90e4f15 | 2015-03-25 18:45:58 +0200 | [diff] [blame] | 1204 | p_defs->child_dev_size; |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1205 | count = 0; |
| 1206 | /* get the number of child device that is present */ |
| 1207 | for (i = 0; i < child_device_num; i++) { |
Ville Syrjälä | 90e4f15 | 2015-03-25 18:45:58 +0200 | [diff] [blame] | 1208 | p_child = child_device_ptr(p_defs, i); |
Paulo Zanoni | 768f69c | 2013-09-11 18:02:47 -0300 | [diff] [blame] | 1209 | if (!p_child->common.device_type) { |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1210 | /* skip the device block if device type is invalid */ |
| 1211 | continue; |
| 1212 | } |
| 1213 | count++; |
| 1214 | } |
| 1215 | if (!count) { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 1216 | DRM_DEBUG_KMS("no child dev is parsed from VBT\n"); |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1217 | return; |
| 1218 | } |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 1219 | dev_priv->vbt.child_dev = kcalloc(count, sizeof(*p_child), GFP_KERNEL); |
| 1220 | if (!dev_priv->vbt.child_dev) { |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1221 | DRM_DEBUG_KMS("No memory space for child device\n"); |
| 1222 | return; |
| 1223 | } |
| 1224 | |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 1225 | dev_priv->vbt.child_dev_num = count; |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1226 | count = 0; |
| 1227 | for (i = 0; i < child_device_num; i++) { |
Ville Syrjälä | 90e4f15 | 2015-03-25 18:45:58 +0200 | [diff] [blame] | 1228 | p_child = child_device_ptr(p_defs, i); |
Paulo Zanoni | 768f69c | 2013-09-11 18:02:47 -0300 | [diff] [blame] | 1229 | if (!p_child->common.device_type) { |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1230 | /* skip the device block if device type is invalid */ |
| 1231 | continue; |
| 1232 | } |
Shobhit Kumar | 3e6bd01 | 2014-05-27 19:33:59 +0530 | [diff] [blame] | 1233 | |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 1234 | child_dev_ptr = dev_priv->vbt.child_dev + count; |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1235 | count++; |
David Weinehall | e2d6cf7 | 2015-08-21 16:52:01 +0300 | [diff] [blame] | 1236 | |
| 1237 | /* |
| 1238 | * Copy as much as we know (sizeof) and is available |
| 1239 | * (child_dev_size) of the child device. Accessing the data must |
| 1240 | * depend on VBT version. |
| 1241 | */ |
| 1242 | memcpy(child_dev_ptr, p_child, |
| 1243 | min_t(size_t, p_defs->child_dev_size, sizeof(*p_child))); |
Shubhangi Shrivastava | 4e27bd5 | 2016-03-31 16:11:46 +0530 | [diff] [blame] | 1244 | |
| 1245 | /* |
| 1246 | * copied full block, now init values when they are not |
| 1247 | * available in current version |
| 1248 | */ |
| 1249 | if (bdb->version < 196) { |
| 1250 | /* Set default values for bits added from v196 */ |
| 1251 | child_dev_ptr->common.iboost = 0; |
| 1252 | child_dev_ptr->common.hpd_invert = 0; |
| 1253 | } |
| 1254 | |
| 1255 | if (bdb->version < 192) |
| 1256 | child_dev_ptr->common.lspcon = 0; |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1257 | } |
| 1258 | return; |
| 1259 | } |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1260 | |
Simon Que | 6a04002 | 2010-09-30 09:36:39 +0100 | [diff] [blame] | 1261 | static void |
| 1262 | init_vbt_defaults(struct drm_i915_private *dev_priv) |
| 1263 | { |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1264 | enum port port; |
Bryan Freed | 9a4114f | 2011-01-12 13:38:39 -0800 | [diff] [blame] | 1265 | |
Jani Nikula | 988c701 | 2015-03-27 00:20:19 +0200 | [diff] [blame] | 1266 | dev_priv->vbt.crt_ddc_pin = GMBUS_PIN_VGADDC; |
Simon Que | 6a04002 | 2010-09-30 09:36:39 +0100 | [diff] [blame] | 1267 | |
Jani Nikula | 56c4b63 | 2014-06-17 15:47:05 +0300 | [diff] [blame] | 1268 | /* Default to having backlight */ |
| 1269 | dev_priv->vbt.backlight.present = true; |
| 1270 | |
Simon Que | 6a04002 | 2010-09-30 09:36:39 +0100 | [diff] [blame] | 1271 | /* LFP panel data */ |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 1272 | dev_priv->vbt.lvds_dither = 1; |
| 1273 | dev_priv->vbt.lvds_vbt = 0; |
Simon Que | 6a04002 | 2010-09-30 09:36:39 +0100 | [diff] [blame] | 1274 | |
| 1275 | /* SDVO panel data */ |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 1276 | dev_priv->vbt.sdvo_lvds_vbt_mode = NULL; |
Simon Que | 6a04002 | 2010-09-30 09:36:39 +0100 | [diff] [blame] | 1277 | |
| 1278 | /* general features */ |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 1279 | dev_priv->vbt.int_tv_support = 1; |
| 1280 | dev_priv->vbt.int_crt_support = 1; |
Bryan Freed | 9a4114f | 2011-01-12 13:38:39 -0800 | [diff] [blame] | 1281 | |
| 1282 | /* Default to using SSC */ |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 1283 | dev_priv->vbt.lvds_use_ssc = 1; |
Duncan Laurie | f69e515 | 2013-11-13 17:59:43 -0800 | [diff] [blame] | 1284 | /* |
| 1285 | * Core/SandyBridge/IvyBridge use alternative (120MHz) reference |
| 1286 | * clock for LVDS. |
| 1287 | */ |
Jani Nikula | 98f3a1d | 2015-12-16 15:04:20 +0200 | [diff] [blame] | 1288 | dev_priv->vbt.lvds_ssc_freq = intel_bios_ssc_frequency(dev_priv, |
| 1289 | !HAS_PCH_SPLIT(dev_priv)); |
Ville Syrjälä | e91e941 | 2013-12-09 18:54:16 +0200 | [diff] [blame] | 1290 | DRM_DEBUG_KMS("Set default to SSC at %d kHz\n", dev_priv->vbt.lvds_ssc_freq); |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1291 | |
| 1292 | for (port = PORT_A; port < I915_MAX_PORTS; port++) { |
Paulo Zanoni | 311a209 | 2013-09-12 17:12:18 -0300 | [diff] [blame] | 1293 | struct ddi_vbt_port_info *info = |
| 1294 | &dev_priv->vbt.ddi_port_info[port]; |
| 1295 | |
Damien Lespiau | ce4dd49 | 2014-08-01 11:07:54 +0100 | [diff] [blame] | 1296 | info->hdmi_level_shift = HDMI_LEVEL_SHIFT_UNKNOWN; |
Paulo Zanoni | 311a209 | 2013-09-12 17:12:18 -0300 | [diff] [blame] | 1297 | |
| 1298 | info->supports_dvi = (port != PORT_A && port != PORT_E); |
| 1299 | info->supports_hdmi = info->supports_dvi; |
| 1300 | info->supports_dp = (port != PORT_E); |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1301 | } |
Simon Que | 6a04002 | 2010-09-30 09:36:39 +0100 | [diff] [blame] | 1302 | } |
| 1303 | |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1304 | static const struct bdb_header *get_bdb_header(const struct vbt_header *vbt) |
| 1305 | { |
| 1306 | const void *_vbt = vbt; |
| 1307 | |
| 1308 | return _vbt + vbt->bdb_offset; |
| 1309 | } |
| 1310 | |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1311 | /** |
| 1312 | * intel_bios_is_valid_vbt - does the given buffer contain a valid VBT |
| 1313 | * @buf: pointer to a buffer to validate |
| 1314 | * @size: size of the buffer |
| 1315 | * |
| 1316 | * Returns true on valid VBT. |
| 1317 | */ |
| 1318 | bool intel_bios_is_valid_vbt(const void *buf, size_t size) |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1319 | { |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1320 | const struct vbt_header *vbt = buf; |
Jani Nikula | dcb58a4 | 2015-05-12 15:41:32 +0300 | [diff] [blame] | 1321 | const struct bdb_header *bdb; |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1322 | |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1323 | if (!vbt) |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1324 | return false; |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1325 | |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1326 | if (sizeof(struct vbt_header) > size) { |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1327 | DRM_DEBUG_DRIVER("VBT header incomplete\n"); |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1328 | return false; |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1329 | } |
| 1330 | |
| 1331 | if (memcmp(vbt->signature, "$VBT", 4)) { |
| 1332 | DRM_DEBUG_DRIVER("VBT invalid signature\n"); |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1333 | return false; |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1334 | } |
| 1335 | |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1336 | if (vbt->bdb_offset + sizeof(struct bdb_header) > size) { |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1337 | DRM_DEBUG_DRIVER("BDB header incomplete\n"); |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1338 | return false; |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1339 | } |
| 1340 | |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1341 | bdb = get_bdb_header(vbt); |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1342 | if (vbt->bdb_offset + bdb->bdb_size > size) { |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1343 | DRM_DEBUG_DRIVER("BDB incomplete\n"); |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1344 | return false; |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1345 | } |
| 1346 | |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1347 | return vbt; |
Chris Wilson | 3dd4e84 | 2014-04-18 18:04:22 -0300 | [diff] [blame] | 1348 | } |
| 1349 | |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1350 | static const struct vbt_header *find_vbt(void __iomem *bios, size_t size) |
Jani Nikula | b34a991 | 2015-05-13 15:34:04 +0300 | [diff] [blame] | 1351 | { |
Jani Nikula | b34a991 | 2015-05-13 15:34:04 +0300 | [diff] [blame] | 1352 | size_t i; |
| 1353 | |
| 1354 | /* Scour memory looking for the VBT signature. */ |
| 1355 | for (i = 0; i + 4 < size; i++) { |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1356 | void *vbt; |
Williams, Dan J | 115719f | 2015-10-12 21:12:57 +0000 | [diff] [blame] | 1357 | |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1358 | if (ioread32(bios + i) != *((const u32 *) "$VBT")) |
| 1359 | continue; |
| 1360 | |
| 1361 | /* |
| 1362 | * This is the one place where we explicitly discard the address |
| 1363 | * space (__iomem) of the BIOS/VBT. |
| 1364 | */ |
| 1365 | vbt = (void __force *) bios + i; |
| 1366 | if (intel_bios_is_valid_vbt(vbt, size - i)) |
| 1367 | return vbt; |
| 1368 | |
| 1369 | break; |
Jani Nikula | b34a991 | 2015-05-13 15:34:04 +0300 | [diff] [blame] | 1370 | } |
| 1371 | |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1372 | return NULL; |
Jani Nikula | b34a991 | 2015-05-13 15:34:04 +0300 | [diff] [blame] | 1373 | } |
| 1374 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1375 | /** |
Jani Nikula | 8b8e1a8 | 2015-12-14 12:50:49 +0200 | [diff] [blame] | 1376 | * intel_bios_init - find VBT and initialize settings from the BIOS |
Jani Nikula | dd97950 | 2015-12-21 15:10:52 +0200 | [diff] [blame] | 1377 | * @dev_priv: i915 device instance |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1378 | * |
| 1379 | * Loads the Video BIOS and checks that the VBT exists. Sets scratch registers |
| 1380 | * to appropriate values. |
| 1381 | * |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1382 | * Returns 0 on success, nonzero on failure. |
| 1383 | */ |
Dan Carpenter | 0317c6c | 2012-06-27 12:10:30 +0300 | [diff] [blame] | 1384 | int |
Jani Nikula | 98f3a1d | 2015-12-16 15:04:20 +0200 | [diff] [blame] | 1385 | intel_bios_init(struct drm_i915_private *dev_priv) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1386 | { |
Jani Nikula | 98f3a1d | 2015-12-16 15:04:20 +0200 | [diff] [blame] | 1387 | struct pci_dev *pdev = dev_priv->dev->pdev; |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1388 | const struct vbt_header *vbt = dev_priv->opregion.vbt; |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1389 | const struct bdb_header *bdb; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1390 | u8 __iomem *bios = NULL; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1391 | |
Jani Nikula | 98f3a1d | 2015-12-16 15:04:20 +0200 | [diff] [blame] | 1392 | if (HAS_PCH_NOP(dev_priv)) |
Ben Widawsky | ab5c608 | 2013-04-05 13:12:41 -0700 | [diff] [blame] | 1393 | return -ENODEV; |
| 1394 | |
Simon Que | 6a04002 | 2010-09-30 09:36:39 +0100 | [diff] [blame] | 1395 | init_vbt_defaults(dev_priv); |
Chris Wilson | f899fc6 | 2010-07-20 15:44:45 -0700 | [diff] [blame] | 1396 | |
Jani Nikula | f0067a3 | 2015-12-15 13:16:15 +0200 | [diff] [blame] | 1397 | if (!vbt) { |
Jani Nikula | b34a991 | 2015-05-13 15:34:04 +0300 | [diff] [blame] | 1398 | size_t size; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1399 | |
| 1400 | bios = pci_map_rom(pdev, &size); |
| 1401 | if (!bios) |
| 1402 | return -1; |
| 1403 | |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1404 | vbt = find_vbt(bios, size); |
| 1405 | if (!vbt) { |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1406 | pci_unmap_rom(pdev, bios); |
| 1407 | return -1; |
| 1408 | } |
Jani Nikula | e2051c4 | 2015-12-15 13:14:52 +0200 | [diff] [blame] | 1409 | |
| 1410 | DRM_DEBUG_KMS("Found valid VBT in PCI ROM\n"); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1411 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1412 | |
Jani Nikula | caf37fa | 2015-12-14 12:50:47 +0200 | [diff] [blame] | 1413 | bdb = get_bdb_header(vbt); |
| 1414 | |
Jani Nikula | 3556dd4 | 2015-12-16 15:04:19 +0200 | [diff] [blame] | 1415 | DRM_DEBUG_KMS("VBT signature \"%.*s\", BDB version %d\n", |
| 1416 | (int)sizeof(vbt->signature), vbt->signature, bdb->version); |
Jani Nikula | e2051c4 | 2015-12-15 13:14:52 +0200 | [diff] [blame] | 1417 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1418 | /* Grab useful general definitions */ |
| 1419 | parse_general_features(dev_priv, bdb); |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 1420 | parse_general_definitions(dev_priv, bdb); |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 1421 | parse_lfp_panel_data(dev_priv, bdb); |
Jani Nikula | f00076d | 2013-12-14 20:38:29 -0200 | [diff] [blame] | 1422 | parse_lfp_backlight(dev_priv, bdb); |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 1423 | parse_sdvo_panel_data(dev_priv, bdb); |
yakui_zhao | 9b9d172 | 2009-05-31 17:17:17 +0800 | [diff] [blame] | 1424 | parse_sdvo_device_mapping(dev_priv, bdb); |
Zhao Yakui | 6363ee6 | 2009-11-24 09:48:44 +0800 | [diff] [blame] | 1425 | parse_device_mapping(dev_priv, bdb); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1426 | parse_driver_features(dev_priv, bdb); |
Zhenyu Wang | 500a8cc | 2010-01-13 11:19:52 +0800 | [diff] [blame] | 1427 | parse_edp(dev_priv, bdb); |
Rodrigo Vivi | bfd7ebd | 2014-11-14 08:52:30 -0800 | [diff] [blame] | 1428 | parse_psr(dev_priv, bdb); |
Jani Nikula | 0f8689f | 2015-12-21 15:10:54 +0200 | [diff] [blame] | 1429 | parse_mipi_config(dev_priv, bdb); |
| 1430 | parse_mipi_sequence(dev_priv, bdb); |
Paulo Zanoni | 6acab15 | 2013-09-12 17:06:24 -0300 | [diff] [blame] | 1431 | parse_ddi_ports(dev_priv, bdb); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1432 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1433 | if (bios) |
| 1434 | pci_unmap_rom(pdev, bios); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1435 | |
| 1436 | return 0; |
| 1437 | } |
Jani Nikula | 3bdd14d | 2016-03-16 12:43:29 +0200 | [diff] [blame] | 1438 | |
| 1439 | /** |
| 1440 | * intel_bios_is_tv_present - is integrated TV present in VBT |
| 1441 | * @dev_priv: i915 device instance |
| 1442 | * |
| 1443 | * Return true if TV is present. If no child devices were parsed from VBT, |
| 1444 | * assume TV is present. |
| 1445 | */ |
| 1446 | bool intel_bios_is_tv_present(struct drm_i915_private *dev_priv) |
| 1447 | { |
| 1448 | union child_device_config *p_child; |
| 1449 | int i; |
| 1450 | |
| 1451 | if (!dev_priv->vbt.int_tv_support) |
| 1452 | return false; |
| 1453 | |
| 1454 | if (!dev_priv->vbt.child_dev_num) |
| 1455 | return true; |
| 1456 | |
| 1457 | for (i = 0; i < dev_priv->vbt.child_dev_num; i++) { |
| 1458 | p_child = dev_priv->vbt.child_dev + i; |
| 1459 | /* |
| 1460 | * If the device type is not TV, continue. |
| 1461 | */ |
| 1462 | switch (p_child->old.device_type) { |
| 1463 | case DEVICE_TYPE_INT_TV: |
| 1464 | case DEVICE_TYPE_TV: |
| 1465 | case DEVICE_TYPE_TV_SVIDEO_COMPOSITE: |
| 1466 | break; |
| 1467 | default: |
| 1468 | continue; |
| 1469 | } |
| 1470 | /* Only when the addin_offset is non-zero, it is regarded |
| 1471 | * as present. |
| 1472 | */ |
| 1473 | if (p_child->old.addin_offset) |
| 1474 | return true; |
| 1475 | } |
| 1476 | |
| 1477 | return false; |
| 1478 | } |
Jani Nikula | 5a69d13 | 2016-03-16 12:43:30 +0200 | [diff] [blame] | 1479 | |
| 1480 | /** |
| 1481 | * intel_bios_is_lvds_present - is LVDS present in VBT |
| 1482 | * @dev_priv: i915 device instance |
| 1483 | * @i2c_pin: i2c pin for LVDS if present |
| 1484 | * |
| 1485 | * Return true if LVDS is present. If no child devices were parsed from VBT, |
| 1486 | * assume LVDS is present. |
| 1487 | */ |
| 1488 | bool intel_bios_is_lvds_present(struct drm_i915_private *dev_priv, u8 *i2c_pin) |
| 1489 | { |
| 1490 | int i; |
| 1491 | |
| 1492 | if (!dev_priv->vbt.child_dev_num) |
| 1493 | return true; |
| 1494 | |
| 1495 | for (i = 0; i < dev_priv->vbt.child_dev_num; i++) { |
| 1496 | union child_device_config *uchild = dev_priv->vbt.child_dev + i; |
| 1497 | struct old_child_dev_config *child = &uchild->old; |
| 1498 | |
| 1499 | /* If the device type is not LFP, continue. |
| 1500 | * We have to check both the new identifiers as well as the |
| 1501 | * old for compatibility with some BIOSes. |
| 1502 | */ |
| 1503 | if (child->device_type != DEVICE_TYPE_INT_LFP && |
| 1504 | child->device_type != DEVICE_TYPE_LFP) |
| 1505 | continue; |
| 1506 | |
| 1507 | if (intel_gmbus_is_valid_pin(dev_priv, child->i2c_pin)) |
| 1508 | *i2c_pin = child->i2c_pin; |
| 1509 | |
| 1510 | /* However, we cannot trust the BIOS writers to populate |
| 1511 | * the VBT correctly. Since LVDS requires additional |
| 1512 | * information from AIM blocks, a non-zero addin offset is |
| 1513 | * a good indicator that the LVDS is actually present. |
| 1514 | */ |
| 1515 | if (child->addin_offset) |
| 1516 | return true; |
| 1517 | |
| 1518 | /* But even then some BIOS writers perform some black magic |
| 1519 | * and instantiate the device without reference to any |
| 1520 | * additional data. Trust that if the VBT was written into |
| 1521 | * the OpRegion then they have validated the LVDS's existence. |
| 1522 | */ |
| 1523 | if (dev_priv->opregion.vbt) |
| 1524 | return true; |
| 1525 | } |
| 1526 | |
| 1527 | return false; |
| 1528 | } |
Jani Nikula | 951d9ef | 2016-03-16 12:43:31 +0200 | [diff] [blame] | 1529 | |
| 1530 | /** |
| 1531 | * intel_bios_is_port_edp - is the device in given port eDP |
| 1532 | * @dev_priv: i915 device instance |
| 1533 | * @port: port to check |
| 1534 | * |
| 1535 | * Return true if the device in %port is eDP. |
| 1536 | */ |
| 1537 | bool intel_bios_is_port_edp(struct drm_i915_private *dev_priv, enum port port) |
| 1538 | { |
| 1539 | union child_device_config *p_child; |
| 1540 | static const short port_mapping[] = { |
| 1541 | [PORT_B] = DVO_PORT_DPB, |
| 1542 | [PORT_C] = DVO_PORT_DPC, |
| 1543 | [PORT_D] = DVO_PORT_DPD, |
| 1544 | [PORT_E] = DVO_PORT_DPE, |
| 1545 | }; |
| 1546 | int i; |
| 1547 | |
| 1548 | if (!dev_priv->vbt.child_dev_num) |
| 1549 | return false; |
| 1550 | |
| 1551 | for (i = 0; i < dev_priv->vbt.child_dev_num; i++) { |
| 1552 | p_child = dev_priv->vbt.child_dev + i; |
| 1553 | |
| 1554 | if (p_child->common.dvo_port == port_mapping[port] && |
| 1555 | (p_child->common.device_type & DEVICE_TYPE_eDP_BITS) == |
| 1556 | (DEVICE_TYPE_eDP & DEVICE_TYPE_eDP_BITS)) |
| 1557 | return true; |
| 1558 | } |
| 1559 | |
| 1560 | return false; |
| 1561 | } |
Jani Nikula | 7137aec | 2016-03-16 12:43:32 +0200 | [diff] [blame] | 1562 | |
| 1563 | /** |
| 1564 | * intel_bios_is_dsi_present - is DSI present in VBT |
| 1565 | * @dev_priv: i915 device instance |
| 1566 | * @port: port for DSI if present |
| 1567 | * |
| 1568 | * Return true if DSI is present, and return the port in %port. |
| 1569 | */ |
| 1570 | bool intel_bios_is_dsi_present(struct drm_i915_private *dev_priv, |
| 1571 | enum port *port) |
| 1572 | { |
| 1573 | union child_device_config *p_child; |
| 1574 | u8 dvo_port; |
| 1575 | int i; |
| 1576 | |
| 1577 | for (i = 0; i < dev_priv->vbt.child_dev_num; i++) { |
| 1578 | p_child = dev_priv->vbt.child_dev + i; |
| 1579 | |
| 1580 | if (!(p_child->common.device_type & DEVICE_TYPE_MIPI_OUTPUT)) |
| 1581 | continue; |
| 1582 | |
| 1583 | dvo_port = p_child->common.dvo_port; |
| 1584 | |
| 1585 | switch (dvo_port) { |
| 1586 | case DVO_PORT_MIPIA: |
| 1587 | case DVO_PORT_MIPIC: |
Jani Nikula | 7caaef3 | 2016-03-16 12:43:34 +0200 | [diff] [blame] | 1588 | if (port) |
| 1589 | *port = dvo_port - DVO_PORT_MIPIA; |
Jani Nikula | 7137aec | 2016-03-16 12:43:32 +0200 | [diff] [blame] | 1590 | return true; |
| 1591 | case DVO_PORT_MIPIB: |
| 1592 | case DVO_PORT_MIPID: |
| 1593 | DRM_DEBUG_KMS("VBT has unsupported DSI port %c\n", |
| 1594 | port_name(dvo_port - DVO_PORT_MIPIA)); |
| 1595 | break; |
| 1596 | } |
| 1597 | } |
| 1598 | |
| 1599 | return false; |
| 1600 | } |
Shubhangi Shrivastava | d252bf6 | 2016-03-31 16:11:47 +0530 | [diff] [blame^] | 1601 | |
| 1602 | /** |
| 1603 | * intel_bios_is_port_hpd_inverted - is HPD inverted for %port |
| 1604 | * @dev_priv: i915 device instance |
| 1605 | * @port: port to check |
| 1606 | * |
| 1607 | * Return true if HPD should be inverted for %port. |
| 1608 | */ |
| 1609 | bool |
| 1610 | intel_bios_is_port_hpd_inverted(struct drm_i915_private *dev_priv, |
| 1611 | enum port port) |
| 1612 | { |
| 1613 | int i; |
| 1614 | |
| 1615 | if (WARN_ON_ONCE(!IS_BROXTON(dev_priv))) |
| 1616 | return false; |
| 1617 | |
| 1618 | for (i = 0; i < dev_priv->vbt.child_dev_num; i++) { |
| 1619 | if (!dev_priv->vbt.child_dev[i].common.hpd_invert) |
| 1620 | continue; |
| 1621 | |
| 1622 | switch (dev_priv->vbt.child_dev[i].common.dvo_port) { |
| 1623 | case DVO_PORT_DPA: |
| 1624 | case DVO_PORT_HDMIA: |
| 1625 | if (port == PORT_A) |
| 1626 | return true; |
| 1627 | break; |
| 1628 | case DVO_PORT_DPB: |
| 1629 | case DVO_PORT_HDMIB: |
| 1630 | if (port == PORT_B) |
| 1631 | return true; |
| 1632 | break; |
| 1633 | case DVO_PORT_DPC: |
| 1634 | case DVO_PORT_HDMIC: |
| 1635 | if (port == PORT_C) |
| 1636 | return true; |
| 1637 | break; |
| 1638 | default: |
| 1639 | break; |
| 1640 | } |
| 1641 | } |
| 1642 | |
| 1643 | return false; |
| 1644 | } |