Re: [PATCH 1/7] mmc: sdhci: Return error in case of failure

2021-07-25 Thread Jaehoon Chung
Hi Ashok, On 7/26/21 2:33 PM, Ashok Reddy Soma wrote: > Hi Jaehoon, > > Thanks for the review. > >> -Original Message- >> From: Jaehoon Chung >> Sent: Monday, July 26, 2021 3:18 AM >> To: Ashok Reddy Soma ; u-boot@lists.denx.de >> Cc: peng@nxp.com; faiz_ab...@ti.com;

RE: [PATCH 1/7] mmc: sdhci: Return error in case of failure

2021-07-25 Thread Ashok Reddy Soma
Hi Jaehoon, Thanks for the review. > -Original Message- > From: Jaehoon Chung > Sent: Monday, July 26, 2021 3:18 AM > To: Ashok Reddy Soma ; u-boot@lists.denx.de > Cc: peng@nxp.com; faiz_ab...@ti.com; s...@chromium.org; > mich...@walle.cc; git ; mon...@monstr.eu; >

Re: [PATCH v6 0/5] of-platdata: Avoid building libfdt

2021-07-25 Thread Simon Glass
Hi Tom, On Sun, 25 Jul 2021 at 14:32, Tom Rini wrote: > > On Sun, Jul 25, 2021 at 10:13:42AM -0600, Simon Glass wrote: > > > The original patch of this series was sent in September 2019 but > > unfortunately caused build problems on some boards, since they don't > > comply with the of-platdata

Re: [PATCH v3 06/14] common: fit: Use hash.c to call CRC/SHA function

2021-07-25 Thread Tom Rini
On Mon, Jul 26, 2021 at 12:06:28AM +, ChiaWei Wang wrote: > Hi Tom, > > > From: Tom Rini > > Sent: Saturday, July 24, 2021 8:57 PM > > > > On Tue, Jul 20, 2021 at 02:38:31PM +0800, Chia-Wei Wang wrote: > > > > > From: Joel Stanley > > > > > > Currently the FIT verification calls directly

Re: [PATCH 19/27] arm: dts: sunxi: do not renumber if mmc2 does not exist

2021-07-25 Thread Icenowy Zheng
在 2021-07-25星期日的 19:16 -0400,Yifan Gu写道: > We renumber mmc2 to mmc1 for sunxi devices, but if mmc2 does not exist > dts will not build. > > This patch prevents that by checking CONFIG_MMC_SUNXI_SLOT_EXTRA. I have a similar patch at

Re: [PATCH] dtoc: Check that a parent is not missing

2021-07-25 Thread Walter Lozano
Hi Simon, Thanks for the patch, it will be a nice way to spot errors and avoid headaches! On 7/7/21 8:22 AM, Simon Glass wrote: With of-platdata-inst we want to set up a reference to each devices' parent device, if there is one. If we find that the device has a parent (i.e. is not a root

RE: [PATCH v3 06/14] common: fit: Use hash.c to call CRC/SHA function

2021-07-25 Thread ChiaWei Wang
Hi Tom, > From: Tom Rini > Sent: Saturday, July 24, 2021 8:57 PM > > On Tue, Jul 20, 2021 at 02:38:31PM +0800, Chia-Wei Wang wrote: > > > From: Joel Stanley > > > > Currently the FIT verification calls directly into SW implemented > > functions to get a CRC/SHA/MD5 hash. > > > > This patch

[PATCH 19/27] arm: dts: sunxi: do not renumber if mmc2 does not exist

2021-07-25 Thread Yifan Gu
We renumber mmc2 to mmc1 for sunxi devices, but if mmc2 does not exist dts will not build. This patch prevents that by checking CONFIG_MMC_SUNXI_SLOT_EXTRA. --- arch/arm/dts/sunxi-u-boot.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/dts/sunxi-u-boot.dtsi

[PATCH 18/27] sunxi: suniv: add device tree nodes for f1c100s MMC controllers

2021-07-25 Thread Yifan Gu
From: George Hilliard The f1c100s has two MMC controllers. Add device tree nodes for them. Signed-off-by: George Hilliard Signed-off-by: Yifan Gu --- arch/arm/dts/suniv.dtsi | 47 + 1 file changed, 47 insertions(+) diff --git

[PATCH 14/27] sunxi: implement clock driver for suniv f1c100s

2021-07-25 Thread Yifan Gu
From: George Hilliard The f1c100s has a simple clock tree similar to those of other sunxi parts. Add support for it. Signed-off-by: George Hilliard Signed-off-by: Yifan Gu --- drivers/clk/sunxi/Kconfig | 7 drivers/clk/sunxi/Makefile | 1 + drivers/clk/sunxi/clk_f1c100s.c

[PATCH 15/27] sunxi: gpio: Add support for suniv-f1c100s

2021-07-25 Thread Yifan Gu
From: George Hilliard The f1c100s has a controller pretty similar to that of most sunxi parts, but there are only 6 banks. Add a new compatible entry for this peripheral. Signed-off-by: George Hilliard Signed-off-by: Yifan Gu --- drivers/gpio/sunxi_gpio.c | 6 ++ 1 file changed, 6

[PATCH 16/27] sunxi: spi: restore bus speed and mode after reset

2021-07-25 Thread Yifan Gu
From: George Hilliard The sunxi SPI peripheral driver resets the device completely (disabling clocks and power) when the bus is released and turns it back on when claiming. On the F1C100s (and maybe others), the peripheral resets back to default register settings, losing speed and mode

[PATCH 21/27] sunxi: suniv: add missing header include for udelay

2021-07-25 Thread Yifan Gu
Signed-off-by: Yifan Gu --- arch/arm/mach-sunxi/dram_suniv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-sunxi/dram_suniv.c b/arch/arm/mach-sunxi/dram_suniv.c index 40aebf6eba..e7460ec3c3 100644 --- a/arch/arm/mach-sunxi/dram_suniv.c +++ b/arch/arm/mach-sunxi/dram_suniv.c

[PATCH 20/27] board: licheepi_nano: set CONFIG_MMC_SUNXI_SLOT_EXTRA

2021-07-25 Thread Yifan Gu
--- configs/licheepi_nano_defconfig | 1 + configs/licheepi_nano_spiflash_defconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/configs/licheepi_nano_defconfig b/configs/licheepi_nano_defconfig index 6e455baadf..6ea73c6408 100644 --- a/configs/licheepi_nano_defconfig +++

[PATCH 17/27] sunxi: spi: Add suniv pin controller support

2021-07-25 Thread Yifan Gu
From: George Hilliard suniv needs slightly different register settings to enable the SPI peripheral. The magic numbers are already provided by the architecture support; we just have to check for them here. Signed-off-by: George Hilliard Signed-off-by: Yifan Gu --- drivers/spi/spi-sunxi.c |

[PATCH 23/27] sunxi: suniv: do not detect boot sector on suniv

2021-07-25 Thread Yifan Gu
The BROM of suniv does not pass info to SPL, and it should always boot from the 8KB offset. Signed-off-by: Yifan Gu --- arch/arm/mach-sunxi/board.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm/mach-sunxi/board.c b/arch/arm/mach-sunxi/board.c index

[PATCH 27/27] arm: dts: add pocketgo handheld support

2021-07-25 Thread Yifan Gu
Signed-off-by: Yifan Gu --- arch/arm/dts/Makefile | 3 +- arch/arm/dts/suniv-f1c100s-pocketgo.dts | 48 + configs/pocketgo_defconfig | 12 +++ 3 files changed, 62 insertions(+), 1 deletion(-) create mode 100644

[PATCH 25/27] sunxi: suniv: disable mmc optimization for suniv

2021-07-25 Thread Yifan Gu
suniv cannot boot with this mmc optimization, as suniv fifo level register is only 4 bits. Disable this optimization for suniv for now. Signed-off-by: Yifan Gu --- drivers/mmc/sunxi_mmc.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/sunxi_mmc.c

[PATCH 13/27] sunxi: Don't provide enable_cache() on suniv

2021-07-25 Thread Yifan Gu
From: George Hilliard The arm926 code provides this function. Disable it here. Signed-off-by: George Hilliard Signed-off-by: Yifan Gu --- arch/arm/mach-sunxi/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-sunxi/board.c b/arch/arm/mach-sunxi/board.c

[PATCH 02/27] arm: arm926ej-s: add sunxi code

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng Some Allwinner SoCs use ARM926EJ-S core. Add Allwinner/sunXi specific code to ARM926EJ-S CPU dircetory. Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- arch/arm/cpu/arm926ejs/Makefile | 1 + arch/arm/cpu/arm926ejs/sunxi/Makefile| 16 +++

[PATCH 06/27] sunxi: spi-spl: add support for SUNIV

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng The suniv SoC come with a sun6i-style SPI controller at the base address of sun4i SPI controller. The module clock of the SPI controller is also missing. Add support for it. Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- arch/arm/include/asm/arch-sunxi/gpio.h |

[PATCH 22/27] sunxi: suniv: allow serial connection on uart1

2021-07-25 Thread Yifan Gu
Signed-off-by: Yifan Gu --- arch/arm/include/asm/arch-sunxi/gpio.h | 1 + arch/arm/mach-sunxi/board.c| 4 2 files changed, 5 insertions(+) diff --git a/arch/arm/include/asm/arch-sunxi/gpio.h b/arch/arm/include/asm/arch-sunxi/gpio.h index 26c900fb11..2b03325adf 100644 ---

[PATCH 26/27] arm: dts: suniv: define uart1 pins

2021-07-25 Thread Yifan Gu
Signed-off-by: Yifan Gu --- arch/arm/dts/suniv.dtsi | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/dts/suniv.dtsi b/arch/arm/dts/suniv.dtsi index bea7c08e7d..5d84f1e1af 100644 --- a/arch/arm/dts/suniv.dtsi +++ b/arch/arm/dts/suniv.dtsi @@ -126,6 +126,11 @@

[PATCH 24/27] sunxi: suniv: set SYS_TEXT_BASE default

2021-07-25 Thread Yifan Gu
suniv ddr memory starts at 0x800. Set SYS_TEXT_BASE accordingly so SPL can copy U-Boot proper to DRAM. Signed-off-by: Yifan Gu --- common/Kconfig.boot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/Kconfig.boot b/common/Kconfig.boot index 642dd9bcfb..23c6db286a

[PATCH 12/27] sunxi: allow to enable MMC driver when using PF UART0

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng As the pinmux setup of MMC0 at PF is masked, the sunxi MMC driver is now harmless for PF uart setup, and it may be used for the extra MMC port. Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- drivers/mmc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH 03/27] sunxi: add support for suniv architecture

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng Add support for the suniv architecture, which is newer ARM9 SoCs by Allwinner. The design of it seems to be a mixture of sun3i, sun4i and sun6i. Signed-off-by: Icenowy Zheng Rebased-by: George Hilliard Signed-off-by: Yifan Gu --- arch/arm/dts/suniv-f1c100s.dtsi

[PATCH 11/27] sunxi: do not set PF MMC0 pinmux when PF uart is used

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- board/sunxi/board.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/board/sunxi/board.c b/board/sunxi/board.c index 27ab44b67c..748c1a8673 100644 --- a/board/sunxi/board.c +++

[PATCH 01/27] arm: arm926ejs: start.S: port save_boot_params support from armv7 code

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng The ARMv7 start code has support for saving some boot params at the entry point, which is used by some SoCs to return to BROM. Port this to ARM926EJ-S start code. Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- arch/arm/cpu/arm926ejs/start.S | 19

[PATCH 09/27] sunxi: add defconfig for Lichee Pi Nano with SPI Flash support

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- configs/licheepi_nano_spiflash_defconfig | 25 1 file changed, 25 insertions(+) create mode 100644 configs/licheepi_nano_spiflash_defconfig diff --git

[PATCH 10/27] sunxi: add support for UART at PF for suniv

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- arch/arm/mach-sunxi/board.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-sunxi/board.c b/arch/arm/mach-sunxi/board.c index e84687973a..b471933ec8 100644 ---

[PATCH 08/27] sunxi: enable SPI NOR on Lichee Pi Nano

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng The Lichee Pi Nano board has a Winbond W25Q128 SPI flash on it. Enable it. Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- arch/arm/dts/suniv-f1c100s-licheepi-nano.dts | 15 +++ 1 file changed, 15 insertions(+) diff --git

[PATCH 07/27] sunxi: add SPI0 node for suniv

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng The suniv SoC has two SPI controllers, in which SPI0 is bootable. Add device tree node of the controller and its bootable pinmux node. Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- arch/arm/dts/suniv.dtsi | 18 ++ 1 file changed, 18

[PATCH 05/27] sunxi: suniv: add boot sequence for SPL to try

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng The BROM of suniv do not pass the info of boot media to SPL. Add boot sequence for SPL to try again for the available boot media. Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- arch/arm/mach-sunxi/board.c | 22 ++ 1 file changed, 22

[PATCH 04/27] sunxi: suniv: add support for Lichee Pi Nano

2021-07-25 Thread Yifan Gu
From: Icenowy Zheng Lichee Pi Nano is a board based on F1C100s. Add support for it. Signed-off-by: Icenowy Zheng Signed-off-by: Yifan Gu --- arch/arm/dts/Makefile| 2 + arch/arm/dts/suniv-f1c100s-licheepi-nano.dts | 43

[PATCH 00/27] Add F1C100s based PocketGo handheld support

2021-07-25 Thread Yifan Gu
This series add support for the PocketGo handheld, a low cost portable gaming console that is based on the Allwinner F1C100s chip. A significant portion of this patchset is authored by: - Icenowy Zheng - George Hilliard This patchset includes 4 parts necessary to make PocketGo work: - suniv +

[PATCH] rockchip: Fix u-boot-rockchip.bin build

2021-07-25 Thread Johan Gunnarsson
Currently there are a few arm32 rockchip board configs that don't generate u-boot-rockchip.bin when running make because CONFIG_BINMAN is not enabled. This patch changes CONFIG_ARCH_ROCKCHIP to also select CONFIG_BINMAN if CONFIG_SPL and !CONFIG_ARM64. Example builds that don't generate

Re: [PATCH 1/2] GPIO: fxl6408: Add support for FXL6408 GPIO expander

2021-07-25 Thread Oleksandr Suvorov
Hi Simon, On Sun, Jul 25, 2021 at 1:01 AM Simon Glass wrote: > > Hi Oleksandr, > > On Wed, 21 Jul 2021 at 06:21, Oleksandr Suvorov > wrote: > > > > Initial support for Fairchild's 8 bit I2C gpio expander FXL6408. > > The CONFIG_FXL6408_GPIO define enables support for such devices. > > > > Based

[PATCH] arm: mvebu: sata_mv failed to identify HDDs during cold start

2021-07-25 Thread Tony Dinh
During cold start, with some HDDs, mv_sata_identify() does not populate the ID words on the 1st ATA ID command. In fact, the first ATA ID command will only power up the drive, and then the ATA ID command processing is lost in the process. Tests with: - Seagate ST9250320AS 250GB HDD and Seagate

Re: [PATCH 1/7] mmc: sdhci: Return error in case of failure

2021-07-25 Thread Jaehoon Chung
Hi Ashok, On 7/24/21 5:10 PM, Ashok Reddy Soma wrote: > From: T Karthik Reddy > > set_delay() function is from sdhci host ops, which does not return > any error due to void return type. Get return values from input and > output set clock phase functions inside arasan_sdhci_set_tapdelay() > and

Debugging dtoc?

2021-07-25 Thread Tom Rini
So, I'm trying to fix the problem on am335x_evm (and some family configs) with needing SPL_OF_CONTROL enabled. This is mostly fine just enabling the option, except on am335x_evm itself, which is the kitchen-sink config and overflows memory. I've gone with switching to SPL_OF_PLATDATA there as

Re: [PATCH v6 0/5] of-platdata: Avoid building libfdt

2021-07-25 Thread Tom Rini
On Sun, Jul 25, 2021 at 10:13:42AM -0600, Simon Glass wrote: > The original patch of this series was sent in September 2019 but > unfortunately caused build problems on some boards, since they don't > comply with the of-platdata rules. > > With of-platdata, the idea is to compile the device tree

[PATCH v2 3/3] binman: Show an error if __image_copy_start is missing

2021-07-25 Thread Simon Glass
Binman needs this symbol to be able to figure out the start of the image. Detect if it is missing and report an error if any symbols are needed. Add more documentation about possible binman warnings. Signed-off-by: Simon Glass --- (no changes since v1) tools/binman/binman.rst | 109

[PATCH v2 2/3] arm: Add an __image_copy_start symbol for ARMv8

2021-07-25 Thread Simon Glass
This symbol is needed for binman to locate the start of the image. Add it. Note: the existing line to bring in the .__image_copy_start symbol does not appear to do anything. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to add an __image_copy_start symbol for ARMv8

[PATCH v2 1/3] imx8: Drop raw image support

2021-07-25 Thread Simon Glass
The CONFIG_SPL_RAW_IMAGE_SUPPORT option requires that binman provides an offset for the image (see spl_set_header_raw_uboot()), if binman is used. These boards use FIT to store U-Boot, so raw image support is not used. Drop this option to avoid errors once binman starts checking this.

[PATCH 2/3] doc: Update devicedocs including how to add tweaks

2021-07-25 Thread Simon Glass
This file is about 10 years old and the updates have not covered everything that has changed, particularly in the last few years. Update the information and add mention of the u-boot.dtsi files. Signed-off-by: Simon Glass --- doc/develop/devicetree/control.rst | 107

[PATCH 3/3] doc: Add a note about why devicetree is used

2021-07-25 Thread Simon Glass
This question comes up every now and then with people coming from Linux. Add some notes about it so we can point to it in the mailing list. Signed-off-by: Simon Glass --- doc/develop/devicetree/control.rst | 2 ++ doc/develop/devicetree/intro.rst | 39 ++ 2 files

[PATCH 1/3] doc: Move devicetree control doc to rST

2021-07-25 Thread Simon Glass
Move this to rST format, largely unchanged to start with. Add an index for this topic, as well as an empty intro. Signed-off-by: Simon Glass --- .../devicetree/control.rst} | 50 +-- doc/develop/devicetree/index.rst | 13 +

[PATCH v6 5/5] dm: core: Don't include ofnode functions with of-platdata

2021-07-25 Thread Simon Glass
These functions cannot work with of-platdata since libfdt is not available. At present when dev_read_...() functions are used it produces error messages about ofnode which is confusing. Adjust the Makefile and header to produce an error message for the actual dev_read...() function which is

[PATCH v6 4/5] spl: Allow SPL/TPL to use of-platdata without libfdt

2021-07-25 Thread Simon Glass
At present libfdt is included in SPL/TPL if SPL/TPL_OF_CONTROL is enabled. But if of-platdata is in use this is not required. Update the condition to avoid building this extra code. This ensures that if a libfdt function is used it will produce a link error rather than silently increasing the

[PATCH v6 2/5] net: atheros: Add a check for OF_CONTROL

2021-07-25 Thread Simon Glass
This phy cannot be used when OF_CONTROL is not enabled. A few boards expect it to build, though, so add a runtime check for this case. Signed-off-by: Simon Glass --- Changes in v6: - Add new patch for atheros drivers/net/phy/atheros.c | 11 +++ 1 file changed, 11 insertions(+) diff

[PATCH v6 3/5] spi: Add checks for OF_CONTROL

2021-07-25 Thread Simon Glass
This uclass requires OF_CONTROL to be enabled but some boards use it in SPL without doing that. Add a warning so that the maintainer can fix it. Expand the check in spi_post_probe() too. Signed-off-by: Simon Glass --- Changes in v6: - Add new patch for SPI flash drivers/spi/spi-uclass.c | 16

[PATCH v6 1/5] omap: mmc: Avoid using libfdt with of-platdata

2021-07-25 Thread Simon Glass
At present this driver is enabled in SPL on omapl138_lcdk, which uses of-platdata. The driver needs to be ported to use of-platdata properly. For now, avoid a build error by returning an error. Signed-off-by: Simon Glass --- (no changes since v1) drivers/mmc/davinci_mmc.c | 6 ++ 1 file

[PATCH v6 0/5] of-platdata: Avoid building libfdt

2021-07-25 Thread Simon Glass
The original patch of this series was sent in September 2019 but unfortunately caused build problems on some boards, since they don't comply with the of-platdata rules. With of-platdata, the idea is to compile the device tree into C structures to save space and avoid needing to use libfdt. But

Re: [PATCH v5 0/5] stm32mp: Enable OP-TEE and TZC support in SPL

2021-07-25 Thread Alex G.
On 7/15/21 2:19 PM, Alexandru Gagniuc wrote: v4 branch was reported to have some issues with SPL becoming too big on some platforms (e.g. imx6dl_mamoj) This is fixed by dropping the call to genimg_get_os_name(). Ping for merge window. Alexandru Gagniuc (5): spl: mmc: Support OP-TEE

Re: [PATCH v6 2/4] rockchip: rk3066: add clock driver for rk3066 soc

2021-07-25 Thread Paweł Jarosz
Hi Simon, sorry for late response i was offline a bit W dniu 13.07.2021 o 22:17, Simon Glass pisze: > Hi Paweł, > > On Tue, 13 Jul 2021 at 12:59, Paweł Jarosz wrote: >> Add clock driver for rk3066 platform. >> >> Signed-off-by: Paweł Jarosz >> Acked-by: Philipp Tomsich >> --- >> >> Changes

Re: Nokia RX51 U-Boot USB support updates?

2021-07-25 Thread Tom Rini
On Sun, Jul 25, 2021 at 12:40:13PM +0200, Merlijn Wajer wrote: > Hi Tom, > > On 13/07/2021 22:33, Tom Rini wrote: > > Hey all, > > > > So, the DM_USB migration deadline issue has been addressed by the series > > here: > > https://patchwork.ozlabs.org/project/uboot/list/?series=252793=* > > which

Re: [PATCH] sandbox: Reduce keyed autoboot delay

2021-07-25 Thread Steffen Jaeckel
Hi Simon, On 7/24/21 11:14 PM, Simon Glass wrote: > The autoboot tests are a recent addition to U-Boot, providing much-needed > coverage in this area. > > A side effect of the keyed autoboot test is that this feature is enabled > in sandbox always. This changes the autoboot prompt and confuses

Re: Nokia RX51 U-Boot USB support updates?

2021-07-25 Thread Merlijn Wajer
Hi Tom, On 13/07/2021 22:33, Tom Rini wrote: > Hey all, > > So, the DM_USB migration deadline issue has been addressed by the series > here: > https://patchwork.ozlabs.org/project/uboot/list/?series=252793=* > which splits out host and gadget support from the CONFIG_USB symbol > itself. The

Re: [PATCH 1/1] lib: disable CONFIG_SPL_HEXDUMP by default

2021-07-25 Thread Michael Walle
Am 2021-07-24 17:35, schrieb Heinrich Schuchardt: CONFIG_HEXDUMP is needed to display UEFI variables using 'printenv -e'. Enabling CONFIG_SPL_HEXDUMP only makes sense for debugging purposes. Hence CONFIG_SPL_HEXDUMP should not be enabled by default. The following boards currently have