From: Alexander Shiyan <shc_work@mail.ru>
To: barebox@lists.infradead.org
Subject: [RFC only] ARM: i.MX: Fix SDRAM size detect
Date: Fri, 26 Apr 2013 14:21:54 +0400 [thread overview]
Message-ID: <1366971714-32682-1-git-send-email-shc_work@mail.ru> (raw)
This is a trying to fix problem described in:
http://lists.infradead.org/pipermail/barebox/2013-April/014182.html
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
arch/arm/mach-imx/esdctl.c | 13 ++-----------
arch/arm/mach-imx/imx51.c | 21 +++++++++++++++++++++
2 files changed, 23 insertions(+), 11 deletions(-)
diff --git a/arch/arm/mach-imx/esdctl.c b/arch/arm/mach-imx/esdctl.c
index cb57d45..bde02fd 100644
--- a/arch/arm/mach-imx/esdctl.c
+++ b/arch/arm/mach-imx/esdctl.c
@@ -345,7 +345,7 @@ static int imx_esdctl_init(void)
return platform_driver_register(&imx_serial_driver);
}
-mem_initcall(imx_esdctl_init);
+//mem_initcall(imx_esdctl_init);
/*
* The i.MX SoCs usually have two SDRAM chipselects. The following
@@ -435,16 +435,7 @@ void __naked __noreturn imx35_barebox_entry(uint32_t boarddata)
void __naked __noreturn imx51_barebox_entry(uint32_t boarddata)
{
- unsigned long base;
- unsigned long size;
-
- base = MX51_CSD0_BASE_ADDR;
-
- size = imx_v3_sdram_size((void *)MX51_ESDCTL_BASE_ADDR, 0);
- if (size == SZ_256M)
- size += imx_v3_sdram_size((void *)MX51_ESDCTL_BASE_ADDR, 1);
-
- barebox_arm_entry(base, size, boarddata);
+ barebox_arm_entry(MX51_CSD0_BASE_ADDR, SZ_128M, boarddata);
}
void __naked __noreturn imx53_barebox_entry(uint32_t boarddata)
diff --git a/arch/arm/mach-imx/imx51.c b/arch/arm/mach-imx/imx51.c
index 54d99a4..6593b7d 100644
--- a/arch/arm/mach-imx/imx51.c
+++ b/arch/arm/mach-imx/imx51.c
@@ -21,6 +21,8 @@
#include <mach/revision.h>
#include <mach/clock-imx51_53.h>
#include <mach/generic.h>
+#include <mach/esdctl.h>
+#include <asm/memory.h>
#define SI_REV 0x48
@@ -76,6 +78,25 @@ static int imx51_init(void)
}
postcore_initcall(imx51_init);
+static int imx51_memory_init(void)
+{
+ void __iomem *esdctl = IOMEM(MX51_ESDCTL_BASE_ADDR + IMX_ESDCTL1);
+ unsigned long add, size = SZ_128M;
+
+ add = get_ram_size((ulong *)(MX51_CSD0_BASE_ADDR + SZ_128M), SZ_128M);
+ if (add) {
+ size += add;
+ if (readl(esdctl) & ESDCTL0_SDE)
+ size += get_ram_size((ulong *)MX51_CSD1_BASE_ADDR, SZ_256M);
+
+ }
+
+ arm_add_mem_device("ram0", MX51_CSD0_BASE_ADDR, size);
+
+ return 0;
+}
+mem_initcall(imx51_memory_init);
+
/*
* Saves the boot source media into the $bootsource environment variable
*
--
1.8.1.5
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2013-04-26 10:22 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-26 10:21 Alexander Shiyan [this message]
2013-04-26 10:48 ` Sascha Hauer
2013-04-26 11:12 ` Re[2]: " Alexander Shiyan
2013-04-26 11:42 ` Sascha Hauer
2013-04-26 11:50 ` Re[2]: " Alexander Shiyan
2013-04-26 21:48 ` [PATCH] Fix ccxmx51 SDRAM size detection Sascha Hauer
2013-04-26 21:48 ` [PATCH 1/2] ARM: i.MX: Allow disabling SDRAM autodetection Sascha Hauer
2013-04-26 21:48 ` [PATCH 2/2] ARM: i.MX: ccxmx51: detect SDRAM size by board id Sascha Hauer
2013-05-07 11:45 ` Alexander Shiyan
2013-05-08 6:25 ` Sascha Hauer
2013-05-07 12:39 ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-07 12:46 ` Re[2]: " Alexander Shiyan
2013-05-07 16:06 ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-27 4:41 ` [PATCH] Fix ccxmx51 SDRAM size detection Alexander Shiyan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1366971714-32682-1-git-send-email-shc_work@mail.ru \
--to=shc_work@mail.ru \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox