Message ID | 20250404002728.3590501-1-quic_wcheng@quicinc.com (mailing list archive) |
---|---|
Headers | show |
Series | Introduce QC USB SND audio offloading support | expand |
On Thu, Apr 03, 2025 at 05:27:19PM -0700, Wesley Cheng wrote: > The QC ADSP is able to support USB playback endpoints, so that the main > application processor can be placed into lower CPU power modes. This adds > the required AFE port configurations and port start command to start an > audio session. > > Specifically, the QC ADSP can support all potential endpoints that are > exposed by the audio data interface. This includes isochronous data > endpoints, in either synchronous mode or asynchronous mode. In the latter > case both implicit or explicit feedback endpoints are supported. The size > of audio samples sent per USB frame (microframe) will be adjusted based on > information received on the feedback endpoint. > > Some pre-requisites are needed before issuing the AFE port start command, > such as setting the USB AFE dev_token. This carries information about the > available USB SND cards and PCM devices that have been discovered on the > USB bus. The dev_token field is used by the audio DSP to notify the USB > offload driver of which card and PCM index to enable playback on. > > Signed-off-by: Wesley Cheng <quic_wcheng@quicinc.com> > --- > sound/soc/qcom/qdsp6/q6afe-dai.c | 60 +++++++ > sound/soc/qcom/qdsp6/q6afe.c | 192 ++++++++++++++++++++++- > sound/soc/qcom/qdsp6/q6afe.h | 36 ++++- > sound/soc/qcom/qdsp6/q6dsp-lpass-ports.c | 23 +++ > sound/soc/qcom/qdsp6/q6dsp-lpass-ports.h | 1 + > sound/soc/qcom/qdsp6/q6routing.c | 10 +- > 6 files changed, 319 insertions(+), 3 deletions(-) > > diff --git a/sound/soc/qcom/qdsp6/q6afe-dai.c b/sound/soc/qcom/qdsp6/q6afe-dai.c > index 7d9628cda875..0f47aadaabe1 100644 > --- a/sound/soc/qcom/qdsp6/q6afe-dai.c > +++ b/sound/soc/qcom/qdsp6/q6afe-dai.c > [...] > +static int afe_port_send_usb_params(struct q6afe_port *port, struct q6afe_usb_cfg *cfg) > +{ > + union afe_port_config *pcfg = &port->port_cfg; > + struct afe_param_id_usb_audio_dev_lpcm_fmt lpcm_fmt; > + struct afe_param_id_usb_audio_svc_interval svc_int; > + int ret; > + > + if (!pcfg) { > + dev_err(port->afe->dev, "%s: Error, no configuration data\n", __func__); > + ret = -EINVAL; > + goto exit; Nitpick: drop the goto here, just do "return -EINVAL;" > + } > + > + memset(&lpcm_fmt, 0, sizeof(lpcm_fmt)); > + memset(&svc_int, 0, sizeof(svc_int)); > + > + lpcm_fmt.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG; > + lpcm_fmt.endian = pcfg->usb_cfg.endian; > + ret = q6afe_port_set_param_v2(port, &lpcm_fmt, > + AFE_PARAM_ID_USB_AUDIO_DEV_LPCM_FMT, > + AFE_MODULE_AUDIO_DEV_INTERFACE, sizeof(lpcm_fmt)); > + if (ret) { > + dev_err(port->afe->dev, "%s: AFE device param cmd LPCM_FMT failed %d\n", > + __func__, ret); > + goto exit; return ret; > + } > + > + svc_int.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG; > + svc_int.svc_interval = pcfg->usb_cfg.service_interval; > + ret = q6afe_port_set_param_v2(port, &svc_int, > + AFE_PARAM_ID_USB_AUDIO_SVC_INTERVAL, > + AFE_MODULE_AUDIO_DEV_INTERFACE, sizeof(svc_int)); > + if (ret) > + dev_err(port->afe->dev, "%s: AFE device param cmd svc_interval failed %d\n", > + __func__, ret); > + > +exit: drop > + return ret; > +} > + > [...] > diff --git a/sound/soc/qcom/qdsp6/q6routing.c b/sound/soc/qcom/qdsp6/q6routing.c > index 90228699ba7d..0def036ed3c9 100644 > --- a/sound/soc/qcom/qdsp6/q6routing.c > +++ b/sound/soc/qcom/qdsp6/q6routing.c > @@ -435,6 +435,7 @@ static struct session_data *get_session_from_id(struct msm_routing_data *data, > > return NULL; > } > + > /** > * q6routing_stream_close() - Deregister a stream > * > @@ -515,6 +516,9 @@ static int msm_routing_put_audio_mixer(struct snd_kcontrol *kcontrol, > return 1; > } > > +static const struct snd_kcontrol_new usb_rx_mixer_controls[] = { > + Q6ROUTING_RX_MIXERS(USB_RX) }; > + > static const struct snd_kcontrol_new hdmi_mixer_controls[] = { > Q6ROUTING_RX_MIXERS(HDMI_RX) }; > > @@ -933,6 +937,9 @@ static const struct snd_soc_dapm_widget msm_qdsp6_widgets[] = { > SND_SOC_DAPM_MIXER("RX_CODEC_DMA_RX_7 Audio Mixer", SND_SOC_NOPM, 0, 0, > rx_codec_dma_rx_7_mixer_controls, > ARRAY_SIZE(rx_codec_dma_rx_7_mixer_controls)), > + SND_SOC_DAPM_MIXER("USB Mixer", SND_SOC_NOPM, 0, 0, As I wrote on v36: I think it would be more clear if you call this "USB_RX Audio Mixer" instead for consistency with the other playback mixers. This would also avoid confusion later when USB_TX is added in addition to USB_RX. The "Audio" part in the name is redundant, but looks like all the other playback mixers have it as well ... > + usb_rx_mixer_controls, > + ARRAY_SIZE(usb_rx_mixer_controls)), > SND_SOC_DAPM_MIXER("MultiMedia1 Mixer", SND_SOC_NOPM, 0, 0, > mmul1_mixer_controls, ARRAY_SIZE(mmul1_mixer_controls)), > SND_SOC_DAPM_MIXER("MultiMedia2 Mixer", SND_SOC_NOPM, 0, 0, > @@ -949,7 +956,6 @@ static const struct snd_soc_dapm_widget msm_qdsp6_widgets[] = { > mmul7_mixer_controls, ARRAY_SIZE(mmul7_mixer_controls)), > SND_SOC_DAPM_MIXER("MultiMedia8 Mixer", SND_SOC_NOPM, 0, 0, > mmul8_mixer_controls, ARRAY_SIZE(mmul8_mixer_controls)), > - > }; > > static const struct snd_soc_dapm_route intercon[] = { > @@ -1043,6 +1049,8 @@ static const struct snd_soc_dapm_route intercon[] = { > {"MM_UL6", NULL, "MultiMedia6 Mixer"}, > {"MM_UL7", NULL, "MultiMedia7 Mixer"}, > {"MM_UL8", NULL, "MultiMedia8 Mixer"}, > + > + Q6ROUTING_RX_DAPM_ROUTE("USB Mixer", "USB_RX"), Put this below "Q6ROUTING_RX_DAPM_ROUTE("RX_CODEC_DMA_RX_7 Audio Mixer". Thanks, Stephan
On Thu, Apr 03, 2025 at 05:27:21PM -0700, Wesley Cheng wrote: > Create a USB BE component that will register a new USB port to the ASoC USB > framework. This will handle determination on if the requested audio > profile is supported by the USB device currently selected. > > Check for if the PCM format is supported during the hw_params callback. If > the profile is not supported then the userspace ALSA entity will receive an > error, and can take further action. > > Signed-off-by: Wesley Cheng <quic_wcheng@quicinc.com> > --- > include/sound/q6usboffload.h | 20 +++ > sound/soc/qcom/Kconfig | 12 ++ > sound/soc/qcom/qdsp6/Makefile | 1 + > sound/soc/qcom/qdsp6/q6usb.c | 278 ++++++++++++++++++++++++++++++++++ > 4 files changed, 311 insertions(+) > create mode 100644 include/sound/q6usboffload.h > create mode 100644 sound/soc/qcom/qdsp6/q6usb.c > > diff --git a/include/sound/q6usboffload.h b/include/sound/q6usboffload.h > new file mode 100644 > index 000000000000..35ae26ba6509 > --- /dev/null > +++ b/include/sound/q6usboffload.h > @@ -0,0 +1,20 @@ > +/* SPDX-License-Identifier: GPL-2.0 > + * > + * sound/q6usboffload.h -- QDSP6 USB offload > + * > + * Copyright (c) 2022-2025 Qualcomm Innovation Center, Inc. All rights reserved. > + */ > + > +/** > + * struct q6usb_offload - USB backend DAI link offload parameters > + * @dev: dev handle to usb be > + * @domain: allocated iommu domain > + * @sid: streamID for iommu > + * @intr_num: usb interrupter number > + **/ > +struct q6usb_offload { > + struct device *dev; > + struct iommu_domain *domain; > + long long sid; "long long" feels like overkill for sid, given that it's essentially either an u8 or -1. I see you just copied this from q6asm-dai.c, but unlike q6asm-dai, you don't seem to check for sid < 0 in PATCH 28/31 (qc_audio_offload.c). Looking at the logic in q6asm-dai.c, it feels like this could really just be an "u8", since the -1 for "no iommus specified" is effectively just handled like sid = 0. > + u16 intr_num; > +}; > [...] > diff --git a/sound/soc/qcom/qdsp6/q6usb.c b/sound/soc/qcom/qdsp6/q6usb.c > new file mode 100644 > index 000000000000..cb8c4a62a816 > --- /dev/null > +++ b/sound/soc/qcom/qdsp6/q6usb.c > [...] > +static int q6usb_dai_dev_probe(struct platform_device *pdev) > +{ > + struct device_node *node = pdev->dev.of_node; > + struct q6usb_port_data *data; > + struct device *dev = &pdev->dev; > + struct of_phandle_args args; > + int ret; > + > + data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL); > + if (!data) > + return -ENOMEM; > + > + ret = of_property_read_u16(node, "qcom,usb-audio-intr-idx", > + &data->priv.intr_num); > + if (ret) { > + dev_err(&pdev->dev, "failed to read intr idx.\n"); > + return ret; > + } > + > + ret = of_parse_phandle_with_fixed_args(node, "iommus", 1, 0, &args); > + if (ret < 0) > + data->priv.sid = -1; > + else Could just do if (ret == 0) here and drop the if branch above, if you make sid an u8 like I suggested above. > + data->priv.sid = args.args[0] & Q6_USB_SID_MASK; > + > + data->priv.domain = iommu_get_domain_for_dev(&pdev->dev); > + > + data->priv.dev = dev; > + INIT_LIST_HEAD(&data->devices); I think you also need devm_mutex_init(&data->lock) or separate mutex_init()/mutex_destroy() here, if someone enables CONFIG_DEBUG_MUTEXES. Thanks, Stephan