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

#ifndef _CORE_H_
#define _CORE_H_

#include <linux/completion.h>
#include <linux/if_ether.h>
#include <linux/types.h>
#include <linux/pci.h>
25 26
#include <linux/uuid.h>
#include <linux/time.h>
27

28
#include "htt.h"
29 30 31 32 33 34
#include "htc.h"
#include "hw.h"
#include "targaddrs.h"
#include "wmi.h"
#include "../ath.h"
#include "../regd.h"
J
Janusz Dziedzic 已提交
35
#include "../dfs_pattern_detector.h"
36
#include "spectral.h"
37
#include "thermal.h"
38
#include "wow.h"
39
#include "swap.h"
40 41 42 43 44 45 46

#define MS(_v, _f) (((_v) & _f##_MASK) >> _f##_LSB)
#define SM(_v, _f) (((_v) << _f##_LSB) & _f##_MASK)
#define WO(_f)      ((_f##_OFFSET) >> 2)

#define ATH10K_SCAN_ID 0
#define WMI_READY_TIMEOUT (5 * HZ)
47 48
#define ATH10K_FLUSH_TIMEOUT_HZ (5 * HZ)
#define ATH10K_CONNECTION_LOSS_HZ (3 * HZ)
M
Michal Kazior 已提交
49
#define ATH10K_NUM_CHANS 39
50 51 52 53

/* Antenna noise floor */
#define ATH10K_DEFAULT_NOISE_FLOOR -95

54
#define ATH10K_MAX_NUM_MGMT_PENDING 128
55

56 57
/* number of failed packets (20 packets with 16 sw reties each) */
#define ATH10K_KICKOUT_THRESHOLD (20 * 16)
58 59 60 61 62 63 64 65 66 67

/*
 * Use insanely high numbers to make sure that the firmware implementation
 * won't start, we have the same functionality already in hostapd. Unit
 * is seconds.
 */
#define ATH10K_KEEPALIVE_MIN_IDLE 3747
#define ATH10K_KEEPALIVE_MAX_IDLE 3895
#define ATH10K_KEEPALIVE_MAX_UNRESPONSIVE 3900

68 69
struct ath10k;

K
Kalle Valo 已提交
70 71
enum ath10k_bus {
	ATH10K_BUS_PCI,
72
	ATH10K_BUS_AHB,
K
Kalle Valo 已提交
73 74 75 76 77 78 79
};

static inline const char *ath10k_bus_str(enum ath10k_bus bus)
{
	switch (bus) {
	case ATH10K_BUS_PCI:
		return "pci";
80 81
	case ATH10K_BUS_AHB:
		return "ahb";
K
Kalle Valo 已提交
82 83 84 85 86
	}

	return "unknown";
}

M
Michal Kazior 已提交
87 88 89 90
enum ath10k_skb_flags {
	ATH10K_SKB_F_NO_HWCRYPT = BIT(0),
	ATH10K_SKB_F_DTIM_ZERO = BIT(1),
	ATH10K_SKB_F_DELIVER_CAB = BIT(2),
M
Michal Kazior 已提交
91
	ATH10K_SKB_F_MGMT = BIT(3),
92
	ATH10K_SKB_F_QOS = BIT(4),
M
Michal Kazior 已提交
93 94
};

95 96
struct ath10k_skb_cb {
	dma_addr_t paddr;
M
Michal Kazior 已提交
97
	u8 flags;
98
	u8 eid;
99
	u16 msdu_id;
100
	struct ieee80211_vif *vif;
M
Michal Kazior 已提交
101
	struct ieee80211_txq *txq;
102 103
} __packed;

104 105
struct ath10k_skb_rxcb {
	dma_addr_t paddr;
106
	struct hlist_node hlist;
107 108
};

109 110 111 112 113 114 115
static inline struct ath10k_skb_cb *ATH10K_SKB_CB(struct sk_buff *skb)
{
	BUILD_BUG_ON(sizeof(struct ath10k_skb_cb) >
		     IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
	return (struct ath10k_skb_cb *)&IEEE80211_SKB_CB(skb)->driver_data;
}

116 117 118 119 120 121
static inline struct ath10k_skb_rxcb *ATH10K_SKB_RXCB(struct sk_buff *skb)
{
	BUILD_BUG_ON(sizeof(struct ath10k_skb_rxcb) > sizeof(skb->cb));
	return (struct ath10k_skb_rxcb *)skb->cb;
}

122 123 124
#define ATH10K_RXCB_SKB(rxcb) \
		container_of((void *)rxcb, struct sk_buff, cb)

125 126 127 128 129 130 131 132 133
static inline u32 host_interest_item_address(u32 item_offset)
{
	return QCA988X_HOST_INTEREST_ADDRESS + item_offset;
}

struct ath10k_bmi {
	bool done_sent;
};

134 135 136 137 138 139 140
struct ath10k_mem_chunk {
	void *vaddr;
	dma_addr_t paddr;
	u32 len;
	u32 req_id;
};

141 142 143 144
struct ath10k_wmi {
	enum ath10k_htc_ep_id eid;
	struct completion service_ready;
	struct completion unified_ready;
145
	wait_queue_head_t tx_credits_wq;
146
	DECLARE_BITMAP(svc_map, WMI_SERVICE_MAX);
147
	struct wmi_cmd_map *cmd;
148
	struct wmi_vdev_param_map *vdev_param;
149
	struct wmi_pdev_param_map *pdev_param;
M
Michal Kazior 已提交
150
	const struct wmi_ops *ops;
151
	const struct wmi_peer_flags_map *peer_flags;
152 153

	u32 num_mem_chunks;
154
	u32 rx_decap_mode;
155
	struct ath10k_mem_chunk mem_chunks[WMI_MAX_MEM_REQS];
156 157
};

158
struct ath10k_fw_stats_peer {
M
Michal Kazior 已提交
159 160
	struct list_head list;

161 162 163
	u8 peer_macaddr[ETH_ALEN];
	u32 peer_rssi;
	u32 peer_tx_rate;
B
Ben Greear 已提交
164
	u32 peer_rx_rate; /* 10x only */
165
	u32 rx_duration;
166 167
};

168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
struct ath10k_fw_stats_vdev {
	struct list_head list;

	u32 vdev_id;
	u32 beacon_snr;
	u32 data_snr;
	u32 num_tx_frames[4];
	u32 num_rx_frames;
	u32 num_tx_frames_retries[4];
	u32 num_tx_frames_failures[4];
	u32 num_rts_fail;
	u32 num_rts_success;
	u32 num_rx_err;
	u32 num_rx_discard;
	u32 num_tx_not_acked;
	u32 tx_rate_history[10];
	u32 beacon_rssi_history[10];
};

M
Michal Kazior 已提交
187 188 189
struct ath10k_fw_stats_pdev {
	struct list_head list;

190 191 192 193 194 195 196 197
	/* PDEV stats */
	s32 ch_noise_floor;
	u32 tx_frame_count;
	u32 rx_frame_count;
	u32 rx_clear_count;
	u32 cycle_count;
	u32 phy_err_count;
	u32 chan_tx_power;
198 199 200 201 202 203
	u32 ack_rx_bad;
	u32 rts_bad;
	u32 rts_good;
	u32 fcs_bad;
	u32 no_beacons;
	u32 mib_int_count;
204 205 206 207 208 209 210 211 212 213 214 215

	/* PDEV TX stats */
	s32 comp_queued;
	s32 comp_delivered;
	s32 msdu_enqued;
	s32 mpdu_enqued;
	s32 wmm_drop;
	s32 local_enqued;
	s32 local_freed;
	s32 hw_queued;
	s32 hw_reaped;
	s32 underrun;
216
	u32 hw_paused;
217 218 219 220 221 222 223 224 225 226 227 228
	s32 tx_abort;
	s32 mpdus_requed;
	u32 tx_ko;
	u32 data_rc;
	u32 self_triggers;
	u32 sw_retry_failure;
	u32 illgl_rate_phy_err;
	u32 pdev_cont_xretry;
	u32 pdev_tx_timeout;
	u32 pdev_resets;
	u32 phy_underrun;
	u32 txop_ovf;
229 230 231 232 233 234 235 236 237 238
	u32 seq_posted;
	u32 seq_failed_queueing;
	u32 seq_completed;
	u32 seq_restarted;
	u32 mu_seq_posted;
	u32 mpdus_sw_flush;
	u32 mpdus_hw_filter;
	u32 mpdus_truncated;
	u32 mpdus_ack_failed;
	u32 mpdus_expired;
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254

	/* PDEV RX stats */
	s32 mid_ppdu_route_change;
	s32 status_rcvd;
	s32 r0_frags;
	s32 r1_frags;
	s32 r2_frags;
	s32 r3_frags;
	s32 htt_msdus;
	s32 htt_mpdus;
	s32 loc_msdus;
	s32 loc_mpdus;
	s32 oversize_amsdu;
	s32 phy_errs;
	s32 phy_err_drop;
	s32 mpdu_errs;
255
	s32 rx_ovfl_errs;
M
Michal Kazior 已提交
256
};
257

M
Michal Kazior 已提交
258 259
struct ath10k_fw_stats {
	struct list_head pdevs;
260
	struct list_head vdevs;
M
Michal Kazior 已提交
261
	struct list_head peers;
262 263
};

264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
#define ATH10K_TPC_TABLE_TYPE_FLAG	1
#define ATH10K_TPC_PREAM_TABLE_END	0xFFFF

struct ath10k_tpc_table {
	u32 pream_idx[WMI_TPC_RATE_MAX];
	u8 rate_code[WMI_TPC_RATE_MAX];
	char tpc_value[WMI_TPC_RATE_MAX][WMI_TPC_TX_N_CHAIN * WMI_TPC_BUF_SIZE];
};

struct ath10k_tpc_stats {
	u32 reg_domain;
	u32 chan_freq;
	u32 phy_mode;
	u32 twice_antenna_reduction;
	u32 twice_max_rd_power;
	s32 twice_antenna_gain;
	u32 power_limit;
	u32 num_tx_chain;
	u32 ctl;
	u32 rate_max;
	u8 flag[WMI_TPC_FLAG];
	struct ath10k_tpc_table tpc_table[WMI_TPC_FLAG];
};

J
Janusz Dziedzic 已提交
288 289 290 291 292 293 294 295
struct ath10k_dfs_stats {
	u32 phy_errors;
	u32 pulses_total;
	u32 pulses_detected;
	u32 pulses_discarded;
	u32 radar_detected;
};

296 297 298 299
#define ATH10K_MAX_NUM_PEER_IDS (1 << 11) /* htt rx_desc limit */

struct ath10k_peer {
	struct list_head list;
M
Michal Kazior 已提交
300 301 302
	struct ieee80211_vif *vif;
	struct ieee80211_sta *sta;

303 304 305
	int vdev_id;
	u8 addr[ETH_ALEN];
	DECLARE_BITMAP(peer_ids, ATH10K_MAX_NUM_PEER_IDS);
306 307

	/* protected by ar->data_lock */
308 309 310
	struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1];
};

M
Michal Kazior 已提交
311 312
struct ath10k_txq {
	struct list_head list;
313
	unsigned long num_fw_queued;
M
Michal Kazior 已提交
314
	unsigned long num_push_allowed;
M
Michal Kazior 已提交
315 316
};

317 318 319 320 321 322 323 324
struct ath10k_sta {
	struct ath10k_vif *arvif;

	/* the following are protected by ar->data_lock */
	u32 changed; /* IEEE80211_RC_* */
	u32 bw;
	u32 nss;
	u32 smps;
325
	u16 peer_id;
326 327

	struct work_struct update_wk;
328 329 330 331

#ifdef CONFIG_MAC80211_DEBUGFS
	/* protected by conf_mutex */
	bool aggr_mode;
332
	u64 rx_duration;
333
#endif
334 335
};

336
#define ATH10K_VDEV_SETUP_TIMEOUT_HZ (5 * HZ)
337

M
Michal Kazior 已提交
338 339 340 341 342 343
enum ath10k_beacon_state {
	ATH10K_BEACON_SCHEDULED = 0,
	ATH10K_BEACON_SENDING,
	ATH10K_BEACON_SENT,
};

344
struct ath10k_vif {
M
Michal Kazior 已提交
345 346
	struct list_head list;

347
	u32 vdev_id;
348
	u16 peer_id;
349 350 351 352
	enum wmi_vdev_type vdev_type;
	enum wmi_vdev_subtype vdev_subtype;
	u32 beacon_interval;
	u32 dtim_period;
353
	struct sk_buff *beacon;
354
	/* protected by data_lock */
M
Michal Kazior 已提交
355
	enum ath10k_beacon_state beacon_state;
356 357
	void *beacon_buf;
	dma_addr_t beacon_paddr;
M
Michal Kazior 已提交
358
	unsigned long tx_paused; /* arbitrary values defined by target */
359 360 361 362

	struct ath10k *ar;
	struct ieee80211_vif *vif;

363 364
	bool is_started;
	bool is_up;
365
	bool spectral_enabled;
366
	bool ps;
367 368 369
	u32 aid;
	u8 bssid[ETH_ALEN];

370
	struct ieee80211_key_conf *wep_keys[WMI_MAX_KEY_INDEX + 1];
371
	s8 def_wep_key_idx;
372 373 374 375 376 377 378 379

	u16 tx_seq_no;

	union {
		struct {
			u32 uapsd;
		} sta;
		struct {
380 381
			/* 512 stations */
			u8 tim_bitmap[64];
382 383 384 385 386 387 388 389 390
			u8 tim_len;
			u32 ssid_len;
			u8 ssid[IEEE80211_MAX_SSID_LEN];
			bool hidden_ssid;
			/* P2P_IE with NoA attribute for P2P_GO case */
			u32 noa_len;
			u8 *noa_data;
		} ap;
	} u;
391

392
	bool use_cts_prot;
393
	bool nohwcrypt;
394
	int num_legacy_stations;
395
	int txpower;
396
	struct wmi_wmm_params_all_arg wmm_params;
397
	struct work_struct ap_csa_work;
398
	struct delayed_work connection_loss_work;
399
	struct cfg80211_bitrate_mask bitrate_mask;
400 401 402 403 404 405 406
};

struct ath10k_vif_iter {
	u32 vdev_id;
	struct ath10k_vif *arvif;
};

407 408 409 410 411 412 413 414 415
/* used for crash-dump storage, protected by data-lock */
struct ath10k_fw_crash_data {
	bool crashed_since_read;

	uuid_le uuid;
	struct timespec timestamp;
	__le32 registers[REG_DUMP_COUNT_QCA988X];
};

416 417 418
struct ath10k_debug {
	struct dentry *debugfs_phy;

419 420
	struct ath10k_fw_stats fw_stats;
	struct completion fw_stats_complete;
M
Michal Kazior 已提交
421
	bool fw_stats_done;
422

423 424
	unsigned long htt_stats_mask;
	struct delayed_work htt_stats_dwork;
J
Janusz Dziedzic 已提交
425 426
	struct ath10k_dfs_stats dfs_stats;
	struct ath_dfs_pool_stats dfs_pool_stats;
427

428 429 430 431 432
	/* used for tpc-dump storage, protected by data-lock */
	struct ath10k_tpc_stats *tpc_stats;

	struct completion tpc_complete;

433
	/* protected by conf_mutex */
434
	u32 fw_dbglog_mask;
435
	u32 fw_dbglog_level;
436
	u32 pktlog_filter;
437
	u32 reg_addr;
438
	u32 nf_cal_period;
439

440
	struct ath10k_fw_crash_data *fw_crash_data;
441 442
};

443 444 445
enum ath10k_state {
	ATH10K_STATE_OFF = 0,
	ATH10K_STATE_ON,
446 447 448 449 450 451 452 453

	/* When doing firmware recovery the device is first powered down.
	 * mac80211 is supposed to call in to start() hook later on. It is
	 * however possible that driver unloading and firmware crash overlap.
	 * mac80211 can wait on conf_mutex in stop() while the device is
	 * stopped in ath10k_core_restart() work holding conf_mutex. The state
	 * RESTARTED means that the device is up and mac80211 has started hw
	 * reconfiguration. Once mac80211 is done with the reconfiguration we
454
	 * set the state to STATE_ON in reconfig_complete(). */
455 456 457 458 459 460 461 462
	ATH10K_STATE_RESTARTING,
	ATH10K_STATE_RESTARTED,

	/* The device has crashed while restarting hw. This state is like ON
	 * but commands are blocked in HTC and -ECOMM response is given. This
	 * prevents completion timeouts and makes the driver more responsive to
	 * userspace commands. This is also prevents recursive recovery. */
	ATH10K_STATE_WEDGED,
K
Kalle Valo 已提交
463 464 465 466 467 468 469 470 471 472 473

	/* factory tests */
	ATH10K_STATE_UTF,
};

enum ath10k_firmware_mode {
	/* the default mode, standard 802.11 functionality */
	ATH10K_FIRMWARE_MODE_NORMAL,

	/* factory tests etc */
	ATH10K_FIRMWARE_MODE_UTF,
474 475
};

476 477 478 479
enum ath10k_fw_features {
	/* wmi_mgmt_rx_hdr contains extra RSSI information */
	ATH10K_FW_FEATURE_EXT_WMI_MGMT_RX = 0,

480
	/* Firmware from 10X branch. Deprecated, don't use in new code. */
481 482
	ATH10K_FW_FEATURE_WMI_10X = 1,

483 484 485
	/* firmware support tx frame management over WMI, otherwise it's HTT */
	ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX = 2,

486 487 488
	/* Firmware does not support P2P */
	ATH10K_FW_FEATURE_NO_P2P = 3,

489 490 491
	/* Firmware 10.2 feature bit. The ATH10K_FW_FEATURE_WMI_10X feature
	 * bit is required to be set as well. Deprecated, don't use in new
	 * code.
492 493 494
	 */
	ATH10K_FW_FEATURE_WMI_10_2 = 4,

495 496 497 498 499 500
	/* Some firmware revisions lack proper multi-interface client powersave
	 * implementation. Enabling PS could result in connection drops,
	 * traffic stalls, etc.
	 */
	ATH10K_FW_FEATURE_MULTI_VIF_PS_SUPPORT = 5,

501 502 503 504 505 506
	/* Some firmware revisions have an incomplete WoWLAN implementation
	 * despite WMI service bit being advertised. This feature flag is used
	 * to distinguish whether WoWLAN is really supported or not.
	 */
	ATH10K_FW_FEATURE_WOWLAN_SUPPORT = 6,

507
	/* Don't trust error code from otp.bin */
508
	ATH10K_FW_FEATURE_IGNORE_OTP_RESULT = 7,
509

510 511 512
	/* Some firmware revisions pad 4th hw address to 4 byte boundary making
	 * it 8 bytes long in Native Wifi Rx decap.
	 */
513
	ATH10K_FW_FEATURE_NO_NWIFI_DECAP_4ADDR_PADDING = 8,
514

515 516 517
	/* Firmware supports bypassing PLL setting on init. */
	ATH10K_FW_FEATURE_SUPPORTS_SKIP_CLOCK_INIT = 9,

518 519 520 521 522
	/* Raw mode support. If supported, FW supports receiving and trasmitting
	 * frames in raw mode.
	 */
	ATH10K_FW_FEATURE_RAW_MODE_SUPPORT = 10,

M
Maharaja 已提交
523 524 525
	/* Firmware Supports Adaptive CCA*/
	ATH10K_FW_FEATURE_SUPPORTS_ADAPTIVE_CCA = 11,

526 527 528
	/* Firmware supports management frame protection */
	ATH10K_FW_FEATURE_MFP_SUPPORT = 12,

529 530 531 532 533 534 535 536 537
	/* Firmware supports pull-push model where host shares it's software
	 * queue state with firmware and firmware generates fetch requests
	 * telling host which queues to dequeue tx from.
	 *
	 * Primary function of this is improved MU-MIMO performance with
	 * multiple clients.
	 */
	ATH10K_FW_FEATURE_PEER_FLOW_CONTROL = 13,

538 539 540 541
	/* keep last */
	ATH10K_FW_FEATURE_COUNT,
};

542 543 544
enum ath10k_dev_flags {
	/* Indicates that ath10k device is during CAC phase of DFS */
	ATH10K_CAC_RUNNING,
545
	ATH10K_FLAG_CORE_REGISTERED,
M
Michal Kazior 已提交
546 547 548 549 550

	/* Device has crashed and needs to restart. This indicates any pending
	 * waiters should immediately cancel instead of waiting for a time out.
	 */
	ATH10K_FLAG_CRASH_FLUSH,
551 552 553 554 555 556 557 558 559

	/* Use Raw mode instead of native WiFi Tx/Rx encap mode.
	 * Raw mode supports both hardware and software crypto. Native WiFi only
	 * supports hardware crypto.
	 */
	ATH10K_FLAG_RAW_MODE,

	/* Disable HW crypto engine */
	ATH10K_FLAG_HW_CRYPTO_DISABLED,
560 561 562

	/* Bluetooth coexistance enabled */
	ATH10K_FLAG_BTCOEX,
563 564 565

	/* Per Station statistics service */
	ATH10K_FLAG_PEER_STATS,
566 567
};

568 569 570
enum ath10k_cal_mode {
	ATH10K_CAL_MODE_FILE,
	ATH10K_CAL_MODE_OTP,
571
	ATH10K_CAL_MODE_DT,
572 573
	ATH10K_PRE_CAL_MODE_FILE,
	ATH10K_PRE_CAL_MODE_DT,
574 575
};

576 577 578 579 580 581 582
enum ath10k_crypt_mode {
	/* Only use hardware crypto engine */
	ATH10K_CRYPT_MODE_HW,
	/* Only use software crypto engine */
	ATH10K_CRYPT_MODE_SW,
};

583 584 585 586 587 588 589
static inline const char *ath10k_cal_mode_str(enum ath10k_cal_mode mode)
{
	switch (mode) {
	case ATH10K_CAL_MODE_FILE:
		return "file";
	case ATH10K_CAL_MODE_OTP:
		return "otp";
590 591
	case ATH10K_CAL_MODE_DT:
		return "dt";
592 593 594 595
	case ATH10K_PRE_CAL_MODE_FILE:
		return "pre-cal-file";
	case ATH10K_PRE_CAL_MODE_DT:
		return "pre-cal-dt";
596 597 598 599 600
	}

	return "unknown";
}

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
enum ath10k_scan_state {
	ATH10K_SCAN_IDLE,
	ATH10K_SCAN_STARTING,
	ATH10K_SCAN_RUNNING,
	ATH10K_SCAN_ABORTING,
};

static inline const char *ath10k_scan_state_str(enum ath10k_scan_state state)
{
	switch (state) {
	case ATH10K_SCAN_IDLE:
		return "idle";
	case ATH10K_SCAN_STARTING:
		return "starting";
	case ATH10K_SCAN_RUNNING:
		return "running";
	case ATH10K_SCAN_ABORTING:
		return "aborting";
	}

	return "unknown";
}

M
Michal Kazior 已提交
624 625 626 627 628
enum ath10k_tx_pause_reason {
	ATH10K_TX_PAUSE_Q_FULL,
	ATH10K_TX_PAUSE_MAX,
};

629 630 631
struct ath10k_fw_file {
	const struct firmware *firmware;

632 633
	char fw_version[ETHTOOL_FWVERS_LEN];

634 635
	DECLARE_BITMAP(fw_features, ATH10K_FW_FEATURE_COUNT);

636
	enum ath10k_fw_wmi_op_version wmi_op_version;
637
	enum ath10k_fw_htt_op_version htt_op_version;
638

639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
	const void *firmware_data;
	size_t firmware_len;

	const void *otp_data;
	size_t otp_len;

	const void *codeswap_data;
	size_t codeswap_len;
};

struct ath10k_fw_components {
	const struct firmware *board;
	const void *board_data;
	size_t board_len;

	struct ath10k_fw_file fw_file;
};

657 658 659 660 661 662
struct ath10k {
	struct ath_common ath_common;
	struct ieee80211_hw *hw;
	struct device *dev;
	u8 mac_addr[ETH_ALEN];

M
Michal Kazior 已提交
663
	enum ath10k_hw_rev hw_rev;
M
Michal Kazior 已提交
664
	u16 dev_id;
665
	u32 chip_id;
666 667 668 669 670
	u32 target_version;
	u8 fw_version_major;
	u32 fw_version_minor;
	u16 fw_version_release;
	u16 fw_version_build;
671
	u32 fw_stats_req_mask;
672 673 674 675 676
	u32 phy_capability;
	u32 hw_min_tx_power;
	u32 hw_max_tx_power;
	u32 ht_cap_info;
	u32 vht_cap_info;
677
	u32 num_rf_chains;
678
	u32 max_spatial_stream;
679 680
	/* protected by conf_mutex */
	bool ani_enabled;
681 682 683 684

	bool p2p;

	struct {
K
Kalle Valo 已提交
685
		enum ath10k_bus bus;
686 687 688
		const struct ath10k_hif_ops *ops;
	} hif;

689
	struct completion target_suspend;
690

M
Michal Kazior 已提交
691
	const struct ath10k_hw_regs *regs;
692
	const struct ath10k_hw_values *hw_values;
693
	struct ath10k_bmi bmi;
694
	struct ath10k_wmi wmi;
695
	struct ath10k_htc htc;
696
	struct ath10k_htt htt;
697 698 699

	struct ath10k_hw_params {
		u32 id;
700
		u16 dev_id;
701 702
		const char *name;
		u32 patch_load_addr;
703
		int uart_pin;
704
		u32 otp_exe_param;
705

706 707 708 709 710 711 712
		/* This is true if given HW chip has a quirky Cycle Counter
		 * wraparound which resets to 0x7fffffff instead of 0. All
		 * other CC related counters (e.g. Rx Clear Count) are divided
		 * by 2 so they never wraparound themselves.
		 */
		bool has_shifted_cc_wraparound;

713 714 715 716 717 718
		/* Some of chip expects fragment descriptor to be continuous
		 * memory for any TX operation. Set continuous_frag_desc flag
		 * for the hardware which have such requirement.
		 */
		bool continuous_frag_desc;

719 720
		u32 channel_counters_freq_hz;

721 722 723 724 725
		/* Mgmt tx descriptors threshold for limiting probe response
		 * frames.
		 */
		u32 max_probe_resp_desc_thres;

726 727 728
		/* The padding bytes's location is different on various chips */
		enum ath10k_hw_4addr_pad hw_4addr_pad;

729 730 731
		u32 tx_chain_mask;
		u32 rx_chain_mask;
		u32 max_spatial_stream;
732
		u32 cal_data_len;
733

734 735 736
		struct ath10k_hw_params_fw {
			const char *dir;
			const char *board;
737 738
			size_t board_size;
			size_t board_ext_size;
739 740 741
		} fw;
	} hw_params;

742 743
	/* contains the firmware images used with ATH10K_FIRMWARE_MODE_NORMAL */
	struct ath10k_fw_components normal_mode_fw;
744

745 746 747 748
	/* READ-ONLY images of the running firmware, which can be either
	 * normal or UTF. Do not modify, release etc!
	 */
	const struct ath10k_fw_components *running_fw;
749

750 751
	const struct firmware *pre_cal_file;
	const struct firmware *cal_file;
752

753 754 755 756
	struct {
		struct ath10k_swap_code_seg_info *firmware_swap_code_seg_info;
	} swap;

757 758 759 760 761
	struct {
		u32 vendor;
		u32 device;
		u32 subsystem_vendor;
		u32 subsystem_device;
762 763 764 765

		bool bmi_ids_valid;
		u8 bmi_board_id;
		u8 bmi_chip_id;
766
	} id;
767

768
	int fw_api;
769
	int bd_api;
770
	enum ath10k_cal_mode cal_mode;
771

772 773 774 775
	struct {
		struct completion started;
		struct completion completed;
		struct completion on_channel;
776 777
		struct delayed_work timeout;
		enum ath10k_scan_state state;
778 779 780
		bool is_roc;
		int vdev_id;
		int roc_freq;
781
		bool roc_notify;
782 783 784
	} scan;

	struct {
785
		struct ieee80211_supported_band sbands[NUM_NL80211_BANDS];
786 787 788 789 790 791 792 793
	} mac;

	/* should never be NULL; needed for regular htt rx */
	struct ieee80211_channel *rx_channel;

	/* valid during scan; needed for mgmt rx during scan */
	struct ieee80211_channel *scan_channel;

794 795 796
	/* current operating channel definition */
	struct cfg80211_chan_def chandef;

797 798 799
	/* currently configured operating channel in firmware */
	struct ieee80211_channel *tgt_oper_chan;

B
Ben Greear 已提交
800
	unsigned long long free_vdev_map;
M
Michal Kazior 已提交
801
	struct ath10k_vif *monitor_arvif;
M
Michal Kazior 已提交
802
	bool monitor;
803
	int monitor_vdev_id;
M
Michal Kazior 已提交
804
	bool monitor_started;
805
	unsigned int filter_flags;
806
	unsigned long dev_flags;
807
	bool dfs_block_radar_events;
808

809 810 811 812
	/* protected by conf_mutex */
	bool radar_enabled;
	int num_started_vdevs;

813 814 815 816
	/* Protected by conf-mutex */
	u8 cfg_tx_chainmask;
	u8 cfg_rx_chainmask;

817 818 819 820 821
	struct completion install_key_done;

	struct completion vdev_setup_done;

	struct workqueue_struct *workqueue;
822 823
	/* Auxiliary workqueue */
	struct workqueue_struct *workqueue_aux;
824 825 826 827 828 829

	/* prevents concurrent FW reconfiguration */
	struct mutex conf_mutex;

	/* protects shared structure data */
	spinlock_t data_lock;
M
Michal Kazior 已提交
830 831
	/* protects: ar->txqs, artxq->list */
	spinlock_t txqs_lock;
832

M
Michal Kazior 已提交
833
	struct list_head txqs;
M
Michal Kazior 已提交
834
	struct list_head arvifs;
835
	struct list_head peers;
M
Michal Kazior 已提交
836
	struct ath10k_peer *peer_map[ATH10K_MAX_NUM_PEER_IDS];
837 838
	wait_queue_head_t peer_mapping_wq;

M
Michal Kazior 已提交
839
	/* protected by conf_mutex */
840
	int num_peers;
841 842 843 844
	int num_stations;

	int max_num_peers;
	int max_num_stations;
845
	int max_num_vdevs;
846
	int max_num_tdls_vdevs;
847 848
	int num_active_peers;
	int num_tids;
849

850 851 852
	struct work_struct svc_rdy_work;
	struct sk_buff *svc_rdy_skb;

853 854 855 856 857
	struct work_struct offchan_tx_work;
	struct sk_buff_head offchan_tx_queue;
	struct completion offchan_tx_completed;
	struct sk_buff *offchan_tx_skb;

858 859 860
	struct work_struct wmi_mgmt_tx_work;
	struct sk_buff_head wmi_mgmt_tx_queue;

861 862
	enum ath10k_state state;

863
	struct work_struct register_work;
864 865
	struct work_struct restart_work;

M
Michal Kazior 已提交
866 867 868 869 870 871
	/* cycle count is reported twice for each visited channel during scan.
	 * access protected by data_lock */
	u32 survey_last_rx_clear_count;
	u32 survey_last_cycle_count;
	struct survey_info survey[ATH10K_NUM_CHANS];

872 873 874 875 876 877 878
	/* Channel info events are expected to come in pairs without and with
	 * COMPLETE flag set respectively for each channel visit during scan.
	 *
	 * However there are deviations from this rule. This flag is used to
	 * avoid reporting garbage data.
	 */
	bool ch_info_can_report_survey;
879
	struct completion bss_survey_done;
880

J
Janusz Dziedzic 已提交
881 882
	struct dfs_pattern_detector *dfs_detector;

M
Michal Kazior 已提交
883 884
	unsigned long tx_paused; /* see ATH10K_TX_PAUSE_ */

885 886
#ifdef CONFIG_ATH10K_DEBUGFS
	struct ath10k_debug debug;
887 888 889 890 891 892 893 894
	struct {
		/* relay(fs) channel for spectral scan */
		struct rchan *rfs_chan_spec_scan;

		/* spectral_mode and spec_config are protected by conf_mutex */
		enum ath10k_spectral_mode mode;
		struct ath10k_spec_scan config;
	} spectral;
895
#endif
M
Michal Kazior 已提交
896

K
Kalle Valo 已提交
897 898
	struct {
		/* protected by conf_mutex */
899 900
		struct ath10k_fw_components utf_mode_fw;

K
Kalle Valo 已提交
901 902 903 904
		/* protected by data_lock */
		bool utf_monitor;
	} testmode;

B
Ben Greear 已提交
905 906 907 908 909 910 911
	struct {
		/* protected by data_lock */
		u32 fw_crash_counter;
		u32 fw_warm_reset_counter;
		u32 fw_cold_reset_counter;
	} stats;

912
	struct ath10k_thermal thermal;
913
	struct ath10k_wow wow;
914

M
Michal Kazior 已提交
915 916
	/* must be last */
	u8 drv_priv[0] __aligned(sizeof(void *));
917 918
};

919 920 921 922 923 924 925 926 927
static inline bool ath10k_peer_stats_enabled(struct ath10k *ar)
{
	if (test_bit(ATH10K_FLAG_PEER_STATS, &ar->dev_flags) &&
	    test_bit(WMI_SERVICE_PEER_STATS, ar->wmi.svc_map))
		return true;

	return false;
}

M
Michal Kazior 已提交
928
struct ath10k *ath10k_core_create(size_t priv_size, struct device *dev,
K
Kalle Valo 已提交
929
				  enum ath10k_bus bus,
M
Michal Kazior 已提交
930
				  enum ath10k_hw_rev hw_rev,
931 932
				  const struct ath10k_hif_ops *hif_ops);
void ath10k_core_destroy(struct ath10k *ar);
933 934 935
void ath10k_core_get_fw_features_str(struct ath10k *ar,
				     char *buf,
				     size_t max_len);
936 937
int ath10k_core_fetch_firmware_api_n(struct ath10k *ar, const char *name,
				     struct ath10k_fw_file *fw_file);
938

939 940
int ath10k_core_start(struct ath10k *ar, enum ath10k_firmware_mode mode,
		      const struct ath10k_fw_components *fw_components);
941
int ath10k_wait_for_suspend(struct ath10k *ar, u32 suspend_opt);
942
void ath10k_core_stop(struct ath10k *ar);
943
int ath10k_core_register(struct ath10k *ar, u32 chip_id);
944 945 946
void ath10k_core_unregister(struct ath10k *ar);

#endif /* _CORE_H_ */