drm/i915/audio: extend get_saved_enc() to support more scenarios
authorLibin Yang <libin.yang@linux.intel.com>
Thu, 1 Dec 2016 05:17:18 +0000 (13:17 +0800)
committerJani Nikula <jani.nikula@intel.com>
Fri, 2 Dec 2016 14:20:37 +0000 (16:20 +0200)
commit31613268c0a6f7abdb0c19487a084249bcf203ba
treeba0cb138c6169e62299214bddb3760c334ae6579
parenta9a251c2aea5aaeb004eac4e6c2b86383347ce9f
drm/i915/audio: extend get_saved_enc() to support more scenarios

In initialization, audio driver will call functions get_eld() and etc.
But at that time, audio driver may not know whether it is DP MST or not.
In the original function get_saved_enc(), if it is DP MST, it requires to
set the pipe to the correct value, otherwise, pipe to be -1.

Although audio driver can get the knowledge whether it is in DP MST mode
or not by reading the codec register. It will drop performance each time
before it calls the get_eld and other similar functions. As gfx driver can
easily know whether it is in DP MST mode or not. Let's extend the
get_saved_enc() function to handle the situation that audio driver
still sends the device id info even it is in DP SST mode and return
the correct intel_encoder instead of panic.

Signed-off-by: Libin Yang <libin.yang@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1480569439-54252-1-git-send-email-libin.yang@intel.com
drivers/gpu/drm/i915/intel_audio.c