Re: [PATCH v2] riscv: Fix detecting FPU support in standard extension

2022-11-09 Thread Rick Chen
> From: U-Boot On Behalf Of Yu Chien Peter Lin > Sent: Saturday, November 05, 2022 2:02 PM > To: u-boot@lists.denx.de > Cc: sam...@sholland.org; Peter Yu-Chien Lin(林宇謙) > Subject: [PATCH v2] riscv: Fix detecting FPU support in standard extension > > We should check the string until it hits

[PATCH 1/1] sandbox: check lseek return value in handle_ufi_command

2022-11-09 Thread Heinrich Schuchardt
Invoking lseek() may result in an error. Handle it. Addresses-Coverity-ID: 376212 ("Error handling issues (CHECKED_RETURN)") Signed-off-by: Heinrich Schuchardt --- drivers/usb/emul/sandbox_flash.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git

[PATCH] efi_loader: initialize return values in efi_uninstall_multiple_protocol_interfaces_int()

2022-11-09 Thread Ilias Apalodimas
If the va_list we got handed over contains no protocols we must return EFI_INVALID_PARAMETER. However in that case the current code just returns an unintialized value. Addresses-Coverity: CID 376195: ("Uninitialized variables (UNINIT)") --- lib/efi_loader/efi_boottime.c | 4 ++-- 1 file

[PATCH v3 1/2] arm: mediatek: add mt8195 SOC support

2022-11-09 Thread Macpaul Lin
From: Fabien Parent The MediaTek MT8195 is a ARM64-based SoC with a quad-core Cortex-A73 and a quad-core Cortex-A53. It is including UART, SPI, USB3.0 device and hosts, SD and MMC cards, UFS, PWM, I2C, I2S, S/PDIF, and several LPDDR3 and LPDDR4 options. Signed-off-by: Fabien Parent

[PATCH v3 2/2] board: mediatek: add mt8195 demo board

2022-11-09 Thread Macpaul Lin
From: Fabien Parent Add mt8195-demo board support. This demo purpose board uses MediaTek's MT8195 SoC. Signed-off-by: Fabien Parent Signed-off-by: Amjad Ouled-Ameur Signed-off-by: Macpaul Lin --- MAINTAINERS | 1 + arch/arm/dts/Makefile | 1 +

Re: [PATCH v7 4/5] eficonfig: add UEFI Secure Boot Key enrollment interface

2022-11-09 Thread Masahisa Kojima
On Thu, 10 Nov 2022 at 15:47, Ilias Apalodimas wrote: > > [...] > > > > > + goto out; > > > > + > > > > + ret = efi_open_volume_int(file_info.current_volume, ); > > > > + if (ret != EFI_SUCCESS) > > > > + goto out; > > > > + > > > > + ret =

Re: [PATCH v7 4/5] eficonfig: add UEFI Secure Boot Key enrollment interface

2022-11-09 Thread Ilias Apalodimas
[...] > > > + goto out; > > > + > > > + ret = efi_open_volume_int(file_info.current_volume, ); > > > + if (ret != EFI_SUCCESS) > > > + goto out; > > > + > > > + ret = efi_file_open_int(root, , file_info.current_path, > > > EFI_FILE_MODE_READ, 0); > > > +

[PATCH v5 05/16] buildman: Convert documentation to rST

2022-11-09 Thread Simon Glass
Convert the buildman documentation to rST format and include it in the 'build' section. Signed-off-by: Simon Glass Reviewed-by: Quentin Schulz --- Changes in v5: - Correct --- Warning --- section - Convert the buildman args to a list Changes in v3: - Add new patch to convert documentation to

Re: [PATCH v7 4/5] eficonfig: add UEFI Secure Boot Key enrollment interface

2022-11-09 Thread Masahisa Kojima
Hi Ilias, On Thu, 10 Nov 2022 at 01:04, Ilias Apalodimas wrote: > > Hi Kojima-san > > > On Wed, Nov 09, 2022 at 12:37:27PM +0900, Masahisa Kojima wrote: > > This commit adds the menu-driven UEFI Secure Boot Key > > enrollment interface. User can enroll PK, KEK, db > > and dbx by selecting file.

[PATCH v5 15/16] buildman: Add --allow-missing flag to allow missing blobs

2022-11-09 Thread Simon Glass
From: Tom Rini Add a new flag to buildman so that we will in turn pass BINMAN_ALLOW_MISSING=1 to 'make'. Make use of this flag in CI. Allow the settings file to control this. Cc: Rasmus Villemoes Cc: Simon Glass Signed-off-by: Tom Rini Signed-off-by: Simon Glass --- Changes in v5: - Split

[PATCH v5 16/16] binman: Add documentation for the command line args

2022-11-09 Thread Simon Glass
Add command-line documentation for binman. Signed-off-by: Simon Glass --- Changes in v5: - Add new patch with documentation for the command line args tools/binman/binman.rst | 300 +++- 1 file changed, 299 insertions(+), 1 deletion(-) diff --git

[PATCH v5 14/16] buildman: Reinstate removal of temp output dir in tests

2022-11-09 Thread Simon Glass
This was dropped my mistake. Reinstate it. Signed-off-by: Simon Glass Fixes: d829f1217c6 ("bulidman: Add support for a simple build") --- Changes in v5: - Add new patch to reinstate removal of temp output dir in tests tools/buildman/func_test.py | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH v5 12/16] global: Do not default to faking missing binaries for buildman

2022-11-09 Thread Simon Glass
From: Tom Rini While it is possible and documented on how to re-run buildman to replace faked required binary files after the fact, this behavior ends up being more confusing than helpful in practice. Switch to requiring BINMAN_ALLOW_MISSING=1 to be passed on the 'make' line to enable this

[PATCH v5 11/16] binman: Add a separate section about environment variables

2022-11-09 Thread Simon Glass
These are documented in various several sections. Add a new section that mentions them all in one place so it is easier to see what environment variables can be used to control U-Boot's use of binman. Signed-off-by: Simon Glass Suggested-by: Heinrich Schuchardt --- Changes in v5: - Add new

[PATCH v5 09/16] buildman: Drop mention of old architectures

2022-11-09 Thread Simon Glass
Support for some architectures has been removed since buildman was first written. Also all toolchains are now available at kernel.org so we don't need the links, except for arc where the kernel.org toolchain fails to build all boards. Signed-off-by: Simon Glass --- (no changes since v4)

[PATCH v5 13/16] buildman: Ensure config_fname is inited

2022-11-09 Thread Simon Glass
Init this variable at the top level since it is a global. Signed-off-by: Simon Glass --- Changes in v5: - Add new patch to ensure config_fname is inited tools/buildman/bsettings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/buildman/bsettings.py b/tools/buildman/bsettings.py

[PATCH v5 10/16] buildman: Detect binman reporting missing blobs

2022-11-09 Thread Simon Glass
Buildman should consider a build as a success (with warnings) if missing blobs have been dealt with by binman, even though buildman itself returns and error code overall. This is how other warnings are dealt with. We cannot easily access the 103 exit code, so detect the problem in the output.

[PATCH v5 08/16] buildman: Update the default settings file

2022-11-09 Thread Simon Glass
The settings file omits a few lines which are useful for getting every board building. Add these and update the documentation tool. Signed-off-by: Simon Glass --- (no changes since v4) Changes in v4: - Add new patch to update the default settings file tools/buildman/bsettings.py | 3 +++

[PATCH v5 07/16] buildman: Update the arc toolchain

2022-11-09 Thread Simon Glass
There is one on kernel.org but it does not build the hsdk_4xd board. Add a link to one which does. Signed-off-by: Simon Glass --- (no changes since v4) Changes in v4: - Add a patch to update the arc toolchain tools/buildman/buildman.rst | 5 - 1 file changed, 4 insertions(+), 1

Re: [PATCH v2 00/25] bootstd: Add a boot menu

2022-11-09 Thread Simon Glass
Hi Heinrich, On Mon, 7 Nov 2022 at 16:35, Simon Glass wrote: > > Hi Heinrich, > > On Mon, 7 Nov 2022 at 12:15, Heinrich Schuchardt wrote: > > > > On 11/4/22 23:48, Simon Glass wrote: > > > So far standard boot lacks a boot menu, although it is possible to create > > > a rudimentary one using

[PATCH v5 04/16] binman: Use an exit code when blobs are missing

2022-11-09 Thread Simon Glass
At present binman returns success when told to handle missing/faked blobs or missing bintools. This is confusing since in fact the resulting image cannot work. Use exit code 103 to signal this problem, with a -W option to convert it to a warning. Rename the flag to --ignore-missing since it

[PATCH v5 06/16] buildman: Drop mention of MAKEALL

2022-11-09 Thread Simon Glass
This script was removed about 6 years ago so most people should be aware that it is not needed anymore. Drop mention of it. Signed-off-by: Simon Glass --- (no changes since v3) Changes in v3: - Add new patch to drop mention of MAKEALL tools/buildman/buildman.rst | 110

[PATCH v5 03/16] doc: Correct the path to the Makefile documentation

2022-11-09 Thread Simon Glass
This is out-of-date now. Fix it. Signed-off-by: Simon Glass --- (no changes since v1) scripts/Kbuild.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 9c14310ad40..62e0207f91b 100644 --- a/scripts/Kbuild.include

[PATCH v5 02/16] Makefile: Correct the binman rule

2022-11-09 Thread Simon Glass
This currently uses if_changed on a phony target. Use a real file as the target and add FORCE at the end, as required. Drop the 'inputs' phony since it is not needed. Signed-off-by: Simon Glass --- (no changes since v2) Changes in v2: - Use a separate rule for running binman Makefile | 11

[PATCH v5 01/16] image: Correct strncpy() warning with image_set_name()

2022-11-09 Thread Simon Glass
gcc 12 seems to warn on strncpy() as a matter of course. Rewrite the code a different way to do the same thing, to avoid the warning. Signed-off-by: Simon Glass --- (no changes since v1) include/image.h | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/image.h

Re: [PATCH v4 11/11] buildman: Add --allow-missing flag to allow missing blobs

2022-11-09 Thread Simon Glass
Hi Quentin & Heinrich, On Wed, 9 Nov 2022 at 09:03, Quentin Schulz wrote: > > Hi Simon, > > On 11/8/22 00:28, Simon Glass wrote: > > From: Tom Rini > > > > Add a new flag to buildman so that we will in turn pass > > BINMAN_ALLOW_MISSING=1 to 'make'. Make use of this flag in CI. > > > > Allow

Re: [PATCH v3 3/9] binman: Use an exit code when blobs are missing

2022-11-09 Thread Simon Glass
Hi Quentin, On Mon, 7 Nov 2022 at 07:17, Quentin Schulz wrote: > > Hi Simon, > > On 11/6/22 00:04, Simon Glass wrote: > > At present binman returns success when told to handle missing blobs. > > This is confusing this in fact the resulting image cannot work. > > > > Use exit code 103 to signal

Re: [PATCH v4 04/21] dm: blk: Add probe in blk_first_device/blk_next_device

2022-11-09 Thread Simon Glass
On Mon, 10 Oct 2022 at 16:33, Simon Glass wrote: > > Hi Michal, > > On Mon, 10 Oct 2022 at 15:33, Michal Suchánek wrote: > > > > On Mon, Oct 10, 2022 at 09:49:20PM +0200, Michal Suchánek wrote: > > > On Sun, Oct 02, 2022 at 07:10:40PM -0600, Simon Glass wrote: > > > > Hi Michal, > > > > > > > >

[PATCH v5 00/16] buildman: Correct various issues with missing blobs

2022-11-09 Thread Simon Glass
This series attempts to tidy up the problem of missing blobs, making U-Boot default to failing the build, but providing ways to configure this so that buildman can still be used for build testing by people who don't have the blobs or don't care about them. This is based on discussion in [1] as

Re: [PATCH 1/2] arm: mediatek: add mt8195 SOC support

2022-11-09 Thread Tom Rini
On Wed, Nov 09, 2022 at 09:09:28PM +0100, Pali Rohár wrote: > + Tom > - all > > On Wednesday 09 November 2022 15:10:59 Macpaul Lin wrote: > > On 11/8/22 15:57, Pali Rohár wrote: > > > Hello! I'm not mediatek maintainer and if this patch series is not > > > something important for me which should

Re: [maemo-leste] Broken u-boot on n900 hw (possibly CONFIG_POSITION_INDEPENDENT)

2022-11-09 Thread Pali Rohár
On Wednesday 02 November 2022 01:08:26 Pali Rohár wrote: > On Friday 21 October 2022 21:09:55 Pali Rohár wrote: > > On Thursday 20 October 2022 22:06:58 Pali Rohár wrote: > > > On Monday 10 October 2022 23:30:21 Sicelo wrote: > > > > On Sun, Oct 09, 2022 at 09:33:17PM +0200, Pali Rohár wrote: > >

Re: [PATCH 1/2] arm: mediatek: add mt8195 SOC support

2022-11-09 Thread Pali Rohár
+ Tom - all On Wednesday 09 November 2022 15:10:59 Macpaul Lin wrote: > On 11/8/22 15:57, Pali Rohár wrote: > > Hello! I'm not mediatek maintainer and if this patch series is not > > something important for me which should I review then please do not send > > me lot of these emails... As I would

Re: [PATCH v2 8/8] imx: imx8: apalis: switch to binman

2022-11-09 Thread Marcel Ziswiler
Hi Oliver Thanks for working on this. On Fri, 2022-11-04 at 16:03 +0100, Oliver Graute wrote: > Switch to use binman to pack images > > Signed-off-by: Oliver Graute > --- > Changes for v2 >  - use common imx8qm-u-boot.dtsi >  - guard SPL nodes with CONFIG_SPL I don't think it is that simple.

Re: [PATCH v2 0/8] imx8: switch missing boards to binman

2022-11-09 Thread Fabio Estevam
Hi Oliver and Stefano, On Wed, Nov 9, 2022 at 1:19 PM Oliver Graute wrote: > For my imx8qm boards I need to manually place these imx firmware blobs with > expected names for sucessfull image creation. > > As I understood the CI creates somes fakes. But I don't know where this > is happening.

[PATCH v3 2/2] doc: board: j721e_evm: Fix code-block type and indents

2022-11-09 Thread Andrew Davis
* BASH code should be labeled as such. * Code blocks should be indented by 4 spaces. Fix these here. Suggested-by: Heinrich Schuchardt Signed-off-by: Andrew Davis --- Changes from v2: - None Changes from v1: - New patch with fixes suggested by Heinrich doc/board/ti/j721e_evm.rst | 24

[PATCH v3 1/2] doc: board: j721e_evm: Add DM firmware steps

2022-11-09 Thread Andrew Davis
J721e needs DM firmware when using updated SYSFW. Add steps to fetch, build, and deploy the same. Signed-off-by: Andrew Davis --- Changes from v2: - s/DM/DM Firmware Changes from v1: - None doc/board/ti/j721e_evm.rst | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-)

Re: [PATCH] doc: board: j721e_evm: Add DM firmware steps

2022-11-09 Thread Andrew Davis
On 11/6/22 2:49 AM, Heinrich Schuchardt wrote: On 11/1/22 15:06, Andrew Davis wrote: On 10/7/22 6:47 PM, Heinrich Schuchardt wrote: On 10/7/22 22:37, Andrew Davis wrote: J721e needs DM firmware when using updated SYSFW. Add steps to fetch, build, and deploy the same. Signed-off-by: Andrew

Re: [PATCH v2 0/8] imx8: switch missing boards to binman

2022-11-09 Thread Marcel Ziswiler
On Fri, 2022-11-04 at 13:31 -0300, Fabio Estevam wrote: > Hi Oliver, > > On Fri, Nov 4, 2022 at 12:19 PM Oliver Graute > wrote: > > > > This patchsets switches the remaining imx8 boards to binman. > > > > Oliver Graute (8): > >   imx: imx8qm-rom7720: switch to binman > >   imx: imx8qm:

Re: [PATCH v2 0/8] imx8: switch missing boards to binman

2022-11-09 Thread Oliver Graute
On 08/11/22, Stefano Babic wrote: > Hi Fabio, Oliver, > > On 04.11.22 17:31, Fabio Estevam wrote: > > Hi Oliver, > > > > On Fri, Nov 4, 2022 at 12:19 PM Oliver Graute > > wrote: > > > > > > This patchsets switches the remaining imx8 boards to binman. > > > > > > Oliver Graute (8): > > >

Re: [PATCH v2 0/8] imx8: switch missing boards to binman

2022-11-09 Thread Oliver Graute
On 08/11/22, Fabio Estevam wrote: > Hi Oliver and Stefano, > > On Tue, Nov 8, 2022 at 1:43 PM Stefano Babic wrote: > > > I have tried to merge the series, but I get build errors, see: > > > > https://source.denx.de/u-boot/custodians/u-boot-imx/-/jobs/519510 > > > > Could you take a look ? > >

Re: [PATCH v7 4/5] eficonfig: add UEFI Secure Boot Key enrollment interface

2022-11-09 Thread Ilias Apalodimas
Hi Kojima-san On Wed, Nov 09, 2022 at 12:37:27PM +0900, Masahisa Kojima wrote: > This commit adds the menu-driven UEFI Secure Boot Key > enrollment interface. User can enroll PK, KEK, db > and dbx by selecting file. > Only the signed EFI Signature List(s) with an authenticated > header,

Re: [PATCH v4 11/11] buildman: Add --allow-missing flag to allow missing blobs

2022-11-09 Thread Quentin Schulz
Hi Simon, On 11/8/22 00:28, Simon Glass wrote: From: Tom Rini Add a new flag to buildman so that we will in turn pass BINMAN_ALLOW_MISSING=1 to 'make'. Make use of this flag in CI. Allow the settings file to control this. Cc: Rasmus Villemoes Cc: Simon Glass Signed-off-by: Tom Rini

Re: [PATCH v2 0/8] imx8: switch missing boards to binman

2022-11-09 Thread Stefano Babic
Hi Fabio, On 08.11.22 23:16, Fabio Estevam wrote: Hi Oliver and Stefano, On Tue, Nov 8, 2022 at 1:43 PM Stefano Babic wrote: I have tried to merge the series, but I get build errors, see: https://source.denx.de/u-boot/custodians/u-boot-imx/-/jobs/519510 Could you take a look ? One

Fwd: New Defects reported by Coverity Scan for Das U-Boot

2022-11-09 Thread Tom Rini
Here's the latest report. -- Forwarded message - From: Date: Mon, Nov 7, 2022 at 3:41 PM Subject: New Defects reported by Coverity Scan for Das U-Boot To: Hi, Please find the latest report on new defect(s) introduced to Das U-Boot found with Coverity Scan. 21 new defect(s)

Re: [PATCH v4 04/11] buildman: Convert documentation to rST

2022-11-09 Thread Quentin Schulz
Hi Simon, On 11/8/22 00:28, Simon Glass wrote: Convert the buildman documentation to rST format and include it in the 'build' section. Signed-off-by: Simon Glass --- [...] +Other options +- + +Buildman has various other command-line options. Try --help to see them. + +To find

Re: LX2106A U-Boot: board_eth_init() not called any more

2022-11-09 Thread Ioana Ciornei
On Wed, Nov 09, 2022 at 08:24:27AM -0500, Tom Rini wrote: > On Wed, Nov 09, 2022 at 12:48:59PM +0200, Ioana Ciornei wrote: > > > From: Stefan Roese > > > Subject: LX2106A U-Boot: board_eth_init() not called any more > > > [snip] > > I suspect there's unused code in the board directory that

Re: LX2106A U-Boot: board_eth_init() not called any more

2022-11-09 Thread Ioana Ciornei
On Wed, Nov 09, 2022 at 02:29:56PM +0100, Stefan Roese wrote: > Hi Ioana, > [snip] > > fsl-mc: Booting Management Complex ... SUCCESS > > fsl-mc: Management Complex booted (version: 10.24.0, boot status: 0x1) > > Hit any key to stop autoboot: 0 > > => setenv ethact DPMAC3@usxgmii > > => setenv

Re: [PATCH v2 1/2] spl: enable regulator-boot-on and disable regulator-force-boot-off

2022-11-09 Thread Quentin Schulz
Hi all, Ping on the patch series. I don't need it for my boards anymore but I still think this is a nice to have for everybody. I won't ping again if there's no interest/feedback. Cheers, Quentin On 7/22/22 12:09, Quentin Schulz wrote: From: Quentin Schulz This makes sure regulators that

Re: [PATCH v7 3/5] eficonfig: refactor change boot order implementation

2022-11-09 Thread Ilias Apalodimas
On Wed, Nov 09, 2022 at 12:37:26PM +0900, Masahisa Kojima wrote: > All the eficonfig menus other than "Change Boot Order" > use 'eficonfig_entry' structure for each menu entry. > This commit refactors change boot order implementation > to use 'eficonfig_entry' structure same as other menus > to

Re: [PATCH v7 1/5] eficonfig: refactor file selection handling

2022-11-09 Thread Ilias Apalodimas
On Wed, Nov 09, 2022 at 12:37:24PM +0900, Masahisa Kojima wrote: > eficonfig_select_file_handler() is commonly used to select the > file. eficonfig_display_select_file_option() adds an additional > menu to clear the selected file. > eficonfig_display_select_file_option() is not always necessary >

Re: LX2106A U-Boot: board_eth_init() not called any more

2022-11-09 Thread Stefan Roese
Hi Ioana, On 09.11.22 11:48, Ioana Ciornei wrote: From: Stefan Roese Subject: LX2106A U-Boot: board_eth_init() not called any more Dear NXP LX2160 developers! Hi! With commit 94633c36f9eb ("net: Make DM_ETH be selected by NETDEVICE") DM_ETH is now mandatory. And net/eth_legacy.c is not

Re: LX2106A U-Boot: board_eth_init() not called any more

2022-11-09 Thread Tom Rini
On Wed, Nov 09, 2022 at 12:48:59PM +0200, Ioana Ciornei wrote: > > From: Stefan Roese > > Subject: LX2106A U-Boot: board_eth_init() not called any more > > > > Dear NXP LX2160 developers! > > > > Hi! > > > With commit 94633c36f9eb ("net: Make DM_ETH be selected by NETDEVICE") > > DM_ETH is now

Re: [PATCH v2 1/2] arm: mediatek: add mt8195 SOC support

2022-11-09 Thread 云春峰
On Wed, 2022-11-09 at 17:50 +0800, Macpaul Lin wrote: > From: Fabien Parent > > The MediaTek MT8195 is a ARM64-based SoC with a quad-core Cortex-A73 > and > a quad-core Cortex-A53. It is including UART, SPI, USB3.0 device and > hosts, > SD and MMC cards, UFS, PWM, I2C, I2S, S/PDIF, and several

Re: [PATCH 1/2] arm: mediatek: add mt8195 SOC support

2022-11-09 Thread 云春峰
On Wed, 2022-11-09 at 17:33 +0800, Macpaul Lin wrote: > On 11/9/22 15:32, Macpaul Lin wrote: > > > > On 11/9/22 10:07, Chunfeng Yun (云春峰) wrote: > > > On Tue, 2022-11-08 at 11:21 +0800, Macpaul Lin wrote: > > > > From: Fabien Parent > > > > > > > > The MediaTek MT8195 is a ARM64-based SoC with

Re: [PATCH v7 03/10] arm_ffa: introduce Arm FF-A low-level driver

2022-11-09 Thread Jens Wiklander
On Mon, Nov 07, 2022 at 07:20:48PM +, Abdellatif El Khlifi wrote: > Add the core driver implementing Arm Firmware Framework for Armv8-A v1.0 > > The Firmware Framework for Arm A-profile processors (FF-A v1.0) [1] > describes interfaces (ABIs) that standardize communication > between the

Re: [RFC PATCH v5 09/24] cli: Add menu for hush parser

2022-11-09 Thread Francis Laniel
Hi. Le mardi 8 novembre 2022, 21:15:12 CET Simon Glass a écrit : > Hi, > > On Tue, 8 Nov 2022 at 08:21, Tom Rini wrote: > > On Mon, Nov 07, 2022 at 08:28:42AM -0700, Simon Glass wrote: > > > Hi Patrick, > > > > > > On Mon, 7 Nov 2022 at 05:32, Patrick DELAUNAY > > > > > > wrote: > > > > Hi,

RE: LX2106A U-Boot: board_eth_init() not called any more

2022-11-09 Thread Ioana Ciornei
> From: Stefan Roese > Subject: LX2106A U-Boot: board_eth_init() not called any more > > Dear NXP LX2160 developers! > Hi! > With commit 94633c36f9eb ("net: Make DM_ETH be selected by NETDEVICE") > DM_ETH is now mandatory. And net/eth_legacy.c is not compiled anymore. > Resulting in

[PATCH v2 2/2] board: mediatek: add mt8195 demo board

2022-11-09 Thread Macpaul Lin
From: Fabien Parent Add mt8195-demo board support. This demo purpose board uses MediaTek's MT8195 SoC. Signed-off-by: Fabien Parent Signed-off-by: Amjad Ouled-Ameur Signed-off-by: Macpaul Lin --- MAINTAINERS | 1 + arch/arm/dts/Makefile | 1 +

[PATCH v2 1/2] arm: mediatek: add mt8195 SOC support

2022-11-09 Thread Macpaul Lin
From: Fabien Parent The MediaTek MT8195 is a ARM64-based SoC with a quad-core Cortex-A73 and a quad-core Cortex-A53. It is including UART, SPI, USB3.0 device and hosts, SD and MMC cards, UFS, PWM, I2C, I2S, S/PDIF, and several LPDDR3 and LPDDR4 options. Signed-off-by: Fabien Parent

Re: [PATCH 2/2] spi: fsl_qspi: Support to use full AHB space on i.MX

2022-11-09 Thread Frieder Schrempf
Hi, On 09.06.20 09:59, Ye Li wrote: > i.MX platforms provide large AHB mapped space for QSPI, each > controller has 256MB. However, current driver only maps small > size (AHB buffer size) of AHB space, this implementation > causes i.MX failed to boot M4 with QSPI XIP image. > > Add config

Re: [PATCH 1/2] arm: mediatek: add mt8195 SOC support

2022-11-09 Thread Macpaul Lin
On 11/9/22 15:32, Macpaul Lin wrote: On 11/9/22 10:07, Chunfeng Yun (云春峰) wrote: On Tue, 2022-11-08 at 11:21 +0800, Macpaul Lin wrote: From: Fabien Parent The MediaTek MT8195 is a ARM64-based SoC with a quad-core Cortex-A73 and a quad-core Cortex-A53. It is including UART, SPI, USB3.0

Re: [PATCH v20 3/4] doc: cmd: wget: add documentation

2022-11-09 Thread Ramon Fried
On Tue, Nov 8, 2022 at 10:15 PM Simon Glass wrote: > > On Mon, 7 Nov 2022 at 23:17, Ying-Chun Liu (PaulLiu) > wrote: > > > > From: "Ying-Chun Liu (PaulLiu)" > > > > Add documentation for the wget command. > > > > Signed-off-by: Ying-Chun Liu (PaulLiu) > > Cc: Christian Gmeiner > > Cc: Joe

Re: [PATCH v20 4/4] test: cmd: add test for wget command.

2022-11-09 Thread Ramon Fried
On Tue, Nov 8, 2022 at 10:15 PM Simon Glass wrote: > > On Mon, 7 Nov 2022 at 23:17, Ying-Chun Liu (PaulLiu) > wrote: > > > > From: "Ying-Chun Liu (PaulLiu)" > > > > Simulate a TCP HTTP server's response for testing wget command. > > > > Signed-off-by: Ying-Chun Liu (PaulLiu) > > Cc: Christian

Re: [PATCH v6 2/6] net: mvneta: Add support for AlleyCat5

2022-11-09 Thread Stefan Roese
Hi Ramon, On 09.11.22 09:22, Ramon Fried wrote: On Sat, Nov 5, 2022 at 6:24 AM Chris Packham wrote: Add support for the AlleyCat5 SoC. This lacks the mbus from the other users of the mvneta.c driver so a new compatible string is needed to allow for a different window configuration.

Re: [PATCH v20 1/4] net: Add TCP protocol

2022-11-09 Thread Ramon Fried
On Tue, Nov 8, 2022 at 8:17 AM Ying-Chun Liu (PaulLiu) wrote: > > From: "Ying-Chun Liu (PaulLiu)" > > Currently file transfers are done using tftp or NFS both > over udp. This requires a request to be sent from client > (u-boot) to the boot server. > > The current standard is TCP with selective

Re: [PATCH v20 2/4] net: Add wget application

2022-11-09 Thread Ramon Fried
On Wed, Nov 9, 2022 at 4:26 AM Ying-Chun Liu (PaulLiu) wrote: > > > > On 2022/11/9 05:03, Sean Anderson wrote: > > On 11/8/22 01:17, Ying-Chun Liu (PaulLiu) wrote: > >> From: "Ying-Chun Liu (PaulLiu)" > >> > >> This commit adds a simple wget command that can download files > >> from http server.

Re: [PATCH v6 2/6] net: mvneta: Add support for AlleyCat5

2022-11-09 Thread Ramon Fried
On Sat, Nov 5, 2022 at 6:24 AM Chris Packham wrote: > > Add support for the AlleyCat5 SoC. This lacks the mbus from the other > users of the mvneta.c driver so a new compatible string is needed to > allow for a different window configuration. > > Signed-off-by: Chris Packham > Reviewed-by:

Re: [PATCH] drivers: net: aquantia: fix typos

2022-11-09 Thread Ramon Fried
On Thu, Nov 3, 2022 at 11:44 PM Tim Harvey wrote: > > Fix a couple of typos: > - s/Acquantia/Aquantia/ > - s/firmare/firmware/ > > Signed-off-by: Tim Harvey > --- > drivers/net/phy/aquantia.c | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git