2023-04-17 13:34:21

by Kamlesh Gurudasani

[permalink] [raw]
Subject: [PATCH] arm64: defconfig: Enable crypto test module

From: Kamlesh Gurudasani <[email protected]>

Enable crypto test module, used for testing crypto engine performance.

Signed-off-by: Kamlesh Gurudasani <[email protected]>
---
arch/arm64/configs/defconfig | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index b6342b40c600..e4ef0cc35235 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -1452,6 +1452,7 @@ CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_ISO8859_1=y
CONFIG_SECURITY=y
CONFIG_CRYPTO_USER=y
+CONFIG_CRYPTO_TEST=m
CONFIG_CRYPTO_ECHAINIV=y
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_ANSI_CPRNG=y
--
2.34.1


2023-04-17 13:34:22

by Kamlesh Gurudasani

[permalink] [raw]
Subject: [PATCH] arm64: defconfig: Enable security accelerator driver for TI K3 SoCs

From: Kamlesh Gurudasani <[email protected]>

Enable TI's SA2UL driver to support security acceleration on TI K3 SoCs.

Signed-off-by: Kamlesh Gurudasani <[email protected]>
---
arch/arm64/configs/defconfig | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index b6342b40c600..c9e3b3b9bab4 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -1477,6 +1477,7 @@ CONFIG_CRYPTO_DEV_HISI_SEC2=m
CONFIG_CRYPTO_DEV_HISI_ZIP=m
CONFIG_CRYPTO_DEV_HISI_HPRE=m
CONFIG_CRYPTO_DEV_HISI_TRNG=m
+CONFIG_CRYPTO_DEV_SA2UL=m
CONFIG_DMA_RESTRICTED_POOL=y
CONFIG_CMA_SIZE_MBYTES=32
CONFIG_PRINTK_TIME=y
--
2.34.1

2023-04-17 14:39:53

by Arnd Bergmann

[permalink] [raw]
Subject: Re: [PATCH] arm64: defconfig: Enable crypto test module

On Mon, Apr 17, 2023, at 15:27, [email protected] wrote:
> From: Kamlesh Gurudasani <[email protected]>
>
> Enable crypto test module, used for testing crypto engine performance.
>
> Signed-off-by: Kamlesh Gurudasani <[email protected]>
> ---

Applied to soc/defconfig, thanks

Arnd

2023-04-17 14:41:12

by Arnd Bergmann

[permalink] [raw]
Subject: Re: [PATCH] arm64: defconfig: Enable security accelerator driver for TI K3 SoCs

On Mon, Apr 17, 2023, at 15:27, [email protected] wrote:
> From: Kamlesh Gurudasani <[email protected]>
>
> Enable TI's SA2UL driver to support security acceleration on TI K3 SoCs.
>
> Signed-off-by: Kamlesh Gurudasani <[email protected]>
> ---

The normal way that platform specific defconfig changes get merged is
through the platform maintainer tree, so in this case the k3 maintainers
would forward the patch to me.

Since it's simple enough, and I've already merged the other k3 patches
for v6.4, I've added this one directly to the soc/defconfig branch.

ARnd