2009-04-23 17:22:13 +08:00
|
|
|
/*
|
2013-05-02 23:00:29 +08:00
|
|
|
* Copyright (C) 2006-2013 ST-Ericsson AB
|
2009-04-23 17:22:13 +08:00
|
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
|
|
* Debugging macro include header.
|
|
|
|
* Author: Linus Walleij <linus.walleij@stericsson.com>
|
|
|
|
*/
|
2013-05-02 23:00:29 +08:00
|
|
|
#define U300_SLOW_PER_PHYS_BASE 0xc0010000
|
|
|
|
#define U300_SLOW_PER_VIRT_BASE 0xff000000
|
2009-04-23 17:22:13 +08:00
|
|
|
|
2011-09-01 10:55:46 +08:00
|
|
|
.macro addruart, rp, rv, tmp
|
tree-wide: Assorted spelling fixes
In particular, several occurances of funny versions of 'success',
'unknown', 'therefore', 'acknowledge', 'argument', 'achieve', 'address',
'beginning', 'desirable', 'separate' and 'necessary' are fixed.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Joe Perches <joe@perches.com>
Cc: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2010-02-03 08:01:28 +08:00
|
|
|
/* If we move the address using MMU, use this. */
|
2010-07-06 18:30:06 +08:00
|
|
|
ldr \rp, = U300_SLOW_PER_PHYS_BASE @ MMU off, physical address
|
|
|
|
ldr \rv, = U300_SLOW_PER_VIRT_BASE @ MMU on, virtual address
|
|
|
|
orr \rp, \rp, #0x00003000
|
|
|
|
orr \rv, \rv, #0x00003000
|
2009-04-23 17:22:13 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
#include <asm/hardware/debug-pl01x.S>
|