Re: [PATCH 1/4] mkimage: also honour -B even without external data

2023-11-06 Thread Rasmus Villemoes
On 04/11/2023 20.43, Simon Glass wrote: > Hi Rasmus, > Are you planning a new version of this series? No. AFAICT there's nothing to be done on my end. Rasmus

[PATCH v1 0/5] Convert recently merged T30 boards to use DM PMIC

2023-11-06 Thread Svyatoslav Ryhel
Since the proposed PMIC patches have been accepted, I see the need to convert boards which I maintain to use DM drivers instead of board hacks. Svyatoslav Ryhel (5): board: lg-x3: convert LG Optimus 4X and Vu to use DM PMIC board: endeavoru: convert HTC One X to use DM PMIC board: transforme

[PATCH v1 1/5] board: lg-x3: convert LG Optimus 4X and Vu to use DM PMIC

2023-11-06 Thread Svyatoslav Ryhel
Since required drivers were merged, we can safely clean up the board and switch to DM based driver with device tree support. Signed-off-by: Svyatoslav Ryhel --- arch/arm/dts/tegra30-lg-x3.dtsi | 1 + board/lg/x3-t30/x3-t30-spl.c| 2 +- board/lg/x3-t30/x3-t30.c| 97 ++---

[PATCH v1 2/5] board: endeavoru: convert HTC One X to use DM PMIC

2023-11-06 Thread Svyatoslav Ryhel
Since required drivers were merged, we can safely clean up the board and switch to DM based driver with device tree support. Signed-off-by: Svyatoslav Ryhel --- arch/arm/dts/tegra30-htc-endeavoru.dts | 1 + board/htc/endeavoru/endeavoru-spl.c| 2 +- board/htc/endeavoru/endeavoru.c|

[PATCH v1 5/5] ARM: dts: tegra30: enable USB PHY node on some devices

2023-11-06 Thread Svyatoslav Ryhel
Enable USB PHY nodes on ASUS Transformers, Grouper, Enadevoru and LG X3. This is not mandatory since driver will use default values but preferable for new devices. Signed-off-by: Svyatoslav Ryhel --- arch/arm/dts/tegra30-asus-grouper-common.dtsi | 7 +++ arch/arm/dts/tegra30-asus-p1801-t.dt

[PATCH v1 3/5] board: transformer-t30: convert ASUS Transformers to use DM PMIC

2023-11-06 Thread Svyatoslav Ryhel
Since required drivers were merged, we can safely clean up the board and switch to DM based driver with device tree support. Signed-off-by: Svyatoslav Ryhel --- arch/arm/dts/tegra30-asus-p1801-t.dts | 2 + arch/arm/dts/tegra30-asus-tf600t.dts | 4 + arch/arm/dts/tegra30-asus

[PATCH v1 4/5] board: grouper: convert ASUS Google Nexus 7 (2012) to use DM PMIC

2023-11-06 Thread Svyatoslav Ryhel
Since required drivers were merged, we can safely clean up the board and switch to DM based driver with device tree support. Signed-off-by: Svyatoslav Ryhel --- .../dts/tegra30-asus-nexus7-grouper-E1565.dts | 1 + .../dts/tegra30-asus-nexus7-grouper-PM269.dts | 1 + .../dts/tegra30-asus-nexu

Re: [PATCH v1 0/2] Meson A1: fix USB and NAND stack

2023-11-06 Thread Neil Armstrong
Hi, On Wed, 01 Nov 2023 17:04:55 +0300, Alexey Romanov wrote: > After a recent sync device tree with the Linux Kernel, > some drivers broke. These patchset will fix that. > > Alexey Romanov (1): > clk: a1: add new clocks for USB stack > > Dmitry Rokosov (1): > drivers: sm: bind child sm devi

Re: [PATCH] ARM: configs: libretech-ac: enable USB_DFU like in meson64.h

2023-11-06 Thread Neil Armstrong
Hi, On Thu, 02 Nov 2023 14:49:58 +0100, Neil Armstrong wrote: > USB_DFU was added in meson64.h but is missing in libretech-ac.h, > fix this to enable DFU RAM boot for libretech-ac. > > Fixes 4aa027b3f8 ("configs: meson64: add alternate USB DFU boot target") > > Thanks, Applied to https://sourc

[PATCH v2 0/3] Implement GPIO cells for PALMAS and MAX77663 PMICs

2023-11-06 Thread Svyatoslav Ryhel
This patchset adds support for gpio-uclass to work with pmic gpio childrens properly and implements MAX77663 and PALMAS GPIO cells/children as a reference and to be further used in devices I am currently maintaining. All drivers are tested on actual hardware and confirmed to work as expected. MAX

[PATCH v2 1/3] drivers: gpio-uclass: support PMIC GPIO children

2023-11-06 Thread Svyatoslav Ryhel
UCLASS_PMIC may have GPIO children without exposed fdt node, in this case if requesting fails, check if uclass is PMIC. If so, iterate through its children to find correct device. Signed-off-by: Svyatoslav Ryhel --- drivers/gpio/gpio-uclass.c | 19 +++ 1 file changed, 19 insertio

[PATCH v2 2/3] drivers: gpio: implement MAX77663 GPIO cell

2023-11-06 Thread Svyatoslav Ryhel
MAXIM Semiconductor's PMIC, MAX77663 has 8 GPIO pins and 3 GPIO-like pins. It also supports interrupts from these pins. Add GPIO driver for these pins to control via GPIO APIs. Signed-off-by: Svyatoslav Ryhel --- drivers/gpio/Kconfig| 9 ++ drivers/gpio/Makefile

[PATCH v2 3/3] drivers: gpio: implement PALMAS GPIO cell

2023-11-06 Thread Svyatoslav Ryhel
Add gpio driver for TI Palmas series PMIC. This has 8 gpio which can work as input/output. Signed-off-by: Svyatoslav Ryhel --- drivers/gpio/Kconfig| 7 ++ drivers/gpio/Makefile | 1 + drivers/gpio/palmas_gpio.c | 132 drivers/power/pmic/pal

[PATCH 1/1] .mailmap: map Pali Rohár

2023-11-06 Thread Heinrich Schuchardt
Pali expressed that he does not want to receive mails relating to his past contributions. Signed-off-by: Heinrich Schuchardt --- .mailmap | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.mailmap b/.mailmap index 05cb310e41..4c0b922488 100644 --- a/.mailmap +++ b/.mailmap @@ -80,6 +80,8 @@

Re: [PATCH v6 00/25] spl: Use common function for loading/parsing images

2023-11-06 Thread Heinrich Schuchardt
On 11/5/23 23:49, Pali Rohár wrote: What you are doing is the worst thing in the world. You have been ignoring all my changes which I have been sending for one year, then you wrote me that I'm not competent to do any kind of programming, later you wrote that you would ignore all my requests and s

[PATCH] fs/squashfs: remove unused declarations

2023-11-06 Thread David Oberhollenzer
This patch removes a number of struct and macro declaration that were found through `git-grep` to be unused. Most of those are related to compressor options and super block flags. For reading a SquashFS image, we do not need the compressor options or the flags. Those only encode settings used for

Re: [PATCH v6 00/25] spl: Use common function for loading/parsing images

2023-11-06 Thread Marek Behún
On Mon, 6 Nov 2023 08:49:05 +0100 Pali Rohár wrote: > What you are doing is the worst thing in the world. You have been > ignoring all my changes which I have been sending for one year, then you > wrote me that I'm not competent to do any kind of programming, later you > wrote that you would igno

[PATCH] fs/squashfs: enable LZ4 compression support

2023-11-06 Thread David Oberhollenzer
The structure is identical to the existing compressor implementations, trivially adding lz4 decompression to sqfs_decompress. The changes were tested using a sandbox build. An LZ4 compressed squashfs image was bound as a host block device. Signed-off-by: David Oberhollenzer --- fs/squashfs/sqfs

RE: [PATCH] mmc: renesas-sdhi: Disable clock after tuning reset when possible

2023-11-06 Thread Jaehoon Chung
> -Original Message- > From: Marek Vasut > Sent: Monday, November 6, 2023 7:43 AM > To: u-boot@lists.denx.de > Cc: Marek Vasut ; Jaehoon Chung > ; Nobuhiro > Iwamatsu ; Paul Barker ; > Peng Fan > > Subject: [PATCH] mmc: renesas-sdhi: Disable clock after tuning reset when > possible

Re: [PATCH v3 09/12] x86: Enable SSE in 64-bit mode

2023-11-06 Thread Bin Meng
+ Tom, Hi Simon, On Mon, Nov 6, 2023 at 12:29 AM Simon Glass wrote: > > Hi Bin, > > On Sun, 5 Nov 2023 at 14:05, Bin Meng wrote: > > > > Hi Simon, > > > > On Mon, Oct 2, 2023 at 9:15 AM Simon Glass wrote: > > > > > > This is needed to support Truetype fonts. In any case, the compiler > > > exp

Re: [PATCH] fs/squashfs: enable LZ4 compression support

2023-11-06 Thread João Marcos Costa
Hello, David Thanks for this contribution! Em seg., 6 de nov. de 2023 às 11:15, David Oberhollenzer < goli...@infraroot.at> escreveu: > The structure is identical to the existing compressor implementations, > trivially adding lz4 decompression to sqfs_decompress. > > The changes were tested usin

[PATCH v1] stm32mp1: read auth stats and boot_partition from tamp

2023-11-06 Thread Igor Opaniuk
Obtain from TAMP backup register information about image authorization status and partition id used for booting. Store this info in environmental variables ("boot_auth" and "boot_part" correspondingly). Image authorization supported values: 0x0 - No authentication done 0x1 - Authentication done an

Re: [PATCH v9 7/9] efi_loader: support boot from URI device path

2023-11-06 Thread Masahisa Kojima
Hi Ilias, On Thu, 2 Nov 2023 at 20:03, Ilias Apalodimas wrote: > > Hi Kojima-san > > > > + > > +/** > > + * try_load_default_file() - try to load the default file > > + * > > + * Search the device having EFI_SIMPLE_FILE_SYSTEM_PROTOCOL, > > + * then try to load with the default boot file(e.g. EFI

[PATCH v10 0/9] Add EFI HTTP boot support

2023-11-06 Thread Masahisa Kojima
This series adds the EFI HTTP boot support. User can add the URI device path with "efidebug boot add" command. efibootmgr handles the URI device path, download the specified file using wget, mount the downloaded image with blkmap, then boot with the default file(e.g. EFI/BOOT/BOOTAA64.EFI) by selec

[PATCH v10 1/9] net: wget: prevent overwriting reserved memory

2023-11-06 Thread Masahisa Kojima
This introduces the valid range check to store the received blocks using lmb. The same logic is implemented in tftp. Signed-off-by: Masahisa Kojima Acked-by: Ilias Apalodimas Reviewed-by: Simon Glass Reviewed-by: Ramon Fried --- net/wget.c | 80

[PATCH v10 2/9] net: wget: add wget with dns utility function

2023-11-06 Thread Masahisa Kojima
Current wget takes the target uri in this format: ":" e.g.) 192.168.1.1:/bar The http server ip address must be resolved before calling wget. This commit adds the utility function runs wget with dhs. User can call wget with the uri like "http://foo/bar";. Signed-off-by: Masahisa Kojima Reviewe

[PATCH v10 3/9] blk: blkmap: add ramdisk creation utility function

2023-11-06 Thread Masahisa Kojima
User needs to call several functions to create the ramdisk with blkmap. This adds the utility function to create blkmap device and mount the ramdisk. Signed-off-by: Masahisa Kojima Reviewed-by: Simon Glass Reviewed-by: Ilias Apalodimas --- drivers/block/Makefile| 3 +- drivers/block/b

Re: [PATCH v10 0/9] Add EFI HTTP boot support

2023-11-06 Thread Masahisa Kojima
Sorry but I had trouble in send-email, let me re-send this series. Regards, Masahisa Kojima On Mon, 6 Nov 2023 at 20:16, Masahisa Kojima wrote: > > This series adds the EFI HTTP boot support. > User can add the URI device path with "efidebug boot add" command. > efibootmgr handles the URI device

[RESEND PATCH v10 1/9] net: wget: prevent overwriting reserved memory

2023-11-06 Thread Masahisa Kojima
This introduces the valid range check to store the received blocks using lmb. The same logic is implemented in tftp. Signed-off-by: Masahisa Kojima Acked-by: Ilias Apalodimas Reviewed-by: Simon Glass Reviewed-by: Ramon Fried --- net/wget.c | 80

[RESEND PATCH v10 0/9] Add EFI HTTP boot support

2023-11-06 Thread Masahisa Kojima
This series adds the EFI HTTP boot support. User can add the URI device path with "efidebug boot add" command. efibootmgr handles the URI device path, download the specified file using wget, mount the downloaded image with blkmap, then boot with the default file(e.g. EFI/BOOT/BOOTAA64.EFI) by selec

[RESEND PATCH v10 2/9] net: wget: add wget with dns utility function

2023-11-06 Thread Masahisa Kojima
Current wget takes the target uri in this format: ":" e.g.) 192.168.1.1:/bar The http server ip address must be resolved before calling wget. This commit adds the utility function runs wget with dhs. User can call wget with the uri like "http://foo/bar";. Signed-off-by: Masahisa Kojima Reviewe

[RESEND PATCH v10 3/9] blk: blkmap: add ramdisk creation utility function

2023-11-06 Thread Masahisa Kojima
User needs to call several functions to create the ramdisk with blkmap. This adds the utility function to create blkmap device and mount the ramdisk. Signed-off-by: Masahisa Kojima Reviewed-by: Simon Glass Reviewed-by: Ilias Apalodimas --- drivers/block/Makefile| 3 +- drivers/block/b

[RESEND PATCH v10 4/9] efi_loader: Boot var automatic management

2023-11-06 Thread Masahisa Kojima
From: Raymond Mao Changes for complying to EFI spec §3.5.1.1 'Removable Media Boot Behavior'. Boot variables can be automatically generated during a removable media is probed. At the same time, unused boot variables will be detected and removed. Please note that currently the function 'efi_disk_

[RESEND PATCH v10 5/9] efi_loader: add missing const classifier for event service

2023-11-06 Thread Masahisa Kojima
const classifier is missing in EventGroup parameter of CreateEventEx(). Fix it to remove the compiler warning. NotifyContext parameter of CreateEventEx() is also defined with const in UEFI specification, but NotifyContext parameter of CreateEvent() is defined without const. Since current implement

[RESEND PATCH v10 7/9] efi_loader: support boot from URI device path

2023-11-06 Thread Masahisa Kojima
This supports to boot from the URI device path. When user selects the URI device path, bootmgr downloads the file using wget into the address specified by loadaddr env variable. If the file is .iso or .img file, mount the image with blkmap then try to boot with the default file(e.g. EFI/BOOT/BOOTAA

[RESEND PATCH v10 6/9] efi_loader: add return to efibootmgr event group

2023-11-06 Thread Masahisa Kojima
When the image loaded by efibootmgr returns, efibootmgr needs to clean the resources. Adding the event of returning to efibootmgr is useful to simplify the implementation. Signed-off-by: Masahisa Kojima Reviewed-by: Ilias Apalodimas --- cmd/bootefi.c | 12 include/e

[RESEND PATCH v10 8/9] cmd: efidebug: add uri device path

2023-11-06 Thread Masahisa Kojima
This adds the URI device path option for 'boot add' subcommand. User can add the URI load option for downloading ISO image file or EFI application through network. Currently HTTP is only supported. Signed-off-by: Masahisa Kojima Acked-by: Ilias Apalodimas --- cmd/efidebug.c | 51 +++

[RESEND PATCH v10 9/9] doc: uefi: add HTTP Boot support

2023-11-06 Thread Masahisa Kojima
This adds the description about HTTP Boot. Signed-off-by: Masahisa Kojima Reviewed-by: Ilias Apalodimas --- doc/develop/uefi/uefi.rst | 30 ++ 1 file changed, 30 insertions(+) diff --git a/doc/develop/uefi/uefi.rst b/doc/develop/uefi/uefi.rst index fb16ac743a..ca9a5

Re: [PATCH v1 0/5] Convert recently merged T30 boards to use DM PMIC

2023-11-06 Thread Peter Robinson
Hi Svyatoslav, > Since the proposed PMIC patches have been accepted, I see the need > to convert boards which I maintain to use DM drivers instead of board hacks. > > Svyatoslav Ryhel (5): > board: lg-x3: convert LG Optimus 4X and Vu to use DM PMIC > board: endeavoru: convert HTC One X to use

Re: [PATCH] riscv: Add support for AMD/Xilinx MicroBlaze V

2023-11-06 Thread Michal Simek
Hi Conor, On 11/3/23 17:25, Conor Dooley wrote: Yo, Since you sent it to me, I may as well comment... On Fri, Nov 03, 2023 at 05:03:25PM +0100, Michal Simek wrote: MicroBlaze V is new AMD/Xilinx soft-core 32bit RISC-V processor IP. It is hardware compatible with classic MicroBlaze processor.

[PATCH v2] riscv: Add support for AMD/Xilinx MicroBlaze V

2023-11-06 Thread Michal Simek
MicroBlaze V is new AMD/Xilinx soft-core 32bit RISC-V processor IP. It is hardware compatible with classic MicroBlaze processor. The patch contains initial wiring and configuration for initial HW design with memory, cpu, interrupt controller, timers and uartlite console (interrupt controller is li

Re: [PATCH v1 0/5] Convert recently merged T30 boards to use DM PMIC

2023-11-06 Thread Svyatoslav Ryhel
пн, 6 лист. 2023 р. о 13:46 Peter Robinson пише: > > Hi Svyatoslav, > > > Since the proposed PMIC patches have been accepted, I see the need > > to convert boards which I maintain to use DM drivers instead of board hacks. > > > > Svyatoslav Ryhel (5): > > board: lg-x3: convert LG Optimus 4X and

Re: [PATCH v2 0/3] Implement GPIO cells for PALMAS and MAX77663 PMICs

2023-11-06 Thread Peter Robinson
On Mon, Nov 6, 2023 at 10:18 AM Svyatoslav Ryhel wrote: > > This patchset adds support for gpio-uclass to work with pmic gpio childrens > properly and implements MAX77663 and PALMAS GPIO cells/children as a > reference and to be further used in devices I am currently maintaining. > > All drivers a

Re: [PATCH 01/15] arm: mach-k3: j721e: Improve support for UDA FS

2023-11-06 Thread Nishanth Menon
On 15:54-20231104, Kumar, Udit wrote: > > On 11/3/2023 6:07 AM, Nishanth Menon wrote: > > Commit 5019170970ad ("arch: arm: mach-k3: j721e: add support for UDA > > FS") introduced basic UDA FS support, however, we can Take approach > > similar to commit 0f1c1e8b368b ("arm: mach-k3: am625: Add suppo

Re: [PATCH 03/15] board: ti: j721e: evm: Drop board check for ESM

2023-11-06 Thread Nishanth Menon
On 16:03-20231104, Kumar, Udit wrote: > > On 11/3/2023 6:07 AM, Nishanth Menon wrote: > > When config is enabled, the esm dt probe makes sense. Simplify by > > dropping board specific checks. > > > > Signed-off-by: Nishanth Menon > > --- > > board/ti/j721e/evm.c | 10 ++ > > 1 file ch

Re: [PATCH 10/15] configs: j721e_evm_a72_defconfig: Switch to bootstd

2023-11-06 Thread Nishanth Menon
On 10:58-20231106, Manorit Chawdhry wrote: > Hi Nishanth, > > On 19:38-20231102, Nishanth Menon wrote: > > Switch to using bootstd. Note with this change, we will stop using > > distro_bootcmd and instead depend entirely on bootflow method of > > starting the system

Re: [PATCH v6 08/25] spl: Refactor spl_load_info->read to use units of bytes

2023-11-06 Thread Xavier Drudis Ferran
Thanks for your work. I'm still reading... but... El Sun, Nov 05, 2023 at 09:25:46PM -0500, Sean Anderson deia: > diff --git a/include/spl.h b/include/spl.h > index 951e136b9ea..ecfc50e0095 100644 > --- a/include/spl.h > +++ b/include/spl.h > @@ -297,10 +297,10 @@ struct spl_load_info { >

Re: [PATCH v3 6/7] clk/qcom: add mnd_width to clk_rcg_set_rate_mnd()

2023-11-06 Thread Caleb Connolly
On 06/11/2023 07:06, Sumit Garg wrote: > On Fri, 3 Nov 2023 at 21:09, Caleb Connolly wrote: >> >> This property is needed on some platforms to ensure that only the >> relevant bits are set in the M/N/D registers. > > This commit broke qcs404 platform which is fixed by following add-on change:

Re: [RESEND PATCH v2] xilinx: versal: Setup 30MHz as default spi frequency

2023-11-06 Thread Michal Simek
On 10/31/23 11:50, Michal Simek wrote: Align default SPI configuration with ZynqMP/Versal NET. There is no reason to run on lower frequencies. Signed-off-by: Michal Simek --- Changes in v2: - sync Kconfig location v2 didn't land in lore.kernel.org but it is present here https://lists.denx.

Re: [PATCH] arm64: zynqmp: Fix Kconfig entry indentation

2023-11-06 Thread Michal Simek
On 10/26/23 08:34, Michal Simek wrote: Use tabs instead of space for entry indentation which is standard coding style. Signed-off-by: Michal Simek --- arch/arm/mach-zynqmp/Kconfig | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/arch/arm/mach

Re: [PATCH] arm64: versal-net: enable CONFIG_MMC_SDHCI_ADMA

2023-11-06 Thread Michal Simek
On 10/27/23 05:04, Venkatesh Yadav Abbarapu wrote: The Standard Host Controller Interface (SDHCI) specification version 3.00 adds support for Advanced DMA (ADMA) for both 64 and 32 bit widths of DMA. This significantly improves read and write throughput. Signed-off-by: Venkatesh Yadav Abbarap

Re: [PATCH] arm64: zynqmp: Disable Tri-state for MIO38 Pin

2023-11-06 Thread Michal Simek
On 10/20/23 07:06, Tejas Bhumkar wrote: gpio38 is used in SOM's kv260 to reset the Ethernet PHY. At present, HW reset is not working properly as Tri-state is enabled for MIO38, causing inappropriate PHY register reads. Disabled Tri-state for MIO38 to make HW reset work. Tri-state disable : Z

Re: [PATCH v2] arm: xilinx: Add missing dual parallel flash description

2023-11-06 Thread Michal Simek
On 10/23/23 09:21, Michal Simek wrote: Describe flash memories based on the latest DT binding. Signed-off-by: Michal Simek --- Changes in v2: - Add missing description for zc706 arch/arm/dts/zynq-zc706.dts | 5 +++-- arch/arm/dts/zynq-zc770-xm013.dts | 5 +++-- arch/a

Re: [PATCH 0/4] xilinx: Add DTSes for mini qspi/ospi configuration

2023-11-06 Thread Michal Simek
On 10/26/23 16:04, Michal Simek wrote: Hi, we are using U-Boot mini configurations for years. We already upstream configurations for mtest, single qspi/ospi or emmcs for all Xilinx SOCs. But we didn't push configuration for different qspi/ospi configurations which were missing upstream dt des

RE: uboot reports adding disk failed(EFI_NOT_FOUND) and first disk is gone in next scsi scan

2023-11-06 Thread Hongxing Zhu
Hi Heinrich: Thanks a lot for your kindly help. This should be final solution that I'm looking for. Best Regards Richard Zhu > -Original Message- > From: Heinrich Schuchardt > Sent: 2023年11月5日 4:57 > To: Simon Glass ; Hongxing Zhu > Cc: u-boot@lists.denx.de > Subject: Re: uboot reports

Re: [PATCH v1 0/5] Convert recently merged T30 boards to use DM PMIC

2023-11-06 Thread Peter Robinson
On Mon, Nov 6, 2023 at 11:58 AM Svyatoslav Ryhel wrote: > > пн, 6 лист. 2023 р. о 13:46 Peter Robinson пише: > > > > Hi Svyatoslav, > > > > > Since the proposed PMIC patches have been accepted, I see the need > > > to convert boards which I maintain to use DM drivers instead of board > > > hacks

Re: [PATCH v1 0/5] Convert recently merged T30 boards to use DM PMIC

2023-11-06 Thread Svyatoslav Ryhel
пн, 6 лист. 2023 р. о 15:13 Peter Robinson пише: > > On Mon, Nov 6, 2023 at 11:58 AM Svyatoslav Ryhel wrote: > > > > пн, 6 лист. 2023 р. о 13:46 Peter Robinson пише: > > > > > > Hi Svyatoslav, > > > > > > > Since the proposed PMIC patches have been accepted, I see the need > > > > to convert boa

Re: [PATCH v6 08/25] spl: Refactor spl_load_info->read to use units of bytes

2023-11-06 Thread Sean Anderson
On 11/6/23 07:35, Xavier Drudis Ferran wrote: Thanks for your work. I'm still reading... but... El Sun, Nov 05, 2023 at 09:25:46PM -0500, Sean Anderson deia: diff --git a/include/spl.h b/include/spl.h index 951e136b9ea..ecfc50e0095 100644 --- a/include/spl.h +++ b/include/spl.h @@ -297,10 +297

Re: [PATCH v1 0/5] Convert recently merged T30 boards to use DM PMIC

2023-11-06 Thread Peter Robinson
On Mon, Nov 6, 2023 at 1:28 PM Svyatoslav Ryhel wrote: > > пн, 6 лист. 2023 р. о 15:13 Peter Robinson пише: > > > > On Mon, Nov 6, 2023 at 11:58 AM Svyatoslav Ryhel wrote: > > > > > > пн, 6 лист. 2023 р. о 13:46 Peter Robinson пише: > > > > > > > > Hi Svyatoslav, > > > > > > > > > Since the pro

Re: [PATCH 03/15] board: ti: j721e: evm: Drop board check for ESM

2023-11-06 Thread Kumar, Udit
On 11/6/2023 5:49 PM, Nishanth Menon wrote: On 16:03-20231104, Kumar, Udit wrote: On 11/3/2023 6:07 AM, Nishanth Menon wrote: When config is enabled, the esm dt probe makes sense. Simplify by dropping board specific checks. Signed-off-by: Nishanth Menon --- board/ti/j721e/evm.c | 10 ++--

Re: [PATCH 01/15] arm: mach-k3: j721e: Improve support for UDA FS

2023-11-06 Thread Kumar, Udit
On 11/6/2023 5:48 PM, Nishanth Menon wrote: On 15:54-20231104, Kumar, Udit wrote: On 11/3/2023 6:07 AM, Nishanth Menon wrote: Commit 5019170970ad ("arch: arm: mach-k3: j721e: add support for UDA FS") introduced basic UDA FS support, however, we can Take approach similar to commit 0f1c1e8b368b

Re: [PATCH 4/5] doc: board: Move am62x_beagleplay to it's own vendor

2023-11-06 Thread Bryan Brattlof
Hi Nishanth! On November 4, 2023 thus sayeth Nishanth Menon: > Move BeaglePlay documentation to beagle as a board vendor and update > references accordingly. > > Signed-off-by: Nishanth Menon Reviewed-by: Bryan Brattlof > --- > doc/board/{ti => beagle}/am62x_beagleplay.rst | 22 +---

Re: [PATCH v2] arm64: zynqmp: Introduce kria SOM defconfig

2023-11-06 Thread Michal Simek
On 11/1/23 06:34, Venkatesh Yadav Abbarapu wrote: Enable the initial kria SOM specific configurations like pinctrl, pinconf etc. Also add the environment file. Signed-off-by: Venkatesh Yadav Abbarapu --- Changes in v2: - Updated the CONFIG_ENV_OFFSET_REDUND - Updated the CONFIG_SF_DEFAULT_SP

Re: [PATCH 3/5] board: Move beagleplay under beagle vendor folder

2023-11-06 Thread Bryan Brattlof
Hi Nishanth! On November 4, 2023 thus sayeth Nishanth Menon: > Move beagleplay support away from ti/am62x to it's own beagle vendor > folder. > > This forms the starting point for new beagle platforms added under it's > own board vendor folder. > > As part of this create all the associated file

[GIT PULL] Please pull u-boot-amlogic-20231106

2023-11-06 Thread Neil Armstrong
commit a4c83bda17196bf5d1ce640844595aaeced6465e: Merge branch '2023-11-03-assorted-tegra-improvements' (2023-11-04 09:55:39 -0400) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20231106 for you to fetch cha

Re: [PATCH 1/5] arm: dts: k3-am625-beagleplay-u-boot/r5: Just depend on k3-binman.dtsi

2023-11-06 Thread Bryan Brattlof
Hi Nishanth! On November 4, 2023 thus sayeth Nishanth Menon: > With the upcoming folder separation, there is no further need to depend > on am625-binman.dtsi. Duplicate the existing definitions to u-boot.dtsi > and r5.dts as appropriate. > > Signed-off-by: Nishanth Menon Reviewed-by: Bryan Bra

Re: [PATCH 1/5] arm: dts: k3-am625-beagleplay-u-boot/r5: Just depend on k3-binman.dtsi

2023-11-06 Thread Nishanth Menon
On 08:34-20231106, Bryan Brattlof wrote: > Hi Nishanth! > > On November 4, 2023 thus sayeth Nishanth Menon: > > With the upcoming folder separation, there is no further need to depend > > on am625-binman.dtsi. Duplicate the existing definitions to u-boot.dtsi > >

Re: Need advise with u-boot on SH-7785LCR

2023-11-06 Thread John Paul Adrian Glaubitz
Hi Simon, On Sun, 2023-11-05 at 16:29 +, Simon Glass wrote: > No, sorry I don't have any idea about that. You could check the > MAINTAINERS files in U-Boot and Linux for other people, perhaps, or > check commit / blame logs? It seems that the flash memory is mapped to block devices by the ker

Re: [PATCH 10/15] configs: j721e_evm_a72_defconfig: Switch to bootstd

2023-11-06 Thread Tom Rini
On Mon, Nov 06, 2023 at 06:21:16AM -0600, Nishanth Menon wrote: > On 10:58-20231106, Manorit Chawdhry wrote: > > Hi Nishanth, > > > > On 19:38-20231102, Nishanth Menon wrote: > > > Switch to using bootstd. Note with this change, we will stop using > > > dis

[PATCH v2 0/5] arm: mach-snapdragon: Qualcomm pinctrl driver cleanup

2023-11-06 Thread Caleb Connolly
This series moves the Qualcomm pinctrl drivers from mach-snapdragon and mach-ipq40xx to drivers/pinctrl/qcom. It then makes the necessary changes to enable compatibility with Linux DTs. The pinctrl hardware on most Qualcomm platforms is made up of "tiles", these are just banks of pins at different

[PATCH v2 2/5] pinctrl: qcom: move ipq4019 driver from mach-ipq40xx

2023-11-06 Thread Caleb Connolly
Drop the duplicated pinctrl-snapdragon driver from mach-ipq40xx and add it to drivers/pinctrl/qcom. Acked-by: Sumit Garg Signed-off-by: Caleb Connolly --- arch/arm/Kconfig | 1 + arch/arm/mach-ipq40xx/Makefile | 8 - arch/arm/mach-ipq40x

[PATCH v2 1/5] pinctrl: qcom: move out of mach-snapdragon

2023-11-06 Thread Caleb Connolly
Move the Qualcomm pinctrl drivers out of mach-snapdragon and over to the rest of the pinctrl drivers, adjust the drivers so that support for each platform can be enabled/disabled individually and introduce platform specific configuration options. Reviewed-by: Sumit Garg Signed-off-by: Caleb Conno

[PATCH v2 3/5] pinctrl: qcom: make compatible with linux DTs

2023-11-06 Thread Caleb Connolly
The pinctrl and GPIO drivers are currently heavily incompatible with upstream. Most Qualcomm pinctrl blocks feature "tiles" of pins, each at it's own address. Introduce support for these by allowing the soc driver to specify per-pin register offsets similarly to the Linux driver. Adjust the GPIO d

[PATCH v2 5/5] fixup! pinctrl: qcom: make compatible with linux DTs

2023-11-06 Thread Caleb Connolly
--- drivers/gpio/msm_gpio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpio/msm_gpio.c b/drivers/gpio/msm_gpio.c index 3e4a0194b10a..80cd28bb231f 100644 --- a/drivers/gpio/msm_gpio.c +++ b/drivers/gpio/msm_gpio.c @@ -11,7 +11,7 @@ #include #include #include -

[PATCH v2 4/5] msm_gpio: use unsigned int

2023-11-06 Thread Caleb Connolly
Replaces the uses of "unsigned" with "unsigned int". Reviewed-by: Sumit Garg Signed-off-by: Caleb Connolly --- drivers/gpio/msm_gpio.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpio/msm_gpio.c b/drivers/gpio/msm_gpio.c index 7d6a25fd..3e4a0194b10a 1

Re: [PATCH 1/2] board: ti: am62x: am62x.env: Fix boot_targets

2023-11-06 Thread Tom Rini
On Mon, Nov 06, 2023 at 11:23:51AM +0530, Manorit Chawdhry wrote: > Hi Simon, > > On 11:22-20231005, Simon Glass wrote: > > Hi Nishanth, > > > > On Thu, 5 Oct 2023 at 11:16, Nishanth Menon wrote: > > > > > > On 12:10-20231005, Nishanth Menon wrote: > > > > On 12:36-20231005, Tom Rini wrote: > >

Re: [PATCH v3 09/12] x86: Enable SSE in 64-bit mode

2023-11-06 Thread Tom Rini
On Mon, Nov 06, 2023 at 06:26:15PM +0800, Bin Meng wrote: > + Tom, > > Hi Simon, > > On Mon, Nov 6, 2023 at 12:29 AM Simon Glass wrote: > > > > Hi Bin, > > > > On Sun, 5 Nov 2023 at 14:05, Bin Meng wrote: > > > > > > Hi Simon, > > > > > > On Mon, Oct 2, 2023 at 9:15 AM Simon Glass wrote: > > >

[PATCH] efi_loader: Increase default variable store size to 128K

2023-11-06 Thread Ilias Apalodimas
In commit 9fd3f881c6ed ("efi_loader: Increase default variable store size to 64KiB") Alper has a detailed explanation of why the size needs to be bumped to at least 64K. However enabling Secure boot, writing db, KEK, PK etc keys will further increase the size so bump it to 128K. It's worth notin

[PATCH] arm64: zynqmp: Do not expose usbhub nodes

2023-11-06 Thread Michal Simek
Upstream dwc3 U-Boot driver is not able to handle child nodes properly that's why comment them in DT for now. This patch should be reverted when dwc3 driver handles it properly. DT node itself is aligned with dt schema. Signed-off-by: Michal Simek --- arch/arm/dts/zynqmp-sck-kd-g-revA.dtso | 3

Re: [PATCH 01/20] m68k: Remove CONFIG_FSLDMAFEC

2023-11-06 Thread Tom Rini
On Sat, Nov 04, 2023 at 09:58:07PM +0100, Angelo Dureghello wrote: > Hi Tom, > > Reviewed by: Angelo Dureghello > > > Thanks for the cleanup, m68k boards build fine. > > fsl_mcdmafec driver is still referenced in arch/m68k/dts/mcf54xx.dtsi, > (from compatible field) but no board is including i

Re: [PATCH] net: dhcp6: Fix OPT_BOOTFILE_PARAM parsing

2023-11-06 Thread Tom Rini
On Tue, Jul 25, 2023 at 04:13:29PM -0700, seanedm...@linux.microsoft.com wrote: > From: Sean Edmond > > RFC 5970 states that OPT_BOOTFILE_PARAM (option 60) can be > multiple parameters that start with a 16-bit length field followed > by the parameter. For example: > [ param-len 1 (16-bits) ] [ p

Re: [PATCH] net: Get pxe config file from dhcp option 209

2023-11-06 Thread Tom Rini
On Tue, Jul 25, 2023 at 04:20:30PM -0700, seanedm...@linux.microsoft.com wrote: > From: Sean Edmond > > Allow dhcp server pass pxe config file full path by using option 209 > > Signed-off-by: Sean Edmond Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH v2] bmips: Add Inteno XG6846 board

2023-11-06 Thread Tom Rini
On Tue, Sep 26, 2023 at 11:23:39AM +0200, Linus Walleij wrote: > This adds support for the Inteno XG6846 board based on the > Broadcom MIPS 6328 SoC. > > The default boot will read a uImage from flash and boot it. > > Reviewed-by: Daniel Schwierzeck > Signed-off-by: Linus Walleij Applied to u

Re: [PATCH v2] net: eth-uclass: Improve error message when MAC is not found

2023-11-06 Thread Tom Rini
On Fri, Oct 20, 2023 at 09:41:51AM -0300, Fabio Estevam wrote: > From: Fabio Estevam > > While bringinp up a new board without the MAC fuses programmed, > the following error message was observed: > > Error: ethernet@30bf address not set. > > Improve the error message to make it clearer th

Re: [PATCH 1/1] .mailmap: map Pali Rohár

2023-11-06 Thread Tom Rini
On Mon, Nov 06, 2023 at 01:09:08AM -0800, Heinrich Schuchardt wrote: > Pali expressed that he does not want to receive mails relating to his past > contributions. > > Signed-off-by: Heinrich Schuchardt Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH] net: dw_eth_qos: Add 64-bit addressing

2023-11-06 Thread Tom Rini
On Fri, Dec 09, 2022 at 02:33:14PM +0800, Ley Foon Tan wrote: > Set upper 32bit address for DMA descriptors and buffer address to support > 64-bit addressing. > > Signed-off-by: Ley Foon Tan Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH] net: ftgmac100: Add reset control

2023-11-06 Thread Tom Rini
On Thu, Jul 27, 2023 at 09:58:14AM +0800, Dylan Hung wrote: > Add optional reset control, especially for the Aspeed SOC. For the > hardware without a reset line, the reset assertion/deassertion will be > skipped. > > Signed-off-by: Dylan Hung > Reviewed-by: Ryan Chen > Reviewed-by: Ramon Fried

Re: [PATCH 1/2] net: mv88e6xxx: use generic bitfield macros for MDIO

2023-11-06 Thread Tom Rini
On Tue, Aug 08, 2023 at 06:05:15PM +0200, Robert Marko wrote: > Driver is currently defining the mask and bit shifting itself, > there is no need for that as U-Boot has generic bitfield macros that help > us achieve the same result but in a cleaner way. > > Signed-off-by: Robert Marko Applied t

Re: [PATCH 2/2] net: mv88e6xxx: add Clause 45 support

2023-11-06 Thread Tom Rini
On Tue, Aug 08, 2023 at 06:05:16PM +0200, Robert Marko wrote: > Marvell LinkStreet switches support Clause 45 MDIO on the internal bus. > > C45 read or writes require the register address to be written first to > the SMI PHY Data register, and then a special C45 Write Address Register > OP is use

Re: [PATCH RESEND v2 1/2] net: add hifemac Ethernet driver for HiSilicon platform

2023-11-06 Thread Tom Rini
On Wed, Aug 23, 2023 at 01:03:42AM +0800, Yang Xiwen via B4 Relay wrote: > From: Yang Xiwen > > It adds the driver for HIFEMAC Ethernet controller found on HiSilicon > SoCs like Hi3798MV200. It's based on the mainstream linux driver, but > quite a lot of code gets rewritten and cleaned up to ad

Re: [PATCH RESEND v2 2/2] net: add hifemac_mdio MDIO bus driver for HiSilicon platform

2023-11-06 Thread Tom Rini
On Wed, Aug 23, 2023 at 01:03:43AM +0800, Yang Xiwen via B4 Relay wrote: > From: Yang Xiwen > > It adds the driver for the internal MDIO bus of HIFEMAC Ethernet > controller. It's based on the mainstream linux driver. > > Signed-off-by: Yang Xiwen Applied to u-boot/master, thanks! -- Tom

Re: [PATCH v2] net: eth-uclass: Setup ROM source only when ROM reading passes

2023-11-06 Thread Tom Rini
On Fri, Sep 15, 2023 at 04:10:06PM +0200, Michal Simek wrote: > There is no reason to setup ROM source if read_rom_hwaddr hook doesn't > exist or reading mac address fails. It is ending up with confusion about > mac address source. > > It is nicely visible if you put mac address to DT as > local-

[PATCH 1/2] imx7s-warp-u-boot: Fix aliases and chosen nodes indentation

2023-11-06 Thread Fabio Estevam
From: Fabio Estevam The aliases and chosen nodes are currently indented using spaces. Fix them to use the standard tab indentation. Signed-off-by: Fabio Estevam --- arch/arm/dts/imx7s-warp-u-boot.dtsi | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/arch/arm/

[PATCH 2/2] warp7: Convert to watchdog driver model

2023-11-06 Thread Fabio Estevam
From: Fabio Estevam Commit 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()") caused the 'reset' command in U-Boot to not cause a board reset. Fix it by switching to the watchdog driver model via sysreset, which is the preferred method for implementing the watchdog reset. Signed-off-by

Re: [PATCH] net: phy: TI DP83869 fix invalid clock delay configuration

2023-11-06 Thread Tom Rini
On Fri, Oct 06, 2023 at 02:24:39PM +0200, Frank de Brabander wrote: > Setting the clock delay from the device tree settings > rx-internal-delay-ps and tx-internal-delay-ps was broken: > > - The expected value in the device tree is suppose to be a >delay in picoseconds, but the driver only al

Re: [PATCH] net: Add option for tracing packets

2023-11-06 Thread Tom Rini
On Sat, Oct 07, 2023 at 09:53:12PM -0400, Sean Anderson wrote: > Add an option to trace all packets send/received. This can be helpful when > debugging protocol issues, as the packets can then be imported into > wireshark [1] and analyzed further. > > [1] https://www.wireshark.org/docs/wsug_html_

Re: [PATCH] net: e1000: Drop e1000_eth_ids[]

2023-11-06 Thread Tom Rini
On Wed, Oct 11, 2023 at 06:58:25PM +0800, Bin Meng wrote: > e1000_eth_ids holds compatible strings for e1000 devices, but it > is meaningless as e1000 is a PCI device and there is no such > compatible string assigned to e1000 by the DT bindings community. > > Drop it. > > Signed-off-by: Bin Meng

Re: [PATCH] net: designware: add DMA offset awareness

2023-11-06 Thread Tom Rini
On Wed, Oct 25, 2023 at 11:08:44AM +0300, Baruch Siach wrote: > Older DesignWare Ethernet MAC versions that this driver supports can > only work with 32-bit DMA source/destination addresses. Some platforms > have no physical RAM at the lowest 4GB address space. For these > platforms the driver mus

Re: [GIT PULL] Please pull u-boot-amlogic-20231106

2023-11-06 Thread Tom Rini
-0400) > > are available in the Git repository at: > > https://source.denx.de/u-boot/custodians/u-boot-amlogic.git > tags/u-boot-amlogic-20231106 > > for you to fetch changes up to c550e81171940932664a85bda315a6a073aae23c: > > ARM: configs: libretech-ac: enable USB_DFU like

Re: [PATCH V2 06/12] arm: mach-k3: Kconfig: Introduce a symbol to indicate J7200

2023-11-06 Thread Andrew Davis
On 11/4/23 2:21 AM, Nishanth Menon wrote: J7200 shares quite a few characteristics with J721E. However a few sets are different. Introduce a Kconfig to differentiate the two to allow for new boards to be introduced in a seamless manner. Signed-off-by: Nishanth Menon --- arch/arm/mach-k3/Kconf

  1   2   >