1*48cefd94SWei Yang /* 2*48cefd94SWei Yang * Support for generating PCI related ACPI tables and passing them to Guests 3*48cefd94SWei Yang * 4*48cefd94SWei Yang * Copyright (C) 2006 Fabrice Bellard 5*48cefd94SWei Yang * Copyright (C) 2008-2010 Kevin O'Connor <kevin@koconnor.net> 6*48cefd94SWei Yang * Copyright (C) 2013-2019 Red Hat Inc 7*48cefd94SWei Yang * Copyright (C) 2019 Intel Corporation 8*48cefd94SWei Yang * 9*48cefd94SWei Yang * Author: Wei Yang <richardw.yang@linux.intel.com> 10*48cefd94SWei Yang * Author: Michael S. Tsirkin <mst@redhat.com> 11*48cefd94SWei Yang * 12*48cefd94SWei Yang * This program is free software; you can redistribute it and/or modify 13*48cefd94SWei Yang * it under the terms of the GNU General Public License as published by 14*48cefd94SWei Yang * the Free Software Foundation; either version 2 of the License, or 15*48cefd94SWei Yang * (at your option) any later version. 16*48cefd94SWei Yang 17*48cefd94SWei Yang * This program is distributed in the hope that it will be useful, 18*48cefd94SWei Yang * but WITHOUT ANY WARRANTY; without even the implied warranty of 19*48cefd94SWei Yang * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20*48cefd94SWei Yang * GNU General Public License for more details. 21*48cefd94SWei Yang 22*48cefd94SWei Yang * You should have received a copy of the GNU General Public License along 23*48cefd94SWei Yang * with this program; if not, see <http://www.gnu.org/licenses/>. 24*48cefd94SWei Yang */ 25*48cefd94SWei Yang #ifndef HW_ACPI_PCI_H 26*48cefd94SWei Yang #define HW_ACPI_PCI_H 27*48cefd94SWei Yang 28*48cefd94SWei Yang typedef struct AcpiMcfgInfo { 29*48cefd94SWei Yang uint64_t base; 30*48cefd94SWei Yang uint32_t size; 31*48cefd94SWei Yang } AcpiMcfgInfo; 32*48cefd94SWei Yang 33*48cefd94SWei Yang #endif 34