U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] crypto: fsl: Hide CAAM_64BIT symbol behind FSL_CAAM
@ 2026-06-21  2:40 Marek Vasut
  2026-06-21 15:36 ` Tom Rini
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Marek Vasut @ 2026-06-21  2:40 UTC (permalink / raw)
  To: u-boot; +Cc: Marek Vasut, Gaurav Jain, Heiko Schocher, Peng Fan, Tom Rini

Make CAAM_64BIT selectable only in case FSL_CAAM is selected,
otherwise CAAM_64BIT shows up in configs of unrelated platforms.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
Cc: Gaurav Jain <gaurav.jain@nxp.com>
Cc: Heiko Schocher <hs@nabladev.com>
Cc: Peng Fan <peng.fan@nxp.com>
Cc: Tom Rini <trini@konsulko.com>
Cc: u-boot@lists.denx.de
---
 drivers/crypto/fsl/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/crypto/fsl/Kconfig b/drivers/crypto/fsl/Kconfig
index eb01c6cf700..936e4d9b513 100644
--- a/drivers/crypto/fsl/Kconfig
+++ b/drivers/crypto/fsl/Kconfig
@@ -20,6 +20,7 @@ config SYS_FSL_MAX_NUM_OF_SEC
 
 config CAAM_64BIT
 	bool
+	depends on FSL_CAAM
 	default y if PHYS_64BIT && !ARCH_IMX8M && !ARCH_IMX8
 	help
 	  Select Crypto driver for 64 bits CAAM version
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] crypto: fsl: Hide CAAM_64BIT symbol behind FSL_CAAM
  2026-06-21  2:40 [PATCH] crypto: fsl: Hide CAAM_64BIT symbol behind FSL_CAAM Marek Vasut
@ 2026-06-21 15:36 ` Tom Rini
  2026-06-24  7:51 ` Peng Fan
  2026-06-24 14:17 ` Heiko Schocher
  2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2026-06-21 15:36 UTC (permalink / raw)
  To: Marek Vasut; +Cc: u-boot, Gaurav Jain, Heiko Schocher, Peng Fan

[-- Attachment #1: Type: text/plain, Size: 323 bytes --]

On Sun, Jun 21, 2026 at 04:40:23AM +0200, Marek Vasut wrote:

> Make CAAM_64BIT selectable only in case FSL_CAAM is selected,
> otherwise CAAM_64BIT shows up in configs of unrelated platforms.
> 
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] crypto: fsl: Hide CAAM_64BIT symbol behind FSL_CAAM
  2026-06-21  2:40 [PATCH] crypto: fsl: Hide CAAM_64BIT symbol behind FSL_CAAM Marek Vasut
  2026-06-21 15:36 ` Tom Rini
@ 2026-06-24  7:51 ` Peng Fan
  2026-06-24 14:17 ` Heiko Schocher
  2 siblings, 0 replies; 4+ messages in thread
From: Peng Fan @ 2026-06-24  7:51 UTC (permalink / raw)
  To: Marek Vasut; +Cc: u-boot, Gaurav Jain, Heiko Schocher, Peng Fan, Tom Rini

On Sun, Jun 21, 2026 at 04:40:23AM +0200, Marek Vasut wrote:
>Make CAAM_64BIT selectable only in case FSL_CAAM is selected,
>otherwise CAAM_64BIT shows up in configs of unrelated platforms.
>
>Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] crypto: fsl: Hide CAAM_64BIT symbol behind FSL_CAAM
  2026-06-21  2:40 [PATCH] crypto: fsl: Hide CAAM_64BIT symbol behind FSL_CAAM Marek Vasut
  2026-06-21 15:36 ` Tom Rini
  2026-06-24  7:51 ` Peng Fan
@ 2026-06-24 14:17 ` Heiko Schocher
  2 siblings, 0 replies; 4+ messages in thread
From: Heiko Schocher @ 2026-06-24 14:17 UTC (permalink / raw)
  To: Marek Vasut, u-boot; +Cc: Gaurav Jain, Peng Fan, Tom Rini

Hello Marek,

On 21.06.26 04:40, Marek Vasut wrote:
> Make CAAM_64BIT selectable only in case FSL_CAAM is selected,
> otherwise CAAM_64BIT shows up in configs of unrelated platforms.
> 
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
> ---
> Cc: Gaurav Jain <gaurav.jain@nxp.com>
> Cc: Heiko Schocher <hs@nabladev.com>
> Cc: Peng Fan <peng.fan@nxp.com>
> Cc: Tom Rini <trini@konsulko.com>
> Cc: u-boot@lists.denx.de
> ---
>   drivers/crypto/fsl/Kconfig | 1 +
>   1 file changed, 1 insertion(+)

Thanks!

Reviewed-by: Heiko Schocher <hs@nabladev.com>

bye,
Heiko
-- 
Nabla Software Engineering
HRB 40522 Augsburg
Phone: +49 821 45592596
E-Mail: office@nabladev.com
Geschäftsführer : Stefano Babic

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-06-24 14:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-21  2:40 [PATCH] crypto: fsl: Hide CAAM_64BIT symbol behind FSL_CAAM Marek Vasut
2026-06-21 15:36 ` Tom Rini
2026-06-24  7:51 ` Peng Fan
2026-06-24 14:17 ` Heiko Schocher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox