diff options
author | Tim Harvey <tharvey@gateworks.com> | 2014-06-02 16:13:27 -0700 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-06-06 10:07:26 +0200 |
commit | 0cc11dea89861802c2f278830e5d97b32c3fef4d (patch) | |
tree | 29367862199a0cae5d7a82593eaeab9415224762 /board/gateworks/gw_ventana/Makefile | |
parent | 680e8db4503da790a07e90bf88fb4e1008097e2b (diff) | |
download | u-boot-0cc11dea89861802c2f278830e5d97b32c3fef4d.tar.gz |
imx: ventana: switch to SPL
Switch to an SPL image. The SPL for Ventana does the following:
- setup i2c and read the factory programmed EEPROM to obtain DRAM config
and model for board-specific calibration data
- configure DRAM per CPU/size/layout/devices/calibration
- load u-boot.img from NAND and jump to it
This allows for a single SPL+u-boot.img to replace the previous multiple boa
configurations.
Cc: Stefan Roese <sr@denx.de>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Cc: Andy Ng <andreas2025@gmail.com>
Cc: Eric Nelson <eric.nelson@boundarydevices.com>
Cc: Tapani Utriainen <tapani@technexion.com>
Cc: Tom Rini <trini@ti.com>
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'board/gateworks/gw_ventana/Makefile')
-rw-r--r-- | board/gateworks/gw_ventana/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/gateworks/gw_ventana/Makefile b/board/gateworks/gw_ventana/Makefile index 03bd1fd372..33a1788f20 100644 --- a/board/gateworks/gw_ventana/Makefile +++ b/board/gateworks/gw_ventana/Makefile @@ -7,4 +7,5 @@ # obj-y := gw_ventana.o gsc.o eeprom.o +obj-$(CONFIG_SPL_BUILD) += gw_ventana_spl.o |