blob: c6bb9e2d9baa5c3d24f84b0f96584b66de35f4ca [file] [log] [blame]
Russell Kinga09e64f2008-08-05 16:14:15 +01001/*
2 * arch/arm/mach-at91/include/mach/debug-macro.S
3 *
4 * Copyright (C) 2003-2005 SAN People
5 *
6 * Debugging macro include header
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 <mach/hardware.h>
15#include <mach/at91_dbgu.h>
16
Jean-Christophe PLAGNIOL-VILLARD13079a72011-11-02 01:43:31 +080017#if defined(CONFIG_AT91_DEBUG_LL_DBGU0)
18#define AT91_DBGU AT91_BASE_DBGU0
19#else
20#define AT91_DBGU AT91_BASE_DBGU1
21#endif
22
Nicolas Pitre639da5e2011-08-31 22:55:46 -040023 .macro addruart, rp, rv, tmp
Jean-Christophe PLAGNIOL-VILLARD13079a72011-11-02 01:43:31 +080024 ldr \rp, =AT91_DBGU @ System peripherals (phys address)
25 ldr \rv, =AT91_IO_P2V(AT91_DBGU) @ System peripherals (virt address)
Russell Kinga09e64f2008-08-05 16:14:15 +010026 .endm
27
28 .macro senduart,rd,rx
Jean-Christophe PLAGNIOL-VILLARD1ff5b1b2011-05-03 01:11:25 +080029 strb \rd, [\rx, #(AT91_DBGU_THR)] @ Write to Transmitter Holding Register
Russell Kinga09e64f2008-08-05 16:14:15 +010030 .endm
31
32 .macro waituart,rd,rx
Jean-Christophe PLAGNIOL-VILLARD1ff5b1b2011-05-03 01:11:25 +0800331001: ldr \rd, [\rx, #(AT91_DBGU_SR)] @ Read Status Register
34 tst \rd, #AT91_DBGU_TXRDY @ DBGU_TXRDY = 1 when ready to transmit
Russell Kinga09e64f2008-08-05 16:14:15 +010035 beq 1001b
36 .endm
37
38 .macro busyuart,rd,rx
Jean-Christophe PLAGNIOL-VILLARD1ff5b1b2011-05-03 01:11:25 +0800391001: ldr \rd, [\rx, #(AT91_DBGU_SR)] @ Read Status Register
40 tst \rd, #AT91_DBGU_TXEMPTY @ DBGU_TXEMPTY = 1 when transmission complete
Russell Kinga09e64f2008-08-05 16:14:15 +010041 beq 1001b
42 .endm
43