coreboot/util/amdtool/acpimmio.h
Michał Żygowski 8f3626c4b5 util/amdtool: Add utility to dump useful information on AMD CPUs
Add an utility similar to inteltool, which dumps useful information
for porting a board to coreboot.

TEST=Use amdtool on Gigabyte MZ33-AR1 with vendor BIOS and coreboot.

Change-Id: I34405897d0f5670038e7923f3680a28090d92821
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/89492
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michał Kopeć <michal.kopec@3mdeb.com>
2025-11-18 13:30:21 +00:00

12 lines
287 B
C

/* amdtool - dump all registers on an AMD CPU + chipset based system */
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef AMDTOOL_ACPIMMIO_H
#define AMDTOOL_ACPIMMIO_H 1
#include "amdtool.h"
const uint8_t *get_acpi_mmio_bar(struct pci_dev *sb);
void acpimmio_cleanup(void);
#endif