mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
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>
7 lines
248 B
Makefile
7 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
|