Only one board, the nhk8815. This uses hardcoded SDRAM values. Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- 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 <common.h> +#include <sizes.h> +#include <asm/barebox-arm-head.h> +#include <asm/barebox-arm.h> + +void __naked reset(void) +{ + common_reset(); + barebox_arm_entry(0x0, SZ_64M, 0); +} -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox