ARM: am3517_evm: Disable DM_I2C_COMPAT
authorAdam Ford <aford173@gmail.com>
Sun, 19 Aug 2018 16:11:03 +0000 (11:11 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 12 Sep 2018 01:48:04 +0000 (21:48 -0400)
DM_I2C_COMPAT is somehow being enabled outside of Kconfig, so
this explicitly undefines it in the header file, and brackets
the I2C initialization around an #ifdef to not manually
initialize the I2C controller when the DM_I2C is enabled.

Signed-off-by: Adam Ford <aford173@gmail.com>
Tested-by: Derald D. Woods <woods.technical@gmail.com>
board/logicpd/am3517evm/am3517evm.c
include/configs/am3517_evm.h

index da8be22..6f72839 100644 (file)
@@ -108,10 +108,11 @@ int misc_init_r(void)
        volatile unsigned int ctr;
        u32 reset;
 
+#if !defined(CONFIG_DM_I2C)
 #ifdef CONFIG_SYS_I2C_OMAP24XX
        i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);
 #endif
-
+#endif
        omap_die_id_display();
 
        am3517_evm_musb_init();
index 1fe81d8..a3d261b 100644 (file)
@@ -23,8 +23,9 @@
 #define CONFIG_SYS_SPL_MALLOC_SIZE     0x100000
 
 #include <configs/ti_omap3_common.h>
-#undef CONFIG_SDRC     /* Disable SDRC since we have EMIF4 */
 
+#undef CONFIG_DM_I2C_COMPAT
+#define CONFIG_MISC_INIT_R
 #define CONFIG_REVISION_TAG
 
 /* Hardware drivers */