[PATCH] Bluetooth: ath3k: Add supports for Qualcomm Atherose 3012 composite chip
From: Yao, Costa <hidden>
Date: 2011-11-18 09:59:26
Subsystem:
bluetooth drivers, the rest · Maintainers:
Marcel Holtmann, Luiz Augusto von Dentz, Linus Torvalds
1 Use USB_DEVICE_AND_INTERFACE_INFO to do device matching with PID/VID 0x30= 06/0x0cf3. 2 Delete desc.bInterfaceNumber !=3D 0 check. 3 Add function ath3k_download_3006 to download firmware to hardware for 0x3= 006 Signed-off-by: Costa Yao <redacted> --- drivers/bluetooth/ath3k.c | 65 +++++++++++++++++++++++++++++++++++++++++= +--- 1 files changed, 61 insertions(+), 4 deletions(-)
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c
index 1622772..b38cd16 100644
--- a/drivers/bluetooth/ath3k.c
+++ b/drivers/bluetooth/ath3k.c@@ -40,6 +40,7 @@=20 #define ATH3K_MODE_MASK 0x3F #define ATH3K_NORMAL_MODE 0x0E +#define ATH3K_PREBOOT_MODE 0x0D =20 #define ATH3K_PATCH_UPDATE 0x80 #define ATH3K_SYSCFG_UPDATE 0x40
@@ -49,6 +50,9 @@ #define ATH3K_XTAL_FREQ_19P2 0x02 #define ATH3K_NAME_LEN 0xFF
=20
+#define BTUSB_ATH3012 0x80
+#define BTUSB_ATH3006 0x0100
+
struct ath3k_version {
unsigned int rom_version;
unsigned int build_version;@@ -71,6 +75,7 @@ static struct usb_device_id ath3k_table[] =3D {=20
/* Atheros AR3012 with sflash firmware*/
{ USB_DEVICE(0x0CF3, 0x3004) },
+ { USB_DEVICE_AND_INTERFACE_INFO(0x0CF3, 0x3006, 0xe0, 0x01, 0x01) },
=20
/* Atheros AR5BBU12 with sflash firmware */
{ USB_DEVICE(0x0489, 0xE02C) },@@ -80,13 +85,13 @@ static struct usb_device_id ath3k_table[] =3D {=20
MODULE_DEVICE_TABLE(usb, ath3k_table);
=20
-#define BTUSB_ATH3012 0x80
/* This table is to load patch and sysconfig files
* for AR3012 */
static struct usb_device_id ath3k_blist_tbl[] =3D {
=20
/* Atheros AR3012 with sflash firmware*/
{ USB_DEVICE(0x0cf3, 0x3004), .driver_info =3D BTUSB_ATH3012 },
+ { USB_DEVICE(0x0CF3, 0x3006), .driver_info =3D BTUSB_ATH3006 },
=20
{ } /* Terminating entry */
};@@ -355,6 +360,52 @@ static int ath3k_load_syscfg(struct usb_device *udev) return ret; }
=20
+static int ath3k_download_3006(struct usb_device *udev)
+{
+ int ret;
+ unsigned char fw_state;
+
+ if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x0001) {
+ BT_ERR("ath3k_probe: udev->descriptor.bcdDevice");
+ return -ENODEV;
+ }
+
+ ret =3D ath3k_get_state(udev, &fw_state);
+ if (ret < 0) {
+ BT_ERR("ath3k_probe: ath3k_get_state err");
+ return ret;
+ }
+
+ if ((fw_state & ATH3K_MODE_MASK) =3D=3D ATH3K_PREBOOT_MODE) {
+ BT_ERR("ath3k_probe: firmware are in preboot mode now");
+ BT_ERR("ath3k_probe: try to switch to Normal Mode");
+ ret =3D ath3k_set_normal_mode(udev);
+ if (ret < 0) {
+ BT_ERR("ath3k_probe: set normal mode failed");
+ return ret;
+ }
+ }
+
+ /* Note we should wait for a while */
+ mdelay(100);
+ ret =3D ath3k_load_patch(udev);
+ if (ret < 0) {
+ BT_ERR("ath3k_probe: Load patch file failed");
+ return ret;
+ }
+ ret =3D ath3k_load_syscfg(udev);
+ if (ret < 0) {
+ BT_ERR("ath3k_probe: Load sysconfig file failed");
+ return ret;
+ }
+ ret =3D ath3k_switch_pid(udev);
+ if (ret < 0) {
+ BT_ERR("ath3k_probe: switch pid failed");
+ return ret;
+ }
+ return 0;
+}
+
static int ath3k_probe(struct usb_interface *intf,
const struct usb_device_id *id)
{@@ -364,9 +415,6 @@ static int ath3k_probe(struct usb_interface *intf,=20
BT_DBG("intf %p id %p", intf, id);
=20
- if (intf->cur_altsetting->desc.bInterfaceNumber !=3D 0)
- return -ENODEV;
-
/* match device ID in ath3k blacklist table */
if (!id->driver_info) {
const struct usb_device_id *match;@@ -401,6 +449,15 @@ static int ath3k_probe(struct usb_interface *intf, return 0; }
=20
+ if (id->driver_info & BTUSB_ATH3006) {
+ ret =3D ath3k_download_3006(udev);
+ if (ret < 0) {
+ BT_ERR("ath3k_probe: download_3006 failed");
+ return ret;
+ }
+ return 0;
+ }
+
ret =3D request_firmware(&firmware, ATH3K_FIRMWARE, &udev->dev);
if (ret < 0) {
if (ret =3D=3D -ENOENT)
--=20
1.7.4.1