diff options
author | Nick Bowler <nbowler@elliptictech.com> | 2012-11-05 21:45:49 (GMT) |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2012-11-07 12:48:43 (GMT) |
commit | aaf5e0be79e37d5a8509f09852788fa6a82522b2 (patch) | |
tree | 0a836f40209121408cf83e74d629239c20ac16ca /arch/arm/mach-zynq/common.c | |
parent | 78d6785db13572f22d287d8c1739ceb4edf54bdc (diff) | |
download | linux-aaf5e0be79e37d5a8509f09852788fa6a82522b2.tar.xz |
ARM: zynq: Allow UART1 to be used as DEBUG_LL console.
The main UART on the Xilinx ZC702 board is UART1, located at address
e0001000. Add a Kconfig option to select this device as the low-level
debugging port. This allows the really early boot printouts to reach
the USB serial adaptor on this board.
For consistency's sake, add a choice entry for UART0 even though it is
the the default if UART1 is not selected.
Signed-off-by: Nick Bowler <nbowler@elliptictech.com>
Tested-by: Josh Cartwright <josh.cartwright@ni.com>
Acked-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/arm/mach-zynq/common.c')
-rw-r--r-- | arch/arm/mach-zynq/common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c index 6f058258..f0eef84 100644 --- a/arch/arm/mach-zynq/common.c +++ b/arch/arm/mach-zynq/common.c @@ -85,9 +85,9 @@ static struct map_desc io_desc[] __initdata = { #ifdef CONFIG_DEBUG_LL { - .virtual = UART0_VIRT, - .pfn = __phys_to_pfn(UART0_PHYS), - .length = UART0_SIZE, + .virtual = LL_UART_VADDR, + .pfn = __phys_to_pfn(LL_UART_PADDR), + .length = UART_SIZE, .type = MT_DEVICE, }, #endif |