blob: e527a3e13939c2f19c74401a5c24edb5c13e97ad [file] [log] [blame]
Vikram Kandukuri9670d802010-01-06 19:04:15 +05301/*
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 Holtmann72dd2b22014-07-20 17:29:59 +020030#include <asm/unaligned.h>
Vikram Kandukuri9670d802010-01-06 19:04:15 +053031#include <net/bluetooth/bluetooth.h>
32
33#define VERSION "1.0"
Paul Fertserc3eae822011-10-29 21:52:49 +040034#define ATH3K_FIRMWARE "ath3k-1.fw"
Vikram Kandukuri9670d802010-01-06 19:04:15 +053035
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053036#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
53struct ath3k_version {
Marcel Holtmann72dd2b22014-07-20 17:29:59 +020054 __le32 rom_version;
55 __le32 build_version;
56 __le32 ram_version;
57 __u8 ref_clock;
58 __u8 reserved[7];
59} __packed;
Vikram Kandukuri9670d802010-01-06 19:04:15 +053060
Marcel Holtmann3932eb32013-10-11 07:46:21 -070061static const struct usb_device_id ath3k_table[] = {
Vikram Kandukuri9670d802010-01-06 19:04:15 +053062 /* Atheros AR3011 */
63 { USB_DEVICE(0x0CF3, 0x3000) },
Bala Shanmugambe931122010-11-26 17:35:46 +053064
65 /* Atheros AR3011 with sflash firmware*/
Andy Shevchenko0b880062014-02-18 18:26:19 +020066 { USB_DEVICE(0x0489, 0xE027) },
67 { USB_DEVICE(0x0489, 0xE03D) },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +020068 { USB_DEVICE(0x04F2, 0xAFF1) },
Andy Shevchenko0b880062014-02-18 18:26:19 +020069 { USB_DEVICE(0x0930, 0x0215) },
Bala Shanmugambe931122010-11-26 17:35:46 +053070 { USB_DEVICE(0x0CF3, 0x3002) },
Marek Vasut6eda5412012-06-08 14:32:50 +020071 { USB_DEVICE(0x0CF3, 0xE019) },
Andy Ross2a7bccc2011-05-09 16:11:16 -070072 { USB_DEVICE(0x13d3, 0x3304) },
Bala Shanmugambe931122010-11-26 17:35:46 +053073
Cho, Yu-Chen509e7862011-01-26 17:10:59 +080074 /* Atheros AR9285 Malbec with sflash firmware */
75 { USB_DEVICE(0x03F0, 0x311D) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053076
77 /* Atheros AR3012 with sflash firmware*/
Andy Shevchenko0b880062014-02-18 18:26:19 +020078 { 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 Tunin692c0622015-06-06 20:25:40 +030083 { USB_DEVICE(0x0489, 0xe076) },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +053084 { USB_DEVICE(0x0489, 0xe078) },
Andy Shevchenko0b880062014-02-18 18:26:19 +020085 { USB_DEVICE(0x04c5, 0x1330) },
86 { USB_DEVICE(0x04CA, 0x3004) },
87 { USB_DEVICE(0x04CA, 0x3005) },
88 { USB_DEVICE(0x04CA, 0x3006) },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -070089 { USB_DEVICE(0x04CA, 0x3007) },
Andy Shevchenko0b880062014-02-18 18:26:19 +020090 { USB_DEVICE(0x04CA, 0x3008) },
91 { USB_DEVICE(0x04CA, 0x300b) },
Dmitry Tunin7e730c72015-06-18 20:41:51 +030092 { USB_DEVICE(0x04CA, 0x300d) },
Dmitry Tuninec0810d2015-05-02 13:36:58 +030093 { USB_DEVICE(0x04CA, 0x300f) },
Janne Heikkinen134d3b32014-12-09 07:44:51 +020094 { USB_DEVICE(0x04CA, 0x3010) },
Andy Shevchenko0b880062014-02-18 18:26:19 +020095 { USB_DEVICE(0x0930, 0x0219) },
96 { USB_DEVICE(0x0930, 0x0220) },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +010097 { USB_DEVICE(0x0930, 0x0227) },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +020098 { USB_DEVICE(0x0b05, 0x17d0) },
Ming Leid66629c2013-03-15 11:00:39 +080099 { USB_DEVICE(0x0CF3, 0x0036) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530100 { USB_DEVICE(0x0CF3, 0x3004) },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900101 { USB_DEVICE(0x0CF3, 0x3008) },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200102 { USB_DEVICE(0x0CF3, 0x311D) },
Oliver Neukumb1312372014-01-16 15:37:11 +0100103 { USB_DEVICE(0x0CF3, 0x311E) },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100104 { USB_DEVICE(0x0CF3, 0x311F) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200105 { USB_DEVICE(0x0cf3, 0x3121) },
Ming Leiebaf5792013-03-18 23:45:11 +0800106 { USB_DEVICE(0x0CF3, 0x817a) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200107 { USB_DEVICE(0x0cf3, 0xe003) },
AceLan Kaoac713112012-04-19 14:53:45 +0800108 { USB_DEVICE(0x0CF3, 0xE004) },
Peng Chen0a3658c2013-08-30 17:41:40 +0800109 { USB_DEVICE(0x0CF3, 0xE005) },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800110 { USB_DEVICE(0x0CF3, 0xE006) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200111 { USB_DEVICE(0x13d3, 0x3362) },
112 { USB_DEVICE(0x13d3, 0x3375) },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800113 { USB_DEVICE(0x13d3, 0x3393) },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530114 { USB_DEVICE(0x13d3, 0x3402) },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300115 { USB_DEVICE(0x13d3, 0x3408) },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300116 { USB_DEVICE(0x13d3, 0x3423) },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530117 { USB_DEVICE(0x13d3, 0x3432) },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300118 { USB_DEVICE(0x13d3, 0x3474) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530119
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800120 /* Atheros AR5BBU12 with sflash firmware */
121 { USB_DEVICE(0x0489, 0xE02C) },
John W. Linvilleb67afe72011-02-18 17:03:41 -0500122
Michael Gruetzner85d59722012-05-02 22:33:40 +0200123 /* Atheros AR5BBU22 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530124 { USB_DEVICE(0x0489, 0xE036) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200125 { USB_DEVICE(0x0489, 0xE03C) },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200126
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530127 { } /* Terminating entry */
128};
129
130MODULE_DEVICE_TABLE(usb, ath3k_table);
131
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530132#define BTUSB_ATH3012 0x80
133/* This table is to load patch and sysconfig files
134 * for AR3012 */
Marcel Holtmann3932eb32013-10-11 07:46:21 -0700135static const struct usb_device_id ath3k_blist_tbl[] = {
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530136
137 /* Atheros AR3012 with sflash firmware*/
Andy Shevchenko0b880062014-02-18 18:26:19 +0200138 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
139 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
140 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
141 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
142 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin692c0622015-06-06 20:25:40 +0300143 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530144 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200145 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
146 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
147 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
148 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700149 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200150 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
151 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin7e730c72015-06-18 20:41:51 +0300152 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300153 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200154 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200155 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
156 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100157 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200158 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800159 { USB_DEVICE(0x0CF3, 0x0036), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530160 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900161 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200162 { USB_DEVICE(0x0cf3, 0x311D), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100163 { USB_DEVICE(0x0cf3, 0x311E), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100164 { USB_DEVICE(0x0cf3, 0x311F), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200165 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800166 { USB_DEVICE(0x0CF3, 0x817a), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800167 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800168 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800169 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
AceLan Kao1d5b5692013-06-20 13:38:45 +0800170 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200171 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
172 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
173 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
174 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300175 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300176 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530177 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300178 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530179
Michael Gruetzner85d59722012-05-02 22:33:40 +0200180 /* Atheros AR5BBU22 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530181 { USB_DEVICE(0x0489, 0xE036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200182 { USB_DEVICE(0x0489, 0xE03C), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200183
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530184 { } /* Terminating entry */
185};
186
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530187#define USB_REQ_DFU_DNLOAD 1
188#define BULK_SIZE 4096
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530189#define FW_HDR_SIZE 20
Adam Leec561a572015-01-28 15:30:27 -0500190#define TIMEGAP_USEC_MIN 50
191#define TIMEGAP_USEC_MAX 100
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530192
Alexander Holler86e09282010-11-22 21:09:01 +0100193static int ath3k_load_firmware(struct usb_device *udev,
194 const struct firmware *firmware)
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530195{
196 u8 *send_buf;
197 int err, pipe, len, size, sent = 0;
Alexander Holler86e09282010-11-22 21:09:01 +0100198 int count = firmware->size;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530199
Alexander Holler86e09282010-11-22 21:09:01 +0100200 BT_DBG("udev %p", udev);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530201
Alexander Holler86e09282010-11-22 21:09:01 +0100202 pipe = usb_sndctrlpipe(udev, 0);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530203
David Herrmann52a10202011-10-25 12:09:52 +0200204 send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530205 if (!send_buf) {
206 BT_ERR("Can't allocate memory chunk for firmware");
207 return -ENOMEM;
208 }
209
Alexander Holler86e09282010-11-22 21:09:01 +0100210 memcpy(send_buf, firmware->data, 20);
Valentin Iliea08b15e2013-08-12 18:46:00 +0300211 err = usb_control_msg(udev, pipe, USB_REQ_DFU_DNLOAD, USB_TYPE_VENDOR,
212 0, 0, send_buf, 20, USB_CTRL_SET_TIMEOUT);
213 if (err < 0) {
Alexander Holler86e09282010-11-22 21:09:01 +0100214 BT_ERR("Can't change to loading configuration err");
215 goto error;
216 }
217 sent += 20;
218 count -= 20;
219
Adam Lee3abb56d2014-05-27 13:49:07 +0800220 pipe = usb_sndbulkpipe(udev, 0x02);
221
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530222 while (count) {
Adam Leec561a572015-01-28 15:30:27 -0500223 /* workaround the compatibility issue with xHCI controller*/
224 usleep_range(TIMEGAP_USEC_MIN, TIMEGAP_USEC_MAX);
225
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530226 size = min_t(uint, count, BULK_SIZE);
Alexander Holler86e09282010-11-22 21:09:01 +0100227 memcpy(send_buf, firmware->data + sent, size);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530228
Alexander Holler86e09282010-11-22 21:09:01 +0100229 err = usb_bulk_msg(udev, pipe, send_buf, size,
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530230 &len, 3000);
231
232 if (err || (len != size)) {
233 BT_ERR("Error in firmware loading err = %d,"
234 "len = %d, size = %d", err, len, size);
235 goto error;
236 }
237
238 sent += size;
239 count -= size;
240 }
241
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530242error:
243 kfree(send_buf);
244 return err;
245}
246
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530247static int ath3k_get_state(struct usb_device *udev, unsigned char *state)
248{
Stanislaw Gruszka517828a2013-07-08 10:27:23 +0200249 int ret, pipe = 0;
250 char *buf;
251
252 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
253 if (!buf)
254 return -ENOMEM;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530255
256 pipe = usb_rcvctrlpipe(udev, 0);
Stanislaw Gruszka517828a2013-07-08 10:27:23 +0200257 ret = usb_control_msg(udev, pipe, ATH3K_GETSTATE,
258 USB_TYPE_VENDOR | USB_DIR_IN, 0, 0,
259 buf, sizeof(*buf), USB_CTRL_SET_TIMEOUT);
260
261 *state = *buf;
262 kfree(buf);
263
264 return ret;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530265}
266
267static int ath3k_get_version(struct usb_device *udev,
268 struct ath3k_version *version)
269{
Stanislaw Gruszka517828a2013-07-08 10:27:23 +0200270 int ret, pipe = 0;
271 struct ath3k_version *buf;
272 const int size = sizeof(*buf);
273
274 buf = kmalloc(size, GFP_KERNEL);
275 if (!buf)
276 return -ENOMEM;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530277
278 pipe = usb_rcvctrlpipe(udev, 0);
Stanislaw Gruszka517828a2013-07-08 10:27:23 +0200279 ret = usb_control_msg(udev, pipe, ATH3K_GETVERSION,
280 USB_TYPE_VENDOR | USB_DIR_IN, 0, 0,
281 buf, size, USB_CTRL_SET_TIMEOUT);
282
283 memcpy(version, buf, size);
284 kfree(buf);
285
286 return ret;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530287}
288
289static int ath3k_load_fwfile(struct usb_device *udev,
290 const struct firmware *firmware)
291{
292 u8 *send_buf;
293 int err, pipe, len, size, count, sent = 0;
294 int ret;
295
296 count = firmware->size;
297
David Herrmann52a10202011-10-25 12:09:52 +0200298 send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530299 if (!send_buf) {
300 BT_ERR("Can't allocate memory chunk for firmware");
301 return -ENOMEM;
302 }
303
304 size = min_t(uint, count, FW_HDR_SIZE);
305 memcpy(send_buf, firmware->data, size);
306
307 pipe = usb_sndctrlpipe(udev, 0);
308 ret = usb_control_msg(udev, pipe, ATH3K_DNLOAD,
309 USB_TYPE_VENDOR, 0, 0, send_buf,
310 size, USB_CTRL_SET_TIMEOUT);
311 if (ret < 0) {
312 BT_ERR("Can't change to loading configuration err");
313 kfree(send_buf);
314 return ret;
315 }
316
317 sent += size;
318 count -= size;
319
Adam Leeb0c3e132014-06-05 21:47:44 +0800320 pipe = usb_sndbulkpipe(udev, 0x02);
321
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530322 while (count) {
Adam Leec561a572015-01-28 15:30:27 -0500323 /* workaround the compatibility issue with xHCI controller*/
324 usleep_range(TIMEGAP_USEC_MIN, TIMEGAP_USEC_MAX);
325
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530326 size = min_t(uint, count, BULK_SIZE);
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530327 memcpy(send_buf, firmware->data + sent, size);
328
329 err = usb_bulk_msg(udev, pipe, send_buf, size,
330 &len, 3000);
331 if (err || (len != size)) {
332 BT_ERR("Error in firmware loading err = %d,"
333 "len = %d, size = %d", err, len, size);
334 kfree(send_buf);
335 return err;
336 }
337 sent += size;
338 count -= size;
339 }
340
341 kfree(send_buf);
342 return 0;
343}
344
345static int ath3k_switch_pid(struct usb_device *udev)
346{
347 int pipe = 0;
348
349 pipe = usb_sndctrlpipe(udev, 0);
350 return usb_control_msg(udev, pipe, USB_REG_SWITCH_VID_PID,
351 USB_TYPE_VENDOR, 0, 0,
352 NULL, 0, USB_CTRL_SET_TIMEOUT);
353}
354
355static int ath3k_set_normal_mode(struct usb_device *udev)
356{
357 unsigned char fw_state;
358 int pipe = 0, ret;
359
360 ret = ath3k_get_state(udev, &fw_state);
361 if (ret < 0) {
362 BT_ERR("Can't get state to change to normal mode err");
363 return ret;
364 }
365
366 if ((fw_state & ATH3K_MODE_MASK) == ATH3K_NORMAL_MODE) {
367 BT_DBG("firmware was already in normal mode");
368 return 0;
369 }
370
371 pipe = usb_sndctrlpipe(udev, 0);
372 return usb_control_msg(udev, pipe, ATH3K_SET_NORMAL_MODE,
373 USB_TYPE_VENDOR, 0, 0,
374 NULL, 0, USB_CTRL_SET_TIMEOUT);
375}
376
377static int ath3k_load_patch(struct usb_device *udev)
378{
379 unsigned char fw_state;
380 char filename[ATH3K_NAME_LEN] = {0};
381 const struct firmware *firmware;
Marcel Holtmann72dd2b22014-07-20 17:29:59 +0200382 struct ath3k_version fw_version;
383 __u32 pt_rom_version, pt_build_version;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530384 int ret;
385
386 ret = ath3k_get_state(udev, &fw_state);
387 if (ret < 0) {
388 BT_ERR("Can't get state to change to load ram patch err");
389 return ret;
390 }
391
392 if (fw_state & ATH3K_PATCH_UPDATE) {
393 BT_DBG("Patch was already downloaded");
394 return 0;
395 }
396
397 ret = ath3k_get_version(udev, &fw_version);
398 if (ret < 0) {
399 BT_ERR("Can't get version to change to load ram patch err");
400 return ret;
401 }
402
403 snprintf(filename, ATH3K_NAME_LEN, "ar3k/AthrBT_0x%08x.dfu",
Marcel Holtmann72dd2b22014-07-20 17:29:59 +0200404 le32_to_cpu(fw_version.rom_version));
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530405
406 ret = request_firmware(&firmware, filename, &udev->dev);
407 if (ret < 0) {
408 BT_ERR("Patch file not found %s", filename);
409 return ret;
410 }
411
Marcel Holtmann72dd2b22014-07-20 17:29:59 +0200412 pt_rom_version = get_unaligned_le32(firmware->data +
413 firmware->size - 8);
414 pt_build_version = get_unaligned_le32(firmware->data +
415 firmware->size - 4);
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530416
Marcel Holtmann72dd2b22014-07-20 17:29:59 +0200417 if (pt_rom_version != le32_to_cpu(fw_version.rom_version) ||
418 pt_build_version <= le32_to_cpu(fw_version.build_version)) {
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530419 BT_ERR("Patch file version did not match with firmware");
420 release_firmware(firmware);
421 return -EINVAL;
422 }
423
424 ret = ath3k_load_fwfile(udev, firmware);
425 release_firmware(firmware);
426
427 return ret;
428}
429
430static int ath3k_load_syscfg(struct usb_device *udev)
431{
432 unsigned char fw_state;
433 char filename[ATH3K_NAME_LEN] = {0};
434 const struct firmware *firmware;
435 struct ath3k_version fw_version;
436 int clk_value, ret;
437
438 ret = ath3k_get_state(udev, &fw_state);
439 if (ret < 0) {
Masanari Iida8a168ca2012-12-29 02:00:09 +0900440 BT_ERR("Can't get state to change to load configuration err");
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530441 return -EBUSY;
442 }
443
444 ret = ath3k_get_version(udev, &fw_version);
445 if (ret < 0) {
446 BT_ERR("Can't get version to change to load ram patch err");
447 return ret;
448 }
449
450 switch (fw_version.ref_clock) {
451
452 case ATH3K_XTAL_FREQ_26M:
453 clk_value = 26;
454 break;
455 case ATH3K_XTAL_FREQ_40M:
456 clk_value = 40;
457 break;
458 case ATH3K_XTAL_FREQ_19P2:
459 clk_value = 19;
460 break;
461 default:
462 clk_value = 0;
463 break;
464 }
465
466 snprintf(filename, ATH3K_NAME_LEN, "ar3k/ramps_0x%08x_%d%s",
Peng Chenb9e25352012-09-06 19:30:43 +0800467 le32_to_cpu(fw_version.rom_version), clk_value, ".dfu");
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530468
469 ret = request_firmware(&firmware, filename, &udev->dev);
470 if (ret < 0) {
471 BT_ERR("Configuration file not found %s", filename);
472 return ret;
473 }
474
475 ret = ath3k_load_fwfile(udev, firmware);
476 release_firmware(firmware);
477
478 return ret;
479}
480
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530481static int ath3k_probe(struct usb_interface *intf,
482 const struct usb_device_id *id)
483{
484 const struct firmware *firmware;
485 struct usb_device *udev = interface_to_usbdev(intf);
Rogério Brito84f0e172011-02-03 01:42:05 -0200486 int ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530487
488 BT_DBG("intf %p id %p", intf, id);
489
490 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
491 return -ENODEV;
492
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530493 /* match device ID in ath3k blacklist table */
494 if (!id->driver_info) {
495 const struct usb_device_id *match;
496 match = usb_match_id(intf, ath3k_blist_tbl);
497 if (match)
498 id = match;
499 }
500
501 /* load patch and sysconfig files for AR3012 */
502 if (id->driver_info & BTUSB_ATH3012) {
Steven.Li2d25f8b2011-07-01 14:02:36 +0800503
504 /* New firmware with patch and sysconfig files already loaded */
505 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x0001)
506 return -ENODEV;
507
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530508 ret = ath3k_load_patch(udev);
509 if (ret < 0) {
510 BT_ERR("Loading patch file failed");
511 return ret;
512 }
513 ret = ath3k_load_syscfg(udev);
514 if (ret < 0) {
515 BT_ERR("Loading sysconfig file failed");
516 return ret;
517 }
518 ret = ath3k_set_normal_mode(udev);
519 if (ret < 0) {
520 BT_ERR("Set normal mode failed");
521 return ret;
522 }
523 ath3k_switch_pid(udev);
524 return 0;
525 }
526
Paul Fertserc3eae822011-10-29 21:52:49 +0400527 ret = request_firmware(&firmware, ATH3K_FIRMWARE, &udev->dev);
528 if (ret < 0) {
529 if (ret == -ENOENT)
530 BT_ERR("Firmware file \"%s\" not found",
531 ATH3K_FIRMWARE);
532 else
533 BT_ERR("Firmware file \"%s\" request failed (err=%d)",
534 ATH3K_FIRMWARE, ret);
535 return ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530536 }
537
Rogério Brito84f0e172011-02-03 01:42:05 -0200538 ret = ath3k_load_firmware(udev, firmware);
Alexander Holler86e09282010-11-22 21:09:01 +0100539 release_firmware(firmware);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530540
Rogério Brito84f0e172011-02-03 01:42:05 -0200541 return ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530542}
543
544static void ath3k_disconnect(struct usb_interface *intf)
545{
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530546 BT_DBG("ath3k_disconnect intf %p", intf);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530547}
548
549static struct usb_driver ath3k_driver = {
550 .name = "ath3k",
551 .probe = ath3k_probe,
552 .disconnect = ath3k_disconnect,
553 .id_table = ath3k_table,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700554 .disable_hub_initiated_lpm = 1,
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530555};
556
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -0800557module_usb_driver(ath3k_driver);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530558
559MODULE_AUTHOR("Atheros Communications");
560MODULE_DESCRIPTION("Atheros AR30xx firmware driver");
561MODULE_VERSION(VERSION);
562MODULE_LICENSE("GPL");
Paul Fertserc3eae822011-10-29 21:52:49 +0400563MODULE_FIRMWARE(ATH3K_FIRMWARE);