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>
12 lines
287 B
C
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
|