blob: 01a97d0fa98ab635f77f142d12aa97ffc2ac4ea0 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/*
2 * This file contains the function prototypes, data structure
3 * and defines for all the host/station commands
4 */
5#ifndef __HOSTCMD__H
6#define __HOSTCMD__H
7
8#include <linux/wireless.h>
9#include "11d.h"
10#include "types.h"
11
12/* 802.11-related definitions */
13
14/* TxPD descriptor */
15struct txpd {
16 /* Current Tx packet status */
David Woodhouse981f1872007-05-25 23:36:54 -040017 __le32 tx_status;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020018 /* Tx control */
David Woodhouse981f1872007-05-25 23:36:54 -040019 __le32 tx_control;
20 __le32 tx_packet_location;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021 /* Tx packet length */
David Woodhouse981f1872007-05-25 23:36:54 -040022 __le16 tx_packet_length;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020023 /* First 2 byte of destination MAC address */
24 u8 tx_dest_addr_high[2];
25 /* Last 4 byte of destination MAC address */
26 u8 tx_dest_addr_low[4];
27 /* Pkt Priority */
28 u8 priority;
29 /* Pkt Trasnit Power control */
30 u8 powermgmt;
31 /* Amount of time the packet has been queued in the driver (units = 2ms) */
32 u8 pktdelay_2ms;
33 /* reserved */
34 u8 reserved1;
35};
36
37/* RxPD Descriptor */
38struct rxpd {
39 /* Current Rx packet status */
David Woodhouse981f1872007-05-25 23:36:54 -040040 __le16 status;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020041
42 /* SNR */
43 u8 snr;
44
45 /* Tx control */
46 u8 rx_control;
47
48 /* Pkt length */
David Woodhouse981f1872007-05-25 23:36:54 -040049 __le16 pkt_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020050
51 /* Noise Floor */
52 u8 nf;
53
54 /* Rx Packet Rate */
55 u8 rx_rate;
56
57 /* Pkt addr */
David Woodhouse981f1872007-05-25 23:36:54 -040058 __le32 pkt_ptr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020059
60 /* Next Rx RxPD addr */
David Woodhouse981f1872007-05-25 23:36:54 -040061 __le32 next_rxpd_ptr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062
63 /* Pkt Priority */
64 u8 priority;
65 u8 reserved[3];
66};
67
68struct cmd_ctrl_node {
69 /* CMD link list */
70 struct list_head list;
71 u32 status;
72 /* CMD ID */
73 u32 cmd_oid;
74 /*CMD wait option: wait for finish or no wait */
75 u16 wait_option;
76 /* command parameter */
77 void *pdata_buf;
78 /*command data */
79 u8 *bufvirtualaddr;
80 u16 cmdflags;
81 /* wait queue */
82 u16 cmdwaitqwoken;
83 wait_queue_head_t cmdwait_q;
84};
85
Dan Williams1443b652007-08-02 10:45:55 -040086/* Generic structure to hold all key types. */
87struct enc_key {
88 u16 len;
89 u16 flags; /* KEY_INFO_* from wlan_defs.h */
90 u16 type; /* KEY_TYPE_* from wlan_defs.h */
91 u8 key[32];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020092};
93
94struct IE_WPA {
95 u8 elementid;
96 u8 len;
97 u8 oui[4];
David Woodhouse981f1872007-05-25 23:36:54 -040098 __le16 version;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020099};
100
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200101/* wlan_offset_value */
102struct wlan_offset_value {
103 u32 offset;
104 u32 value;
105};
106
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200107struct WLAN_802_11_VARIABLE_IEs {
108 u8 elementid;
109 u8 length;
110 u8 data[1];
111};
112
113/* Define general data structure */
114/* cmd_DS_GEN */
115struct cmd_ds_gen {
David Woodhouse981f1872007-05-25 23:36:54 -0400116 __le16 command;
117 __le16 size;
118 __le16 seqnum;
119 __le16 result;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200120};
121
122#define S_DS_GEN sizeof(struct cmd_ds_gen)
123/*
124 * Define data structure for cmd_get_hw_spec
125 * This structure defines the response for the GET_HW_SPEC command
126 */
127struct cmd_ds_get_hw_spec {
128 /* HW Interface version number */
David Woodhouse981f1872007-05-25 23:36:54 -0400129 __le16 hwifversion;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200130 /* HW version number */
David Woodhouse981f1872007-05-25 23:36:54 -0400131 __le16 version;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200132 /* Max number of TxPD FW can handle */
David Woodhouse981f1872007-05-25 23:36:54 -0400133 __le16 nr_txpd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200134 /* Max no of Multicast address */
David Woodhouse981f1872007-05-25 23:36:54 -0400135 __le16 nr_mcast_adr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 /* MAC address */
137 u8 permanentaddr[6];
138
139 /* region Code */
David Woodhouse981f1872007-05-25 23:36:54 -0400140 __le16 regioncode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200141
142 /* Number of antenna used */
David Woodhouse981f1872007-05-25 23:36:54 -0400143 __le16 nr_antenna;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200144
David Woodhousee5b3d472007-05-25 23:40:21 -0400145 /* FW release number, example 1,2,3,4 = 3.2.1p4 */
146 u8 fwreleasenumber[4];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200147
148 /* Base Address of TxPD queue */
David Woodhouse981f1872007-05-25 23:36:54 -0400149 __le32 wcb_base;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200150 /* Read Pointer of RxPd queue */
David Woodhouse981f1872007-05-25 23:36:54 -0400151 __le32 rxpd_rdptr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200152
153 /* Write Pointer of RxPd queue */
David Woodhouse981f1872007-05-25 23:36:54 -0400154 __le32 rxpd_wrptr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155
156 /*FW/HW capability */
David Woodhouse981f1872007-05-25 23:36:54 -0400157 __le32 fwcapinfo;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200158} __attribute__ ((packed));
159
160struct cmd_ds_802_11_reset {
David Woodhouse981f1872007-05-25 23:36:54 -0400161 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200162};
163
164struct cmd_ds_802_11_subscribe_event {
David Woodhouse981f1872007-05-25 23:36:54 -0400165 __le16 action;
166 __le16 events;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200167};
168
169/*
170 * This scan handle Country Information IE(802.11d compliant)
171 * Define data structure for cmd_802_11_scan
172 */
173struct cmd_ds_802_11_scan {
174 u8 bsstype;
175 u8 BSSID[ETH_ALEN];
176 u8 tlvbuffer[1];
177#if 0
178 mrvlietypes_ssidparamset_t ssidParamSet;
179 mrvlietypes_chanlistparamset_t ChanListParamSet;
180 mrvlietypes_ratesparamset_t OpRateSet;
181#endif
182};
183
184struct cmd_ds_802_11_scan_rsp {
David Woodhouse981f1872007-05-25 23:36:54 -0400185 __le16 bssdescriptsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200186 u8 nr_sets;
187 u8 bssdesc_and_tlvbuffer[1];
188};
189
190struct cmd_ds_802_11_get_log {
David Woodhouse981f1872007-05-25 23:36:54 -0400191 __le32 mcasttxframe;
192 __le32 failed;
193 __le32 retry;
194 __le32 multiretry;
195 __le32 framedup;
196 __le32 rtssuccess;
197 __le32 rtsfailure;
198 __le32 ackfailure;
199 __le32 rxfrag;
200 __le32 mcastrxframe;
201 __le32 fcserror;
202 __le32 txframe;
203 __le32 wepundecryptable;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200204};
205
206struct cmd_ds_mac_control {
David Woodhouse981f1872007-05-25 23:36:54 -0400207 __le16 action;
208 __le16 reserved;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200209};
210
211struct cmd_ds_mac_multicast_adr {
David Woodhouse981f1872007-05-25 23:36:54 -0400212 __le16 action;
213 __le16 nr_of_adrs;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200214 u8 maclist[ETH_ALEN * MRVDRV_MAX_MULTICAST_LIST_SIZE];
215};
216
217struct cmd_ds_802_11_authenticate {
218 u8 macaddr[ETH_ALEN];
219 u8 authtype;
220 u8 reserved[10];
221};
222
223struct cmd_ds_802_11_deauthenticate {
224 u8 macaddr[6];
David Woodhouse981f1872007-05-25 23:36:54 -0400225 __le16 reasoncode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200226};
227
228struct cmd_ds_802_11_associate {
229 u8 peerstaaddr[6];
Dan Williams0c9ca6902007-08-02 10:43:44 -0400230 __le16 capability;
David Woodhouse981f1872007-05-25 23:36:54 -0400231 __le16 listeninterval;
232 __le16 bcnperiod;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200233 u8 dtimperiod;
234
235#if 0
236 mrvlietypes_ssidparamset_t ssidParamSet;
237 mrvlietypes_phyparamset_t phyparamset;
238 mrvlietypes_ssparamset_t ssparamset;
239 mrvlietypes_ratesparamset_t ratesParamSet;
240#endif
241} __attribute__ ((packed));
242
243struct cmd_ds_802_11_disassociate {
244 u8 destmacaddr[6];
David Woodhouse981f1872007-05-25 23:36:54 -0400245 __le16 reasoncode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200246};
247
248struct cmd_ds_802_11_associate_rsp {
249 struct ieeetypes_assocrsp assocRsp;
250};
251
252struct cmd_ds_802_11_ad_hoc_result {
253 u8 PAD[3];
254 u8 BSSID[ETH_ALEN];
255};
256
257struct cmd_ds_802_11_set_wep {
258 /* ACT_ADD, ACT_REMOVE or ACT_ENABLE */
David Woodhouse981f1872007-05-25 23:36:54 -0400259 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200260
261 /* key Index selected for Tx */
David Woodhouse981f1872007-05-25 23:36:54 -0400262 __le16 keyindex;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200263
264 /* 40, 128bit or TXWEP */
265 u8 keytype[4];
266 u8 keymaterial[4][16];
267};
268
269struct cmd_ds_802_3_get_stat {
David Woodhouse981f1872007-05-25 23:36:54 -0400270 __le32 xmitok;
271 __le32 rcvok;
272 __le32 xmiterror;
273 __le32 rcverror;
274 __le32 rcvnobuffer;
275 __le32 rcvcrcerror;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200276};
277
278struct cmd_ds_802_11_get_stat {
David Woodhouse981f1872007-05-25 23:36:54 -0400279 __le32 txfragmentcnt;
280 __le32 mcasttxframecnt;
281 __le32 failedcnt;
282 __le32 retrycnt;
283 __le32 Multipleretrycnt;
284 __le32 rtssuccesscnt;
285 __le32 rtsfailurecnt;
286 __le32 ackfailurecnt;
287 __le32 frameduplicatecnt;
288 __le32 rxfragmentcnt;
289 __le32 mcastrxframecnt;
290 __le32 fcserrorcnt;
291 __le32 bcasttxframecnt;
292 __le32 bcastrxframecnt;
293 __le32 txbeacon;
294 __le32 rxbeacon;
295 __le32 wepundecryptable;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200296};
297
298struct cmd_ds_802_11_snmp_mib {
David Woodhouse981f1872007-05-25 23:36:54 -0400299 __le16 querytype;
300 __le16 oid;
301 __le16 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200302 u8 value[128];
303};
304
305struct cmd_ds_mac_reg_map {
David Woodhouse981f1872007-05-25 23:36:54 -0400306 __le16 buffersize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200307 u8 regmap[128];
David Woodhouse981f1872007-05-25 23:36:54 -0400308 __le16 reserved;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200309};
310
311struct cmd_ds_bbp_reg_map {
David Woodhouse981f1872007-05-25 23:36:54 -0400312 __le16 buffersize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200313 u8 regmap[128];
David Woodhouse981f1872007-05-25 23:36:54 -0400314 __le16 reserved;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200315};
316
317struct cmd_ds_rf_reg_map {
David Woodhouse981f1872007-05-25 23:36:54 -0400318 __le16 buffersize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200319 u8 regmap[64];
David Woodhouse981f1872007-05-25 23:36:54 -0400320 __le16 reserved;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200321};
322
323struct cmd_ds_mac_reg_access {
David Woodhouse981f1872007-05-25 23:36:54 -0400324 __le16 action;
325 __le16 offset;
326 __le32 value;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200327};
328
329struct cmd_ds_bbp_reg_access {
David Woodhouse981f1872007-05-25 23:36:54 -0400330 __le16 action;
331 __le16 offset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200332 u8 value;
333 u8 reserved[3];
334};
335
336struct cmd_ds_rf_reg_access {
David Woodhouse981f1872007-05-25 23:36:54 -0400337 __le16 action;
338 __le16 offset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200339 u8 value;
340 u8 reserved[3];
341};
342
343struct cmd_ds_802_11_radio_control {
David Woodhouse981f1872007-05-25 23:36:54 -0400344 __le16 action;
345 __le16 control;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200346};
347
348struct cmd_ds_802_11_sleep_params {
349 /* ACT_GET/ACT_SET */
David Woodhouse981f1872007-05-25 23:36:54 -0400350 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200351
352 /* Sleep clock error in ppm */
David Woodhouse981f1872007-05-25 23:36:54 -0400353 __le16 error;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200354
355 /* Wakeup offset in usec */
David Woodhouse981f1872007-05-25 23:36:54 -0400356 __le16 offset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200357
358 /* Clock stabilization time in usec */
David Woodhouse981f1872007-05-25 23:36:54 -0400359 __le16 stabletime;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200360
361 /* control periodic calibration */
362 u8 calcontrol;
363
364 /* control the use of external sleep clock */
365 u8 externalsleepclk;
366
367 /* reserved field, should be set to zero */
David Woodhouse981f1872007-05-25 23:36:54 -0400368 __le16 reserved;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200369};
370
371struct cmd_ds_802_11_inactivity_timeout {
372 /* ACT_GET/ACT_SET */
David Woodhouse981f1872007-05-25 23:36:54 -0400373 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374
375 /* Inactivity timeout in msec */
David Woodhouse981f1872007-05-25 23:36:54 -0400376 __le16 timeout;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377};
378
379struct cmd_ds_802_11_rf_channel {
David Woodhouse981f1872007-05-25 23:36:54 -0400380 __le16 action;
381 __le16 currentchannel;
382 __le16 rftype;
383 __le16 reserved;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200384 u8 channellist[32];
385};
386
387struct cmd_ds_802_11_rssi {
388 /* weighting factor */
David Woodhouse981f1872007-05-25 23:36:54 -0400389 __le16 N;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200390
David Woodhouse981f1872007-05-25 23:36:54 -0400391 __le16 reserved_0;
392 __le16 reserved_1;
393 __le16 reserved_2;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200394};
395
396struct cmd_ds_802_11_rssi_rsp {
David Woodhouse981f1872007-05-25 23:36:54 -0400397 __le16 SNR;
398 __le16 noisefloor;
399 __le16 avgSNR;
400 __le16 avgnoisefloor;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401};
402
403struct cmd_ds_802_11_mac_address {
David Woodhouse981f1872007-05-25 23:36:54 -0400404 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405 u8 macadd[ETH_ALEN];
406};
407
408struct cmd_ds_802_11_rf_tx_power {
David Woodhouse981f1872007-05-25 23:36:54 -0400409 __le16 action;
410 __le16 currentlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200411};
412
413struct cmd_ds_802_11_rf_antenna {
David Woodhouse981f1872007-05-25 23:36:54 -0400414 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200415
416 /* Number of antennas or 0xffff(diversity) */
David Woodhouse981f1872007-05-25 23:36:54 -0400417 __le16 antennamode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200418
419};
420
421struct cmd_ds_802_11_ps_mode {
David Woodhouse981f1872007-05-25 23:36:54 -0400422 __le16 action;
423 __le16 nullpktinterval;
424 __le16 multipledtim;
425 __le16 reserved;
426 __le16 locallisteninterval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427};
428
429struct PS_CMD_ConfirmSleep {
David Woodhouse981f1872007-05-25 23:36:54 -0400430 __le16 command;
431 __le16 size;
432 __le16 seqnum;
433 __le16 result;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200434
David Woodhouse981f1872007-05-25 23:36:54 -0400435 __le16 action;
436 __le16 reserved1;
437 __le16 multipledtim;
438 __le16 reserved;
439 __le16 locallisteninterval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200440};
441
442struct cmd_ds_802_11_data_rate {
David Woodhouse981f1872007-05-25 23:36:54 -0400443 __le16 action;
444 __le16 reserverd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200445 u8 datarate[G_SUPPORTED_RATES];
446};
447
448struct cmd_ds_802_11_rate_adapt_rateset {
David Woodhouse981f1872007-05-25 23:36:54 -0400449 __le16 action;
450 __le16 enablehwauto;
451 __le16 bitmap;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200452};
453
454struct cmd_ds_802_11_ad_hoc_start {
455 u8 SSID[IW_ESSID_MAX_SIZE];
456 u8 bsstype;
David Woodhouse981f1872007-05-25 23:36:54 -0400457 __le16 beaconperiod;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200458 u8 dtimperiod;
459 union IEEEtypes_ssparamset ssparamset;
460 union ieeetypes_phyparamset phyparamset;
David Woodhouse981f1872007-05-25 23:36:54 -0400461 __le16 probedelay;
Dan Williams0c9ca6902007-08-02 10:43:44 -0400462 __le16 capability;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200463 u8 datarate[G_SUPPORTED_RATES];
464 u8 tlv_memory_size_pad[100];
465} __attribute__ ((packed));
466
467struct adhoc_bssdesc {
Dan Williams0c9ca6902007-08-02 10:43:44 -0400468 u8 bssid[6];
469 u8 ssid[32];
470 u8 type;
David Woodhouse981f1872007-05-25 23:36:54 -0400471 __le16 beaconperiod;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200472 u8 dtimperiod;
David Woodhouse981f1872007-05-25 23:36:54 -0400473 __le64 timestamp;
474 __le64 localtime;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200475 union ieeetypes_phyparamset phyparamset;
476 union IEEEtypes_ssparamset ssparamset;
Dan Williams0c9ca6902007-08-02 10:43:44 -0400477 __le16 capability;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200478 u8 datarates[G_SUPPORTED_RATES];
479
480 /* DO NOT ADD ANY FIELDS TO THIS STRUCTURE. It is used below in the
481 * Adhoc join command and will cause a binary layout mismatch with
482 * the firmware
483 */
484} __attribute__ ((packed));
485
486struct cmd_ds_802_11_ad_hoc_join {
Dan Williams0c9ca6902007-08-02 10:43:44 -0400487 struct adhoc_bssdesc bss;
David Woodhouse981f1872007-05-25 23:36:54 -0400488 __le16 failtimeout;
489 __le16 probedelay;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490
491} __attribute__ ((packed));
492
493struct cmd_ds_802_11_enable_rsn {
David Woodhouse981f1872007-05-25 23:36:54 -0400494 __le16 action;
495 __le16 enable;
Dan Williams18c96c342007-06-18 12:01:12 -0400496} __attribute__ ((packed));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200497
498struct MrvlIEtype_keyParamSet {
499 /* type ID */
David Woodhouse981f1872007-05-25 23:36:54 -0400500 __le16 type;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200501
502 /* length of Payload */
David Woodhouse981f1872007-05-25 23:36:54 -0400503 __le16 length;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200504
505 /* type of key: WEP=0, TKIP=1, AES=2 */
David Woodhouse981f1872007-05-25 23:36:54 -0400506 __le16 keytypeid;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507
508 /* key control Info specific to a keytypeid */
David Woodhouse981f1872007-05-25 23:36:54 -0400509 __le16 keyinfo;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510
511 /* length of key */
David Woodhouse981f1872007-05-25 23:36:54 -0400512 __le16 keylen;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200513
514 /* key material of size keylen */
515 u8 key[32];
516};
517
518struct cmd_ds_802_11_key_material {
David Woodhouse981f1872007-05-25 23:36:54 -0400519 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200520 struct MrvlIEtype_keyParamSet keyParamSet[2];
521} __attribute__ ((packed));
522
523struct cmd_ds_802_11_eeprom_access {
David Woodhouse981f1872007-05-25 23:36:54 -0400524 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525
526 /* multiple 4 */
David Woodhouse981f1872007-05-25 23:36:54 -0400527 __le16 offset;
528 __le16 bytecount;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200529 u8 value;
530} __attribute__ ((packed));
531
532struct cmd_ds_802_11_tpc_cfg {
David Woodhouse981f1872007-05-25 23:36:54 -0400533 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200534 u8 enable;
535 s8 P0;
536 s8 P1;
537 s8 P2;
538 u8 usesnr;
539} __attribute__ ((packed));
540
541struct cmd_ds_802_11_led_ctrl {
David Woodhouse981f1872007-05-25 23:36:54 -0400542 __le16 action;
543 __le16 numled;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544 u8 data[256];
545} __attribute__ ((packed));
546
547struct cmd_ds_802_11_pwr_cfg {
David Woodhouse981f1872007-05-25 23:36:54 -0400548 __le16 action;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200549 u8 enable;
550 s8 PA_P0;
551 s8 PA_P1;
552 s8 PA_P2;
553} __attribute__ ((packed));
554
555struct cmd_ds_802_11_afc {
David Woodhouse981f1872007-05-25 23:36:54 -0400556 __le16 afc_auto;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200557 union {
558 struct {
David Woodhouse981f1872007-05-25 23:36:54 -0400559 __le16 threshold;
560 __le16 period;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200561 };
562 struct {
David Woodhouse981f1872007-05-25 23:36:54 -0400563 __le16 timing_offset; /* signed */
564 __le16 carrier_offset; /* signed */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200565 };
566 };
567} __attribute__ ((packed));
568
569struct cmd_tx_rate_query {
David Woodhouse981f1872007-05-25 23:36:54 -0400570 __le16 txrate;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200571} __attribute__ ((packed));
572
573struct cmd_ds_get_tsf {
574 __le64 tsfvalue;
575} __attribute__ ((packed));
576
577struct cmd_ds_bt_access {
David Woodhouse981f1872007-05-25 23:36:54 -0400578 __le16 action;
579 __le32 id;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200580 u8 addr1[ETH_ALEN];
581 u8 addr2[ETH_ALEN];
582} __attribute__ ((packed));
583
584struct cmd_ds_fwt_access {
David Woodhouse981f1872007-05-25 23:36:54 -0400585 __le16 action;
586 __le32 id;
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400587 u8 valid;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200588 u8 da[ETH_ALEN];
589 u8 dir;
590 u8 ra[ETH_ALEN];
David Woodhouse981f1872007-05-25 23:36:54 -0400591 __le32 ssn;
592 __le32 dsn;
593 __le32 metric;
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400594 u8 rate;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200595 u8 hopcount;
596 u8 ttl;
David Woodhouse981f1872007-05-25 23:36:54 -0400597 __le32 expiration;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200598 u8 sleepmode;
David Woodhouse981f1872007-05-25 23:36:54 -0400599 __le32 snr;
600 __le32 references;
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400601 u8 prec[ETH_ALEN];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200602} __attribute__ ((packed));
603
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200604struct cmd_ds_mesh_access {
David Woodhouse981f1872007-05-25 23:36:54 -0400605 __le16 action;
606 __le32 data[32]; /* last position reserved */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607} __attribute__ ((packed));
608
Javier Cardona0601e7e2007-05-25 12:12:06 -0400609/* Number of stats counters returned by the firmware */
610#define MESH_STATS_NUM 8
611
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200612struct cmd_ds_command {
613 /* command header */
David Woodhouse981f1872007-05-25 23:36:54 -0400614 __le16 command;
615 __le16 size;
616 __le16 seqnum;
617 __le16 result;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200618
619 /* command Body */
620 union {
621 struct cmd_ds_get_hw_spec hwspec;
622 struct cmd_ds_802_11_ps_mode psmode;
623 struct cmd_ds_802_11_scan scan;
624 struct cmd_ds_802_11_scan_rsp scanresp;
625 struct cmd_ds_mac_control macctrl;
626 struct cmd_ds_802_11_associate associate;
627 struct cmd_ds_802_11_deauthenticate deauth;
628 struct cmd_ds_802_11_set_wep wep;
629 struct cmd_ds_802_11_ad_hoc_start ads;
630 struct cmd_ds_802_11_reset reset;
631 struct cmd_ds_802_11_ad_hoc_result result;
632 struct cmd_ds_802_11_get_log glog;
633 struct cmd_ds_802_11_authenticate auth;
634 struct cmd_ds_802_11_get_stat gstat;
635 struct cmd_ds_802_3_get_stat gstat_8023;
636 struct cmd_ds_802_11_snmp_mib smib;
637 struct cmd_ds_802_11_rf_tx_power txp;
638 struct cmd_ds_802_11_rf_antenna rant;
639 struct cmd_ds_802_11_data_rate drate;
640 struct cmd_ds_802_11_rate_adapt_rateset rateset;
641 struct cmd_ds_mac_multicast_adr madr;
642 struct cmd_ds_802_11_ad_hoc_join adj;
643 struct cmd_ds_802_11_radio_control radio;
644 struct cmd_ds_802_11_rf_channel rfchannel;
645 struct cmd_ds_802_11_rssi rssi;
646 struct cmd_ds_802_11_rssi_rsp rssirsp;
647 struct cmd_ds_802_11_disassociate dassociate;
648 struct cmd_ds_802_11_mac_address macadd;
649 struct cmd_ds_802_11_enable_rsn enbrsn;
650 struct cmd_ds_802_11_key_material keymaterial;
651 struct cmd_ds_mac_reg_access macreg;
652 struct cmd_ds_bbp_reg_access bbpreg;
653 struct cmd_ds_rf_reg_access rfreg;
654 struct cmd_ds_802_11_eeprom_access rdeeprom;
655
656 struct cmd_ds_802_11d_domain_info domaininfo;
657 struct cmd_ds_802_11d_domain_info domaininforesp;
658
659 struct cmd_ds_802_11_sleep_params sleep_params;
660 struct cmd_ds_802_11_inactivity_timeout inactivity_timeout;
661 struct cmd_ds_802_11_tpc_cfg tpccfg;
662 struct cmd_ds_802_11_pwr_cfg pwrcfg;
663 struct cmd_ds_802_11_afc afc;
664 struct cmd_ds_802_11_led_ctrl ledgpio;
665
666 struct cmd_tx_rate_query txrate;
667 struct cmd_ds_bt_access bt;
668 struct cmd_ds_fwt_access fwt;
669 struct cmd_ds_mesh_access mesh;
670 struct cmd_ds_get_tsf gettsf;
671 struct cmd_ds_802_11_subscribe_event subscribe_event;
672 } params;
673} __attribute__ ((packed));
674
675#endif