diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-03-19 13:52:14 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-03-25 12:29:40 +0100 |
commit | 67bdb28718ae6dbdfbfa541161529acfa0f3c137 (patch) | |
tree | 7d0bcbc52c4efd216f91984dead22c93f866fb25 /arch/arm/mach-prima2/lluart.c | |
parent | ARM: sirf: enable sparse IRQ (diff) | |
download | linux-67bdb28718ae6dbdfbfa541161529acfa0f3c137.tar.xz linux-67bdb28718ae6dbdfbfa541161529acfa0f3c137.zip |
ARM: sirf: move debug-macro.S to include/debug/sirf.S
The new style ll_debug implementation for multiplatform requires the
platform glue to be in include/debug, so let's move it there to
separate the debugging logic from the platform code.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Barry Song <Baohua.Song@csr.com>
Diffstat (limited to 'arch/arm/mach-prima2/lluart.c')
-rw-r--r-- | arch/arm/mach-prima2/lluart.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/arm/mach-prima2/lluart.c b/arch/arm/mach-prima2/lluart.c index a89f9b3c8cc5..7222481ef1c8 100644 --- a/arch/arm/mach-prima2/lluart.c +++ b/arch/arm/mach-prima2/lluart.c @@ -10,7 +10,17 @@ #include <asm/page.h> #include <asm/mach/map.h> #include <mach/map.h> -#include <mach/uart.h> + +#if defined(CONFIG_DEBUG_SIRFPRIMA2_UART1) +#define SIRFSOC_UART1_PA_BASE 0xb0060000 +#elif defined(CONFIG_DEBUG_SIRFMARCO_UART1) +#define SIRFSOC_UART1_PA_BASE 0xcc060000 +#else +#define SIRFSOC_UART1_PA_BASE 0 +#endif + +#define SIRFSOC_UART1_VA_BASE SIRFSOC_VA(0x060000) +#define SIRFSOC_UART1_SIZE SZ_4K void __init sirfsoc_map_lluart(void) { |