From: Takashi Iwai <tiwai@suse.de>
To: Gert Burger <gertburger@gmail.com>
Cc: Takashi Iwai <tiwai@suse.de>,
linux-sound@vger.kernel.org, regressions@lists.linux.dev
Subject: Re: [REGRESSION] snd-usb-audio: SteelSeries Arctis Nova 5 mixer controls disabled as sticky
Date: Thu, 06 Aug 2026 12:54:39 +0200 [thread overview]
Message-ID: <87ecgbecy8.wl-tiwai@suse.de> (raw)
In-Reply-To: <CAEQ1D3ky_7+g6_1J7ymxGUq4DNrPyx8OCsQ8Z42j2-XncMW8ZQ@mail.gmail.com>
On Thu, 06 Aug 2026 12:33:07 +0200,
Gert Burger wrote:
>
> On Thu, 6 Aug 2026 at 07:27, Takashi Iwai <tiwai@suse.de> 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 <tiwai@suse.de>
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 <gertburger@gmail.com>
Closes: https://lore.kernel.org/CAEQ1D3kdA3mkQx7ei9Kq0gwky0qroJqCLKrkvgfkqgTbeu086A@mail.gmail.com
Link: https://bbs.archlinux.org/viewtopic.php?id=314220
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
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
next prev parent reply other threads:[~2026-08-06 10:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-05 15:41 [REGRESSION] snd-usb-audio: SteelSeries Arctis Nova 5 mixer controls disabled as sticky Gert Burger
2026-08-05 16:08 ` Thorsten Leemhuis
2026-08-06 6:27 ` Takashi Iwai
2026-08-06 10:33 ` Gert Burger
2026-08-06 10:54 ` Takashi Iwai [this message]
2026-08-10 11:31 ` Gert Burger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ecgbecy8.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=gertburger@gmail.com \
--cc=linux-sound@vger.kernel.org \
--cc=regressions@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.