From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:6f8:1178:4:290:27ff:fe1d:cc33]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TzPlU-00063y-0T for barebox@lists.infradead.org; Sun, 27 Jan 2013 10:47:23 +0000 From: Sascha Hauer Date: Sun, 27 Jan 2013 11:46:42 +0100 Message-Id: <1359283623-1782-14-git-send-email-s.hauer@pengutronix.de> In-Reply-To: <1359283623-1782-1-git-send-email-s.hauer@pengutronix.de> References: <1359283623-1782-1-git-send-email-s.hauer@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: barebox-bounces@lists.infradead.org Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 13/34] ARM nomadik boards: switch to barebox_arm_entry To: barebox@lists.infradead.org Only one board, the nhk8815. This uses hardcoded SDRAM values. Signed-off-by: Sascha Hauer --- arch/arm/Kconfig | 2 ++ arch/arm/boards/nhk8815/Makefile | 2 ++ arch/arm/boards/nhk8815/lowlevel.c | 10 ++++++++++ 3 files changed, 14 insertions(+) create mode 100644 arch/arm/boards/nhk8815/lowlevel.c diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 5f5b965..dcd48a9 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -77,6 +77,8 @@ config ARCH_NOMADIK bool "STMicroelectronics Nomadik" select CPU_ARM926T select CLOCKSOURCE_NOMADIK + select MACH_HAS_LOWLEVEL_INIT + select MACH_DO_LOWLEVEL_INIT help Support for the Nomadik platform by ST-Ericsson diff --git a/arch/arm/boards/nhk8815/Makefile b/arch/arm/boards/nhk8815/Makefile index 2b9dba4..dbb2a71 100644 --- a/arch/arm/boards/nhk8815/Makefile +++ b/arch/arm/boards/nhk8815/Makefile @@ -1 +1,3 @@ obj-y += setup.o +obj-y += lowlevel.o +pbl-y += lowlevel.o diff --git a/arch/arm/boards/nhk8815/lowlevel.c b/arch/arm/boards/nhk8815/lowlevel.c new file mode 100644 index 0000000..3956347 --- /dev/null +++ b/arch/arm/boards/nhk8815/lowlevel.c @@ -0,0 +1,10 @@ +#include +#include +#include +#include + +void __naked reset(void) +{ + common_reset(); + barebox_arm_entry(0x0, SZ_64M, 0); +} -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox