- May 11, 2018
-
-
Heinrich Schuchardt authored
Avoid creating incorrect comments like /* ...*/... */ by printing '.' instead of '*' inside comments. Signed-off-by:
Heinrich Schuchardt <xypron.glpk@gmx.de>
-
Heinrich Schuchardt authored
Without the patch gcc 8 produces: warning: ignoring attribute ‘noreturn’ because it conflicts with attribute ‘const’ [-Wattributes] int ____ilog2_NaN(void); So let's update the include from Linux kernel v4.16. This removes static checks of ilog2() arguments. Signed-off-by:
Heinrich Schuchardt <xypron.glpk@gmx.de>
-
Heinrich Schuchardt authored
Every va_start() call must be matched by a va_end() call. scripts/checkpatch.pl required reformatting the complete function zm_dprintf(). Signed-off-by:
Heinrich Schuchardt <xypron.glpk@gmx.de>
-
Heinrich Schuchardt authored
file2include is used to convert a binary file to a C include. With the patch the SPDX header is written to the first line as expected by scripts/checkpatch.pl. Cf. https://www.kernel.org/doc/html/v4.16/process/license-rules.html Signed-off-by:
Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by:
Fabio Estevam <fabio.estevam@nxp.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Hannes Schmelzer authored
The check for having a memory node within the fdt blob is made wrong, we fix this here. Signed-off-by:
Hannes Schmelzer <hannes.schmelzer@br-automation.com>
-
Alex Kiernan authored
Attempting to build with both DEBUG and CONFIG_USE_TINY_PRINTF along with CONFIG_SPL_YMODEM_SUPPORT fails at link time: common/built-in.o: In function `zm_dprintf': common/xyzModem.c:190: undefined reference to `vsprintf' Disable Ymodem debug if we don't have full vsprintf support. Signed-off-by:
Alex Kiernan <alex.kiernan@gmail.com> Reviewed-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Fabio Estevam authored
These fsl email addresses are no longer valid and they do not have a correspondent nxp.com entry. Remove all invalid fsl email addresses and mark the boards as orphan. Signed-off-by:
Fabio Estevam <fabio.estevam@nxp.com>
-
Fabio Estevam authored
timur@freescale.com is not a valid email for quite some time, so change it to Timur's updated email. Signed-off-by:
Fabio Estevam <fabio.estevam@nxp.com> Acked-by:
Timur Tabi <timur@tabi.org>
-
Lukasz Majewski authored
The boot count is enabled in both SPL and proper u-boot. Signed-off-by:
Lukasz Majewski <lukma@denx.de> Reviewed-by:
Stefan Roese <sr@denx.de>
-
Lukasz Majewski authored
This patch is necessary for providing basic bootcount checking in the case of using "falcon" boot mode in that board. It forces u-boot proper boot, when we exceed the number of errors. Signed-off-by:
Lukasz Majewski <lukma@denx.de> Reviewed-by:
Stefan Roese <sr@denx.de>
-
Lukasz Majewski authored
This patch adds support for incrementation of the bootcount in SPL. Such feature is necessary when we do want to use this feature with 'falcon' boot mode (which loads OS directly in SPL). Signed-off-by:
Lukasz Majewski <lukma@denx.de> Reviewed-by:
Stefan Roese <sr@denx.de> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Lukasz Majewski authored
The code has been refactored to use common wrappers from bootcount.h header. Signed-off-by:
Lukasz Majewski <lukma@denx.de> Reviewed-by:
Stefan Roese <sr@denx.de> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Alex Kiernan <alex.kiernan@gmail.com>
-
Lukasz Majewski authored
Those two functions can be used to provide easy bootcount management. Signed-off-by:
Lukasz Majewski <lukma@denx.de> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Stefan Roese <sr@denx.de>
-
Lukasz Majewski authored
This patch adds missing include guards for bootcount.h file. Signed-off-by:
Lukasz Majewski <lukma@denx.de> Reviewed-by:
Stefan Roese <sr@denx.de> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Alex Kiernan <alex.kiernan@gmail.com>
-
Lukasz Majewski authored
New, SPL related config option - CONFIG_SPL_BOOTCOUNT_LIMIT has been added to allow drivers/bootcount code re-usage in SPL. This code is necessary to use and setup bootcount in SPL in the case of falcon boot mode. Signed-off-by:
Lukasz Majewski <lukma@denx.de> Reviewed-by:
Stefan Roese <sr@denx.de> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Alex Kiernan <alex.kiernan@gmail.com>
-
- May 10, 2018
-
-
git://git.denx.de/u-boot-ubiTom Rini authored
-
- May 09, 2018
-
-
git://git.denx.de/u-boot-sunxiTom Rini authored
-
Patrice Chotard authored
This patch solves assert failed displayed in the console during a boot. The root cause is that the ubifs_inode is not already allocated when ubifs_printdir and ubifs_finddir functions are called. Trace showing the issue: feed 'boot.scr.uimg', ino 94, new f_pos 0x17b40ece dent->ch.sqnum '7132', creat_sqnum 3886945402880 UBIFS assert failed in ubifs_finddir at 436 INODE ALLOCATION: creat_sqnum '7129' Found U-Boot script /boot.scr.uimg Signed-off-by:
Christophe Kerello <christophe.kerello@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
- May 08, 2018
-
-
Tom Rini authored
In do_bootm_states when doing BOOTM_STATE_LOADOS we use load_end uninitialized and Coverity notes this now. This however leads down another interesting path. We pass this pointer to bootm_load_os and that in turn uses this uninitialized value immediately to calculate the flush length, and is wrong. We do not know what load_end will be until after bootm_decomp_image is called, so we must only set flush_len after that. All of this also makes it clear that the only reason we pass a pointer for load_end to bootm_load_os is so that we can call lmb_reserve on success. Rather than initialize load_end to 0 in do_bootm_states we can just call lmb_reserve ourself. Reported-by: Coverity (CID: 175572) Cc: Simon Glass <sjg@chromium.org> Signed-off-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Clément Péron authored
The signature/hash information are displayed for images but nor for configurations. Add subnodes printing in fit_conf_print() like it's done in fit_image_print() Signed-off-by:
Clément Péron <peron.clem@gmail.com> [trini: Add guards around fit_conf_print to avoid warnings] Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Grygorii Strashko authored
find_next_zero_bit() incorrectly handles cases when: - total bitmap size < 32 - rest of bits to process static inline int find_next_zero_bit(void *addr, int size, int offset) { unsigned long *p = ((unsigned long *)addr) + (offset >> 5); unsigned long result = offset & ~31UL; unsigned long tmp; if (offset >= size) return size; size -= result; offset &= 31UL; if (offset) { tmp = *(p++); tmp |= ~0UL >> (32-offset); if (size < 32) [1] goto found_first; if (~tmp) goto found_middle; size -= 32; result += 32; } while (size & ~31UL) { tmp = *(p++); if (~tmp) goto found_middle; result += 32; size -= 32; } [2] if (!size) return result; tmp = *p; found_first: [3] tmp |= ~0UL >> size; ^^^ algo can reach above line from from points: [1] offset > 0 and size < 32, tmp[offset-1..0] bits set to 1 [2] size < 32 - rest of bits to process in both cases bits to search are tmp[size-1..0], but line [3] will simply set all tmp[31-size..0] bits to 1 and ffz(tmp) below will fail. example: bitmap size = 16, offset = 0, bitmap is empty. code will go through the point [2], tmp = 0x0 after line [3] => tmp = 0xFFFF and ffz(tmp) will return 16. found_middle: return result + ffz(tmp); } Fix it by correctly seting tmp[31..size] bits to 1 in the above case [3]. Fixes: 81e9fe5a ("arm: implement find_next_zero_bit function") Signed-off-by:
Grygorii Strashko <grygorii.strashko@ti.com>
-
Neil Armstrong authored
Add an 'adc' cli command to get information from adc devices and to read "single shot" data. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com>
-
Mario Six authored
Declaration of indirect PCI bridges is not compatible with DM: Both define PCI operations, but in different ways. Hence, don't use indirect bridges if DM is active. Signed-off-by:
Mario Six <mario.six@gdsys.cc> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Mario Six authored
Add a driver for RXAUI control on IHS FPGAs. Signed-off-by:
Mario Six <mario.six@gdsys.cc> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Mario Six authored
Add a driver for the ICS8N3QV01 Quad-Frequency Programmable VCXO. Signed-off-by:
Mario Six <mario.six@gdsys.cc>
-
Mario Six authored
Make the ihs_mdio driver DM-compatible, while retaining the old functionality for not-yet-converted boards. Signed-off-by:
Mario Six <mario.six@gdsys.cc>
-
Mario Six authored
To prepare for DM conversion, encapsulate all register accesses in function calls. Signed-off-by:
Mario Six <mario.six@gdsys.cc>
-
Ramon Fried authored
The clock node is used by the serial driver and it's needed before relocation. This patch ensures that the msm-serial driver can actually use the clock node. Signed-off-by:
Ramon Fried <ramon.fried@linaro.org>
-
Patrice Chotard authored
STiH410 has 2 PHYs wired on the DWC3 IP, USB2 and USB3 PHYs. As currently no U-boot driver is available for the USB3 PHY and to avoid issue during DWC3 drive probe, we use DWC3 IP with only USB2 PHY using stih410-b2260-u-boot.dtsi file. Fixes: 2fd4242c ("ubs: xhci-dwc3: Enable USB3 PHY when available") Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Sam Protsenko authored
Eliminate code duplication: the same PARTS_DEFAULT was defined in am57xx_evm.h and in dra7xx_evm.h. Extract it to environment/boot.h and use in all OMAP5-based boards. Signed-off-by:
Sam Protsenko <semen.protsenko@linaro.org>
-
git://git.denx.de/u-boot-mmcTom Rini authored
-
Tom Rini authored
The overlay code is only useful when OF_LIBFDT is set, so mark it as depending on that first. Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Neil Armstrong authored
This patch adds the driver for the Amlogic Meson Successive Approximation Register (SAR) A/D Converter based on the Linux IIO driver thanks to the great work of Martin Blumenstingl. The driver has been adapted to U-Boot and the ADC UClass. This patch depends on the regmap "regmap: add regmap_update_bits() helper" patch and has been tested using the newly introducted "adc" CLI command in the "cmd: add ADC cli commands" patch. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com>
-
Neil Armstrong authored
Add calls to regmap_read/modify_bits/write even if the proper memory read/write calls are not executed in sandbox. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Neil Armstrong authored
Add the regmap_update_bits() to simply the read/modify/write of registers in a single command. The function is taken from Linux regmap implementation. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Patrice Chotard authored
Add vrefbuf device tree node. This allows to get a voltage reference for ADCs. Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Fabrice Gasnier authored
Enable vrefbuf on stm32mp15, to be used by ADC. Signed-off-by:
Fabrice Gasnier <fabrice.gasnier@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Fabrice Gasnier authored
Add VREF clock gating, that may be used by STM32 VREFBUF regulator. Signed-off-by:
Fabrice Gasnier <fabrice.gasnier@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Fabrice Gasnier authored
Add regulator driver for STM32 voltage reference buffer which can be used as voltage reference for ADCs, DACs and external components through dedicated VREF+ pin. Signed-off-by:
Fabrice Gasnier <fabrice.gasnier@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-