diff mbox

[U-Boot,3/4] ARM: am57xx: cl-som-am57x: support for AM5718

Message ID 1495031368-29005-4-git-send-email-uri.mashiach@compulab.co.il
State Accepted
Commit a4e0a63357687e84d54e134baad5d223f485e572
Delegated to: Tom Rini
Headers show

Commit Message

Uri Mashiach May 17, 2017, 2:29 p.m. UTC
Disable SDRAM controller EMIF2 for single core SOC
Set SDRAM size size to 1GB

Signed-off-by: Uri Mashiach <uri.mashiach@compulab.co.il>
---
 board/compulab/cl-som-am57x/spl.c | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Tom Rini May 17, 2017, 10 p.m. UTC | #1
On Wed, May 17, 2017 at 05:29:27PM +0300, Uri Mashiach wrote:

> Disable SDRAM controller EMIF2 for single core SOC
> Set SDRAM size size to 1GB
> 
> Signed-off-by: Uri Mashiach <uri.mashiach@compulab.co.il>

Reviewed-by: Tom Rini <trini@konsulko.com>
Tom Rini June 6, 2017, 12:20 a.m. UTC | #2
On Wed, May 17, 2017 at 05:29:27PM +0300, Uri Mashiach wrote:

> Disable SDRAM controller EMIF2 for single core SOC
> Set SDRAM size size to 1GB
> 
> Signed-off-by: Uri Mashiach <uri.mashiach@compulab.co.il>
> Reviewed-by: Tom Rini <trini@konsulko.com>

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

Patch

diff --git a/board/compulab/cl-som-am57x/spl.c b/board/compulab/cl-som-am57x/spl.c
index 855678f..de2dadc 100644
--- a/board/compulab/cl-som-am57x/spl.c
+++ b/board/compulab/cl-som-am57x/spl.c
@@ -19,7 +19,12 @@  static const struct dmm_lisa_map_regs cl_som_am57x_lisa_regs = {
 
 void emif_get_dmm_regs(const struct dmm_lisa_map_regs **dmm_lisa_regs)
 {
+	/* Disable SDRAM controller EMIF2 for single core SOC */
 	*dmm_lisa_regs = &cl_som_am57x_lisa_regs;
+	if (omap_revision() == DRA722_ES1_0) {
+		((struct dmm_lisa_map_regs *) *dmm_lisa_regs)->dmm_lisa_map_3 =
+		  0x80640100;
+	}
 }
 
 static const struct emif_regs cl_som_am57x_emif1_ddr3_532mhz_emif_regs = {