2a7a47fc6c
On the e500 series, accessing SPR_EPR magically turns into an access at that CPU's IACK register on the MPIC. Implement that logic to get kernels that make use of that feature work. Signed-off-by: Alexander Graf <agraf@suse.de>
13 lines
304 B
Makefile
13 lines
304 B
Makefile
obj-y += translate.o helper.o
|
|
obj-$(CONFIG_SOFTMMU) += machine.o
|
|
obj-$(CONFIG_KVM) += kvm.o kvm_ppc.o
|
|
obj-y += helper.o
|
|
obj-y += excp_helper.o
|
|
obj-y += fpu_helper.o
|
|
obj-y += int_helper.o
|
|
obj-y += mmu_helper.o
|
|
obj-y += timebase_helper.o
|
|
obj-y += misc_helper.o
|
|
obj-y += mem_helper.o
|
|
obj-y += mpic_helper.o
|