[PATCH 3/3] ALSA: usb-audio: Optimize min/max/res parse for UAC2

From: Takashi Iwai

Date: Thu Sep 17 2026 - 05:20:30 EST


UAC2 feature and mixer units provide the mixer information about
minimum and max channels as well as the resolution in a single
UAC2_CS_RANGE request, but the current code tries to extract each of
them in an old way of UAC1.

This patch refactors the code to optimize the range info extraction
for UAC2. Now the code for obtaining min/max/res info is done in
get_ctl_range() function. For UAC1, this will call UAC_GET_MIN,
UAC_GET_MAX and UAC_GET_RES requests, while it calls a single
UAC2_CS_RANGE for UAC2/3.

Signed-off-by: Takashi Iwai <tiwai@xxxxxxx>
---
sound/usb/mixer.c | 209 ++++++++++++++++++++++++++--------------------
1 file changed, 117 insertions(+), 92 deletions(-)

diff --git a/sound/usb/mixer.c b/sound/usb/mixer.c
index 54a512fb5fa8..6af51c50a542 100644
--- a/sound/usb/mixer.c
+++ b/sound/usb/mixer.c
@@ -304,8 +304,9 @@ static inline int mixer_ctrl_intf(struct usb_mixer_interface *mixer)
return get_iface_desc(mixer->hostif)->bInterfaceNumber;
}

-static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request,
- int validx, int *value_ret)
+/* send a request for UAC1 feature & mixer unit */
+static int request_ctl_v1(struct usb_mixer_elem_info *cval, u8 request,
+ int validx, int *value_ret)
{
struct snd_usb_audio *chip = cval->head.mixer->chip;
unsigned char buf[2];
@@ -345,98 +346,72 @@ static unsigned int to_mcn(const struct usb_mixer_elem_info *cval,
return (m - 1) * cval->num_outputs + (v - 1);
}

-static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
- int validx, int *value_ret)
+/* send a request for UAC2 feature & mixer unit */
+static int request_ctl_v2(struct usb_mixer_elem_info *cval, u8 request,
+ int validx, unsigned char *buf, int size)
{
struct snd_usb_audio *chip = cval->head.mixer->chip;
- /* enough space for one range */
- unsigned char buf[sizeof(__u16) + 3 * sizeof(__u32)];
- unsigned char *val;
- int idx = 0, ret, val_size, size;
- __u8 bRequest;
+ int idx, ret;

- val_size = uac2_ctl_value_size(cval->val_type);
+ CLASS(snd_usb_lock, pm)(chip);
+ if (pm.err)
+ return -EIO;

/* correct wValue for UAC2 mixer control with MCN */
if (cval->v2_mixer)
validx = (UAC2_MU_MIXER << 8) | to_mcn(cval, validx);

- if (request == UAC_GET_CUR) {
- bRequest = UAC2_CS_CUR;
- size = val_size;
- } else {
- bRequest = UAC2_CS_RANGE;
- size = sizeof(__u16) + 3 * val_size;
- }
-
- memset(buf, 0, sizeof(buf));
-
- {
- CLASS(snd_usb_lock, pm)(chip);
- if (pm.err)
- return -EIO;
-
- idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
- ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
- USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
- validx, idx, buf, size);
- }
-
- if (ret < 0) {
+ memset(buf, 0, size);
+ idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
+ ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0),
+ request,
+ USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
+ validx, idx, buf, size);
+ if (ret < 0)
usb_audio_dbg(chip,
"cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
request, validx, idx, cval->val_type);
+
+ return ret;
+}
+
+/* read the current value for UAC2 */
+static int get_ctl_value_v2(struct usb_mixer_elem_info *cval,
+ int validx, int *value_ret)
+{
+ /* enough space for one value */
+ unsigned char buf[sizeof(__u32)];
+ int ret, val_size;
+
+ val_size = uac2_ctl_value_size(cval->val_type);
+
+ ret = request_ctl_v2(cval, UAC2_CS_CUR, validx, buf, val_size);
+ if (ret < 0)
return ret;
- }
-
- /* FIXME: how should we handle multiple triplets here? */
-
- switch (request) {
- case UAC_GET_CUR:
- val = buf;
- break;
- case UAC_GET_MIN:
- val = buf + sizeof(__u16);
- break;
- case UAC_GET_MAX:
- val = buf + sizeof(__u16) + val_size;
- break;
- case UAC_GET_RES:
- val = buf + sizeof(__u16) + val_size * 2;
- break;
- default:
- return -EINVAL;
- }

*value_ret = convert_signed_value(cval,
- snd_usb_combine_bytes(val, val_size));
-
+ snd_usb_combine_bytes(buf, val_size));
return 0;
}

-static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
- int validx, int *value_ret)
+/* read the current value */
+static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
+ int validx, int *value_ret)
{
validx += cval->idx_off;

return (cval->head.mixer->protocol == UAC_VERSION_1) ?
- get_ctl_value_v1(cval, request, validx, value_ret) :
- get_ctl_value_v2(cval, request, validx, value_ret);
-}
-
-static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
- int validx, int *value)
-{
- return get_ctl_value(cval, UAC_GET_CUR, validx, value);
+ request_ctl_v1(cval, UAC_GET_CUR, validx, value_ret) :
+ get_ctl_value_v2(cval, validx, value_ret);
}

/* channel = 0: master, 1 = first channel */
static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
int channel, int *value)
{
- return get_ctl_value(cval, UAC_GET_CUR,
- (cval->control << 8) | channel,
- value);
+ return get_cur_ctl_value(cval,
+ (cval->control << 8) | channel,
+ value);
}

int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval,
@@ -466,6 +441,77 @@ int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval,
return 0;
}

+/* extract the mixer min/max/res info from UAC1 feature / mixer unit */
+static int get_ctl_range_v1(struct usb_mixer_elem_info *cval, int validx)
+{
+ int last_valid_res = cval->res;
+
+ if (request_ctl_v1(cval, UAC_GET_MAX, validx, &cval->max) < 0 ||
+ request_ctl_v1(cval, UAC_GET_MIN, validx, &cval->min) < 0) {
+ usb_audio_err(cval->head.mixer->chip,
+ "%d:%d: cannot get min/max values for control %d (id %d)\n",
+ cval->head.id, mixer_ctrl_intf(cval->head.mixer),
+ cval->control, cval->head.id);
+ return -EAGAIN;
+ }
+
+ if (request_ctl_v1(cval, UAC_GET_RES, validx, &cval->res) < 0) {
+ cval->res = 1;
+ return 0;
+ }
+
+ last_valid_res = cval->res;
+ while (cval->res > 1) {
+ if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
+ validx, cval->res / 2) < 0)
+ break;
+ cval->res /= 2;
+ }
+ if (request_ctl_v1(cval, UAC_GET_RES, validx, &cval->res) < 0)
+ cval->res = last_valid_res;
+
+ return 0;
+}
+
+/* extract the mixer min/max/res info from UAC2 feature / mixer unit */
+static int get_ctl_range_v2(struct usb_mixer_elem_info *cval, int validx)
+{
+ /* enough space for one range */
+ unsigned char buf[sizeof(__u16) + 3 * sizeof(__u32)];
+ unsigned char *val;
+ int ret, val_size, size;
+
+ val_size = uac2_ctl_value_size(cval->val_type);
+ size = sizeof(__u16) + 3 * val_size;
+
+ ret = request_ctl_v2(cval, UAC2_CS_RANGE, validx, buf, size);
+ if (ret < 0)
+ return ret;
+
+ /* FIXME: how should we handle multiple triplets here? */
+ val = buf + 2;
+ cval->min = convert_signed_value(cval, snd_usb_combine_bytes(val, val_size));
+ val += val_size;
+ cval->max = convert_signed_value(cval, snd_usb_combine_bytes(val, val_size));
+ val += val_size;
+ cval->res = convert_signed_value(cval, snd_usb_combine_bytes(val, val_size));
+ return 0;
+}
+
+/* extract the mixer min/max/res info */
+static int get_ctl_range(struct usb_mixer_elem_info *cval, int validx)
+{
+ switch (cval->head.mixer->protocol) {
+ case UAC_VERSION_1:
+ return get_ctl_range_v1(cval, validx);
+ case UAC_VERSION_2:
+ case UAC_VERSION_3:
+ return get_ctl_range_v2(cval, validx);
+ default:
+ return -EINVAL;
+ }
+}
+
/*
* set a mixer value
*/
@@ -1362,32 +1408,11 @@ static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
break;
}
}
- if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
- get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
- usb_audio_err(cval->head.mixer->chip,
- "%d:%d: cannot get min/max values for control %d (id %d)\n",
- cval->head.id, mixer_ctrl_intf(cval->head.mixer),
- cval->control, cval->head.id);
- return -EAGAIN;
- }
- if (get_ctl_value(cval, UAC_GET_RES,
- (cval->control << 8) | minchn,
- &cval->res) < 0) {
- cval->res = 1;
- } else if (cval->head.mixer->protocol == UAC_VERSION_1) {
- int last_valid_res = cval->res;

- while (cval->res > 1) {
- if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
- (cval->control << 8) | minchn,
- cval->res / 2) < 0)
- break;
- cval->res /= 2;
- }
- if (get_ctl_value(cval, UAC_GET_RES,
- (cval->control << 8) | minchn, &cval->res) < 0)
- cval->res = last_valid_res;
- }
+ ret = get_ctl_range(cval, (cval->control << 8) | minchn);
+ if (ret < 0)
+ return ret;
+
if (cval->res == 0)
cval->res = 1;

--
2.55.0


--Multipart_Thu_Sep_17_16:49:35_2026-1--