Statistics
| Branch: | Revision:

root / hw / pci / pci.h @ cf09458d

History | View | Annotate | Download (22 kB)

1
#ifndef QEMU_PCI_H
2
#define QEMU_PCI_H
3

    
4
#include "qemu-common.h"
5

    
6
#include "hw/qdev.h"
7
#include "exec/memory.h"
8
#include "sysemu/dma.h"
9

    
10
/* PCI includes legacy ISA access.  */
11
#include "hw/isa.h"
12

    
13
#include "hw/pci/pcie.h"
14

    
15
/* PCI bus */
16

    
17
#define PCI_DEVFN(slot, func)   ((((slot) & 0x1f) << 3) | ((func) & 0x07))
18
#define PCI_SLOT(devfn)         (((devfn) >> 3) & 0x1f)
19
#define PCI_FUNC(devfn)         ((devfn) & 0x07)
20
#define PCI_SLOT_MAX            32
21
#define PCI_FUNC_MAX            8
22

    
23
/* Class, Vendor and Device IDs from Linux's pci_ids.h */
24
#include "hw/pci/pci_ids.h"
25

    
26
/* QEMU-specific Vendor and Device ID definitions */
27

    
28
/* IBM (0x1014) */
29
#define PCI_DEVICE_ID_IBM_440GX          0x027f
30
#define PCI_DEVICE_ID_IBM_OPENPIC2       0xffff
31

    
32
/* Hitachi (0x1054) */
33
#define PCI_VENDOR_ID_HITACHI            0x1054
34
#define PCI_DEVICE_ID_HITACHI_SH7751R    0x350e
35

    
36
/* Apple (0x106b) */
37
#define PCI_DEVICE_ID_APPLE_343S1201     0x0010
38
#define PCI_DEVICE_ID_APPLE_UNI_N_I_PCI  0x001e
39
#define PCI_DEVICE_ID_APPLE_UNI_N_PCI    0x001f
40
#define PCI_DEVICE_ID_APPLE_UNI_N_KEYL   0x0022
41
#define PCI_DEVICE_ID_APPLE_IPID_USB     0x003f
42

    
43
/* Realtek (0x10ec) */
44
#define PCI_DEVICE_ID_REALTEK_8029       0x8029
45

    
46
/* Xilinx (0x10ee) */
47
#define PCI_DEVICE_ID_XILINX_XC2VP30     0x0300
48

    
49
/* Marvell (0x11ab) */
50
#define PCI_DEVICE_ID_MARVELL_GT6412X    0x4620
51

    
52
/* QEMU/Bochs VGA (0x1234) */
53
#define PCI_VENDOR_ID_QEMU               0x1234
54
#define PCI_DEVICE_ID_QEMU_VGA           0x1111
55

    
56
/* VMWare (0x15ad) */
57
#define PCI_VENDOR_ID_VMWARE             0x15ad
58
#define PCI_DEVICE_ID_VMWARE_SVGA2       0x0405
59
#define PCI_DEVICE_ID_VMWARE_SVGA        0x0710
60
#define PCI_DEVICE_ID_VMWARE_NET         0x0720
61
#define PCI_DEVICE_ID_VMWARE_SCSI        0x0730
62
#define PCI_DEVICE_ID_VMWARE_IDE         0x1729
63

    
64
/* Intel (0x8086) */
65
#define PCI_DEVICE_ID_INTEL_82551IT      0x1209
66
#define PCI_DEVICE_ID_INTEL_82557        0x1229
67
#define PCI_DEVICE_ID_INTEL_82801IR      0x2922
68

    
69
/* Red Hat / Qumranet (for QEMU) -- see pci-ids.txt */
70
#define PCI_VENDOR_ID_REDHAT_QUMRANET    0x1af4
71
#define PCI_SUBVENDOR_ID_REDHAT_QUMRANET 0x1af4
72
#define PCI_SUBDEVICE_ID_QEMU            0x1100
73

    
74
#define PCI_DEVICE_ID_VIRTIO_NET         0x1000
75
#define PCI_DEVICE_ID_VIRTIO_BLOCK       0x1001
76
#define PCI_DEVICE_ID_VIRTIO_BALLOON     0x1002
77
#define PCI_DEVICE_ID_VIRTIO_CONSOLE     0x1003
78
#define PCI_DEVICE_ID_VIRTIO_SCSI        0x1004
79
#define PCI_DEVICE_ID_VIRTIO_RNG         0x1005
80
#define PCI_DEVICE_ID_VIRTIO_9P          0x1009
81

    
82
#define PCI_VENDOR_ID_REDHAT             0x1b36
83
#define PCI_DEVICE_ID_REDHAT_BRIDGE      0x0001
84
#define PCI_DEVICE_ID_REDHAT_SERIAL      0x0002
85
#define PCI_DEVICE_ID_REDHAT_SERIAL2     0x0003
86
#define PCI_DEVICE_ID_REDHAT_SERIAL4     0x0004
87
#define PCI_DEVICE_ID_REDHAT_QXL         0x0100
88

    
89
#define FMT_PCIBUS                      PRIx64
90

    
91
typedef void PCIConfigWriteFunc(PCIDevice *pci_dev,
92
                                uint32_t address, uint32_t data, int len);
93
typedef uint32_t PCIConfigReadFunc(PCIDevice *pci_dev,
94
                                   uint32_t address, int len);
95
typedef void PCIMapIORegionFunc(PCIDevice *pci_dev, int region_num,
96
                                pcibus_t addr, pcibus_t size, int type);
97
typedef void PCIUnregisterFunc(PCIDevice *pci_dev);
98

    
99
typedef struct PCIIORegion {
100
    pcibus_t addr; /* current PCI mapping address. -1 means not mapped */
101
#define PCI_BAR_UNMAPPED (~(pcibus_t)0)
102
    pcibus_t size;
103
    uint8_t type;
104
    MemoryRegion *memory;
105
    MemoryRegion *address_space;
106
} PCIIORegion;
107

    
108
#define PCI_ROM_SLOT 6
109
#define PCI_NUM_REGIONS 7
110

    
111
enum {
112
    QEMU_PCI_VGA_MEM,
113
    QEMU_PCI_VGA_IO_LO,
114
    QEMU_PCI_VGA_IO_HI,
115
    QEMU_PCI_VGA_NUM_REGIONS,
116
};
117

    
118
#define QEMU_PCI_VGA_MEM_BASE 0xa0000
119
#define QEMU_PCI_VGA_MEM_SIZE 0x20000
120
#define QEMU_PCI_VGA_IO_LO_BASE 0x3b0
121
#define QEMU_PCI_VGA_IO_LO_SIZE 0xc
122
#define QEMU_PCI_VGA_IO_HI_BASE 0x3c0
123
#define QEMU_PCI_VGA_IO_HI_SIZE 0x20
124

    
125
#include "hw/pci/pci_regs.h"
126

    
127
/* PCI HEADER_TYPE */
128
#define  PCI_HEADER_TYPE_MULTI_FUNCTION 0x80
129

    
130
/* Size of the standard PCI config header */
131
#define PCI_CONFIG_HEADER_SIZE 0x40
132
/* Size of the standard PCI config space */
133
#define PCI_CONFIG_SPACE_SIZE 0x100
134
/* Size of the standart PCIe config space: 4KB */
135
#define PCIE_CONFIG_SPACE_SIZE  0x1000
136

    
137
#define PCI_NUM_PINS 4 /* A-D */
138

    
139
/* Bits in cap_present field. */
140
enum {
141
    QEMU_PCI_CAP_MSI = 0x1,
142
    QEMU_PCI_CAP_MSIX = 0x2,
143
    QEMU_PCI_CAP_EXPRESS = 0x4,
144

    
145
    /* multifunction capable device */
146
#define QEMU_PCI_CAP_MULTIFUNCTION_BITNR        3
147
    QEMU_PCI_CAP_MULTIFUNCTION = (1 << QEMU_PCI_CAP_MULTIFUNCTION_BITNR),
148

    
149
    /* command register SERR bit enabled */
150
#define QEMU_PCI_CAP_SERR_BITNR 4
151
    QEMU_PCI_CAP_SERR = (1 << QEMU_PCI_CAP_SERR_BITNR),
152
    /* Standard hot plug controller. */
153
#define QEMU_PCI_SHPC_BITNR 5
154
    QEMU_PCI_CAP_SHPC = (1 << QEMU_PCI_SHPC_BITNR),
155
#define QEMU_PCI_SLOTID_BITNR 6
156
    QEMU_PCI_CAP_SLOTID = (1 << QEMU_PCI_SLOTID_BITNR),
157
};
158

    
159
#define TYPE_PCI_DEVICE "pci-device"
160
#define PCI_DEVICE(obj) \
161
     OBJECT_CHECK(PCIDevice, (obj), TYPE_PCI_DEVICE)
162
#define PCI_DEVICE_CLASS(klass) \
163
     OBJECT_CLASS_CHECK(PCIDeviceClass, (klass), TYPE_PCI_DEVICE)
164
#define PCI_DEVICE_GET_CLASS(obj) \
165
     OBJECT_GET_CLASS(PCIDeviceClass, (obj), TYPE_PCI_DEVICE)
166

    
167
typedef struct PCIINTxRoute {
168
    enum {
169
        PCI_INTX_ENABLED,
170
        PCI_INTX_INVERTED,
171
        PCI_INTX_DISABLED,
172
    } mode;
173
    int irq;
174
} PCIINTxRoute;
175

    
176
typedef struct PCIDeviceClass {
177
    DeviceClass parent_class;
178

    
179
    int (*init)(PCIDevice *dev);
180
    PCIUnregisterFunc *exit;
181
    PCIConfigReadFunc *config_read;
182
    PCIConfigWriteFunc *config_write;
183

    
184
    uint16_t vendor_id;
185
    uint16_t device_id;
186
    uint8_t revision;
187
    uint16_t class_id;
188
    uint16_t subsystem_vendor_id;       /* only for header type = 0 */
189
    uint16_t subsystem_id;              /* only for header type = 0 */
190

    
191
    /*
192
     * pci-to-pci bridge or normal device.
193
     * This doesn't mean pci host switch.
194
     * When card bus bridge is supported, this would be enhanced.
195
     */
196
    int is_bridge;
197

    
198
    /* pcie stuff */
199
    int is_express;   /* is this device pci express? */
200

    
201
    /* device isn't hot-pluggable */
202
    int no_hotplug;
203

    
204
    /* rom bar */
205
    const char *romfile;
206
} PCIDeviceClass;
207

    
208
typedef void (*PCIINTxRoutingNotifier)(PCIDevice *dev);
209
typedef int (*MSIVectorUseNotifier)(PCIDevice *dev, unsigned int vector,
210
                                      MSIMessage msg);
211
typedef void (*MSIVectorReleaseNotifier)(PCIDevice *dev, unsigned int vector);
212
typedef void (*MSIVectorPollNotifier)(PCIDevice *dev,
213
                                      unsigned int vector_start,
214
                                      unsigned int vector_end);
215

    
216
struct PCIDevice {
217
    DeviceState qdev;
218

    
219
    /* PCI config space */
220
    uint8_t *config;
221

    
222
    /* Used to enable config checks on load. Note that writable bits are
223
     * never checked even if set in cmask. */
224
    uint8_t *cmask;
225

    
226
    /* Used to implement R/W bytes */
227
    uint8_t *wmask;
228

    
229
    /* Used to implement RW1C(Write 1 to Clear) bytes */
230
    uint8_t *w1cmask;
231

    
232
    /* Used to allocate config space for capabilities. */
233
    uint8_t *used;
234

    
235
    /* the following fields are read only */
236
    PCIBus *bus;
237
    int32_t devfn;
238
    char name[64];
239
    PCIIORegion io_regions[PCI_NUM_REGIONS];
240
    AddressSpace bus_master_as;
241
    MemoryRegion bus_master_enable_region;
242
    DMAContext *dma;
243

    
244
    /* do not access the following fields */
245
    PCIConfigReadFunc *config_read;
246
    PCIConfigWriteFunc *config_write;
247

    
248
    /* IRQ objects for the INTA-INTD pins.  */
249
    qemu_irq *irq;
250

    
251
    /* Legacy PCI VGA regions */
252
    MemoryRegion *vga_regions[QEMU_PCI_VGA_NUM_REGIONS];
253
    bool has_vga;
254

    
255
    /* Current IRQ levels.  Used internally by the generic PCI code.  */
256
    uint8_t irq_state;
257

    
258
    /* Capability bits */
259
    uint32_t cap_present;
260

    
261
    /* Offset of MSI-X capability in config space */
262
    uint8_t msix_cap;
263

    
264
    /* MSI-X entries */
265
    int msix_entries_nr;
266

    
267
    /* Space to store MSIX table & pending bit array */
268
    uint8_t *msix_table;
269
    uint8_t *msix_pba;
270
    /* MemoryRegion container for msix exclusive BAR setup */
271
    MemoryRegion msix_exclusive_bar;
272
    /* Memory Regions for MSIX table and pending bit entries. */
273
    MemoryRegion msix_table_mmio;
274
    MemoryRegion msix_pba_mmio;
275
    /* Reference-count for entries actually in use by driver. */
276
    unsigned *msix_entry_used;
277
    /* MSIX function mask set or MSIX disabled */
278
    bool msix_function_masked;
279
    /* Version id needed for VMState */
280
    int32_t version_id;
281

    
282
    /* Offset of MSI capability in config space */
283
    uint8_t msi_cap;
284

    
285
    /* PCI Express */
286
    PCIExpressDevice exp;
287

    
288
    /* SHPC */
289
    SHPCDevice *shpc;
290

    
291
    /* Location of option rom */
292
    char *romfile;
293
    bool has_rom;
294
    MemoryRegion rom;
295
    uint32_t rom_bar;
296

    
297
    /* INTx routing notifier */
298
    PCIINTxRoutingNotifier intx_routing_notifier;
299

    
300
    /* MSI-X notifiers */
301
    MSIVectorUseNotifier msix_vector_use_notifier;
302
    MSIVectorReleaseNotifier msix_vector_release_notifier;
303
    MSIVectorPollNotifier msix_vector_poll_notifier;
304
};
305

    
306
void pci_register_bar(PCIDevice *pci_dev, int region_num,
307
                      uint8_t attr, MemoryRegion *memory);
308
void pci_register_vga(PCIDevice *pci_dev, MemoryRegion *mem,
309
                      MemoryRegion *io_lo, MemoryRegion *io_hi);
310
void pci_unregister_vga(PCIDevice *pci_dev);
311
pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num);
312

    
313
int pci_add_capability(PCIDevice *pdev, uint8_t cap_id,
314
                       uint8_t offset, uint8_t size);
315

    
316
void pci_del_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size);
317

    
318
uint8_t pci_find_capability(PCIDevice *pci_dev, uint8_t cap_id);
319

    
320

    
321
uint32_t pci_default_read_config(PCIDevice *d,
322
                                 uint32_t address, int len);
323
void pci_default_write_config(PCIDevice *d,
324
                              uint32_t address, uint32_t val, int len);
325
void pci_device_save(PCIDevice *s, QEMUFile *f);
326
int pci_device_load(PCIDevice *s, QEMUFile *f);
327
MemoryRegion *pci_address_space(PCIDevice *dev);
328
MemoryRegion *pci_address_space_io(PCIDevice *dev);
329

    
330
typedef void (*pci_set_irq_fn)(void *opaque, int irq_num, int level);
331
typedef int (*pci_map_irq_fn)(PCIDevice *pci_dev, int irq_num);
332
typedef PCIINTxRoute (*pci_route_irq_fn)(void *opaque, int pin);
333

    
334
typedef enum {
335
    PCI_HOTPLUG_DISABLED,
336
    PCI_HOTPLUG_ENABLED,
337
    PCI_COLDPLUG_ENABLED,
338
} PCIHotplugState;
339

    
340
typedef int (*pci_hotplug_fn)(DeviceState *qdev, PCIDevice *pci_dev,
341
                              PCIHotplugState state);
342

    
343
#define TYPE_PCI_BUS "PCI"
344
#define PCI_BUS(obj) OBJECT_CHECK(PCIBus, (obj), TYPE_PCI_BUS)
345
#define TYPE_PCIE_BUS "PCIE"
346

    
347
void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
348
                         const char *name,
349
                         MemoryRegion *address_space_mem,
350
                         MemoryRegion *address_space_io,
351
                         uint8_t devfn_min);
352
PCIBus *pci_bus_new(DeviceState *parent, const char *name,
353
                    MemoryRegion *address_space_mem,
354
                    MemoryRegion *address_space_io,
355
                    uint8_t devfn_min);
356
void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
357
                  void *irq_opaque, int nirq);
358
int pci_bus_get_irq_level(PCIBus *bus, int irq_num);
359
void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug, DeviceState *dev);
360
/* 0 <= pin <= 3 0 = INTA, 1 = INTB, 2 = INTC, 3 = INTD */
361
int pci_swizzle_map_irq_fn(PCIDevice *pci_dev, int pin);
362
PCIBus *pci_register_bus(DeviceState *parent, const char *name,
363
                         pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
364
                         void *irq_opaque,
365
                         MemoryRegion *address_space_mem,
366
                         MemoryRegion *address_space_io,
367
                         uint8_t devfn_min, int nirq);
368
void pci_bus_set_route_irq_fn(PCIBus *, pci_route_irq_fn);
369
PCIINTxRoute pci_device_route_intx_to_irq(PCIDevice *dev, int pin);
370
bool pci_intx_route_changed(PCIINTxRoute *old, PCIINTxRoute *new);
371
void pci_bus_fire_intx_routing_notifier(PCIBus *bus);
372
void pci_device_set_intx_routing_notifier(PCIDevice *dev,
373
                                          PCIINTxRoutingNotifier notifier);
374
void pci_device_reset(PCIDevice *dev);
375
void pci_bus_reset(PCIBus *bus);
376

    
377
PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
378
                        const char *default_devaddr);
379
PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
380
                               const char *default_devaddr);
381

    
382
PCIDevice *pci_vga_init(PCIBus *bus);
383

    
384
int pci_bus_num(PCIBus *s);
385
void pci_for_each_device(PCIBus *bus, int bus_num,
386
                         void (*fn)(PCIBus *bus, PCIDevice *d, void *opaque),
387
                         void *opaque);
388
PCIBus *pci_find_root_bus(int domain);
389
int pci_find_domain(const PCIBus *bus);
390
PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn);
391
int pci_qdev_find_device(const char *id, PCIDevice **pdev);
392
PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr);
393

    
394
int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp,
395
                     unsigned *slotp);
396

    
397
void pci_device_deassert_intx(PCIDevice *dev);
398

    
399
typedef DMAContext *(*PCIDMAContextFunc)(PCIBus *, void *, int);
400

    
401
void pci_setup_iommu(PCIBus *bus, PCIDMAContextFunc fn, void *opaque);
402

    
403
static inline void
404
pci_set_byte(uint8_t *config, uint8_t val)
405
{
406
    *config = val;
407
}
408

    
409
static inline uint8_t
410
pci_get_byte(const uint8_t *config)
411
{
412
    return *config;
413
}
414

    
415
static inline void
416
pci_set_word(uint8_t *config, uint16_t val)
417
{
418
    cpu_to_le16wu((uint16_t *)config, val);
419
}
420

    
421
static inline uint16_t
422
pci_get_word(const uint8_t *config)
423
{
424
    return le16_to_cpupu((const uint16_t *)config);
425
}
426

    
427
static inline void
428
pci_set_long(uint8_t *config, uint32_t val)
429
{
430
    cpu_to_le32wu((uint32_t *)config, val);
431
}
432

    
433
static inline uint32_t
434
pci_get_long(const uint8_t *config)
435
{
436
    return le32_to_cpupu((const uint32_t *)config);
437
}
438

    
439
static inline void
440
pci_set_quad(uint8_t *config, uint64_t val)
441
{
442
    cpu_to_le64w((uint64_t *)config, val);
443
}
444

    
445
static inline uint64_t
446
pci_get_quad(const uint8_t *config)
447
{
448
    return le64_to_cpup((const uint64_t *)config);
449
}
450

    
451
static inline void
452
pci_config_set_vendor_id(uint8_t *pci_config, uint16_t val)
453
{
454
    pci_set_word(&pci_config[PCI_VENDOR_ID], val);
455
}
456

    
457
static inline void
458
pci_config_set_device_id(uint8_t *pci_config, uint16_t val)
459
{
460
    pci_set_word(&pci_config[PCI_DEVICE_ID], val);
461
}
462

    
463
static inline void
464
pci_config_set_revision(uint8_t *pci_config, uint8_t val)
465
{
466
    pci_set_byte(&pci_config[PCI_REVISION_ID], val);
467
}
468

    
469
static inline void
470
pci_config_set_class(uint8_t *pci_config, uint16_t val)
471
{
472
    pci_set_word(&pci_config[PCI_CLASS_DEVICE], val);
473
}
474

    
475
static inline void
476
pci_config_set_prog_interface(uint8_t *pci_config, uint8_t val)
477
{
478
    pci_set_byte(&pci_config[PCI_CLASS_PROG], val);
479
}
480

    
481
static inline void
482
pci_config_set_interrupt_pin(uint8_t *pci_config, uint8_t val)
483
{
484
    pci_set_byte(&pci_config[PCI_INTERRUPT_PIN], val);
485
}
486

    
487
/*
488
 * helper functions to do bit mask operation on configuration space.
489
 * Just to set bit, use test-and-set and discard returned value.
490
 * Just to clear bit, use test-and-clear and discard returned value.
491
 * NOTE: They aren't atomic.
492
 */
493
static inline uint8_t
494
pci_byte_test_and_clear_mask(uint8_t *config, uint8_t mask)
495
{
496
    uint8_t val = pci_get_byte(config);
497
    pci_set_byte(config, val & ~mask);
498
    return val & mask;
499
}
500

    
501
static inline uint8_t
502
pci_byte_test_and_set_mask(uint8_t *config, uint8_t mask)
503
{
504
    uint8_t val = pci_get_byte(config);
505
    pci_set_byte(config, val | mask);
506
    return val & mask;
507
}
508

    
509
static inline uint16_t
510
pci_word_test_and_clear_mask(uint8_t *config, uint16_t mask)
511
{
512
    uint16_t val = pci_get_word(config);
513
    pci_set_word(config, val & ~mask);
514
    return val & mask;
515
}
516

    
517
static inline uint16_t
518
pci_word_test_and_set_mask(uint8_t *config, uint16_t mask)
519
{
520
    uint16_t val = pci_get_word(config);
521
    pci_set_word(config, val | mask);
522
    return val & mask;
523
}
524

    
525
static inline uint32_t
526
pci_long_test_and_clear_mask(uint8_t *config, uint32_t mask)
527
{
528
    uint32_t val = pci_get_long(config);
529
    pci_set_long(config, val & ~mask);
530
    return val & mask;
531
}
532

    
533
static inline uint32_t
534
pci_long_test_and_set_mask(uint8_t *config, uint32_t mask)
535
{
536
    uint32_t val = pci_get_long(config);
537
    pci_set_long(config, val | mask);
538
    return val & mask;
539
}
540

    
541
static inline uint64_t
542
pci_quad_test_and_clear_mask(uint8_t *config, uint64_t mask)
543
{
544
    uint64_t val = pci_get_quad(config);
545
    pci_set_quad(config, val & ~mask);
546
    return val & mask;
547
}
548

    
549
static inline uint64_t
550
pci_quad_test_and_set_mask(uint8_t *config, uint64_t mask)
551
{
552
    uint64_t val = pci_get_quad(config);
553
    pci_set_quad(config, val | mask);
554
    return val & mask;
555
}
556

    
557
/* Access a register specified by a mask */
558
static inline void
559
pci_set_byte_by_mask(uint8_t *config, uint8_t mask, uint8_t reg)
560
{
561
    uint8_t val = pci_get_byte(config);
562
    uint8_t rval = reg << (ffs(mask) - 1);
563
    pci_set_byte(config, (~mask & val) | (mask & rval));
564
}
565

    
566
static inline uint8_t
567
pci_get_byte_by_mask(uint8_t *config, uint8_t mask)
568
{
569
    uint8_t val = pci_get_byte(config);
570
    return (val & mask) >> (ffs(mask) - 1);
571
}
572

    
573
static inline void
574
pci_set_word_by_mask(uint8_t *config, uint16_t mask, uint16_t reg)
575
{
576
    uint16_t val = pci_get_word(config);
577
    uint16_t rval = reg << (ffs(mask) - 1);
578
    pci_set_word(config, (~mask & val) | (mask & rval));
579
}
580

    
581
static inline uint16_t
582
pci_get_word_by_mask(uint8_t *config, uint16_t mask)
583
{
584
    uint16_t val = pci_get_word(config);
585
    return (val & mask) >> (ffs(mask) - 1);
586
}
587

    
588
static inline void
589
pci_set_long_by_mask(uint8_t *config, uint32_t mask, uint32_t reg)
590
{
591
    uint32_t val = pci_get_long(config);
592
    uint32_t rval = reg << (ffs(mask) - 1);
593
    pci_set_long(config, (~mask & val) | (mask & rval));
594
}
595

    
596
static inline uint32_t
597
pci_get_long_by_mask(uint8_t *config, uint32_t mask)
598
{
599
    uint32_t val = pci_get_long(config);
600
    return (val & mask) >> (ffs(mask) - 1);
601
}
602

    
603
static inline void
604
pci_set_quad_by_mask(uint8_t *config, uint64_t mask, uint64_t reg)
605
{
606
    uint64_t val = pci_get_quad(config);
607
    uint64_t rval = reg << (ffs(mask) - 1);
608
    pci_set_quad(config, (~mask & val) | (mask & rval));
609
}
610

    
611
static inline uint64_t
612
pci_get_quad_by_mask(uint8_t *config, uint64_t mask)
613
{
614
    uint64_t val = pci_get_quad(config);
615
    return (val & mask) >> (ffs(mask) - 1);
616
}
617

    
618
PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction,
619
                                    const char *name);
620
PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn,
621
                                           bool multifunction,
622
                                           const char *name);
623
PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name);
624
PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name);
625

    
626
static inline int pci_is_express(const PCIDevice *d)
627
{
628
    return d->cap_present & QEMU_PCI_CAP_EXPRESS;
629
}
630

    
631
static inline uint32_t pci_config_size(const PCIDevice *d)
632
{
633
    return pci_is_express(d) ? PCIE_CONFIG_SPACE_SIZE : PCI_CONFIG_SPACE_SIZE;
634
}
635

    
636
/* DMA access functions */
637
static inline DMAContext *pci_dma_context(PCIDevice *dev)
638
{
639
    return dev->dma;
640
}
641

    
642
static inline int pci_dma_rw(PCIDevice *dev, dma_addr_t addr,
643
                             void *buf, dma_addr_t len, DMADirection dir)
644
{
645
    dma_memory_rw(pci_dma_context(dev), addr, buf, len, dir);
646
    return 0;
647
}
648

    
649
static inline int pci_dma_read(PCIDevice *dev, dma_addr_t addr,
650
                               void *buf, dma_addr_t len)
651
{
652
    return pci_dma_rw(dev, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
653
}
654

    
655
static inline int pci_dma_write(PCIDevice *dev, dma_addr_t addr,
656
                                const void *buf, dma_addr_t len)
657
{
658
    return pci_dma_rw(dev, addr, (void *) buf, len, DMA_DIRECTION_FROM_DEVICE);
659
}
660

    
661
#define PCI_DMA_DEFINE_LDST(_l, _s, _bits)                              \
662
    static inline uint##_bits##_t ld##_l##_pci_dma(PCIDevice *dev,      \
663
                                                   dma_addr_t addr)     \
664
    {                                                                   \
665
        return ld##_l##_dma(pci_dma_context(dev), addr);                \
666
    }                                                                   \
667
    static inline void st##_s##_pci_dma(PCIDevice *dev,                 \
668
                                        dma_addr_t addr, uint##_bits##_t val) \
669
    {                                                                   \
670
        st##_s##_dma(pci_dma_context(dev), addr, val);                  \
671
    }
672

    
673
PCI_DMA_DEFINE_LDST(ub, b, 8);
674
PCI_DMA_DEFINE_LDST(uw_le, w_le, 16)
675
PCI_DMA_DEFINE_LDST(l_le, l_le, 32);
676
PCI_DMA_DEFINE_LDST(q_le, q_le, 64);
677
PCI_DMA_DEFINE_LDST(uw_be, w_be, 16)
678
PCI_DMA_DEFINE_LDST(l_be, l_be, 32);
679
PCI_DMA_DEFINE_LDST(q_be, q_be, 64);
680

    
681
#undef PCI_DMA_DEFINE_LDST
682

    
683
static inline void *pci_dma_map(PCIDevice *dev, dma_addr_t addr,
684
                                dma_addr_t *plen, DMADirection dir)
685
{
686
    void *buf;
687

    
688
    buf = dma_memory_map(pci_dma_context(dev), addr, plen, dir);
689
    return buf;
690
}
691

    
692
static inline void pci_dma_unmap(PCIDevice *dev, void *buffer, dma_addr_t len,
693
                                 DMADirection dir, dma_addr_t access_len)
694
{
695
    dma_memory_unmap(pci_dma_context(dev), buffer, len, dir, access_len);
696
}
697

    
698
static inline void pci_dma_sglist_init(QEMUSGList *qsg, PCIDevice *dev,
699
                                       int alloc_hint)
700
{
701
    qemu_sglist_init(qsg, alloc_hint, pci_dma_context(dev));
702
}
703

    
704
extern const VMStateDescription vmstate_pci_device;
705

    
706
#define VMSTATE_PCI_DEVICE(_field, _state) {                         \
707
    .name       = (stringify(_field)),                               \
708
    .size       = sizeof(PCIDevice),                                 \
709
    .vmsd       = &vmstate_pci_device,                               \
710
    .flags      = VMS_STRUCT,                                        \
711
    .offset     = vmstate_offset_value(_state, _field, PCIDevice),   \
712
}
713

    
714
#define VMSTATE_PCI_DEVICE_POINTER(_field, _state) {                 \
715
    .name       = (stringify(_field)),                               \
716
    .size       = sizeof(PCIDevice),                                 \
717
    .vmsd       = &vmstate_pci_device,                               \
718
    .flags      = VMS_STRUCT|VMS_POINTER,                            \
719
    .offset     = vmstate_offset_pointer(_state, _field, PCIDevice), \
720
}
721

    
722
#endif