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>
28 #include "targaddrs.h"
33 #define MS(_v, _f) (((_v) & _f##_MASK) >> _f##_LSB)
34 #define SM(_v, _f) (((_v) << _f##_LSB) & _f##_MASK)
35 #define WO(_f) ((_f##_OFFSET) >> 2)
37 #define ATH10K_SCAN_ID 0
38 #define WMI_READY_TIMEOUT (5 * HZ)
39 #define ATH10K_FLUSH_TIMEOUT_HZ (5*HZ)
41 /* Antenna noise floor */
42 #define ATH10K_DEFAULT_NOISE_FLOOR -95
50 struct ath10k_skb_cb
{
64 struct sk_buff
*txfrag
;
68 /* 4 bytes left on 64bit arch */
71 static inline struct ath10k_skb_cb
*ATH10K_SKB_CB(struct sk_buff
*skb
)
73 BUILD_BUG_ON(sizeof(struct ath10k_skb_cb
) >
74 IEEE80211_TX_INFO_DRIVER_DATA_SIZE
);
75 return (struct ath10k_skb_cb
*)&IEEE80211_SKB_CB(skb
)->driver_data
;
78 static inline int ath10k_skb_map(struct device
*dev
, struct sk_buff
*skb
)
80 if (ATH10K_SKB_CB(skb
)->is_mapped
)
83 ATH10K_SKB_CB(skb
)->paddr
= dma_map_single(dev
, skb
->data
, skb
->len
,
86 if (unlikely(dma_mapping_error(dev
, ATH10K_SKB_CB(skb
)->paddr
)))
89 ATH10K_SKB_CB(skb
)->is_mapped
= true;
93 static inline int ath10k_skb_unmap(struct device
*dev
, struct sk_buff
*skb
)
95 if (!ATH10K_SKB_CB(skb
)->is_mapped
)
98 dma_unmap_single(dev
, ATH10K_SKB_CB(skb
)->paddr
, skb
->len
,
100 ATH10K_SKB_CB(skb
)->is_mapped
= false;
104 static inline u32
host_interest_item_address(u32 item_offset
)
106 return QCA988X_HOST_INTEREST_ADDRESS
+ item_offset
;
114 enum ath10k_htc_ep_id eid
;
115 struct completion service_ready
;
116 struct completion unified_ready
;
117 atomic_t pending_tx_count
;
118 wait_queue_head_t wq
;
120 struct sk_buff_head wmi_event_list
;
121 struct work_struct wmi_event_work
;
124 struct ath10k_peer_stat
{
125 u8 peer_macaddr
[ETH_ALEN
];
130 struct ath10k_target_stats
{
156 u32 sw_retry_failure
;
157 u32 illgl_rate_phy_err
;
158 u32 pdev_cont_xretry
;
165 s32 mid_ppdu_route_change
;
184 struct ath10k_peer_stat peer_stat
[TARGET_NUM_PEERS
];
186 /* TODO: Beacon filter stats */
190 #define ATH10K_MAX_NUM_PEER_IDS (1 << 11) /* htt rx_desc limit */
193 struct list_head list
;
196 DECLARE_BITMAP(peer_ids
, ATH10K_MAX_NUM_PEER_IDS
);
197 struct ieee80211_key_conf
*keys
[WMI_MAX_KEY_INDEX
+ 1];
200 #define ATH10K_VDEV_SETUP_TIMEOUT_HZ (5*HZ)
204 enum wmi_vdev_type vdev_type
;
205 enum wmi_vdev_subtype vdev_subtype
;
210 struct ieee80211_vif
*vif
;
212 struct ieee80211_key_conf
*wep_keys
[WMI_MAX_KEY_INDEX
+ 1];
213 u8 def_wep_key_index
;
223 /* 127 stations; wmi limit */
227 u8 ssid
[IEEE80211_MAX_SSID_LEN
];
229 /* P2P_IE with NoA attribute for P2P_GO case */
239 struct ath10k_vif_iter
{
241 struct ath10k_vif
*arvif
;
244 struct ath10k_debug
{
245 struct dentry
*debugfs_phy
;
247 struct ath10k_target_stats target_stats
;
248 u32 wmi_service_bitmap
[WMI_SERVICE_BM_SIZE
];
250 struct completion event_stats_compl
;
254 struct ath_common ath_common
;
255 struct ieee80211_hw
*hw
;
257 u8 mac_addr
[ETH_ALEN
];
261 u32 fw_version_minor
;
262 u16 fw_version_release
;
263 u16 fw_version_build
;
270 struct targetdef
*targetdef
;
271 struct hostdef
*hostdef
;
278 const struct ath10k_hif_ops
*ops
;
281 struct ath10k_wmi wmi
;
283 wait_queue_head_t event_queue
;
284 bool is_target_paused
;
286 struct ath10k_bmi bmi
;
288 struct ath10k_htc
*htc
;
289 struct ath10k_htt
*htt
;
291 struct ath10k_hw_params
{
296 struct ath10k_hw_params_fw
{
305 struct completion started
;
306 struct completion completed
;
307 struct completion on_channel
;
308 struct timer_list timeout
;
317 struct ieee80211_supported_band sbands
[IEEE80211_NUM_BANDS
];
320 /* should never be NULL; needed for regular htt rx */
321 struct ieee80211_channel
*rx_channel
;
323 /* valid during scan; needed for mgmt rx during scan */
324 struct ieee80211_channel
*scan_channel
;
328 bool monitor_enabled
;
329 bool monitor_present
;
330 unsigned int filter_flags
;
332 struct wmi_pdev_set_wmm_params_arg wmm_params
;
333 struct completion install_key_done
;
335 struct completion vdev_setup_done
;
337 struct workqueue_struct
*workqueue
;
339 /* prevents concurrent FW reconfiguration */
340 struct mutex conf_mutex
;
342 /* protects shared structure data */
343 spinlock_t data_lock
;
345 struct list_head peers
;
346 wait_queue_head_t peer_mapping_wq
;
348 struct work_struct offchan_tx_work
;
349 struct sk_buff_head offchan_tx_queue
;
350 struct completion offchan_tx_completed
;
351 struct sk_buff
*offchan_tx_skb
;
353 #ifdef CONFIG_ATH10K_DEBUGFS
354 struct ath10k_debug debug
;
358 struct ath10k
*ath10k_core_create(void *hif_priv
, struct device
*dev
,
360 const struct ath10k_hif_ops
*hif_ops
);
361 void ath10k_core_destroy(struct ath10k
*ar
);
363 int ath10k_core_register(struct ath10k
*ar
);
364 void ath10k_core_unregister(struct ath10k
*ar
);
366 int ath10k_core_target_suspend(struct ath10k
*ar
);
367 int ath10k_core_target_resume(struct ath10k
*ar
);
369 #endif /* _CORE_H_ */