[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <02c20b06-34ef-459b-9cd1-2d2735eb1352@quicinc.com>
Date: Wed, 20 Nov 2024 11:13:34 -0800
From: Wesley Cheng <quic_wcheng@...cinc.com>
To: Takashi Iwai <tiwai@...e.de>
CC: <srinivas.kandagatla@...aro.org>, <mathias.nyman@...el.com>,
<perex@...ex.cz>, <conor+dt@...nel.org>, <dmitry.torokhov@...il.com>,
<corbet@....net>, <broonie@...nel.org>, <lgirdwood@...il.com>,
<krzk+dt@...nel.org>, <pierre-louis.bossart@...ux.intel.com>,
<Thinh.Nguyen@...opsys.com>, <tiwai@...e.com>, <robh@...nel.org>,
<gregkh@...uxfoundation.org>, <linux-kernel@...r.kernel.org>,
<devicetree@...r.kernel.org>, <linux-sound@...r.kernel.org>,
<linux-usb@...r.kernel.org>, <linux-input@...r.kernel.org>,
<linux-arm-msm@...r.kernel.org>, <linux-doc@...r.kernel.org>
Subject: Re: [PATCH v30 28/30] ALSA: usb-audio: Add USB offload route kcontrol
Hi Takashi,
On 11/20/2024 4:12 AM, Takashi Iwai wrote:
> On Wed, 06 Nov 2024 20:34:11 +0100,
> Wesley Cheng wrote:
>> In order to allow userspace/applications know about USB offloading status,
>> expose a sound kcontrol that fetches information about which sound card
>> and PCM index the USB device is mapped to for supporting offloading. In
>> the USB audio offloading framework, the ASoC BE DAI link is the entity
>> responsible for registering to the SOC USB layer.
>>
>> It is expected for the USB SND offloading driver to add the kcontrol to the
>> sound card associated with the USB audio device. An example output would
>> look like:
>>
>> tinymix -D 1 get 'USB Offload Playback Route PCM#0'
>> -1, -1 (range -1->255)
>>
>> This example signifies that there is no mapped ASoC path available for the
>> USB SND device.
>>
>> tinymix -D 1 get 'USB Offload Playback Route PCM#0'
>> 0, 0 (range -1->255)
>>
>> This example signifies that the offload path is available over ASoC sound
>> card index#0 and PCM device#0.
>>
>> The USB offload kcontrol will be added in addition to the existing
>> kcontrols identified by the USB SND mixer. The kcontrols used to modify
>> the USB audio device specific parameters are still valid and expected to be
>> used. These parameters are not mirrored to the ASoC subsystem.
>>
>> Signed-off-by: Wesley Cheng <quic_wcheng@...cinc.com>
> IIRC, this representation of kcontrol was one argued issue; Pierre
> expressed the concern about the complexity of the kcontrol.
> I didn't follow exactly, but did we get consensus?
So the part that Pierre had concerns on was that previously, the implementation was placing offload kcontrols to the ASoC platform card, and had some additional controls that complicated the offload implementation about the offload status for each USB audio device. This was discussed here:
https://lore.kernel.org/linux-usb/957b3c13-e4ba-45e3-b880-7a313e48c33f@quicinc.com/
To summarize, I made the decision to move the offload status kcontrols from ASoC --> USB SND and limited it to only one kcontrol (mapped offload device). So now, there exists a kcontrol for every USB SND device (if the offload mixer is enabled), where it tells userspace the mapped ASoC platform card and pcm device that handles USB offloading, else you'll see the "-1, -1" pair, which means offload is not possible for that USB audio device.
> Apart from that: the Kconfig defition below ...
>
>> +config SND_USB_OFFLOAD_MIXER
>> + tristate "USB Audio Offload mixer control"
>> + help
>> + Say Y to enable the USB audio offloading mixer controls. This
>> + exposes an USB offload capable kcontrol to signal to applications
>> + about which platform sound card can support USB audio offload.
>> + The returning values specify the mapped ASoC card and PCM device
>> + the USB audio device is associated to.
> ... and Makefile addition below ...
>
>> --- a/sound/usb/Makefile
>> +++ b/sound/usb/Makefile
>> @@ -36,3 +36,5 @@ obj-$(CONFIG_SND_USB_US122L) += snd-usbmidi-lib.o
>>
>> obj-$(CONFIG_SND) += misc/ usx2y/ caiaq/ 6fire/ hiface/ bcd2000/ qcom/
>> obj-$(CONFIG_SND_USB_LINE6) += line6/
>> +
>> +obj-$(CONFIG_SND_USB_OFFLOAD_MIXER) += mixer_usb_offload.o
> ... indicates that this code will be an individual module, although
> it's solely used from snd-usb-audio-qmi driver. This should be rather
> a boolean and moved to sound/usb/qcom/, and linked to
> snd-usb-audio-qmi driver itself, e.g.
>
> --- a/sound/usb/qcom/Makefile
> +++ b/sound/usb/qcom/Makefile
> @@ -1,2 +1,3 @@
> snd-usb-audio-qmi-objs := usb_audio_qmi_v01.o qc_audio_offload.o
> +snd-usb-audio-qmi-$(CONFIG_SND_USB_OFFLOAD_MIXER) += mixer_usb_offload.o
> obj-$(CONFIG_SND_USB_AUDIO_QMI) += snd-usb-audio-qmi.o
>
> Then you can drop EXPORT_SYMBOL_GPL(), too.
Had a discussion with Pierre on this too below.
https://lore.kernel.org/linux-usb/f507a228-4865-4df5-9215-bc59e330a82f@linux.intel.com/
I remember you commenting to place it in this vendor offload module, which is what I did on v24.
Thanks
Wesley Cheng
Powered by blists - more mailing lists