|
@@ -356,7 +356,10 @@ parse_general_features(struct drm_i915_private *dev_priv,
|
|
general = find_section(bdb, BDB_GENERAL_FEATURES);
|
|
general = find_section(bdb, BDB_GENERAL_FEATURES);
|
|
if (general) {
|
|
if (general) {
|
|
dev_priv->vbt.int_tv_support = general->int_tv_support;
|
|
dev_priv->vbt.int_tv_support = general->int_tv_support;
|
|
- dev_priv->vbt.int_crt_support = general->int_crt_support;
|
|
|
|
|
|
+ /* int_crt_support can't be trusted on earlier platforms */
|
|
|
|
+ if (bdb->version >= 155 &&
|
|
|
|
+ (HAS_DDI(dev_priv) || IS_VALLEYVIEW(dev_priv)))
|
|
|
|
+ dev_priv->vbt.int_crt_support = general->int_crt_support;
|
|
dev_priv->vbt.lvds_use_ssc = general->enable_ssc;
|
|
dev_priv->vbt.lvds_use_ssc = general->enable_ssc;
|
|
dev_priv->vbt.lvds_ssc_freq =
|
|
dev_priv->vbt.lvds_ssc_freq =
|
|
intel_bios_ssc_frequency(dev, general->ssc_freq);
|
|
intel_bios_ssc_frequency(dev, general->ssc_freq);
|