mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
e5e16d8f3e
Currently, little endian is only supported on powernv and pseries, however, Kconfigs still allow us to include other platforms in a LE kernel, this may result in space wasting or even build error if some BE-only platforms always assume they are built for a BE kernel. So just modify the Kconfigs of BE-only platforms to remove them from being built for a LE kernel. For 32bit only platforms, nothing needs to be done, because CPU_LITTLE_ENDIAN depends on PPC64. For 64bit supported platforms, add CPU_BIG_ENDIAN to dependencies explicitly, so that these platforms will be disabled for LE [Suggested-by: Cédric Le Goater <clg@fr.ibm.com>]. Signed-off-by: Boqun Feng <boqun.feng@gmail.com> Acked-by: Geoff Levand <geoff@infradead.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
31 lines
763 B
Plaintext
31 lines
763 B
Plaintext
config PPC_PMAC
|
|
bool "Apple PowerMac based machines"
|
|
depends on PPC_BOOK3S && CPU_BIG_ENDIAN
|
|
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 && PPC64
|
|
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.
|