Skip to content

Commit

Permalink
powerpc: Allow CPU selection of e300core variants
Browse files Browse the repository at this point in the history
GCC supports -mcpu=e300c2 and -mcpu=e300c3

This patch gives the opportunity to tune kernel to one of
those two types.

Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
  • Loading branch information
Christophe Leroy authored and Michael Ellerman committed Aug 7, 2018
1 parent 0e00a8c commit d6690b1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions arch/powerpc/platforms/Kconfig.cputype
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,14 @@ config 860_CPU
bool "8xx family"
depends on PPC_8xx

config E300C2_CPU
bool "e300c2 (832x)"
depends on PPC_BOOK3S_32

config E300C3_CPU
bool "e300c3 (831x)"
depends on PPC_BOOK3S_32

endchoice

config TARGET_CPU_BOOL
Expand All @@ -160,6 +168,8 @@ config TARGET_CPU
default "power8" if POWER8_CPU
default "power9" if POWER9_CPU
default "860" if 860_CPU
default "e300c2" if E300C2_CPU
default "e300c3" if E300C3_CPU

config PPC_BOOK3S
def_bool y
Expand Down

0 comments on commit d6690b1

Please sign in to comment.