diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-03-28 04:34:05 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-03-28 04:34:05 -0500 |
commit | de4533a04eb4f66dbef71f59a9c118256b886823 (patch) | |
tree | 8b8681da4294bf7be9d1cde44bfbf303843ba359 /arch/arm/boot/compressed/misc.c | |
parent | a081568d7016061ed848696984e3acf1ba0b3054 (diff) |
[ARM] Move ice-dcc code into misc.c
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot/compressed/misc.c')
-rw-r--r-- | arch/arm/boot/compressed/misc.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/arch/arm/boot/compressed/misc.c b/arch/arm/boot/compressed/misc.c index 28626ec2d289..0af3772efcb7 100644 --- a/arch/arm/boot/compressed/misc.c +++ b/arch/arm/boot/compressed/misc.c | |||
@@ -30,7 +30,20 @@ static void putstr(const char *ptr); | |||
30 | #include <asm/arch/uncompress.h> | 30 | #include <asm/arch/uncompress.h> |
31 | 31 | ||
32 | #ifdef CONFIG_DEBUG_ICEDCC | 32 | #ifdef CONFIG_DEBUG_ICEDCC |
33 | extern void icedcc_putc(int ch); | 33 | static void icedcc_putc(int ch) |
34 | { | ||
35 | int status, i = 0x4000000; | ||
36 | |||
37 | do { | ||
38 | if (--i < 0) | ||
39 | return; | ||
40 | |||
41 | asm("mrc p14, 0, %0, c0, c0, 0" : "=r" (status)); | ||
42 | } while (status & 2); | ||
43 | |||
44 | asm("mcr p15, 0, %0, c1, c0, 0" : : "r" (ch)); | ||
45 | } | ||
46 | |||
34 | #define putc(ch) icedcc_putc(ch) | 47 | #define putc(ch) icedcc_putc(ch) |
35 | #define flush() do { } while (0) | 48 | #define flush() do { } while (0) |
36 | #endif | 49 | #endif |