Home
last modified time | relevance | path

Searched refs:he_ops (Results 1 – 14 of 14) sorted by relevance

/wlan-driver/qcacld-3.0/core/wma/inc/
H A Dwma_he.h97 void wma_print_he_op(tDot11fIEhe_op *he_ops);
143 void wma_update_vdev_he_ops(uint32_t *he_ops, tDot11fIEhe_op *he_op);
220 tDot11fIEhe_op *he_ops);
295 static inline void wma_print_he_op(tDot11fIEhe_op *he_ops) in wma_print_he_op() argument
318 void wma_update_vdev_he_ops(uint32_t *he_ops, tDot11fIEhe_op *he_op) in wma_update_vdev_he_ops() argument
338 uint8_t vdev_id, tDot11fIEhe_op *he_ops) in wma_update_he_ops_ie() argument
/wlan-driver/qcacld-3.0/core/wma/src/
H A Dwma_he.c914 void wma_print_he_op(tDot11fIEhe_op *he_ops) in wma_print_he_op() argument
917 he_ops->bss_color, he_ops->default_pe, in wma_print_he_op()
918 he_ops->twt_required, he_ops->txop_rts_threshold, in wma_print_he_op()
919 he_ops->vht_oper_present, he_ops->partial_bss_col, in wma_print_he_op()
920 he_ops->co_located_bss, he_ops->bss_col_disabled); in wma_print_he_op()
1023 uint32_t mac_cap[PSOC_HOST_MAX_MAC_SIZE] = {0}, he_ops = 0; in wma_populate_peer_he_cap() local
1225 WMI_HEOPS_COLOR_SET(he_ops, he_op->bss_color); in wma_populate_peer_he_cap()
1226 WMI_HEOPS_DEFPE_SET(he_ops, he_op->default_pe); in wma_populate_peer_he_cap()
1227 WMI_HEOPS_TWT_SET(he_ops, he_op->twt_required); in wma_populate_peer_he_cap()
1228 WMI_HEOPS_RTSTHLD_SET(he_ops, he_op->txop_rts_threshold); in wma_populate_peer_he_cap()
[all …]
/wlan-driver/qca-wifi-host-cmn/umac/scan/dispatcher/src/
H A Dwlan_scan_utils_api.c349 static struct he_oper_6g_param *util_scan_get_he_6g_params(uint8_t *he_ops) in util_scan_get_he_6g_params() argument
354 if (!he_ops) in util_scan_get_he_6g_params()
357 len = he_ops[1]; in util_scan_get_he_6g_params()
358 he_ops += sizeof(struct ie_header); in util_scan_get_he_6g_params()
364 he_ops++; in util_scan_get_he_6g_params()
367 he_oper_params = LE_READ_4(he_ops); in util_scan_get_he_6g_params()
372 he_ops += WLAN_HEOP_FIXED_PARAM_LENGTH - 1; in util_scan_get_he_6g_params()
382 he_ops += WLAN_HEOP_VHTOP_LENGTH; in util_scan_get_he_6g_params()
390 he_ops += WLAN_HEOP_CO_LOCATED_BSS_LENGTH; in util_scan_get_he_6g_params()
397 return (struct he_oper_6g_param *)he_ops; in util_scan_get_he_6g_params()
[all …]
/wlan-driver/qcacld-3.0/core/mac/src/pe/lim/
H A Dlim_utils.c7389 tDot11fIEhe_op he_ops = {0}; in lim_decide_he_op() local
7408 he_ops.bss_color = he_ops_from_ie->bss_color; in lim_decide_he_op()
7412 he_ops.bss_color = (color % WNI_CFG_HE_OPS_BSS_COLOR_MAX) + 1; in lim_decide_he_op()
7414 he_ops.default_pe = he_ops_from_ie->default_pe; in lim_decide_he_op()
7415 he_ops.twt_required = he_ops_from_ie->twt_required; in lim_decide_he_op()
7416 he_ops.txop_rts_threshold = he_ops_from_ie->txop_rts_threshold; in lim_decide_he_op()
7417 he_ops.partial_bss_col = he_ops_from_ie->partial_bss_col; in lim_decide_he_op()
7421 *((uint16_t *)he_ops.basic_mcs_nss) = (uint16_t)val; in lim_decide_he_op()
7423 qdf_mem_copy(&session->he_op, &he_ops, sizeof(tDot11fIEhe_op)); in lim_decide_he_op()
7426 he_ops.bss_color, he_ops.default_pe); in lim_decide_he_op()
[all …]
H A Dlim_utils.h1351 void lim_log_he_op(struct mac_context *mac, tDot11fIEhe_op *he_ops,
1700 tDot11fIEhe_op *he_ops, in lim_log_he_op() argument
H A Dlim_process_mlm_req_messages.c317 lim_decide_he_op(mac_ctx, &mlme_obj->proto.he_ops_info.he_ops, in lim_mlm_add_bss()
/wlan-driver/fw-api/fw/
H A Dwmi_unified.h16917 #define WMI_HEOPS_COLOR_GET_D2(he_ops) WMI_GET_BITS(he_ops, 0, 6) argument
16918 #define WMI_HEOPS_COLOR_SET_D2(he_ops, value) WMI_SET_BITS(he_ops, 0, 6, value) argument
16921 #define WMI_HEOPS_DEFPE_GET_D2(he_ops) WMI_GET_BITS(he_ops, 6, 3) argument
16922 #define WMI_HEOPS_DEFPE_SET_D2(he_ops, value) WMI_SET_BITS(he_ops, 6, 3, value) argument
16925 #define WMI_HEOPS_TWT_REQUIRED_GET_D2(he_ops) WMI_GET_BITS(he_ops, 9, 1) argument
16926 #define WMI_HEOPS_TWT_REQUIRED_SET_D2(he_ops, value) WMI_SET_BITS(he_ops, 9, 1, value) argument
16928 #define WMI_HEOPS_TWT_GET_D2(he_ops) \ argument
16929 WMI_HEOPS_TWT_REQUIRED_GET_D2(he_ops)
16931 #define WMI_HEOPS_TWT_SET_D2(he_ops, value) \ argument
16932 WMI_HEOPS_TWT_REQUIRED_SET_D2(he_ops, value)
[all …]
/wlan-driver/qca-wifi-host-cmn/umac/mlme/vdev_mgr/dispatcher/src/
H A Dwlan_vdev_mgr_utils_api.c298 mlme_proto->he_ops_info.he_ops = mlme_cfg.value; in wlan_util_vdev_mlme_set_param()
581 *value = mlme_proto->he_ops_info.he_ops; in wlan_util_vdev_mlme_get_param()
/wlan-driver/qca-wifi-host-cmn/wmi/src/
H A Dwmi_unified_ocb_ut.c410 req->regdomain, req->he_ops); in fake_vdev_start_cmd_tlv()
H A Dwmi_unified_tlv.c1385 cmd->he_ops = req->he_ops; in send_vdev_start_cmd_tlv()
1410 req->regdomain, req->he_ops, in send_vdev_start_cmd_tlv()
/wlan-driver/qca-wifi-host-cmn/umac/mlme/vdev_mgr/dispatcher/inc/
H A Dwlan_vdev_mgr_tgt_if_tx_defs.h723 uint32_t he_ops; member
/wlan-driver/qca-wifi-host-cmn/umac/mlme/vdev_mgr/core/src/
H A Dvdev_mgr_ops.c528 param->he_ops = mlme_obj->proto.he_ops_info.he_ops; in vdev_mgr_start_param_update()
/wlan-driver/qca-wifi-host-cmn/umac/mlme/include/
H A Dwlan_vdev_mlme.h165 uint32_t he_ops; member
/wlan-driver/qcacld-3.0/components/mlme/core/src/
H A Dwlan_mlme_main.c783 uint32_t he_ops = 0; in mlme_get_vdev_he_ops() local
789 return he_ops; in mlme_get_vdev_he_ops()
795 return he_ops; in mlme_get_vdev_he_ops()
798 he_ops = mlme_obj->proto.he_ops_info.he_ops; in mlme_get_vdev_he_ops()
801 return he_ops; in mlme_get_vdev_he_ops()