aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-footbridge/include
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2015-12-03 12:27:53 -0500
committerArnd Bergmann <arnd@arndb.de>2015-12-15 17:43:29 -0500
commit0045c0dd2f643b74f7089253d6ffa1bbb72d3d87 (patch)
treec3aa890a378a2eff31c519295e1f3f7b9f662f30 /arch/arm/mach-footbridge/include
parent59bd4c3827f42c19e530326761e7094eaa28aac3 (diff)
ARM: debug-ll: rework footbridge handling
Footbridge has two debug ports that are handled a bit differently: The 8250 port uses the normal debug/8250.S implementation that is shared with a lot of other platforms, but it relies on the DEBUG_UART_8250 option to be turned on automatically instead of being selected by DEBUG_FOOTBRIDGE_COM1 as we do for most other platforms. I'm changing this to use a 'select' and change the dependency to the debug symbol rather than the platform symbol for consistency. The DC21285 UART has a separate top-level option, and relies on the traditional include/mach/debug-macro.S method. With the s3c64xx multiplatform series queued up for 4.5, it is now the last one that does this, so by moving this file to include/debug/dc21285.S, we can get all platforms to do things the same way. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-footbridge/include')
-rw-r--r--arch/arm/mach-footbridge/include/mach/debug-macro.S42
1 files changed, 0 insertions, 42 deletions
diff --git a/arch/arm/mach-footbridge/include/mach/debug-macro.S b/arch/arm/mach-footbridge/include/mach/debug-macro.S
deleted file mode 100644
index 02247f313e94..000000000000
--- a/arch/arm/mach-footbridge/include/mach/debug-macro.S
+++ /dev/null
@@ -1,42 +0,0 @@
1/* arch/arm/mach-footbridge/include/mach/debug-macro.S
2 *
3 * Debugging macro include header
4 *
5 * Copyright (C) 1994-1999 Russell King
6 * Moved from linux/arch/arm/kernel/debug.S by Ben Dooks
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12*/
13
14#include <asm/hardware/dec21285.h>
15
16#include <mach/hardware.h>
17 /* For EBSA285 debugging */
18 .equ dc21285_high, ARMCSR_BASE & 0xff000000
19 .equ dc21285_low, ARMCSR_BASE & 0x00ffffff
20
21 .macro addruart, rp, rv, tmp
22 .if dc21285_low
23 mov \rp, #dc21285_low
24 .else
25 mov \rp, #0
26 .endif
27 orr \rv, \rp, #dc21285_high
28 orr \rp, \rp, #0x42000000
29 .endm
30
31 .macro senduart,rd,rx
32 str \rd, [\rx, #0x160] @ UARTDR
33 .endm
34
35 .macro busyuart,rd,rx
361001: ldr \rd, [\rx, #0x178] @ UARTFLG
37 tst \rd, #1 << 3
38 bne 1001b
39 .endm
40
41 .macro waituart,rd,rx
42 .endm