forked from Minki/linux
9d12ba86f8
Add Broadcom Secure Processing Unit (SPU) crypto driver for SPU hardware crypto offload. The driver supports ablkcipher, ahash, and aead symmetric crypto operations. Signed-off-by: Steve Lin <steven.lin1@broadcom.com> Signed-off-by: Rob Rice <rob.rice@broadcom.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
16 lines
407 B
Makefile
16 lines
407 B
Makefile
# File: drivers/crypto/bcm/Makefile
|
|
#
|
|
# Makefile for crypto acceleration files for Broadcom SPU driver
|
|
#
|
|
# Uncomment to enable debug tracing in the SPU driver.
|
|
# CFLAGS_util.o := -DDEBUG
|
|
# CFLAGS_cipher.o := -DDEBUG
|
|
# CFLAGS_spu.o := -DDEBUG
|
|
# CFLAGS_spu2.o := -DDEBUG
|
|
|
|
obj-$(CONFIG_CRYPTO_DEV_BCM_SPU) := bcm_crypto_spu.o
|
|
|
|
bcm_crypto_spu-objs := util.o spu.o spu2.o cipher.o
|
|
|
|
ccflags-y += -I. -DBCMDRIVER
|