blob: 02247f313e944237151e9fe656d68b4f8114ea7e [file] [log] [blame]
Russell Kinga09e64f2008-08-05 16:14:15 +01001/* 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
Russell Kinge172ded2011-06-11 00:44:35 +010016#include <mach/hardware.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010017 /* For EBSA285 debugging */
18 .equ dc21285_high, ARMCSR_BASE & 0xff000000
19 .equ dc21285_low, ARMCSR_BASE & 0x00ffffff
20
Nicolas Pitre639da5e2011-08-31 22:55:46 -040021 .macro addruart, rp, rv, tmp
Russell Kinga09e64f2008-08-05 16:14:15 +010022 .if dc21285_low
Jeremy Kerr0ea12932010-07-06 18:30:06 +080023 mov \rp, #dc21285_low
24 .else
25 mov \rp, #0
Russell Kinga09e64f2008-08-05 16:14:15 +010026 .endif
Russell Kinge172ded2011-06-11 00:44:35 +010027 orr \rv, \rp, #dc21285_high
28 orr \rp, \rp, #0x42000000
Russell Kinga09e64f2008-08-05 16:14:15 +010029 .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