]> git.karo-electronics.de Git - linux-beck.git/commit
crypto: ux500 - Add driver for CRYP hardware
authorAndreas Westin <andreas.westin@stericsson.com>
Mon, 30 Apr 2012 08:11:17 +0000 (10:11 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 4 May 2012 09:04:51 +0000 (19:04 +1000)
commit2789c08fffeae270820dda5d096634aecc810af5
tree113e76a6908b4b786374c53f010c472a3d663514
parent028fdd87b79a45544a2b6902989f2cbbf73a3eac
crypto: ux500 - Add driver for CRYP hardware

This adds a driver for the ST-Ericsson ux500 crypto hardware
module. It supports AES, DES and 3DES, the driver implements
support for AES-ECB,CBC and CTR.

Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Andreas Westin <andreas.westin@stericsson.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
13 files changed:
arch/arm/mach-ux500/include/mach/crypto-ux500.h [new file with mode: 0644]
drivers/crypto/Kconfig
drivers/crypto/Makefile
drivers/crypto/ux500/Kconfig [new file with mode: 0644]
drivers/crypto/ux500/Makefile [new file with mode: 0644]
drivers/crypto/ux500/cryp/Makefile [new file with mode: 0644]
drivers/crypto/ux500/cryp/cryp.c [new file with mode: 0644]
drivers/crypto/ux500/cryp/cryp.h [new file with mode: 0644]
drivers/crypto/ux500/cryp/cryp_core.c [new file with mode: 0644]
drivers/crypto/ux500/cryp/cryp_irq.c [new file with mode: 0644]
drivers/crypto/ux500/cryp/cryp_irq.h [new file with mode: 0644]
drivers/crypto/ux500/cryp/cryp_irqp.h [new file with mode: 0644]
drivers/crypto/ux500/cryp/cryp_p.h [new file with mode: 0644]