From: Teh Wen Ping <wen.ping.teh@xxxxxxxxx> This patch introduces a crypto service driver for Intel SoCFPGA family. The FPGA Crypto Service (FCS) includes a large set of security features that are provided by the Secure Device Manager(SDM) in FPGA. The driver provide IOCTL interface for user to call the crypto services and send them to SDM's mailbox. Teh Wen Ping (2): crypto: intel-fcs: crypto service driver for Intel SoCFPGA family arm64: defconfig: add CRYPTO_DEV_INTEL_FCS arch/arm64/configs/defconfig | 1 + drivers/crypto/Kconfig | 11 + drivers/crypto/Makefile | 1 + drivers/crypto/intel_fcs.c | 726 +++++++++++++++++++++++++++ include/uapi/linux/intel_fcs-ioctl.h | 211 ++++++++ 5 files changed, 950 insertions(+) create mode 100644 drivers/crypto/intel_fcs.c create mode 100644 include/uapi/linux/intel_fcs-ioctl.h -- 2.25.1