- Jun 20, 2017
-
-
Peter Robinson authored
Drop include of netdev.h as it's a SATA driver not a network driver. Signed-off-by:
Peter Robinson <pbrobinson@gmail.com> Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Michal Simek authored
Decrease malloc size to 1MB from 256MB. Huge malloc space is adding huge delay in mem_malloc_init() because we are enabling CONFIG_SYS_MALLOC_CLEAR_ON_INIT which clear the whole malloc space. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
- Jun 19, 2017
-
-
Michal Simek authored
In older vivado version some psu_init* files didn't contain mask*() which were missing. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Jean-Francois Dagenais authored
The boot_device argument to spl_boot_mode was massively added without actually modifying the existing functions. This commit actually makes use of the handed value, which is the same. Signed-off-by:
Jean-Francois Dagenais <jeff.dagenais@gmail.com> Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Jean-Francois Dagenais authored
When enabling both SDHCI controllers, spl_mmc.c would actually choose device sdhci0 even if booted from sdhci1 (boot_device). This is because spl_mmc_get_device_index(boot_device) expects BOOT_DEVICE_MMC2[_2] in order to return index 1 instead of 0. The #if defined(...) statement is copied from board/xilinx/zynqmp/zynqmp.c So the key to properly enabling both controllers as boot sources is defining both CONFIG_ZYNQ_SDHCI0 and CONFIG_ZYNQ_SDHCI1 in your board's include/configs/*.h. Signed-off-by:
Jean-Francois Dagenais <jeff.dagenais@gmail.com> Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Michal Simek authored
Add missing SD boot mode to SPL. zcu102-rev1.0 is supporting this boot mode. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Michal Simek authored
Adding more targets to repository requires some additional changes not simply just adding config file, defconfig and dts. This patch makes this process easier by building only particular DTB which is selected via defconfig that Makefile doesn't need to contain all dts files in the repository. Reported-by:
Nathan Rossi <nathan@nathanrossi.com> Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Michal Simek authored
CPU_RELEASE_ADDR is used only when CONFIG_ARMV8_MULTIENTRY is enabled. ZynqMP is running ATF which takes care about this that's why no need to have this macro. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
- Jun 16, 2017
-
-
Heiko Schocher authored
we removed 5xx support. So delete some forgotten remains. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
Heiko Schocher authored
we removed 82xx support. Missed some 82xx remains, remove them now. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
Heiko Schocher authored
There was for long time no activity in the mpx5xxx area. We need to go further and convert to Kconfig, but it turned out, nobody is interested anymore in mpc5xxx, so remove it. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
Andrew F. Davis authored
Secure boot targets that can be loaded from an SD card FAT partition need to be called "MLO" on the filesystem, make a copy with this name to clarify the correct image for SD card booting. Signed-off-by:
Andrew F. Davis <afd@ti.com> Reviewed-by:
Lokesh Vutla <lokeshvutla@ti.com>
-
York Sun authored
The for loop in cmd_keywords_opt_check() seems to use wrong array to set boundary, reported by Coverity analysis. Signed-off-by:
York Sun <york.sun@nxp.com> CC: Joe Hershberger <joe.hershberger@ni.com> CC: Tom Rini <trini@konsulko.com> CC: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> Reported-by: Coverity (CID: 163251) Reviewed-by:
Tom Rini <trini@konsulko.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Semen Protsenko authored
To prevent possible double inclusions in future. Signed-off-by:
Sam Protsenko <semen.protsenko@linaro.org> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Hannes Schmelzer authored
For better readability and setup-handling we refactor the default environment. Signed-off-by:
Hannes Schmelzer <hannes.schmelzer@br-automation.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Hannes Schmelzer authored
Signed-off-by:
Hannes Schmelzer <hannes.schmelzer@br-automation.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Hannes Schmelzer authored
This define isn't used anymore in the u-boot source tree, so we drop it from the config header. We drop it also from the 'config_whitelist.txt' Signed-off-by:
Hannes Schmelzer <hannes.schmelzer@br-automation.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Hannes Schmelzer authored
the BMP logo loading has become obsolete and is not used any more. So we drop the support for it. Signed-off-by:
Hannes Schmelzer <hannes.schmelzer@br-automation.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Hannes Schmelzer authored
since commit 'd5abcf94' - ti: boot: Register the MMC controllers in SPL in the same way as in u-boot MMC boot on brxre1 board is broken, with this commit we make our board working again. Signed-off-by:
Hannes Schmelzer <hannes.schmelzer@br-automation.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Jean-Jacques Hiblot <jjhiblot@ti.com>
-
Masahiro Yamada authored
Signed-off-by:
Masahiro Yamada <yamada.masahiro@socionext.com>
-
Michael Welling authored
Adds CONFIG_SPL_USB_GADGET_SUPPORT and CONFIG_SPL_USBETH_SUPPORT. Removes CONFIG_SPL_NAND_SUPPORT, CONFIG_SPL_MTD_SUPPORT, and CONFIG_SPL_YMODEM_SUPPORT to free up space to fit in RAM. Signed-off-by:
Michael Welling <mwelling@ieee.org> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Marek Vasut <marex@denx.de>
-
Mugunthan V N authored
The terminator endif of ifdef _NAND_H_ should be at the end of file as a fail safe. Signed-off-by:
Mugunthan V N <mugunthanvnm@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org> Signed-off-by:
Grygorii Strashko <grygorii.strashko@ti.com>
-
- Jun 14, 2017
-
-
git://git.denx.de/u-boot-mpc85xxTom Rini authored
-
git://git.denx.de/u-boot-tegraTom Rini authored
-
Tom Rini authored
It turns out this change was not intended to be merged and as such, revert it. This reverts commit cdde7de0. Reported-by:
Manfred Schlaegl <manfred.schlaegl@ginzinger.com> Signed-off-by:
Tom Rini <trini@konsulko.com>
-
- Jun 12, 2017
-
-
Stephen Warren authored
Whistler is an ancient Tegra 2 reference board. I may have been the only person who ever used it with upstream software, and I've just recycled the board hardware. Hence, it makes sense to remove support from software. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Signed-off-by:
Tom Warren <twarren@nvidia.com>
-
York Sun authored
Update maintainers for B4860QDS, P1010RDB, P1_TWR, T104xRDB. Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Enable DHCP command by default. Update maintainer info. Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Enable DHCP command by default. Move environmental variable location to before U-Boot image. Enlarge reserved mem for malloc. Update maintainer. Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Commit a058052c changed the generic phy_reset() to clear all bits in BMCR. This inevitably clears the ANEG bit. m88e1145 requires any change to ANEG bit to be followed by a software reset. This seems to be different from other PHYs. Implement read-modify-write procedure for this PHY init. Signed-off-by:
York Sun <york.sun@nxp.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
York Sun authored
Enable DHCP command to make TFTP easier. Enable DDR interactive debug by default. Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Fix compiling error of "no member named 'taamin_ps'" for DDR2. Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Enable DHCP command to make TFTP easier. Users don't have to use static IP address. Signed-off-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
Signed-off-by:
York Sun <york.sun@nxp.com>
-