Tomasz Kramkowski
84a162aba7
fix(rom): Fix s2 and s3 Cache_Count_Flash_Pages rom function wrapper
...
The rom function on the s2 and s3 only counts one page for any pages
which are mapped to page 0 of flash as the Cache_Flash_To_SPIRAM_Copy
function attempts to map all flash page 0 mapped pages to one PSRAM
page.
As this function can be called for multiple regions, it needs to track
if a page mapped to page 0 has previously been accounted for by a
previous call. It does this using the page0_mapped in-out parameter.
This logic contains an error:
```
if (*page0_mapped == 0) {
// BUG: If page0_count is 0, 1 is still added
count = valid_flash_count + 1 - page0_count;
} else {
count = valid_flash_count - page0_count;
}
*page0_mapped += page0_count;
return count;
```
The current Cache_Count_Flash_Pages wrapper in the idf attempts to
compensate for this bug by checking if the page0_mapped parameter was
changed by a call to the function and reducing the count if it has not.
This, however, will incorrectly over-compensate in situations where the
initial value of page0_mapped was not zero as the code above only
miscounts when it was zero.
This patch addresses the issue in this wrapper function by correctly
compensating for the bug only in cases where the final page0_mapped
value is 0.
2025-02-20 16:11:08 +08:00
Shu Chen
0830c08e89
Merge branch 'support/ieee802154_get_rssi_comp_from_phy_v5.2' into 'release/v5.2'
...
feat(802.15.4): support ieee802154 get rssi comp from phylib (v5.2)
See merge request espressif/esp-idf!37053
2025-02-19 09:56:52 +08:00
zwx
31436bd626
feat(802.15.4): use btbb function to get rssi comp for h2
2025-02-18 12:11:00 +08:00
Jiang Jiang Jian
beb054baad
Merge branch 'bugfix/stack_corruption_btm_task_v5.2' into 'release/v5.2'
...
fix(esp_wifi): Fix stack curruption in btm task (v5.2)
See merge request espressif/esp-idf!36971
2025-02-14 19:02:20 +08:00
Kapil Gupta
f40e875ece
fix(esp_wifi): Fix stack curruption in btm task (v5.2)
2025-02-14 13:00:51 +05:30
Jiang Jiang Jian
cc834de6b7
Merge branch 'bugfix/skip_memory_reordering_wpa2_semaphr_v5.2' into 'release/v5.2'
...
fix(esp_wifi): fixed stack corruption in WiFi tasks (v5.2)
See merge request espressif/esp-idf!36938
2025-02-14 14:30:56 +08:00
Kapil Gupta
22dd269b53
fix(esp_wifi): Fix stack corruption in wpa3 task
2025-02-13 18:08:00 +05:30
Kapil Gupta
5d9db0b972
fix(esp_wifi): fixed Stack corruption in DPP task
2025-02-13 18:08:00 +05:30
Kapil Gupta
9fb88f83df
fix(esp_wifi): fixed Stack corruption in WPS processing
2025-02-13 18:08:00 +05:30
Kapil Gupta
d5f7c1253e
fix(esp_wifi): Fixed memory corruption in wifi enterprise
...
Closes https://github.com/espressif/esp-idf/issues/15370
2025-02-13 18:07:46 +05:30
Jiang Jiang Jian
9841f23578
Merge branch 'bugfix/gpio_rom_patch_fix_v5.2' into 'release/v5.2'
...
fix(gpio): fix esp_rom_gpio_connect_out_signal for gpio num over 31 on esp32/s2 (v5.2)
See merge request espressif/esp-idf!36867
2025-02-13 20:32:42 +08:00
Jiang Jiang Jian
7a778aefce
Merge branch 'bugfix/add_bluedroid_init_migration_v5.2' into 'release/v5.2'
...
docs(bt/bluedroid): Added migration guide for bluedroid init API[backport v5.2]
See merge request espressif/esp-idf!36877
2025-02-12 11:18:40 +08:00
Jiang Jiang Jian
b0f63c505b
Merge branch 'bugfix/fix_wep_shared_auth_connect_fail_issue_v5.2' into 'release/v5.2'
...
fix(wifi): fix wep shared auth connect fail issue(Backport v5.2)
See merge request espressif/esp-idf!36871
2025-02-12 10:42:10 +08:00
liqigan
b528187291
docs(bt/bluedroid): Added migration guide for bluedroid init API
...
Closes https://github.com/espressif/esp-idf/issues/15352
2025-02-11 19:41:23 +08:00
muhaidong
2d900a63a2
fix(wifi): fix wep shared auth connect fail issue
2025-02-11 17:53:28 +08:00
Song Ruo Jing
bfd7f7723f
fix(gpio): fix esp_rom_gpio_connect_out_signal for gpio num over 31 on esp32/s2
...
Closes https://github.com/espressif/esp-idf/issues/15209
2025-02-11 16:05:35 +08:00
Jiang Jiang Jian
f23a4dc52e
Merge branch 'fix/stack_overuse_by_failure_retry_cnt_v5.2' into 'release/v5.2'
...
fix(wifi): Fix stack overflow when failure_retry_cnt is set in station configuration (Backport v5.2)
See merge request espressif/esp-idf!36836
2025-02-11 15:51:51 +08:00
Aditya Patwardhan
4c281f8eee
Merge branch 'feature/esp32h2_eco5_ecc_v5.2' into 'release/v5.2'
...
feat(ecc): enable ECC constant time mode for ESP32-H2 ECO5 (v5.2)
See merge request espressif/esp-idf!36586
2025-02-11 09:54:03 +08:00
Sarvesh Bodakhe
a01148d536
fix(wifi): Fix stack overflow when failure_retry_cnt is set
...
Fix issue of increased stack usage when failure_retry_cnt is set
and wifi driver internally retries connection attempts
2025-02-10 23:47:11 +05:30
Aditya Patwardhan
b8b0046903
Merge branch 'feat/support_aes_pseudo_round_func_in_esp32h2_eco5_v5.2' into 'release/v5.2'
...
Support AES and XTS-AES's pseudo round function in ESP32H2-ECO5 (v5.2)
See merge request espressif/esp-idf!36466
2025-02-10 23:57:39 +08:00
Zhang Shuxian
cc64fb4338
docs: Update CN translation for size.rst
2025-02-10 21:25:07 +05:30
Aditya Patwardhan
e2086d518e
feat(docs): Update minimizing binary size
...
The ESP32-H2 software countermeasure may not be necessary
for ESP32-H2 v1.2 and above, this commit updates
the relevant documentation
2025-02-10 21:25:07 +05:30
laokaiyao
6321c4c339
refactor(ecdsa): rely on efuse to get chip revision
2025-02-10 21:25:07 +05:30
Aditya Patwardhan
9b8a21d128
fix(soc): Fixed ECDSA register compatibility
2025-02-10 21:25:06 +05:30
Aditya Patwardhan
1c9146f0c2
fix(hal): Make the ECDSA countermeasure dynamically applicable
...
This commit makes the ECDSA countermeasure dynamically applicable
across different revisions of the ESP32H2 SoC.
2025-02-10 21:24:58 +05:30
Jiang Jiang Jian
a31e45a39d
Merge branch 'revert/use_wpa3_ent_authmode_naming_v5.2' into 'release/v5.2'
...
revert(wifi): Revert support for WPA3 Enterprise authentication modes (Backport v5.2)
See merge request espressif/esp-idf!36799
2025-02-10 20:27:10 +08:00
Sarvesh Bodakhe
f77aa29905
revert(wifi): Revert support for WPA3 Enterprise authentication modes
...
This commit reverts the support for 'WIFI_AUTH_WPA3_ENTERPRISE' and
'WIFI_AUTH_WPA2_WPA3_ENTERPRISE'.
This reverts commit d2ba44d9e1 .
2025-02-10 16:32:42 +08:00
Jiang Jiang Jian
d81b820331
Merge branch 'fix/fix_max_idle_priod_issue_v52' into 'release/v5.2'
...
fix(wifi): fix max idle period 1 issue
See merge request espressif/esp-idf!36577
2025-02-10 16:24:27 +08:00
Mahavir Jain
84d2a8818c
feat(ecc): enable ECC constant time mode for ESP32-H2 ECO5
2025-02-06 08:14:50 +05:30
Island
48e11e68a1
Merge branch 'bugfix/fix_ble_conn_timeout_when_coex_v5.2' into 'release/v5.2'
...
Bugfix/fix ble conn timeout when coex v5.2
See merge request espressif/esp-idf!36583
2025-01-24 12:15:12 +08:00
cjin
9d28b2c297
fix(ble): fix conn supervision tmo when coex ESP32C6
2025-01-23 18:06:32 +08:00
cjin
d42269fc62
fix(ble): fix conn supervision tmo when coex ESP32H2
2025-01-23 18:06:32 +08:00
David Čermák
80ea58945d
Merge branch 'fix/ping_data_race_v5.2' into 'release/v5.2'
...
fix(lwip): Fix potential data-race in ping tcpip callback (v5.2)
See merge request espressif/esp-idf!36509
2025-01-23 16:56:49 +08:00
wangtao@espressif.com
0d4df082fe
fix(wifi): fix max idle period 1 issue
2025-01-23 15:31:56 +08:00
David Cermak
c68c6dfb76
fix(lwip): Fix potential data-race in ping tcpip callback
...
Need to use tcpip_api_call() instead of tcpip_callback(), since the
former waits for the tcpip task to complete and thus prevents potential
data races with subsequent TCP/IP tasks.
2025-01-21 10:03:17 +01:00
renpeiying
3ec6875e41
docs: Update CN trans for security docs
2025-01-21 12:41:13 +05:30
harshal.patil
f3e87bb60e
feat(bootloader_support): Permanently enable XTS-AES pseudo rounds when FE release mode is enabled
2025-01-21 12:41:05 +05:30
harshal.patil
248de17a53
feat(hal/spi_flash_encrypted): Enable pseudo rounds function during XTS-AES operations
2025-01-17 14:18:37 +05:30
harshal.patil
e8a0496d36
feat(hal/aes): Enable pseudo rounds function during AES operations
2025-01-17 14:00:14 +05:30
Jiang Jiang Jian
72d91b5117
Merge branch 'change/ble_update_lib_20250103_v5.2' into 'release/v5.2'
...
change(ble): [AUTO_MR] 20250103 - Update ESP BLE Controller Lib (v5.2)
See merge request espressif/esp-idf!36371
2025-01-17 10:44:25 +08:00
Jiang Jiang Jian
6a465772aa
Merge branch 'feature/softap_detect_wrong_password_attempt_v5.2' into 'release/v5.2'
...
esp_wifi: softAP: detect external station attempting to connect with wrong password (Backport v5.2)
See merge request espressif/esp-idf!36455
2025-01-17 10:36:42 +08:00
Jiang Jiang Jian
bb268e1131
Merge branch 'fix/sdmmc_write_sectors_dma_always_send_cmd13_v5.2' into 'release/v5.2'
...
fix(sdmmc): sdmmc_write_sectors_dma always check card status after write (v5.2)
See merge request espressif/esp-idf!34342
2025-01-17 10:32:10 +08:00
Sarvesh Bodakhe
806b75938a
feat(wpa_supplicant): Add WIFI_EVENT_AP_WRONG_PASSWORD in SoftAP
...
This event is triggered when external station tries connecting to softAP
with wrong password.
Currently supported softAP AUTH modes: WPA-PSK, WPA2-PSK and WPA3-PSK (SAE-auth)
2025-01-16 20:13:55 +05:30
Jiang Jiang Jian
0bdb71f6b6
Merge branch 'fix/tusb_midi_task_stack_overflow_v5.2' into 'release/v5.2'
...
fix(examples): tusb_midi task stack overflow fix (v5.2)
See merge request espressif/esp-idf!34935
2025-01-16 22:07:36 +08:00
Jiang Jiang Jian
02935a77a5
Merge branch 'bugfix/sync_buf_crash_v5.2' into 'release/v5.2'
...
fix(bt/controller): fixed missing critical protections on linked-list structure of (e)SCO buffers (v5.2)
See merge request espressif/esp-idf!36342
2025-01-16 21:04:46 +08:00
Jiang Jiang Jian
3b2d916af0
Merge branch 'fix/esp_vfs_register_fd_range_warning_message_v5.2' into 'release/v5.2'
...
fix(storage/vfs): incorrect log level in esp_vfs_register_fd_range (v5.2)
See merge request espressif/esp-idf!36320
2025-01-16 20:57:04 +08:00
Jiang Jiang Jian
5c235ffa36
Merge branch 'fix/heap-allocate-in-rtc-iram_v5.2' into 'release/v5.2'
...
fix(heap): MALLOC_CAP_EXEC does not allocate in RTC IRAM (backport v5.2)
See merge request espressif/esp-idf!35621
2025-01-16 20:53:40 +08:00
Adam Múdry
e58de4fd50
fix(examples): tusb_midi task stack overflow fix
2025-01-16 20:40:03 +08:00
Adam Múdry
2dc6551390
fix(sdmmc): Send status (CMD13) even if write/read command fails
2025-01-16 20:39:29 +08:00
Adam Múdry
a44a659b0f
fix(sdmmc): Improve SD card state checking after write/read command
2025-01-16 20:39:29 +08:00