diff options
author | Michal Simek <monstr@monstr.eu> | 2009-07-30 08:31:23 -0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2009-09-21 08:29:21 -0400 |
commit | 2622434ee0108c65808a63f067e72d0bbc75b372 (patch) | |
tree | c6f89cd62d636bbdc6e96c589481d79b7b67c3da /arch/microblaze/kernel/head.S | |
parent | 8cc11f5ab5384dad6c63905f71882e65cd70b7b7 (diff) |
microblaze: Add checking mechanism for MSR instruction
It was necessary to use fourth parameter(r8) in early_printk
to show messages on console.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/kernel/head.S')
-rw-r--r-- | arch/microblaze/kernel/head.S | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/head.S b/arch/microblaze/kernel/head.S index e41c6ce2a7be..bfc7ea801cc4 100644 --- a/arch/microblaze/kernel/head.S +++ b/arch/microblaze/kernel/head.S | |||
@@ -55,6 +55,19 @@ ENTRY(_start) | |||
55 | andi r1, r1, ~2 | 55 | andi r1, r1, ~2 |
56 | mts rmsr, r1 | 56 | mts rmsr, r1 |
57 | 57 | ||
58 | /* | ||
59 | * Here is checking mechanism which check if Microblaze has msr instructions | ||
60 | * We load msr and compare it with previous r1 value - if is the same, | ||
61 | * msr instructions works if not - cpu don't have them. | ||
62 | */ | ||
63 | or r8, r0, r0 /* 0 - I have msr instr, 1 - I don't have */ | ||
64 | or r12, r0, r0 | ||
65 | msrset r12, 0 /* set nothing - just read msr for test */ | ||
66 | cmpu r12, r12, r1 | ||
67 | beqi r12, 1f | ||
68 | ori r8, r0, 1 /* I don't have msr */ | ||
69 | 1: | ||
70 | |||
58 | /* r7 may point to an FDT, or there may be one linked in. | 71 | /* r7 may point to an FDT, or there may be one linked in. |
59 | if it's in r7, we've got to save it away ASAP. | 72 | if it's in r7, we've got to save it away ASAP. |
60 | We ensure r7 points to a valid FDT, just in case the bootloader | 73 | We ensure r7 points to a valid FDT, just in case the bootloader |
@@ -209,8 +222,8 @@ start_here: | |||
209 | * Please see $(ARCH)/mach-$(SUBARCH)/setup.c for | 222 | * Please see $(ARCH)/mach-$(SUBARCH)/setup.c for |
210 | * the function. | 223 | * the function. |
211 | */ | 224 | */ |
212 | la r8, r0, machine_early_init | 225 | la r9, r0, machine_early_init |
213 | brald r15, r8 | 226 | brald r15, r9 |
214 | nop | 227 | nop |
215 | 228 | ||
216 | #ifndef CONFIG_MMU | 229 | #ifndef CONFIG_MMU |