diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-03-19 08:52:14 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-03-25 07:29:40 -0400 |
commit | 67bdb28718ae6dbdfbfa541161529acfa0f3c137 (patch) | |
tree | 7d0bcbc52c4efd216f91984dead22c93f866fb25 | |
parent | 630be7ea2f2d0c2ee5662308297b77087da2ace2 (diff) |
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>
-rw-r--r-- | arch/arm/Kconfig.debug | 1 | ||||
-rw-r--r-- | arch/arm/include/debug/sirf.S (renamed from arch/arm/mach-prima2/include/mach/debug-macro.S) | 17 | ||||
-rw-r--r-- | arch/arm/mach-prima2/lluart.c | 12 |
3 files changed, 27 insertions, 3 deletions
diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug index acddddac7ee4..a69334d7f2b3 100644 --- a/arch/arm/Kconfig.debug +++ b/arch/arm/Kconfig.debug | |||
@@ -592,6 +592,7 @@ config DEBUG_LL_INCLUDE | |||
592 | default "debug/mvebu.S" if DEBUG_MVEBU_UART | 592 | default "debug/mvebu.S" if DEBUG_MVEBU_UART |
593 | default "debug/omap2plus.S" if DEBUG_OMAP2PLUS_UART | 593 | default "debug/omap2plus.S" if DEBUG_OMAP2PLUS_UART |
594 | default "debug/picoxcell.S" if DEBUG_PICOXCELL_UART | 594 | default "debug/picoxcell.S" if DEBUG_PICOXCELL_UART |
595 | default "debug/sirf.S" if DEBUG_SIRFPRIMA2_UART1 || DEBUG_SIRFMARCO_UART1 | ||
595 | default "debug/socfpga.S" if DEBUG_SOCFPGA_UART | 596 | default "debug/socfpga.S" if DEBUG_SOCFPGA_UART |
596 | default "debug/sunxi.S" if DEBUG_SUNXI_UART0 || DEBUG_SUNXI_UART1 | 597 | default "debug/sunxi.S" if DEBUG_SUNXI_UART0 || DEBUG_SUNXI_UART1 |
597 | default "debug/vexpress.S" if DEBUG_VEXPRESS_UART0_DETECT || \ | 598 | default "debug/vexpress.S" if DEBUG_VEXPRESS_UART0_DETECT || \ |
diff --git a/arch/arm/mach-prima2/include/mach/debug-macro.S b/arch/arm/include/debug/sirf.S index cd97492bb075..dbf250cf18e6 100644 --- a/arch/arm/mach-prima2/include/mach/debug-macro.S +++ b/arch/arm/include/debug/sirf.S | |||
@@ -6,8 +6,21 @@ | |||
6 | * Licensed under GPLv2 or later. | 6 | * Licensed under GPLv2 or later. |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include <mach/hardware.h> | 9 | #if defined(CONFIG_DEBUG_SIRFPRIMA2_UART1) |
10 | #include <mach/uart.h> | 10 | #define SIRFSOC_UART1_PA_BASE 0xb0060000 |
11 | #elif defined(CONFIG_DEBUG_SIRFMARCO_UART1) | ||
12 | #define SIRFSOC_UART1_PA_BASE 0xcc060000 | ||
13 | #else | ||
14 | #define SIRFSOC_UART1_PA_BASE 0 | ||
15 | #endif | ||
16 | |||
17 | #define SIRFSOC_UART1_VA_BASE 0xFEC60000 | ||
18 | |||
19 | #define SIRFSOC_UART_TXFIFO_STATUS 0x0114 | ||
20 | #define SIRFSOC_UART_TXFIFO_DATA 0x0118 | ||
21 | |||
22 | #define SIRFSOC_UART1_TXFIFO_FULL (1 << 5) | ||
23 | #define SIRFSOC_UART1_TXFIFO_EMPTY (1 << 6) | ||
11 | 24 | ||
12 | .macro addruart, rp, rv, tmp | 25 | .macro addruart, rp, rv, tmp |
13 | ldr \rp, =SIRFSOC_UART1_PA_BASE @ physical | 26 | ldr \rp, =SIRFSOC_UART1_PA_BASE @ physical |
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 @@ | |||
10 | #include <asm/page.h> | 10 | #include <asm/page.h> |
11 | #include <asm/mach/map.h> | 11 | #include <asm/mach/map.h> |
12 | #include <mach/map.h> | 12 | #include <mach/map.h> |
13 | #include <mach/uart.h> | 13 | |
14 | #if defined(CONFIG_DEBUG_SIRFPRIMA2_UART1) | ||
15 | #define SIRFSOC_UART1_PA_BASE 0xb0060000 | ||
16 | #elif defined(CONFIG_DEBUG_SIRFMARCO_UART1) | ||
17 | #define SIRFSOC_UART1_PA_BASE 0xcc060000 | ||
18 | #else | ||
19 | #define SIRFSOC_UART1_PA_BASE 0 | ||
20 | #endif | ||
21 | |||
22 | #define SIRFSOC_UART1_VA_BASE SIRFSOC_VA(0x060000) | ||
23 | #define SIRFSOC_UART1_SIZE SZ_4K | ||
14 | 24 | ||
15 | void __init sirfsoc_map_lluart(void) | 25 | void __init sirfsoc_map_lluart(void) |
16 | { | 26 | { |