diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-04-06 23:36:50 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-04-07 01:36:30 -0500 |
commit | e9965577406a2148ade97b5e0ce7c448b4ba4ef6 (patch) | |
tree | c1291c2942e50af47c9391f6308d5f9c17377220 /arch/powerpc/kernel | |
parent | 7281f5dc2c9582f3efaed9b367837ca6117d7b7f (diff) | |
download | blackbird-op-linux-e9965577406a2148ade97b5e0ce7c448b4ba4ef6.tar.gz blackbird-op-linux-e9965577406a2148ade97b5e0ce7c448b4ba4ef6.zip |
powerpc: Add support for early tlbilx opcode
During the ISA 2.06 development the opcode for tlbilx changed and some
early implementations used to old opcode. Add support for a MMU_FTR
fixup to deal with this.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/cputable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index cd1b687544f3..57db50f40289 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c @@ -1766,7 +1766,7 @@ static struct cpu_spec __initdata cpu_specs[] = { .cpu_features = CPU_FTRS_E500MC, .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, .mmu_features = MMU_FTR_TYPE_FSL_E | MMU_FTR_BIG_PHYS | - MMU_FTR_USE_TLBILX, + MMU_FTR_USE_TLBILX | MMU_FTR_TLBILX_EARLY_OPCODE, .icache_bsize = 64, .dcache_bsize = 64, .num_pmcs = 4, |