modules: nrf_wifi: Disable anomalies for both QSPIs
These are applicable for Wi-Fi over QSPI (nRF7002DK) or Flash over QSPI (nRF52/53 + nRF7002EK) and as most Wi-Fi samples run on 128MHz (for performance), disable the anomalies for both. Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
This commit is contained in:
parent
49a8dd51e4
commit
4660f4c244
1 changed files with 12 additions and 10 deletions
|
@ -8,7 +8,8 @@ set(NRF_WIFI_DIR ${ZEPHYR_CURRENT_MODULE_DIR})
|
|||
|
||||
if (CONFIG_NRF70_BUSLIB)
|
||||
|
||||
zephyr_compile_definitions_ifdef(CONFIG_NRF70_ON_QSPI
|
||||
if(CONFIG_NRF70_ON_QSPI OR CONFIG_NORDIC_QSPI_NOR)
|
||||
zephyr_compile_definitions(
|
||||
# These are XIP related anomalies and aren't applicable for nRF7002 and cause
|
||||
# throughput issues.
|
||||
-DNRF53_ERRATA_43_ENABLE_WORKAROUND=0
|
||||
|
@ -18,6 +19,7 @@ if (CONFIG_NRF70_BUSLIB)
|
|||
# Alternative is 128MHz CPU should be disabled that impacts Wi-Fi performance.
|
||||
-DNRF53_ERRATA_159_ENABLE_WORKAROUND=0
|
||||
)
|
||||
endif()
|
||||
|
||||
zephyr_library_named(nrf70-buslib)
|
||||
zephyr_library_include_directories(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue