]> git.baikalelectronics.ru Git - uboot.git/commit
davinci: spl: use bootcfg to select boot device
authorFabien Parent <fparent@baylibre.com>
Mon, 9 Jan 2017 10:06:36 +0000 (11:06 +0100)
committerTom Rini <trini@konsulko.com>
Sat, 14 Jan 2017 21:47:16 +0000 (16:47 -0500)
commitfe84e1ce9556aff047db2cbf67ca6d96291c4b7e
treeb6bdce26a521ae528367101be74b516b67c35c95
parentc4fe183a93ddfedf3d4e6014fe8a910b690f5f0f
davinci: spl: use bootcfg to select boot device

Right now the SPL is trying to load u-boot based on defines, i.e. one
has to define CONFIG_SPL_NAND_SIMPLE to boot from NAND,
or CONFIG_SPL_SPI_LOAD to boot from SPI FLASH, etc...
This prevent us from having a single SPL image that is able to boot from
all media, and one need to build an image for each medium. This
commit is replacing the #ifdef that select the boot medium by reading
the value of the boot pins (via the BOOTCFG register).

Now a single SPL image will be able to read from the boot pin to know
which device should be used to load u-boot.

Signed-off-by: Fabien Parent <fparent@baylibre.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
arch/arm/mach-davinci/include/mach/hardware.h
arch/arm/mach-davinci/spl.c