mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-17 07:54:54 +08:00
7384eb725e
This patch introduces two new files which provide some low level functions to interact with EP11 crypto cards: ep11_get_card_info() sends an EP11 query module info CPRB to the addressed card, processes the returning reply and exposes some of the information returned in the new ep11_card_info struct. ep11_get_domain_info() sends an EP11 query domain info CPRB to the addressed card/queue, processes the returning reply and exposes some of the information returned in the new ep11_domain_info struct. Signed-off-by: Harald Freudenberger <freude@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
23 lines
686 B
Makefile
23 lines
686 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# S/390 crypto devices
|
|
#
|
|
|
|
ap-objs := ap_bus.o ap_card.o ap_queue.o
|
|
obj-$(subst m,y,$(CONFIG_ZCRYPT)) += ap.o
|
|
# zcrypt_api.o and zcrypt_msgtype*.o depend on ap.o
|
|
zcrypt-objs := zcrypt_api.o zcrypt_card.o zcrypt_queue.o
|
|
zcrypt-objs += zcrypt_msgtype6.o zcrypt_msgtype50.o
|
|
zcrypt-objs += zcrypt_ccamisc.o zcrypt_ep11misc.o
|
|
obj-$(CONFIG_ZCRYPT) += zcrypt.o
|
|
# adapter drivers depend on ap.o and zcrypt.o
|
|
obj-$(CONFIG_ZCRYPT) += zcrypt_cex2c.o zcrypt_cex2a.o zcrypt_cex4.o
|
|
|
|
# pkey kernel module
|
|
pkey-objs := pkey_api.o
|
|
obj-$(CONFIG_PKEY) += pkey.o
|
|
|
|
# adjunct processor matrix
|
|
vfio_ap-objs := vfio_ap_drv.o vfio_ap_ops.o
|
|
obj-$(CONFIG_VFIO_AP) += vfio_ap.o
|