diff options
author | Manuel Lauss <mano@roarinelk.homelinux.net> | 2009-03-25 12:49:28 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-03-30 08:49:45 -0400 |
commit | 270717a8a0e5f03c104a6d47466036b615edfcde (patch) | |
tree | 33b319a455d24b246df5200e523aa66a7341cb42 /arch/mips/mm/tlbex.c | |
parent | 76544504aebc606b8279a5314595af5d568e7fea (diff) |
MIPS: Alchemy: unify CPU model constants.
This patch removes the various CPU_AU1??? model constants in favor of
a single CPU_ALCHEMY one.
All currently existing Alchemy models are identical in terms of cpu
core and cache size/organization. The parts of the mips kernel which
need to know the exact CPU revision extract it from the c0_prid register
already; and finally nothing else in-tree depends on those any more.
Should a new variant with slightly different "company options" and/or
"processor revision" bits in c0_prid appear, it will be supported
immediately (minus an exact model string in cpuinfo).
Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/tlbex.c')
-rw-r--r-- | arch/mips/mm/tlbex.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index f335cf6cdd78..122c9c12e75a 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -292,13 +292,7 @@ static void __cpuinit build_tlb_write_entry(u32 **p, struct uasm_label **l, | |||
292 | case CPU_R4300: | 292 | case CPU_R4300: |
293 | case CPU_5KC: | 293 | case CPU_5KC: |
294 | case CPU_TX49XX: | 294 | case CPU_TX49XX: |
295 | case CPU_AU1000: | 295 | case CPU_ALCHEMY: |
296 | case CPU_AU1100: | ||
297 | case CPU_AU1500: | ||
298 | case CPU_AU1550: | ||
299 | case CPU_AU1200: | ||
300 | case CPU_AU1210: | ||
301 | case CPU_AU1250: | ||
302 | case CPU_PR4450: | 296 | case CPU_PR4450: |
303 | uasm_i_nop(p); | 297 | uasm_i_nop(p); |
304 | tlbw(p); | 298 | tlbw(p); |