ed9b7f4414
Add support for AES-GCM using OpenSSL's accelerated routines. Reviewed by: jhb Differential Revision: https://reviews.freebsd.org/D27454 Sponsored by: Ampere Computing Submitted by: Klara, Inc.
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/crypto/armv8
|
|
.PATH: ${SRCTOP}/sys/crypto/openssl/aarch64
|
|
|
|
KMOD= armv8crypto
|
|
SRCS= armv8_crypto.c
|
|
SRCS+= device_if.h bus_if.h opt_bus.h cryptodev_if.h
|
|
|
|
OBJS+= armv8_crypto_wrap.o aesv8-armx.o ghashv8-armx.o
|
|
|
|
# Remove -nostdinc so we can get the intrinsics.
|
|
armv8_crypto_wrap.o: armv8_crypto_wrap.c
|
|
${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc:N-mgeneral-regs-only} \
|
|
-I${SRCTOP}/sys/crypto/armv8 \
|
|
${WERROR} ${PROF} \
|
|
-march=armv8-a+crypto ${.IMPSRC}
|
|
${CTFCONVERT_CMD}
|
|
|
|
aesv8-armx.o: aesv8-armx.S
|
|
${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc:N-mgeneral-regs-only} \
|
|
-I${SRCTOP}/sys/crypto/armv8 \
|
|
-I${SRCTOP}/sys/crypto/openssl/crypto \
|
|
${WERROR} ${PROF} \
|
|
-march=armv8-a+crypto ${.IMPSRC}
|
|
${CTFCONVERT_CMD}
|
|
|
|
ghashv8-armx.o: ghashv8-armx.S
|
|
${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc:N-mgeneral-regs-only} \
|
|
-I${SRCTOP}/sys/crypto/armv8 \
|
|
-I${SRCTOP}/sys/crypto/openssl/crypto \
|
|
${WERROR} ${PROF} \
|
|
-march=armv8-a+crypto ${.IMPSRC}
|
|
${CTFCONVERT_CMD}
|
|
|
|
armv8_crypto_wrap.o: armv8_crypto.h
|
|
|
|
.include <bsd.kmod.mk>
|