From: Marcel Holtmann <marcel@holtmann.org>
To: "Yao, Costa" <cqyao@qca.qualcomm.com>
Cc: "padovan@profusion.mobi" <padovan@profusion.mobi>,
"linux-bluetooth@vger.kernel.org"
<linux-bluetooth@vger.kernel.org>
Subject: RE: [PATCH] Bluetooth: btusb: Add Qualcomm Atheros AR3006 in blacklist_table
Date: Thu, 17 Nov 2011 16:51:29 +0100 [thread overview]
Message-ID: <1321545089.15441.572.camel@aeonflux> (raw)
In-Reply-To: <07BBB2AAB1A10A488A2AD166C7CB8B0DEF3C48@nasanexd02b.na.qualcomm.com>
Hi Costa,
> > > Signed-off-by: Costa Yao <cqyao@qca.qualcomm.com>
> > > ---
> > > drivers/bluetooth/btusb.c | 5 ++++-
> > > 1 files changed, 4 insertions(+), 1 deletions(-)
> > >
> > > diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> > > index 39dd65c..94124ad 100644
> > > --- a/drivers/bluetooth/btusb.c
> > > +++ b/drivers/bluetooth/btusb.c
> > > @@ -55,6 +55,7 @@ static struct usb_driver btusb_driver;
> > > #define BTUSB_BROKEN_ISOC 0x20
> > > #define BTUSB_WRONG_SCO_MTU 0x40
> > > #define BTUSB_ATH3012 0x80
> > > +#define BTUSB_ATH3006 0x0100
> > >
> > > static struct usb_device_id btusb_table[] = {
> > > /* Bluetooth USB interface */
> > > @@ -125,6 +126,7 @@ static struct usb_device_id blacklist_table[] = {
> > >
> > > /* Atheros 3012 with sflash firmware */
> > > { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
> > > + { USB_DEVICE(0x0cf3, 0x3006), .driver_info = BTUSB_ATH3006 },
> > >
> > > /* Atheros AR5BBU12 with sflash firmware */
> > > { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE }, @@
> > > -937,7 +939,8 @@ static int btusb_probe(struct usb_interface *intf,
> > > if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
> > > return -ENODEV;
> > >
> > > - if (id->driver_info & BTUSB_ATH3012) {
> > > + if ((id->driver_info & BTUSB_ATH3012) ||
> > > + (id->driver_info & BTUSB_ATH3006)) {
> > > struct usb_device *udev = interface_to_usbdev(intf);
> > >
> > > /* Old firmware would otherwise let ath3k driver load
> >
> > if (id->driver_info & BTUSB_ATH3012) {
> > struct usb_device *udev = interface_to_usbdev(intf);
> >
> > /* Old firmware would otherwise let ath3k driver load
> > * patch and sysconfig files */
> > if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
> > return -ENODEV;
> > }
> >
> > are you sure this is true for the 3006 as well? Otherwise just using the
> > BTUSB_IGNORE quirk to blacklist a device would be enough.
> >
> I send this patch just for a 3012 chip, with PID 3006. Because we need to separate it with another 3012 chip(PID 3004).
> So we use BTUSB_ATH3012 for PID 3004 and BTUSB_ATH3006 for PID 3006.
>
> And I am sure that we need use this quirk, not BTUSB_IGNORE. Because we need to check whether chip has been patched or not through bcdDevice value.
so you are telling me that you guys managed to screw up another set of
hardware with the same mess as the previous one.
Are you 100% sure you need the bcdDevice check for this generation of
hardware? Care to explain to me how that is suppose to work. And why you
are introducing a new quirk if the handling is exactly the same.
Regards
Marcel
next prev parent reply other threads:[~2011-11-17 15:51 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-16 11:09 [PATCH] Bluetooth: btusb: Add Qualcomm Atheros AR3006 in blacklist_table Yao, Costa
2011-11-16 13:29 ` Marcel Holtmann
2011-11-17 5:15 ` Yao, Costa
2011-11-17 15:51 ` Marcel Holtmann [this message]
2011-11-18 2:22 ` Yao, Costa
2011-11-18 5:17 ` Marcel Holtmann
2011-11-18 6:15 ` Yao, Costa
2011-11-18 7:48 ` Marcel Holtmann
2011-11-21 16:16 ` Gustavo Padovan
2011-11-22 2:43 ` Yao, Costa
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=1321545089.15441.572.camel@aeonflux \
--to=marcel@holtmann.org \
--cc=cqyao@qca.qualcomm.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=padovan@profusion.mobi \
/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