Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 342208
b: refs/heads/master
c: aaf5e0b
h: refs/heads/master
v: v3
  • Loading branch information
Nick Bowler authored and Michal Simek committed Nov 7, 2012
1 parent bc11618 commit 36d140c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 78d6785db13572f22d287d8c1739ceb4edf54bdc
refs/heads/master: aaf5e0be79e37d5a8509f09852788fa6a82522b2
17 changes: 17 additions & 0 deletions trunk/arch/arm/Kconfig.debug
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,23 @@ choice
their output to UART1 serial port on DaVinci TNETV107X
devices.

config DEBUG_ZYNQ_UART0
bool "Kernel low-level debugging on Xilinx Zynq using UART0"
depends on ARCH_ZYNQ
help
Say Y here if you want the debug print routines to direct
their output to UART0 on the Zynq platform.

config DEBUG_ZYNQ_UART1
bool "Kernel low-level debugging on Xilinx Zynq using UART1"
depends on ARCH_ZYNQ
help
Say Y here if you want the debug print routines to direct
their output to UART1 on the Zynq platform.

If you have a ZC702 board and want early boot messages to
appear on the USB serial adaptor, select this option.

config DEBUG_DC21285_PORT
bool "Kernel low-level debugging messages via footbridge serial port"
depends on FOOTBRIDGE
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/arm/mach-zynq/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 11 additions & 5 deletions trunk/arch/arm/mach-zynq/include/mach/zynq_soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
* address that is known to work.
*/
#define UART0_PHYS 0xE0000000
#define UART0_SIZE SZ_4K
#define UART0_VIRT 0xF0001000
#define UART1_PHYS 0xE0001000
#define UART_SIZE SZ_4K
#define UART_VIRT 0xF0001000

#define TTC0_PHYS 0xF8001000
#define TTC0_SIZE SZ_4K
Expand All @@ -36,12 +37,17 @@
#define SCU_PERIPH_SIZE SZ_8K
#define SCU_PERIPH_VIRT (TTC0_VIRT - SCU_PERIPH_SIZE)

#if IS_ENABLED(CONFIG_DEBUG_ZYNQ_UART1)
# define LL_UART_PADDR UART1_PHYS
#else
# define LL_UART_PADDR UART0_PHYS
#endif

#define LL_UART_VADDR UART_VIRT

/* The following are intended for the devices that are mapped early */

#define TTC0_BASE IOMEM(TTC0_VIRT)
#define SCU_PERIPH_BASE IOMEM(SCU_PERIPH_VIRT)

#define LL_UART_PADDR UART0_PHYS
#define LL_UART_VADDR UART0_VIRT

#endif

0 comments on commit 36d140c

Please sign in to comment.