summaryrefslogtreecommitdiff
path: root/arch/avr32/lib/dram_init.c
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2015-02-18 03:11:36 (GMT)
committerTom Rini <trini@ti.com>2015-02-18 03:11:36 (GMT)
commit9ec84f103b3f3e770043b06042e5d2d6f2339e39 (patch)
tree693381b5c55d2a2e1d98707ff39a59ced75d66ef /arch/avr32/lib/dram_init.c
parent1e7b357a4ebf9a99a6258a0bbedf4e318a5263e0 (diff)
parent5c98d7ffb0b11c9e3909f56ec5ce9dff682f1e30 (diff)
downloadu-boot-9ec84f103b3f3e770043b06042e5d2d6f2339e39.tar.xz
Merge branch 'master' of git://git.denx.de/u-boot-avr32
Diffstat (limited to 'arch/avr32/lib/dram_init.c')
-rw-r--r--arch/avr32/lib/dram_init.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/avr32/lib/dram_init.c b/arch/avr32/lib/dram_init.c
new file mode 100644
index 0000000..5078e77
--- /dev/null
+++ b/arch/avr32/lib/dram_init.c
@@ -0,0 +1,17 @@
+/*
+ * Copyright (C) 2015 Andreas Bießmann <andreas.devel@googlemail.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+#include <common.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+int dram_init(void)
+{
+ /* check for the maximum amount of memory possible on AP7000 devices */
+ gd->ram_size = get_ram_size(
+ (void *)CONFIG_SYS_SDRAM_BASE,
+ (256<<20));
+ return 0;
+}