1*1f85d74aSJean-Philippe Brucker /* 2*1f85d74aSJean-Philippe Brucker * ACPI Virtual I/O Translation Table implementation 3*1f85d74aSJean-Philippe Brucker * 4*1f85d74aSJean-Philippe Brucker * SPDX-License-Identifier: GPL-2.0-or-later 5*1f85d74aSJean-Philippe Brucker */ 6*1f85d74aSJean-Philippe Brucker #ifndef VIOT_H 7*1f85d74aSJean-Philippe Brucker #define VIOT_H 8*1f85d74aSJean-Philippe Brucker 9*1f85d74aSJean-Philippe Brucker void build_viot(MachineState *ms, GArray *table_data, BIOSLinker *linker, 10*1f85d74aSJean-Philippe Brucker uint16_t virtio_iommu_bdf, const char *oem_id, 11*1f85d74aSJean-Philippe Brucker const char *oem_table_id); 12*1f85d74aSJean-Philippe Brucker 13*1f85d74aSJean-Philippe Brucker #endif /* VIOT_H */ 14