Re: [PATCH v2 2/2] cmd: acpi: fix acpi list command

2023-11-18 Thread Heinrich Schuchardt
On 11/12/23 21:01, Simon Glass wrote: On Sun, 12 Nov 2023 at 00:03, Heinrich Schuchardt wrote: ACPI tables may comprise either RSDT, XSDT, or both. The current code fails to check the presence of the RSDT table before accessing it. This leads to an exception if the RSDT table is not provided.

Re: [PATCH v2 2/2] cmd: acpi: fix acpi list command

2023-11-12 Thread Simon Glass
On Sun, 12 Nov 2023 at 00:03, Heinrich Schuchardt wrote: > > ACPI tables may comprise either RSDT, XSDT, or both. The current code fails > to check the presence of the RSDT table before accessing it. This leads to > an exception if the RSDT table is not provided. > > The XSDT table takes

[PATCH v2 2/2] cmd: acpi: fix acpi list command

2023-11-11 Thread Heinrich Schuchardt
ACPI tables may comprise either RSDT, XSDT, or both. The current code fails to check the presence of the RSDT table before accessing it. This leads to an exception if the RSDT table is not provided. The XSDT table takes precedence over the RSDT table. Addresses in the XSDT table are 64-bit.