[PATCH v2 5/6] net: macb: add support for sama7g5 emac

2020-12-03 Thread Claudiu Beznea
Add support for SAMA7G5 EMAC. Signed-off-by: Claudiu Beznea --- drivers/net/macb.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 234d85a94d34..827f34bb172d 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c @@ -1374,12 +1374,20 @@

[PATCH v2 4/6] net: macb: add support for sama7g5 gmac

2020-12-03 Thread Claudiu Beznea
Add support for SAMA7G5 GMAC. Signed-off-by: Claudiu Beznea --- drivers/net/macb.c | 32 1 file changed, 32 insertions(+) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 241b42a6e9d3..234d85a94d34 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb

Re: Please convert last remaining file to UTF-8 encoding

2020-12-03 Thread Andre Przywara
From: Tom Rini Sent: Thursday, December 03, 2020 17:22 To: Nicolas Boulenguez Cc: U-Boot mailing list; Andre Przywara Subject: Re: Please convert last remaining file to UTF-8 encoding Sorry if that looks weird, my Thunderbird (68.x) suddenly refused to display some emails (I guess S/MIME is to bl

Re: Please convert last remaining file to UTF-8 encoding

2020-12-03 Thread Tom Rini
On Thu, Dec 03, 2020 at 06:06:16PM +, Andre Przywara wrote: > From: Tom Rini > Sent: Thursday, December 03, 2020 17:22 > To: Nicolas Boulenguez > Cc: U-Boot mailing list; Andre Przywara > Subject: Re: Please convert last remaining file to UTF-8 encoding > > Sorry if that looks weird, my Thunde

Re: [PATCH v2] common: update: fix an "unused" warning against update_flash()

2020-12-03 Thread Heinrich Schuchardt
On 12/3/20 5:59 PM, Tom Rini wrote: On Thu, Nov 19, 2020 at 09:37:19AM +0900, AKASHI Takahiro wrote: Since update_flash() is used only in update_tftp(), it should be guarded with appropriate config options. After the commit 3149e524fc1e, common/update.c will be built under either CONFIG_UDATE_

Re: [SPECIFICATION RFC] The firmware and bootloader log specification

2020-12-03 Thread Andy Shevchenko
On Sat, Nov 14, 2020 at 2:01 AM Daniel Kiper wrote: ... > The log specification should be as much as possible platform agnostic > and self contained. The final version of this spec should be merged into > existing specifications, e.g. UEFI, ACPI, Multiboot2, or be a standalone > spec, e.g. as a

[u-boot,v2019.04-aspeed, v1 0/1] Common:fdt: Check for error return

2020-12-03 Thread Hongwei Zhang
Thanks Joel, > From: Joel Stanley > Sent: Wednesday, December 2, 2020 9:17 PM > To: Hongwei Zhang > > Hello Hongwei, > > On Wed, 2 Dec 2020 at 19:48, Hongwei Zhang wrote: > > > > Hello Reviewer, > > > > Check for negative return value of fdt_noffset from calling > > boot_get_fdt_fit(). Other

Pull request for UEFI sub-system for NEXT

2020-12-03 Thread Heinrich Schuchardt
Dear Tom, The following changes since commit a2c832471115d382d6dd60697be5bc74d2636eea: Merge branch '2020-12-01-next-imports' into next (2020-12-02 11:35:02 -0500) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-next for you to fetc

[PATCH] mmc: initialize an err variable

2020-12-03 Thread Jaehoon Chung
Initialize an err variable to 0. Signed-off-by: Jaehoon Chung --- drivers/mmc/mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index a6394bcf308f..5151339d3aa3 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -2062,7 +2062,7

Re: [PATCH 29/34] configs: sama7g5: add mmc config for sdmmc0

2020-12-03 Thread Jaehoon Chung
Hi, On 12/3/20 8:20 PM, eugen.hris...@microchip.com wrote: > On 03.12.2020 13:11, Jaehoon Chung wrote: >> EXTERNAL EMAIL: Do not click links or open attachments unless you know the >> content is safe >> >> On 12/3/20 7:47 PM, eugen.hris...@microchip.com wrote: >>> On 03.12.2020 12:38, Jaehoon Chu

[PATCH] arm: dts: k3-j721e: ddr: Update to 0.5.0 version of DDR config tool

2020-12-03 Thread praneeth
From: Praneeth Bajjuri Update the ddr settings to use the DDR reg config tool rev 0.5.0. This enables 4266MTs DDR configuration. Signed-off-by: Praneeth Bajjuri Signed-off-by: Kevin Scholz --- ...33.dtsi => k3-j721e-ddr-evm-lp4-4266.dtsi} | 436 +- .../arm/dts/k3-j721e-r5-comm

[PATCH 1/9] dtoc: Tidy up more Python style in dtb_platdata

2020-12-03 Thread Simon Glass
Update this file to reduce the number of pylint warnings. Also add a few missing comments while we are here. Signed-off-by: Simon Glass --- tools/dtoc/dtb_platdata.py | 91 +++--- 1 file changed, 46 insertions(+), 45 deletions(-) diff --git a/tools/dtoc/dtb_plat

[PATCH 0/9] dm: treewide: Tidy up and adjust driver model naming

2020-12-03 Thread Simon Glass
There are several naming problems in driver model which I think are worth sorting out. FIrstly, the _auto_alloc_size suffix is widely used but is quite long-winded. In earlier days it made some sense since auto allocation was a strange concept. But with driver model now used pretty universally, we

[PATCH 4/9] dm: Rename 'platdata_size' to 'plat_size'

2020-12-03 Thread Simon Glass
Rename this to be consistent with the change from 'platdata'. Signed-off-by: Simon Glass --- doc/driver-model/of-plat.rst | 2 +- drivers/core/device.c| 15 include/dm/platdata.h| 4 +-- tools/dtoc/dtb_platdata.py | 2 +- tools/dtoc/test_dtoc.py | 66 +

[PATCH 7/9] dm: treewide: Update 'auto' declarations to be on one line

2020-12-03 Thread Simon Glass
Fix up the code style for those declarations that should now fit onto one line, which is all of them that currently do not. This is needed for dtoc to detect the structs correctly, at present. Signed-off-by: Simon Glass --- arch/x86/cpu/intel_common/p2sb.c | 3 +-- drivers/i2c/i2c-em

[PATCH 9/9] checkpatch: Add warnings for unexpected struct names

2020-12-03 Thread Simon Glass
As a way of keeping the driver declarations more consistent, add a warning if the struct used does not end with _priv or _plat. Signed-off-by: Simon Glass --- scripts/checkpatch.pl | 38 + tools/patman/test_checkpatch.py | 28 2

Re: [PATCH] efi_loader: allow disabling EFI secure boot in User Mode

2020-12-03 Thread Heinrich Schuchardt
On 11/30/20 7:22 PM, Paulo Alcantara wrote: Hi Heinrich, Heinrich Schuchardt writes: On 11/30/20 3:58 PM, Paulo Alcantara wrote: Introduce a new config option CONFIG_EFI_SECURE_BOOT_VAR_DISABLE to allow disabling EFI secure boot when the platform is operating in User Mode and there is an NV+

<    1   2