diff --git a/components/soc/esp32c6/include/soc/Kconfig.soc_caps.in b/components/soc/esp32c6/include/soc/Kconfig.soc_caps.in index 813ef04d3d..df01200b67 100644 --- a/components/soc/esp32c6/include/soc/Kconfig.soc_caps.in +++ b/components/soc/esp32c6/include/soc/Kconfig.soc_caps.in @@ -103,6 +103,14 @@ config SOC_SUPPORT_COEXISTENCE bool default y +config SOC_AES_SUPPORTED + bool + default y + +config SOC_SHA_SUPPORTED + bool + default y + config SOC_ECC_SUPPORTED bool default y diff --git a/components/soc/esp32c6/include/soc/soc_caps.h b/components/soc/esp32c6/include/soc/soc_caps.h index 2a105ab41e..29286bf7bf 100644 --- a/components/soc/esp32c6/include/soc/soc_caps.h +++ b/components/soc/esp32c6/include/soc/soc_caps.h @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ @@ -51,9 +51,9 @@ #define SOC_I2C_SUPPORTED 1 #define SOC_SYSTIMER_SUPPORTED 1 #define SOC_SUPPORT_COEXISTENCE 1 -// #define SOC_AES_SUPPORTED 1 // TODO: IDF-5356 +#define SOC_AES_SUPPORTED 1 // #define SOC_MPI_SUPPORTED 1 -// #define SOC_SHA_SUPPORTED 1 // TODO: IDF-5353 +#define SOC_SHA_SUPPORTED 1 // #define SOC_HMAC_SUPPORTED 1 // TODO: IDF-5355 // #define SOC_DIG_SIGN_SUPPORTED 1 // TODO: IDF-5360 #define SOC_ECC_SUPPORTED 1