2008-08-05 17:14:15 +02:00
|
|
|
/* arch/arm/mach-msm7200/include/mach/debug-macro.S
|
2007-11-26 13:11:43 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Google, Inc.
|
|
|
|
* Author: Brian Swetland <swetland@google.com>
|
|
|
|
*
|
|
|
|
* This software is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
|
|
* may be copied, distributed, and modified under those terms.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-11-02 11:48:29 +01:00
|
|
|
|
|
|
|
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/hardware.h>
|
|
|
|
#include <mach/msm_iomap.h>
|
2007-11-26 13:11:43 +01:00
|
|
|
|
2010-10-27 22:04:58 +02:00
|
|
|
#if defined(CONFIG_HAS_MSM_DEBUG_UART_PHYS) && !defined(CONFIG_MSM_DEBUG_UART_NONE)
|
2010-07-06 12:30:06 +02:00
|
|
|
.macro addruart, rp, rv
|
|
|
|
ldr \rp, =MSM_DEBUG_UART_PHYS
|
|
|
|
ldr \rv, =MSM_DEBUG_UART_BASE
|
2007-11-26 13:11:43 +01:00
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro senduart,rd,rx
|
2008-09-10 23:00:53 +02:00
|
|
|
teq \rx, #0
|
|
|
|
strne \rd, [\rx, #0x0C]
|
2007-11-26 13:11:43 +01:00
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro waituart,rd,rx
|
|
|
|
@ wait for TX_READY
|
2009-11-02 11:48:29 +01:00
|
|
|
1001: ldr \rd, [\rx, #0x08]
|
2007-11-26 13:11:43 +01:00
|
|
|
tst \rd, #0x04
|
2009-11-02 11:48:29 +01:00
|
|
|
beq 1001b
|
|
|
|
.endm
|
2010-10-28 00:25:59 +02:00
|
|
|
#else
|
|
|
|
.macro addruart, rp, rv
|
|
|
|
mov \rv, #0xff000000
|
|
|
|
orr \rv, \rv, #0x00f00000
|
|
|
|
.endm
|
2007-11-26 13:11:43 +01:00
|
|
|
|
2010-10-28 00:25:59 +02:00
|
|
|
.macro senduart,rd,rx
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro waituart,rd,rx
|
2007-11-26 13:11:43 +01:00
|
|
|
.endm
|
2010-07-06 12:30:06 +02:00
|
|
|
#endif
|
2010-10-28 00:25:59 +02:00
|
|
|
|
|
|
|
.macro busyuart,rd,rx
|
|
|
|
.endm
|