lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <d4d94c91-5b40-4ed3-9895-8f8c85fd0a29@quicinc.com>
Date: Tue, 26 Nov 2024 15:19:54 -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.dev>,
        <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/26/2024 6:14 AM, Takashi Iwai wrote:
> On Mon, 25 Nov 2024 21:33:03 +0100,
> Wesley Cheng wrote:
>> Hi Takashi,
>>
>> On 11/21/2024 7:50 AM, Takashi Iwai wrote:
>>> On Wed, 20 Nov 2024 20:13:34 +0100,
>>> Wesley Cheng wrote:
>>>> 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.
>>> OK, the simplification is good.  But I wonder whether the current
>>> representation is the best.  Why not just providing two controls per
>>> PCM, one for card and one for device, instead of two integer array?
>>> It would look more intuitive to me.
>>>
>> I could separate it, but we would have to have a pair of controls
>> for each available USB PCM playback stream supported by the device.
>> However, before I get into making that change, I think the decision
>> for either two or one FE needs to be decided. Again, I think the 2
>> FE approach is much less invasive to the USB SND/ASoC core files,
>> and ensures the legacy USB SND path still works through the
>> non-offloaded data path.
> Sure, the decision about the 2 FEs is the most significant one, and
> those controls depend on that.


Would like to get closure on that here... (1 vs 2 FEs)  My stance is that the 2 FE approach can be the initial one we can take as it still incorporates the significant blocks that would apply to both situations.  From the userspace perspective, since audio offloading doesn't exist yet, applications should be working off the USB SND device and the SW path.  For those, without changes to look for the offload kcontrol, they can continue to operate off the USB SND PCM devices directly.  If enhancements are made to look for the offload kcontrol, then applications would first refer to the kcontrol of the USB SND device and look for existence of the offload controls.  If present they can then open the ASoC PCM devices.

If we then decided to move to the 1 FE approach in the future, this doesn't affect the userspace entities that added support during the 2 FE stages, because we are always first referring to the USB SND device to query for offload support.  The idea for the 1 FE design is that the userspace doesn't need to check for offload support, it just behaves as if it was opening the USB SND devices. (which should be the base of all applications working with USB SND)


> So my comment assumes that, and if that applied, we need to consider
> which kcontrol representation is better for users.  I don't mind too
> much about that, but generally speaking, simpler representation is
> better in the end, even if it leads to more elements.  e.g. sysfs
> allows basically only one value per file principle, too.
>
>
>>>>> 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.
>>> I assume that my early comment was based on your old implementations,
>>> and I guess it was because the mixer part didn't belong to the qcom
>>> stuff.  Now it belongs solely to qcom, the situation changed; it makes
>>> no sense to make it an individual module at all.
>>>
>>>
>> I guess Pierre's feedback was that he believed this should be vendor
>> agnostic, because any vendor that could potentially support USB
>> audio offload should have the same kcontrol within the USB SND
>> device.  Hence the reason for keeping it within generic code.  Since
>> QC is the only user of this now.  Do you prefer to make this part of
>> the vendor module for now, until another user comes along and
>> introduces offload support?
> Yes, less module is preferred for now.  If the stuff is agnostic and
> really used by multiple instances, we can factor out to an individual
> module again.
>

OK, sounds good.  I will make it as part of our package then.

Thanks

Wesley Cheng


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ