diff options
author | Andreas Westin <andreas.westin@stericsson.com> | 2012-04-30 10:11:17 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-05-04 11:04:51 +0200 |
commit | 2789c08fffeae270820dda5d096634aecc810af5 (patch) | |
tree | 113e76a6908b4b786374c53f010c472a3d663514 /drivers/crypto/ux500/cryp/Makefile | |
parent | hwrng: Kconfig - modify default state for atmel-rng driver (diff) | |
download | linux-2789c08fffeae270820dda5d096634aecc810af5.tar.xz linux-2789c08fffeae270820dda5d096634aecc810af5.zip |
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>
Diffstat (limited to 'drivers/crypto/ux500/cryp/Makefile')
-rw-r--r-- | drivers/crypto/ux500/cryp/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/crypto/ux500/cryp/Makefile b/drivers/crypto/ux500/cryp/Makefile new file mode 100644 index 000000000000..e5d362a6f680 --- /dev/null +++ b/drivers/crypto/ux500/cryp/Makefile @@ -0,0 +1,13 @@ +#/* +# * Copyright (C) ST-Ericsson SA 2010 +# * Author: shujuan.chen@stericsson.com for ST-Ericsson. +# * License terms: GNU General Public License (GPL) version 2 */ + +ifdef CONFIG_CRYPTO_DEV_UX500_DEBUG +CFLAGS_cryp_core.o := -DDEBUG -O0 +CFLAGS_cryp.o := -DDEBUG -O0 +CFLAGS_cryp_irq.o := -DDEBUG -O0 +endif + +obj-$(CONFIG_CRYPTO_DEV_UX500_CRYP) += ux500_cryp.o +ux500_cryp-objs := cryp.o cryp_irq.o cryp_core.o |