Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
core.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2011 Atheros Communications Inc.
3  * Copyright (c) 2011-2012 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/etherdevice.h>
22 #include <linux/rtnetlink.h>
23 #include <linux/firmware.h>
24 #include <linux/sched.h>
25 #include <linux/circ_buf.h>
26 #include <net/cfg80211.h>
27 #include "htc.h"
28 #include "wmi.h"
29 #include "bmi.h"
30 #include "target.h"
31 
32 #define MAX_ATH6KL 1
33 #define ATH6KL_MAX_RX_BUFFERS 16
34 #define ATH6KL_BUFFER_SIZE 1664
35 #define ATH6KL_MAX_AMSDU_RX_BUFFERS 4
36 #define ATH6KL_AMSDU_REFILL_THRESHOLD 3
37 #define ATH6KL_AMSDU_BUFFER_SIZE (WMI_MAX_AMSDU_RX_DATA_FRAME_LENGTH + 128)
38 #define MAX_MSDU_SUBFRAME_PAYLOAD_LEN 1508
39 #define MIN_MSDU_SUBFRAME_PAYLOAD_LEN 46
40 
41 #define USER_SAVEDKEYS_STAT_INIT 0
42 #define USER_SAVEDKEYS_STAT_RUN 1
43 
44 #define ATH6KL_TX_TIMEOUT 10
45 #define ATH6KL_MAX_ENDPOINTS 4
46 #define MAX_NODE_NUM 15
47 
48 #define ATH6KL_APSD_ALL_FRAME 0xFFFF
49 #define ATH6KL_APSD_NUM_OF_AC 0x4
50 #define ATH6KL_APSD_FRAME_MASK 0xF
51 
52 /* Extra bytes for htc header alignment */
53 #define ATH6KL_HTC_ALIGN_BYTES 3
54 
55 /* MAX_HI_COOKIE_NUM are reserved for high priority traffic */
56 #define MAX_DEF_COOKIE_NUM 180
57 #define MAX_HI_COOKIE_NUM 18 /* 10% of MAX_COOKIE_NUM */
58 #define MAX_COOKIE_NUM (MAX_DEF_COOKIE_NUM + MAX_HI_COOKIE_NUM)
59 
60 #define MAX_DEFAULT_SEND_QUEUE_DEPTH (MAX_DEF_COOKIE_NUM / WMM_NUM_AC)
61 
62 #define DISCON_TIMER_INTVAL 10000 /* in msec */
63 
64 /* Channel dwell time in fg scan */
65 #define ATH6KL_FG_SCAN_INTERVAL 50 /* in ms */
66 
67 /* includes also the null byte */
68 #define ATH6KL_FIRMWARE_MAGIC "QCA-ATH6KL"
69 
81 };
82 
86 
87  /*
88  * Firmware is capable of supporting P2P mgmt operations on a
89  * station interface. After group formation, the station
90  * interface will become a P2P client/GO interface as the case may be
91  */
93 
94  /*
95  * Firmware has support to cleanup inactive stations
96  * in AP mode.
97  */
99 
100  /* Firmware has support to override rsn cap of rsn ie */
102 
103  /*
104  * Multicast support in WOW and host awake mode.
105  * Allow all multicast in host awake mode.
106  * Apply multicast filter in WOW mode.
107  */
109 
110  /* Firmware supports enhanced bmiss detection */
112 
113  /*
114  * FW supports matching of ssid in schedule scan
115  */
117 
118  /* this needs to be last */
120 };
121 
122 #define ATH6KL_CAPABILITY_LEN (ALIGN(ATH6KL_FW_CAPABILITY_MAX, 32) / 32)
123 
124 struct ath6kl_fw_ie {
127  u8 data[0];
128 };
129 
132 };
133 
134 #define ATH6KL_FW_API2_FILE "fw-2.bin"
135 #define ATH6KL_FW_API3_FILE "fw-3.bin"
136 
137 /* AR6003 1.0 definitions */
138 #define AR6003_HW_1_0_VERSION 0x300002ba
139 
140 /* AR6003 2.0 definitions */
141 #define AR6003_HW_2_0_VERSION 0x30000384
142 #define AR6003_HW_2_0_PATCH_DOWNLOAD_ADDRESS 0x57e910
143 #define AR6003_HW_2_0_FW_DIR "ath6k/AR6003/hw2.0"
144 #define AR6003_HW_2_0_OTP_FILE "otp.bin.z77"
145 #define AR6003_HW_2_0_FIRMWARE_FILE "athwlan.bin.z77"
146 #define AR6003_HW_2_0_TCMD_FIRMWARE_FILE "athtcmd_ram.bin"
147 #define AR6003_HW_2_0_PATCH_FILE "data.patch.bin"
148 #define AR6003_HW_2_0_BOARD_DATA_FILE AR6003_HW_2_0_FW_DIR "/bdata.bin"
149 #define AR6003_HW_2_0_DEFAULT_BOARD_DATA_FILE \
150  AR6003_HW_2_0_FW_DIR "/bdata.SD31.bin"
151 
152 /* AR6003 3.0 definitions */
153 #define AR6003_HW_2_1_1_VERSION 0x30000582
154 #define AR6003_HW_2_1_1_FW_DIR "ath6k/AR6003/hw2.1.1"
155 #define AR6003_HW_2_1_1_OTP_FILE "otp.bin"
156 #define AR6003_HW_2_1_1_FIRMWARE_FILE "athwlan.bin"
157 #define AR6003_HW_2_1_1_TCMD_FIRMWARE_FILE "athtcmd_ram.bin"
158 #define AR6003_HW_2_1_1_UTF_FIRMWARE_FILE "utf.bin"
159 #define AR6003_HW_2_1_1_TESTSCRIPT_FILE "nullTestFlow.bin"
160 #define AR6003_HW_2_1_1_PATCH_FILE "data.patch.bin"
161 #define AR6003_HW_2_1_1_BOARD_DATA_FILE AR6003_HW_2_1_1_FW_DIR "/bdata.bin"
162 #define AR6003_HW_2_1_1_DEFAULT_BOARD_DATA_FILE \
163  AR6003_HW_2_1_1_FW_DIR "/bdata.SD31.bin"
164 
165 /* AR6004 1.0 definitions */
166 #define AR6004_HW_1_0_VERSION 0x30000623
167 #define AR6004_HW_1_0_FW_DIR "ath6k/AR6004/hw1.0"
168 #define AR6004_HW_1_0_FIRMWARE_FILE "fw.ram.bin"
169 #define AR6004_HW_1_0_BOARD_DATA_FILE AR6004_HW_1_0_FW_DIR "/bdata.bin"
170 #define AR6004_HW_1_0_DEFAULT_BOARD_DATA_FILE \
171  AR6004_HW_1_0_FW_DIR "/bdata.DB132.bin"
172 
173 /* AR6004 1.1 definitions */
174 #define AR6004_HW_1_1_VERSION 0x30000001
175 #define AR6004_HW_1_1_FW_DIR "ath6k/AR6004/hw1.1"
176 #define AR6004_HW_1_1_FIRMWARE_FILE "fw.ram.bin"
177 #define AR6004_HW_1_1_BOARD_DATA_FILE AR6004_HW_1_1_FW_DIR "/bdata.bin"
178 #define AR6004_HW_1_1_DEFAULT_BOARD_DATA_FILE \
179  AR6004_HW_1_1_FW_DIR "/bdata.DB132.bin"
180 
181 /* AR6004 1.2 definitions */
182 #define AR6004_HW_1_2_VERSION 0x300007e8
183 #define AR6004_HW_1_2_FW_DIR "ath6k/AR6004/hw1.2"
184 #define AR6004_HW_1_2_FIRMWARE_FILE "fw.ram.bin"
185 #define AR6004_HW_1_2_BOARD_DATA_FILE AR6004_HW_1_2_FW_DIR "/bdata.bin"
186 #define AR6004_HW_1_2_DEFAULT_BOARD_DATA_FILE \
187  AR6004_HW_1_2_FW_DIR "/bdata.bin"
188 
189 /* Per STA data, used in AP mode */
190 #define STA_PS_AWAKE BIT(0)
191 #define STA_PS_SLEEP BIT(1)
192 #define STA_PS_POLLED BIT(2)
193 #define STA_PS_APSD_TRIGGER BIT(3)
194 #define STA_PS_APSD_EOSP BIT(4)
195 
196 /* HTC TX packet tagging definitions */
197 #define ATH6KL_CONTROL_PKT_TAG HTC_TX_PACKET_TAG_USER_DEFINED
198 #define ATH6KL_DATA_PKT_TAG (ATH6KL_CONTROL_PKT_TAG + 1)
199 
200 #define AR6003_CUST_DATA_SIZE 16
201 
202 #define AGGR_WIN_IDX(x, y) ((x) % (y))
203 #define AGGR_INCR_IDX(x, y) AGGR_WIN_IDX(((x) + 1), (y))
204 #define AGGR_DCRM_IDX(x, y) AGGR_WIN_IDX(((x) - 1), (y))
205 #define ATH6KL_MAX_SEQ_NO 0xFFF
206 #define ATH6KL_NEXT_SEQ_NO(x) (((x) + 1) & ATH6KL_MAX_SEQ_NO)
207 
208 #define NUM_OF_TIDS 8
209 #define AGGR_SZ_DEFAULT 8
210 
211 #define AGGR_WIN_SZ_MIN 2
212 #define AGGR_WIN_SZ_MAX 8
213 
214 #define TID_WINDOW_SZ(_x) ((_x) << 1)
215 
216 #define AGGR_NUM_OF_FREE_NETBUFS 16
217 
218 #define AGGR_RX_TIMEOUT 100 /* in ms */
219 
220 #define WMI_TIMEOUT (2 * HZ)
221 
222 #define MBOX_YIELD_LIMIT 99
223 
224 #define ATH6KL_DEFAULT_LISTEN_INTVAL 100 /* in TUs */
225 #define ATH6KL_DEFAULT_BMISS_TIME 1500
226 #define ATH6KL_MAX_WOW_LISTEN_INTL 300 /* in TUs */
227 #define ATH6KL_MAX_BMISS_TIME 5000
228 
229 /* configuration lags */
230 /*
231  * ATH6KL_CONF_IGNORE_ERP_BARKER: Ignore the barker premable in
232  * ERP IE of beacon to determine the short premable support when
233  * sending (Re)Assoc req.
234  * ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN: Don't send the power
235  * module state transition failure events which happen during
236  * scan, to the host.
237  */
238 #define ATH6KL_CONF_IGNORE_ERP_BARKER BIT(0)
239 #define ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN BIT(1)
240 #define ATH6KL_CONF_ENABLE_11N BIT(2)
241 #define ATH6KL_CONF_ENABLE_TX_BURST BIT(3)
242 #define ATH6KL_CONF_UART_DEBUG BIT(4)
243 
244 #define P2P_WILDCARD_SSID_LEN 7 /* DIRECT- */
245 
251 };
252 
253 enum sme_state {
257 };
258 
259 struct skb_hold_q {
260  struct sk_buff *skb;
261  bool is_amsdu;
263 };
264 
265 struct rxtid {
266  bool aggr;
267  bool timer_mon;
272  struct sk_buff_head q;
273 
274  /*
275  * lock mainly protects seq_next and hold_q. Movement of seq_next
276  * needs to be protected between aggr_timeout() and
277  * aggr_process_recv_frm(). hold_q will be holding the pending
278  * reorder frames and it's access should also be protected.
279  * Some of the other fields like hold_q_sz, win_sz and aggr are
280  * initialized/reset when receiving addba/delba req, also while
281  * deleting aggr state all the pending buffers are flushed before
282  * resetting these fields, so there should not be any race in accessing
283  * these fields.
284  */
286 };
287 
288 struct rxtid_stats {
298 };
299 
304  struct net_device *dev;
308 };
309 
310 struct aggr_info {
313 };
314 
318  u8 key[64];
319 };
320 
321 #define ATH6KL_KEY_SEQ_LEN 8
322 
323 struct ath6kl_key {
329 };
330 
335 };
336 
338  struct sk_buff *skb;
342 };
343 
345  struct list_head list;
349  bool no_cck;
350  size_t len;
351  u8 buf[0];
352 };
353 
354 struct ath6kl_sta {
363 
364  /* protects psq, mgmt_psq, apsdq, and mgmt_psq_len fields */
366 
368  size_t mgmt_psq_len;
372 };
373 
378 };
379 
380 struct ath6kl_bmi {
382  bool done_sent;
386 };
387 
388 struct target_stats {
399 
405 
415 
421 
428 
430 
435 
438 
440 
443 
450 
453 
457 };
458 
463 
465 
467 
469 };
470 
471 /*
472  * 802.11i defines an extended IV for use with non-WEP ciphers.
473  * When the EXTIV bit is set in the key id byte an additional
474  * 4 bytes immediately follow the IV for TKIP. For CCMP the
475  * EXTIV bit is likewise set but the 8 bytes represent the
476  * CCMP header rather than IV+extended-IV.
477  */
478 
479 #define ATH6KL_KEYBUF_SIZE 16
480 #define ATH6KL_MICBUF_SIZE (8+8) /* space for both tx and rx */
481 
482 #define ATH6KL_KEY_XMIT 0x01
483 #define ATH6KL_KEY_RECV 0x02
484 #define ATH6KL_KEY_DEFAULT 0x80 /* default xmit key */
485 
486 /* Initial group key for AP mode */
488  bool valid;
490  int key_type;
493 };
494 
498 };
499 
503 };
504 
505 /* Max number of filters that hw supports */
506 #define ATH6K_MAX_MC_FILTERS_PER_LIST 7
508  struct list_head list;
510 };
511 
512 struct ath6kl_htcap {
513  bool ht_enable;
515  unsigned short cap_info;
516 };
517 
518 /*
519  * Driver's maximum limit, note that some firmwares support only one vif
520  * and the runtime (current) limit must be checked from ar->vif_max.
521  */
522 #define ATH6KL_VIF_MAX 3
523 
524 /* vif flags info */
539 };
540 
541 struct ath6kl_vif {
542  struct list_head list;
544  struct net_device *ndev;
545  struct ath6kl *ar;
546  /* Lock to protect vif specific net_stats and flags */
549  unsigned long flags;
550  int ssid_len;
569 
572 
588 
590 };
591 
592 static inline struct ath6kl_vif *ath6kl_vif_from_wdev(struct wireless_dev *wdev)
593 {
594  return container_of(wdev, struct ath6kl_vif, wdev);
595 }
596 
597 #define WOW_LIST_ID 0
598 #define WOW_HOST_REQ_DELAY 500 /* ms */
599 
600 #define ATH6KL_SCHED_SCAN_RESULT_DELAY 5000 /* ms */
601 
602 /* Flag info */
612 };
613 
623 };
624 
625 struct ath6kl {
626  struct device *dev;
627  struct wiphy *wiphy;
628 
630  unsigned int testmode;
631 
632  struct ath6kl_bmi bmi;
633  const struct ath6kl_hif_ops *hif_ops;
634  const struct ath6kl_htc_ops *htc_ops;
635  struct wmi *wmi;
640  void *hif_priv;
642  /* Lock to avoid race in vif_list entries among add/del/traverse */
645  unsigned int vif_max;
648 
649  /*
650  * Protects at least amsdu_rx_buffer_queue, ath6kl_alloc_cookie()
651  * calls, tx_pending and total_tx_data_pend.
652  */
654 
655  struct semaphore sem;
682 
683  /*
684  * FIXME: protects access to mcastpsq but is actually useless as
685  * all skbe_queue_*() functions provide serialisation themselves
686  */
688 
696 #define AR_MCAST_FILTER_MAC_ADDR_SIZE 4
697  struct {
698  void *rx_report;
700  } tm;
701 
702  struct ath6kl_hw {
704  const char *name;
715 
717 
718  struct ath6kl_hw_fw {
719  const char *dir;
720  const char *otp;
721  const char *fw;
722  const char *tcmd;
723  const char *patch;
724  const char *utf;
725  const char *testscript;
726  } fw;
727 
728  const char *fw_board;
729  const char *fw_default_board;
730  } hw;
731 
737 
739  unsigned long flag;
740 
742  size_t fw_board_len;
743 
745  size_t fw_otp_len;
746 
747  u8 *fw;
748  size_t fw_len;
749 
751  size_t fw_patch_len;
752 
755 
756  unsigned int fw_api;
758 
760 
762 
763  bool p2p;
764 
766 
767 #ifdef CONFIG_ATH6KL_DEBUG
768  struct {
769  struct sk_buff_head fwlog_queue;
770  struct completion fwlog_completion;
771  bool fwlog_open;
772 
773  u32 fwlog_mask;
774 
775  unsigned int dbgfs_diag_reg;
776  u32 diag_reg_addr_wr;
777  u32 diag_reg_val_wr;
778 
779  struct {
780  unsigned int invalid_rate;
781  } war_stats;
782 
783  u8 *roam_tbl;
784  unsigned int roam_tbl_len;
785 
786  u8 keepalive;
787  u8 disc_timeout;
788  } debug;
789 #endif /* CONFIG_ATH6KL_DEBUG */
790 };
791 
792 static inline struct ath6kl *ath6kl_priv(struct net_device *dev)
793 {
794  return ((struct ath6kl_vif *) netdev_priv(dev))->ar;
795 }
796 
797 static inline u32 ath6kl_get_hi_item_addr(struct ath6kl *ar,
798  u32 item_offset)
799 {
800  u32 addr = 0;
801 
802  if (ar->target_type == TARGET_TYPE_AR6003)
803  addr = ATH6KL_AR6003_HI_START_ADDR + item_offset;
804  else if (ar->target_type == TARGET_TYPE_AR6004)
805  addr = ATH6KL_AR6004_HI_START_ADDR + item_offset;
806 
807  return addr;
808 }
809 
810 int ath6kl_configure_target(struct ath6kl *ar);
811 void ath6kl_detect_error(unsigned long ptr);
812 void disconnect_timer_handler(unsigned long ptr);
813 void init_netdev(struct net_device *dev);
814 void ath6kl_cookie_init(struct ath6kl *ar);
815 void ath6kl_cookie_cleanup(struct ath6kl *ar);
816 void ath6kl_rx(struct htc_target *target, struct htc_packet *packet);
818  struct list_head *packet_queue);
820  struct htc_packet *packet);
821 void ath6kl_stop_txrx(struct ath6kl *ar);
822 void ath6kl_cleanup_amsdu_rxbufs(struct ath6kl *ar);
824 int ath6kl_diag_write(struct ath6kl *ar, u32 address, void *data, u32 length);
825 int ath6kl_diag_read32(struct ath6kl *ar, u32 address, u32 *value);
826 int ath6kl_diag_read(struct ath6kl *ar, u32 address, void *data, u32 length);
827 int ath6kl_read_fwlogs(struct ath6kl *ar);
828 void ath6kl_init_profile_info(struct ath6kl_vif *vif);
829 void ath6kl_tx_data_cleanup(struct ath6kl *ar);
830 
831 struct ath6kl_cookie *ath6kl_alloc_cookie(struct ath6kl *ar);
832 void ath6kl_free_cookie(struct ath6kl *ar, struct ath6kl_cookie *cookie);
833 int ath6kl_data_tx(struct sk_buff *skb, struct net_device *dev);
834 
835 struct aggr_info *aggr_init(struct ath6kl_vif *vif);
836 void aggr_conn_init(struct ath6kl_vif *vif, struct aggr_info *aggr_info,
837  struct aggr_info_conn *aggr_conn);
838 void ath6kl_rx_refill(struct htc_target *target,
840 void ath6kl_refill_amsdu_rxbufs(struct ath6kl *ar, int count);
843  int len);
845 void aggr_reset_state(struct aggr_info_conn *aggr_conn);
846 
847 struct ath6kl_sta *ath6kl_find_sta(struct ath6kl_vif *vif, u8 *node_addr);
848 struct ath6kl_sta *ath6kl_find_sta_by_aid(struct ath6kl *ar, u8 aid);
849 
850 void ath6kl_ready_event(void *devt, u8 *datap, u32 sw_ver, u32 abi_ver,
851  enum wmi_phy_cap cap);
852 int ath6kl_control_tx(void *devt, struct sk_buff *skb,
853  enum htc_endpoint_id eid);
854 void ath6kl_connect_event(struct ath6kl_vif *vif, u16 channel,
855  u8 *bssid, u16 listen_int,
856  u16 beacon_int, enum network_type net_type,
857  u8 beacon_ie_len, u8 assoc_req_len,
858  u8 assoc_resp_len, u8 *assoc_info);
862  u8 assoc_req_len, u8 *assoc_info, u8 apsd_info);
863 void ath6kl_disconnect_event(struct ath6kl_vif *vif, u8 reason,
864  u8 *bssid, u8 assoc_resp_len,
865  u8 *assoc_info, u16 prot_reason_status);
866 void ath6kl_tkip_micerr_event(struct ath6kl_vif *vif, u8 keyid, bool ismcast);
867 void ath6kl_txpwr_rx_evt(void *devt, u8 tx_pwr);
868 void ath6kl_scan_complete_evt(struct ath6kl_vif *vif, int status);
869 void ath6kl_tgt_stats_event(struct ath6kl_vif *vif, u8 *ptr, u32 len);
870 void ath6kl_indicate_tx_activity(void *devt, u8 traffic_class, bool active);
872 
873 void ath6kl_pspoll_event(struct ath6kl_vif *vif, u8 aid);
874 
875 void ath6kl_dtimexpiry_event(struct ath6kl_vif *vif);
876 void ath6kl_disconnect(struct ath6kl_vif *vif);
877 void aggr_recv_delba_req_evt(struct ath6kl_vif *vif, u8 tid);
878 void aggr_recv_addba_req_evt(struct ath6kl_vif *vif, u8 tid, u16 seq_no,
879  u8 win_sz);
880 void ath6kl_wakeup_event(void *dev);
881 
882 void ath6kl_reset_device(struct ath6kl *ar, u32 target_type,
883  bool wait_fot_compltn, bool cold_reset);
884 void ath6kl_init_control_info(struct ath6kl_vif *vif);
885 struct ath6kl_vif *ath6kl_vif_first(struct ath6kl *ar);
886 void ath6kl_cleanup_vif(struct ath6kl_vif *vif, bool wmi_ready);
887 int ath6kl_init_hw_start(struct ath6kl *ar);
888 int ath6kl_init_hw_stop(struct ath6kl *ar);
889 int ath6kl_init_fetch_firmwares(struct ath6kl *ar);
890 int ath6kl_init_hw_params(struct ath6kl *ar);
891 
892 void ath6kl_check_wow_status(struct ath6kl *ar);
893 
894 void ath6kl_core_tx_complete(struct ath6kl *ar, struct sk_buff *skb);
895 void ath6kl_core_rx_complete(struct ath6kl *ar, struct sk_buff *skb, u8 pipe);
896 
897 struct ath6kl *ath6kl_core_create(struct device *dev);
898 int ath6kl_core_init(struct ath6kl *ar, enum ath6kl_htc_type htc_type);
899 void ath6kl_core_cleanup(struct ath6kl *ar);
900 void ath6kl_core_destroy(struct ath6kl *ar);
901 
902 #endif /* CORE_H */