2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
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.
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.
21 #include <linux/completion.h>
22 #include <linux/if_ether.h>
23 #include <linux/types.h>
24 #include <linux/pci.h>
29 #include "targaddrs.h"
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)
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
43 /* Antenna noise floor */
44 #define ATH10K_DEFAULT_NOISE_FLOOR -95
48 struct ath10k_skb_cb {
62 struct sk_buff *txfrag;
66 /* 4 bytes left on 64bit arch */
69 static inline struct ath10k_skb_cb *ATH10K_SKB_CB(struct sk_buff *skb)
71 BUILD_BUG_ON(sizeof(struct ath10k_skb_cb) >
72 IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
73 return (struct ath10k_skb_cb *)&IEEE80211_SKB_CB(skb)->driver_data;
76 static inline int ath10k_skb_map(struct device *dev, struct sk_buff *skb)
78 if (ATH10K_SKB_CB(skb)->is_mapped)
81 ATH10K_SKB_CB(skb)->paddr = dma_map_single(dev, skb->data, skb->len,
84 if (unlikely(dma_mapping_error(dev, ATH10K_SKB_CB(skb)->paddr)))
87 ATH10K_SKB_CB(skb)->is_mapped = true;
91 static inline int ath10k_skb_unmap(struct device *dev, struct sk_buff *skb)
93 if (!ATH10K_SKB_CB(skb)->is_mapped)
96 dma_unmap_single(dev, ATH10K_SKB_CB(skb)->paddr, skb->len,
98 ATH10K_SKB_CB(skb)->is_mapped = false;
102 static inline u32 host_interest_item_address(u32 item_offset)
104 return QCA988X_HOST_INTEREST_ADDRESS + item_offset;
112 enum ath10k_htc_ep_id eid;
113 struct completion service_ready;
114 struct completion unified_ready;
115 atomic_t pending_tx_count;
116 wait_queue_head_t wq;
118 struct sk_buff_head wmi_event_list;
119 struct work_struct wmi_event_work;
122 struct ath10k_peer_stat {
123 u8 peer_macaddr[ETH_ALEN];
128 struct ath10k_target_stats {
154 u32 sw_retry_failure;
155 u32 illgl_rate_phy_err;
156 u32 pdev_cont_xretry;
163 s32 mid_ppdu_route_change;
182 struct ath10k_peer_stat peer_stat[TARGET_NUM_PEERS];
184 /* TODO: Beacon filter stats */
188 #define ATH10K_MAX_NUM_PEER_IDS (1 << 11) /* htt rx_desc limit */
191 struct list_head list;
194 DECLARE_BITMAP(peer_ids, ATH10K_MAX_NUM_PEER_IDS);
195 struct ieee80211_key_conf *keys[WMI_MAX_KEY_INDEX + 1];
198 #define ATH10K_VDEV_SETUP_TIMEOUT_HZ (5*HZ)
202 enum wmi_vdev_type vdev_type;
203 enum wmi_vdev_subtype vdev_subtype;
208 struct ieee80211_vif *vif;
210 struct ieee80211_key_conf *wep_keys[WMI_MAX_KEY_INDEX + 1];
211 u8 def_wep_key_index;
221 /* 127 stations; wmi limit */
225 u8 ssid[IEEE80211_MAX_SSID_LEN];
227 /* P2P_IE with NoA attribute for P2P_GO case */
237 struct ath10k_vif_iter {
239 struct ath10k_vif *arvif;
242 struct ath10k_debug {
243 struct dentry *debugfs_phy;
245 struct ath10k_target_stats target_stats;
246 u32 wmi_service_bitmap[WMI_SERVICE_BM_SIZE];
248 struct completion event_stats_compl;
252 ATH10K_STATE_OFF = 0,
255 /* When doing firmware recovery the device is first powered down.
256 * mac80211 is supposed to call in to start() hook later on. It is
257 * however possible that driver unloading and firmware crash overlap.
258 * mac80211 can wait on conf_mutex in stop() while the device is
259 * stopped in ath10k_core_restart() work holding conf_mutex. The state
260 * RESTARTED means that the device is up and mac80211 has started hw
261 * reconfiguration. Once mac80211 is done with the reconfiguration we
262 * set the state to STATE_ON in restart_complete(). */
263 ATH10K_STATE_RESTARTING,
264 ATH10K_STATE_RESTARTED,
266 /* The device has crashed while restarting hw. This state is like ON
267 * but commands are blocked in HTC and -ECOMM response is given. This
268 * prevents completion timeouts and makes the driver more responsive to
269 * userspace commands. This is also prevents recursive recovery. */
274 struct ath_common ath_common;
275 struct ieee80211_hw *hw;
277 u8 mac_addr[ETH_ALEN];
281 u32 fw_version_minor;
282 u16 fw_version_release;
283 u16 fw_version_build;
291 struct targetdef *targetdef;
292 struct hostdef *hostdef;
298 const struct ath10k_hif_ops *ops;
301 wait_queue_head_t event_queue;
302 bool is_target_paused;
304 struct ath10k_bmi bmi;
305 struct ath10k_wmi wmi;
306 struct ath10k_htc htc;
307 struct ath10k_htt htt;
309 struct ath10k_hw_params {
314 struct ath10k_hw_params_fw {
322 const struct firmware *board_data;
323 const struct firmware *otp;
324 const struct firmware *firmware;
327 struct completion started;
328 struct completion completed;
329 struct completion on_channel;
330 struct timer_list timeout;
339 struct ieee80211_supported_band sbands[IEEE80211_NUM_BANDS];
342 /* should never be NULL; needed for regular htt rx */
343 struct ieee80211_channel *rx_channel;
345 /* valid during scan; needed for mgmt rx during scan */
346 struct ieee80211_channel *scan_channel;
350 bool monitor_enabled;
351 bool monitor_present;
352 unsigned int filter_flags;
354 struct wmi_pdev_set_wmm_params_arg wmm_params;
355 struct completion install_key_done;
357 struct completion vdev_setup_done;
359 struct workqueue_struct *workqueue;
361 /* prevents concurrent FW reconfiguration */
362 struct mutex conf_mutex;
364 /* protects shared structure data */
365 spinlock_t data_lock;
367 struct list_head peers;
368 wait_queue_head_t peer_mapping_wq;
370 struct work_struct offchan_tx_work;
371 struct sk_buff_head offchan_tx_queue;
372 struct completion offchan_tx_completed;
373 struct sk_buff *offchan_tx_skb;
375 enum ath10k_state state;
377 struct work_struct restart_work;
379 /* cycle count is reported twice for each visited channel during scan.
380 * access protected by data_lock */
381 u32 survey_last_rx_clear_count;
382 u32 survey_last_cycle_count;
383 struct survey_info survey[ATH10K_NUM_CHANS];
385 #ifdef CONFIG_ATH10K_DEBUGFS
386 struct ath10k_debug debug;
390 struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev,
391 const struct ath10k_hif_ops *hif_ops);
392 void ath10k_core_destroy(struct ath10k *ar);
394 int ath10k_core_start(struct ath10k *ar);
395 void ath10k_core_stop(struct ath10k *ar);
396 int ath10k_core_register(struct ath10k *ar);
397 void ath10k_core_unregister(struct ath10k *ar);
399 #endif /* _CORE_H_ */