Skip to content

Commit 37ae0d0

Browse files
committed
nrf_wifi: Enable build-time configuration for nRF71 features
Added configuration options to support nRF71-specific functionality: 1. Host command interface for passing RX buffers to UMAC firmware 2. Support for software-based HPQM (soft_hpqm) Signed-off-by: Ajay Parida <ajay.parida@nordicsemi.no>
1 parent 4852719 commit 37ae0d0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

drivers/wifi/nrf_wifi/Kconfig.nrfwifi

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,3 +934,21 @@ config NRF_WIFI_DYNAMIC_ED
934934
This option enables support for proprietary algorithm to
935935
enhance performance in high-traffic channels.
936936
endif # WIFI_NRF70
937+
938+
config WIFI_NRF71
939+
bool "For nrf71 rx buffer and softhpqm support testing"
940+
select EXPERIMENTAL
941+
help
942+
Enable to test RX buffer command & softhpqm support
943+
if WIFI_NRF71
944+
config NRF71_HOST_RX_BUF_CMD
945+
bool "Sends command with host RX buffers to firmware"
946+
help
947+
Sends a command with host rx buffers to firmware.
948+
Firmware does the programming of rx buffers as hardware
949+
queues are not accessible to host in nrf71.
950+
config NRF71_SOFT_HPQM
951+
select EXPERIMENTAL
952+
select NRF71_HOST_RX_BUF_CMD
953+
bool "Soft HPQM support"
954+
endif # WIFI_NRF71

0 commit comments

Comments
 (0)