From b4cf035608f57e09d918e2ffb4bfc5bb7843dff7 Mon Sep 17 00:00:00 2001 From: "harshal.patil" Date: Mon, 31 Jul 2023 15:26:31 +0530 Subject: [PATCH] feat(soc): Add hwcrypto_reg.h for esp32p4 --- components/soc/esp32p4/include/soc/hwcrypto_reg.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 components/soc/esp32p4/include/soc/hwcrypto_reg.h diff --git a/components/soc/esp32p4/include/soc/hwcrypto_reg.h b/components/soc/esp32p4/include/soc/hwcrypto_reg.h new file mode 100644 index 0000000000..844d1c8127 --- /dev/null +++ b/components/soc/esp32p4/include/soc/hwcrypto_reg.h @@ -0,0 +1,15 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#ifndef __HWCRYPTO_REG_H__ +#define __HWCRYPTO_REG_H__ + +#include "soc/aes_reg.h" +#include "soc/ds_reg.h" +#include "soc/hmac_reg.h" +#include "soc/rsa_reg.h" +#include "soc/sha_reg.h" + +#endif