Re: [PATCH 2/2] mkeficapsule: Support "--flags reset" option

2022-02-04 Thread Heinrich Schuchardt
On 1/25/22 12:31, Masami Hiramatsu wrote: Support "--flags reset" option to set the CAPSULE_FLAGS_INITIATE_RESET flag to capsule header. Signed-off-by: Masami Hiramatsu --- tools/mkeficapsule.c | 26 ++ 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/

Re: [PATCH v3] board: toradex: add verdin imx8m plus support

2022-02-04 Thread Fabio Estevam
Hi Marcel, On Fri, Feb 4, 2022 at 7:17 PM Marcel Ziswiler wrote: > +#if 0 > +int board_phys_sdram_size(phys_size_t *bank1_size, phys_size_t *bank2_size) Please remove this unused function. > diff --git a/doc/board/toradex/verdin-imx8mm.rst > b/doc/board/toradex/verdin-imx8mm.rst > index a11c8

Re: [PATCH] tools/mrvl_uart.sh: Remove script

2022-02-04 Thread Marcel Ziswiler
On Sat, 2022-02-05 at 01:54 +0100, Pali Rohár wrote: > On Saturday 05 February 2022 01:40:23 Marcel Ziswiler wrote: > > On Sat, 2022-02-05 at 01:25 +0100, Pali Rohár wrote: > > > On Saturday 05 February 2022 01:01:28 Marcel Ziswiler wrote: > > > > Addendum. > > > > > > > > On Sat, 2022-02-05 at 00

Re: [PATCH] tools/mrvl_uart.sh: Remove script

2022-02-04 Thread Pali Rohár
On Saturday 05 February 2022 01:40:23 Marcel Ziswiler wrote: > On Sat, 2022-02-05 at 01:25 +0100, Pali Rohár wrote: > > On Saturday 05 February 2022 01:01:28 Marcel Ziswiler wrote: > > > Addendum. > > > > > > On Sat, 2022-02-05 at 00:43 +0100, Marcel Ziswiler wrote: > > > > > > > > > > [snip] >

Re: [PATCH] tools/mrvl_uart.sh: Remove script

2022-02-04 Thread Marcel Ziswiler
On Sat, 2022-02-05 at 01:25 +0100, Pali Rohár wrote: > On Saturday 05 February 2022 01:01:28 Marcel Ziswiler wrote: > > Addendum. > > > > On Sat, 2022-02-05 at 00:43 +0100, Marcel Ziswiler wrote: > > > > > > > [snip] > > > > > > Kosta, do you see any problems with removing this script? As you m

Re: [PATCH] tools/mrvl_uart.sh: Remove script

2022-02-04 Thread Pali Rohár
On Saturday 05 February 2022 01:01:28 Marcel Ziswiler wrote: > Addendum. > > On Sat, 2022-02-05 at 00:43 +0100, Marcel Ziswiler wrote: > > > > [snip] > > > > Kosta, do you see any problems with removing this script? As you might > > > have seen, Pali and Marek did some great work on kwboot in t

Re: [PATCH] tools/mrvl_uart.sh: Remove script

2022-02-04 Thread Marcel Ziswiler
Addendum. On Sat, 2022-02-05 at 00:43 +0100, Marcel Ziswiler wrote: > [snip] > > Kosta, do you see any problems with removing this script? As you might > > have seen, Pali and Marek did some great work on kwboot in the mean > > time. Is there anything left in mrvl_uart.sh that kwboot can't hand

Re: [PATCH] tools/mrvl_uart.sh: Remove script

2022-02-04 Thread Marcel Ziswiler
Hi Stefan et. al Putting Robi and Sergey on CC. On Fri, 2022-02-04 at 06:46 +0100, Stefan Roese wrote: > Added Kosta to Cc, as he is the author of this script. > > On 2/3/22 17:50, Pali Rohár wrote: > > There are two tools for sending images over UART to Marvell SoCs: kwboot > > and mrvl_uart.sh

[PATCH v3] board: toradex: add verdin imx8m plus support

2022-02-04 Thread Marcel Ziswiler
From: Marcel Ziswiler This adds initial support for the Toradex Verdin iMX8M Plus Quad 4GB WB IT V1.0B module. They are strapped to boot from eFuses which are factory fused to properly boot from their on-module eMMC. U-Boot supports booting from the on-module eMMC only, SDP support is disabled fo

Re: [PATCHv2] arm64: zynqmp: Print the secure boot status information

2022-02-04 Thread Jorge Ramirez-Ortiz, Foundries
On 04/02/22, Michal Simek wrote: > Hi, > > pá 4. 2. 2022 v 8:47 odesílatel Jorge Ramirez-Ortiz, Foundries > napsal: > > > > On 13/10/21, Jorge Ramirez-Ortiz wrote: > > > Output the secure boot configuration to the console. > > > > > > Hi, Michal > > was there any reason for not merging this patch

IMX8MM board with 512MB

2022-02-04 Thread Tim Harvey
Greetings, I've got an IMX8MM board that I'm trying to add support for which has 512MB of LPDDR4 DRAM. I've run through the NXP dram calibration and stress test fine and added the dram config from the NXP tool into U-Boot but I'm finding the board is hanging somewhere in the SPL (after dram_init b

[PATCH 1/1] efi_loader: add handle for UART

2022-02-04 Thread Heinrich Schuchardt
When loading an EFI binary via the UART we assign a UART device path to it. But we lack a handle with that device path. Signed-off-by: Heinrich Schuchardt --- include/efi_loader.h | 1 + lib/efi_loader/efi_console.c | 52 +--- 2 files changed, 26 insertio

[PATCH 1/1] efi_loader: use %zu to print efi_uintn_t in FMP driver

2022-02-04 Thread Heinrich Schuchardt
For printing an unsigned value we should use %u and not %d. Signed-off-by: Heinrich Schuchardt --- lib/efi_loader/efi_firmware.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/efi_loader/efi_firmware.c b/lib/efi_loader/efi_firmware.c index a1b88dbfc2..bcc0e29e5b 1006

[PATCH] efi_loader: use %zu not %zd to print efi_uintn_t

2022-02-04 Thread Heinrich Schuchardt
efi_uintnt_t is an unsigned type. We should avoid showing negative numbers. Signed-off-by: Heinrich Schuchardt --- lib/efi_loader/efi_boottime.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 1823990d9

Re: [PATCH] ARM: dts: colibri-imx6ull: fix mac address passing

2022-02-04 Thread Fabio Estevam
On Thu, Sep 23, 2021 at 4:55 AM Francesco Dolcini wrote: > > colibri-imx6ull ethernet device is fec2, while the optional secondary > ethernet is fec1, update the ethernet aliases in the .dts file so that > ethaddr is set to fec2 and eth1addr to fec1. > > Without this change the ethernet interfaces

Re: [PATCH] ARM: dts: colibri-imx6ull: fix mac address passing

2022-02-04 Thread Marcel Ziswiler
Hi guys On Thu, 2021-09-23 at 07:57 -0400, Tom Rini wrote: > On Thu, Sep 23, 2021 at 01:50:41PM +0200, Francesco Dolcini wrote: > > On Thu, Sep 23, 2021 at 07:36:34AM -0400, Tom Rini wrote: > > > On Thu, Sep 23, 2021 at 09:55:21AM +0200, Francesco Dolcini wrote: > > > > > > > colibri-imx6ull ethe

Re: [u-boot][PATCH] binman: Add support for TEE BL32

2022-02-04 Thread Simon Glass
Hi Roger, On Fri, 4 Feb 2022 at 06:00, Roger Quadros wrote: > > Add an entry for OP-TEE Trusted OS 'BL32' payload. > This is required by platforms using Cortex-A cores with TrustZone > technology. > > Signed-off-by: Roger Quadros > --- > Makefile | 1 + > tools/binman

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Pali Rohár
On Friday 04 February 2022 08:54:45 Simon Glass wrote: > Hi Pali, > > On Fri, 4 Feb 2022 at 08:46, Pali Rohár wrote: > > > > On Friday 04 February 2022 08:41:01 Simon Glass wrote: > > > I do wonder how this board got so out of date. > > > > I think I have explained it... Because every time I sent

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Simon Glass
Hi Pali, On Fri, 4 Feb 2022 at 08:46, Pali Rohár wrote: > > On Friday 04 February 2022 08:41:01 Simon Glass wrote: > > I do wonder how this board got so out of date. > > I think I have explained it... Because every time I sent some patch for > this board it took months or half of year until patch

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Pali Rohár
On Friday 04 February 2022 08:41:01 Simon Glass wrote: > I do wonder how this board got so out of date. I think I have explained it... Because every time I sent some patch for this board it took months or half of year until patch was reviewed. So I lost interest in sending new patches or do develo

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Simon Glass
Hi Tom, On Fri, 4 Feb 2022 at 08:37, Tom Rini wrote: > > On Fri, Feb 04, 2022 at 04:30:23PM +0100, Pali Rohár wrote: > > On Friday 04 February 2022 08:24:03 Simon Glass wrote: > > > Hi Pali, > > > > > > On Fri, 4 Feb 2022 at 07:13, Pali Rohár wrote: > > > > > > > > On Friday 04 February 2022 09:

Re: [PATCH] gpio: Enable hogging support in SPL

2022-02-04 Thread Eddie James
On 2/4/22 09:24, Simon Glass wrote: Hi Eddie, On Thu, 3 Feb 2022 at 15:37, Eddie James wrote: Use the CONFIG macros to conditionally build the GPIO hogging support in either the SPL or U-Boot, or both, depending on the configuration. Also call the GPIO hog probe function in the common SPL bo

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Tom Rini
On Fri, Feb 04, 2022 at 04:30:23PM +0100, Pali Rohár wrote: > On Friday 04 February 2022 08:24:03 Simon Glass wrote: > > Hi Pali, > > > > On Fri, 4 Feb 2022 at 07:13, Pali Rohár wrote: > > > > > > On Friday 04 February 2022 09:00:55 Tom Rini wrote: > > > > On Fri, Feb 04, 2022 at 02:55:39PM +0100

Re: make mrproper deletes lib/acpi/dsdt.c

2022-02-04 Thread Simon Glass
Hi Marcel, On Fri, 4 Feb 2022 at 03:10, Marcel Ziswiler wrote: > > Hi Simon > > Since a few days I noticed the following: > > ⬢[zim@toolbox u-boot.git]$ git status > On branch master > Your branch is up to date with 'origin/master'. > ⬢[zim@toolbox u-boot.git]$ make mrproper > ⬢[zim@toolbox u-boo

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Pali Rohár
On Friday 04 February 2022 08:24:03 Simon Glass wrote: > Hi Pali, > > On Fri, 4 Feb 2022 at 07:13, Pali Rohár wrote: > > > > On Friday 04 February 2022 09:00:55 Tom Rini wrote: > > > On Fri, Feb 04, 2022 at 02:55:39PM +0100, Pali Rohár wrote: > > > > On Friday 04 February 2022 08:41:55 Tom Rini w

Re: [PATCH v2 2/3] dts: sama5d2: add TCB node

2022-02-04 Thread Clément Léger
Le Fri, 4 Feb 2022 10:40:52 +, a écrit : > > > > I sent a patch in Linux to remove interrupts from mandatory. Let's have > > the node without it for now. > > > > Your series will have to wait a little bit anyway for the next merge > > window, and a review on the driver. > > Hello Clement

Re: Pull request: u-boot-sunxi/master for 2022.04 (part 2)

2022-02-04 Thread Andre Przywara
On Fri, 4 Feb 2022 08:07:11 -0500 Tom Rini wrote: Hi Tom, > On Fri, Feb 04, 2022 at 01:33:11AM +, Andre Przywara wrote: > > > Hi Tom, > > > > this is the promised second part of the sunxi PR for 2022.04, albeit > > technially outside of the merge window. We were working on this full > > st

Re: [PATCH v4 01/18] arch: sandbox: add an config SANDBOX_BINMAN

2022-02-04 Thread Simon Glass
Hi Philippe, On Mon, 31 Jan 2022 at 07:56, Philippe Reynes wrote: > > Add an config SANDBOX_BINMAN to enable binman > on sandbox. It is useful for test. > > Signed-off-by: Philippe Reynes > --- > arch/sandbox/Kconfig | 7 +++ > 1 file changed, 7 insertions(+) Instead, could you 'imply' it

Re: [PATCH v4 02/18] arch: sandbox: dts: sandbox.dts: add empty binman node

2022-02-04 Thread Simon Glass
On Mon, 31 Jan 2022 at 07:56, Philippe Reynes wrote: > > Add an empty node /binman on sandbox to avoid an error > on u-boot when binman is enabled. > > Signed-off-by: Philippe Reynes > --- > arch/sandbox/dts/sandbox.dts | 3 +++ > 1 file changed, 3 insertions(+) > Reviewed-by: Simon Glass

Re: [PATCH] test/py: Add test case for mkimage -o argument

2022-02-04 Thread Simon Glass
On Thu, 3 Feb 2022 at 13:43, Jan Kiszka wrote: > > From: Jan Kiszka > > Stress the '-o algo_name' argument of mkimage by expanding the vboot > test. > > Signed-off-by: Jan Kiszka > --- > test/py/tests/test_vboot.py | 33 +++--- > test/py/tests/vboot/sign-configs-algo-a

Re: [PATCH] gpio: Enable hogging support in SPL

2022-02-04 Thread Simon Glass
Hi Eddie, On Thu, 3 Feb 2022 at 15:37, Eddie James wrote: > > Use the CONFIG macros to conditionally build the GPIO hogging support in > either the SPL or U-Boot, or both, depending on the configuration. Also > call the GPIO hog probe function in the common SPL board initialization > as an equiva

Re: [PATCH] mkimage: Improve documentation of algo-name parameter

2022-02-04 Thread Simon Glass
On Thu, 3 Feb 2022 at 13:43, Jan Kiszka wrote: > > From: Jan Kiszka > > Addresses the feedback provided on 5902a397d029 which raced with the > merge. > > Signed-off-by: Jan Kiszka > --- > doc/mkimage.1 | 2 +- > tools/imagetool.h | 3 ++- > 2 files changed, 3 insertions(+), 2 deletions(-) >

Re: [PATCH] common: fdt_support: add support for "partitions" subnode to fdt_fixup_mtdparts()

2022-02-04 Thread Simon Glass
On Thu, 3 Feb 2022 at 07:15, Matthias Schiffer wrote: > > Listing MTD partitions directly in the flash mode has been deprecated > for a while for kernel Device Trees. Look for a node "partitions" in the > found flash nodes and use it instead of the flash node itself for the > partition list when i

Re: [PATCH] serial-uclass: fix build warning

2022-02-04 Thread Simon Glass
On Wed, 2 Feb 2022 at 05:55, Heiko Schocher wrote: > > if CONFIG_DM_STDIO is defined but SERIAL_PRESENT not, > gcc drops warnings for serial_stub_* functions > that they are defined but not used. > > Fix it. > > Signed-off-by: Heiko Schocher > --- > azure build is clean > https://dev.azure.com/hs

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Simon Glass
Hi Pali, On Fri, 4 Feb 2022 at 07:13, Pali Rohár wrote: > > On Friday 04 February 2022 09:00:55 Tom Rini wrote: > > On Fri, Feb 04, 2022 at 02:55:39PM +0100, Pali Rohár wrote: > > > On Friday 04 February 2022 08:41:55 Tom Rini wrote: > > > > On Fri, Feb 04, 2022 at 11:56:52AM +0100, Pali Rohár wr

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Pali Rohár
On Friday 04 February 2022 09:00:55 Tom Rini wrote: > On Fri, Feb 04, 2022 at 02:55:39PM +0100, Pali Rohár wrote: > > On Friday 04 February 2022 08:41:55 Tom Rini wrote: > > > On Fri, Feb 04, 2022 at 11:56:52AM +0100, Pali Rohár wrote: > > > > On Thursday 03 February 2022 15:02:02 Simon Glass wrote

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Tom Rini
On Fri, Feb 04, 2022 at 02:55:39PM +0100, Pali Rohár wrote: > On Friday 04 February 2022 08:41:55 Tom Rini wrote: > > On Fri, Feb 04, 2022 at 11:56:52AM +0100, Pali Rohár wrote: > > > On Thursday 03 February 2022 15:02:02 Simon Glass wrote: > > > > Hi, > > > > > > > > On Thu, 3 Feb 2022 at 14:53,

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Pali Rohár
On Friday 04 February 2022 08:41:55 Tom Rini wrote: > On Fri, Feb 04, 2022 at 11:56:52AM +0100, Pali Rohár wrote: > > On Thursday 03 February 2022 15:02:02 Simon Glass wrote: > > > Hi, > > > > > > On Thu, 3 Feb 2022 at 14:53, Tom Rini wrote: > > > > > > > > On Thu, Feb 03, 2022 at 04:45:44PM -050

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Tom Rini
On Fri, Feb 04, 2022 at 11:56:52AM +0100, Pali Rohár wrote: > On Thursday 03 February 2022 15:02:02 Simon Glass wrote: > > Hi, > > > > On Thu, 3 Feb 2022 at 14:53, Tom Rini wrote: > > > > > > On Thu, Feb 03, 2022 at 04:45:44PM -0500, Tom Rini wrote: > > > > On Thu, Feb 03, 2022 at 04:16:23PM -050

Re: Pull request: u-boot-sunxi/master for 2022.04 (part 2)

2022-02-04 Thread Tom Rini
On Fri, Feb 04, 2022 at 01:33:11AM +, Andre Przywara wrote: > Hi Tom, > > this is the promised second part of the sunxi PR for 2022.04, albeit > technially outside of the merge window. We were working on this full > steam since the beginning of the year, and it deserves to be merged, > I thin

[u-boot][PATCH] binman: Add support for TEE BL32

2022-02-04 Thread Roger Quadros
Add an entry for OP-TEE Trusted OS 'BL32' payload. This is required by platforms using Cortex-A cores with TrustZone technology. Signed-off-by: Roger Quadros --- Makefile | 1 + tools/binman/entries.rst | 13 + tools/binman/etype/atf_bl32.py |

Re: [PATCH v4] sf: Query write-protection status before operating the flash

2022-02-04 Thread Jan Kiszka
On 02.02.22 10:57, Jan Kiszka wrote: > On 02.02.22 10:38, Jan Kiszka wrote: >> On 02.02.22 09:21, Michael Walle wrote: >>> Am 2022-02-02 07:35, schrieb Jan Kiszka: From: Jan Kiszka Do not suggest successful operation if a flash area to be changed is actually locked, thus will n

Re: [PATCH v2] zynqmp: Use the same style for macro definitions

2022-02-04 Thread Michal Simek
st 19. 1. 2022 v 12:03 odesílatel Michal Simek napsal: > > Use the same coding style for all macros. > #defineNAMEVALUE > > Signed-off-by: Michal Simek > --- > > Changes in v2: > - Change base > > include/zynqmp_firmware.h | 14 +++--- > 1 file changed, 7 insertions(+), 7 deletions(-) >

Re: [PATCHv2] arm64: zynqmp: Print the secure boot status information

2022-02-04 Thread Michal Simek
Hi, pá 4. 2. 2022 v 8:47 odesílatel Jorge Ramirez-Ortiz, Foundries napsal: > > On 13/10/21, Jorge Ramirez-Ortiz wrote: > > Output the secure boot configuration to the console. > > > Hi, Michal > was there any reason for not merging this patch? thanks for the reminder. I just didn't see it. Than

Re: [PATCHv2] arm64: zynqmp: Print the secure boot status information

2022-02-04 Thread Michal Simek
On 10/13/21 19:04, Jorge Ramirez-Ortiz wrote: Output the secure boot configuration to the console. Signed-off-by: Jorge Ramirez-Ortiz --- v2: Michal review 12 Aug 2021 print information on SPL and UBOOT improve the print command add macros to mask the status a

RE: [PATCH 1/2] fsl-layerscape: add dtb overlay feature

2022-02-04 Thread Sahil Malhotra (OSS)
Hi Michael, Sorry for delayed response. Please find my response inline. > -Original Message- > From: Michael Walle > Sent: Thursday, January 6, 2022 1:10 PM > To: Sahil Malhotra (OSS) > Cc: ZHIZHIKIN Andrey ; Clément > Faure ; Gaurav Jain ; > Pankaj Gupta ; Priyanka Jain > ; u-boot@list

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Pali Rohár
On Thursday 03 February 2022 15:10:58 Simon Glass wrote: > Hi Tom, > > On Thu, 3 Feb 2022 at 15:09, Tom Rini wrote: > > > > On Thu, Feb 03, 2022 at 03:03:21PM -0700, Simon Glass wrote: > > > Hi, > > > > > > On Thu, 3 Feb 2022 at 15:02, Simon Glass wrote: > > > > > > > > Hi, > > > > > > > > On Th

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Pali Rohár
On Thursday 03 February 2022 15:02:02 Simon Glass wrote: > Hi, > > On Thu, 3 Feb 2022 at 14:53, Tom Rini wrote: > > > > On Thu, Feb 03, 2022 at 04:45:44PM -0500, Tom Rini wrote: > > > On Thu, Feb 03, 2022 at 04:16:23PM -0500, Tom Rini wrote: > > > > On Thu, Feb 03, 2022 at 07:38:50PM +0100, Pali

Re: [PATCH] Nokia RX-51: Convert to CONFIG_DM_KEYBOARD

2022-02-04 Thread Pali Rohár
On Thursday 03 February 2022 16:45:44 Tom Rini wrote: > On Thu, Feb 03, 2022 at 04:16:23PM -0500, Tom Rini wrote: > > On Thu, Feb 03, 2022 at 07:38:50PM +0100, Pali Rohár wrote: > > > > > Signed-off-by: Pali Rohár > > > --- > > > > > > I would really appreciate if U-Boot test framework starts pr

Re: [PATCH] malloc_simple: Remove usage of unsupported %zx format string

2022-02-04 Thread Pali Rohár
On Thursday 03 February 2022 14:19:41 Simon Glass wrote: > Hi Pali, > > On Thu, 3 Feb 2022 at 11:51, Pali Rohár wrote: > > > > Replace %zx by %lx and cast size_t to ulong. > > > > U-Boot currently prints garbage debug output: > > size=x, ptr=18, limit=18: 4002a000 > > Do you mean in SPL? Yes, t

make mrproper deletes lib/acpi/dsdt.c

2022-02-04 Thread Marcel Ziswiler
Hi Simon Since a few days I noticed the following: ⬢[zim@toolbox u-boot.git]$ git status On branch master Your branch is up to date with 'origin/master'. ⬢[zim@toolbox u-boot.git]$ make mrproper ⬢[zim@toolbox u-boot.git]$ git status On branch master Your branch is up to date with 'origin/master'.

[PATCH 1/1] cmd: wrong printf() code in do_test_stackprot_fail()

2022-02-04 Thread Heinrich Schuchardt
strlen() returns size_t. So we should use %zu to print it. This avoids incorrect output on 32bit systems. Fixes: 2fc62f299174 ("stackprot: Make our test a bit more complex") Signed-off-by: Heinrich Schuchardt --- cmd/stackprot_test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff

Re: [PATCH v2 2/3] dts: sama5d2: add TCB node

2022-02-04 Thread Clément Léger
Le Fri, 4 Feb 2022 07:52:26 +, a écrit : > Hello Clement, > > Subject should be ARM: dts: [at91:] sama5d2: ... > > On 2/2/22 4:43 PM, Clément Léger wrote: > > Add the device-tree node to describe the TCB timer. > > > > Signed-off-by: Clément Léger > > --- > > arch/arm/dts/sama5d2.dtsi |