2008-08-05 23:14:15 +08:00
|
|
|
/* arch/arm/mach-ixp4xx/include/mach/debug-macro.S
|
2005-04-17 06:20:36 +08: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 10:55:46 +08:00
|
|
|
.macro addruart, rp, rv, tmp
|
2010-03-17 05:11:59 +08:00
|
|
|
#ifdef __ARMEB__
|
2010-07-06 18:30:06 +08:00
|
|
|
mov \rp, #3 @ Uart regs are at off set of 3 if
|
|
|
|
@ byte writes used - Big Endian.
|
|
|
|
#else
|
|
|
|
mov \rp, #0
|
2010-03-17 05:11:59 +08:00
|
|
|
#endif
|
2012-09-02 06:50:39 +08:00
|
|
|
orr \rv, \rp, #0xfe000000 @ virtual
|
|
|
|
orr \rv, \rv, #0x00f00000
|
2010-07-06 18:30:06 +08:00
|
|
|
orr \rp, \rp, #0xc8000000 @ physical
|
2005-04-17 06:20:36 +08:00
|
|
|
.endm
|
|
|
|
|
2006-03-17 04:40:25 +08:00
|
|
|
#define UART_SHIFT 2
|
|
|
|
#include <asm/hardware/debug-8250.S>
|