aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorJosh Cartwright <josh.cartwright@ni.com>2012-11-19 11:16:01 -0500
committerMichal Simek <michal.simek@xilinx.com>2012-11-21 04:52:05 -0500
commit385f02b1696004461d89589e69ae7247081a74a2 (patch)
treee0dcb931d728fae053f01994d60288c73414a2f5 /arch/arm
parent667f2988e2c11b25e79a46aff2f269696dbe8dc1 (diff)
ARM: zynq: make use of debug_ll_io_init()
Convert low-level debugging routines to make use of debug_ll_io_init(). This is part of the preparation for ARCH_MULTIPLATFORM support for Zynq. Signed-off-by: Josh Cartwright <josh.cartwright@ni.com> Tested-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/Kconfig.debug1
-rw-r--r--arch/arm/include/debug/zynq.S (renamed from arch/arm/mach-zynq/include/mach/debug-macro.S)3
-rw-r--r--arch/arm/mach-zynq/common.c25
3 files changed, 9 insertions, 20 deletions
diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug
index 7754d51f2b19..d6bdad204d91 100644
--- a/arch/arm/Kconfig.debug
+++ b/arch/arm/Kconfig.debug
@@ -435,6 +435,7 @@ config DEBUG_LL_INCLUDE
435 default "debug/socfpga.S" if DEBUG_SOCFPGA_UART 435 default "debug/socfpga.S" if DEBUG_SOCFPGA_UART
436 default "debug/vexpress.S" if DEBUG_VEXPRESS_UART0_DETECT || \ 436 default "debug/vexpress.S" if DEBUG_VEXPRESS_UART0_DETECT || \
437 DEBUG_VEXPRESS_UART0_CA9 || DEBUG_VEXPRESS_UART0_RS1 437 DEBUG_VEXPRESS_UART0_CA9 || DEBUG_VEXPRESS_UART0_RS1
438 default "debug/zynq.S" if DEBUG_ZYNQ_UART0 || DEBUG_ZYNQ_UART1
438 default "mach/debug-macro.S" 439 default "mach/debug-macro.S"
439 440
440config EARLY_PRINTK 441config EARLY_PRINTK
diff --git a/arch/arm/mach-zynq/include/mach/debug-macro.S b/arch/arm/include/debug/zynq.S
index 3ab0be1f6191..08aed97120e4 100644
--- a/arch/arm/mach-zynq/include/mach/debug-macro.S
+++ b/arch/arm/include/debug/zynq.S
@@ -1,5 +1,4 @@
1/* arch/arm/mach-zynq/include/mach/debug-macro.S 1/*
2 *
3 * Debugging macro include header 2 * Debugging macro include header
4 * 3 *
5 * Copyright (C) 2011 Xilinx 4 * Copyright (C) 2011 Xilinx
diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c
index 2202f67c8a09..a2f48daa11ca 100644
--- a/arch/arm/mach-zynq/common.c
+++ b/arch/arm/mach-zynq/common.c
@@ -72,23 +72,11 @@ static void __init xilinx_irq_init(void)
72 * running include the GIC, UART and Timer Counter. 72 * running include the GIC, UART and Timer Counter.
73 */ 73 */
74 74
75static struct map_desc io_desc[] __initdata = { 75static struct map_desc scu_desc __initdata = {
76 { 76 .virtual = SCU_PERIPH_VIRT,
77 .virtual = SCU_PERIPH_VIRT, 77 .pfn = __phys_to_pfn(SCU_PERIPH_PHYS),
78 .pfn = __phys_to_pfn(SCU_PERIPH_PHYS), 78 .length = SCU_PERIPH_SIZE,
79 .length = SCU_PERIPH_SIZE, 79 .type = MT_DEVICE,
80 .type = MT_DEVICE,
81 },
82
83#ifdef CONFIG_DEBUG_LL
84 {
85 .virtual = LL_UART_VADDR,
86 .pfn = __phys_to_pfn(LL_UART_PADDR),
87 .length = UART_SIZE,
88 .type = MT_DEVICE,
89 },
90#endif
91
92}; 80};
93 81
94static void __init xilinx_zynq_timer_init(void) 82static void __init xilinx_zynq_timer_init(void)
@@ -117,7 +105,8 @@ static struct sys_timer xttcpss_sys_timer = {
117 */ 105 */
118static void __init xilinx_map_io(void) 106static void __init xilinx_map_io(void)
119{ 107{
120 iotable_init(io_desc, ARRAY_SIZE(io_desc)); 108 debug_ll_io_init();
109 iotable_init(&scu_desc, 1);
121} 110}
122 111
123static const char *xilinx_dt_match[] = { 112static const char *xilinx_dt_match[] = {