blob: 8ea3bffb4e009f39b56b2262a762b8b28131c814 [file] [log] [blame]
Erik Gillingc5f80062010-01-21 16:53:02 -08001/*
2 * arch/arm/mach-tegra/include/mach/debug-macro.S
3 *
4 * Copyright (C) 2010 Google, Inc.
5 *
6 * Author:
7 * Colin Cross <ccross@google.com>
8 * Erik Gilling <konkers@google.com>
9 *
10 * This software is licensed under the terms of the GNU General Public
11 * License version 2, as published by the Free Software Foundation, and
12 * may be copied, distributed, and modified under those terms.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 */
20
21#include <mach/io.h>
22
Jeremy Kerr0ea12932010-07-06 18:30:06 +080023 .macro addruart, rp, rv
24 ldreq \rp, =IO_APB_PHYS @ physical
25 ldrne \rv, =IO_APB_VIRT @ virtual
Erik Gillingc5f80062010-01-21 16:53:02 -080026#if defined(CONFIG_TEGRA_DEBUG_UART_NONE)
27#error "A debug UART must be selected in the kernel config to use DEBUG_LL"
28#elif defined(CONFIG_TEGRA_DEBUG_UARTA)
Jeremy Kerr0ea12932010-07-06 18:30:06 +080029 orr \rp, \rp, #0x6000
30 orr \rv, \rv, #0x6000
Erik Gillingc5f80062010-01-21 16:53:02 -080031#elif defined(CONFIG_TEGRA_DEBUG_UARTB)
Jeremy Kerr0ea12932010-07-06 18:30:06 +080032 orr \rp, \rp, #0x6000
33 orr \rp, \rp, #0x40
34 orr \rv, \rv, #0x6000
35 orr \rv, \rv, #0x40
Erik Gillingc5f80062010-01-21 16:53:02 -080036#elif defined(CONFIG_TEGRA_DEBUG_UARTC)
Jeremy Kerr0ea12932010-07-06 18:30:06 +080037 orr \rp, \rp, #0x6200
38 orr \rv, \rv, #0x6200
Erik Gillingc5f80062010-01-21 16:53:02 -080039#elif defined(CONFIG_TEGRA_DEBUG_UARTD)
Jeremy Kerr0ea12932010-07-06 18:30:06 +080040 orr \rp, \rp, #0x6300
41 orr \rv, \rv, #0x6300
Erik Gillingc5f80062010-01-21 16:53:02 -080042#elif defined(CONFIG_TEGRA_DEBUG_UARTE)
Jeremy Kerr0ea12932010-07-06 18:30:06 +080043 orr \rp, \rp, #0x6400
44 orr \rv, \rv, #0x6400
Erik Gillingc5f80062010-01-21 16:53:02 -080045#endif
46 .endm
47
48#define UART_SHIFT 2
49#include <asm/hardware/debug-8250.S>
50