diff options
author | Andrew Lunn <andrew@lunn.ch> | 2012-06-22 08:54:02 +0200 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-06-24 01:19:21 +0200 |
commit | 0fa1f0609a0c1fe8b2be3c0089a2cb48f7fda521 (patch) | |
tree | 2e3a9eaab2c84de0a77c6afa97733d22e4e8fb90 /arch/arm/mach-kirkwood/include/mach/kirkwood.h | |
parent | ARM: Kirkwood: clk_register_gate_fn: add fn assignment (diff) | |
download | linux-0fa1f0609a0c1fe8b2be3c0089a2cb48f7fda521.tar.xz linux-0fa1f0609a0c1fe8b2be3c0089a2cb48f7fda521.zip |
ARM: Orion: Fix Virtual/Physical mixup with watchdog
The orion watchdog is expecting to be passed the physcial address of
the hardware, and will ioremap() it to give a virtual address it will
use as the base address for the hardware. However, when creating the
platform resource record, a virtual address was being used.
Add the necassary #define's so we can pass the physical address as
expected.
Tested on Kirkwood and Orion5x.
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-kirkwood/include/mach/kirkwood.h')
-rw-r--r-- | arch/arm/mach-kirkwood/include/mach/kirkwood.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/include/mach/kirkwood.h b/arch/arm/mach-kirkwood/include/mach/kirkwood.h index fede3d503efa..c5b68510776b 100644 --- a/arch/arm/mach-kirkwood/include/mach/kirkwood.h +++ b/arch/arm/mach-kirkwood/include/mach/kirkwood.h @@ -80,6 +80,7 @@ #define UART1_VIRT_BASE (DEV_BUS_VIRT_BASE | 0x2100) #define BRIDGE_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x20000) +#define BRIDGE_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x20000) #define CRYPTO_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x30000) |