diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-13 14:38:48 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-14 19:13:29 -0400 |
commit | 2bda347bc53fe2cacd5621d8a0426840a8d2a6a6 (patch) | |
tree | 8000b78bf3a648115c916eb75cae12cd2eda415f /arch/powerpc/kernel | |
parent | 7b6b574ca7d5d5ba6ae7155c1fb877cc7130eff7 (diff) |
powerpc: Fix 32-bit SMP boot on CHRP
prom_init was changed to take a new argument, the address
where the kernel is loaded, which is now used to copy the
SMP spin loop down before use.
However, only head_64.S was adapted to pass this new value,
not head_32.S, thus breaking SMP boot on 32-bit SMP CHRP
machines.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/head_32.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/head_32.S b/arch/powerpc/kernel/head_32.S index a6de6dbc5ed8..0c326823c6d4 100644 --- a/arch/powerpc/kernel/head_32.S +++ b/arch/powerpc/kernel/head_32.S | |||
@@ -110,6 +110,12 @@ __start: | |||
110 | #ifdef CONFIG_PPC_MULTIPLATFORM | 110 | #ifdef CONFIG_PPC_MULTIPLATFORM |
111 | cmpwi 0,r5,0 | 111 | cmpwi 0,r5,0 |
112 | beq 1f | 112 | beq 1f |
113 | |||
114 | /* find out where we are now */ | ||
115 | bcl 20,31,$+4 | ||
116 | 0: mflr r8 /* r8 = runtime addr here */ | ||
117 | addis r8,r8,(_stext - 0b)@ha | ||
118 | addi r8,r8,(_stext - 0b)@l /* current runtime base addr */ | ||
113 | bl prom_init | 119 | bl prom_init |
114 | trap | 120 | trap |
115 | #endif | 121 | #endif |