blob: 414153cd578457c528dcfb6ced4a9a56a4642dd6 [file] [log] [blame]
Kalle Valo5e3dd152013-06-12 20:52:10 +03001/*
2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#ifndef _CORE_H_
19#define _CORE_H_
20
21#include <linux/completion.h>
22#include <linux/if_ether.h>
23#include <linux/types.h>
24#include <linux/pci.h>
Ben Greear384914b2014-08-25 08:37:32 +030025#include <linux/uuid.h>
26#include <linux/time.h>
Kalle Valo5e3dd152013-06-12 20:52:10 +030027
Michal Kazioredb82362013-07-05 16:15:14 +030028#include "htt.h"
Kalle Valo5e3dd152013-06-12 20:52:10 +030029#include "htc.h"
30#include "hw.h"
31#include "targaddrs.h"
32#include "wmi.h"
33#include "../ath.h"
34#include "../regd.h"
Janusz Dziedzic9702c682013-11-20 09:59:41 +020035#include "../dfs_pattern_detector.h"
Simon Wunderlich855aed12014-08-02 09:12:54 +030036#include "spectral.h"
Rajkumar Manoharanfe6f36d2014-12-17 12:22:07 +020037#include "thermal.h"
Janusz Dziedzic5fd3ac32015-03-23 17:32:53 +020038#include "wow.h"
Vasanthakumar Thiagarajandcb02db2015-06-18 12:31:09 +053039#include "swap.h"
Kalle Valo5e3dd152013-06-12 20:52:10 +030040
41#define MS(_v, _f) (((_v) & _f##_MASK) >> _f##_LSB)
42#define SM(_v, _f) (((_v) << _f##_LSB) & _f##_MASK)
43#define WO(_f) ((_f##_OFFSET) >> 2)
44
45#define ATH10K_SCAN_ID 0
46#define WMI_READY_TIMEOUT (5 * HZ)
Kalle Valo14e105c2016-04-13 14:13:21 +030047#define ATH10K_FLUSH_TIMEOUT_HZ (5 * HZ)
48#define ATH10K_CONNECTION_LOSS_HZ (3 * HZ)
Michal Kaziorc94aa7e2015-03-24 12:38:11 +000049#define ATH10K_NUM_CHANS 39
Kalle Valo5e3dd152013-06-12 20:52:10 +030050
51/* Antenna noise floor */
52#define ATH10K_DEFAULT_NOISE_FLOOR -95
53
Bartosz Markowski71098612013-11-14 09:01:15 +010054#define ATH10K_MAX_NUM_MGMT_PENDING 128
Bartosz Markowski5e00d312013-09-26 17:47:12 +020055
Rajkumar Manoharan4705e342015-03-19 16:03:29 +020056/* number of failed packets (20 packets with 16 sw reties each) */
57#define ATH10K_KICKOUT_THRESHOLD (20 * 16)
Kalle Valo5a13e762014-01-20 11:01:46 +020058
59/*
60 * Use insanely high numbers to make sure that the firmware implementation
61 * won't start, we have the same functionality already in hostapd. Unit
62 * is seconds.
63 */
64#define ATH10K_KEEPALIVE_MIN_IDLE 3747
65#define ATH10K_KEEPALIVE_MAX_IDLE 3895
66#define ATH10K_KEEPALIVE_MAX_UNRESPONSIVE 3900
67
Rajkumar Manoharan3c97f5d2016-09-02 19:46:09 +030068/* NAPI poll budget */
69#define ATH10K_NAPI_BUDGET 64
70#define ATH10K_NAPI_QUOTA_LIMIT 60
71
Kalle Valo5e3dd152013-06-12 20:52:10 +030072struct ath10k;
73
Kalle Valoe07db352014-10-13 09:40:47 +030074enum ath10k_bus {
75 ATH10K_BUS_PCI,
Raja Mani0b523ce2016-01-27 15:24:25 +053076 ATH10K_BUS_AHB,
Kalle Valoe07db352014-10-13 09:40:47 +030077};
78
79static inline const char *ath10k_bus_str(enum ath10k_bus bus)
80{
81 switch (bus) {
82 case ATH10K_BUS_PCI:
83 return "pci";
Raja Mani0b523ce2016-01-27 15:24:25 +053084 case ATH10K_BUS_AHB:
85 return "ahb";
Kalle Valoe07db352014-10-13 09:40:47 +030086 }
87
88 return "unknown";
89}
90
Michal Kazior66b8a012015-11-18 06:59:20 +010091enum ath10k_skb_flags {
92 ATH10K_SKB_F_NO_HWCRYPT = BIT(0),
93 ATH10K_SKB_F_DTIM_ZERO = BIT(1),
94 ATH10K_SKB_F_DELIVER_CAB = BIT(2),
Michal Kaziord668dba2015-11-18 06:59:21 +010095 ATH10K_SKB_F_MGMT = BIT(3),
Michal Kazior609db222015-11-18 06:59:22 +010096 ATH10K_SKB_F_QOS = BIT(4),
Michal Kazior66b8a012015-11-18 06:59:20 +010097};
98
Kalle Valo5e3dd152013-06-12 20:52:10 +030099struct ath10k_skb_cb {
100 dma_addr_t paddr;
Michal Kazior66b8a012015-11-18 06:59:20 +0100101 u8 flags;
Michal Kaziord84a5122014-11-27 11:09:37 +0100102 u8 eid;
Michal Kazioraca146a2015-11-18 06:59:23 +0100103 u16 msdu_id;
Michal Kazior609db222015-11-18 06:59:22 +0100104 struct ieee80211_vif *vif;
Michal Kaziordd4717b2016-03-06 16:14:39 +0200105 struct ieee80211_txq *txq;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300106} __packed;
107
Michal Kazior8582bf32015-01-24 12:14:47 +0200108struct ath10k_skb_rxcb {
109 dma_addr_t paddr;
Michal Kaziorc5450702015-01-24 12:14:48 +0200110 struct hlist_node hlist;
Michal Kazior8582bf32015-01-24 12:14:47 +0200111};
112
Kalle Valo5e3dd152013-06-12 20:52:10 +0300113static inline struct ath10k_skb_cb *ATH10K_SKB_CB(struct sk_buff *skb)
114{
115 BUILD_BUG_ON(sizeof(struct ath10k_skb_cb) >
116 IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
117 return (struct ath10k_skb_cb *)&IEEE80211_SKB_CB(skb)->driver_data;
118}
119
Michal Kazior8582bf32015-01-24 12:14:47 +0200120static inline struct ath10k_skb_rxcb *ATH10K_SKB_RXCB(struct sk_buff *skb)
121{
122 BUILD_BUG_ON(sizeof(struct ath10k_skb_rxcb) > sizeof(skb->cb));
123 return (struct ath10k_skb_rxcb *)skb->cb;
124}
125
Michal Kaziorc5450702015-01-24 12:14:48 +0200126#define ATH10K_RXCB_SKB(rxcb) \
127 container_of((void *)rxcb, struct sk_buff, cb)
128
Kalle Valo5e3dd152013-06-12 20:52:10 +0300129static inline u32 host_interest_item_address(u32 item_offset)
130{
131 return QCA988X_HOST_INTEREST_ADDRESS + item_offset;
132}
133
134struct ath10k_bmi {
135 bool done_sent;
136};
137
Bartosz Markowskib3effe62013-09-26 17:47:11 +0200138struct ath10k_mem_chunk {
139 void *vaddr;
140 dma_addr_t paddr;
141 u32 len;
142 u32 req_id;
143};
144
Kalle Valo5e3dd152013-06-12 20:52:10 +0300145struct ath10k_wmi {
146 enum ath10k_htc_ep_id eid;
147 struct completion service_ready;
148 struct completion unified_ready;
Michal Kazior20ddca22016-08-19 13:37:42 +0300149 struct completion barrier;
Michal Kaziorbe8b3942013-09-13 14:16:54 +0200150 wait_queue_head_t tx_credits_wq;
Michal Kazioracfe7ec2014-11-27 10:11:17 +0100151 DECLARE_BITMAP(svc_map, WMI_SERVICE_MAX);
Bartosz Markowskice428702013-09-26 17:47:05 +0200152 struct wmi_cmd_map *cmd;
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200153 struct wmi_vdev_param_map *vdev_param;
Bartosz Markowski226a3392013-09-26 17:47:16 +0200154 struct wmi_pdev_param_map *pdev_param;
Michal Kaziord7579d12014-12-03 10:10:54 +0200155 const struct wmi_ops *ops;
Tamizh chelvam3fab30f2015-10-29 14:27:37 +0200156 const struct wmi_peer_flags_map *peer_flags;
Bartosz Markowskib3effe62013-09-26 17:47:11 +0200157
158 u32 num_mem_chunks;
David Liuccec9032015-07-24 20:25:32 +0300159 u32 rx_decap_mode;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +0200160 struct ath10k_mem_chunk mem_chunks[WMI_MAX_MEM_REQS];
Kalle Valo5e3dd152013-06-12 20:52:10 +0300161};
162
Michal Kazior60ef4012014-09-25 12:33:48 +0200163struct ath10k_fw_stats_peer {
Michal Kazior53268492014-09-25 12:33:50 +0200164 struct list_head list;
165
Kalle Valo5e3dd152013-06-12 20:52:10 +0300166 u8 peer_macaddr[ETH_ALEN];
167 u32 peer_rssi;
168 u32 peer_tx_rate;
Ben Greear23c3aae2014-03-28 14:35:15 +0200169 u32 peer_rx_rate; /* 10x only */
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530170 u32 rx_duration;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300171};
172
Mohammed Shafi Shajakhan4a49ae92016-06-30 15:23:47 +0300173struct ath10k_fw_extd_stats_peer {
174 struct list_head list;
175
176 u8 peer_macaddr[ETH_ALEN];
177 u32 rx_duration;
178};
179
Michal Kazior7b6b1532015-02-15 16:50:40 +0200180struct ath10k_fw_stats_vdev {
181 struct list_head list;
182
183 u32 vdev_id;
184 u32 beacon_snr;
185 u32 data_snr;
186 u32 num_tx_frames[4];
187 u32 num_rx_frames;
188 u32 num_tx_frames_retries[4];
189 u32 num_tx_frames_failures[4];
190 u32 num_rts_fail;
191 u32 num_rts_success;
192 u32 num_rx_err;
193 u32 num_rx_discard;
194 u32 num_tx_not_acked;
195 u32 tx_rate_history[10];
196 u32 beacon_rssi_history[10];
197};
198
Michal Kazior53268492014-09-25 12:33:50 +0200199struct ath10k_fw_stats_pdev {
200 struct list_head list;
201
Kalle Valo5e3dd152013-06-12 20:52:10 +0300202 /* PDEV stats */
203 s32 ch_noise_floor;
Ben Greear15138fd2016-09-26 21:56:26 +0300204 u32 tx_frame_count; /* Cycles spent transmitting frames */
205 u32 rx_frame_count; /* Cycles spent receiving frames */
206 u32 rx_clear_count; /* Total channel busy time, evidently */
207 u32 cycle_count; /* Total on-channel time */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300208 u32 phy_err_count;
209 u32 chan_tx_power;
Chun-Yeow Yeoh52e346d2014-03-28 14:35:16 +0200210 u32 ack_rx_bad;
211 u32 rts_bad;
212 u32 rts_good;
213 u32 fcs_bad;
214 u32 no_beacons;
215 u32 mib_int_count;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300216
217 /* PDEV TX stats */
218 s32 comp_queued;
219 s32 comp_delivered;
220 s32 msdu_enqued;
221 s32 mpdu_enqued;
222 s32 wmm_drop;
223 s32 local_enqued;
224 s32 local_freed;
225 s32 hw_queued;
226 s32 hw_reaped;
227 s32 underrun;
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +0200228 u32 hw_paused;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300229 s32 tx_abort;
230 s32 mpdus_requed;
231 u32 tx_ko;
232 u32 data_rc;
233 u32 self_triggers;
234 u32 sw_retry_failure;
235 u32 illgl_rate_phy_err;
236 u32 pdev_cont_xretry;
237 u32 pdev_tx_timeout;
238 u32 pdev_resets;
239 u32 phy_underrun;
240 u32 txop_ovf;
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +0200241 u32 seq_posted;
242 u32 seq_failed_queueing;
243 u32 seq_completed;
244 u32 seq_restarted;
245 u32 mu_seq_posted;
246 u32 mpdus_sw_flush;
247 u32 mpdus_hw_filter;
248 u32 mpdus_truncated;
249 u32 mpdus_ack_failed;
250 u32 mpdus_expired;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300251
252 /* PDEV RX stats */
253 s32 mid_ppdu_route_change;
254 s32 status_rcvd;
255 s32 r0_frags;
256 s32 r1_frags;
257 s32 r2_frags;
258 s32 r3_frags;
259 s32 htt_msdus;
260 s32 htt_mpdus;
261 s32 loc_msdus;
262 s32 loc_mpdus;
263 s32 oversize_amsdu;
264 s32 phy_errs;
265 s32 phy_err_drop;
266 s32 mpdu_errs;
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +0200267 s32 rx_ovfl_errs;
Michal Kazior53268492014-09-25 12:33:50 +0200268};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300269
Michal Kazior53268492014-09-25 12:33:50 +0200270struct ath10k_fw_stats {
Mohammed Shafi Shajakhan4a49ae92016-06-30 15:23:47 +0300271 bool extended;
Michal Kazior53268492014-09-25 12:33:50 +0200272 struct list_head pdevs;
Michal Kazior7b6b1532015-02-15 16:50:40 +0200273 struct list_head vdevs;
Michal Kazior53268492014-09-25 12:33:50 +0200274 struct list_head peers;
Mohammed Shafi Shajakhan4a49ae92016-06-30 15:23:47 +0300275 struct list_head peers_extd;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300276};
277
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +0300278#define ATH10K_TPC_TABLE_TYPE_FLAG 1
279#define ATH10K_TPC_PREAM_TABLE_END 0xFFFF
280
281struct ath10k_tpc_table {
282 u32 pream_idx[WMI_TPC_RATE_MAX];
283 u8 rate_code[WMI_TPC_RATE_MAX];
284 char tpc_value[WMI_TPC_RATE_MAX][WMI_TPC_TX_N_CHAIN * WMI_TPC_BUF_SIZE];
285};
286
287struct ath10k_tpc_stats {
288 u32 reg_domain;
289 u32 chan_freq;
290 u32 phy_mode;
291 u32 twice_antenna_reduction;
292 u32 twice_max_rd_power;
293 s32 twice_antenna_gain;
294 u32 power_limit;
295 u32 num_tx_chain;
296 u32 ctl;
297 u32 rate_max;
298 u8 flag[WMI_TPC_FLAG];
299 struct ath10k_tpc_table tpc_table[WMI_TPC_FLAG];
300};
301
Janusz Dziedzic9702c682013-11-20 09:59:41 +0200302struct ath10k_dfs_stats {
303 u32 phy_errors;
304 u32 pulses_total;
305 u32 pulses_detected;
306 u32 pulses_discarded;
307 u32 radar_detected;
308};
309
Kalle Valo5e3dd152013-06-12 20:52:10 +0300310#define ATH10K_MAX_NUM_PEER_IDS (1 << 11) /* htt rx_desc limit */
311
312struct ath10k_peer {
313 struct list_head list;
Michal Kazior69427262016-03-06 16:14:30 +0200314 struct ieee80211_vif *vif;
315 struct ieee80211_sta *sta;
316
Michal Kazior874b5ac2017-01-12 16:14:30 +0100317 bool removed;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300318 int vdev_id;
319 u8 addr[ETH_ALEN];
320 DECLARE_BITMAP(peer_ids, ATH10K_MAX_NUM_PEER_IDS);
Sujith Manoharanae167132014-11-25 11:46:59 +0530321
322 /* protected by ar->data_lock */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300323 struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1];
324};
325
Michal Kazior29946872016-03-06 16:14:34 +0200326struct ath10k_txq {
327 struct list_head list;
Michal Kazior3cc0fef2016-03-06 16:14:41 +0200328 unsigned long num_fw_queued;
Michal Kazior426e10e2016-03-06 16:14:43 +0200329 unsigned long num_push_allowed;
Michal Kazior29946872016-03-06 16:14:34 +0200330};
331
Michal Kazior9797feb2014-02-14 14:49:48 +0100332struct ath10k_sta {
333 struct ath10k_vif *arvif;
334
335 /* the following are protected by ar->data_lock */
336 u32 changed; /* IEEE80211_RC_* */
337 u32 bw;
338 u32 nss;
339 u32 smps;
Michal Kaziorbb8f0c62016-03-06 16:14:27 +0200340 u16 peer_id;
Michal Kazior9797feb2014-02-14 14:49:48 +0100341
342 struct work_struct update_wk;
Rajkumar Manoharanf5045982015-01-12 14:07:27 +0200343
344#ifdef CONFIG_MAC80211_DEBUGFS
345 /* protected by conf_mutex */
346 bool aggr_mode;
Mohammed Shafi Shajakhan856e7c32016-01-13 21:16:34 +0530347 u64 rx_duration;
Rajkumar Manoharanf5045982015-01-12 14:07:27 +0200348#endif
Michal Kazior9797feb2014-02-14 14:49:48 +0100349};
350
Kalle Valo14e105c2016-04-13 14:13:21 +0300351#define ATH10K_VDEV_SETUP_TIMEOUT_HZ (5 * HZ)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300352
Michal Kazioraf213192015-01-29 14:29:52 +0200353enum ath10k_beacon_state {
354 ATH10K_BEACON_SCHEDULED = 0,
355 ATH10K_BEACON_SENDING,
356 ATH10K_BEACON_SENT,
357};
358
Kalle Valo5e3dd152013-06-12 20:52:10 +0300359struct ath10k_vif {
Michal Kazior05791192013-10-16 15:44:45 +0300360 struct list_head list;
361
Kalle Valo5e3dd152013-06-12 20:52:10 +0300362 u32 vdev_id;
Michal Kaziorbb8f0c62016-03-06 16:14:27 +0200363 u16 peer_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300364 enum wmi_vdev_type vdev_type;
365 enum wmi_vdev_subtype vdev_subtype;
366 u32 beacon_interval;
367 u32 dtim_period;
Michal Kaziored543882013-09-13 14:16:56 +0200368 struct sk_buff *beacon;
Michal Kazior748afc42014-01-23 12:48:21 +0100369 /* protected by data_lock */
Michal Kazioraf213192015-01-29 14:29:52 +0200370 enum ath10k_beacon_state beacon_state;
Michal Kazior64badcb2014-09-18 11:18:02 +0300371 void *beacon_buf;
372 dma_addr_t beacon_paddr;
Michal Kazior96d828d2015-03-31 10:26:23 +0000373 unsigned long tx_paused; /* arbitrary values defined by target */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300374
375 struct ath10k *ar;
376 struct ieee80211_vif *vif;
377
Michal Kaziorc930f742014-01-23 11:38:25 +0100378 bool is_started;
379 bool is_up;
Simon Wunderlich855aed12014-08-02 09:12:54 +0300380 bool spectral_enabled;
Michal Kaziorcffb41f2015-02-13 13:30:16 +0100381 bool ps;
Michal Kaziorc930f742014-01-23 11:38:25 +0100382 u32 aid;
383 u8 bssid[ETH_ALEN];
384
Kalle Valo5e3dd152013-06-12 20:52:10 +0300385 struct ieee80211_key_conf *wep_keys[WMI_MAX_KEY_INDEX + 1];
SenthilKumar Jegadeesan627613f2015-01-29 13:50:38 +0200386 s8 def_wep_key_idx;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300387
388 u16 tx_seq_no;
389
390 union {
391 struct {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300392 u32 uapsd;
393 } sta;
394 struct {
Raja Mani3cec3be2015-06-22 20:22:21 +0530395 /* 512 stations */
396 u8 tim_bitmap[64];
Kalle Valo5e3dd152013-06-12 20:52:10 +0300397 u8 tim_len;
398 u32 ssid_len;
399 u8 ssid[IEEE80211_MAX_SSID_LEN];
400 bool hidden_ssid;
401 /* P2P_IE with NoA attribute for P2P_GO case */
402 u32 noa_len;
403 u8 *noa_data;
404 } ap;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300405 } u;
Janusz Dziedzic51ab1a02014-01-08 09:08:33 +0100406
Marek Kwaczynskie81bd102014-03-11 12:58:00 +0200407 bool use_cts_prot;
David Liuccec9032015-07-24 20:25:32 +0300408 bool nohwcrypt;
Marek Kwaczynskie81bd102014-03-11 12:58:00 +0200409 int num_legacy_stations;
Michal Kazior7d9d5582014-10-21 10:40:15 +0300410 int txpower;
Michal Kazior5e752e42015-01-19 09:53:41 +0100411 struct wmi_wmm_params_all_arg wmm_params;
Michal Kazior81a9a172015-03-05 16:02:17 +0200412 struct work_struct ap_csa_work;
Michal Kaziorcc9904e2015-03-10 16:22:01 +0200413 struct delayed_work connection_loss_work;
Michal Kazior45c9abc2015-04-21 20:42:58 +0300414 struct cfg80211_bitrate_mask bitrate_mask;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300415};
416
417struct ath10k_vif_iter {
418 u32 vdev_id;
419 struct ath10k_vif *arvif;
420};
421
Ben Greear384914b2014-08-25 08:37:32 +0300422/* used for crash-dump storage, protected by data-lock */
423struct ath10k_fw_crash_data {
424 bool crashed_since_read;
425
426 uuid_le uuid;
427 struct timespec timestamp;
428 __le32 registers[REG_DUMP_COUNT_QCA988X];
429};
430
Kalle Valo5e3dd152013-06-12 20:52:10 +0300431struct ath10k_debug {
432 struct dentry *debugfs_phy;
433
Michal Kazior60ef4012014-09-25 12:33:48 +0200434 struct ath10k_fw_stats fw_stats;
435 struct completion fw_stats_complete;
Michal Kazior53268492014-09-25 12:33:50 +0200436 bool fw_stats_done;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300437
Kalle Valoa3d135e2013-09-03 11:44:10 +0300438 unsigned long htt_stats_mask;
439 struct delayed_work htt_stats_dwork;
Janusz Dziedzic9702c682013-11-20 09:59:41 +0200440 struct ath10k_dfs_stats dfs_stats;
441 struct ath_dfs_pool_stats dfs_pool_stats;
Kalle Valof118a3e2014-01-03 12:59:31 +0200442
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +0300443 /* used for tpc-dump storage, protected by data-lock */
444 struct ath10k_tpc_stats *tpc_stats;
445
446 struct completion tpc_complete;
447
Rajkumar Manoharan90174452014-10-03 08:02:33 +0300448 /* protected by conf_mutex */
Maharaja Kennadyrajanafcbc822016-08-23 15:35:36 +0530449 u64 fw_dbglog_mask;
SenthilKumar Jegadeesan467210a2015-01-29 14:36:52 +0530450 u32 fw_dbglog_level;
Rajkumar Manoharan90174452014-10-03 08:02:33 +0300451 u32 pktlog_filter;
Yanbo Li077a3802014-11-25 12:24:33 +0200452 u32 reg_addr;
Peter Oha7bd3e92014-12-02 13:07:14 +0200453 u32 nf_cal_period;
Marty Faltesekf67b107d2016-10-10 19:00:04 +0300454 void *cal_data;
Janusz Dziedzicd3856232014-06-02 21:19:46 +0300455
Ben Greear384914b2014-08-25 08:37:32 +0300456 struct ath10k_fw_crash_data *fw_crash_data;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300457};
458
Michal Kaziorf7843d72013-07-16 09:38:52 +0200459enum ath10k_state {
460 ATH10K_STATE_OFF = 0,
461 ATH10K_STATE_ON,
Michal Kazioraffd3212013-07-16 09:54:35 +0200462
463 /* When doing firmware recovery the device is first powered down.
464 * mac80211 is supposed to call in to start() hook later on. It is
465 * however possible that driver unloading and firmware crash overlap.
466 * mac80211 can wait on conf_mutex in stop() while the device is
467 * stopped in ath10k_core_restart() work holding conf_mutex. The state
468 * RESTARTED means that the device is up and mac80211 has started hw
469 * reconfiguration. Once mac80211 is done with the reconfiguration we
Eliad Pellercf2c92d2014-11-04 11:43:54 +0200470 * set the state to STATE_ON in reconfig_complete(). */
Michal Kazioraffd3212013-07-16 09:54:35 +0200471 ATH10K_STATE_RESTARTING,
472 ATH10K_STATE_RESTARTED,
473
474 /* The device has crashed while restarting hw. This state is like ON
475 * but commands are blocked in HTC and -ECOMM response is given. This
476 * prevents completion timeouts and makes the driver more responsive to
477 * userspace commands. This is also prevents recursive recovery. */
478 ATH10K_STATE_WEDGED,
Kalle Valo43d2a302014-09-10 18:23:30 +0300479
480 /* factory tests */
481 ATH10K_STATE_UTF,
482};
483
484enum ath10k_firmware_mode {
485 /* the default mode, standard 802.11 functionality */
486 ATH10K_FIRMWARE_MODE_NORMAL,
487
488 /* factory tests etc */
489 ATH10K_FIRMWARE_MODE_UTF,
Michal Kaziorf7843d72013-07-16 09:38:52 +0200490};
491
Michal Kazior0d9b0432013-08-09 10:13:33 +0200492enum ath10k_fw_features {
493 /* wmi_mgmt_rx_hdr contains extra RSSI information */
494 ATH10K_FW_FEATURE_EXT_WMI_MGMT_RX = 0,
495
Kalle Valo202e86e2014-12-03 10:10:08 +0200496 /* Firmware from 10X branch. Deprecated, don't use in new code. */
Bartosz Markowskice428702013-09-26 17:47:05 +0200497 ATH10K_FW_FEATURE_WMI_10X = 1,
498
Bartosz Markowski5e00d312013-09-26 17:47:12 +0200499 /* firmware support tx frame management over WMI, otherwise it's HTT */
500 ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX = 2,
501
Bartosz Markowskid3541812013-12-10 16:20:40 +0100502 /* Firmware does not support P2P */
503 ATH10K_FW_FEATURE_NO_P2P = 3,
504
Kalle Valo202e86e2014-12-03 10:10:08 +0200505 /* Firmware 10.2 feature bit. The ATH10K_FW_FEATURE_WMI_10X feature
506 * bit is required to be set as well. Deprecated, don't use in new
507 * code.
Michal Kazior24c88f72014-07-25 13:32:17 +0200508 */
509 ATH10K_FW_FEATURE_WMI_10_2 = 4,
510
Michal Kaziorcffb41f2015-02-13 13:30:16 +0100511 /* Some firmware revisions lack proper multi-interface client powersave
512 * implementation. Enabling PS could result in connection drops,
513 * traffic stalls, etc.
514 */
515 ATH10K_FW_FEATURE_MULTI_VIF_PS_SUPPORT = 5,
516
Janusz Dziedzic5fd3ac32015-03-23 17:32:53 +0200517 /* Some firmware revisions have an incomplete WoWLAN implementation
518 * despite WMI service bit being advertised. This feature flag is used
519 * to distinguish whether WoWLAN is really supported or not.
520 */
521 ATH10K_FW_FEATURE_WOWLAN_SUPPORT = 6,
522
Kalle Valod9153542015-04-28 20:19:30 +0300523 /* Don't trust error code from otp.bin */
David Liuccec9032015-07-24 20:25:32 +0300524 ATH10K_FW_FEATURE_IGNORE_OTP_RESULT = 7,
Kalle Valod9153542015-04-28 20:19:30 +0300525
Michal Kazior48f4ca32015-05-19 14:09:34 +0200526 /* Some firmware revisions pad 4th hw address to 4 byte boundary making
527 * it 8 bytes long in Native Wifi Rx decap.
528 */
David Liuccec9032015-07-24 20:25:32 +0300529 ATH10K_FW_FEATURE_NO_NWIFI_DECAP_4ADDR_PADDING = 8,
Michal Kazior48f4ca32015-05-19 14:09:34 +0200530
Rajkumar Manoharan163f5262015-05-29 17:51:53 +0300531 /* Firmware supports bypassing PLL setting on init. */
532 ATH10K_FW_FEATURE_SUPPORTS_SKIP_CLOCK_INIT = 9,
533
David Liuccec9032015-07-24 20:25:32 +0300534 /* Raw mode support. If supported, FW supports receiving and trasmitting
535 * frames in raw mode.
536 */
537 ATH10K_FW_FEATURE_RAW_MODE_SUPPORT = 10,
538
Maharaja62f77f02015-10-21 11:49:18 +0300539 /* Firmware Supports Adaptive CCA*/
540 ATH10K_FW_FEATURE_SUPPORTS_ADAPTIVE_CCA = 11,
541
Tamizh chelvam90eceb32015-10-29 14:27:42 +0200542 /* Firmware supports management frame protection */
543 ATH10K_FW_FEATURE_MFP_SUPPORT = 12,
544
Michal Kazior9b783762016-01-21 14:13:25 +0100545 /* Firmware supports pull-push model where host shares it's software
546 * queue state with firmware and firmware generates fetch requests
547 * telling host which queues to dequeue tx from.
548 *
549 * Primary function of this is improved MU-MIMO performance with
550 * multiple clients.
551 */
552 ATH10K_FW_FEATURE_PEER_FLOW_CONTROL = 13,
553
Rajkumar Manoharan64e001f2016-05-27 20:15:58 +0530554 /* Firmware supports BT-Coex without reloading firmware via pdev param.
555 * To support Bluetooth coexistence pdev param, WMI_COEX_GPIO_SUPPORT of
556 * extended resource config should be enabled always. This firmware IE
557 * is used to configure WMI_COEX_GPIO_SUPPORT.
558 */
559 ATH10K_FW_FEATURE_BTCOEX_PARAM = 14,
560
Mohammed Shafi Shajakhana24f1f32016-11-09 03:40:57 +0200561 /* Unused flag and proven to be not working, enable this if you want
562 * to experiment sending NULL func data frames in HTT TX
Mohammed Shafi Shajakhan2cdce422016-08-26 13:42:20 +0530563 */
564 ATH10K_FW_FEATURE_SKIP_NULL_FUNC_WAR = 15,
565
Michal Kazior0d9b0432013-08-09 10:13:33 +0200566 /* keep last */
567 ATH10K_FW_FEATURE_COUNT,
568};
569
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200570enum ath10k_dev_flags {
571 /* Indicates that ath10k device is during CAC phase of DFS */
572 ATH10K_CAC_RUNNING,
Michal Kazior6782cb62014-05-23 12:28:47 +0200573 ATH10K_FLAG_CORE_REGISTERED,
Michal Kazior7962b0d2014-10-28 10:34:38 +0100574
575 /* Device has crashed and needs to restart. This indicates any pending
576 * waiters should immediately cancel instead of waiting for a time out.
577 */
578 ATH10K_FLAG_CRASH_FLUSH,
David Liuccec9032015-07-24 20:25:32 +0300579
580 /* Use Raw mode instead of native WiFi Tx/Rx encap mode.
581 * Raw mode supports both hardware and software crypto. Native WiFi only
582 * supports hardware crypto.
583 */
584 ATH10K_FLAG_RAW_MODE,
585
586 /* Disable HW crypto engine */
587 ATH10K_FLAG_HW_CRYPTO_DISABLED,
Yanbo Li844fa572015-10-31 11:07:21 +0200588
589 /* Bluetooth coexistance enabled */
590 ATH10K_FLAG_BTCOEX,
Mohammed Shafi Shajakhancc61a1b2016-03-16 18:13:32 +0530591
592 /* Per Station statistics service */
593 ATH10K_FLAG_PEER_STATS,
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200594};
595
Kalle Valoa58227e2014-10-13 09:40:59 +0300596enum ath10k_cal_mode {
597 ATH10K_CAL_MODE_FILE,
598 ATH10K_CAL_MODE_OTP,
Toshi Kikuchi5aabff02014-12-02 10:55:54 +0200599 ATH10K_CAL_MODE_DT,
Raja Mani3d9195e2016-03-18 11:44:22 +0200600 ATH10K_PRE_CAL_MODE_FILE,
601 ATH10K_PRE_CAL_MODE_DT,
Sven Eckelmann6847f962016-06-02 17:59:50 +0300602 ATH10K_CAL_MODE_EEPROM,
Kalle Valoa58227e2014-10-13 09:40:59 +0300603};
604
David Liuccec9032015-07-24 20:25:32 +0300605enum ath10k_crypt_mode {
606 /* Only use hardware crypto engine */
607 ATH10K_CRYPT_MODE_HW,
608 /* Only use software crypto engine */
609 ATH10K_CRYPT_MODE_SW,
610};
611
Kalle Valoa58227e2014-10-13 09:40:59 +0300612static inline const char *ath10k_cal_mode_str(enum ath10k_cal_mode mode)
613{
614 switch (mode) {
615 case ATH10K_CAL_MODE_FILE:
616 return "file";
617 case ATH10K_CAL_MODE_OTP:
618 return "otp";
Toshi Kikuchi5aabff02014-12-02 10:55:54 +0200619 case ATH10K_CAL_MODE_DT:
620 return "dt";
Raja Mani3d9195e2016-03-18 11:44:22 +0200621 case ATH10K_PRE_CAL_MODE_FILE:
622 return "pre-cal-file";
623 case ATH10K_PRE_CAL_MODE_DT:
624 return "pre-cal-dt";
Sven Eckelmann6847f962016-06-02 17:59:50 +0300625 case ATH10K_CAL_MODE_EEPROM:
626 return "eeprom";
Kalle Valoa58227e2014-10-13 09:40:59 +0300627 }
628
629 return "unknown";
630}
631
Michal Kazior5c81c7f2014-08-05 14:54:44 +0200632enum ath10k_scan_state {
633 ATH10K_SCAN_IDLE,
634 ATH10K_SCAN_STARTING,
635 ATH10K_SCAN_RUNNING,
636 ATH10K_SCAN_ABORTING,
637};
638
639static inline const char *ath10k_scan_state_str(enum ath10k_scan_state state)
640{
641 switch (state) {
642 case ATH10K_SCAN_IDLE:
643 return "idle";
644 case ATH10K_SCAN_STARTING:
645 return "starting";
646 case ATH10K_SCAN_RUNNING:
647 return "running";
648 case ATH10K_SCAN_ABORTING:
649 return "aborting";
650 }
651
652 return "unknown";
653}
654
Michal Kazior96d828d2015-03-31 10:26:23 +0000655enum ath10k_tx_pause_reason {
656 ATH10K_TX_PAUSE_Q_FULL,
657 ATH10K_TX_PAUSE_MAX,
658};
659
Kalle Valo7ebf7212016-04-20 19:44:51 +0300660struct ath10k_fw_file {
661 const struct firmware *firmware;
662
Kalle Valo45317352016-04-20 19:45:05 +0300663 char fw_version[ETHTOOL_FWVERS_LEN];
664
Kalle Valoc4cdf752016-04-20 19:45:18 +0300665 DECLARE_BITMAP(fw_features, ATH10K_FW_FEATURE_COUNT);
666
Kalle Valobf3c13a2016-04-20 19:45:33 +0300667 enum ath10k_fw_wmi_op_version wmi_op_version;
Kalle Valo77561f92016-04-20 19:45:47 +0300668 enum ath10k_fw_htt_op_version htt_op_version;
Kalle Valobf3c13a2016-04-20 19:45:33 +0300669
Kalle Valo7ebf7212016-04-20 19:44:51 +0300670 const void *firmware_data;
671 size_t firmware_len;
672
673 const void *otp_data;
674 size_t otp_len;
675
676 const void *codeswap_data;
677 size_t codeswap_len;
Tamizh chelvam5459c5d2016-08-19 13:37:39 +0300678
679 /* The original idea of struct ath10k_fw_file was that it only
680 * contains struct firmware and pointers to various parts (actual
681 * firmware binary, otp, metadata etc) of the file. This seg_info
682 * is actually created separate but as this is used similarly as
683 * the other firmware components it's more convenient to have it
684 * here.
685 */
686 struct ath10k_swap_code_seg_info *firmware_swap_code_seg_info;
Kalle Valo7ebf7212016-04-20 19:44:51 +0300687};
688
689struct ath10k_fw_components {
690 const struct firmware *board;
691 const void *board_data;
692 size_t board_len;
693
694 struct ath10k_fw_file fw_file;
695};
696
Kalle Valo5e3dd152013-06-12 20:52:10 +0300697struct ath10k {
698 struct ath_common ath_common;
699 struct ieee80211_hw *hw;
Michal Kazior4ca18072016-07-18 23:22:18 +0300700 struct ieee80211_ops *ops;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300701 struct device *dev;
702 u8 mac_addr[ETH_ALEN];
703
Michal Kaziord63955b2015-01-24 12:14:49 +0200704 enum ath10k_hw_rev hw_rev;
Michal Kazior36582e52015-08-13 14:32:26 +0200705 u16 dev_id;
Kalle Valoe01ae682013-09-01 11:22:14 +0300706 u32 chip_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300707 u32 target_version;
708 u8 fw_version_major;
709 u32 fw_version_minor;
710 u16 fw_version_release;
711 u16 fw_version_build;
Yanbo Li6274cd42015-04-01 22:53:21 +0300712 u32 fw_stats_req_mask;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300713 u32 phy_capability;
714 u32 hw_min_tx_power;
715 u32 hw_max_tx_power;
716 u32 ht_cap_info;
717 u32 vht_cap_info;
Michal Kazior8865bee42013-07-24 12:36:46 +0200718 u32 num_rf_chains;
Raja Mani5c8726e2015-06-22 20:22:26 +0530719 u32 max_spatial_stream;
Ashok Raj Nagarajanb3e71d72015-03-19 16:38:00 +0530720 /* protected by conf_mutex */
721 bool ani_enabled;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300722
Kalle Valo5e3dd152013-06-12 20:52:10 +0300723 bool p2p;
724
725 struct {
Kalle Valoe07db352014-10-13 09:40:47 +0300726 enum ath10k_bus bus;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300727 const struct ath10k_hif_ops *ops;
728 } hif;
729
Marek Puzyniak9042e172014-02-10 17:14:23 +0100730 struct completion target_suspend;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300731
Michal Kaziord63955b2015-01-24 12:14:49 +0200732 const struct ath10k_hw_regs *regs;
Vasanthakumar Thiagarajan2f2cfc42015-06-18 12:31:01 +0530733 const struct ath10k_hw_values *hw_values;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300734 struct ath10k_bmi bmi;
Michal Kazioredb82362013-07-05 16:15:14 +0300735 struct ath10k_wmi wmi;
Michal Kaziorcd003fa2013-07-05 16:15:13 +0300736 struct ath10k_htc htc;
Michal Kazioredb82362013-07-05 16:15:14 +0300737 struct ath10k_htt htt;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300738
Vasanthakumar Thiagarajan43d923e2016-09-09 17:25:13 +0300739 struct ath10k_hw_params hw_params;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300740
Kalle Valo7ebf7212016-04-20 19:44:51 +0300741 /* contains the firmware images used with ATH10K_FIRMWARE_MODE_NORMAL */
742 struct ath10k_fw_components normal_mode_fw;
Kalle Valo958df3a2013-09-27 19:55:01 +0300743
Kalle Valo7ebf7212016-04-20 19:44:51 +0300744 /* READ-ONLY images of the running firmware, which can be either
745 * normal or UTF. Do not modify, release etc!
746 */
747 const struct ath10k_fw_components *running_fw;
Michal Kazior29385052013-07-16 09:38:58 +0200748
Rajkumar Manoharanb1311292016-04-07 12:07:29 +0530749 const struct firmware *pre_cal_file;
750 const struct firmware *cal_file;
Kalle Valoa58227e2014-10-13 09:40:59 +0300751
Vasanthakumar Thiagarajandcb02db2015-06-18 12:31:09 +0530752 struct {
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +0300753 u32 vendor;
754 u32 device;
755 u32 subsystem_vendor;
756 u32 subsystem_device;
Manikanta Pubbisettydb0984e2015-10-09 11:55:59 +0300757
758 bool bmi_ids_valid;
759 u8 bmi_board_id;
760 u8 bmi_chip_id;
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +0300761 } id;
Michal Kaziorde57e2c2015-04-17 09:19:17 +0000762
Kalle Valo1a222432013-09-27 19:55:07 +0300763 int fw_api;
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +0300764 int bd_api;
Kalle Valoa58227e2014-10-13 09:40:59 +0300765 enum ath10k_cal_mode cal_mode;
Kalle Valo1a222432013-09-27 19:55:07 +0300766
Kalle Valo5e3dd152013-06-12 20:52:10 +0300767 struct {
768 struct completion started;
769 struct completion completed;
770 struct completion on_channel;
Michal Kazior5c81c7f2014-08-05 14:54:44 +0200771 struct delayed_work timeout;
772 enum ath10k_scan_state state;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300773 bool is_roc;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300774 int vdev_id;
775 int roc_freq;
Michal Kaziord710e752015-07-09 13:08:36 +0200776 bool roc_notify;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300777 } scan;
778
779 struct {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200780 struct ieee80211_supported_band sbands[NUM_NL80211_BANDS];
Kalle Valo5e3dd152013-06-12 20:52:10 +0300781 } mac;
782
783 /* should never be NULL; needed for regular htt rx */
784 struct ieee80211_channel *rx_channel;
785
786 /* valid during scan; needed for mgmt rx during scan */
787 struct ieee80211_channel *scan_channel;
788
Michal Kaziorc930f742014-01-23 11:38:25 +0100789 /* current operating channel definition */
790 struct cfg80211_chan_def chandef;
791
Rajkumar Manoharan2ce9b252016-03-08 22:57:23 +0530792 /* currently configured operating channel in firmware */
793 struct ieee80211_channel *tgt_oper_chan;
794
Ben Greear16c11172014-09-23 14:17:16 -0700795 unsigned long long free_vdev_map;
Michal Kazior500ff9f2015-03-31 10:26:21 +0000796 struct ath10k_vif *monitor_arvif;
Michal Kazior1bbc0972014-04-08 09:45:47 +0300797 bool monitor;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300798 int monitor_vdev_id;
Michal Kazior1bbc0972014-04-08 09:45:47 +0300799 bool monitor_started;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300800 unsigned int filter_flags;
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200801 unsigned long dev_flags;
Viresh Kumar621a5f72015-09-26 15:04:07 -0700802 bool dfs_block_radar_events;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300803
Michal Kaziord6500972014-04-08 09:56:09 +0300804 /* protected by conf_mutex */
805 bool radar_enabled;
806 int num_started_vdevs;
807
Ben Greear46acf7b2014-05-16 17:15:38 +0300808 /* Protected by conf-mutex */
Ben Greear46acf7b2014-05-16 17:15:38 +0300809 u8 cfg_tx_chainmask;
810 u8 cfg_rx_chainmask;
811
Kalle Valo5e3dd152013-06-12 20:52:10 +0300812 struct completion install_key_done;
813
Ben Greeara1c6ef52018-09-06 19:46:20 +0300814 int last_wmi_vdev_start_status;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300815 struct completion vdev_setup_done;
816
817 struct workqueue_struct *workqueue;
Raja Manic8ecfc12015-07-29 11:40:38 +0300818 /* Auxiliary workqueue */
819 struct workqueue_struct *workqueue_aux;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300820
821 /* prevents concurrent FW reconfiguration */
822 struct mutex conf_mutex;
823
824 /* protects shared structure data */
825 spinlock_t data_lock;
Michal Kazior29946872016-03-06 16:14:34 +0200826 /* protects: ar->txqs, artxq->list */
827 spinlock_t txqs_lock;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300828
Michal Kazior29946872016-03-06 16:14:34 +0200829 struct list_head txqs;
Michal Kazior05791192013-10-16 15:44:45 +0300830 struct list_head arvifs;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300831 struct list_head peers;
Michal Kazior69427262016-03-06 16:14:30 +0200832 struct ath10k_peer *peer_map[ATH10K_MAX_NUM_PEER_IDS];
Kalle Valo5e3dd152013-06-12 20:52:10 +0300833 wait_queue_head_t peer_mapping_wq;
834
Michal Kazior292a7532014-11-25 15:16:04 +0100835 /* protected by conf_mutex */
Bartosz Markowski0e759f32014-01-02 14:38:33 +0100836 int num_peers;
Michal Kaziorcfd10612014-11-25 15:16:05 +0100837 int num_stations;
838
839 int max_num_peers;
840 int max_num_stations;
Kalle Valo30c78162014-12-17 12:20:45 +0200841 int max_num_vdevs;
Marek Puzyniak8cca3d62015-03-30 09:51:52 +0300842 int max_num_tdls_vdevs;
Raja Manid1e52a82015-06-22 20:10:15 +0530843 int num_active_peers;
844 int num_tids;
Bartosz Markowski0e759f32014-01-02 14:38:33 +0100845
Raja Manic8ecfc12015-07-29 11:40:38 +0300846 struct work_struct svc_rdy_work;
847 struct sk_buff *svc_rdy_skb;
848
Kalle Valo5e3dd152013-06-12 20:52:10 +0300849 struct work_struct offchan_tx_work;
850 struct sk_buff_head offchan_tx_queue;
851 struct completion offchan_tx_completed;
852 struct sk_buff *offchan_tx_skb;
853
Bartosz Markowski5e00d312013-09-26 17:47:12 +0200854 struct work_struct wmi_mgmt_tx_work;
855 struct sk_buff_head wmi_mgmt_tx_queue;
856
Michal Kaziorf7843d72013-07-16 09:38:52 +0200857 enum ath10k_state state;
858
Michal Kazior6782cb62014-05-23 12:28:47 +0200859 struct work_struct register_work;
Michal Kazioraffd3212013-07-16 09:54:35 +0200860 struct work_struct restart_work;
861
Michal Kazior2e1dea42013-07-31 10:32:40 +0200862 /* cycle count is reported twice for each visited channel during scan.
863 * access protected by data_lock */
864 u32 survey_last_rx_clear_count;
865 u32 survey_last_cycle_count;
866 struct survey_info survey[ATH10K_NUM_CHANS];
867
Michal Kazior44b7d482015-05-25 14:06:19 +0200868 /* Channel info events are expected to come in pairs without and with
869 * COMPLETE flag set respectively for each channel visit during scan.
870 *
871 * However there are deviations from this rule. This flag is used to
872 * avoid reporting garbage data.
873 */
874 bool ch_info_can_report_survey;
Rajkumar Manoharanfa7937e2016-04-27 16:23:22 +0530875 struct completion bss_survey_done;
Michal Kazior44b7d482015-05-25 14:06:19 +0200876
Janusz Dziedzic9702c682013-11-20 09:59:41 +0200877 struct dfs_pattern_detector *dfs_detector;
878
Michal Kazior96d828d2015-03-31 10:26:23 +0000879 unsigned long tx_paused; /* see ATH10K_TX_PAUSE_ */
880
Kalle Valo5e3dd152013-06-12 20:52:10 +0300881#ifdef CONFIG_ATH10K_DEBUGFS
882 struct ath10k_debug debug;
Simon Wunderlich855aed12014-08-02 09:12:54 +0300883 struct {
884 /* relay(fs) channel for spectral scan */
885 struct rchan *rfs_chan_spec_scan;
886
887 /* spectral_mode and spec_config are protected by conf_mutex */
888 enum ath10k_spectral_mode mode;
889 struct ath10k_spec_scan config;
890 } spectral;
Mohammed Shafi Shajakhande46d162016-04-26 20:54:36 +0530891#endif
Michal Kaziore7b54192014-08-07 11:03:27 +0200892
Kalle Valo43d2a302014-09-10 18:23:30 +0300893 struct {
894 /* protected by conf_mutex */
Kalle Valo7ebf7212016-04-20 19:44:51 +0300895 struct ath10k_fw_components utf_mode_fw;
Kalle Valo7ebf7212016-04-20 19:44:51 +0300896
Kalle Valo43d2a302014-09-10 18:23:30 +0300897 /* protected by data_lock */
898 bool utf_monitor;
899 } testmode;
900
Ben Greearf51dbe72014-09-29 14:41:46 +0300901 struct {
902 /* protected by data_lock */
903 u32 fw_crash_counter;
904 u32 fw_warm_reset_counter;
905 u32 fw_cold_reset_counter;
906 } stats;
907
Rajkumar Manoharanfe6f36d2014-12-17 12:22:07 +0200908 struct ath10k_thermal thermal;
Janusz Dziedzic5fd3ac32015-03-23 17:32:53 +0200909 struct ath10k_wow wow;
Rajkumar Manoharanfe6f36d2014-12-17 12:22:07 +0200910
Rajkumar Manoharan3c97f5d2016-09-02 19:46:09 +0300911 /* NAPI */
912 struct net_device napi_dev;
913 struct napi_struct napi;
914
Michal Kaziore7b54192014-08-07 11:03:27 +0200915 /* must be last */
916 u8 drv_priv[0] __aligned(sizeof(void *));
Kalle Valo5e3dd152013-06-12 20:52:10 +0300917};
918
Mohammed Shafi Shajakhancc61a1b2016-03-16 18:13:32 +0530919static inline bool ath10k_peer_stats_enabled(struct ath10k *ar)
920{
921 if (test_bit(ATH10K_FLAG_PEER_STATS, &ar->dev_flags) &&
922 test_bit(WMI_SERVICE_PEER_STATS, ar->wmi.svc_map))
923 return true;
924
925 return false;
926}
927
Michal Kaziore7b54192014-08-07 11:03:27 +0200928struct ath10k *ath10k_core_create(size_t priv_size, struct device *dev,
Kalle Valoe07db352014-10-13 09:40:47 +0300929 enum ath10k_bus bus,
Michal Kaziord63955b2015-01-24 12:14:49 +0200930 enum ath10k_hw_rev hw_rev,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300931 const struct ath10k_hif_ops *hif_ops);
932void ath10k_core_destroy(struct ath10k *ar);
Michal Kaziorb27bc5a2015-06-15 14:46:40 +0300933void ath10k_core_get_fw_features_str(struct ath10k *ar,
934 char *buf,
935 size_t max_len);
Kalle Valo9dfe2402016-04-20 19:46:01 +0300936int ath10k_core_fetch_firmware_api_n(struct ath10k *ar, const char *name,
937 struct ath10k_fw_file *fw_file);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300938
Kalle Valo7ebf7212016-04-20 19:44:51 +0300939int ath10k_core_start(struct ath10k *ar, enum ath10k_firmware_mode mode,
940 const struct ath10k_fw_components *fw_components);
Marek Puzyniak00f54822014-02-10 17:14:24 +0100941int ath10k_wait_for_suspend(struct ath10k *ar, u32 suspend_opt);
Michal Kaziordd30a362013-07-16 09:38:51 +0200942void ath10k_core_stop(struct ath10k *ar);
Kalle Valoe01ae682013-09-01 11:22:14 +0300943int ath10k_core_register(struct ath10k *ar, u32 chip_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300944void ath10k_core_unregister(struct ath10k *ar);
945
Kalle Valo5e3dd152013-06-12 20:52:10 +0300946#endif /* _CORE_H_ */