124e7246bb44037acc6f2973a2d3dcb8c2f2f03e
[cascardo/linux.git] / drivers / net / wireless / ath / ath10k / core.h
1 /*
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>
25
26 #include "htt.h"
27 #include "htc.h"
28 #include "hw.h"
29 #include "targaddrs.h"
30 #include "wmi.h"
31 #include "../ath.h"
32 #include "../regd.h"
33
34 #define MS(_v, _f) (((_v) & _f##_MASK) >> _f##_LSB)
35 #define SM(_v, _f) (((_v) << _f##_LSB) & _f##_MASK)
36 #define WO(_f)      ((_f##_OFFSET) >> 2)
37
38 #define ATH10K_SCAN_ID 0
39 #define WMI_READY_TIMEOUT (5 * HZ)
40 #define ATH10K_FLUSH_TIMEOUT_HZ (5*HZ)
41 #define ATH10K_NUM_CHANS 38
42
43 /* Antenna noise floor */
44 #define ATH10K_DEFAULT_NOISE_FLOOR -95
45
46 #define ATH10K_MAX_NUM_MGMT_PENDING 16
47
48 struct ath10k;
49
50 struct ath10k_skb_cb {
51         dma_addr_t paddr;
52         bool is_mapped;
53         bool is_aborted;
54         u8 vdev_id;
55
56         struct {
57                 u8 tid;
58                 bool is_offchan;
59
60                 u8 frag_len;
61                 u8 pad_len;
62         } __packed htt;
63 } __packed;
64
65 static inline struct ath10k_skb_cb *ATH10K_SKB_CB(struct sk_buff *skb)
66 {
67         BUILD_BUG_ON(sizeof(struct ath10k_skb_cb) >
68                      IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
69         return (struct ath10k_skb_cb *)&IEEE80211_SKB_CB(skb)->driver_data;
70 }
71
72 static inline int ath10k_skb_map(struct device *dev, struct sk_buff *skb)
73 {
74         if (ATH10K_SKB_CB(skb)->is_mapped)
75                 return -EINVAL;
76
77         ATH10K_SKB_CB(skb)->paddr = dma_map_single(dev, skb->data, skb->len,
78                                                    DMA_TO_DEVICE);
79
80         if (unlikely(dma_mapping_error(dev, ATH10K_SKB_CB(skb)->paddr)))
81                 return -EIO;
82
83         ATH10K_SKB_CB(skb)->is_mapped = true;
84         return 0;
85 }
86
87 static inline int ath10k_skb_unmap(struct device *dev, struct sk_buff *skb)
88 {
89         if (!ATH10K_SKB_CB(skb)->is_mapped)
90                 return -EINVAL;
91
92         dma_unmap_single(dev, ATH10K_SKB_CB(skb)->paddr, skb->len,
93                          DMA_TO_DEVICE);
94         ATH10K_SKB_CB(skb)->is_mapped = false;
95         return 0;
96 }
97
98 static inline u32 host_interest_item_address(u32 item_offset)
99 {
100         return QCA988X_HOST_INTEREST_ADDRESS + item_offset;
101 }
102
103 struct ath10k_bmi {
104         bool done_sent;
105 };
106
107 #define ATH10K_MAX_MEM_REQS 16
108
109 struct ath10k_mem_chunk {
110         void *vaddr;
111         dma_addr_t paddr;
112         u32 len;
113         u32 req_id;
114 };
115
116 struct ath10k_wmi {
117         enum ath10k_htc_ep_id eid;
118         struct completion service_ready;
119         struct completion unified_ready;
120         wait_queue_head_t tx_credits_wq;
121         struct wmi_cmd_map *cmd;
122         struct wmi_vdev_param_map *vdev_param;
123
124         u32 num_mem_chunks;
125         struct ath10k_mem_chunk mem_chunks[ATH10K_MAX_MEM_REQS];
126 };
127
128 struct ath10k_peer_stat {
129         u8 peer_macaddr[ETH_ALEN];
130         u32 peer_rssi;
131         u32 peer_tx_rate;
132 };
133
134 struct ath10k_target_stats {
135         /* PDEV stats */
136         s32 ch_noise_floor;
137         u32 tx_frame_count;
138         u32 rx_frame_count;
139         u32 rx_clear_count;
140         u32 cycle_count;
141         u32 phy_err_count;
142         u32 chan_tx_power;
143
144         /* PDEV TX stats */
145         s32 comp_queued;
146         s32 comp_delivered;
147         s32 msdu_enqued;
148         s32 mpdu_enqued;
149         s32 wmm_drop;
150         s32 local_enqued;
151         s32 local_freed;
152         s32 hw_queued;
153         s32 hw_reaped;
154         s32 underrun;
155         s32 tx_abort;
156         s32 mpdus_requed;
157         u32 tx_ko;
158         u32 data_rc;
159         u32 self_triggers;
160         u32 sw_retry_failure;
161         u32 illgl_rate_phy_err;
162         u32 pdev_cont_xretry;
163         u32 pdev_tx_timeout;
164         u32 pdev_resets;
165         u32 phy_underrun;
166         u32 txop_ovf;
167
168         /* PDEV RX stats */
169         s32 mid_ppdu_route_change;
170         s32 status_rcvd;
171         s32 r0_frags;
172         s32 r1_frags;
173         s32 r2_frags;
174         s32 r3_frags;
175         s32 htt_msdus;
176         s32 htt_mpdus;
177         s32 loc_msdus;
178         s32 loc_mpdus;
179         s32 oversize_amsdu;
180         s32 phy_errs;
181         s32 phy_err_drop;
182         s32 mpdu_errs;
183
184         /* VDEV STATS */
185
186         /* PEER STATS */
187         u8 peers;
188         struct ath10k_peer_stat peer_stat[TARGET_NUM_PEERS];
189
190         /* TODO: Beacon filter stats */
191
192 };
193
194 #define ATH10K_MAX_NUM_PEER_IDS (1 << 11) /* htt rx_desc limit */
195
196 struct ath10k_peer {
197         struct list_head list;
198         int vdev_id;
199         u8 addr[ETH_ALEN];
200         DECLARE_BITMAP(peer_ids, ATH10K_MAX_NUM_PEER_IDS);
201         struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1];
202 };
203
204 #define ATH10K_VDEV_SETUP_TIMEOUT_HZ (5*HZ)
205
206 struct ath10k_vif {
207         u32 vdev_id;
208         enum wmi_vdev_type vdev_type;
209         enum wmi_vdev_subtype vdev_subtype;
210         u32 beacon_interval;
211         u32 dtim_period;
212         struct sk_buff *beacon;
213
214         struct ath10k *ar;
215         struct ieee80211_vif *vif;
216
217         struct ieee80211_key_conf *wep_keys[WMI_MAX_KEY_INDEX + 1];
218         u8 def_wep_key_index;
219
220         u16 tx_seq_no;
221
222         union {
223                 struct {
224                         u8 bssid[ETH_ALEN];
225                         u32 uapsd;
226                 } sta;
227                 struct {
228                         /* 127 stations; wmi limit */
229                         u8 tim_bitmap[16];
230                         u8 tim_len;
231                         u32 ssid_len;
232                         u8 ssid[IEEE80211_MAX_SSID_LEN];
233                         bool hidden_ssid;
234                         /* P2P_IE with NoA attribute for P2P_GO case */
235                         u32 noa_len;
236                         u8 *noa_data;
237                 } ap;
238                 struct {
239                         u8 bssid[ETH_ALEN];
240                 } ibss;
241         } u;
242 };
243
244 struct ath10k_vif_iter {
245         u32 vdev_id;
246         struct ath10k_vif *arvif;
247 };
248
249 struct ath10k_debug {
250         struct dentry *debugfs_phy;
251
252         struct ath10k_target_stats target_stats;
253         u32 wmi_service_bitmap[WMI_SERVICE_BM_SIZE];
254
255         struct completion event_stats_compl;
256
257         unsigned long htt_stats_mask;
258         struct delayed_work htt_stats_dwork;
259 };
260
261 enum ath10k_state {
262         ATH10K_STATE_OFF = 0,
263         ATH10K_STATE_ON,
264
265         /* When doing firmware recovery the device is first powered down.
266          * mac80211 is supposed to call in to start() hook later on. It is
267          * however possible that driver unloading and firmware crash overlap.
268          * mac80211 can wait on conf_mutex in stop() while the device is
269          * stopped in ath10k_core_restart() work holding conf_mutex. The state
270          * RESTARTED means that the device is up and mac80211 has started hw
271          * reconfiguration. Once mac80211 is done with the reconfiguration we
272          * set the state to STATE_ON in restart_complete(). */
273         ATH10K_STATE_RESTARTING,
274         ATH10K_STATE_RESTARTED,
275
276         /* The device has crashed while restarting hw. This state is like ON
277          * but commands are blocked in HTC and -ECOMM response is given. This
278          * prevents completion timeouts and makes the driver more responsive to
279          * userspace commands. This is also prevents recursive recovery. */
280         ATH10K_STATE_WEDGED,
281 };
282
283 enum ath10k_fw_features {
284         /* wmi_mgmt_rx_hdr contains extra RSSI information */
285         ATH10K_FW_FEATURE_EXT_WMI_MGMT_RX = 0,
286
287         /* firmware from 10X branch */
288         ATH10K_FW_FEATURE_WMI_10X = 1,
289
290         /* firmware support tx frame management over WMI, otherwise it's HTT */
291         ATH10K_FW_FEATURE_HAS_WMI_MGMT_TX = 2,
292
293         /* keep last */
294         ATH10K_FW_FEATURE_COUNT,
295 };
296
297 struct ath10k {
298         struct ath_common ath_common;
299         struct ieee80211_hw *hw;
300         struct device *dev;
301         u8 mac_addr[ETH_ALEN];
302
303         u32 chip_id;
304         u32 target_version;
305         u8 fw_version_major;
306         u32 fw_version_minor;
307         u16 fw_version_release;
308         u16 fw_version_build;
309         u32 phy_capability;
310         u32 hw_min_tx_power;
311         u32 hw_max_tx_power;
312         u32 ht_cap_info;
313         u32 vht_cap_info;
314         u32 num_rf_chains;
315
316         DECLARE_BITMAP(fw_features, ATH10K_FW_FEATURE_COUNT);
317
318         struct targetdef *targetdef;
319         struct hostdef *hostdef;
320
321         bool p2p;
322
323         struct {
324                 void *priv;
325                 const struct ath10k_hif_ops *ops;
326         } hif;
327
328         wait_queue_head_t event_queue;
329         bool is_target_paused;
330
331         struct ath10k_bmi bmi;
332         struct ath10k_wmi wmi;
333         struct ath10k_htc htc;
334         struct ath10k_htt htt;
335
336         struct ath10k_hw_params {
337                 u32 id;
338                 const char *name;
339                 u32 patch_load_addr;
340
341                 struct ath10k_hw_params_fw {
342                         const char *dir;
343                         const char *fw;
344                         const char *otp;
345                         const char *board;
346                 } fw;
347         } hw_params;
348
349         const struct firmware *board_data;
350         const struct firmware *otp;
351         const struct firmware *firmware;
352
353         struct {
354                 struct completion started;
355                 struct completion completed;
356                 struct completion on_channel;
357                 struct timer_list timeout;
358                 bool is_roc;
359                 bool in_progress;
360                 bool aborting;
361                 int vdev_id;
362                 int roc_freq;
363         } scan;
364
365         struct {
366                 struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
367         } mac;
368
369         /* should never be NULL; needed for regular htt rx */
370         struct ieee80211_channel *rx_channel;
371
372         /* valid during scan; needed for mgmt rx during scan */
373         struct ieee80211_channel *scan_channel;
374
375         int free_vdev_map;
376         int monitor_vdev_id;
377         bool monitor_enabled;
378         bool monitor_present;
379         unsigned int filter_flags;
380
381         struct wmi_pdev_set_wmm_params_arg wmm_params;
382         struct completion install_key_done;
383
384         struct completion vdev_setup_done;
385
386         struct workqueue_struct *workqueue;
387
388         /* prevents concurrent FW reconfiguration */
389         struct mutex conf_mutex;
390
391         /* protects shared structure data */
392         spinlock_t data_lock;
393
394         struct list_head peers;
395         wait_queue_head_t peer_mapping_wq;
396
397         struct work_struct offchan_tx_work;
398         struct sk_buff_head offchan_tx_queue;
399         struct completion offchan_tx_completed;
400         struct sk_buff *offchan_tx_skb;
401
402         struct work_struct wmi_mgmt_tx_work;
403         struct sk_buff_head wmi_mgmt_tx_queue;
404
405         enum ath10k_state state;
406
407         struct work_struct restart_work;
408
409         /* cycle count is reported twice for each visited channel during scan.
410          * access protected by data_lock */
411         u32 survey_last_rx_clear_count;
412         u32 survey_last_cycle_count;
413         struct survey_info survey[ATH10K_NUM_CHANS];
414
415 #ifdef CONFIG_ATH10K_DEBUGFS
416         struct ath10k_debug debug;
417 #endif
418 };
419
420 struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev,
421                                   const struct ath10k_hif_ops *hif_ops);
422 void ath10k_core_destroy(struct ath10k *ar);
423
424 int ath10k_core_start(struct ath10k *ar);
425 void ath10k_core_stop(struct ath10k *ar);
426 int ath10k_core_register(struct ath10k *ar, u32 chip_id);
427 void ath10k_core_unregister(struct ath10k *ar);
428
429 #endif /* _CORE_H_ */