aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/Kconfig
diff options
context:
space:
mode:
authorNicolas Royer <nicolas@eukrea.com>2013-02-20 11:10:26 -0500
committerHerbert Xu <herbert@gondor.apana.org.au>2013-03-10 04:46:42 -0400
commitd4905b38d1f6b60761a6fd16f45ebd1fac8b6e1f (patch)
tree4f81ac788b02368092133f742e52de9c3dd52c38 /drivers/crypto/Kconfig
parent1f858040c2f78013fd2b10ddeb9dc157c3362b04 (diff)
crypto: atmel-sha - add support for latest release of the IP (0x410)
Updates from IP release 0x320 to 0x400: - add DMA support (previous IP revision use PDC) - add DMA double input buffer support - add SHA224 support Update from IP release 0x400 to 0x410: - add SHA384 and SHA512 support Signed-off-by: Nicolas Royer <nicolas@eukrea.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Eric Bénard <eric@eukrea.com> Tested-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/Kconfig')
-rw-r--r--drivers/crypto/Kconfig8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig
index 87ec4d027c25..e66fb0a332d4 100644
--- a/drivers/crypto/Kconfig
+++ b/drivers/crypto/Kconfig
@@ -361,15 +361,17 @@ config CRYPTO_DEV_ATMEL_TDES
361 will be called atmel-tdes. 361 will be called atmel-tdes.
362 362
363config CRYPTO_DEV_ATMEL_SHA 363config CRYPTO_DEV_ATMEL_SHA
364 tristate "Support for Atmel SHA1/SHA256 hw accelerator" 364 tristate "Support for Atmel SHA hw accelerator"
365 depends on ARCH_AT91 365 depends on ARCH_AT91
366 select CRYPTO_SHA1 366 select CRYPTO_SHA1
367 select CRYPTO_SHA256 367 select CRYPTO_SHA256
368 select CRYPTO_SHA512
368 select CRYPTO_ALGAPI 369 select CRYPTO_ALGAPI
369 help 370 help
370 Some Atmel processors have SHA1/SHA256 hw accelerator. 371 Some Atmel processors have SHA1/SHA224/SHA256/SHA384/SHA512
372 hw accelerator.
371 Select this if you want to use the Atmel module for 373 Select this if you want to use the Atmel module for
372 SHA1/SHA256 algorithms. 374 SHA1/SHA224/SHA256/SHA384/SHA512 algorithms.
373 375
374 To compile this driver as a module, choose M here: the module 376 To compile this driver as a module, choose M here: the module
375 will be called atmel-sha. 377 will be called atmel-sha.