blob: ae9edca7b56dc474a140c8f0eb579f556dc8e308 [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) },
Andy Ross2a7bccc2011-05-09 16:11:16 -070066 { USB_DEVICE(0x13d3, 0x3304) },
Ricardo Mendoza8e7c3d22011-07-13 16:04:29 +010067 { USB_DEVICE(0x0930, 0x0215) },
Keng-Yu Lin6b6ba882011-11-30 18:32:37 +080068 { USB_DEVICE(0x0489, 0xE03D) },
Bala Shanmugambe931122010-11-26 17:35:46 +053069
Cho, Yu-Chen509e7862011-01-26 17:10:59 +080070 /* Atheros AR9285 Malbec with sflash firmware */
71 { USB_DEVICE(0x03F0, 0x311D) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053072
73 /* Atheros AR3012 with sflash firmware*/
74 { USB_DEVICE(0x0CF3, 0x3004) },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +020075 { USB_DEVICE(0x0CF3, 0x311D) },
Eran9498ba72011-12-05 22:15:29 +000076 { USB_DEVICE(0x13d3, 0x3375) },
AceLan Kao55ed7d42012-03-28 10:25:36 +080077 { USB_DEVICE(0x04CA, 0x3005) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053078
Cho, Yu-Chene9036e32011-02-15 10:20:07 +080079 /* Atheros AR5BBU12 with sflash firmware */
80 { USB_DEVICE(0x0489, 0xE02C) },
John W. Linvilleb67afe72011-02-18 17:03:41 -050081
Vikram Kandukuri9670d802010-01-06 19:04:15 +053082 { } /* Terminating entry */
83};
84
85MODULE_DEVICE_TABLE(usb, ath3k_table);
86
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053087#define BTUSB_ATH3012 0x80
88/* This table is to load patch and sysconfig files
89 * for AR3012 */
90static struct usb_device_id ath3k_blist_tbl[] = {
91
92 /* Atheros AR3012 with sflash firmware*/
93 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +020094 { USB_DEVICE(0x0cf3, 0x311D), .driver_info = BTUSB_ATH3012 },
Eran9498ba72011-12-05 22:15:29 +000095 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kao55ed7d42012-03-28 10:25:36 +080096 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +053097
98 { } /* Terminating entry */
99};
100
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530101#define USB_REQ_DFU_DNLOAD 1
102#define BULK_SIZE 4096
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530103#define FW_HDR_SIZE 20
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530104
Alexander Holler86e09282010-11-22 21:09:01 +0100105static int ath3k_load_firmware(struct usb_device *udev,
106 const struct firmware *firmware)
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530107{
108 u8 *send_buf;
109 int err, pipe, len, size, sent = 0;
Alexander Holler86e09282010-11-22 21:09:01 +0100110 int count = firmware->size;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530111
Alexander Holler86e09282010-11-22 21:09:01 +0100112 BT_DBG("udev %p", udev);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530113
Alexander Holler86e09282010-11-22 21:09:01 +0100114 pipe = usb_sndctrlpipe(udev, 0);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530115
David Herrmann52a10202011-10-25 12:09:52 +0200116 send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530117 if (!send_buf) {
118 BT_ERR("Can't allocate memory chunk for firmware");
119 return -ENOMEM;
120 }
121
Alexander Holler86e09282010-11-22 21:09:01 +0100122 memcpy(send_buf, firmware->data, 20);
123 if ((err = usb_control_msg(udev, pipe,
124 USB_REQ_DFU_DNLOAD,
125 USB_TYPE_VENDOR, 0, 0,
126 send_buf, 20, USB_CTRL_SET_TIMEOUT)) < 0) {
127 BT_ERR("Can't change to loading configuration err");
128 goto error;
129 }
130 sent += 20;
131 count -= 20;
132
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530133 while (count) {
134 size = min_t(uint, count, BULK_SIZE);
Alexander Holler86e09282010-11-22 21:09:01 +0100135 pipe = usb_sndbulkpipe(udev, 0x02);
136 memcpy(send_buf, firmware->data + sent, size);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530137
Alexander Holler86e09282010-11-22 21:09:01 +0100138 err = usb_bulk_msg(udev, pipe, send_buf, size,
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530139 &len, 3000);
140
141 if (err || (len != size)) {
142 BT_ERR("Error in firmware loading err = %d,"
143 "len = %d, size = %d", err, len, size);
144 goto error;
145 }
146
147 sent += size;
148 count -= size;
149 }
150
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530151error:
152 kfree(send_buf);
153 return err;
154}
155
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530156static int ath3k_get_state(struct usb_device *udev, unsigned char *state)
157{
158 int pipe = 0;
159
160 pipe = usb_rcvctrlpipe(udev, 0);
161 return usb_control_msg(udev, pipe, ATH3K_GETSTATE,
162 USB_TYPE_VENDOR | USB_DIR_IN, 0, 0,
163 state, 0x01, USB_CTRL_SET_TIMEOUT);
164}
165
166static int ath3k_get_version(struct usb_device *udev,
167 struct ath3k_version *version)
168{
169 int pipe = 0;
170
171 pipe = usb_rcvctrlpipe(udev, 0);
172 return usb_control_msg(udev, pipe, ATH3K_GETVERSION,
173 USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, version,
174 sizeof(struct ath3k_version),
175 USB_CTRL_SET_TIMEOUT);
176}
177
178static int ath3k_load_fwfile(struct usb_device *udev,
179 const struct firmware *firmware)
180{
181 u8 *send_buf;
182 int err, pipe, len, size, count, sent = 0;
183 int ret;
184
185 count = firmware->size;
186
David Herrmann52a10202011-10-25 12:09:52 +0200187 send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530188 if (!send_buf) {
189 BT_ERR("Can't allocate memory chunk for firmware");
190 return -ENOMEM;
191 }
192
193 size = min_t(uint, count, FW_HDR_SIZE);
194 memcpy(send_buf, firmware->data, size);
195
196 pipe = usb_sndctrlpipe(udev, 0);
197 ret = usb_control_msg(udev, pipe, ATH3K_DNLOAD,
198 USB_TYPE_VENDOR, 0, 0, send_buf,
199 size, USB_CTRL_SET_TIMEOUT);
200 if (ret < 0) {
201 BT_ERR("Can't change to loading configuration err");
202 kfree(send_buf);
203 return ret;
204 }
205
206 sent += size;
207 count -= size;
208
209 while (count) {
210 size = min_t(uint, count, BULK_SIZE);
211 pipe = usb_sndbulkpipe(udev, 0x02);
212
213 memcpy(send_buf, firmware->data + sent, size);
214
215 err = usb_bulk_msg(udev, pipe, send_buf, size,
216 &len, 3000);
217 if (err || (len != size)) {
218 BT_ERR("Error in firmware loading err = %d,"
219 "len = %d, size = %d", err, len, size);
220 kfree(send_buf);
221 return err;
222 }
223 sent += size;
224 count -= size;
225 }
226
227 kfree(send_buf);
228 return 0;
229}
230
231static int ath3k_switch_pid(struct usb_device *udev)
232{
233 int pipe = 0;
234
235 pipe = usb_sndctrlpipe(udev, 0);
236 return usb_control_msg(udev, pipe, USB_REG_SWITCH_VID_PID,
237 USB_TYPE_VENDOR, 0, 0,
238 NULL, 0, USB_CTRL_SET_TIMEOUT);
239}
240
241static int ath3k_set_normal_mode(struct usb_device *udev)
242{
243 unsigned char fw_state;
244 int pipe = 0, ret;
245
246 ret = ath3k_get_state(udev, &fw_state);
247 if (ret < 0) {
248 BT_ERR("Can't get state to change to normal mode err");
249 return ret;
250 }
251
252 if ((fw_state & ATH3K_MODE_MASK) == ATH3K_NORMAL_MODE) {
253 BT_DBG("firmware was already in normal mode");
254 return 0;
255 }
256
257 pipe = usb_sndctrlpipe(udev, 0);
258 return usb_control_msg(udev, pipe, ATH3K_SET_NORMAL_MODE,
259 USB_TYPE_VENDOR, 0, 0,
260 NULL, 0, USB_CTRL_SET_TIMEOUT);
261}
262
263static int ath3k_load_patch(struct usb_device *udev)
264{
265 unsigned char fw_state;
266 char filename[ATH3K_NAME_LEN] = {0};
267 const struct firmware *firmware;
268 struct ath3k_version fw_version, pt_version;
269 int ret;
270
271 ret = ath3k_get_state(udev, &fw_state);
272 if (ret < 0) {
273 BT_ERR("Can't get state to change to load ram patch err");
274 return ret;
275 }
276
277 if (fw_state & ATH3K_PATCH_UPDATE) {
278 BT_DBG("Patch was already downloaded");
279 return 0;
280 }
281
282 ret = ath3k_get_version(udev, &fw_version);
283 if (ret < 0) {
284 BT_ERR("Can't get version to change to load ram patch err");
285 return ret;
286 }
287
288 snprintf(filename, ATH3K_NAME_LEN, "ar3k/AthrBT_0x%08x.dfu",
289 fw_version.rom_version);
290
291 ret = request_firmware(&firmware, filename, &udev->dev);
292 if (ret < 0) {
293 BT_ERR("Patch file not found %s", filename);
294 return ret;
295 }
296
297 pt_version.rom_version = *(int *)(firmware->data + firmware->size - 8);
298 pt_version.build_version = *(int *)
299 (firmware->data + firmware->size - 4);
300
301 if ((pt_version.rom_version != fw_version.rom_version) ||
302 (pt_version.build_version <= fw_version.build_version)) {
303 BT_ERR("Patch file version did not match with firmware");
304 release_firmware(firmware);
305 return -EINVAL;
306 }
307
308 ret = ath3k_load_fwfile(udev, firmware);
309 release_firmware(firmware);
310
311 return ret;
312}
313
314static int ath3k_load_syscfg(struct usb_device *udev)
315{
316 unsigned char fw_state;
317 char filename[ATH3K_NAME_LEN] = {0};
318 const struct firmware *firmware;
319 struct ath3k_version fw_version;
320 int clk_value, ret;
321
322 ret = ath3k_get_state(udev, &fw_state);
323 if (ret < 0) {
324 BT_ERR("Can't get state to change to load configration err");
325 return -EBUSY;
326 }
327
328 ret = ath3k_get_version(udev, &fw_version);
329 if (ret < 0) {
330 BT_ERR("Can't get version to change to load ram patch err");
331 return ret;
332 }
333
334 switch (fw_version.ref_clock) {
335
336 case ATH3K_XTAL_FREQ_26M:
337 clk_value = 26;
338 break;
339 case ATH3K_XTAL_FREQ_40M:
340 clk_value = 40;
341 break;
342 case ATH3K_XTAL_FREQ_19P2:
343 clk_value = 19;
344 break;
345 default:
346 clk_value = 0;
347 break;
348 }
349
350 snprintf(filename, ATH3K_NAME_LEN, "ar3k/ramps_0x%08x_%d%s",
351 fw_version.rom_version, clk_value, ".dfu");
352
353 ret = request_firmware(&firmware, filename, &udev->dev);
354 if (ret < 0) {
355 BT_ERR("Configuration file not found %s", filename);
356 return ret;
357 }
358
359 ret = ath3k_load_fwfile(udev, firmware);
360 release_firmware(firmware);
361
362 return ret;
363}
364
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530365static int ath3k_probe(struct usb_interface *intf,
366 const struct usb_device_id *id)
367{
368 const struct firmware *firmware;
369 struct usb_device *udev = interface_to_usbdev(intf);
Rogério Brito84f0e172011-02-03 01:42:05 -0200370 int ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530371
372 BT_DBG("intf %p id %p", intf, id);
373
374 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
375 return -ENODEV;
376
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530377 /* match device ID in ath3k blacklist table */
378 if (!id->driver_info) {
379 const struct usb_device_id *match;
380 match = usb_match_id(intf, ath3k_blist_tbl);
381 if (match)
382 id = match;
383 }
384
385 /* load patch and sysconfig files for AR3012 */
386 if (id->driver_info & BTUSB_ATH3012) {
Steven.Li2d25f8b2011-07-01 14:02:36 +0800387
388 /* New firmware with patch and sysconfig files already loaded */
389 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x0001)
390 return -ENODEV;
391
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530392 ret = ath3k_load_patch(udev);
393 if (ret < 0) {
394 BT_ERR("Loading patch file failed");
395 return ret;
396 }
397 ret = ath3k_load_syscfg(udev);
398 if (ret < 0) {
399 BT_ERR("Loading sysconfig file failed");
400 return ret;
401 }
402 ret = ath3k_set_normal_mode(udev);
403 if (ret < 0) {
404 BT_ERR("Set normal mode failed");
405 return ret;
406 }
407 ath3k_switch_pid(udev);
408 return 0;
409 }
410
Paul Fertserc3eae822011-10-29 21:52:49 +0400411 ret = request_firmware(&firmware, ATH3K_FIRMWARE, &udev->dev);
412 if (ret < 0) {
413 if (ret == -ENOENT)
414 BT_ERR("Firmware file \"%s\" not found",
415 ATH3K_FIRMWARE);
416 else
417 BT_ERR("Firmware file \"%s\" request failed (err=%d)",
418 ATH3K_FIRMWARE, ret);
419 return ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530420 }
421
Rogério Brito84f0e172011-02-03 01:42:05 -0200422 ret = ath3k_load_firmware(udev, firmware);
Alexander Holler86e09282010-11-22 21:09:01 +0100423 release_firmware(firmware);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530424
Rogério Brito84f0e172011-02-03 01:42:05 -0200425 return ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530426}
427
428static void ath3k_disconnect(struct usb_interface *intf)
429{
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530430 BT_DBG("ath3k_disconnect intf %p", intf);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530431}
432
433static struct usb_driver ath3k_driver = {
434 .name = "ath3k",
435 .probe = ath3k_probe,
436 .disconnect = ath3k_disconnect,
437 .id_table = ath3k_table,
438};
439
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -0800440module_usb_driver(ath3k_driver);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530441
442MODULE_AUTHOR("Atheros Communications");
443MODULE_DESCRIPTION("Atheros AR30xx firmware driver");
444MODULE_VERSION(VERSION);
445MODULE_LICENSE("GPL");
Paul Fertserc3eae822011-10-29 21:52:49 +0400446MODULE_FIRMWARE(ATH3K_FIRMWARE);