All of lore.kernel.org
 help / color / mirror / Atom feed
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Bjorn Andersson <bjorn.andersson@linaro.org>
Cc: Mark Rutland <mark.rutland@arm.com>,
	devicetree@vger.kernel.org, alsa-devel@alsa-project.org,
	Banajit Goswami <bgoswami@codeaurora.org>,
	linux-arm-msm@vger.kernel.org, Patrick Lai <plai@codeaurora.org>,
	Takashi Iwai <tiwai@suse.com>,
	sboyd@codeaurora.org, Liam Girdwood <lgirdwood@gmail.com>,
	Rob Herring <robh+dt@kernel.org>,
	David Brown <david.brown@linaro.org>,
	Mark Brown <broonie@kernel.org>,
	linux-arm-kernel@lists.infradead.org,
	Andy Gross <andy.gross@linaro.org>,
	linux-soc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [RESEND PATCH v2 10/15] ASoC: qcom: qdsp6: Add support to q6routing driver
Date: Wed, 3 Jan 2018 16:27:08 +0000	[thread overview]
Message-ID: <c11b49c8-3022-5591-41b1-d7be7ae6d17a@linaro.org> (raw)
In-Reply-To: <20180102230007.GR478@tuxbook>



On 02/01/18 23:00, Bjorn Andersson wrote:
> On Thu 14 Dec 09:33 PST 2017, srinivas.kandagatla@linaro.org wrote:
> 
>> From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
>>
>> This patch adds support to q6 routing driver which configures route
>> between ASM and AFE module using ADM apis.
>>
>> This driver uses dapm widgets to setup the matrix between AFE ports and
>> ASM streams.
>>
> 
> Why is this a separate driver from the q6adm?

This is actually exposing the mixer controls for routing streams on to 
different audio sink/sources using a matrix.

> 
>> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
>> ---
>>   sound/soc/qcom/Kconfig           |   5 +
>>   sound/soc/qcom/qdsp6/Makefile    |   1 +
>>   sound/soc/qcom/qdsp6/q6routing.c | 386 +++++++++++++++++++++++++++++++++++++++
>>   sound/soc/qcom/qdsp6/q6routing.h |   9 +
>>   4 files changed, 401 insertions(+)
>>   create mode 100644 sound/soc/qcom/qdsp6/q6routing.c
>>   create mode 100644 sound/soc/qcom/qdsp6/q6routing.h

>> diff --git a/sound/soc/qcom/qdsp6/q6routing.c b/sound/soc/qcom/qdsp6/q6routing.c


>> +/**
>> + * q6routing_reg_phy_stream() - Register a new stream for route setup
>> + *
>> + * @fedai_id: Frontend dai id.
>> + * @perf_mode: Performace mode.
> 
> "Performance"
yep.

> 
>> + * @stream_id: ASM stream id to map.
>> + * @stream_type: Direction of stream
>> + *
>> + * Return: Will be an negative on error or a zero on success.
>> + */
>> +int q6routing_reg_phy_stream(int fedai_id, int perf_mode,
> 
> q6routing_stream_open() ?

sure if it helps reading.

> 
>> +			   int stream_id, int stream_type)
>> +{
>> +	int j, topology, num_copps = 0;
>> +	struct route_payload payload;
>> +	int copp_idx;
>> +	struct session_data *session;
>> +
>> +	if (!routing_data) {
>> +		pr_err("Routing driver not yet ready\n");
>> +		return -EINVAL;
>> +	}
>> +
>> +	session = &routing_data->sessions[stream_id - 1];
>> +	mutex_lock(&routing_data->lock);
>> +	session->fedai_id = fedai_id;
>> +	payload.num_copps = 0; /* only RX needs to use payload */
>> +	topology = NULL_COPP_TOPOLOGY;
>> +	copp_idx = q6adm_open(routing_data->dev, session->port_id,
>> +			      session->path_type, session->sample_rate,
>> +			      session->channels, topology, perf_mode,
>> +			      session->bits_per_sample, 0, 0);
>> +	if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
> 
> Make q6adm_open() not return >= MAX_COPPS_PER_PORT.
> 
> And drop the extra parenthesis.
> 
>> +		mutex_unlock(&routing_data->lock);
>> +		return -EINVAL;
>> +	}
>> +
>> +	set_bit(copp_idx, &session->copp_map);
>> +	for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
> 
> Use for_each_set_bit()
> 
>> +		unsigned long copp = session->copp_map;
>> +
>> +		if (test_bit(j, &copp)) {
>> +			payload.port_id[num_copps] = session->port_id;
>> +			payload.copp_idx[num_copps] = j;
>> +			num_copps++;
>> +		}
>> +	}
>> +
>> +	if (num_copps) {
>> +		payload.num_copps = num_copps;
>> +		payload.session_id = stream_id;
>> +		q6adm_matrix_map(routing_data->dev, session->path_type,
>> +				 payload, perf_mode);
>> +	}
>> +	mutex_unlock(&routing_data->lock);
>> +
>> +	return 0;
>> +}
>> +EXPORT_SYMBOL_GPL(q6routing_reg_phy_stream);
>> +
>> +static struct session_data *routing_get_session(struct msm_routing_data *data,
>> +						int port_id, int port_type)
> 
> port_type is ignored

It will be used once we add capture support.

> 
>> +{
>> +	int i;
>> +
>> +	for (i = 0; i < MAX_SESSIONS; i++)
>> +		if (port_id == data->sessions[i].port_id)
>> +			return &data->sessions[i];
>> +
>> +	return NULL;
>> +}
>> +

>> +/**
>> + * q6routing_dereg_phy_stream() - Deregister a stream
>> + *
>> + * @fedai_id: Frontend dai id.
>> + * @stream_type: Direction of stream
>> + *
>> + * Return: Will be an negative on error or a zero on success.
>> + */
>> +void q6routing_dereg_phy_stream(int fedai_id, int stream_type)
> 
> q6routing_stream_close()?
> 
will rename it.
>> +{
>> +	struct session_data *session;
>> +	int idx;
>> +
>> +	session = get_session_from_id(routing_data, fedai_id);
>> +	if (!session)
>> +		return;
>> +
>> +	for_each_set_bit(idx, &session->copp_map, MAX_COPPS_PER_PORT)
>> +		q6adm_close(routing_data->dev, session->port_id,
>> +			    session->perf_mode, idx);
>> +
>> +	session->fedai_id = -1;
>> +	session->copp_map = 0;
>> +}
>> +EXPORT_SYMBOL_GPL(q6routing_dereg_phy_stream);
>> +

>> +


>> +
>> +static const struct snd_soc_dapm_widget msm_qdsp6_widgets[] = {
>> +	/* Frontend AIF */
>> +	/* Widget name equals to Front-End DAI name<Need confirmation>,
> 
> Perhaps this should be confirmed and the comment updated?
> 

Some leftover from old code...

>> +	 * Stream name must contains substring of front-end dai name
>> +	 */
>> +	SND_SOC_DAPM_AIF_IN("MM_DL1", "MultiMedia1 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL2", "MultiMedia2 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL3", "MultiMedia3 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL4", "MultiMedia4 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL5", "MultiMedia5 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL6", "MultiMedia6 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL7", "MultiMedia7 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL8", "MultiMedia8 Playback", 0, 0, 0, 0),
>> +
>> +	/* Mixer definitions */
>> +	SND_SOC_DAPM_MIXER("HDMI Mixer", SND_SOC_NOPM, 0, 0,
>> +			   hdmi_mixer_controls,
>> +			   ARRAY_SIZE(hdmi_mixer_controls)),
>> +};
>
>> +static int routing_hw_params(struct snd_pcm_substream *substream,
>> +				     struct snd_pcm_hw_params *params)
>> +{
>> +	struct snd_soc_pcm_runtime *rtd = substream->private_data;
>> +	unsigned int be_id = rtd->cpu_dai->id;
>> +	struct snd_soc_platform *platform = rtd->platform;
>> +	struct msm_routing_data *data = snd_soc_platform_get_drvdata(platform);
>> +	struct session_data *session;
>> +	int port_id, port_type, path_type, bits_per_sample;
> 
> bits_per_sample is likely unused.
> 
yep.

>> +
>> +	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
>> +		path_type = ADM_PATH_PLAYBACK;
>> +		port_type = MSM_AFE_PORT_TYPE_RX;
>> +	}
>> +
>> +	port_id = be_id;
> 
> Why alias this variable?
will fix this in next version.

> 
>> +
>> +	session = routing_get_session(data, port_id, port_type);
>> +
>> +	if (!session) {
>> +		pr_err("No session matrix setup yet..\n");
>> +		return -EINVAL;
>> +	}
>> +
>> +	mutex_lock(&data->lock);
>> +
>> +	session->path_type = path_type;
>> +	session->sample_rate = params_rate(params);
>> +	session->channels = params_channels(params);
>> +	session->format = params_format(params);
>> +
>> +	if (session->format == SNDRV_PCM_FORMAT_S16_LE)
>> +		session->bits_per_sample = 16;
>> +	else if (session->format == SNDRV_PCM_FORMAT_S24_LE)
>> +		bits_per_sample = 24;
> 
> session-> ?

I agree, will fix it.

> 
> Perhaps switch on params_format(params) instead? And fail in the default
> case.
will give that a go.

> 
>> +
>> +	mutex_unlock(&data->lock);
>> +	return 0;
>> +}
>> +


>> +static struct snd_pcm_ops q6pcm_routing_ops = {
>> +	.hw_params = routing_hw_params,
>> +	.close = routing_close,
>> +	.prepare = routing_prepare,
>> +};
>> +
>> +/* Not used but frame seems to require it */
> 
> Remove comment?
> 
looks like leftover.. will remove it.

[...]
>> +
>> +static int q6pcm_routing_remove(struct platform_device *pdev)
>> +{
> 
> As you return here routing_data will be freed.  The early check in
> q6routing_reg_phy_stream() seems to indicate that this driver can be
> called even though the routing device isn't available.
> 
> So you probably want to clear that variable, at least.
sure, will fix this in next version.

> 
>> +	return 0;
>> +}
>> +
>> +static struct platform_driver q6pcm_routing_driver = {
>> +	.driver = {
>> +		   .name = "q6routing",
>> +		   .owner = THIS_MODULE,
> 
> Drop .owner
> 
yep.
>> +		   },
>> +	.probe = q6pcm_routing_probe,
>> +	.remove = q6pcm_routing_remove,
>> +};

>>

WARNING: multiple messages have this Message-ID (diff)
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Bjorn Andersson <bjorn.andersson@linaro.org>
Cc: Andy Gross <andy.gross@linaro.org>,
	Mark Brown <broonie@kernel.org>,
	linux-arm-msm@vger.kernel.org, alsa-devel@alsa-project.org,
	David Brown <david.brown@linaro.org>,
	Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Patrick Lai <plai@codeaurora.org>,
	Banajit Goswami <bgoswami@codeaurora.org>,
	Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
	linux-soc@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, sboyd@codeaurora.org
Subject: Re: [RESEND PATCH v2 10/15] ASoC: qcom: qdsp6: Add support to q6routing driver
Date: Wed, 3 Jan 2018 16:27:08 +0000	[thread overview]
Message-ID: <c11b49c8-3022-5591-41b1-d7be7ae6d17a@linaro.org> (raw)
In-Reply-To: <20180102230007.GR478@tuxbook>



On 02/01/18 23:00, Bjorn Andersson wrote:
> On Thu 14 Dec 09:33 PST 2017, srinivas.kandagatla@linaro.org wrote:
> 
>> From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
>>
>> This patch adds support to q6 routing driver which configures route
>> between ASM and AFE module using ADM apis.
>>
>> This driver uses dapm widgets to setup the matrix between AFE ports and
>> ASM streams.
>>
> 
> Why is this a separate driver from the q6adm?

This is actually exposing the mixer controls for routing streams on to 
different audio sink/sources using a matrix.

> 
>> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
>> ---
>>   sound/soc/qcom/Kconfig           |   5 +
>>   sound/soc/qcom/qdsp6/Makefile    |   1 +
>>   sound/soc/qcom/qdsp6/q6routing.c | 386 +++++++++++++++++++++++++++++++++++++++
>>   sound/soc/qcom/qdsp6/q6routing.h |   9 +
>>   4 files changed, 401 insertions(+)
>>   create mode 100644 sound/soc/qcom/qdsp6/q6routing.c
>>   create mode 100644 sound/soc/qcom/qdsp6/q6routing.h

>> diff --git a/sound/soc/qcom/qdsp6/q6routing.c b/sound/soc/qcom/qdsp6/q6routing.c


>> +/**
>> + * q6routing_reg_phy_stream() - Register a new stream for route setup
>> + *
>> + * @fedai_id: Frontend dai id.
>> + * @perf_mode: Performace mode.
> 
> "Performance"
yep.

> 
>> + * @stream_id: ASM stream id to map.
>> + * @stream_type: Direction of stream
>> + *
>> + * Return: Will be an negative on error or a zero on success.
>> + */
>> +int q6routing_reg_phy_stream(int fedai_id, int perf_mode,
> 
> q6routing_stream_open() ?

sure if it helps reading.

> 
>> +			   int stream_id, int stream_type)
>> +{
>> +	int j, topology, num_copps = 0;
>> +	struct route_payload payload;
>> +	int copp_idx;
>> +	struct session_data *session;
>> +
>> +	if (!routing_data) {
>> +		pr_err("Routing driver not yet ready\n");
>> +		return -EINVAL;
>> +	}
>> +
>> +	session = &routing_data->sessions[stream_id - 1];
>> +	mutex_lock(&routing_data->lock);
>> +	session->fedai_id = fedai_id;
>> +	payload.num_copps = 0; /* only RX needs to use payload */
>> +	topology = NULL_COPP_TOPOLOGY;
>> +	copp_idx = q6adm_open(routing_data->dev, session->port_id,
>> +			      session->path_type, session->sample_rate,
>> +			      session->channels, topology, perf_mode,
>> +			      session->bits_per_sample, 0, 0);
>> +	if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
> 
> Make q6adm_open() not return >= MAX_COPPS_PER_PORT.
> 
> And drop the extra parenthesis.
> 
>> +		mutex_unlock(&routing_data->lock);
>> +		return -EINVAL;
>> +	}
>> +
>> +	set_bit(copp_idx, &session->copp_map);
>> +	for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
> 
> Use for_each_set_bit()
> 
>> +		unsigned long copp = session->copp_map;
>> +
>> +		if (test_bit(j, &copp)) {
>> +			payload.port_id[num_copps] = session->port_id;
>> +			payload.copp_idx[num_copps] = j;
>> +			num_copps++;
>> +		}
>> +	}
>> +
>> +	if (num_copps) {
>> +		payload.num_copps = num_copps;
>> +		payload.session_id = stream_id;
>> +		q6adm_matrix_map(routing_data->dev, session->path_type,
>> +				 payload, perf_mode);
>> +	}
>> +	mutex_unlock(&routing_data->lock);
>> +
>> +	return 0;
>> +}
>> +EXPORT_SYMBOL_GPL(q6routing_reg_phy_stream);
>> +
>> +static struct session_data *routing_get_session(struct msm_routing_data *data,
>> +						int port_id, int port_type)
> 
> port_type is ignored

It will be used once we add capture support.

> 
>> +{
>> +	int i;
>> +
>> +	for (i = 0; i < MAX_SESSIONS; i++)
>> +		if (port_id == data->sessions[i].port_id)
>> +			return &data->sessions[i];
>> +
>> +	return NULL;
>> +}
>> +

>> +/**
>> + * q6routing_dereg_phy_stream() - Deregister a stream
>> + *
>> + * @fedai_id: Frontend dai id.
>> + * @stream_type: Direction of stream
>> + *
>> + * Return: Will be an negative on error or a zero on success.
>> + */
>> +void q6routing_dereg_phy_stream(int fedai_id, int stream_type)
> 
> q6routing_stream_close()?
> 
will rename it.
>> +{
>> +	struct session_data *session;
>> +	int idx;
>> +
>> +	session = get_session_from_id(routing_data, fedai_id);
>> +	if (!session)
>> +		return;
>> +
>> +	for_each_set_bit(idx, &session->copp_map, MAX_COPPS_PER_PORT)
>> +		q6adm_close(routing_data->dev, session->port_id,
>> +			    session->perf_mode, idx);
>> +
>> +	session->fedai_id = -1;
>> +	session->copp_map = 0;
>> +}
>> +EXPORT_SYMBOL_GPL(q6routing_dereg_phy_stream);
>> +

>> +


>> +
>> +static const struct snd_soc_dapm_widget msm_qdsp6_widgets[] = {
>> +	/* Frontend AIF */
>> +	/* Widget name equals to Front-End DAI name<Need confirmation>,
> 
> Perhaps this should be confirmed and the comment updated?
> 

Some leftover from old code...

>> +	 * Stream name must contains substring of front-end dai name
>> +	 */
>> +	SND_SOC_DAPM_AIF_IN("MM_DL1", "MultiMedia1 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL2", "MultiMedia2 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL3", "MultiMedia3 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL4", "MultiMedia4 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL5", "MultiMedia5 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL6", "MultiMedia6 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL7", "MultiMedia7 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL8", "MultiMedia8 Playback", 0, 0, 0, 0),
>> +
>> +	/* Mixer definitions */
>> +	SND_SOC_DAPM_MIXER("HDMI Mixer", SND_SOC_NOPM, 0, 0,
>> +			   hdmi_mixer_controls,
>> +			   ARRAY_SIZE(hdmi_mixer_controls)),
>> +};
>
>> +static int routing_hw_params(struct snd_pcm_substream *substream,
>> +				     struct snd_pcm_hw_params *params)
>> +{
>> +	struct snd_soc_pcm_runtime *rtd = substream->private_data;
>> +	unsigned int be_id = rtd->cpu_dai->id;
>> +	struct snd_soc_platform *platform = rtd->platform;
>> +	struct msm_routing_data *data = snd_soc_platform_get_drvdata(platform);
>> +	struct session_data *session;
>> +	int port_id, port_type, path_type, bits_per_sample;
> 
> bits_per_sample is likely unused.
> 
yep.

>> +
>> +	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
>> +		path_type = ADM_PATH_PLAYBACK;
>> +		port_type = MSM_AFE_PORT_TYPE_RX;
>> +	}
>> +
>> +	port_id = be_id;
> 
> Why alias this variable?
will fix this in next version.

> 
>> +
>> +	session = routing_get_session(data, port_id, port_type);
>> +
>> +	if (!session) {
>> +		pr_err("No session matrix setup yet..\n");
>> +		return -EINVAL;
>> +	}
>> +
>> +	mutex_lock(&data->lock);
>> +
>> +	session->path_type = path_type;
>> +	session->sample_rate = params_rate(params);
>> +	session->channels = params_channels(params);
>> +	session->format = params_format(params);
>> +
>> +	if (session->format == SNDRV_PCM_FORMAT_S16_LE)
>> +		session->bits_per_sample = 16;
>> +	else if (session->format == SNDRV_PCM_FORMAT_S24_LE)
>> +		bits_per_sample = 24;
> 
> session-> ?

I agree, will fix it.

> 
> Perhaps switch on params_format(params) instead? And fail in the default
> case.
will give that a go.

> 
>> +
>> +	mutex_unlock(&data->lock);
>> +	return 0;
>> +}
>> +


>> +static struct snd_pcm_ops q6pcm_routing_ops = {
>> +	.hw_params = routing_hw_params,
>> +	.close = routing_close,
>> +	.prepare = routing_prepare,
>> +};
>> +
>> +/* Not used but frame seems to require it */
> 
> Remove comment?
> 
looks like leftover.. will remove it.

[...]
>> +
>> +static int q6pcm_routing_remove(struct platform_device *pdev)
>> +{
> 
> As you return here routing_data will be freed.  The early check in
> q6routing_reg_phy_stream() seems to indicate that this driver can be
> called even though the routing device isn't available.
> 
> So you probably want to clear that variable, at least.
sure, will fix this in next version.

> 
>> +	return 0;
>> +}
>> +
>> +static struct platform_driver q6pcm_routing_driver = {
>> +	.driver = {
>> +		   .name = "q6routing",
>> +		   .owner = THIS_MODULE,
> 
> Drop .owner
> 
yep.
>> +		   },
>> +	.probe = q6pcm_routing_probe,
>> +	.remove = q6pcm_routing_remove,
>> +};

>>

WARNING: multiple messages have this Message-ID (diff)
From: srinivas.kandagatla@linaro.org (Srinivas Kandagatla)
To: linux-arm-kernel@lists.infradead.org
Subject: [RESEND PATCH v2 10/15] ASoC: qcom: qdsp6: Add support to q6routing driver
Date: Wed, 3 Jan 2018 16:27:08 +0000	[thread overview]
Message-ID: <c11b49c8-3022-5591-41b1-d7be7ae6d17a@linaro.org> (raw)
In-Reply-To: <20180102230007.GR478@tuxbook>



On 02/01/18 23:00, Bjorn Andersson wrote:
> On Thu 14 Dec 09:33 PST 2017, srinivas.kandagatla at linaro.org wrote:
> 
>> From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
>>
>> This patch adds support to q6 routing driver which configures route
>> between ASM and AFE module using ADM apis.
>>
>> This driver uses dapm widgets to setup the matrix between AFE ports and
>> ASM streams.
>>
> 
> Why is this a separate driver from the q6adm?

This is actually exposing the mixer controls for routing streams on to 
different audio sink/sources using a matrix.

> 
>> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
>> ---
>>   sound/soc/qcom/Kconfig           |   5 +
>>   sound/soc/qcom/qdsp6/Makefile    |   1 +
>>   sound/soc/qcom/qdsp6/q6routing.c | 386 +++++++++++++++++++++++++++++++++++++++
>>   sound/soc/qcom/qdsp6/q6routing.h |   9 +
>>   4 files changed, 401 insertions(+)
>>   create mode 100644 sound/soc/qcom/qdsp6/q6routing.c
>>   create mode 100644 sound/soc/qcom/qdsp6/q6routing.h

>> diff --git a/sound/soc/qcom/qdsp6/q6routing.c b/sound/soc/qcom/qdsp6/q6routing.c


>> +/**
>> + * q6routing_reg_phy_stream() - Register a new stream for route setup
>> + *
>> + * @fedai_id: Frontend dai id.
>> + * @perf_mode: Performace mode.
> 
> "Performance"
yep.

> 
>> + * @stream_id: ASM stream id to map.
>> + * @stream_type: Direction of stream
>> + *
>> + * Return: Will be an negative on error or a zero on success.
>> + */
>> +int q6routing_reg_phy_stream(int fedai_id, int perf_mode,
> 
> q6routing_stream_open() ?

sure if it helps reading.

> 
>> +			   int stream_id, int stream_type)
>> +{
>> +	int j, topology, num_copps = 0;
>> +	struct route_payload payload;
>> +	int copp_idx;
>> +	struct session_data *session;
>> +
>> +	if (!routing_data) {
>> +		pr_err("Routing driver not yet ready\n");
>> +		return -EINVAL;
>> +	}
>> +
>> +	session = &routing_data->sessions[stream_id - 1];
>> +	mutex_lock(&routing_data->lock);
>> +	session->fedai_id = fedai_id;
>> +	payload.num_copps = 0; /* only RX needs to use payload */
>> +	topology = NULL_COPP_TOPOLOGY;
>> +	copp_idx = q6adm_open(routing_data->dev, session->port_id,
>> +			      session->path_type, session->sample_rate,
>> +			      session->channels, topology, perf_mode,
>> +			      session->bits_per_sample, 0, 0);
>> +	if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
> 
> Make q6adm_open() not return >= MAX_COPPS_PER_PORT.
> 
> And drop the extra parenthesis.
> 
>> +		mutex_unlock(&routing_data->lock);
>> +		return -EINVAL;
>> +	}
>> +
>> +	set_bit(copp_idx, &session->copp_map);
>> +	for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
> 
> Use for_each_set_bit()
> 
>> +		unsigned long copp = session->copp_map;
>> +
>> +		if (test_bit(j, &copp)) {
>> +			payload.port_id[num_copps] = session->port_id;
>> +			payload.copp_idx[num_copps] = j;
>> +			num_copps++;
>> +		}
>> +	}
>> +
>> +	if (num_copps) {
>> +		payload.num_copps = num_copps;
>> +		payload.session_id = stream_id;
>> +		q6adm_matrix_map(routing_data->dev, session->path_type,
>> +				 payload, perf_mode);
>> +	}
>> +	mutex_unlock(&routing_data->lock);
>> +
>> +	return 0;
>> +}
>> +EXPORT_SYMBOL_GPL(q6routing_reg_phy_stream);
>> +
>> +static struct session_data *routing_get_session(struct msm_routing_data *data,
>> +						int port_id, int port_type)
> 
> port_type is ignored

It will be used once we add capture support.

> 
>> +{
>> +	int i;
>> +
>> +	for (i = 0; i < MAX_SESSIONS; i++)
>> +		if (port_id == data->sessions[i].port_id)
>> +			return &data->sessions[i];
>> +
>> +	return NULL;
>> +}
>> +

>> +/**
>> + * q6routing_dereg_phy_stream() - Deregister a stream
>> + *
>> + * @fedai_id: Frontend dai id.
>> + * @stream_type: Direction of stream
>> + *
>> + * Return: Will be an negative on error or a zero on success.
>> + */
>> +void q6routing_dereg_phy_stream(int fedai_id, int stream_type)
> 
> q6routing_stream_close()?
> 
will rename it.
>> +{
>> +	struct session_data *session;
>> +	int idx;
>> +
>> +	session = get_session_from_id(routing_data, fedai_id);
>> +	if (!session)
>> +		return;
>> +
>> +	for_each_set_bit(idx, &session->copp_map, MAX_COPPS_PER_PORT)
>> +		q6adm_close(routing_data->dev, session->port_id,
>> +			    session->perf_mode, idx);
>> +
>> +	session->fedai_id = -1;
>> +	session->copp_map = 0;
>> +}
>> +EXPORT_SYMBOL_GPL(q6routing_dereg_phy_stream);
>> +

>> +


>> +
>> +static const struct snd_soc_dapm_widget msm_qdsp6_widgets[] = {
>> +	/* Frontend AIF */
>> +	/* Widget name equals to Front-End DAI name<Need confirmation>,
> 
> Perhaps this should be confirmed and the comment updated?
> 

Some leftover from old code...

>> +	 * Stream name must contains substring of front-end dai name
>> +	 */
>> +	SND_SOC_DAPM_AIF_IN("MM_DL1", "MultiMedia1 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL2", "MultiMedia2 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL3", "MultiMedia3 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL4", "MultiMedia4 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL5", "MultiMedia5 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL6", "MultiMedia6 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL7", "MultiMedia7 Playback", 0, 0, 0, 0),
>> +	SND_SOC_DAPM_AIF_IN("MM_DL8", "MultiMedia8 Playback", 0, 0, 0, 0),
>> +
>> +	/* Mixer definitions */
>> +	SND_SOC_DAPM_MIXER("HDMI Mixer", SND_SOC_NOPM, 0, 0,
>> +			   hdmi_mixer_controls,
>> +			   ARRAY_SIZE(hdmi_mixer_controls)),
>> +};
>
>> +static int routing_hw_params(struct snd_pcm_substream *substream,
>> +				     struct snd_pcm_hw_params *params)
>> +{
>> +	struct snd_soc_pcm_runtime *rtd = substream->private_data;
>> +	unsigned int be_id = rtd->cpu_dai->id;
>> +	struct snd_soc_platform *platform = rtd->platform;
>> +	struct msm_routing_data *data = snd_soc_platform_get_drvdata(platform);
>> +	struct session_data *session;
>> +	int port_id, port_type, path_type, bits_per_sample;
> 
> bits_per_sample is likely unused.
> 
yep.

>> +
>> +	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
>> +		path_type = ADM_PATH_PLAYBACK;
>> +		port_type = MSM_AFE_PORT_TYPE_RX;
>> +	}
>> +
>> +	port_id = be_id;
> 
> Why alias this variable?
will fix this in next version.

> 
>> +
>> +	session = routing_get_session(data, port_id, port_type);
>> +
>> +	if (!session) {
>> +		pr_err("No session matrix setup yet..\n");
>> +		return -EINVAL;
>> +	}
>> +
>> +	mutex_lock(&data->lock);
>> +
>> +	session->path_type = path_type;
>> +	session->sample_rate = params_rate(params);
>> +	session->channels = params_channels(params);
>> +	session->format = params_format(params);
>> +
>> +	if (session->format == SNDRV_PCM_FORMAT_S16_LE)
>> +		session->bits_per_sample = 16;
>> +	else if (session->format == SNDRV_PCM_FORMAT_S24_LE)
>> +		bits_per_sample = 24;
> 
> session-> ?

I agree, will fix it.

> 
> Perhaps switch on params_format(params) instead? And fail in the default
> case.
will give that a go.

> 
>> +
>> +	mutex_unlock(&data->lock);
>> +	return 0;
>> +}
>> +


>> +static struct snd_pcm_ops q6pcm_routing_ops = {
>> +	.hw_params = routing_hw_params,
>> +	.close = routing_close,
>> +	.prepare = routing_prepare,
>> +};
>> +
>> +/* Not used but frame seems to require it */
> 
> Remove comment?
> 
looks like leftover.. will remove it.

[...]
>> +
>> +static int q6pcm_routing_remove(struct platform_device *pdev)
>> +{
> 
> As you return here routing_data will be freed.  The early check in
> q6routing_reg_phy_stream() seems to indicate that this driver can be
> called even though the routing device isn't available.
> 
> So you probably want to clear that variable, at least.
sure, will fix this in next version.

> 
>> +	return 0;
>> +}
>> +
>> +static struct platform_driver q6pcm_routing_driver = {
>> +	.driver = {
>> +		   .name = "q6routing",
>> +		   .owner = THIS_MODULE,
> 
> Drop .owner
> 
yep.
>> +		   },
>> +	.probe = q6pcm_routing_probe,
>> +	.remove = q6pcm_routing_remove,
>> +};

>>

  reply	other threads:[~2018-01-03 16:27 UTC|newest]

Thread overview: 166+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-14 17:33 [RESEND PATCH v2 00/15] ASoC: qcom: Add support to QDSP6 based audio srinivas.kandagatla
2017-12-14 17:33 ` srinivas.kandagatla at linaro.org
2017-12-14 17:33 ` [RESEND PATCH v2 01/15] dt-bindings: soc: qcom: Add bindings for APR bus srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
2017-12-14 17:33   ` srinivas.kandagatla
     [not found]   ` <20171214173402.19074-2-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2017-12-16 17:27     ` Rob Herring
2017-12-16 17:27       ` Rob Herring
2017-12-16 17:27       ` Rob Herring
2017-12-18  9:50       ` Srinivas Kandagatla
2017-12-18  9:50         ` Srinivas Kandagatla
2018-01-03  0:35   ` Bjorn Andersson
2018-01-03  0:35     ` Bjorn Andersson
2018-01-03 16:26     ` Srinivas Kandagatla
2018-01-03 16:26       ` Srinivas Kandagatla
2018-01-03 16:26       ` Srinivas Kandagatla
2017-12-14 17:33 ` [RESEND PATCH v2 02/15] soc: qcom: add support to APR bus driver srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
     [not found]   ` <20171214173402.19074-3-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2018-01-01 23:29     ` Bjorn Andersson
2018-01-01 23:29       ` Bjorn Andersson
2018-01-01 23:29       ` Bjorn Andersson
2018-01-03 16:26       ` Srinivas Kandagatla
2018-01-03 16:26         ` Srinivas Kandagatla
2018-01-03 16:26         ` Srinivas Kandagatla
2017-12-14 17:33 ` [RESEND PATCH v2 03/15] ASoC: qcom: qdsp6: Add common qdsp6 helper functions srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
2017-12-14 17:33   ` srinivas.kandagatla
2018-01-02  0:19   ` Bjorn Andersson
2018-01-02  0:19     ` Bjorn Andersson
2018-01-02  0:19     ` Bjorn Andersson
2018-01-03 16:26     ` Srinivas Kandagatla
2018-01-03 16:26       ` Srinivas Kandagatla
2017-12-14 17:33 ` [RESEND PATCH v2 04/15] ASoC: qcom: qdsp6: Add support to Q6AFE srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
2017-12-14 17:33   ` srinivas.kandagatla
2018-01-02  0:45   ` Bjorn Andersson
2018-01-02  0:45     ` Bjorn Andersson
2018-01-02  0:45     ` Bjorn Andersson
2018-01-03 16:26     ` Srinivas Kandagatla
2018-01-03 16:26       ` Srinivas Kandagatla
2017-12-14 17:33 ` [RESEND PATCH v2 05/15] ASoC: qcom: qdsp6: Add support to Q6ADM srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
     [not found]   ` <20171214173402.19074-6-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2018-01-02  1:50     ` Bjorn Andersson
2018-01-02  1:50       ` Bjorn Andersson
2018-01-02  1:50       ` Bjorn Andersson
2018-01-03 16:26       ` Srinivas Kandagatla
2018-01-03 16:26         ` Srinivas Kandagatla
2017-12-14 17:33 ` [RESEND PATCH v2 06/15] ASoC: qcom: qdsp6: Add support to Q6ASM srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
2017-12-14 17:33   ` srinivas.kandagatla
     [not found]   ` <20171214173402.19074-7-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2018-01-02  4:43     ` Bjorn Andersson
2018-01-02  4:43       ` Bjorn Andersson
2018-01-02  4:43       ` Bjorn Andersson
2018-01-03 16:26       ` Srinivas Kandagatla
2018-01-03 16:26         ` Srinivas Kandagatla
2017-12-14 17:33 ` [RESEND PATCH v2 08/15] ASoC: qcom: q6asm: add support to audio stream apis srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
2017-12-14 17:33   ` srinivas.kandagatla
2018-01-02 20:08   ` Bjorn Andersson
2018-01-02 20:08     ` Bjorn Andersson
2018-01-03 16:26     ` Srinivas Kandagatla
2018-01-03 16:26       ` Srinivas Kandagatla
2018-01-03 16:26       ` Srinivas Kandagatla
2018-01-13  8:42   ` Rohit Kumar
2018-01-13  8:42     ` [alsa-devel] " Rohit Kumar
2018-01-13  8:42     ` Rohit Kumar
2017-12-14 17:33 ` [RESEND PATCH v2 09/15] ASoC: qcom: qdsp6: Add support to Q6CORE srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
2017-12-14 17:33   ` srinivas.kandagatla
2018-01-02 22:15   ` Bjorn Andersson
2018-01-02 22:15     ` Bjorn Andersson
2018-01-03 16:27     ` Srinivas Kandagatla
2018-01-03 16:27       ` Srinivas Kandagatla
2018-02-07 12:15   ` [alsa-devel] " Rohit Kumar
2018-02-07 12:15     ` Rohit Kumar
2017-12-14 17:33 ` [RESEND PATCH v2 10/15] ASoC: qcom: qdsp6: Add support to q6routing driver srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
2018-01-02 23:00   ` Bjorn Andersson
2018-01-02 23:00     ` Bjorn Andersson
2018-01-02 23:00     ` Bjorn Andersson
2018-01-03 16:27     ` Srinivas Kandagatla [this message]
2018-01-03 16:27       ` Srinivas Kandagatla
2018-01-03 16:27       ` Srinivas Kandagatla
2017-12-14 17:33 ` [RESEND PATCH v2 11/15] ASoC: qcom: qdsp6: Add support to q6afe dai driver srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
     [not found]   ` <20171214173402.19074-12-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2018-01-02 23:28     ` Bjorn Andersson
2018-01-02 23:28       ` Bjorn Andersson
2018-01-02 23:28       ` Bjorn Andersson
2018-01-03 16:27       ` Srinivas Kandagatla
2018-01-03 16:27         ` Srinivas Kandagatla
2018-01-03 16:27         ` Srinivas Kandagatla
2018-02-07 11:34   ` Rohit Kumar
2018-02-07 11:34     ` [alsa-devel] " Rohit Kumar
2018-02-07 11:34     ` Rohit Kumar
2018-02-07 11:40     ` Srinivas Kandagatla
2018-02-07 11:40       ` Srinivas Kandagatla
2017-12-14 17:33 ` [RESEND PATCH v2 12/15] ASoC: qcom: qdsp6: Add support to q6asm " srinivas.kandagatla
2017-12-14 17:33   ` srinivas.kandagatla at linaro.org
2018-01-03  0:03   ` Bjorn Andersson
2018-01-03  0:03     ` Bjorn Andersson
2018-01-03 16:27     ` Srinivas Kandagatla
2018-01-03 16:27       ` Srinivas Kandagatla
2018-01-13  8:45   ` [alsa-devel] " Rohit Kumar
2018-01-13  8:45     ` Rohit Kumar
     [not found] ` <20171214173402.19074-1-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2017-12-14 17:33   ` [RESEND PATCH v2 07/15] ASoC: qcom: q6asm: Add support to memory map and unmap srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A
2017-12-14 17:33     ` srinivas.kandagatla at linaro.org
2017-12-14 17:33     ` srinivas.kandagatla
2018-01-02  5:48     ` Bjorn Andersson
2018-01-02  5:48       ` Bjorn Andersson
2018-01-03 16:26       ` Srinivas Kandagatla
2018-01-03 16:26         ` Srinivas Kandagatla
     [not found]         ` <4d1d17df-71a4-2896-29c1-9d033a2f3711-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2018-01-03 19:39           ` Bjorn Andersson
2018-01-03 19:39             ` Bjorn Andersson
2018-01-03 19:39             ` Bjorn Andersson
2017-12-14 17:34   ` [RESEND PATCH v2 13/15] dt-bindings: sound: qcom: Add devicetree bindings for apq8096 srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A
2017-12-14 17:34     ` srinivas.kandagatla at linaro.org
2017-12-14 17:34     ` srinivas.kandagatla
2017-12-16 17:44     ` Rob Herring
2017-12-16 17:44       ` Rob Herring
2017-12-18  9:49       ` Srinivas Kandagatla
2017-12-18  9:49         ` Srinivas Kandagatla
2017-12-18  9:49         ` Srinivas Kandagatla
2018-01-03  0:28     ` Bjorn Andersson
2018-01-03  0:28       ` Bjorn Andersson
2018-01-03  0:28       ` Bjorn Andersson
2018-01-03 16:27       ` Srinivas Kandagatla
2018-01-03 16:27         ` Srinivas Kandagatla
     [not found]         ` <787ecdc5-66d8-23ee-7136-2a8759c86536-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2018-01-03 19:49           ` Bjorn Andersson
2018-01-03 19:49             ` Bjorn Andersson
2018-01-03 19:49             ` Bjorn Andersson
2017-12-14 17:34   ` [RESEND PATCH v2 14/15] ASoC: qcom: apq8096: Add db820c machine driver srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A
2017-12-14 17:34     ` srinivas.kandagatla at linaro.org
2017-12-14 17:34     ` srinivas.kandagatla
2018-01-03  0:16     ` Bjorn Andersson
2018-01-03  0:16       ` Bjorn Andersson
2018-01-03 16:27       ` Srinivas Kandagatla
2018-01-03 16:27         ` Srinivas Kandagatla
2018-01-03 20:04         ` Bjorn Andersson
2018-01-03 20:04           ` Bjorn Andersson
2018-01-03 20:04           ` Bjorn Andersson
2018-01-03 17:20     ` Stephen Boyd
2018-01-03 17:20       ` Stephen Boyd
2018-01-03 18:36       ` Srinivas Kandagatla
2018-01-03 18:36         ` Srinivas Kandagatla
2018-01-03 19:41         ` Stephen Boyd
2018-01-03 19:41           ` Stephen Boyd
2018-01-03 19:41           ` Stephen Boyd
2018-01-04  9:25           ` Srinivas Kandagatla
2018-01-04  9:25             ` Srinivas Kandagatla
2018-01-04 12:02       ` Mark Brown
2018-01-04 12:02         ` Mark Brown
2018-01-04 12:02         ` Mark Brown
2018-01-04 13:44         ` Srinivas Kandagatla
2018-01-04 13:44           ` Srinivas Kandagatla
2018-01-04 14:03           ` Mark Brown
2018-01-04 14:03             ` Mark Brown
2018-01-04 14:03             ` Mark Brown
2017-12-14 17:34 ` [RESEND PATCH v2 15/15] arm64: dts: msm8996: db820c: Add sound card support srinivas.kandagatla
2017-12-14 17:34   ` srinivas.kandagatla at linaro.org
     [not found]   ` <20171214173402.19074-16-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2018-01-03  0:22     ` Bjorn Andersson
2018-01-03  0:22       ` Bjorn Andersson
2018-01-03  0:22       ` Bjorn Andersson
2018-01-03 16:27       ` Srinivas Kandagatla
2018-01-03 16:27         ` Srinivas Kandagatla
2018-01-03 20:01         ` Bjorn Andersson
2018-01-03 20:01           ` Bjorn Andersson
2018-01-03 20:01           ` Bjorn Andersson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c11b49c8-3022-5591-41b1-d7be7ae6d17a@linaro.org \
    --to=srinivas.kandagatla@linaro.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=andy.gross@linaro.org \
    --cc=bgoswami@codeaurora.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=broonie@kernel.org \
    --cc=david.brown@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-soc@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=plai@codeaurora.org \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@codeaurora.org \
    --cc=tiwai@suse.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.