Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2008-2009 Atheros Communications Inc. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | */ |
| 19 | |
| 20 | |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/kernel.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/slab.h> |
| 25 | #include <linux/types.h> |
| 26 | #include <linux/errno.h> |
| 27 | #include <linux/device.h> |
| 28 | #include <linux/firmware.h> |
| 29 | #include <linux/usb.h> |
Marcel Holtmann | 72dd2b2 | 2014-07-20 17:29:59 +0200 | [diff] [blame] | 30 | #include <asm/unaligned.h> |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 31 | #include <net/bluetooth/bluetooth.h> |
| 32 | |
| 33 | #define VERSION "1.0" |
Paul Fertser | c3eae82 | 2011-10-29 21:52:49 +0400 | [diff] [blame] | 34 | #define ATH3K_FIRMWARE "ath3k-1.fw" |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 35 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 36 | #define ATH3K_DNLOAD 0x01 |
| 37 | #define ATH3K_GETSTATE 0x05 |
| 38 | #define ATH3K_SET_NORMAL_MODE 0x07 |
| 39 | #define ATH3K_GETVERSION 0x09 |
| 40 | #define USB_REG_SWITCH_VID_PID 0x0a |
| 41 | |
| 42 | #define ATH3K_MODE_MASK 0x3F |
| 43 | #define ATH3K_NORMAL_MODE 0x0E |
| 44 | |
| 45 | #define ATH3K_PATCH_UPDATE 0x80 |
| 46 | #define ATH3K_SYSCFG_UPDATE 0x40 |
| 47 | |
| 48 | #define ATH3K_XTAL_FREQ_26M 0x00 |
| 49 | #define ATH3K_XTAL_FREQ_40M 0x01 |
| 50 | #define ATH3K_XTAL_FREQ_19P2 0x02 |
| 51 | #define ATH3K_NAME_LEN 0xFF |
| 52 | |
| 53 | struct ath3k_version { |
Marcel Holtmann | 72dd2b2 | 2014-07-20 17:29:59 +0200 | [diff] [blame] | 54 | __le32 rom_version; |
| 55 | __le32 build_version; |
| 56 | __le32 ram_version; |
| 57 | __u8 ref_clock; |
| 58 | __u8 reserved[7]; |
| 59 | } __packed; |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 60 | |
Marcel Holtmann | 3932eb3 | 2013-10-11 07:46:21 -0700 | [diff] [blame] | 61 | static const struct usb_device_id ath3k_table[] = { |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 62 | /* Atheros AR3011 */ |
| 63 | { USB_DEVICE(0x0CF3, 0x3000) }, |
Bala Shanmugam | be93112 | 2010-11-26 17:35:46 +0530 | [diff] [blame] | 64 | |
| 65 | /* Atheros AR3011 with sflash firmware*/ |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 66 | { USB_DEVICE(0x0489, 0xE027) }, |
| 67 | { USB_DEVICE(0x0489, 0xE03D) }, |
Alexander Ploumistos | 2eeff0b | 2015-02-13 21:05:11 +0200 | [diff] [blame] | 68 | { USB_DEVICE(0x04F2, 0xAFF1) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 69 | { USB_DEVICE(0x0930, 0x0215) }, |
Bala Shanmugam | be93112 | 2010-11-26 17:35:46 +0530 | [diff] [blame] | 70 | { USB_DEVICE(0x0CF3, 0x3002) }, |
Marek Vasut | 6eda541 | 2012-06-08 14:32:50 +0200 | [diff] [blame] | 71 | { USB_DEVICE(0x0CF3, 0xE019) }, |
Andy Ross | 2a7bccc | 2011-05-09 16:11:16 -0700 | [diff] [blame] | 72 | { USB_DEVICE(0x13d3, 0x3304) }, |
Bala Shanmugam | be93112 | 2010-11-26 17:35:46 +0530 | [diff] [blame] | 73 | |
Cho, Yu-Chen | 509e786 | 2011-01-26 17:10:59 +0800 | [diff] [blame] | 74 | /* Atheros AR9285 Malbec with sflash firmware */ |
| 75 | { USB_DEVICE(0x03F0, 0x311D) }, |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 76 | |
| 77 | /* Atheros AR3012 with sflash firmware*/ |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 78 | { USB_DEVICE(0x0489, 0xe04d) }, |
| 79 | { USB_DEVICE(0x0489, 0xe04e) }, |
| 80 | { USB_DEVICE(0x0489, 0xe057) }, |
| 81 | { USB_DEVICE(0x0489, 0xe056) }, |
| 82 | { USB_DEVICE(0x0489, 0xe05f) }, |
Dmitry Tunin | 692c062 | 2015-06-06 20:25:40 +0300 | [diff] [blame] | 83 | { USB_DEVICE(0x0489, 0xe076) }, |
Anantha Krishnan | 4b552bc | 2014-10-06 16:31:49 +0530 | [diff] [blame] | 84 | { USB_DEVICE(0x0489, 0xe078) }, |
Dmitry Tunin | 28c971d | 2016-02-10 00:49:11 +0300 | [diff] [blame] | 85 | { USB_DEVICE(0x0489, 0xe095) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 86 | { USB_DEVICE(0x04c5, 0x1330) }, |
| 87 | { USB_DEVICE(0x04CA, 0x3004) }, |
| 88 | { USB_DEVICE(0x04CA, 0x3005) }, |
| 89 | { USB_DEVICE(0x04CA, 0x3006) }, |
Mohammed Habibulla | 1fb4e09 | 2014-04-17 11:37:13 -0700 | [diff] [blame] | 90 | { USB_DEVICE(0x04CA, 0x3007) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 91 | { USB_DEVICE(0x04CA, 0x3008) }, |
| 92 | { USB_DEVICE(0x04CA, 0x300b) }, |
Dmitry Tunin | 7e730c7f | 2015-06-18 20:41:51 +0300 | [diff] [blame] | 93 | { USB_DEVICE(0x04CA, 0x300d) }, |
Dmitry Tunin | ec0810d | 2015-05-02 13:36:58 +0300 | [diff] [blame] | 94 | { USB_DEVICE(0x04CA, 0x300f) }, |
Janne Heikkinen | 134d3b3 | 2014-12-09 07:44:51 +0200 | [diff] [blame] | 95 | { USB_DEVICE(0x04CA, 0x3010) }, |
Dmitry Tunin | 81d9044 | 2016-02-28 11:04:06 +0300 | [diff] [blame] | 96 | { USB_DEVICE(0x04CA, 0x3014) }, |
Dmitry Tunin | 441ad62 | 2017-01-05 13:19:53 +0300 | [diff] [blame] | 97 | { USB_DEVICE(0x04CA, 0x3018) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 98 | { USB_DEVICE(0x0930, 0x0219) }, |
Dmitry Tunin | cd355ff | 2015-10-05 19:29:33 +0300 | [diff] [blame] | 99 | { USB_DEVICE(0x0930, 0x021c) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 100 | { USB_DEVICE(0x0930, 0x0220) }, |
Vincent Zwanenburg | 89d2975 | 2014-08-08 12:33:56 +0100 | [diff] [blame] | 101 | { USB_DEVICE(0x0930, 0x0227) }, |
Andy Shevchenko | a735f9e | 2014-02-18 18:26:20 +0200 | [diff] [blame] | 102 | { USB_DEVICE(0x0b05, 0x17d0) }, |
Ming Lei | d66629c | 2013-03-15 11:00:39 +0800 | [diff] [blame] | 103 | { USB_DEVICE(0x0CF3, 0x0036) }, |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 104 | { USB_DEVICE(0x0CF3, 0x3004) }, |
Sunguk Lee | 94a32d10 | 2013-03-12 04:41:58 +0900 | [diff] [blame] | 105 | { USB_DEVICE(0x0CF3, 0x3008) }, |
Cho, Yu-Chen | 07c0ea8 | 2012-03-14 22:01:21 +0200 | [diff] [blame] | 106 | { USB_DEVICE(0x0CF3, 0x311D) }, |
Oliver Neukum | b131237 | 2014-01-16 15:37:11 +0100 | [diff] [blame] | 107 | { USB_DEVICE(0x0CF3, 0x311E) }, |
Oliver Neukum | 1e56f1e | 2014-01-16 16:02:58 +0100 | [diff] [blame] | 108 | { USB_DEVICE(0x0CF3, 0x311F) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 109 | { USB_DEVICE(0x0cf3, 0x3121) }, |
Ming Lei | ebaf579 | 2013-03-18 23:45:11 +0800 | [diff] [blame] | 110 | { USB_DEVICE(0x0CF3, 0x817a) }, |
Dmitry Tunin | 18e0afa | 2015-10-16 11:45:26 +0300 | [diff] [blame] | 111 | { USB_DEVICE(0x0CF3, 0x817b) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 112 | { USB_DEVICE(0x0cf3, 0xe003) }, |
AceLan Kao | ac71311 | 2012-04-19 14:53:45 +0800 | [diff] [blame] | 113 | { USB_DEVICE(0x0CF3, 0xE004) }, |
Peng Chen | 0a3658c | 2013-08-30 17:41:40 +0800 | [diff] [blame] | 114 | { USB_DEVICE(0x0CF3, 0xE005) }, |
Wen-chien Jesse Sung | ca79f23 | 2015-05-13 11:39:24 +0800 | [diff] [blame] | 115 | { USB_DEVICE(0x0CF3, 0xE006) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 116 | { USB_DEVICE(0x13d3, 0x3362) }, |
| 117 | { USB_DEVICE(0x13d3, 0x3375) }, |
AceLan Kao | eed307e | 2012-12-11 11:41:20 +0800 | [diff] [blame] | 118 | { USB_DEVICE(0x13d3, 0x3393) }, |
Dmitry Tunin | 609574e | 2016-02-10 15:33:17 +0300 | [diff] [blame] | 119 | { USB_DEVICE(0x13d3, 0x3395) }, |
Sujith Manoharan | 5b77a1f | 2013-07-15 09:29:03 +0530 | [diff] [blame] | 120 | { USB_DEVICE(0x13d3, 0x3402) }, |
Dmitry Tunin | 3bb30a7c | 2014-11-25 20:19:52 +0300 | [diff] [blame] | 121 | { USB_DEVICE(0x13d3, 0x3408) }, |
Dmitry Tunin | 033efa9 | 2015-01-18 00:16:51 +0300 | [diff] [blame] | 122 | { USB_DEVICE(0x13d3, 0x3423) }, |
Anantha Krishnan | fa2f139 | 2014-07-08 19:25:08 +0530 | [diff] [blame] | 123 | { USB_DEVICE(0x13d3, 0x3432) }, |
Dmitry Tunin | 75c6aca | 2016-03-04 01:32:19 +0300 | [diff] [blame] | 124 | { USB_DEVICE(0x13d3, 0x3472) }, |
Dmitry Tunin | 0d0cef6 | 2015-06-06 20:29:25 +0300 | [diff] [blame] | 125 | { USB_DEVICE(0x13d3, 0x3474) }, |
Lauro Costa | 72f9f8b | 2016-05-09 17:36:11 -0300 | [diff] [blame] | 126 | { USB_DEVICE(0x13d3, 0x3487) }, |
Dmitry Tunin | 12d8689 | 2016-07-12 01:35:18 +0300 | [diff] [blame] | 127 | { USB_DEVICE(0x13d3, 0x3490) }, |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 128 | |
Cho, Yu-Chen | e9036e3 | 2011-02-15 10:20:07 +0800 | [diff] [blame] | 129 | /* Atheros AR5BBU12 with sflash firmware */ |
| 130 | { USB_DEVICE(0x0489, 0xE02C) }, |
John W. Linville | b67afe7 | 2011-02-18 17:03:41 -0500 | [diff] [blame] | 131 | |
Michael Gruetzner | 85d5972 | 2012-05-02 22:33:40 +0200 | [diff] [blame] | 132 | /* Atheros AR5BBU22 with sflash firmware */ |
Yevgeniy Melnichuk | bc21fde | 2012-08-07 19:48:10 +0530 | [diff] [blame] | 133 | { USB_DEVICE(0x0489, 0xE036) }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 134 | { USB_DEVICE(0x0489, 0xE03C) }, |
Michael Gruetzner | 85d5972 | 2012-05-02 22:33:40 +0200 | [diff] [blame] | 135 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 136 | { } /* Terminating entry */ |
| 137 | }; |
| 138 | |
| 139 | MODULE_DEVICE_TABLE(usb, ath3k_table); |
| 140 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 141 | #define BTUSB_ATH3012 0x80 |
| 142 | /* This table is to load patch and sysconfig files |
Derek Robson | d98422c | 2017-07-22 13:47:07 +1200 | [diff] [blame] | 143 | * for AR3012 |
| 144 | */ |
Marcel Holtmann | 3932eb3 | 2013-10-11 07:46:21 -0700 | [diff] [blame] | 145 | static const struct usb_device_id ath3k_blist_tbl[] = { |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 146 | |
| 147 | /* Atheros AR3012 with sflash firmware*/ |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 148 | { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 }, |
| 149 | { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 }, |
| 150 | { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 }, |
| 151 | { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 }, |
| 152 | { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 692c062 | 2015-06-06 20:25:40 +0300 | [diff] [blame] | 153 | { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 }, |
Anantha Krishnan | 4b552bc | 2014-10-06 16:31:49 +0530 | [diff] [blame] | 154 | { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 28c971d | 2016-02-10 00:49:11 +0300 | [diff] [blame] | 155 | { USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 156 | { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 }, |
| 157 | { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 }, |
| 158 | { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 }, |
| 159 | { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 }, |
Mohammed Habibulla | 1fb4e09 | 2014-04-17 11:37:13 -0700 | [diff] [blame] | 160 | { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 161 | { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 }, |
| 162 | { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 7e730c7f | 2015-06-18 20:41:51 +0300 | [diff] [blame] | 163 | { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | ec0810d | 2015-05-02 13:36:58 +0300 | [diff] [blame] | 164 | { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 }, |
Janne Heikkinen | 134d3b3 | 2014-12-09 07:44:51 +0200 | [diff] [blame] | 165 | { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 81d9044 | 2016-02-28 11:04:06 +0300 | [diff] [blame] | 166 | { USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 441ad62 | 2017-01-05 13:19:53 +0300 | [diff] [blame] | 167 | { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 168 | { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | cd355ff | 2015-10-05 19:29:33 +0300 | [diff] [blame] | 169 | { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 170 | { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 }, |
Vincent Zwanenburg | 89d2975 | 2014-08-08 12:33:56 +0100 | [diff] [blame] | 171 | { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | a735f9e | 2014-02-18 18:26:20 +0200 | [diff] [blame] | 172 | { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 }, |
Ming Lei | d66629c | 2013-03-15 11:00:39 +0800 | [diff] [blame] | 173 | { USB_DEVICE(0x0CF3, 0x0036), .driver_info = BTUSB_ATH3012 }, |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 174 | { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 }, |
Sunguk Lee | 94a32d10 | 2013-03-12 04:41:58 +0900 | [diff] [blame] | 175 | { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 }, |
Cho, Yu-Chen | 07c0ea8 | 2012-03-14 22:01:21 +0200 | [diff] [blame] | 176 | { USB_DEVICE(0x0cf3, 0x311D), .driver_info = BTUSB_ATH3012 }, |
Oliver Neukum | b131237 | 2014-01-16 15:37:11 +0100 | [diff] [blame] | 177 | { USB_DEVICE(0x0cf3, 0x311E), .driver_info = BTUSB_ATH3012 }, |
Oliver Neukum | 1e56f1e | 2014-01-16 16:02:58 +0100 | [diff] [blame] | 178 | { USB_DEVICE(0x0cf3, 0x311F), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 179 | { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 }, |
Ming Lei | ebaf579 | 2013-03-18 23:45:11 +0800 | [diff] [blame] | 180 | { USB_DEVICE(0x0CF3, 0x817a), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 18e0afa | 2015-10-16 11:45:26 +0300 | [diff] [blame] | 181 | { USB_DEVICE(0x0CF3, 0x817b), .driver_info = BTUSB_ATH3012 }, |
AceLan Kao | ac71311 | 2012-04-19 14:53:45 +0800 | [diff] [blame] | 182 | { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 }, |
Peng Chen | 0a3658c | 2013-08-30 17:41:40 +0800 | [diff] [blame] | 183 | { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 }, |
Wen-chien Jesse Sung | ca79f23 | 2015-05-13 11:39:24 +0800 | [diff] [blame] | 184 | { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 }, |
AceLan Kao | 1d5b569 | 2013-06-20 13:38:45 +0800 | [diff] [blame] | 185 | { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 186 | { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 }, |
| 187 | { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 }, |
| 188 | { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 609574e | 2016-02-10 15:33:17 +0300 | [diff] [blame] | 189 | { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 190 | { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 3bb30a7c | 2014-11-25 20:19:52 +0300 | [diff] [blame] | 191 | { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 033efa9 | 2015-01-18 00:16:51 +0300 | [diff] [blame] | 192 | { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 }, |
Anantha Krishnan | fa2f139 | 2014-07-08 19:25:08 +0530 | [diff] [blame] | 193 | { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 75c6aca | 2016-03-04 01:32:19 +0300 | [diff] [blame] | 194 | { USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 0d0cef6 | 2015-06-06 20:29:25 +0300 | [diff] [blame] | 195 | { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 }, |
Lauro Costa | 72f9f8b | 2016-05-09 17:36:11 -0300 | [diff] [blame] | 196 | { USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 }, |
Dmitry Tunin | 12d8689 | 2016-07-12 01:35:18 +0300 | [diff] [blame] | 197 | { USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 }, |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 198 | |
Michael Gruetzner | 85d5972 | 2012-05-02 22:33:40 +0200 | [diff] [blame] | 199 | /* Atheros AR5BBU22 with sflash firmware */ |
Yevgeniy Melnichuk | bc21fde | 2012-08-07 19:48:10 +0530 | [diff] [blame] | 200 | { USB_DEVICE(0x0489, 0xE036), .driver_info = BTUSB_ATH3012 }, |
Andy Shevchenko | 0b88006 | 2014-02-18 18:26:19 +0200 | [diff] [blame] | 201 | { USB_DEVICE(0x0489, 0xE03C), .driver_info = BTUSB_ATH3012 }, |
Michael Gruetzner | 85d5972 | 2012-05-02 22:33:40 +0200 | [diff] [blame] | 202 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 203 | { } /* Terminating entry */ |
| 204 | }; |
| 205 | |
Maxim Zhukov | 3d08f43c | 2018-02-05 00:09:46 +0300 | [diff] [blame] | 206 | static inline void ath3k_log_failed_loading(int err, int len, int size) |
| 207 | { |
| 208 | BT_ERR("Error in firmware loading err = %d, len = %d, size = %d", |
| 209 | err, len, size); |
| 210 | } |
| 211 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 212 | #define USB_REQ_DFU_DNLOAD 1 |
| 213 | #define BULK_SIZE 4096 |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 214 | #define FW_HDR_SIZE 20 |
Adam Lee | c561a57 | 2015-01-28 15:30:27 -0500 | [diff] [blame] | 215 | #define TIMEGAP_USEC_MIN 50 |
| 216 | #define TIMEGAP_USEC_MAX 100 |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 217 | |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 218 | static int ath3k_load_firmware(struct usb_device *udev, |
| 219 | const struct firmware *firmware) |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 220 | { |
| 221 | u8 *send_buf; |
Dan Carpenter | e9fc716 | 2016-04-22 13:02:55 +0300 | [diff] [blame] | 222 | int len = 0; |
| 223 | int err, pipe, size, sent = 0; |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 224 | int count = firmware->size; |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 225 | |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 226 | BT_DBG("udev %p", udev); |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 227 | |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 228 | pipe = usb_sndctrlpipe(udev, 0); |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 229 | |
David Herrmann | 52a1020 | 2011-10-25 12:09:52 +0200 | [diff] [blame] | 230 | send_buf = kmalloc(BULK_SIZE, GFP_KERNEL); |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 231 | if (!send_buf) { |
| 232 | BT_ERR("Can't allocate memory chunk for firmware"); |
| 233 | return -ENOMEM; |
| 234 | } |
| 235 | |
Maxim Zhukov | 8b077bd | 2018-02-05 00:09:43 +0300 | [diff] [blame] | 236 | memcpy(send_buf, firmware->data, FW_HDR_SIZE); |
Valentin Ilie | a08b15e | 2013-08-12 18:46:00 +0300 | [diff] [blame] | 237 | err = usb_control_msg(udev, pipe, USB_REQ_DFU_DNLOAD, USB_TYPE_VENDOR, |
Maxim Zhukov | 8b077bd | 2018-02-05 00:09:43 +0300 | [diff] [blame] | 238 | 0, 0, send_buf, FW_HDR_SIZE, |
| 239 | USB_CTRL_SET_TIMEOUT); |
Valentin Ilie | a08b15e | 2013-08-12 18:46:00 +0300 | [diff] [blame] | 240 | if (err < 0) { |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 241 | BT_ERR("Can't change to loading configuration err"); |
| 242 | goto error; |
| 243 | } |
Maxim Zhukov | 8b077bd | 2018-02-05 00:09:43 +0300 | [diff] [blame] | 244 | sent += FW_HDR_SIZE; |
| 245 | count -= FW_HDR_SIZE; |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 246 | |
Adam Lee | 3abb56d | 2014-05-27 13:49:07 +0800 | [diff] [blame] | 247 | pipe = usb_sndbulkpipe(udev, 0x02); |
| 248 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 249 | while (count) { |
Adam Lee | c561a57 | 2015-01-28 15:30:27 -0500 | [diff] [blame] | 250 | /* workaround the compatibility issue with xHCI controller*/ |
| 251 | usleep_range(TIMEGAP_USEC_MIN, TIMEGAP_USEC_MAX); |
| 252 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 253 | size = min_t(uint, count, BULK_SIZE); |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 254 | memcpy(send_buf, firmware->data + sent, size); |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 255 | |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 256 | err = usb_bulk_msg(udev, pipe, send_buf, size, |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 257 | &len, 3000); |
| 258 | |
| 259 | if (err || (len != size)) { |
Maxim Zhukov | 3d08f43c | 2018-02-05 00:09:46 +0300 | [diff] [blame] | 260 | ath3k_log_failed_loading(err, len, size); |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 261 | goto error; |
| 262 | } |
| 263 | |
| 264 | sent += size; |
| 265 | count -= size; |
| 266 | } |
| 267 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 268 | error: |
| 269 | kfree(send_buf); |
| 270 | return err; |
| 271 | } |
| 272 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 273 | static int ath3k_get_state(struct usb_device *udev, unsigned char *state) |
| 274 | { |
Stanislaw Gruszka | 517828a | 2013-07-08 10:27:23 +0200 | [diff] [blame] | 275 | int ret, pipe = 0; |
| 276 | char *buf; |
| 277 | |
| 278 | buf = kmalloc(sizeof(*buf), GFP_KERNEL); |
| 279 | if (!buf) |
| 280 | return -ENOMEM; |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 281 | |
| 282 | pipe = usb_rcvctrlpipe(udev, 0); |
Stanislaw Gruszka | 517828a | 2013-07-08 10:27:23 +0200 | [diff] [blame] | 283 | ret = usb_control_msg(udev, pipe, ATH3K_GETSTATE, |
| 284 | USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, |
| 285 | buf, sizeof(*buf), USB_CTRL_SET_TIMEOUT); |
| 286 | |
| 287 | *state = *buf; |
| 288 | kfree(buf); |
| 289 | |
| 290 | return ret; |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | static int ath3k_get_version(struct usb_device *udev, |
| 294 | struct ath3k_version *version) |
| 295 | { |
Stanislaw Gruszka | 517828a | 2013-07-08 10:27:23 +0200 | [diff] [blame] | 296 | int ret, pipe = 0; |
| 297 | struct ath3k_version *buf; |
| 298 | const int size = sizeof(*buf); |
| 299 | |
| 300 | buf = kmalloc(size, GFP_KERNEL); |
| 301 | if (!buf) |
| 302 | return -ENOMEM; |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 303 | |
| 304 | pipe = usb_rcvctrlpipe(udev, 0); |
Stanislaw Gruszka | 517828a | 2013-07-08 10:27:23 +0200 | [diff] [blame] | 305 | ret = usb_control_msg(udev, pipe, ATH3K_GETVERSION, |
| 306 | USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, |
| 307 | buf, size, USB_CTRL_SET_TIMEOUT); |
| 308 | |
| 309 | memcpy(version, buf, size); |
| 310 | kfree(buf); |
| 311 | |
| 312 | return ret; |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | static int ath3k_load_fwfile(struct usb_device *udev, |
| 316 | const struct firmware *firmware) |
| 317 | { |
| 318 | u8 *send_buf; |
Dan Carpenter | e9fc716 | 2016-04-22 13:02:55 +0300 | [diff] [blame] | 319 | int len = 0; |
| 320 | int err, pipe, size, count, sent = 0; |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 321 | int ret; |
| 322 | |
| 323 | count = firmware->size; |
| 324 | |
David Herrmann | 52a1020 | 2011-10-25 12:09:52 +0200 | [diff] [blame] | 325 | send_buf = kmalloc(BULK_SIZE, GFP_KERNEL); |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 326 | if (!send_buf) { |
| 327 | BT_ERR("Can't allocate memory chunk for firmware"); |
| 328 | return -ENOMEM; |
| 329 | } |
| 330 | |
| 331 | size = min_t(uint, count, FW_HDR_SIZE); |
| 332 | memcpy(send_buf, firmware->data, size); |
| 333 | |
| 334 | pipe = usb_sndctrlpipe(udev, 0); |
| 335 | ret = usb_control_msg(udev, pipe, ATH3K_DNLOAD, |
| 336 | USB_TYPE_VENDOR, 0, 0, send_buf, |
| 337 | size, USB_CTRL_SET_TIMEOUT); |
| 338 | if (ret < 0) { |
| 339 | BT_ERR("Can't change to loading configuration err"); |
| 340 | kfree(send_buf); |
| 341 | return ret; |
| 342 | } |
| 343 | |
| 344 | sent += size; |
| 345 | count -= size; |
| 346 | |
Adam Lee | b0c3e13 | 2014-06-05 21:47:44 +0800 | [diff] [blame] | 347 | pipe = usb_sndbulkpipe(udev, 0x02); |
| 348 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 349 | while (count) { |
Adam Lee | c561a57 | 2015-01-28 15:30:27 -0500 | [diff] [blame] | 350 | /* workaround the compatibility issue with xHCI controller*/ |
| 351 | usleep_range(TIMEGAP_USEC_MIN, TIMEGAP_USEC_MAX); |
| 352 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 353 | size = min_t(uint, count, BULK_SIZE); |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 354 | memcpy(send_buf, firmware->data + sent, size); |
| 355 | |
| 356 | err = usb_bulk_msg(udev, pipe, send_buf, size, |
| 357 | &len, 3000); |
| 358 | if (err || (len != size)) { |
Maxim Zhukov | 3d08f43c | 2018-02-05 00:09:46 +0300 | [diff] [blame] | 359 | ath3k_log_failed_loading(err, len, size); |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 360 | kfree(send_buf); |
| 361 | return err; |
| 362 | } |
| 363 | sent += size; |
| 364 | count -= size; |
| 365 | } |
| 366 | |
| 367 | kfree(send_buf); |
| 368 | return 0; |
| 369 | } |
| 370 | |
| 371 | static int ath3k_switch_pid(struct usb_device *udev) |
| 372 | { |
| 373 | int pipe = 0; |
| 374 | |
| 375 | pipe = usb_sndctrlpipe(udev, 0); |
| 376 | return usb_control_msg(udev, pipe, USB_REG_SWITCH_VID_PID, |
| 377 | USB_TYPE_VENDOR, 0, 0, |
| 378 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 379 | } |
| 380 | |
| 381 | static int ath3k_set_normal_mode(struct usb_device *udev) |
| 382 | { |
| 383 | unsigned char fw_state; |
| 384 | int pipe = 0, ret; |
| 385 | |
| 386 | ret = ath3k_get_state(udev, &fw_state); |
| 387 | if (ret < 0) { |
| 388 | BT_ERR("Can't get state to change to normal mode err"); |
| 389 | return ret; |
| 390 | } |
| 391 | |
| 392 | if ((fw_state & ATH3K_MODE_MASK) == ATH3K_NORMAL_MODE) { |
| 393 | BT_DBG("firmware was already in normal mode"); |
| 394 | return 0; |
| 395 | } |
| 396 | |
| 397 | pipe = usb_sndctrlpipe(udev, 0); |
| 398 | return usb_control_msg(udev, pipe, ATH3K_SET_NORMAL_MODE, |
| 399 | USB_TYPE_VENDOR, 0, 0, |
| 400 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 401 | } |
| 402 | |
| 403 | static int ath3k_load_patch(struct usb_device *udev) |
| 404 | { |
| 405 | unsigned char fw_state; |
Maxim Zhukov | b3baa24 | 2018-02-05 00:09:44 +0300 | [diff] [blame] | 406 | char filename[ATH3K_NAME_LEN]; |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 407 | const struct firmware *firmware; |
Marcel Holtmann | 72dd2b2 | 2014-07-20 17:29:59 +0200 | [diff] [blame] | 408 | struct ath3k_version fw_version; |
| 409 | __u32 pt_rom_version, pt_build_version; |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 410 | int ret; |
| 411 | |
| 412 | ret = ath3k_get_state(udev, &fw_state); |
| 413 | if (ret < 0) { |
| 414 | BT_ERR("Can't get state to change to load ram patch err"); |
| 415 | return ret; |
| 416 | } |
| 417 | |
| 418 | if (fw_state & ATH3K_PATCH_UPDATE) { |
| 419 | BT_DBG("Patch was already downloaded"); |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | ret = ath3k_get_version(udev, &fw_version); |
| 424 | if (ret < 0) { |
| 425 | BT_ERR("Can't get version to change to load ram patch err"); |
| 426 | return ret; |
| 427 | } |
| 428 | |
| 429 | snprintf(filename, ATH3K_NAME_LEN, "ar3k/AthrBT_0x%08x.dfu", |
Marcel Holtmann | 72dd2b2 | 2014-07-20 17:29:59 +0200 | [diff] [blame] | 430 | le32_to_cpu(fw_version.rom_version)); |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 431 | |
| 432 | ret = request_firmware(&firmware, filename, &udev->dev); |
| 433 | if (ret < 0) { |
| 434 | BT_ERR("Patch file not found %s", filename); |
| 435 | return ret; |
| 436 | } |
| 437 | |
Marcel Holtmann | 72dd2b2 | 2014-07-20 17:29:59 +0200 | [diff] [blame] | 438 | pt_rom_version = get_unaligned_le32(firmware->data + |
| 439 | firmware->size - 8); |
| 440 | pt_build_version = get_unaligned_le32(firmware->data + |
| 441 | firmware->size - 4); |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 442 | |
Marcel Holtmann | 72dd2b2 | 2014-07-20 17:29:59 +0200 | [diff] [blame] | 443 | if (pt_rom_version != le32_to_cpu(fw_version.rom_version) || |
| 444 | pt_build_version <= le32_to_cpu(fw_version.build_version)) { |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 445 | BT_ERR("Patch file version did not match with firmware"); |
| 446 | release_firmware(firmware); |
| 447 | return -EINVAL; |
| 448 | } |
| 449 | |
| 450 | ret = ath3k_load_fwfile(udev, firmware); |
| 451 | release_firmware(firmware); |
| 452 | |
| 453 | return ret; |
| 454 | } |
| 455 | |
| 456 | static int ath3k_load_syscfg(struct usb_device *udev) |
| 457 | { |
| 458 | unsigned char fw_state; |
Maxim Zhukov | b3baa24 | 2018-02-05 00:09:44 +0300 | [diff] [blame] | 459 | char filename[ATH3K_NAME_LEN]; |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 460 | const struct firmware *firmware; |
| 461 | struct ath3k_version fw_version; |
| 462 | int clk_value, ret; |
| 463 | |
| 464 | ret = ath3k_get_state(udev, &fw_state); |
| 465 | if (ret < 0) { |
Masanari Iida | 8a168ca | 2012-12-29 02:00:09 +0900 | [diff] [blame] | 466 | BT_ERR("Can't get state to change to load configuration err"); |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 467 | return -EBUSY; |
| 468 | } |
| 469 | |
| 470 | ret = ath3k_get_version(udev, &fw_version); |
| 471 | if (ret < 0) { |
| 472 | BT_ERR("Can't get version to change to load ram patch err"); |
| 473 | return ret; |
| 474 | } |
| 475 | |
| 476 | switch (fw_version.ref_clock) { |
| 477 | |
| 478 | case ATH3K_XTAL_FREQ_26M: |
| 479 | clk_value = 26; |
| 480 | break; |
| 481 | case ATH3K_XTAL_FREQ_40M: |
| 482 | clk_value = 40; |
| 483 | break; |
| 484 | case ATH3K_XTAL_FREQ_19P2: |
| 485 | clk_value = 19; |
| 486 | break; |
| 487 | default: |
| 488 | clk_value = 0; |
| 489 | break; |
| 490 | } |
| 491 | |
| 492 | snprintf(filename, ATH3K_NAME_LEN, "ar3k/ramps_0x%08x_%d%s", |
Peng Chen | b9e2535 | 2012-09-06 19:30:43 +0800 | [diff] [blame] | 493 | le32_to_cpu(fw_version.rom_version), clk_value, ".dfu"); |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 494 | |
| 495 | ret = request_firmware(&firmware, filename, &udev->dev); |
| 496 | if (ret < 0) { |
| 497 | BT_ERR("Configuration file not found %s", filename); |
| 498 | return ret; |
| 499 | } |
| 500 | |
| 501 | ret = ath3k_load_fwfile(udev, firmware); |
| 502 | release_firmware(firmware); |
| 503 | |
| 504 | return ret; |
| 505 | } |
| 506 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 507 | static int ath3k_probe(struct usb_interface *intf, |
| 508 | const struct usb_device_id *id) |
| 509 | { |
| 510 | const struct firmware *firmware; |
| 511 | struct usb_device *udev = interface_to_usbdev(intf); |
Rogério Brito | 84f0e17 | 2011-02-03 01:42:05 -0200 | [diff] [blame] | 512 | int ret; |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 513 | |
| 514 | BT_DBG("intf %p id %p", intf, id); |
| 515 | |
| 516 | if (intf->cur_altsetting->desc.bInterfaceNumber != 0) |
| 517 | return -ENODEV; |
| 518 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 519 | /* match device ID in ath3k blacklist table */ |
| 520 | if (!id->driver_info) { |
| 521 | const struct usb_device_id *match; |
Bhumika Goyal | d2ee9c2 | 2016-01-12 22:10:15 +0530 | [diff] [blame] | 522 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 523 | match = usb_match_id(intf, ath3k_blist_tbl); |
| 524 | if (match) |
| 525 | id = match; |
| 526 | } |
| 527 | |
| 528 | /* load patch and sysconfig files for AR3012 */ |
| 529 | if (id->driver_info & BTUSB_ATH3012) { |
Steven.Li | 2d25f8b | 2011-07-01 14:02:36 +0800 | [diff] [blame] | 530 | /* New firmware with patch and sysconfig files already loaded */ |
| 531 | if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x0001) |
| 532 | return -ENODEV; |
| 533 | |
Bala Shanmugam | d9f51b5 | 2011-02-11 15:38:53 +0530 | [diff] [blame] | 534 | ret = ath3k_load_patch(udev); |
| 535 | if (ret < 0) { |
| 536 | BT_ERR("Loading patch file failed"); |
| 537 | return ret; |
| 538 | } |
| 539 | ret = ath3k_load_syscfg(udev); |
| 540 | if (ret < 0) { |
| 541 | BT_ERR("Loading sysconfig file failed"); |
| 542 | return ret; |
| 543 | } |
| 544 | ret = ath3k_set_normal_mode(udev); |
| 545 | if (ret < 0) { |
| 546 | BT_ERR("Set normal mode failed"); |
| 547 | return ret; |
| 548 | } |
| 549 | ath3k_switch_pid(udev); |
| 550 | return 0; |
| 551 | } |
| 552 | |
Paul Fertser | c3eae82 | 2011-10-29 21:52:49 +0400 | [diff] [blame] | 553 | ret = request_firmware(&firmware, ATH3K_FIRMWARE, &udev->dev); |
| 554 | if (ret < 0) { |
| 555 | if (ret == -ENOENT) |
| 556 | BT_ERR("Firmware file \"%s\" not found", |
| 557 | ATH3K_FIRMWARE); |
| 558 | else |
| 559 | BT_ERR("Firmware file \"%s\" request failed (err=%d)", |
| 560 | ATH3K_FIRMWARE, ret); |
| 561 | return ret; |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 562 | } |
| 563 | |
Rogério Brito | 84f0e17 | 2011-02-03 01:42:05 -0200 | [diff] [blame] | 564 | ret = ath3k_load_firmware(udev, firmware); |
Alexander Holler | 86e0928 | 2010-11-22 21:09:01 +0100 | [diff] [blame] | 565 | release_firmware(firmware); |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 566 | |
Rogério Brito | 84f0e17 | 2011-02-03 01:42:05 -0200 | [diff] [blame] | 567 | return ret; |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | static void ath3k_disconnect(struct usb_interface *intf) |
| 571 | { |
Maxim Zhukov | 0a21963 | 2018-02-05 00:09:47 +0300 | [diff] [blame] | 572 | BT_DBG("%s intf %p", __func__, intf); |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | static struct usb_driver ath3k_driver = { |
| 576 | .name = "ath3k", |
| 577 | .probe = ath3k_probe, |
| 578 | .disconnect = ath3k_disconnect, |
| 579 | .id_table = ath3k_table, |
Sarah Sharp | e1f12eb | 2012-04-23 10:08:51 -0700 | [diff] [blame] | 580 | .disable_hub_initiated_lpm = 1, |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 581 | }; |
| 582 | |
Greg Kroah-Hartman | 93f1508 | 2011-11-18 09:47:34 -0800 | [diff] [blame] | 583 | module_usb_driver(ath3k_driver); |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 584 | |
| 585 | MODULE_AUTHOR("Atheros Communications"); |
| 586 | MODULE_DESCRIPTION("Atheros AR30xx firmware driver"); |
| 587 | MODULE_VERSION(VERSION); |
| 588 | MODULE_LICENSE("GPL"); |
Paul Fertser | c3eae82 | 2011-10-29 21:52:49 +0400 | [diff] [blame] | 589 | MODULE_FIRMWARE(ATH3K_FIRMWARE); |