blob: ce6676cacae20e4bccdd7e2075d78b9d0f926e5f [file] [log] [blame]
/*
* arch/arm/mach-boss/include/mach/debug-macro.S
*
* History:
* 2006/12/27 - [Charles Chiou] created file
* 2010/03/29 - [Cao Rongrong] port to BOSS
* 2010/11/04 - [Cao Rongrong] port to Linux-2.6.36+
*
* Copyright (C) 2004-2009, Ambarella, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include <mach/hardware.h>
.macro addruart, rx, tmp
mrc p15, 0, \rx, c1, c0
tst \rx, #1 @ MMU enabled?
moveq \rx, #APB_PHYS_BASE @ physical base address
movne \rx, #APB_BASE @ virtual address
orr \rx, \rx, #UART_OFFSET
.endm
.macro senduart, rd, rx
str \rd, [\rx, #UART_TH_OFFSET]
.endm
.macro waituart, rd, rx
1001:
ldr \rd, [\rx, #UART_LS_OFFSET]
tst \rd, #UART_LS_TEMT
beq 1001b
.endm
.macro busyuart, rd, rx
1002:
ldr \rd, [\rx, #UART_LS_OFFSET]
tst \rd, #UART_LS_TEMT
beq 1002b
.endm