mirror of
https://github.com/apache/nuttx.git
synced 2026-06-01 07:45:16 +08:00
wireless/bcm43xxx: add extended join parameters
Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
@@ -224,9 +224,12 @@ typedef struct wl_uint32_list
|
|||||||
uint32_t element[1];
|
uint32_t element[1];
|
||||||
} wl_uint32_list_t;
|
} wl_uint32_list_t;
|
||||||
|
|
||||||
|
/* scan params for extended join */
|
||||||
|
|
||||||
typedef struct wl_join_scan_params
|
typedef struct wl_join_scan_params
|
||||||
{
|
{
|
||||||
uint8_t scan_type; /* 0 use default, active or passive scan */
|
uint8_t scan_type; /* 0 use default, active or passive scan */
|
||||||
|
uint8_t pad[3];
|
||||||
int32_t nprobes; /* -1 use default, number of probes per channel */
|
int32_t nprobes; /* -1 use default, number of probes per channel */
|
||||||
int32_t active_time; /* -1 use default, dwell time per channel for
|
int32_t active_time; /* -1 use default, dwell time per channel for
|
||||||
* active scanning */
|
* active scanning */
|
||||||
@@ -236,6 +239,40 @@ typedef struct wl_join_scan_params
|
|||||||
* between channel scans */
|
* between channel scans */
|
||||||
} wl_join_scan_params_t;
|
} wl_join_scan_params_t;
|
||||||
|
|
||||||
|
/** used for association with a specific BSSID and chanspec list */
|
||||||
|
|
||||||
|
typedef struct wl_assoc_params
|
||||||
|
{
|
||||||
|
struct ether_addr bssid; /* 00:00:00:00:00:00: broadcast scan */
|
||||||
|
uint16_t bssid_cnt; /* 0: use chanspec_num, and the single bssid,
|
||||||
|
* otherwise count of chanspecs in chanspec_list
|
||||||
|
* AND paired bssids following chanspec_list
|
||||||
|
* also, chanspec_num has to be set to zero
|
||||||
|
* for bssid list to be used
|
||||||
|
*/
|
||||||
|
int32_t chanspec_num; /* 0: all available channels,
|
||||||
|
* otherwise count of chanspecs in chanspec_list */
|
||||||
|
chanspec_t chanspec_list[1]; /* list of chanspecs */
|
||||||
|
} wl_assoc_params_t;
|
||||||
|
|
||||||
|
/** used for association to a specific BSSID and channel */
|
||||||
|
|
||||||
|
typedef wl_assoc_params_t wl_join_assoc_params_t;
|
||||||
|
|
||||||
|
/** extended join params */
|
||||||
|
|
||||||
|
typedef struct wl_extjoin_params
|
||||||
|
{
|
||||||
|
wlc_ssid_t ssid; /* {0, ""}: wildcard scan */
|
||||||
|
wl_join_scan_params_t scan;
|
||||||
|
wl_join_assoc_params_t assoc; /* optional field, but it must include the fixed portion
|
||||||
|
* of the wl_join_assoc_params_t struct when it does
|
||||||
|
* present. */
|
||||||
|
} wl_extjoin_params_t;
|
||||||
|
|
||||||
|
#define WL_EXTJOIN_PARAMS_FIXED_SIZE \
|
||||||
|
(offset(wl_extjoin_params_t, assoc) + WL_JOIN_ASSOC_PARAMS_FIXED_SIZE)
|
||||||
|
|
||||||
#define NRATE_MCS_INUSE (0x00000080)
|
#define NRATE_MCS_INUSE (0x00000080)
|
||||||
#define NRATE_RATE_MASK (0x0000007f)
|
#define NRATE_RATE_MASK (0x0000007f)
|
||||||
#define NRATE_STF_MASK (0x0000ff00)
|
#define NRATE_STF_MASK (0x0000ff00)
|
||||||
@@ -724,6 +761,7 @@ typedef struct wlc_iov_trx_s
|
|||||||
#define IOVAR_STR_AMPDU_RX_FACTOR "ampdu_rx_factor"
|
#define IOVAR_STR_AMPDU_RX_FACTOR "ampdu_rx_factor"
|
||||||
#define IOVAR_STR_MIMO_BW_CAP "mimo_bw_cap"
|
#define IOVAR_STR_MIMO_BW_CAP "mimo_bw_cap"
|
||||||
#define IOVAR_STR_CLMLOAD "clmload"
|
#define IOVAR_STR_CLMLOAD "clmload"
|
||||||
|
#define IOVAR_STR_JOIN "join"
|
||||||
|
|
||||||
#define WLC_IOCTL_MAGIC ( 0x14e46c77 )
|
#define WLC_IOCTL_MAGIC ( 0x14e46c77 )
|
||||||
#define WLC_IOCTL_VERSION ( 1 )
|
#define WLC_IOCTL_VERSION ( 1 )
|
||||||
|
|||||||
Reference in New Issue
Block a user