Re: [REGRESSION] snd-usb-audio: SteelSeries Arctis Nova 5 mixer controls disabled as sticky
Takashi Iwai <[email protected]> Thu, 06 Aug 2026 12:54:39 +0200
| Newsgroups | org.kernel.vger.linux-sound,dev.linux.lists.regressions |
|---|---|
| Message-ID | <[email protected]> |
On Thu, 06 Aug 2026 12:33:07 +0200, Gert Burger wrote: > > On Thu, 6 Aug 2026 at 07:27, Takashi Iwai <[email protected]> wrote: > > > > On Wed, 05 Aug 2026 17:41:27 +0200, > > Gert Burger wrote: > > > > > > > > > On archlinux, after I upgraded to kernel 7.1.5-arch1-2, the sound volume is > > > significantly lower and seems to lack bass. > > > > > > Reported by someone else here: > > > https://bbs.archlinux.org/viewtopic.php?id=314220 > > > > > > Previous kernel was 7.0.14.arch1-1 (working) > > > > > > Attached is also-info.sh for 7.1.5-arch1-2 (broken) and 6.18.41-1-lts (as a > > > workaround I installed an lts kernel, works) > > > > > > Device: > > > Bus 005 Device 003: ID 1038:2232 SteelSeries ApS SteelSeries Arctis Nova 5 > > > > > > Dmesg diff: > > > Aug 05 16:22:19 framework kernel: usb 5-1.1: 9:0: sticky mixer values (-19712/ > > > 0/256 => 0), disabling > > > Aug 05 16:22:19 framework kernel: usb 5-1.1: 10:0: sticky mixer values (-21248 > > > /0/256 => 0), disabling > > > > > > Can I need to provide anything else? > > > > Could you try 7.2 kernel? I guess it's still broken, but then try to > > pass the option "quirk_flags=1038:2232:mixer_get_cur_broken" to > > snd-usb-audio module and retest? > > > > I tested with the `linux-mainline` package, currently on version 7.2rc5-1 > > # cat /etc/modprobe.d/snd-usb-audio.conf > options snd-usb-audio quirk_flags=1038:2232:mixer_get_cur_broken > > That seems to have "fixed" it. Good to hear. Could you try the patch below? I'm going to submit it in anyway, but it'd be appreciated if you can test it beforehand. thanks, Takashi -- 8< -- From: Takashi Iwai <[email protected]> Subject: [PATCH] ALSA: usb-audio: Fix mixer regression on SteelSeries Arctis Nova 5 The recent "sticky mixer" sanity check in USB-audio driver caused a regression on SteelSeries Arctis Nova 5 (1038:2232); because the firmware doesn't handle GET_CUR requests, some mixers are effectively disabled, leading to the too low / soft volumes: usb 5-1.1: 9:0: sticky mixer values (-19712/0/256 => 0), disabling usb 5-1.1: 10:0: sticky mixer values (-21248/0/256 => 0), disabling Restore the functionality by ignoring GET_CUR errors intentionally with MIXER_GET_CUR_BROKEN quirk. Fixes: 86aa1ea1f15c ("ALSA: usb-audio: Do not expose sticky mixers") Reported-by: Gert Burger <[email protected]> Closes: https://lore.kernel.org/CAEQ1D3kdA3mkQx7ei9Kq0gwky0qroJqCLKrkvgfkqgTbeu086A@mail.gmail.com Link: https://bbs.archlinux.org/viewtopic.php?id=314220 Signed-off-by: Takashi Iwai <[email protected]> --- sound/usb/quirks.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c index 3330eb604911..618baa80d2b7 100644 --- a/sound/usb/quirks.c +++ b/sound/usb/quirks.c @@ -2363,6 +2363,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = { QUIRK_FLAG_SHARE_MEDIA_DEVICE | QUIRK_FLAG_ALIGN_TRANSFER), DEVICE_FLG(0x1038, 0x1294, /* SteelSeries Arctis Pro Wireless */ QUIRK_FLAG_MIXER_PLAYBACK_MIN_MUTE), + DEVICE_FLG(0x1038, 0x2232, /* SteelSeries Arctis Nova 5 */ + QUIRK_FLAG_MIXER_GET_CUR_BROKEN), DEVICE_FLG(0x1101, 0x0003, /* Audioengine D1 */ QUIRK_FLAG_GET_SAMPLE_RATE), DEVICE_FLG(0x12d1, 0x3a07, /* HUAWEI USB-C HEADSET */ -- 2.55.0