Merge branch 'next/drivers' into HEAD
[deliverable/linux.git] / arch / arm / mach-footbridge / include / mach / debug-macro.S
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 #ifndef CONFIG_DEBUG_DC21285_PORT
17 /* For NetWinder debugging */
18 .macro addruart, rp, rv, tmp
19 mov \rp, #0x000003f8
20 orr \rv, \rp, #0xfe000000 @ virtual
21 orr \rv, \rv, #0x00e00000 @ virtual
22 orr \rp, \rp, #0x7c000000 @ physical
23 .endm
24
25 #define UART_SHIFT 0
26 #define FLOW_CONTROL
27 #include <asm/hardware/debug-8250.S>
28
29 #else
30 #include <mach/hardware.h>
31 /* For EBSA285 debugging */
32 .equ dc21285_high, ARMCSR_BASE & 0xff000000
33 .equ dc21285_low, ARMCSR_BASE & 0x00ffffff
34
35 .macro addruart, rp, rv, tmp
36 .if dc21285_low
37 mov \rp, #dc21285_low
38 .else
39 mov \rp, #0
40 .endif
41 orr \rv, \rp, #dc21285_high
42 orr \rp, \rp, #0x42000000
43 .endm
44
45 .macro senduart,rd,rx
46 str \rd, [\rx, #0x160] @ UARTDR
47 .endm
48
49 .macro busyuart,rd,rx
50 1001: ldr \rd, [\rx, #0x178] @ UARTFLG
51 tst \rd, #1 << 3
52 bne 1001b
53 .endm
54
55 .macro waituart,rd,rx
56 .endm
57 #endif
This page took 0.041317 seconds and 5 git commands to generate.