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