Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f309d27 authored by Magnus Damm's avatar Magnus Damm Committed by Simon Horman
Browse files

ARM: shmobile: Remove romImage CONFIG_MEMORY_START



Instead of relying on CONFIG_MEMORY_START for memory
base address, let each romImage board header file
specify this information.

This is reworks code not to rely on CONFIG_MEMORY_START
which in turn is needed for ARCH_MULTIPLATFORM.

Signed-off-by: default avatarMagnus Damm <damm@opensource.se>
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
parent 2a580095
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ __image_start:
__image_end:
	.long	_got_end
__load_base:
	.long	CONFIG_MEMORY_START + 0x02000000 @ Load at 32Mb into SDRAM
	.long	MEMORY_START + 0x02000000 @ Load at 32Mb into SDRAM
__loaded:
	.long	__continue
	.align
+2 −0
Original line number Diff line number Diff line
@@ -12,9 +12,11 @@

#ifdef CONFIG_MACH_AP4EVB
#define MACH_TYPE	MACH_TYPE_AP4EVB
#define MEMORY_START	0x40000000
#include "mach/head-ap4evb.txt"
#elif defined(CONFIG_MACH_MACKEREL)
#define MACH_TYPE	MACH_TYPE_MACKEREL
#define MEMORY_START	0x40000000
#include "mach/head-mackerel.txt"
#else
#error "unsupported board."