2008-08-05 15:14:15 +00:00
|
|
|
/* arch/arm/mach-ixp2000/include/mach/debug-macro.S
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Debugging macro include header
|
|
|
|
*
|
|
|
|
* Copyright (C) 1994-1999 Russell King
|
|
|
|
* Moved from linux/arch/arm/kernel/debug.S by Ben Dooks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-09-01 02:55:46 +00:00
|
|
|
.macro addruart, rp, rv, tmp
|
2010-07-06 10:30:06 +00:00
|
|
|
mov \rp, #0x00030000
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef __ARMEB__
|
2010-07-06 10:30:06 +00:00
|
|
|
orr \rp, \rp, #0x00000003
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2010-07-06 10:30:06 +00:00
|
|
|
orr \rv, \rp, #0xfe000000 @ virtual base
|
|
|
|
orr \rv, \rv, #0x00f00000
|
|
|
|
orr \rp, \rp, #0xc0000000 @ Physical base
|
2005-04-16 22:20:36 +00:00
|
|
|
.endm
|
|
|
|
|
2006-03-22 20:14:09 +00:00
|
|
|
#define UART_SHIFT 2
|
|
|
|
#include <asm/hardware/debug-8250.S>
|