Re: [PATCH v2 1/3] doc: Move devicetree control doc to rST

2021-08-14 Thread Heinrich Schuchardt
On 8/2/21 2:57 AM, Simon Glass wrote: Move this to rST format, largely unchanged to start with. Add an index for this topic, as well as an empty intro. Note this patch does not include updates! Is it just a conversion to the new format. See the next patch. Signed-off-by: Simon Glass Reviewed

Re: [PATCH v2 2/3] doc: Update devicedocs including how to add tweaks

2021-08-14 Thread Heinrich Schuchardt
On 8/2/21 2:57 AM, Simon Glass wrote: This file is about 10 years old and the updates have not covered everything that has changed, particularly in the last few years. Update the information and add mention of the u-boot.dtsi files. Signed-off-by: Simon Glass I will fix a few typos when mergi

Re: [PATCH v2 3/3] doc: Add a note about why devicetree is used

2021-08-14 Thread Heinrich Schuchardt
On 8/2/21 2:57 AM, Simon Glass wrote: This question comes up every now and then with people coming from Linux. Add some notes about it so we can point to it in the mailing list. Signed-off-by: Simon Glass Reviewed-by: Heinrich Schuchardt --- Changes in v2: - Updates based on suggestions f

Re: [PATCH v3 3/3] arm: mvebu: Initial ESPRESSOBin-Ultra board support

2021-08-14 Thread Gérald Kerma
Héllo, Message: 2 Date: Fri, 13 Aug 2021 12:03:57 +0200 From: Luka Kovacic To: Pali Roh?r Cc:u-boot@lists.denx.de, Robert Marko, Luka Perkov, Marek Behun ,s...@denx.de,s...@chromium.org, patrick.delau...@foss.st.com,xypron.g...@gmx.de Subject: Re: [PATCH v3 3/3] arm: mvebu

Re: [PATCH v4 3/5] efi_loader: add ExitBootServices() measurement

2021-08-14 Thread Heinrich Schuchardt
On 8/13/21 9:12 AM, Masahisa Kojima wrote: TCG PC Client PFP spec requires to measure "Exit Boot Services Invocation" if ExitBootServices() is invoked. Depending upon the return code from the ExitBootServices() call, "Exit Boot Services Returned with Success" or "Exit Boot Services Returned with

[PATCH 1/1] efi_loader: EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES

2021-08-14 Thread Heinrich Schuchardt
UEFI specification 2.9 introduced a new event group EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES. Serve the events. Signed-off-by: Heinrich Schuchardt --- include/efi_api.h | 4 lib/efi_loader/efi_boottime.c | 17 - 2 files changed, 20 insertions(+), 1 deletion(-)

Re: [PATCH v4 3/5] efi_loader: add ExitBootServices() measurement

2021-08-14 Thread Heinrich Schuchardt
On 8/13/21 9:12 AM, Masahisa Kojima wrote: TCG PC Client PFP spec requires to measure "Exit Boot Services Invocation" if ExitBootServices() is invoked. Depending upon the return code from the ExitBootServices() call, "Exit Boot Services Returned with Success" or "Exit Boot Services Returned with

Re: [PATCH 1/1] cmd: enable CONFIG_CMD_EFIDEBUG by default

2021-08-14 Thread Heinrich Schuchardt
On 8/12/21 1:00 PM, Heinrich Schuchardt wrote: The efidebug command is needed to manage UEFI boot options. To display them fully CONFIG_HEXDUMP is needed. Signed-off-by: Heinrich Schuchardt For rcar3_salvator-x this increases the image size too much: aarch64: + rcar3_salvator-x +u-boot

[PATCH 1/1] ARM: renesas: reduce rcar3_salvator-x image size

2021-08-14 Thread Heinrich Schuchardt
rcar3_salvator-x u-boot.img is very close to the 0x10 size limit. Disable support for Unicode capitalization. Signed-off-by: Heinrich Schuchardt --- configs/rcar3_salvator-x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/rcar3_salvator-x_defconfig b/configs/rcar3_sal

[PATCH v2 1/3] common: Add fdt network helper

2021-08-14 Thread Tony Dinh
Add fdt network helper to Makefile Reviewed-by: Stefan Roese Acked-by: Ramon Fried Signed-off-by: Tony Dinh --- (no changes since v1) common/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Makefile b/common/Makefile index 9063ed9391..94678d26d8 100644 ---

[PATCH v2 2/3] common: Add fdt network helper header file

2021-08-14 Thread Tony Dinh
Add include header file fdt_support_net.h Reviewed-by: Stefan Roese Acked-by: Ramon Fried Signed-off-by: Tony Dinh --- Changes in v2: - Return FDT_ERR_NOTFOUND if fdt_get_phy_addr failed to find PHY addr include/fdt_support_net.h | 39 +++ 1 file changed,

[PATCH v2 3/3] common: Add fdt network helper functions

2021-08-14 Thread Tony Dinh
Add fdt network helper functions fdt_support_net.c Reviewed-by: Stefan Roese Acked-by: Ramon Fried Signed-off-by: Tony Dinh --- Changes in v2: - Return FDT_ERR_NOTFOUND if fdt_get_phy_addr failed to find PHY addr - Coding standards. common/fdt_support_net.c | 47