/freebsd/contrib/wpa/src/ap/ |
H A D | ieee802_11_eht.c | 206 enum oper_chan_width chwidth; in hostapd_eid_eht_operation() local 215 chwidth = op_class_to_ch_width(conf->op_class); in hostapd_eid_eht_operation() 217 chwidth = conf->eht_oper_chwidth; in hostapd_eid_eht_operation() 219 eht_oper_info_present = chwidth == CONF_OPER_CHWIDTH_320MHZ || in hostapd_eid_eht_operation() 250 switch (chwidth) { in hostapd_eid_eht_operation()
|
H A D | beacon.c | 1875 u8 chwidth = FD_CAP_BSS_CHWIDTH_20, he_mcs_nss_size = 4; in hostapd_fils_discovery_cap() local 1885 chwidth = FD_CAP_BSS_CHWIDTH_320; in hostapd_fils_discovery_cap() 1892 chwidth = FD_CAP_BSS_CHWIDTH_160_80_80; in hostapd_fils_discovery_cap() 1895 chwidth = FD_CAP_BSS_CHWIDTH_80; in hostapd_fils_discovery_cap() 1898 chwidth = FD_CAP_BSS_CHWIDTH_40; in hostapd_fils_discovery_cap() 1908 chwidth = FD_CAP_BSS_CHWIDTH_160_80_80; in hostapd_fils_discovery_cap() 1911 chwidth = FD_CAP_BSS_CHWIDTH_80; in hostapd_fils_discovery_cap() 1915 chwidth = FD_CAP_BSS_CHWIDTH_40; in hostapd_fils_discovery_cap() 1917 chwidth = FD_CAP_BSS_CHWIDTH_20; in hostapd_fils_discovery_cap() 1926 cap_info |= chwidth << FD_CAP_BSS_CHWIDTH_SHIFT; in hostapd_fils_discovery_cap()
|
H A D | drv_callbacks.c | 1127 int channel, chwidth, is_dfs0, is_dfs; in hostapd_event_ch_switch() local 1163 chwidth = CONF_OPER_CHWIDTH_80MHZ; in hostapd_event_ch_switch() 1166 chwidth = CONF_OPER_CHWIDTH_80P80MHZ; in hostapd_event_ch_switch() 1169 chwidth = CONF_OPER_CHWIDTH_160MHZ; in hostapd_event_ch_switch() 1172 chwidth = CONF_OPER_CHWIDTH_320MHZ; in hostapd_event_ch_switch() 1178 chwidth = CONF_OPER_CHWIDTH_USE_HT; in hostapd_event_ch_switch() 1263 if (ieee80211_freq_to_channel_ext(freq, offset, chwidth, in hostapd_event_ch_switch() 1267 hostapd_set_oper_chwidth(hapd->iconf, chwidth); in hostapd_event_ch_switch() 1277 if (chwidth == CONF_OPER_CHWIDTH_160MHZ) in hostapd_event_ch_switch() 1280 else if (chwidth == CONF_OPER_CHWIDTH_80P80MHZ) in hostapd_event_ch_switch()
|
/freebsd/contrib/wpa/src/common/ |
H A D | ieee802_11_common.h | 311 int chwidth_freq2_to_ch_width(int chwidth, int freq2);
|
H A D | ieee802_11_common.c | 3336 int chwidth_freq2_to_ch_width(int chwidth, int freq2) in chwidth_freq2_to_ch_width() argument 3343 switch (chwidth) { in chwidth_freq2_to_ch_width() 3356 chwidth); in chwidth_freq2_to_ch_width()
|
/freebsd/contrib/wpa/wpa_supplicant/dbus/ |
H A D | dbus_new_handlers_p2p.c | 369 int max_oper_chwidth, chwidth = 0, freq2 = 0; in wpas_dbus_handler_p2p_group_add() local 423 chwidth = entry.int32_value; in wpas_dbus_handler_p2p_group_add() 431 max_oper_chwidth = chwidth_freq2_to_ch_width(chwidth, freq2); in wpas_dbus_handler_p2p_group_add() 435 if (allow_6ghz && chwidth == 40) in wpas_dbus_handler_p2p_group_add()
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | wpa_supplicant.c | 3067 int chwidth, seg0, seg1; in ibss_mesh_select_80_160mhz() local 3076 chwidth = CONF_OPER_CHWIDTH_USE_HT; in ibss_mesh_select_80_160mhz() 3103 chwidth = CONF_OPER_CHWIDTH_80MHZ; in ibss_mesh_select_80_160mhz() 3117 chwidth = CONF_OPER_CHWIDTH_160MHZ; in ibss_mesh_select_80_160mhz() 3148 chwidth = CONF_OPER_CHWIDTH_80P80MHZ; in ibss_mesh_select_80_160mhz() 3155 if (chwidth == CONF_OPER_CHWIDTH_80P80MHZ) in ibss_mesh_select_80_160mhz() 3160 chwidth = CONF_OPER_CHWIDTH_160MHZ; in ibss_mesh_select_80_160mhz() 3164 chwidth = CONF_OPER_CHWIDTH_160MHZ; in ibss_mesh_select_80_160mhz() 3177 chwidth, seg0, seg1, vht_caps, in ibss_mesh_select_80_160mhz()
|
H A D | ctrl_iface.c | 6373 int ht40, vht, max_oper_chwidth, chwidth = 0, freq2 = 0; in p2p_ctrl_connect() local 6448 chwidth = atoi(pos2 + 18); in p2p_ctrl_connect() 6450 max_oper_chwidth = chwidth_freq2_to_ch_width(chwidth, freq2); in p2p_ctrl_connect() 6454 if (allow_6ghz && chwidth == 40) in p2p_ctrl_connect() 7049 int ht40, vht, he, max_oper_chwidth, chwidth = 0, freq2 = 0; in p2p_ctrl_invite_persistent() local 7097 chwidth = atoi(pos + 18); in p2p_ctrl_invite_persistent() 7099 max_oper_chwidth = chwidth_freq2_to_ch_width(chwidth, freq2); in p2p_ctrl_invite_persistent() 7105 if (allow_6ghz && chwidth == 40) in p2p_ctrl_invite_persistent() 7191 int max_oper_chwidth, chwidth = 0, freq2 = 0; in p2p_ctrl_group_add() local 7201 sscanf(token, "max_oper_chwidth=%d", &chwidth) == 1) { in p2p_ctrl_group_add() [all …]
|
H A D | ap.c | 204 static int get_max_oper_chwidth_6ghz(int chwidth) in get_max_oper_chwidth_6ghz() argument 206 switch (chwidth) { in get_max_oper_chwidth_6ghz()
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | wmi.c | 789 .chwidth = WMI_VDEV_PARAM_CHWIDTH, 866 .chwidth = WMI_10X_VDEV_PARAM_CHWIDTH, 942 .chwidth = WMI_10X_VDEV_PARAM_CHWIDTH, 1018 .chwidth = WMI_10_4_VDEV_PARAM_CHWIDTH,
|
H A D | wmi.h | 5153 u32 chwidth; member
|
H A D | wmi-tlv.c | 4905 .chwidth = WMI_TLV_VDEV_PARAM_CHWIDTH,
|