diff options
author | Mathieu Malaterre <malat@debian.org> | 2019-01-14 21:13:04 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2019-01-15 11:19:45 +1100 |
commit | 9bd10b649826774bb5e1e7fb67544e6500e3f005 (patch) | |
tree | 44f4264e2e50729bb232cd5738bd266faa743f75 | |
parent | 16842516ea9cb237079cb9ffcb6466ce760fc37d (diff) | |
download | linux-9bd10b649826774bb5e1e7fb67544e6500e3f005.tar.gz linux-9bd10b649826774bb5e1e7fb67544e6500e3f005.tar.bz2 linux-9bd10b649826774bb5e1e7fb67544e6500e3f005.zip |
powerpc: Allow CPU selection of G4/74xx variant
GCC supports -mcpu=G4
This patch gives the opportunity to select ALTIVEC for this variant.
Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r-- | arch/powerpc/platforms/Kconfig.cputype | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype index 8c7464c3f27f..7c544607ba32 100644 --- a/arch/powerpc/platforms/Kconfig.cputype +++ b/arch/powerpc/platforms/Kconfig.cputype @@ -153,6 +153,11 @@ config E300C3_CPU bool "e300c3 (831x)" depends on PPC_BOOK3S_32 +config G4_CPU + bool "G4 (74xx)" + depends on PPC_BOOK3S_32 + select ALTIVEC + endchoice config TARGET_CPU_BOOL @@ -171,6 +176,7 @@ config TARGET_CPU default "860" if 860_CPU default "e300c2" if E300C2_CPU default "e300c3" if E300C3_CPU + default "G4" if G4_CPU config PPC_BOOK3S def_bool y |