core.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718
  1. /*
  2. * Copyright (c) 2010-2011 Atheros Communications Inc.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifndef CORE_H
  17. #define CORE_H
  18. #include <linux/etherdevice.h>
  19. #include <linux/rtnetlink.h>
  20. #include <linux/firmware.h>
  21. #include <linux/sched.h>
  22. #include <linux/circ_buf.h>
  23. #include <net/cfg80211.h>
  24. #include "htc.h"
  25. #include "wmi.h"
  26. #include "bmi.h"
  27. #include "target.h"
  28. #define MAX_ATH6KL 1
  29. #define ATH6KL_MAX_RX_BUFFERS 16
  30. #define ATH6KL_BUFFER_SIZE 1664
  31. #define ATH6KL_MAX_AMSDU_RX_BUFFERS 4
  32. #define ATH6KL_AMSDU_REFILL_THRESHOLD 3
  33. #define ATH6KL_AMSDU_BUFFER_SIZE (WMI_MAX_AMSDU_RX_DATA_FRAME_LENGTH + 128)
  34. #define MAX_MSDU_SUBFRAME_PAYLOAD_LEN 1508
  35. #define MIN_MSDU_SUBFRAME_PAYLOAD_LEN 46
  36. #define USER_SAVEDKEYS_STAT_INIT 0
  37. #define USER_SAVEDKEYS_STAT_RUN 1
  38. #define ATH6KL_TX_TIMEOUT 10
  39. #define ATH6KL_MAX_ENDPOINTS 4
  40. #define MAX_NODE_NUM 15
  41. /* Extra bytes for htc header alignment */
  42. #define ATH6KL_HTC_ALIGN_BYTES 3
  43. /* MAX_HI_COOKIE_NUM are reserved for high priority traffic */
  44. #define MAX_DEF_COOKIE_NUM 180
  45. #define MAX_HI_COOKIE_NUM 18 /* 10% of MAX_COOKIE_NUM */
  46. #define MAX_COOKIE_NUM (MAX_DEF_COOKIE_NUM + MAX_HI_COOKIE_NUM)
  47. #define MAX_DEFAULT_SEND_QUEUE_DEPTH (MAX_DEF_COOKIE_NUM / WMM_NUM_AC)
  48. #define DISCON_TIMER_INTVAL 10000 /* in msec */
  49. #define A_DEFAULT_LISTEN_INTERVAL 100
  50. #define A_MAX_WOW_LISTEN_INTERVAL 1000
  51. /* includes also the null byte */
  52. #define ATH6KL_FIRMWARE_MAGIC "QCA-ATH6KL"
  53. enum ath6kl_fw_ie_type {
  54. ATH6KL_FW_IE_FW_VERSION = 0,
  55. ATH6KL_FW_IE_TIMESTAMP = 1,
  56. ATH6KL_FW_IE_OTP_IMAGE = 2,
  57. ATH6KL_FW_IE_FW_IMAGE = 3,
  58. ATH6KL_FW_IE_PATCH_IMAGE = 4,
  59. ATH6KL_FW_IE_RESERVED_RAM_SIZE = 5,
  60. ATH6KL_FW_IE_CAPABILITIES = 6,
  61. ATH6KL_FW_IE_PATCH_ADDR = 7,
  62. ATH6KL_FW_IE_BOARD_ADDR = 8,
  63. ATH6KL_FW_IE_VIF_MAX = 9,
  64. };
  65. enum ath6kl_fw_capability {
  66. ATH6KL_FW_CAPABILITY_HOST_P2P = 0,
  67. /* this needs to be last */
  68. ATH6KL_FW_CAPABILITY_MAX,
  69. };
  70. #define ATH6KL_CAPABILITY_LEN (ALIGN(ATH6KL_FW_CAPABILITY_MAX, 32) / 32)
  71. struct ath6kl_fw_ie {
  72. __le32 id;
  73. __le32 len;
  74. u8 data[0];
  75. };
  76. /* AR6003 1.0 definitions */
  77. #define AR6003_HW_1_0_VERSION 0x300002ba
  78. /* AR6003 2.0 definitions */
  79. #define AR6003_HW_2_0_VERSION 0x30000384
  80. #define AR6003_HW_2_0_PATCH_DOWNLOAD_ADDRESS 0x57e910
  81. #define AR6003_HW_2_0_OTP_FILE "ath6k/AR6003/hw2.0/otp.bin.z77"
  82. #define AR6003_HW_2_0_FIRMWARE_FILE "ath6k/AR6003/hw2.0/athwlan.bin.z77"
  83. #define AR6003_HW_2_0_TCMD_FIRMWARE_FILE "ath6k/AR6003/hw2.0/athtcmd_ram.bin"
  84. #define AR6003_HW_2_0_PATCH_FILE "ath6k/AR6003/hw2.0/data.patch.bin"
  85. #define AR6003_HW_2_0_FIRMWARE_2_FILE "ath6k/AR6003/hw2.0/fw-2.bin"
  86. #define AR6003_HW_2_0_BOARD_DATA_FILE "ath6k/AR6003/hw2.0/bdata.bin"
  87. #define AR6003_HW_2_0_DEFAULT_BOARD_DATA_FILE \
  88. "ath6k/AR6003/hw2.0/bdata.SD31.bin"
  89. /* AR6003 3.0 definitions */
  90. #define AR6003_HW_2_1_1_VERSION 0x30000582
  91. #define AR6003_HW_2_1_1_OTP_FILE "ath6k/AR6003/hw2.1.1/otp.bin"
  92. #define AR6003_HW_2_1_1_FIRMWARE_FILE "ath6k/AR6003/hw2.1.1/athwlan.bin"
  93. #define AR6003_HW_2_1_1_TCMD_FIRMWARE_FILE \
  94. "ath6k/AR6003/hw2.1.1/athtcmd_ram.bin"
  95. #define AR6003_HW_2_1_1_PATCH_FILE "ath6k/AR6003/hw2.1.1/data.patch.bin"
  96. #define AR6003_HW_2_1_1_FIRMWARE_2_FILE "ath6k/AR6003/hw2.1.1/fw-2.bin"
  97. #define AR6003_HW_2_1_1_BOARD_DATA_FILE "ath6k/AR6003/hw2.1.1/bdata.bin"
  98. #define AR6003_HW_2_1_1_DEFAULT_BOARD_DATA_FILE \
  99. "ath6k/AR6003/hw2.1.1/bdata.SD31.bin"
  100. /* AR6004 1.0 definitions */
  101. #define AR6004_HW_1_0_VERSION 0x30000623
  102. #define AR6004_HW_1_0_FIRMWARE_2_FILE "ath6k/AR6004/hw1.0/fw-2.bin"
  103. #define AR6004_HW_1_0_FIRMWARE_FILE "ath6k/AR6004/hw1.0/fw.ram.bin"
  104. #define AR6004_HW_1_0_BOARD_DATA_FILE "ath6k/AR6004/hw1.0/bdata.bin"
  105. #define AR6004_HW_1_0_DEFAULT_BOARD_DATA_FILE \
  106. "ath6k/AR6004/hw1.0/bdata.DB132.bin"
  107. /* AR6004 1.1 definitions */
  108. #define AR6004_HW_1_1_VERSION 0x30000001
  109. #define AR6004_HW_1_1_FIRMWARE_2_FILE "ath6k/AR6004/hw1.1/fw-2.bin"
  110. #define AR6004_HW_1_1_FIRMWARE_FILE "ath6k/AR6004/hw1.1/fw.ram.bin"
  111. #define AR6004_HW_1_1_BOARD_DATA_FILE "ath6k/AR6004/hw1.1/bdata.bin"
  112. #define AR6004_HW_1_1_DEFAULT_BOARD_DATA_FILE \
  113. "ath6k/AR6004/hw1.1/bdata.DB132.bin"
  114. /* Per STA data, used in AP mode */
  115. #define STA_PS_AWAKE BIT(0)
  116. #define STA_PS_SLEEP BIT(1)
  117. #define STA_PS_POLLED BIT(2)
  118. /* HTC TX packet tagging definitions */
  119. #define ATH6KL_CONTROL_PKT_TAG HTC_TX_PACKET_TAG_USER_DEFINED
  120. #define ATH6KL_DATA_PKT_TAG (ATH6KL_CONTROL_PKT_TAG + 1)
  121. #define AR6003_CUST_DATA_SIZE 16
  122. #define AGGR_WIN_IDX(x, y) ((x) % (y))
  123. #define AGGR_INCR_IDX(x, y) AGGR_WIN_IDX(((x) + 1), (y))
  124. #define AGGR_DCRM_IDX(x, y) AGGR_WIN_IDX(((x) - 1), (y))
  125. #define ATH6KL_MAX_SEQ_NO 0xFFF
  126. #define ATH6KL_NEXT_SEQ_NO(x) (((x) + 1) & ATH6KL_MAX_SEQ_NO)
  127. #define NUM_OF_TIDS 8
  128. #define AGGR_SZ_DEFAULT 8
  129. #define AGGR_WIN_SZ_MIN 2
  130. #define AGGR_WIN_SZ_MAX 8
  131. #define TID_WINDOW_SZ(_x) ((_x) << 1)
  132. #define AGGR_NUM_OF_FREE_NETBUFS 16
  133. #define AGGR_RX_TIMEOUT 400 /* in ms */
  134. #define WMI_TIMEOUT (2 * HZ)
  135. #define MBOX_YIELD_LIMIT 99
  136. /* configuration lags */
  137. /*
  138. * ATH6KL_CONF_IGNORE_ERP_BARKER: Ignore the barker premable in
  139. * ERP IE of beacon to determine the short premable support when
  140. * sending (Re)Assoc req.
  141. * ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN: Don't send the power
  142. * module state transition failure events which happen during
  143. * scan, to the host.
  144. */
  145. #define ATH6KL_CONF_IGNORE_ERP_BARKER BIT(0)
  146. #define ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN BIT(1)
  147. #define ATH6KL_CONF_ENABLE_11N BIT(2)
  148. #define ATH6KL_CONF_ENABLE_TX_BURST BIT(3)
  149. #define ATH6KL_CONF_SUSPEND_CUTPOWER BIT(4)
  150. enum wlan_low_pwr_state {
  151. WLAN_POWER_STATE_ON,
  152. WLAN_POWER_STATE_CUT_PWR,
  153. WLAN_POWER_STATE_DEEP_SLEEP,
  154. WLAN_POWER_STATE_WOW
  155. };
  156. enum sme_state {
  157. SME_DISCONNECTED,
  158. SME_CONNECTING,
  159. SME_CONNECTED
  160. };
  161. struct skb_hold_q {
  162. struct sk_buff *skb;
  163. bool is_amsdu;
  164. u16 seq_no;
  165. };
  166. struct rxtid {
  167. bool aggr;
  168. bool progress;
  169. bool timer_mon;
  170. u16 win_sz;
  171. u16 seq_next;
  172. u32 hold_q_sz;
  173. struct skb_hold_q *hold_q;
  174. struct sk_buff_head q;
  175. spinlock_t lock;
  176. };
  177. struct rxtid_stats {
  178. u32 num_into_aggr;
  179. u32 num_dups;
  180. u32 num_oow;
  181. u32 num_mpdu;
  182. u32 num_amsdu;
  183. u32 num_delivered;
  184. u32 num_timeouts;
  185. u32 num_hole;
  186. u32 num_bar;
  187. };
  188. struct aggr_info {
  189. u8 aggr_sz;
  190. u8 timer_scheduled;
  191. struct timer_list timer;
  192. struct net_device *dev;
  193. struct rxtid rx_tid[NUM_OF_TIDS];
  194. struct sk_buff_head free_q;
  195. struct rxtid_stats stat[NUM_OF_TIDS];
  196. };
  197. struct ath6kl_wep_key {
  198. u8 key_index;
  199. u8 key_len;
  200. u8 key[64];
  201. };
  202. #define ATH6KL_KEY_SEQ_LEN 8
  203. struct ath6kl_key {
  204. u8 key[WLAN_MAX_KEY_LEN];
  205. u8 key_len;
  206. u8 seq[ATH6KL_KEY_SEQ_LEN];
  207. u8 seq_len;
  208. u32 cipher;
  209. };
  210. struct ath6kl_node_mapping {
  211. u8 mac_addr[ETH_ALEN];
  212. u8 ep_id;
  213. u8 tx_pend;
  214. };
  215. struct ath6kl_cookie {
  216. struct sk_buff *skb;
  217. u32 map_no;
  218. struct htc_packet htc_pkt;
  219. struct ath6kl_cookie *arc_list_next;
  220. };
  221. struct ath6kl_sta {
  222. u16 sta_flags;
  223. u8 mac[ETH_ALEN];
  224. u8 aid;
  225. u8 keymgmt;
  226. u8 ucipher;
  227. u8 auth;
  228. u8 wpa_ie[ATH6KL_MAX_IE];
  229. struct sk_buff_head psq;
  230. spinlock_t psq_lock;
  231. };
  232. struct ath6kl_version {
  233. u32 target_ver;
  234. u32 wlan_ver;
  235. u32 abi_ver;
  236. };
  237. struct ath6kl_bmi {
  238. u32 cmd_credits;
  239. bool done_sent;
  240. u8 *cmd_buf;
  241. u32 max_data_size;
  242. u32 max_cmd_size;
  243. };
  244. struct target_stats {
  245. u64 tx_pkt;
  246. u64 tx_byte;
  247. u64 tx_ucast_pkt;
  248. u64 tx_ucast_byte;
  249. u64 tx_mcast_pkt;
  250. u64 tx_mcast_byte;
  251. u64 tx_bcast_pkt;
  252. u64 tx_bcast_byte;
  253. u64 tx_rts_success_cnt;
  254. u64 tx_pkt_per_ac[4];
  255. u64 tx_err;
  256. u64 tx_fail_cnt;
  257. u64 tx_retry_cnt;
  258. u64 tx_mult_retry_cnt;
  259. u64 tx_rts_fail_cnt;
  260. u64 rx_pkt;
  261. u64 rx_byte;
  262. u64 rx_ucast_pkt;
  263. u64 rx_ucast_byte;
  264. u64 rx_mcast_pkt;
  265. u64 rx_mcast_byte;
  266. u64 rx_bcast_pkt;
  267. u64 rx_bcast_byte;
  268. u64 rx_frgment_pkt;
  269. u64 rx_err;
  270. u64 rx_crc_err;
  271. u64 rx_key_cache_miss;
  272. u64 rx_decrypt_err;
  273. u64 rx_dupl_frame;
  274. u64 tkip_local_mic_fail;
  275. u64 tkip_cnter_measures_invoked;
  276. u64 tkip_replays;
  277. u64 tkip_fmt_err;
  278. u64 ccmp_fmt_err;
  279. u64 ccmp_replays;
  280. u64 pwr_save_fail_cnt;
  281. u64 cs_bmiss_cnt;
  282. u64 cs_low_rssi_cnt;
  283. u64 cs_connect_cnt;
  284. u64 cs_discon_cnt;
  285. s32 tx_ucast_rate;
  286. s32 rx_ucast_rate;
  287. u32 lq_val;
  288. u32 wow_pkt_dropped;
  289. u16 wow_evt_discarded;
  290. s16 noise_floor_calib;
  291. s16 cs_rssi;
  292. s16 cs_ave_beacon_rssi;
  293. u8 cs_ave_beacon_snr;
  294. u8 cs_last_roam_msec;
  295. u8 cs_snr;
  296. u8 wow_host_pkt_wakeups;
  297. u8 wow_host_evt_wakeups;
  298. u32 arp_received;
  299. u32 arp_matched;
  300. u32 arp_replied;
  301. };
  302. struct ath6kl_mbox_info {
  303. u32 htc_addr;
  304. u32 htc_ext_addr;
  305. u32 htc_ext_sz;
  306. u32 block_size;
  307. u32 gmbox_addr;
  308. u32 gmbox_sz;
  309. };
  310. /*
  311. * 802.11i defines an extended IV for use with non-WEP ciphers.
  312. * When the EXTIV bit is set in the key id byte an additional
  313. * 4 bytes immediately follow the IV for TKIP. For CCMP the
  314. * EXTIV bit is likewise set but the 8 bytes represent the
  315. * CCMP header rather than IV+extended-IV.
  316. */
  317. #define ATH6KL_KEYBUF_SIZE 16
  318. #define ATH6KL_MICBUF_SIZE (8+8) /* space for both tx and rx */
  319. #define ATH6KL_KEY_XMIT 0x01
  320. #define ATH6KL_KEY_RECV 0x02
  321. #define ATH6KL_KEY_DEFAULT 0x80 /* default xmit key */
  322. /* Initial group key for AP mode */
  323. struct ath6kl_req_key {
  324. bool valid;
  325. u8 key_index;
  326. int key_type;
  327. u8 key[WLAN_MAX_KEY_LEN];
  328. u8 key_len;
  329. };
  330. enum ath6kl_hif_type {
  331. ATH6KL_HIF_TYPE_SDIO,
  332. ATH6KL_HIF_TYPE_USB,
  333. };
  334. /*
  335. * Driver's maximum limit, note that some firmwares support only one vif
  336. * and the runtime (current) limit must be checked from ar->vif_max.
  337. */
  338. #define ATH6KL_VIF_MAX 3
  339. /* vif flags info */
  340. enum ath6kl_vif_state {
  341. CONNECTED,
  342. CONNECT_PEND,
  343. WMM_ENABLED,
  344. NETQ_STOPPED,
  345. DTIM_EXPIRED,
  346. NETDEV_REGISTERED,
  347. CLEAR_BSSFILTER_ON_BEACON,
  348. DTIM_PERIOD_AVAIL,
  349. WLAN_ENABLED,
  350. STATS_UPDATE_PEND,
  351. };
  352. struct ath6kl_vif {
  353. struct list_head list;
  354. struct wireless_dev wdev;
  355. struct net_device *ndev;
  356. struct ath6kl *ar;
  357. /* Lock to protect vif specific net_stats and flags */
  358. spinlock_t if_lock;
  359. u8 fw_vif_idx;
  360. unsigned long flags;
  361. int ssid_len;
  362. u8 ssid[IEEE80211_MAX_SSID_LEN];
  363. u8 dot11_auth_mode;
  364. u8 auth_mode;
  365. u8 prwise_crypto;
  366. u8 prwise_crypto_len;
  367. u8 grp_crypto;
  368. u8 grp_crypto_len;
  369. u8 def_txkey_index;
  370. u8 next_mode;
  371. u8 nw_type;
  372. u8 bssid[ETH_ALEN];
  373. u8 req_bssid[ETH_ALEN];
  374. u16 ch_hint;
  375. u16 bss_ch;
  376. struct ath6kl_wep_key wep_key_list[WMI_MAX_KEY_INDEX + 1];
  377. struct ath6kl_key keys[WMI_MAX_KEY_INDEX + 1];
  378. struct aggr_info *aggr_cntxt;
  379. struct timer_list disconnect_timer;
  380. struct cfg80211_scan_request *scan_req;
  381. enum sme_state sme_state;
  382. int reconnect_flag;
  383. u32 last_roc_id;
  384. u32 last_cancel_roc_id;
  385. u32 send_action_id;
  386. bool probe_req_report;
  387. u16 next_chan;
  388. u16 assoc_bss_beacon_int;
  389. u8 assoc_bss_dtim_period;
  390. struct net_device_stats net_stats;
  391. struct target_stats target_stats;
  392. };
  393. #define WOW_LIST_ID 0
  394. #define WOW_HOST_REQ_DELAY 500 /* ms */
  395. /* Flag info */
  396. enum ath6kl_dev_state {
  397. WMI_ENABLED,
  398. WMI_READY,
  399. WMI_CTRL_EP_FULL,
  400. TESTMODE,
  401. DESTROY_IN_PROGRESS,
  402. SKIP_SCAN,
  403. ROAM_TBL_PEND,
  404. FIRST_BOOT,
  405. };
  406. enum ath6kl_state {
  407. ATH6KL_STATE_OFF,
  408. ATH6KL_STATE_ON,
  409. ATH6KL_STATE_DEEPSLEEP,
  410. ATH6KL_STATE_CUTPOWER,
  411. ATH6KL_STATE_WOW,
  412. };
  413. struct ath6kl {
  414. struct device *dev;
  415. struct wiphy *wiphy;
  416. enum ath6kl_state state;
  417. struct ath6kl_bmi bmi;
  418. const struct ath6kl_hif_ops *hif_ops;
  419. struct wmi *wmi;
  420. int tx_pending[ENDPOINT_MAX];
  421. int total_tx_data_pend;
  422. struct htc_target *htc_target;
  423. enum ath6kl_hif_type hif_type;
  424. void *hif_priv;
  425. struct list_head vif_list;
  426. /* Lock to avoid race in vif_list entries among add/del/traverse */
  427. spinlock_t list_lock;
  428. u8 num_vif;
  429. unsigned int vif_max;
  430. u8 max_norm_iface;
  431. u8 avail_idx_map;
  432. spinlock_t lock;
  433. struct semaphore sem;
  434. u16 listen_intvl_b;
  435. u16 listen_intvl_t;
  436. u8 lrssi_roam_threshold;
  437. struct ath6kl_version version;
  438. u32 target_type;
  439. u8 tx_pwr;
  440. struct ath6kl_node_mapping node_map[MAX_NODE_NUM];
  441. u8 ibss_ps_enable;
  442. bool ibss_if_active;
  443. u8 node_num;
  444. u8 next_ep_id;
  445. struct ath6kl_cookie *cookie_list;
  446. u32 cookie_count;
  447. enum htc_endpoint_id ac2ep_map[WMM_NUM_AC];
  448. bool ac_stream_active[WMM_NUM_AC];
  449. u8 ac_stream_pri_map[WMM_NUM_AC];
  450. u8 hiac_stream_active_pri;
  451. u8 ep2ac_map[ENDPOINT_MAX];
  452. enum htc_endpoint_id ctrl_ep;
  453. struct ath6kl_htc_credit_info credit_state_info;
  454. u32 connect_ctrl_flags;
  455. u32 user_key_ctrl;
  456. u8 usr_bss_filter;
  457. struct ath6kl_sta sta_list[AP_MAX_NUM_STA];
  458. u8 sta_list_index;
  459. struct ath6kl_req_key ap_mode_bkey;
  460. struct sk_buff_head mcastpsq;
  461. spinlock_t mcastpsq_lock;
  462. u8 intra_bss;
  463. struct wmi_ap_mode_stat ap_stats;
  464. u8 ap_country_code[3];
  465. struct list_head amsdu_rx_buffer_queue;
  466. u8 rx_meta_ver;
  467. enum wlan_low_pwr_state wlan_pwr_state;
  468. u8 mac_addr[ETH_ALEN];
  469. #define AR_MCAST_FILTER_MAC_ADDR_SIZE 4
  470. struct {
  471. void *rx_report;
  472. size_t rx_report_len;
  473. } tm;
  474. struct ath6kl_hw {
  475. u32 id;
  476. const char *name;
  477. u32 dataset_patch_addr;
  478. u32 app_load_addr;
  479. u32 app_start_override_addr;
  480. u32 board_ext_data_addr;
  481. u32 reserved_ram_size;
  482. u32 board_addr;
  483. const char *fw_otp;
  484. const char *fw;
  485. const char *fw_tcmd;
  486. const char *fw_patch;
  487. const char *fw_api2;
  488. const char *fw_board;
  489. const char *fw_default_board;
  490. } hw;
  491. u16 conf_flags;
  492. wait_queue_head_t event_wq;
  493. struct ath6kl_mbox_info mbox_info;
  494. struct ath6kl_cookie cookie_mem[MAX_COOKIE_NUM];
  495. unsigned long flag;
  496. u8 *fw_board;
  497. size_t fw_board_len;
  498. u8 *fw_otp;
  499. size_t fw_otp_len;
  500. u8 *fw;
  501. size_t fw_len;
  502. u8 *fw_patch;
  503. size_t fw_patch_len;
  504. unsigned long fw_capabilities[ATH6KL_CAPABILITY_LEN];
  505. struct workqueue_struct *ath6kl_wq;
  506. struct dentry *debugfs_phy;
  507. bool p2p;
  508. #ifdef CONFIG_ATH6KL_DEBUG
  509. struct {
  510. struct circ_buf fwlog_buf;
  511. spinlock_t fwlog_lock;
  512. void *fwlog_tmp;
  513. u32 fwlog_mask;
  514. unsigned int dbgfs_diag_reg;
  515. u32 diag_reg_addr_wr;
  516. u32 diag_reg_val_wr;
  517. struct {
  518. unsigned int invalid_rate;
  519. } war_stats;
  520. u8 *roam_tbl;
  521. unsigned int roam_tbl_len;
  522. u8 keepalive;
  523. u8 disc_timeout;
  524. } debug;
  525. #endif /* CONFIG_ATH6KL_DEBUG */
  526. };
  527. static inline void *ath6kl_priv(struct net_device *dev)
  528. {
  529. return ((struct ath6kl_vif *) netdev_priv(dev))->ar;
  530. }
  531. static inline u32 ath6kl_get_hi_item_addr(struct ath6kl *ar,
  532. u32 item_offset)
  533. {
  534. u32 addr = 0;
  535. if (ar->target_type == TARGET_TYPE_AR6003)
  536. addr = ATH6KL_AR6003_HI_START_ADDR + item_offset;
  537. else if (ar->target_type == TARGET_TYPE_AR6004)
  538. addr = ATH6KL_AR6004_HI_START_ADDR + item_offset;
  539. return addr;
  540. }
  541. int ath6kl_configure_target(struct ath6kl *ar);
  542. void ath6kl_detect_error(unsigned long ptr);
  543. void disconnect_timer_handler(unsigned long ptr);
  544. void init_netdev(struct net_device *dev);
  545. void ath6kl_cookie_init(struct ath6kl *ar);
  546. void ath6kl_cookie_cleanup(struct ath6kl *ar);
  547. void ath6kl_rx(struct htc_target *target, struct htc_packet *packet);
  548. void ath6kl_tx_complete(void *context, struct list_head *packet_queue);
  549. enum htc_send_full_action ath6kl_tx_queue_full(struct htc_target *target,
  550. struct htc_packet *packet);
  551. void ath6kl_stop_txrx(struct ath6kl *ar);
  552. void ath6kl_cleanup_amsdu_rxbufs(struct ath6kl *ar);
  553. int ath6kl_diag_write32(struct ath6kl *ar, u32 address, __le32 value);
  554. int ath6kl_diag_write(struct ath6kl *ar, u32 address, void *data, u32 length);
  555. int ath6kl_diag_read32(struct ath6kl *ar, u32 address, u32 *value);
  556. int ath6kl_diag_read(struct ath6kl *ar, u32 address, void *data, u32 length);
  557. int ath6kl_read_fwlogs(struct ath6kl *ar);
  558. void ath6kl_init_profile_info(struct ath6kl_vif *vif);
  559. void ath6kl_tx_data_cleanup(struct ath6kl *ar);
  560. struct ath6kl_cookie *ath6kl_alloc_cookie(struct ath6kl *ar);
  561. void ath6kl_free_cookie(struct ath6kl *ar, struct ath6kl_cookie *cookie);
  562. int ath6kl_data_tx(struct sk_buff *skb, struct net_device *dev);
  563. struct aggr_info *aggr_init(struct net_device *dev);
  564. void ath6kl_rx_refill(struct htc_target *target,
  565. enum htc_endpoint_id endpoint);
  566. void ath6kl_refill_amsdu_rxbufs(struct ath6kl *ar, int count);
  567. struct htc_packet *ath6kl_alloc_amsdu_rxbuf(struct htc_target *target,
  568. enum htc_endpoint_id endpoint,
  569. int len);
  570. void aggr_module_destroy(struct aggr_info *aggr_info);
  571. void aggr_reset_state(struct aggr_info *aggr_info);
  572. struct ath6kl_sta *ath6kl_find_sta(struct ath6kl_vif *vif, u8 * node_addr);
  573. struct ath6kl_sta *ath6kl_find_sta_by_aid(struct ath6kl *ar, u8 aid);
  574. void ath6kl_ready_event(void *devt, u8 * datap, u32 sw_ver, u32 abi_ver);
  575. int ath6kl_control_tx(void *devt, struct sk_buff *skb,
  576. enum htc_endpoint_id eid);
  577. void ath6kl_connect_event(struct ath6kl_vif *vif, u16 channel,
  578. u8 *bssid, u16 listen_int,
  579. u16 beacon_int, enum network_type net_type,
  580. u8 beacon_ie_len, u8 assoc_req_len,
  581. u8 assoc_resp_len, u8 *assoc_info);
  582. void ath6kl_connect_ap_mode_bss(struct ath6kl_vif *vif, u16 channel);
  583. void ath6kl_connect_ap_mode_sta(struct ath6kl_vif *vif, u16 aid, u8 *mac_addr,
  584. u8 keymgmt, u8 ucipher, u8 auth,
  585. u8 assoc_req_len, u8 *assoc_info);
  586. void ath6kl_disconnect_event(struct ath6kl_vif *vif, u8 reason,
  587. u8 *bssid, u8 assoc_resp_len,
  588. u8 *assoc_info, u16 prot_reason_status);
  589. void ath6kl_tkip_micerr_event(struct ath6kl_vif *vif, u8 keyid, bool ismcast);
  590. void ath6kl_txpwr_rx_evt(void *devt, u8 tx_pwr);
  591. void ath6kl_scan_complete_evt(struct ath6kl_vif *vif, int status);
  592. void ath6kl_tgt_stats_event(struct ath6kl_vif *vif, u8 *ptr, u32 len);
  593. void ath6kl_indicate_tx_activity(void *devt, u8 traffic_class, bool active);
  594. enum htc_endpoint_id ath6kl_ac2_endpoint_id(void *devt, u8 ac);
  595. void ath6kl_pspoll_event(struct ath6kl_vif *vif, u8 aid);
  596. void ath6kl_dtimexpiry_event(struct ath6kl_vif *vif);
  597. void ath6kl_disconnect(struct ath6kl_vif *vif);
  598. void aggr_recv_delba_req_evt(struct ath6kl_vif *vif, u8 tid);
  599. void aggr_recv_addba_req_evt(struct ath6kl_vif *vif, u8 tid, u16 seq_no,
  600. u8 win_sz);
  601. void ath6kl_wakeup_event(void *dev);
  602. void ath6kl_reset_device(struct ath6kl *ar, u32 target_type,
  603. bool wait_fot_compltn, bool cold_reset);
  604. void ath6kl_init_control_info(struct ath6kl_vif *vif);
  605. void ath6kl_deinit_if_data(struct ath6kl_vif *vif);
  606. void ath6kl_core_free(struct ath6kl *ar);
  607. struct ath6kl_vif *ath6kl_vif_first(struct ath6kl *ar);
  608. void ath6kl_cleanup_vif(struct ath6kl_vif *vif, bool wmi_ready);
  609. int ath6kl_init_hw_start(struct ath6kl *ar);
  610. int ath6kl_init_hw_stop(struct ath6kl *ar);
  611. void ath6kl_check_wow_status(struct ath6kl *ar);
  612. #endif /* CORE_H */