diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2021-02-02 01:28:07 +0530 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2021-02-23 14:12:53 -0600 |
commit | 812ce2f8d14ea791edd88c36ebcc9017bf4c88cb (patch) | |
tree | 9aeb6ca446f9b7c2f0f6c8847a4966f1f581fc41 /drivers/ntb/hw/Makefile | |
parent | 599f86872f9ce8a0a0bd111a23442b18e8ee7059 (diff) | |
download | linux-812ce2f8d14ea791edd88c36ebcc9017bf4c88cb.tar.gz linux-812ce2f8d14ea791edd88c36ebcc9017bf4c88cb.tar.bz2 linux-812ce2f8d14ea791edd88c36ebcc9017bf4c88cb.zip |
NTB: Add support for EPF PCI Non-Transparent Bridge
Add support for EPF PCI Non-Transparent Bridge (NTB) devices. This driver
is platform independent and may be used by any platform that has multiple
PCI endpoint instances configured using the pci-epf-ntb driver. The driver
connnects to the standard NTB subsystem interface. The EPF NTB device has a
configurable number of memory windows (max 4), a configurable number of
doorbells (max 32), and a configurable number of scratch-pad registers.
Link: https://lore.kernel.org/r/20210201195809.7342-16-kishon@ti.com
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Diffstat (limited to 'drivers/ntb/hw/Makefile')
-rw-r--r-- | drivers/ntb/hw/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ntb/hw/Makefile b/drivers/ntb/hw/Makefile index 4714d6238845..223ca592b5f9 100644 --- a/drivers/ntb/hw/Makefile +++ b/drivers/ntb/hw/Makefile @@ -2,4 +2,5 @@ obj-$(CONFIG_NTB_AMD) += amd/ obj-$(CONFIG_NTB_IDT) += idt/ obj-$(CONFIG_NTB_INTEL) += intel/ +obj-$(CONFIG_NTB_EPF) += epf/ obj-$(CONFIG_NTB_SWITCHTEC) += mscc/ |