diff options
author | Tony Lindgren <tony@atomide.com> | 2006-09-20 13:03:34 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-25 10:36:09 +0100 |
commit | 7d95ded91149564100a3181d341361aedcfd5bf5 (patch) | |
tree | 5be7882a7cc3f3c646f12c2c60cb7a689d46d0ba /arch/arm/boot/compressed/head.S | |
parent | baf97ce6eda5891ee45fae9c1b06db855bb697e1 (diff) | |
download | blackbird-op-linux-7d95ded91149564100a3181d341361aedcfd5bf5.tar.gz blackbird-op-linux-7d95ded91149564100a3181d341361aedcfd5bf5.zip |
[ARM] 3838/1: ARM: DCC debug console support for ARM11
Adds support for CONFIG_DEBUG_ICEDCC for ARM11.
Tested on ARM1136 (OMAP2420).
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot/compressed/head.S')
-rw-r--r-- | arch/arm/boot/compressed/head.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S index 987c44160496..75df1f764a10 100644 --- a/arch/arm/boot/compressed/head.S +++ b/arch/arm/boot/compressed/head.S @@ -20,11 +20,21 @@ #ifdef DEBUG #if defined(CONFIG_DEBUG_ICEDCC) + +#ifdef CONFIG_CPU_V6 + .macro loadsp, rb + .endm + .macro writeb, ch, rb + mcr p14, 0, \ch, c0, c5, 0 + .endm +#else .macro loadsp, rb .endm .macro writeb, ch, rb mcr p14, 0, \ch, c0, c1, 0 .endm +#endif + #else #include <asm/arch/debug-macro.S> |