hostcmd.h 13.3 KB
Newer Older
1 2 3 4
/*
 * This file contains the function prototypes, data structure
 * and defines for all the host/station commands
 */
5 6
#ifndef _LBS_HOSTCMD_H
#define _LBS_HOSTCMD_H
7 8 9 10 11 12 13 14 15 16

#include <linux/wireless.h>
#include "11d.h"
#include "types.h"

/* 802.11-related definitions */

/* TxPD descriptor */
struct txpd {
	/* Current Tx packet status */
17
	__le32 tx_status;
18
	/* Tx control */
19 20
	__le32 tx_control;
	__le32 tx_packet_location;
21
	/* Tx packet length */
22
	__le16 tx_packet_length;
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
	/* First 2 byte of destination MAC address */
	u8 tx_dest_addr_high[2];
	/* Last 4 byte of destination MAC address */
	u8 tx_dest_addr_low[4];
	/* Pkt Priority */
	u8 priority;
	/* Pkt Trasnit Power control */
	u8 powermgmt;
	/* Amount of time the packet has been queued in the driver (units = 2ms) */
	u8 pktdelay_2ms;
	/* reserved */
	u8 reserved1;
};

/* RxPD Descriptor */
struct rxpd {
	/* Current Rx packet status */
40
	__le16 status;
41 42 43 44 45 46 47 48

	/* SNR */
	u8 snr;

	/* Tx control */
	u8 rx_control;

	/* Pkt length */
49
	__le16 pkt_len;
50 51 52 53 54 55 56 57

	/* Noise Floor */
	u8 nf;

	/* Rx Packet Rate */
	u8 rx_rate;

	/* Pkt addr */
58
	__le32 pkt_ptr;
59 60

	/* Next Rx RxPD addr */
61
	__le32 next_rxpd_ptr;
62 63 64 65 66 67 68 69

	/* Pkt Priority */
	u8 priority;
	u8 reserved[3];
};

struct cmd_ctrl_node {
	struct list_head list;
70
	/* wait for finish or not */
71
	u16 wait_option;
72
	/* command response */
73
	void *pdata_buf;
74
	int (*callback)(uint16_t respcmd, struct cmd_ds_command *resp, struct lbs_private *priv);
75
	/* command data */
76 77 78 79 80 81
	u8 *bufvirtualaddr;
	/* wait queue */
	u16 cmdwaitqwoken;
	wait_queue_head_t cmdwait_q;
};

82 83 84
/* Generic structure to hold all key types. */
struct enc_key {
	u16 len;
85 86
	u16 flags;  /* KEY_INFO_* from defs.h */
	u16 type; /* KEY_TYPE_* from defs.h */
87
	u8 key[32];
88 89
};

90 91
/* lbs_offset_value */
struct lbs_offset_value {
92 93 94 95 96 97 98
	u32 offset;
	u32 value;
};

/* Define general data structure */
/* cmd_DS_GEN */
struct cmd_ds_gen {
99 100 101 102
	__le16 command;
	__le16 size;
	__le16 seqnum;
	__le16 result;
103
	void *cmdresp[0];
104 105 106
};

#define S_DS_GEN sizeof(struct cmd_ds_gen)
107 108


109
/*
110
 * Define data structure for CMD_GET_HW_SPEC
111 112 113 114
 * This structure defines the response for the GET_HW_SPEC command
 */
struct cmd_ds_get_hw_spec {
	/* HW Interface version number */
115
	__le16 hwifversion;
116
	/* HW version number */
117
	__le16 version;
118
	/* Max number of TxPD FW can handle */
119
	__le16 nr_txpd;
120
	/* Max no of Multicast address */
121
	__le16 nr_mcast_adr;
122 123 124 125
	/* MAC address */
	u8 permanentaddr[6];

	/* region Code */
126
	__le16 regioncode;
127 128

	/* Number of antenna used */
129
	__le16 nr_antenna;
130

131 132
	/* FW release number, example 1,2,3,4 = 3.2.1p4 */
	u8 fwreleasenumber[4];
133 134

	/* Base Address of TxPD queue */
135
	__le32 wcb_base;
136
	/* Read Pointer of RxPd queue */
137
	__le32 rxpd_rdptr;
138 139

	/* Write Pointer of RxPd queue */
140
	__le32 rxpd_wrptr;
141 142

	/*FW/HW capability */
143
	__le32 fwcapinfo;
144 145 146
} __attribute__ ((packed));

struct cmd_ds_802_11_reset {
147
	__le16 action;
148 149 150
};

struct cmd_ds_802_11_subscribe_event {
151 152
	__le16 action;
	__le16 events;
153 154 155 156 157 158 159

	/* A TLV to the CMD_802_11_SUBSCRIBE_EVENT command can contain a
	 * number of TLVs. From the v5.1 manual, those TLVs would add up to
	 * 40 bytes. However, future firmware might add additional TLVs, so I
	 * bump this up a bit.
	 */
	u8 tlv[128];
160 161 162 163
};

/*
 * This scan handle Country Information IE(802.11d compliant)
164
 * Define data structure for CMD_802_11_SCAN
165 166 167
 */
struct cmd_ds_802_11_scan {
	u8 bsstype;
168
	u8 bssid[ETH_ALEN];
169 170 171 172 173 174 175 176 177
	u8 tlvbuffer[1];
#if 0
	mrvlietypes_ssidparamset_t ssidParamSet;
	mrvlietypes_chanlistparamset_t ChanListParamSet;
	mrvlietypes_ratesparamset_t OpRateSet;
#endif
};

struct cmd_ds_802_11_scan_rsp {
178
	__le16 bssdescriptsize;
179 180 181 182 183
	u8 nr_sets;
	u8 bssdesc_and_tlvbuffer[1];
};

struct cmd_ds_802_11_get_log {
184 185 186 187 188 189 190 191 192 193 194 195 196
	__le32 mcasttxframe;
	__le32 failed;
	__le32 retry;
	__le32 multiretry;
	__le32 framedup;
	__le32 rtssuccess;
	__le32 rtsfailure;
	__le32 ackfailure;
	__le32 rxfrag;
	__le32 mcastrxframe;
	__le32 fcserror;
	__le32 txframe;
	__le32 wepundecryptable;
197 198 199
};

struct cmd_ds_mac_control {
200 201
	__le16 action;
	__le16 reserved;
202 203 204
};

struct cmd_ds_mac_multicast_adr {
205 206
	__le16 action;
	__le16 nr_of_adrs;
207 208 209 210 211 212 213 214 215 216 217
	u8 maclist[ETH_ALEN * MRVDRV_MAX_MULTICAST_LIST_SIZE];
};

struct cmd_ds_802_11_authenticate {
	u8 macaddr[ETH_ALEN];
	u8 authtype;
	u8 reserved[10];
};

struct cmd_ds_802_11_deauthenticate {
	u8 macaddr[6];
218
	__le16 reasoncode;
219 220 221 222
};

struct cmd_ds_802_11_associate {
	u8 peerstaaddr[6];
223
	__le16 capability;
224 225
	__le16 listeninterval;
	__le16 bcnperiod;
226 227 228 229 230 231 232 233 234 235 236 237
	u8 dtimperiod;

#if 0
	mrvlietypes_ssidparamset_t ssidParamSet;
	mrvlietypes_phyparamset_t phyparamset;
	mrvlietypes_ssparamset_t ssparamset;
	mrvlietypes_ratesparamset_t ratesParamSet;
#endif
} __attribute__ ((packed));

struct cmd_ds_802_11_disassociate {
	u8 destmacaddr[6];
238
	__le16 reasoncode;
239 240 241 242 243 244 245
};

struct cmd_ds_802_11_associate_rsp {
	struct ieeetypes_assocrsp assocRsp;
};

struct cmd_ds_802_11_ad_hoc_result {
246 247
	u8 pad[3];
	u8 bssid[ETH_ALEN];
248 249 250 251
};

struct cmd_ds_802_11_set_wep {
	/* ACT_ADD, ACT_REMOVE or ACT_ENABLE */
252
	__le16 action;
253 254

	/* key Index selected for Tx */
255
	__le16 keyindex;
256 257 258 259 260 261 262

	/* 40, 128bit or TXWEP */
	u8 keytype[4];
	u8 keymaterial[4][16];
};

struct cmd_ds_802_3_get_stat {
263 264 265 266 267 268
	__le32 xmitok;
	__le32 rcvok;
	__le32 xmiterror;
	__le32 rcverror;
	__le32 rcvnobuffer;
	__le32 rcvcrcerror;
269 270 271
};

struct cmd_ds_802_11_get_stat {
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
	__le32 txfragmentcnt;
	__le32 mcasttxframecnt;
	__le32 failedcnt;
	__le32 retrycnt;
	__le32 Multipleretrycnt;
	__le32 rtssuccesscnt;
	__le32 rtsfailurecnt;
	__le32 ackfailurecnt;
	__le32 frameduplicatecnt;
	__le32 rxfragmentcnt;
	__le32 mcastrxframecnt;
	__le32 fcserrorcnt;
	__le32 bcasttxframecnt;
	__le32 bcastrxframecnt;
	__le32 txbeacon;
	__le32 rxbeacon;
	__le32 wepundecryptable;
289 290 291
};

struct cmd_ds_802_11_snmp_mib {
292 293 294
	__le16 querytype;
	__le16 oid;
	__le16 bufsize;
295 296 297 298
	u8 value[128];
};

struct cmd_ds_mac_reg_map {
299
	__le16 buffersize;
300
	u8 regmap[128];
301
	__le16 reserved;
302 303 304
};

struct cmd_ds_bbp_reg_map {
305
	__le16 buffersize;
306
	u8 regmap[128];
307
	__le16 reserved;
308 309 310
};

struct cmd_ds_rf_reg_map {
311
	__le16 buffersize;
312
	u8 regmap[64];
313
	__le16 reserved;
314 315 316
};

struct cmd_ds_mac_reg_access {
317 318 319
	__le16 action;
	__le16 offset;
	__le32 value;
320 321 322
};

struct cmd_ds_bbp_reg_access {
323 324
	__le16 action;
	__le16 offset;
325 326 327 328 329
	u8 value;
	u8 reserved[3];
};

struct cmd_ds_rf_reg_access {
330 331
	__le16 action;
	__le16 offset;
332 333 334 335 336
	u8 value;
	u8 reserved[3];
};

struct cmd_ds_802_11_radio_control {
337 338
	__le16 action;
	__le16 control;
339 340
};

341 342 343 344 345 346
struct cmd_ds_802_11_beacon_control {
	__le16 action;
	__le16 beacon_enable;
	__le16 beacon_period;
};

347 348
struct cmd_ds_802_11_sleep_params {
	/* ACT_GET/ACT_SET */
349
	__le16 action;
350 351

	/* Sleep clock error in ppm */
352
	__le16 error;
353 354

	/* Wakeup offset in usec */
355
	__le16 offset;
356 357

	/* Clock stabilization time in usec */
358
	__le16 stabletime;
359 360 361 362 363 364 365 366

	/* control periodic calibration */
	u8 calcontrol;

	/* control the use of external sleep clock */
	u8 externalsleepclk;

	/* reserved field, should be set to zero */
367
	__le16 reserved;
368 369 370 371
};

struct cmd_ds_802_11_inactivity_timeout {
	/* ACT_GET/ACT_SET */
372
	__le16 action;
373 374

	/* Inactivity timeout in msec */
375
	__le16 timeout;
376 377 378
};

struct cmd_ds_802_11_rf_channel {
379 380 381 382
	__le16 action;
	__le16 currentchannel;
	__le16 rftype;
	__le16 reserved;
383 384 385 386 387
	u8 channellist[32];
};

struct cmd_ds_802_11_rssi {
	/* weighting factor */
388
	__le16 N;
389

390 391 392
	__le16 reserved_0;
	__le16 reserved_1;
	__le16 reserved_2;
393 394 395
};

struct cmd_ds_802_11_rssi_rsp {
396 397 398 399
	__le16 SNR;
	__le16 noisefloor;
	__le16 avgSNR;
	__le16 avgnoisefloor;
400 401 402
};

struct cmd_ds_802_11_mac_address {
403
	__le16 action;
404 405 406 407
	u8 macadd[ETH_ALEN];
};

struct cmd_ds_802_11_rf_tx_power {
408 409
	__le16 action;
	__le16 currentlevel;
410 411 412
};

struct cmd_ds_802_11_rf_antenna {
413
	__le16 action;
414 415

	/* Number of antennas or 0xffff(diversity) */
416
	__le16 antennamode;
417 418 419

};

420
struct cmd_ds_802_11_monitor_mode {
H
Holger Schurig 已提交
421 422
	__le16 action;
	__le16 mode;
423 424
};

425
struct cmd_ds_set_boot2_ver {
H
Holger Schurig 已提交
426 427
	__le16 action;
	__le16 version;
428 429
};

430
struct cmd_ds_802_11_ps_mode {
431 432 433 434 435
	__le16 action;
	__le16 nullpktinterval;
	__le16 multipledtim;
	__le16 reserved;
	__le16 locallisteninterval;
436 437 438
};

struct PS_CMD_ConfirmSleep {
439 440 441 442
	__le16 command;
	__le16 size;
	__le16 seqnum;
	__le16 result;
443

444 445 446 447 448
	__le16 action;
	__le16 reserved1;
	__le16 multipledtim;
	__le16 reserved;
	__le16 locallisteninterval;
449 450 451
};

struct cmd_ds_802_11_data_rate {
452
	__le16 action;
453 454
	__le16 reserved;
	u8 rates[MAX_RATES];
455 456 457
};

struct cmd_ds_802_11_rate_adapt_rateset {
458 459 460
	__le16 action;
	__le16 enablehwauto;
	__le16 bitmap;
461 462 463
};

struct cmd_ds_802_11_ad_hoc_start {
464
	u8 ssid[IW_ESSID_MAX_SIZE];
465
	u8 bsstype;
466
	__le16 beaconperiod;
467 468 469
	u8 dtimperiod;
	union IEEEtypes_ssparamset ssparamset;
	union ieeetypes_phyparamset phyparamset;
470
	__le16 probedelay;
471
	__le16 capability;
472
	u8 rates[MAX_RATES];
473 474 475 476
	u8 tlv_memory_size_pad[100];
} __attribute__ ((packed));

struct adhoc_bssdesc {
477 478 479
	u8 bssid[6];
	u8 ssid[32];
	u8 type;
480
	__le16 beaconperiod;
481
	u8 dtimperiod;
482 483
	__le64 timestamp;
	__le64 localtime;
484 485
	union ieeetypes_phyparamset phyparamset;
	union IEEEtypes_ssparamset ssparamset;
486
	__le16 capability;
487
	u8 rates[MAX_RATES];
488 489 490 491 492 493 494 495

	/* DO NOT ADD ANY FIELDS TO THIS STRUCTURE. It is used below in the
	 * Adhoc join command and will cause a binary layout mismatch with
	 * the firmware
	 */
} __attribute__ ((packed));

struct cmd_ds_802_11_ad_hoc_join {
496
	struct adhoc_bssdesc bss;
497 498
	__le16 failtimeout;
	__le16 probedelay;
499 500 501 502

} __attribute__ ((packed));

struct cmd_ds_802_11_enable_rsn {
503 504
	__le16 action;
	__le16 enable;
505
} __attribute__ ((packed));
506 507 508

struct MrvlIEtype_keyParamSet {
	/* type ID */
509
	__le16 type;
510 511

	/* length of Payload */
512
	__le16 length;
513 514

	/* type of key: WEP=0, TKIP=1, AES=2 */
515
	__le16 keytypeid;
516 517

	/* key control Info specific to a keytypeid */
518
	__le16 keyinfo;
519 520

	/* length of key */
521
	__le16 keylen;
522 523 524 525 526 527

	/* key material of size keylen */
	u8 key[32];
};

struct cmd_ds_802_11_key_material {
528
	__le16 action;
529 530 531 532
	struct MrvlIEtype_keyParamSet keyParamSet[2];
} __attribute__ ((packed));

struct cmd_ds_802_11_eeprom_access {
533
	__le16 action;
534 535

	/* multiple 4 */
536 537
	__le16 offset;
	__le16 bytecount;
538 539 540 541
	u8 value;
} __attribute__ ((packed));

struct cmd_ds_802_11_tpc_cfg {
542
	__le16 action;
543 544 545 546 547 548 549 550
	u8 enable;
	s8 P0;
	s8 P1;
	s8 P2;
	u8 usesnr;
} __attribute__ ((packed));

struct cmd_ds_802_11_led_ctrl {
551 552
	__le16 action;
	__le16 numled;
553 554 555 556
	u8 data[256];
} __attribute__ ((packed));

struct cmd_ds_802_11_pwr_cfg {
557
	__le16 action;
558 559 560 561 562 563 564
	u8 enable;
	s8 PA_P0;
	s8 PA_P1;
	s8 PA_P2;
} __attribute__ ((packed));

struct cmd_ds_802_11_afc {
565
	__le16 afc_auto;
566 567
	union {
		struct {
568 569
			__le16 threshold;
			__le16 period;
570 571
		};
		struct {
572 573
			__le16 timing_offset; /* signed */
			__le16 carrier_offset; /* signed */
574 575 576 577 578
		};
	};
} __attribute__ ((packed));

struct cmd_tx_rate_query {
579
	__le16 txrate;
580 581 582 583 584 585 586
} __attribute__ ((packed));

struct cmd_ds_get_tsf {
	__le64 tsfvalue;
} __attribute__ ((packed));

struct cmd_ds_bt_access {
587 588
	__le16 action;
	__le32 id;
589 590 591 592 593
	u8 addr1[ETH_ALEN];
	u8 addr2[ETH_ALEN];
} __attribute__ ((packed));

struct cmd_ds_fwt_access {
594 595
	__le16 action;
	__le32 id;
596
	u8 valid;
597 598 599
	u8 da[ETH_ALEN];
	u8 dir;
	u8 ra[ETH_ALEN];
600 601 602
	__le32 ssn;
	__le32 dsn;
	__le32 metric;
603
	u8 rate;
604 605
	u8 hopcount;
	u8 ttl;
606
	__le32 expiration;
607
	u8 sleepmode;
608 609
	__le32 snr;
	__le32 references;
610
	u8 prec[ETH_ALEN];
611 612 613
} __attribute__ ((packed));

struct cmd_ds_mesh_access {
614 615
	__le16 action;
	__le32 data[32];	/* last position reserved */
616 617
} __attribute__ ((packed));

618 619 620
/* Number of stats counters returned by the firmware */
#define MESH_STATS_NUM 8

621 622
struct cmd_ds_command {
	/* command header */
623 624 625 626
	__le16 command;
	__le16 size;
	__le16 seqnum;
	__le16 result;
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647

	/* command Body */
	union {
		struct cmd_ds_get_hw_spec hwspec;
		struct cmd_ds_802_11_ps_mode psmode;
		struct cmd_ds_802_11_scan scan;
		struct cmd_ds_802_11_scan_rsp scanresp;
		struct cmd_ds_mac_control macctrl;
		struct cmd_ds_802_11_associate associate;
		struct cmd_ds_802_11_deauthenticate deauth;
		struct cmd_ds_802_11_set_wep wep;
		struct cmd_ds_802_11_ad_hoc_start ads;
		struct cmd_ds_802_11_reset reset;
		struct cmd_ds_802_11_ad_hoc_result result;
		struct cmd_ds_802_11_get_log glog;
		struct cmd_ds_802_11_authenticate auth;
		struct cmd_ds_802_11_get_stat gstat;
		struct cmd_ds_802_3_get_stat gstat_8023;
		struct cmd_ds_802_11_snmp_mib smib;
		struct cmd_ds_802_11_rf_tx_power txp;
		struct cmd_ds_802_11_rf_antenna rant;
648
		struct cmd_ds_802_11_monitor_mode monitor;
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
		struct cmd_ds_802_11_data_rate drate;
		struct cmd_ds_802_11_rate_adapt_rateset rateset;
		struct cmd_ds_mac_multicast_adr madr;
		struct cmd_ds_802_11_ad_hoc_join adj;
		struct cmd_ds_802_11_radio_control radio;
		struct cmd_ds_802_11_rf_channel rfchannel;
		struct cmd_ds_802_11_rssi rssi;
		struct cmd_ds_802_11_rssi_rsp rssirsp;
		struct cmd_ds_802_11_disassociate dassociate;
		struct cmd_ds_802_11_mac_address macadd;
		struct cmd_ds_802_11_enable_rsn enbrsn;
		struct cmd_ds_802_11_key_material keymaterial;
		struct cmd_ds_mac_reg_access macreg;
		struct cmd_ds_bbp_reg_access bbpreg;
		struct cmd_ds_rf_reg_access rfreg;
		struct cmd_ds_802_11_eeprom_access rdeeprom;

		struct cmd_ds_802_11d_domain_info domaininfo;
		struct cmd_ds_802_11d_domain_info domaininforesp;

		struct cmd_ds_802_11_sleep_params sleep_params;
		struct cmd_ds_802_11_inactivity_timeout inactivity_timeout;
		struct cmd_ds_802_11_tpc_cfg tpccfg;
		struct cmd_ds_802_11_pwr_cfg pwrcfg;
		struct cmd_ds_802_11_afc afc;
		struct cmd_ds_802_11_led_ctrl ledgpio;

		struct cmd_tx_rate_query txrate;
		struct cmd_ds_bt_access bt;
		struct cmd_ds_fwt_access fwt;
		struct cmd_ds_mesh_access mesh;
680
		struct cmd_ds_set_boot2_ver boot2_ver;
681 682
		struct cmd_ds_get_tsf gettsf;
		struct cmd_ds_802_11_subscribe_event subscribe_event;
683
		struct cmd_ds_802_11_beacon_control bcn_ctrl;
684 685 686 687
	} params;
} __attribute__ ((packed));

#endif