blob: 11f36e5021367d7dd7c2b0794241154a0544ad0a [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>
30#include <net/bluetooth/bluetooth.h>
31
32#define VERSION "1.0"
Paul Fertserc3eae822011-10-29 21:52:49 +040033#define ATH3K_FIRMWARE "ath3k-1.fw"
Vikram Kandukuri9670d802010-01-06 19:04:15 +053034
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053035#define ATH3K_DNLOAD 0x01
36#define ATH3K_GETSTATE 0x05
37#define ATH3K_SET_NORMAL_MODE 0x07
38#define ATH3K_GETVERSION 0x09
39#define USB_REG_SWITCH_VID_PID 0x0a
40
41#define ATH3K_MODE_MASK 0x3F
42#define ATH3K_NORMAL_MODE 0x0E
43
44#define ATH3K_PATCH_UPDATE 0x80
45#define ATH3K_SYSCFG_UPDATE 0x40
46
47#define ATH3K_XTAL_FREQ_26M 0x00
48#define ATH3K_XTAL_FREQ_40M 0x01
49#define ATH3K_XTAL_FREQ_19P2 0x02
50#define ATH3K_NAME_LEN 0xFF
51
52struct ath3k_version {
53 unsigned int rom_version;
54 unsigned int build_version;
55 unsigned int ram_version;
56 unsigned char ref_clock;
57 unsigned char reserved[0x07];
58};
Vikram Kandukuri9670d802010-01-06 19:04:15 +053059
60static struct usb_device_id ath3k_table[] = {
61 /* Atheros AR3011 */
62 { USB_DEVICE(0x0CF3, 0x3000) },
Bala Shanmugambe931122010-11-26 17:35:46 +053063
64 /* Atheros AR3011 with sflash firmware*/
65 { USB_DEVICE(0x0CF3, 0x3002) },
Marek Vasut6eda5412012-06-08 14:32:50 +020066 { USB_DEVICE(0x0CF3, 0xE019) },
Andy Ross2a7bccc2011-05-09 16:11:16 -070067 { USB_DEVICE(0x13d3, 0x3304) },
Ricardo Mendoza8e7c3d22011-07-13 16:04:29 +010068 { USB_DEVICE(0x0930, 0x0215) },
Keng-Yu Lin6b6ba882011-11-30 18:32:37 +080069 { USB_DEVICE(0x0489, 0xE03D) },
Bala Shanmugambe931122010-11-26 17:35:46 +053070
Cho, Yu-Chen509e7862011-01-26 17:10:59 +080071 /* Atheros AR9285 Malbec with sflash firmware */
72 { USB_DEVICE(0x03F0, 0x311D) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053073
74 /* Atheros AR3012 with sflash firmware*/
75 { USB_DEVICE(0x0CF3, 0x3004) },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +020076 { USB_DEVICE(0x0CF3, 0x311D) },
Eran9498ba72011-12-05 22:15:29 +000077 { USB_DEVICE(0x13d3, 0x3375) },
AceLan Kao55ed7d42012-03-28 10:25:36 +080078 { USB_DEVICE(0x04CA, 0x3005) },
AceLan Kao87522a42012-04-13 17:39:57 +080079 { USB_DEVICE(0x13d3, 0x3362) },
AceLan Kaoac713112012-04-19 14:53:45 +080080 { USB_DEVICE(0x0CF3, 0xE004) },
Giancarlo Formicuccia6c4ae5c2012-06-10 08:33:11 +020081 { USB_DEVICE(0x0930, 0x0219) },
Peng Chen2096ae62012-08-01 10:11:59 +080082 { USB_DEVICE(0x0489, 0xe057) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053083
Cho, Yu-Chene9036e32011-02-15 10:20:07 +080084 /* Atheros AR5BBU12 with sflash firmware */
85 { USB_DEVICE(0x0489, 0xE02C) },
John W. Linvilleb67afe72011-02-18 17:03:41 -050086
Michael Gruetzner85d59722012-05-02 22:33:40 +020087 /* Atheros AR5BBU22 with sflash firmware */
88 { USB_DEVICE(0x0489, 0xE03C) },
89
Vikram Kandukuri9670d802010-01-06 19:04:15 +053090 { } /* Terminating entry */
91};
92
93MODULE_DEVICE_TABLE(usb, ath3k_table);
94
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053095#define BTUSB_ATH3012 0x80
96/* This table is to load patch and sysconfig files
97 * for AR3012 */
98static struct usb_device_id ath3k_blist_tbl[] = {
99
100 /* Atheros AR3012 with sflash firmware*/
101 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200102 { USB_DEVICE(0x0cf3, 0x311D), .driver_info = BTUSB_ATH3012 },
Eran9498ba72011-12-05 22:15:29 +0000103 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kao55ed7d42012-03-28 10:25:36 +0800104 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
AceLan Kao87522a42012-04-13 17:39:57 +0800105 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800106 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Giancarlo Formicuccia6c4ae5c2012-06-10 08:33:11 +0200107 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
Peng Chen2096ae62012-08-01 10:11:59 +0800108 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530109
Michael Gruetzner85d59722012-05-02 22:33:40 +0200110 /* Atheros AR5BBU22 with sflash firmware */
111 { USB_DEVICE(0x0489, 0xE03C), .driver_info = BTUSB_ATH3012 },
112
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530113 { } /* Terminating entry */
114};
115
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530116#define USB_REQ_DFU_DNLOAD 1
117#define BULK_SIZE 4096
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530118#define FW_HDR_SIZE 20
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530119
Alexander Holler86e09282010-11-22 21:09:01 +0100120static int ath3k_load_firmware(struct usb_device *udev,
121 const struct firmware *firmware)
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530122{
123 u8 *send_buf;
124 int err, pipe, len, size, sent = 0;
Alexander Holler86e09282010-11-22 21:09:01 +0100125 int count = firmware->size;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530126
Alexander Holler86e09282010-11-22 21:09:01 +0100127 BT_DBG("udev %p", udev);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530128
Alexander Holler86e09282010-11-22 21:09:01 +0100129 pipe = usb_sndctrlpipe(udev, 0);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530130
David Herrmann52a10202011-10-25 12:09:52 +0200131 send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530132 if (!send_buf) {
133 BT_ERR("Can't allocate memory chunk for firmware");
134 return -ENOMEM;
135 }
136
Alexander Holler86e09282010-11-22 21:09:01 +0100137 memcpy(send_buf, firmware->data, 20);
138 if ((err = usb_control_msg(udev, pipe,
139 USB_REQ_DFU_DNLOAD,
140 USB_TYPE_VENDOR, 0, 0,
141 send_buf, 20, USB_CTRL_SET_TIMEOUT)) < 0) {
142 BT_ERR("Can't change to loading configuration err");
143 goto error;
144 }
145 sent += 20;
146 count -= 20;
147
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530148 while (count) {
149 size = min_t(uint, count, BULK_SIZE);
Alexander Holler86e09282010-11-22 21:09:01 +0100150 pipe = usb_sndbulkpipe(udev, 0x02);
151 memcpy(send_buf, firmware->data + sent, size);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530152
Alexander Holler86e09282010-11-22 21:09:01 +0100153 err = usb_bulk_msg(udev, pipe, send_buf, size,
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530154 &len, 3000);
155
156 if (err || (len != size)) {
157 BT_ERR("Error in firmware loading err = %d,"
158 "len = %d, size = %d", err, len, size);
159 goto error;
160 }
161
162 sent += size;
163 count -= size;
164 }
165
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530166error:
167 kfree(send_buf);
168 return err;
169}
170
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530171static int ath3k_get_state(struct usb_device *udev, unsigned char *state)
172{
173 int pipe = 0;
174
175 pipe = usb_rcvctrlpipe(udev, 0);
176 return usb_control_msg(udev, pipe, ATH3K_GETSTATE,
177 USB_TYPE_VENDOR | USB_DIR_IN, 0, 0,
178 state, 0x01, USB_CTRL_SET_TIMEOUT);
179}
180
181static int ath3k_get_version(struct usb_device *udev,
182 struct ath3k_version *version)
183{
184 int pipe = 0;
185
186 pipe = usb_rcvctrlpipe(udev, 0);
187 return usb_control_msg(udev, pipe, ATH3K_GETVERSION,
188 USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, version,
189 sizeof(struct ath3k_version),
190 USB_CTRL_SET_TIMEOUT);
191}
192
193static int ath3k_load_fwfile(struct usb_device *udev,
194 const struct firmware *firmware)
195{
196 u8 *send_buf;
197 int err, pipe, len, size, count, sent = 0;
198 int ret;
199
200 count = firmware->size;
201
David Herrmann52a10202011-10-25 12:09:52 +0200202 send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530203 if (!send_buf) {
204 BT_ERR("Can't allocate memory chunk for firmware");
205 return -ENOMEM;
206 }
207
208 size = min_t(uint, count, FW_HDR_SIZE);
209 memcpy(send_buf, firmware->data, size);
210
211 pipe = usb_sndctrlpipe(udev, 0);
212 ret = usb_control_msg(udev, pipe, ATH3K_DNLOAD,
213 USB_TYPE_VENDOR, 0, 0, send_buf,
214 size, USB_CTRL_SET_TIMEOUT);
215 if (ret < 0) {
216 BT_ERR("Can't change to loading configuration err");
217 kfree(send_buf);
218 return ret;
219 }
220
221 sent += size;
222 count -= size;
223
224 while (count) {
225 size = min_t(uint, count, BULK_SIZE);
226 pipe = usb_sndbulkpipe(udev, 0x02);
227
228 memcpy(send_buf, firmware->data + sent, size);
229
230 err = usb_bulk_msg(udev, pipe, send_buf, size,
231 &len, 3000);
232 if (err || (len != size)) {
233 BT_ERR("Error in firmware loading err = %d,"
234 "len = %d, size = %d", err, len, size);
235 kfree(send_buf);
236 return err;
237 }
238 sent += size;
239 count -= size;
240 }
241
242 kfree(send_buf);
243 return 0;
244}
245
246static int ath3k_switch_pid(struct usb_device *udev)
247{
248 int pipe = 0;
249
250 pipe = usb_sndctrlpipe(udev, 0);
251 return usb_control_msg(udev, pipe, USB_REG_SWITCH_VID_PID,
252 USB_TYPE_VENDOR, 0, 0,
253 NULL, 0, USB_CTRL_SET_TIMEOUT);
254}
255
256static int ath3k_set_normal_mode(struct usb_device *udev)
257{
258 unsigned char fw_state;
259 int pipe = 0, ret;
260
261 ret = ath3k_get_state(udev, &fw_state);
262 if (ret < 0) {
263 BT_ERR("Can't get state to change to normal mode err");
264 return ret;
265 }
266
267 if ((fw_state & ATH3K_MODE_MASK) == ATH3K_NORMAL_MODE) {
268 BT_DBG("firmware was already in normal mode");
269 return 0;
270 }
271
272 pipe = usb_sndctrlpipe(udev, 0);
273 return usb_control_msg(udev, pipe, ATH3K_SET_NORMAL_MODE,
274 USB_TYPE_VENDOR, 0, 0,
275 NULL, 0, USB_CTRL_SET_TIMEOUT);
276}
277
278static int ath3k_load_patch(struct usb_device *udev)
279{
280 unsigned char fw_state;
281 char filename[ATH3K_NAME_LEN] = {0};
282 const struct firmware *firmware;
283 struct ath3k_version fw_version, pt_version;
284 int ret;
285
286 ret = ath3k_get_state(udev, &fw_state);
287 if (ret < 0) {
288 BT_ERR("Can't get state to change to load ram patch err");
289 return ret;
290 }
291
292 if (fw_state & ATH3K_PATCH_UPDATE) {
293 BT_DBG("Patch was already downloaded");
294 return 0;
295 }
296
297 ret = ath3k_get_version(udev, &fw_version);
298 if (ret < 0) {
299 BT_ERR("Can't get version to change to load ram patch err");
300 return ret;
301 }
302
303 snprintf(filename, ATH3K_NAME_LEN, "ar3k/AthrBT_0x%08x.dfu",
304 fw_version.rom_version);
305
306 ret = request_firmware(&firmware, filename, &udev->dev);
307 if (ret < 0) {
308 BT_ERR("Patch file not found %s", filename);
309 return ret;
310 }
311
312 pt_version.rom_version = *(int *)(firmware->data + firmware->size - 8);
313 pt_version.build_version = *(int *)
314 (firmware->data + firmware->size - 4);
315
316 if ((pt_version.rom_version != fw_version.rom_version) ||
317 (pt_version.build_version <= fw_version.build_version)) {
318 BT_ERR("Patch file version did not match with firmware");
319 release_firmware(firmware);
320 return -EINVAL;
321 }
322
323 ret = ath3k_load_fwfile(udev, firmware);
324 release_firmware(firmware);
325
326 return ret;
327}
328
329static int ath3k_load_syscfg(struct usb_device *udev)
330{
331 unsigned char fw_state;
332 char filename[ATH3K_NAME_LEN] = {0};
333 const struct firmware *firmware;
334 struct ath3k_version fw_version;
335 int clk_value, ret;
336
337 ret = ath3k_get_state(udev, &fw_state);
338 if (ret < 0) {
339 BT_ERR("Can't get state to change to load configration err");
340 return -EBUSY;
341 }
342
343 ret = ath3k_get_version(udev, &fw_version);
344 if (ret < 0) {
345 BT_ERR("Can't get version to change to load ram patch err");
346 return ret;
347 }
348
349 switch (fw_version.ref_clock) {
350
351 case ATH3K_XTAL_FREQ_26M:
352 clk_value = 26;
353 break;
354 case ATH3K_XTAL_FREQ_40M:
355 clk_value = 40;
356 break;
357 case ATH3K_XTAL_FREQ_19P2:
358 clk_value = 19;
359 break;
360 default:
361 clk_value = 0;
362 break;
363 }
364
365 snprintf(filename, ATH3K_NAME_LEN, "ar3k/ramps_0x%08x_%d%s",
366 fw_version.rom_version, clk_value, ".dfu");
367
368 ret = request_firmware(&firmware, filename, &udev->dev);
369 if (ret < 0) {
370 BT_ERR("Configuration file not found %s", filename);
371 return ret;
372 }
373
374 ret = ath3k_load_fwfile(udev, firmware);
375 release_firmware(firmware);
376
377 return ret;
378}
379
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530380static int ath3k_probe(struct usb_interface *intf,
381 const struct usb_device_id *id)
382{
383 const struct firmware *firmware;
384 struct usb_device *udev = interface_to_usbdev(intf);
Rogério Brito84f0e172011-02-03 01:42:05 -0200385 int ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530386
387 BT_DBG("intf %p id %p", intf, id);
388
389 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
390 return -ENODEV;
391
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530392 /* match device ID in ath3k blacklist table */
393 if (!id->driver_info) {
394 const struct usb_device_id *match;
395 match = usb_match_id(intf, ath3k_blist_tbl);
396 if (match)
397 id = match;
398 }
399
400 /* load patch and sysconfig files for AR3012 */
401 if (id->driver_info & BTUSB_ATH3012) {
Steven.Li2d25f8b2011-07-01 14:02:36 +0800402
403 /* New firmware with patch and sysconfig files already loaded */
404 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x0001)
405 return -ENODEV;
406
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530407 ret = ath3k_load_patch(udev);
408 if (ret < 0) {
409 BT_ERR("Loading patch file failed");
410 return ret;
411 }
412 ret = ath3k_load_syscfg(udev);
413 if (ret < 0) {
414 BT_ERR("Loading sysconfig file failed");
415 return ret;
416 }
417 ret = ath3k_set_normal_mode(udev);
418 if (ret < 0) {
419 BT_ERR("Set normal mode failed");
420 return ret;
421 }
422 ath3k_switch_pid(udev);
423 return 0;
424 }
425
Paul Fertserc3eae822011-10-29 21:52:49 +0400426 ret = request_firmware(&firmware, ATH3K_FIRMWARE, &udev->dev);
427 if (ret < 0) {
428 if (ret == -ENOENT)
429 BT_ERR("Firmware file \"%s\" not found",
430 ATH3K_FIRMWARE);
431 else
432 BT_ERR("Firmware file \"%s\" request failed (err=%d)",
433 ATH3K_FIRMWARE, ret);
434 return ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530435 }
436
Rogério Brito84f0e172011-02-03 01:42:05 -0200437 ret = ath3k_load_firmware(udev, firmware);
Alexander Holler86e09282010-11-22 21:09:01 +0100438 release_firmware(firmware);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530439
Rogério Brito84f0e172011-02-03 01:42:05 -0200440 return ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530441}
442
443static void ath3k_disconnect(struct usb_interface *intf)
444{
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530445 BT_DBG("ath3k_disconnect intf %p", intf);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530446}
447
448static struct usb_driver ath3k_driver = {
449 .name = "ath3k",
450 .probe = ath3k_probe,
451 .disconnect = ath3k_disconnect,
452 .id_table = ath3k_table,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700453 .disable_hub_initiated_lpm = 1,
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530454};
455
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -0800456module_usb_driver(ath3k_driver);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530457
458MODULE_AUTHOR("Atheros Communications");
459MODULE_DESCRIPTION("Atheros AR30xx firmware driver");
460MODULE_VERSION(VERSION);
461MODULE_LICENSE("GPL");
Paul Fertserc3eae822011-10-29 21:52:49 +0400462MODULE_FIRMWARE(ATH3K_FIRMWARE);