mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-18 08:35:08 +08:00
aa9c5adf2f
This is a simple native ICS backend that matches the layout of the Microwatt implementation of ICS. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@ozlabs.org> Reviewed-by: Segher Boessenkool <segher@kernel.crashing.org> [mpe: Add empty ics_native_init() to unbreak non-microwatt builds] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> fixup-ics Link: https://lore.kernel.org/r/YMwW8cxrwB2W5EUN@thinks.paulus.ozlabs.org
9 lines
281 B
Makefile
9 lines
281 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
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_ICS_NATIVE) += ics-native.o
|
|
obj-$(CONFIG_PPC_POWERNV) += ics-opal.o icp-opal.o
|