Commit 1965dbd5 authored by Ville Syrjälä's avatar Ville Syrjälä

drm/i915/bios: Use the platform's port_mask when there is no VBT

When we have no VBT we currently assume ports A-F are
all pontially valid for every platform. That is nonsense.
Grab the bitmask of valid ports from the runtime info
instead.

Although the defaults we actually fill here look semi-sensible
only for hsw-skl era hardware. Dunno if we should try to do
something more appropriate here for other platforms,
or just try to nuke the whole thing?
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240319092443.15769-2-ville.syrjala@linux.intel.comReviewed-by: default avatarJani Nikula <jani.nikula@intel.com>
parent 26410896
...@@ -2890,9 +2890,8 @@ init_vbt_panel_defaults(struct intel_panel *panel) ...@@ -2890,9 +2890,8 @@ init_vbt_panel_defaults(struct intel_panel *panel)
static void static void
init_vbt_missing_defaults(struct drm_i915_private *i915) init_vbt_missing_defaults(struct drm_i915_private *i915)
{ {
unsigned int ports = DISPLAY_RUNTIME_INFO(i915)->port_mask;
enum port port; enum port port;
int ports = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) |
BIT(PORT_D) | BIT(PORT_E) | BIT(PORT_F);
if (!HAS_DDI(i915) && !IS_CHERRYVIEW(i915)) if (!HAS_DDI(i915) && !IS_CHERRYVIEW(i915))
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment