* [PATCH] mvebu: rn2120: Make available all RAM
@ 2017-02-15 11:18 Uwe Kleine-König
0 siblings, 0 replies; only message in thread
From: Uwe Kleine-König @ 2017-02-15 11:18 UTC (permalink / raw)
To: barebox
binary.0 sets up all RAM but the address decoding isnt' adapted accordingly
which makes barebox assume that there are only 512 MiB of RAM on a single
bank instead of two banks with 1 GiB each.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
arch/arm/boards/netgear-rn2120/lowlevel.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/arch/arm/boards/netgear-rn2120/lowlevel.c b/arch/arm/boards/netgear-rn2120/lowlevel.c
index 6026166e3201..5cde2b657bd5 100644
--- a/arch/arm/boards/netgear-rn2120/lowlevel.c
+++ b/arch/arm/boards/netgear-rn2120/lowlevel.c
@@ -34,6 +34,21 @@ ENTRY_FUNCTION(start_netgear_rn2120, r0, r1, r2)
writel((1 << 10) | readl((void *)0xd0018140), (void *)0xd0018140);
writel(~(1 << 10) & readl((void *)0xd0018144), (void *)0xd0018144);
+ /*
+ * The vendor binary that initializes RAM doesn't program the SDRAM
+ * Address Decoding registers to match the actual available RAM. But as
+ * barebox later determines the RAM size from these, fix them up here.
+ */
+
+ /* Win 1 Base Address Register: base=0x40000000 */
+ writel(0x40000000, (void *)0xd0020188);
+ /* Win 1 Control Register: size=0x4000000, wincs=1, en=1*/
+ writel(0x3fffffe5, (void *)0xd002018c);
+
+ /* Win 0 Base Address Register is already 0, base=0x00000000 */
+ /* Win 0 Control Register: size=0x4000000, wincs=0, en=1 */
+ writel(0x3fffffe1, (void *)0xd0020184);
+
fdt = __dtb_armada_xp_rn2120_bb_start -
get_runtime_offset();
--
2.11.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2017-02-15 11:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-15 11:18 [PATCH] mvebu: rn2120: Make available all RAM Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox