diff options
author | Greg Kurz <groug@kaod.org> | 2020-12-24 18:22:55 +0100 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2021-01-06 11:09:59 +1100 |
commit | 27d5caec4fc5987b89257d2160d042717001dad2 (patch) | |
tree | 2d7fcc1f5ec705cfecb8edf7d7c83030c9e6304c /hw/ppc/Kconfig | |
parent | b040e591c5cf116b8a51821db0de09213530c689 (diff) | |
download | qemu-27d5caec4fc5987b89257d2160d042717001dad2.zip qemu-27d5caec4fc5987b89257d2160d042717001dad2.tar.gz qemu-27d5caec4fc5987b89257d2160d042717001dad2.tar.bz2 |
ppc: Simplify reverse dependencies of POWERNV and PSERIES on XICS and XIVE
Have PSERIES to select XICS and XIVE, and directly check PSERIES
in hw/intc/meson.build to enable build of the XICS and XIVE sPAPR
backends, like POWERNV already does. This allows to get rid of the
intermediate XICS_SPAPR and XIVE_SPAPR.
Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <160883057560.253005.4206568349917633920.stgit@bahia.lan>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/ppc/Kconfig')
-rw-r--r-- | hw/ppc/Kconfig | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig index e35710c..a213994 100644 --- a/hw/ppc/Kconfig +++ b/hw/ppc/Kconfig @@ -7,8 +7,8 @@ config PSERIES select PCI select SPAPR_VSCSI select VFIO if LINUX # needed by spapr_pci_vfio.c - select XICS_SPAPR - select XIVE_SPAPR + select XICS + select XIVE select MSI_NONBROKEN select FDT_PPC select CHRP_NVRAM @@ -129,16 +129,6 @@ config VIRTEX select XILINX_ETHLITE select FDT_PPC -config XIVE - bool - depends on POWERNV || PSERIES - -config XIVE_SPAPR - bool - default y - depends on PSERIES - select XIVE - # Only used by 64-bit targets config FW_CFG_PPC bool |