acpi: Write pointers to tables instead of addresses
authorSimon Glass <sjg@chromium.org>
Sun, 31 Dec 2023 15:25:54 +0000 (08:25 -0700)
committerSimon Glass <sjg@chromium.org>
Sun, 7 Jan 2024 20:45:07 +0000 (13:45 -0700)
commita8efebe71978b3b21e04c7f104987ada879e0800
treebd0394b2a6d67b3e40d13fe538576e91259a1708
parent5e3adc44a4da72b25fa78e9f9847a8c297b3ebaf
acpi: Write pointers to tables instead of addresses

Sandbox uses an API to map between addresses and pointers. This allows
it to have (emulated) memory at zero and avoid arch-specific addressing
details. It also allows memory-mapped peripherals to work.

As an example, on many machines sandbox maps address 100 to pointer
value 10000000.

However this is not correct for ACPI, if sandbox starts another program
(e.g EFI app) and passes it the tables. That app has no knowledge of
sandbox's address mapping. So to make this work we want to store
10000000 as the value in the table.

Add two new 'nomap' functions which clearly make this exeption to how
sandbox works.

This should allow EFI apps to access ACPI tables with sandbox, e.g. for
testing purposes.

Signed-off-by: Simon Glass <sjg@chromium.org>
Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
arch/sandbox/include/asm/io.h
arch/x86/lib/acpi_table.c
cmd/acpi.c
include/mapmem.h
lib/acpi/acpi.c
lib/acpi/acpi_table.c
lib/acpi/base.c
test/dm/acpi.c