Re: [EXT] USB3 XHCI crashing with USB 3 hub on Octeon

2021-02-22 Thread Aaron Williams
I have a follow-up. USB is working on our OcteonTX boards running 2020.10. It may be something specific to the Octeon port. Note that I did see a problem where the scratchpad memory is using direct pointers instead of physical addresses (which will not work on MIPS). As far as I know, however, t

[PATCH] mips: mt7628: fix ddr_type for MT7688KN

2021-02-22 Thread Weijie Gao
The MT7688KN is a multi-chip package with 8MiB DDR1 KGD. So the DDR type from bootstrap register must be ignored, and always be assumed as DDR1. This patch fixes an issue that mt7628_ddr_pad_ldo_config() may be passed with a wrong ddr_type in MT7688KN. Signed-off-by: Weijie Gao --- arch/mips/ma

RE: [PATCH] Makefile: Add target to generate hex output for combined spl and dtb

2021-02-22 Thread Lim, Elly Siew Chin
Hi Tom, > -Original Message- > From: Tom Rini > Sent: Saturday, February 20, 2021 5:02 AM > To: Lim, Elly Siew Chin > Cc: u-boot@lists.denx.de; Marek Vasut ; Tan, Ley Foon > ; See, Chin Liang ; Simon > Goldschmidt ; Chee, Tien Fong > ; Westergreen, Dalon > ; Simon Glass ; Gan, Yau > Wai

RE: [v2] arm: include: secure: Don't include asm\global_data.h in .S file

2021-02-22 Thread Lim, Elly Siew Chin
Hi Simon, > -Original Message- > From: Simon Glass > Sent: Monday, February 22, 2021 5:21 PM > To: Lim, Elly Siew Chin > Cc: U-Boot Mailing List ; Marek Vasut > ; Tan, Ley Foon ; See, Chin Liang > ; Simon Goldschmidt > ; Chee, Tien Fong > ; Westergreen, Dalon > ; Gan, Yau Wai > Subject:

[PATCH] common: Add "ifndef __ASSEMBLY__" in asm/global_data.h

2021-02-22 Thread Siew Chin Lim
Commit "common: Drop asm/global_data.h from common header" added asm/global_data.h into secure.h. However, secure.h will be included by psci.S. Adding asm/global_data.h has caused compilation failure in pcsi.S. Add "ifndef __ASSEMBLY__" in asm/global_data.h. Signed-off-by: Siew Chin Lim --- arch

Re: [PATCH] fdt_support.c: Allow late kernel cmdline modification

2021-02-22 Thread Niko Mauno
On 2/22/21 10:21 PM, Tom Rini wrote: On Mon, Feb 22, 2021 at 07:18:51PM +, Niko Mauno wrote: By declaring board-specific board_fdt_chosen_bootargs() the kernel command line arguments can be adjusted before injecting to flat dt chosen node. Signed-off-by: Niko Mauno --- common/fdt_suppor

Re: [PATCH] uboot-test-hooks: Switch to our GitLab instance

2021-02-22 Thread Asherah Connor
On 21/02/22 10:02:p, Tom Rini wrote: > As Stephen is no longer actively maintaining the uboot-test-hooks > repository, switch to using the instance on our GitLab. We may also want to update the Contributing.md in the u-boot-test-hooks repository: https://gitlab.denx.de/u-boot/u-boot-test-hooks/-/b

Re: [PATCH 1/1] arm: qemu: support qfw

2021-02-22 Thread Asherah Connor
Hi Simon, I should've replied to this earlier. On 21/02/20 04:02:p, Simon Glass wrote: > The cros_ec driver has different transports for the actual comms, so > it might be useful as an example. This was extremely helpful to reference, thank you. > What is a ramfb? ramfb is a qemu-specific plai

[PATCH] JFFS2: fix jffs2 summary datacrc status uninitialized

2021-02-22 Thread Wagner Popov dos Santos
The function jffs2_1pass_read_inode() was discarding the summary inodes and dirent because the value in datacrc flag wasn't initialized in function jffs2_sum_process_sum_data(). This fix initializes the status of all summary records to indicate that the CRC needs to be verified when they are loade

[PATCH] JFFS2: fix the reading address over nand's limit

2021-02-22 Thread Wagner Popov dos Santos
Fixes address violation in functions read_nand_cached() and read_onenand_cached(). This happens because these functions try to read a fixed amount of data even when the offset+length is above the nand's limit. Signed-off-by: Wagner Popov dos Santos --- fs/jffs2/jffs2_1pass.c | 37 +++

RE: [PATCH] ARM: dts: imx8mq-evk: Remove u-boot,off-on-delay-us property

2021-02-22 Thread Peng Fan
> Subject: Re: [PATCH] ARM: dts: imx8mq-evk: Remove u-boot,off-on-delay-us > property > > Hi Peng, > > On Mon, Feb 22, 2021 at 10:53 PM Peng Fan wrote: > > > It is board dependent, some board may has a big capacitance, the > > off-on-delay is to give enough time for the capacitance to leak its

RE: [PATCH] ARM: dts: imx8mq-evk: Remove u-boot,off-on-delay-us property

2021-02-22 Thread Peng Fan
Hi Fabio, > Subject: [PATCH] ARM: dts: imx8mq-evk: Remove u-boot,off-on-delay-us > property > > Commit 247bbeb74c18 ("ARM: dts: imx8m: increase off-on delay on the SD > Vcc > regulator") caused the imx8mq-evk board to not be able to store the > environment variables in the SD card. > > Remove th

RE: [PATCH] ARM: dts: imx8mq-evk: Remove u-boot,off-on-delay-us property

2021-02-22 Thread Peng Fan (OSS)
> -Original Message- > From: Fabio Estevam [mailto:feste...@gmail.com] > Sent: 2021年2月23日 10:11 > To: Peng Fan > Cc: sba...@denx.de; u-boot@lists.denx.de; tr...@konsulko.com; > loru...@gmail.com; andrey.zhizhi...@leica-geosystems.com > Subject: Re: [PATCH] ARM: dts: imx8mq-evk: Remove u-

Re: [PATCH] ARM: dts: imx8mq-evk: Remove u-boot, off-on-delay-us property

2021-02-22 Thread Fabio Estevam
On Mon, Feb 22, 2021 at 11:04 PM Peng Fan wrote: > I think remove it is not correct, the exact time should be measured using > oscilloscope, removing it might make sd3.0 not work. But anyway 2 seems > too large a value. Do you plan to submit a fix for this then? If you don't have the bandwid

Re: [PATCH] ARM: dts: imx8mq-evk: Remove u-boot, off-on-delay-us property

2021-02-22 Thread Fabio Estevam
Hi Peng, On Mon, Feb 22, 2021 at 10:53 PM Peng Fan wrote: > It is board dependent, some board may has a big capacitance, > the off-on-delay is to give enough time for the capacitance > to leak its voltage. Ok, but not clear from your comment if you agree with my change or not. Please clarify.

RE: [PATCH v1] arm: imx8: added usbphy_regs struct

2021-02-22 Thread Peng Fan (OSS)
> Subject: Re: [PATCH v1] arm: imx8: added usbphy_regs struct > > On 19/02/21, Peng Fan (OSS) wrote: > > > Subject: [PATCH v1] arm: imx8: added usbphy_regs struct > > > > Only a structure? > > What do you mean exaclty? > > I have some more patches here to get the ehci-mx6 usb working on imx8. >

Re: [PATCH v2] clk: fix clk_get_rate() documentation

2021-02-22 Thread Giulio Benetti
On 2/22/21 8:13 PM, Heinrich Schuchardt wrote: On 2/14/21 4:49 AM, Jesse T wrote: Awesome, thanks! I must have forgotten how twos complement works for a sec... On Sat, Feb 13, 2021 at 10:17 PM Giulio Benetti < giulio.bene...@benettiengineering.com> wrote: Hi Jesse, Il giorno 14 feb 2021, all

Re: [PATCH 0/2] Fix MIPS/Malta target and its IDE work

2021-02-22 Thread Daniel Schwierzeck
Am Montag, den 22.02.2021, 20:56 +0100 schrieb Reinoud Zandijk: > Hi Daniel, > > On Mon, Feb 22, 2021 at 07:23:26PM +0100, Daniel Schwierzeck wrote: > > Am Montag, den 22.02.2021, 18:05 +0100 schrieb Reinoud Zandijk: > > > Patch 0001 re-enables FDT inclusion into the u-boot binary to > > > make >

Re: [PATCH v2 1/2] Re-embed the FDTs for the Malta targets.

2021-02-22 Thread Simon Glass
Hi Reinoud, On Mon, 22 Feb 2021 at 16:20, Reinoud Zandijk wrote: > > Re-enable FDT inclusion into the Malta u-boot binary to make them boot > again. This could indicate an unwanted toolchain version dependency. > > Signed-off-by: Reinoud Zandijk > --- > configs/malta64_defconfig | 1 + > conf

Re: [EXTERNAL] Re: U-Boot ECDSA Implementation Question

2021-02-22 Thread Alex G.
On 2/10/21 1:45 PM, Tim Romanski wrote: Hi Alex, Thanks for the context! What are your plans for upstreaming your ECDSA signing implementation? I expect that the ECDSA signing series will get merged soon. I've currently dedicated the next four weeks to getting signing+verification implem

Re: [PATCH v2] doc: board: freescale: imx8mp_evk: update to newer versions and change ATF_LOAD_ADDR

2021-02-22 Thread Fabio Estevam
Hi Peter, On Sun, Feb 14, 2021 at 4:20 PM Peter Bergin wrote: > > Update imx-atf and firmware-imx to latest released versions. > > Update address of ATF_LOAD_ADDR that has changed to 0x97 in imx-atf > commit 48733cb4e773a7584ced601de9d717efa3d73815. > > Add 'O=' to make and build in separate

Re: [PATCH v2 1/2] Re-embed the FDTs for the Malta targets.

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 10:20:12PM +0100, Reinoud Zandijk wrote: > Re-enable FDT inclusion into the Malta u-boot binary to make them boot > again. This could indicate an unwanted toolchain version dependency. > > Signed-off-by: Reinoud Zandijk It would probably help to see how you're invoking q

Re: [PATCH 2/3] am33xx: board: remove GPIO platforma data

2021-02-22 Thread Dario Binacchi
Hi Lokesh, > Il 22/02/2021 07:08 Lokesh Vutla ha scritto: > > > Hi Dario, > > On 13/02/21 4:30 pm, Dario Binacchi wrote: > > Since the board has been converted to driver model and DT is supported, > > GPIO platform are no more required and can be removed. > > > > Signed-off-by: Dario Binacch

[PATCH V2 2/2] power: pmic: remove pmic_max8997/8 files

2021-02-22 Thread Jaehoon Chung
Remove pmic_max8997/8 files about no-DM. There are already existed max8997/8 as driver-model. Signed-off-by: Jaehoon Chung Reviewed-by: Simon Glass --- drivers/power/pmic/Makefile | 2 - drivers/power/pmic/pmic_max8997.c | 107 -- drivers/power/pmic/pmic_max8

[PATCH V2 1/2] board: samsung: covert to driver model about power_key_pressed

2021-02-22 Thread Jaehoon Chung
Convert to driver model about power_key_pressed. Signed-off-by: Jaehoon Chung Reviewed-by: Simon Glass --- board/samsung/common/misc.c | 27 ++- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/board/samsung/common/misc.c b/board/samsung/common/misc.c inde

[PATCH V2 0/2] power: remove non-DM max8997/8 files

2021-02-22 Thread Jaehoon Chung
Remove non-DM files about max8997 and mx8998. There are already max8997/8 pmic driver to support driver-model. But it didn't remove them because there was one place to use them. Now it's time to rmoeve non-DM max8997/8 files after converting to DM in samsung/common/misc.c Changelog on V2: - Rebas

[PATCH 1/1] board_f.c: print DRAM clock speed

2021-02-22 Thread Bobby The Builder
Output the DRAM clock speed Signed-off-by: Bobby The Builder ---  common/board_f.c | 3 ++-  1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/board_f.c b/common/board_f.c index 9f441c44f1..e52d0439cc 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -226,11 +226,12 @@ st

[PATCH 1/1] pinephone_defconfig: lower DRAM clock to 528

2021-02-22 Thread Bob
Lower DRAM clock speed to the official speed for the pinephone design: 528 Signed-off-by: Bobby The Builder ---  configs/pinephone_defconfig | 2 +-  1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/pinephone_defconfig b/configs/pinephone_defconfig index d8ee930a69..702e2bdc14

Re: [PATCH v2 2/2] Fix IDE commands issued, fix endian issues, fix non MMIO

2021-02-22 Thread Heinrich Schuchardt
On 2/22/21 10:20 PM, Reinoud Zandijk wrote: Fixes IDE issues found on the Malta board under Qemu: 1) DMA implied commands were sent to the controller in stead of the PIO variants. The rest of the code is DMA free and written for PIO operation. 2) direct pointer access was used to read and write

[PATCH v2 2/2] Fix IDE commands issued, fix endian issues, fix non MMIO

2021-02-22 Thread Reinoud Zandijk
Fixes IDE issues found on the Malta board under Qemu: 1) DMA implied commands were sent to the controller in stead of the PIO variants. The rest of the code is DMA free and written for PIO operation. 2) direct pointer access was used to read and write the registers instead of the inb/inw/outb/out

[PATCH v2 0/2] Fix MIPS/Malta target and its IDE work

2021-02-22 Thread Reinoud Zandijk
Patch 0001 re-enables FDT inclusion into the u-boot binary to make them boot again. The code might not have adjusted well enough in the past to handle the separate one. It could also be a toolchain dependency. Patch 0002 fixes IDE issues found on the Malta board: 1) DMA implied commands were sent

[PATCH v2 1/2] Re-embed the FDTs for the Malta targets.

2021-02-22 Thread Reinoud Zandijk
Re-enable FDT inclusion into the Malta u-boot binary to make them boot again. This could indicate an unwanted toolchain version dependency. Signed-off-by: Reinoud Zandijk --- configs/malta64_defconfig | 1 + configs/malta64el_defconfig | 1 + configs/malta_defconfig | 1 + configs/maltael_

Re: [PATCH] fdt_support.c: Allow late kernel cmdline modification

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 07:18:51PM +, Niko Mauno wrote: > By declaring board-specific board_fdt_chosen_bootargs() the kernel > command line arguments can be adjusted before injecting to flat dt > chosen node. > > Signed-off-by: Niko Mauno > --- > common/fdt_support.c | 12 +++- > i

Re: [PULL u-boot] Please pull u-boot-amlogic-20210222

2021-02-22 Thread Tom Rini
le in the Git repository at: > > https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git > tags/u-boot-amlogic-20210222 > > for you to fetch changes up to 2d339efb1ff941705a770e93494427912689ce18: > > button: add udevice forward declaration (2021-02-22 11:07:57 +0100)

Re: [PATCH 0/2] Fix MIPS/Malta target and its IDE work

2021-02-22 Thread Reinoud Zandijk
Hi Daniel, On Mon, Feb 22, 2021 at 07:23:26PM +0100, Daniel Schwierzeck wrote: > Am Montag, den 22.02.2021, 18:05 +0100 schrieb Reinoud Zandijk: > > Patch 0001 re-enables FDT inclusion into the u-boot binary to make > > them boot > > again. The code might not have adjusted well enough in the past

Re: [PATCH] tools/mkeficapsule.c: fix DEBUG build

2021-02-22 Thread Heinrich Schuchardt
On 2/22/21 8:26 PM, Heinrich Schuchardt wrote: On 2/20/21 9:40 PM, Klaus Heinrich Kiwi wrote: Fix a missing comma sign (,) from a printf(), that is only reachable if DEBUG is defined, in which case the build fails with: tools/mkeficapsule.c:266:36: error: expected ‘)’ before ‘bin’    2

[PATCH] fdt_support.c: Allow late kernel cmdline modification

2021-02-22 Thread Niko Mauno
By declaring board-specific board_fdt_chosen_bootargs() the kernel command line arguments can be adjusted before injecting to flat dt chosen node. Signed-off-by: Niko Mauno --- common/fdt_support.c | 12 +++- include/fdt_support.h | 10 ++ 2 files changed, 21 insertions(+), 1 de

[PATCH 2/2] Fix IDE commands issued, fix endian issues, fix non MMIO

2021-02-22 Thread Reinoud Zandijk
--- drivers/block/ide.c | 143 +--- include/ata.h | 3 +- 2 files changed, 42 insertions(+), 104 deletions(-) diff --git a/drivers/block/ide.c b/drivers/block/ide.c index 43a0776099..fa3481e936 100644 --- a/drivers/block/ide.c +++ b/drivers/block/id

[PATCH 1/2] Re-embed the FDTs for the Malta targets.

2021-02-22 Thread Reinoud Zandijk
--- configs/malta64_defconfig | 1 + configs/malta64el_defconfig | 1 + configs/malta_defconfig | 1 + configs/maltael_defconfig | 1 + 4 files changed, 4 insertions(+) diff --git a/configs/malta64_defconfig b/configs/malta64_defconfig index 878dc6ee05..106c890faa 100644 --- a/configs/mal

[PATCH 0/2] Fix MIPS/Malta target and its IDE work

2021-02-22 Thread Reinoud Zandijk
Patch 0001 re-enables FDT inclusion into the u-boot binary to make them boot again. The code might not have adjusted well enough in the past to handle the separate one. Patch 0002 fixes IDE issues found on the Malta board: 1) DMA implied commands were sent to the controller in stead of the PIO va

Re: [PATCH] tools/mkeficapsule.c: fix DEBUG build

2021-02-22 Thread Heinrich Schuchardt
On 2/20/21 9:40 PM, Klaus Heinrich Kiwi wrote: Fix a missing comma sign (,) from a printf(), that is only reachable if DEBUG is defined, in which case the build fails with: tools/mkeficapsule.c:266:36: error: expected ‘)’ before ‘bin’ 266 | printf("\tbin: %s\n\ttype: %pUl\n" bin, gu

Re: [PATCH] video: Drop unprintable characters from video_font_data.h

2021-02-22 Thread Anatolij Gustschin
On Wed, 16 Dec 2020 20:51:53 -0700 Simon Glass s...@chromium.org wrote: > This file contains characters which are not valid in utf-8. This confuses > dtoc which wants to parse it. They don't really serve any purpose anyway, > so drop them. > > To: U-Boot Mailing List > Cc: Tom Rini > > Signed-

Re: [PATCH v2] clk: fix clk_get_rate() documentation

2021-02-22 Thread Heinrich Schuchardt
On 2/14/21 4:49 AM, Jesse T wrote: Awesome, thanks! I must have forgotten how twos complement works for a sec... On Sat, Feb 13, 2021 at 10:17 PM Giulio Benetti < giulio.bene...@benettiengineering.com> wrote: Hi Jesse, Il giorno 14 feb 2021, alle ore 03:58, Jesse T ha scritto:  This looks

Re: [PATCH 1/2] Re-embed the FDTs for the Malta targets.

2021-02-22 Thread Heinrich Schuchardt
On 2/22/21 6:05 PM, Reinoud Zandijk wrote: Please, provide a commit message and a Signed-by line. --- configs/malta64_defconfig | 1 + configs/malta64el_defconfig | 1 + configs/malta_defconfig | 1 + configs/maltael_defconfig | 1 + 4 files changed, 4 insertions(+) diff --git

Re: [PATCH 2/2] Fix IDE commands issued, fix endian issues, fix non MMIO

2021-02-22 Thread Heinrich Schuchardt
On 2/22/21 6:05 PM, Reinoud Zandijk wrote: A patch without commit message will not be accepted. Please, run scripts/checkpatch.pl on your patch: ERROR: Missing Signed-off-by: line(s) --- drivers/block/ide.c | 143 +--- include/ata.h | 3 +-

Re: [PATCH 1/2] drivers: video: Add Support for Himax HX8238D Panel

2021-02-22 Thread Anatolij Gustschin
On Wed, 6 Jan 2021 15:31:35 + gireesh.hirem...@in.bosch.com gireesh.hirem...@in.bosch.com wrote: ... > * Tested on Bosch Guardian Board > > Cc: Sjoerd Simons > Signed-off-by: Moses Christopher > --- > drivers/video/Kconfig | 10 ++ > drivers/video/Makefile | 1 + > drivers/video/hx823

Re: [PATCH] common: splash_source: fix -Wint-to-pointer-cast warning

2021-02-22 Thread Anatolij Gustschin
On Mon, 7 Dec 2020 17:18:51 +0900 Jaehoon Chung jh80.ch...@samsung.com wrote: ... > --- > common/splash_source.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Applied to u-boot-video/master, thanks! -- Anatolij

Re: [PATCH] Replace video_uc_platdata with video_uc_plat

2021-02-22 Thread Anatolij Gustschin
On Sat, 23 Jan 2021 19:43:52 +0100 Dario Binacchi dario...@libero.it wrote: > The video_uc_platdata structure no longer exists. It has been renamed > video_uc_plat. > > Signed-off-by: Dario Binacchi > --- > > drivers/video/Kconfig | 4 ++-- > drivers/video/nexell_display.c | 2 +- > 2

Re: [PATCH 2/2] video: remove unused include/mb862xx.h

2021-02-22 Thread Anatolij Gustschin
On Tue, 29 Dec 2020 12:52:51 +0100 Heinrich Schuchardt xypron.g...@gmx.de wrote: > CONFIG_VIDEO_MB862xx cannot be selected by any configuration. > So we can eliminate include/mb862xx.h. > > Signed-off-by: Heinrich Schuchardt > --- > board/socrates/socrates.c | 12 - > include/mb862xx.h

Re: [PATCH 1/2] video: eliminate unused drivers/video/mb862xx.c

2021-02-22 Thread Anatolij Gustschin
On Tue, 29 Dec 2020 12:52:50 +0100 Heinrich Schuchardt xypron.g...@gmx.de wrote: > The mb862xx driver does not conform to the driver model and is unused. > Eliminate it. > > Signed-off-by: Heinrich Schuchardt > --- > drivers/video/Makefile | 1 - > drivers/video/mb862xx.c | 486 ---

Re: [PATCH 2/2] video: simple_panel: Add boe,nv101wxmn51 display

2021-02-22 Thread Anatolij Gustschin
On Wed, 28 Oct 2020 00:41:55 +0300 Alper Nebi Yasak alpernebiya...@gmail.com wrote: > Add "boe,nv101wxmn51" to the compatible node. This is the panel for > chromebook_bob. > > Signed-off-by: Alper Nebi Yasak > --- > I didn't test this as I don't have a gru-bob, but this panel is listed > among L

Re: [PATCH 1/2] video: simple_panel: Add sharp,lq123p1jx31 display

2021-02-22 Thread Anatolij Gustschin
On Wed, 28 Oct 2020 00:41:54 +0300 Alper Nebi Yasak alpernebiya...@gmail.com wrote: > Add "sharp,lq123p1jx31" to the compatible node. This is the panel for > chromebook_kevin. > > Signed-off-by: Alper Nebi Yasak > --- > > drivers/video/simple_panel.c | 1 + > 1 file changed, 1 insertion(+) Ap

Re: [PATCH 0/2] Fix MIPS/Malta target and its IDE work

2021-02-22 Thread Daniel Schwierzeck
Am Montag, den 22.02.2021, 18:05 +0100 schrieb Reinoud Zandijk: > Patch 0001 re-enables FDT inclusion into the u-boot binary to make > them boot > again. The code might not have adjusted well enough in the past to > handle the > separate one. what exactly is the issue? Do you see it just on real h

RE: [PATCH] ARM: dts: imx8mq-evk: Remove u-boot,off-on-delay-us property

2021-02-22 Thread ZHIZHIKIN Andrey
Hello Fabio, Thanks for taking care of this! I believe this fix still applies to mx8m mini series, as without it - some SD Cards are failed to be recognized. > -Original Message- > From: Fabio Estevam > Sent: Monday, February 22, 2021 6:41 PM > To: sba...@denx.de > Cc: u-boot@lists.den

[PATCH 2/2] board/km: add support for seli8 design based on nxp ls102x

2021-02-22 Thread Aleksandar Gerasimovski
The SELI8 design is a new tdm service unit card for Hitachi-Powergrids XMC and FOX product lines. It is based on NXP LS1021 SoC and it provides following interfaces: - IFC interface for NOR, NAND and external FPGA's - 1 x RGMII ETH for debug purposes - 2 x SGMII ETH for management communication

[PATCH 1/2] fsl_ifc: fix typo in the NOR CSOR register definition

2021-02-22 Thread Aleksandar Gerasimovski
The name of the define must indicate 'Asynchronous', so 'ASYNC' is more appropriate. AYSNC is probably a typo, and checkpatch script is throwing a warning if this is set in the board include files. It is save to change this now as none of the existing designs is using it so far, but we will use it

[PATCH] ARM: dts: imx8mq-evk: Remove u-boot,off-on-delay-us property

2021-02-22 Thread Fabio Estevam
Commit 247bbeb74c18 ("ARM: dts: imx8m: increase off-on delay on the SD Vcc regulator") caused the imx8mq-evk board to not be able to store the environment variables in the SD card. Remove the u-boot,off-on-delay-us property to fix the regression. Signed-off-by: Fabio Estevam --- arch/arm/dts/im

Re: [PATCH V2 4/5] ARM: mach-meson: select MMC_PWRSEQ config

2021-02-22 Thread Neil Armstrong
On 16/02/2021 02:16, Jaehoon Chung wrote: > Before time, PWRSEQ is selected since below commit. > commit 262d34363373 ("board: amlogic: select PWRSEQ for all amlogic platform") > Select MMC_PWRSEQ config because of introducing CONFIG_MMC_PWRSEQ for > only eMMC module. > > Signed-off-by: Jaehoon Ch

Re: [PATCH 16/25] arm: Remove gwventana boards

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 09:24:22AM -0800, Tim Harvey wrote: > On Wed, Feb 17, 2021 at 10:35 AM Tom Rini wrote: > > > > On Wed, Feb 17, 2021 at 10:26:20AM -0800, Tim Harvey wrote: > > > On Wed, Feb 10, 2021 at 9:31 AM Tom Rini wrote: > > > > > > > > On Wed, Feb 10, 2021 at 09:29:44AM -0800, Tim Ha

Re: [PATCH] fs: ext4: Add metadata checksums support

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 05:54:45PM +0100, Fredrik Hallenberg wrote: > Anything I can do to improve the patch? Barring further comments from others, I will put this in to -next when I open that merge window after the next -rc release. Thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH] button: add udevice forward declaration

2021-02-22 Thread Neil Armstrong
On 20/02/2021 12:55, Simon Glass wrote: > On Fri, 19 Feb 2021 at 00:41, Neil Armstrong wrote: >> >> After 401d1c4f5d2d ("common: Drop asm/global_data.h from common header") >> build fails with : >> >> drivers/button/button-uclass.c:13:5: error: conflicting types for >> 'button_get_by_label' >> in

Re: i.MX8MQ EVK not booting with latest mainline U-Boot

2021-02-22 Thread Fabio Estevam
Hi Andrey, On Mon, Feb 22, 2021 at 9:19 AM Fabio Estevam wrote: > The issue now is that saving the environment to the SD card is no > longer working. > > I will investigate the SD card issue now. This was caused by the following commit: commit 247bbeb74c186963d9365db3136d0285618bd9a7 Author: A

Re: [GIT PULL] TI changes for v2021.04 rc3

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 02:39:52PM +0530, Lokesh Vutla wrote: > Hi Tom, > Please find the PR for master branch targeted for v2021.04-rc3 release. > Details about the PR are updated in the tag message. > > Gitlab build report: > https://gitlab.denx.de/u-boot/custodians/u-boot-ti/-/pipelines

Re: Please pull u-boot-video

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 01:17:25PM +0100, Anatolij Gustschin wrote: > Hi Tom, > > The following changes since commit 766927a7595a6f18fef460a06fdac370fd9e02cf: > > Merge branch '2021-02-18-SPL-FIT-OP-TEE-Linux-improvements' (2021-02-18 > 12:02:11 -0500) > > are available in the Git repository

Re: [PATCH 3/3] uec.h: fix COFIG_DM typo

2021-02-22 Thread Tom Rini
On Mon, Oct 05, 2020 at 03:15:18PM +0200, Rasmus Villemoes wrote: > Signed-off-by: Rasmus Villemoes > Reviewed-by: Heiko Schocher Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH 2/3] dm_qe_uec.c: fix indentation in uec_set_mac_if_mode()

2021-02-22 Thread Tom Rini
On Mon, Oct 05, 2020 at 03:15:17PM +0200, Rasmus Villemoes wrote: > Signed-off-by: Rasmus Villemoes > Reviewed-by: Heiko Schocher Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH 1/3] mdio-uclass.c: support fixed-link subnodes

2021-02-22 Thread Tom Rini
On Mon, Oct 05, 2020 at 03:15:16PM +0200, Rasmus Villemoes wrote: > When trying to port our mpc8309-based board to DM_ETH, on top of > Heiko's patches, I found that nothing in mdio-uclass.c seems to > support the use of a fixed-link subnode of the ethernet DT node. That > is, the ethernet node loo

Re: [PATCH v1 2/2] mpc83xx: kmeter1: increase malloc_f space

2021-02-22 Thread Tom Rini
On Fri, Oct 02, 2020 at 09:23:22AM +0200, Heiko Schocher wrote: > make malloc space before relocation bigger, set > > CONFIG_SYS_MALLOC_F_LEN=0x800 > > Signed-off-by: Heiko Schocher Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH v1 1/2] mpc83xx: kmeter1_defconfig add missing BAT4 config

2021-02-22 Thread Tom Rini
On Fri, Oct 02, 2020 at 09:23:21AM +0200, Heiko Schocher wrote: > BAT4 setup missed in defconfig, add it. > > Signed-off-by: Heiko Schocher Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH v2 2/2] mpc8379erdb: Convert to DM_MMC

2021-02-22 Thread Tom Rini
On Sat, Apr 04, 2020 at 01:16:47AM -0400, si...@writeme.com wrote: > From: Sinan Akman > > Signed-off-by: Sinan Akman Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH v2 1/2] mpc8379erdb: Add device tree

2021-02-22 Thread Tom Rini
On Sat, Apr 04, 2020 at 01:16:46AM -0400, si...@writeme.com wrote: > From: Sinan Akman > > Signed-off-by: Sinan Akman Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH 16/25] arm: Remove gwventana boards

2021-02-22 Thread Tim Harvey
On Wed, Feb 17, 2021 at 10:35 AM Tom Rini wrote: > > On Wed, Feb 17, 2021 at 10:26:20AM -0800, Tim Harvey wrote: > > On Wed, Feb 10, 2021 at 9:31 AM Tom Rini wrote: > > > > > > On Wed, Feb 10, 2021 at 09:29:44AM -0800, Tim Harvey wrote: > > > > On Tue, Feb 9, 2021 at 5:03 AM Tom Rini wrote: > >

Re: [PATCH] fs: ext4: Add metadata checksums support

2021-02-22 Thread Fredrik Hallenberg
Anything I can do to improve the patch? On Sat, Feb 13, 2021 at 10:51 AM Fredrik Hallenberg wrote: > > Thanks for trying it out. I have only used it on a custom arm-based > board. I have done quite a lot of writing with and without metadata > flag and have also tried to trigger errors that requir

[PATCH v2] tools: imx8mimage: Restore the original __ALIGN_MASK() macro

2021-02-22 Thread Fabio Estevam
Since commit c738adb8dbbf ("tool: Move ALIGN_MASK to header as common MACRO") the i.MX8MQ EVK board no longer boots. The reason is that imx8mimage.c used a custom __ALIGN_MASK() macro, so restore the original macro to fix the boot and rename it accordingly. Reported-by: Lukas Rusak Signed-off-by

Re: [PATCH] ARM: mvebu: dts: omnia: enable eMMC writes

2021-02-22 Thread Marek Behun
On Mon, 22 Feb 2021 17:03:22 +0100 Marek Behun wrote: > On Mon, 22 Feb 2021 16:01:10 +0100 > Petr Štetiar wrote: > > --- a/arch/arm/dts/armada-385-turris-omnia.dts > > +++ b/arch/arm/dts/armada-385-turris-omnia.dts > > @@ -85,6 +85,7 @@ > > bus-width = <8>; > >

[PATCH] tools: imx8mimage: Restore the original __ALIGN_MASK() macro

2021-02-22 Thread Fabio Estevam
Since commit c738adb8dbbf ("tool: Move ALIGN_MASK to header as common MACRO") the i.MX8MQ EVK board no longer boots. The reason is that imx8mimage.c used a custom __ALIGN_MASK() macro, so restore the original macro to fix the boot. Reported-by: Lukas Rusak Signed-off-by: Fabio Estevam --- tool

Re: [PATCH] ARM: mvebu: dts: omnia: enable eMMC writes

2021-02-22 Thread Marek Behun
On Mon, 22 Feb 2021 16:01:10 +0100 Petr Štetiar wrote: > Currently it's not possible to write anything into eMMC from U-Boot, so > fix this by disabling the default write protection. > > Cc: Marek Behún > Signed-off-by: Petr Štetiar > --- > arch/arm/dts/armada-385-turris-omnia.dts | 1 + > 1

Re: [PATCH] uboot-test-hooks: Switch to our GitLab instance

2021-02-22 Thread Stephen Warren
On 2/22/21 8:49 AM, Tom Rini wrote: > As Stephen is no longer actively maintaining the uboot-test-hooks > repository, switch to using the instance on our GitLab. Acked-by: Stephen Warren

[PATCH] uboot-test-hooks: Switch to our GitLab instance

2021-02-22 Thread Tom Rini
As Stephen is no longer actively maintaining the uboot-test-hooks repository, switch to using the instance on our GitLab. Cc: Stephen Warren Signed-off-by: Tom Rini --- .azure-pipelines.yml | 2 +- .gitlab-ci.yml | 2 +- doc/develop/py_testing.rst | 2 +- 3 files changed, 3 in

Re: [PATCH v1] arm: imx8: added usbphy_regs struct

2021-02-22 Thread Oliver Graute
On 19/02/21, Peng Fan (OSS) wrote: > > Subject: [PATCH v1] arm: imx8: added usbphy_regs struct > > Only a structure? What do you mean exaclty? I have some more patches here to get the ehci-mx6 usb working on imx8. The hard work was done by Ye Li. I just splitted them up and rebased to be able to

[PATCH] ARM: mvebu: dts: omnia: enable eMMC writes

2021-02-22 Thread Petr Štetiar
Currently it's not possible to write anything into eMMC from U-Boot, so fix this by disabling the default write protection. Cc: Marek Behún Signed-off-by: Petr Štetiar --- arch/arm/dts/armada-385-turris-omnia.dts | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/armada-385-turris

[PULL u-boot] Please pull u-boot-amlogic-20210222

2021-02-22 Thread Neil Armstrong
ince commit 496f49464d90b564da5f1a2f4eecb5553e01edf9: Merge branch '2021-02-16-assorted-improvements' (2021-02-16 15:14:34 -0500) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20210222 for you to fetch

Re: [PATCH 08/10] sun5i: add support for DIP detection to CHIP board

2021-02-22 Thread Köry Maincent
Hi Tom, Andre Thanks for your reviews. On Fri, 19 Feb 2021 17:29:26 + Andre Przywara wrote: > > > > And then based on my comment in the previous patch, similar to > > PINEPHONE_DT_SELECTION and other board-specific options, add a > > CHIP_DIP_SCAN option or similar. > > Yes, indeed, tha

[ape...@alexperez.com: Re: [PATCH 53/57] ppc: Remove Cyrus_P5020 and P5040 boards]

2021-02-22 Thread Tom Rini
Sending this to the mailing list since the CC was wrong. - Forwarded message from Alex Perez - Date: Sun, 21 Feb 2021 12:01:39 -0800 From: Alex Perez To: tr...@konsulko.com Cc: u-boot-requ...@lists.denx.de Subject: Re: [PATCH 53/57] ppc: Remove Cyrus_P5020 and P5040 boards Reply-To: "R.

Re: [PATCH v2 14/38] test: cmd: Add a basic test for 'addrmap' command

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 02:20:35AM -0700, Simon Glass wrote: > Hi Bin, > > On Sun, 21 Feb 2021 at 18:55, Bin Meng wrote: > > > > Hi Simon, > > > > On Mon, Feb 22, 2021 at 12:24 AM Simon Glass wrote: > > > > > > Hi Bin, > > > > > > On Sat, 20 Feb 2021 at 06:01, Bin Meng wrote: > > > > > > > > Hi

Re: [PATCH 55/57] ppc: Remove T1023RDB board

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 08:58:40AM +, Y.b. Lu wrote: > Hi Tom, > > > -Original Message- > > From: U-Boot On Behalf Of Tom Rini > > Sent: Sunday, February 21, 2021 9:07 AM > > To: u-boot@lists.denx.de > > Cc: Priyanka Jain > > Subject: [PATCH 55/57] ppc: Remove T1023RDB board > > > >

Re: [PATCH 56/57] ppc: Remove T4160RDB board

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 09:00:59AM +, Y.b. Lu wrote: > Hi Tom, > > > -Original Message- > > From: U-Boot On Behalf Of Tom Rini > > Sent: Sunday, February 21, 2021 9:07 AM > > To: u-boot@lists.denx.de > > Cc: Priyanka Jain > > Subject: [PATCH 56/57] ppc: Remove T4160RDB board > > > >

Re: [PATCH 42/57] ppc: Remove T1040RDB boards

2021-02-22 Thread Tom Rini
On Mon, Feb 22, 2021 at 08:54:25AM +, Y.b. Lu wrote: > Hi Tom, > > > -Original Message- > > From: U-Boot On Behalf Of Priyanka Jain > > Sent: Monday, February 22, 2021 2:17 PM > > To: Tom Rini ; u-boot@lists.denx.de > > Cc: Jiafei Pan ; Xiaobo Xie ; > > Poonam Aggrwal > > Subject: RE

Re: i.MX8MQ EVK not booting with latest mainline U-Boot

2021-02-22 Thread Fabio Estevam
Hi Andrey, On Mon, Feb 22, 2021 at 5:52 AM ZHIZHIKIN Andrey wrote: > Can somebody maybe share more info on which errors are observed during the > boot? Any boot log would be helpful here as well. I investigated this boot issue. U-Boot 2020.04 works, but 2020.07 does not. I run a git bisect an

Please pull u-boot-video

2021-02-22 Thread Anatolij Gustschin
Hi Tom, The following changes since commit 766927a7595a6f18fef460a06fdac370fd9e02cf: Merge branch '2021-02-18-SPL-FIT-OP-TEE-Linux-improvements' (2021-02-18 12:02:11 -0500) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-video tags/video-for-v2021.0

Re: [PATCH v2 14/38] test: cmd: Add a basic test for 'addrmap' command

2021-02-22 Thread Bin Meng
Hi Simon, On Mon, Feb 22, 2021 at 5:20 PM Simon Glass wrote: > > Hi Bin, > > On Sun, 21 Feb 2021 at 18:55, Bin Meng wrote: > > > > Hi Simon, > > > > On Mon, Feb 22, 2021 at 12:24 AM Simon Glass wrote: > > > > > > Hi Bin, > > > > > > On Sat, 20 Feb 2021 at 06:01, Bin Meng wrote: > > > > > > > >

Re: [PATCH v2 19/38] pci: mpc85xx: Wrap LAW programming with CONFIG_FSL_LAW

2021-02-22 Thread Bin Meng
Hi Priyanka, On Mon, Feb 22, 2021 at 5:06 PM Priyanka Jain wrote: > > > > >-Original Message- > >From: Bin Meng > >Sent: Thursday, February 18, 2021 9:28 PM > >To: Simon Glass ; Alexander Graf ; > >Priyanka Jain > >Cc: U-Boot Mailing List ; Tom Rini > >; Heiko Schocher > >Subject: [PAT

RE: [PATCH 55/57] ppc: Remove T1023RDB board

2021-02-22 Thread Y.b. Lu
Hi Tom, > -Original Message- > From: U-Boot On Behalf Of Tom Rini > Sent: Sunday, February 21, 2021 9:07 AM > To: u-boot@lists.denx.de > Cc: Priyanka Jain > Subject: [PATCH 55/57] ppc: Remove T1023RDB board > > This board has not been converted to CONFIG_DM_MMC by the deadline. > Remove

Re: [PATCH] sunxi: board: Splitting CHIP defconfig for nand.

2021-02-22 Thread Maxime Ripard
On Fri, Feb 19, 2021 at 06:00:13PM +, André Przywara wrote: > On 24/01/2021 16:19, Alexandre GRIVEAUX wrote: > > Hi Alexandre, > > (CCing: Kory, plus using Maxime's and Boris' newer emails) > > > This patch split CHIP defconfig to add nand 4G and 8G support. > > > > Some CONFIG was put at t

Re: [PATCH 1/1] arm: qemu: support qfw

2021-02-22 Thread Heinrich Schuchardt
On 22.02.21 10:12, Asherah Connor wrote: > Hi Tom, Simon; > > On 21/02/20 05:02:p, Tom Rini wrote: >> On Sat, Feb 20, 2021 at 04:54:41AM -0700, Simon Glass wrote: >>> Probably create a uclass. I expect there are operations and some >>> private data. We also need to think about testing, since all uc

https://github.com/swarren/uboot-test-hooks marked as archived

2021-02-22 Thread Heinrich Schuchardt
Hello Stephen, hello Tom, https://github.com/swarren/uboot-test-hooks is marked as "This repository has been archived by the owner. It is now read-only.". Where is the new upstream? https://gitlab.denx.de/u-boot/u-boot-test-hooks seems to be out of sync. Best regards Heinrich

[PATCH 0/2] odroid-go2: two small config changes

2021-02-22 Thread Roger Pau Monné
Hello, The following series contain two config changes for odroid go2 board. Roger Pau Monné (2): odroid-go2: do not disable EFI odroid-go2: fix default FDT file path configs/odroid-go2_defconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) -- 2.30.1

[PATCH 2/2] odroid-go2: fix default FDT file path

2021-02-22 Thread Roger Pau Monné
The path in the Linux kernel dts directory is rockchip/rk3326-odroid-go2.dtb. That also seems to match the FDT path set on other boards (ie: rock64-rk3328 for example). Signed-off-by: Roger Pau Monne --- configs/odroid-go2_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --

[PATCH 1/2] odroid-go2: do not disable EFI

2021-02-22 Thread Roger Pau Monné
Remove the unset of the EFI loader, it's possible for U-Boot to provide a EFI environment on this board, and it's also required by the FreeBSD loader which mandated EFI on Aarch64. Signed-off-by: Roger Pau Monné --- configs/odroid-go2_defconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/

Re: [PATCH 1/1] arm: qemu: support qfw

2021-02-22 Thread Simon Glass
Hi Asherah, On Mon, 22 Feb 2021 at 02:12, Asherah Connor wrote: > > Hi Tom, Simon; > > On 21/02/20 05:02:p, Tom Rini wrote: > > On Sat, Feb 20, 2021 at 04:54:41AM -0700, Simon Glass wrote: > > > Probably create a uclass. I expect there are operations and some > > > private data. We also need to t

  1   2   >