Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-12-27 Thread Simon Glass
Hi Heinrich, On Tue, Dec 26, 2023 at 11:01 AM Heinrich Schuchardt wrote: > > On 10/15/23 04:45, Simon Glass wrote: > > When the SMBIOS table is written to an address above 4GB a 32-bit table > > address is not large enough. > > > > Use an SMBIOS3 table in that case. > > > > Note that we cannot us

Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-12-26 Thread Heinrich Schuchardt
On 10/15/23 04:45, Simon Glass wrote: When the SMBIOS table is written to an address above 4GB a 32-bit table address is not large enough. Use an SMBIOS3 table in that case. Note that we cannot use efi_allocate_pages() since this function has nothing to do with EFI. There is no equivalent funct

Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-12-03 Thread Simon Glass
Hi Tom, On Sat, 2 Dec 2023 at 12:03, Tom Rini wrote: > > On Sat, Dec 02, 2023 at 11:27:15AM -0700, Simon Glass wrote: > > Hi, > > > > On Tue, 21 Nov 2023 at 13:49, Tom Rini wrote: > > > > > > On Tue, Nov 21, 2023 at 10:40:39PM +0200, Ilias Apalodimas wrote: > > > > Hi Simon > > > > > > > > On Tu

Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-12-02 Thread Tom Rini
On Sat, Dec 02, 2023 at 11:27:15AM -0700, Simon Glass wrote: > Hi, > > On Tue, 21 Nov 2023 at 13:49, Tom Rini wrote: > > > > On Tue, Nov 21, 2023 at 10:40:39PM +0200, Ilias Apalodimas wrote: > > > Hi Simon > > > > > > On Tue, 21 Nov 2023 at 04:17, Simon Glass wrote: > > > > > > > > Hi Heinrich,

Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-12-02 Thread Simon Glass
Hi, On Tue, 21 Nov 2023 at 13:49, Tom Rini wrote: > > On Tue, Nov 21, 2023 at 10:40:39PM +0200, Ilias Apalodimas wrote: > > Hi Simon > > > > On Tue, 21 Nov 2023 at 04:17, Simon Glass wrote: > > > > > > Hi Heinrich, > > > > > > On Mon, 20 Nov 2023 at 19:11, Heinrich Schuchardt > > > wrote: > >

Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-11-21 Thread Tom Rini
On Tue, Nov 21, 2023 at 10:40:39PM +0200, Ilias Apalodimas wrote: > Hi Simon > > On Tue, 21 Nov 2023 at 04:17, Simon Glass wrote: > > > > Hi Heinrich, > > > > On Mon, 20 Nov 2023 at 19:11, Heinrich Schuchardt > > wrote: > > > > > > On 10/15/23 04:45, Simon Glass wrote: > > > > When the SMBIOS t

Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-11-21 Thread Ilias Apalodimas
Hi Simon On Tue, 21 Nov 2023 at 04:17, Simon Glass wrote: > > Hi Heinrich, > > On Mon, 20 Nov 2023 at 19:11, Heinrich Schuchardt wrote: > > > > On 10/15/23 04:45, Simon Glass wrote: > > > When the SMBIOS table is written to an address above 4GB a 32-bit table > > > address is not large enough. >

Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-11-20 Thread Simon Glass
Hi Heinrich, On Mon, 20 Nov 2023 at 19:11, Heinrich Schuchardt wrote: > > On 10/15/23 04:45, Simon Glass wrote: > > When the SMBIOS table is written to an address above 4GB a 32-bit table > > address is not large enough. > > > > Use an SMBIOS3 table in that case. > > > > Note that we cannot use e

Re: [PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-11-20 Thread Heinrich Schuchardt
On 10/15/23 04:45, Simon Glass wrote: When the SMBIOS table is written to an address above 4GB a 32-bit table address is not large enough. Use an SMBIOS3 table in that case. Note that we cannot use efi_allocate_pages() since this function has nothing to do with EFI. There is no equivalent funct

[PATCH v2 3/6] smbios: Use SMBIOS 3.0 to support an address above 4GB

2023-10-15 Thread Simon Glass
When the SMBIOS table is written to an address above 4GB a 32-bit table address is not large enough. Use an SMBIOS3 table in that case. Note that we cannot use efi_allocate_pages() since this function has nothing to do with EFI. There is no equivalent function to allocate memory below 4GB in U-Bo