From mboxrd@z Thu Jan 1 00:00:00 1970 From: Prabhakar Lad Date: Thu, 7 Jun 2012 15:25:31 +0530 Subject: [U-Boot] [PATCH v2 4/7] da850/omap-l138: Make MMC and NOR support mutually exclusive In-Reply-To: <1339062934-20648-1-git-send-email-prabhakar.lad@ti.com> References: <1339062934-20648-1-git-send-email-prabhakar.lad@ti.com> Message-ID: <1339062934-20648-5-git-send-email-prabhakar.lad@ti.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Rajashekhara, Sudhakar On Logic PD Rev.3 DA850/OMAP-L138 EVM, NOR and MMC/SD cannot work together. This patch enables the MMC/SD support only when NOR support is disabled. NOR Flash identification works even without this patch, but erase and write will have issues. Signed-off-by: Rajashekhara, Sudhakar Signed-off-by: Lad, Prabhakar Signed-off-by: Hadli, Manjunath --- include/configs/da850evm.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h index 3bc83d3..8236c90 100644 --- a/include/configs/da850evm.h +++ b/include/configs/da850evm.h @@ -314,10 +314,12 @@ #endif /* SD/MMC configuration */ +#ifndef CONFIG_USE_NOR #define CONFIG_MMC #define CONFIG_DAVINCI_MMC_SD1 #define CONFIG_GENERIC_MMC #define CONFIG_DAVINCI_MMC +#endif /* Load U-Boot Image From MMC */ #ifdef CONFIG_SPL_MMC_LOAD -- 1.7.4.1