Merge tag 'qemu-macppc-20230206' of https://github.com/mcayland/qemu into staging
[qemu.git] / hw / pci-host / remote.c
blobbfb25ef6af851ec4c82ed6ef732322f51997d531
1 /*
2 * Remote PCI host device
4 * Unlike PCI host devices that model physical hardware, the purpose
5 * of this PCI host is to host multi-process QEMU devices.
7 * Multi-process QEMU extends the PCI host of a QEMU machine into a
8 * remote process. Any PCI device attached to the remote process is
9 * visible in the QEMU guest. This allows existing QEMU device models
10 * to be reused in the remote process.
12 * This PCI host is purely a container for PCI devices. It's fake in the
13 * sense that the guest never sees this PCI host and has no way of
14 * accessing it. Its job is just to provide the environment that QEMU
15 * PCI device models need when running in a remote process.
17 * Copyright © 2018, 2021 Oracle and/or its affiliates.
19 * This work is licensed under the terms of the GNU GPL, version 2 or later.
20 * See the COPYING file in the top-level directory.
24 #include "qemu/osdep.h"
26 #include "hw/pci/pci.h"
27 #include "hw/pci/pci_host.h"
28 #include "hw/pci/pcie_host.h"
29 #include "hw/qdev-properties.h"
30 #include "hw/pci-host/remote.h"
31 #include "exec/memory.h"
33 static const char *remote_pcihost_root_bus_path(PCIHostState *host_bridge,
34 PCIBus *rootbus)
36 return "0000:00";
39 static void remote_pcihost_realize(DeviceState *dev, Error **errp)
41 PCIHostState *pci = PCI_HOST_BRIDGE(dev);
42 RemotePCIHost *s = REMOTE_PCIHOST(dev);
44 pci->bus = pci_root_bus_new(DEVICE(s), "remote-pci",
45 s->mr_pci_mem, s->mr_sys_io,
46 0, TYPE_PCIE_BUS);
49 static void remote_pcihost_class_init(ObjectClass *klass, void *data)
51 DeviceClass *dc = DEVICE_CLASS(klass);
52 PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(klass);
54 hc->root_bus_path = remote_pcihost_root_bus_path;
55 dc->realize = remote_pcihost_realize;
57 dc->user_creatable = false;
58 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
59 dc->fw_name = "pci";
62 static const TypeInfo remote_pcihost_info = {
63 .name = TYPE_REMOTE_PCIHOST,
64 .parent = TYPE_PCIE_HOST_BRIDGE,
65 .instance_size = sizeof(RemotePCIHost),
66 .class_init = remote_pcihost_class_init,
69 static void remote_pcihost_register(void)
71 type_register_static(&remote_pcihost_info);
74 type_init(remote_pcihost_register)