mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 01:04:08 +08:00
GenWQE Enable driver
Enable possiblity to configure and build this driver. Signed-off-by: Frank Haverkamp <haver@linux.vnet.ibm.com> Co-authors: Joerg-Stephan Vogt <jsvogt@de.ibm.com>, Michael Jung <MIJUNG@de.ibm.com>, Michael Ruettger <michael@ibmra.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b2a65138b5
commit
76f5adbcb3
@ -525,4 +525,5 @@ source "drivers/misc/altera-stapl/Kconfig"
|
|||||||
source "drivers/misc/mei/Kconfig"
|
source "drivers/misc/mei/Kconfig"
|
||||||
source "drivers/misc/vmw_vmci/Kconfig"
|
source "drivers/misc/vmw_vmci/Kconfig"
|
||||||
source "drivers/misc/mic/Kconfig"
|
source "drivers/misc/mic/Kconfig"
|
||||||
|
source "drivers/misc/genwqe/Kconfig"
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -53,3 +53,4 @@ obj-$(CONFIG_VMWARE_VMCI) += vmw_vmci/
|
|||||||
obj-$(CONFIG_LATTICE_ECP3_CONFIG) += lattice-ecp3-config.o
|
obj-$(CONFIG_LATTICE_ECP3_CONFIG) += lattice-ecp3-config.o
|
||||||
obj-$(CONFIG_SRAM) += sram.o
|
obj-$(CONFIG_SRAM) += sram.o
|
||||||
obj-y += mic/
|
obj-y += mic/
|
||||||
|
obj-$(CONFIG_GENWQE) += genwqe/
|
||||||
|
13
drivers/misc/genwqe/Kconfig
Normal file
13
drivers/misc/genwqe/Kconfig
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#
|
||||||
|
# IBM Accelerator Family 'GenWQE'
|
||||||
|
#
|
||||||
|
|
||||||
|
menuconfig GENWQE
|
||||||
|
tristate "GenWQE PCIe Accelerator"
|
||||||
|
depends on PCI && 64BIT
|
||||||
|
select CRC_ITU_T
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Enables PCIe card driver for IBM GenWQE accelerators.
|
||||||
|
The user-space interface is described in
|
||||||
|
include/linux/genwqe/genwqe_card.h.
|
7
drivers/misc/genwqe/Makefile
Normal file
7
drivers/misc/genwqe/Makefile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
# Makefile for GenWQE driver
|
||||||
|
#
|
||||||
|
|
||||||
|
obj-$(CONFIG_GENWQE) := genwqe_card.o
|
||||||
|
genwqe_card-objs := card_base.o card_dev.o card_ddcb.o card_sysfs.o \
|
||||||
|
card_debugfs.o card_utils.o
|
Loading…
Reference in New Issue
Block a user