Re: [PATCH v2 0/3] Meson: R/W support for pages used by boot ROM

2024-08-22 Thread Arseniy Krasnov
Hi, thanks! Thanks, Arseniy On 22.08.2024 00:17, Michael Nazzareno Trimarchi wrote: > Hi > > I will read them tomorrow ;) > > Thank you for understanding > > Michael > > Il mer 21 ago 2024, 22:25 Arseniy Krasnov ha > scritto: > >> Hi, sorry, pls ping 😄 >> >> Thanks >> >> On 08.07.2024 10:1

Re: [ANN] U-Boot v2024.10-rc3 released

2024-08-22 Thread Peter Robinson
Hi Tom, > It's release day and here is -rc3. Things have been mostly quiet, and > with the -next window firmly open I believe things should remain quiet > moving forward. > > In terms of a changelog, > git log --merges v2024.10-rc2..v2024.10-rc3 > contains what I've pulled but as always, better PR

Re: [GIT PULL] Please pull u-boot-dfu-20240820

2024-08-22 Thread Mattijs Korpershoek
On mar., août 20, 2024 at 09:11, Tom Rini wrote: > On Tue, Aug 20, 2024 at 05:09:55PM +0200, Mattijs Korpershoek wrote: >> Hi Tom, >> >> On mar., août 20, 2024 at 09:16, Mattijs Korpershoek >> wrote: >> >> > Hi Tom, >> > >> > Please find some fixes for master: >> > >> > - Fix crash in BCB on

Re: [PATCH] config: imx: Add PHYTEC's phycore-imx8mm-fspi_defconfig

2024-08-22 Thread Teresa Remmet
Hello Lukasz, Am Mittwoch, dem 21.08.2024 um 10:33 +0200 schrieb Lukasz Majewski: > Hi Teresa, > > > Hello Lukasz, > > > > Am Donnerstag, dem 15.08.2024 um 10:40 +0200 schrieb Lukasz > > Majewski: > > > This configuration file provides support for booting phycore > > > module > > > (on e.g. poli

Please pull u-boot-samsung master

2024-08-22 Thread Minkyu Kang
Dear Tom, The following changes since commit d51764417dc37ead471a5597f7815ae455e84ea3: am335x_hs_evm_spi_defconfig: Add MAINTAINERS entry (2024-08-15 16:07:45 -0600) are available in the git repository at: g...@source.denx.de:u-boot/custodians/u-boot-samsung.git master for you to fetch cha

[PATCH v3] rockchip: px30: clk: add UART0 clock getter/setter

2024-08-22 Thread Lukasz Czechowski
Add dedicated getter and setter for SCLK_UART0_PMU. This allows the driver to correctly handle UART0 clocks, and thus it fixes the issues with UART0 not working in case DEBUG_UART is disabled. Unlike other Rockchip SoCs, i.e. rk3399, in the PX30 the default clock source for UART is GPLL, instead of

Re: [PATCH v3 8/9] ubi: implement support for LED activity

2024-08-22 Thread Christian Marangi
On Sun, Aug 18, 2024 at 09:32:32PM +0200, Michael Nazzareno Trimarchi wrote: > Hi > > On Sun, Aug 18, 2024 at 6:24 PM Christian Marangi > wrote: > > > > On Wed, Aug 14, 2024 at 10:17:18AM +0200, Michael Nazzareno Trimarchi wrote: > > > Hi all > > > > > > On Wed, Aug 14, 2024 at 6:34 AM Heiko Sch

Re: [PATCH v3 1/9] led: turn LED ON on initial SW blink

2024-08-22 Thread Christian Marangi
On Tue, Aug 13, 2024 at 12:00:59AM +0200, Heinrich Schuchardt wrote: > > > Am 12. August 2024 12:32:43 MESZ schrieb Christian Marangi > : > >We currently init the LED OFF when SW blink is triggered when > >on_state_change() is called. This can be problematic for very short > >period as the ON/OF

[GIT PULL] Please pull u-boot-dfu-20240822

2024-08-22 Thread Mattijs Korpershoek
/-/pipelines/22076 Thanks, Mattijs The following changes since commit 0b06e052fb153958d470209dab237f12796cb0da: CI: Update to latest Dockerfile (2024-08-21 09:41:20 -0600) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-dfu.git tags/u-boot-dfu-20240822

Re: [PATCH v2 1/7] clk/qcom: add initial clock driver for sc7280

2024-08-22 Thread Caleb Connolly
On 22/08/2024 04:59, Simon Glass wrote: Hi Caleb, On Wed, 21 Aug 2024 at 14:33, Caleb Connolly wrote: On 21/08/2024 20:27, Simon Glass wrote: Hi Caleb, On Wed, 21 Aug 2024 at 10:47, Caleb Connolly wrote: On 21/08/2024 18:16, Simon Glass wrote: Hi Caleb, On Wed, 21 Aug 2024 at 08

Re: [PATCH v3 00/27] Make LMB memory map global and persistent

2024-08-22 Thread Sughosh Ganu
On Thu, 22 Aug 2024 at 04:17, Tom Rini wrote: > > On Wed, Aug 21, 2024 at 04:28:12PM +0530, Sughosh Ganu wrote: > > > This is a follow-up from an earlier RFC series [1] for making the LMB > > and EFI memory allocations work together. This is a non-rfc version > > with only the LMB part of the patc

[PATCH v4 00/14] spl: mmc: Some tweaks for SPL, particularly with MMC

2024-08-22 Thread Simon Glass
This series includes various minor fixes and tweaks found when trying to reduce the size of MMC code in SPL. Changes in v4: - Mention the change to lower case in the commit message - Put a 0x prefix on the 'enhanced size' message - Drop defconfig-resync patch Changes in v3: - Keep hex prefix on v

[PATCH v4 01/14] rockchip: Move the default timer init to a common file

2024-08-22 Thread Simon Glass
Rather than repeating the same code in two files (SPL and TPL), move it to a shared filed. Signed-off-by: Simon Glass Reviewed-by: Dragan Simic Reviewed-by: Quentin Schulz --- (no changes since v2) Changes in v2: - Drop unused constants from spl.c file arch/arm/include/asm/arch-rockchip/tim

[PATCH v4 02/14] spl: Correct use of CMD_BOOTI and CMD_BOOTZ

2024-08-22 Thread Simon Glass
These should have a CONFIG_ prefix. Add it. Signed-off-by: Simon Glass Fixes: 7a0d88076b9 ("Add in the ability to load and boot an uncompr...") Reviewed-by: Sean Anderson Reviewed-by: Quentin Schulz --- (no changes since v1) common/spl/spl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 delet

[PATCH v4 03/14] spl: Remove some #ifdefs in spl_parse_image_header()

2024-08-22 Thread Simon Glass
This function has a number of unnecessary #ifdefs so remove them. Signed-off-by: Simon Glass Reviewed-by: Sean Anderson Reviewed-by: Quentin Schulz --- (no changes since v1) common/spl/spl.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/common/s

Re: [PATCH v3 07/15] mmc: Use logging instead of pr_err()

2024-08-22 Thread Simon Glass
Hi Quentin, On Mon, 12 Aug 2024 at 03:40, Quentin Schulz wrote: > > Hi Simon, > > On 8/11/24 2:29 PM, Simon Glass wrote: > > Use the log subsystem instead of dev, to avoid including function names > > in the code. > > > > The CONFIG_LOGF_FUNC option can be used to enable the function name. > > >

[PATCH v4 04/14] spl: Remove remaining #ifdef in spl_parse_image_header()

2024-08-22 Thread Simon Glass
Define spl_set_header_raw_uboot() always so we can drop the last #ifdef in this function. Signed-off-by: Simon Glass Reviewed-by: Sean Anderson Reviewed-by: Quentin Schulz --- (no changes since v2) Changes in v2: - Avoid changing comment common/spl/spl.c | 10 -- 1 file changed, 4 i

[PATCH v4 05/14] mmc: Use logging instead of printf()

2024-08-22 Thread Simon Glass
The code makes quite a few uses of __func__ which puts the function name into the resulting SPL image. Use the log subsystem instead, to reduce size. The CONFIG_LOGF_FUNC option can be used to enable the function name. Use lower-case hex for the status output in sdhci_transfer_data(), to match sd

[PATCH v4 06/14] mmc: Use logging instead of pr_err()

2024-08-22 Thread Simon Glass
Use the log subsystem instead of dev, to avoid including function names in the code. The CONFIG_LOGF_FUNC option can be used to enable the function name. Update 'enhanced size' to use hex since this is the U-Boot default and more natural for the large numbers involved. Signed-off-by: Simon Glass

[PATCH v4 07/14] log: Avoid including function names by default

2024-08-22 Thread Simon Glass
Unless function names are requested, the logging system should not compile these into the code. Adjust the macros to handle this. This means that turning on function names at runtime won't work unless CONFIG_LOGF_FUNC is enabled. We could perhaps split this into a separate option if that is a prob

[PATCH v4 08/14] spl: mmc: Drop checks for CONFIG_SPL_LIBCOMMON_SUPPORT

2024-08-22 Thread Simon Glass
This check is not needed now, since printf() resolved to nothing if not available. Drop the #ifdefs Signed-off-by: Simon Glass Reviewed-by: Sean Anderson Reviewed-by: Quentin Schulz --- (no changes since v1) common/spl/spl_mmc.c | 20 +--- 1 file changed, 1 insertion(+), 19 d

[PATCH v4 09/14] spl: mmc: Handle error codes consistently

2024-08-22 Thread Simon Glass
Use 'ret' as the return code, since it may not be an error and this is the common name in U-Boot. Make sure to return the error code when given, rather than transforming it into -1 (-EPERM). Signed-off-by: Simon Glass --- (no changes since v2) Changes in v2: - Update 'return ret' to 'return 0'

[PATCH v4 10/14] spl: mmc: Adjust args of spl_mmc_find_device()

2024-08-22 Thread Simon Glass
At present spl_mmc_load() is the only caller of this function, passing it a boot_device, an index into the available MMC devices. Pass the device number instead, since it is known by the caller and simplifies the code. Signed-off-by: Simon Glass Reviewed-by: Sean Anderson Reviewed-by: Quentin Sc

[PATCH v4 12/14] spl: Use unified inline functions for spl_load_info

2024-08-22 Thread Simon Glass
Rather than declaring completely separate functions, put the code for each case into the same function. This makes it easier to read. Signed-off-by: Simon Glass Reviewed-by: Sean Anderson Reviewed-by: Quentin Schulz --- (no changes since v1) include/spl.h | 18 +++--- 1 file chan

[PATCH v4 13/14] spl: Create a function to init spl_load_info

2024-08-22 Thread Simon Glass
Rather than having every caller set this up individually, create a common init function. This allows new fields to be added without the risk of them being left uninited. Signed-off-by: Simon Glass Reviewed-by: Michael Trimarchi --- (no changes since v3) Changes in v3: - Rebase on -next arch/

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

2024-08-22 Thread Simon Glass
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 type So make these a choice, so it is mo

[PATCH v4 14/14] blk: Correct comment for blk_get_devnum_by_uclass_idname()

2024-08-22 Thread Simon Glass
Update the comment to match the function. Fix the indentation while we are here. Signed-off-by: Simon Glass Reviewed-by: Sean Anderson Reviewed-by: Quentin Schulz --- Changes in v4: - Drop defconfig-resync patch Changes in v3: - Rebase to -next include/blk.h | 4 ++-- 1 file changed, 2 inse

[PATCH v2 00/19] Tidy up console recording in tests

2024-08-22 Thread Simon Glass
This series started as a small fix for checking for an empty line, but in the process several other problems were found and fixed: - fix tests which use console recording but don't set the flag - drop unnecessary resetting of the console in tests - drop unnecessary blank line before MMC output - u

[PATCH v2 01/19] buildman: Make test_process_limit handle time.monotonic()

2024-08-22 Thread Simon Glass
Newer versions of filelock use time.monotonic() instead of time.time(). Update the test the handle this. It would be better if filelock had support for writing unit tests which use locking. Signed-off-by: Simon Glass --- (no changes since v1) tools/buildman/test.py | 1 + 1 file changed, 1 in

[PATCH v2 02/19] test: Fail when an empty line is expected but not present

2024-08-22 Thread Simon Glass
The existing implementation of ut_assert_nextline_empty() cannot distinguish between an empty line and no line at all. It can in fact be called at the end of the recorded output and will happily return success. Adjust the logic so that this condition is detected. Show a failure message in this cas

[PATCH v2 04/19] test: Drop the blank line before test macros

2024-08-22 Thread Simon Glass
Most tests don't have this. It helps to keep the test declaration clearly associated with the function it relates to, rather than the next one in the file. Remove the extra blank line and mention this in the docs. Signed-off-by: Simon Glass --- (no changes since v1) doc/develop/tests_writing.r

[PATCH v2 06/19] mmc: Drop the blank line before accesses

2024-08-22 Thread Simon Glass
Several mmc subcommand print a blank line before starting and after finishing. It isn't necessary to do both, so drop the first one. It is questionable whether these command should produce any output at all, but leave it for now. Signed-off-by: Simon Glass --- (no changes since v1) cmd/mmc.c

[PATCH v2 05/19] test: Rename UTF_CONSOLE_REC to UTF_CONSOLE

2024-08-22 Thread Simon Glass
The _REC suffix doesn't add much. Really what we want to know is whether the test uses the console, so rename this flag. Signed-off-by: Simon Glass Reviewed-by: Mattijs Korpershoek --- Changes in v2: - Update env test too doc/develop/tests_writing.rst | 4 ++-- include/dm/test.h

[PATCH v2 07/19] test: Update NAND test to avoid extra macros

2024-08-22 Thread Simon Glass
Write out the tests in full to allow the test to be found more easily when there is a failure. We could use a single test function with a for() loop but this would stop at the first failure, and some variations might while other pass. Signed-off-by: Simon Glass --- Changes in v2: - Rewrite as se

[PATCH v2 08/19] test: bloblist: Use UTF_CONSOLE in tests

2024-08-22 Thread Simon Glass
Set this flag rather than doing things manually in the test. Drop the code which is now unnecessary. Signed-off-by: Simon Glass --- (no changes since v1) test/bloblist.c | 14 ++ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/test/bloblist.c b/test/bloblist.c index

[PATCH v2 09/19] test: boot: Use UTF_CONSOLE in tests

2024-08-22 Thread Simon Glass
Set this flag rather than doing things manually in the test. Drop unnecessary calls to console_record_reset_enable() Signed-off-by: Simon Glass Reviewed-by: Mattijs Korpershoek --- (no changes since v1) test/boot/bootdev.c | 31 ++ test/boot/bootflow.c | 53 +

[PATCH v2 10/19] test: fdt: Check internal-function return values

2024-08-22 Thread Simon Glass
Some functions are using asserts but the result of the functions themselves is not checked. This means that if a test fails, the result is not noticed until later, which can be confusing to debug. Add the missing asserts. Signed-off-by: Simon Glass --- (no changes since v1) test/cmd/fdt.c | 1

[PATCH v2 11/19] test: fdt: Move common code into the setup functions

2024-08-22 Thread Simon Glass
Quite a lot of tests have the same two lines of code at the start. Move this into the two setup functions to reduce redundancy. Add a line to check the output from set_working_fdt_addr() since this is always emitted. Signed-off-by: Simon Glass --- (no changes since v1) test/cmd/fdt.c | 92 +++

[PATCH v2 12/19] test: cmd: Use UTF_CONSOLE in tests

2024-08-22 Thread Simon Glass
Set this flag rather than doing things manually in the test. Signed-off-by: Simon Glass --- (no changes since v1) test/cmd/pinmux.c | 3 ++- test/cmd/wget.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/cmd/pinmux.c b/test/cmd/pinmux.c index 0b4e001fa1e..7ee9269

[PATCH v2 14/19] test: dm: Use UTF_CONSOLE in tests

2024-08-22 Thread Simon Glass
Set this flag rather than doing things manually in the test. Signed-off-by: Simon Glass --- (no changes since v1) test/dm/acpi.c| 15 --- test/dm/blkmap.c | 4 +--- test/dm/cros_ec.c | 14 -- test/dm/host.c| 4 +--- test/dm/mux-cmd.c | 2 +- test/dm/rng.c

[PATCH v2 13/19] test: cmd: Drop unnecessary console_record_reset_enable()

2024-08-22 Thread Simon Glass
It is seldom necessary to call this function. Drop its use in the command tests. Add a few extra checks to the wget test so that resetting is not needed. Signed-off-by: Simon Glass --- (no changes since v1) test/cmd/addrmap.c | 1 - test/cmd/bdinfo.c | 4 -- test/cmd/exit.c

[PATCH v2 15/19] test: hush: Use UTF_CONSOLE in tests

2024-08-22 Thread Simon Glass
Set this flag rather than doing things manually in the test. Signed-off-by: Simon Glass Reviewed-by: Mattijs Korpershoek --- (no changes since v1) test/hush/dollar.c | 10 +++--- test/hush/loop.c | 11 +++ 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/test/hush

[PATCH v2 16/19] test: log: Use UTF_CONSOLE in tests

2024-08-22 Thread Simon Glass
Set this flag rather than doing things manually in the test. Signed-off-by: Simon Glass --- (no changes since v1) include/test/log.h | 5 +++-- test/log/cont_test.c| 1 - test/log/log_filter.c | 3 --- test/log/log_test.c | 19 --- test/log/nolog_ndebug.c | 1

[PATCH v2 17/19] test: Use UTF_CONSOLE in remaining tests

2024-08-22 Thread Simon Glass
Set this flag rather than doing things manually in the test. Signed-off-by: Simon Glass --- (no changes since v1) test/common/cread.c | 4 +--- test/common/test_autoboot.c | 3 +-- test/lib/test_print.c | 10 ++ test/print_ut.c | 15 --- 4 files

[PATCH v2 19/19] doc: Add a few notes about how to use console checking

2024-08-22 Thread Simon Glass
Tidy up the existing docs in line with current conventions. Signed-off-by: Simon Glass --- Changes in v2: - Drop wget patches as they have been sent by the author doc/develop/commands.rst | 9 + doc/develop/tests_writing.rst | 1 - 2 files changed, 5 insertions(+), 5 deletions(-)

[PATCH v2 18/19] test: Tidy up checking for console end

2024-08-22 Thread Simon Glass
Use the ut_assert_console_end() function provided, rather than doing it separately. Signed-off-by: Simon Glass --- (no changes since v1) test/cmd/bdinfo.c | 8 +- test/cmd/exit.c | 24 +++--- test/cmd/fdt.c | 178 test/cmd/font

Re: [PATCH v3 2/3] buildman: Allow skipping the dtc build

2024-08-22 Thread Tom Rini
On Wed, Aug 21, 2024 at 09:00:25PM -0600, Simon Glass wrote: > Hi Tom, > > On Fri, 16 Aug 2024 at 17:53, Simon Glass wrote: > > > > Hi Tom, > > > > On Fri, 16 Aug 2024 at 11:22, Tom Rini wrote: > > > > > > On Thu, Aug 15, 2024 at 01:57:45PM -0600, Simon Glass wrote: > > > > > > > For most boards

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-08-22 Thread Tom Rini
On Wed, Aug 21, 2024 at 09:00:33PM -0600, Simon Glass wrote: > Hi Tom, > > On Wed, 26 Jun 2024 at 02:00, Simon Glass wrote: > > > > Hi Tom, > > > > On Tue, 25 Jun 2024 at 15:14, Tom Rini wrote: > > > > > > On Tue, Jun 25, 2024 at 01:38:00PM +0100, Simon Glass wrote: > > > > Hi Tom, > > > > > > >

Re: [ANN] U-Boot v2024.10-rc3 released

2024-08-22 Thread Tom Rini
On Thu, Aug 22, 2024 at 08:19:12AM +0100, Peter Robinson wrote: > Hi Tom, > > > It's release day and here is -rc3. Things have been mostly quiet, and > > with the -next window firmly open I believe things should remain quiet > > moving forward. > > > > In terms of a changelog, > > git log --merges

Re: [PATCH v3 2/3] buildman: Allow skipping the dtc build

2024-08-22 Thread Simon Glass
Hi Tom, On Thu, 22 Aug 2024 at 08:10, Tom Rini wrote: > > On Wed, Aug 21, 2024 at 09:00:25PM -0600, Simon Glass wrote: > > Hi Tom, > > > > On Fri, 16 Aug 2024 at 17:53, Simon Glass wrote: > > > > > > Hi Tom, > > > > > > On Fri, 16 Aug 2024 at 11:22, Tom Rini wrote: > > > > > > > > On Thu, Aug 1

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-08-22 Thread Simon Glass
Hi Tom, On Thu, 22 Aug 2024 at 08:11, Tom Rini wrote: > > On Wed, Aug 21, 2024 at 09:00:33PM -0600, Simon Glass wrote: > > Hi Tom, > > > > On Wed, 26 Jun 2024 at 02:00, Simon Glass wrote: > > > > > > Hi Tom, > > > > > > On Tue, 25 Jun 2024 at 15:14, Tom Rini wrote: > > > > > > > > On Tue, Jun 2

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-08-22 Thread Tom Rini
On Thu, Aug 22, 2024 at 08:22:59AM -0600, Simon Glass wrote: > Hi Tom, > > On Thu, 22 Aug 2024 at 08:11, Tom Rini wrote: > > > > On Wed, Aug 21, 2024 at 09:00:33PM -0600, Simon Glass wrote: > > > Hi Tom, > > > > > > On Wed, 26 Jun 2024 at 02:00, Simon Glass wrote: > > > > > > > > Hi Tom, > > > >

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-22 Thread Tom Rini
On Fri, Aug 16, 2024 at 05:53:59PM -0600, Simon Glass wrote: [snip] > > Some notes from a little bit of digging: There are almost 1000 sandbox > > tests (17-20mins), but qemu_arm only runs 62 (2mins). With 'make > > qcheck' it runs about 2500 tests in about 4 minutes. I just got 'make > > pcheck' g

Re: [PATCH v2 1/7] clk/qcom: add initial clock driver for sc7280

2024-08-22 Thread Neil Armstrong
On 22/08/2024 14:12, Caleb Connolly wrote: On 22/08/2024 04:59, Simon Glass wrote: Hi Caleb, On Wed, 21 Aug 2024 at 14:33, Caleb Connolly wrote: On 21/08/2024 20:27, Simon Glass wrote: Hi Caleb, On Wed, 21 Aug 2024 at 10:47, Caleb Connolly wrote: On 21/08/2024 18:16, Simon Glass w

Re: [PATCH 1/1] usb: gadget: ether: Disable USB pullup in eth probe

2024-08-22 Thread Marek Vasut
On 8/22/24 11:11 AM, Zixun LI wrote: Hi, Hi, On Thu, Aug 22, 2024 at 1:26 AM Marek Vasut wrote: Would it be possible to fix up the g_dnl ? g_dnl's interface is pretty different from usb_ether, I can't find a way to access usb_gadget struct in g_dnl_register(). Can you change the g_dnl_

Re: [PATCH 1/1] usb: gadget: ether: Disable USB pullup in eth probe

2024-08-22 Thread Zixun LI
Hi, On Thu, Aug 22, 2024 at 1:26 AM Marek Vasut wrote: > > Would it be possible to fix up the g_dnl ? g_dnl's interface is pretty different from usb_ether, I can't find a way to access usb_gadget struct in g_dnl_register(). Meanwhile it can be fixed in udc core, by doing gadget_driver bind afte

Re: [PATCH 1/1] usb: gadget: ether: Disable USB pullup in eth probe

2024-08-22 Thread Zixun LI
On Thu, Aug 22, 2024 at 5:24 PM Marek Vasut wrote: > > Can you change the g_dnl_register() prototype and pass he structure in ? > I suspect it should be available in the commands which register g_dnl ? > There are many places where g_dnl_register() is called, like fastboot, dfu, ums, etc, need to

Re: [PATCH v2 1/7] clk/qcom: add initial clock driver for sc7280

2024-08-22 Thread Simon Glass
Hi Caleb, On Thu, 22 Aug 2024 at 06:12, Caleb Connolly wrote: > > > > On 22/08/2024 04:59, Simon Glass wrote: > > Hi Caleb, > > > > On Wed, 21 Aug 2024 at 14:33, Caleb Connolly > > wrote: > >> > >> > >> > >> On 21/08/2024 20:27, Simon Glass wrote: > >>> Hi Caleb, > >>> > >>> On Wed, 21 Aug 2024

Re: [PATCH v2 1/7] clk/qcom: add initial clock driver for sc7280

2024-08-22 Thread Caleb Connolly
On 22/08/2024 18:54, Simon Glass wrote: Hi Caleb, On Thu, 22 Aug 2024 at 06:12, Caleb Connolly wrote: On 22/08/2024 04:59, Simon Glass wrote: Hi Caleb, On Wed, 21 Aug 2024 at 14:33, Caleb Connolly wrote: On 21/08/2024 20:27, Simon Glass wrote: Hi Caleb, On Wed, 21 Aug 2024 at 10

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-22 Thread Simon Glass
Hi Tom, On Thu, 22 Aug 2024 at 09:13, Tom Rini wrote: > > On Fri, Aug 16, 2024 at 05:53:59PM -0600, Simon Glass wrote: > [snip] > > > Some notes from a little bit of digging: There are almost 1000 sandbox > > > tests (17-20mins), but qemu_arm only runs 62 (2mins). With 'make > > > qcheck' it runs

Re: [GIT PULL] Please pull u-boot-dfu-20240822

2024-08-22 Thread Tom Rini
e (2024-08-21 09:41:20 -0600) > > are available in the Git repository at: > > https://source.denx.de/u-boot/custodians/u-boot-dfu.git > tags/u-boot-dfu-20240822 > > for you to fetch changes up to e49eeb6575152cac4241f3c87471934a726970e9: > > usb: gadget: ux500:

Re: Please pull u-boot-samsung master

2024-08-22 Thread Tom Rini
On Thu, Aug 22, 2024 at 07:20:10PM +0900, Minkyu Kang wrote: > Dear Tom, > > The following changes since commit d51764417dc37ead471a5597f7815ae455e84ea3: > > am335x_hs_evm_spi_defconfig: Add MAINTAINERS entry (2024-08-15 16:07:45 > -0600) > > are available in the git repository at: > > g..

Re: [PATCH 1/1] usb: gadget: ether: Disable USB pullup in eth probe

2024-08-22 Thread Marek Vasut
On 8/22/24 5:53 PM, Zixun LI wrote: On Thu, Aug 22, 2024 at 5:24 PM Marek Vasut wrote: Can you change the g_dnl_register() prototype and pass he structure in ? I suspect it should be available in the commands which register g_dnl ? There are many places where g_dnl_register() is called, lik