diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-26 05:54:02 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:57 -0500 |
commit | a8f67f4b4d4b74cd14d3540ade8657ebee543340 (patch) | |
tree | 0196ebc52c34d157a86a89d519556f8172d24feb /arch/sh/kernel/cpu/sh2a/probe.c | |
parent | 47a3eb95560ea525a2dfbee1c4e7f03a45fd2207 (diff) |
sh: Add SH7263 CPU support.
This adds support for the SH7263 (SH-2A) CPU.
This particular CPU is a superset of SH7203, adding some additional
peripheral blocks and hooking up additional (reserved on SH7203)
vectors in the INTC block.
No visibly nasty surprises, yet..
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu/sh2a/probe.c')
-rw-r--r-- | arch/sh/kernel/cpu/sh2a/probe.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/sh2a/probe.c b/arch/sh/kernel/cpu/sh2a/probe.c index 64f10102b720..6910e2664468 100644 --- a/arch/sh/kernel/cpu/sh2a/probe.c +++ b/arch/sh/kernel/cpu/sh2a/probe.c | |||
@@ -22,6 +22,9 @@ int __init detect_cpu_and_cache_system(void) | |||
22 | boot_cpu_data.type = CPU_SH7203; | 22 | boot_cpu_data.type = CPU_SH7203; |
23 | /* SH7203 has an FPU.. */ | 23 | /* SH7203 has an FPU.. */ |
24 | boot_cpu_data.flags |= CPU_HAS_FPU; | 24 | boot_cpu_data.flags |= CPU_HAS_FPU; |
25 | #elif defined(CONFIG_CPU_SUBTYPE_SH7263) | ||
26 | boot_cpu_data.type = CPU_SH7263; | ||
27 | boot_cpu_data.flags |= CPU_HAS_FPU; | ||
25 | #elif defined(CONFIG_CPU_SUBTYPE_SH7206) | 28 | #elif defined(CONFIG_CPU_SUBTYPE_SH7206) |
26 | boot_cpu_data.type = CPU_SH7206; | 29 | boot_cpu_data.type = CPU_SH7206; |
27 | /* While SH7206 has a DSP.. */ | 30 | /* While SH7206 has a DSP.. */ |