mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ALSA: usb-audio: Add DSD support for iBasso DC04U
@ 2026-02-09  2:06 V-Conet
  2026-02-09  9:37 ` Takashi Iwai
  2026-02-09 10:04 ` [PATCH v2] " Qihang Guo
  0 siblings, 2 replies; 4+ messages in thread
From: V-Conet @ 2026-02-09  2:06 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Jaroslav Kysela, linux-sound, linux-kernel, V-Conet

The vendor ID 0x0661 is assigned to Hamamatsu Photonics K.K., but is used by iBasso for the iBasso DC04U USB DAC (0x0661:0x0883), which supports native DSD playback.

This patch adds QUIRK_FLAG_DSD_RAW for the iBasso DC04U, enabling native DSD playback (DSD_U32_BE). The change has been verified on Arch Linux using mpd and pw-cat.

Signed-off-by: V-Conet <v-conet@outlook.com>
---
 sound/usb/quirks.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index 2d9f28558..d550c84e7 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -2236,6 +2236,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
 	DEVICE_FLG(0x0644, 0x806c, /* Esoteric XD */
 		   QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY |
 		   QUIRK_FLAG_IFACE_DELAY | QUIRK_FLAG_FORCE_IFACE_RESET),
+	DEVICE_FLG(0x0661, 0x0883, /* iBasso DC04 Ultra */
+		   QUIRK_FLAG_DSD_RAW),
 	DEVICE_FLG(0x06f8, 0xb000, /* Hercules DJ Console (Windows Edition) */
 		   QUIRK_FLAG_IGNORE_CTL_ERROR),
 	DEVICE_FLG(0x06f8, 0xd002, /* Hercules DJ Console (Macintosh Edition) */
-- 
2.53.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ALSA: usb-audio: Add DSD support for iBasso DC04U
  2026-02-09  2:06 [PATCH] ALSA: usb-audio: Add DSD support for iBasso DC04U V-Conet
@ 2026-02-09  9:37 ` Takashi Iwai
  2026-02-09 10:04 ` [PATCH v2] " Qihang Guo
  1 sibling, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2026-02-09  9:37 UTC (permalink / raw)
  To: V-Conet; +Cc: Takashi Iwai, Jaroslav Kysela, linux-sound, linux-kernel

On Mon, 09 Feb 2026 03:06:47 +0100,
V-Conet wrote:
> 
> The vendor ID 0x0661 is assigned to Hamamatsu Photonics K.K., but is used by iBasso for the iBasso DC04U USB DAC (0x0661:0x0883), which supports native DSD playback.
> 
> This patch adds QUIRK_FLAG_DSD_RAW for the iBasso DC04U, enabling native DSD playback (DSD_U32_BE). The change has been verified on Arch Linux using mpd and pw-cat.
> 
> Signed-off-by: V-Conet <v-conet@outlook.com>

Thanks for the patch.  The code change looks OK, but could you give
your Signed-off-by with a real name (or a known identity), as it's a
legal requirement for upstreaming?

Also, please fold the patch description texts properly, too.


thanks,

Takashi

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] ALSA: usb-audio: Add DSD support for iBasso DC04U
  2026-02-09  2:06 [PATCH] ALSA: usb-audio: Add DSD support for iBasso DC04U V-Conet
  2026-02-09  9:37 ` Takashi Iwai
@ 2026-02-09 10:04 ` Qihang Guo
  2026-02-09 15:08   ` Takashi Iwai
  1 sibling, 1 reply; 4+ messages in thread
From: Qihang Guo @ 2026-02-09 10:04 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Jaroslav Kysela, linux-sound, linux-kernel, V-Conet

From: V-Conet <v-conet@outlook.com>

Vendor ID 0x0661 is assigned to Hamamatsu Photonics K.K.,
but is used by iBasso for iBasso DC04U (0x0661:0x0883),
which supports native DSD playback.

This patch adds QUIRK_FLAG_DSD_RAW for iBasso DC04U, enabling
native DSD playback (DSD_U32_BE). The change has been verified
on Arch Linux using mpd and pw-cat.

Signed-off-by: Qihang Guo <v-conet@outlook.com>
---
 sound/usb/quirks.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index 2d9f28558..d550c84e7 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -2236,6 +2236,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
 	DEVICE_FLG(0x0644, 0x806c, /* Esoteric XD */
 		   QUIRK_FLAG_ITF_USB_DSD_DAC | QUIRK_FLAG_CTL_MSG_DELAY |
 		   QUIRK_FLAG_IFACE_DELAY | QUIRK_FLAG_FORCE_IFACE_RESET),
+	DEVICE_FLG(0x0661, 0x0883, /* iBasso DC04 Ultra */
+		   QUIRK_FLAG_DSD_RAW),
 	DEVICE_FLG(0x06f8, 0xb000, /* Hercules DJ Console (Windows Edition) */
 		   QUIRK_FLAG_IGNORE_CTL_ERROR),
 	DEVICE_FLG(0x06f8, 0xd002, /* Hercules DJ Console (Macintosh Edition) */
-- 
2.53.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] ALSA: usb-audio: Add DSD support for iBasso DC04U
  2026-02-09 10:04 ` [PATCH v2] " Qihang Guo
@ 2026-02-09 15:08   ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2026-02-09 15:08 UTC (permalink / raw)
  To: Qihang Guo; +Cc: Takashi Iwai, Jaroslav Kysela, linux-sound, linux-kernel

On Mon, 09 Feb 2026 11:04:18 +0100,
Qihang Guo wrote:
> 
> From: V-Conet <v-conet@outlook.com>
> 
> Vendor ID 0x0661 is assigned to Hamamatsu Photonics K.K.,
> but is used by iBasso for iBasso DC04U (0x0661:0x0883),
> which supports native DSD playback.
> 
> This patch adds QUIRK_FLAG_DSD_RAW for iBasso DC04U, enabling
> native DSD playback (DSD_U32_BE). The change has been verified
> on Arch Linux using mpd and pw-cat.
> 
> Signed-off-by: Qihang Guo <v-conet@outlook.com>

Thanks, applied now.


Takashi

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-02-09 15:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-09  2:06 [PATCH] ALSA: usb-audio: Add DSD support for iBasso DC04U V-Conet
2026-02-09  9:37 ` Takashi Iwai
2026-02-09 10:04 ` [PATCH v2] " Qihang Guo
2026-02-09 15:08   ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®