u-boot/board/solidrun/mx6cuboxi
Peng Fan f2ff834365 imx: mx6: ddr init MMDC according to ddr_type
To i.MX6, DDR3 and LPDDR2 is supported, so rename function mx6_dram_cfg
to mx6_ddr3_cfg and the original mx6_dram_cfg function only is a wrapper.
The new reimplemented function mx6_dram_cfg only invokes mx6_ddr3_cfg
when ddr_type is for DDR3. Later we can use ddr_type to initialize
MMDC for LPDDR2.

Initialize ddr_type for different boards which enable SPL.

Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Tim Harvey <tharvey@gateworks.com>
Cc: Stefan Roese <sr@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Reviewed-by: Stefan Roese <sr@denx.de>
2015-09-02 15:34:12 +02:00
..
Kconfig mx6: Add initial SPL support for HummingBoard-i2eX 2015-04-22 14:39:06 +02:00
MAINTAINERS mx6cuboxi: Fix the defconfig name 2015-04-27 13:13:57 +02:00
Makefile mx6: Add initial SPL support for HummingBoard-i2eX 2015-04-22 14:39:06 +02:00
README mx6cuboxi: Mention Cubox-i in the README 2015-05-15 19:21:23 +02:00
mx6cuboxi.c imx: mx6: ddr init MMDC according to ddr_type 2015-09-02 15:34:12 +02:00

README

How to use U-boot on Solid-run mx6 Hummingboard and Cubox-i
-----------------------------------------------------------

- Build U-boot for Hummingboard/Cubox-i:

$ make mrproper
$ make mx6cuboxi_defconfig
$ make

This will generate the SPL image called SPL and the u-boot.img.

- Flash the SPL image into the SD card:

sudo dd if=SPL of=/dev/mmcblk0 bs=1k seek=1; sync

- Flash the u-boot.img image into the SD card:

sudo dd if=u-boot.img of=/dev/mmcblk0 bs=1k seek=69; sync

- Insert the SD card in the board, power it up and U-boot messages should
come up.