mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-06 22:24:33 +02:00
esp32c6/soc: Enable DS and HMAC capabilities for esp32c6 in soc_caps.h
This commit is contained in:
committed by
Laukik Hase
parent
4831edc624
commit
4084ab38a1
@@ -37,7 +37,7 @@
|
||||
|
||||
#if CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
||||
#define DS_MAX_BITS (4096)
|
||||
#elif CONFIG_IDF_TARGET_ESP32C3
|
||||
#else
|
||||
#define DS_MAX_BITS (ETS_DS_MAX_BITS)
|
||||
#endif
|
||||
|
||||
|
@@ -115,6 +115,14 @@ config SOC_SHA_SUPPORTED
|
||||
bool
|
||||
default y
|
||||
|
||||
config SOC_HMAC_SUPPORTED
|
||||
bool
|
||||
default y
|
||||
|
||||
config SOC_DIG_SIGN_SUPPORTED
|
||||
bool
|
||||
default y
|
||||
|
||||
config SOC_ECC_SUPPORTED
|
||||
bool
|
||||
default y
|
||||
|
@@ -55,8 +55,8 @@
|
||||
#define SOC_AES_SUPPORTED 1
|
||||
// #define SOC_MPI_SUPPORTED 1
|
||||
#define SOC_SHA_SUPPORTED 1
|
||||
// #define SOC_HMAC_SUPPORTED 1 // TODO: IDF-5355
|
||||
// #define SOC_DIG_SIGN_SUPPORTED 1 // TODO: IDF-5360
|
||||
#define SOC_HMAC_SUPPORTED 1
|
||||
#define SOC_DIG_SIGN_SUPPORTED 1
|
||||
#define SOC_ECC_SUPPORTED 1
|
||||
#define SOC_FLASH_ENC_SUPPORTED 1
|
||||
#define SOC_SECURE_BOOT_SUPPORTED 1
|
||||
|
Reference in New Issue
Block a user