blob: 774d8ceb405352c1e076ec7daade709b9e596a8b [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"
Kalle Valo5e3dd152013-06-12 20:52:10 +030038
39#define MS(_v, _f) (((_v) & _f##_MASK) >> _f##_LSB)
40#define SM(_v, _f) (((_v) << _f##_LSB) & _f##_MASK)
41#define WO(_f) ((_f##_OFFSET) >> 2)
42
43#define ATH10K_SCAN_ID 0
44#define WMI_READY_TIMEOUT (5 * HZ)
45#define ATH10K_FLUSH_TIMEOUT_HZ (5*HZ)
Michal Kazior2e1dea42013-07-31 10:32:40 +020046#define ATH10K_NUM_CHANS 38
Kalle Valo5e3dd152013-06-12 20:52:10 +030047
48/* Antenna noise floor */
49#define ATH10K_DEFAULT_NOISE_FLOOR -95
50
Bartosz Markowski71098612013-11-14 09:01:15 +010051#define ATH10K_MAX_NUM_MGMT_PENDING 128
Bartosz Markowski5e00d312013-09-26 17:47:12 +020052
Kalle Valo5a13e762014-01-20 11:01:46 +020053/* number of failed packets */
54#define ATH10K_KICKOUT_THRESHOLD 50
55
56/*
57 * Use insanely high numbers to make sure that the firmware implementation
58 * won't start, we have the same functionality already in hostapd. Unit
59 * is seconds.
60 */
61#define ATH10K_KEEPALIVE_MIN_IDLE 3747
62#define ATH10K_KEEPALIVE_MAX_IDLE 3895
63#define ATH10K_KEEPALIVE_MAX_UNRESPONSIVE 3900
64
Kalle Valo5e3dd152013-06-12 20:52:10 +030065struct ath10k;
66
Kalle Valoe07db352014-10-13 09:40:47 +030067enum ath10k_bus {
68 ATH10K_BUS_PCI,
69};
70
71static inline const char *ath10k_bus_str(enum ath10k_bus bus)
72{
73 switch (bus) {
74 case ATH10K_BUS_PCI:
75 return "pci";
76 }
77
78 return "unknown";
79}
80
Kalle Valo5e3dd152013-06-12 20:52:10 +030081struct ath10k_skb_cb {
82 dma_addr_t paddr;
Michal Kaziord84a5122014-11-27 11:09:37 +010083 u8 eid;
Bartosz Markowski5e00d312013-09-26 17:47:12 +020084 u8 vdev_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +030085
86 struct {
Kalle Valo5e3dd152013-06-12 20:52:10 +030087 u8 tid;
Michal Kazior8d6d3622014-11-24 14:58:31 +010088 u16 freq;
Kalle Valo5e3dd152013-06-12 20:52:10 +030089 bool is_offchan;
Michal Kaziora16942e2014-02-27 18:50:04 +020090 struct ath10k_htt_txbuf *txbuf;
91 u32 txbuf_paddr;
Kalle Valo5e3dd152013-06-12 20:52:10 +030092 } __packed htt;
Michal Kazior748afc42014-01-23 12:48:21 +010093
94 struct {
95 bool dtim_zero;
96 bool deliver_cab;
97 } bcn;
Kalle Valo5e3dd152013-06-12 20:52:10 +030098} __packed;
99
Michal Kazior8582bf32015-01-24 12:14:47 +0200100struct ath10k_skb_rxcb {
101 dma_addr_t paddr;
Michal Kaziorc5450702015-01-24 12:14:48 +0200102 struct hlist_node hlist;
Michal Kazior8582bf32015-01-24 12:14:47 +0200103};
104
Kalle Valo5e3dd152013-06-12 20:52:10 +0300105static inline struct ath10k_skb_cb *ATH10K_SKB_CB(struct sk_buff *skb)
106{
107 BUILD_BUG_ON(sizeof(struct ath10k_skb_cb) >
108 IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
109 return (struct ath10k_skb_cb *)&IEEE80211_SKB_CB(skb)->driver_data;
110}
111
Michal Kazior8582bf32015-01-24 12:14:47 +0200112static inline struct ath10k_skb_rxcb *ATH10K_SKB_RXCB(struct sk_buff *skb)
113{
114 BUILD_BUG_ON(sizeof(struct ath10k_skb_rxcb) > sizeof(skb->cb));
115 return (struct ath10k_skb_rxcb *)skb->cb;
116}
117
Michal Kaziorc5450702015-01-24 12:14:48 +0200118#define ATH10K_RXCB_SKB(rxcb) \
119 container_of((void *)rxcb, struct sk_buff, cb)
120
Kalle Valo5e3dd152013-06-12 20:52:10 +0300121static inline u32 host_interest_item_address(u32 item_offset)
122{
123 return QCA988X_HOST_INTEREST_ADDRESS + item_offset;
124}
125
126struct ath10k_bmi {
127 bool done_sent;
128};
129
Bartosz Markowskib3effe62013-09-26 17:47:11 +0200130struct ath10k_mem_chunk {
131 void *vaddr;
132 dma_addr_t paddr;
133 u32 len;
134 u32 req_id;
135};
136
Kalle Valo5e3dd152013-06-12 20:52:10 +0300137struct ath10k_wmi {
Kalle Valo202e86e2014-12-03 10:10:08 +0200138 enum ath10k_fw_wmi_op_version op_version;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300139 enum ath10k_htc_ep_id eid;
140 struct completion service_ready;
141 struct completion unified_ready;
Michal Kaziorbe8b3942013-09-13 14:16:54 +0200142 wait_queue_head_t tx_credits_wq;
Michal Kazioracfe7ec2014-11-27 10:11:17 +0100143 DECLARE_BITMAP(svc_map, WMI_SERVICE_MAX);
Bartosz Markowskice428702013-09-26 17:47:05 +0200144 struct wmi_cmd_map *cmd;
Bartosz Markowski6d1506e2013-09-26 17:47:15 +0200145 struct wmi_vdev_param_map *vdev_param;
Bartosz Markowski226a3392013-09-26 17:47:16 +0200146 struct wmi_pdev_param_map *pdev_param;
Michal Kaziord7579d12014-12-03 10:10:54 +0200147 const struct wmi_ops *ops;
Bartosz Markowskib3effe62013-09-26 17:47:11 +0200148
149 u32 num_mem_chunks;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +0200150 struct ath10k_mem_chunk mem_chunks[WMI_MAX_MEM_REQS];
Kalle Valo5e3dd152013-06-12 20:52:10 +0300151};
152
Michal Kazior60ef4012014-09-25 12:33:48 +0200153struct ath10k_fw_stats_peer {
Michal Kazior53268492014-09-25 12:33:50 +0200154 struct list_head list;
155
Kalle Valo5e3dd152013-06-12 20:52:10 +0300156 u8 peer_macaddr[ETH_ALEN];
157 u32 peer_rssi;
158 u32 peer_tx_rate;
Ben Greear23c3aae2014-03-28 14:35:15 +0200159 u32 peer_rx_rate; /* 10x only */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300160};
161
Michal Kazior53268492014-09-25 12:33:50 +0200162struct ath10k_fw_stats_pdev {
163 struct list_head list;
164
Kalle Valo5e3dd152013-06-12 20:52:10 +0300165 /* PDEV stats */
166 s32 ch_noise_floor;
167 u32 tx_frame_count;
168 u32 rx_frame_count;
169 u32 rx_clear_count;
170 u32 cycle_count;
171 u32 phy_err_count;
172 u32 chan_tx_power;
Chun-Yeow Yeoh52e346d2014-03-28 14:35:16 +0200173 u32 ack_rx_bad;
174 u32 rts_bad;
175 u32 rts_good;
176 u32 fcs_bad;
177 u32 no_beacons;
178 u32 mib_int_count;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300179
180 /* PDEV TX stats */
181 s32 comp_queued;
182 s32 comp_delivered;
183 s32 msdu_enqued;
184 s32 mpdu_enqued;
185 s32 wmm_drop;
186 s32 local_enqued;
187 s32 local_freed;
188 s32 hw_queued;
189 s32 hw_reaped;
190 s32 underrun;
191 s32 tx_abort;
192 s32 mpdus_requed;
193 u32 tx_ko;
194 u32 data_rc;
195 u32 self_triggers;
196 u32 sw_retry_failure;
197 u32 illgl_rate_phy_err;
198 u32 pdev_cont_xretry;
199 u32 pdev_tx_timeout;
200 u32 pdev_resets;
201 u32 phy_underrun;
202 u32 txop_ovf;
203
204 /* PDEV RX stats */
205 s32 mid_ppdu_route_change;
206 s32 status_rcvd;
207 s32 r0_frags;
208 s32 r1_frags;
209 s32 r2_frags;
210 s32 r3_frags;
211 s32 htt_msdus;
212 s32 htt_mpdus;
213 s32 loc_msdus;
214 s32 loc_mpdus;
215 s32 oversize_amsdu;
216 s32 phy_errs;
217 s32 phy_err_drop;
218 s32 mpdu_errs;
Michal Kazior53268492014-09-25 12:33:50 +0200219};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300220
Michal Kazior53268492014-09-25 12:33:50 +0200221struct ath10k_fw_stats {
222 struct list_head pdevs;
223 struct list_head peers;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300224};
225
Janusz Dziedzic9702c682013-11-20 09:59:41 +0200226struct ath10k_dfs_stats {
227 u32 phy_errors;
228 u32 pulses_total;
229 u32 pulses_detected;
230 u32 pulses_discarded;
231 u32 radar_detected;
232};
233
Kalle Valo5e3dd152013-06-12 20:52:10 +0300234#define ATH10K_MAX_NUM_PEER_IDS (1 << 11) /* htt rx_desc limit */
235
236struct ath10k_peer {
237 struct list_head list;
238 int vdev_id;
239 u8 addr[ETH_ALEN];
240 DECLARE_BITMAP(peer_ids, ATH10K_MAX_NUM_PEER_IDS);
Sujith Manoharanae167132014-11-25 11:46:59 +0530241
242 /* protected by ar->data_lock */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300243 struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1];
244};
245
Michal Kazior9797feb2014-02-14 14:49:48 +0100246struct ath10k_sta {
247 struct ath10k_vif *arvif;
248
249 /* the following are protected by ar->data_lock */
250 u32 changed; /* IEEE80211_RC_* */
251 u32 bw;
252 u32 nss;
253 u32 smps;
254
255 struct work_struct update_wk;
Rajkumar Manoharanf5045982015-01-12 14:07:27 +0200256
257#ifdef CONFIG_MAC80211_DEBUGFS
258 /* protected by conf_mutex */
259 bool aggr_mode;
260#endif
Michal Kazior9797feb2014-02-14 14:49:48 +0100261};
262
Kalle Valo5e3dd152013-06-12 20:52:10 +0300263#define ATH10K_VDEV_SETUP_TIMEOUT_HZ (5*HZ)
264
265struct ath10k_vif {
Michal Kazior05791192013-10-16 15:44:45 +0300266 struct list_head list;
267
Kalle Valo5e3dd152013-06-12 20:52:10 +0300268 u32 vdev_id;
269 enum wmi_vdev_type vdev_type;
270 enum wmi_vdev_subtype vdev_subtype;
271 u32 beacon_interval;
272 u32 dtim_period;
Michal Kaziored543882013-09-13 14:16:56 +0200273 struct sk_buff *beacon;
Michal Kazior748afc42014-01-23 12:48:21 +0100274 /* protected by data_lock */
275 bool beacon_sent;
Michal Kazior64badcb2014-09-18 11:18:02 +0300276 void *beacon_buf;
277 dma_addr_t beacon_paddr;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300278
279 struct ath10k *ar;
280 struct ieee80211_vif *vif;
281
Michal Kaziorc930f742014-01-23 11:38:25 +0100282 bool is_started;
283 bool is_up;
Simon Wunderlich855aed12014-08-02 09:12:54 +0300284 bool spectral_enabled;
Michal Kaziorc930f742014-01-23 11:38:25 +0100285 u32 aid;
286 u8 bssid[ETH_ALEN];
287
Michal Kaziorcc4827b2013-10-16 15:44:45 +0300288 struct work_struct wep_key_work;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300289 struct ieee80211_key_conf *wep_keys[WMI_MAX_KEY_INDEX + 1];
Michal Kaziorcc4827b2013-10-16 15:44:45 +0300290 u8 def_wep_key_idx;
291 u8 def_wep_key_newidx;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300292
293 u16 tx_seq_no;
294
295 union {
296 struct {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300297 u32 uapsd;
298 } sta;
299 struct {
300 /* 127 stations; wmi limit */
301 u8 tim_bitmap[16];
302 u8 tim_len;
303 u32 ssid_len;
304 u8 ssid[IEEE80211_MAX_SSID_LEN];
305 bool hidden_ssid;
306 /* P2P_IE with NoA attribute for P2P_GO case */
307 u32 noa_len;
308 u8 *noa_data;
309 } ap;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300310 } u;
Janusz Dziedzic51ab1a02014-01-08 09:08:33 +0100311
312 u8 fixed_rate;
313 u8 fixed_nss;
Janusz Dziedzic9f81f722014-01-17 20:04:14 +0100314 u8 force_sgi;
Marek Kwaczynskie81bd102014-03-11 12:58:00 +0200315 bool use_cts_prot;
316 int num_legacy_stations;
Michal Kazior7d9d5582014-10-21 10:40:15 +0300317 int txpower;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300318};
319
320struct ath10k_vif_iter {
321 u32 vdev_id;
322 struct ath10k_vif *arvif;
323};
324
Ben Greear384914b2014-08-25 08:37:32 +0300325/* used for crash-dump storage, protected by data-lock */
326struct ath10k_fw_crash_data {
327 bool crashed_since_read;
328
329 uuid_le uuid;
330 struct timespec timestamp;
331 __le32 registers[REG_DUMP_COUNT_QCA988X];
332};
333
Kalle Valo5e3dd152013-06-12 20:52:10 +0300334struct ath10k_debug {
335 struct dentry *debugfs_phy;
336
Michal Kazior60ef4012014-09-25 12:33:48 +0200337 struct ath10k_fw_stats fw_stats;
338 struct completion fw_stats_complete;
Michal Kazior53268492014-09-25 12:33:50 +0200339 bool fw_stats_done;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300340
Kalle Valoa3d135e2013-09-03 11:44:10 +0300341 unsigned long htt_stats_mask;
342 struct delayed_work htt_stats_dwork;
Janusz Dziedzic9702c682013-11-20 09:59:41 +0200343 struct ath10k_dfs_stats dfs_stats;
344 struct ath_dfs_pool_stats dfs_pool_stats;
Kalle Valof118a3e2014-01-03 12:59:31 +0200345
Rajkumar Manoharan90174452014-10-03 08:02:33 +0300346 /* protected by conf_mutex */
Kalle Valof118a3e2014-01-03 12:59:31 +0200347 u32 fw_dbglog_mask;
Rajkumar Manoharan90174452014-10-03 08:02:33 +0300348 u32 pktlog_filter;
Yanbo Li077a3802014-11-25 12:24:33 +0200349 u32 reg_addr;
Peter Oha7bd3e92014-12-02 13:07:14 +0200350 u32 nf_cal_period;
Janusz Dziedzicd3856232014-06-02 21:19:46 +0300351
352 u8 htt_max_amsdu;
353 u8 htt_max_ampdu;
Ben Greear384914b2014-08-25 08:37:32 +0300354
355 struct ath10k_fw_crash_data *fw_crash_data;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300356};
357
Michal Kaziorf7843d72013-07-16 09:38:52 +0200358enum ath10k_state {
359 ATH10K_STATE_OFF = 0,
360 ATH10K_STATE_ON,
Michal Kazioraffd3212013-07-16 09:54:35 +0200361
362 /* When doing firmware recovery the device is first powered down.
363 * mac80211 is supposed to call in to start() hook later on. It is
364 * however possible that driver unloading and firmware crash overlap.
365 * mac80211 can wait on conf_mutex in stop() while the device is
366 * stopped in ath10k_core_restart() work holding conf_mutex. The state
367 * RESTARTED means that the device is up and mac80211 has started hw
368 * reconfiguration. Once mac80211 is done with the reconfiguration we
Eliad Pellercf2c92d2014-11-04 11:43:54 +0200369 * set the state to STATE_ON in reconfig_complete(). */
Michal Kazioraffd3212013-07-16 09:54:35 +0200370 ATH10K_STATE_RESTARTING,
371 ATH10K_STATE_RESTARTED,
372
373 /* The device has crashed while restarting hw. This state is like ON
374 * but commands are blocked in HTC and -ECOMM response is given. This
375 * prevents completion timeouts and makes the driver more responsive to
376 * userspace commands. This is also prevents recursive recovery. */
377 ATH10K_STATE_WEDGED,
Kalle Valo43d2a302014-09-10 18:23:30 +0300378
379 /* factory tests */
380 ATH10K_STATE_UTF,
381};
382
383enum ath10k_firmware_mode {
384 /* the default mode, standard 802.11 functionality */
385 ATH10K_FIRMWARE_MODE_NORMAL,
386
387 /* factory tests etc */
388 ATH10K_FIRMWARE_MODE_UTF,
Michal Kaziorf7843d72013-07-16 09:38:52 +0200389};
390
Michal Kazior0d9b0432013-08-09 10:13:33 +0200391enum ath10k_fw_features {
392 /* wmi_mgmt_rx_hdr contains extra RSSI information */
393 ATH10K_FW_FEATURE_EXT_WMI_MGMT_RX = 0,
394
Kalle Valo202e86e2014-12-03 10:10:08 +0200395 /* Firmware from 10X branch. Deprecated, don't use in new code. */
Bartosz Markowskice428702013-09-26 17:47:05 +0200396 ATH10K_FW_FEATURE_WMI_10X = 1,
397
Bartosz Markowski5e00d312013-09-26 17:47:12 +0200398 /* firmware support tx frame management over WMI, otherwise it's HTT */
399 ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX = 2,
400
Bartosz Markowskid3541812013-12-10 16:20:40 +0100401 /* Firmware does not support P2P */
402 ATH10K_FW_FEATURE_NO_P2P = 3,
403
Kalle Valo202e86e2014-12-03 10:10:08 +0200404 /* Firmware 10.2 feature bit. The ATH10K_FW_FEATURE_WMI_10X feature
405 * bit is required to be set as well. Deprecated, don't use in new
406 * code.
Michal Kazior24c88f72014-07-25 13:32:17 +0200407 */
408 ATH10K_FW_FEATURE_WMI_10_2 = 4,
409
Michal Kazior0d9b0432013-08-09 10:13:33 +0200410 /* keep last */
411 ATH10K_FW_FEATURE_COUNT,
412};
413
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200414enum ath10k_dev_flags {
415 /* Indicates that ath10k device is during CAC phase of DFS */
416 ATH10K_CAC_RUNNING,
Michal Kazior6782cb62014-05-23 12:28:47 +0200417 ATH10K_FLAG_CORE_REGISTERED,
Michal Kazior7962b0d2014-10-28 10:34:38 +0100418
419 /* Device has crashed and needs to restart. This indicates any pending
420 * waiters should immediately cancel instead of waiting for a time out.
421 */
422 ATH10K_FLAG_CRASH_FLUSH,
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200423};
424
Kalle Valoa58227e2014-10-13 09:40:59 +0300425enum ath10k_cal_mode {
426 ATH10K_CAL_MODE_FILE,
427 ATH10K_CAL_MODE_OTP,
Toshi Kikuchi5aabff02014-12-02 10:55:54 +0200428 ATH10K_CAL_MODE_DT,
Kalle Valoa58227e2014-10-13 09:40:59 +0300429};
430
431static inline const char *ath10k_cal_mode_str(enum ath10k_cal_mode mode)
432{
433 switch (mode) {
434 case ATH10K_CAL_MODE_FILE:
435 return "file";
436 case ATH10K_CAL_MODE_OTP:
437 return "otp";
Toshi Kikuchi5aabff02014-12-02 10:55:54 +0200438 case ATH10K_CAL_MODE_DT:
439 return "dt";
Kalle Valoa58227e2014-10-13 09:40:59 +0300440 }
441
442 return "unknown";
443}
444
Michal Kazior5c81c7f2014-08-05 14:54:44 +0200445enum ath10k_scan_state {
446 ATH10K_SCAN_IDLE,
447 ATH10K_SCAN_STARTING,
448 ATH10K_SCAN_RUNNING,
449 ATH10K_SCAN_ABORTING,
450};
451
452static inline const char *ath10k_scan_state_str(enum ath10k_scan_state state)
453{
454 switch (state) {
455 case ATH10K_SCAN_IDLE:
456 return "idle";
457 case ATH10K_SCAN_STARTING:
458 return "starting";
459 case ATH10K_SCAN_RUNNING:
460 return "running";
461 case ATH10K_SCAN_ABORTING:
462 return "aborting";
463 }
464
465 return "unknown";
466}
467
Kalle Valo5e3dd152013-06-12 20:52:10 +0300468struct ath10k {
469 struct ath_common ath_common;
470 struct ieee80211_hw *hw;
471 struct device *dev;
472 u8 mac_addr[ETH_ALEN];
473
Kalle Valoe01ae682013-09-01 11:22:14 +0300474 u32 chip_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300475 u32 target_version;
476 u8 fw_version_major;
477 u32 fw_version_minor;
478 u16 fw_version_release;
479 u16 fw_version_build;
480 u32 phy_capability;
481 u32 hw_min_tx_power;
482 u32 hw_max_tx_power;
483 u32 ht_cap_info;
484 u32 vht_cap_info;
Michal Kazior8865bee42013-07-24 12:36:46 +0200485 u32 num_rf_chains;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300486
Michal Kazior0d9b0432013-08-09 10:13:33 +0200487 DECLARE_BITMAP(fw_features, ATH10K_FW_FEATURE_COUNT);
488
Kalle Valo5e3dd152013-06-12 20:52:10 +0300489 struct targetdef *targetdef;
490 struct hostdef *hostdef;
491
492 bool p2p;
493
494 struct {
Kalle Valoe07db352014-10-13 09:40:47 +0300495 enum ath10k_bus bus;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300496 const struct ath10k_hif_ops *ops;
497 } hif;
498
Marek Puzyniak9042e172014-02-10 17:14:23 +0100499 struct completion target_suspend;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300500
501 struct ath10k_bmi bmi;
Michal Kazioredb82362013-07-05 16:15:14 +0300502 struct ath10k_wmi wmi;
Michal Kaziorcd003fa2013-07-05 16:15:13 +0300503 struct ath10k_htc htc;
Michal Kazioredb82362013-07-05 16:15:14 +0300504 struct ath10k_htt htt;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300505
506 struct ath10k_hw_params {
507 u32 id;
508 const char *name;
509 u32 patch_load_addr;
Michal Kazior3a8200b2014-12-02 10:55:55 +0200510 int uart_pin;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300511
512 struct ath10k_hw_params_fw {
513 const char *dir;
514 const char *fw;
515 const char *otp;
516 const char *board;
Michal Kazior9764a2a2014-12-02 10:55:54 +0200517 size_t board_size;
518 size_t board_ext_size;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300519 } fw;
520 } hw_params;
521
Kalle Valo36527912013-09-27 19:54:55 +0300522 const struct firmware *board;
Kalle Valo958df3a2013-09-27 19:55:01 +0300523 const void *board_data;
524 size_t board_len;
525
Michal Kazior29385052013-07-16 09:38:58 +0200526 const struct firmware *otp;
Kalle Valo958df3a2013-09-27 19:55:01 +0300527 const void *otp_data;
528 size_t otp_len;
529
Michal Kazior29385052013-07-16 09:38:58 +0200530 const struct firmware *firmware;
Kalle Valo958df3a2013-09-27 19:55:01 +0300531 const void *firmware_data;
532 size_t firmware_len;
Michal Kazior29385052013-07-16 09:38:58 +0200533
Kalle Valoa58227e2014-10-13 09:40:59 +0300534 const struct firmware *cal_file;
535
Kalle Valo1a222432013-09-27 19:55:07 +0300536 int fw_api;
Kalle Valoa58227e2014-10-13 09:40:59 +0300537 enum ath10k_cal_mode cal_mode;
Kalle Valo1a222432013-09-27 19:55:07 +0300538
Kalle Valo5e3dd152013-06-12 20:52:10 +0300539 struct {
540 struct completion started;
541 struct completion completed;
542 struct completion on_channel;
Michal Kazior5c81c7f2014-08-05 14:54:44 +0200543 struct delayed_work timeout;
544 enum ath10k_scan_state state;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300545 bool is_roc;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300546 int vdev_id;
547 int roc_freq;
548 } scan;
549
550 struct {
551 struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
552 } mac;
553
554 /* should never be NULL; needed for regular htt rx */
555 struct ieee80211_channel *rx_channel;
556
557 /* valid during scan; needed for mgmt rx during scan */
558 struct ieee80211_channel *scan_channel;
559
Michal Kaziorc930f742014-01-23 11:38:25 +0100560 /* current operating channel definition */
561 struct cfg80211_chan_def chandef;
562
Ben Greear16c11172014-09-23 14:17:16 -0700563 unsigned long long free_vdev_map;
Michal Kazior1bbc0972014-04-08 09:45:47 +0300564 bool monitor;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300565 int monitor_vdev_id;
Michal Kazior1bbc0972014-04-08 09:45:47 +0300566 bool monitor_started;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300567 unsigned int filter_flags;
Marek Puzyniake8a50f82013-11-20 09:59:47 +0200568 unsigned long dev_flags;
Marek Puzyniak7d9b40b2013-11-20 10:00:28 +0200569 u32 dfs_block_radar_events;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300570
Michal Kaziord6500972014-04-08 09:56:09 +0300571 /* protected by conf_mutex */
572 bool radar_enabled;
573 int num_started_vdevs;
574
Ben Greear46acf7b2014-05-16 17:15:38 +0300575 /* Protected by conf-mutex */
576 u8 supp_tx_chainmask;
577 u8 supp_rx_chainmask;
578 u8 cfg_tx_chainmask;
579 u8 cfg_rx_chainmask;
580
Kalle Valo5e3dd152013-06-12 20:52:10 +0300581 struct wmi_pdev_set_wmm_params_arg wmm_params;
582 struct completion install_key_done;
583
584 struct completion vdev_setup_done;
585
586 struct workqueue_struct *workqueue;
587
588 /* prevents concurrent FW reconfiguration */
589 struct mutex conf_mutex;
590
591 /* protects shared structure data */
592 spinlock_t data_lock;
593
Michal Kazior05791192013-10-16 15:44:45 +0300594 struct list_head arvifs;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300595 struct list_head peers;
596 wait_queue_head_t peer_mapping_wq;
597
Michal Kazior292a7532014-11-25 15:16:04 +0100598 /* protected by conf_mutex */
Bartosz Markowski0e759f32014-01-02 14:38:33 +0100599 int num_peers;
Michal Kaziorcfd10612014-11-25 15:16:05 +0100600 int num_stations;
601
602 int max_num_peers;
603 int max_num_stations;
Kalle Valo30c78162014-12-17 12:20:45 +0200604 int max_num_vdevs;
Bartosz Markowski0e759f32014-01-02 14:38:33 +0100605
Kalle Valo5e3dd152013-06-12 20:52:10 +0300606 struct work_struct offchan_tx_work;
607 struct sk_buff_head offchan_tx_queue;
608 struct completion offchan_tx_completed;
609 struct sk_buff *offchan_tx_skb;
610
Bartosz Markowski5e00d312013-09-26 17:47:12 +0200611 struct work_struct wmi_mgmt_tx_work;
612 struct sk_buff_head wmi_mgmt_tx_queue;
613
Michal Kaziorf7843d72013-07-16 09:38:52 +0200614 enum ath10k_state state;
615
Michal Kazior6782cb62014-05-23 12:28:47 +0200616 struct work_struct register_work;
Michal Kazioraffd3212013-07-16 09:54:35 +0200617 struct work_struct restart_work;
618
Michal Kazior2e1dea42013-07-31 10:32:40 +0200619 /* cycle count is reported twice for each visited channel during scan.
620 * access protected by data_lock */
621 u32 survey_last_rx_clear_count;
622 u32 survey_last_cycle_count;
623 struct survey_info survey[ATH10K_NUM_CHANS];
624
Janusz Dziedzic9702c682013-11-20 09:59:41 +0200625 struct dfs_pattern_detector *dfs_detector;
626
Kalle Valo5e3dd152013-06-12 20:52:10 +0300627#ifdef CONFIG_ATH10K_DEBUGFS
628 struct ath10k_debug debug;
629#endif
Simon Wunderlich855aed12014-08-02 09:12:54 +0300630
631 struct {
632 /* relay(fs) channel for spectral scan */
633 struct rchan *rfs_chan_spec_scan;
634
635 /* spectral_mode and spec_config are protected by conf_mutex */
636 enum ath10k_spectral_mode mode;
637 struct ath10k_spec_scan config;
638 } spectral;
Michal Kaziore7b54192014-08-07 11:03:27 +0200639
Kalle Valo43d2a302014-09-10 18:23:30 +0300640 struct {
641 /* protected by conf_mutex */
642 const struct firmware *utf;
643 DECLARE_BITMAP(orig_fw_features, ATH10K_FW_FEATURE_COUNT);
Michal Kaziord7579d12014-12-03 10:10:54 +0200644 enum ath10k_fw_wmi_op_version orig_wmi_op_version;
Kalle Valo43d2a302014-09-10 18:23:30 +0300645
646 /* protected by data_lock */
647 bool utf_monitor;
648 } testmode;
649
Ben Greearf51dbe72014-09-29 14:41:46 +0300650 struct {
651 /* protected by data_lock */
652 u32 fw_crash_counter;
653 u32 fw_warm_reset_counter;
654 u32 fw_cold_reset_counter;
655 } stats;
656
Rajkumar Manoharanfe6f36d2014-12-17 12:22:07 +0200657 struct ath10k_thermal thermal;
658
Michal Kaziore7b54192014-08-07 11:03:27 +0200659 /* must be last */
660 u8 drv_priv[0] __aligned(sizeof(void *));
Kalle Valo5e3dd152013-06-12 20:52:10 +0300661};
662
Michal Kaziore7b54192014-08-07 11:03:27 +0200663struct ath10k *ath10k_core_create(size_t priv_size, struct device *dev,
Kalle Valoe07db352014-10-13 09:40:47 +0300664 enum ath10k_bus bus,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300665 const struct ath10k_hif_ops *hif_ops);
666void ath10k_core_destroy(struct ath10k *ar);
667
Kalle Valo43d2a302014-09-10 18:23:30 +0300668int ath10k_core_start(struct ath10k *ar, enum ath10k_firmware_mode mode);
Marek Puzyniak00f54822014-02-10 17:14:24 +0100669int ath10k_wait_for_suspend(struct ath10k *ar, u32 suspend_opt);
Michal Kaziordd30a362013-07-16 09:38:51 +0200670void ath10k_core_stop(struct ath10k *ar);
Kalle Valoe01ae682013-09-01 11:22:14 +0300671int ath10k_core_register(struct ath10k *ar, u32 chip_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300672void ath10k_core_unregister(struct ath10k *ar);
673
Kalle Valo5e3dd152013-06-12 20:52:10 +0300674#endif /* _CORE_H_ */