blob: 204afe66de92ed42aaf8c9d1c015161f60429f33 [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) },
Dmitry Tunin28c971d2016-02-10 00:49:11 +030085 { USB_DEVICE(0x0489, 0xe095) },
Andy Shevchenko0b880062014-02-18 18:26:19 +020086 { USB_DEVICE(0x04c5, 0x1330) },
87 { USB_DEVICE(0x04CA, 0x3004) },
88 { USB_DEVICE(0x04CA, 0x3005) },
89 { USB_DEVICE(0x04CA, 0x3006) },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -070090 { USB_DEVICE(0x04CA, 0x3007) },
Andy Shevchenko0b880062014-02-18 18:26:19 +020091 { USB_DEVICE(0x04CA, 0x3008) },
92 { USB_DEVICE(0x04CA, 0x300b) },
Dmitry Tunin7e730c7f2015-06-18 20:41:51 +030093 { USB_DEVICE(0x04CA, 0x300d) },
Dmitry Tuninec0810d2015-05-02 13:36:58 +030094 { USB_DEVICE(0x04CA, 0x300f) },
Janne Heikkinen134d3b32014-12-09 07:44:51 +020095 { USB_DEVICE(0x04CA, 0x3010) },
Dmitry Tunin81d90442016-02-28 11:04:06 +030096 { USB_DEVICE(0x04CA, 0x3014) },
Dmitry Tunin441ad622017-01-05 13:19:53 +030097 { USB_DEVICE(0x04CA, 0x3018) },
Andy Shevchenko0b880062014-02-18 18:26:19 +020098 { USB_DEVICE(0x0930, 0x0219) },
Dmitry Tunincd355ff2015-10-05 19:29:33 +030099 { USB_DEVICE(0x0930, 0x021c) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200100 { USB_DEVICE(0x0930, 0x0220) },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100101 { USB_DEVICE(0x0930, 0x0227) },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200102 { USB_DEVICE(0x0b05, 0x17d0) },
Ming Leid66629c2013-03-15 11:00:39 +0800103 { USB_DEVICE(0x0CF3, 0x0036) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530104 { USB_DEVICE(0x0CF3, 0x3004) },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900105 { USB_DEVICE(0x0CF3, 0x3008) },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200106 { USB_DEVICE(0x0CF3, 0x311D) },
Oliver Neukumb1312372014-01-16 15:37:11 +0100107 { USB_DEVICE(0x0CF3, 0x311E) },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100108 { USB_DEVICE(0x0CF3, 0x311F) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200109 { USB_DEVICE(0x0cf3, 0x3121) },
Ming Leiebaf5792013-03-18 23:45:11 +0800110 { USB_DEVICE(0x0CF3, 0x817a) },
Dmitry Tunin18e0afa2015-10-16 11:45:26 +0300111 { USB_DEVICE(0x0CF3, 0x817b) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200112 { USB_DEVICE(0x0cf3, 0xe003) },
AceLan Kaoac713112012-04-19 14:53:45 +0800113 { USB_DEVICE(0x0CF3, 0xE004) },
Peng Chen0a3658c2013-08-30 17:41:40 +0800114 { USB_DEVICE(0x0CF3, 0xE005) },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800115 { USB_DEVICE(0x0CF3, 0xE006) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200116 { USB_DEVICE(0x13d3, 0x3362) },
117 { USB_DEVICE(0x13d3, 0x3375) },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800118 { USB_DEVICE(0x13d3, 0x3393) },
Dmitry Tunin609574e2016-02-10 15:33:17 +0300119 { USB_DEVICE(0x13d3, 0x3395) },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530120 { USB_DEVICE(0x13d3, 0x3402) },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300121 { USB_DEVICE(0x13d3, 0x3408) },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300122 { USB_DEVICE(0x13d3, 0x3423) },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530123 { USB_DEVICE(0x13d3, 0x3432) },
Dmitry Tunin75c6aca2016-03-04 01:32:19 +0300124 { USB_DEVICE(0x13d3, 0x3472) },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300125 { USB_DEVICE(0x13d3, 0x3474) },
Lauro Costa72f9f8b2016-05-09 17:36:11 -0300126 { USB_DEVICE(0x13d3, 0x3487) },
Dmitry Tunin12d86892016-07-12 01:35:18 +0300127 { USB_DEVICE(0x13d3, 0x3490) },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530128
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800129 /* Atheros AR5BBU12 with sflash firmware */
130 { USB_DEVICE(0x0489, 0xE02C) },
John W. Linvilleb67afe72011-02-18 17:03:41 -0500131
Michael Gruetzner85d59722012-05-02 22:33:40 +0200132 /* Atheros AR5BBU22 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530133 { USB_DEVICE(0x0489, 0xE036) },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200134 { USB_DEVICE(0x0489, 0xE03C) },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200135
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530136 { } /* Terminating entry */
137};
138
139MODULE_DEVICE_TABLE(usb, ath3k_table);
140
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530141#define BTUSB_ATH3012 0x80
142/* This table is to load patch and sysconfig files
Derek Robsond98422c2017-07-22 13:47:07 +1200143 * for AR3012
144 */
Marcel Holtmann3932eb32013-10-11 07:46:21 -0700145static const struct usb_device_id ath3k_blist_tbl[] = {
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530146
147 /* Atheros AR3012 with sflash firmware*/
Andy Shevchenko0b880062014-02-18 18:26:19 +0200148 { 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 Tunin692c0622015-06-06 20:25:40 +0300153 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530154 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin28c971d2016-02-10 00:49:11 +0300155 { USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200156 { 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 Habibulla1fb4e092014-04-17 11:37:13 -0700160 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200161 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
162 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin7e730c7f2015-06-18 20:41:51 +0300163 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300164 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200165 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin81d90442016-02-28 11:04:06 +0300166 { USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin441ad622017-01-05 13:19:53 +0300167 { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200168 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
Dmitry Tunincd355ff2015-10-05 19:29:33 +0300169 { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200170 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100171 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200172 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800173 { USB_DEVICE(0x0CF3, 0x0036), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530174 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900175 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200176 { USB_DEVICE(0x0cf3, 0x311D), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100177 { USB_DEVICE(0x0cf3, 0x311E), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100178 { USB_DEVICE(0x0cf3, 0x311F), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200179 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800180 { USB_DEVICE(0x0CF3, 0x817a), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin18e0afa2015-10-16 11:45:26 +0300181 { USB_DEVICE(0x0CF3, 0x817b), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800182 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800183 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800184 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
AceLan Kao1d5b5692013-06-20 13:38:45 +0800185 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200186 { 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 Tunin609574e2016-02-10 15:33:17 +0300189 { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200190 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300191 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300192 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530193 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin75c6aca2016-03-04 01:32:19 +0300194 { USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300195 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Lauro Costa72f9f8b2016-05-09 17:36:11 -0300196 { USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin12d86892016-07-12 01:35:18 +0300197 { USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530198
Michael Gruetzner85d59722012-05-02 22:33:40 +0200199 /* Atheros AR5BBU22 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530200 { USB_DEVICE(0x0489, 0xE036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200201 { USB_DEVICE(0x0489, 0xE03C), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200202
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530203 { } /* Terminating entry */
204};
205
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530206#define USB_REQ_DFU_DNLOAD 1
207#define BULK_SIZE 4096
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530208#define FW_HDR_SIZE 20
Adam Leec561a572015-01-28 15:30:27 -0500209#define TIMEGAP_USEC_MIN 50
210#define TIMEGAP_USEC_MAX 100
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530211
Alexander Holler86e09282010-11-22 21:09:01 +0100212static int ath3k_load_firmware(struct usb_device *udev,
213 const struct firmware *firmware)
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530214{
215 u8 *send_buf;
Dan Carpentere9fc7162016-04-22 13:02:55 +0300216 int len = 0;
217 int err, pipe, size, sent = 0;
Alexander Holler86e09282010-11-22 21:09:01 +0100218 int count = firmware->size;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530219
Alexander Holler86e09282010-11-22 21:09:01 +0100220 BT_DBG("udev %p", udev);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530221
Alexander Holler86e09282010-11-22 21:09:01 +0100222 pipe = usb_sndctrlpipe(udev, 0);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530223
David Herrmann52a10202011-10-25 12:09:52 +0200224 send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530225 if (!send_buf) {
226 BT_ERR("Can't allocate memory chunk for firmware");
227 return -ENOMEM;
228 }
229
Alexander Holler86e09282010-11-22 21:09:01 +0100230 memcpy(send_buf, firmware->data, 20);
Valentin Iliea08b15e2013-08-12 18:46:00 +0300231 err = usb_control_msg(udev, pipe, USB_REQ_DFU_DNLOAD, USB_TYPE_VENDOR,
232 0, 0, send_buf, 20, USB_CTRL_SET_TIMEOUT);
233 if (err < 0) {
Alexander Holler86e09282010-11-22 21:09:01 +0100234 BT_ERR("Can't change to loading configuration err");
235 goto error;
236 }
237 sent += 20;
238 count -= 20;
239
Adam Lee3abb56d2014-05-27 13:49:07 +0800240 pipe = usb_sndbulkpipe(udev, 0x02);
241
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530242 while (count) {
Adam Leec561a572015-01-28 15:30:27 -0500243 /* workaround the compatibility issue with xHCI controller*/
244 usleep_range(TIMEGAP_USEC_MIN, TIMEGAP_USEC_MAX);
245
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530246 size = min_t(uint, count, BULK_SIZE);
Alexander Holler86e09282010-11-22 21:09:01 +0100247 memcpy(send_buf, firmware->data + sent, size);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530248
Alexander Holler86e09282010-11-22 21:09:01 +0100249 err = usb_bulk_msg(udev, pipe, send_buf, size,
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530250 &len, 3000);
251
252 if (err || (len != size)) {
253 BT_ERR("Error in firmware loading err = %d,"
254 "len = %d, size = %d", err, len, size);
255 goto error;
256 }
257
258 sent += size;
259 count -= size;
260 }
261
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530262error:
263 kfree(send_buf);
264 return err;
265}
266
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530267static int ath3k_get_state(struct usb_device *udev, unsigned char *state)
268{
Stanislaw Gruszka517828a2013-07-08 10:27:23 +0200269 int ret, pipe = 0;
270 char *buf;
271
272 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
273 if (!buf)
274 return -ENOMEM;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530275
276 pipe = usb_rcvctrlpipe(udev, 0);
Stanislaw Gruszka517828a2013-07-08 10:27:23 +0200277 ret = usb_control_msg(udev, pipe, ATH3K_GETSTATE,
278 USB_TYPE_VENDOR | USB_DIR_IN, 0, 0,
279 buf, sizeof(*buf), USB_CTRL_SET_TIMEOUT);
280
281 *state = *buf;
282 kfree(buf);
283
284 return ret;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530285}
286
287static int ath3k_get_version(struct usb_device *udev,
288 struct ath3k_version *version)
289{
Stanislaw Gruszka517828a2013-07-08 10:27:23 +0200290 int ret, pipe = 0;
291 struct ath3k_version *buf;
292 const int size = sizeof(*buf);
293
294 buf = kmalloc(size, GFP_KERNEL);
295 if (!buf)
296 return -ENOMEM;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530297
298 pipe = usb_rcvctrlpipe(udev, 0);
Stanislaw Gruszka517828a2013-07-08 10:27:23 +0200299 ret = usb_control_msg(udev, pipe, ATH3K_GETVERSION,
300 USB_TYPE_VENDOR | USB_DIR_IN, 0, 0,
301 buf, size, USB_CTRL_SET_TIMEOUT);
302
303 memcpy(version, buf, size);
304 kfree(buf);
305
306 return ret;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530307}
308
309static int ath3k_load_fwfile(struct usb_device *udev,
310 const struct firmware *firmware)
311{
312 u8 *send_buf;
Dan Carpentere9fc7162016-04-22 13:02:55 +0300313 int len = 0;
314 int err, pipe, size, count, sent = 0;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530315 int ret;
316
317 count = firmware->size;
318
David Herrmann52a10202011-10-25 12:09:52 +0200319 send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530320 if (!send_buf) {
321 BT_ERR("Can't allocate memory chunk for firmware");
322 return -ENOMEM;
323 }
324
325 size = min_t(uint, count, FW_HDR_SIZE);
326 memcpy(send_buf, firmware->data, size);
327
328 pipe = usb_sndctrlpipe(udev, 0);
329 ret = usb_control_msg(udev, pipe, ATH3K_DNLOAD,
330 USB_TYPE_VENDOR, 0, 0, send_buf,
331 size, USB_CTRL_SET_TIMEOUT);
332 if (ret < 0) {
333 BT_ERR("Can't change to loading configuration err");
334 kfree(send_buf);
335 return ret;
336 }
337
338 sent += size;
339 count -= size;
340
Adam Leeb0c3e132014-06-05 21:47:44 +0800341 pipe = usb_sndbulkpipe(udev, 0x02);
342
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530343 while (count) {
Adam Leec561a572015-01-28 15:30:27 -0500344 /* workaround the compatibility issue with xHCI controller*/
345 usleep_range(TIMEGAP_USEC_MIN, TIMEGAP_USEC_MAX);
346
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530347 size = min_t(uint, count, BULK_SIZE);
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530348 memcpy(send_buf, firmware->data + sent, size);
349
350 err = usb_bulk_msg(udev, pipe, send_buf, size,
351 &len, 3000);
352 if (err || (len != size)) {
353 BT_ERR("Error in firmware loading err = %d,"
354 "len = %d, size = %d", err, len, size);
355 kfree(send_buf);
356 return err;
357 }
358 sent += size;
359 count -= size;
360 }
361
362 kfree(send_buf);
363 return 0;
364}
365
366static int ath3k_switch_pid(struct usb_device *udev)
367{
368 int pipe = 0;
369
370 pipe = usb_sndctrlpipe(udev, 0);
371 return usb_control_msg(udev, pipe, USB_REG_SWITCH_VID_PID,
372 USB_TYPE_VENDOR, 0, 0,
373 NULL, 0, USB_CTRL_SET_TIMEOUT);
374}
375
376static int ath3k_set_normal_mode(struct usb_device *udev)
377{
378 unsigned char fw_state;
379 int pipe = 0, ret;
380
381 ret = ath3k_get_state(udev, &fw_state);
382 if (ret < 0) {
383 BT_ERR("Can't get state to change to normal mode err");
384 return ret;
385 }
386
387 if ((fw_state & ATH3K_MODE_MASK) == ATH3K_NORMAL_MODE) {
388 BT_DBG("firmware was already in normal mode");
389 return 0;
390 }
391
392 pipe = usb_sndctrlpipe(udev, 0);
393 return usb_control_msg(udev, pipe, ATH3K_SET_NORMAL_MODE,
394 USB_TYPE_VENDOR, 0, 0,
395 NULL, 0, USB_CTRL_SET_TIMEOUT);
396}
397
398static int ath3k_load_patch(struct usb_device *udev)
399{
400 unsigned char fw_state;
401 char filename[ATH3K_NAME_LEN] = {0};
402 const struct firmware *firmware;
Marcel Holtmann72dd2b22014-07-20 17:29:59 +0200403 struct ath3k_version fw_version;
404 __u32 pt_rom_version, pt_build_version;
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530405 int ret;
406
407 ret = ath3k_get_state(udev, &fw_state);
408 if (ret < 0) {
409 BT_ERR("Can't get state to change to load ram patch err");
410 return ret;
411 }
412
413 if (fw_state & ATH3K_PATCH_UPDATE) {
414 BT_DBG("Patch was already downloaded");
415 return 0;
416 }
417
418 ret = ath3k_get_version(udev, &fw_version);
419 if (ret < 0) {
420 BT_ERR("Can't get version to change to load ram patch err");
421 return ret;
422 }
423
424 snprintf(filename, ATH3K_NAME_LEN, "ar3k/AthrBT_0x%08x.dfu",
Marcel Holtmann72dd2b22014-07-20 17:29:59 +0200425 le32_to_cpu(fw_version.rom_version));
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530426
427 ret = request_firmware(&firmware, filename, &udev->dev);
428 if (ret < 0) {
429 BT_ERR("Patch file not found %s", filename);
430 return ret;
431 }
432
Marcel Holtmann72dd2b22014-07-20 17:29:59 +0200433 pt_rom_version = get_unaligned_le32(firmware->data +
434 firmware->size - 8);
435 pt_build_version = get_unaligned_le32(firmware->data +
436 firmware->size - 4);
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530437
Marcel Holtmann72dd2b22014-07-20 17:29:59 +0200438 if (pt_rom_version != le32_to_cpu(fw_version.rom_version) ||
439 pt_build_version <= le32_to_cpu(fw_version.build_version)) {
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530440 BT_ERR("Patch file version did not match with firmware");
441 release_firmware(firmware);
442 return -EINVAL;
443 }
444
445 ret = ath3k_load_fwfile(udev, firmware);
446 release_firmware(firmware);
447
448 return ret;
449}
450
451static int ath3k_load_syscfg(struct usb_device *udev)
452{
453 unsigned char fw_state;
454 char filename[ATH3K_NAME_LEN] = {0};
455 const struct firmware *firmware;
456 struct ath3k_version fw_version;
457 int clk_value, ret;
458
459 ret = ath3k_get_state(udev, &fw_state);
460 if (ret < 0) {
Masanari Iida8a168ca2012-12-29 02:00:09 +0900461 BT_ERR("Can't get state to change to load configuration err");
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530462 return -EBUSY;
463 }
464
465 ret = ath3k_get_version(udev, &fw_version);
466 if (ret < 0) {
467 BT_ERR("Can't get version to change to load ram patch err");
468 return ret;
469 }
470
471 switch (fw_version.ref_clock) {
472
473 case ATH3K_XTAL_FREQ_26M:
474 clk_value = 26;
475 break;
476 case ATH3K_XTAL_FREQ_40M:
477 clk_value = 40;
478 break;
479 case ATH3K_XTAL_FREQ_19P2:
480 clk_value = 19;
481 break;
482 default:
483 clk_value = 0;
484 break;
485 }
486
487 snprintf(filename, ATH3K_NAME_LEN, "ar3k/ramps_0x%08x_%d%s",
Peng Chenb9e25352012-09-06 19:30:43 +0800488 le32_to_cpu(fw_version.rom_version), clk_value, ".dfu");
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530489
490 ret = request_firmware(&firmware, filename, &udev->dev);
491 if (ret < 0) {
492 BT_ERR("Configuration file not found %s", filename);
493 return ret;
494 }
495
496 ret = ath3k_load_fwfile(udev, firmware);
497 release_firmware(firmware);
498
499 return ret;
500}
501
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530502static int ath3k_probe(struct usb_interface *intf,
503 const struct usb_device_id *id)
504{
505 const struct firmware *firmware;
506 struct usb_device *udev = interface_to_usbdev(intf);
Rogério Brito84f0e172011-02-03 01:42:05 -0200507 int ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530508
509 BT_DBG("intf %p id %p", intf, id);
510
511 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
512 return -ENODEV;
513
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530514 /* match device ID in ath3k blacklist table */
515 if (!id->driver_info) {
516 const struct usb_device_id *match;
Bhumika Goyald2ee9c22016-01-12 22:10:15 +0530517
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530518 match = usb_match_id(intf, ath3k_blist_tbl);
519 if (match)
520 id = match;
521 }
522
523 /* load patch and sysconfig files for AR3012 */
524 if (id->driver_info & BTUSB_ATH3012) {
Steven.Li2d25f8b2011-07-01 14:02:36 +0800525
526 /* New firmware with patch and sysconfig files already loaded */
527 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x0001)
528 return -ENODEV;
529
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530530 ret = ath3k_load_patch(udev);
531 if (ret < 0) {
532 BT_ERR("Loading patch file failed");
533 return ret;
534 }
535 ret = ath3k_load_syscfg(udev);
536 if (ret < 0) {
537 BT_ERR("Loading sysconfig file failed");
538 return ret;
539 }
540 ret = ath3k_set_normal_mode(udev);
541 if (ret < 0) {
542 BT_ERR("Set normal mode failed");
543 return ret;
544 }
545 ath3k_switch_pid(udev);
546 return 0;
547 }
548
Paul Fertserc3eae822011-10-29 21:52:49 +0400549 ret = request_firmware(&firmware, ATH3K_FIRMWARE, &udev->dev);
550 if (ret < 0) {
551 if (ret == -ENOENT)
552 BT_ERR("Firmware file \"%s\" not found",
553 ATH3K_FIRMWARE);
554 else
555 BT_ERR("Firmware file \"%s\" request failed (err=%d)",
556 ATH3K_FIRMWARE, ret);
557 return ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530558 }
559
Rogério Brito84f0e172011-02-03 01:42:05 -0200560 ret = ath3k_load_firmware(udev, firmware);
Alexander Holler86e09282010-11-22 21:09:01 +0100561 release_firmware(firmware);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530562
Rogério Brito84f0e172011-02-03 01:42:05 -0200563 return ret;
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530564}
565
566static void ath3k_disconnect(struct usb_interface *intf)
567{
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530568 BT_DBG("ath3k_disconnect intf %p", intf);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530569}
570
571static struct usb_driver ath3k_driver = {
572 .name = "ath3k",
573 .probe = ath3k_probe,
574 .disconnect = ath3k_disconnect,
575 .id_table = ath3k_table,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700576 .disable_hub_initiated_lpm = 1,
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530577};
578
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -0800579module_usb_driver(ath3k_driver);
Vikram Kandukuri9670d802010-01-06 19:04:15 +0530580
581MODULE_AUTHOR("Atheros Communications");
582MODULE_DESCRIPTION("Atheros AR30xx firmware driver");
583MODULE_VERSION(VERSION);
584MODULE_LICENSE("GPL");
Paul Fertserc3eae822011-10-29 21:52:49 +0400585MODULE_FIRMWARE(ATH3K_FIRMWARE);