esp32: make WiFi IRAM optimization configurable

With this feature, the WiFi IRAM optimization can be disabled/enabled via menuconfig.
This commit is contained in:
Liu Zhi Fu 2018-12-27 20:53:45 +08:00
parent 28f5ca2371
commit 711173b3d6
4 changed files with 31 additions and 1 deletions

View file

@ -1204,6 +1204,14 @@ menu Wi-Fi
bool "WiFi Debug Log Submodule Scan"
default n
config ESP32_WIFI_IRAM_OPT
bool "WiFi IRAM speed optimization"
default y
help
Select this option to place frequently called Wi-Fi library functions in IRAM.
When this option is disabled, more than 10Kbytes of IRAM memory will be saved
but Wi-Fi throughput will be reduced.
endmenu # Wi-Fi
menu PHY

View file

@ -44,6 +44,10 @@ entries:
entries:
.dram1+
[sections:wifi_iram]
entries:
.wifi0iram+
[scheme:default]
entries:
text -> flash_text
@ -57,6 +61,7 @@ entries:
rtc_data -> rtc_data
rtc_rodata -> rtc_data
rtc_bss -> rtc_bss
wifi_iram -> flash_text
[scheme:rtc]
entries:
@ -78,3 +83,7 @@ entries:
[scheme:noflash_text]
entries:
text -> iram0_text
[scheme:wifi_iram]
entries:
wifi_iram -> iram0_text

@ -1 +1 @@
Subproject commit 3cedb7f33e4f86d61427912cae6f6ffe598df2b9
Subproject commit 2d497667233a118384a79aec9428a042fbebd366

View file

@ -27,3 +27,16 @@ entries:
archive: libgcov.a
entries:
* (noflash)
[mapping]
archive: libpp.a
entries:
: ESP32_WIFI_IRAM_OPT = y
* (wifi_iram)
[mapping]
archive: libnet80211.a
entries:
: ESP32_WIFI_IRAM_OPT = y
* (wifi_iram)