Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ALSA: usb-audio: apply quirk for Playstation PDP Riffmaster

This device, just like the Playstation 5's DualSense, has a volume
that's too low, hid-playstation solves this by raising the minimum
volume on the device itself by sending an output report, third party PS5
controllers/accessories do not support this output report format, so we
apply a quirk to raise the minimum volume by 6dB.

Signed-off-by: Rosalie Wanders <rosalie@mailbox.org>
Link: https://patch.msgid.link/20260426025520.3985-2-rosalie@mailbox.org
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Rosalie Wanders and committed by
Takashi Iwai
110189f0 b795666e

+10
+10
sound/usb/mixer.c
··· 1190 1190 cval->res = 1; 1191 1191 } 1192 1192 break; 1193 + 1194 + case USB_ID(0x0e6f, 0x024a): /* PDP Riffmaster for PS4 */ 1195 + case USB_ID(0x0e6f, 0x0249): /* PDP Riffmaster for PS5 */ 1196 + if (!strcmp(kctl->id.name, "PCM Playback Volume")) { 1197 + usb_audio_info(chip, 1198 + "set volume quirk for PDP Riffmaster for PS4/PS5\n"); 1199 + cval->min = -2560; /* Mute under it */ 1200 + } 1201 + break; 1202 + 1193 1203 case USB_ID(0x3302, 0x12db): /* MOONDROP Quark2 */ 1194 1204 if (!strcmp(kctl->id.name, "PCM Playback Volume")) { 1195 1205 usb_audio_info(chip,