From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: <linuxppc-dev@ozlabs.org>
Subject: [PATCH 3/5] powerpc: Introduce CONFIG_PPC_BOOK3S
Date: Tue, 02 Jun 2009 17:50:09 +1000 [thread overview]
Message-ID: <20090602075022.57FE2DDF72@ozlabs.org> (raw)
In-Reply-To: <1243929002.876045.46197476176.qpush@grosgo>
This patch introduce a new Kconfig option, CONFIG_PPC_BOOK3S
that represents processors that are compliant with the "classic"
(aka "server") variant of the PowerPC architecture.
It replaces CONFIG_6xx on 32-bit (though the symbol is still
defined for compatibility) and encompass all currently supported
64-bit processors.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
arch/powerpc/platforms/Kconfig.cputype | 28 +++++++++++++++++-----------
1 file changed, 17 insertions(+), 11 deletions(-)
--- linux-work.orig/arch/powerpc/platforms/Kconfig.cputype 2009-06-02 16:29:27.000000000 +1000
+++ linux-work/arch/powerpc/platforms/Kconfig.cputype 2009-06-02 16:55:01.000000000 +1000
@@ -9,7 +9,6 @@ menu "Processor support"
choice
prompt "Processor Type"
depends on PPC32
- default 6xx
help
There are five families of 32 bit PowerPC chips supported.
The most common ones are the desktop and server CPUs (601, 603,
@@ -21,24 +20,27 @@ choice
If unsure, select 52xx/6xx/7xx/74xx/82xx/83xx/86xx.
-config 6xx
+config PPC_BOOK3S
bool "512x/52xx/6xx/7xx/74xx/82xx/83xx/86xx"
select PPC_FPU
config PPC_85xx
bool "Freescale 85xx"
+ depends on PPC32
select E500
select FSL_SOC
select MPC85xx
config PPC_8xx
bool "Freescale 8xx"
+ depends on PPC32
select FSL_SOC
select 8xx
select PPC_LIB_RHEAP
config 40x
bool "AMCC 40x"
+ depends on PPC32
select PPC_DCR_NATIVE
select PPC_UDBG_16550
select 4xx_SOC
@@ -46,6 +48,7 @@ config 40x
config 44x
bool "AMCC 44x"
+ depends on PPC32
select PPC_DCR_NATIVE
select PPC_UDBG_16550
select 4xx_SOC
@@ -54,16 +57,15 @@ config 44x
config E200
bool "Freescale e200"
+ depends on PPC32
endchoice
-# Until we have a choice of exclusive CPU types on 64-bit, we always
-# use PPC_BOOK3S. On 32-bit, this is equivalent to 6xx which is
-# "classic" MMU
-
config PPC_BOOK3S
- def_bool y
- depends on PPC64 || 6xx
+ default y
+ depends on PPC64
+ select PPC_FPU
+
config POWER4_ONLY
bool "Optimize for POWER4"
@@ -74,6 +76,10 @@ config POWER4_ONLY
The resulting binary will not work on POWER3 or RS64 processors
when compiled with binutils 2.15 or later.
+config 6xx
+ def_bool y
+ depends on PPC32 && PPC_BOOK3S
+
config POWER3
bool
depends on PPC64 && PPC_BOOK3S
@@ -125,6 +131,7 @@ config BOOKE
config FSL_BOOKE
bool
depends on E200 || E500
+ select PPC_BOOK3E_MMU
default y
config FSL_EMB_PERFMON
@@ -203,7 +210,7 @@ config SPE
config PPC_STD_MMU
bool
- depends on 6xx || PPC64
+ depends on PPC_BOOK3S
default y
config PPC_STD_MMU_32
@@ -219,8 +226,7 @@ config PPC_MMU_NOHASH
depends on !PPC_STD_MMU
config PPC_BOOK3E_MMU
- def_bool y
- depends on FSL_BOOKE
+ def_bool n
config PPC_MM_SLICES
bool
next prev parent reply other threads:[~2009-06-02 7:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-02 7:50 [PATCH 0/5] powerpc: A bit more way paved toward 64-bit Book3E support Benjamin Herrenschmidt
2009-06-02 7:50 ` [PATCH 1/5] powerpc: Move VMX and VSX asm code to vector.S Benjamin Herrenschmidt
2009-06-02 7:50 ` [PATCH 2/5] powerpc: Split exception handling out of head_64.S Benjamin Herrenschmidt
2009-06-02 10:32 ` Benjamin Herrenschmidt
2009-06-02 7:50 ` Benjamin Herrenschmidt [this message]
2009-06-02 10:49 ` [PATCH 3/5] powerpc: Introduce CONFIG_PPC_BOOK3S Arnd Bergmann
2009-06-02 11:37 ` Benjamin Herrenschmidt
2009-06-03 1:54 ` Benjamin Herrenschmidt
2009-06-02 7:50 ` [PATCH 4/5] powerpc: Separate PACA fields for server CPUs Benjamin Herrenschmidt
2009-06-02 7:50 ` [PATCH 5/5] powerpc: Shield code specific to 64-bit server processors Benjamin Herrenschmidt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090602075022.57FE2DDF72@ozlabs.org \
--to=benh@kernel.crashing.org \
--cc=linuxppc-dev@ozlabs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.