From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH 3/5] ppc pcm030: Move memory registration to mem_initcall
Date: Wed, 14 Dec 2011 13:43:05 +0100 [thread overview]
Message-ID: <1323866587-2385-4-git-send-email-s.hauer@pengutronix.de> (raw)
In-Reply-To: <1323866587-2385-1-git-send-email-s.hauer@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
arch/ppc/boards/pcm030/pcm030.c | 16 ++++++++++++----
1 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/arch/ppc/boards/pcm030/pcm030.c b/arch/ppc/boards/pcm030/pcm030.c
index 4abf6cb..9c6ccb7 100644
--- a/arch/ppc/boards/pcm030/pcm030.c
+++ b/arch/ppc/boards/pcm030/pcm030.c
@@ -45,7 +45,6 @@ static struct mpc5xxx_fec_platform_data fec_info = {
static int devices_init (void)
{
- unsigned long sdramsize;
struct stat s;
int ret;
@@ -56,9 +55,6 @@ static int devices_init (void)
mpc5200_setup_cs(MPC5200_BOOTCS, 0xfe000000, SZ_32M, 0x0008fd00);
add_cfi_flash_device(-1, 0xfe000000, 32 * 1024 * 1024, 0);
- sdramsize = mpc5200_get_sdram_size(0) + mpc5200_get_sdram_size(1);
- barebox_add_memory_bank("ram0", 0x0, sdramsize);
-
add_generic_device("fec_mpc5xxx", -1, NULL, MPC5XXX_FEC, 0x200,
IORESOURCE_MEM, &fec_info);
@@ -85,6 +81,18 @@ static int console_init(void)
console_initcall(console_init);
+static int mem_init(void)
+{
+ unsigned long sdramsize;
+
+ sdramsize = mpc5200_get_sdram_size(0) + mpc5200_get_sdram_size(1);
+
+ barebox_add_memory_bank("ram0", 0x0, sdramsize);
+
+ return 0;
+}
+mem_initcall(mem_init);
+
#include "mt46v32m16-75.h"
static void sdram_start (int hi_addr)
--
1.7.7.3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2011-12-14 12:43 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-14 12:43 ppc work Sascha Hauer
2011-12-14 12:43 ` [PATCH 1/5] ppc pcm030: Fix device resource sizes Sascha Hauer
2011-12-14 12:43 ` [PATCH 2/5] pcm030: update defconfig Sascha Hauer
2011-12-14 12:43 ` Sascha Hauer [this message]
2011-12-14 12:43 ` [PATCH 4/5] ppc: switch to libfdt based oftree implementation Sascha Hauer
2011-12-14 15:10 ` Jean-Christophe PLAGNIOL-VILLARD
2011-12-14 16:33 ` Sascha Hauer
2011-12-14 12:43 ` [PATCH 5/5] remove old ft_build support Sascha Hauer
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=1323866587-2385-4-git-send-email-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--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