[PATCH] ARM: 2714/1: Fix the IB2 definitions for the Versatile platform
authorCatalin Marinas <catalin.marinas@com.rmk.(none)>
Thu, 16 Jun 2005 17:01:12 +0000 (18:01 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Thu, 16 Jun 2005 17:01:12 +0000 (18:01 +0100)
Patch from Catalin Marinas

The initial IB2 addresses did not depend on the IB2 base. This
patch defines them as (VERSATILE_IB2_BASE + offset).

Signed-off-by: Catalin Marinas
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
include/asm-arm/arch-versatile/platform.h

index 2598d1f08548a1258e33a06e354886866fc1ef4a..a71093e44c58b0c0854ee381ff8dae8d7d358902 100644 (file)
 /*
  * IB2 Versatile/AB expansion board definitions
  */
-#define VERSATILE_IB2_CAMERA_BANK      0x24000000
-#define VERSATILE_IB2_KBD_DATAREG      0x25000000
-#define VERSATILE_IB2_IER              0x26000000      /* for VICINTSOURCE27 */
-#define VERSATILE_IB2_CTRL             0x27000000
-#define VERSATILE_IB2_STAT             0x27000004
+#define VERSATILE_IB2_CAMERA_BANK      VERSATILE_IB2_BASE
+#define VERSATILE_IB2_KBD_DATAREG      (VERSATILE_IB2_BASE + 0x01000000)
+
+/* VICINTSOURCE27 */
+#define VERSATILE_IB2_INT_BASE         (VERSATILE_IB2_BASE + 0x02000000)
+#define VERSATILE_IB2_IER              (VERSATILE_IB2_INT_BASE + 0)
+#define VERSATILE_IB2_ISR              (VERSATILE_IB2_INT_BASE + 4)
+
+#define VERSATILE_IB2_CTL_BASE         (VERSATILE_IB2_BASE + 0x03000000)
+#define VERSATILE_IB2_CTRL             (VERSATILE_IB2_CTL_BASE + 0)
+#define VERSATILE_IB2_STAT             (VERSATILE_IB2_CTL_BASE + 4)
 #endif
 
 #endif