blob: fbd24beeb1fad70886ea044387c873a65ef455e2 [file] [log] [blame]
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +01001/*
2 * Debugging macro include header
3 *
4 * Copyright (C) 2009 ST-Ericsson
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
Linus Walleij9bed3e02013-04-05 16:07:31 +020011
Rabin Vincent59778fb2010-02-12 06:23:07 +010012
Rabin Vincent39a982b2010-05-03 07:38:06 +010013#if CONFIG_UX500_DEBUG_UART > 2
14#error Invalid Ux500 debug UART
15#endif
16
Rabin Vincent92389ca2010-12-08 11:07:57 +053017/*
18 * DEBUG_LL only works if only one SOC is built in. We don't use #else below
19 * in order to get "__UX500_UART redefined" warnings if more than one SOC is
20 * built, so that there's some hint during the build that something is wrong.
21 */
22
Rabin Vincent92389ca2010-12-08 11:07:57 +053023#ifdef CONFIG_UX500_SOC_DB8500
Linus Walleij9bed3e02013-04-05 16:07:31 +020024#define U8500_UART0_PHYS_BASE (0x80120000)
25#define U8500_UART1_PHYS_BASE (0x80121000)
26#define U8500_UART2_PHYS_BASE (0x80007000)
Lee Jonesea63a112013-05-08 14:29:05 +010027#define U8500_UART0_VIRT_BASE (0xf8120000)
28#define U8500_UART1_VIRT_BASE (0xf8121000)
29#define U8500_UART2_VIRT_BASE (0xf8007000)
Linus Walleij9bed3e02013-04-05 16:07:31 +020030#define __UX500_PHYS_UART(n) U8500_UART##n##_PHYS_BASE
31#define __UX500_VIRT_UART(n) U8500_UART##n##_VIRT_BASE
Rabin Vincent92389ca2010-12-08 11:07:57 +053032#endif
33
Linus Walleij9bed3e02013-04-05 16:07:31 +020034#if !defined(__UX500_PHYS_UART) || !defined(__UX500_VIRT_UART)
Rabin Vincent92389ca2010-12-08 11:07:57 +053035#error Unknown SOC
36#endif
37
Linus Walleij9bed3e02013-04-05 16:07:31 +020038#define UX500_PHYS_UART(n) __UX500_PHYS_UART(n)
39#define UX500_VIRT_UART(n) __UX500_VIRT_UART(n)
40#define UART_PHYS_BASE UX500_PHYS_UART(CONFIG_UX500_DEBUG_UART)
41#define UART_VIRT_BASE UX500_VIRT_UART(CONFIG_UX500_DEBUG_UART)
Rabin Vincent39a982b2010-05-03 07:38:06 +010042
Nicolas Pitre639da5e2011-08-31 22:55:46 -040043 .macro addruart, rp, rv, tmp
Linus Walleij9bed3e02013-04-05 16:07:31 +020044 ldr \rp, =UART_PHYS_BASE @ no, physical address
45 ldr \rv, =UART_VIRT_BASE @ yes, virtual address
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010046 .endm
47
48#include <asm/hardware/debug-pl01x.S>