blob: 1c1b9d1da4c8f5e28ece495f8c1d1c6bcce8807b [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Shawn Guo6dde5ac2012-09-16 20:50:45 +08002/* arch/arm/mach-imx/include/mach/debug-macro.S
3 *
4 * Debugging macro include header
5 *
6 * Copyright (C) 1994-1999 Russell King
7 * Moved from linux/arch/arm/kernel/debug.S by Ben Dooks
Shawn Guo6dde5ac2012-09-16 20:50:45 +08008 */
Shawn Guo49c9e602012-10-08 13:44:29 +08009
Johannes Berg26e30c62016-01-27 17:59:36 +010010#include <asm/assembler.h>
Shawn Guof8c95fe2012-12-12 19:03:53 +080011#include "imx-uart.h"
Shawn Guo6dde5ac2012-09-16 20:50:45 +080012
13/*
14 * FIXME: This is a copy of IMX_IO_P2V in hardware.h, and needs to
15 * stay sync with that. It's hard to maintain, and should be fixed
16 * globally for multi-platform build to use a fixed virtual address
17 * for low-level debug uart port across platforms.
18 */
19#define IMX_IO_P2V(x) ( \
20 (((x) & 0x80000000) >> 7) | \
21 (0xf4000000 + \
22 (((x) & 0x50000000) >> 6) + \
23 (((x) & 0x0b000000) >> 4) + \
24 (((x) & 0x000fffff))))
25
26#define UART_VADDR IMX_IO_P2V(UART_PADDR)
27
28 .macro addruart, rp, rv, tmp
29 ldr \rp, =UART_PADDR @ physical
30 ldr \rv, =UART_VADDR @ virtual
31 .endm
32
33 .macro senduart,rd,rx
Johannes Berg26e30c62016-01-27 17:59:36 +010034 ARM_BE8(rev \rd, \rd)
Shawn Guo6dde5ac2012-09-16 20:50:45 +080035 str \rd, [\rx, #0x40] @ TXDATA
36 .endm
37
38 .macro waituart,rd,rx
39 .endm
40
41 .macro busyuart,rd,rx
421002: ldr \rd, [\rx, #0x98] @ SR2
Johannes Berg26e30c62016-01-27 17:59:36 +010043 ARM_BE8(rev \rd, \rd)
Shawn Guo6dde5ac2012-09-16 20:50:45 +080044 tst \rd, #1 << 3 @ TXDC
45 beq 1002b @ wait until transmit done
46 .endm