mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
a19bd79e31
The cxl kernel API has a concept of a default context associated with each PCI device under the virtual PHB. The Mellanox CX4 will also use the cxl kernel API, but it does not use a virtual PHB - rather, the AFU appears as a physical function as a peer to the networking functions. In order to allow the kernel API to work with those networking functions, we will need to associate a default context with them as well. To this end, refactor the corresponding code to do this in vphb.c and export it so that it can be called from the PHB code. Signed-off-by: Ian Munsie <imunsie@au1.ibm.com> Reviewed-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com> Reviewed-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
13 lines
462 B
Makefile
13 lines
462 B
Makefile
ccflags-y := $(call cc-disable-warning, unused-const-variable)
|
|
ccflags-$(CONFIG_PPC_WERROR) += -Werror
|
|
|
|
cxl-y += main.o file.o irq.o fault.o native.o
|
|
cxl-y += context.o sysfs.o debugfs.o pci.o trace.o
|
|
cxl-y += vphb.o phb.o api.o
|
|
cxl-$(CONFIG_PPC_PSERIES) += flash.o guest.o of.o hcalls.o
|
|
obj-$(CONFIG_CXL) += cxl.o
|
|
obj-$(CONFIG_CXL_BASE) += base.o
|
|
|
|
# For tracepoints to include our trace.h from tracepoint infrastructure:
|
|
CFLAGS_trace.o := -I$(src)
|