Re: [PATCH v3] rng: Add Turris Mox rTWM RNG driver

2024-02-07 Thread Stefan Roese
Hi Max, On 2/7/24 16:00, Max Resch wrote: A RNG driver for Armada 3720 boards running the Turris Mox rWTM firmware from CZ.NIC in the secure processor. Signed-off-by: Max Resch --- Changes in v3: - More meaningful variable names in accordance with review Changes in v2: - Removed ring

Re: [PATCH v4] misc: fs-loader: Use fw_storage_interface instead of storage_interface

2024-02-07 Thread MD Danish Anwar
Hi Sean, On 07/02/24 11:14 pm, Sean Anderson wrote: > On 1/30/24 01:26, MD Danish Anwar wrote: >> The fs-loader driver reads env storage_interface and uses it to load >> firmware file into memory using the medium set by env. Update the driver >> to use env fw_storage_interface as this variable is

Re: [PATCH 13/15] rockchip: rk3328: Add support to build bootable SPI image

2024-02-07 Thread Dragan Simic
Hello Jonas, On 2024-02-07 01:02, Jonas Karlman wrote: Similar to RK35xx the BootRom in RK3328 can read all data and look for idbloader at 0x8000, same as on SD and eMMC. Use the rksd format and modify the mkimage offset to generate a bootable u-boot-rockchip-spi.bin that can be written to

[PATCH] FWU: developerbox: read boot index from NOR flash

2024-02-07 Thread Masahisa Kojima
The FWU Multi Bank Update feature allows the platform to boot the firmware images from one of the partitions(banks). On the Developerbox, SCP-firmware running on the SCB(Cortex-M3) passes the value of the boot index on the NOR flash. Add a function to read the boot index value from the NOR flash.

Re: inconsistent wget behavior

2024-02-07 Thread Fabio Estevam
Hi Paul, On Wed, Jan 10, 2024 at 9:20 AM Fabio Estevam wrote: > One colleague from you at Linaro was able to reproduce the bug: > > https://lore.kernel.org/u-boot/cadq0-x_cj1ecn67u3sefcz-jm4obsymzka+jazrca3ekq84...@mail.gmail.com/ > > It is not specific to i.MX. Have you had a chance to look

Re: [PATCH v4] misc: fs-loader: Use fw_storage_interface instead of storage_interface

2024-02-07 Thread Sean Anderson
On 1/30/24 01:26, MD Danish Anwar wrote: The fs-loader driver reads env storage_interface and uses it to load firmware file into memory using the medium set by env. Update the driver to use env fw_storage_interface as this variable is only used to load firmwares. The env storage_interface will

Re: [PATCH v1] cmd: hash: fix param count check

2024-02-07 Thread Igor Opaniuk
Hi Tom, On Wed, Feb 7, 2024 at 1:01 AM Igor Opaniuk wrote: > > From: Igor Opaniuk > > Add correct check for parameter count. > > This fixes this issue when `hash` cmd is invoked without params: > > => hash > data abort > pc : [] lr : [] > reloc pc : [<60019204>]lr : [<5afcffa8>] >

[PATCH v2 3/3] usb: ehci: Make usage of generic_{setup,shutdown}_phy_bulk() helpers

2024-02-07 Thread Yang Xiwen via B4 Relay
From: Yang Xiwen Replace generic_setup_phy() and generic_shutdown_phy() by respectively generic_setup_phy_bulk() and generic_shutdown_phy_bulk(). Signed-off-by: Yang Xiwen --- drivers/usb/host/ehci-generic.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[PATCH v2 0/3] usb: ehci-generic: setup a bulk of phy when possible

2024-02-07 Thread Yang Xiwen via B4 Relay
one USB controller can have multiple ports specified in dts, all of them should be setup to make use of all possible ports. Signed-off-by: Yang Xiwen --- Changes in v2: - Rewrite generic_phy_setup_bulk(): Actually v1 is doing things completely wrong. This series should work and it's tested on

[PATCH v2 2/3] test: phy: test generic_setup(shutdown)_phy_bulk()

2024-02-07 Thread Yang Xiwen via B4 Relay
From: Yang Xiwen add unittests for the newly introduced helper functions. Signed-off-by: Yang Xiwen --- test/dm/phy.c | 4 1 file changed, 4 insertions(+) diff --git a/test/dm/phy.c b/test/dm/phy.c index 0cf3689fde..cb16844a0a 100644 --- a/test/dm/phy.c +++ b/test/dm/phy.c @@ -159,6

[PATCH v2 1/3] phy: add generic_setup(shutdown)_phy_bulk()

2024-02-07 Thread Yang Xiwen via B4 Relay
From: Yang Xiwen They are the bulk version of generic_setup(shutdown)_phy(). Signed-off-by: Yang Xiwen --- drivers/phy/phy-uclass.c | 41 + include/generic-phy.h| 29 + 2 files changed, 70 insertions(+) diff --git

Re: imx93-var-som: ahab: U-boot is hanging

2024-02-07 Thread Mathieu Othacehe
Hello, I performed a bisection and was able to fix that issue by reverting three commits on v2024.04-rc1: 0585c28fda1007e4a90dea5f70723cff0b63dd98 eed8294b75a5908a486945ff6655d4dc9aae5fed ee23d7466c77d01ee63efb76db2c5fd3b7cdd6f7 It is still unclear to me how those FEAT_HAFDBS related commits

Re: [PATCH] stm32mp: cmd_stm32prog: add dependencies with USB_GADGET_DOWNLOAD

2024-02-07 Thread Igor Opaniuk
On Wed, Feb 7, 2024 at 2:12 PM Patrick Delaunay wrote: > > This patch avoids compilation issue when CONFIG_USB_GADGET is deactivated > in defconfig, with undefined reference to run_usb_dnl_gadget and to > g_dnl_set_product. > > Signed-off-by: Patrick Delaunay > --- > >

Re: REGRESSION: [PATCH 5/9] toradex: Use checkboard() instead of show_board_info()

2024-02-07 Thread Tom Rini
On Wed, Feb 07, 2024 at 03:23:10PM +, Marcel Ziswiler wrote: > Gentle ping on this. Any opinion on that matter much appreciated. Thanks! Perhaps you need to RFC some sysinfo driver that ends up providing what you expect? -- Tom signature.asc Description: PGP signature

Re: [PATCH] blk: host_dev: Fix error code in host_sb_attach_file()

2024-02-07 Thread Tom Rini
On Wed, Jan 31, 2024 at 10:09:52AM +0300, Dan Carpenter wrote: > This error path should return -EINVAL instead of success. > > Fixes: e261fbf34785 ("blk: host_dev: Sanity check on the size of host backing > file") > Signed-off-by: Dan Carpenter Applied to u-boot/master, thanks! -- Tom

Re: [PATCH V5 2/2] firmware: ti_sci: Add comment explaining the is_secure code

2024-02-07 Thread Tom Rini
On Tue, Jan 30, 2024 at 08:30:00PM +0530, Dhruva Gole wrote: > Add a comment to explain the code under is_secure condition of > ti_sci_do_xfer. This will help avoid confusion amongst people who may in > future touch upon this code. > > Reviewed-by: Nishanth Menon > Signed-off-by: Dhruva Gole

Re: [PATCH V5 1/2] firmware: ti_sci: fix the secure_hdr in do_xfer

2024-02-07 Thread Tom Rini
On Tue, Jan 30, 2024 at 08:29:59PM +0530, Dhruva Gole wrote: > The ti_sci driver in U-Boot has support for secure_msg as part of it's > do_xfer function. This let's U-boot send secure messages during boot up. > > The protocol to send such secure messages is described as part of the > struct

Re: [RESEND PATCH v2] arm: mach-k3: j721s2_init: Support less than max DDR controllers

2024-02-07 Thread Tom Rini
On Tue, Jan 30, 2024 at 03:53:56PM +0530, Neha Malcom Francis wrote: > The number of DDR controllers to be initialised and used should depend > on the device tree with the constraint of the maximum number of > controllers the device supports. Since J721S2 has multiple (2) > controllers, instead

Re: [PATCH v4] dma: ti: k3-udma: Use ring_idx to pair k3 nav rings

2024-02-07 Thread Tom Rini
On Tue, Jan 30, 2024 at 11:48:04AM +0530, MD Danish Anwar wrote: > Use ring_idx to pair rings. ring_idx will be same as tx flow_id for all > non-negative flow_ids. For negative flow_ids, ring_idx will be tchan->id > added with bchan_cnt. > > Link: >

Re: [PATCH 1/1] common: event: check event_type_name() argument

2024-02-07 Thread Tom Rini
On Sun, Jan 28, 2024 at 08:58:55AM +0100, Heinrich Schuchardt wrote: > In event_type_name() we should avoid possible buffer overruns by checking > the type argument. > > Addresses-Coverity-ID: 478862 Out-of-bounds access > Signed-off-by: Heinrich Schuchardt Applied to u-boot/master, thanks!

Re: [PATCH v1] vexpress_ca9x4: Enable DM_SERIAL

2024-02-07 Thread Tom Rini
On Fri, Jan 26, 2024 at 01:47:50PM +0100, Ole P. Orhagen wrote: > This commit enables support for DM_SERIAL in the vexpress_ca9x4 boards. > > When running the board with the DM_SERIAL driver, the board ran out of > memory in SPL when initialising the DM serial driver. > > Thus this required an

Re: [PATCH v1] arm: dts: nuvoton: modify npcm8xx reset property

2024-02-07 Thread Tom Rini
On Wed, Jan 24, 2024 at 09:54:51AM +0800, Jim Liu wrote: > Change reset method from generic to reset driver > > Signed-off-by: Jim Liu Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH] scripts/gen_compile_commands: update to Linux v6.7

2024-02-07 Thread Tom Rini
On Mon, Jan 22, 2024 at 06:45:50PM +, Brandon Maier wrote: > Adds support for assembly files and updates the LINE_PATTERN so it > supports both "cmd" and "savedcmd", which allows reverting the U-Boot > modification in commit 97fbb2eb016b ("scripts/gen_compile_commands.py: > adapt

Re: Pull request: u-boot-rockchip-20240207

2024-02-07 Thread Tom Rini
a1eaff9a921f5b917e152b85dab302e33: > > Merge tag 'smbios-2024-04-rc2' of > https://source.denx.de/u-boot/custodians/u-boot-efi (2024-02-03 09:11:25 > -0500) > > are available in the Git repository at: > > https://source.denx.de/u-boot/custodians/u-boot-roc

Re: REGRESSION: [PATCH 5/9] toradex: Use checkboard() instead of show_board_info()

2024-02-07 Thread Marcel Ziswiler
Gentle ping on this. Any opinion on that matter much appreciated. Thanks! On Wed, 2024-01-24 at 18:16 +0100, Marcel Ziswiler wrote: > Hi Simon > > Sorry, I missed this one, also due to a longer Xmas/New Year and later skiing > vacation. > > On Sun, 2023-11-12 at 19:58 -0700, Simon Glass wrote:

[PATCH v3] rng: Add Turris Mox rTWM RNG driver

2024-02-07 Thread Max Resch
A RNG driver for Armada 3720 boards running the Turris Mox rWTM firmware from CZ.NIC in the secure processor. Signed-off-by: Max Resch --- Changes in v3: - More meaningful variable names in accordance with review Changes in v2: - Removed ring buffer implementation

Re: [RFC] Drop md5sum, crc32 and sha1 cmds in favor of hash cmd

2024-02-07 Thread Peter Robinson
On Wed, 7 Feb 2024 at 13:48, Tom Rini wrote: > > On Wed, Feb 07, 2024 at 02:00:16PM +0100, Igor Opaniuk wrote: > > Hello, > > > > I was playing a bit with different hash functions recently, and > > it turned out that md5sum, crc32, sha1 cmds just duplicate > > what is already covered by generic

Re: [RFC] Drop md5sum, crc32 and sha1 cmds in favor of hash cmd

2024-02-07 Thread Tom Rini
On Wed, Feb 07, 2024 at 03:10:01PM +0100, Igor Opaniuk wrote: > Hi Tom, > > On Wed, Feb 7, 2024 at 2:48 PM Tom Rini wrote: > > > > On Wed, Feb 07, 2024 at 02:00:16PM +0100, Igor Opaniuk wrote: > > > Hello, > > > > > > I was playing a bit with different hash functions recently, and > > > it

Re: [RFC] Drop md5sum, crc32 and sha1 cmds in favor of hash cmd

2024-02-07 Thread Igor Opaniuk
Hi Tom, On Wed, Feb 7, 2024 at 2:48 PM Tom Rini wrote: > > On Wed, Feb 07, 2024 at 02:00:16PM +0100, Igor Opaniuk wrote: > > Hello, > > > > I was playing a bit with different hash functions recently, and > > it turned out that md5sum, crc32, sha1 cmds just duplicate > > what is already covered

Re: [RFC] Drop md5sum, crc32 and sha1 cmds in favor of hash cmd

2024-02-07 Thread Tom Rini
On Wed, Feb 07, 2024 at 02:00:16PM +0100, Igor Opaniuk wrote: > Hello, > > I was playing a bit with different hash functions recently, and > it turned out that md5sum, crc32, sha1 cmds just duplicate > what is already covered by generic `hash` cmd. > > => sha1 0x6000 0x200 > sha1 for

Re: [PATCH 00/10] Add AVS support for J721S2

2024-02-07 Thread Tom Rini
On Wed, Feb 07, 2024 at 03:35:51PM +0530, Manorit Chawdhry wrote: > Hi Tom, > > On 08:45-20240206, Tom Rini wrote: > > On Tue, Feb 06, 2024 at 05:51:07PM +0530, Manorit Chawdhry wrote: > > > > > This series does the DT sync with Linux 6.8-rc1 as that has the pmic > > > nodes required for AVS

Re: [FIX PATCH v1] Fix: common: usb_hub: Reset only USB3.0 hub

2024-02-07 Thread Dragan Simic
On 2024-02-07 14:14, Dragan Simic wrote: Hello Shantur, Please see my notes below. On 2024-02-07 11:23, Shantur Rathore wrote: USB 3.0 spec requires hub to reset device while enumeration. Some USB 2.0 hubs / devices don't handle this well and after implementation of reset some USB 2.0 disks

Re: [FIX PATCH v1] Fix: common: usb_hub: Reset only USB3.0 hub

2024-02-07 Thread Dragan Simic
Hello Shantur, Please see my notes below. On 2024-02-07 11:23, Shantur Rathore wrote: USB 3.0 spec requires hub to reset device while enumeration. Some USB 2.0 hubs / devices don't handle this well and after implementation of reset some USB 2.0 disks weren't detected on Allwinner based boards.

[PATCH] stm32mp: cmd_stm32prog: add dependencies with USB_GADGET_DOWNLOAD

2024-02-07 Thread Patrick Delaunay
This patch avoids compilation issue when CONFIG_USB_GADGET is deactivated in defconfig, with undefined reference to run_usb_dnl_gadget and to g_dnl_set_product. Signed-off-by: Patrick Delaunay --- arch/arm/mach-stm32mp/cmd_stm32prog/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git

Re: [FIX PATCH v1] Fix: common: usb_hub: Reset only USB3.0 hub

2024-02-07 Thread Marek Vasut
On 2/7/24 11:23, Shantur Rathore wrote: USB 3.0 spec requires hub to reset device while enumeration. Some USB 2.0 hubs / devices don't handle this well and after implementation of reset some USB 2.0 disks weren't detected on Allwinner based boards. Resetting only when hub is USB 3.0 fixes it.

[RFC] Drop md5sum, crc32 and sha1 cmds in favor of hash cmd

2024-02-07 Thread Igor Opaniuk
Hello, I was playing a bit with different hash functions recently, and it turned out that md5sum, crc32, sha1 cmds just duplicate what is already covered by generic `hash` cmd. => sha1 0x6000 0x200 sha1 for 6000 ... 61ff ==> 4ff5ffc91d00a95155518b920f46e2483d0e1437 => hash sha1

Re: [PATCH v4] remoteproc: uclass: Add methods to load firmware to rproc and boot rproc

2024-02-07 Thread Anwar, Md Danish
On 2/7/2024 6:05 PM, Roger Quadros wrote: > > > On 07/02/2024 09:15, MD Danish Anwar wrote: >> Hi Roger >> >> On 06/02/24 7:11 pm, Roger Quadros wrote: >>> >>> >>> On 06/02/2024 07:31, MD Danish Anwar wrote: On 05/02/24 6:07 pm, Roger Quadros wrote: > > > On 05/02/2024

Re: [PATCH v4] remoteproc: uclass: Add methods to load firmware to rproc and boot rproc

2024-02-07 Thread Roger Quadros
On 07/02/2024 09:15, MD Danish Anwar wrote: > Hi Roger > > On 06/02/24 7:11 pm, Roger Quadros wrote: >> >> >> On 06/02/2024 07:31, MD Danish Anwar wrote: >>> >>> >>> On 05/02/24 6:07 pm, Roger Quadros wrote: On 05/02/2024 12:20, MD Danish Anwar wrote: > > > On

Re: [PATCH 04/15] rockchip: rk3328-roc-cc: Update defconfig

2024-02-07 Thread Chen-Yu Tsai
On Wed, Feb 7, 2024 at 8:04 AM Jonas Karlman wrote: > > Update defconfig for rk3328-roc-cc with new defaults. > > Remove the SPL_DRIVERS_MISC=y option, no misc driver is used in SPL. > > Add CONFIG_SPL_FIT_SIGNATURE=y to let SPL verify an auto generated hash > of FIT images. This help indicate if

Re: [PATCH] xilinx: zynqmp: Add the missing function prototype

2024-02-07 Thread Michal Simek
On 2/7/24 09:33, Venkatesh Yadav Abbarapu wrote: Add missing prototype to fix the below sparse warning warning: no previous prototype for 'spl_spi_get_uboot_offs' [-Wmissing-prototypes] Signed-off-by: Venkatesh Yadav Abbarapu --- board/xilinx/zynqmp/zynqmp.c | 1 + 1 file

[FIX PATCH v1] Fix: common: usb_hub: Reset only USB3.0 hub

2024-02-07 Thread Shantur Rathore
USB 3.0 spec requires hub to reset device while enumeration. Some USB 2.0 hubs / devices don't handle this well and after implementation of reset some USB 2.0 disks weren't detected on Allwinner based boards. Resetting only when hub is USB 3.0 fixes it. Tested-by: Andre Przywara Signed-off-by:

Re: [PATCH 2/6] arm: mach-k3: Move disable_linefill_optimization() into R5 directory

2024-02-07 Thread Igor Opaniuk
Hi Andrew, On Fri, Feb 2, 2024 at 1:26 AM Andrew Davis wrote: > > The disable_linefill_optimization() function is only ever loaded by the > R5 core, move the code into the R5 directory. > > Signed-off-by: Andrew Davis > --- > arch/arm/mach-k3/common.c| 25 - >

Re: [PATCH 09/10] DONOTMERGE: arm: dts: j721s2: Fix Power domain for VTM node.

2024-02-07 Thread Manorit Chawdhry
Hi Udit, On 19:37-20240206, Kumar, Udit wrote: > > On 2/6/2024 5:51 PM, Manorit Chawdhry wrote: > > Patch is sent to upstream linux [0]. > > > > [0]: > > https://lore.kernel.org/all/20240201-b4-upstream-j721s2-fix-vtm-devid-v2-0-85fd568b7...@ti.com/ > > > > Signed-off-by: Manorit Chawdhry >

Re: [PATCH 02/10] arm: dts: k3-am68*: Sync with 6.8-rc1

2024-02-07 Thread Manorit Chawdhry
Hi Andrew, On 11:38-20240206, Andrew Davis wrote: > On 2/6/24 6:21 AM, Manorit Chawdhry wrote: > > Syncs the DT from Linux v6.8-rc1. > > > > Remove udmap overrides and handle location change of chipid node. > > Message doesn't match the patch. This patch should just be squashed > into the

Re: [PATCH 00/10] Add AVS support for J721S2

2024-02-07 Thread Manorit Chawdhry
Hi Tom, On 08:45-20240206, Tom Rini wrote: > On Tue, Feb 06, 2024 at 05:51:07PM +0530, Manorit Chawdhry wrote: > > > This series does the DT sync with Linux 6.8-rc1 as that has the pmic > > nodes required for AVS support and then adds AVS Support for J721S2. > > > > AVS Test for J721S2: > >

Re: [PATCH 1/6] arm: mach-k3: Move SYS_K3_SPL_ATF definition into R5 Kconfig

2024-02-07 Thread Igor Opaniuk
Hi Andrew, On Fri, Feb 2, 2024 at 1:25 AM Andrew Davis wrote: > > Loading ATF is only supported from the R5, move the Kconfig symbol > definition to match. > > Signed-off-by: Andrew Davis > --- > arch/arm/mach-k3/Kconfig| 7 --- > arch/arm/mach-k3/r5/Kconfig | 6 ++ > 2 files

Re: [PATCH 07/15] rockchip: rk3328-orangepi-r1-plus: Update defconfig

2024-02-07 Thread Tianling Shen
Hi Jonas, On Wed, Feb 7, 2024 at 9:06 AM Jonas Karlman wrote: > > Update defconfig for rk3328-orangepi-r1-plus boards with new defaults. > > Remove the SPL_DRIVERS_MISC=y option, no misc driver is used in SPL. > > Add CONFIG_SPL_FIT_SIGNATURE=y to let SPL verify an auto generated hash > of FIT

Re: [PATCH 15/15] rockchip: rk3328-orangepi-r1-plus: Enable boot from SPI NOR flash

2024-02-07 Thread Tianling Shen
Hi Jonas, On Wed, Feb 7, 2024 at 8:14 AM Jonas Karlman wrote: > > Add Kconfig options to enable support for booting from SPI NOR flash on > Orange Pi R1 Plus boards. > > The generated bootable u-boot-rockchip-spi.bin that can be written to > 0x0 of SPI NOR flash. The FIT image is loaded from

Re: [PATCH v3] common: usb-hub: Reset hub port before scanning

2024-02-07 Thread Shantur Rathore
On Wed, Feb 7, 2024 at 9:22 AM Shantur Rathore wrote: > > Hi Dragan and Andre, > > On Sat, Feb 3, 2024 at 10:39 AM Dragan Simic wrote: > > > > Hello Andre and Shantur, > > > > On 2024-02-02 12:28, Andre Przywara wrote: > > > On Fri, 02 Feb 2024 03:35:24 +0100 Dragan Simic > > > wrote: > > >> On

Re: [PATCH v3] common: usb-hub: Reset hub port before scanning

2024-02-07 Thread Shantur Rathore
Hi Dragan and Andre, On Sat, Feb 3, 2024 at 10:39 AM Dragan Simic wrote: > > Hello Andre and Shantur, > > On 2024-02-02 12:28, Andre Przywara wrote: > > On Fri, 02 Feb 2024 03:35:24 +0100 Dragan Simic > > wrote: > >> On 2024-02-02 01:12, Andre Przywara wrote: > >> > On Thu, 1 Feb 2024 18:35:28

Re: [PATCH 03/15] rockchip: rk3328-rock64: Update defconfig

2024-02-07 Thread Jonas Karlman
On 2024-02-07 08:53, Matwey V. Kornilov wrote: > ср, 7 февр. 2024 г. в 03:14, Jonas Karlman : >> >> Update defconfig for rk3328-rock64 with new defaults. >> >> Remove the SPL_DRIVERS_MISC=y option, no misc driver is used in SPL. > > What is abould rockchip-efuse? The efuse driver is only used in

[PATCH] xilinx: zynqmp: Add the missing function prototype

2024-02-07 Thread Venkatesh Yadav Abbarapu
Add missing prototype to fix the below sparse warning warning: no previous prototype for 'spl_spi_get_uboot_offs' [-Wmissing-prototypes] Signed-off-by: Venkatesh Yadav Abbarapu --- board/xilinx/zynqmp/zynqmp.c | 1 + 1 file changed, 1 insertion(+) diff --git

Re: [PATCH 10/15] rng: rockchip: Use same compatible as linux

2024-02-07 Thread Jonas Karlman
On 2024-02-07 08:12, Heinrich Schuchardt wrote: > On 2/7/24 01:02, Jonas Karlman wrote: >> Replace the rockchip,cryptov1-rng compatible with compatibles used in >> the linux device tree for RK3288, RK3328 and RK3399 to ease sync of SoC >> device tree from linux. >> >> Signed-off-by: Jonas Karlman

Re: [PATCH 04/15] rockchip: rk3328-roc-cc: Update defconfig

2024-02-07 Thread Jonas Karlman
On 2024-02-07 06:52, Chen-Yu Tsai wrote: > On Wed, Feb 7, 2024 at 8:04 AM Jonas Karlman wrote: >> >> Update defconfig for rk3328-roc-cc with new defaults. >> >> Remove the SPL_DRIVERS_MISC=y option, no misc driver is used in SPL. >> >> Add CONFIG_SPL_FIT_SIGNATURE=y to let SPL verify an auto

Pull request: u-boot-rockchip-20240207

2024-02-07 Thread Kever Yang
-0500) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-rockchip.git tags/u-boot-rockchip-20240207 for you to fetch changes up to b8f1f60c23c9b3edb70159c4e2b1be232a008ee3: arm: dts: rockpro64: Add RockPro64 smbios (2024-02-07 10:49:13 +0800