diff options
author | Deepak Saxena <dsaxena@plexity.net> | 2005-06-24 15:54:35 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-06-24 15:54:35 -0400 |
commit | 5932ae3f5d610fd8d047ef4693bab9f084e5c56d (patch) | |
tree | fc9d2d3b8b3a0144a33524bddc0cbf25e8aedd26 /arch | |
parent | c4982887cacf2122bc256e901598b58caf4a34be (diff) |
[PATCH] ARM: 2745/1: Fix IXP4xx debug macros
Patch from Deepak Saxena
Current IXP4xx debug macros do not work in the small window between
the MMU being enabled and the call to map_io() b/c the standard
peripheral mapping is not properly setup for use with the low-level
debug code. This patch creates a new section-aligned mapping for the
UART specifically for use with the debug macros.
Signed-off-by: Deepak Saxena
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-ixp4xx/common.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-ixp4xx/common.c b/arch/arm/mach-ixp4xx/common.c index 267ba02d77dc..f39e8408488f 100644 --- a/arch/arm/mach-ixp4xx/common.c +++ b/arch/arm/mach-ixp4xx/common.c | |||
@@ -141,7 +141,15 @@ static struct map_desc ixp4xx_io_desc[] __initdata = { | |||
141 | .physical = IXP4XX_PCI_CFG_BASE_PHYS, | 141 | .physical = IXP4XX_PCI_CFG_BASE_PHYS, |
142 | .length = IXP4XX_PCI_CFG_REGION_SIZE, | 142 | .length = IXP4XX_PCI_CFG_REGION_SIZE, |
143 | .type = MT_DEVICE | 143 | .type = MT_DEVICE |
144 | }, | ||
145 | #ifdef CONFIG_DEBUG_LL | ||
146 | { /* Debug UART mapping */ | ||
147 | .virtual = IXP4XX_DEBUG_UART_BASE_VIRT, | ||
148 | .physical = IXP4XX_DEBUG_UART_BASE_PHYS, | ||
149 | .length = IXP4XX_DEBUG_UART_REGION_SIZE, | ||
150 | .type = MT_DEVICE | ||
144 | } | 151 | } |
152 | #endif | ||
145 | }; | 153 | }; |
146 | 154 | ||
147 | void __init ixp4xx_map_io(void) | 155 | void __init ixp4xx_map_io(void) |