mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
2789c08fff
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>
14 lines
407 B
Makefile
14 lines
407 B
Makefile
#/*
|
|
# * 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
|