aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/Kconfig
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2007-06-17 19:06:52 -0400
committerKumar Gala <galak@kernel.crashing.org>2007-06-29 02:54:22 -0400
commitb9fd305db0b4723e70f1a5cf06e4a6949755331c (patch)
treeeb7eb3d14cbb77b7e20e097c2263a45694205362 /arch/powerpc/platforms/Kconfig
parenteff2ebd207af9f501af0ef667a7d14befcb36c1b (diff)
[POWERPC] move 82xx/83xx/86xx Kconfig options to platform selection
The cores used in the MPC82xx/83xx/86xx embedded controllers are very similar to those in the 32 bit general-purpose processors, so it makes sense to treat them as the same CPU family. Choosing between the embedded platforms and the multiplatform code is now done in the platform menu, but functionally everything stays the same. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/powerpc/platforms/Kconfig')
-rw-r--r--arch/powerpc/platforms/Kconfig25
1 files changed, 24 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig
index d6c475ca311d..df67ff50c0da 100644
--- a/arch/powerpc/platforms/Kconfig
+++ b/arch/powerpc/platforms/Kconfig
@@ -2,7 +2,7 @@ menu "Platform support"
2 2
3choice 3choice
4 prompt "Machine type" 4 prompt "Machine type"
5 depends on PPC64 || CLASSIC32 5 depends on PPC64 || 6xx
6 default PPC_MULTIPLATFORM 6 default PPC_MULTIPLATFORM
7 7
8config PPC_MULTIPLATFORM 8config PPC_MULTIPLATFORM
@@ -16,8 +16,31 @@ config EMBEDDED6xx
16 bool "Embedded 6xx/7xx/7xxx-based board" 16 bool "Embedded 6xx/7xx/7xxx-based board"
17 depends on PPC32 && (BROKEN||BROKEN_ON_SMP) 17 depends on PPC32 && (BROKEN||BROKEN_ON_SMP)
18 18
19config PPC_82xx
20 bool "Freescale 82xx"
21 depends on 6xx
22
23config PPC_83xx
24 bool "Freescale 83xx"
25 depends on 6xx
26 select FSL_SOC
27 select 83xx
28 select WANT_DEVICE_TREE
29
30config PPC_86xx
31 bool "Freescale 86xx"
32 depends on 6xx
33 select FSL_SOC
34 select FSL_PCIE
35 select ALTIVEC
36 help
37 The Freescale E600 SoCs have 74xx cores.
19endchoice 38endchoice
20 39
40config CLASSIC32
41 def_bool y
42 depends on 6xx && PPC_MULTIPLATFORM
43
21source "arch/powerpc/platforms/pseries/Kconfig" 44source "arch/powerpc/platforms/pseries/Kconfig"
22source "arch/powerpc/platforms/iseries/Kconfig" 45source "arch/powerpc/platforms/iseries/Kconfig"
23source "arch/powerpc/platforms/chrp/Kconfig" 46source "arch/powerpc/platforms/chrp/Kconfig"