linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ath3k: asus bluetooth dongle won't work
@ 2012-02-17  1:35 Stephen Hemminger
  2012-02-17  8:34 ` Marcel Holtmann
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Hemminger @ 2012-02-17  1:35 UTC (permalink / raw)
  To: Vikram Kandukuri, Luis R. Rodriguez; +Cc: linux-bluetooth

Running on Debian Wheezy (3.2.0-1-amd64), my new Asus bluetooth
dongle didn't work. Made sure and get the correct firmware, but
the driver does not load it correctly.

[    8.364186] Bluetooth: Can't change to loading configuration err
[    8.364263] ath3k: probe of 2-4.3:1.0 failed with error -110
[    8.364300] usbcore: registered new interface driver ath3k


This is from a cold (power off) boot, but it happens repeatedly.

Any idea what could be wrong?

lsusb
Bus 002 Device 005: ID 0cf3:3000 Atheros Communications, Inc. AR3011 Bluetooth (no firmware)

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

* Re: ath3k: asus bluetooth dongle won't work
  2012-02-17  1:35 ath3k: asus bluetooth dongle won't work Stephen Hemminger
@ 2012-02-17  8:34 ` Marcel Holtmann
  2012-02-17 15:56   ` Stephen Hemminger
  0 siblings, 1 reply; 6+ messages in thread
From: Marcel Holtmann @ 2012-02-17  8:34 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: Vikram Kandukuri, Luis R. Rodriguez, linux-bluetooth

Hi Stephen,

> Running on Debian Wheezy (3.2.0-1-amd64), my new Asus bluetooth
> dongle didn't work. Made sure and get the correct firmware, but
> the driver does not load it correctly.
> 
> [    8.364186] Bluetooth: Can't change to loading configuration err
> [    8.364263] ath3k: probe of 2-4.3:1.0 failed with error -110
> [    8.364300] usbcore: registered new interface driver ath3k
> 
> 
> This is from a cold (power off) boot, but it happens repeatedly.
> 
> Any idea what could be wrong?
> 
> lsusb
> Bus 002 Device 005: ID 0cf3:3000 Atheros Communications, Inc. AR3011 Bluetooth (no firmware)

you need to ask Atheros for details, but maybe just the firmware file is
missing.

Regards

Marcel



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

* Re: ath3k: asus bluetooth dongle won't work
  2012-02-17  8:34 ` Marcel Holtmann
@ 2012-02-17 15:56   ` Stephen Hemminger
  2012-02-17 16:04     ` Marcel Holtmann
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Hemminger @ 2012-02-17 15:56 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: Vikram Kandukuri, Luis R. Rodriguez, linux-bluetooth

On Fri, 17 Feb 2012 09:34:43 +0100
Marcel Holtmann <marcel@holtmann.org> wrote:

> Hi Stephen,
> 
> > Running on Debian Wheezy (3.2.0-1-amd64), my new Asus bluetooth
> > dongle didn't work. Made sure and get the correct firmware, but
> > the driver does not load it correctly.
> > 
> > [    8.364186] Bluetooth: Can't change to loading configuration err
> > [    8.364263] ath3k: probe of 2-4.3:1.0 failed with error -110
> > [    8.364300] usbcore: registered new interface driver ath3k
> > 
> > 
> > This is from a cold (power off) boot, but it happens repeatedly.
> > 
> > Any idea what could be wrong?
> > 
> > lsusb
> > Bus 002 Device 005: ID 0cf3:3000 Atheros Communications, Inc. AR3011 Bluetooth (no firmware)
> 
> you need to ask Atheros for details, but maybe just the firmware file is
> missing.

Already covered that.

It is failing here where it sends the firmware.

	memcpy(send_buf, firmware->data, 20);
	if ((err = usb_control_msg(udev, pipe,
				USB_REQ_DFU_DNLOAD,
				USB_TYPE_VENDOR, 0, 0,
				send_buf, 20, USB_CTRL_SET_TIMEOUT)) < 0) {
		BT_ERR("Can't change to loading configuration err");
		goto error;
	}

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

* Re: ath3k: asus bluetooth dongle won't work
  2012-02-17 15:56   ` Stephen Hemminger
@ 2012-02-17 16:04     ` Marcel Holtmann
  2012-02-17 19:20       ` Luis R. Rodriguez
  0 siblings, 1 reply; 6+ messages in thread
From: Marcel Holtmann @ 2012-02-17 16:04 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: Vikram Kandukuri, Luis R. Rodriguez, linux-bluetooth

Hi Stephen,

> > > Running on Debian Wheezy (3.2.0-1-amd64), my new Asus bluetooth
> > > dongle didn't work. Made sure and get the correct firmware, but
> > > the driver does not load it correctly.
> > > 
> > > [    8.364186] Bluetooth: Can't change to loading configuration err
> > > [    8.364263] ath3k: probe of 2-4.3:1.0 failed with error -110
> > > [    8.364300] usbcore: registered new interface driver ath3k
> > > 
> > > 
> > > This is from a cold (power off) boot, but it happens repeatedly.
> > > 
> > > Any idea what could be wrong?
> > > 
> > > lsusb
> > > Bus 002 Device 005: ID 0cf3:3000 Atheros Communications, Inc. AR3011 Bluetooth (no firmware)
> > 
> > you need to ask Atheros for details, but maybe just the firmware file is
> > missing.
> 
> Already covered that.
> 
> It is failing here where it sends the firmware.
> 
> 	memcpy(send_buf, firmware->data, 20);
> 	if ((err = usb_control_msg(udev, pipe,
> 				USB_REQ_DFU_DNLOAD,
> 				USB_TYPE_VENDOR, 0, 0,
> 				send_buf, 20, USB_CTRL_SET_TIMEOUT)) < 0) {
> 		BT_ERR("Can't change to loading configuration err");
> 		goto error;
> 	}
> 

then you need to track down the Atheros guys. Not my driver or
hardware ;)

Regards

Marcel



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

* Re: ath3k: asus bluetooth dongle won't work
  2012-02-17 16:04     ` Marcel Holtmann
@ 2012-02-17 19:20       ` Luis R. Rodriguez
  2012-02-17 19:22         ` Stephen Hemminger
  0 siblings, 1 reply; 6+ messages in thread
From: Luis R. Rodriguez @ 2012-02-17 19:20 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: Stephen Hemminger, Vikram Kandukuri, linux-bluetooth

On Fri, Feb 17, 2012 at 05:04:57PM +0100, Marcel Holtmann wrote:
> Hi Stephen,
> 
> > > > Running on Debian Wheezy (3.2.0-1-amd64), my new Asus bluetooth
> > > > dongle didn't work. Made sure and get the correct firmware, but
> > > > the driver does not load it correctly.
> > > > 
> > > > [    8.364186] Bluetooth: Can't change to loading configuration err
> > > > [    8.364263] ath3k: probe of 2-4.3:1.0 failed with error -110
> > > > [    8.364300] usbcore: registered new interface driver ath3k
> > > > 
> > > > 
> > > > This is from a cold (power off) boot, but it happens repeatedly.
> > > > 
> > > > Any idea what could be wrong?
> > > > 
> > > > lsusb
> > > > Bus 002 Device 005: ID 0cf3:3000 Atheros Communications, Inc. AR3011 Bluetooth (no firmware)
> > > 
> > > you need to ask Atheros for details, but maybe just the firmware file is
> > > missing.
> > 
> > Already covered that.
> > 
> > It is failing here where it sends the firmware.
> > 
> > 	memcpy(send_buf, firmware->data, 20);
> > 	if ((err = usb_control_msg(udev, pipe,
> > 				USB_REQ_DFU_DNLOAD,
> > 				USB_TYPE_VENDOR, 0, 0,
> > 				send_buf, 20, USB_CTRL_SET_TIMEOUT)) < 0) {
> > 		BT_ERR("Can't change to loading configuration err");
> > 		goto error;
> > 	}
> > 
> 
> then you need to track down the Atheros guys. Not my driver or
> hardware ;)

They have been poked (its not me but I poked some internal folks).  In the
meantime, stephen do you have the latest firmware? For what its worth the
documentation to this driver is at:

http://wireless.kernel.org/en/users/Drivers/ath3k

  Luis

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

* Re: ath3k: asus bluetooth dongle won't work
  2012-02-17 19:20       ` Luis R. Rodriguez
@ 2012-02-17 19:22         ` Stephen Hemminger
  0 siblings, 0 replies; 6+ messages in thread
From: Stephen Hemminger @ 2012-02-17 19:22 UTC (permalink / raw)
  To: Luis R. Rodriguez; +Cc: Marcel Holtmann, Vikram Kandukuri, linux-bluetooth

On Fri, 17 Feb 2012 11:20:35 -0800
"Luis R. Rodriguez" <rodrigue@qca.qualcomm.com> wrote:

> They have been poked (its not me but I poked some internal folks).  In the
> meantime, stephen do you have the latest firmware? For what its worth the
> documentation to this driver is at:
> 
> http://wireless.kernel.org/en/users/Drivers/ath3k

Yes. Do have latest firmware. It looks like there is some USB
or kernel issue.

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

end of thread, other threads:[~2012-02-17 19:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-17  1:35 ath3k: asus bluetooth dongle won't work Stephen Hemminger
2012-02-17  8:34 ` Marcel Holtmann
2012-02-17 15:56   ` Stephen Hemminger
2012-02-17 16:04     ` Marcel Holtmann
2012-02-17 19:20       ` Luis R. Rodriguez
2012-02-17 19:22         ` Stephen Hemminger

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).