Re: [PATCH v2 1/1] boot: provide CONFIG_BOOTMETH_QFW Kconfig parameter

2024-07-20 Thread Tom Rini
On Tue, 16 Jul 2024 10:35:34 +0200, Heinrich Schuchardt wrote: > U-Boot is often used conjunction with QEMU to boot via EFI or syslinux. > Here the QFW boot method is not needed. > > At least for qemu-riscv64_smode_defconfig the kernel parameter is used > to specify the U-Boot binary. Trying to r

Re: [v2] zlib: Fix big performance regression

2024-07-20 Thread Tom Rini
On Tue, 16 Jul 2024 08:35:46 -0600, Tom Rini wrote: > Commit 340fdf1303dc ("zlib: Port fix for CVE-2016-9841 to U-Boot") > brings a big performance regression in inflate_fast(), which leads > to watchdog timer reset on powerpc 8xx. > > It looks like that commit does more than what it describe, it

Re: [PATCH] cmd: move CMD_DHCP6 options beneath CMD_DHCP6

2024-07-20 Thread Tom Rini
On Wed, 17 Jul 2024 16:54:46 +0200, Heinrich Schuchardt wrote: > All Kconfig options that depend on CONFIG_CMD_DHCP6 should immediately > follow it. > > Applied to u-boot/master, thanks! -- Tom

Re: [PATCH 1/1] test/py/requirements.txt: Bump setuptools to 70.3.0

2024-07-20 Thread Tom Rini
On Wed, 17 Jul 2024 11:41:18 -0600, Tom Rini wrote: > There is some potential security issue resolved by upgrading to v70.0.0 > here and the latest is now v70.3.0. > > Applied to u-boot/master, thanks! -- Tom

Re: [PATCH 1/1] doc: define html_context in conf.py

2024-07-20 Thread Tom Rini
On Fri, 19 Jul 2024 23:23:26 +0200, Heinrich Schuchardt wrote: > The dictionary html_context is not passed into conf.py but must be created > there. See > https://dev.readthedocs.io/en/latest/design/theme-context.html#customizing-the-context > > Applied to u-boot/master, thanks! -- Tom

Re: [PATCH] board: beagle: convert to CONFIG_DM_I2C

2024-07-20 Thread Tom Rini
On Fri, Jul 19, 2024 at 11:51:23PM +0200, Anatolij Gustschin wrote: > Rework to remove use of legacy I2C API. > > Signed-off-by: Anatolij Gustschin > Cc: Tom Rini > --- > board/beagle/beagle/beagle.c | 41 +- > configs/omap3_beagle_defconfig | 2 +- > include

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-20 Thread Tom Rini
On Sat, Jul 20, 2024 at 01:36:02PM +0100, Simon Glass wrote: > Hi Tom, > > On Fri, 19 Jul 2024 at 16:25, Tom Rini wrote: > > > > On Fri, Jul 19, 2024 at 04:05:09PM +0100, Simon Glass wrote: > > > Hi Raymond, > > > > > > On Thu, 18 Jul 2024 at 17:46, Raymond Mao wrote: > > > > > > > > Hi Simon, >

Re: [PATCH] sunxi: dts: arm/arm64: update devicetree files from Linux-v6.10

2024-07-20 Thread Tom Rini
On Fri, Jul 19, 2024 at 11:21:54PM +0100, Andre Przywara wrote: > Hi Tom, > Sorry for top posting, am on the road. > > First: The Allwinner drivers in U-Boot work with mainline kernel DTs for > ages, so there are no code changes required. > We manually sync the DTs from the kernel for years, but

Re: [PATCH] board: beagle: convert to CONFIG_DM_I2C

2024-07-20 Thread Robert Nelson
Thank you Anatolij, I'm really glad someone was interested in making this board work properly in mainline u-boot! On Sat, Jul 20, 2024 at 8:09 AM Anatolij Gustschin wrote: > > Hi Simon, > > On Sat, 20 Jul 2024 13:36:04 +0100 > Simon Glass s...@chromium.org wrote: > ... > > > - /* return BEA

Re: usb gadget driver initialization issue

2024-07-20 Thread Marek Vasut
On 7/20/24 1:21 PM, Zixun Li wrote: Hi, Hi, In udc_bind_to_driver(), USB device controller is initialized by usb_gadget_udc_start() and entered connected state by usb_gadget_connect(). From the host's point of view, a device is ready to be enumerated. However, since dm_usb_gadget_handle_int

Re: [PATCH RFC] usb: gadget: atmel: Add DM_USB_GADGET support

2024-07-20 Thread Marek Vasut
On 7/20/24 12:35 AM, Zixun Li wrote: Add driver model support by using the uclass UCLASS_USB_GADGET_GENERIC. Disable local usb_gadget_register_driver()/usb_gadget_unregister_driver() implementation which is implemented in udc-core.c when DM_USB_GADGET is enabled. Compared to Linux driver sam9x6

Re: [PATCH v3 7/8] dts: starfive: Add JH7110 Cadence USB dts node

2024-07-20 Thread E Shattow
Hi, I am testing on Milk-V Mars CM Lite, and I add to these devicetree changes at runtime from board/starfive/visionfive2/spl.c On Thu, Jul 18, 2024 at 6:38 PM Minda Chen wrote: > > Add Jh7110 Cadence USB dts node, Visionfive2 default setting > is USB 2.0 device. > > Signed-off-by: Minda Chen >

Re: [PATCH 11/14] spl: mmc: Try to clean up raw-mode options

2024-07-20 Thread Sean Anderson
On 7/20/24 02:17, Simon Glass wrote: Make the raw-mode options depend on SPL_SYS_MMCSD_RAW_MODE in a more direct way. This makes it easier to understand the options with 'make menuconfig'. There are three different ways of specifying the offset: - sector offset - partition number - partition ty

[PATCH v2 1/1] mmc: consider cd-gpios in Synopsys DesignWare driver

2024-07-20 Thread Heinrich Schuchardt
The JH7110 SoC uses a GPIO for card detect. * In the of_to_plat function check if a cd-gpios definition exists and request the GPIO. * In the getcd function return the GPIO value in this case. Reported-by: Conor Dooley Signed-off-by: Heinrich Schuchardt --- v2: Check that DM_GPIO is e

<    1   2