acpi/acpigen: add acpigen_resource_mmio to generate MMIO resource

Add the acpigen_resource_mmio helper function to generate an MMIO range
resource.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Change-Id: I38d55dfcc2892bcb5d253a3aef6ed993cfdba0a5
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75045
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Felix Held 2023-05-09 16:39:57 +02:00
commit 21594fd161
2 changed files with 37 additions and 0 deletions

View file

@ -690,6 +690,7 @@ void acpigen_resource_qword(u16 res_type, u16 gen_flags, u16 type_flags,
void acpigen_resource_bus_number(u16 bus_base, u16 bus_limit);
void acpigen_resource_io(u16 io_base, u16 io_limit);
void acpigen_resource_mmio(u64 mmio_base, u64 mmio_limit, u16 type_flags);
/* Emits Notify(namestr, value) */
void acpigen_notify(const char *namestr, int value);