1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#ifndef QEMU_PCI_BRIDGE_H
27#define QEMU_PCI_BRIDGE_H
28
29#include "hw/pci/pci_device.h"
30#include "hw/pci/pci_bus.h"
31#include "hw/cxl/cxl.h"
32#include "qom/object.h"
33
34typedef struct PCIBridgeWindows PCIBridgeWindows;
35
36
37
38
39
40
41struct PCIBridgeWindows {
42 MemoryRegion alias_pref_mem;
43 MemoryRegion alias_mem;
44 MemoryRegion alias_io;
45
46
47
48
49
50
51 MemoryRegion alias_vga[QEMU_PCI_VGA_NUM_REGIONS];
52};
53
54#define TYPE_PCI_BRIDGE "base-pci-bridge"
55OBJECT_DECLARE_SIMPLE_TYPE(PCIBridge, PCI_BRIDGE)
56#define IS_PCI_BRIDGE(dev) object_dynamic_cast(OBJECT(dev), TYPE_PCI_BRIDGE)
57
58struct PCIBridge {
59
60 PCIDevice parent_obj;
61
62
63
64 PCIBus sec_bus;
65
66
67
68
69
70
71
72
73 MemoryRegion address_space_mem;
74 MemoryRegion address_space_io;
75
76 PCIBridgeWindows *windows;
77
78 pci_map_irq_fn map_irq;
79 const char *bus_name;
80};
81
82#define PCI_BRIDGE_DEV_PROP_CHASSIS_NR "chassis_nr"
83#define PCI_BRIDGE_DEV_PROP_MSI "msi"
84#define PCI_BRIDGE_DEV_PROP_SHPC "shpc"
85typedef struct CXLHost CXLHost;
86
87struct PXBDev {
88
89 PCIDevice parent_obj;
90
91
92 uint8_t bus_nr;
93 uint16_t numa_node;
94 bool bypass_iommu;
95 bool hdm_for_passthrough;
96 struct cxl_dev {
97 CXLHost *cxl_host_bridge;
98 } cxl;
99};
100
101#define TYPE_PXB_CXL_DEVICE "pxb-cxl"
102DECLARE_INSTANCE_CHECKER(PXBDev, PXB_CXL_DEV,
103 TYPE_PXB_CXL_DEVICE)
104
105int pci_bridge_ssvid_init(PCIDevice *dev, uint8_t offset,
106 uint16_t svid, uint16_t ssid,
107 Error **errp);
108
109PCIDevice *pci_bridge_get_device(PCIBus *bus);
110PCIBus *pci_bridge_get_sec_bus(PCIBridge *br);
111
112pcibus_t pci_bridge_get_base(const PCIDevice *bridge, uint8_t type);
113pcibus_t pci_bridge_get_limit(const PCIDevice *bridge, uint8_t type);
114
115void pci_bridge_update_mappings(PCIBridge *br);
116void pci_bridge_write_config(PCIDevice *d,
117 uint32_t address, uint32_t val, int len);
118void pci_bridge_disable_base_limit(PCIDevice *dev);
119void pci_bridge_reset(DeviceState *qdev);
120
121void pci_bridge_initfn(PCIDevice *pci_dev, const char *typename);
122void pci_bridge_exitfn(PCIDevice *pci_dev);
123
124void pci_bridge_dev_plug_cb(HotplugHandler *hotplug_dev, DeviceState *dev,
125 Error **errp);
126void pci_bridge_dev_unplug_cb(HotplugHandler *hotplug_dev, DeviceState *dev,
127 Error **errp);
128void pci_bridge_dev_unplug_request_cb(HotplugHandler *hotplug_dev,
129 DeviceState *dev, Error **errp);
130
131
132
133
134
135
136void pci_bridge_map_irq(PCIBridge *br, const char* bus_name,
137 pci_map_irq_fn map_irq);
138
139
140#define PCI_BRIDGE_CTL_VGA_16BIT 0x10
141#define PCI_BRIDGE_CTL_DISCARD 0x100
142#define PCI_BRIDGE_CTL_SEC_DISCARD 0x200
143#define PCI_BRIDGE_CTL_DISCARD_STATUS 0x400
144#define PCI_BRIDGE_CTL_DISCARD_SERR 0x800
145
146typedef struct PCIBridgeQemuCap {
147 uint8_t id;
148 uint8_t next;
149 uint8_t len;
150 uint8_t type;
151
152
153 uint32_t bus_res;
154 uint64_t io;
155 uint32_t mem;
156
157
158 uint32_t mem_pref_32;
159 uint64_t mem_pref_64;
160} PCIBridgeQemuCap;
161
162#define REDHAT_PCI_CAP_TYPE_OFFSET 3
163#define REDHAT_PCI_CAP_RESOURCE_RESERVE 1
164
165
166
167
168
169typedef struct PCIResReserve {
170 uint32_t bus;
171 uint64_t io;
172 uint64_t mem_non_pref;
173 uint64_t mem_pref_32;
174 uint64_t mem_pref_64;
175} PCIResReserve;
176
177#define REDHAT_PCI_CAP_RES_RESERVE_BUS_RES 4
178#define REDHAT_PCI_CAP_RES_RESERVE_IO 8
179#define REDHAT_PCI_CAP_RES_RESERVE_MEM 16
180#define REDHAT_PCI_CAP_RES_RESERVE_PREF_MEM_32 20
181#define REDHAT_PCI_CAP_RES_RESERVE_PREF_MEM_64 24
182#define REDHAT_PCI_CAP_RES_RESERVE_CAP_SIZE 32
183
184int pci_bridge_qemu_reserve_cap_init(PCIDevice *dev, int cap_offset,
185 PCIResReserve res_reserve, Error **errp);
186
187#endif
188