core.c 75.7 KB
Newer Older
1 2
/*
 * Copyright (c) 2005-2011 Atheros Communications Inc.
K
Kalle Valo 已提交
3
 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc.
4
 * Copyright (c) 2018, The Linux Foundation. All rights reserved.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * 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>
21
#include <linux/of.h>
22
#include <linux/property.h>
23 24
#include <linux/dmi.h>
#include <linux/ctype.h>
25
#include <asm/byteorder.h>
26 27 28 29 30 31 32 33 34

#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 已提交
35
#include "testmode.h"
M
Michal Kazior 已提交
36
#include "wmi-ops.h"
37
#include "coredump.h"
38 39

unsigned int ath10k_debug_mask;
40
static unsigned int ath10k_cryptmode_param;
41
static bool uart_print;
42
static bool skip_otp;
B
Bob Copeland 已提交
43
static bool rawmode;
44

45 46
unsigned long ath10k_coredump_mask = BIT(ATH10K_FW_CRASH_DUMP_REGISTERS) |
				     BIT(ATH10K_FW_CRASH_DUMP_CE_DATA);
47 48

/* FIXME: most of these should be readonly */
49
module_param_named(debug_mask, ath10k_debug_mask, uint, 0644);
50
module_param_named(cryptmode, ath10k_cryptmode_param, uint, 0644);
51
module_param(uart_print, bool, 0644);
52
module_param(skip_otp, bool, 0644);
B
Bob Copeland 已提交
53
module_param(rawmode, bool, 0644);
54
module_param_named(coredump_mask, ath10k_coredump_mask, ulong, 0444);
55

56 57
MODULE_PARM_DESC(debug_mask, "Debugging mask");
MODULE_PARM_DESC(uart_print, "Uart target debugging");
58
MODULE_PARM_DESC(skip_otp, "Skip otp failure for calibration in testmode");
59
MODULE_PARM_DESC(cryptmode, "Crypto mode: 0-hardware, 1-software");
B
Bob Copeland 已提交
60
MODULE_PARM_DESC(rawmode, "Use raw 802.11 frame datapath");
61
MODULE_PARM_DESC(coredump_mask, "Bitfield of what to include in firmware crash file");
62 63 64 65

static const struct ath10k_hw_params ath10k_hw_params_list[] = {
	{
		.id = QCA988X_HW_2_0_VERSION,
66
		.dev_id = QCA988X_2_0_DEVICE_ID,
67 68
		.name = "qca988x hw2.0",
		.patch_load_addr = QCA988X_HW_2_0_PATCH_LOAD_ADDR,
69
		.uart_pin = 7,
70
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_ALL,
71
		.otp_exe_param = 0,
72
		.channel_counters_freq_hz = 88000,
73
		.max_probe_resp_desc_thres = 0,
74
		.cal_data_len = 2116,
75 76 77
		.fw = {
			.dir = QCA988X_HW_2_0_FW_DIR,
			.board = QCA988X_HW_2_0_BOARD_DATA_FILE,
78 79
			.board_size = QCA988X_BOARD_DATA_SZ,
			.board_ext_size = QCA988X_BOARD_EXT_DATA_SZ,
80
		},
81
		.hw_ops = &qca988x_ops,
82
		.decap_align_bytes = 4,
83
		.spectral_bin_discard = 0,
84
		.spectral_bin_offset = 0,
85 86
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
87
		.n_cipher_suites = 8,
88 89 90
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
91 92
		.target_64bit = false,
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
93
		.shadow_reg_support = false,
94
		.rri_on_ddr = false,
95
		.hw_filter_reset_required = true,
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
	},
	{
		.id = QCA988X_HW_2_0_VERSION,
		.dev_id = QCA988X_2_0_DEVICE_ID_UBNT,
		.name = "qca988x hw2.0 ubiquiti",
		.patch_load_addr = QCA988X_HW_2_0_PATCH_LOAD_ADDR,
		.uart_pin = 7,
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_ALL,
		.otp_exe_param = 0,
		.channel_counters_freq_hz = 88000,
		.max_probe_resp_desc_thres = 0,
		.cal_data_len = 2116,
		.fw = {
			.dir = QCA988X_HW_2_0_FW_DIR,
			.board = QCA988X_HW_2_0_BOARD_DATA_FILE,
			.board_size = QCA988X_BOARD_DATA_SZ,
			.board_ext_size = QCA988X_BOARD_EXT_DATA_SZ,
		},
		.hw_ops = &qca988x_ops,
		.decap_align_bytes = 4,
		.spectral_bin_discard = 0,
117
		.spectral_bin_offset = 0,
118 119 120 121 122 123
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
		.n_cipher_suites = 8,
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
124
		.target_64bit = false,
125
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
126
		.per_ce_irq = false,
127
		.shadow_reg_support = false,
128
		.rri_on_ddr = false,
129
		.hw_filter_reset_required = true,
130
	},
131 132 133 134 135 136
	{
		.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,
137
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_ALL,
138 139 140 141 142 143 144 145 146 147
		.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,
		},
148
		.hw_ops = &qca988x_ops,
149
		.decap_align_bytes = 4,
150
		.spectral_bin_discard = 0,
151
		.spectral_bin_offset = 0,
152 153
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
154
		.n_cipher_suites = 8,
155 156 157
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
158
		.target_64bit = false,
159
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
160
		.per_ce_irq = false,
161
		.shadow_reg_support = false,
162
		.rri_on_ddr = false,
163
		.hw_filter_reset_required = true,
164
	},
M
Michal Kazior 已提交
165 166
	{
		.id = QCA6174_HW_2_1_VERSION,
167 168 169 170 171 172 173
		.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,
174
		.cal_data_len = 8124,
175 176 177 178 179 180
		.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,
		},
181
		.hw_ops = &qca988x_ops,
182
		.decap_align_bytes = 4,
183
		.spectral_bin_discard = 0,
184
		.spectral_bin_offset = 0,
185 186
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
187
		.n_cipher_suites = 8,
188 189 190
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
191
		.target_64bit = false,
192
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
193
		.per_ce_irq = false,
194
		.shadow_reg_support = false,
195
		.rri_on_ddr = false,
196
		.hw_filter_reset_required = true,
197 198 199 200
	},
	{
		.id = QCA6174_HW_2_1_VERSION,
		.dev_id = QCA6174_2_1_DEVICE_ID,
M
Michal Kazior 已提交
201 202 203
		.name = "qca6174 hw2.1",
		.patch_load_addr = QCA6174_HW_2_1_PATCH_LOAD_ADDR,
		.uart_pin = 6,
204
		.otp_exe_param = 0,
205
		.channel_counters_freq_hz = 88000,
206
		.max_probe_resp_desc_thres = 0,
207
		.cal_data_len = 8124,
M
Michal Kazior 已提交
208 209 210 211 212 213
		.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,
		},
214
		.hw_ops = &qca988x_ops,
215
		.decap_align_bytes = 4,
216
		.spectral_bin_discard = 0,
217
		.spectral_bin_offset = 0,
218 219
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
220
		.n_cipher_suites = 8,
221 222 223
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
224
		.target_64bit = false,
225
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
226
		.per_ce_irq = false,
227
		.shadow_reg_support = false,
228
		.rri_on_ddr = false,
229
		.hw_filter_reset_required = true,
M
Michal Kazior 已提交
230 231 232
	},
	{
		.id = QCA6174_HW_3_0_VERSION,
233
		.dev_id = QCA6174_2_1_DEVICE_ID,
M
Michal Kazior 已提交
234 235 236
		.name = "qca6174 hw3.0",
		.patch_load_addr = QCA6174_HW_3_0_PATCH_LOAD_ADDR,
		.uart_pin = 6,
237
		.otp_exe_param = 0,
238
		.channel_counters_freq_hz = 88000,
239
		.max_probe_resp_desc_thres = 0,
240
		.cal_data_len = 8124,
M
Michal Kazior 已提交
241 242 243 244 245 246
		.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,
		},
247
		.hw_ops = &qca988x_ops,
248
		.decap_align_bytes = 4,
249
		.spectral_bin_discard = 0,
250
		.spectral_bin_offset = 0,
251 252
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
253
		.n_cipher_suites = 8,
254 255 256
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
257
		.target_64bit = false,
258
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
259
		.per_ce_irq = false,
260
		.shadow_reg_support = false,
261
		.rri_on_ddr = false,
262
		.hw_filter_reset_required = true,
M
Michal Kazior 已提交
263
	},
M
Michal Kazior 已提交
264 265
	{
		.id = QCA6174_HW_3_2_VERSION,
266
		.dev_id = QCA6174_2_1_DEVICE_ID,
M
Michal Kazior 已提交
267 268 269
		.name = "qca6174 hw3.2",
		.patch_load_addr = QCA6174_HW_3_0_PATCH_LOAD_ADDR,
		.uart_pin = 6,
270
		.otp_exe_param = 0,
271
		.channel_counters_freq_hz = 88000,
272
		.max_probe_resp_desc_thres = 0,
273
		.cal_data_len = 8124,
M
Michal Kazior 已提交
274 275 276 277 278 279 280
		.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,
		},
281 282 283
		.hw_ops = &qca6174_ops,
		.hw_clk = qca6174_clk,
		.target_cpu_freq = 176000000,
284
		.decap_align_bytes = 4,
285
		.spectral_bin_discard = 0,
286
		.spectral_bin_offset = 0,
287 288
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
289
		.n_cipher_suites = 8,
290 291 292
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
293
		.target_64bit = false,
294
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
295
		.per_ce_irq = false,
296
		.shadow_reg_support = false,
297
		.rri_on_ddr = false,
298
		.hw_filter_reset_required = true,
M
Michal Kazior 已提交
299
	},
300 301
	{
		.id = QCA99X0_HW_2_0_DEV_VERSION,
302
		.dev_id = QCA99X0_2_0_DEVICE_ID,
303 304 305
		.name = "qca99x0 hw2.0",
		.patch_load_addr = QCA99X0_HW_2_0_PATCH_LOAD_ADDR,
		.uart_pin = 7,
306
		.otp_exe_param = 0x00000700,
307
		.continuous_frag_desc = true,
308
		.cck_rate_map_rev2 = true,
309
		.channel_counters_freq_hz = 150000,
310
		.max_probe_resp_desc_thres = 24,
311 312 313
		.tx_chain_mask = 0xf,
		.rx_chain_mask = 0xf,
		.max_spatial_stream = 4,
314
		.cal_data_len = 12064,
315 316 317 318 319 320
		.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,
		},
321
		.sw_decrypt_mcast_mgmt = true,
322
		.hw_ops = &qca99x0_ops,
323
		.decap_align_bytes = 1,
324
		.spectral_bin_discard = 4,
325
		.spectral_bin_offset = 0,
326 327
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
328
		.n_cipher_suites = 11,
329 330 331
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
332
		.target_64bit = false,
333
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
334
		.per_ce_irq = false,
335
		.shadow_reg_support = false,
336
		.rri_on_ddr = false,
337
		.hw_filter_reset_required = true,
338
	},
339 340 341 342 343 344
	{
		.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,
345
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_EACH,
346 347
		.otp_exe_param = 0x00000700,
		.continuous_frag_desc = true,
348
		.cck_rate_map_rev2 = true,
349 350 351 352 353 354 355 356 357 358 359 360
		.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,
		},
361
		.sw_decrypt_mcast_mgmt = true,
362
		.hw_ops = &qca99x0_ops,
363
		.decap_align_bytes = 1,
364
		.spectral_bin_discard = 12,
365
		.spectral_bin_offset = 8,
366 367 368 369 370 371

		/* Can do only 2x2 VHT160 or 80+80. 1560Mbps is 4x4 80Mhz
		 * or 2x2 160Mhz, long-guard-interval.
		 */
		.vht160_mcs_rx_highest = 1560,
		.vht160_mcs_tx_highest = 1560,
372
		.n_cipher_suites = 11,
373 374 375
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
376
		.target_64bit = false,
377
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
378
		.per_ce_irq = false,
379
		.shadow_reg_support = false,
380
		.rri_on_ddr = false,
381
		.hw_filter_reset_required = true,
382
	},
383 384 385 386 387 388
	{
		.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,
389
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_EACH,
390 391 392 393 394 395 396 397 398 399 400 401 402 403
		.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,
		},
404
		.sw_decrypt_mcast_mgmt = true,
405
		.hw_ops = &qca99x0_ops,
406
		.decap_align_bytes = 1,
407
		.spectral_bin_discard = 12,
408
		.spectral_bin_offset = 8,
409 410 411 412 413 414

		/* Can do only 1x1 VHT160 or 80+80. 780Mbps is 2x2 80Mhz or
		 * 1x1 160Mhz, long-guard-interval.
		 */
		.vht160_mcs_rx_highest = 780,
		.vht160_mcs_tx_highest = 780,
415
		.n_cipher_suites = 11,
416 417 418
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
419
		.target_64bit = false,
420
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
421
		.per_ce_irq = false,
422
		.shadow_reg_support = false,
423
		.rri_on_ddr = false,
424
		.hw_filter_reset_required = true,
425
	},
426 427 428 429 430 431 432 433 434
	{
		.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,
435
		.cal_data_len = 8124,
436 437 438 439 440 441
		.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,
		},
442
		.hw_ops = &qca988x_ops,
443
		.decap_align_bytes = 4,
444
		.spectral_bin_discard = 0,
445
		.spectral_bin_offset = 0,
446 447
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
448
		.n_cipher_suites = 8,
449 450 451
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
452
		.target_64bit = false,
453
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
454
		.per_ce_irq = false,
455
		.shadow_reg_support = false,
456
		.rri_on_ddr = false,
457
		.hw_filter_reset_required = true,
458
	},
459
	{
460
		.id = QCA9377_HW_1_1_DEV_VERSION,
461
		.dev_id = QCA9377_1_0_DEVICE_ID,
462
		.name = "qca9377 hw1.1",
463
		.patch_load_addr = QCA9377_HW_1_0_PATCH_LOAD_ADDR,
464
		.uart_pin = 6,
465
		.otp_exe_param = 0,
466 467
		.channel_counters_freq_hz = 88000,
		.max_probe_resp_desc_thres = 0,
468
		.cal_data_len = 8124,
469 470 471 472 473 474
		.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,
		},
475 476 477
		.hw_ops = &qca6174_ops,
		.hw_clk = qca6174_clk,
		.target_cpu_freq = 176000000,
478
		.decap_align_bytes = 4,
479
		.spectral_bin_discard = 0,
480
		.spectral_bin_offset = 0,
481 482
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
483
		.n_cipher_suites = 8,
484 485 486
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
487
		.target_64bit = false,
488
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
489
		.per_ce_irq = false,
490
		.shadow_reg_support = false,
491
		.rri_on_ddr = false,
492
		.hw_filter_reset_required = true,
493
	},
R
Raja Mani 已提交
494 495 496 497 498 499
	{
		.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,
500
		.cc_wraparound_type = ATH10K_HW_CC_WRAP_SHIFTED_EACH,
R
Raja Mani 已提交
501 502
		.otp_exe_param = 0x0010000,
		.continuous_frag_desc = true,
503
		.cck_rate_map_rev2 = true,
R
Raja Mani 已提交
504 505
		.channel_counters_freq_hz = 125000,
		.max_probe_resp_desc_thres = 24,
506 507 508
		.tx_chain_mask = 0x3,
		.rx_chain_mask = 0x3,
		.max_spatial_stream = 2,
509
		.cal_data_len = 12064,
R
Raja Mani 已提交
510 511 512 513 514 515
		.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,
		},
516
		.sw_decrypt_mcast_mgmt = true,
517
		.hw_ops = &qca99x0_ops,
518
		.decap_align_bytes = 1,
519
		.spectral_bin_discard = 4,
520
		.spectral_bin_offset = 0,
521 522
		.vht160_mcs_rx_highest = 0,
		.vht160_mcs_tx_highest = 0,
523
		.n_cipher_suites = 11,
524 525 526
		.num_peers = TARGET_TLV_NUM_PEERS,
		.ast_skid_limit = 0x10,
		.num_wds_entries = 0x20,
527
		.target_64bit = false,
528
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL,
529
		.per_ce_irq = false,
530
		.shadow_reg_support = false,
531
		.rri_on_ddr = false,
532
		.hw_filter_reset_required = true,
R
Raja Mani 已提交
533
	},
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
	{
		.id = WCN3990_HW_1_0_DEV_VERSION,
		.dev_id = 0,
		.name = "wcn3990 hw1.0",
		.continuous_frag_desc = true,
		.tx_chain_mask = 0x7,
		.rx_chain_mask = 0x7,
		.max_spatial_stream = 4,
		.fw = {
			.dir = WCN3990_HW_1_0_FW_DIR,
		},
		.sw_decrypt_mcast_mgmt = true,
		.hw_ops = &wcn3990_ops,
		.decap_align_bytes = 1,
		.num_peers = TARGET_HL_10_TLV_NUM_PEERS,
		.ast_skid_limit = TARGET_HL_10_TLV_AST_SKID_LIMIT,
		.num_wds_entries = TARGET_HL_10_TLV_NUM_WDS_ENTRIES,
551
		.target_64bit = true,
552
		.rx_ring_fill_level = HTT_RX_RING_FILL_LEVEL_DUAL_MAC,
553
		.per_ce_irq = true,
554
		.shadow_reg_support = true,
555
		.rri_on_ddr = true,
556
		.hw_filter_reset_required = false,
557
	},
558 559
};

560 561 562 563 564 565 566 567 568 569 570
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",
571
	[ATH10K_FW_FEATURE_RAW_MODE_SUPPORT] = "raw-mode",
M
Maharaja 已提交
572
	[ATH10K_FW_FEATURE_SUPPORTS_ADAPTIVE_CCA] = "adaptive-cca",
573
	[ATH10K_FW_FEATURE_MFP_SUPPORT] = "mfp",
574
	[ATH10K_FW_FEATURE_PEER_FLOW_CONTROL] = "peer-flow-ctrl",
575
	[ATH10K_FW_FEATURE_BTCOEX_PARAM] = "btcoex-param",
576
	[ATH10K_FW_FEATURE_SKIP_NULL_FUNC_WAR] = "skip-null-func-war",
577
	[ATH10K_FW_FEATURE_ALLOWS_MESH_BCAST] = "allows-mesh-bcast",
578
	[ATH10K_FW_FEATURE_NO_PS] = "no-ps",
579
	[ATH10K_FW_FEATURE_MGMT_TX_BY_REF] = "mgmt-tx-by-reference",
580
	[ATH10K_FW_FEATURE_NON_BMI] = "non-bmi",
581 582 583 584 585 586
};

static unsigned int ath10k_core_get_fw_feature_str(char *buf,
						   size_t buf_len,
						   enum ath10k_fw_features feat)
{
587 588 589 590
	/* make sure that ath10k_core_fw_feature_str[] gets updated */
	BUILD_BUG_ON(ARRAY_SIZE(ath10k_core_fw_feature_str) !=
		     ATH10K_FW_FEATURE_COUNT);

591 592 593 594 595 596 597 598 599 600 601 602
	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)
{
603
	size_t len = 0;
604 605 606
	int i;

	for (i = 0; i < ATH10K_FW_FEATURE_COUNT; i++) {
607
		if (test_bit(i, ar->normal_mode_fw.fw_file.fw_features)) {
608 609 610 611 612 613 614 615 616 617
			if (len > 0)
				len += scnprintf(buf + len, buf_len - len, ",");

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

618 619
static void ath10k_send_suspend_complete(struct ath10k *ar)
{
620
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot suspend complete\n");
621

622
	complete(&ar->target_suspend);
623 624
}

625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
static void ath10k_init_sdio(struct ath10k *ar)
{
	u32 param = 0;

	ath10k_bmi_write32(ar, hi_mbox_io_block_sz, 256);
	ath10k_bmi_write32(ar, hi_mbox_isr_yield_limit, 99);
	ath10k_bmi_read32(ar, hi_acs_flags, &param);

	param |= (HI_ACS_FLAGS_SDIO_SWAP_MAILBOX_SET |
		  HI_ACS_FLAGS_SDIO_REDUCE_TX_COMPL_SET |
		  HI_ACS_FLAGS_ALT_DATA_CREDIT_SIZE);

	ath10k_bmi_write32(ar, hi_acs_flags, param);
}

640 641 642 643 644 645 646 647 648
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) {
649
		ath10k_err(ar, "settings HTC version failed\n");
650 651 652 653 654 655
		return ret;
	}

	/* set the firmware mode to STA/IBSS/AP */
	ret = ath10k_bmi_read32(ar, hi_option_flag, &param_host);
	if (ret) {
656
		ath10k_err(ar, "setting firmware mode (1/2) failed\n");
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
		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) {
675
		ath10k_err(ar, "setting firmware mode (2/2) failed\n");
676 677 678 679 680 681
		return ret;
	}

	/* We do all byte-swapping on the host */
	ret = ath10k_bmi_write32(ar, hi_be, 0);
	if (ret) {
682
		ath10k_err(ar, "setting host CPU BE mode failed\n");
683 684 685 686 687 688 689
		return ret;
	}

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

	if (ret) {
690
		ath10k_err(ar, "setting FW data/desc swap flags failed\n");
691 692 693
		return ret;
	}

M
Michal Kazior 已提交
694 695 696 697 698 699 700 701 702 703 704
	/* 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;
	}

705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
	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);
723
	ret = firmware_request_nowarn(&fw, filename, ar->dev);
724 725 726
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot fw request '%s': %d\n",
		   filename, ret);

727 728 729 730 731 732
	if (ret)
		return ERR_PTR(ret);

	return fw;
}

733 734
static int ath10k_push_board_ext_data(struct ath10k *ar, const void *data,
				      size_t data_len)
735
{
736 737
	u32 board_data_size = ar->hw_params.fw.board_size;
	u32 board_ext_data_size = ar->hw_params.fw.board_ext_size;
738 739 740 741 742
	u32 board_ext_data_addr;
	int ret;

	ret = ath10k_bmi_read32(ar, hi_board_ext_data, &board_ext_data_addr);
	if (ret) {
743 744
		ath10k_err(ar, "could not read board ext data addr (%d)\n",
			   ret);
745 746 747
		return ret;
	}

748
	ath10k_dbg(ar, ATH10K_DBG_BOOT,
749
		   "boot push board extended data addr 0x%x\n",
750 751 752 753 754
		   board_ext_data_addr);

	if (board_ext_data_addr == 0)
		return 0;

755
	if (data_len != (board_data_size + board_ext_data_size)) {
756
		ath10k_err(ar, "invalid board (ext) data sizes %zu != %d+%d\n",
757
			   data_len, board_data_size, board_ext_data_size);
758 759 760 761
		return -EINVAL;
	}

	ret = ath10k_bmi_write_memory(ar, board_ext_data_addr,
762
				      data + board_data_size,
763 764
				      board_ext_data_size);
	if (ret) {
765
		ath10k_err(ar, "could not write board ext data (%d)\n", ret);
766 767 768 769 770 771
		return ret;
	}

	ret = ath10k_bmi_write32(ar, hi_board_ext_data_config,
				 (board_ext_data_size << 16) | 1);
	if (ret) {
772 773
		ath10k_err(ar, "could not write board ext data bit (%d)\n",
			   ret);
774 775 776 777 778 779
		return ret;
	}

	return 0;
}

780 781
static int ath10k_download_board_data(struct ath10k *ar, const void *data,
				      size_t data_len)
782
{
783
	u32 board_data_size = ar->hw_params.fw.board_size;
784 785 786
	u32 address;
	int ret;

787
	ret = ath10k_push_board_ext_data(ar, data, data_len);
788
	if (ret) {
789
		ath10k_err(ar, "could not push board ext data (%d)\n", ret);
790 791 792 793 794
		goto exit;
	}

	ret = ath10k_bmi_read32(ar, hi_board_data, &address);
	if (ret) {
795
		ath10k_err(ar, "could not read board data addr (%d)\n", ret);
796 797 798
		goto exit;
	}

799
	ret = ath10k_bmi_write_memory(ar, address, data,
800
				      min_t(u32, board_data_size,
801
					    data_len));
802
	if (ret) {
803
		ath10k_err(ar, "could not write board data (%d)\n", ret);
804 805 806 807 808
		goto exit;
	}

	ret = ath10k_bmi_write32(ar, hi_board_data_initialized, 1);
	if (ret) {
809
		ath10k_err(ar, "could not write board data bit (%d)\n", ret);
810 811 812 813 814 815 816
		goto exit;
	}

exit:
	return ret;
}

817 818
static int ath10k_download_cal_file(struct ath10k *ar,
				    const struct firmware *file)
819 820 821
{
	int ret;

822
	if (!file)
823 824
		return -ENOENT;

825 826
	if (IS_ERR(file))
		return PTR_ERR(file);
827

828
	ret = ath10k_download_board_data(ar, file->data, file->size);
829 830 831 832 833 834 835 836 837 838
	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;
}

839
static int ath10k_download_cal_dt(struct ath10k *ar, const char *dt_name)
840 841 842 843 844 845 846 847 848 849 850 851 852
{
	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;

853
	if (!of_get_property(node, dt_name, &data_len)) {
854 855 856 857
		/* The calibration data node is optional */
		return -ENOENT;
	}

858
	if (data_len != ar->hw_params.cal_data_len) {
859 860 861 862 863 864 865 866 867 868 869 870
		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;
	}

871
	ret = of_property_read_u8_array(node, dt_name, data, data_len);
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
	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;
}

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
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;
}

923 924 925 926
static int ath10k_core_get_board_id_from_otp(struct ath10k *ar)
{
	u32 result, address;
	u8 board_id, chip_id;
927
	int ret, bmi_board_id_param;
928 929 930

	address = ar->hw_params.patch_load_addr;

931 932
	if (!ar->normal_mode_fw.fw_file.otp_data ||
	    !ar->normal_mode_fw.fw_file.otp_len) {
933 934 935 936 937 938 939
		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",
940
		   address, ar->normal_mode_fw.fw_file.otp_len);
941

942 943 944
	ret = ath10k_bmi_fast_download(ar, address,
				       ar->normal_mode_fw.fw_file.otp_data,
				       ar->normal_mode_fw.fw_file.otp_len);
945 946 947 948 949 950
	if (ret) {
		ath10k_err(ar, "could not write otp for board id check: %d\n",
			   ret);
		return ret;
	}

951 952 953 954 955 956 957
	if (ar->cal_mode == ATH10K_PRE_CAL_MODE_DT ||
	    ar->cal_mode == ATH10K_PRE_CAL_MODE_FILE)
		bmi_board_id_param = BMI_PARAM_GET_FLASH_BOARD_ID;
	else
		bmi_board_id_param = BMI_PARAM_GET_EEPROM_BOARD_ID;

	ret = ath10k_bmi_execute(ar, address, bmi_board_id_param, &result);
958 959 960 961 962 963 964 965 966 967 968 969 970
	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);

971 972
	if ((result & ATH10K_BMI_BOARD_ID_STATUS_MASK) != 0 ||
	    (board_id == 0)) {
973 974
		ath10k_dbg(ar, ATH10K_DBG_BOOT,
			   "board id does not exist in otp, ignore it\n");
975
		return -EOPNOTSUPP;
976
	}
977 978 979 980 981 982 983 984

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

	return 0;
}

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 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
static void ath10k_core_check_bdfext(const struct dmi_header *hdr, void *data)
{
	struct ath10k *ar = data;
	const char *bdf_ext;
	const char *magic = ATH10K_SMBIOS_BDF_EXT_MAGIC;
	u8 bdf_enabled;
	int i;

	if (hdr->type != ATH10K_SMBIOS_BDF_EXT_TYPE)
		return;

	if (hdr->length != ATH10K_SMBIOS_BDF_EXT_LENGTH) {
		ath10k_dbg(ar, ATH10K_DBG_BOOT,
			   "wrong smbios bdf ext type length (%d).\n",
			   hdr->length);
		return;
	}

	bdf_enabled = *((u8 *)hdr + ATH10K_SMBIOS_BDF_EXT_OFFSET);
	if (!bdf_enabled) {
		ath10k_dbg(ar, ATH10K_DBG_BOOT, "bdf variant name not found.\n");
		return;
	}

	/* Only one string exists (per spec) */
	bdf_ext = (char *)hdr + hdr->length;

	if (memcmp(bdf_ext, magic, strlen(magic)) != 0) {
		ath10k_dbg(ar, ATH10K_DBG_BOOT,
			   "bdf variant magic does not match.\n");
		return;
	}

	for (i = 0; i < strlen(bdf_ext); i++) {
		if (!isascii(bdf_ext[i]) || !isprint(bdf_ext[i])) {
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
				   "bdf variant name contains non ascii chars.\n");
			return;
		}
	}

	/* Copy extension name without magic suffix */
	if (strscpy(ar->id.bdf_ext, bdf_ext + strlen(magic),
		    sizeof(ar->id.bdf_ext)) < 0) {
		ath10k_dbg(ar, ATH10K_DBG_BOOT,
			   "bdf variant string is longer than the buffer can accommodate (variant: %s)\n",
			    bdf_ext);
		return;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
		   "found and validated bdf variant smbios_type 0x%x bdf %s\n",
		   ATH10K_SMBIOS_BDF_EXT_TYPE, bdf_ext);
}

static int ath10k_core_check_smbios(struct ath10k *ar)
{
	ar->id.bdf_ext[0] = '\0';
	dmi_walk(ath10k_core_check_bdfext, ar);

	if (ar->id.bdf_ext[0] == '\0')
		return -ENODATA;

	return 0;
}

1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
static int ath10k_core_check_dt(struct ath10k *ar)
{
	struct device_node *node;
	const char *variant = NULL;

	node = ar->dev->of_node;
	if (!node)
		return -ENOENT;

	of_property_read_string(node, "qcom,ath10k-calibration-variant",
				&variant);
	if (!variant)
		return -ENODATA;

	if (strscpy(ar->id.bdf_ext, variant, sizeof(ar->id.bdf_ext)) < 0)
		ath10k_dbg(ar, ATH10K_DBG_BOOT,
			   "bdf variant string is longer than the buffer can accommodate (variant: %s)\n",
			    variant);

	return 0;
}

1073 1074
static int ath10k_download_and_run_otp(struct ath10k *ar)
{
1075
	u32 result, address = ar->hw_params.patch_load_addr;
1076
	u32 bmi_otp_exe_param = ar->hw_params.otp_exe_param;
1077 1078
	int ret;

1079 1080 1081
	ret = ath10k_download_board_data(ar,
					 ar->running_fw->board_data,
					 ar->running_fw->board_len);
1082 1083 1084 1085 1086
	if (ret) {
		ath10k_err(ar, "failed to download board data: %d\n", ret);
		return ret;
	}

1087 1088
	/* OTP is optional */

1089 1090
	if (!ar->running_fw->fw_file.otp_data ||
	    !ar->running_fw->fw_file.otp_len) {
1091
		ath10k_warn(ar, "Not running otp, calibration will be incorrect (otp-data %pK otp_len %zd)!\n",
1092 1093
			    ar->running_fw->fw_file.otp_data,
			    ar->running_fw->fw_file.otp_len);
1094
		return 0;
K
Kalle Valo 已提交
1095 1096
	}

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

1100 1101 1102
	ret = ath10k_bmi_fast_download(ar, address,
				       ar->running_fw->fw_file.otp_data,
				       ar->running_fw->fw_file.otp_len);
1103
	if (ret) {
1104
		ath10k_err(ar, "could not write otp (%d)\n", ret);
K
Kalle Valo 已提交
1105
		return ret;
1106 1107
	}

1108 1109 1110 1111 1112
	/* As of now pre-cal is valid for 10_4 variants */
	if (ar->cal_mode == ATH10K_PRE_CAL_MODE_DT ||
	    ar->cal_mode == ATH10K_PRE_CAL_MODE_FILE)
		bmi_otp_exe_param = BMI_PARAM_FLASH_SECTION_ALL;

1113
	ret = ath10k_bmi_execute(ar, address, bmi_otp_exe_param, &result);
1114
	if (ret) {
1115
		ath10k_err(ar, "could not execute otp (%d)\n", ret);
K
Kalle Valo 已提交
1116
		return ret;
1117 1118
	}

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

1121
	if (!(skip_otp || test_bit(ATH10K_FW_FEATURE_IGNORE_OTP_RESULT,
1122
				   ar->running_fw->fw_file.fw_features)) &&
1123
	    result != 0) {
1124
		ath10k_err(ar, "otp calibration failed: %d", result);
K
Kalle Valo 已提交
1125 1126 1127 1128
		return -EINVAL;
	}

	return 0;
1129 1130
}

1131
static int ath10k_download_fw(struct ath10k *ar)
1132
{
K
Kalle Valo 已提交
1133 1134
	u32 address, data_len;
	const void *data;
1135 1136 1137 1138
	int ret;

	address = ar->hw_params.patch_load_addr;

1139 1140 1141
	data = ar->running_fw->fw_file.firmware_data;
	data_len = ar->running_fw->fw_file.firmware_len;

1142
	ret = ath10k_swap_code_seg_configure(ar, &ar->running_fw->fw_file);
1143 1144 1145 1146
	if (ret) {
		ath10k_err(ar, "failed to configure fw code swap: %d\n",
			   ret);
		return ret;
K
Kalle Valo 已提交
1147 1148 1149
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
1150
		   "boot uploading firmware image %pK len %d\n",
1151
		   data, data_len);
K
Kalle Valo 已提交
1152 1153

	ret = ath10k_bmi_fast_download(ar, address, data, data_len);
1154
	if (ret) {
1155 1156
		ath10k_err(ar, "failed to download firmware: %d\n",
			   ret);
K
Kalle Valo 已提交
1157
		return ret;
1158 1159
	}

1160 1161 1162
	return ret;
}

1163
static void ath10k_core_free_board_files(struct ath10k *ar)
1164
{
1165 1166
	if (!IS_ERR(ar->normal_mode_fw.board))
		release_firmware(ar->normal_mode_fw.board);
1167

1168 1169 1170
	ar->normal_mode_fw.board = NULL;
	ar->normal_mode_fw.board_data = NULL;
	ar->normal_mode_fw.board_len = 0;
1171 1172 1173 1174
}

static void ath10k_core_free_firmware_files(struct ath10k *ar)
{
1175 1176
	if (!IS_ERR(ar->normal_mode_fw.fw_file.firmware))
		release_firmware(ar->normal_mode_fw.fw_file.firmware);
1177

1178
	if (!IS_ERR(ar->cal_file))
1179 1180
		release_firmware(ar->cal_file);

1181 1182 1183
	if (!IS_ERR(ar->pre_cal_file))
		release_firmware(ar->pre_cal_file);

1184
	ath10k_swap_code_seg_release(ar, &ar->normal_mode_fw.fw_file);
1185

1186 1187
	ar->normal_mode_fw.fw_file.otp_data = NULL;
	ar->normal_mode_fw.fw_file.otp_len = 0;
1188

1189 1190 1191
	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;
1192 1193

	ar->cal_file = NULL;
1194
	ar->pre_cal_file = NULL;
1195 1196 1197 1198 1199 1200
}

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

1201 1202 1203 1204 1205 1206 1207 1208
	/* 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;

1209 1210 1211 1212 1213 1214 1215 1216
	/* 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);
1217
success:
1218 1219 1220 1221
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "found calibration file %s/%s\n",
		   ATH10K_FW_DIR, filename);

	return 0;
1222 1223
}

1224
static int ath10k_core_fetch_board_data_api_1(struct ath10k *ar)
1225
{
1226 1227 1228 1229
	if (!ar->hw_params.fw.board) {
		ath10k_err(ar, "failed to find board file fw entry\n");
		return -EINVAL;
	}
1230

1231 1232 1233 1234 1235
	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);
1236

1237 1238
	ar->normal_mode_fw.board_data = ar->normal_mode_fw.board->data;
	ar->normal_mode_fw.board_len = ar->normal_mode_fw.board->size;
1239

1240 1241 1242
	return 0;
}

1243 1244 1245
static int ath10k_core_parse_bd_ie_board(struct ath10k *ar,
					 const void *buf, size_t buf_len,
					 const char *boardname)
1246
{
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
	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);

1298 1299
			ar->normal_mode_fw.board_data = board_ie_data;
			ar->normal_mode_fw.board_len = board_ie_len;
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313

			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;
1314 1315
	}

1316 1317 1318 1319 1320 1321 1322
	/* no match found */
	ret = -ENOENT;

out:
	return ret;
}

1323 1324 1325 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
static int ath10k_core_search_bd(struct ath10k *ar,
				 const char *boardname,
				 const u8 *data,
				 size_t len)
{
	size_t ie_len;
	struct ath10k_fw_ie *hdr;
	int ret = -ENOENT, ie_id;

	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);
			return -EINVAL;
		}

		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;

			/* either found or error, so stop searching */
			goto out;
		}

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

		len -= ie_len;
		data += ie_len;
	}

out:
	/* return result of parse_bd_ie_board() or -ENOENT */
	return ret;
}

1370 1371
static int ath10k_core_fetch_board_data_api_n(struct ath10k *ar,
					      const char *boardname,
1372
					      const char *fallback_boardname,
1373 1374
					      const char *filename)
{
1375
	size_t len, magic_len;
1376
	const u8 *data;
1377
	int ret;
1378

1379 1380 1381 1382 1383
	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);
1384

1385 1386
	data = ar->normal_mode_fw.board->data;
	len = ar->normal_mode_fw.board->size;
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414

	/* 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;

1415 1416
	/* attempt to find boardname in the IE list */
	ret = ath10k_core_search_bd(ar, boardname, data, len);
1417

1418 1419 1420
	/* if we didn't find it and have a fallback name, try that */
	if (ret == -ENOENT && fallback_boardname)
		ret = ath10k_core_search_bd(ar, fallback_boardname, data, len);
1421

1422
	if (ret == -ENOENT) {
1423 1424
		ath10k_err(ar,
			   "failed to fetch board data for %s from %s/%s\n",
1425
			   boardname, ar->hw_params.fw.dir, filename);
1426 1427 1428
		ret = -ENODATA;
	}

1429 1430 1431
	if (ret)
		goto err;

1432 1433 1434 1435 1436 1437 1438 1439
	return 0;

err:
	ath10k_core_free_board_files(ar);
	return ret;
}

static int ath10k_core_create_board_name(struct ath10k *ar, char *name,
1440
					 size_t name_len, bool with_variant)
1441
{
1442 1443 1444
	/* strlen(',variant=') + strlen(ar->id.bdf_ext) */
	char variant[9 + ATH10K_SMBIOS_BDF_EXT_STR_LENGTH] = { 0 };

1445
	if (with_variant && ar->id.bdf_ext[0] != '\0')
1446 1447 1448
		scnprintf(variant, sizeof(variant), ",variant=%s",
			  ar->id.bdf_ext);

1449 1450
	if (ar->id.bmi_ids_valid) {
		scnprintf(name, name_len,
1451
			  "bus=%s,bmi-chip-id=%d,bmi-board-id=%d%s",
1452 1453
			  ath10k_bus_str(ar->hif.bus),
			  ar->id.bmi_chip_id,
1454
			  ar->id.bmi_board_id, variant);
1455 1456 1457
		goto out;
	}

1458
	scnprintf(name, name_len,
1459
		  "bus=%s,vendor=%04x,device=%04x,subsystem-vendor=%04x,subsystem-device=%04x%s",
1460 1461
		  ath10k_bus_str(ar->hif.bus),
		  ar->id.vendor, ar->id.device,
1462
		  ar->id.subsystem_vendor, ar->id.subsystem_device, variant);
1463
out:
1464
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot using board name '%s'\n", name);
1465 1466 1467 1468 1469 1470

	return 0;
}

static int ath10k_core_fetch_board_file(struct ath10k *ar)
{
1471
	char boardname[100], fallback_boardname[100];
1472 1473
	int ret;

1474 1475
	ret = ath10k_core_create_board_name(ar, boardname,
					    sizeof(boardname), true);
1476 1477 1478
	if (ret) {
		ath10k_err(ar, "failed to create board name: %d", ret);
		return ret;
1479 1480
	}

1481 1482 1483 1484 1485 1486 1487
	ret = ath10k_core_create_board_name(ar, fallback_boardname,
					    sizeof(boardname), false);
	if (ret) {
		ath10k_err(ar, "failed to create fallback board name: %d", ret);
		return ret;
	}

1488 1489
	ar->bd_api = 2;
	ret = ath10k_core_fetch_board_data_api_n(ar, boardname,
1490
						 fallback_boardname,
1491 1492 1493 1494 1495 1496
						 ATH10K_BOARD_API2_FILE);
	if (!ret)
		goto success;

	ar->bd_api = 1;
	ret = ath10k_core_fetch_board_data_api_1(ar);
1497
	if (ret) {
1498 1499
		ath10k_err(ar, "failed to fetch board-2.bin or board.bin from %s\n",
			   ar->hw_params.fw.dir);
1500 1501
		return ret;
	}
1502

1503 1504
success:
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "using board api %d\n", ar->bd_api);
1505 1506 1507
	return 0;
}

1508 1509
int ath10k_core_fetch_firmware_api_n(struct ath10k *ar, const char *name,
				     struct ath10k_fw_file *fw_file)
1510 1511 1512 1513 1514
{
	size_t magic_len, len, ie_len;
	int ie_id, i, index, bit, ret;
	struct ath10k_fw_ie *hdr;
	const u8 *data;
1515
	__le32 *timestamp, *version;
1516 1517

	/* first fetch the firmware file (firmware-*.bin) */
1518 1519
	fw_file->firmware = ath10k_fetch_fw_file(ar, ar->hw_params.fw.dir,
						 name);
1520
	if (IS_ERR(fw_file->firmware))
1521
		return PTR_ERR(fw_file->firmware);
1522

1523 1524
	data = fw_file->firmware->data;
	len = fw_file->firmware->size;
1525 1526 1527 1528 1529

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

	if (len < magic_len) {
1530
		ath10k_err(ar, "firmware file '%s/%s' too small to contain magic: %zu\n",
1531
			   ar->hw_params.fw.dir, name, len);
1532 1533
		ret = -EINVAL;
		goto err;
1534 1535 1536
	}

	if (memcmp(data, ATH10K_FIRMWARE_MAGIC, magic_len) != 0) {
1537
		ath10k_err(ar, "invalid firmware magic\n");
1538 1539
		ret = -EINVAL;
		goto err;
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
	}

	/* 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) {
1559
			ath10k_err(ar, "invalid length for FW IE %d (%zu < %zu)\n",
1560
				   ie_id, len, ie_len);
1561 1562
			ret = -EINVAL;
			goto err;
1563 1564 1565 1566
		}

		switch (ie_id) {
		case ATH10K_FW_IE_FW_VERSION:
1567
			if (ie_len > sizeof(fw_file->fw_version) - 1)
1568 1569
				break;

1570 1571
			memcpy(fw_file->fw_version, data, ie_len);
			fw_file->fw_version[ie_len] = '\0';
1572

1573
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
1574
				   "found fw version %s\n",
1575
				    fw_file->fw_version);
1576 1577 1578 1579 1580 1581 1582
			break;
		case ATH10K_FW_IE_TIMESTAMP:
			if (ie_len != sizeof(u32))
				break;

			timestamp = (__le32 *)data;

1583
			ath10k_dbg(ar, ATH10K_DBG_BOOT, "found fw timestamp %d\n",
1584 1585 1586
				   le32_to_cpup(timestamp));
			break;
		case ATH10K_FW_IE_FEATURES:
1587
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597
				   "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;

1598
				if (data[index] & (1 << bit)) {
1599
					ath10k_dbg(ar, ATH10K_DBG_BOOT,
1600 1601
						   "Enabling feature bit: %i\n",
						   i);
1602
					__set_bit(i, fw_file->fw_features);
1603
				}
1604 1605
			}

1606
			ath10k_dbg_dump(ar, ATH10K_DBG_BOOT, "features", "",
1607
					fw_file->fw_features,
1608
					sizeof(fw_file->fw_features));
1609 1610
			break;
		case ATH10K_FW_IE_FW_IMAGE:
1611
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
1612 1613 1614
				   "found fw image ie (%zd B)\n",
				   ie_len);

1615 1616
			fw_file->firmware_data = data;
			fw_file->firmware_len = ie_len;
1617 1618 1619

			break;
		case ATH10K_FW_IE_OTP_IMAGE:
1620
			ath10k_dbg(ar, ATH10K_DBG_BOOT,
1621 1622 1623
				   "found otp image ie (%zd B)\n",
				   ie_len);

1624 1625
			fw_file->otp_data = data;
			fw_file->otp_len = ie_len;
1626 1627

			break;
1628 1629 1630 1631 1632 1633
		case ATH10K_FW_IE_WMI_OP_VERSION:
			if (ie_len != sizeof(u32))
				break;

			version = (__le32 *)data;

1634
			fw_file->wmi_op_version = le32_to_cpup(version);
1635 1636

			ath10k_dbg(ar, ATH10K_DBG_BOOT, "found fw ie wmi op version %d\n",
1637
				   fw_file->wmi_op_version);
1638
			break;
1639 1640 1641 1642 1643 1644
		case ATH10K_FW_IE_HTT_OP_VERSION:
			if (ie_len != sizeof(u32))
				break;

			version = (__le32 *)data;

1645
			fw_file->htt_op_version = le32_to_cpup(version);
1646 1647

			ath10k_dbg(ar, ATH10K_DBG_BOOT, "found fw ie htt op version %d\n",
1648
				   fw_file->htt_op_version);
1649
			break;
1650 1651 1652 1653
		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);
1654 1655
			fw_file->codeswap_data = data;
			fw_file->codeswap_len = ie_len;
1656
			break;
1657
		default:
1658
			ath10k_warn(ar, "Unknown FW IE: %u\n",
1659 1660 1661 1662
				    le32_to_cpu(hdr->id));
			break;
		}

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

1666 1667
		len -= ie_len;
		data += ie_len;
1668
	}
1669

1670 1671
	if (!test_bit(ATH10K_FW_FEATURE_NON_BMI, fw_file->fw_features) &&
	    (!fw_file->firmware_data || !fw_file->firmware_len)) {
1672
		ath10k_warn(ar, "No ATH10K_FW_IE_FW_IMAGE found from '%s/%s', skipping\n",
1673
			    ar->hw_params.fw.dir, name);
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
		ret = -ENOMEDIUM;
		goto err;
	}

	return 0;

err:
	ath10k_core_free_firmware_files(ar);
	return ret;
}

1685 1686 1687
static void ath10k_core_get_fw_name(struct ath10k *ar, char *fw_name,
				    size_t fw_name_len, int fw_api)
{
1688 1689
	switch (ar->hif.bus) {
	case ATH10K_BUS_SDIO:
1690
	case ATH10K_BUS_USB:
1691 1692 1693 1694 1695 1696
		scnprintf(fw_name, fw_name_len, "%s-%s-%d.bin",
			  ATH10K_FW_FILE_BASE, ath10k_bus_str(ar->hif.bus),
			  fw_api);
		break;
	case ATH10K_BUS_PCI:
	case ATH10K_BUS_AHB:
1697
	case ATH10K_BUS_SNOC:
1698 1699 1700 1701
		scnprintf(fw_name, fw_name_len, "%s-%d.bin",
			  ATH10K_FW_FILE_BASE, fw_api);
		break;
	}
1702 1703
}

1704 1705
static int ath10k_core_fetch_firmware_files(struct ath10k *ar)
{
1706 1707
	int ret, i;
	char fw_name[100];
1708

1709 1710 1711
	/* calibration file is optional, don't check for any errors */
	ath10k_fetch_cal_file(ar);

1712 1713 1714 1715
	for (i = ATH10K_FW_API_MAX; i >= ATH10K_FW_API_MIN; i--) {
		ar->fw_api = i;
		ath10k_dbg(ar, ATH10K_DBG_BOOT, "trying fw api %d\n",
			   ar->fw_api);
K
Kalle Valo 已提交
1716

1717 1718 1719 1720 1721 1722
		ath10k_core_get_fw_name(ar, fw_name, sizeof(fw_name), ar->fw_api);
		ret = ath10k_core_fetch_firmware_api_n(ar, fw_name,
						       &ar->normal_mode_fw.fw_file);
		if (!ret)
			goto success;
	}
1723

1724
	/* we end up here if we couldn't fetch any firmware */
1725

1726 1727 1728
	ath10k_err(ar, "Failed to find firmware-N.bin (N between %d and %d) from %s: %d",
		   ATH10K_FW_API_MIN, ATH10K_FW_API_MAX, ar->hw_params.fw.dir,
		   ret);
1729

1730
	return ret;
1731

1732
success:
1733
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "using fw api %d\n", ar->fw_api);
1734 1735 1736 1737

	return 0;
}

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 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795
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;
}

1796
static int ath10k_download_cal_data(struct ath10k *ar)
1797 1798 1799
{
	int ret;

1800 1801 1802 1803 1804 1805 1806 1807
	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);

1808
	ret = ath10k_download_cal_file(ar, ar->cal_file);
1809 1810 1811 1812 1813 1814
	if (ret == 0) {
		ar->cal_mode = ATH10K_CAL_MODE_FILE;
		goto done;
	}

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

1818
	ret = ath10k_download_cal_dt(ar, "qcom,ath10k-calibration-data");
1819 1820 1821 1822 1823 1824
	if (ret == 0) {
		ar->cal_mode = ATH10K_CAL_MODE_DT;
		goto done;
	}

	ath10k_dbg(ar, ATH10K_DBG_BOOT,
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835
		   "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",
1836 1837
		   ret);

1838
	ret = ath10k_download_and_run_otp(ar);
1839
	if (ret) {
1840
		ath10k_err(ar, "failed to run otp: %d\n", ret);
1841
		return ret;
1842
	}
1843

1844 1845 1846 1847 1848 1849
	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;
1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
}

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) {
1862
		ath10k_warn(ar, "could not disable UART prints (%d)\n", ret);
1863 1864 1865
		return ret;
	}

1866
	if (!uart_print)
1867 1868
		return 0;

1869
	ret = ath10k_bmi_write32(ar, hi_dbg_uart_txpin, ar->hw_params.uart_pin);
1870
	if (ret) {
1871
		ath10k_warn(ar, "could not enable UART prints (%d)\n", ret);
1872 1873 1874 1875 1876
		return ret;
	}

	ret = ath10k_bmi_write32(ar, hi_serial_enable, 1);
	if (ret) {
1877
		ath10k_warn(ar, "could not enable UART prints (%d)\n", ret);
1878 1879 1880
		return ret;
	}

1881 1882 1883
	/* Set the UART baud rate to 19200. */
	ret = ath10k_bmi_write32(ar, hi_desired_baud_rate, 19200);
	if (ret) {
1884
		ath10k_warn(ar, "could not set the baud rate (%d)\n", ret);
1885 1886 1887
		return ret;
	}

1888
	ath10k_info(ar, "UART prints enabled\n");
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899
	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];

1900 1901
		if (hw_params->id == ar->target_version &&
		    hw_params->dev_id == ar->dev_id)
1902 1903 1904 1905
			break;
	}

	if (i == ARRAY_SIZE(ath10k_hw_params_list)) {
1906
		ath10k_err(ar, "Unsupported hardware version: 0x%x\n",
1907 1908 1909 1910 1911 1912
			   ar->target_version);
		return -EINVAL;
	}

	ar->hw_params = *hw_params;

1913
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "Hardware name %s version 0x%x\n",
1914
		   ar->hw_params.name, ar->target_version);
1915 1916 1917 1918

	return 0;
}

1919 1920 1921
static void ath10k_core_restart(struct work_struct *work)
{
	struct ath10k *ar = container_of(work, struct ath10k, restart_work);
1922
	int ret;
1923

M
Michal Kazior 已提交
1924 1925 1926 1927 1928 1929 1930 1931 1932
	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);
1933 1934 1935 1936 1937 1938 1939 1940
	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 已提交
1941 1942 1943 1944
	wake_up(&ar->htt.empty_tx_wq);
	wake_up(&ar->wmi.tx_credits_wq);
	wake_up(&ar->peer_mapping_wq);

1945 1946 1947 1948 1949 1950 1951
	/* TODO: We can have one instance of cancelling coverage_class_work by
	 * moving it to ath10k_halt(), so that both stop() and restart() would
	 * call that but it takes conf_mutex() and if we call cancel_work_sync()
	 * with conf_mutex it will deadlock.
	 */
	cancel_work_sync(&ar->set_coverage_class_work);

1952 1953 1954 1955 1956
	mutex_lock(&ar->conf_mutex);

	switch (ar->state) {
	case ATH10K_STATE_ON:
		ar->state = ATH10K_STATE_RESTARTING;
1957
		ath10k_halt(ar);
1958
		ath10k_scan_finish(ar);
1959 1960 1961
		ieee80211_restart_hw(ar->hw);
		break;
	case ATH10K_STATE_OFF:
1962
		/* this can happen if driver is being unloaded
1963 1964
		 * or if the crash happens during FW probing
		 */
1965
		ath10k_warn(ar, "cannot restart a device that hasn't been started\n");
1966 1967
		break;
	case ATH10K_STATE_RESTARTING:
1968 1969
		/* hw restart might be requested from multiple places */
		break;
1970 1971 1972 1973
	case ATH10K_STATE_RESTARTED:
		ar->state = ATH10K_STATE_WEDGED;
		/* fall through */
	case ATH10K_STATE_WEDGED:
1974
		ath10k_warn(ar, "device is wedged, will not restart\n");
1975
		break;
K
Kalle Valo 已提交
1976 1977 1978
	case ATH10K_STATE_UTF:
		ath10k_warn(ar, "firmware restart in UTF mode not supported\n");
		break;
1979 1980 1981
	}

	mutex_unlock(&ar->conf_mutex);
1982

1983
	ret = ath10k_coredump_submit(ar);
1984 1985 1986
	if (ret)
		ath10k_warn(ar, "failed to send firmware crash dump via devcoredump: %d",
			    ret);
1987 1988
}

1989 1990 1991 1992 1993 1994 1995 1996 1997
static void ath10k_core_set_coverage_class_work(struct work_struct *work)
{
	struct ath10k *ar = container_of(work, struct ath10k,
					 set_coverage_class_work);

	if (ar->hw_params.hw_ops->set_coverage_class)
		ar->hw_params.hw_ops->set_coverage_class(ar, -1);
}

1998
static int ath10k_core_init_firmware_features(struct ath10k *ar)
1999
{
2000 2001 2002 2003
	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)) {
2004 2005 2006 2007
		ath10k_err(ar, "feature bits corrupted: 10.2 feature requires 10.x feature to be set as well");
		return -EINVAL;
	}

2008
	if (fw_file->wmi_op_version >= ATH10K_FW_WMI_OP_VERSION_MAX) {
2009
		ath10k_err(ar, "unsupported WMI OP version (max %d): %d\n",
2010
			   ATH10K_FW_WMI_OP_VERSION_MAX, fw_file->wmi_op_version);
2011 2012 2013
		return -EINVAL;
	}

2014 2015 2016 2017 2018 2019 2020 2021
	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,
2022
			      fw_file->fw_features)) {
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038
			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 已提交
2039 2040
	if (rawmode) {
		if (!test_bit(ATH10K_FW_FEATURE_RAW_MODE_SUPPORT,
2041
			      fw_file->fw_features)) {
B
Bob Copeland 已提交
2042 2043 2044 2045 2046 2047
			ath10k_err(ar, "rawmode = 1 requires support from firmware");
			return -EINVAL;
		}
		set_bit(ATH10K_FLAG_RAW_MODE, &ar->dev_flags);
	}

2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062
	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;
	}

2063 2064 2065
	/* Backwards compatibility for firmwares without
	 * ATH10K_FW_IE_WMI_OP_VERSION.
	 */
2066
	if (fw_file->wmi_op_version == ATH10K_FW_WMI_OP_VERSION_UNSET) {
2067
		if (test_bit(ATH10K_FW_FEATURE_WMI_10X, fw_file->fw_features)) {
2068
			if (test_bit(ATH10K_FW_FEATURE_WMI_10_2,
2069
				     fw_file->fw_features))
2070
				fw_file->wmi_op_version = ATH10K_FW_WMI_OP_VERSION_10_2;
2071
			else
2072
				fw_file->wmi_op_version = ATH10K_FW_WMI_OP_VERSION_10_1;
2073
		} else {
2074
			fw_file->wmi_op_version = ATH10K_FW_WMI_OP_VERSION_MAIN;
2075 2076 2077
		}
	}

2078
	switch (fw_file->wmi_op_version) {
2079
	case ATH10K_FW_WMI_OP_VERSION_MAIN:
2080 2081
		ar->max_num_peers = TARGET_NUM_PEERS;
		ar->max_num_stations = TARGET_NUM_STATIONS;
2082
		ar->max_num_vdevs = TARGET_NUM_VDEVS;
2083
		ar->htt.max_num_pending_tx = TARGET_NUM_MSDU_DESC;
2084 2085
		ar->fw_stats_req_mask = WMI_STAT_PDEV | WMI_STAT_VDEV |
			WMI_STAT_PEER;
2086
		ar->max_spatial_stream = WMI_MAX_SPATIAL_STREAM;
2087 2088 2089
		break;
	case ATH10K_FW_WMI_OP_VERSION_10_1:
	case ATH10K_FW_WMI_OP_VERSION_10_2:
2090
	case ATH10K_FW_WMI_OP_VERSION_10_2_4:
2091
		if (ath10k_peer_stats_enabled(ar)) {
2092 2093 2094 2095 2096 2097
			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;
		}
2098
		ar->max_num_vdevs = TARGET_10X_NUM_VDEVS;
2099
		ar->htt.max_num_pending_tx = TARGET_10X_NUM_MSDU_DESC;
2100
		ar->fw_stats_req_mask = WMI_STAT_PEER;
2101
		ar->max_spatial_stream = WMI_MAX_SPATIAL_STREAM;
2102
		break;
M
Michal Kazior 已提交
2103 2104 2105
	case ATH10K_FW_WMI_OP_VERSION_TLV:
		ar->max_num_peers = TARGET_TLV_NUM_PEERS;
		ar->max_num_stations = TARGET_TLV_NUM_STATIONS;
2106
		ar->max_num_vdevs = TARGET_TLV_NUM_VDEVS;
2107
		ar->max_num_tdls_vdevs = TARGET_TLV_NUM_TDLS_VDEVS;
M
Michal Kazior 已提交
2108
		ar->htt.max_num_pending_tx = TARGET_TLV_NUM_MSDU_DESC;
2109
		ar->wow.max_num_patterns = TARGET_TLV_NUM_WOW_PATTERNS;
2110 2111
		ar->fw_stats_req_mask = WMI_STAT_PDEV | WMI_STAT_VDEV |
			WMI_STAT_PEER;
2112
		ar->max_spatial_stream = WMI_MAX_SPATIAL_STREAM;
2113
		ar->wmi.mgmt_max_num_pending_tx = TARGET_TLV_MGMT_NUM_MSDU_DESC;
M
Michal Kazior 已提交
2114
		break;
2115
	case ATH10K_FW_WMI_OP_VERSION_10_4:
2116 2117 2118 2119 2120
		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;
2121
		ar->fw_stats_req_mask = WMI_10_4_STAT_PEER |
2122 2123
					WMI_10_4_STAT_PEER_EXTD |
					WMI_10_4_STAT_VDEV_EXTD;
2124
		ar->max_spatial_stream = ar->hw_params.max_spatial_stream;
2125
		ar->max_num_tdls_vdevs = TARGET_10_4_NUM_TDLS_VDEVS;
2126 2127

		if (test_bit(ATH10K_FW_FEATURE_PEER_FLOW_CONTROL,
2128
			     fw_file->fw_features))
2129 2130 2131
			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;
2132
		break;
2133 2134 2135 2136
	case ATH10K_FW_WMI_OP_VERSION_UNSET:
	case ATH10K_FW_WMI_OP_VERSION_MAX:
		WARN_ON(1);
		return -EINVAL;
2137
	}
2138

2139 2140 2141
	/* Backwards compatibility for firmwares without
	 * ATH10K_FW_IE_HTT_OP_VERSION.
	 */
2142
	if (fw_file->htt_op_version == ATH10K_FW_HTT_OP_VERSION_UNSET) {
2143
		switch (fw_file->wmi_op_version) {
2144
		case ATH10K_FW_WMI_OP_VERSION_MAIN:
2145
			fw_file->htt_op_version = ATH10K_FW_HTT_OP_VERSION_MAIN;
2146 2147 2148 2149
			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:
2150
			fw_file->htt_op_version = ATH10K_FW_HTT_OP_VERSION_10_1;
2151 2152
			break;
		case ATH10K_FW_WMI_OP_VERSION_TLV:
2153
			fw_file->htt_op_version = ATH10K_FW_HTT_OP_VERSION_TLV;
2154
			break;
2155
		case ATH10K_FW_WMI_OP_VERSION_10_4:
2156 2157
		case ATH10K_FW_WMI_OP_VERSION_UNSET:
		case ATH10K_FW_WMI_OP_VERSION_MAX:
2158
			ath10k_err(ar, "htt op version not found from fw meta data");
2159 2160 2161 2162
			return -EINVAL;
		}
	}

2163
	return 0;
2164 2165
}

2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214
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;
}

2215 2216
int ath10k_core_start(struct ath10k *ar, enum ath10k_firmware_mode mode,
		      const struct ath10k_fw_components *fw)
2217 2218
{
	int status;
2219
	u32 val;
2220

2221 2222
	lockdep_assert_held(&ar->conf_mutex);

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

2225 2226
	ar->running_fw = fw;

2227 2228 2229
	if (!test_bit(ATH10K_FW_FEATURE_NON_BMI,
		      ar->running_fw->fw_file.fw_features)) {
		ath10k_bmi_start(ar);
2230

2231 2232 2233 2234
		if (ath10k_init_configure_target(ar)) {
			status = -EINVAL;
			goto err;
		}
2235

2236 2237
		status = ath10k_download_cal_data(ar);
		if (status)
2238
			goto err;
2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254

		/* Some of of qca988x solutions are having global reset issue
		 * 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.
		 */
		if (test_bit(ATH10K_FW_FEATURE_SUPPORTS_SKIP_CLOCK_INIT,
			     ar->running_fw->fw_file.fw_features)) {
			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;
			}
2255 2256
		}

2257 2258 2259
		status = ath10k_download_fw(ar);
		if (status)
			goto err;
2260

2261 2262 2263
		status = ath10k_init_uart(ar);
		if (status)
			goto err;
2264

2265 2266 2267
		if (ar->hif.bus == ATH10K_BUS_SDIO)
			ath10k_init_sdio(ar);
	}
2268

2269 2270
	ar->htc.htc_ops.target_send_suspend_complete =
		ath10k_send_suspend_complete;
2271

2272 2273
	status = ath10k_htc_init(ar);
	if (status) {
2274
		ath10k_err(ar, "could not init HTC (%d)\n", status);
2275 2276 2277
		goto err;
	}

2278 2279 2280 2281 2282 2283
	if (!test_bit(ATH10K_FW_FEATURE_NON_BMI,
		      ar->running_fw->fw_file.fw_features)) {
		status = ath10k_bmi_done(ar);
		if (status)
			goto err;
	}
2284 2285 2286

	status = ath10k_wmi_attach(ar);
	if (status) {
2287
		ath10k_err(ar, "WMI attach failed: %d\n", status);
2288
		goto err;
2289 2290
	}

M
Michal Kazior 已提交
2291 2292
	status = ath10k_htt_init(ar);
	if (status) {
2293
		ath10k_err(ar, "failed to init htt: %d\n", status);
M
Michal Kazior 已提交
2294 2295 2296
		goto err_wmi_detach;
	}

2297
	status = ath10k_htt_tx_start(&ar->htt);
M
Michal Kazior 已提交
2298
	if (status) {
2299
		ath10k_err(ar, "failed to alloc htt tx: %d\n", status);
M
Michal Kazior 已提交
2300 2301 2302
		goto err_wmi_detach;
	}

2303 2304 2305 2306 2307 2308
	/* 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));

M
Michal Kazior 已提交
2309 2310
	status = ath10k_htt_rx_alloc(&ar->htt);
	if (status) {
2311
		ath10k_err(ar, "failed to alloc htt rx: %d\n", status);
M
Michal Kazior 已提交
2312 2313 2314
		goto err_htt_tx_detach;
	}

M
Michal Kazior 已提交
2315 2316
	status = ath10k_hif_start(ar);
	if (status) {
2317
		ath10k_err(ar, "could not start HIF: %d\n", status);
M
Michal Kazior 已提交
2318
		goto err_htt_rx_detach;
M
Michal Kazior 已提交
2319 2320 2321 2322
	}

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

K
Kalle Valo 已提交
2327 2328 2329 2330 2331 2332
	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;
		}
2333 2334
	}

M
Michal Kazior 已提交
2335 2336
	status = ath10k_wmi_connect(ar);
	if (status) {
2337
		ath10k_err(ar, "could not connect wmi: %d\n", status);
M
Michal Kazior 已提交
2338 2339 2340 2341 2342
		goto err_hif_stop;
	}

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

K
Kalle Valo 已提交
2347 2348
	if (mode == ATH10K_FIRMWARE_MODE_NORMAL) {
		status = ath10k_wmi_wait_for_service_ready(ar);
2349
		if (status) {
K
Kalle Valo 已提交
2350 2351 2352
			ath10k_warn(ar, "wmi service ready event not received");
			goto err_hif_stop;
		}
M
Michal Kazior 已提交
2353
	}
2354

2355
	ath10k_dbg(ar, ATH10K_DBG_BOOT, "firmware %s booted\n",
2356
		   ar->hw->wiphy->fw_version);
2357

2358 2359
	if (test_bit(WMI_SERVICE_EXT_RES_CFG_SUPPORT, ar->wmi.svc_map) &&
	    mode == ATH10K_FIRMWARE_MODE_NORMAL) {
2360 2361 2362 2363
		val = 0;
		if (ath10k_peer_stats_enabled(ar))
			val = WMI_10_4_PEER_STATS;

2364 2365 2366
		/* Enable vdev stats by default */
		val |= WMI_10_4_VDEV_STATS;

2367 2368 2369
		if (test_bit(WMI_SERVICE_BSS_CHANNEL_INFO_64, ar->wmi.svc_map))
			val |= WMI_10_4_BSS_CHANNEL_INFO_64;

2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
		/* 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;

2380 2381 2382 2383 2384 2385 2386 2387
		if (test_bit(WMI_SERVICE_TDLS_EXPLICIT_MODE_ONLY,
			     ar->wmi.svc_map))
			val |= WMI_10_4_TDLS_EXPLICIT_MODE_ONLY;

		if (test_bit(WMI_SERVICE_TDLS_UAPSD_BUFFER_STA,
			     ar->wmi.svc_map))
			val |= WMI_10_4_TDLS_UAPSD_BUFFER_STA;

2388
		status = ath10k_mac_ext_resource_config(ar, val);
2389 2390 2391 2392 2393 2394 2395 2396
		if (status) {
			ath10k_err(ar,
				   "failed to send ext resource cfg command : %d\n",
				   status);
			goto err_hif_stop;
		}
	}

2397 2398
	status = ath10k_wmi_cmd_init(ar);
	if (status) {
2399 2400
		ath10k_err(ar, "could not send WMI init command (%d)\n",
			   status);
M
Michal Kazior 已提交
2401
		goto err_hif_stop;
2402 2403 2404
	}

	status = ath10k_wmi_wait_for_unified_ready(ar);
2405
	if (status) {
2406
		ath10k_err(ar, "wmi unified ready event not received\n");
M
Michal Kazior 已提交
2407
		goto err_hif_stop;
2408 2409
	}

2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
	/* 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.
	 */
2423 2424
	if (ar->hw_params.hw_filter_reset_required &&
	    mode == ATH10K_FIRMWARE_MODE_NORMAL) {
2425 2426 2427 2428 2429 2430
		status = ath10k_core_reset_rx_filter(ar);
		if (status) {
			ath10k_err(ar,
				   "failed to reset rx filter: %d\n", status);
			goto err_hif_stop;
		}
2431 2432
	}

2433 2434 2435 2436 2437 2438
	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;
	}

B
Ben Greear 已提交
2439 2440 2441 2442
	if (ar->max_num_vdevs >= 64)
		ar->free_vdev_map = 0xFFFFFFFFFFFFFFFFLL;
	else
		ar->free_vdev_map = (1LL << ar->max_num_vdevs) - 1;
2443 2444 2445

	INIT_LIST_HEAD(&ar->arvifs);

K
Kalle Valo 已提交
2446 2447 2448 2449 2450 2451 2452
	/* 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 已提交
2453
	}
2454

2455 2456
	status = ath10k_debug_start(ar);
	if (status)
M
Michal Kazior 已提交
2457
		goto err_hif_stop;
2458

2459 2460
	return 0;

M
Michal Kazior 已提交
2461 2462
err_hif_stop:
	ath10k_hif_stop(ar);
M
Michal Kazior 已提交
2463 2464 2465 2466
err_htt_rx_detach:
	ath10k_htt_rx_free(&ar->htt);
err_htt_tx_detach:
	ath10k_htt_tx_free(&ar->htt);
2467 2468 2469 2470 2471
err_wmi_detach:
	ath10k_wmi_detach(ar);
err:
	return status;
}
2472
EXPORT_SYMBOL(ath10k_core_start);
2473

2474 2475 2476
int ath10k_wait_for_suspend(struct ath10k *ar, u32 suspend_opt)
{
	int ret;
2477
	unsigned long time_left;
2478 2479 2480 2481 2482

	reinit_completion(&ar->target_suspend);

	ret = ath10k_wmi_pdev_suspend_target(ar, suspend_opt);
	if (ret) {
2483
		ath10k_warn(ar, "could not suspend target (%d)\n", ret);
2484 2485 2486
		return ret;
	}

2487
	time_left = wait_for_completion_timeout(&ar->target_suspend, 1 * HZ);
2488

2489
	if (!time_left) {
2490
		ath10k_warn(ar, "suspend timed out - target pause event never came\n");
2491 2492 2493 2494 2495 2496
		return -ETIMEDOUT;
	}

	return 0;
}

2497 2498
void ath10k_core_stop(struct ath10k *ar)
{
2499
	lockdep_assert_held(&ar->conf_mutex);
2500
	ath10k_debug_stop(ar);
2501

2502
	/* try to suspend target */
K
Kalle Valo 已提交
2503 2504
	if (ar->state != ATH10K_STATE_RESTARTING &&
	    ar->state != ATH10K_STATE_UTF)
2505 2506
		ath10k_wait_for_suspend(ar, WMI_PDEV_SUSPEND_AND_DISABLE_INTR);

M
Michal Kazior 已提交
2507
	ath10k_hif_stop(ar);
2508
	ath10k_htt_tx_stop(&ar->htt);
M
Michal Kazior 已提交
2509
	ath10k_htt_rx_free(&ar->htt);
2510 2511
	ath10k_wmi_detach(ar);
}
2512 2513 2514 2515 2516
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
2517 2518
 * hook will try to init it again) before registering
 */
2519 2520
static int ath10k_core_probe_fw(struct ath10k *ar)
{
2521 2522
	struct bmi_target_info target_info;
	int ret = 0;
2523 2524 2525

	ret = ath10k_hif_power_up(ar);
	if (ret) {
2526
		ath10k_err(ar, "could not power on hif bus (%d)\n", ret);
2527 2528 2529
		return ret;
	}

2530 2531 2532
	switch (ar->hif.bus) {
	case ATH10K_BUS_SDIO:
		memset(&target_info, 0, sizeof(target_info));
E
Erik Stromdahl 已提交
2533
		ret = ath10k_bmi_get_target_info_sdio(ar, &target_info);
2534 2535 2536 2537 2538 2539 2540 2541 2542
		if (ret) {
			ath10k_err(ar, "could not get target info (%d)\n", ret);
			goto err_power_down;
		}
		ar->target_version = target_info.version;
		ar->hw->wiphy->hw_version = target_info.version;
		break;
	case ATH10K_BUS_PCI:
	case ATH10K_BUS_AHB:
2543
	case ATH10K_BUS_USB:
2544
		memset(&target_info, 0, sizeof(target_info));
E
Erik Stromdahl 已提交
2545
		ret = ath10k_bmi_get_target_info(ar, &target_info);
2546 2547 2548 2549 2550 2551 2552 2553
		if (ret) {
			ath10k_err(ar, "could not get target info (%d)\n", ret);
			goto err_power_down;
		}
		ar->target_version = target_info.version;
		ar->hw->wiphy->hw_version = target_info.version;
		break;
	case ATH10K_BUS_SNOC:
2554 2555 2556 2557 2558 2559 2560 2561
		memset(&target_info, 0, sizeof(target_info));
		ret = ath10k_hif_get_target_info(ar, &target_info);
		if (ret) {
			ath10k_err(ar, "could not get target info (%d)\n", ret);
			goto err_power_down;
		}
		ar->target_version = target_info.version;
		ar->hw->wiphy->hw_version = target_info.version;
2562 2563 2564
		break;
	default:
		ath10k_err(ar, "incorrect hif bus type: %d\n", ar->hif.bus);
2565 2566 2567 2568
	}

	ret = ath10k_init_hw_params(ar);
	if (ret) {
2569
		ath10k_err(ar, "could not get hw params (%d)\n", ret);
2570
		goto err_power_down;
2571 2572 2573 2574
	}

	ret = ath10k_core_fetch_firmware_files(ar);
	if (ret) {
2575
		ath10k_err(ar, "could not fetch firmware files (%d)\n", ret);
2576
		goto err_power_down;
2577 2578
	}

2579 2580 2581 2582 2583
	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));

2584 2585
	ath10k_debug_print_hwfw_info(ar);

2586 2587 2588 2589 2590 2591 2592 2593 2594 2595
	if (!test_bit(ATH10K_FW_FEATURE_NON_BMI,
		      ar->normal_mode_fw.fw_file.fw_features)) {
		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);
		}
2596

2597 2598 2599 2600 2601 2602
		ret = ath10k_core_get_board_id_from_otp(ar);
		if (ret && ret != -EOPNOTSUPP) {
			ath10k_err(ar, "failed to get board id from otp: %d\n",
				   ret);
			goto err_free_firmware_files;
		}
2603

2604 2605 2606
		ret = ath10k_core_check_smbios(ar);
		if (ret)
			ath10k_dbg(ar, ATH10K_DBG_BOOT, "SMBIOS bdf variant name not set.\n");
2607

2608 2609 2610
		ret = ath10k_core_check_dt(ar);
		if (ret)
			ath10k_dbg(ar, ATH10K_DBG_BOOT, "DT bdf variant name not set.\n");
2611

2612 2613 2614 2615 2616
		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;
		}
2617

2618 2619
		ath10k_debug_print_board_info(ar);
	}
2620

2621 2622
	device_get_mac_address(ar->dev, ar->mac_addr, sizeof(ar->mac_addr));

2623 2624 2625 2626 2627 2628
	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;
	}
2629

2630 2631 2632 2633 2634 2635 2636 2637 2638
	if (!test_bit(ATH10K_FW_FEATURE_NON_BMI,
		      ar->normal_mode_fw.fw_file.fw_features)) {
		ret = ath10k_swap_code_seg_init(ar,
						&ar->normal_mode_fw.fw_file);
		if (ret) {
			ath10k_err(ar, "failed to initialize code swap segment: %d\n",
				   ret);
			goto err_free_firmware_files;
		}
2639 2640
	}

2641 2642
	mutex_lock(&ar->conf_mutex);

2643 2644
	ret = ath10k_core_start(ar, ATH10K_FIRMWARE_MODE_NORMAL,
				&ar->normal_mode_fw);
2645
	if (ret) {
2646
		ath10k_err(ar, "could not init core (%d)\n", ret);
2647
		goto err_unlock;
2648 2649
	}

2650
	ath10k_debug_print_boot_info(ar);
2651
	ath10k_core_stop(ar);
2652 2653 2654

	mutex_unlock(&ar->conf_mutex);

2655 2656
	ath10k_hif_power_down(ar);
	return 0;
2657 2658 2659 2660

err_unlock:
	mutex_unlock(&ar->conf_mutex);

2661
err_free_firmware_files:
2662 2663 2664 2665 2666 2667
	ath10k_core_free_firmware_files(ar);

err_power_down:
	ath10k_hif_power_down(ar);

	return ret;
2668
}
2669

2670
static void ath10k_core_register_work(struct work_struct *work)
2671
{
2672
	struct ath10k *ar = container_of(work, struct ath10k, register_work);
2673 2674
	int status;

2675 2676 2677
	/* peer stats are enabled by default */
	set_bit(ATH10K_FLAG_PEER_STATS, &ar->dev_flags);

2678 2679
	status = ath10k_core_probe_fw(ar);
	if (status) {
2680
		ath10k_err(ar, "could not probe fw (%d)\n", status);
2681
		goto err;
2682
	}
2683

2684
	status = ath10k_mac_register(ar);
2685
	if (status) {
2686
		ath10k_err(ar, "could not register to mac80211 (%d)\n", status);
2687
		goto err_release_fw;
2688
	}
2689

2690 2691 2692 2693 2694 2695
	status = ath10k_coredump_register(ar);
	if (status) {
		ath10k_err(ar, "unable to register coredump\n");
		goto err_unregister_mac;
	}

2696
	status = ath10k_debug_register(ar);
2697
	if (status) {
2698
		ath10k_err(ar, "unable to initialize debugfs\n");
2699
		goto err_unregister_coredump;
2700 2701
	}

2702 2703
	status = ath10k_spectral_create(ar);
	if (status) {
2704
		ath10k_err(ar, "failed to initialize spectral\n");
2705 2706 2707
		goto err_debug_destroy;
	}

2708 2709 2710 2711 2712 2713 2714
	status = ath10k_thermal_register(ar);
	if (status) {
		ath10k_err(ar, "could not register thermal device: %d\n",
			   status);
		goto err_spectral_destroy;
	}

2715 2716
	set_bit(ATH10K_FLAG_CORE_REGISTERED, &ar->dev_flags);
	return;
2717

2718 2719
err_spectral_destroy:
	ath10k_spectral_destroy(ar);
2720 2721
err_debug_destroy:
	ath10k_debug_destroy(ar);
2722 2723
err_unregister_coredump:
	ath10k_coredump_unregister(ar);
2724 2725
err_unregister_mac:
	ath10k_mac_unregister(ar);
2726 2727
err_release_fw:
	ath10k_core_free_firmware_files(ar);
2728
err:
2729 2730 2731
	/* TODO: It's probably a good idea to release device from the driver
	 * but calling device_release_driver() here will cause a deadlock.
	 */
2732 2733 2734 2735 2736 2737 2738 2739 2740
	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;
2741 2742 2743 2744 2745
}
EXPORT_SYMBOL(ath10k_core_register);

void ath10k_core_unregister(struct ath10k *ar)
{
2746 2747 2748 2749 2750
	cancel_work_sync(&ar->register_work);

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

2751
	ath10k_thermal_unregister(ar);
2752 2753 2754 2755 2756 2757
	/* 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);

2758 2759
	/* We must unregister from mac80211 before we stop HTC and HIF.
	 * Otherwise we will fail to submit commands to FW and mac80211 will be
2760 2761
	 * unhappy about callback failures.
	 */
2762
	ath10k_mac_unregister(ar);
2763

K
Kalle Valo 已提交
2764 2765
	ath10k_testmode_destroy(ar);

2766
	ath10k_core_free_firmware_files(ar);
2767
	ath10k_core_free_board_files(ar);
2768

2769
	ath10k_debug_unregister(ar);
2770 2771 2772
}
EXPORT_SYMBOL(ath10k_core_unregister);

M
Michal Kazior 已提交
2773
struct ath10k *ath10k_core_create(size_t priv_size, struct device *dev,
K
Kalle Valo 已提交
2774
				  enum ath10k_bus bus,
M
Michal Kazior 已提交
2775
				  enum ath10k_hw_rev hw_rev,
2776 2777 2778
				  const struct ath10k_hif_ops *hif_ops)
{
	struct ath10k *ar;
2779
	int ret;
2780

M
Michal Kazior 已提交
2781
	ar = ath10k_mac_create(priv_size);
2782 2783 2784 2785 2786 2787
	if (!ar)
		return NULL;

	ar->ath_common.priv = ar;
	ar->ath_common.hw = ar->hw;
	ar->dev = dev;
M
Michal Kazior 已提交
2788
	ar->hw_rev = hw_rev;
2789
	ar->hif.ops = hif_ops;
K
Kalle Valo 已提交
2790
	ar->hif.bus = bus;
2791

M
Michal Kazior 已提交
2792 2793
	switch (hw_rev) {
	case ATH10K_HW_QCA988X:
2794
	case ATH10K_HW_QCA9887:
M
Michal Kazior 已提交
2795
		ar->regs = &qca988x_regs;
2796
		ar->hw_ce_regs = &qcax_ce_regs;
2797
		ar->hw_values = &qca988x_values;
M
Michal Kazior 已提交
2798 2799
		break;
	case ATH10K_HW_QCA6174:
2800
	case ATH10K_HW_QCA9377:
M
Michal Kazior 已提交
2801
		ar->regs = &qca6174_regs;
2802
		ar->hw_ce_regs = &qcax_ce_regs;
2803
		ar->hw_values = &qca6174_values;
M
Michal Kazior 已提交
2804
		break;
2805
	case ATH10K_HW_QCA99X0:
2806
	case ATH10K_HW_QCA9984:
2807
		ar->regs = &qca99x0_regs;
2808
		ar->hw_ce_regs = &qcax_ce_regs;
2809 2810
		ar->hw_values = &qca99x0_values;
		break;
2811 2812
	case ATH10K_HW_QCA9888:
		ar->regs = &qca99x0_regs;
2813
		ar->hw_ce_regs = &qcax_ce_regs;
2814 2815
		ar->hw_values = &qca9888_values;
		break;
2816 2817
	case ATH10K_HW_QCA4019:
		ar->regs = &qca4019_regs;
2818
		ar->hw_ce_regs = &qcax_ce_regs;
2819 2820
		ar->hw_values = &qca4019_values;
		break;
2821 2822 2823 2824 2825
	case ATH10K_HW_WCN3990:
		ar->regs = &wcn3990_regs;
		ar->hw_ce_regs = &wcn3990_ce_regs;
		ar->hw_values = &wcn3990_values;
		break;
M
Michal Kazior 已提交
2826 2827 2828 2829 2830 2831 2832
	default:
		ath10k_err(ar, "unsupported core hardware revision %d\n",
			   hw_rev);
		ret = -ENOTSUPP;
		goto err_free_mac;
	}

2833 2834 2835 2836
	init_completion(&ar->scan.started);
	init_completion(&ar->scan.completed);
	init_completion(&ar->scan.on_channel);
	init_completion(&ar->target_suspend);
2837
	init_completion(&ar->wow.wakeup_completed);
2838 2839 2840

	init_completion(&ar->install_key_done);
	init_completion(&ar->vdev_setup_done);
2841
	init_completion(&ar->thermal.wmi_sync);
2842
	init_completion(&ar->bss_survey_done);
2843

2844
	INIT_DELAYED_WORK(&ar->scan.timeout, ath10k_scan_timeout_work);
2845 2846 2847

	ar->workqueue = create_singlethread_workqueue("ath10k_wq");
	if (!ar->workqueue)
2848
		goto err_free_mac;
2849

2850 2851 2852 2853
	ar->workqueue_aux = create_singlethread_workqueue("ath10k_aux_wq");
	if (!ar->workqueue_aux)
		goto err_free_wq;

2854 2855
	mutex_init(&ar->conf_mutex);
	spin_lock_init(&ar->data_lock);
M
Michal Kazior 已提交
2856
	spin_lock_init(&ar->txqs_lock);
2857

M
Michal Kazior 已提交
2858
	INIT_LIST_HEAD(&ar->txqs);
2859 2860
	INIT_LIST_HEAD(&ar->peers);
	init_waitqueue_head(&ar->peer_mapping_wq);
M
Michal Kazior 已提交
2861 2862
	init_waitqueue_head(&ar->htt.empty_tx_wq);
	init_waitqueue_head(&ar->wmi.tx_credits_wq);
2863 2864 2865 2866 2867 2868 2869 2870

	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);

2871
	INIT_WORK(&ar->register_work, ath10k_core_register_work);
2872
	INIT_WORK(&ar->restart_work, ath10k_core_restart);
2873 2874
	INIT_WORK(&ar->set_coverage_class_work,
		  ath10k_core_set_coverage_class_work);
2875

2876 2877
	init_dummy_netdev(&ar->napi_dev);

2878
	ret = ath10k_coredump_create(ar);
2879
	if (ret)
2880
		goto err_free_aux_wq;
2881

2882 2883 2884 2885
	ret = ath10k_debug_create(ar);
	if (ret)
		goto err_free_coredump;

2886 2887
	return ar;

2888 2889 2890
err_free_coredump:
	ath10k_coredump_destroy(ar);

2891 2892
err_free_aux_wq:
	destroy_workqueue(ar->workqueue_aux);
2893 2894 2895 2896
err_free_wq:
	destroy_workqueue(ar->workqueue);

err_free_mac:
2897
	ath10k_mac_destroy(ar);
2898

2899 2900 2901 2902 2903 2904 2905 2906 2907
	return NULL;
}
EXPORT_SYMBOL(ath10k_core_create);

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

2908 2909 2910
	flush_workqueue(ar->workqueue_aux);
	destroy_workqueue(ar->workqueue_aux);

2911
	ath10k_debug_destroy(ar);
2912
	ath10k_coredump_destroy(ar);
2913
	ath10k_htt_tx_destroy(&ar->htt);
2914
	ath10k_wmi_free_host_mem(ar);
2915 2916 2917 2918
	ath10k_mac_destroy(ar);
}
EXPORT_SYMBOL(ath10k_core_destroy);

2919
MODULE_AUTHOR("Qualcomm Atheros");
2920
MODULE_DESCRIPTION("Core module for Qualcomm Atheros 802.11ac wireless LAN cards.");
2921
MODULE_LICENSE("Dual BSD/GPL");