Commit d577cf76 authored by Kai Vehmanen's avatar Kai Vehmanen Committed by Takashi Iwai

ALSA: hda: hdmi - fix port numbering for ICL and TGL platforms

Semantics of port#0 differ between ICL and TGL:

 ICL port#0   -> never used for HDAudio
 ICL port#1   -> should be mapped to first pin (0x04)
 TGL port#0   -> typically not used, but HW has the support,
		 so should be mapped to first pin (0x04)
 TGL port#1   -> should be mapped to 2nd pin (0x06)

Refactor the port mapping logic to allow to take the above
differences into account. Fixes issues with HDAudio on some
TGL platforms.
Co-developed-by: default avatarPan Xiuli <xiuli.pan@linux.intel.com>
Signed-off-by: default avatarPan Xiuli <xiuli.pan@linux.intel.com>
Signed-off-by: default avatarKai Vehmanen <kai.vehmanen@linux.intel.com>
Link: https://lore.kernel.org/r/20191115124449.20512-2-kai.vehmanen@linux.intel.comSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent f35ef592
...@@ -2664,7 +2664,7 @@ static int intel_pin2port(void *audio_ptr, int pin_nid) ...@@ -2664,7 +2664,7 @@ static int intel_pin2port(void *audio_ptr, int pin_nid)
*/ */
for (i = 0; i < spec->port_num; i++) { for (i = 0; i < spec->port_num; i++) {
if (pin_nid == spec->port_map[i]) if (pin_nid == spec->port_map[i])
return i + 1; return i;
} }
/* return -1 if pin number exceeds our expectation */ /* return -1 if pin number exceeds our expectation */
...@@ -2684,9 +2684,9 @@ static int intel_port2pin(struct hda_codec *codec, int port) ...@@ -2684,9 +2684,9 @@ static int intel_port2pin(struct hda_codec *codec, int port)
return port + intel_base_nid(codec) - 1; return port + intel_base_nid(codec) - 1;
} }
if (port < 1 || port > spec->port_num) if (port < 0 || port >= spec->port_num)
return 0; return 0;
return spec->port_map[port - 1]; return spec->port_map[port];
} }
static void intel_pin_eld_notify(void *audio_ptr, int port, int pipe) static void intel_pin_eld_notify(void *audio_ptr, int port, int pipe)
...@@ -2838,9 +2838,9 @@ static int patch_i915_icl_hdmi(struct hda_codec *codec) ...@@ -2838,9 +2838,9 @@ static int patch_i915_icl_hdmi(struct hda_codec *codec)
{ {
/* /*
* pin to port mapping table where the value indicate the pin number and * pin to port mapping table where the value indicate the pin number and
* the index indicate the port number with 1 base. * the index indicate the port number.
*/ */
static const int map[] = {0x4, 0x6, 0x8, 0xa, 0xb}; static const int map[] = {0x0, 0x4, 0x6, 0x8, 0xa, 0xb};
return intel_hsw_common_init(codec, 0x02, map, ARRAY_SIZE(map)); return intel_hsw_common_init(codec, 0x02, map, ARRAY_SIZE(map));
} }
...@@ -2849,7 +2849,7 @@ static int patch_i915_tgl_hdmi(struct hda_codec *codec) ...@@ -2849,7 +2849,7 @@ static int patch_i915_tgl_hdmi(struct hda_codec *codec)
{ {
/* /*
* pin to port mapping table where the value indicate the pin number and * pin to port mapping table where the value indicate the pin number and
* the index indicate the port number with 1 base. * the index indicate the port number.
*/ */
static const int map[] = {0x4, 0x6, 0x8, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf}; static const int map[] = {0x4, 0x6, 0x8, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf};
......
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