diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-04-17 11:28:31 -0400 |
---|---|---|
committer | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-04-17 11:28:31 -0400 |
commit | cc56449f53ba45646c6f0a2edf77c4acb342caed (patch) | |
tree | c48feb9407191d61041a59dabcaf92c185eff64c /include/asm-arm/arch-rpc | |
parent | 684f970e2fd2dc0eb8292500903f54f1ebda0e75 (diff) |
[PATCH] ARM: fix debug macros
Fix debug EBSA285 and RiscPC debugging macros to detect whether the
MMU is enabled.
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/arch-rpc')
-rw-r--r-- | include/asm-arm/arch-rpc/debug-macro.S | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-arm/arch-rpc/debug-macro.S b/include/asm-arm/arch-rpc/debug-macro.S index 0711828164cd..456d3d754c3d 100644 --- a/include/asm-arm/arch-rpc/debug-macro.S +++ b/include/asm-arm/arch-rpc/debug-macro.S | |||
@@ -12,7 +12,10 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | .macro addruart,rx | 14 | .macro addruart,rx |
15 | mov \rx, #0xe0000000 | 15 | mrc p15, 0, \rx, c1, c0 |
16 | tst \rx, #1 @ MMU enabled? | ||
17 | moveq \rx, #0x03000000 | ||
18 | movne \rx, #0xe0000000 | ||
16 | orr \rx, \rx, #0x00010000 | 19 | orr \rx, \rx, #0x00010000 |
17 | orr \rx, \rx, #0x00000fe0 | 20 | orr \rx, \rx, #0x00000fe0 |
18 | .endm | 21 | .endm |