diff options
author | Stefano Babic <sbabic@denx.de> | 2012-10-10 21:11:46 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2012-10-26 16:27:59 +0200 |
commit | d81b27a24507c578764270865606ee6a91036616 (patch) | |
tree | 2e9c9d135e4146fc15c182a31f2a293b4c30542b /arch/arm/include/asm/arch-mx35 | |
parent | a3cbc3969d665b9764c99d17e7975331590d72d9 (diff) | |
download | u-boot-imx-d81b27a24507c578764270865606ee6a91036616.zip u-boot-imx-d81b27a24507c578764270865606ee6a91036616.tar.gz u-boot-imx-d81b27a24507c578764270865606ee6a91036616.tar.bz2 |
MX35: add support for woodburn board
The woodburn board is based on the MX35 SOC.
Support for both external (NOR) and internal
(SD Card) boot mode are added. It uses the
generic SPL framework to implement the internal boot
mode.
The following peripherals are supported:
- Ethernet (FEC)
- SD Card
- NAND (512 MB)
- NOR Flash
In the internal boot mode, a simple imximage header
is generated to set the address in internal RAM
where the SOC must copy the SPL code. The initial setup
is then demanded to the SPL itself.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/include/asm/arch-mx35')
-rw-r--r-- | arch/arm/include/asm/arch-mx35/sys_proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-mx35/sys_proto.h b/arch/arm/include/asm/arch-mx35/sys_proto.h index 9c0d513..aa3549c 100644 --- a/arch/arm/include/asm/arch-mx35/sys_proto.h +++ b/arch/arm/include/asm/arch-mx35/sys_proto.h @@ -25,6 +25,8 @@ #define _SYS_PROTO_H_ u32 get_cpu_rev(void); +void mx3_setup_sdram_bank(u32 start_address, u32 ddr2_config, + u32 row, u32 col, u32 dsize, u32 refresh); #define is_soc_rev(rev) ((get_cpu_rev() & 0xFF) - rev) #endif |