Message ID | 20191218130616.13860-3-aford173@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [V3,1/3] crypto: caam: Add support for i.MX8M Mini | expand |
On 12/18/2019 3:06 PM, Adam Ford wrote: > Both the i.MX8MQ and i.MX8M Mini support the CAAM driver, but it > is currently not enabled by default. > > This patch enables this as a module. > > Signed-off-by: Adam Ford <aford173@gmail.com> Reviewed-by: Horia Geantă <horia.geanta@nxp.com> Thanks, Horia
On Wed, Dec 18, 2019 at 07:06:16AM -0600, Adam Ford wrote: > Both the i.MX8MQ and i.MX8M Mini support the CAAM driver, but it > is currently not enabled by default. > > This patch enables this as a module. > > Signed-off-by: Adam Ford <aford173@gmail.com> Applied, thanks.
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 6a83ba2aea3e..d08a34371f74 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -845,6 +845,7 @@ CONFIG_SECURITY=y CONFIG_CRYPTO_ECHAINIV=y CONFIG_CRYPTO_ANSI_CPRNG=y CONFIG_CRYPTO_DEV_SUN8I_CE=m +CONFIG_CRYPTO_DEV_FSL_CAAM=m CONFIG_CRYPTO_DEV_HISI_ZIP=m CONFIG_CMA_SIZE_MBYTES=32 CONFIG_PRINTK_TIME=y
Both the i.MX8MQ and i.MX8M Mini support the CAAM driver, but it is currently not enabled by default. This patch enables this as a module. Signed-off-by: Adam Ford <aford173@gmail.com> --- V3: Make it a module instead of building it into the kernel. V2: New to series