mpc5200: digsy_mtc: fix extension board EEPROM I2C address for rev5
authorAnatolij Gustschin <agust@denx.de>
Mon, 1 Aug 2011 04:16:29 +0000 (04:16 +0000)
committerWolfgang Denk <wd@denx.de>
Thu, 4 Aug 2011 21:32:33 +0000 (23:32 +0200)
On newer rev5 hardware the extension board EEPROM I2C address
has been changed to 0x54. Make this I2C address configurable
depending on CONFIG_DIGSY_REV5 so that extention board presence
detection works correctly on newer hardware.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
board/intercontrol/digsy_mtc/digsy_mtc.c
include/configs/digsy_mtc.h

index 784ba2a..4d6b33d 100644 (file)
@@ -220,9 +220,6 @@ int checkboard(void)
 
 #define GPT_GPIO_ON            0x00000034      /* GPT as simple GPIO, high */
 
-/* ExBo I2C Addresses */
-#define EXBO_EE_I2C_ADDRESS    0x56
-
 static void exbo_hw_init(void)
 {
        struct mpc5xxx_gpt *gpt = (struct mpc5xxx_gpt *)MPC5XXX_GPT;
@@ -232,7 +229,7 @@ static void exbo_hw_init(void)
        unsigned char val;
 
        /* 1st, check if extension board is present */
-       if (i2c_read(EXBO_EE_I2C_ADDRESS, 0, 1, &val, 1))
+       if (i2c_read(CONFIG_SYS_EXBO_EE_I2C_ADDRESS, 0, 1, &val, 1))
                return;
 
        /* configure IrDA pins (PSC6 port) as gpios */
index ec5223c..522ec57 100644 (file)
 #define CONFIG_SYS_DS1339_TCR_VAL      0xAB    /* diode + 4k resistor */
 #endif
 
+/* ExBo I2C Addresses */
+#if defined(CONFIG_DIGSY_REV5)
+#define CONFIG_SYS_EXBO_EE_I2C_ADDRESS 0x54
+#else
+#define CONFIG_SYS_EXBO_EE_I2C_ADDRESS 0x56
+#endif
+
 /*
  * Flash configuration
  */