Re: [PATCH v2 2/4] usb: gadget: atmel: Code refactor part 2

2024-07-22 Thread Marek Vasut
On 7/22/24 10:23 PM, Zixun LI wrote: - Rename atmel_usba_start() / atmel_usba_stop() to usba_udc_enable() / usba_udc_disable(), remove atmel_ prefix to be inline with other functions. Also avoid confusion with DM start() / stop() functions. - Replace printf() by log_err() - Spelling paramte

Re: [PATCH v2 3/4] usb: gadget: atmel: Add attach/detach support

2024-07-22 Thread Marek Vasut
On 7/22/24 10:23 PM, Zixun LI wrote: Add controller attach/detach support by using usb_gadget_ops.pullup() method. Signed-off-by: Zixun LI Reviewed-by: Marek Vasut Thanks !

Re: [PATCH v2 4/4] usb: gadget: atmel: Add DM_USB_GADGET support

2024-07-22 Thread Marek Vasut
On 7/22/24 10:23 PM, Zixun LI wrote: [...] +static int usba_udc_probe(struct udevice *dev) +{ + struct usba_priv_data *priv = dev_get_priv(dev); + int ret; + + ret = usba_udc_clk_init(dev, &priv->clks); + if (ret) + return ret; + + controller = &udc_c

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

2024-07-22 Thread Minda Chen
> > On Sat, Jul 20, 2024 at 6:47 PM E Shattow wrote: > > > > 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 no

Re: [PATCH v2] tools: Add script to update git subtree projects

2024-07-22 Thread Tom Rini
On Mon, Jul 22, 2024 at 12:30:50PM -0700, Raymond Mao wrote: > Recently we are introducing multiple git subtree projects and > it is the right time to have a universal script to update > various subtrees and replace the dts/update-dts-subtree.sh. > > update-subtree.sh is a wrapper of git subtree

Re: [GIT PULL] Please pull u-boot-imx-master-20240722

2024-07-22 Thread Tom Rini
g repo [1] into > dts/upstream (2024-07-20 11:15:22 -0600) > > are available in the Git repository at: > > https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git > tags/u-boot-imx-master-20240722 > > for you to fetch changes up to a9c962941e119017eb9d5985c5c214d9711c9433

[ANN] U-Boot v2024.10-rc1 released

2024-07-22 Thread Tom Rini
Hey all, It's release day and here is -rc1. Looking at my own queue, I think it's in OK shape, but there's a few things I want to take still, and I need to check some other areas for mature changes to pull in as well. In terms of a changelog, git log --merges v2024.07..v2024.10-rc1 contains what

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

2024-07-22 Thread E Shattow
On Mon, Jul 22, 2024 at 6:29 PM Minda Chen wrote: > > > > > > > On Sat, Jul 20, 2024 at 6:47 PM E Shattow wrote: > > > > > > 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:

Re: [PATCH v2 0/5] arm: exynos: Enable TRNG for E850-96 board

2024-07-22 Thread Minkyu Kang
Hi, 2024년 7월 23일 (화) 03:17, Sam Protsenko 님이 작성: > Hi Minkyu, > > Can you please take a look at this series? And also my MMC series [1] > has been pending for a while now, if it's ok with you -- can you > please apply it? > > Thanks! > > [1] https://lists.denx.de/pipermail/u-boot/2024-July/55960

Re: [PATCH] efi_loader: add /dtbs search path

2024-07-22 Thread Heinrich Schuchardt
On 7/22/24 19:55, Caleb Connolly wrote: Add an additional search path /dtbs, this is where dtbs are installed on postmarketOS and potentially other distros. Signed-off-by: Caleb Connolly --- lib/efi_loader/efi_fdt.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/efi_loader/efi_fd

Re: [PATCH] efi_loader: add /dtbs search path

2024-07-22 Thread Ilias Apalodimas
On Mon, 22 Jul 2024 at 20:55, Caleb Connolly wrote: > > Add an additional search path /dtbs, this is where dtbs are installed on > postmarketOS and potentially other distros. > > Signed-off-by: Caleb Connolly > --- > lib/efi_loader/efi_fdt.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --

Re: [PATCH v2] tools: Add script to update git subtree projects

2024-07-22 Thread Ilias Apalodimas
On Mon, 22 Jul 2024 at 22:31, Raymond Mao wrote: > > Recently we are introducing multiple git subtree projects and > it is the right time to have a universal script to update > various subtrees and replace the dts/update-dts-subtree.sh. > > update-subtree.sh is a wrapper of git subtree commands. >

<    1   2