Skip to content

Commit 42cf452

Browse files
Merge branch 'fix/disable_ecdsa_key_manager_for_p4_v5.3' into 'release/v5.3'
fix(soc): Disable key manager and ECDSA peripheral support for esp32p4 (v5.3) See merge request espressif/esp-idf!31768
2 parents 33c3d32 + a56a4b8 commit 42cf452

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/soc/esp32p4/include/soc/Kconfig.soc_caps.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ config SOC_ECC_EXTENDED_MODES_SUPPORTED
189189

190190
config SOC_ECDSA_SUPPORTED
191191
bool
192-
default y
192+
default n
193193

194194
config SOC_KEY_MANAGER_SUPPORTED
195195
bool
196-
default y
196+
default n
197197

198198
config SOC_FLASH_ENC_SUPPORTED
199199
bool

components/soc/esp32p4/include/soc/soc_caps.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
#define SOC_DIG_SIGN_SUPPORTED 1
6565
#define SOC_ECC_SUPPORTED 1
6666
#define SOC_ECC_EXTENDED_MODES_SUPPORTED 1
67-
#define SOC_ECDSA_SUPPORTED 1
68-
#define SOC_KEY_MANAGER_SUPPORTED 1
67+
#define SOC_ECDSA_SUPPORTED 0
68+
#define SOC_KEY_MANAGER_SUPPORTED 0
6969
#define SOC_FLASH_ENC_SUPPORTED 1
7070
#define SOC_SECURE_BOOT_SUPPORTED 1
7171
#define SOC_BOD_SUPPORTED 1

0 commit comments

Comments
 (0)