mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 03:30:53 +07:00
1ece355b68
Compile the new smp ipi mux and demux code only if a platform will make use of it. The new config is selected as required. The new cause_ipi smp op is only available conditionally to point out configs where the select is required; this makes setting the op an immediate fail instead of a deferred unresolved symbol at link. This also creates a new config for power surge powermac upgrade support that can be disabled in expert mode but is default on. I also removed the depends / default y on CONFIG_XICS since it is selected by PSERIES. Signed-off-by: Milton Miller <miltonm@bga.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
31 lines
746 B
Plaintext
31 lines
746 B
Plaintext
config PPC_PMAC
|
|
bool "Apple PowerMac based machines"
|
|
depends on PPC_BOOK3S
|
|
select MPIC
|
|
select PCI
|
|
select PPC_INDIRECT_PCI if PPC32
|
|
select PPC_MPC106 if PPC32
|
|
select PPC_NATIVE
|
|
default y
|
|
|
|
config PPC_PMAC64
|
|
bool
|
|
depends on PPC_PMAC && POWER4
|
|
select MPIC
|
|
select U3_DART
|
|
select MPIC_U3_HT_IRQS
|
|
select GENERIC_TBSYNC
|
|
select PPC_970_NAP
|
|
default y
|
|
|
|
config PPC_PMAC32_PSURGE
|
|
bool "Support for powersurge upgrade cards" if EXPERT
|
|
depends on SMP && PPC32 && PPC_PMAC
|
|
select PPC_SMP_MUXED_IPI
|
|
default y
|
|
help
|
|
The powersurge cpu boards can be used in the generation
|
|
of powermacs that have a socket for an upgradeable cpu card,
|
|
including the 7500, 8500, 9500, 9600. Support exists for
|
|
both dual and quad socket upgrade cards.
|