summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2014-01-07 20:06:56 -0600
committerTom Rini <trini@ti.com>2014-02-21 14:03:44 -0500
commit4f80d5ba8e79e4bc96b71295703372718528b3a7 (patch)
tree6459fda500d64e3ceeffc1dadd667a28424dcdba
parent2efa79ae00fa935cf336b09ec12188654ae545ce (diff)
downloadblackbird-obmc-uboot-4f80d5ba8e79e4bc96b71295703372718528b3a7.tar.gz
blackbird-obmc-uboot-4f80d5ba8e79e4bc96b71295703372718528b3a7.zip
omap4_common: config: remove I2C for SPL mode
Commit 6789e84ecaa8f45d053084e08c381284a04abff7 (i2c, omap24xx: convert driver to new mutlibus/mutliadapter framework) intended to make I2C driver compatible with latest changes. It unfortunately has had a impact on size on SPL as well. For example on SDP4430, 32032 bytes before/MLO 35416 bytes after/MLO With this mentioned commit, MLO stops booting on SDP4430 as only 32K is accessible for non-secure (bootloader) s/w on GP devices and the size increase to 56K fails boot. On the latest u-boot commit e7be18225fbea76d1f0034b224f0d1e60f07cfcf, MLO is now at size 35592 bytes, However, I2C is not necessary for SPL to function as we use SR_I2C for controlling the PMIC. Disabling I2C reduces MLO to 32224 bytes which allows OMAP4 GP platform to boot up. Since this is common for all OMAP4 platforms, remove the need for I2C for SPL builds in the common config. Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-by: Sricharan R <r.sricharan@ti.com>
-rw-r--r--include/configs/ti_omap4_common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h
index 2f0e4c0f67..bcb5eabd75 100644
--- a/include/configs/ti_omap4_common.h
+++ b/include/configs/ti_omap4_common.h
@@ -163,4 +163,10 @@
#define CONFIG_SPL_NAND_AM33XX_BCH /* ELM support */
#endif
+#ifdef CONFIG_SPL_BUILD
+/* No need for i2c in SPL mode as we will use SRI2C for PMIC access on OMAP4 */
+#undef CONFIG_SYS_I2C
+#undef CONFIG_SYS_I2C_OMAP24XX
+#endif
+
#endif /* __CONFIG_TI_OMAP4_COMMON_H */
OpenPOWER on IntegriCloud