Commit 6234fdc1 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: usb-audio: Quirk for BOSS GT-001

The capture stream of BOSS GT-001 seems always requiring to be tied
with the playback stream.  OTOH, the playback stream of this device
doesn't seem working in the implicit fb mode, per se, since the
playback must be running before the capture stream.

This patch tries to address the points above:
- Avoid the implicit fb mode for the playback
- Set up a fake sync EP for the capture stream with the hard-coded
  playback stream using the implicit fb mode
Reported-by: default avatarKeith Milner <kamilner@superlative.org>
Tested-by: default avatarKeith Milner <kamilner@superlative.org>
Tested-by: default avatarDylan Robinson <dylan_robinson@motu.com>
Link: https://lore.kernel.org/r/20201123085347.19667-37-tiwai@suse.deSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 8ec08b1a
......@@ -403,6 +403,9 @@ static int audioformat_implicit_fb_quirk(struct snd_usb_audio *chip,
case USB_ID(0x0582, 0x01d8): /* BOSS Katana */
/* BOSS Katana amplifiers do not need quirks */
return 0;
case USB_ID(0x0582, 0x01e5): /* BOSS GT-001 */
/* BOSS GT-001 needs no implicit fb for playback */
return 0;
}
/* Generic UAC2 implicit feedback */
......@@ -454,6 +457,30 @@ static int audioformat_implicit_fb_quirk(struct snd_usb_audio *chip,
return 1;
}
static int audioformat_capture_quirk(struct snd_usb_audio *chip,
struct audioformat *fmt,
struct usb_host_interface *alts)
{
struct usb_device *dev = chip->dev;
switch (chip->usb_id) {
case USB_ID(0x0582, 0x01e5): /* BOSS GT-001 */
if (!snd_usb_get_host_interface(chip, 0x01, 0x01))
return 0;
fmt->sync_ep = 0x0d;
fmt->sync_iface = 0x01;
fmt->sync_altsetting = 0x01;
fmt->sync_ep_idx = 0;
fmt->implicit_fb = 1;
dev_dbg(&dev->dev, "%d:%d: added fake capture sync sync_ep=%x, iface=%d, alt=%d\n",
fmt->iface, fmt->altsetting, fmt->sync_ep, fmt->sync_iface,
fmt->sync_altsetting);
return 1;
}
return 0;
}
int snd_usb_audioformat_set_sync_ep(struct snd_usb_audio *chip,
struct audioformat *fmt)
{
......@@ -474,6 +501,10 @@ int snd_usb_audioformat_set_sync_ep(struct snd_usb_audio *chip,
err = audioformat_implicit_fb_quirk(chip, fmt, alts);
if (err > 0)
return 0;
} else {
err = audioformat_capture_quirk(chip, fmt, alts);
if (err > 0)
return 0;
}
if (altsd->bNumEndpoints < 2)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment