cmd.h 16 KB

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