Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drivers: wifi: Dynmic Ed changes for Testing #1678

Draft
wants to merge 2 commits into
base: v2.6-branch
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified nrf_wifi/fw_bins/default/nrf70.bin
Binary file not shown.
Binary file modified nrf_wifi/fw_bins/radio_test/nrf70.bin
Binary file not shown.
Binary file modified nrf_wifi/fw_bins/scan_only/nrf70.bin
Binary file not shown.
11 changes: 11 additions & 0 deletions nrf_wifi/fw_if/umac_if/inc/fw/host_rpu_sys_if.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ enum nrf_wifi_sys_events {
NRF_WIFI_EVENT_RAW_TX_DONE,
/** Response to NRF_WIFI_CMD_GET_DEBUG_STATS */
NRF_WIFI_EVENT_DEBUG_STATS,
/** Event for lmac dynamic ed stats event */
NRF_WIFI_EVENT_DYNAMIC_ED_STATS,
};

/**
Expand Down Expand Up @@ -921,6 +923,8 @@ struct nrf_wifi_cmd_sys_init {
* By default, RX STBC is enabled.
*/
unsigned int stbc_enable_in_ht;
/** Enables or disables dynamic ed.*/
unsigned int disable_dynamic_ed;
} __NRF_WIFI_PKD;

/**
Expand Down Expand Up @@ -1644,4 +1648,11 @@ struct nrf_wifi_umac_event_debug_stats {
unsigned int rpu_hw_lockup_recovery_done;
} __NRF_WIFI_PKD;

struct nrf_wifi_umac_event_dynamic_ed_stats {
/** UMAC header, @ref nrf_wifi_sys_head */
struct nrf_wifi_sys_head sys_head;
char default_ed_threshold;
char adjusted_ed_threshold;
} __NRF_WIFI_PKD;

#endif /* __HOST_RPU_SYS_IF_H__ */
4 changes: 4 additions & 0 deletions nrf_wifi/fw_if/umac_if/src/cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,10 @@ enum nrf_wifi_status umac_cmd_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx,
umac_cmd_data->stbc_enable_in_ht = 1;
#endif /* CONFIG_NRF_WIFI_RX_STBC_HT */

#ifndef CONFIG_NRF_WIFI_DYNAMIC_ED
umac_cmd_data->disable_dynamic_ed = 1;
#endif /* CONFIG_NRF_WIFI_DYNAMIC_ED */

status = nrf_wifi_hal_ctrl_cmd_send(fmac_dev_ctx->hal_dev_ctx,
umac_cmd,
(sizeof(*umac_cmd) + len));
Expand Down
Loading