Skip to content

Commit 122e2cb

Browse files
ltyl-hemtiwai
authored andcommitted
ALSA: usb-audio: Add quirk flag for HEM devices to enable native DSD playback
This commit adds new DEVICE_FLG with QUIRK_FLAG_DSD_RAW and Vendor Id for HEM devices which supports native DSD. Prior to this change Linux kernel was not enabling native DSD playback for HEM devices, and as a result, DSD audio was being converted to PCM "on the fly". HEM devices, when connected to the system, would only play audio in PCM format, even if the source material was in DSD format. With the addition of new VENDOR_FLG in the quircks.c file, the devices are now correctly recognized, and raw DSD data is transmitted to the device, allowing for native DSD playback. Signed-off-by: Lukasz Tyl <[email protected]> Cc: <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent 8ba61c9 commit 122e2cb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sound/usb/quirks.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2191,6 +2191,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
21912191
QUIRK_FLAG_DSD_RAW),
21922192
VENDOR_FLG(0x2ab6, /* T+A devices */
21932193
QUIRK_FLAG_DSD_RAW),
2194+
VENDOR_FLG(0x3336, /* HEM devices */
2195+
QUIRK_FLAG_DSD_RAW),
21942196
VENDOR_FLG(0x3353, /* Khadas devices */
21952197
QUIRK_FLAG_DSD_RAW),
21962198
VENDOR_FLG(0x3842, /* EVGA */

0 commit comments

Comments
 (0)