1.PATH: ${SRCTOP}/sys/contrib/openzfs/module/icp 2 3PACKAGE= zfs 4LIB= icp 5LIBADD= 6 7.if ${MACHINE_ARCH} == "amd64" 8ASM_SOURCES_C = asm-x86_64/aes/aeskey.c 9ASM_SOURCES_AS = \ 10 asm-x86_64/aes/aes_amd64.S \ 11 asm-x86_64/aes/aes_aesni.S \ 12 asm-x86_64/modes/gcm_pclmulqdq.S \ 13 asm-x86_64/modes/aesni-gcm-x86_64.S \ 14 asm-x86_64/modes/aesni-gcm-avx2-vaes.S \ 15 asm-x86_64/modes/ghash-x86_64.S \ 16 asm-x86_64/sha2/sha256-x86_64.S \ 17 asm-x86_64/sha2/sha512-x86_64.S \ 18 asm-x86_64/blake3/blake3_avx2.S \ 19 asm-x86_64/blake3/blake3_avx512.S \ 20 asm-x86_64/blake3/blake3_sse2.S \ 21 asm-x86_64/blake3/blake3_sse41.S 22 23CFLAGS+= -D__amd64 -D_SYS_STACK_H -UHAVE_AES 24.elif ${MACHINE_CPUARCH} == "arm" 25ASM_SOURCES_C = 26ASM_SOURCES_AS = \ 27 asm-arm/sha2/sha256-armv7.S \ 28 asm-arm/sha2/sha512-armv7.S 29.elif ${MACHINE_ARCH} == "aarch64" 30ASM_SOURCES_C = 31ASM_SOURCES_AS = \ 32 asm-aarch64/blake3/b3_aarch64_sse2.S \ 33 asm-aarch64/blake3/b3_aarch64_sse41.S \ 34 asm-aarch64/sha2/sha256-armv8.S \ 35 asm-aarch64/sha2/sha512-armv8.S 36.elif ${MACHINE_ARCH} == "powerpc64" 37ASM_SOURCES_C = 38ASM_SOURCES_AS = \ 39 asm-ppc64/sha2/sha256-ppc.S \ 40 asm-ppc64/sha2/sha512-ppc.S \ 41 asm-ppc64/sha2/sha256-p8.S \ 42 asm-ppc64/sha2/sha512-p8.S 43.elif ${MACHINE_ARCH} == "powerpc64le" 44ASM_SOURCES_C = 45ASM_SOURCES_AS = \ 46 asm-ppc64/blake3/b3_ppc64le_sse2.S \ 47 asm-ppc64/blake3/b3_ppc64le_sse41.S \ 48 asm-ppc64/sha2/sha256-ppc.S \ 49 asm-ppc64/sha2/sha512-ppc.S \ 50 asm-ppc64/sha2/sha256-p8.S \ 51 asm-ppc64/sha2/sha512-p8.S 52.else 53ASM_SOURCES_C = 54ASM_SOURCES_AS = 55.endif 56 57KERNEL_C = \ 58 spi/kcf_spi.c \ 59 api/kcf_ctxops.c \ 60 api/kcf_cipher.c \ 61 api/kcf_mac.c \ 62 algs/aes/aes_impl_aesni.c \ 63 algs/aes/aes_impl_generic.c \ 64 algs/aes/aes_impl_x86-64.c \ 65 algs/aes/aes_impl.c \ 66 algs/aes/aes_modes.c \ 67 algs/blake3/blake3.c \ 68 algs/blake3/blake3_generic.c \ 69 algs/blake3/blake3_impl.c \ 70 algs/edonr/edonr.c \ 71 algs/modes/modes.c \ 72 algs/modes/gcm_generic.c \ 73 algs/modes/gcm_pclmulqdq.c \ 74 algs/modes/gcm.c \ 75 algs/modes/ccm.c \ 76 algs/sha2/sha2_generic.c \ 77 algs/sha2/sha256_impl.c \ 78 algs/sha2/sha512_impl.c \ 79 algs/skein/skein.c \ 80 algs/skein/skein_block.c \ 81 algs/skein/skein_iv.c \ 82 illumos-crypto.c \ 83 io/aes.c \ 84 io/sha2_mod.c \ 85 core/kcf_sched.c \ 86 core/kcf_prov_lib.c \ 87 core/kcf_callprov.c \ 88 core/kcf_mech_tabs.c \ 89 core/kcf_prov_tabs.c \ 90 $(ASM_SOURCES_C) 91 92.PATH: ${SRCTOP}/sys/contrib/openzfs/module/zfs 93KERNEL_C+= zfs_impl.c 94 95SRCS= $(ASM_SOURCES_AS) $(KERNEL_C) 96 97WARNS?= 2 98SHLIB_MAJOR= 3 99CSTD= c99 100CFLAGS+= -DIN_BASE 101CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include 102CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/ 103CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/os/freebsd 104CFLAGS+= -I${SRCTOP}/sys 105CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/include 106CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/module/icp/include 107CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libzpool/include 108CFLAGS+= -include ${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/spl/sys/ccompile.h 109CFLAGS+= -DHAVE_ISSETUGID 110CFLAGS+= -include ${SRCTOP}/sys/modules/zfs/zfs_config.h 111 112CFLAGS.aes_amd64.S+= -DLOCORE 113CFLAGS.aes_aesni.S+= -DLOCORE 114CFLAGS.gcm_pclmulqdq.S+= -DLOCORE 115CFLAGS.aesni-gcm-x86_64.S+= -DLOCORE 116CFLAGS.aesni-gcm-avx2-vaes.S+= -DLOCORE 117CFLAGS.ghash-x86_64.S+= -DLOCORE 118CFLAGS.sha256-x86_64.S+= -DLOCORE 119CFLAGS.sha512-x86_64.S+= -DLOCORE 120CFLAGS.blake3_avx2.S = -DLOCORE 121CFLAGS.blake3_avx512.S = -DLOCORE 122CFLAGS.blake3_sse2.S = -DLOCORE 123CFLAGS.blake3_sse41.S = -DLOCORE 124CFLAGS.b3_aarch64_sse2.S = -DLOCORE 125CFLAGS.b3_aarch64_sse41.S = -DLOCORE 126CFLAGS.sha256-armv7.S = -DLOCORE 127CFLAGS.sha256-armv8.S = -DLOCORE 128CFLAGS.sha512-armv7.S = -DLOCORE 129CFLAGS.sha512-armv8.S = -DLOCORE 130CFLAGS.b3_ppc64le_sse2.S = -DLOCORE 131CFLAGS.b3_ppc64le_sse41.S = -DLOCORE 132CFLAGS.sha256-p8.S = -DLOCORE 133CFLAGS.sha256-ppc.S = -DLOCORE 134CFLAGS.sha512-p8.S = -DLOCORE 135CFLAGS.sha512-ppc.S = -DLOCORE 136 137 138LDFLAGS.bfd+= -Wl,-znoexecstack 139 140.include <bsd.lib.mk> 141