Re: [PATCH v2 2/2] nvmxip: add sandbox support

2023-08-16 Thread Marek Vasut
On 8/16/23 13:05, Abdellatif El Khlifi wrote: enable the 32-bit version of sandbox Initially NVMXIP came with sandbox64 support. Let's enable sandbox support as well. Signed-off-by: Abdellatif El Khlifi Cc: Tom Rini Cc: Simon Glass Cc: Marek Vasut --- Changelog: === v2: * sp

Re: [PATCH v2 1/2] log: select physical address formatting in a generic way

2023-08-16 Thread Marek Vasut
On 8/16/23 13:05, Abdellatif El Khlifi wrote: sets the log formatting according to the platform (64-bit vs 32-bit) Use imperative mood please, see https://www.kernel.org/doc/html/latest/process/submitting-patches.html#describe-your-changes Signed-off-by: Abdellatif El Khlifi Cc: Simon Glass

[PATCH v2 2/2] nvmxip: add sandbox support

2023-08-16 Thread Abdellatif El Khlifi
enable the 32-bit version of sandbox Initially NVMXIP came with sandbox64 support. Let's enable sandbox support as well. Signed-off-by: Abdellatif El Khlifi Cc: Tom Rini Cc: Simon Glass Cc: Marek Vasut --- Changelog: === v2: * split into 2 commits: one for sandbox 32-bit suppo

[PATCH v2 1/2] log: select physical address formatting in a generic way

2023-08-16 Thread Abdellatif El Khlifi
sets the log formatting according to the platform (64-bit vs 32-bit) Signed-off-by: Abdellatif El Khlifi Cc: Simon Glass --- cmd/armffa.c | 8 include/log.h | 9 + 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/cmd/armffa.c b/cmd/armffa.c index 7e6eafc03a..ab0f

Re: [PATCHv6 03/14] net/lwip: implement dns cmd

2023-08-16 Thread Maxim Uvarov
On Wed, 16 Aug 2023 at 16:26, Ilias Apalodimas wrote: > On Tue, 15 Aug 2023 at 17:42, Tom Rini wrote: > > > > On Tue, Aug 15, 2023 at 06:42:14PM +0600, Maxim Uvarov wrote: > > > On Mon, 14 Aug 2023 at 20:19, Ilias Apalodimas < > ilias.apalodi...@linaro.org> > > > wrote: > > > > > > [...] > > > >

Re: Booting Windows 11

2023-08-16 Thread Heinrich Schuchardt
On 8/16/23 09:41, Heinrich Schuchardt wrote: On 8/16/23 03:22, Simon Glass wrote: Hi Heinrich, I thought I would try booting Windows on U-Boot but it does not get very far. Have you tried that? I note a ew odd things below. Is there a validation suite for it? https://github.com/sjg20/u-boot/tr

Re: [PATCHv6 03/14] net/lwip: implement dns cmd

2023-08-16 Thread Ilias Apalodimas
On Tue, 15 Aug 2023 at 17:42, Tom Rini wrote: > > On Tue, Aug 15, 2023 at 06:42:14PM +0600, Maxim Uvarov wrote: > > On Mon, 14 Aug 2023 at 20:19, Ilias Apalodimas > > wrote: > > > > [...] > > > > > > > > +/* > > > > +* This function creates the DNS request to resolve a domain host name. > > > Fun

[PATCH 3/3] docs: ti: j721s2_evm: Create documentation from J7200 docs

2023-08-16 Thread Manorit Chawdhry
The documentation is based off J7200 documentation tailored for J721S2. TRM for J721S2: https://www.ti.com/lit/pdf/spruj28 Product Page: https://www.ti.com/product/TDA4AL-Q1 Signed-off-by: Manorit Chawdhry --- MAINTAINERS | 1 + doc/board/ti/j721s2_evm.rst | 228 ++

[PATCH 2/3] k3-am68: Sync from linux-next tag next-20230815

2023-08-16 Thread Manorit Chawdhry
The following commit syncs the device tree from Linux tag next-20230815 to U-boot and fixes the following to be compatible with the future syncs - - Include k3-am68-sk-base-board.dts file Remove the duplicated pinmuxes from r5 and -u-boot.dtsi files and include k3-am68-sk-common-proc-boar

[PATCH 1/3] k3-j721s2: Sync from linux-next tag next-20230815

2023-08-16 Thread Manorit Chawdhry
The following commit syncs the device tree from Linux tag next-20230815 to U-boot and fixes the following to be compatible with the future syncs - - Include k3-j721s2-common-proc-board.dts file Remove the duplicated pinmuxes from r5 and -u-boot.dtsi files and include k3-j721s2-common-proc

[PATCH 0/3] DTS Sync from next-20230815 to u-boot

2023-08-16 Thread Manorit Chawdhry
| 228 ++ doc/board/ti/k3.rst| 1 + 16 files changed, 2407 insertions(+), 803 deletions(-) --- base-commit: 5d3758178bc23d731897f05244bf564f8d1caf48 change-id: 20230816-b4-upstream-j721s2-r5-pinmux-25c4cd61b258 Best regards, -- Manorit Chawdhry

Re: [PATCHv6 11/14] net/lwip: connection between cmd and lwip apps

2023-08-16 Thread Ilias Apalodimas
On Mon, Aug 14, 2023 at 07:32:50PM +0600, Maxim Uvarov wrote: Commit message missing again > Signed-off-by: Maxim Uvarov > --- > cmd/Makefile | 1 + > cmd/net-lwip.c | 306 + > 2 files changed, 307 insertions(+) > create mode 100644 cmd/net-l

Re: [PATCHv6 07/14] net/lwip: implement ping cmd

2023-08-16 Thread Maxim Uvarov
On Wed, 16 Aug 2023 at 14:42, Ilias Apalodimas wrote: > On Mon, Aug 14, 2023 at 07:32:46PM +0600, Maxim Uvarov wrote: > > * can return immediately if previous request was cached or it might > require > > @@ -38,3 +39,28 @@ int ulwip_dhcp(void); > > * !0 if error > > */ > > int ulwip_w

Re: [PATCHv6 09/14] net/lwip: implement lwIP port to U-Boot

2023-08-16 Thread Ilias Apalodimas
On Mon, Aug 14, 2023 at 07:32:48PM +0600, Maxim Uvarov wrote: > Implement network lwIP interface connected to the U-boot. > Keep original file structure widely used fro lwIP ports. > (i.e. port/if.c port/sys-arch.c). What the patch does is obvious. Try to describe *why* we need this > > Signed

Re: [PATCHv6 07/14] net/lwip: implement ping cmd

2023-08-16 Thread Ilias Apalodimas
On Mon, Aug 14, 2023 at 07:32:46PM +0600, Maxim Uvarov wrote: > * can return immediately if previous request was cached or it might require > @@ -38,3 +39,28 @@ int ulwip_dhcp(void); > * !0 if error > */ > int ulwip_wget(ulong addr, char *url); > + > +/** > + * ulwip_tftp() - load file

Re: [PATCHv6 06/14] net/lwip: implement wget cmd

2023-08-16 Thread Ilias Apalodimas
On Mon, Aug 14, 2023 at 07:32:45PM +0600, Maxim Uvarov wrote: > Implement function for wget command with lwIP variant. Usage and output is > the same as the original command. This code called by compatibility code > between U-Boot and lwIP. > Similar comments to previous patches adding commands

Re: Booting Windows 11

2023-08-16 Thread Heinrich Schuchardt
On 8/16/23 03:22, Simon Glass wrote: Hi Heinrich, I thought I would try booting Windows on U-Boot but it does not get very far. Have you tried that? I note a ew odd things below. Is there a validation suite for it? https://github.com/sjg20/u-boot/tree/efi2 qemu-x86_64_defconfig does not build

Re: Booting Windows 11

2023-08-16 Thread Ilias Apalodimas
Hi Simon, On Tue, Aug 15, 2023 at 07:22:56PM -0600, Simon Glass wrote: > Hi Heinrich, > > I thought I would try booting Windows on U-Boot but it does not get > very far. Have you tried that? I note a ew odd things below. Is there > a validation suite for it? > > https://github.com/sjg20/u-boot/

<    1   2