diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2011-12-02 03:47:40 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-09 17:30:10 +0100 |
commit | c944a3ef8224a2d5936b31ebd72a6ebd842409d1 (patch) | |
tree | cb1c87948ae461cdded93c479983e9c472937637 /arch/arm/include | |
parent | 74cf05fc53fc620c9d08eb14ad959c2a065f90c7 (diff) | |
download | u-boot-imx-c944a3ef8224a2d5936b31ebd72a6ebd842409d1.zip u-boot-imx-c944a3ef8224a2d5936b31ebd72a6ebd842409d1.tar.gz u-boot-imx-c944a3ef8224a2d5936b31ebd72a6ebd842409d1.tar.bz2 |
i.MX28: Move SPL to arch/arm/cpu/arm926ejs/mx28
This moves SPL to common location so it can be reused by multiple boards. Also,
this commit adjusts M28 SoM to avoid breakage due to the move.
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Detlev Zundel <dzu@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/arch-mx28/sys_proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-mx28/sys_proto.h b/arch/arm/include/asm/arch-mx28/sys_proto.h index a226ea4..be1f7db 100644 --- a/arch/arm/include/asm/arch-mx28/sys_proto.h +++ b/arch/arm/include/asm/arch-mx28/sys_proto.h @@ -29,4 +29,10 @@ int mx28_wait_mask_clr(struct mx28_register *reg, uint32_t mask, int timeout); int mxsmmc_initialize(bd_t *bis, int id, int (*wp)(int)); +#ifdef CONFIG_SPL_BUILD +#include <asm/arch/iomux-mx28.h> +void mx28_common_spl_init(const iomux_cfg_t *iomux_setup, + const unsigned int iomux_size); +#endif + #endif /* __MX28_H__ */ |