* [PATCH v2] powerpc: Fix PowerPC 750CL and 750GX CPU features
@ 2007-04-12 18:33 Josh Boyer
2007-04-12 19:28 ` Segher Boessenkool
0 siblings, 1 reply; 3+ messages in thread
From: Josh Boyer @ 2007-04-12 18:33 UTC (permalink / raw)
To: paulus; +Cc: linuxppc-dev
PowerPC 750CL has high BATs. The patch below adds a CPU_FTRS_750CL that
includes that. Without it, the original firmware mappings in the high BATs
aren't cleared which continue to override the linux translations.
It also adds CPU_FTR_COMMON to CPU_FTRS_750GX for completeness.
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
---
arch/powerpc/kernel/cputable.c | 4 ++--
include/asm-powerpc/cputable.h | 10 +++++++---
2 files changed, 9 insertions(+), 5 deletions(-)
--- linux-2.6.orig/arch/powerpc/kernel/cputable.c
+++ linux-2.6/arch/powerpc/kernel/cputable.c
@@ -562,12 +562,12 @@ static struct cpu_spec cpu_specs[] = {
.pvr_mask = 0xfffff0f0,
.pvr_value = 0x00087010,
.cpu_name = "750CL",
- .cpu_features = CPU_FTRS_750,
+ .cpu_features = CPU_FTRS_750CL,
.cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
.icache_bsize = 32,
.dcache_bsize = 32,
.num_pmcs = 4,
- .cpu_setup = __setup_cpu_750cx,
+ .cpu_setup = __setup_cpu_750,
.platform = "ppc750",
},
{ /* 745/755 */
--- linux-2.6.orig/include/asm-powerpc/cputable.h
+++ linux-2.6/include/asm-powerpc/cputable.h
@@ -223,6 +223,10 @@ extern void do_feature_fixups(unsigned l
CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
CPU_FTR_PPC_LE)
+#define CPU_FTRS_750CL (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
+ CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
+ CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
+ CPU_FTR_HAS_HIGH_BATS | CPU_FTR_PPC_LE)
#define CPU_FTRS_750FX1 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
@@ -235,9 +239,9 @@ extern void do_feature_fixups(unsigned l
CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
CPU_FTR_DUAL_PLL_750FX | CPU_FTR_HAS_HIGH_BATS | CPU_FTR_PPC_LE)
-#define CPU_FTRS_750GX (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_MAYBE_CAN_DOZE | \
- CPU_FTR_USE_TB | CPU_FTR_L2CR | CPU_FTR_TAU | \
- CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
+#define CPU_FTRS_750GX (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
+ CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
+ CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
CPU_FTR_DUAL_PLL_750FX | CPU_FTR_HAS_HIGH_BATS | CPU_FTR_PPC_LE)
#define CPU_FTRS_7400_NOTAU (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] powerpc: Fix PowerPC 750CL and 750GX CPU features
2007-04-12 18:33 [PATCH v2] powerpc: Fix PowerPC 750CL and 750GX CPU features Josh Boyer
@ 2007-04-12 19:28 ` Segher Boessenkool
2007-04-12 19:54 ` Josh Boyer
0 siblings, 1 reply; 3+ messages in thread
From: Segher Boessenkool @ 2007-04-12 19:28 UTC (permalink / raw)
To: Josh Boyer; +Cc: linuxppc-dev, paulus
> PowerPC 750CL has high BATs. The patch below adds a CPU_FTRS_750CL
> that
> includes that. Without it, the original firmware mappings in the high
> BATs
> aren't cleared which continue to override the linux translations.
>
> It also adds CPU_FTR_COMMON to CPU_FTRS_750GX for completeness.
Looks good to me, thanks Josh. It would be nice to define
the 750XX features as plain 750 + a few options, but that's
a separate cleanup.
Segher
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] powerpc: Fix PowerPC 750CL and 750GX CPU features
2007-04-12 19:28 ` Segher Boessenkool
@ 2007-04-12 19:54 ` Josh Boyer
0 siblings, 0 replies; 3+ messages in thread
From: Josh Boyer @ 2007-04-12 19:54 UTC (permalink / raw)
To: Segher Boessenkool; +Cc: linuxppc-dev, paulus
On Thu, 2007-04-12 at 21:28 +0200, Segher Boessenkool wrote:
> > PowerPC 750CL has high BATs. The patch below adds a CPU_FTRS_750CL
> > that
> > includes that. Without it, the original firmware mappings in the high
> > BATs
> > aren't cleared which continue to override the linux translations.
> >
> > It also adds CPU_FTR_COMMON to CPU_FTRS_750GX for completeness.
>
> Looks good to me, thanks Josh. It would be nice to define
> the 750XX features as plain 750 + a few options, but that's
> a separate cleanup.
Yep, I was thinking a cleanup along those lines would be good. I'd like
to get this current patch merged first, and then I can do that cleanup.
Didn't want to fight with patch dependency ordering for now (which is
also why I rolled the small GX fix into this patch).
josh
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-04-12 19:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-12 18:33 [PATCH v2] powerpc: Fix PowerPC 750CL and 750GX CPU features Josh Boyer
2007-04-12 19:28 ` Segher Boessenkool
2007-04-12 19:54 ` Josh Boyer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).