From: Takashi Iwai <tiwai@suse.de>
To: Joakim Tjernlund <Joakim.Tjernlund@infinera.com>
Cc: "alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>
Subject: Re: usb 1-2: 1:1: cannot set freq 44100 to ep 0x81 and potential fix
Date: Tue, 22 Aug 2017 08:06:30 +0200 [thread overview]
Message-ID: <s5h1so4uoex.wl-tiwai@suse.de> (raw)
In-Reply-To: <1503305016.9282.5.camel@infinera.com>
On Mon, 21 Aug 2017 10:43:39 +0200,
Joakim Tjernlund wrote:
>
> On Sun, 2017-08-20 at 15:14 +0200, Joakim Tjernlund wrote:
> > I have two USB headsets (Logitech Inc Logitech Stereo H650e and
> > Jabra Jabra UC VOICE 550a) who both causes lots of:
> >
> > usb 1-2: 1:1: cannot set freq 44100 to ep 0x81
> >
> > errors when using them for pidgin audio chats. The actual freq
> > varies though.
> >
> > I found that adding a small delay here:
> > diff -u sound/usb/clock.c.org sound/usb/clock.c
> > --- sound/usb/clock.c.org 2017-08-18 14:38:05.597977669 +0200
> > +++ sound/usb/clock.c 2017-08-18 14:20:14.653661513 +0200
> > @@ -304,6 +304,7 @@
> > iface, fmt->altsetting, rate, ep);
> > return err;
> > }
> > + msleep(1);
> >
> > /* Don't check the sample rate for devices which we know don't
> > * support reading */
> >
> > it seems one cannot do these settings too fast
> > Ant better idea for a fix? kernel 4.9.44
> >
> > Jocke
> >
> > PS.
> > When starting a chat with pidgin-sipe, I see the same sample rate
> > freq setting twice, not sure where that comes from.
> >
>
> I found snd_usb_ctl_msg_quirk() and if I add the same logic as
> for Zoom R16/24:
> +
> + /* Logitech H650e needs a tiny delay here, otherwise requests like
> + * get/set frequency return as failed despite actually succeeding.
> + */
> + if (chip->usb_id == USB_ID(0x046D, 0x0A46) &&
> + (requesttype & USB_TYPE_MASK) == USB_TYPE_CLASS)
> + mdelay(1);
> +
> + /* Jambra 550a needs a tiny delay here, otherwise requests like
> + * get/set frequency return as failed despite actually succeeding.
> + */
> + if (chip->usb_id == USB_ID(0x0B0E, 0x0349) &&
> + (requesttype & USB_TYPE_MASK) == USB_TYPE_CLASS)
> + mdelay(1);
>
> it works again. Is the above an acceptable patch ?
Yes, looks OK. Care to cook up the fix and submit?
After merging your fix, I'll clean up the quirk function to use
switch/case instead of multiple if.
thanks,
Takashi
prev parent reply other threads:[~2017-08-22 6:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-20 13:14 usb 1-2: 1:1: cannot set freq 44100 to ep 0x81 and potential fix Joakim Tjernlund
2017-08-21 8:43 ` Joakim Tjernlund
2017-08-22 6:06 ` Takashi Iwai [this message]
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=s5h1so4uoex.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=Joakim.Tjernlund@infinera.com \
--cc=alsa-devel@alsa-project.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).