diff mbox

[U-Boot] ARM: OMAP4+: Fix MA detection during SDRAM_AUTO_DETECTION

Message ID 1371619245-7156-1-git-send-email-lokeshvutla@ti.com
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Lokesh Vutla June 19, 2013, 5:20 a.m. UTC
During SDRAM_AUTO_DETECTION MA is not configured.
For Soc's > OMAP4460 MA is present. So populating
MA for the same.

Tested on OMAP4430 PANDA, OMAP4460 PANDA.

Reported-by: Dan Murphy <dmurphy@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
 arch/arm/cpu/armv7/omap-common/emif-common.c |    3 +++
 1 file changed, 3 insertions(+)

Comments

Tom Rini July 2, 2013, 8:07 p.m. UTC | #1
On Wed, Jun 19, 2013 at 10:50:45AM +0530, Lokesh Vutla wrote:

> During SDRAM_AUTO_DETECTION MA is not configured.
> For Soc's > OMAP4460 MA is present. So populating
> MA for the same.
> 
> Tested on OMAP4430 PANDA, OMAP4460 PANDA.
> 
> Reported-by: Dan Murphy <dmurphy@ti.com>
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Applied to u-boot-ti/master, thanks!
diff mbox

Patch

diff --git a/arch/arm/cpu/armv7/omap-common/emif-common.c b/arch/arm/cpu/armv7/omap-common/emif-common.c
index 11e830a..e6287cd 100644
--- a/arch/arm/cpu/armv7/omap-common/emif-common.c
+++ b/arch/arm/cpu/armv7/omap-common/emif-common.c
@@ -1180,6 +1180,9 @@  void dmm_init(u32 base)
 	/* TRAP for invalid TILER mappings in section 0 */
 	lis_map_regs_calculated.dmm_lisa_map_0 = DMM_LISA_MAP_0_INVAL_ADDR_TRAP;
 
+	if (omap_revision() >= OMAP4460_ES1_0)
+		lis_map_regs_calculated.is_ma_present = 1;
+
 	lisa_map_regs = &lis_map_regs_calculated;
 #endif
 	struct dmm_lisa_map_regs *hw_lisa_map_regs =