mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 11:50:43 +09:00
ASoc: q6afe: add support to get port direction
[ Upstream commit4a95737440] This patch adds support to q6afe_is_rx_port() to get direction of DSP BE dai port, this is useful for setting dailink directions correctly. Fixes:c25e295cd7(ASoC: qcom: Add support to parse common audio device nodes) Reported-by: John Stultz <john.stultz@linaro.org> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Reviewed-by: Vinod Koul <vkoul@kernel.org> Link: https://lore.kernel.org/r/20200612123711.29130-1-srinivas.kandagatla@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Sasha Levin
parent
92444a57e3
commit
47c7ae0ca9
@@ -800,6 +800,14 @@ int q6afe_get_port_id(int index)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(q6afe_get_port_id);
|
||||
|
||||
int q6afe_is_rx_port(int index)
|
||||
{
|
||||
if (index < 0 || index >= AFE_PORT_MAX)
|
||||
return -EINVAL;
|
||||
|
||||
return port_maps[index].is_rx;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(q6afe_is_rx_port);
|
||||
static int afe_apr_send_pkt(struct q6afe *afe, struct apr_pkt *pkt,
|
||||
struct q6afe_port *port)
|
||||
{
|
||||
|
||||
@@ -198,6 +198,7 @@ int q6afe_port_start(struct q6afe_port *port);
|
||||
int q6afe_port_stop(struct q6afe_port *port);
|
||||
void q6afe_port_put(struct q6afe_port *port);
|
||||
int q6afe_get_port_id(int index);
|
||||
int q6afe_is_rx_port(int index);
|
||||
void q6afe_hdmi_port_prepare(struct q6afe_port *port,
|
||||
struct q6afe_hdmi_cfg *cfg);
|
||||
void q6afe_slim_port_prepare(struct q6afe_port *port,
|
||||
|
||||
Reference in New Issue
Block a user