diff options
author | Akira Takeuchi <takeuchi.akr@jp.panasonic.com> | 2010-10-27 12:28:55 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2010-10-27 12:28:55 -0400 |
commit | 368dd5acd154b09c043cc4392a74da01599b37d5 (patch) | |
tree | dd94ae3d044f6e774dec2437613515bd6b46dacb /arch/mn10300/boot | |
parent | 04157a6e7df99fd5ed64955233d6e00ab6613614 (diff) |
MN10300: And Panasonic AM34 subarch and implement SMP
Implement the Panasonic MN10300 AM34 CPU subarch and implement SMP support for
MN10300. Also implement support for the MN2WS0060 processor and the ASB2364
evaluation board which are AM34 based.
Signed-off-by: Akira Takeuchi <takeuchi.akr@jp.panasonic.com>
Signed-off-by: Kiyoshi Owada <owada.kiyoshi@jp.panasonic.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'arch/mn10300/boot')
-rw-r--r-- | arch/mn10300/boot/compressed/head.S | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/arch/mn10300/boot/compressed/head.S b/arch/mn10300/boot/compressed/head.S index 4ef608a62416..7b50345b9e84 100644 --- a/arch/mn10300/boot/compressed/head.S +++ b/arch/mn10300/boot/compressed/head.S | |||
@@ -15,10 +15,28 @@ | |||
15 | #include <linux/linkage.h> | 15 | #include <linux/linkage.h> |
16 | #include <asm/cpu-regs.h> | 16 | #include <asm/cpu-regs.h> |
17 | #include <asm/cache.h> | 17 | #include <asm/cache.h> |
18 | #ifdef CONFIG_SMP | ||
19 | #include <proc/smp-regs.h> | ||
20 | #endif | ||
18 | 21 | ||
19 | .globl startup_32 | 22 | .globl startup_32 |
20 | startup_32: | 23 | startup_32: |
21 | # first save off parameters from bootloader | 24 | #ifdef CONFIG_SMP |
25 | # | ||
26 | # Secondary CPUs jump directly to the kernel entry point | ||
27 | # | ||
28 | # Must save primary CPU's D0-D2 registers as they hold boot parameters | ||
29 | # | ||
30 | mov (CPUID), d3 | ||
31 | and CPUID_MASK,d3 | ||
32 | beq startup_primary | ||
33 | mov CONFIG_KERNEL_TEXT_ADDRESS,a0 | ||
34 | jmp (a0) | ||
35 | |||
36 | startup_primary: | ||
37 | #endif /* CONFIG_SMP */ | ||
38 | |||
39 | # first save parameters from bootloader | ||
22 | mov param_save_area,a0 | 40 | mov param_save_area,a0 |
23 | mov d0,(a0) | 41 | mov d0,(a0) |
24 | mov d1,(4,a0) | 42 | mov d1,(4,a0) |