- 23 Apr, 2019 20 commits
-
-
Add support for MediaTek MT8516 SoC. This include the file that will initialize the SoC after boot and its device tree. Signed-off-by:
Fabien Parent <fparent@baylibre.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Add Pinctrl driver for MediaTek MT8516 SoC. Signed-off-by:
Fabien Parent <fparent@baylibre.com> Acked-by:
Ryder Lee <ryder.lee@mediatek.com>
-
Add clock driver for MediaTek MT8516 SoC. Signed-off-by:
Fabien Parent <fparent@baylibre.com> Acked-by:
Ryder Lee <ryder.lee@mediatek.com> [trini: Redo whitespace] Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Add the implementation for the CLK_GATE_SETCLR_INV and CLK_GATE_NO_SETCLR flags. Signed-off-by:
Fabien Parent <fparent@baylibre.com> Acked-by:
Ryder Lee <ryder.lee@mediatek.com>
-
We either need to use IS_ENABLED(CONFIG_FOO) or CONFIG_IS_ENABLED(FOO). IS_ENABLE(FOO) will always return false. This commit fixes the comparison by using the CONFIG_IS_ENABLED(FOO) syntax. Signed-off-by:
Fabien Parent <fparent@baylibre.com>
-
Add config for handling MT8516 SoC. Signed-off-by:
Fabien Parent <fparent@baylibre.com> Acked-by:
Ryder Lee <ryder.lee@mediatek.com>
-
Some MediaTek SoC need an additional clock "source_cg". Enable this new clock. We reuse the same clock name as in the kernel. Signed-off-by:
Fabien Parent <fparent@baylibre.com> Acked-by:
Ryder Lee <ryder.lee@mediatek.com>
-
The 'phy' reset of gmac device in kernel device tree is not generic enough for u-boot to use, so we need to overwrite the 'resets' property as needed. With this device tree fixup and poplar_defconfig changes, Ethernet starts working on Poplar board. Signed-off-by:
Shawn Guo <shawn.guo@linaro.org> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
It adds the driver for HIGMACV300 Ethernet controller found on HiSilicon SoCs like Hi3798CV200. It's based on a downstream U-Boot driver, but quite a lot of code gets rewritten and cleaned up to adopt driver model and PHY API. Signed-off-by:
Shawn Guo <shawn.guo@linaro.org> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
It adds a Driver Model compatible reset driver for HiSlicon platform. The driver implements a custom .of_xlate function, and uses .data field as reset register offset and .id field as bit shift. Signed-off-by:
Shawn Guo <shawn.guo@linaro.org> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Some reset controllers support different polarities for reset operation, so let's add a polarity field into struct reset_ctl. Signed-off-by:
Shawn Guo <shawn.guo@linaro.org> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
If a platform defines CONFIG_NR_DRAM_BANKS, each DRAM bank will be added as a PCI region. The number of MAX_PCI_REGIONS therefore needs to scale with the number of DRAM banks, otherwise we will end up with too little space in the hose->regions array to store all system memory regions. Signed-off-by:
Thierry Reding <treding@nvidia.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Make sure that we don't overflow the hose->regions array, otherwise we would end up overwriting the hose->region_count field and cause mayhem to ensue. Also print an error message when we'd be overflowing because it indicates that there aren't enough regions available and the number needs to be increased. Signed-off-by:
Thierry Reding <treding@nvidia.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
With the migration to DM in SPL and the DT support, the old legacy code is no longer neaded, so this patch removes it Signed-off-by:
Adam Ford <aford173@gmail.com>
-
Enable the led support in the configuration of the board bcm963158. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
Enable the led controller in the device tree of the board bcm963158. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
Add the led controller in the bcm63158 device tree. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
Allow the led bcm6858 driver to be used on bcm63158. They have the same led controller. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
Enable the led support in the configuration of the board bcm968580xref. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
Enable the led controller in the device tree of the board bcm968580xref. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
- 22 Apr, 2019 20 commits
-
-
Add the led controller in the bcm6858 device tree. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
The driver add the support of the led IP on bcm6858. This led IP can drive up to 32 leds, and can handle blinking. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com> Reviewed-by:
Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
-
Current relocation code is limited to 21bit PC-relative addressing which might not be enough for bigger code sizes. The following patch increases the addressing to 32bit PC-relative. This feature is specially interesting if U-Boot is build without optimiation (-O0) as the text section is increased significativelly. Signed-off-by:
Ibai Erkiaga <ibai.erkiaga-elorza@xilinx.com>
-
At least MIPS Boston currently uses srec_cat tool to fiddle with srecords. There will be other platforms coming, so install the tool to prevent build problems. Signed-off-by:
Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Michal Simek <michal.simek@xilinx.com> Cc: Tom Rini <trini@konsulko.com>
-
The initial environment is linked to the u-boot binary. Modifying the environment from User Space with the env tools requires that the tools are always built together with the bootloader to be sure that they contain the initial environment in case no environment is stored into persistent storage or when a board boots with just the default environment. This makes difficult for distros to provide a general package to access the environment. A simpler way is if the tools are generic for all boards and a configuration file is given to provide the initial environment. The patch just generates the initial environment by extracting it from the compiled object. This file can then be used for tools in user space to initialize the environment. Signed-off-by:
Stefano Babic <sbabic@denx.de>
-
Add support for loading fully featured fitImages over YModem in SPL. This is useful when various advanced features of full fitImages are needed in SPL. Signed-off-by:
Marek Vasut <marex@denx.de> Cc: Tom Rini <trini@konsulko.com>
-
Currently only the first fdt is loaded from the extra configuration of FIT image. If the configuration have multiple fdt, load them all as well. Signed-off-by:
Peter Ujfalusi <peter.ujfalusi@ti.com> Reviewed-by:
Lokesh Vutla <lokeshvutla@ti.com>
-
In previously label which will be expanded to the node's full path was used, and now replacing label with most commonly used DT phandle. The codes were changed accordingly to the use of DT phandle and supporting multiple instances. Signed-off-by:
Tien Fong Chee <tien.fong.chee@intel.com>
-
HVC call makes use of 6 mandatory arguments rather than 7 in the same way as SMC calls. The 7th argument is optional (Client ID) for both HVC and SMC but is implemented as 16-bit parameter and register R7 or W7. The aim of this patch is just fix compilation error due to an invalid asm code in the HVC call so that's why the 7th argument is removed. The issue does not report any error in a normal build as hvc_call is not used at all and is optimized by the compiler. Using -O0 triggers the error so the patch is intended to fix issues on a ongoing effor to build U-Boot with -O0. Signed-off-by:
Ibai Erkiaga <ibai.erkiaga-elorza@xilinx.com>
-
It works perfectly fine to boot an Android boot.img with bootm command followed by an explicit address argument that holds the image. But if we have boot.img downloaded into default 'loadaddr', and then boot it using bootm command without the address argument, we will run into problem, because U-Boot fails to find ramdisk and fdt (second area) in boot.img. The current Android image support assumes there is always an address argument on bootm command. However just like booting any other images, 'loadaddr' should be used when address argument is missing from bootm command. It patches boot_get_ramdisk() and boot_get_fdt() a bit to support this quite common usage of bootm command for Android image. Signed-off-by:
Shawn Guo <shawn.guo@linaro.org> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
This function supports getting both data address and length for existing FIT subimage and FIT external data. Signed-off-by:
Tien Fong Chee <tien.fong.chee@intel.com>
-
When PSCI is enabled, we are expecting U-Boot which now act as EL3 software will handle all the PSCI calls. We won't need fwcall as no further HVC or SMC are needed. Signed-off-by:
Ang, Chee Hong <chee.hong.ang@intel.com>
-
Allow PSCI layer to handle any SiP service functions added by platform vendors. PSCI layer will look for SiP service function in the SiP function table located in '._secure_svc_tbl_entries' section if the SMC function identifier is not found in the PSCI standard functions table. Use DECLARE_SECURE_SVC macro to declare and add platform specific SiP service function. This new section '._secure_svc_tbl_entries' is located next to '._secure.text' section. Refer to arch/arm/cpu/armv8/u-boot.lds. Signed-off-by:
Chee Hong Ang <chee.hong.ang@intel.com>
-
The unit tests in test/lib/hexdump.c are not related to the device tree. So they should be executed via `ut lib` and not via `ut dm`. Signed-off-by:
Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by:
Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
-
Firmware loader would encounter problem if the block device is accessed before initializing it. This patch would adding the support of probing block device and initializing block before the block device is accessed by firmware loader. Signed-off-by:
Tien Fong Chee <tien.fong.chee@intel.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
The 'exception' command allows to test exception handling. This implementation supports ARM, x86, RISC-V and the following exceptions: * 'breakpoint' - prefetch abort exception (ARM 32bit only) * 'unaligned' - data abort exception (ARM only) * 'undefined' - undefined instruction exception Signed-off-by:
Heinrich Schuchardt <xypron.glpk@gmx.de>
-
Enable the nand support (driver and command) in the configuration of the board bcm963158. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
Enable the nand controller in the device tree of the board bcm963158. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
Add the nand controller in the bcm63158 device tree. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-
Enable the nand support (driver and command) in the configuration of the board bcm968580xref. Signed-off-by:
Philippe Reynes <philippe.reynes@softathome.com>
-