Statistics
| Branch: | Revision:

root / hw / pci.h @ ab902981

History | View | Annotate | Download (20.3 kB)

1 87ecb68b pbrook
#ifndef QEMU_PCI_H
2 87ecb68b pbrook
#define QEMU_PCI_H
3 87ecb68b pbrook
4 376253ec aliguori
#include "qemu-common.h"
5 376253ec aliguori
6 6b1b92d3 Paul Brook
#include "qdev.h"
7 1e39101c Avi Kivity
#include "memory.h"
8 ec174575 David Gibson
#include "dma.h"
9 6b1b92d3 Paul Brook
10 87ecb68b pbrook
/* PCI includes legacy ISA access.  */
11 87ecb68b pbrook
#include "isa.h"
12 87ecb68b pbrook
13 0428527c Isaku Yamahata
#include "pcie.h"
14 0428527c Isaku Yamahata
15 87ecb68b pbrook
/* PCI bus */
16 87ecb68b pbrook
17 3ae80618 aliguori
#define PCI_DEVFN(slot, func)   ((((slot) & 0x1f) << 3) | ((func) & 0x07))
18 3ae80618 aliguori
#define PCI_SLOT(devfn)         (((devfn) >> 3) & 0x1f)
19 3ae80618 aliguori
#define PCI_FUNC(devfn)         ((devfn) & 0x07)
20 90a20dbb Isaku Yamahata
#define PCI_SLOT_MAX            32
21 6fa84913 Isaku Yamahata
#define PCI_FUNC_MAX            8
22 3ae80618 aliguori
23 a770dc7e aliguori
/* Class, Vendor and Device IDs from Linux's pci_ids.h */
24 a770dc7e aliguori
#include "pci_ids.h"
25 173a543b blueswir1
26 a770dc7e aliguori
/* QEMU-specific Vendor and Device ID definitions */
27 6f338c34 aliguori
28 a770dc7e aliguori
/* IBM (0x1014) */
29 a770dc7e aliguori
#define PCI_DEVICE_ID_IBM_440GX          0x027f
30 4ebcf884 blueswir1
#define PCI_DEVICE_ID_IBM_OPENPIC2       0xffff
31 deb54399 aliguori
32 a770dc7e aliguori
/* Hitachi (0x1054) */
33 deb54399 aliguori
#define PCI_VENDOR_ID_HITACHI            0x1054
34 a770dc7e aliguori
#define PCI_DEVICE_ID_HITACHI_SH7751R    0x350e
35 deb54399 aliguori
36 a770dc7e aliguori
/* Apple (0x106b) */
37 4ebcf884 blueswir1
#define PCI_DEVICE_ID_APPLE_343S1201     0x0010
38 4ebcf884 blueswir1
#define PCI_DEVICE_ID_APPLE_UNI_N_I_PCI  0x001e
39 4ebcf884 blueswir1
#define PCI_DEVICE_ID_APPLE_UNI_N_PCI    0x001f
40 4ebcf884 blueswir1
#define PCI_DEVICE_ID_APPLE_UNI_N_KEYL   0x0022
41 a770dc7e aliguori
#define PCI_DEVICE_ID_APPLE_IPID_USB     0x003f
42 deb54399 aliguori
43 a770dc7e aliguori
/* Realtek (0x10ec) */
44 a770dc7e aliguori
#define PCI_DEVICE_ID_REALTEK_8029       0x8029
45 deb54399 aliguori
46 a770dc7e aliguori
/* Xilinx (0x10ee) */
47 a770dc7e aliguori
#define PCI_DEVICE_ID_XILINX_XC2VP30     0x0300
48 deb54399 aliguori
49 a770dc7e aliguori
/* Marvell (0x11ab) */
50 a770dc7e aliguori
#define PCI_DEVICE_ID_MARVELL_GT6412X    0x4620
51 deb54399 aliguori
52 a770dc7e aliguori
/* QEMU/Bochs VGA (0x1234) */
53 4ebcf884 blueswir1
#define PCI_VENDOR_ID_QEMU               0x1234
54 4ebcf884 blueswir1
#define PCI_DEVICE_ID_QEMU_VGA           0x1111
55 4ebcf884 blueswir1
56 a770dc7e aliguori
/* VMWare (0x15ad) */
57 deb54399 aliguori
#define PCI_VENDOR_ID_VMWARE             0x15ad
58 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_SVGA2       0x0405
59 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_SVGA        0x0710
60 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_NET         0x0720
61 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_SCSI        0x0730
62 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_IDE         0x1729
63 deb54399 aliguori
64 cef3017c aliguori
/* Intel (0x8086) */
65 a770dc7e aliguori
#define PCI_DEVICE_ID_INTEL_82551IT      0x1209
66 d6fd1e66 Stefan Weil
#define PCI_DEVICE_ID_INTEL_82557        0x1229
67 1a5a86fb Alexander Graf
#define PCI_DEVICE_ID_INTEL_82801IR      0x2922
68 74c62ba8 aurel32
69 deb54399 aliguori
/* Red Hat / Qumranet (for QEMU) -- see pci-ids.txt */
70 d350d97d aliguori
#define PCI_VENDOR_ID_REDHAT_QUMRANET    0x1af4
71 d350d97d aliguori
#define PCI_SUBVENDOR_ID_REDHAT_QUMRANET 0x1af4
72 d350d97d aliguori
#define PCI_SUBDEVICE_ID_QEMU            0x1100
73 d350d97d aliguori
74 d350d97d aliguori
#define PCI_DEVICE_ID_VIRTIO_NET         0x1000
75 d350d97d aliguori
#define PCI_DEVICE_ID_VIRTIO_BLOCK       0x1001
76 d350d97d aliguori
#define PCI_DEVICE_ID_VIRTIO_BALLOON     0x1002
77 14d50bef aliguori
#define PCI_DEVICE_ID_VIRTIO_CONSOLE     0x1003
78 973abc7f Stefan Hajnoczi
#define PCI_DEVICE_ID_VIRTIO_SCSI        0x1004
79 d350d97d aliguori
80 4f8589e1 Isaku Yamahata
#define FMT_PCIBUS                      PRIx64
81 6e355d90 Isaku Yamahata
82 87ecb68b pbrook
typedef void PCIConfigWriteFunc(PCIDevice *pci_dev,
83 87ecb68b pbrook
                                uint32_t address, uint32_t data, int len);
84 87ecb68b pbrook
typedef uint32_t PCIConfigReadFunc(PCIDevice *pci_dev,
85 87ecb68b pbrook
                                   uint32_t address, int len);
86 87ecb68b pbrook
typedef void PCIMapIORegionFunc(PCIDevice *pci_dev, int region_num,
87 6e355d90 Isaku Yamahata
                                pcibus_t addr, pcibus_t size, int type);
88 f90c2bcd Alex Williamson
typedef void PCIUnregisterFunc(PCIDevice *pci_dev);
89 87ecb68b pbrook
90 87ecb68b pbrook
typedef struct PCIIORegion {
91 6e355d90 Isaku Yamahata
    pcibus_t addr; /* current PCI mapping address. -1 means not mapped */
92 6e355d90 Isaku Yamahata
#define PCI_BAR_UNMAPPED (~(pcibus_t)0)
93 6e355d90 Isaku Yamahata
    pcibus_t size;
94 87ecb68b pbrook
    uint8_t type;
95 79ff8cb0 Avi Kivity
    MemoryRegion *memory;
96 5968eca3 Avi Kivity
    MemoryRegion *address_space;
97 87ecb68b pbrook
} PCIIORegion;
98 87ecb68b pbrook
99 87ecb68b pbrook
#define PCI_ROM_SLOT 6
100 87ecb68b pbrook
#define PCI_NUM_REGIONS 7
101 87ecb68b pbrook
102 fb58a897 Isaku Yamahata
#include "pci_regs.h"
103 fb58a897 Isaku Yamahata
104 fb58a897 Isaku Yamahata
/* PCI HEADER_TYPE */
105 6407f373 Isaku Yamahata
#define  PCI_HEADER_TYPE_MULTI_FUNCTION 0x80
106 8098ed41 aurel32
107 b7ee1603 Michael S. Tsirkin
/* Size of the standard PCI config header */
108 b7ee1603 Michael S. Tsirkin
#define PCI_CONFIG_HEADER_SIZE 0x40
109 b7ee1603 Michael S. Tsirkin
/* Size of the standard PCI config space */
110 b7ee1603 Michael S. Tsirkin
#define PCI_CONFIG_SPACE_SIZE 0x100
111 a9f49946 Isaku Yamahata
/* Size of the standart PCIe config space: 4KB */
112 a9f49946 Isaku Yamahata
#define PCIE_CONFIG_SPACE_SIZE  0x1000
113 b7ee1603 Michael S. Tsirkin
114 e369cad7 Isaku Yamahata
#define PCI_NUM_PINS 4 /* A-D */
115 e369cad7 Isaku Yamahata
116 02eb84d0 Michael S. Tsirkin
/* Bits in cap_present field. */
117 02eb84d0 Michael S. Tsirkin
enum {
118 e4c7d2ae Isaku Yamahata
    QEMU_PCI_CAP_MSI = 0x1,
119 e4c7d2ae Isaku Yamahata
    QEMU_PCI_CAP_MSIX = 0x2,
120 e4c7d2ae Isaku Yamahata
    QEMU_PCI_CAP_EXPRESS = 0x4,
121 49823868 Isaku Yamahata
122 49823868 Isaku Yamahata
    /* multifunction capable device */
123 e4c7d2ae Isaku Yamahata
#define QEMU_PCI_CAP_MULTIFUNCTION_BITNR        3
124 49823868 Isaku Yamahata
    QEMU_PCI_CAP_MULTIFUNCTION = (1 << QEMU_PCI_CAP_MULTIFUNCTION_BITNR),
125 b1aeb926 Isaku Yamahata
126 b1aeb926 Isaku Yamahata
    /* command register SERR bit enabled */
127 b1aeb926 Isaku Yamahata
#define QEMU_PCI_CAP_SERR_BITNR 4
128 b1aeb926 Isaku Yamahata
    QEMU_PCI_CAP_SERR = (1 << QEMU_PCI_CAP_SERR_BITNR),
129 1dc324d2 Michael S. Tsirkin
    /* Standard hot plug controller. */
130 1dc324d2 Michael S. Tsirkin
#define QEMU_PCI_SHPC_BITNR 5
131 1dc324d2 Michael S. Tsirkin
    QEMU_PCI_CAP_SHPC = (1 << QEMU_PCI_SHPC_BITNR),
132 762833b3 Michael S. Tsirkin
#define QEMU_PCI_SLOTID_BITNR 6
133 762833b3 Michael S. Tsirkin
    QEMU_PCI_CAP_SLOTID = (1 << QEMU_PCI_SLOTID_BITNR),
134 02eb84d0 Michael S. Tsirkin
};
135 02eb84d0 Michael S. Tsirkin
136 40021f08 Anthony Liguori
#define TYPE_PCI_DEVICE "pci-device"
137 40021f08 Anthony Liguori
#define PCI_DEVICE(obj) \
138 40021f08 Anthony Liguori
     OBJECT_CHECK(PCIDevice, (obj), TYPE_PCI_DEVICE)
139 40021f08 Anthony Liguori
#define PCI_DEVICE_CLASS(klass) \
140 40021f08 Anthony Liguori
     OBJECT_CLASS_CHECK(PCIDeviceClass, (klass), TYPE_PCI_DEVICE)
141 40021f08 Anthony Liguori
#define PCI_DEVICE_GET_CLASS(obj) \
142 40021f08 Anthony Liguori
     OBJECT_GET_CLASS(PCIDeviceClass, (obj), TYPE_PCI_DEVICE)
143 40021f08 Anthony Liguori
144 3afa9bb4 Michael S. Tsirkin
typedef struct PCIINTxRoute {
145 3afa9bb4 Michael S. Tsirkin
    enum {
146 3afa9bb4 Michael S. Tsirkin
        PCI_INTX_ENABLED,
147 3afa9bb4 Michael S. Tsirkin
        PCI_INTX_INVERTED,
148 3afa9bb4 Michael S. Tsirkin
        PCI_INTX_DISABLED,
149 3afa9bb4 Michael S. Tsirkin
    } mode;
150 3afa9bb4 Michael S. Tsirkin
    int irq;
151 3afa9bb4 Michael S. Tsirkin
} PCIINTxRoute;
152 3afa9bb4 Michael S. Tsirkin
153 40021f08 Anthony Liguori
typedef struct PCIDeviceClass {
154 40021f08 Anthony Liguori
    DeviceClass parent_class;
155 40021f08 Anthony Liguori
156 40021f08 Anthony Liguori
    int (*init)(PCIDevice *dev);
157 40021f08 Anthony Liguori
    PCIUnregisterFunc *exit;
158 40021f08 Anthony Liguori
    PCIConfigReadFunc *config_read;
159 40021f08 Anthony Liguori
    PCIConfigWriteFunc *config_write;
160 40021f08 Anthony Liguori
161 40021f08 Anthony Liguori
    uint16_t vendor_id;
162 40021f08 Anthony Liguori
    uint16_t device_id;
163 40021f08 Anthony Liguori
    uint8_t revision;
164 40021f08 Anthony Liguori
    uint16_t class_id;
165 40021f08 Anthony Liguori
    uint16_t subsystem_vendor_id;       /* only for header type = 0 */
166 40021f08 Anthony Liguori
    uint16_t subsystem_id;              /* only for header type = 0 */
167 40021f08 Anthony Liguori
168 40021f08 Anthony Liguori
    /*
169 40021f08 Anthony Liguori
     * pci-to-pci bridge or normal device.
170 40021f08 Anthony Liguori
     * This doesn't mean pci host switch.
171 40021f08 Anthony Liguori
     * When card bus bridge is supported, this would be enhanced.
172 40021f08 Anthony Liguori
     */
173 40021f08 Anthony Liguori
    int is_bridge;
174 40021f08 Anthony Liguori
175 40021f08 Anthony Liguori
    /* pcie stuff */
176 40021f08 Anthony Liguori
    int is_express;   /* is this device pci express? */
177 40021f08 Anthony Liguori
178 40021f08 Anthony Liguori
    /* device isn't hot-pluggable */
179 40021f08 Anthony Liguori
    int no_hotplug;
180 40021f08 Anthony Liguori
181 40021f08 Anthony Liguori
    /* rom bar */
182 40021f08 Anthony Liguori
    const char *romfile;
183 40021f08 Anthony Liguori
} PCIDeviceClass;
184 40021f08 Anthony Liguori
185 0ae16251 Jan Kiszka
typedef void (*PCIINTxRoutingNotifier)(PCIDevice *dev);
186 2cdfe53c Jan Kiszka
typedef int (*MSIVectorUseNotifier)(PCIDevice *dev, unsigned int vector,
187 2cdfe53c Jan Kiszka
                                      MSIMessage msg);
188 2cdfe53c Jan Kiszka
typedef void (*MSIVectorReleaseNotifier)(PCIDevice *dev, unsigned int vector);
189 2cdfe53c Jan Kiszka
190 87ecb68b pbrook
struct PCIDevice {
191 6b1b92d3 Paul Brook
    DeviceState qdev;
192 5fa45de5 David Gibson
193 87ecb68b pbrook
    /* PCI config space */
194 a9f49946 Isaku Yamahata
    uint8_t *config;
195 b7ee1603 Michael S. Tsirkin
196 ebabb67a Stefan Weil
    /* Used to enable config checks on load. Note that writable bits are
197 bd4b65ee Michael S. Tsirkin
     * never checked even if set in cmask. */
198 a9f49946 Isaku Yamahata
    uint8_t *cmask;
199 bd4b65ee Michael S. Tsirkin
200 b7ee1603 Michael S. Tsirkin
    /* Used to implement R/W bytes */
201 a9f49946 Isaku Yamahata
    uint8_t *wmask;
202 87ecb68b pbrook
203 92ba5f51 Isaku Yamahata
    /* Used to implement RW1C(Write 1 to Clear) bytes */
204 92ba5f51 Isaku Yamahata
    uint8_t *w1cmask;
205 92ba5f51 Isaku Yamahata
206 6f4cbd39 Michael S. Tsirkin
    /* Used to allocate config space for capabilities. */
207 a9f49946 Isaku Yamahata
    uint8_t *used;
208 6f4cbd39 Michael S. Tsirkin
209 87ecb68b pbrook
    /* the following fields are read only */
210 87ecb68b pbrook
    PCIBus *bus;
211 09f1bbcd Michael Roth
    int32_t devfn;
212 87ecb68b pbrook
    char name[64];
213 87ecb68b pbrook
    PCIIORegion io_regions[PCI_NUM_REGIONS];
214 5fa45de5 David Gibson
    DMAContext *dma;
215 87ecb68b pbrook
216 87ecb68b pbrook
    /* do not access the following fields */
217 87ecb68b pbrook
    PCIConfigReadFunc *config_read;
218 87ecb68b pbrook
    PCIConfigWriteFunc *config_write;
219 87ecb68b pbrook
220 87ecb68b pbrook
    /* IRQ objects for the INTA-INTD pins.  */
221 87ecb68b pbrook
    qemu_irq *irq;
222 87ecb68b pbrook
223 87ecb68b pbrook
    /* Current IRQ levels.  Used internally by the generic PCI code.  */
224 d036bb21 Michael S. Tsirkin
    uint8_t irq_state;
225 02eb84d0 Michael S. Tsirkin
226 02eb84d0 Michael S. Tsirkin
    /* Capability bits */
227 02eb84d0 Michael S. Tsirkin
    uint32_t cap_present;
228 02eb84d0 Michael S. Tsirkin
229 02eb84d0 Michael S. Tsirkin
    /* Offset of MSI-X capability in config space */
230 02eb84d0 Michael S. Tsirkin
    uint8_t msix_cap;
231 02eb84d0 Michael S. Tsirkin
232 02eb84d0 Michael S. Tsirkin
    /* MSI-X entries */
233 02eb84d0 Michael S. Tsirkin
    int msix_entries_nr;
234 02eb84d0 Michael S. Tsirkin
235 d35e428c Alex Williamson
    /* Space to store MSIX table & pending bit array */
236 d35e428c Alex Williamson
    uint8_t *msix_table;
237 d35e428c Alex Williamson
    uint8_t *msix_pba;
238 53f94925 Alex Williamson
    /* MemoryRegion container for msix exclusive BAR setup */
239 53f94925 Alex Williamson
    MemoryRegion msix_exclusive_bar;
240 d35e428c Alex Williamson
    /* Memory Regions for MSIX table and pending bit entries. */
241 d35e428c Alex Williamson
    MemoryRegion msix_table_mmio;
242 d35e428c Alex Williamson
    MemoryRegion msix_pba_mmio;
243 02eb84d0 Michael S. Tsirkin
    /* Reference-count for entries actually in use by driver. */
244 02eb84d0 Michael S. Tsirkin
    unsigned *msix_entry_used;
245 50322249 Michael S. Tsirkin
    /* MSIX function mask set or MSIX disabled */
246 50322249 Michael S. Tsirkin
    bool msix_function_masked;
247 f16c4abf Juan Quintela
    /* Version id needed for VMState */
248 f16c4abf Juan Quintela
    int32_t version_id;
249 c2039bd0 Anthony Liguori
250 e4c7d2ae Isaku Yamahata
    /* Offset of MSI capability in config space */
251 e4c7d2ae Isaku Yamahata
    uint8_t msi_cap;
252 e4c7d2ae Isaku Yamahata
253 0428527c Isaku Yamahata
    /* PCI Express */
254 0428527c Isaku Yamahata
    PCIExpressDevice exp;
255 0428527c Isaku Yamahata
256 1dc324d2 Michael S. Tsirkin
    /* SHPC */
257 1dc324d2 Michael S. Tsirkin
    SHPCDevice *shpc;
258 1dc324d2 Michael S. Tsirkin
259 c2039bd0 Anthony Liguori
    /* Location of option rom */
260 8c52c8f3 Gerd Hoffmann
    char *romfile;
261 14caaf7f Avi Kivity
    bool has_rom;
262 14caaf7f Avi Kivity
    MemoryRegion rom;
263 88169ddf Gerd Hoffmann
    uint32_t rom_bar;
264 2cdfe53c Jan Kiszka
265 0ae16251 Jan Kiszka
    /* INTx routing notifier */
266 0ae16251 Jan Kiszka
    PCIINTxRoutingNotifier intx_routing_notifier;
267 0ae16251 Jan Kiszka
268 2cdfe53c Jan Kiszka
    /* MSI-X notifiers */
269 2cdfe53c Jan Kiszka
    MSIVectorUseNotifier msix_vector_use_notifier;
270 2cdfe53c Jan Kiszka
    MSIVectorReleaseNotifier msix_vector_release_notifier;
271 87ecb68b pbrook
};
272 87ecb68b pbrook
273 e824b2cc Avi Kivity
void pci_register_bar(PCIDevice *pci_dev, int region_num,
274 e824b2cc Avi Kivity
                      uint8_t attr, MemoryRegion *memory);
275 16a96f28 Avi Kivity
pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num);
276 87ecb68b pbrook
277 ca77089d Isaku Yamahata
int pci_add_capability(PCIDevice *pdev, uint8_t cap_id,
278 ca77089d Isaku Yamahata
                       uint8_t offset, uint8_t size);
279 6f4cbd39 Michael S. Tsirkin
280 6f4cbd39 Michael S. Tsirkin
void pci_del_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size);
281 6f4cbd39 Michael S. Tsirkin
282 6f4cbd39 Michael S. Tsirkin
uint8_t pci_find_capability(PCIDevice *pci_dev, uint8_t cap_id);
283 6f4cbd39 Michael S. Tsirkin
284 6f4cbd39 Michael S. Tsirkin
285 87ecb68b pbrook
uint32_t pci_default_read_config(PCIDevice *d,
286 87ecb68b pbrook
                                 uint32_t address, int len);
287 87ecb68b pbrook
void pci_default_write_config(PCIDevice *d,
288 87ecb68b pbrook
                              uint32_t address, uint32_t val, int len);
289 87ecb68b pbrook
void pci_device_save(PCIDevice *s, QEMUFile *f);
290 87ecb68b pbrook
int pci_device_load(PCIDevice *s, QEMUFile *f);
291 f5e6fed8 Avi Kivity
MemoryRegion *pci_address_space(PCIDevice *dev);
292 e11d6439 Richard Henderson
MemoryRegion *pci_address_space_io(PCIDevice *dev);
293 87ecb68b pbrook
294 5d4e84c8 Juan Quintela
typedef void (*pci_set_irq_fn)(void *opaque, int irq_num, int level);
295 87ecb68b pbrook
typedef int (*pci_map_irq_fn)(PCIDevice *pci_dev, int irq_num);
296 3afa9bb4 Michael S. Tsirkin
typedef PCIINTxRoute (*pci_route_irq_fn)(void *opaque, int pin);
297 e927d487 Michael S. Tsirkin
298 e927d487 Michael S. Tsirkin
typedef enum {
299 e927d487 Michael S. Tsirkin
    PCI_HOTPLUG_DISABLED,
300 e927d487 Michael S. Tsirkin
    PCI_HOTPLUG_ENABLED,
301 e927d487 Michael S. Tsirkin
    PCI_COLDPLUG_ENABLED,
302 e927d487 Michael S. Tsirkin
} PCIHotplugState;
303 e927d487 Michael S. Tsirkin
304 e927d487 Michael S. Tsirkin
typedef int (*pci_hotplug_fn)(DeviceState *qdev, PCIDevice *pci_dev,
305 e927d487 Michael S. Tsirkin
                              PCIHotplugState state);
306 21eea4b3 Gerd Hoffmann
void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
307 1e39101c Avi Kivity
                         const char *name,
308 aee97b84 Avi Kivity
                         MemoryRegion *address_space_mem,
309 aee97b84 Avi Kivity
                         MemoryRegion *address_space_io,
310 1e39101c Avi Kivity
                         uint8_t devfn_min);
311 1e39101c Avi Kivity
PCIBus *pci_bus_new(DeviceState *parent, const char *name,
312 aee97b84 Avi Kivity
                    MemoryRegion *address_space_mem,
313 aee97b84 Avi Kivity
                    MemoryRegion *address_space_io,
314 aee97b84 Avi Kivity
                    uint8_t devfn_min);
315 21eea4b3 Gerd Hoffmann
void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
316 21eea4b3 Gerd Hoffmann
                  void *irq_opaque, int nirq);
317 9ddf8437 Isaku Yamahata
int pci_bus_get_irq_level(PCIBus *bus, int irq_num);
318 87c30546 Isaku Yamahata
void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug, DeviceState *dev);
319 02e2da45 Paul Brook
PCIBus *pci_register_bus(DeviceState *parent, const char *name,
320 02e2da45 Paul Brook
                         pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
321 1e39101c Avi Kivity
                         void *irq_opaque,
322 aee97b84 Avi Kivity
                         MemoryRegion *address_space_mem,
323 aee97b84 Avi Kivity
                         MemoryRegion *address_space_io,
324 1e39101c Avi Kivity
                         uint8_t devfn_min, int nirq);
325 3afa9bb4 Michael S. Tsirkin
void pci_bus_set_route_irq_fn(PCIBus *, pci_route_irq_fn);
326 3afa9bb4 Michael S. Tsirkin
PCIINTxRoute pci_device_route_intx_to_irq(PCIDevice *dev, int pin);
327 0ae16251 Jan Kiszka
void pci_bus_fire_intx_routing_notifier(PCIBus *bus);
328 0ae16251 Jan Kiszka
void pci_device_set_intx_routing_notifier(PCIDevice *dev,
329 0ae16251 Jan Kiszka
                                          PCIINTxRoutingNotifier notifier);
330 0ead87c8 Isaku Yamahata
void pci_device_reset(PCIDevice *dev);
331 9bb33586 Isaku Yamahata
void pci_bus_reset(PCIBus *bus);
332 87ecb68b pbrook
333 5607c388 Markus Armbruster
PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
334 5607c388 Markus Armbruster
                        const char *default_devaddr);
335 07caea31 Markus Armbruster
PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
336 07caea31 Markus Armbruster
                               const char *default_devaddr);
337 87ecb68b pbrook
int pci_bus_num(PCIBus *s);
338 7aa8cbb9 Anthony PERARD
void pci_for_each_device(PCIBus *bus, int bus_num,
339 7aa8cbb9 Anthony PERARD
                         void (*fn)(PCIBus *bus, PCIDevice *d, void *opaque),
340 7aa8cbb9 Anthony PERARD
                         void *opaque);
341 c469e1dd Isaku Yamahata
PCIBus *pci_find_root_bus(int domain);
342 e075e788 Isaku Yamahata
int pci_find_domain(const PCIBus *bus);
343 5256d8bf Isaku Yamahata
PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn);
344 f3006dd1 Isaku Yamahata
int pci_qdev_find_device(const char *id, PCIDevice **pdev);
345 49bd1458 Markus Armbruster
PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr);
346 87ecb68b pbrook
347 e9283f8b Jan Kiszka
int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp,
348 e9283f8b Jan Kiszka
                     unsigned *slotp);
349 880345c4 aliguori
350 4c92325b Isaku Yamahata
void pci_device_deassert_intx(PCIDevice *dev);
351 4c92325b Isaku Yamahata
352 5fa45de5 David Gibson
typedef DMAContext *(*PCIDMAContextFunc)(PCIBus *, void *, int);
353 5fa45de5 David Gibson
354 5fa45de5 David Gibson
void pci_setup_iommu(PCIBus *bus, PCIDMAContextFunc fn, void *opaque);
355 5fa45de5 David Gibson
356 deb54399 aliguori
static inline void
357 64d50b8b Michael S. Tsirkin
pci_set_byte(uint8_t *config, uint8_t val)
358 64d50b8b Michael S. Tsirkin
{
359 64d50b8b Michael S. Tsirkin
    *config = val;
360 64d50b8b Michael S. Tsirkin
}
361 64d50b8b Michael S. Tsirkin
362 64d50b8b Michael S. Tsirkin
static inline uint8_t
363 cb95c2e4 Stefan Weil
pci_get_byte(const uint8_t *config)
364 64d50b8b Michael S. Tsirkin
{
365 64d50b8b Michael S. Tsirkin
    return *config;
366 64d50b8b Michael S. Tsirkin
}
367 64d50b8b Michael S. Tsirkin
368 64d50b8b Michael S. Tsirkin
static inline void
369 14e12559 Michael S. Tsirkin
pci_set_word(uint8_t *config, uint16_t val)
370 14e12559 Michael S. Tsirkin
{
371 14e12559 Michael S. Tsirkin
    cpu_to_le16wu((uint16_t *)config, val);
372 14e12559 Michael S. Tsirkin
}
373 14e12559 Michael S. Tsirkin
374 14e12559 Michael S. Tsirkin
static inline uint16_t
375 cb95c2e4 Stefan Weil
pci_get_word(const uint8_t *config)
376 14e12559 Michael S. Tsirkin
{
377 cb95c2e4 Stefan Weil
    return le16_to_cpupu((const uint16_t *)config);
378 14e12559 Michael S. Tsirkin
}
379 14e12559 Michael S. Tsirkin
380 14e12559 Michael S. Tsirkin
static inline void
381 14e12559 Michael S. Tsirkin
pci_set_long(uint8_t *config, uint32_t val)
382 14e12559 Michael S. Tsirkin
{
383 14e12559 Michael S. Tsirkin
    cpu_to_le32wu((uint32_t *)config, val);
384 14e12559 Michael S. Tsirkin
}
385 14e12559 Michael S. Tsirkin
386 14e12559 Michael S. Tsirkin
static inline uint32_t
387 cb95c2e4 Stefan Weil
pci_get_long(const uint8_t *config)
388 14e12559 Michael S. Tsirkin
{
389 cb95c2e4 Stefan Weil
    return le32_to_cpupu((const uint32_t *)config);
390 14e12559 Michael S. Tsirkin
}
391 14e12559 Michael S. Tsirkin
392 14e12559 Michael S. Tsirkin
static inline void
393 fb5ce7d2 Isaku Yamahata
pci_set_quad(uint8_t *config, uint64_t val)
394 fb5ce7d2 Isaku Yamahata
{
395 fb5ce7d2 Isaku Yamahata
    cpu_to_le64w((uint64_t *)config, val);
396 fb5ce7d2 Isaku Yamahata
}
397 fb5ce7d2 Isaku Yamahata
398 fb5ce7d2 Isaku Yamahata
static inline uint64_t
399 cb95c2e4 Stefan Weil
pci_get_quad(const uint8_t *config)
400 fb5ce7d2 Isaku Yamahata
{
401 cb95c2e4 Stefan Weil
    return le64_to_cpup((const uint64_t *)config);
402 fb5ce7d2 Isaku Yamahata
}
403 fb5ce7d2 Isaku Yamahata
404 fb5ce7d2 Isaku Yamahata
static inline void
405 deb54399 aliguori
pci_config_set_vendor_id(uint8_t *pci_config, uint16_t val)
406 deb54399 aliguori
{
407 14e12559 Michael S. Tsirkin
    pci_set_word(&pci_config[PCI_VENDOR_ID], val);
408 deb54399 aliguori
}
409 deb54399 aliguori
410 deb54399 aliguori
static inline void
411 deb54399 aliguori
pci_config_set_device_id(uint8_t *pci_config, uint16_t val)
412 deb54399 aliguori
{
413 14e12559 Michael S. Tsirkin
    pci_set_word(&pci_config[PCI_DEVICE_ID], val);
414 deb54399 aliguori
}
415 deb54399 aliguori
416 173a543b blueswir1
static inline void
417 cf602c7b Izik Eidus
pci_config_set_revision(uint8_t *pci_config, uint8_t val)
418 cf602c7b Izik Eidus
{
419 cf602c7b Izik Eidus
    pci_set_byte(&pci_config[PCI_REVISION_ID], val);
420 cf602c7b Izik Eidus
}
421 cf602c7b Izik Eidus
422 cf602c7b Izik Eidus
static inline void
423 173a543b blueswir1
pci_config_set_class(uint8_t *pci_config, uint16_t val)
424 173a543b blueswir1
{
425 14e12559 Michael S. Tsirkin
    pci_set_word(&pci_config[PCI_CLASS_DEVICE], val);
426 173a543b blueswir1
}
427 173a543b blueswir1
428 cf602c7b Izik Eidus
static inline void
429 cf602c7b Izik Eidus
pci_config_set_prog_interface(uint8_t *pci_config, uint8_t val)
430 cf602c7b Izik Eidus
{
431 cf602c7b Izik Eidus
    pci_set_byte(&pci_config[PCI_CLASS_PROG], val);
432 cf602c7b Izik Eidus
}
433 cf602c7b Izik Eidus
434 cf602c7b Izik Eidus
static inline void
435 cf602c7b Izik Eidus
pci_config_set_interrupt_pin(uint8_t *pci_config, uint8_t val)
436 cf602c7b Izik Eidus
{
437 cf602c7b Izik Eidus
    pci_set_byte(&pci_config[PCI_INTERRUPT_PIN], val);
438 cf602c7b Izik Eidus
}
439 cf602c7b Izik Eidus
440 aabcf526 Isaku Yamahata
/*
441 aabcf526 Isaku Yamahata
 * helper functions to do bit mask operation on configuration space.
442 aabcf526 Isaku Yamahata
 * Just to set bit, use test-and-set and discard returned value.
443 aabcf526 Isaku Yamahata
 * Just to clear bit, use test-and-clear and discard returned value.
444 aabcf526 Isaku Yamahata
 * NOTE: They aren't atomic.
445 aabcf526 Isaku Yamahata
 */
446 aabcf526 Isaku Yamahata
static inline uint8_t
447 aabcf526 Isaku Yamahata
pci_byte_test_and_clear_mask(uint8_t *config, uint8_t mask)
448 aabcf526 Isaku Yamahata
{
449 aabcf526 Isaku Yamahata
    uint8_t val = pci_get_byte(config);
450 aabcf526 Isaku Yamahata
    pci_set_byte(config, val & ~mask);
451 aabcf526 Isaku Yamahata
    return val & mask;
452 aabcf526 Isaku Yamahata
}
453 aabcf526 Isaku Yamahata
454 aabcf526 Isaku Yamahata
static inline uint8_t
455 aabcf526 Isaku Yamahata
pci_byte_test_and_set_mask(uint8_t *config, uint8_t mask)
456 aabcf526 Isaku Yamahata
{
457 aabcf526 Isaku Yamahata
    uint8_t val = pci_get_byte(config);
458 aabcf526 Isaku Yamahata
    pci_set_byte(config, val | mask);
459 aabcf526 Isaku Yamahata
    return val & mask;
460 aabcf526 Isaku Yamahata
}
461 aabcf526 Isaku Yamahata
462 aabcf526 Isaku Yamahata
static inline uint16_t
463 aabcf526 Isaku Yamahata
pci_word_test_and_clear_mask(uint8_t *config, uint16_t mask)
464 aabcf526 Isaku Yamahata
{
465 aabcf526 Isaku Yamahata
    uint16_t val = pci_get_word(config);
466 aabcf526 Isaku Yamahata
    pci_set_word(config, val & ~mask);
467 aabcf526 Isaku Yamahata
    return val & mask;
468 aabcf526 Isaku Yamahata
}
469 aabcf526 Isaku Yamahata
470 aabcf526 Isaku Yamahata
static inline uint16_t
471 aabcf526 Isaku Yamahata
pci_word_test_and_set_mask(uint8_t *config, uint16_t mask)
472 aabcf526 Isaku Yamahata
{
473 aabcf526 Isaku Yamahata
    uint16_t val = pci_get_word(config);
474 aabcf526 Isaku Yamahata
    pci_set_word(config, val | mask);
475 aabcf526 Isaku Yamahata
    return val & mask;
476 aabcf526 Isaku Yamahata
}
477 aabcf526 Isaku Yamahata
478 aabcf526 Isaku Yamahata
static inline uint32_t
479 aabcf526 Isaku Yamahata
pci_long_test_and_clear_mask(uint8_t *config, uint32_t mask)
480 aabcf526 Isaku Yamahata
{
481 aabcf526 Isaku Yamahata
    uint32_t val = pci_get_long(config);
482 aabcf526 Isaku Yamahata
    pci_set_long(config, val & ~mask);
483 aabcf526 Isaku Yamahata
    return val & mask;
484 aabcf526 Isaku Yamahata
}
485 aabcf526 Isaku Yamahata
486 aabcf526 Isaku Yamahata
static inline uint32_t
487 aabcf526 Isaku Yamahata
pci_long_test_and_set_mask(uint8_t *config, uint32_t mask)
488 aabcf526 Isaku Yamahata
{
489 aabcf526 Isaku Yamahata
    uint32_t val = pci_get_long(config);
490 aabcf526 Isaku Yamahata
    pci_set_long(config, val | mask);
491 aabcf526 Isaku Yamahata
    return val & mask;
492 aabcf526 Isaku Yamahata
}
493 aabcf526 Isaku Yamahata
494 aabcf526 Isaku Yamahata
static inline uint64_t
495 aabcf526 Isaku Yamahata
pci_quad_test_and_clear_mask(uint8_t *config, uint64_t mask)
496 aabcf526 Isaku Yamahata
{
497 aabcf526 Isaku Yamahata
    uint64_t val = pci_get_quad(config);
498 aabcf526 Isaku Yamahata
    pci_set_quad(config, val & ~mask);
499 aabcf526 Isaku Yamahata
    return val & mask;
500 aabcf526 Isaku Yamahata
}
501 aabcf526 Isaku Yamahata
502 aabcf526 Isaku Yamahata
static inline uint64_t
503 aabcf526 Isaku Yamahata
pci_quad_test_and_set_mask(uint8_t *config, uint64_t mask)
504 aabcf526 Isaku Yamahata
{
505 aabcf526 Isaku Yamahata
    uint64_t val = pci_get_quad(config);
506 aabcf526 Isaku Yamahata
    pci_set_quad(config, val | mask);
507 aabcf526 Isaku Yamahata
    return val & mask;
508 aabcf526 Isaku Yamahata
}
509 aabcf526 Isaku Yamahata
510 c9f50cea Michael S. Tsirkin
/* Access a register specified by a mask */
511 c9f50cea Michael S. Tsirkin
static inline void
512 c9f50cea Michael S. Tsirkin
pci_set_byte_by_mask(uint8_t *config, uint8_t mask, uint8_t reg)
513 c9f50cea Michael S. Tsirkin
{
514 c9f50cea Michael S. Tsirkin
    uint8_t val = pci_get_byte(config);
515 c9f50cea Michael S. Tsirkin
    uint8_t rval = reg << (ffs(mask) - 1);
516 c9f50cea Michael S. Tsirkin
    pci_set_byte(config, (~mask & val) | (mask & rval));
517 c9f50cea Michael S. Tsirkin
}
518 c9f50cea Michael S. Tsirkin
519 c9f50cea Michael S. Tsirkin
static inline uint8_t
520 c9f50cea Michael S. Tsirkin
pci_get_byte_by_mask(uint8_t *config, uint8_t mask)
521 c9f50cea Michael S. Tsirkin
{
522 c9f50cea Michael S. Tsirkin
    uint8_t val = pci_get_byte(config);
523 c9f50cea Michael S. Tsirkin
    return (val & mask) >> (ffs(mask) - 1);
524 c9f50cea Michael S. Tsirkin
}
525 c9f50cea Michael S. Tsirkin
526 c9f50cea Michael S. Tsirkin
static inline void
527 c9f50cea Michael S. Tsirkin
pci_set_word_by_mask(uint8_t *config, uint16_t mask, uint16_t reg)
528 c9f50cea Michael S. Tsirkin
{
529 c9f50cea Michael S. Tsirkin
    uint16_t val = pci_get_word(config);
530 c9f50cea Michael S. Tsirkin
    uint16_t rval = reg << (ffs(mask) - 1);
531 c9f50cea Michael S. Tsirkin
    pci_set_word(config, (~mask & val) | (mask & rval));
532 c9f50cea Michael S. Tsirkin
}
533 c9f50cea Michael S. Tsirkin
534 c9f50cea Michael S. Tsirkin
static inline uint16_t
535 c9f50cea Michael S. Tsirkin
pci_get_word_by_mask(uint8_t *config, uint16_t mask)
536 c9f50cea Michael S. Tsirkin
{
537 c9f50cea Michael S. Tsirkin
    uint16_t val = pci_get_word(config);
538 c9f50cea Michael S. Tsirkin
    return (val & mask) >> (ffs(mask) - 1);
539 c9f50cea Michael S. Tsirkin
}
540 c9f50cea Michael S. Tsirkin
541 c9f50cea Michael S. Tsirkin
static inline void
542 c9f50cea Michael S. Tsirkin
pci_set_long_by_mask(uint8_t *config, uint32_t mask, uint32_t reg)
543 c9f50cea Michael S. Tsirkin
{
544 c9f50cea Michael S. Tsirkin
    uint32_t val = pci_get_long(config);
545 c9f50cea Michael S. Tsirkin
    uint32_t rval = reg << (ffs(mask) - 1);
546 c9f50cea Michael S. Tsirkin
    pci_set_long(config, (~mask & val) | (mask & rval));
547 c9f50cea Michael S. Tsirkin
}
548 c9f50cea Michael S. Tsirkin
549 c9f50cea Michael S. Tsirkin
static inline uint32_t
550 c9f50cea Michael S. Tsirkin
pci_get_long_by_mask(uint8_t *config, uint32_t mask)
551 c9f50cea Michael S. Tsirkin
{
552 c9f50cea Michael S. Tsirkin
    uint32_t val = pci_get_long(config);
553 c9f50cea Michael S. Tsirkin
    return (val & mask) >> (ffs(mask) - 1);
554 c9f50cea Michael S. Tsirkin
}
555 c9f50cea Michael S. Tsirkin
556 c9f50cea Michael S. Tsirkin
static inline void
557 c9f50cea Michael S. Tsirkin
pci_set_quad_by_mask(uint8_t *config, uint64_t mask, uint64_t reg)
558 c9f50cea Michael S. Tsirkin
{
559 c9f50cea Michael S. Tsirkin
    uint64_t val = pci_get_quad(config);
560 c9f50cea Michael S. Tsirkin
    uint64_t rval = reg << (ffs(mask) - 1);
561 c9f50cea Michael S. Tsirkin
    pci_set_quad(config, (~mask & val) | (mask & rval));
562 c9f50cea Michael S. Tsirkin
}
563 c9f50cea Michael S. Tsirkin
564 c9f50cea Michael S. Tsirkin
static inline uint64_t
565 c9f50cea Michael S. Tsirkin
pci_get_quad_by_mask(uint8_t *config, uint64_t mask)
566 c9f50cea Michael S. Tsirkin
{
567 c9f50cea Michael S. Tsirkin
    uint64_t val = pci_get_quad(config);
568 c9f50cea Michael S. Tsirkin
    return (val & mask) >> (ffs(mask) - 1);
569 c9f50cea Michael S. Tsirkin
}
570 c9f50cea Michael S. Tsirkin
571 49823868 Isaku Yamahata
PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction,
572 49823868 Isaku Yamahata
                                    const char *name);
573 49823868 Isaku Yamahata
PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn,
574 49823868 Isaku Yamahata
                                           bool multifunction,
575 49823868 Isaku Yamahata
                                           const char *name);
576 499cf102 Markus Armbruster
PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name);
577 6b1b92d3 Paul Brook
PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name);
578 6b1b92d3 Paul Brook
579 3c18685f Isaku Yamahata
static inline int pci_is_express(const PCIDevice *d)
580 a9f49946 Isaku Yamahata
{
581 a9f49946 Isaku Yamahata
    return d->cap_present & QEMU_PCI_CAP_EXPRESS;
582 a9f49946 Isaku Yamahata
}
583 a9f49946 Isaku Yamahata
584 3c18685f Isaku Yamahata
static inline uint32_t pci_config_size(const PCIDevice *d)
585 a9f49946 Isaku Yamahata
{
586 a9f49946 Isaku Yamahata
    return pci_is_express(d) ? PCIE_CONFIG_SPACE_SIZE : PCI_CONFIG_SPACE_SIZE;
587 a9f49946 Isaku Yamahata
}
588 a9f49946 Isaku Yamahata
589 ec174575 David Gibson
/* DMA access functions */
590 d86a77f8 David Gibson
static inline DMAContext *pci_dma_context(PCIDevice *dev)
591 d86a77f8 David Gibson
{
592 5fa45de5 David Gibson
    return dev->dma;
593 d86a77f8 David Gibson
}
594 d86a77f8 David Gibson
595 ec174575 David Gibson
static inline int pci_dma_rw(PCIDevice *dev, dma_addr_t addr,
596 ec174575 David Gibson
                             void *buf, dma_addr_t len, DMADirection dir)
597 ec174575 David Gibson
{
598 d86a77f8 David Gibson
    dma_memory_rw(pci_dma_context(dev), addr, buf, len, dir);
599 ec174575 David Gibson
    return 0;
600 ec174575 David Gibson
}
601 ec174575 David Gibson
602 ec174575 David Gibson
static inline int pci_dma_read(PCIDevice *dev, dma_addr_t addr,
603 ec174575 David Gibson
                               void *buf, dma_addr_t len)
604 ec174575 David Gibson
{
605 ec174575 David Gibson
    return pci_dma_rw(dev, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
606 ec174575 David Gibson
}
607 ec174575 David Gibson
608 ec174575 David Gibson
static inline int pci_dma_write(PCIDevice *dev, dma_addr_t addr,
609 ec174575 David Gibson
                                const void *buf, dma_addr_t len)
610 ec174575 David Gibson
{
611 ec174575 David Gibson
    return pci_dma_rw(dev, addr, (void *) buf, len, DMA_DIRECTION_FROM_DEVICE);
612 ec174575 David Gibson
}
613 ec174575 David Gibson
614 ec174575 David Gibson
#define PCI_DMA_DEFINE_LDST(_l, _s, _bits)                              \
615 ec174575 David Gibson
    static inline uint##_bits##_t ld##_l##_pci_dma(PCIDevice *dev,      \
616 ec174575 David Gibson
                                                   dma_addr_t addr)     \
617 ec174575 David Gibson
    {                                                                   \
618 d86a77f8 David Gibson
        return ld##_l##_dma(pci_dma_context(dev), addr);                \
619 ec174575 David Gibson
    }                                                                   \
620 ec174575 David Gibson
    static inline void st##_s##_pci_dma(PCIDevice *dev,                 \
621 d86a77f8 David Gibson
                                        dma_addr_t addr, uint##_bits##_t val) \
622 ec174575 David Gibson
    {                                                                   \
623 d86a77f8 David Gibson
        st##_s##_dma(pci_dma_context(dev), addr, val);                  \
624 ec174575 David Gibson
    }
625 ec174575 David Gibson
626 ec174575 David Gibson
PCI_DMA_DEFINE_LDST(ub, b, 8);
627 ec174575 David Gibson
PCI_DMA_DEFINE_LDST(uw_le, w_le, 16)
628 ec174575 David Gibson
PCI_DMA_DEFINE_LDST(l_le, l_le, 32);
629 ec174575 David Gibson
PCI_DMA_DEFINE_LDST(q_le, q_le, 64);
630 ec174575 David Gibson
PCI_DMA_DEFINE_LDST(uw_be, w_be, 16)
631 ec174575 David Gibson
PCI_DMA_DEFINE_LDST(l_be, l_be, 32);
632 ec174575 David Gibson
PCI_DMA_DEFINE_LDST(q_be, q_be, 64);
633 ec174575 David Gibson
634 ec174575 David Gibson
#undef PCI_DMA_DEFINE_LDST
635 ec174575 David Gibson
636 ec174575 David Gibson
static inline void *pci_dma_map(PCIDevice *dev, dma_addr_t addr,
637 ec174575 David Gibson
                                dma_addr_t *plen, DMADirection dir)
638 ec174575 David Gibson
{
639 ec174575 David Gibson
    void *buf;
640 ec174575 David Gibson
641 d86a77f8 David Gibson
    buf = dma_memory_map(pci_dma_context(dev), addr, plen, dir);
642 ec174575 David Gibson
    return buf;
643 ec174575 David Gibson
}
644 ec174575 David Gibson
645 ec174575 David Gibson
static inline void pci_dma_unmap(PCIDevice *dev, void *buffer, dma_addr_t len,
646 ec174575 David Gibson
                                 DMADirection dir, dma_addr_t access_len)
647 ec174575 David Gibson
{
648 d86a77f8 David Gibson
    dma_memory_unmap(pci_dma_context(dev), buffer, len, dir, access_len);
649 ec174575 David Gibson
}
650 ec174575 David Gibson
651 ec174575 David Gibson
static inline void pci_dma_sglist_init(QEMUSGList *qsg, PCIDevice *dev,
652 ec174575 David Gibson
                                       int alloc_hint)
653 ec174575 David Gibson
{
654 c65bcef3 David Gibson
    qemu_sglist_init(qsg, alloc_hint, pci_dma_context(dev));
655 ec174575 David Gibson
}
656 ec174575 David Gibson
657 701a8f76 Paolo Bonzini
extern const VMStateDescription vmstate_pci_device;
658 701a8f76 Paolo Bonzini
659 701a8f76 Paolo Bonzini
#define VMSTATE_PCI_DEVICE(_field, _state) {                         \
660 701a8f76 Paolo Bonzini
    .name       = (stringify(_field)),                               \
661 701a8f76 Paolo Bonzini
    .size       = sizeof(PCIDevice),                                 \
662 701a8f76 Paolo Bonzini
    .vmsd       = &vmstate_pci_device,                               \
663 701a8f76 Paolo Bonzini
    .flags      = VMS_STRUCT,                                        \
664 701a8f76 Paolo Bonzini
    .offset     = vmstate_offset_value(_state, _field, PCIDevice),   \
665 701a8f76 Paolo Bonzini
}
666 701a8f76 Paolo Bonzini
667 701a8f76 Paolo Bonzini
#define VMSTATE_PCI_DEVICE_POINTER(_field, _state) {                 \
668 701a8f76 Paolo Bonzini
    .name       = (stringify(_field)),                               \
669 701a8f76 Paolo Bonzini
    .size       = sizeof(PCIDevice),                                 \
670 701a8f76 Paolo Bonzini
    .vmsd       = &vmstate_pci_device,                               \
671 701a8f76 Paolo Bonzini
    .flags      = VMS_STRUCT|VMS_POINTER,                            \
672 701a8f76 Paolo Bonzini
    .offset     = vmstate_offset_pointer(_state, _field, PCIDevice), \
673 701a8f76 Paolo Bonzini
}
674 701a8f76 Paolo Bonzini
675 87ecb68b pbrook
#endif