summaryrefslogtreecommitdiffstats
path: root/include/configs/ti_omap4_common.h
diff options
context:
space:
mode:
authorAsh Charles <ashcharles@gmail.com>2014-05-14 08:34:34 -0700
committerTom Rini <trini@ti.com>2014-05-23 19:40:05 -0400
commitffe1691159bf0d075cd4eabae63384cbaf6475d9 (patch)
treeb31fd69b6e4ea9cda2a99ec14bd25de444ebbcf9 /include/configs/ti_omap4_common.h
parent939911a64bdf3594651e041f3b24a93b8a380643 (diff)
downloadtalos-obmc-uboot-ffe1691159bf0d075cd4eabae63384cbaf6475d9.tar.gz
talos-obmc-uboot-ffe1691159bf0d075cd4eabae63384cbaf6475d9.zip
omap4: duovero: Add Gumstix DuoVero machine.
This adds the Gumstix DuoVero machine [1]. This is a OMAP4430-based computer-on-module (COM aka SOM) that can be mounted on various expansion boards with different peripherals. [1] https://store.gumstix.com/index.php/category/43/ Signed-off-by: Ash Charles <ash@gumstix.com> [trini: Rename gpmc_enable_gpmc_cs_config to gpmc_enable_gpmc_net_config] Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include/configs/ti_omap4_common.h')
-rw-r--r--include/configs/ti_omap4_common.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h
index 77fbfb6410..44b37183b6 100644
--- a/include/configs/ti_omap4_common.h
+++ b/include/configs/ti_omap4_common.h
@@ -109,9 +109,13 @@
"importbootenv=echo Importing environment from mmc${mmcdev} ...; " \
"env import -t ${loadaddr} ${filesize}\0" \
"loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
+ "loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \
"mmcboot=echo Booting from mmc${mmcdev} ...; " \
"run mmcargs; " \
"bootz ${loadaddr} - ${fdtaddr}\0" \
+ "uimageboot=echo Booting from mmc${mmcdev} ...; " \
+ "run mmcargs; " \
+ "bootm ${loadaddr}\0" \
"findfdt="\
"if test $board_name = sdp4430; then " \
"setenv fdtfile omap4-sdp.dtb; fi; " \
@@ -121,6 +125,8 @@
"setenv fdtfile omap4-panda-a4.dtb; fi;" \
"if test $board_name = panda-es; then " \
"setenv fdtfile omap4-panda-es.dtb; fi;" \
+ "if test $board_name = duovero; then " \
+ "setenv fdtfile omap4-duovero.dtb; fi;" \
"if test $fdtfile = undefined; then " \
"echo WARNING: Could not determine device tree to use; fi; \0" \
"loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
@@ -144,6 +150,9 @@
"run loadfdt;" \
"run mmcboot; " \
"fi; " \
+ "if run loaduimage; then " \
+ "run uimageboot;" \
+ "fi; " \
"fi"
/*
OpenPOWER on IntegriCloud