core.h 16.8 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 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)
#define ATH10K_FLUSH_TIMEOUT_HZ (5*HZ)
47
#define ATH10K_CONNECTION_LOSS_HZ (3*HZ)
M
Michal Kazior 已提交
48
#define ATH10K_NUM_CHANS 39
49 50 51 52

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

53
#define ATH10K_MAX_NUM_MGMT_PENDING 128
54

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

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

67 68
struct ath10k;

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

static inline const char *ath10k_bus_str(enum ath10k_bus bus)
{
	switch (bus) {
	case ATH10K_BUS_PCI:
		return "pci";
	}

	return "unknown";
}

83 84
struct ath10k_skb_cb {
	dma_addr_t paddr;
85
	u8 eid;
86
	u8 vdev_id;
87 88
	enum ath10k_hw_txrx_mode txmode;
	bool is_protected;
89 90 91

	struct {
		u8 tid;
M
Michal Kazior 已提交
92
		u16 freq;
93
		bool is_offchan;
94 95
		struct ath10k_htt_txbuf *txbuf;
		u32 txbuf_paddr;
96
	} __packed htt;
97 98 99 100 101

	struct {
		bool dtim_zero;
		bool deliver_cab;
	} bcn;
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
struct ath10k_wmi {
142
	enum ath10k_fw_wmi_op_version op_version;
143 144 145
	enum ath10k_htc_ep_id eid;
	struct completion service_ready;
	struct completion unified_ready;
146
	wait_queue_head_t tx_credits_wq;
147
	DECLARE_BITMAP(svc_map, WMI_SERVICE_MAX);
148
	struct wmi_cmd_map *cmd;
149
	struct wmi_vdev_param_map *vdev_param;
150
	struct wmi_pdev_param_map *pdev_param;
M
Michal Kazior 已提交
151
	const struct wmi_ops *ops;
152 153

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

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

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

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
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 已提交
185 186 187
struct ath10k_fw_stats_pdev {
	struct list_head list;

188 189 190 191 192 193 194 195
	/* 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;
196 197 198 199 200 201
	u32 ack_rx_bad;
	u32 rts_bad;
	u32 rts_good;
	u32 fcs_bad;
	u32 no_beacons;
	u32 mib_int_count;
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241

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

	/* 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;
M
Michal Kazior 已提交
242
};
243

M
Michal Kazior 已提交
244 245
struct ath10k_fw_stats {
	struct list_head pdevs;
246
	struct list_head vdevs;
M
Michal Kazior 已提交
247
	struct list_head peers;
248 249
};

J
Janusz Dziedzic 已提交
250 251 252 253 254 255 256 257
struct ath10k_dfs_stats {
	u32 phy_errors;
	u32 pulses_total;
	u32 pulses_detected;
	u32 pulses_discarded;
	u32 radar_detected;
};

258 259 260 261 262 263 264
#define ATH10K_MAX_NUM_PEER_IDS (1 << 11) /* htt rx_desc limit */

struct ath10k_peer {
	struct list_head list;
	int vdev_id;
	u8 addr[ETH_ALEN];
	DECLARE_BITMAP(peer_ids, ATH10K_MAX_NUM_PEER_IDS);
265 266

	/* protected by ar->data_lock */
267 268 269
	struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1];
};

270 271 272 273 274 275 276 277 278 279
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;

	struct work_struct update_wk;
280 281 282 283 284

#ifdef CONFIG_MAC80211_DEBUGFS
	/* protected by conf_mutex */
	bool aggr_mode;
#endif
285 286
};

M
Michal Kazior 已提交
287 288 289 290 291 292 293 294 295
struct ath10k_chanctx {
	/* Used to story copy of chanctx_conf to avoid inconsistencies. Ideally
	 * mac80211 should allow some sort of explicit locking to guarantee
	 * that the publicly available chanctx_conf can be accessed safely at
	 * all times.
	 */
	struct ieee80211_chanctx_conf conf;
};

296 297
#define ATH10K_VDEV_SETUP_TIMEOUT_HZ (5*HZ)

M
Michal Kazior 已提交
298 299 300 301 302 303
enum ath10k_beacon_state {
	ATH10K_BEACON_SCHEDULED = 0,
	ATH10K_BEACON_SENDING,
	ATH10K_BEACON_SENT,
};

304
struct ath10k_vif {
M
Michal Kazior 已提交
305 306
	struct list_head list;

307 308 309 310 311
	u32 vdev_id;
	enum wmi_vdev_type vdev_type;
	enum wmi_vdev_subtype vdev_subtype;
	u32 beacon_interval;
	u32 dtim_period;
312
	struct sk_buff *beacon;
313
	/* protected by data_lock */
M
Michal Kazior 已提交
314
	enum ath10k_beacon_state beacon_state;
315 316
	void *beacon_buf;
	dma_addr_t beacon_paddr;
M
Michal Kazior 已提交
317
	unsigned long tx_paused; /* arbitrary values defined by target */
318 319 320 321

	struct ath10k *ar;
	struct ieee80211_vif *vif;

322 323
	bool is_started;
	bool is_up;
324
	bool spectral_enabled;
325
	bool ps;
326 327 328
	u32 aid;
	u8 bssid[ETH_ALEN];

329
	struct ieee80211_key_conf *wep_keys[WMI_MAX_KEY_INDEX + 1];
330
	s8 def_wep_key_idx;
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349

	u16 tx_seq_no;

	union {
		struct {
			u32 uapsd;
		} sta;
		struct {
			/* 127 stations; wmi limit */
			u8 tim_bitmap[16];
			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;
350

351 352
	bool use_cts_prot;
	int num_legacy_stations;
353
	int txpower;
354
	struct wmi_wmm_params_all_arg wmm_params;
355
	struct work_struct ap_csa_work;
356
	struct delayed_work connection_loss_work;
357
	struct cfg80211_bitrate_mask bitrate_mask;
358 359 360 361 362 363 364
};

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

365 366 367 368 369 370 371 372 373
/* 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];
};

374 375 376
struct ath10k_debug {
	struct dentry *debugfs_phy;

377 378
	struct ath10k_fw_stats fw_stats;
	struct completion fw_stats_complete;
M
Michal Kazior 已提交
379
	bool fw_stats_done;
380

381 382
	unsigned long htt_stats_mask;
	struct delayed_work htt_stats_dwork;
J
Janusz Dziedzic 已提交
383 384
	struct ath10k_dfs_stats dfs_stats;
	struct ath_dfs_pool_stats dfs_pool_stats;
385

386
	/* protected by conf_mutex */
387
	u32 fw_dbglog_mask;
388
	u32 fw_dbglog_level;
389
	u32 pktlog_filter;
390
	u32 reg_addr;
391
	u32 nf_cal_period;
392 393 394

	u8 htt_max_amsdu;
	u8 htt_max_ampdu;
395 396

	struct ath10k_fw_crash_data *fw_crash_data;
397 398
};

399 400 401
enum ath10k_state {
	ATH10K_STATE_OFF = 0,
	ATH10K_STATE_ON,
402 403 404 405 406 407 408 409

	/* 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
410
	 * set the state to STATE_ON in reconfig_complete(). */
411 412 413 414 415 416 417 418
	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 已提交
419 420 421 422 423 424 425 426 427 428 429

	/* 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,
430 431
};

432 433 434 435
enum ath10k_fw_features {
	/* wmi_mgmt_rx_hdr contains extra RSSI information */
	ATH10K_FW_FEATURE_EXT_WMI_MGMT_RX = 0,

436
	/* Firmware from 10X branch. Deprecated, don't use in new code. */
437 438
	ATH10K_FW_FEATURE_WMI_10X = 1,

439 440 441
	/* firmware support tx frame management over WMI, otherwise it's HTT */
	ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX = 2,

442 443 444
	/* Firmware does not support P2P */
	ATH10K_FW_FEATURE_NO_P2P = 3,

445 446 447
	/* 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.
448 449 450
	 */
	ATH10K_FW_FEATURE_WMI_10_2 = 4,

451 452 453 454 455 456
	/* 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,

457 458 459 460 461 462
	/* 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,

463 464 465
	/* Don't trust error code from otp.bin */
	ATH10K_FW_FEATURE_IGNORE_OTP_RESULT,

466 467 468 469 470
	/* Some firmware revisions pad 4th hw address to 4 byte boundary making
	 * it 8 bytes long in Native Wifi Rx decap.
	 */
	ATH10K_FW_FEATURE_NO_NWIFI_DECAP_4ADDR_PADDING,

471 472 473 474
	/* keep last */
	ATH10K_FW_FEATURE_COUNT,
};

475 476 477
enum ath10k_dev_flags {
	/* Indicates that ath10k device is during CAC phase of DFS */
	ATH10K_CAC_RUNNING,
478
	ATH10K_FLAG_CORE_REGISTERED,
M
Michal Kazior 已提交
479 480 481 482 483

	/* 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,
484 485
};

486 487 488
enum ath10k_cal_mode {
	ATH10K_CAL_MODE_FILE,
	ATH10K_CAL_MODE_OTP,
489
	ATH10K_CAL_MODE_DT,
490 491 492 493 494 495 496 497 498
};

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";
499 500
	case ATH10K_CAL_MODE_DT:
		return "dt";
501 502 503 504 505
	}

	return "unknown";
}

506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
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 已提交
529 530 531 532 533
enum ath10k_tx_pause_reason {
	ATH10K_TX_PAUSE_Q_FULL,
	ATH10K_TX_PAUSE_MAX,
};

534 535 536 537 538 539
struct ath10k {
	struct ath_common ath_common;
	struct ieee80211_hw *hw;
	struct device *dev;
	u8 mac_addr[ETH_ALEN];

M
Michal Kazior 已提交
540
	enum ath10k_hw_rev hw_rev;
541
	u32 chip_id;
542 543 544 545 546
	u32 target_version;
	u8 fw_version_major;
	u32 fw_version_minor;
	u16 fw_version_release;
	u16 fw_version_build;
547
	u32 fw_stats_req_mask;
548 549 550 551 552
	u32 phy_capability;
	u32 hw_min_tx_power;
	u32 hw_max_tx_power;
	u32 ht_cap_info;
	u32 vht_cap_info;
553
	u32 num_rf_chains;
554 555
	/* protected by conf_mutex */
	bool ani_enabled;
556

557 558
	DECLARE_BITMAP(fw_features, ATH10K_FW_FEATURE_COUNT);

559 560 561
	bool p2p;

	struct {
K
Kalle Valo 已提交
562
		enum ath10k_bus bus;
563 564 565
		const struct ath10k_hif_ops *ops;
	} hif;

566
	struct completion target_suspend;
567

M
Michal Kazior 已提交
568
	const struct ath10k_hw_regs *regs;
569
	struct ath10k_bmi bmi;
570
	struct ath10k_wmi wmi;
571
	struct ath10k_htc htc;
572
	struct ath10k_htt htt;
573 574 575 576 577

	struct ath10k_hw_params {
		u32 id;
		const char *name;
		u32 patch_load_addr;
578
		int uart_pin;
579 580 581 582 583 584

		struct ath10k_hw_params_fw {
			const char *dir;
			const char *fw;
			const char *otp;
			const char *board;
585 586
			size_t board_size;
			size_t board_ext_size;
587 588 589
		} fw;
	} hw_params;

590
	const struct firmware *board;
591 592 593
	const void *board_data;
	size_t board_len;

594
	const struct firmware *otp;
595 596 597
	const void *otp_data;
	size_t otp_len;

598
	const struct firmware *firmware;
599 600
	const void *firmware_data;
	size_t firmware_len;
601

602 603
	const struct firmware *cal_file;

604 605 606
	char spec_board_id[100];
	bool spec_board_loaded;

607
	int fw_api;
608
	enum ath10k_cal_mode cal_mode;
609

610 611 612 613
	struct {
		struct completion started;
		struct completion completed;
		struct completion on_channel;
614 615
		struct delayed_work timeout;
		enum ath10k_scan_state state;
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
		bool is_roc;
		int vdev_id;
		int roc_freq;
	} scan;

	struct {
		struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
	} 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;

631 632 633
	/* current operating channel definition */
	struct cfg80211_chan_def chandef;

B
Ben Greear 已提交
634
	unsigned long long free_vdev_map;
M
Michal Kazior 已提交
635
	struct ath10k_vif *monitor_arvif;
M
Michal Kazior 已提交
636
	bool monitor;
637
	int monitor_vdev_id;
M
Michal Kazior 已提交
638
	bool monitor_started;
639
	unsigned int filter_flags;
640
	unsigned long dev_flags;
641
	u32 dfs_block_radar_events;
642

643 644 645 646
	/* protected by conf_mutex */
	bool radar_enabled;
	int num_started_vdevs;

647 648 649 650 651 652
	/* Protected by conf-mutex */
	u8 supp_tx_chainmask;
	u8 supp_rx_chainmask;
	u8 cfg_tx_chainmask;
	u8 cfg_rx_chainmask;

653 654 655 656 657 658 659 660 661 662 663 664
	struct completion install_key_done;

	struct completion vdev_setup_done;

	struct workqueue_struct *workqueue;

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

	/* protects shared structure data */
	spinlock_t data_lock;

M
Michal Kazior 已提交
665
	struct list_head arvifs;
666 667 668
	struct list_head peers;
	wait_queue_head_t peer_mapping_wq;

M
Michal Kazior 已提交
669
	/* protected by conf_mutex */
670
	int num_peers;
671 672 673 674
	int num_stations;

	int max_num_peers;
	int max_num_stations;
675
	int max_num_vdevs;
676
	int max_num_tdls_vdevs;
677

678 679 680 681 682
	struct work_struct offchan_tx_work;
	struct sk_buff_head offchan_tx_queue;
	struct completion offchan_tx_completed;
	struct sk_buff *offchan_tx_skb;

683 684 685
	struct work_struct wmi_mgmt_tx_work;
	struct sk_buff_head wmi_mgmt_tx_queue;

686 687
	enum ath10k_state state;

688
	struct work_struct register_work;
689 690
	struct work_struct restart_work;

M
Michal Kazior 已提交
691 692 693 694 695 696
	/* 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];

J
Janusz Dziedzic 已提交
697 698
	struct dfs_pattern_detector *dfs_detector;

M
Michal Kazior 已提交
699 700
	unsigned long tx_paused; /* see ATH10K_TX_PAUSE_ */

701 702 703
#ifdef CONFIG_ATH10K_DEBUGFS
	struct ath10k_debug debug;
#endif
704 705 706 707 708 709 710 711 712

	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;
M
Michal Kazior 已提交
713

K
Kalle Valo 已提交
714 715 716 717
	struct {
		/* protected by conf_mutex */
		const struct firmware *utf;
		DECLARE_BITMAP(orig_fw_features, ATH10K_FW_FEATURE_COUNT);
M
Michal Kazior 已提交
718
		enum ath10k_fw_wmi_op_version orig_wmi_op_version;
K
Kalle Valo 已提交
719 720 721 722 723

		/* protected by data_lock */
		bool utf_monitor;
	} testmode;

B
Ben Greear 已提交
724 725 726 727 728 729 730
	struct {
		/* protected by data_lock */
		u32 fw_crash_counter;
		u32 fw_warm_reset_counter;
		u32 fw_cold_reset_counter;
	} stats;

731
	struct ath10k_thermal thermal;
732
	struct ath10k_wow wow;
733

M
Michal Kazior 已提交
734 735
	/* must be last */
	u8 drv_priv[0] __aligned(sizeof(void *));
736 737
};

M
Michal Kazior 已提交
738
struct ath10k *ath10k_core_create(size_t priv_size, struct device *dev,
K
Kalle Valo 已提交
739
				  enum ath10k_bus bus,
M
Michal Kazior 已提交
740
				  enum ath10k_hw_rev hw_rev,
741 742 743
				  const struct ath10k_hif_ops *hif_ops);
void ath10k_core_destroy(struct ath10k *ar);

K
Kalle Valo 已提交
744
int ath10k_core_start(struct ath10k *ar, enum ath10k_firmware_mode mode);
745
int ath10k_wait_for_suspend(struct ath10k *ar, u32 suspend_opt);
746
void ath10k_core_stop(struct ath10k *ar);
747
int ath10k_core_register(struct ath10k *ar, u32 chip_id);
748 749 750
void ath10k_core_unregister(struct ath10k *ar);

#endif /* _CORE_H_ */