devkit8000/spl: init GPMC for dm9000 in SPLLinux crashes if the GPMC isn't configured for the dm9000.Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>CC: Tom Rini <tom.rini@gmail.com>CC:
devkit8000/spl: init GPMC for dm9000 in SPLLinux crashes if the GPMC isn't configured for the dm9000.Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>CC: Tom Rini <tom.rini@gmail.com>CC: Stefano Babic <sbabic@denx.de>CC: Wolfgang Denk <wd@denx.de>
show more ...
Devkit8000: Switch over to enable_gpmc_cs_configUse enable_gpmc_cs_config instead of local writingtiming configuration for GPMC.Signed-off-by: Thomas Weber <weber@corscience.de>
OMAP3 SPL: Rework memory initalization and devkit8000 supportThis changes to making the board be responsible for providing thememory initialization timings in SPL and converts the devkit8000to th
OMAP3 SPL: Rework memory initalization and devkit8000 supportThis changes to making the board be responsible for providing thememory initialization timings in SPL and converts the devkit8000to this framework. In SPL we try and initialize both CS0 and CS1.Cc: Frederik Kriewitz <frederik@kriewitz.eu>Signed-off-by: Tom Rini <trini@ti.com>
devkit8000: protect board_mmc_initThis function is also defined in omap-common/spl_mmc.de so the implementationin devkit8000.c was protected by a ifdef.Signed-off-by: Simon Schwarz <simonschwarz
devkit8000: protect board_mmc_initThis function is also defined in omap-common/spl_mmc.de so the implementationin devkit8000.c was protected by a ifdef.Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
punt unused clean/distclean targetsThe top level Makefile does not do any recursion into subdirs whencleaning, so these clean/distclean targets in random arch/board dirsnever get used. Punt them
punt unused clean/distclean targetsThe top level Makefile does not do any recursion into subdirs whencleaning, so these clean/distclean targets in random arch/board dirsnever get used. Punt them all.MAKEALL didn't report any errors related to this that I could see.Signed-off-by: Mike Frysinger <vapier@gentoo.org>
devkit8000: Add nand-spl support for new SPLAdd NAND SPL support to the devkit8000 configSigned-off-by: Simon Schwarz <simonschwarzcor@gmail.com>Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
devkit8000: Use generic MMC driverSwitch from the legacy omap3 mmc driver to the new generic omap hsmmcdriver. This patch is based on the work done for Beagle, etc.Signed-off-by: Tom Rini <trin
devkit8000: Use generic MMC driverSwitch from the legacy omap3 mmc driver to the new generic omap hsmmcdriver. This patch is based on the work done for Beagle, etc.Signed-off-by: Tom Rini <trini@ti.com>Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Switch from archive libraries to partial linkingBefore this commit, weak symbols were not overridden by non-weak symbolsfound in archive libraries when linking with recent versions ofbinutils. A
Switch from archive libraries to partial linkingBefore this commit, weak symbols were not overridden by non-weak symbolsfound in archive libraries when linking with recent versions ofbinutils. As stated in the System V ABI, "the link editor does notextract archive members to resolve undefined weak symbols".This commit changes all Makefiles to use partial linking (ld -r) insteadof creating library archives, which forces all symbols to participate inlinking, allowing non-weak symbols to override weak symbols as intended.This approach is also used by Linux, from which the gmake functioncmd_link_o_target (defined in config.mk and used in all Makefiles) isinspired.The name of each former library archive is preserved except forextensions which change from ".a" to ".o". This commit updatesreferences accordingly where needed, in particular in some linkerscripts.This commit reveals board configurations that exclude some features butinclude source files that depend these disabled features in the build,resulting in undefined symbols. Known such cases include:- disabling CMD_NET but not CMD_NFS;- enabling CONFIG_OF_LIBFDT but not CONFIG_QE.Signed-off-by: Sebastien Carlier <sebastien.carlier@gmail.com>
Devkit8000: Adapt changes to ARM relocation supportFix compilation of Devkit8000 after introduction ofARM relocation support.Signed-off-by: Thomas Weber <weber@corscience.de>Adapt to TEXT_BASE
Devkit8000: Adapt changes to ARM relocation supportFix compilation of Devkit8000 after introduction ofARM relocation support.Signed-off-by: Thomas Weber <weber@corscience.de>Adapt to TEXT_BASE => CONFIG_SYS_TEXT_BASE rename.Signed-off-by: Wolfgang Denk <wd@denx.de>
Rename TEXT_BASE into CONFIG_SYS_TEXT_BASEThe change is currently needed to be able to remove the boardconfiguration scripting from the top level Makefile and replace it bya simple, table driven
Rename TEXT_BASE into CONFIG_SYS_TEXT_BASEThe change is currently needed to be able to remove the boardconfiguration scripting from the top level Makefile and replace it bya simple, table driven script.Moving this configuration setting into the "CONFIG_*" name space isalso desirable because it is needed if we ever should move forward toa Kconfig driven configuration system.Signed-off-by: Wolfgang Denk <wd@denx.de>
TWL4030: make LEDs selectable for twl4030_led_init()Not all boards have both LEDs hooked, so enabling both onboards with single LED will just waste power. Make itpossible to choose LEDs by adding
TWL4030: make LEDs selectable for twl4030_led_init()Not all boards have both LEDs hooked, so enabling both onboards with single LED will just waste power. Make itpossible to choose LEDs by adding argument totwl4030_led_init().Using this turn on only LEDB for pandora, leave both LEDson for all other boards, as it was before this patch.Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
OMAP3: Clean up whitespace in mux configsSwitch from space-based indentation to tab-based in mux configs, as pointedout by WD at:http://lists.denx.de/pipermail/u-boot/2009-September/061241.html
OMAP3: Clean up whitespace in mux configsSwitch from space-based indentation to tab-based in mux configs, as pointedout by WD at:http://lists.denx.de/pipermail/u-boot/2009-September/061241.htmlNothing but whitespace changes in this patch (diff -w gives no output).Signed-off-by: Olof Johansson <olof@lixom.net>
Add support for the DevKit8000 boardThis patch adds support for the DevKit8000 board.Signed-off-by: Frederik Kriewitz <frederik@kriewitz.eu>
12