Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / include / hw / pci-host / remote.h
blob690a01f0fe9e00adccbcfda2f337bdfb88848d92
1 /*
2 * PCI Host for remote device
4 * Copyright © 2018, 2021 Oracle and/or its affiliates.
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
9 */
11 #ifndef PCI_HOST_REMOTE_H
12 #define PCI_HOST_REMOTE_H
14 #include "exec/memory.h"
15 #include "hw/pci/pcie_host.h"
17 #define TYPE_REMOTE_PCIHOST "remote-pcihost"
18 OBJECT_DECLARE_SIMPLE_TYPE(RemotePCIHost, REMOTE_PCIHOST)
20 struct RemotePCIHost {
21 /*< private >*/
22 PCIExpressHost parent_obj;
23 /*< public >*/
25 MemoryRegion *mr_pci_mem;
26 MemoryRegion *mr_sys_io;
27 MemoryRegion *mr_sys_mem;
30 #endif