sb,soc/amd,intel: Apply minor FADT fixes
[coreboot.git] / src / include / acpi / acpigen_pci.h
blob8a96eb3d25110f6c6d1c339fa30173a1977a3a0c
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef ACPIGEN_PCI_H
4 #define ACPIGEN_PCI_H
6 #include <device/device.h>
7 #include <device/pci_def.h>
8 #include <device/pci_type.h>
10 void acpigen_write_ADR_pci_devfn(pci_devfn_t devfn);
11 void acpigen_write_ADR_pci_device(const struct device *dev);
13 void acpigen_write_PRT_GSI_entry(unsigned int pci_dev, unsigned int acpi_pin, unsigned int gsi);
14 void acpigen_write_PRT_source_entry(unsigned int pci_dev, unsigned int acpi_pin,
15 const char *source_path, unsigned int index);
17 #endif /* ACPIGEN_PCI_H */