forked from Minki/linux
d74361881f
This adds a new XICS backend that uses OPAL calls, which can be used when we don't have native support for the platform interrupt controller. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
8 lines
248 B
Makefile
8 lines
248 B
Makefile
subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
|
|
|
|
obj-y += xics-common.o
|
|
obj-$(CONFIG_PPC_ICP_NATIVE) += icp-native.o
|
|
obj-$(CONFIG_PPC_ICP_HV) += icp-hv.o
|
|
obj-$(CONFIG_PPC_ICS_RTAS) += ics-rtas.o
|
|
obj-$(CONFIG_PPC_POWERNV) += ics-opal.o icp-opal.o
|