blob: 45cd7f1e5937e0badb3f2dd09b3d7ad7675304e3 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
Holger Schurig9e66e702009-10-16 17:32:16 +02002 * This file function prototypes, data structure
3 * and definitions for all the host/station commands
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02004 */
5
Holger Schurig10078322007-11-15 18:05:47 -05006#ifndef _LBS_HOST_H_
7#define _LBS_HOST_H_
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02008
Holger Schurig9e66e702009-10-16 17:32:16 +02009#include "11d.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010
Holger Schurig9e66e702009-10-16 17:32:16 +020011#define DEFAULT_AD_HOC_CHANNEL 6
12
13#define CMD_OPTION_WAITFORRSP 0x0002
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014
Holger Schurig6b63cd02007-08-02 11:53:36 -040015/** Host command IDs */
16
17/* Return command are almost always the same as the host command, but with
18 * bit 15 set high. There are a few exceptions, though...
19 */
Holger Schurig9e66e702009-10-16 17:32:16 +020020#define CMD_RET(cmd) (0x8000 | cmd)
Holger Schurig6b63cd02007-08-02 11:53:36 -040021
22/* Return command convention exceptions: */
Holger Schurig9e66e702009-10-16 17:32:16 +020023#define CMD_RET_802_11_ASSOCIATE 0x8012
Holger Schurig6b63cd02007-08-02 11:53:36 -040024
25/* Command codes */
Holger Schurig9e66e702009-10-16 17:32:16 +020026#define CMD_GET_HW_SPEC 0x0003
27#define CMD_EEPROM_UPDATE 0x0004
28#define CMD_802_11_RESET 0x0005
29#define CMD_802_11_SCAN 0x0006
30#define CMD_802_11_GET_LOG 0x000b
31#define CMD_MAC_MULTICAST_ADR 0x0010
32#define CMD_802_11_AUTHENTICATE 0x0011
33#define CMD_802_11_EEPROM_ACCESS 0x0059
34#define CMD_802_11_ASSOCIATE 0x0050
35#define CMD_802_11_SET_WEP 0x0013
36#define CMD_802_11_GET_STAT 0x0014
37#define CMD_802_3_GET_STAT 0x0015
38#define CMD_802_11_SNMP_MIB 0x0016
39#define CMD_MAC_REG_MAP 0x0017
40#define CMD_BBP_REG_MAP 0x0018
41#define CMD_MAC_REG_ACCESS 0x0019
42#define CMD_BBP_REG_ACCESS 0x001a
43#define CMD_RF_REG_ACCESS 0x001b
44#define CMD_802_11_RADIO_CONTROL 0x001c
45#define CMD_802_11_RF_CHANNEL 0x001d
46#define CMD_802_11_RF_TX_POWER 0x001e
47#define CMD_802_11_RSSI 0x001f
48#define CMD_802_11_RF_ANTENNA 0x0020
49#define CMD_802_11_PS_MODE 0x0021
50#define CMD_802_11_DATA_RATE 0x0022
51#define CMD_RF_REG_MAP 0x0023
52#define CMD_802_11_DEAUTHENTICATE 0x0024
53#define CMD_802_11_REASSOCIATE 0x0025
54#define CMD_MAC_CONTROL 0x0028
55#define CMD_802_11_AD_HOC_START 0x002b
56#define CMD_802_11_AD_HOC_JOIN 0x002c
57#define CMD_802_11_QUERY_TKIP_REPLY_CNTRS 0x002e
58#define CMD_802_11_ENABLE_RSN 0x002f
59#define CMD_802_11_SET_AFC 0x003c
60#define CMD_802_11_GET_AFC 0x003d
61#define CMD_802_11_DEEP_SLEEP 0x003e
62#define CMD_802_11_AD_HOC_STOP 0x0040
63#define CMD_802_11_HOST_SLEEP_CFG 0x0043
64#define CMD_802_11_WAKEUP_CONFIRM 0x0044
65#define CMD_802_11_HOST_SLEEP_ACTIVATE 0x0045
66#define CMD_802_11_BEACON_STOP 0x0049
67#define CMD_802_11_MAC_ADDRESS 0x004d
68#define CMD_802_11_LED_GPIO_CTRL 0x004e
69#define CMD_802_11_EEPROM_ACCESS 0x0059
70#define CMD_802_11_BAND_CONFIG 0x0058
71#define CMD_GSPI_BUS_CONFIG 0x005a
72#define CMD_802_11D_DOMAIN_INFO 0x005b
73#define CMD_802_11_KEY_MATERIAL 0x005e
74#define CMD_802_11_SLEEP_PARAMS 0x0066
75#define CMD_802_11_INACTIVITY_TIMEOUT 0x0067
76#define CMD_802_11_SLEEP_PERIOD 0x0068
77#define CMD_802_11_TPC_CFG 0x0072
78#define CMD_802_11_PA_CFG 0x0073
79#define CMD_802_11_FW_WAKE_METHOD 0x0074
80#define CMD_802_11_SUBSCRIBE_EVENT 0x0075
81#define CMD_802_11_RATE_ADAPT_RATESET 0x0076
82#define CMD_802_11_TX_RATE_QUERY 0x007f
83#define CMD_GET_TSF 0x0080
84#define CMD_BT_ACCESS 0x0087
85#define CMD_FWT_ACCESS 0x0095
86#define CMD_802_11_MONITOR_MODE 0x0098
87#define CMD_MESH_ACCESS 0x009b
88#define CMD_MESH_CONFIG_OLD 0x00a3
89#define CMD_MESH_CONFIG 0x00ac
90#define CMD_SET_BOOT2_VER 0x00a5
91#define CMD_FUNC_INIT 0x00a9
92#define CMD_FUNC_SHUTDOWN 0x00aa
93#define CMD_802_11_BEACON_CTRL 0x00b0
Brajesh Dave96287ac2007-11-20 17:44:28 -050094
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020095/* For the IEEE Power Save */
Holger Schurig9e66e702009-10-16 17:32:16 +020096#define CMD_SUBCMD_ENTER_PS 0x0030
97#define CMD_SUBCMD_EXIT_PS 0x0031
98#define CMD_SUBCMD_SLEEP_CONFIRMED 0x0034
99#define CMD_SUBCMD_FULL_POWERDOWN 0x0035
100#define CMD_SUBCMD_FULL_POWERUP 0x0036
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200101
Holger Schurig9e66e702009-10-16 17:32:16 +0200102#define CMD_ENABLE_RSN 0x0001
103#define CMD_DISABLE_RSN 0x0000
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200104
Holger Schurig9e66e702009-10-16 17:32:16 +0200105#define CMD_ACT_GET 0x0000
106#define CMD_ACT_SET 0x0001
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200107
Dan Williams0aef64d2007-08-02 11:31:18 -0400108/* Define action or option for CMD_802_11_SET_WEP */
Holger Schurig9e66e702009-10-16 17:32:16 +0200109#define CMD_ACT_ADD 0x0002
110#define CMD_ACT_REMOVE 0x0004
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200111
Holger Schurig9e66e702009-10-16 17:32:16 +0200112#define CMD_TYPE_WEP_40_BIT 0x01
113#define CMD_TYPE_WEP_104_BIT 0x02
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200114
Holger Schurig9e66e702009-10-16 17:32:16 +0200115#define CMD_NUM_OF_WEP_KEYS 4
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200116
Holger Schurig9e66e702009-10-16 17:32:16 +0200117#define CMD_WEP_KEY_INDEX_MASK 0x3fff
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200118
Dan Williams0aef64d2007-08-02 11:31:18 -0400119/* Define action or option for CMD_802_11_SCAN */
Holger Schurig9e66e702009-10-16 17:32:16 +0200120#define CMD_BSS_TYPE_BSS 0x0001
121#define CMD_BSS_TYPE_IBSS 0x0002
122#define CMD_BSS_TYPE_ANY 0x0003
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200123
Dan Williams0aef64d2007-08-02 11:31:18 -0400124/* Define action or option for CMD_802_11_SCAN */
Holger Schurig9e66e702009-10-16 17:32:16 +0200125#define CMD_SCAN_TYPE_ACTIVE 0x0000
126#define CMD_SCAN_TYPE_PASSIVE 0x0001
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200127
Holger Schurig9e66e702009-10-16 17:32:16 +0200128#define CMD_SCAN_RADIO_TYPE_BG 0
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200129
Holger Schurig9e66e702009-10-16 17:32:16 +0200130#define CMD_SCAN_PROBE_DELAY_TIME 0
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200131
Dan Williams0aef64d2007-08-02 11:31:18 -0400132/* Define action or option for CMD_MAC_CONTROL */
Holger Schurig9e66e702009-10-16 17:32:16 +0200133#define CMD_ACT_MAC_RX_ON 0x0001
134#define CMD_ACT_MAC_TX_ON 0x0002
135#define CMD_ACT_MAC_LOOPBACK_ON 0x0004
136#define CMD_ACT_MAC_WEP_ENABLE 0x0008
137#define CMD_ACT_MAC_INT_ENABLE 0x0010
138#define CMD_ACT_MAC_MULTICAST_ENABLE 0x0020
139#define CMD_ACT_MAC_BROADCAST_ENABLE 0x0040
140#define CMD_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
141#define CMD_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
142#define CMD_ACT_MAC_STRICT_PROTECTION_ENABLE 0x0400
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200143
Holger Schurig3a188642007-11-26 10:07:14 +0100144/* Event flags for CMD_802_11_SUBSCRIBE_EVENT */
Holger Schurig9e66e702009-10-16 17:32:16 +0200145#define CMD_SUBSCRIBE_RSSI_LOW 0x0001
146#define CMD_SUBSCRIBE_SNR_LOW 0x0002
147#define CMD_SUBSCRIBE_FAILCOUNT 0x0004
148#define CMD_SUBSCRIBE_BCNMISS 0x0008
149#define CMD_SUBSCRIBE_RSSI_HIGH 0x0010
150#define CMD_SUBSCRIBE_SNR_HIGH 0x0020
Holger Schurig3a188642007-11-26 10:07:14 +0100151
Holger Schurig9e66e702009-10-16 17:32:16 +0200152#define RADIO_PREAMBLE_LONG 0x00
153#define RADIO_PREAMBLE_SHORT 0x02
154#define RADIO_PREAMBLE_AUTO 0x04
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155
156/* Define action or option for CMD_802_11_RF_CHANNEL */
Holger Schurig9e66e702009-10-16 17:32:16 +0200157#define CMD_OPT_802_11_RF_CHANNEL_GET 0x00
158#define CMD_OPT_802_11_RF_CHANNEL_SET 0x01
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159
Dan Williams0aef64d2007-08-02 11:31:18 -0400160/* Define action or option for CMD_802_11_DATA_RATE */
Holger Schurig9e66e702009-10-16 17:32:16 +0200161#define CMD_ACT_SET_TX_AUTO 0x0000
162#define CMD_ACT_SET_TX_FIX_RATE 0x0001
163#define CMD_ACT_GET_TX_RATE 0x0002
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164
Dan Williams0aef64d2007-08-02 11:31:18 -0400165/* Define action or option for CMD_802_11_PS_MODE */
Holger Schurig9e66e702009-10-16 17:32:16 +0200166#define CMD_TYPE_CAM 0x0000
167#define CMD_TYPE_MAX_PSP 0x0001
168#define CMD_TYPE_FAST_PSP 0x0002
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200169
David Woodhouseb2c57ee2007-12-17 14:41:13 -0500170/* Options for CMD_802_11_FW_WAKE_METHOD */
Holger Schurig9e66e702009-10-16 17:32:16 +0200171#define CMD_WAKE_METHOD_UNCHANGED 0x0000
172#define CMD_WAKE_METHOD_COMMAND_INT 0x0001
173#define CMD_WAKE_METHOD_GPIO 0x0002
David Woodhouseb2c57ee2007-12-17 14:41:13 -0500174
Dan Williams39fcf7a2008-09-10 12:49:00 -0400175/* Object IDs for CMD_802_11_SNMP_MIB */
Holger Schurig9e66e702009-10-16 17:32:16 +0200176#define SNMP_MIB_OID_BSS_TYPE 0x0000
177#define SNMP_MIB_OID_OP_RATE_SET 0x0001
178#define SNMP_MIB_OID_BEACON_PERIOD 0x0002 /* Reserved on v9+ */
179#define SNMP_MIB_OID_DTIM_PERIOD 0x0003 /* Reserved on v9+ */
180#define SNMP_MIB_OID_ASSOC_TIMEOUT 0x0004 /* Reserved on v9+ */
181#define SNMP_MIB_OID_RTS_THRESHOLD 0x0005
182#define SNMP_MIB_OID_SHORT_RETRY_LIMIT 0x0006
183#define SNMP_MIB_OID_LONG_RETRY_LIMIT 0x0007
184#define SNMP_MIB_OID_FRAG_THRESHOLD 0x0008
185#define SNMP_MIB_OID_11D_ENABLE 0x0009
186#define SNMP_MIB_OID_11H_ENABLE 0x000A
Dan Williams39fcf7a2008-09-10 12:49:00 -0400187
Dan Williams0aef64d2007-08-02 11:31:18 -0400188/* Define action or option for CMD_BT_ACCESS */
Dan Williamsffcae952007-08-02 11:35:46 -0400189enum cmd_bt_access_opts {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200190 /* The bt commands start at 5 instead of 1 because the old dft commands
191 * are mapped to 1-4. These old commands are no longer maintained and
192 * should not be called.
193 */
Dan Williams0aef64d2007-08-02 11:31:18 -0400194 CMD_ACT_BT_ACCESS_ADD = 5,
195 CMD_ACT_BT_ACCESS_DEL,
196 CMD_ACT_BT_ACCESS_LIST,
197 CMD_ACT_BT_ACCESS_RESET,
198 CMD_ACT_BT_ACCESS_SET_INVERT,
199 CMD_ACT_BT_ACCESS_GET_INVERT
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200200};
201
Dan Williams0aef64d2007-08-02 11:31:18 -0400202/* Define action or option for CMD_FWT_ACCESS */
Dan Williamsffcae952007-08-02 11:35:46 -0400203enum cmd_fwt_access_opts {
Dan Williams0aef64d2007-08-02 11:31:18 -0400204 CMD_ACT_FWT_ACCESS_ADD = 1,
205 CMD_ACT_FWT_ACCESS_DEL,
206 CMD_ACT_FWT_ACCESS_LOOKUP,
207 CMD_ACT_FWT_ACCESS_LIST,
Dan Williams79a9a372007-12-11 15:29:10 -0500208 CMD_ACT_FWT_ACCESS_LIST_ROUTE,
209 CMD_ACT_FWT_ACCESS_LIST_NEIGHBOR,
Dan Williams0aef64d2007-08-02 11:31:18 -0400210 CMD_ACT_FWT_ACCESS_RESET,
211 CMD_ACT_FWT_ACCESS_CLEANUP,
212 CMD_ACT_FWT_ACCESS_TIME,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213};
214
Anna Neal582c1b52008-10-20 16:46:56 -0700215/* Define action or option for CMD_802_11_HOST_SLEEP_CFG */
216enum cmd_wol_cfg_opts {
217 CMD_ACT_ACTION_NONE = 0,
218 CMD_ACT_SET_WOL_RULE,
219 CMD_ACT_GET_WOL_RULE,
220 CMD_ACT_RESET_WOL_RULE,
221};
222
Dan Williams0aef64d2007-08-02 11:31:18 -0400223/* Define action or option for CMD_MESH_ACCESS */
Dan Williamsffcae952007-08-02 11:35:46 -0400224enum cmd_mesh_access_opts {
Dan Williams0aef64d2007-08-02 11:31:18 -0400225 CMD_ACT_MESH_GET_TTL = 1,
226 CMD_ACT_MESH_SET_TTL,
227 CMD_ACT_MESH_GET_STATS,
228 CMD_ACT_MESH_GET_ANYCAST,
229 CMD_ACT_MESH_SET_ANYCAST,
Dan Williams276c0152007-08-02 11:34:24 -0400230 CMD_ACT_MESH_SET_LINK_COSTS,
231 CMD_ACT_MESH_GET_LINK_COSTS,
232 CMD_ACT_MESH_SET_BCAST_RATE,
233 CMD_ACT_MESH_GET_BCAST_RATE,
234 CMD_ACT_MESH_SET_RREQ_DELAY,
235 CMD_ACT_MESH_GET_RREQ_DELAY,
236 CMD_ACT_MESH_SET_ROUTE_EXP,
237 CMD_ACT_MESH_GET_ROUTE_EXP,
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400238 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
239 CMD_ACT_MESH_GET_AUTOSTART_ENABLED,
Anna Neal6fb53252008-12-09 13:23:45 -0800240 CMD_ACT_MESH_SET_GET_PRB_RSP_LIMIT = 17,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200241};
242
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700243/* Define actions and types for CMD_MESH_CONFIG */
244enum cmd_mesh_config_actions {
245 CMD_ACT_MESH_CONFIG_STOP = 0,
246 CMD_ACT_MESH_CONFIG_START,
247 CMD_ACT_MESH_CONFIG_SET,
248 CMD_ACT_MESH_CONFIG_GET,
249};
250
251enum cmd_mesh_config_types {
252 CMD_TYPE_MESH_SET_BOOTFLAG = 1,
253 CMD_TYPE_MESH_SET_BOOTTIME,
254 CMD_TYPE_MESH_SET_DEF_CHANNEL,
255 CMD_TYPE_MESH_SET_MESH_IE,
256 CMD_TYPE_MESH_GET_DEFAULTS,
257 CMD_TYPE_MESH_GET_MESH_IE, /* GET_DEFAULTS is superset of GET_MESHIE */
258};
259
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200260/** Card Event definition */
David Woodhouse387a1f02007-12-11 18:53:20 -0500261#define MACREG_INT_CODE_TX_PPA_FREE 0
262#define MACREG_INT_CODE_TX_DMA_DONE 1
263#define MACREG_INT_CODE_LINK_LOST_W_SCAN 2
264#define MACREG_INT_CODE_LINK_LOST_NO_SCAN 3
265#define MACREG_INT_CODE_LINK_SENSED 4
266#define MACREG_INT_CODE_CMD_FINISHED 5
267#define MACREG_INT_CODE_MIB_CHANGED 6
268#define MACREG_INT_CODE_INIT_DONE 7
269#define MACREG_INT_CODE_DEAUTHENTICATED 8
270#define MACREG_INT_CODE_DISASSOCIATED 9
271#define MACREG_INT_CODE_PS_AWAKE 10
272#define MACREG_INT_CODE_PS_SLEEP 11
273#define MACREG_INT_CODE_MIC_ERR_MULTICAST 13
274#define MACREG_INT_CODE_MIC_ERR_UNICAST 14
275#define MACREG_INT_CODE_WM_AWAKE 15
276#define MACREG_INT_CODE_DEEP_SLEEP_AWAKE 16
277#define MACREG_INT_CODE_ADHOC_BCN_LOST 17
278#define MACREG_INT_CODE_HOST_AWAKE 18
279#define MACREG_INT_CODE_STOP_TX 19
280#define MACREG_INT_CODE_START_TX 20
281#define MACREG_INT_CODE_CHANNEL_SWITCH 21
282#define MACREG_INT_CODE_MEASUREMENT_RDY 22
283#define MACREG_INT_CODE_WMM_CHANGE 23
284#define MACREG_INT_CODE_BG_SCAN_REPORT 24
285#define MACREG_INT_CODE_RSSI_LOW 25
286#define MACREG_INT_CODE_SNR_LOW 26
287#define MACREG_INT_CODE_MAX_FAIL 27
288#define MACREG_INT_CODE_RSSI_HIGH 28
289#define MACREG_INT_CODE_SNR_HIGH 29
290#define MACREG_INT_CODE_MESH_AUTO_STARTED 35
291#define MACREG_INT_CODE_FIRMWARE_READY 48
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200292
Holger Schurig9e66e702009-10-16 17:32:16 +0200293
294/* 802.11-related definitions */
295
296/* TxPD descriptor */
297struct txpd {
298 /* union to cope up with later FW revisions */
299 union {
300 /* Current Tx packet status */
301 __le32 tx_status;
302 struct {
303 /* BSS type: client, AP, etc. */
304 u8 bss_type;
305 /* BSS number */
306 u8 bss_num;
307 /* Reserved */
308 __le16 reserved;
309 } bss;
310 } u;
311 /* Tx control */
312 __le32 tx_control;
313 __le32 tx_packet_location;
314 /* Tx packet length */
315 __le16 tx_packet_length;
316 /* First 2 byte of destination MAC address */
317 u8 tx_dest_addr_high[2];
318 /* Last 4 byte of destination MAC address */
319 u8 tx_dest_addr_low[4];
320 /* Pkt Priority */
321 u8 priority;
322 /* Pkt Trasnit Power control */
323 u8 powermgmt;
324 /* Amount of time the packet has been queued (units = 2ms) */
325 u8 pktdelay_2ms;
326 /* reserved */
327 u8 reserved1;
328} __attribute__ ((packed));
329
330/* RxPD Descriptor */
331struct rxpd {
332 /* union to cope up with later FW revisions */
333 union {
334 /* Current Rx packet status */
335 __le16 status;
336 struct {
337 /* BSS type: client, AP, etc. */
338 u8 bss_type;
339 /* BSS number */
340 u8 bss_num;
341 } __attribute__ ((packed)) bss;
342 } __attribute__ ((packed)) u;
343
344 /* SNR */
345 u8 snr;
346
347 /* Tx control */
348 u8 rx_control;
349
350 /* Pkt length */
351 __le16 pkt_len;
352
353 /* Noise Floor */
354 u8 nf;
355
356 /* Rx Packet Rate */
357 u8 rx_rate;
358
359 /* Pkt addr */
360 __le32 pkt_ptr;
361
362 /* Next Rx RxPD addr */
363 __le32 next_rxpd_ptr;
364
365 /* Pkt Priority */
366 u8 priority;
367 u8 reserved[3];
368} __attribute__ ((packed));
369
370struct cmd_header {
371 __le16 command;
372 __le16 size;
373 __le16 seqnum;
374 __le16 result;
375} __attribute__ ((packed));
376
377struct cmd_ctrl_node {
378 struct list_head list;
379 int result;
380 /* command response */
381 int (*callback)(struct lbs_private *,
382 unsigned long,
383 struct cmd_header *);
384 unsigned long callback_arg;
385 /* command data */
386 struct cmd_header *cmdbuf;
387 /* wait queue */
388 u16 cmdwaitqwoken;
389 wait_queue_head_t cmdwait_q;
390};
391
392/* Generic structure to hold all key types. */
393struct enc_key {
394 u16 len;
395 u16 flags; /* KEY_INFO_* from defs.h */
396 u16 type; /* KEY_TYPE_* from defs.h */
397 u8 key[32];
398};
399
400/* lbs_offset_value */
401struct lbs_offset_value {
402 u32 offset;
403 u32 value;
404} __attribute__ ((packed));
405
406/* Define general data structure */
407/* cmd_DS_GEN */
408struct cmd_ds_gen {
409 __le16 command;
410 __le16 size;
411 __le16 seqnum;
412 __le16 result;
413 void *cmdresp[0];
414} __attribute__ ((packed));
415
416#define S_DS_GEN sizeof(struct cmd_ds_gen)
417
418
419/*
420 * Define data structure for CMD_GET_HW_SPEC
421 * This structure defines the response for the GET_HW_SPEC command
422 */
423struct cmd_ds_get_hw_spec {
424 struct cmd_header hdr;
425
426 /* HW Interface version number */
427 __le16 hwifversion;
428 /* HW version number */
429 __le16 version;
430 /* Max number of TxPD FW can handle */
431 __le16 nr_txpd;
432 /* Max no of Multicast address */
433 __le16 nr_mcast_adr;
434 /* MAC address */
435 u8 permanentaddr[6];
436
437 /* region Code */
438 __le16 regioncode;
439
440 /* Number of antenna used */
441 __le16 nr_antenna;
442
443 /* FW release number, example 0x01030304 = 2.3.4p1 */
444 __le32 fwrelease;
445
446 /* Base Address of TxPD queue */
447 __le32 wcb_base;
448 /* Read Pointer of RxPd queue */
449 __le32 rxpd_rdptr;
450
451 /* Write Pointer of RxPd queue */
452 __le32 rxpd_wrptr;
453
454 /*FW/HW capability */
455 __le32 fwcapinfo;
456} __attribute__ ((packed));
457
458struct cmd_ds_802_11_subscribe_event {
459 struct cmd_header hdr;
460
461 __le16 action;
462 __le16 events;
463
464 /* A TLV to the CMD_802_11_SUBSCRIBE_EVENT command can contain a
465 * number of TLVs. From the v5.1 manual, those TLVs would add up to
466 * 40 bytes. However, future firmware might add additional TLVs, so I
467 * bump this up a bit.
468 */
469 uint8_t tlv[128];
470} __attribute__ ((packed));
471
472/*
473 * This scan handle Country Information IE(802.11d compliant)
474 * Define data structure for CMD_802_11_SCAN
475 */
476struct cmd_ds_802_11_scan {
477 struct cmd_header hdr;
478
479 uint8_t bsstype;
480 uint8_t bssid[ETH_ALEN];
481 uint8_t tlvbuffer[0];
482} __attribute__ ((packed));
483
484struct cmd_ds_802_11_scan_rsp {
485 struct cmd_header hdr;
486
487 __le16 bssdescriptsize;
488 uint8_t nr_sets;
489 uint8_t bssdesc_and_tlvbuffer[0];
490} __attribute__ ((packed));
491
492struct cmd_ds_802_11_get_log {
493 struct cmd_header hdr;
494
495 __le32 mcasttxframe;
496 __le32 failed;
497 __le32 retry;
498 __le32 multiretry;
499 __le32 framedup;
500 __le32 rtssuccess;
501 __le32 rtsfailure;
502 __le32 ackfailure;
503 __le32 rxfrag;
504 __le32 mcastrxframe;
505 __le32 fcserror;
506 __le32 txframe;
507 __le32 wepundecryptable;
508} __attribute__ ((packed));
509
510struct cmd_ds_mac_control {
511 struct cmd_header hdr;
512 __le16 action;
513 u16 reserved;
514} __attribute__ ((packed));
515
516struct cmd_ds_mac_multicast_adr {
517 struct cmd_header hdr;
518 __le16 action;
519 __le16 nr_of_adrs;
520 u8 maclist[ETH_ALEN * MRVDRV_MAX_MULTICAST_LIST_SIZE];
521} __attribute__ ((packed));
522
523struct cmd_ds_802_11_authenticate {
524 struct cmd_header hdr;
525
526 u8 bssid[ETH_ALEN];
527 u8 authtype;
528 u8 reserved[10];
529} __attribute__ ((packed));
530
531struct cmd_ds_802_11_deauthenticate {
532 struct cmd_header hdr;
533
534 u8 macaddr[ETH_ALEN];
535 __le16 reasoncode;
536} __attribute__ ((packed));
537
538struct cmd_ds_802_11_associate {
539 struct cmd_header hdr;
540
541 u8 bssid[6];
542 __le16 capability;
543 __le16 listeninterval;
544 __le16 bcnperiod;
545 u8 dtimperiod;
546 u8 iebuf[512]; /* Enough for required and most optional IEs */
547} __attribute__ ((packed));
548
549struct cmd_ds_802_11_associate_response {
550 struct cmd_header hdr;
551
552 __le16 capability;
553 __le16 statuscode;
554 __le16 aid;
555 u8 iebuf[512];
556} __attribute__ ((packed));
557
558struct cmd_ds_802_11_set_wep {
559 struct cmd_header hdr;
560
561 /* ACT_ADD, ACT_REMOVE or ACT_ENABLE */
562 __le16 action;
563
564 /* key Index selected for Tx */
565 __le16 keyindex;
566
567 /* 40, 128bit or TXWEP */
568 uint8_t keytype[4];
569 uint8_t keymaterial[4][16];
570} __attribute__ ((packed));
571
572struct cmd_ds_802_11_snmp_mib {
573 struct cmd_header hdr;
574
575 __le16 action;
576 __le16 oid;
577 __le16 bufsize;
578 u8 value[128];
579} __attribute__ ((packed));
580
581struct cmd_ds_mac_reg_access {
582 __le16 action;
583 __le16 offset;
584 __le32 value;
585} __attribute__ ((packed));
586
587struct cmd_ds_bbp_reg_access {
588 __le16 action;
589 __le16 offset;
590 u8 value;
591 u8 reserved[3];
592} __attribute__ ((packed));
593
594struct cmd_ds_rf_reg_access {
595 __le16 action;
596 __le16 offset;
597 u8 value;
598 u8 reserved[3];
599} __attribute__ ((packed));
600
601struct cmd_ds_802_11_radio_control {
602 struct cmd_header hdr;
603
604 __le16 action;
605 __le16 control;
606} __attribute__ ((packed));
607
608struct cmd_ds_802_11_beacon_control {
609 __le16 action;
610 __le16 beacon_enable;
611 __le16 beacon_period;
612} __attribute__ ((packed));
613
614struct cmd_ds_802_11_sleep_params {
615 struct cmd_header hdr;
616
617 /* ACT_GET/ACT_SET */
618 __le16 action;
619
620 /* Sleep clock error in ppm */
621 __le16 error;
622
623 /* Wakeup offset in usec */
624 __le16 offset;
625
626 /* Clock stabilization time in usec */
627 __le16 stabletime;
628
629 /* control periodic calibration */
630 uint8_t calcontrol;
631
632 /* control the use of external sleep clock */
633 uint8_t externalsleepclk;
634
635 /* reserved field, should be set to zero */
636 __le16 reserved;
637} __attribute__ ((packed));
638
639struct cmd_ds_802_11_inactivity_timeout {
640 struct cmd_header hdr;
641
642 /* ACT_GET/ACT_SET */
643 __le16 action;
644
645 /* Inactivity timeout in msec */
646 __le16 timeout;
647} __attribute__ ((packed));
648
649struct cmd_ds_802_11_rf_channel {
650 struct cmd_header hdr;
651
652 __le16 action;
653 __le16 channel;
654 __le16 rftype; /* unused */
655 __le16 reserved; /* unused */
656 u8 channellist[32]; /* unused */
657} __attribute__ ((packed));
658
659struct cmd_ds_802_11_rssi {
660 /* weighting factor */
661 __le16 N;
662
663 __le16 reserved_0;
664 __le16 reserved_1;
665 __le16 reserved_2;
666} __attribute__ ((packed));
667
668struct cmd_ds_802_11_rssi_rsp {
669 __le16 SNR;
670 __le16 noisefloor;
671 __le16 avgSNR;
672 __le16 avgnoisefloor;
673} __attribute__ ((packed));
674
675struct cmd_ds_802_11_mac_address {
676 struct cmd_header hdr;
677
678 __le16 action;
679 u8 macadd[ETH_ALEN];
680} __attribute__ ((packed));
681
682struct cmd_ds_802_11_rf_tx_power {
683 struct cmd_header hdr;
684
685 __le16 action;
686 __le16 curlevel;
687 s8 maxlevel;
688 s8 minlevel;
689} __attribute__ ((packed));
690
691struct cmd_ds_802_11_monitor_mode {
692 __le16 action;
693 __le16 mode;
694} __attribute__ ((packed));
695
696struct cmd_ds_set_boot2_ver {
697 struct cmd_header hdr;
698
699 __le16 action;
700 __le16 version;
701} __attribute__ ((packed));
702
703struct cmd_ds_802_11_fw_wake_method {
704 struct cmd_header hdr;
705
706 __le16 action;
707 __le16 method;
708} __attribute__ ((packed));
709
710struct cmd_ds_802_11_ps_mode {
711 __le16 action;
712 __le16 nullpktinterval;
713 __le16 multipledtim;
714 __le16 reserved;
715 __le16 locallisteninterval;
716} __attribute__ ((packed));
717
718struct cmd_confirm_sleep {
719 struct cmd_header hdr;
720
721 __le16 action;
722 __le16 nullpktinterval;
723 __le16 multipledtim;
724 __le16 reserved;
725 __le16 locallisteninterval;
726} __attribute__ ((packed));
727
728struct cmd_ds_802_11_data_rate {
729 struct cmd_header hdr;
730
731 __le16 action;
732 __le16 reserved;
733 u8 rates[MAX_RATES];
734} __attribute__ ((packed));
735
736struct cmd_ds_802_11_rate_adapt_rateset {
737 struct cmd_header hdr;
738 __le16 action;
739 __le16 enablehwauto;
740 __le16 bitmap;
741} __attribute__ ((packed));
742
743struct cmd_ds_802_11_ad_hoc_start {
744 struct cmd_header hdr;
745
746 u8 ssid[IW_ESSID_MAX_SIZE];
747 u8 bsstype;
748 __le16 beaconperiod;
749 u8 dtimperiod; /* Reserved on v9 and later */
750 struct ieee_ie_ibss_param_set ibss;
751 u8 reserved1[4];
752 struct ieee_ie_ds_param_set ds;
753 u8 reserved2[4];
754 __le16 probedelay; /* Reserved on v9 and later */
755 __le16 capability;
756 u8 rates[MAX_RATES];
757 u8 tlv_memory_size_pad[100];
758} __attribute__ ((packed));
759
760struct cmd_ds_802_11_ad_hoc_result {
761 struct cmd_header hdr;
762
763 u8 pad[3];
764 u8 bssid[ETH_ALEN];
765} __attribute__ ((packed));
766
767struct adhoc_bssdesc {
768 u8 bssid[ETH_ALEN];
769 u8 ssid[IW_ESSID_MAX_SIZE];
770 u8 type;
771 __le16 beaconperiod;
772 u8 dtimperiod;
773 __le64 timestamp;
774 __le64 localtime;
775 struct ieee_ie_ds_param_set ds;
776 u8 reserved1[4];
777 struct ieee_ie_ibss_param_set ibss;
778 u8 reserved2[4];
779 __le16 capability;
780 u8 rates[MAX_RATES];
781
782 /* DO NOT ADD ANY FIELDS TO THIS STRUCTURE. It is used below in the
783 * Adhoc join command and will cause a binary layout mismatch with
784 * the firmware
785 */
786} __attribute__ ((packed));
787
788struct cmd_ds_802_11_ad_hoc_join {
789 struct cmd_header hdr;
790
791 struct adhoc_bssdesc bss;
792 __le16 failtimeout; /* Reserved on v9 and later */
793 __le16 probedelay; /* Reserved on v9 and later */
794} __attribute__ ((packed));
795
796struct cmd_ds_802_11_ad_hoc_stop {
797 struct cmd_header hdr;
798} __attribute__ ((packed));
799
800struct cmd_ds_802_11_enable_rsn {
801 struct cmd_header hdr;
802
803 __le16 action;
804 __le16 enable;
805} __attribute__ ((packed));
806
807struct MrvlIEtype_keyParamSet {
808 /* type ID */
809 __le16 type;
810
811 /* length of Payload */
812 __le16 length;
813
814 /* type of key: WEP=0, TKIP=1, AES=2 */
815 __le16 keytypeid;
816
817 /* key control Info specific to a keytypeid */
818 __le16 keyinfo;
819
820 /* length of key */
821 __le16 keylen;
822
823 /* key material of size keylen */
824 u8 key[32];
825} __attribute__ ((packed));
826
827#define MAX_WOL_RULES 16
828
829struct host_wol_rule {
830 uint8_t rule_no;
831 uint8_t rule_ops;
832 __le16 sig_offset;
833 __le16 sig_length;
834 __le16 reserve;
835 __be32 sig_mask;
836 __be32 signature;
837} __attribute__ ((packed));
838
839struct wol_config {
840 uint8_t action;
841 uint8_t pattern;
842 uint8_t no_rules_in_cmd;
843 uint8_t result;
844 struct host_wol_rule rule[MAX_WOL_RULES];
845} __attribute__ ((packed));
846
847struct cmd_ds_host_sleep {
848 struct cmd_header hdr;
849 __le32 criteria;
850 uint8_t gpio;
851 uint16_t gap;
852 struct wol_config wol_conf;
853} __attribute__ ((packed));
854
855
856
857struct cmd_ds_802_11_key_material {
858 struct cmd_header hdr;
859
860 __le16 action;
861 struct MrvlIEtype_keyParamSet keyParamSet[2];
862} __attribute__ ((packed));
863
864struct cmd_ds_802_11_eeprom_access {
865 struct cmd_header hdr;
866 __le16 action;
867 __le16 offset;
868 __le16 len;
869 /* firmware says it returns a maximum of 20 bytes */
870#define LBS_EEPROM_READ_LEN 20
871 u8 value[LBS_EEPROM_READ_LEN];
872} __attribute__ ((packed));
873
874struct cmd_ds_802_11_tpc_cfg {
875 struct cmd_header hdr;
876
877 __le16 action;
878 uint8_t enable;
879 int8_t P0;
880 int8_t P1;
881 int8_t P2;
882 uint8_t usesnr;
883} __attribute__ ((packed));
884
885
886struct cmd_ds_802_11_pa_cfg {
887 struct cmd_header hdr;
888
889 __le16 action;
890 uint8_t enable;
891 int8_t P0;
892 int8_t P1;
893 int8_t P2;
894} __attribute__ ((packed));
895
896
897struct cmd_ds_802_11_led_ctrl {
898 __le16 action;
899 __le16 numled;
900 u8 data[256];
901} __attribute__ ((packed));
902
903struct cmd_ds_802_11_afc {
904 __le16 afc_auto;
905 union {
906 struct {
907 __le16 threshold;
908 __le16 period;
909 };
910 struct {
911 __le16 timing_offset; /* signed */
912 __le16 carrier_offset; /* signed */
913 };
914 };
915} __attribute__ ((packed));
916
917struct cmd_tx_rate_query {
918 __le16 txrate;
919} __attribute__ ((packed));
920
921struct cmd_ds_get_tsf {
922 __le64 tsfvalue;
923} __attribute__ ((packed));
924
925struct cmd_ds_bt_access {
926 __le16 action;
927 __le32 id;
928 u8 addr1[ETH_ALEN];
929 u8 addr2[ETH_ALEN];
930} __attribute__ ((packed));
931
932struct cmd_ds_fwt_access {
933 __le16 action;
934 __le32 id;
935 u8 valid;
936 u8 da[ETH_ALEN];
937 u8 dir;
938 u8 ra[ETH_ALEN];
939 __le32 ssn;
940 __le32 dsn;
941 __le32 metric;
942 u8 rate;
943 u8 hopcount;
944 u8 ttl;
945 __le32 expiration;
946 u8 sleepmode;
947 __le32 snr;
948 __le32 references;
949 u8 prec[ETH_ALEN];
950} __attribute__ ((packed));
951
952struct cmd_ds_mesh_config {
953 struct cmd_header hdr;
954
955 __le16 action;
956 __le16 channel;
957 __le16 type;
958 __le16 length;
959 u8 data[128]; /* last position reserved */
960} __attribute__ ((packed));
961
962struct cmd_ds_mesh_access {
963 struct cmd_header hdr;
964
965 __le16 action;
966 __le32 data[32]; /* last position reserved */
967} __attribute__ ((packed));
968
969/* Number of stats counters returned by the firmware */
970#define MESH_STATS_NUM 8
971
972struct cmd_ds_command {
973 /* command header */
974 __le16 command;
975 __le16 size;
976 __le16 seqnum;
977 __le16 result;
978
979 /* command Body */
980 union {
981 struct cmd_ds_802_11_ps_mode psmode;
982 struct cmd_ds_802_11_monitor_mode monitor;
983 struct cmd_ds_802_11_rssi rssi;
984 struct cmd_ds_802_11_rssi_rsp rssirsp;
985 struct cmd_ds_mac_reg_access macreg;
986 struct cmd_ds_bbp_reg_access bbpreg;
987 struct cmd_ds_rf_reg_access rfreg;
988
989 struct cmd_ds_802_11d_domain_info domaininfo;
990 struct cmd_ds_802_11d_domain_info domaininforesp;
991
992 struct cmd_ds_802_11_tpc_cfg tpccfg;
993 struct cmd_ds_802_11_afc afc;
994 struct cmd_ds_802_11_led_ctrl ledgpio;
995
996 struct cmd_ds_bt_access bt;
997 struct cmd_ds_fwt_access fwt;
998 struct cmd_ds_get_tsf gettsf;
999 struct cmd_ds_802_11_beacon_control bcn_ctrl;
1000 } params;
1001} __attribute__ ((packed));
1002
Holger Schurig10078322007-11-15 18:05:47 -05001003#endif