cmd.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673
  1. /*
  2. * This file is part of wl1271
  3. *
  4. * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
  5. * Copyright (C) 2009 Nokia Corporation
  6. *
  7. * Contact: Luciano Coelho <luciano.coelho@nokia.com>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * version 2 as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. * 02110-1301 USA
  22. *
  23. */
  24. #ifndef __CMD_H__
  25. #define __CMD_H__
  26. #include "wl12xx.h"
  27. struct acx_header;
  28. int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len,
  29. size_t res_len);
  30. int wl1271_cmd_general_parms(struct wl1271 *wl);
  31. int wl128x_cmd_general_parms(struct wl1271 *wl);
  32. int wl1271_cmd_radio_parms(struct wl1271 *wl);
  33. int wl128x_cmd_radio_parms(struct wl1271 *wl);
  34. int wl1271_cmd_ext_radio_parms(struct wl1271 *wl);
  35. int wl12xx_cmd_role_enable(struct wl1271 *wl, u8 role_type, u8 *role_id);
  36. int wl12xx_cmd_role_disable(struct wl1271 *wl, u8 *role_id);
  37. int wl12xx_cmd_role_start_dev(struct wl1271 *wl);
  38. int wl12xx_cmd_role_stop_dev(struct wl1271 *wl);
  39. int wl12xx_cmd_role_start_sta(struct wl1271 *wl);
  40. int wl12xx_cmd_role_stop_sta(struct wl1271 *wl);
  41. int wl12xx_cmd_role_start_ap(struct wl1271 *wl);
  42. int wl12xx_cmd_role_stop_ap(struct wl1271 *wl);
  43. int wl12xx_cmd_role_start_ibss(struct wl1271 *wl);
  44. int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer);
  45. int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len);
  46. int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len);
  47. int wl1271_cmd_data_path(struct wl1271 *wl, bool enable);
  48. int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode);
  49. int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer,
  50. size_t len);
  51. int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id,
  52. void *buf, size_t buf_len, int index, u32 rates);
  53. int wl1271_cmd_build_null_data(struct wl1271 *wl);
  54. int wl1271_cmd_build_ps_poll(struct wl1271 *wl, u16 aid);
  55. int wl1271_cmd_build_probe_req(struct wl1271 *wl,
  56. const u8 *ssid, size_t ssid_len,
  57. const u8 *ie, size_t ie_len, u8 band);
  58. struct sk_buff *wl1271_cmd_build_ap_probe_req(struct wl1271 *wl,
  59. struct sk_buff *skb);
  60. int wl1271_cmd_build_arp_rsp(struct wl1271 *wl, __be32 ip_addr);
  61. int wl1271_build_qos_null_data(struct wl1271 *wl);
  62. int wl1271_cmd_build_klv_null_data(struct wl1271 *wl);
  63. int wl12xx_cmd_set_default_wep_key(struct wl1271 *wl, u8 id, u8 hlid);
  64. int wl1271_cmd_set_sta_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
  65. u8 key_size, const u8 *key, const u8 *addr,
  66. u32 tx_seq_32, u16 tx_seq_16);
  67. int wl1271_cmd_set_ap_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
  68. u8 key_size, const u8 *key, u8 hlid, u32 tx_seq_32,
  69. u16 tx_seq_16);
  70. int wl12xx_cmd_set_peer_state(struct wl1271 *wl, u8 hlid);
  71. int wl12xx_roc(struct wl1271 *wl, u8 role_id);
  72. int wl12xx_croc(struct wl1271 *wl, u8 role_id);
  73. int wl12xx_cmd_add_peer(struct wl1271 *wl, struct ieee80211_sta *sta, u8 hlid);
  74. int wl12xx_cmd_remove_peer(struct wl1271 *wl, u8 hlid);
  75. int wl12xx_cmd_config_fwlog(struct wl1271 *wl);
  76. int wl12xx_cmd_start_fwlog(struct wl1271 *wl);
  77. int wl12xx_cmd_stop_fwlog(struct wl1271 *wl);
  78. enum wl1271_commands {
  79. CMD_INTERROGATE = 1, /*use this to read information elements*/
  80. CMD_CONFIGURE = 2, /*use this to write information elements*/
  81. CMD_ENABLE_RX = 3,
  82. CMD_ENABLE_TX = 4,
  83. CMD_DISABLE_RX = 5,
  84. CMD_DISABLE_TX = 6,
  85. CMD_SCAN = 8,
  86. CMD_STOP_SCAN = 9,
  87. CMD_SET_KEYS = 12,
  88. CMD_READ_MEMORY = 13,
  89. CMD_WRITE_MEMORY = 14,
  90. CMD_SET_TEMPLATE = 19,
  91. CMD_TEST = 23,
  92. CMD_NOISE_HIST = 28,
  93. CMD_QUIET_ELEMENT_SET_STATE = 29,
  94. CMD_SET_BCN_MODE = 33,
  95. CMD_MEASUREMENT = 34,
  96. CMD_STOP_MEASUREMENT = 35,
  97. CMD_SET_PS_MODE = 37,
  98. CMD_CHANNEL_SWITCH = 38,
  99. CMD_STOP_CHANNEL_SWICTH = 39,
  100. CMD_AP_DISCOVERY = 40,
  101. CMD_STOP_AP_DISCOVERY = 41,
  102. CMD_HEALTH_CHECK = 45,
  103. CMD_DEBUG = 46,
  104. CMD_TRIGGER_SCAN_TO = 47,
  105. CMD_CONNECTION_SCAN_CFG = 48,
  106. CMD_CONNECTION_SCAN_SSID_CFG = 49,
  107. CMD_START_PERIODIC_SCAN = 50,
  108. CMD_STOP_PERIODIC_SCAN = 51,
  109. CMD_SET_PEER_STATE = 52,
  110. CMD_REMAIN_ON_CHANNEL = 53,
  111. CMD_CANCEL_REMAIN_ON_CHANNEL = 54,
  112. CMD_CONFIG_FWLOGGER = 55,
  113. CMD_START_FWLOGGER = 56,
  114. CMD_STOP_FWLOGGER = 57,
  115. /* AP commands */
  116. CMD_ADD_PEER = 62,
  117. CMD_REMOVE_PEER = 63,
  118. /* Role API */
  119. CMD_ROLE_ENABLE = 70,
  120. CMD_ROLE_DISABLE = 71,
  121. CMD_ROLE_START = 72,
  122. CMD_ROLE_STOP = 73,
  123. /* WIFI Direct */
  124. CMD_WFD_START_DISCOVERY = 80,
  125. CMD_WFD_STOP_DISCOVERY = 81,
  126. CMD_WFD_ATTRIBUTE_CONFIG = 82,
  127. CMD_NOP = 100,
  128. NUM_COMMANDS,
  129. MAX_COMMAND_ID = 0xFFFF,
  130. };
  131. #define MAX_CMD_PARAMS 572
  132. enum {
  133. CMD_TEMPL_KLV_IDX_NULL_DATA = 0,
  134. CMD_TEMPL_KLV_IDX_MAX = 4
  135. };
  136. enum cmd_templ {
  137. CMD_TEMPL_NULL_DATA = 0,
  138. CMD_TEMPL_BEACON,
  139. CMD_TEMPL_CFG_PROBE_REQ_2_4,
  140. CMD_TEMPL_CFG_PROBE_REQ_5,
  141. CMD_TEMPL_PROBE_RESPONSE,
  142. CMD_TEMPL_QOS_NULL_DATA,
  143. CMD_TEMPL_PS_POLL,
  144. CMD_TEMPL_KLV,
  145. CMD_TEMPL_DISCONNECT,
  146. CMD_TEMPL_PROBE_REQ_2_4, /* for firmware internal use only */
  147. CMD_TEMPL_PROBE_REQ_5, /* for firmware internal use only */
  148. CMD_TEMPL_BAR, /* for firmware internal use only */
  149. CMD_TEMPL_CTS, /*
  150. * For CTS-to-self (FastCTS) mechanism
  151. * for BT/WLAN coexistence (SoftGemini). */
  152. CMD_TEMPL_AP_BEACON,
  153. CMD_TEMPL_AP_PROBE_RESPONSE,
  154. CMD_TEMPL_ARP_RSP,
  155. CMD_TEMPL_DEAUTH_AP,
  156. CMD_TEMPL_TEMPORARY,
  157. CMD_TEMPL_LINK_MEASUREMENT_REPORT,
  158. CMD_TEMPL_MAX = 0xff
  159. };
  160. /* unit ms */
  161. #define WL1271_COMMAND_TIMEOUT 2000
  162. #define WL1271_CMD_TEMPL_DFLT_SIZE 252
  163. #define WL1271_CMD_TEMPL_MAX_SIZE 548
  164. #define WL1271_EVENT_TIMEOUT 750
  165. struct wl1271_cmd_header {
  166. __le16 id;
  167. __le16 status;
  168. /* payload */
  169. u8 data[0];
  170. } __packed;
  171. #define WL1271_CMD_MAX_PARAMS 572
  172. struct wl1271_command {
  173. struct wl1271_cmd_header header;
  174. u8 parameters[WL1271_CMD_MAX_PARAMS];
  175. } __packed;
  176. enum {
  177. CMD_MAILBOX_IDLE = 0,
  178. CMD_STATUS_SUCCESS = 1,
  179. CMD_STATUS_UNKNOWN_CMD = 2,
  180. CMD_STATUS_UNKNOWN_IE = 3,
  181. CMD_STATUS_REJECT_MEAS_SG_ACTIVE = 11,
  182. CMD_STATUS_RX_BUSY = 13,
  183. CMD_STATUS_INVALID_PARAM = 14,
  184. CMD_STATUS_TEMPLATE_TOO_LARGE = 15,
  185. CMD_STATUS_OUT_OF_MEMORY = 16,
  186. CMD_STATUS_STA_TABLE_FULL = 17,
  187. CMD_STATUS_RADIO_ERROR = 18,
  188. CMD_STATUS_WRONG_NESTING = 19,
  189. CMD_STATUS_TIMEOUT = 21, /* Driver internal use.*/
  190. CMD_STATUS_FW_RESET = 22, /* Driver internal use.*/
  191. CMD_STATUS_TEMPLATE_OOM = 23,
  192. CMD_STATUS_NO_RX_BA_SESSION = 24,
  193. MAX_COMMAND_STATUS = 0xff
  194. };
  195. #define CMDMBOX_HEADER_LEN 4
  196. #define CMDMBOX_INFO_ELEM_HEADER_LEN 4
  197. enum {
  198. BSS_TYPE_IBSS = 0,
  199. BSS_TYPE_STA_BSS = 2,
  200. BSS_TYPE_AP_BSS = 3,
  201. MAX_BSS_TYPE = 0xFF
  202. };
  203. #define WL1271_JOIN_CMD_CTRL_TX_FLUSH 0x80 /* Firmware flushes all Tx */
  204. #define WL1271_JOIN_CMD_TX_SESSION_OFFSET 1
  205. #define WL1271_JOIN_CMD_BSS_TYPE_5GHZ 0x10
  206. struct wl12xx_cmd_role_enable {
  207. struct wl1271_cmd_header header;
  208. u8 role_id;
  209. u8 role_type;
  210. u8 mac_address[ETH_ALEN];
  211. } __packed;
  212. struct wl12xx_cmd_role_disable {
  213. struct wl1271_cmd_header header;
  214. u8 role_id;
  215. u8 padding[3];
  216. } __packed;
  217. enum wl12xx_band {
  218. WL12XX_BAND_2_4GHZ = 0,
  219. WL12XX_BAND_5GHZ = 1,
  220. WL12XX_BAND_JAPAN_4_9_GHZ = 2,
  221. WL12XX_BAND_DEFAULT = WL12XX_BAND_2_4GHZ,
  222. WL12XX_BAND_INVALID = 0x7E,
  223. WL12XX_BAND_MAX_RADIO = 0x7F,
  224. };
  225. struct wl12xx_cmd_role_start {
  226. struct wl1271_cmd_header header;
  227. u8 role_id;
  228. u8 band;
  229. u8 channel;
  230. u8 padding;
  231. union {
  232. struct {
  233. u8 hlid;
  234. u8 session;
  235. u8 padding_1[54];
  236. } __packed device;
  237. /* sta & p2p_cli use the same struct */
  238. struct {
  239. u8 bssid[ETH_ALEN];
  240. u8 hlid; /* data hlid */
  241. u8 session;
  242. __le32 remote_rates; /* remote supported rates */
  243. /*
  244. * The target uses this field to determine the rate at
  245. * which to transmit control frame responses (such as
  246. * ACK or CTS frames).
  247. */
  248. __le32 basic_rate_set;
  249. __le32 local_rates; /* local supported rates */
  250. u8 ssid_type;
  251. u8 ssid_len;
  252. u8 ssid[IEEE80211_MAX_SSID_LEN];
  253. __le16 beacon_interval; /* in TBTTs */
  254. } __packed sta;
  255. struct {
  256. u8 bssid[ETH_ALEN];
  257. u8 hlid; /* data hlid */
  258. u8 dtim_interval;
  259. __le32 remote_rates; /* remote supported rates */
  260. __le32 basic_rate_set;
  261. __le32 local_rates; /* local supported rates */
  262. u8 ssid_type;
  263. u8 ssid_len;
  264. u8 ssid[IEEE80211_MAX_SSID_LEN];
  265. __le16 beacon_interval; /* in TBTTs */
  266. u8 padding_1[4];
  267. } __packed ibss;
  268. /* ap & p2p_go use the same struct */
  269. struct {
  270. __le16 aging_period; /* in secs */
  271. u8 beacon_expiry; /* in ms */
  272. u8 bss_index;
  273. /* The host link id for the AP's global queue */
  274. u8 global_hlid;
  275. /* The host link id for the AP's broadcast queue */
  276. u8 broadcast_hlid;
  277. __le16 beacon_interval; /* in TBTTs */
  278. __le32 basic_rate_set;
  279. __le32 local_rates; /* local supported rates */
  280. u8 dtim_interval;
  281. u8 ssid_type;
  282. u8 ssid_len;
  283. u8 ssid[IEEE80211_MAX_SSID_LEN];
  284. u8 padding_1[5];
  285. } __packed ap;
  286. };
  287. } __packed;
  288. struct wl12xx_cmd_role_stop {
  289. struct wl1271_cmd_header header;
  290. u8 role_id;
  291. u8 disc_type; /* only STA and P2P_CLI */
  292. __le16 reason; /* only STA and P2P_CLI */
  293. } __packed;
  294. struct cmd_enabledisable_path {
  295. struct wl1271_cmd_header header;
  296. u8 channel;
  297. u8 padding[3];
  298. } __packed;
  299. #define WL1271_RATE_AUTOMATIC 0
  300. struct wl1271_cmd_template_set {
  301. struct wl1271_cmd_header header;
  302. __le16 len;
  303. u8 template_type;
  304. u8 index; /* relevant only for KLV_TEMPLATE type */
  305. __le32 enabled_rates;
  306. u8 short_retry_limit;
  307. u8 long_retry_limit;
  308. u8 aflags;
  309. u8 reserved;
  310. u8 template_data[WL1271_CMD_TEMPL_MAX_SIZE];
  311. } __packed;
  312. #define TIM_ELE_ID 5
  313. #define PARTIAL_VBM_MAX 251
  314. struct wl1271_tim {
  315. u8 identity;
  316. u8 length;
  317. u8 dtim_count;
  318. u8 dtim_period;
  319. u8 bitmap_ctrl;
  320. u8 pvb_field[PARTIAL_VBM_MAX]; /* Partial Virtual Bitmap */
  321. } __packed;
  322. enum wl1271_cmd_ps_mode {
  323. STATION_ACTIVE_MODE,
  324. STATION_POWER_SAVE_MODE
  325. };
  326. struct wl1271_cmd_ps_params {
  327. struct wl1271_cmd_header header;
  328. u8 role_id;
  329. u8 ps_mode; /* STATION_* */
  330. u8 padding[2];
  331. } __packed;
  332. /* HW encryption keys */
  333. #define NUM_ACCESS_CATEGORIES_COPY 4
  334. enum wl1271_cmd_key_action {
  335. KEY_ADD_OR_REPLACE = 1,
  336. KEY_REMOVE = 2,
  337. KEY_SET_ID = 3,
  338. MAX_KEY_ACTION = 0xffff,
  339. };
  340. enum wl1271_cmd_lid_key_type {
  341. UNICAST_LID_TYPE = 0,
  342. BROADCAST_LID_TYPE = 1,
  343. WEP_DEFAULT_LID_TYPE = 2
  344. };
  345. enum wl1271_cmd_key_type {
  346. KEY_NONE = 0,
  347. KEY_WEP = 1,
  348. KEY_TKIP = 2,
  349. KEY_AES = 3,
  350. KEY_GEM = 4,
  351. };
  352. struct wl1271_cmd_set_keys {
  353. struct wl1271_cmd_header header;
  354. /*
  355. * Indicates whether the HLID is a unicast key set
  356. * or broadcast key set. A special value 0xFF is
  357. * used to indicate that the HLID is on WEP-default
  358. * (multi-hlids). of type wl1271_cmd_lid_key_type.
  359. */
  360. u8 hlid;
  361. /*
  362. * In WEP-default network (hlid == 0xFF) used to
  363. * indicate which network STA/IBSS/AP role should be
  364. * changed
  365. */
  366. u8 lid_key_type;
  367. /*
  368. * Key ID - For TKIP and AES key types, this field
  369. * indicates the value that should be inserted into
  370. * the KeyID field of frames transmitted using this
  371. * key entry. For broadcast keys the index use as a
  372. * marker for TX/RX key.
  373. * For WEP default network (HLID=0xFF), this field
  374. * indicates the ID of the key to add or remove.
  375. */
  376. u8 key_id;
  377. u8 reserved_1;
  378. /* key_action_e */
  379. __le16 key_action;
  380. /* key size in bytes */
  381. u8 key_size;
  382. /* key_type_e */
  383. u8 key_type;
  384. /* This field holds the security key data to add to the STA table */
  385. u8 key[MAX_KEY_SIZE];
  386. __le16 ac_seq_num16[NUM_ACCESS_CATEGORIES_COPY];
  387. __le32 ac_seq_num32[NUM_ACCESS_CATEGORIES_COPY];
  388. } __packed;
  389. struct wl1271_cmd_test_header {
  390. u8 id;
  391. u8 padding[3];
  392. } __packed;
  393. enum wl1271_channel_tune_bands {
  394. WL1271_CHANNEL_TUNE_BAND_2_4,
  395. WL1271_CHANNEL_TUNE_BAND_5,
  396. WL1271_CHANNEL_TUNE_BAND_4_9
  397. };
  398. #define WL1271_PD_REFERENCE_POINT_BAND_B_G 0
  399. #define TEST_CMD_INI_FILE_RADIO_PARAM 0x19
  400. #define TEST_CMD_INI_FILE_GENERAL_PARAM 0x1E
  401. #define TEST_CMD_INI_FILE_RF_EXTENDED_PARAM 0x26
  402. struct wl1271_general_parms_cmd {
  403. struct wl1271_cmd_header header;
  404. struct wl1271_cmd_test_header test;
  405. struct wl1271_ini_general_params general_params;
  406. u8 sr_debug_table[WL1271_INI_MAX_SMART_REFLEX_PARAM];
  407. u8 sr_sen_n_p;
  408. u8 sr_sen_n_p_gain;
  409. u8 sr_sen_nrn;
  410. u8 sr_sen_prn;
  411. u8 padding[3];
  412. } __packed;
  413. struct wl128x_general_parms_cmd {
  414. struct wl1271_cmd_header header;
  415. struct wl1271_cmd_test_header test;
  416. struct wl128x_ini_general_params general_params;
  417. u8 sr_debug_table[WL1271_INI_MAX_SMART_REFLEX_PARAM];
  418. u8 sr_sen_n_p;
  419. u8 sr_sen_n_p_gain;
  420. u8 sr_sen_nrn;
  421. u8 sr_sen_prn;
  422. u8 padding[3];
  423. } __packed;
  424. struct wl1271_radio_parms_cmd {
  425. struct wl1271_cmd_header header;
  426. struct wl1271_cmd_test_header test;
  427. /* Static radio parameters */
  428. struct wl1271_ini_band_params_2 static_params_2;
  429. struct wl1271_ini_band_params_5 static_params_5;
  430. /* Dynamic radio parameters */
  431. struct wl1271_ini_fem_params_2 dyn_params_2;
  432. u8 padding2;
  433. struct wl1271_ini_fem_params_5 dyn_params_5;
  434. u8 padding3[2];
  435. } __packed;
  436. struct wl128x_radio_parms_cmd {
  437. struct wl1271_cmd_header header;
  438. struct wl1271_cmd_test_header test;
  439. /* Static radio parameters */
  440. struct wl128x_ini_band_params_2 static_params_2;
  441. struct wl128x_ini_band_params_5 static_params_5;
  442. u8 fem_vendor_and_options;
  443. /* Dynamic radio parameters */
  444. struct wl128x_ini_fem_params_2 dyn_params_2;
  445. u8 padding2;
  446. struct wl128x_ini_fem_params_5 dyn_params_5;
  447. } __packed;
  448. struct wl1271_ext_radio_parms_cmd {
  449. struct wl1271_cmd_header header;
  450. struct wl1271_cmd_test_header test;
  451. u8 tx_per_channel_power_compensation_2[CONF_TX_PWR_COMPENSATION_LEN_2];
  452. u8 tx_per_channel_power_compensation_5[CONF_TX_PWR_COMPENSATION_LEN_5];
  453. u8 padding[3];
  454. } __packed;
  455. /*
  456. * There are three types of disconnections:
  457. *
  458. * DISCONNECT_IMMEDIATE: the fw doesn't send any frames
  459. * DISCONNECT_DEAUTH: the fw generates a DEAUTH request with the reason
  460. * we have passed
  461. * DISCONNECT_DISASSOC: the fw generates a DESASSOC request with the reason
  462. * we have passed
  463. */
  464. enum wl1271_disconnect_type {
  465. DISCONNECT_IMMEDIATE,
  466. DISCONNECT_DEAUTH,
  467. DISCONNECT_DISASSOC
  468. };
  469. #define WL1271_CMD_STA_STATE_CONNECTED 1
  470. struct wl12xx_cmd_set_peer_state {
  471. struct wl1271_cmd_header header;
  472. u8 hlid;
  473. u8 state;
  474. u8 padding[2];
  475. } __packed;
  476. struct wl12xx_cmd_roc {
  477. struct wl1271_cmd_header header;
  478. u8 role_id;
  479. u8 channel;
  480. u8 band;
  481. u8 padding;
  482. };
  483. struct wl12xx_cmd_croc {
  484. struct wl1271_cmd_header header;
  485. u8 role_id;
  486. u8 padding[3];
  487. };
  488. enum wl12xx_ssid_type {
  489. WL12XX_SSID_TYPE_PUBLIC = 0,
  490. WL12XX_SSID_TYPE_HIDDEN = 1,
  491. WL12XX_SSID_TYPE_ANY = 2,
  492. };
  493. struct wl12xx_cmd_add_peer {
  494. struct wl1271_cmd_header header;
  495. u8 addr[ETH_ALEN];
  496. u8 hlid;
  497. u8 aid;
  498. u8 psd_type[NUM_ACCESS_CATEGORIES_COPY];
  499. __le32 supported_rates;
  500. u8 bss_index;
  501. u8 sp_len;
  502. u8 wmm;
  503. u8 padding1;
  504. } __packed;
  505. struct wl12xx_cmd_remove_peer {
  506. struct wl1271_cmd_header header;
  507. u8 hlid;
  508. u8 reason_opcode;
  509. u8 send_deauth_flag;
  510. u8 padding1;
  511. } __packed;
  512. /*
  513. * Continuous mode - packets are transferred to the host periodically
  514. * via the data path.
  515. * On demand - Log messages are stored in a cyclic buffer in the
  516. * firmware, and only transferred to the host when explicitly requested
  517. */
  518. enum wl12xx_fwlogger_log_mode {
  519. WL12XX_FWLOG_CONTINUOUS,
  520. WL12XX_FWLOG_ON_DEMAND
  521. };
  522. /* Include/exclude timestamps from the log messages */
  523. enum wl12xx_fwlogger_timestamp {
  524. WL12XX_FWLOG_TIMESTAMP_DISABLED,
  525. WL12XX_FWLOG_TIMESTAMP_ENABLED
  526. };
  527. /*
  528. * Logs can be routed to the debug pinouts (where available), to the host bus
  529. * (SDIO/SPI), or dropped
  530. */
  531. enum wl12xx_fwlogger_output {
  532. WL12XX_FWLOG_OUTPUT_NONE,
  533. WL12XX_FWLOG_OUTPUT_DBG_PINS,
  534. WL12XX_FWLOG_OUTPUT_HOST,
  535. };
  536. struct wl12xx_cmd_config_fwlog {
  537. struct wl1271_cmd_header header;
  538. /* See enum wl12xx_fwlogger_log_mode */
  539. u8 logger_mode;
  540. /* Minimum log level threshold */
  541. u8 log_severity;
  542. /* Include/exclude timestamps from the log messages */
  543. u8 timestamp;
  544. /* See enum wl1271_fwlogger_output */
  545. u8 output;
  546. /* Regulates the frequency of log messages */
  547. u8 threshold;
  548. u8 padding[3];
  549. } __packed;
  550. struct wl12xx_cmd_start_fwlog {
  551. struct wl1271_cmd_header header;
  552. } __packed;
  553. struct wl12xx_cmd_stop_fwlog {
  554. struct wl1271_cmd_header header;
  555. } __packed;
  556. #endif /* __WL1271_CMD_H__ */