diff options
author | Magnus Damm <magnus.damm@gmail.com> | 2008-02-06 09:57:57 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-02-14 00:22:07 -0500 |
commit | 1cfb629cfa4a8d9b65c0f60c65ec731bde82d60c (patch) | |
tree | 6144dd0df139b823124f1b813c3a546adcc6732e | |
parent | 10a1debee11168c603e6d2e13f4c1da7c5bac64e (diff) |
sh: add probe support for new sh7722 cut
This patch adds support for sh7722 devices with prr value 0xa1.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/cpu/sh4/probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/sh4/probe.c b/arch/sh/kernel/cpu/sh4/probe.c index f2b9238cda04..89b454b1f0f1 100644 --- a/arch/sh/kernel/cpu/sh4/probe.c +++ b/arch/sh/kernel/cpu/sh4/probe.c | |||
@@ -126,7 +126,7 @@ int __init detect_cpu_and_cache_system(void) | |||
126 | CPU_HAS_LLSC; | 126 | CPU_HAS_LLSC; |
127 | break; | 127 | break; |
128 | case 0x3008: | 128 | case 0x3008: |
129 | if (prr == 0xa0) { | 129 | if (prr == 0xa0 || prr == 0xa1) { |
130 | boot_cpu_data.type = CPU_SH7722; | 130 | boot_cpu_data.type = CPU_SH7722; |
131 | boot_cpu_data.icache.ways = 4; | 131 | boot_cpu_data.icache.ways = 4; |
132 | boot_cpu_data.dcache.ways = 4; | 132 | boot_cpu_data.dcache.ways = 4; |