2008-08-05 23:14:15 +08:00
|
|
|
/* arch/arm/mach-msm7200/include/mach/debug-macro.S
|
2007-11-26 20:11:43 +08: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 18:48:29 +08:00
|
|
|
|
|
|
|
|
2008-08-05 23:14:15 +08:00
|
|
|
#include <mach/hardware.h>
|
|
|
|
#include <mach/msm_iomap.h>
|
2007-11-26 20:11:43 +08:00
|
|
|
|
2009-11-02 18:48:29 +08:00
|
|
|
#ifdef CONFIG_MSM_DEBUG_UART
|
2010-02-02 06:26:53 +08:00
|
|
|
.macro addruart, rx, tmp
|
2007-11-26 20:11:43 +08:00
|
|
|
@ see if the MMU is enabled and select appropriate base address
|
|
|
|
mrc p15, 0, \rx, c1, c0
|
|
|
|
tst \rx, #1
|
2009-11-02 18:48:29 +08:00
|
|
|
ldreq \rx, =MSM_DEBUG_UART_PHYS
|
|
|
|
ldrne \rx, =MSM_DEBUG_UART_BASE
|
2007-11-26 20:11:43 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro senduart,rd,rx
|
2008-09-11 05:00:53 +08:00
|
|
|
teq \rx, #0
|
|
|
|
strne \rd, [\rx, #0x0C]
|
2007-11-26 20:11:43 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro waituart,rd,rx
|
|
|
|
@ wait for TX_READY
|
2009-11-02 18:48:29 +08:00
|
|
|
1001: ldr \rd, [\rx, #0x08]
|
2007-11-26 20:11:43 +08:00
|
|
|
tst \rd, #0x04
|
2009-11-02 18:48:29 +08:00
|
|
|
beq 1001b
|
|
|
|
.endm
|
|
|
|
#else
|
2010-02-02 06:26:53 +08:00
|
|
|
.macro addruart, rx, tmp
|
2009-11-02 18:48:29 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro senduart,rd,rx
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro waituart,rd,rx
|
2007-11-26 20:11:43 +08:00
|
|
|
.endm
|
2009-11-02 18:48:29 +08:00
|
|
|
#endif
|
2007-11-26 20:11:43 +08:00
|
|
|
|
|
|
|
.macro busyuart,rd,rx
|
|
|
|
.endm
|