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.h"
30#include "hw/pci/pci_bus.h"
31
32typedef struct PCIBridgeWindows PCIBridgeWindows;
33
34
35
36
37
38
39struct PCIBridgeWindows {
40 MemoryRegion alias_pref_mem;
41 MemoryRegion alias_mem;
42 MemoryRegion alias_io;
43
44
45
46
47
48
49 MemoryRegion alias_vga[QEMU_PCI_VGA_NUM_REGIONS];
50};
51
52#define TYPE_PCI_BRIDGE "base-pci-bridge"
53#define PCI_BRIDGE(obj) OBJECT_CHECK(PCIBridge, (obj), TYPE_PCI_BRIDGE)
54
55struct PCIBridge {
56
57 PCIDevice parent_obj;
58
59
60
61 PCIBus sec_bus;
62
63
64
65
66
67
68
69
70 MemoryRegion address_space_mem;
71 MemoryRegion address_space_io;
72
73 PCIBridgeWindows *windows;
74
75 pci_map_irq_fn map_irq;
76 const char *bus_name;
77};
78
79#define PCI_BRIDGE_DEV_PROP_CHASSIS_NR "chassis_nr"
80#define PCI_BRIDGE_DEV_PROP_MSI "msi"
81#define PCI_BRIDGE_DEV_PROP_SHPC "shpc"
82
83int pci_bridge_ssvid_init(PCIDevice *dev, uint8_t offset,
84 uint16_t svid, uint16_t ssid,
85 Error **errp);
86
87PCIDevice *pci_bridge_get_device(PCIBus *bus);
88PCIBus *pci_bridge_get_sec_bus(PCIBridge *br);
89
90pcibus_t pci_bridge_get_base(const PCIDevice *bridge, uint8_t type);
91pcibus_t pci_bridge_get_limit(const PCIDevice *bridge, uint8_t type);
92
93void pci_bridge_update_mappings(PCIBridge *br);
94void pci_bridge_write_config(PCIDevice *d,
95 uint32_t address, uint32_t val, int len);
96void pci_bridge_disable_base_limit(PCIDevice *dev);
97void pci_bridge_reset(DeviceState *qdev);
98
99void pci_bridge_initfn(PCIDevice *pci_dev, const char *typename);
100void pci_bridge_exitfn(PCIDevice *pci_dev);
101
102void pci_bridge_dev_plug_cb(HotplugHandler *hotplug_dev, DeviceState *dev,
103 Error **errp);
104void pci_bridge_dev_unplug_cb(HotplugHandler *hotplug_dev, DeviceState *dev,
105 Error **errp);
106void pci_bridge_dev_unplug_request_cb(HotplugHandler *hotplug_dev,
107 DeviceState *dev, Error **errp);
108
109
110
111
112
113
114void pci_bridge_map_irq(PCIBridge *br, const char* bus_name,
115 pci_map_irq_fn map_irq);
116
117
118#define PCI_BRIDGE_CTL_VGA_16BIT 0x10
119#define PCI_BRIDGE_CTL_DISCARD 0x100
120#define PCI_BRIDGE_CTL_SEC_DISCARD 0x200
121#define PCI_BRIDGE_CTL_DISCARD_STATUS 0x400
122#define PCI_BRIDGE_CTL_DISCARD_SERR 0x800
123
124typedef struct PCIBridgeQemuCap {
125 uint8_t id;
126 uint8_t next;
127 uint8_t len;
128 uint8_t type;
129
130
131 uint32_t bus_res;
132 uint64_t io;
133 uint32_t mem;
134
135
136 uint32_t mem_pref_32;
137 uint64_t mem_pref_64;
138} PCIBridgeQemuCap;
139
140#define REDHAT_PCI_CAP_RESOURCE_RESERVE 1
141
142
143
144
145
146typedef struct PCIResReserve {
147 uint32_t bus;
148 uint64_t io;
149 uint64_t mem_non_pref;
150 uint64_t mem_pref_32;
151 uint64_t mem_pref_64;
152} PCIResReserve;
153
154int pci_bridge_qemu_reserve_cap_init(PCIDevice *dev, int cap_offset,
155 PCIResReserve res_reserve, Error **errp);
156
157#endif
158