dhd.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. /*
  2. * Copyright (c) 2010 Broadcom Corporation
  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 ANY
  11. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  13. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  14. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. /****************
  17. * Common types *
  18. */
  19. #ifndef _BRCMF_H_
  20. #define _BRCMF_H_
  21. #define BRCMF_VERSION_STR "4.218.248.5"
  22. #include "fweh.h"
  23. /*******************************************************************************
  24. * IO codes that are interpreted by dongle firmware
  25. ******************************************************************************/
  26. #define BRCMF_C_GET_VERSION 1
  27. #define BRCMF_C_UP 2
  28. #define BRCMF_C_DOWN 3
  29. #define BRCMF_C_SET_PROMISC 10
  30. #define BRCMF_C_GET_RATE 12
  31. #define BRCMF_C_GET_INFRA 19
  32. #define BRCMF_C_SET_INFRA 20
  33. #define BRCMF_C_GET_AUTH 21
  34. #define BRCMF_C_SET_AUTH 22
  35. #define BRCMF_C_GET_BSSID 23
  36. #define BRCMF_C_GET_SSID 25
  37. #define BRCMF_C_SET_SSID 26
  38. #define BRCMF_C_TERMINATED 28
  39. #define BRCMF_C_GET_CHANNEL 29
  40. #define BRCMF_C_SET_CHANNEL 30
  41. #define BRCMF_C_GET_SRL 31
  42. #define BRCMF_C_SET_SRL 32
  43. #define BRCMF_C_GET_LRL 33
  44. #define BRCMF_C_SET_LRL 34
  45. #define BRCMF_C_GET_RADIO 37
  46. #define BRCMF_C_SET_RADIO 38
  47. #define BRCMF_C_GET_PHYTYPE 39
  48. #define BRCMF_C_SET_KEY 45
  49. #define BRCMF_C_SET_PASSIVE_SCAN 49
  50. #define BRCMF_C_SCAN 50
  51. #define BRCMF_C_SCAN_RESULTS 51
  52. #define BRCMF_C_DISASSOC 52
  53. #define BRCMF_C_REASSOC 53
  54. #define BRCMF_C_SET_ROAM_TRIGGER 55
  55. #define BRCMF_C_SET_ROAM_DELTA 57
  56. #define BRCMF_C_GET_BCNPRD 75
  57. #define BRCMF_C_SET_BCNPRD 76
  58. #define BRCMF_C_GET_DTIMPRD 77
  59. #define BRCMF_C_SET_DTIMPRD 78
  60. #define BRCMF_C_SET_COUNTRY 84
  61. #define BRCMF_C_GET_PM 85
  62. #define BRCMF_C_SET_PM 86
  63. #define BRCMF_C_GET_CURR_RATESET 114
  64. #define BRCMF_C_GET_AP 117
  65. #define BRCMF_C_SET_AP 118
  66. #define BRCMF_C_GET_RSSI 127
  67. #define BRCMF_C_GET_WSEC 133
  68. #define BRCMF_C_SET_WSEC 134
  69. #define BRCMF_C_GET_PHY_NOISE 135
  70. #define BRCMF_C_GET_BSS_INFO 136
  71. #define BRCMF_C_GET_BANDLIST 140
  72. #define BRCMF_C_SET_SCB_TIMEOUT 158
  73. #define BRCMF_C_GET_PHYLIST 180
  74. #define BRCMF_C_SET_SCAN_CHANNEL_TIME 185
  75. #define BRCMF_C_SET_SCAN_UNASSOC_TIME 187
  76. #define BRCMF_C_SCB_DEAUTHENTICATE_FOR_REASON 201
  77. #define BRCMF_C_GET_VALID_CHANNELS 217
  78. #define BRCMF_C_GET_KEY_PRIMARY 235
  79. #define BRCMF_C_SET_KEY_PRIMARY 236
  80. #define BRCMF_C_SET_SCAN_PASSIVE_TIME 258
  81. #define BRCMF_C_GET_VAR 262
  82. #define BRCMF_C_SET_VAR 263
  83. /* phy types (returned by WLC_GET_PHYTPE) */
  84. #define WLC_PHY_TYPE_A 0
  85. #define WLC_PHY_TYPE_B 1
  86. #define WLC_PHY_TYPE_G 2
  87. #define WLC_PHY_TYPE_N 4
  88. #define WLC_PHY_TYPE_LP 5
  89. #define WLC_PHY_TYPE_SSN 6
  90. #define WLC_PHY_TYPE_HT 7
  91. #define WLC_PHY_TYPE_LCN 8
  92. #define WLC_PHY_TYPE_NULL 0xf
  93. #define BRCMF_EVENTING_MASK_LEN 16
  94. #define TOE_TX_CSUM_OL 0x00000001
  95. #define TOE_RX_CSUM_OL 0x00000002
  96. #define BRCMF_BSS_INFO_VERSION 109 /* curr ver of brcmf_bss_info_le struct */
  97. /* size of brcmf_scan_params not including variable length array */
  98. #define BRCMF_SCAN_PARAMS_FIXED_SIZE 64
  99. /* masks for channel and ssid count */
  100. #define BRCMF_SCAN_PARAMS_COUNT_MASK 0x0000ffff
  101. #define BRCMF_SCAN_PARAMS_NSSID_SHIFT 16
  102. /* primary (ie tx) key */
  103. #define BRCMF_PRIMARY_KEY (1 << 1)
  104. /* For supporting multiple interfaces */
  105. #define BRCMF_MAX_IFS 16
  106. #define DOT11_BSSTYPE_ANY 2
  107. #define DOT11_MAX_DEFAULT_KEYS 4
  108. #define BRCMF_ESCAN_REQ_VERSION 1
  109. #define WLC_BSS_RSSI_ON_CHANNEL 0x0002
  110. #define BRCMF_MAXRATES_IN_SET 16 /* max # of rates in rateset */
  111. #define BRCMF_STA_ASSOC 0x10 /* Associated */
  112. #define BRCMF_E_STATUS_SUCCESS 0
  113. #define BRCMF_E_STATUS_FAIL 1
  114. #define BRCMF_E_STATUS_TIMEOUT 2
  115. #define BRCMF_E_STATUS_NO_NETWORKS 3
  116. #define BRCMF_E_STATUS_ABORT 4
  117. #define BRCMF_E_STATUS_NO_ACK 5
  118. #define BRCMF_E_STATUS_UNSOLICITED 6
  119. #define BRCMF_E_STATUS_ATTEMPT 7
  120. #define BRCMF_E_STATUS_PARTIAL 8
  121. #define BRCMF_E_STATUS_NEWSCAN 9
  122. #define BRCMF_E_STATUS_NEWASSOC 10
  123. #define BRCMF_E_STATUS_11HQUIET 11
  124. #define BRCMF_E_STATUS_SUPPRESS 12
  125. #define BRCMF_E_STATUS_NOCHANS 13
  126. #define BRCMF_E_STATUS_CS_ABORT 15
  127. #define BRCMF_E_STATUS_ERROR 16
  128. #define BRCMF_E_REASON_INITIAL_ASSOC 0
  129. #define BRCMF_E_REASON_LOW_RSSI 1
  130. #define BRCMF_E_REASON_DEAUTH 2
  131. #define BRCMF_E_REASON_DISASSOC 3
  132. #define BRCMF_E_REASON_BCNS_LOST 4
  133. #define BRCMF_E_REASON_MINTXRATE 9
  134. #define BRCMF_E_REASON_TXFAIL 10
  135. #define BRCMF_E_REASON_LINK_BSSCFG_DIS 4
  136. #define BRCMF_E_REASON_FAST_ROAM_FAILED 5
  137. #define BRCMF_E_REASON_DIRECTED_ROAM 6
  138. #define BRCMF_E_REASON_TSPEC_REJECTED 7
  139. #define BRCMF_E_REASON_BETTER_AP 8
  140. #define BRCMF_E_PRUNE_ENCR_MISMATCH 1
  141. #define BRCMF_E_PRUNE_BCAST_BSSID 2
  142. #define BRCMF_E_PRUNE_MAC_DENY 3
  143. #define BRCMF_E_PRUNE_MAC_NA 4
  144. #define BRCMF_E_PRUNE_REG_PASSV 5
  145. #define BRCMF_E_PRUNE_SPCT_MGMT 6
  146. #define BRCMF_E_PRUNE_RADAR 7
  147. #define BRCMF_E_RSN_MISMATCH 8
  148. #define BRCMF_E_PRUNE_NO_COMMON_RATES 9
  149. #define BRCMF_E_PRUNE_BASIC_RATES 10
  150. #define BRCMF_E_PRUNE_CIPHER_NA 12
  151. #define BRCMF_E_PRUNE_KNOWN_STA 13
  152. #define BRCMF_E_PRUNE_WDS_PEER 15
  153. #define BRCMF_E_PRUNE_QBSS_LOAD 16
  154. #define BRCMF_E_PRUNE_HOME_AP 17
  155. #define BRCMF_E_SUP_OTHER 0
  156. #define BRCMF_E_SUP_DECRYPT_KEY_DATA 1
  157. #define BRCMF_E_SUP_BAD_UCAST_WEP128 2
  158. #define BRCMF_E_SUP_BAD_UCAST_WEP40 3
  159. #define BRCMF_E_SUP_UNSUP_KEY_LEN 4
  160. #define BRCMF_E_SUP_PW_KEY_CIPHER 5
  161. #define BRCMF_E_SUP_MSG3_TOO_MANY_IE 6
  162. #define BRCMF_E_SUP_MSG3_IE_MISMATCH 7
  163. #define BRCMF_E_SUP_NO_INSTALL_FLAG 8
  164. #define BRCMF_E_SUP_MSG3_NO_GTK 9
  165. #define BRCMF_E_SUP_GRP_KEY_CIPHER 10
  166. #define BRCMF_E_SUP_GRP_MSG1_NO_GTK 11
  167. #define BRCMF_E_SUP_GTK_DECRYPT_FAIL 12
  168. #define BRCMF_E_SUP_SEND_FAIL 13
  169. #define BRCMF_E_SUP_DEAUTH 14
  170. #define BRCMF_E_IF_ADD 1
  171. #define BRCMF_E_IF_DEL 2
  172. #define BRCMF_E_IF_CHANGE 3
  173. #define BRCMF_E_IF_ROLE_STA 0
  174. #define BRCMF_E_IF_ROLE_AP 1
  175. #define BRCMF_E_IF_ROLE_WDS 2
  176. #define BRCMF_E_LINK_BCN_LOSS 1
  177. #define BRCMF_E_LINK_DISASSOC 2
  178. #define BRCMF_E_LINK_ASSOC_REC 3
  179. #define BRCMF_E_LINK_BSSCFG_DIS 4
  180. /* Small, medium and maximum buffer size for dcmd
  181. */
  182. #define BRCMF_DCMD_SMLEN 256
  183. #define BRCMF_DCMD_MEDLEN 1536
  184. #define BRCMF_DCMD_MAXLEN 8192
  185. /* Pattern matching filter. Specifies an offset within received packets to
  186. * start matching, the pattern to match, the size of the pattern, and a bitmask
  187. * that indicates which bits within the pattern should be matched.
  188. */
  189. struct brcmf_pkt_filter_pattern_le {
  190. /*
  191. * Offset within received packet to start pattern matching.
  192. * Offset '0' is the first byte of the ethernet header.
  193. */
  194. __le32 offset;
  195. /* Size of the pattern. Bitmask must be the same size.*/
  196. __le32 size_bytes;
  197. /*
  198. * Variable length mask and pattern data. mask starts at offset 0.
  199. * Pattern immediately follows mask.
  200. */
  201. u8 mask_and_pattern[1];
  202. };
  203. /* IOVAR "pkt_filter_add" parameter. Used to install packet filters. */
  204. struct brcmf_pkt_filter_le {
  205. __le32 id; /* Unique filter id, specified by app. */
  206. __le32 type; /* Filter type (WL_PKT_FILTER_TYPE_xxx). */
  207. __le32 negate_match; /* Negate the result of filter matches */
  208. union { /* Filter definitions */
  209. struct brcmf_pkt_filter_pattern_le pattern; /* Filter pattern */
  210. } u;
  211. };
  212. /* IOVAR "pkt_filter_enable" parameter. */
  213. struct brcmf_pkt_filter_enable_le {
  214. __le32 id; /* Unique filter id */
  215. __le32 enable; /* Enable/disable bool */
  216. };
  217. /* BSS info structure
  218. * Applications MUST CHECK ie_offset field and length field to access IEs and
  219. * next bss_info structure in a vector (in struct brcmf_scan_results)
  220. */
  221. struct brcmf_bss_info_le {
  222. __le32 version; /* version field */
  223. __le32 length; /* byte length of data in this record,
  224. * starting at version and including IEs
  225. */
  226. u8 BSSID[ETH_ALEN];
  227. __le16 beacon_period; /* units are Kusec */
  228. __le16 capability; /* Capability information */
  229. u8 SSID_len;
  230. u8 SSID[32];
  231. struct {
  232. __le32 count; /* # rates in this set */
  233. u8 rates[16]; /* rates in 500kbps units w/hi bit set if basic */
  234. } rateset; /* supported rates */
  235. __le16 chanspec; /* chanspec for bss */
  236. __le16 atim_window; /* units are Kusec */
  237. u8 dtim_period; /* DTIM period */
  238. __le16 RSSI; /* receive signal strength (in dBm) */
  239. s8 phy_noise; /* noise (in dBm) */
  240. u8 n_cap; /* BSS is 802.11N Capable */
  241. /* 802.11N BSS Capabilities (based on HT_CAP_*): */
  242. __le32 nbss_cap;
  243. u8 ctl_ch; /* 802.11N BSS control channel number */
  244. __le32 reserved32[1]; /* Reserved for expansion of BSS properties */
  245. u8 flags; /* flags */
  246. u8 reserved[3]; /* Reserved for expansion of BSS properties */
  247. u8 basic_mcs[MCSSET_LEN]; /* 802.11N BSS required MCS set */
  248. __le16 ie_offset; /* offset at which IEs start, from beginning */
  249. __le32 ie_length; /* byte length of Information Elements */
  250. __le16 SNR; /* average SNR of during frame reception */
  251. /* Add new fields here */
  252. /* variable length Information Elements */
  253. };
  254. struct brcm_rateset_le {
  255. /* # rates in this set */
  256. __le32 count;
  257. /* rates in 500kbps units w/hi bit set if basic */
  258. u8 rates[BRCMF_MAXRATES_IN_SET];
  259. };
  260. struct brcmf_ssid {
  261. u32 SSID_len;
  262. unsigned char SSID[32];
  263. };
  264. struct brcmf_ssid_le {
  265. __le32 SSID_len;
  266. unsigned char SSID[32];
  267. };
  268. struct brcmf_scan_params_le {
  269. struct brcmf_ssid_le ssid_le; /* default: {0, ""} */
  270. u8 bssid[ETH_ALEN]; /* default: bcast */
  271. s8 bss_type; /* default: any,
  272. * DOT11_BSSTYPE_ANY/INFRASTRUCTURE/INDEPENDENT
  273. */
  274. u8 scan_type; /* flags, 0 use default */
  275. __le32 nprobes; /* -1 use default, number of probes per channel */
  276. __le32 active_time; /* -1 use default, dwell time per channel for
  277. * active scanning
  278. */
  279. __le32 passive_time; /* -1 use default, dwell time per channel
  280. * for passive scanning
  281. */
  282. __le32 home_time; /* -1 use default, dwell time for the
  283. * home channel between channel scans
  284. */
  285. __le32 channel_num; /* count of channels and ssids that follow
  286. *
  287. * low half is count of channels in
  288. * channel_list, 0 means default (use all
  289. * available channels)
  290. *
  291. * high half is entries in struct brcmf_ssid
  292. * array that follows channel_list, aligned for
  293. * s32 (4 bytes) meaning an odd channel count
  294. * implies a 2-byte pad between end of
  295. * channel_list and first ssid
  296. *
  297. * if ssid count is zero, single ssid in the
  298. * fixed parameter portion is assumed, otherwise
  299. * ssid in the fixed portion is ignored
  300. */
  301. __le16 channel_list[1]; /* list of chanspecs */
  302. };
  303. struct brcmf_scan_results {
  304. u32 buflen;
  305. u32 version;
  306. u32 count;
  307. struct brcmf_bss_info_le bss_info_le[];
  308. };
  309. struct brcmf_escan_params_le {
  310. __le32 version;
  311. __le16 action;
  312. __le16 sync_id;
  313. struct brcmf_scan_params_le params_le;
  314. };
  315. struct brcmf_escan_result_le {
  316. __le32 buflen;
  317. __le32 version;
  318. __le16 sync_id;
  319. __le16 bss_count;
  320. struct brcmf_bss_info_le bss_info_le;
  321. };
  322. #define WL_ESCAN_RESULTS_FIXED_SIZE (sizeof(struct brcmf_escan_result_le) - \
  323. sizeof(struct brcmf_bss_info_le))
  324. /* used for association with a specific BSSID and chanspec list */
  325. struct brcmf_assoc_params_le {
  326. /* 00:00:00:00:00:00: broadcast scan */
  327. u8 bssid[ETH_ALEN];
  328. /* 0: all available channels, otherwise count of chanspecs in
  329. * chanspec_list */
  330. __le32 chanspec_num;
  331. /* list of chanspecs */
  332. __le16 chanspec_list[1];
  333. };
  334. /* used for join with or without a specific bssid and channel list */
  335. struct brcmf_join_params {
  336. struct brcmf_ssid_le ssid_le;
  337. struct brcmf_assoc_params_le params_le;
  338. };
  339. /* scan params for extended join */
  340. struct brcmf_join_scan_params_le {
  341. u8 scan_type; /* 0 use default, active or passive scan */
  342. __le32 nprobes; /* -1 use default, nr of probes per channel */
  343. __le32 active_time; /* -1 use default, dwell time per channel for
  344. * active scanning
  345. */
  346. __le32 passive_time; /* -1 use default, dwell time per channel
  347. * for passive scanning
  348. */
  349. __le32 home_time; /* -1 use default, dwell time for the home
  350. * channel between channel scans
  351. */
  352. };
  353. /* extended join params */
  354. struct brcmf_ext_join_params_le {
  355. struct brcmf_ssid_le ssid_le; /* {0, ""}: wildcard scan */
  356. struct brcmf_join_scan_params_le scan_le;
  357. struct brcmf_assoc_params_le assoc_le;
  358. };
  359. struct brcmf_wsec_key {
  360. u32 index; /* key index */
  361. u32 len; /* key length */
  362. u8 data[WLAN_MAX_KEY_LEN]; /* key data */
  363. u32 pad_1[18];
  364. u32 algo; /* CRYPTO_ALGO_AES_CCM, CRYPTO_ALGO_WEP128, etc */
  365. u32 flags; /* misc flags */
  366. u32 pad_2[3];
  367. u32 iv_initialized; /* has IV been initialized already? */
  368. u32 pad_3;
  369. /* Rx IV */
  370. struct {
  371. u32 hi; /* upper 32 bits of IV */
  372. u16 lo; /* lower 16 bits of IV */
  373. } rxiv;
  374. u32 pad_4[2];
  375. u8 ea[ETH_ALEN]; /* per station */
  376. };
  377. /*
  378. * dongle requires same struct as above but with fields in little endian order
  379. */
  380. struct brcmf_wsec_key_le {
  381. __le32 index; /* key index */
  382. __le32 len; /* key length */
  383. u8 data[WLAN_MAX_KEY_LEN]; /* key data */
  384. __le32 pad_1[18];
  385. __le32 algo; /* CRYPTO_ALGO_AES_CCM, CRYPTO_ALGO_WEP128, etc */
  386. __le32 flags; /* misc flags */
  387. __le32 pad_2[3];
  388. __le32 iv_initialized; /* has IV been initialized already? */
  389. __le32 pad_3;
  390. /* Rx IV */
  391. struct {
  392. __le32 hi; /* upper 32 bits of IV */
  393. __le16 lo; /* lower 16 bits of IV */
  394. } rxiv;
  395. __le32 pad_4[2];
  396. u8 ea[ETH_ALEN]; /* per station */
  397. };
  398. /* Used to get specific STA parameters */
  399. struct brcmf_scb_val_le {
  400. __le32 val;
  401. u8 ea[ETH_ALEN];
  402. };
  403. /* channel encoding */
  404. struct brcmf_channel_info_le {
  405. __le32 hw_channel;
  406. __le32 target_channel;
  407. __le32 scan_channel;
  408. };
  409. struct brcmf_sta_info_le {
  410. __le16 ver; /* version of this struct */
  411. __le16 len; /* length in bytes of this structure */
  412. __le16 cap; /* sta's advertised capabilities */
  413. __le32 flags; /* flags defined below */
  414. __le32 idle; /* time since data pkt rx'd from sta */
  415. u8 ea[ETH_ALEN]; /* Station address */
  416. __le32 count; /* # rates in this set */
  417. u8 rates[BRCMF_MAXRATES_IN_SET]; /* rates in 500kbps units */
  418. /* w/hi bit set if basic */
  419. __le32 in; /* seconds elapsed since associated */
  420. __le32 listen_interval_inms; /* Min Listen interval in ms for STA */
  421. __le32 tx_pkts; /* # of packets transmitted */
  422. __le32 tx_failures; /* # of packets failed */
  423. __le32 rx_ucast_pkts; /* # of unicast packets received */
  424. __le32 rx_mcast_pkts; /* # of multicast packets received */
  425. __le32 tx_rate; /* Rate of last successful tx frame */
  426. __le32 rx_rate; /* Rate of last successful rx frame */
  427. __le32 rx_decrypt_succeeds; /* # of packet decrypted successfully */
  428. __le32 rx_decrypt_failures; /* # of packet decrypted failed */
  429. };
  430. struct brcmf_chanspec_list {
  431. __le32 count; /* # of entries */
  432. __le32 element[1]; /* variable length uint32 list */
  433. };
  434. /*
  435. * WLC_E_PROBRESP_MSG
  436. * WLC_E_P2P_PROBREQ_MSG
  437. * WLC_E_ACTION_FRAME_RX
  438. */
  439. struct brcmf_rx_mgmt_data {
  440. __be16 version;
  441. __be16 chanspec;
  442. __be32 rssi;
  443. __be32 mactime;
  444. __be32 rate;
  445. };
  446. /* Bus independent dongle command */
  447. struct brcmf_dcmd {
  448. uint cmd; /* common dongle cmd definition */
  449. void *buf; /* pointer to user buffer */
  450. uint len; /* length of user buffer */
  451. u8 set; /* get or set request (optional) */
  452. uint used; /* bytes read or written (optional) */
  453. uint needed; /* bytes needed (optional) */
  454. };
  455. /* Forward decls for struct brcmf_pub (see below) */
  456. struct brcmf_proto; /* device communication protocol info */
  457. struct brcmf_cfg80211_dev; /* cfg80211 device info */
  458. struct brcmf_fws_info; /* firmware signalling info */
  459. /* Common structure for module and instance linkage */
  460. struct brcmf_pub {
  461. /* Linkage ponters */
  462. struct brcmf_bus *bus_if;
  463. struct brcmf_proto *prot;
  464. struct brcmf_cfg80211_info *config;
  465. /* Internal brcmf items */
  466. uint hdrlen; /* Total BRCMF header length (proto + bus) */
  467. uint rxsz; /* Rx buffer size bus module should use */
  468. u8 wme_dp; /* wme discard priority */
  469. /* Dongle media info */
  470. unsigned long drv_version; /* Version of dongle-resident driver */
  471. u8 mac[ETH_ALEN]; /* MAC address obtained from dongle */
  472. /* Multicast data packets sent to dongle */
  473. unsigned long tx_multicast;
  474. struct brcmf_if *iflist[BRCMF_MAX_IFS];
  475. struct mutex proto_block;
  476. unsigned char proto_buf[BRCMF_DCMD_MAXLEN];
  477. struct brcmf_fweh_info fweh;
  478. bool fw_signals;
  479. struct brcmf_fws_info *fws;
  480. spinlock_t fws_spinlock;
  481. #ifdef DEBUG
  482. struct dentry *dbgfs_dir;
  483. #endif
  484. };
  485. struct brcmf_if_event {
  486. u8 ifidx;
  487. u8 action;
  488. u8 flags;
  489. u8 bssidx;
  490. u8 role;
  491. };
  492. /* forward declarations */
  493. struct brcmf_cfg80211_vif;
  494. struct brcmf_fws_mac_descriptor;
  495. /**
  496. * enum brcmf_netif_stop_reason - reason for stopping netif queue.
  497. *
  498. * @BRCMF_NETIF_STOP_REASON_FWS_FC:
  499. * netif stopped due to firmware signalling flow control.
  500. * @BRCMF_NETIF_STOP_REASON_BLOCK_BUS:
  501. * netif stopped due to bus blocking.
  502. */
  503. enum brcmf_netif_stop_reason {
  504. BRCMF_NETIF_STOP_REASON_FWS_FC = 1,
  505. BRCMF_NETIF_STOP_REASON_BLOCK_BUS = 2
  506. };
  507. /**
  508. * struct brcmf_if - interface control information.
  509. *
  510. * @drvr: points to device related information.
  511. * @vif: points to cfg80211 specific interface information.
  512. * @ndev: associated network device.
  513. * @stats: interface specific network statistics.
  514. * @setmacaddr_work: worker object for setting mac address.
  515. * @multicast_work: worker object for multicast provisioning.
  516. * @fws_desc: interface specific firmware-signalling descriptor.
  517. * @ifidx: interface index in device firmware.
  518. * @bssidx: index of bss associated with this interface.
  519. * @mac_addr: assigned mac address.
  520. * @netif_stop: bitmap indicates reason why netif queues are stopped.
  521. * @pend_8021x_cnt: tracks outstanding number of 802.1x frames.
  522. * @pend_8021x_wait: used for signalling change in count.
  523. */
  524. struct brcmf_if {
  525. struct brcmf_pub *drvr;
  526. struct brcmf_cfg80211_vif *vif;
  527. struct net_device *ndev;
  528. struct net_device_stats stats;
  529. struct work_struct setmacaddr_work;
  530. struct work_struct multicast_work;
  531. struct brcmf_fws_mac_descriptor *fws_desc;
  532. int ifidx;
  533. s32 bssidx;
  534. u8 mac_addr[ETH_ALEN];
  535. u8 netif_stop;
  536. atomic_t pend_8021x_cnt;
  537. wait_queue_head_t pend_8021x_wait;
  538. };
  539. extern int brcmf_netdev_wait_pend8021x(struct net_device *ndev);
  540. /* Return pointer to interface name */
  541. extern char *brcmf_ifname(struct brcmf_pub *drvr, int idx);
  542. /* Query dongle */
  543. extern int brcmf_proto_cdc_query_dcmd(struct brcmf_pub *drvr, int ifidx,
  544. uint cmd, void *buf, uint len);
  545. extern int brcmf_proto_cdc_set_dcmd(struct brcmf_pub *drvr, int ifidx, uint cmd,
  546. void *buf, uint len);
  547. /* Remove any protocol-specific data header. */
  548. extern int brcmf_proto_hdrpull(struct brcmf_pub *drvr, bool do_fws, u8 *ifidx,
  549. struct sk_buff *rxp);
  550. extern int brcmf_net_attach(struct brcmf_if *ifp, bool rtnl_locked);
  551. extern struct brcmf_if *brcmf_add_if(struct brcmf_pub *drvr, s32 bssidx,
  552. s32 ifidx, char *name, u8 *mac_addr);
  553. extern void brcmf_del_if(struct brcmf_pub *drvr, s32 bssidx);
  554. void brcmf_txflowblock_if(struct brcmf_if *ifp,
  555. enum brcmf_netif_stop_reason reason, bool state);
  556. extern u32 brcmf_get_chip_info(struct brcmf_if *ifp);
  557. extern void brcmf_txfinalize(struct brcmf_pub *drvr, struct sk_buff *txp,
  558. bool success);
  559. #endif /* _BRCMF_H_ */