core.c 60.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright (c) 2005-2011 Atheros Communications Inc.
 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <linux/module.h>
#include <linux/firmware.h>
20
#include <linux/of.h>
21
#include <asm/byteorder.h>
22 23 24 25 26 27 28 29 30

#include "core.h"
#include "mac.h"
#include "htc.h"
#include "hif.h"
#include "wmi.h"
#include "bmi.h"
#include "debug.h"
#include "htt.h"
K
Kalle Valo 已提交
31
#include "testmode.h"
M
Michal Kazior 已提交
32
#include "wmi-ops.h"
33 34

unsigned int ath10k_debug_mask;
35
static unsigned int ath10k_cryptmode_param;
36
static bool uart_print;
37
static bool skip_otp;
B
Bob Copeland 已提交
38
static bool rawmode;
39

40
module_param_named(debug_mask, ath10k_debug_mask, uint, 0644);
41
module_param_named(cryptmode, ath10k_cryptmode_param, uint, 0644);
42
module_param(uart_print, bool, 0644);
43
module_param(skip_otp, bool, 0644);
B
Bob Copeland 已提交
44
module_param(rawmode, bool, 0644);
45

46 47
MODULE_PARM_DESC(debug_mask, "Debugging mask");
MODULE_PARM_DESC(uart_print, "Uart target debugging");
48
MODULE_PARM_DESC(skip_otp, "Skip otp failure for calibration in testmode");
49
MODULE_PARM_DESC(cryptmode, "Crypto mode: 0-hardware, 1-software");
B
Bob Copeland 已提交
50
MODULE_PARM_DESC(rawmode, "Use raw 802.11 frame datapath");
51 52 53 54

static const struct ath10k_hw_params ath10k_hw_params_list[] = {
	{
		.id = QCA988X_HW_2_0_VERSION,
55
		.dev_id = QCA988X_2_0_DEVICE_ID,
56 57
		.name = "qca988x hw2.0",
		.patch_load_addr = QCA988X_HW_2_0_PATCH_LOAD_ADDR,
58
		.uart_pin = 7,
59
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_ALL,
60
		.otp_exe_param = 0,
61
		.channel_counters_freq_hz = 88000,
62
		.max_probe_resp_desc_thres = 0,
63
		.cal_data_len = 2116,
64 65 66
		.fw = {
			.dir = QCA988X_HW_2_0_FW_DIR,
			.board = QCA988X_HW_2_0_BOARD_DATA_FILE,
67 68
			.board_size = QCA988X_BOARD_DATA_SZ,
			.board_ext_size = QCA988X_BOARD_EXT_DATA_SZ,
69
		},
70
		.hw_ops = &qca988x_ops,
71
		.decap_align_bytes = 4,
72
	},
73 74 75 76 77 78
	{
		.id = QCA9887_HW_1_0_VERSION,
		.dev_id = QCA9887_1_0_DEVICE_ID,
		.name = "qca9887 hw1.0",
		.patch_load_addr = QCA9887_HW_1_0_PATCH_LOAD_ADDR,
		.uart_pin = 7,
79
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_ALL,
80 81 82 83 84 85 86 87 88 89
		.otp_exe_param = 0,
		.channel_counters_freq_hz = 88000,
		.max_probe_resp_desc_thres = 0,
		.cal_data_len = 2116,
		.fw = {
			.dir = QCA9887_HW_1_0_FW_DIR,
			.board = QCA9887_HW_1_0_BOARD_DATA_FILE,
			.board_size = QCA9887_BOARD_DATA_SZ,
			.board_ext_size = QCA9887_BOARD_EXT_DATA_SZ,
		},
90
		.hw_ops = &qca988x_ops,
91
		.decap_align_bytes = 4,
92
	},
M
Michal Kazior 已提交
93 94
	{
		.id = QCA6174_HW_2_1_VERSION,
95 96 97 98 99 100 101
		.dev_id = QCA6164_2_1_DEVICE_ID,
		.name = "qca6164 hw2.1",
		.patch_load_addr = QCA6174_HW_2_1_PATCH_LOAD_ADDR,
		.uart_pin = 6,
		.otp_exe_param = 0,
		.channel_counters_freq_hz = 88000,
		.max_probe_resp_desc_thres = 0,
102
		.cal_data_len = 8124,
103 104 105 106 107 108
		.fw = {
			.dir = QCA6174_HW_2_1_FW_DIR,
			.board = QCA6174_HW_2_1_BOARD_DATA_FILE,
			.board_size = QCA6174_BOARD_DATA_SZ,
			.board_ext_size = QCA6174_BOARD_EXT_DATA_SZ,
		},
109
		.hw_ops = &qca988x_ops,
110
		.decap_align_bytes = 4,
111 112 113 114
	},
	{
		.id = QCA6174_HW_2_1_VERSION,
		.dev_id = QCA6174_2_1_DEVICE_ID,
M
Michal Kazior 已提交
115 116 117
		.name = "qca6174 hw2.1",
		.patch_load_addr = QCA6174_HW_2_1_PATCH_LOAD_ADDR,
		.uart_pin = 6,
118
		.otp_exe_param = 0,
119
		.channel_counters_freq_hz = 88000,
120
		.max_probe_resp_desc_thres = 0,
121
		.cal_data_len = 8124,
M
Michal Kazior 已提交
122 123 124 125 126 127
		.fw = {
			.dir = QCA6174_HW_2_1_FW_DIR,
			.board = QCA6174_HW_2_1_BOARD_DATA_FILE,
			.board_size = QCA6174_BOARD_DATA_SZ,
			.board_ext_size = QCA6174_BOARD_EXT_DATA_SZ,
		},
128
		.hw_ops = &qca988x_ops,
129
		.decap_align_bytes = 4,
M
Michal Kazior 已提交
130 131 132
	},
	{
		.id = QCA6174_HW_3_0_VERSION,
133
		.dev_id = QCA6174_2_1_DEVICE_ID,
M
Michal Kazior 已提交
134 135 136
		.name = "qca6174 hw3.0",
		.patch_load_addr = QCA6174_HW_3_0_PATCH_LOAD_ADDR,
		.uart_pin = 6,
137
		.otp_exe_param = 0,
138
		.channel_counters_freq_hz = 88000,
139
		.max_probe_resp_desc_thres = 0,
140
		.cal_data_len = 8124,
M
Michal Kazior 已提交
141 142 143 144 145 146
		.fw = {
			.dir = QCA6174_HW_3_0_FW_DIR,
			.board = QCA6174_HW_3_0_BOARD_DATA_FILE,
			.board_size = QCA6174_BOARD_DATA_SZ,
			.board_ext_size = QCA6174_BOARD_EXT_DATA_SZ,
		},
147
		.hw_ops = &qca988x_ops,
148
		.decap_align_bytes = 4,
M
Michal Kazior 已提交
149
	},
M
Michal Kazior 已提交
150 151
	{
		.id = QCA6174_HW_3_2_VERSION,
152
		.dev_id = QCA6174_2_1_DEVICE_ID,
M
Michal Kazior 已提交
153 154 155
		.name = "qca6174 hw3.2",
		.patch_load_addr = QCA6174_HW_3_0_PATCH_LOAD_ADDR,
		.uart_pin = 6,
156
		.otp_exe_param = 0,
157
		.channel_counters_freq_hz = 88000,
158
		.max_probe_resp_desc_thres = 0,
159
		.cal_data_len = 8124,
M
Michal Kazior 已提交
160 161 162 163 164 165 166
		.fw = {
			/* uses same binaries as hw3.0 */
			.dir = QCA6174_HW_3_0_FW_DIR,
			.board = QCA6174_HW_3_0_BOARD_DATA_FILE,
			.board_size = QCA6174_BOARD_DATA_SZ,
			.board_ext_size = QCA6174_BOARD_EXT_DATA_SZ,
		},
167
		.hw_ops = &qca988x_ops,
168
		.decap_align_bytes = 4,
M
Michal Kazior 已提交
169
	},
170 171
	{
		.id = QCA99X0_HW_2_0_DEV_VERSION,
172
		.dev_id = QCA99X0_2_0_DEVICE_ID,
173 174 175
		.name = "qca99x0 hw2.0",
		.patch_load_addr = QCA99X0_HW_2_0_PATCH_LOAD_ADDR,
		.uart_pin = 7,
176
		.otp_exe_param = 0x00000700,
177
		.continuous_frag_desc = true,
178
		.cck_rate_map_rev2 = true,
179
		.channel_counters_freq_hz = 150000,
180
		.max_probe_resp_desc_thres = 24,
181 182 183
		.tx_chain_mask = 0xf,
		.rx_chain_mask = 0xf,
		.max_spatial_stream = 4,
184
		.cal_data_len = 12064,
185 186 187 188 189 190
		.fw = {
			.dir = QCA99X0_HW_2_0_FW_DIR,
			.board = QCA99X0_HW_2_0_BOARD_DATA_FILE,
			.board_size = QCA99X0_BOARD_DATA_SZ,
			.board_ext_size = QCA99X0_BOARD_EXT_DATA_SZ,
		},
191
		.sw_decrypt_mcast_mgmt = true,
192
		.hw_ops = &qca99x0_ops,
193
		.decap_align_bytes = 1,
194
	},
195 196 197 198 199 200 201 202
	{
		.id = QCA9984_HW_1_0_DEV_VERSION,
		.dev_id = QCA9984_1_0_DEVICE_ID,
		.name = "qca9984/qca9994 hw1.0",
		.patch_load_addr = QCA9984_HW_1_0_PATCH_LOAD_ADDR,
		.uart_pin = 7,
		.otp_exe_param = 0x00000700,
		.continuous_frag_desc = true,
203
		.cck_rate_map_rev2 = true,
204 205 206 207 208 209 210 211 212 213 214 215
		.channel_counters_freq_hz = 150000,
		.max_probe_resp_desc_thres = 24,
		.tx_chain_mask = 0xf,
		.rx_chain_mask = 0xf,
		.max_spatial_stream = 4,
		.cal_data_len = 12064,
		.fw = {
			.dir = QCA9984_HW_1_0_FW_DIR,
			.board = QCA9984_HW_1_0_BOARD_DATA_FILE,
			.board_size = QCA99X0_BOARD_DATA_SZ,
			.board_ext_size = QCA99X0_BOARD_EXT_DATA_SZ,
		},
216
		.sw_decrypt_mcast_mgmt = true,
217
		.hw_ops = &qca99x0_ops,
218
		.decap_align_bytes = 1,
219
	},
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
	{
		.id = QCA9888_HW_2_0_DEV_VERSION,
		.dev_id = QCA9888_2_0_DEVICE_ID,
		.name = "qca9888 hw2.0",
		.patch_load_addr = QCA9888_HW_2_0_PATCH_LOAD_ADDR,
		.uart_pin = 7,
		.otp_exe_param = 0x00000700,
		.continuous_frag_desc = true,
		.channel_counters_freq_hz = 150000,
		.max_probe_resp_desc_thres = 24,
		.tx_chain_mask = 3,
		.rx_chain_mask = 3,
		.max_spatial_stream = 2,
		.cal_data_len = 12064,
		.fw = {
			.dir = QCA9888_HW_2_0_FW_DIR,
			.board = QCA9888_HW_2_0_BOARD_DATA_FILE,
			.board_size = QCA99X0_BOARD_DATA_SZ,
			.board_ext_size = QCA99X0_BOARD_EXT_DATA_SZ,
		},
240
		.sw_decrypt_mcast_mgmt = true,
241
		.hw_ops = &qca99x0_ops,
242
		.decap_align_bytes = 1,
243
	},
244 245 246 247 248 249 250 251 252
	{
		.id = QCA9377_HW_1_0_DEV_VERSION,
		.dev_id = QCA9377_1_0_DEVICE_ID,
		.name = "qca9377 hw1.0",
		.patch_load_addr = QCA9377_HW_1_0_PATCH_LOAD_ADDR,
		.uart_pin = 6,
		.otp_exe_param = 0,
		.channel_counters_freq_hz = 88000,
		.max_probe_resp_desc_thres = 0,
253
		.cal_data_len = 8124,
254 255 256 257 258 259
		.fw = {
			.dir = QCA9377_HW_1_0_FW_DIR,
			.board = QCA9377_HW_1_0_BOARD_DATA_FILE,
			.board_size = QCA9377_BOARD_DATA_SZ,
			.board_ext_size = QCA9377_BOARD_EXT_DATA_SZ,
		},
260
		.hw_ops = &qca988x_ops,
261
		.decap_align_bytes = 4,
262
	},
263
	{
264
		.id = QCA9377_HW_1_1_DEV_VERSION,
265
		.dev_id = QCA9377_1_0_DEVICE_ID,
266
		.name = "qca9377 hw1.1",
267
		.patch_load_addr = QCA9377_HW_1_0_PATCH_LOAD_ADDR,
268
		.uart_pin = 6,
269
		.otp_exe_param = 0,
270 271
		.channel_counters_freq_hz = 88000,
		.max_probe_resp_desc_thres = 0,
272
		.cal_data_len = 8124,
273 274 275 276 277 278
		.fw = {
			.dir = QCA9377_HW_1_0_FW_DIR,
			.board = QCA9377_HW_1_0_BOARD_DATA_FILE,
			.board_size = QCA9377_BOARD_DATA_SZ,
			.board_ext_size = QCA9377_BOARD_EXT_DATA_SZ,
		},
279
		.hw_ops = &qca988x_ops,
280
		.decap_align_bytes = 4,
281
	},
R
Raja Mani 已提交
282 283 284 285 286 287
	{
		.id = QCA4019_HW_1_0_DEV_VERSION,
		.dev_id = 0,
		.name = "qca4019 hw1.0",
		.patch_load_addr = QCA4019_HW_1_0_PATCH_LOAD_ADDR,
		.uart_pin = 7,
288
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_EACH,
R
Raja Mani 已提交
289 290
		.otp_exe_param = 0x0010000,
		.continuous_frag_desc = true,
291
		.cck_rate_map_rev2 = true,
R
Raja Mani 已提交
292 293
		.channel_counters_freq_hz = 125000,
		.max_probe_resp_desc_thres = 24,
294 295 296
		.tx_chain_mask = 0x3,
		.rx_chain_mask = 0x3,
		.max_spatial_stream = 2,
297
		.cal_data_len = 12064,
R
Raja Mani 已提交
298 299 300 301 302 303
		.fw = {
			.dir = QCA4019_HW_1_0_FW_DIR,
			.board = QCA4019_HW_1_0_BOARD_DATA_FILE,
			.board_size = QCA4019_BOARD_DATA_SZ,
			.board_ext_size = QCA4019_BOARD_EXT_DATA_SZ,
		},
304
		.sw_decrypt_mcast_mgmt = true,
305
		.hw_ops = &qca99x0_ops,
306
		.decap_align_bytes = 1,
R
Raja Mani 已提交
307
	},
308 309
};

310 311 312 313 314 315 316 317 318 319 320
static const char *const ath10k_core_fw_feature_str[] = {
	[ATH10K_FW_FEATURE_EXT_WMI_MGMT_RX] = "wmi-mgmt-rx",
	[ATH10K_FW_FEATURE_WMI_10X] = "wmi-10.x",
	[ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX] = "has-wmi-mgmt-tx",
	[ATH10K_FW_FEATURE_NO_P2P] = "no-p2p",
	[ATH10K_FW_FEATURE_WMI_10_2] = "wmi-10.2",
	[ATH10K_FW_FEATURE_MULTI_VIF_PS_SUPPORT] = "multi-vif-ps",
	[ATH10K_FW_FEATURE_WOWLAN_SUPPORT] = "wowlan",
	[ATH10K_FW_FEATURE_IGNORE_OTP_RESULT] = "ignore-otp",
	[ATH10K_FW_FEATURE_NO_NWIFI_DECAP_4ADDR_PADDING] = "no-4addr-pad",
	[ATH10K_FW_FEATURE_SUPPORTS_SKIP_CLOCK_INIT] = "skip-clock-init",
321
	[ATH10K_FW_FEATURE_RAW_MODE_SUPPORT] = "raw-mode",
M
Maharaja 已提交
322
	[ATH10K_FW_FEATURE_SUPPORTS_ADAPTIVE_CCA] = "adaptive-cca",
323
	[ATH10K_FW_FEATURE_MFP_SUPPORT] = "mfp",
324
	[ATH10K_FW_FEATURE_PEER_FLOW_CONTROL] = "peer-flow-ctrl",
325
	[ATH10K_FW_FEATURE_BTCOEX_PARAM] = "btcoex-param",
326
	[ATH10K_FW_FEATURE_SKIP_NULL_FUNC_WAR] = "skip-null-func-war",
327 328 329 330 331 332
};

static unsigned int ath10k_core_get_fw_feature_str(char *buf,
						   size_t buf_len,
						   enum ath10k_fw_features feat)
{
333 334 335 336
	/* make sure that ath10k_core_fw_feature_str[] gets updated */
	BUILD_BUG_ON(ARRAY_SIZE(ath10k_core_fw_feature_str) !=
		     ATH10K_FW_FEATURE_COUNT);

337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
	if (feat >= ARRAY_SIZE(ath10k_core_fw_feature_str) ||
	    WARN_ON(!ath10k_core_fw_feature_str[feat])) {
		return scnprintf(buf, buf_len, "bit%d", feat);
	}

	return scnprintf(buf, buf_len, "%s", ath10k_core_fw_feature_str[feat]);
}

void ath10k_core_get_fw_features_str(struct ath10k *ar,
				     char *buf,
				     size_t buf_len)
{
	unsigned int len = 0;
	int i;

	for (i = 0; i < ATH10K_FW_FEATURE_COUNT; i++) {
353
		if (test_bit(i, ar->normal_mode_fw.fw_file.fw_features)) {
354 355 356 357 358 359 360 361 362 363
			if (len > 0)
				len += scnprintf(buf + len, buf_len - len, ",");

			len += ath10k_core_get_fw_feature_str(buf + len,
							      buf_len - len,
							      i);
		}
	}
}

364 365
static void ath10k_send_suspend_complete(struct ath10k *ar)
{
366
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot suspend complete\n");
367

368
	complete(&ar->target_suspend);
369 370 371 372 373 374 375 376 377 378 379
}

static int ath10k_init_configure_target(struct ath10k *ar)
{
	u32 param_host;
	int ret;

	/* tell target which HTC version it is used*/
	ret = ath10k_bmi_write32(ar, hi_app_host_interest,
				 HTC_PROTOCOL_VERSION);
	if (ret) {
380
		ath10k_err(ar, "settings HTC version failed\n");
381 382 383 384 385 386
		return ret;
	}

	/* set the firmware mode to STA/IBSS/AP */
	ret = ath10k_bmi_read32(ar, hi_option_flag, &param_host);
	if (ret) {
387
		ath10k_err(ar, "setting firmware mode (1/2) failed\n");
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
		return ret;
	}

	/* TODO following parameters need to be re-visited. */
	/* num_device */
	param_host |= (1 << HI_OPTION_NUM_DEV_SHIFT);
	/* Firmware mode */
	/* FIXME: Why FW_MODE_AP ??.*/
	param_host |= (HI_OPTION_FW_MODE_AP << HI_OPTION_FW_MODE_SHIFT);
	/* mac_addr_method */
	param_host |= (1 << HI_OPTION_MAC_ADDR_METHOD_SHIFT);
	/* firmware_bridge */
	param_host |= (0 << HI_OPTION_FW_BRIDGE_SHIFT);
	/* fwsubmode */
	param_host |= (0 << HI_OPTION_FW_SUBMODE_SHIFT);

	ret = ath10k_bmi_write32(ar, hi_option_flag, param_host);
	if (ret) {
406
		ath10k_err(ar, "setting firmware mode (2/2) failed\n");
407 408 409 410 411 412
		return ret;
	}

	/* We do all byte-swapping on the host */
	ret = ath10k_bmi_write32(ar, hi_be, 0);
	if (ret) {
413
		ath10k_err(ar, "setting host CPU BE mode failed\n");
414 415 416 417 418 419 420
		return ret;
	}

	/* FW descriptor/Data swap flags */
	ret = ath10k_bmi_write32(ar, hi_fw_swap, 0);

	if (ret) {
421
		ath10k_err(ar, "setting FW data/desc swap flags failed\n");
422 423 424
		return ret;
	}

M
Michal Kazior 已提交
425 426 427 428 429 430 431 432 433 434 435
	/* Some devices have a special sanity check that verifies the PCI
	 * Device ID is written to this host interest var. It is known to be
	 * required to boot QCA6164.
	 */
	ret = ath10k_bmi_write32(ar, hi_hci_uart_pwr_mgmt_params_ext,
				 ar->dev_id);
	if (ret) {
		ath10k_err(ar, "failed to set pwr_mgmt_params: %d\n", ret);
		return ret;
	}

436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
	return 0;
}

static const struct firmware *ath10k_fetch_fw_file(struct ath10k *ar,
						   const char *dir,
						   const char *file)
{
	char filename[100];
	const struct firmware *fw;
	int ret;

	if (file == NULL)
		return ERR_PTR(-ENOENT);

	if (dir == NULL)
		dir = ".";

	snprintf(filename, sizeof(filename), "%s/%s", dir, file);
	ret = request_firmware(&fw, filename, ar->dev);
	if (ret)
		return ERR_PTR(ret);

	return fw;
}

461 462
static int ath10k_push_board_ext_data(struct ath10k *ar, const void *data,
				      size_t data_len)
463
{
464 465
	u32 board_data_size = ar->hw_params.fw.board_size;
	u32 board_ext_data_size = ar->hw_params.fw.board_ext_size;
466 467 468 469 470
	u32 board_ext_data_addr;
	int ret;

	ret = ath10k_bmi_read32(ar, hi_board_ext_data, &board_ext_data_addr);
	if (ret) {
471 472
		ath10k_err(ar, "could not read board ext data addr (%d)\n",
			   ret);
473 474 475
		return ret;
	}

476
	ath10k_dbg(ar, ATH10K_DBG_BOOT,
477
		   "boot push board extended data addr 0x%x\n",
478 479 480 481 482
		   board_ext_data_addr);

	if (board_ext_data_addr == 0)
		return 0;

483
	if (data_len != (board_data_size + board_ext_data_size)) {
484
		ath10k_err(ar, "invalid board (ext) data sizes %zu != %d+%d\n",
485
			   data_len, board_data_size, board_ext_data_size);
486 487 488 489
		return -EINVAL;
	}

	ret = ath10k_bmi_write_memory(ar, board_ext_data_addr,
490
				      data + board_data_size,
491 492
				      board_ext_data_size);
	if (ret) {
493
		ath10k_err(ar, "could not write board ext data (%d)\n", ret);
494 495 496 497 498 499
		return ret;
	}

	ret = ath10k_bmi_write32(ar, hi_board_ext_data_config,
				 (board_ext_data_size << 16) | 1);
	if (ret) {
500 501
		ath10k_err(ar, "could not write board ext data bit (%d)\n",
			   ret);
502 503 504 505 506 507
		return ret;
	}

	return 0;
}

508 509
static int ath10k_download_board_data(struct ath10k *ar, const void *data,
				      size_t data_len)
510
{
511
	u32 board_data_size = ar->hw_params.fw.board_size;
512 513 514
	u32 address;
	int ret;

515
	ret = ath10k_push_board_ext_data(ar, data, data_len);
516
	if (ret) {
517
		ath10k_err(ar, "could not push board ext data (%d)\n", ret);
518 519 520 521 522
		goto exit;
	}

	ret = ath10k_bmi_read32(ar, hi_board_data, &address);
	if (ret) {
523
		ath10k_err(ar, "could not read board data addr (%d)\n", ret);
524 525 526
		goto exit;
	}

527
	ret = ath10k_bmi_write_memory(ar, address, data,
528
				      min_t(u32, board_data_size,
529
					    data_len));
530
	if (ret) {
531
		ath10k_err(ar, "could not write board data (%d)\n", ret);
532 533 534 535 536
		goto exit;
	}

	ret = ath10k_bmi_write32(ar, hi_board_data_initialized, 1);
	if (ret) {
537
		ath10k_err(ar, "could not write board data bit (%d)\n", ret);
538 539 540 541 542 543 544
		goto exit;
	}

exit:
	return ret;
}

545 546
static int ath10k_download_cal_file(struct ath10k *ar,
				    const struct firmware *file)
547 548 549
{
	int ret;

550
	if (!file)
551 552
		return -ENOENT;

553 554
	if (IS_ERR(file))
		return PTR_ERR(file);
555

556
	ret = ath10k_download_board_data(ar, file->data, file->size);
557 558 559 560 561 562 563 564 565 566
	if (ret) {
		ath10k_err(ar, "failed to download cal_file data: %d\n", ret);
		return ret;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot cal file downloaded\n");

	return 0;
}

567
static int ath10k_download_cal_dt(struct ath10k *ar, const char *dt_name)
568 569 570 571 572 573 574 575 576 577 578 579 580
{
	struct device_node *node;
	int data_len;
	void *data;
	int ret;

	node = ar->dev->of_node;
	if (!node)
		/* Device Tree is optional, don't print any warnings if
		 * there's no node for ath10k.
		 */
		return -ENOENT;

581
	if (!of_get_property(node, dt_name, &data_len)) {
582 583 584 585
		/* The calibration data node is optional */
		return -ENOENT;
	}

586
	if (data_len != ar->hw_params.cal_data_len) {
587 588 589 590 591 592 593 594 595 596 597 598
		ath10k_warn(ar, "invalid calibration data length in DT: %d\n",
			    data_len);
		ret = -EMSGSIZE;
		goto out;
	}

	data = kmalloc(data_len, GFP_KERNEL);
	if (!data) {
		ret = -ENOMEM;
		goto out;
	}

599
	ret = of_property_read_u8_array(node, dt_name, data, data_len);
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
	if (ret) {
		ath10k_warn(ar, "failed to read calibration data from DT: %d\n",
			    ret);
		goto out_free;
	}

	ret = ath10k_download_board_data(ar, data, data_len);
	if (ret) {
		ath10k_warn(ar, "failed to download calibration data from Device Tree: %d\n",
			    ret);
		goto out_free;
	}

	ret = 0;

out_free:
	kfree(data);

out:
	return ret;
}

622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
static int ath10k_download_cal_eeprom(struct ath10k *ar)
{
	size_t data_len;
	void *data = NULL;
	int ret;

	ret = ath10k_hif_fetch_cal_eeprom(ar, &data, &data_len);
	if (ret) {
		if (ret != -EOPNOTSUPP)
			ath10k_warn(ar, "failed to read calibration data from EEPROM: %d\n",
				    ret);
		goto out_free;
	}

	ret = ath10k_download_board_data(ar, data, data_len);
	if (ret) {
		ath10k_warn(ar, "failed to download calibration data from EEPROM: %d\n",
			    ret);
		goto out_free;
	}

	ret = 0;

out_free:
	kfree(data);

	return ret;
}

651 652 653 654 655 656 657 658
static int ath10k_core_get_board_id_from_otp(struct ath10k *ar)
{
	u32 result, address;
	u8 board_id, chip_id;
	int ret;

	address = ar->hw_params.patch_load_addr;

659 660
	if (!ar->normal_mode_fw.fw_file.otp_data ||
	    !ar->normal_mode_fw.fw_file.otp_len) {
661 662 663 664 665 666 667
		ath10k_warn(ar,
			    "failed to retrieve board id because of invalid otp\n");
		return -ENODATA;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
		   "boot upload otp to 0x%x len %zd for board id\n",
668
		   address, ar->normal_mode_fw.fw_file.otp_len);
669

670 671 672
	ret = ath10k_bmi_fast_download(ar, address,
				       ar->normal_mode_fw.fw_file.otp_data,
				       ar->normal_mode_fw.fw_file.otp_len);
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
	if (ret) {
		ath10k_err(ar, "could not write otp for board id check: %d\n",
			   ret);
		return ret;
	}

	ret = ath10k_bmi_execute(ar, address, BMI_PARAM_GET_EEPROM_BOARD_ID,
				 &result);
	if (ret) {
		ath10k_err(ar, "could not execute otp for board id check: %d\n",
			   ret);
		return ret;
	}

	board_id = MS(result, ATH10K_BMI_BOARD_ID_FROM_OTP);
	chip_id = MS(result, ATH10K_BMI_CHIP_ID_FROM_OTP);

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
		   "boot get otp board id result 0x%08x board_id %d chip_id %d\n",
		   result, board_id, chip_id);

	if ((result & ATH10K_BMI_BOARD_ID_STATUS_MASK) != 0)
		return -EOPNOTSUPP;

	ar->id.bmi_ids_valid = true;
	ar->id.bmi_board_id = board_id;
	ar->id.bmi_chip_id = chip_id;

	return 0;
}

704 705
static int ath10k_download_and_run_otp(struct ath10k *ar)
{
706
	u32 result, address = ar->hw_params.patch_load_addr;
707
	u32 bmi_otp_exe_param = ar->hw_params.otp_exe_param;
708 709
	int ret;

710 711 712
	ret = ath10k_download_board_data(ar,
					 ar->running_fw->board_data,
					 ar->running_fw->board_len);
713 714 715 716 717
	if (ret) {
		ath10k_err(ar, "failed to download board data: %d\n", ret);
		return ret;
	}

718 719
	/* OTP is optional */

720 721
	if (!ar->running_fw->fw_file.otp_data ||
	    !ar->running_fw->fw_file.otp_len) {
722
		ath10k_warn(ar, "Not running otp, calibration will be incorrect (otp-data %pK otp_len %zd)!\n",
723 724
			    ar->running_fw->fw_file.otp_data,
			    ar->running_fw->fw_file.otp_len);
725
		return 0;
K
Kalle Valo 已提交
726 727
	}

728
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot upload otp to 0x%x len %zd\n",
729
		   address, ar->running_fw->fw_file.otp_len);
730

731 732 733
	ret = ath10k_bmi_fast_download(ar, address,
				       ar->running_fw->fw_file.otp_data,
				       ar->running_fw->fw_file.otp_len);
734
	if (ret) {
735
		ath10k_err(ar, "could not write otp (%d)\n", ret);
K
Kalle Valo 已提交
736
		return ret;
737 738
	}

739
	ret = ath10k_bmi_execute(ar, address, bmi_otp_exe_param, &result);
740
	if (ret) {
741
		ath10k_err(ar, "could not execute otp (%d)\n", ret);
K
Kalle Valo 已提交
742
		return ret;
743 744
	}

745
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot otp execute result %d\n", result);
K
Kalle Valo 已提交
746

747
	if (!(skip_otp || test_bit(ATH10K_FW_FEATURE_IGNORE_OTP_RESULT,
748
				   ar->running_fw->fw_file.fw_features)) &&
749
	    result != 0) {
750
		ath10k_err(ar, "otp calibration failed: %d", result);
K
Kalle Valo 已提交
751 752 753 754
		return -EINVAL;
	}

	return 0;
755 756
}

757
static int ath10k_download_fw(struct ath10k *ar)
758
{
K
Kalle Valo 已提交
759 760
	u32 address, data_len;
	const void *data;
761 762 763 764
	int ret;

	address = ar->hw_params.patch_load_addr;

765 766 767
	data = ar->running_fw->fw_file.firmware_data;
	data_len = ar->running_fw->fw_file.firmware_len;

768
	ret = ath10k_swap_code_seg_configure(ar, &ar->running_fw->fw_file);
769 770 771 772
	if (ret) {
		ath10k_err(ar, "failed to configure fw code swap: %d\n",
			   ret);
		return ret;
K
Kalle Valo 已提交
773 774 775
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
776
		   "boot uploading firmware image %pK len %d\n",
777
		   data, data_len);
K
Kalle Valo 已提交
778 779

	ret = ath10k_bmi_fast_download(ar, address, data, data_len);
780
	if (ret) {
781 782
		ath10k_err(ar, "failed to download firmware: %d\n",
			   ret);
K
Kalle Valo 已提交
783
		return ret;
784 785
	}

786 787 788
	return ret;
}

789
static void ath10k_core_free_board_files(struct ath10k *ar)
790
{
791 792
	if (!IS_ERR(ar->normal_mode_fw.board))
		release_firmware(ar->normal_mode_fw.board);
793

794 795 796
	ar->normal_mode_fw.board = NULL;
	ar->normal_mode_fw.board_data = NULL;
	ar->normal_mode_fw.board_len = 0;
797 798 799 800
}

static void ath10k_core_free_firmware_files(struct ath10k *ar)
{
801 802
	if (!IS_ERR(ar->normal_mode_fw.fw_file.firmware))
		release_firmware(ar->normal_mode_fw.fw_file.firmware);
803

804
	if (!IS_ERR(ar->cal_file))
805 806
		release_firmware(ar->cal_file);

807 808 809
	if (!IS_ERR(ar->pre_cal_file))
		release_firmware(ar->pre_cal_file);

810
	ath10k_swap_code_seg_release(ar, &ar->normal_mode_fw.fw_file);
811

812 813
	ar->normal_mode_fw.fw_file.otp_data = NULL;
	ar->normal_mode_fw.fw_file.otp_len = 0;
814

815 816 817
	ar->normal_mode_fw.fw_file.firmware = NULL;
	ar->normal_mode_fw.fw_file.firmware_data = NULL;
	ar->normal_mode_fw.fw_file.firmware_len = 0;
818 819

	ar->cal_file = NULL;
820
	ar->pre_cal_file = NULL;
821 822 823 824 825 826
}

static int ath10k_fetch_cal_file(struct ath10k *ar)
{
	char filename[100];

827 828 829 830 831 832 833 834
	/* pre-cal-<bus>-<id>.bin */
	scnprintf(filename, sizeof(filename), "pre-cal-%s-%s.bin",
		  ath10k_bus_str(ar->hif.bus), dev_name(ar->dev));

	ar->pre_cal_file = ath10k_fetch_fw_file(ar, ATH10K_FW_DIR, filename);
	if (!IS_ERR(ar->pre_cal_file))
		goto success;

835 836 837 838 839 840 841 842
	/* cal-<bus>-<id>.bin */
	scnprintf(filename, sizeof(filename), "cal-%s-%s.bin",
		  ath10k_bus_str(ar->hif.bus), dev_name(ar->dev));

	ar->cal_file = ath10k_fetch_fw_file(ar, ATH10K_FW_DIR, filename);
	if (IS_ERR(ar->cal_file))
		/* calibration file is optional, don't print any warnings */
		return PTR_ERR(ar->cal_file);
843
success:
844 845 846 847
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "found calibration file %s/%s\n",
		   ATH10K_FW_DIR, filename);

	return 0;
848 849
}

850
static int ath10k_core_fetch_board_data_api_1(struct ath10k *ar)
851
{
852 853 854 855
	if (!ar->hw_params.fw.board) {
		ath10k_err(ar, "failed to find board file fw entry\n");
		return -EINVAL;
	}
856

857 858 859 860 861
	ar->normal_mode_fw.board = ath10k_fetch_fw_file(ar,
							ar->hw_params.fw.dir,
							ar->hw_params.fw.board);
	if (IS_ERR(ar->normal_mode_fw.board))
		return PTR_ERR(ar->normal_mode_fw.board);
862

863 864
	ar->normal_mode_fw.board_data = ar->normal_mode_fw.board->data;
	ar->normal_mode_fw.board_len = ar->normal_mode_fw.board->size;
865

866 867 868
	return 0;
}

869 870 871
static int ath10k_core_parse_bd_ie_board(struct ath10k *ar,
					 const void *buf, size_t buf_len,
					 const char *boardname)
872
{
873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
	const struct ath10k_fw_ie *hdr;
	bool name_match_found;
	int ret, board_ie_id;
	size_t board_ie_len;
	const void *board_ie_data;

	name_match_found = false;

	/* go through ATH10K_BD_IE_BOARD_ elements */
	while (buf_len > sizeof(struct ath10k_fw_ie)) {
		hdr = buf;
		board_ie_id = le32_to_cpu(hdr->id);
		board_ie_len = le32_to_cpu(hdr->len);
		board_ie_data = hdr->data;

		buf_len -= sizeof(*hdr);
		buf += sizeof(*hdr);

		if (buf_len < ALIGN(board_ie_len, 4)) {
			ath10k_err(ar, "invalid ATH10K_BD_IE_BOARD length: %zu < %zu\n",
				   buf_len, ALIGN(board_ie_len, 4));
			ret = -EINVAL;
			goto out;
		}

		switch (board_ie_id) {
		case ATH10K_BD_IE_BOARD_NAME:
			ath10k_dbg_dump(ar, ATH10K_DBG_BOOT, "board name", "",
					board_ie_data, board_ie_len);

			if (board_ie_len != strlen(boardname))
				break;

			ret = memcmp(board_ie_data, boardname, strlen(boardname));
			if (ret)
				break;

			name_match_found = true;
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
				   "boot found match for name '%s'",
				   boardname);
			break;
		case ATH10K_BD_IE_BOARD_DATA:
			if (!name_match_found)
				/* no match found */
				break;

			ath10k_dbg(ar, ATH10K_DBG_BOOT,
				   "boot found board data for '%s'",
				   boardname);

924 925
			ar->normal_mode_fw.board_data = board_ie_data;
			ar->normal_mode_fw.board_len = board_ie_len;
926 927 928 929 930 931 932 933 934 935 936 937 938 939

			ret = 0;
			goto out;
		default:
			ath10k_warn(ar, "unknown ATH10K_BD_IE_BOARD found: %d\n",
				    board_ie_id);
			break;
		}

		/* jump over the padding */
		board_ie_len = ALIGN(board_ie_len, 4);

		buf_len -= board_ie_len;
		buf += board_ie_len;
940 941
	}

942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957
	/* no match found */
	ret = -ENOENT;

out:
	return ret;
}

static int ath10k_core_fetch_board_data_api_n(struct ath10k *ar,
					      const char *boardname,
					      const char *filename)
{
	size_t len, magic_len, ie_len;
	struct ath10k_fw_ie *hdr;
	const u8 *data;
	int ret, ie_id;

958 959 960 961 962
	ar->normal_mode_fw.board = ath10k_fetch_fw_file(ar,
							ar->hw_params.fw.dir,
							filename);
	if (IS_ERR(ar->normal_mode_fw.board))
		return PTR_ERR(ar->normal_mode_fw.board);
963

964 965
	data = ar->normal_mode_fw.board->data;
	len = ar->normal_mode_fw.board->size;
966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031

	/* magic has extra null byte padded */
	magic_len = strlen(ATH10K_BOARD_MAGIC) + 1;
	if (len < magic_len) {
		ath10k_err(ar, "failed to find magic value in %s/%s, file too short: %zu\n",
			   ar->hw_params.fw.dir, filename, len);
		ret = -EINVAL;
		goto err;
	}

	if (memcmp(data, ATH10K_BOARD_MAGIC, magic_len)) {
		ath10k_err(ar, "found invalid board magic\n");
		ret = -EINVAL;
		goto err;
	}

	/* magic is padded to 4 bytes */
	magic_len = ALIGN(magic_len, 4);
	if (len < magic_len) {
		ath10k_err(ar, "failed: %s/%s too small to contain board data, len: %zu\n",
			   ar->hw_params.fw.dir, filename, len);
		ret = -EINVAL;
		goto err;
	}

	data += magic_len;
	len -= magic_len;

	while (len > sizeof(struct ath10k_fw_ie)) {
		hdr = (struct ath10k_fw_ie *)data;
		ie_id = le32_to_cpu(hdr->id);
		ie_len = le32_to_cpu(hdr->len);

		len -= sizeof(*hdr);
		data = hdr->data;

		if (len < ALIGN(ie_len, 4)) {
			ath10k_err(ar, "invalid length for board ie_id %d ie_len %zu len %zu\n",
				   ie_id, ie_len, len);
			ret = -EINVAL;
			goto err;
		}

		switch (ie_id) {
		case ATH10K_BD_IE_BOARD:
			ret = ath10k_core_parse_bd_ie_board(ar, data, ie_len,
							    boardname);
			if (ret == -ENOENT)
				/* no match found, continue */
				break;
			else if (ret)
				/* there was an error, bail out */
				goto err;

			/* board data found */
			goto out;
		}

		/* jump over the padding */
		ie_len = ALIGN(ie_len, 4);

		len -= ie_len;
		data += ie_len;
	}

out:
1032
	if (!ar->normal_mode_fw.board_data || !ar->normal_mode_fw.board_len) {
1033 1034
		ath10k_err(ar,
			   "failed to fetch board data for %s from %s/%s\n",
1035
			   boardname, ar->hw_params.fw.dir, filename);
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
		ret = -ENODATA;
		goto err;
	}

	return 0;

err:
	ath10k_core_free_board_files(ar);
	return ret;
}

static int ath10k_core_create_board_name(struct ath10k *ar, char *name,
					 size_t name_len)
{
1050 1051 1052 1053 1054 1055 1056 1057 1058
	if (ar->id.bmi_ids_valid) {
		scnprintf(name, name_len,
			  "bus=%s,bmi-chip-id=%d,bmi-board-id=%d",
			  ath10k_bus_str(ar->hif.bus),
			  ar->id.bmi_chip_id,
			  ar->id.bmi_board_id);
		goto out;
	}

1059 1060 1061 1062 1063 1064
	scnprintf(name, name_len,
		  "bus=%s,vendor=%04x,device=%04x,subsystem-vendor=%04x,subsystem-device=%04x",
		  ath10k_bus_str(ar->hif.bus),
		  ar->id.vendor, ar->id.device,
		  ar->id.subsystem_vendor, ar->id.subsystem_device);

1065
out:
1066
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot using board name '%s'\n", name);
1067 1068 1069 1070 1071 1072

	return 0;
}

static int ath10k_core_fetch_board_file(struct ath10k *ar)
{
1073
	char boardname[100];
1074 1075
	int ret;

1076 1077 1078 1079
	ret = ath10k_core_create_board_name(ar, boardname, sizeof(boardname));
	if (ret) {
		ath10k_err(ar, "failed to create board name: %d", ret);
		return ret;
1080 1081
	}

1082 1083 1084 1085 1086 1087 1088 1089
	ar->bd_api = 2;
	ret = ath10k_core_fetch_board_data_api_n(ar, boardname,
						 ATH10K_BOARD_API2_FILE);
	if (!ret)
		goto success;

	ar->bd_api = 1;
	ret = ath10k_core_fetch_board_data_api_1(ar);
1090
	if (ret) {
1091
		ath10k_err(ar, "failed to fetch board data\n");
1092 1093
		return ret;
	}
1094

1095 1096
success:
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "using board api %d\n", ar->bd_api);
1097 1098 1099
	return 0;
}

1100 1101
int ath10k_core_fetch_firmware_api_n(struct ath10k *ar, const char *name,
				     struct ath10k_fw_file *fw_file)
1102 1103 1104 1105 1106
{
	size_t magic_len, len, ie_len;
	int ie_id, i, index, bit, ret;
	struct ath10k_fw_ie *hdr;
	const u8 *data;
1107
	__le32 *timestamp, *version;
1108 1109

	/* first fetch the firmware file (firmware-*.bin) */
1110 1111 1112
	fw_file->firmware = ath10k_fetch_fw_file(ar, ar->hw_params.fw.dir,
						 name);
	if (IS_ERR(fw_file->firmware)) {
1113
		ath10k_err(ar, "could not fetch firmware file '%s/%s': %ld\n",
1114 1115 1116
			   ar->hw_params.fw.dir, name,
			   PTR_ERR(fw_file->firmware));
		return PTR_ERR(fw_file->firmware);
1117 1118
	}

1119 1120
	data = fw_file->firmware->data;
	len = fw_file->firmware->size;
1121 1122 1123 1124 1125

	/* magic also includes the null byte, check that as well */
	magic_len = strlen(ATH10K_FIRMWARE_MAGIC) + 1;

	if (len < magic_len) {
1126
		ath10k_err(ar, "firmware file '%s/%s' too small to contain magic: %zu\n",
1127
			   ar->hw_params.fw.dir, name, len);
1128 1129
		ret = -EINVAL;
		goto err;
1130 1131 1132
	}

	if (memcmp(data, ATH10K_FIRMWARE_MAGIC, magic_len) != 0) {
1133
		ath10k_err(ar, "invalid firmware magic\n");
1134 1135
		ret = -EINVAL;
		goto err;
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
	}

	/* jump over the padding */
	magic_len = ALIGN(magic_len, 4);

	len -= magic_len;
	data += magic_len;

	/* loop elements */
	while (len > sizeof(struct ath10k_fw_ie)) {
		hdr = (struct ath10k_fw_ie *)data;

		ie_id = le32_to_cpu(hdr->id);
		ie_len = le32_to_cpu(hdr->len);

		len -= sizeof(*hdr);
		data += sizeof(*hdr);

		if (len < ie_len) {
1155
			ath10k_err(ar, "invalid length for FW IE %d (%zu < %zu)\n",
1156
				   ie_id, len, ie_len);
1157 1158
			ret = -EINVAL;
			goto err;
1159 1160 1161 1162
		}

		switch (ie_id) {
		case ATH10K_FW_IE_FW_VERSION:
1163
			if (ie_len > sizeof(fw_file->fw_version) - 1)
1164 1165
				break;

1166 1167
			memcpy(fw_file->fw_version, data, ie_len);
			fw_file->fw_version[ie_len] = '\0';
1168

1169
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
1170
				   "found fw version %s\n",
1171
				    fw_file->fw_version);
1172 1173 1174 1175 1176 1177 1178
			break;
		case ATH10K_FW_IE_TIMESTAMP:
			if (ie_len != sizeof(u32))
				break;

			timestamp = (__le32 *)data;

1179
			ath10k_dbg(ar, ATH10K_DBG_BOOT, "found fw timestamp %d\n",
1180 1181 1182
				   le32_to_cpup(timestamp));
			break;
		case ATH10K_FW_IE_FEATURES:
1183
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
				   "found firmware features ie (%zd B)\n",
				   ie_len);

			for (i = 0; i < ATH10K_FW_FEATURE_COUNT; i++) {
				index = i / 8;
				bit = i % 8;

				if (index == ie_len)
					break;

1194
				if (data[index] & (1 << bit)) {
1195
					ath10k_dbg(ar, ATH10K_DBG_BOOT,
1196 1197
						   "Enabling feature bit: %i\n",
						   i);
1198
					__set_bit(i, fw_file->fw_features);
1199
				}
1200 1201
			}

1202
			ath10k_dbg_dump(ar, ATH10K_DBG_BOOT, "features", "",
1203
					fw_file->fw_features,
1204
					sizeof(fw_file->fw_features));
1205 1206
			break;
		case ATH10K_FW_IE_FW_IMAGE:
1207
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
1208 1209 1210
				   "found fw image ie (%zd B)\n",
				   ie_len);

1211 1212
			fw_file->firmware_data = data;
			fw_file->firmware_len = ie_len;
1213 1214 1215

			break;
		case ATH10K_FW_IE_OTP_IMAGE:
1216
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
1217 1218 1219
				   "found otp image ie (%zd B)\n",
				   ie_len);

1220 1221
			fw_file->otp_data = data;
			fw_file->otp_len = ie_len;
1222 1223

			break;
1224 1225 1226 1227 1228 1229
		case ATH10K_FW_IE_WMI_OP_VERSION:
			if (ie_len != sizeof(u32))
				break;

			version = (__le32 *)data;

1230
			fw_file->wmi_op_version = le32_to_cpup(version);
1231 1232

			ath10k_dbg(ar, ATH10K_DBG_BOOT, "found fw ie wmi op version %d\n",
1233
				   fw_file->wmi_op_version);
1234
			break;
1235 1236 1237 1238 1239 1240
		case ATH10K_FW_IE_HTT_OP_VERSION:
			if (ie_len != sizeof(u32))
				break;

			version = (__le32 *)data;

1241
			fw_file->htt_op_version = le32_to_cpup(version);
1242 1243

			ath10k_dbg(ar, ATH10K_DBG_BOOT, "found fw ie htt op version %d\n",
1244
				   fw_file->htt_op_version);
1245
			break;
1246 1247 1248 1249
		case ATH10K_FW_IE_FW_CODE_SWAP_IMAGE:
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
				   "found fw code swap image ie (%zd B)\n",
				   ie_len);
1250 1251
			fw_file->codeswap_data = data;
			fw_file->codeswap_len = ie_len;
1252
			break;
1253
		default:
1254
			ath10k_warn(ar, "Unknown FW IE: %u\n",
1255 1256 1257 1258 1259 1260 1261 1262 1263
				    le32_to_cpu(hdr->id));
			break;
		}

		/* jump over the padding */
		ie_len = ALIGN(ie_len, 4);

		len -= ie_len;
		data += ie_len;
1264
	}
1265

1266 1267
	if (!fw_file->firmware_data ||
	    !fw_file->firmware_len) {
1268
		ath10k_warn(ar, "No ATH10K_FW_IE_FW_IMAGE found from '%s/%s', skipping\n",
1269
			    ar->hw_params.fw.dir, name);
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
		ret = -ENOMEDIUM;
		goto err;
	}

	return 0;

err:
	ath10k_core_free_firmware_files(ar);
	return ret;
}

static int ath10k_core_fetch_firmware_files(struct ath10k *ar)
{
	int ret;

1285 1286 1287
	/* calibration file is optional, don't check for any errors */
	ath10k_fetch_cal_file(ar);

K
Kalle Valo 已提交
1288 1289 1290
	ar->fw_api = 5;
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "trying fw api %d\n", ar->fw_api);

1291 1292
	ret = ath10k_core_fetch_firmware_api_n(ar, ATH10K_FW_API5_FILE,
					       &ar->normal_mode_fw.fw_file);
K
Kalle Valo 已提交
1293 1294 1295
	if (ret == 0)
		goto success;

1296 1297 1298
	ar->fw_api = 4;
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "trying fw api %d\n", ar->fw_api);

1299 1300
	ret = ath10k_core_fetch_firmware_api_n(ar, ATH10K_FW_API4_FILE,
					       &ar->normal_mode_fw.fw_file);
1301 1302 1303
	if (ret == 0)
		goto success;

1304
	ar->fw_api = 3;
1305
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "trying fw api %d\n", ar->fw_api);
1306

1307 1308
	ret = ath10k_core_fetch_firmware_api_n(ar, ATH10K_FW_API3_FILE,
					       &ar->normal_mode_fw.fw_file);
1309 1310 1311
	if (ret == 0)
		goto success;

1312
	ar->fw_api = 2;
1313
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "trying fw api %d\n", ar->fw_api);
1314

1315 1316
	ret = ath10k_core_fetch_firmware_api_n(ar, ATH10K_FW_API2_FILE,
					       &ar->normal_mode_fw.fw_file);
1317 1318 1319
	if (ret)
		return ret;

1320
success:
1321
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "using fw api %d\n", ar->fw_api);
1322 1323 1324 1325

	return 0;
}

1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
static int ath10k_core_pre_cal_download(struct ath10k *ar)
{
	int ret;

	ret = ath10k_download_cal_file(ar, ar->pre_cal_file);
	if (ret == 0) {
		ar->cal_mode = ATH10K_PRE_CAL_MODE_FILE;
		goto success;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
		   "boot did not find a pre calibration file, try DT next: %d\n",
		   ret);

	ret = ath10k_download_cal_dt(ar, "qcom,ath10k-pre-calibration-data");
	if (ret) {
		ath10k_dbg(ar, ATH10K_DBG_BOOT,
			   "unable to load pre cal data from DT: %d\n", ret);
		return ret;
	}
	ar->cal_mode = ATH10K_PRE_CAL_MODE_DT;

success:
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot using calibration mode %s\n",
		   ath10k_cal_mode_str(ar->cal_mode));

	return 0;
}

static int ath10k_core_pre_cal_config(struct ath10k *ar)
{
	int ret;

	ret = ath10k_core_pre_cal_download(ar);
	if (ret) {
		ath10k_dbg(ar, ATH10K_DBG_BOOT,
			   "failed to load pre cal data: %d\n", ret);
		return ret;
	}

	ret = ath10k_core_get_board_id_from_otp(ar);
	if (ret) {
		ath10k_err(ar, "failed to get board id: %d\n", ret);
		return ret;
	}

	ret = ath10k_download_and_run_otp(ar);
	if (ret) {
		ath10k_err(ar, "failed to run otp: %d\n", ret);
		return ret;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
		   "pre cal configuration done successfully\n");

	return 0;
}

1384
static int ath10k_download_cal_data(struct ath10k *ar)
1385 1386 1387
{
	int ret;

1388 1389 1390 1391 1392 1393 1394 1395
	ret = ath10k_core_pre_cal_config(ar);
	if (ret == 0)
		return 0;

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
		   "pre cal download procedure failed, try cal file: %d\n",
		   ret);

1396
	ret = ath10k_download_cal_file(ar, ar->cal_file);
1397 1398 1399 1400 1401 1402
	if (ret == 0) {
		ar->cal_mode = ATH10K_CAL_MODE_FILE;
		goto done;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
1403 1404 1405
		   "boot did not find a calibration file, try DT next: %d\n",
		   ret);

1406
	ret = ath10k_download_cal_dt(ar, "qcom,ath10k-calibration-data");
1407 1408 1409 1410 1411 1412
	if (ret == 0) {
		ar->cal_mode = ATH10K_CAL_MODE_DT;
		goto done;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
		   "boot did not find DT entry, try target EEPROM next: %d\n",
		   ret);

	ret = ath10k_download_cal_eeprom(ar);
	if (ret == 0) {
		ar->cal_mode = ATH10K_CAL_MODE_EEPROM;
		goto done;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
		   "boot did not find target EEPROM entry, try OTP next: %d\n",
1424 1425
		   ret);

1426
	ret = ath10k_download_and_run_otp(ar);
1427
	if (ret) {
1428
		ath10k_err(ar, "failed to run otp: %d\n", ret);
1429
		return ret;
1430
	}
1431

1432 1433 1434 1435 1436 1437
	ar->cal_mode = ATH10K_CAL_MODE_OTP;

done:
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot using calibration mode %s\n",
		   ath10k_cal_mode_str(ar->cal_mode));
	return 0;
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
}

static int ath10k_init_uart(struct ath10k *ar)
{
	int ret;

	/*
	 * Explicitly setting UART prints to zero as target turns it on
	 * based on scratch registers.
	 */
	ret = ath10k_bmi_write32(ar, hi_serial_enable, 0);
	if (ret) {
1450
		ath10k_warn(ar, "could not disable UART prints (%d)\n", ret);
1451 1452 1453
		return ret;
	}

1454
	if (!uart_print)
1455 1456
		return 0;

1457
	ret = ath10k_bmi_write32(ar, hi_dbg_uart_txpin, ar->hw_params.uart_pin);
1458
	if (ret) {
1459
		ath10k_warn(ar, "could not enable UART prints (%d)\n", ret);
1460 1461 1462 1463 1464
		return ret;
	}

	ret = ath10k_bmi_write32(ar, hi_serial_enable, 1);
	if (ret) {
1465
		ath10k_warn(ar, "could not enable UART prints (%d)\n", ret);
1466 1467 1468
		return ret;
	}

1469 1470 1471
	/* Set the UART baud rate to 19200. */
	ret = ath10k_bmi_write32(ar, hi_desired_baud_rate, 19200);
	if (ret) {
1472
		ath10k_warn(ar, "could not set the baud rate (%d)\n", ret);
1473 1474 1475
		return ret;
	}

1476
	ath10k_info(ar, "UART prints enabled\n");
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
	return 0;
}

static int ath10k_init_hw_params(struct ath10k *ar)
{
	const struct ath10k_hw_params *uninitialized_var(hw_params);
	int i;

	for (i = 0; i < ARRAY_SIZE(ath10k_hw_params_list); i++) {
		hw_params = &ath10k_hw_params_list[i];

1488 1489
		if (hw_params->id == ar->target_version &&
		    hw_params->dev_id == ar->dev_id)
1490 1491 1492 1493
			break;
	}

	if (i == ARRAY_SIZE(ath10k_hw_params_list)) {
1494
		ath10k_err(ar, "Unsupported hardware version: 0x%x\n",
1495 1496 1497 1498 1499 1500
			   ar->target_version);
		return -EINVAL;
	}

	ar->hw_params = *hw_params;

1501
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "Hardware name %s version 0x%x\n",
1502
		   ar->hw_params.name, ar->target_version);
1503 1504 1505 1506

	return 0;
}

1507 1508 1509 1510
static void ath10k_core_restart(struct work_struct *work)
{
	struct ath10k *ar = container_of(work, struct ath10k, restart_work);

M
Michal Kazior 已提交
1511 1512 1513 1514 1515 1516 1517 1518 1519
	set_bit(ATH10K_FLAG_CRASH_FLUSH, &ar->dev_flags);

	/* Place a barrier to make sure the compiler doesn't reorder
	 * CRASH_FLUSH and calling other functions.
	 */
	barrier();

	ieee80211_stop_queues(ar->hw);
	ath10k_drain_tx(ar);
1520 1521 1522 1523 1524 1525 1526 1527
	complete(&ar->scan.started);
	complete(&ar->scan.completed);
	complete(&ar->scan.on_channel);
	complete(&ar->offchan_tx_completed);
	complete(&ar->install_key_done);
	complete(&ar->vdev_setup_done);
	complete(&ar->thermal.wmi_sync);
	complete(&ar->bss_survey_done);
M
Michal Kazior 已提交
1528 1529 1530 1531
	wake_up(&ar->htt.empty_tx_wq);
	wake_up(&ar->wmi.tx_credits_wq);
	wake_up(&ar->peer_mapping_wq);

1532 1533 1534 1535 1536
	mutex_lock(&ar->conf_mutex);

	switch (ar->state) {
	case ATH10K_STATE_ON:
		ar->state = ATH10K_STATE_RESTARTING;
1537
		ath10k_hif_stop(ar);
1538
		ath10k_scan_finish(ar);
1539 1540 1541
		ieee80211_restart_hw(ar->hw);
		break;
	case ATH10K_STATE_OFF:
1542 1543
		/* this can happen if driver is being unloaded
		 * or if the crash happens during FW probing */
1544
		ath10k_warn(ar, "cannot restart a device that hasn't been started\n");
1545 1546
		break;
	case ATH10K_STATE_RESTARTING:
1547 1548
		/* hw restart might be requested from multiple places */
		break;
1549 1550 1551 1552
	case ATH10K_STATE_RESTARTED:
		ar->state = ATH10K_STATE_WEDGED;
		/* fall through */
	case ATH10K_STATE_WEDGED:
1553
		ath10k_warn(ar, "device is wedged, will not restart\n");
1554
		break;
K
Kalle Valo 已提交
1555 1556 1557
	case ATH10K_STATE_UTF:
		ath10k_warn(ar, "firmware restart in UTF mode not supported\n");
		break;
1558 1559 1560 1561 1562
	}

	mutex_unlock(&ar->conf_mutex);
}

1563
static int ath10k_core_init_firmware_features(struct ath10k *ar)
1564
{
1565 1566 1567 1568
	struct ath10k_fw_file *fw_file = &ar->normal_mode_fw.fw_file;

	if (test_bit(ATH10K_FW_FEATURE_WMI_10_2, fw_file->fw_features) &&
	    !test_bit(ATH10K_FW_FEATURE_WMI_10X, fw_file->fw_features)) {
1569 1570 1571 1572
		ath10k_err(ar, "feature bits corrupted: 10.2 feature requires 10.x feature to be set as well");
		return -EINVAL;
	}

1573
	if (fw_file->wmi_op_version >= ATH10K_FW_WMI_OP_VERSION_MAX) {
1574
		ath10k_err(ar, "unsupported WMI OP version (max %d): %d\n",
1575
			   ATH10K_FW_WMI_OP_VERSION_MAX, fw_file->wmi_op_version);
1576 1577 1578
		return -EINVAL;
	}

1579 1580 1581 1582 1583 1584 1585 1586
	ar->wmi.rx_decap_mode = ATH10K_HW_TXRX_NATIVE_WIFI;
	switch (ath10k_cryptmode_param) {
	case ATH10K_CRYPT_MODE_HW:
		clear_bit(ATH10K_FLAG_RAW_MODE, &ar->dev_flags);
		clear_bit(ATH10K_FLAG_HW_CRYPTO_DISABLED, &ar->dev_flags);
		break;
	case ATH10K_CRYPT_MODE_SW:
		if (!test_bit(ATH10K_FW_FEATURE_RAW_MODE_SUPPORT,
1587
			      fw_file->fw_features)) {
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603
			ath10k_err(ar, "cryptmode > 0 requires raw mode support from firmware");
			return -EINVAL;
		}

		set_bit(ATH10K_FLAG_RAW_MODE, &ar->dev_flags);
		set_bit(ATH10K_FLAG_HW_CRYPTO_DISABLED, &ar->dev_flags);
		break;
	default:
		ath10k_info(ar, "invalid cryptmode: %d\n",
			    ath10k_cryptmode_param);
		return -EINVAL;
	}

	ar->htt.max_num_amsdu = ATH10K_HTT_MAX_NUM_AMSDU_DEFAULT;
	ar->htt.max_num_ampdu = ATH10K_HTT_MAX_NUM_AMPDU_DEFAULT;

B
Bob Copeland 已提交
1604 1605
	if (rawmode) {
		if (!test_bit(ATH10K_FW_FEATURE_RAW_MODE_SUPPORT,
1606
			      fw_file->fw_features)) {
B
Bob Copeland 已提交
1607 1608 1609 1610 1611 1612
			ath10k_err(ar, "rawmode = 1 requires support from firmware");
			return -EINVAL;
		}
		set_bit(ATH10K_FLAG_RAW_MODE, &ar->dev_flags);
	}

1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627
	if (test_bit(ATH10K_FLAG_RAW_MODE, &ar->dev_flags)) {
		ar->wmi.rx_decap_mode = ATH10K_HW_TXRX_RAW;

		/* Workaround:
		 *
		 * Firmware A-MSDU aggregation breaks with RAW Tx encap mode
		 * and causes enormous performance issues (malformed frames,
		 * etc).
		 *
		 * Disabling A-MSDU makes RAW mode stable with heavy traffic
		 * albeit a bit slower compared to regular operation.
		 */
		ar->htt.max_num_amsdu = 1;
	}

1628 1629 1630
	/* Backwards compatibility for firmwares without
	 * ATH10K_FW_IE_WMI_OP_VERSION.
	 */
1631
	if (fw_file->wmi_op_version == ATH10K_FW_WMI_OP_VERSION_UNSET) {
1632
		if (test_bit(ATH10K_FW_FEATURE_WMI_10X, fw_file->fw_features)) {
1633
			if (test_bit(ATH10K_FW_FEATURE_WMI_10_2,
1634
				     fw_file->fw_features))
1635
				fw_file->wmi_op_version = ATH10K_FW_WMI_OP_VERSION_10_2;
1636
			else
1637
				fw_file->wmi_op_version = ATH10K_FW_WMI_OP_VERSION_10_1;
1638
		} else {
1639
			fw_file->wmi_op_version = ATH10K_FW_WMI_OP_VERSION_MAIN;
1640 1641 1642
		}
	}

1643
	switch (fw_file->wmi_op_version) {
1644
	case ATH10K_FW_WMI_OP_VERSION_MAIN:
1645 1646
		ar->max_num_peers = TARGET_NUM_PEERS;
		ar->max_num_stations = TARGET_NUM_STATIONS;
1647
		ar->max_num_vdevs = TARGET_NUM_VDEVS;
1648
		ar->htt.max_num_pending_tx = TARGET_NUM_MSDU_DESC;
1649 1650
		ar->fw_stats_req_mask = WMI_STAT_PDEV | WMI_STAT_VDEV |
			WMI_STAT_PEER;
1651
		ar->max_spatial_stream = WMI_MAX_SPATIAL_STREAM;
1652 1653 1654
		break;
	case ATH10K_FW_WMI_OP_VERSION_10_1:
	case ATH10K_FW_WMI_OP_VERSION_10_2:
1655
	case ATH10K_FW_WMI_OP_VERSION_10_2_4:
1656
		if (ath10k_peer_stats_enabled(ar)) {
1657 1658 1659 1660 1661 1662
			ar->max_num_peers = TARGET_10X_TX_STATS_NUM_PEERS;
			ar->max_num_stations = TARGET_10X_TX_STATS_NUM_STATIONS;
		} else {
			ar->max_num_peers = TARGET_10X_NUM_PEERS;
			ar->max_num_stations = TARGET_10X_NUM_STATIONS;
		}
1663
		ar->max_num_vdevs = TARGET_10X_NUM_VDEVS;
1664
		ar->htt.max_num_pending_tx = TARGET_10X_NUM_MSDU_DESC;
1665
		ar->fw_stats_req_mask = WMI_STAT_PEER;
1666
		ar->max_spatial_stream = WMI_MAX_SPATIAL_STREAM;
1667
		break;
M
Michal Kazior 已提交
1668 1669 1670
	case ATH10K_FW_WMI_OP_VERSION_TLV:
		ar->max_num_peers = TARGET_TLV_NUM_PEERS;
		ar->max_num_stations = TARGET_TLV_NUM_STATIONS;
1671
		ar->max_num_vdevs = TARGET_TLV_NUM_VDEVS;
1672
		ar->max_num_tdls_vdevs = TARGET_TLV_NUM_TDLS_VDEVS;
M
Michal Kazior 已提交
1673
		ar->htt.max_num_pending_tx = TARGET_TLV_NUM_MSDU_DESC;
1674
		ar->wow.max_num_patterns = TARGET_TLV_NUM_WOW_PATTERNS;
1675 1676
		ar->fw_stats_req_mask = WMI_STAT_PDEV | WMI_STAT_VDEV |
			WMI_STAT_PEER;
1677
		ar->max_spatial_stream = WMI_MAX_SPATIAL_STREAM;
M
Michal Kazior 已提交
1678
		break;
1679
	case ATH10K_FW_WMI_OP_VERSION_10_4:
1680 1681 1682 1683 1684
		ar->max_num_peers = TARGET_10_4_NUM_PEERS;
		ar->max_num_stations = TARGET_10_4_NUM_STATIONS;
		ar->num_active_peers = TARGET_10_4_ACTIVE_PEERS;
		ar->max_num_vdevs = TARGET_10_4_NUM_VDEVS;
		ar->num_tids = TARGET_10_4_TGT_NUM_TIDS;
1685 1686
		ar->fw_stats_req_mask = WMI_10_4_STAT_PEER |
					WMI_10_4_STAT_PEER_EXTD;
1687
		ar->max_spatial_stream = ar->hw_params.max_spatial_stream;
1688 1689

		if (test_bit(ATH10K_FW_FEATURE_PEER_FLOW_CONTROL,
1690
			     fw_file->fw_features))
1691 1692 1693
			ar->htt.max_num_pending_tx = TARGET_10_4_NUM_MSDU_DESC_PFC;
		else
			ar->htt.max_num_pending_tx = TARGET_10_4_NUM_MSDU_DESC;
1694
		break;
1695 1696 1697 1698
	case ATH10K_FW_WMI_OP_VERSION_UNSET:
	case ATH10K_FW_WMI_OP_VERSION_MAX:
		WARN_ON(1);
		return -EINVAL;
1699
	}
1700

1701 1702 1703
	/* Backwards compatibility for firmwares without
	 * ATH10K_FW_IE_HTT_OP_VERSION.
	 */
1704
	if (fw_file->htt_op_version == ATH10K_FW_HTT_OP_VERSION_UNSET) {
1705
		switch (fw_file->wmi_op_version) {
1706
		case ATH10K_FW_WMI_OP_VERSION_MAIN:
1707
			fw_file->htt_op_version = ATH10K_FW_HTT_OP_VERSION_MAIN;
1708 1709 1710 1711
			break;
		case ATH10K_FW_WMI_OP_VERSION_10_1:
		case ATH10K_FW_WMI_OP_VERSION_10_2:
		case ATH10K_FW_WMI_OP_VERSION_10_2_4:
1712
			fw_file->htt_op_version = ATH10K_FW_HTT_OP_VERSION_10_1;
1713 1714
			break;
		case ATH10K_FW_WMI_OP_VERSION_TLV:
1715
			fw_file->htt_op_version = ATH10K_FW_HTT_OP_VERSION_TLV;
1716
			break;
1717
		case ATH10K_FW_WMI_OP_VERSION_10_4:
1718 1719
		case ATH10K_FW_WMI_OP_VERSION_UNSET:
		case ATH10K_FW_WMI_OP_VERSION_MAX:
1720
			ath10k_err(ar, "htt op version not found from fw meta data");
1721 1722 1723 1724
			return -EINVAL;
		}
	}

1725
	return 0;
1726 1727
}

1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776
static int ath10k_core_reset_rx_filter(struct ath10k *ar)
{
	int ret;
	int vdev_id;
	int vdev_type;
	int vdev_subtype;
	const u8 *vdev_addr;

	vdev_id = 0;
	vdev_type = WMI_VDEV_TYPE_STA;
	vdev_subtype = ath10k_wmi_get_vdev_subtype(ar, WMI_VDEV_SUBTYPE_NONE);
	vdev_addr = ar->mac_addr;

	ret = ath10k_wmi_vdev_create(ar, vdev_id, vdev_type, vdev_subtype,
				     vdev_addr);
	if (ret) {
		ath10k_err(ar, "failed to create dummy vdev: %d\n", ret);
		return ret;
	}

	ret = ath10k_wmi_vdev_delete(ar, vdev_id);
	if (ret) {
		ath10k_err(ar, "failed to delete dummy vdev: %d\n", ret);
		return ret;
	}

	/* WMI and HTT may use separate HIF pipes and are not guaranteed to be
	 * serialized properly implicitly.
	 *
	 * Moreover (most) WMI commands have no explicit acknowledges. It is
	 * possible to infer it implicitly by poking firmware with echo
	 * command - getting a reply means all preceding comments have been
	 * (mostly) processed.
	 *
	 * In case of vdev create/delete this is sufficient.
	 *
	 * Without this it's possible to end up with a race when HTT Rx ring is
	 * started before vdev create/delete hack is complete allowing a short
	 * window of opportunity to receive (and Tx ACK) a bunch of frames.
	 */
	ret = ath10k_wmi_barrier(ar);
	if (ret) {
		ath10k_err(ar, "failed to ping firmware: %d\n", ret);
		return ret;
	}

	return 0;
}

1777 1778
int ath10k_core_start(struct ath10k *ar, enum ath10k_firmware_mode mode,
		      const struct ath10k_fw_components *fw)
1779 1780
{
	int status;
1781
	u32 val;
1782

1783 1784
	lockdep_assert_held(&ar->conf_mutex);

M
Michal Kazior 已提交
1785 1786
	clear_bit(ATH10K_FLAG_CRASH_FLUSH, &ar->dev_flags);

1787 1788
	ar->running_fw = fw;

1789 1790
	ath10k_bmi_start(ar);

1791 1792 1793 1794 1795
	if (ath10k_init_configure_target(ar)) {
		status = -EINVAL;
		goto err;
	}

1796 1797 1798 1799
	status = ath10k_download_cal_data(ar);
	if (status)
		goto err;

1800
	/* Some of of qca988x solutions are having global reset issue
K
Kalle Valo 已提交
1801 1802 1803 1804
	 * during target initialization. Bypassing PLL setting before
	 * downloading firmware and letting the SoC run on REF_CLK is
	 * fixing the problem. Corresponding firmware change is also needed
	 * to set the clock source once the target is initialized.
1805 1806
	 */
	if (test_bit(ATH10K_FW_FEATURE_SUPPORTS_SKIP_CLOCK_INIT,
1807
		     ar->running_fw->fw_file.fw_features)) {
1808 1809 1810 1811 1812 1813 1814 1815
		status = ath10k_bmi_write32(ar, hi_skip_clock_init, 1);
		if (status) {
			ath10k_err(ar, "could not write to skip_clock_init: %d\n",
				   status);
			goto err;
		}
	}

1816
	status = ath10k_download_fw(ar);
1817 1818 1819 1820 1821 1822 1823
	if (status)
		goto err;

	status = ath10k_init_uart(ar);
	if (status)
		goto err;

1824 1825
	ar->htc.htc_ops.target_send_suspend_complete =
		ath10k_send_suspend_complete;
1826

1827 1828
	status = ath10k_htc_init(ar);
	if (status) {
1829
		ath10k_err(ar, "could not init HTC (%d)\n", status);
1830 1831 1832 1833 1834
		goto err;
	}

	status = ath10k_bmi_done(ar);
	if (status)
1835
		goto err;
1836 1837 1838

	status = ath10k_wmi_attach(ar);
	if (status) {
1839
		ath10k_err(ar, "WMI attach failed: %d\n", status);
1840
		goto err;
1841 1842
	}

M
Michal Kazior 已提交
1843 1844
	status = ath10k_htt_init(ar);
	if (status) {
1845
		ath10k_err(ar, "failed to init htt: %d\n", status);
M
Michal Kazior 已提交
1846 1847 1848 1849 1850
		goto err_wmi_detach;
	}

	status = ath10k_htt_tx_alloc(&ar->htt);
	if (status) {
1851
		ath10k_err(ar, "failed to alloc htt tx: %d\n", status);
M
Michal Kazior 已提交
1852 1853 1854 1855 1856
		goto err_wmi_detach;
	}

	status = ath10k_htt_rx_alloc(&ar->htt);
	if (status) {
1857
		ath10k_err(ar, "failed to alloc htt rx: %d\n", status);
M
Michal Kazior 已提交
1858 1859 1860
		goto err_htt_tx_detach;
	}

M
Michal Kazior 已提交
1861 1862
	status = ath10k_hif_start(ar);
	if (status) {
1863
		ath10k_err(ar, "could not start HIF: %d\n", status);
M
Michal Kazior 已提交
1864
		goto err_htt_rx_detach;
M
Michal Kazior 已提交
1865 1866 1867 1868
	}

	status = ath10k_htc_wait_target(&ar->htc);
	if (status) {
1869
		ath10k_err(ar, "failed to connect to HTC: %d\n", status);
M
Michal Kazior 已提交
1870 1871
		goto err_hif_stop;
	}
1872

K
Kalle Valo 已提交
1873 1874 1875 1876 1877 1878
	if (mode == ATH10K_FIRMWARE_MODE_NORMAL) {
		status = ath10k_htt_connect(&ar->htt);
		if (status) {
			ath10k_err(ar, "failed to connect htt (%d)\n", status);
			goto err_hif_stop;
		}
1879 1880
	}

M
Michal Kazior 已提交
1881 1882
	status = ath10k_wmi_connect(ar);
	if (status) {
1883
		ath10k_err(ar, "could not connect wmi: %d\n", status);
M
Michal Kazior 已提交
1884 1885 1886 1887 1888
		goto err_hif_stop;
	}

	status = ath10k_htc_start(&ar->htc);
	if (status) {
1889
		ath10k_err(ar, "failed to start htc: %d\n", status);
M
Michal Kazior 已提交
1890 1891 1892
		goto err_hif_stop;
	}

K
Kalle Valo 已提交
1893 1894
	if (mode == ATH10K_FIRMWARE_MODE_NORMAL) {
		status = ath10k_wmi_wait_for_service_ready(ar);
1895
		if (status) {
K
Kalle Valo 已提交
1896 1897 1898
			ath10k_warn(ar, "wmi service ready event not received");
			goto err_hif_stop;
		}
M
Michal Kazior 已提交
1899
	}
1900

1901
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "firmware %s booted\n",
1902
		   ar->hw->wiphy->fw_version);
1903

1904 1905 1906 1907 1908
	if (test_bit(WMI_SERVICE_EXT_RES_CFG_SUPPORT, ar->wmi.svc_map)) {
		val = 0;
		if (ath10k_peer_stats_enabled(ar))
			val = WMI_10_4_PEER_STATS;

1909 1910 1911
		if (test_bit(WMI_SERVICE_BSS_CHANNEL_INFO_64, ar->wmi.svc_map))
			val |= WMI_10_4_BSS_CHANNEL_INFO_64;

1912 1913 1914 1915 1916 1917 1918 1919 1920 1921
		/* 10.4 firmware supports BT-Coex without reloading firmware
		 * via pdev param. To support Bluetooth coexistence pdev param,
		 * WMI_COEX_GPIO_SUPPORT of extended resource config should be
		 * enabled always.
		 */
		if (test_bit(WMI_SERVICE_COEX_GPIO, ar->wmi.svc_map) &&
		    test_bit(ATH10K_FW_FEATURE_BTCOEX_PARAM,
			     ar->running_fw->fw_file.fw_features))
			val |= WMI_10_4_COEX_GPIO_SUPPORT;

1922
		status = ath10k_mac_ext_resource_config(ar, val);
1923 1924 1925 1926 1927 1928 1929 1930
		if (status) {
			ath10k_err(ar,
				   "failed to send ext resource cfg command : %d\n",
				   status);
			goto err_hif_stop;
		}
	}

1931 1932
	status = ath10k_wmi_cmd_init(ar);
	if (status) {
1933 1934
		ath10k_err(ar, "could not send WMI init command (%d)\n",
			   status);
M
Michal Kazior 已提交
1935
		goto err_hif_stop;
1936 1937 1938
	}

	status = ath10k_wmi_wait_for_unified_ready(ar);
1939
	if (status) {
1940
		ath10k_err(ar, "wmi unified ready event not received\n");
M
Michal Kazior 已提交
1941
		goto err_hif_stop;
1942 1943
	}

1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962
	/* Some firmware revisions do not properly set up hardware rx filter
	 * registers.
	 *
	 * A known example from QCA9880 and 10.2.4 is that MAC_PCU_ADDR1_MASK
	 * is filled with 0s instead of 1s allowing HW to respond with ACKs to
	 * any frames that matches MAC_PCU_RX_FILTER which is also
	 * misconfigured to accept anything.
	 *
	 * The ADDR1 is programmed using internal firmware structure field and
	 * can't be (easily/sanely) reached from the driver explicitly. It is
	 * possible to implicitly make it correct by creating a dummy vdev and
	 * then deleting it.
	 */
	status = ath10k_core_reset_rx_filter(ar);
	if (status) {
		ath10k_err(ar, "failed to reset rx filter: %d\n", status);
		goto err_hif_stop;
	}

1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974
	/* If firmware indicates Full Rx Reorder support it must be used in a
	 * slightly different manner. Let HTT code know.
	 */
	ar->htt.rx_ring.in_ord_rx = !!(test_bit(WMI_SERVICE_RX_FULL_REORDER,
						ar->wmi.svc_map));

	status = ath10k_htt_rx_ring_refill(ar);
	if (status) {
		ath10k_err(ar, "failed to refill htt rx ring: %d\n", status);
		goto err_hif_stop;
	}

1975 1976 1977 1978
	ar->free_vdev_map = (1LL << ar->max_num_vdevs) - 1;

	INIT_LIST_HEAD(&ar->arvifs);

K
Kalle Valo 已提交
1979 1980 1981 1982 1983 1984 1985
	/* we don't care about HTT in UTF mode */
	if (mode == ATH10K_FIRMWARE_MODE_NORMAL) {
		status = ath10k_htt_setup(&ar->htt);
		if (status) {
			ath10k_err(ar, "failed to setup htt: %d\n", status);
			goto err_hif_stop;
		}
M
Michal Kazior 已提交
1986
	}
1987

1988 1989
	status = ath10k_debug_start(ar);
	if (status)
M
Michal Kazior 已提交
1990
		goto err_hif_stop;
1991

1992 1993
	return 0;

M
Michal Kazior 已提交
1994 1995
err_hif_stop:
	ath10k_hif_stop(ar);
M
Michal Kazior 已提交
1996 1997 1998 1999
err_htt_rx_detach:
	ath10k_htt_rx_free(&ar->htt);
err_htt_tx_detach:
	ath10k_htt_tx_free(&ar->htt);
2000 2001 2002 2003 2004
err_wmi_detach:
	ath10k_wmi_detach(ar);
err:
	return status;
}
2005
EXPORT_SYMBOL(ath10k_core_start);
2006

2007 2008 2009
int ath10k_wait_for_suspend(struct ath10k *ar, u32 suspend_opt)
{
	int ret;
2010
	unsigned long time_left;
2011 2012 2013 2014 2015

	reinit_completion(&ar->target_suspend);

	ret = ath10k_wmi_pdev_suspend_target(ar, suspend_opt);
	if (ret) {
2016
		ath10k_warn(ar, "could not suspend target (%d)\n", ret);
2017 2018 2019
		return ret;
	}

2020
	time_left = wait_for_completion_timeout(&ar->target_suspend, 1 * HZ);
2021

2022
	if (!time_left) {
2023
		ath10k_warn(ar, "suspend timed out - target pause event never came\n");
2024 2025 2026 2027 2028 2029
		return -ETIMEDOUT;
	}

	return 0;
}

2030 2031
void ath10k_core_stop(struct ath10k *ar)
{
2032
	lockdep_assert_held(&ar->conf_mutex);
2033
	ath10k_debug_stop(ar);
2034

2035
	/* try to suspend target */
K
Kalle Valo 已提交
2036 2037
	if (ar->state != ATH10K_STATE_RESTARTING &&
	    ar->state != ATH10K_STATE_UTF)
2038 2039
		ath10k_wait_for_suspend(ar, WMI_PDEV_SUSPEND_AND_DISABLE_INTR);

M
Michal Kazior 已提交
2040 2041 2042
	ath10k_hif_stop(ar);
	ath10k_htt_tx_free(&ar->htt);
	ath10k_htt_rx_free(&ar->htt);
2043 2044
	ath10k_wmi_detach(ar);
}
2045 2046 2047 2048 2049 2050 2051 2052
EXPORT_SYMBOL(ath10k_core_stop);

/* mac80211 manages fw/hw initialization through start/stop hooks. However in
 * order to know what hw capabilities should be advertised to mac80211 it is
 * necessary to load the firmware (and tear it down immediately since start
 * hook will try to init it again) before registering */
static int ath10k_core_probe_fw(struct ath10k *ar)
{
2053 2054
	struct bmi_target_info target_info;
	int ret = 0;
2055 2056 2057

	ret = ath10k_hif_power_up(ar);
	if (ret) {
2058
		ath10k_err(ar, "could not start pci hif (%d)\n", ret);
2059 2060 2061
		return ret;
	}

2062 2063 2064
	memset(&target_info, 0, sizeof(target_info));
	ret = ath10k_bmi_get_target_info(ar, &target_info);
	if (ret) {
2065
		ath10k_err(ar, "could not get target info (%d)\n", ret);
2066
		goto err_power_down;
2067 2068 2069 2070 2071 2072 2073
	}

	ar->target_version = target_info.version;
	ar->hw->wiphy->hw_version = target_info.version;

	ret = ath10k_init_hw_params(ar);
	if (ret) {
2074
		ath10k_err(ar, "could not get hw params (%d)\n", ret);
2075
		goto err_power_down;
2076 2077 2078 2079
	}

	ret = ath10k_core_fetch_firmware_files(ar);
	if (ret) {
2080
		ath10k_err(ar, "could not fetch firmware files (%d)\n", ret);
2081
		goto err_power_down;
2082 2083
	}

2084 2085 2086 2087 2088
	BUILD_BUG_ON(sizeof(ar->hw->wiphy->fw_version) !=
		     sizeof(ar->normal_mode_fw.fw_file.fw_version));
	memcpy(ar->hw->wiphy->fw_version, ar->normal_mode_fw.fw_file.fw_version,
	       sizeof(ar->hw->wiphy->fw_version));

2089 2090
	ath10k_debug_print_hwfw_info(ar);

2091 2092 2093 2094 2095 2096 2097 2098 2099
	ret = ath10k_core_pre_cal_download(ar);
	if (ret) {
		/* pre calibration data download is not necessary
		 * for all the chipsets. Ignore failures and continue.
		 */
		ath10k_dbg(ar, ATH10K_DBG_BOOT,
			   "could not load pre cal data: %d\n", ret);
	}

2100 2101
	ret = ath10k_core_get_board_id_from_otp(ar);
	if (ret && ret != -EOPNOTSUPP) {
2102
		ath10k_err(ar, "failed to get board id from otp: %d\n",
2103
			   ret);
2104
		goto err_free_firmware_files;
2105 2106 2107 2108 2109 2110 2111 2112
	}

	ret = ath10k_core_fetch_board_file(ar);
	if (ret) {
		ath10k_err(ar, "failed to fetch board file: %d\n", ret);
		goto err_free_firmware_files;
	}

2113 2114
	ath10k_debug_print_board_info(ar);

2115 2116 2117 2118 2119 2120
	ret = ath10k_core_init_firmware_features(ar);
	if (ret) {
		ath10k_err(ar, "fatal problem with firmware features: %d\n",
			   ret);
		goto err_free_firmware_files;
	}
2121

2122
	ret = ath10k_swap_code_seg_init(ar, &ar->normal_mode_fw.fw_file);
2123 2124 2125 2126 2127 2128
	if (ret) {
		ath10k_err(ar, "failed to initialize code swap segment: %d\n",
			   ret);
		goto err_free_firmware_files;
	}

2129 2130
	mutex_lock(&ar->conf_mutex);

2131 2132
	ret = ath10k_core_start(ar, ATH10K_FIRMWARE_MODE_NORMAL,
				&ar->normal_mode_fw);
2133
	if (ret) {
2134
		ath10k_err(ar, "could not init core (%d)\n", ret);
2135
		goto err_unlock;
2136 2137
	}

2138
	ath10k_debug_print_boot_info(ar);
2139
	ath10k_core_stop(ar);
2140 2141 2142

	mutex_unlock(&ar->conf_mutex);

2143 2144
	ath10k_hif_power_down(ar);
	return 0;
2145 2146 2147 2148

err_unlock:
	mutex_unlock(&ar->conf_mutex);

2149
err_free_firmware_files:
2150 2151 2152 2153 2154 2155
	ath10k_core_free_firmware_files(ar);

err_power_down:
	ath10k_hif_power_down(ar);

	return ret;
2156
}
2157

2158
static void ath10k_core_register_work(struct work_struct *work)
2159
{
2160
	struct ath10k *ar = container_of(work, struct ath10k, register_work);
2161 2162
	int status;

2163 2164 2165
	/* peer stats are enabled by default */
	set_bit(ATH10K_FLAG_PEER_STATS, &ar->dev_flags);

2166 2167
	status = ath10k_core_probe_fw(ar);
	if (status) {
2168
		ath10k_err(ar, "could not probe fw (%d)\n", status);
2169
		goto err;
2170
	}
2171

2172
	status = ath10k_mac_register(ar);
2173
	if (status) {
2174
		ath10k_err(ar, "could not register to mac80211 (%d)\n", status);
2175
		goto err_release_fw;
2176
	}
2177

2178
	status = ath10k_debug_register(ar);
2179
	if (status) {
2180
		ath10k_err(ar, "unable to initialize debugfs\n");
2181 2182 2183
		goto err_unregister_mac;
	}

2184 2185
	status = ath10k_spectral_create(ar);
	if (status) {
2186
		ath10k_err(ar, "failed to initialize spectral\n");
2187 2188 2189
		goto err_debug_destroy;
	}

2190 2191 2192 2193 2194 2195 2196
	status = ath10k_thermal_register(ar);
	if (status) {
		ath10k_err(ar, "could not register thermal device: %d\n",
			   status);
		goto err_spectral_destroy;
	}

2197 2198
	set_bit(ATH10K_FLAG_CORE_REGISTERED, &ar->dev_flags);
	return;
2199

2200 2201
err_spectral_destroy:
	ath10k_spectral_destroy(ar);
2202 2203
err_debug_destroy:
	ath10k_debug_destroy(ar);
2204 2205
err_unregister_mac:
	ath10k_mac_unregister(ar);
2206 2207
err_release_fw:
	ath10k_core_free_firmware_files(ar);
2208
err:
2209 2210 2211
	/* TODO: It's probably a good idea to release device from the driver
	 * but calling device_release_driver() here will cause a deadlock.
	 */
2212 2213 2214 2215 2216 2217 2218 2219 2220
	return;
}

int ath10k_core_register(struct ath10k *ar, u32 chip_id)
{
	ar->chip_id = chip_id;
	queue_work(ar->workqueue, &ar->register_work);

	return 0;
2221 2222 2223 2224 2225
}
EXPORT_SYMBOL(ath10k_core_register);

void ath10k_core_unregister(struct ath10k *ar)
{
2226 2227 2228 2229 2230
	cancel_work_sync(&ar->register_work);

	if (!test_bit(ATH10K_FLAG_CORE_REGISTERED, &ar->dev_flags))
		return;

2231
	ath10k_thermal_unregister(ar);
2232 2233 2234 2235 2236 2237
	/* Stop spectral before unregistering from mac80211 to remove the
	 * relayfs debugfs file cleanly. Otherwise the parent debugfs tree
	 * would be already be free'd recursively, leading to a double free.
	 */
	ath10k_spectral_destroy(ar);

2238 2239 2240 2241
	/* We must unregister from mac80211 before we stop HTC and HIF.
	 * Otherwise we will fail to submit commands to FW and mac80211 will be
	 * unhappy about callback failures. */
	ath10k_mac_unregister(ar);
2242

K
Kalle Valo 已提交
2243 2244
	ath10k_testmode_destroy(ar);

2245
	ath10k_core_free_firmware_files(ar);
2246
	ath10k_core_free_board_files(ar);
2247

2248
	ath10k_debug_unregister(ar);
2249 2250 2251
}
EXPORT_SYMBOL(ath10k_core_unregister);

M
Michal Kazior 已提交
2252
struct ath10k *ath10k_core_create(size_t priv_size, struct device *dev,
K
Kalle Valo 已提交
2253
				  enum ath10k_bus bus,
M
Michal Kazior 已提交
2254
				  enum ath10k_hw_rev hw_rev,
2255 2256 2257
				  const struct ath10k_hif_ops *hif_ops)
{
	struct ath10k *ar;
2258
	int ret;
2259

M
Michal Kazior 已提交
2260
	ar = ath10k_mac_create(priv_size);
2261 2262 2263 2264 2265 2266
	if (!ar)
		return NULL;

	ar->ath_common.priv = ar;
	ar->ath_common.hw = ar->hw;
	ar->dev = dev;
M
Michal Kazior 已提交
2267
	ar->hw_rev = hw_rev;
2268
	ar->hif.ops = hif_ops;
K
Kalle Valo 已提交
2269
	ar->hif.bus = bus;
2270

M
Michal Kazior 已提交
2271 2272
	switch (hw_rev) {
	case ATH10K_HW_QCA988X:
2273
	case ATH10K_HW_QCA9887:
M
Michal Kazior 已提交
2274
		ar->regs = &qca988x_regs;
2275
		ar->hw_values = &qca988x_values;
M
Michal Kazior 已提交
2276 2277
		break;
	case ATH10K_HW_QCA6174:
2278
	case ATH10K_HW_QCA9377:
M
Michal Kazior 已提交
2279
		ar->regs = &qca6174_regs;
2280
		ar->hw_values = &qca6174_values;
M
Michal Kazior 已提交
2281
		break;
2282
	case ATH10K_HW_QCA99X0:
2283
	case ATH10K_HW_QCA9984:
2284 2285 2286
		ar->regs = &qca99x0_regs;
		ar->hw_values = &qca99x0_values;
		break;
2287 2288 2289 2290
	case ATH10K_HW_QCA9888:
		ar->regs = &qca99x0_regs;
		ar->hw_values = &qca9888_values;
		break;
2291 2292 2293 2294
	case ATH10K_HW_QCA4019:
		ar->regs = &qca4019_regs;
		ar->hw_values = &qca4019_values;
		break;
M
Michal Kazior 已提交
2295 2296 2297 2298 2299 2300 2301
	default:
		ath10k_err(ar, "unsupported core hardware revision %d\n",
			   hw_rev);
		ret = -ENOTSUPP;
		goto err_free_mac;
	}

2302 2303 2304 2305
	init_completion(&ar->scan.started);
	init_completion(&ar->scan.completed);
	init_completion(&ar->scan.on_channel);
	init_completion(&ar->target_suspend);
2306
	init_completion(&ar->wow.wakeup_completed);
2307 2308 2309

	init_completion(&ar->install_key_done);
	init_completion(&ar->vdev_setup_done);
2310
	init_completion(&ar->thermal.wmi_sync);
2311
	init_completion(&ar->bss_survey_done);
2312

2313
	INIT_DELAYED_WORK(&ar->scan.timeout, ath10k_scan_timeout_work);
2314 2315 2316

	ar->workqueue = create_singlethread_workqueue("ath10k_wq");
	if (!ar->workqueue)
2317
		goto err_free_mac;
2318

2319 2320 2321 2322
	ar->workqueue_aux = create_singlethread_workqueue("ath10k_aux_wq");
	if (!ar->workqueue_aux)
		goto err_free_wq;

2323 2324
	mutex_init(&ar->conf_mutex);
	spin_lock_init(&ar->data_lock);
M
Michal Kazior 已提交
2325
	spin_lock_init(&ar->txqs_lock);
2326

M
Michal Kazior 已提交
2327
	INIT_LIST_HEAD(&ar->txqs);
2328 2329
	INIT_LIST_HEAD(&ar->peers);
	init_waitqueue_head(&ar->peer_mapping_wq);
M
Michal Kazior 已提交
2330 2331
	init_waitqueue_head(&ar->htt.empty_tx_wq);
	init_waitqueue_head(&ar->wmi.tx_credits_wq);
2332 2333 2334 2335 2336 2337 2338 2339

	init_completion(&ar->offchan_tx_completed);
	INIT_WORK(&ar->offchan_tx_work, ath10k_offchan_tx_work);
	skb_queue_head_init(&ar->offchan_tx_queue);

	INIT_WORK(&ar->wmi_mgmt_tx_work, ath10k_mgmt_over_wmi_tx_work);
	skb_queue_head_init(&ar->wmi_mgmt_tx_queue);

2340
	INIT_WORK(&ar->register_work, ath10k_core_register_work);
2341 2342
	INIT_WORK(&ar->restart_work, ath10k_core_restart);

2343 2344
	init_dummy_netdev(&ar->napi_dev);

2345 2346
	ret = ath10k_debug_create(ar);
	if (ret)
2347
		goto err_free_aux_wq;
2348

2349 2350
	return ar;

2351 2352
err_free_aux_wq:
	destroy_workqueue(ar->workqueue_aux);
2353 2354 2355 2356
err_free_wq:
	destroy_workqueue(ar->workqueue);

err_free_mac:
2357
	ath10k_mac_destroy(ar);
2358

2359 2360 2361 2362 2363 2364 2365 2366 2367
	return NULL;
}
EXPORT_SYMBOL(ath10k_core_create);

void ath10k_core_destroy(struct ath10k *ar)
{
	flush_workqueue(ar->workqueue);
	destroy_workqueue(ar->workqueue);

2368 2369 2370
	flush_workqueue(ar->workqueue_aux);
	destroy_workqueue(ar->workqueue_aux);

2371
	ath10k_debug_destroy(ar);
2372
	ath10k_wmi_free_host_mem(ar);
2373 2374 2375 2376
	ath10k_mac_destroy(ar);
}
EXPORT_SYMBOL(ath10k_core_destroy);

2377
MODULE_AUTHOR("Qualcomm Atheros");
2378
MODULE_DESCRIPTION("Core module for Qualcomm Atheros 802.11ac wireless LAN cards.");
2379
MODULE_LICENSE("Dual BSD/GPL");