Commit f722b8c1 authored by Bob Paauwe's avatar Bob Paauwe Committed by Lucas De Marchi
Browse files

drm/i915/ehl: All EHL ports are combo phys



Unlike ICL, all of the output ports are combo phys so just return
true in intel_port_is_combophy for all EHL ports to indicate that.

v2: Return false in intel_port_is_tc since no EHL ports are TC. (Jose)

Cc: Jose Souza <jose.souza@intel.com>
Signed-off-by: default avatarBob Paauwe <bob.j.paauwe@intel.com>
Signed-off-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: default avatarJosé Roberto de Souza <jose.souza@intel.com>
Signed-off-by: default avatarLucas De Marchi <lucas.demarchi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190320211547.519266-1-bob.j.paauwe@intel.com
parent 7881e605
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -6180,6 +6180,9 @@ bool intel_port_is_combophy(struct drm_i915_private *dev_priv, enum port port)
	if (port == PORT_NONE)
		return false;

	if (IS_ELKHARTLAKE(dev_priv))
		return port <= PORT_C;

	if (INTEL_GEN(dev_priv) >= 11)
		return port <= PORT_B;

@@ -6188,7 +6191,7 @@ bool intel_port_is_combophy(struct drm_i915_private *dev_priv, enum port port)

bool intel_port_is_tc(struct drm_i915_private *dev_priv, enum port port)
{
	if (INTEL_GEN(dev_priv) >= 11)
	if (INTEL_GEN(dev_priv) >= 11 && !IS_ELKHARTLAKE(dev_priv))
		return port >= PORT_C && port <= PORT_F;

	return false;