Re: [U-Boot] [PATCH v3 2/2] x86: efi_loader: Use efi_add_conventional_memory_map()

2019-09-10 Thread Park, Aiden
Thanks Bin!

> -Original Message-
> From: Bin Meng [mailto:bmeng...@gmail.com]
> Sent: Monday, September 9, 2019 11:31 PM
> To: Park, Aiden 
> Cc: Heinrich Schuchardt ; Alexander Graf
> ; u-boot@lists.denx.de
> Subject: Re: [PATCH v3 2/2] x86: efi_loader: Use
> efi_add_conventional_memory_map()
> 
> On Wed, Sep 4, 2019 at 1:43 AM Park, Aiden  wrote:
> >
> > Use efi_add_conventional_memory_map() to configure EFI conventional
> > memory properly with ram_top value. This will give 32bit mode U-Boot
> > proper
> 
> nits: 32-bit
> 
> > conventional memory regions even if e820 has a entry which is greater
> > than
> 
> nits: an entry
> 
> > 32bit address space.
> 
> 32-bit
> 
> >
> > Signed-off-by: Aiden Park 
> > ---
> > Changes in v3:
> >   * Split a single commit to two relevant commits
> >
> > Changes in v2:
> >   * Add efi_add_conventional_memory_map() for common code re-use
> >
> >  arch/x86/lib/e820.c | 17 ++---
> >  1 file changed, 14 insertions(+), 3 deletions(-)
> >
> 
> Fixed the above nits, and
> 
> applied to u-boot-x86, thanks!

Best Regards,
Aiden
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v3 2/2] x86: efi_loader: Use efi_add_conventional_memory_map()

2019-09-09 Thread Bin Meng
On Wed, Sep 4, 2019 at 1:43 AM Park, Aiden  wrote:
>
> Use efi_add_conventional_memory_map() to configure EFI conventional memory
> properly with ram_top value. This will give 32bit mode U-Boot proper

nits: 32-bit

> conventional memory regions even if e820 has a entry which is greater than

nits: an entry

> 32bit address space.

32-bit

>
> Signed-off-by: Aiden Park 
> ---
> Changes in v3:
>   * Split a single commit to two relevant commits
>
> Changes in v2:
>   * Add efi_add_conventional_memory_map() for common code re-use
>
>  arch/x86/lib/e820.c | 17 ++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
>

Fixed the above nits, and

applied to u-boot-x86, thanks!
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v3 2/2] x86: efi_loader: Use efi_add_conventional_memory_map()

2019-09-09 Thread Bin Meng
Hi Aiden,

On Tue, Sep 10, 2019 at 1:40 PM Park, Aiden  wrote:
>
> Hi Bin,
>
> > -Original Message-
> > From: Heinrich Schuchardt [mailto:xypron.g...@gmx.de]
> > Sent: Tuesday, September 3, 2019 12:21 PM
> > To: Park, Aiden ; Bin Meng ;
> > Alexander Graf ; u-boot@lists.denx.de
> > Subject: Re: [PATCH v3 2/2] x86: efi_loader: Use
> > efi_add_conventional_memory_map()
> >
> > On 9/3/19 7:43 PM, Park, Aiden wrote:
> > > Use efi_add_conventional_memory_map() to configure EFI conventional
> > > memory properly with ram_top value. This will give 32bit mode U-Boot
> > > proper conventional memory regions even if e820 has a entry which is
> > > greater than 32bit address space.
> > >
> > > Signed-off-by: Aiden Park 
> >
> > Together with Bin's patch series for supporting >3GB
> > (https://lists.denx.de/pipermail/u-boot/2019-August/382332.html) I see the
> > following memory map on an 8GB qemu-x86_defconfig
> > (CONFIG_CMD_EFIDEBUG=y):
> >
> > ==> efidebug memmap
> > Type StartEnd  Attributes
> >    ==
> > CONVENTIONAL -000a WB
> > RESERVED 000a-0010 WB
> > CONVENTIONAL 0010-becf4000 WB
> > LOADER DATA  becf4000-becf5000 WB
> > BOOT DATAbecf5000-becf6000 WB
> > RUNTIME DATA becf6000-bed07000 WB|RT
> > BOOT DATAbed07000-bed09000 WB
> > RESERVED bed09000-bed0a000 WB
> > BOOT DATAbed0a000-bed0c000 WB
> > RUNTIME DATA bed0c000-bed0d000 WB|RT
> > LOADER DATA  bed0d000-bff4f000 WB
> > RUNTIME CODE bff4f000-bff5 WB|RT
> > LOADER DATA  bff5-c000 WB
> > RESERVED e000-f000 WB
> > BOOT DATA0001-00024000 WB
> >
> > Close to 3GB in low memory and 5 GB above the 4GB boundary.
> >
> > Tested-by: Heinrich Schuchardt 
> > Reviewed-by: Heinrich Schuchardt 
> >
> > @Bin:
> > If you plan to create a pull request for RC4, you can take both patches to 
> > avoid
> > unnecessary dependencies.
> >
> > Otherwise I will try to get patch 1/2 into RC4.
> >
> In U-Boot master branch, it looks Heinrich did pull request with patch 1/2 and
> it was already merged. Can you merge patch 2/2 as well? This blocks OS booting
> on real hardware. Appreciate your help.
>

Yes, I will take the other one. Thanks!

Regards,
Bin
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v3 2/2] x86: efi_loader: Use efi_add_conventional_memory_map()

2019-09-09 Thread Park, Aiden
Hi Bin,

> -Original Message-
> From: Heinrich Schuchardt [mailto:xypron.g...@gmx.de]
> Sent: Tuesday, September 3, 2019 12:21 PM
> To: Park, Aiden ; Bin Meng ;
> Alexander Graf ; u-boot@lists.denx.de
> Subject: Re: [PATCH v3 2/2] x86: efi_loader: Use
> efi_add_conventional_memory_map()
> 
> On 9/3/19 7:43 PM, Park, Aiden wrote:
> > Use efi_add_conventional_memory_map() to configure EFI conventional
> > memory properly with ram_top value. This will give 32bit mode U-Boot
> > proper conventional memory regions even if e820 has a entry which is
> > greater than 32bit address space.
> >
> > Signed-off-by: Aiden Park 
> 
> Together with Bin's patch series for supporting >3GB
> (https://lists.denx.de/pipermail/u-boot/2019-August/382332.html) I see the
> following memory map on an 8GB qemu-x86_defconfig
> (CONFIG_CMD_EFIDEBUG=y):
> 
> ==> efidebug memmap
> Type StartEnd  Attributes
>    ==
> CONVENTIONAL -000a WB
> RESERVED 000a-0010 WB
> CONVENTIONAL 0010-becf4000 WB
> LOADER DATA  becf4000-becf5000 WB
> BOOT DATAbecf5000-becf6000 WB
> RUNTIME DATA becf6000-bed07000 WB|RT
> BOOT DATAbed07000-bed09000 WB
> RESERVED bed09000-bed0a000 WB
> BOOT DATAbed0a000-bed0c000 WB
> RUNTIME DATA bed0c000-bed0d000 WB|RT
> LOADER DATA  bed0d000-bff4f000 WB
> RUNTIME CODE bff4f000-bff5 WB|RT
> LOADER DATA  bff5-c000 WB
> RESERVED e000-f000 WB
> BOOT DATA0001-00024000 WB
> 
> Close to 3GB in low memory and 5 GB above the 4GB boundary.
> 
> Tested-by: Heinrich Schuchardt 
> Reviewed-by: Heinrich Schuchardt 
> 
> @Bin:
> If you plan to create a pull request for RC4, you can take both patches to 
> avoid
> unnecessary dependencies.
> 
> Otherwise I will try to get patch 1/2 into RC4.
> 
In U-Boot master branch, it looks Heinrich did pull request with patch 1/2 and
it was already merged. Can you merge patch 2/2 as well? This blocks OS booting
on real hardware. Appreciate your help.

> Best regards
> 
> Heinrich

Best Regards,
Aiden
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v3 2/2] x86: efi_loader: Use efi_add_conventional_memory_map()

2019-09-03 Thread Heinrich Schuchardt

On 9/3/19 7:43 PM, Park, Aiden wrote:

Use efi_add_conventional_memory_map() to configure EFI conventional memory
properly with ram_top value. This will give 32bit mode U-Boot proper
conventional memory regions even if e820 has a entry which is greater than
32bit address space.

Signed-off-by: Aiden Park 


Together with Bin's patch series for supporting >3GB
(https://lists.denx.de/pipermail/u-boot/2019-August/382332.html) I see
the following memory map on an 8GB qemu-x86_defconfig
(CONFIG_CMD_EFIDEBUG=y):

==> efidebug memmap
Type StartEnd  Attributes
   ==
CONVENTIONAL -000a WB
RESERVED 000a-0010 WB
CONVENTIONAL 0010-becf4000 WB
LOADER DATA  becf4000-becf5000 WB
BOOT DATAbecf5000-becf6000 WB
RUNTIME DATA becf6000-bed07000 WB|RT
BOOT DATAbed07000-bed09000 WB
RESERVED bed09000-bed0a000 WB
BOOT DATAbed0a000-bed0c000 WB
RUNTIME DATA bed0c000-bed0d000 WB|RT
LOADER DATA  bed0d000-bff4f000 WB
RUNTIME CODE bff4f000-bff5 WB|RT
LOADER DATA  bff5-c000 WB
RESERVED e000-f000 WB
BOOT DATA0001-00024000 WB

Close to 3GB in low memory and 5 GB above the 4GB boundary.

Tested-by: Heinrich Schuchardt 
Reviewed-by: Heinrich Schuchardt 

@Bin:
If you plan to create a pull request for RC4, you can take both patches
to avoid unnecessary dependencies.

Otherwise I will try to get patch 1/2 into RC4.

Best regards

Heinrich
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH v3 2/2] x86: efi_loader: Use efi_add_conventional_memory_map()

2019-09-03 Thread Park, Aiden
Use efi_add_conventional_memory_map() to configure EFI conventional memory
properly with ram_top value. This will give 32bit mode U-Boot proper
conventional memory regions even if e820 has a entry which is greater than
32bit address space.

Signed-off-by: Aiden Park 
---
Changes in v3:
  * Split a single commit to two relevant commits

Changes in v2:
  * Add efi_add_conventional_memory_map() for common code re-use

 arch/x86/lib/e820.c | 17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/arch/x86/lib/e820.c b/arch/x86/lib/e820.c
index d6ae2c4e9d..26da4d2f27 100644
--- a/arch/x86/lib/e820.c
+++ b/arch/x86/lib/e820.c
@@ -41,14 +41,17 @@ void efi_add_known_memory(void)
 {
struct e820_entry e820[E820MAX];
unsigned int i, num;
-   u64 start, pages;
+   u64 start, pages, ram_top;
int type;
 
num = install_e820_map(ARRAY_SIZE(e820), e820);
 
+   ram_top = (u64)gd->ram_top & ~EFI_PAGE_MASK;
+   if (!ram_top)
+   ram_top = 0x1ULL;
+
for (i = 0; i < num; ++i) {
start = e820[i].addr;
-   pages = ALIGN(e820[i].size, EFI_PAGE_SIZE) >> EFI_PAGE_SHIFT;
 
switch (e820[i].type) {
case E820_RAM:
@@ -69,7 +72,15 @@ void efi_add_known_memory(void)
break;
}
 
-   efi_add_memory_map(start, pages, type, false);
+   if (type == EFI_CONVENTIONAL_MEMORY) {
+   efi_add_conventional_memory_map(start,
+   start + e820[i].size,
+   ram_top);
+   } else {
+   pages = ALIGN(e820[i].size, EFI_PAGE_SIZE)
+   >> EFI_PAGE_SHIFT;
+   efi_add_memory_map(start, pages, type, false);
+   }
}
 }
 #endif /* CONFIG_IS_ENABLED(EFI_LOADER) */
-- 
2.20.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot