4 * Copyright (c) 2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
33 # define PCI_DPRINTF(format, ...) printf(format, __VA_ARGS__)
35 # define PCI_DPRINTF(format, ...) do { } while (0)
42 pci_set_irq_fn set_irq
;
43 pci_map_irq_fn map_irq
;
44 pci_hotplug_fn hotplug
;
45 uint32_t config_reg
; /* XXX: suppress */
47 PCIDevice
*devices
[256];
48 PCIDevice
*parent_dev
;
50 /* The bus IRQ state is the logical OR of the connected devices.
51 Keep a count of the number of devices with raised IRQs. */
56 static void pcibus_dev_print(Monitor
*mon
, DeviceState
*dev
, int indent
);
58 static struct BusInfo pci_bus_info
= {
60 .size
= sizeof(PCIBus
),
61 .print_dev
= pcibus_dev_print
,
62 .props
= (Property
[]) {
63 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice
, devfn
, -1),
64 DEFINE_PROP_END_OF_LIST()
68 static void pci_update_mappings(PCIDevice
*d
);
69 static void pci_set_irq(void *opaque
, int irq_num
, int level
);
71 target_phys_addr_t pci_mem_base
;
72 static uint16_t pci_default_sub_vendor_id
= PCI_SUBVENDOR_ID_REDHAT_QUMRANET
;
73 static uint16_t pci_default_sub_device_id
= PCI_SUBDEVICE_ID_QEMU
;
74 static PCIBus
*first_bus
;
76 static const VMStateDescription vmstate_pcibus
= {
79 .minimum_version_id
= 1,
80 .minimum_version_id_old
= 1,
81 .fields
= (VMStateField
[]) {
82 VMSTATE_INT32_EQUAL(nirq
, PCIBus
),
83 VMSTATE_INT32_VARRAY(irq_count
, PCIBus
, nirq
),
88 static inline int pci_bar(int reg
)
90 return reg
== PCI_ROM_SLOT
? PCI_ROM_ADDRESS
: PCI_BASE_ADDRESS_0
+ reg
* 4;
93 static void pci_device_reset(PCIDevice
*dev
)
97 memset(dev
->irq_state
, 0, sizeof dev
->irq_state
);
98 dev
->config
[PCI_COMMAND
] &= ~(PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
|
100 dev
->config
[PCI_CACHE_LINE_SIZE
] = 0x0;
101 dev
->config
[PCI_INTERRUPT_LINE
] = 0x0;
102 for (r
= 0; r
< PCI_NUM_REGIONS
; ++r
) {
103 if (!dev
->io_regions
[r
].size
) {
106 pci_set_long(dev
->config
+ pci_bar(r
), dev
->io_regions
[r
].type
);
108 pci_update_mappings(dev
);
111 static void pci_bus_reset(void *opaque
)
113 PCIBus
*bus
= opaque
;
116 for (i
= 0; i
< bus
->nirq
; i
++) {
117 bus
->irq_count
[i
] = 0;
119 for (i
= 0; i
< ARRAY_SIZE(bus
->devices
); ++i
) {
120 if (bus
->devices
[i
]) {
121 pci_device_reset(bus
->devices
[i
]);
126 void pci_bus_new_inplace(PCIBus
*bus
, DeviceState
*parent
,
127 const char *name
, int devfn_min
)
131 qbus_create_inplace(&bus
->qbus
, &pci_bus_info
, parent
, name
);
132 bus
->devfn_min
= devfn_min
;
133 bus
->next
= first_bus
;
135 vmstate_register(nbus
++, &vmstate_pcibus
, bus
);
136 qemu_register_reset(pci_bus_reset
, bus
);
139 PCIBus
*pci_bus_new(DeviceState
*parent
, const char *name
, int devfn_min
)
143 bus
= qemu_mallocz(sizeof(*bus
));
144 bus
->qbus
.qdev_allocated
= 1;
145 pci_bus_new_inplace(bus
, parent
, name
, devfn_min
);
149 void pci_bus_irqs(PCIBus
*bus
, pci_set_irq_fn set_irq
, pci_map_irq_fn map_irq
,
150 void *irq_opaque
, int nirq
)
152 bus
->set_irq
= set_irq
;
153 bus
->map_irq
= map_irq
;
154 bus
->irq_opaque
= irq_opaque
;
156 bus
->irq_count
= qemu_mallocz(nirq
* sizeof(bus
->irq_count
[0]));
159 void pci_bus_hotplug(PCIBus
*bus
, pci_hotplug_fn hotplug
)
161 bus
->qbus
.allow_hotplug
= 1;
162 bus
->hotplug
= hotplug
;
165 PCIBus
*pci_register_bus(DeviceState
*parent
, const char *name
,
166 pci_set_irq_fn set_irq
, pci_map_irq_fn map_irq
,
167 void *irq_opaque
, int devfn_min
, int nirq
)
171 bus
= pci_bus_new(parent
, name
, devfn_min
);
172 pci_bus_irqs(bus
, set_irq
, map_irq
, irq_opaque
, nirq
);
176 static void pci_register_secondary_bus(PCIBus
*bus
,
178 pci_map_irq_fn map_irq
,
181 qbus_create_inplace(&bus
->qbus
, &pci_bus_info
, &dev
->qdev
, name
);
182 bus
->map_irq
= map_irq
;
183 bus
->parent_dev
= dev
;
184 bus
->next
= dev
->bus
->next
;
185 dev
->bus
->next
= bus
;
188 int pci_bus_num(PCIBus
*s
)
193 static int get_pci_config_device(QEMUFile
*f
, void *pv
, size_t size
)
195 PCIDevice
*s
= container_of(pv
, PCIDevice
, config
);
196 uint8_t config
[size
];
199 qemu_get_buffer(f
, config
, size
);
200 for (i
= 0; i
< size
; ++i
)
201 if ((config
[i
] ^ s
->config
[i
]) & s
->cmask
[i
] & ~s
->wmask
[i
])
203 memcpy(s
->config
, config
, size
);
205 pci_update_mappings(s
);
210 /* just put buffer */
211 static void put_pci_config_device(QEMUFile
*f
, void *pv
, size_t size
)
213 const uint8_t *v
= pv
;
214 qemu_put_buffer(f
, v
, size
);
217 static VMStateInfo vmstate_info_pci_config
= {
218 .name
= "pci config",
219 .get
= get_pci_config_device
,
220 .put
= put_pci_config_device
,
223 const VMStateDescription vmstate_pci_device
= {
226 .minimum_version_id
= 1,
227 .minimum_version_id_old
= 1,
228 .fields
= (VMStateField
[]) {
229 VMSTATE_INT32_LE(version_id
, PCIDevice
),
230 VMSTATE_SINGLE(config
, PCIDevice
, 0, vmstate_info_pci_config
,
231 typeof_field(PCIDevice
,config
)),
232 VMSTATE_INT32_ARRAY_V(irq_state
, PCIDevice
, 4, 2),
233 VMSTATE_END_OF_LIST()
237 void pci_device_save(PCIDevice
*s
, QEMUFile
*f
)
239 vmstate_save_state(f
, &vmstate_pci_device
, s
);
242 int pci_device_load(PCIDevice
*s
, QEMUFile
*f
)
244 return vmstate_load_state(f
, &vmstate_pci_device
, s
, s
->version_id
);
247 static int pci_set_default_subsystem_id(PCIDevice
*pci_dev
)
251 id
= (void*)(&pci_dev
->config
[PCI_SUBVENDOR_ID
]);
252 id
[0] = cpu_to_le16(pci_default_sub_vendor_id
);
253 id
[1] = cpu_to_le16(pci_default_sub_device_id
);
258 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error
260 static int pci_parse_devaddr(const char *addr
, int *domp
, int *busp
, unsigned *slotp
)
265 unsigned long dom
= 0, bus
= 0;
269 val
= strtoul(p
, &e
, 16);
275 val
= strtoul(p
, &e
, 16);
282 val
= strtoul(p
, &e
, 16);
288 if (dom
> 0xffff || bus
> 0xff || val
> 0x1f)
296 /* Note: QEMU doesn't implement domains other than 0 */
297 if (dom
!= 0 || pci_find_bus(bus
) == NULL
)
306 int pci_read_devaddr(Monitor
*mon
, const char *addr
, int *domp
, int *busp
,
309 /* strip legacy tag */
310 if (!strncmp(addr
, "pci_addr=", 9)) {
313 if (pci_parse_devaddr(addr
, domp
, busp
, slotp
)) {
314 monitor_printf(mon
, "Invalid pci address\n");
320 PCIBus
*pci_get_bus_devfn(int *devfnp
, const char *devaddr
)
327 return pci_find_bus(0);
330 if (pci_parse_devaddr(devaddr
, &dom
, &bus
, &slot
) < 0) {
335 return pci_find_bus(bus
);
338 static void pci_init_cmask(PCIDevice
*dev
)
340 pci_set_word(dev
->cmask
+ PCI_VENDOR_ID
, 0xffff);
341 pci_set_word(dev
->cmask
+ PCI_DEVICE_ID
, 0xffff);
342 dev
->cmask
[PCI_STATUS
] = PCI_STATUS_CAP_LIST
;
343 dev
->cmask
[PCI_REVISION_ID
] = 0xff;
344 dev
->cmask
[PCI_CLASS_PROG
] = 0xff;
345 pci_set_word(dev
->cmask
+ PCI_CLASS_DEVICE
, 0xffff);
346 dev
->cmask
[PCI_HEADER_TYPE
] = 0xff;
347 dev
->cmask
[PCI_CAPABILITY_LIST
] = 0xff;
350 static void pci_init_wmask(PCIDevice
*dev
)
353 dev
->wmask
[PCI_CACHE_LINE_SIZE
] = 0xff;
354 dev
->wmask
[PCI_INTERRUPT_LINE
] = 0xff;
355 dev
->wmask
[PCI_COMMAND
] = PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
356 | PCI_COMMAND_MASTER
;
357 for (i
= PCI_CONFIG_HEADER_SIZE
; i
< PCI_CONFIG_SPACE_SIZE
; ++i
)
358 dev
->wmask
[i
] = 0xff;
361 /* -1 for devfn means auto assign */
362 static PCIDevice
*do_pci_register_device(PCIDevice
*pci_dev
, PCIBus
*bus
,
363 const char *name
, int devfn
,
364 PCIConfigReadFunc
*config_read
,
365 PCIConfigWriteFunc
*config_write
)
368 for(devfn
= bus
->devfn_min
; devfn
< 256; devfn
+= 8) {
369 if (!bus
->devices
[devfn
])
374 } else if (bus
->devices
[devfn
]) {
378 pci_dev
->devfn
= devfn
;
379 pstrcpy(pci_dev
->name
, sizeof(pci_dev
->name
), name
);
380 memset(pci_dev
->irq_state
, 0, sizeof(pci_dev
->irq_state
));
381 pci_set_default_subsystem_id(pci_dev
);
382 pci_init_cmask(pci_dev
);
383 pci_init_wmask(pci_dev
);
386 config_read
= pci_default_read_config
;
388 config_write
= pci_default_write_config
;
389 pci_dev
->config_read
= config_read
;
390 pci_dev
->config_write
= config_write
;
391 bus
->devices
[devfn
] = pci_dev
;
392 pci_dev
->irq
= qemu_allocate_irqs(pci_set_irq
, pci_dev
, 4);
393 pci_dev
->version_id
= 2; /* Current pci device vmstate version */
397 PCIDevice
*pci_register_device(PCIBus
*bus
, const char *name
,
398 int instance_size
, int devfn
,
399 PCIConfigReadFunc
*config_read
,
400 PCIConfigWriteFunc
*config_write
)
404 pci_dev
= qemu_mallocz(instance_size
);
405 pci_dev
= do_pci_register_device(pci_dev
, bus
, name
, devfn
,
406 config_read
, config_write
);
409 static target_phys_addr_t
pci_to_cpu_addr(target_phys_addr_t addr
)
411 return addr
+ pci_mem_base
;
414 static void pci_unregister_io_regions(PCIDevice
*pci_dev
)
419 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
420 r
= &pci_dev
->io_regions
[i
];
421 if (!r
->size
|| r
->addr
== -1)
423 if (r
->type
== PCI_ADDRESS_SPACE_IO
) {
424 isa_unassign_ioport(r
->addr
, r
->size
);
426 cpu_register_physical_memory(pci_to_cpu_addr(r
->addr
),
433 static int pci_unregister_device(DeviceState
*dev
)
435 PCIDevice
*pci_dev
= DO_UPCAST(PCIDevice
, qdev
, dev
);
436 PCIDeviceInfo
*info
= DO_UPCAST(PCIDeviceInfo
, qdev
, dev
->info
);
440 ret
= info
->exit(pci_dev
);
444 msix_uninit(pci_dev
);
445 pci_unregister_io_regions(pci_dev
);
447 qemu_free_irqs(pci_dev
->irq
);
448 pci_dev
->bus
->devices
[pci_dev
->devfn
] = NULL
;
452 void pci_register_bar(PCIDevice
*pci_dev
, int region_num
,
453 uint32_t size
, int type
,
454 PCIMapIORegionFunc
*map_func
)
460 if ((unsigned int)region_num
>= PCI_NUM_REGIONS
)
463 if (size
& (size
-1)) {
464 fprintf(stderr
, "ERROR: PCI region size must be pow2 "
465 "type=0x%x, size=0x%x\n", type
, size
);
469 r
= &pci_dev
->io_regions
[region_num
];
473 r
->map_func
= map_func
;
476 addr
= pci_bar(region_num
);
477 if (region_num
== PCI_ROM_SLOT
) {
478 /* ROM enable bit is writeable */
479 wmask
|= PCI_ROM_ADDRESS_ENABLE
;
481 *(uint32_t *)(pci_dev
->config
+ addr
) = cpu_to_le32(type
);
482 *(uint32_t *)(pci_dev
->wmask
+ addr
) = cpu_to_le32(wmask
);
483 *(uint32_t *)(pci_dev
->cmask
+ addr
) = 0xffffffff;
486 static void pci_update_mappings(PCIDevice
*d
)
490 uint32_t last_addr
, new_addr
;
492 cmd
= le16_to_cpu(*(uint16_t *)(d
->config
+ PCI_COMMAND
));
493 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
494 r
= &d
->io_regions
[i
];
496 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
497 if (cmd
& PCI_COMMAND_IO
) {
498 new_addr
= pci_get_long(d
->config
+ pci_bar(i
));
499 new_addr
= new_addr
& ~(r
->size
- 1);
500 last_addr
= new_addr
+ r
->size
- 1;
501 /* NOTE: we have only 64K ioports on PC */
502 if (last_addr
<= new_addr
|| new_addr
== 0 ||
503 last_addr
>= 0x10000) {
510 if (cmd
& PCI_COMMAND_MEMORY
) {
511 new_addr
= pci_get_long(d
->config
+ pci_bar(i
));
512 /* the ROM slot has a specific enable bit */
513 if (i
== PCI_ROM_SLOT
&& !(new_addr
& PCI_ROM_ADDRESS_ENABLE
))
515 new_addr
= new_addr
& ~(r
->size
- 1);
516 last_addr
= new_addr
+ r
->size
- 1;
517 /* NOTE: we do not support wrapping */
518 /* XXX: as we cannot support really dynamic
519 mappings, we handle specific values as invalid
521 if (last_addr
<= new_addr
|| new_addr
== 0 ||
530 /* now do the real mapping */
531 if (new_addr
!= r
->addr
) {
533 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
535 /* NOTE: specific hack for IDE in PC case:
536 only one byte must be mapped. */
537 class = pci_get_word(d
->config
+ PCI_CLASS_DEVICE
);
538 if (class == 0x0101 && r
->size
== 4) {
539 isa_unassign_ioport(r
->addr
+ 2, 1);
541 isa_unassign_ioport(r
->addr
, r
->size
);
544 cpu_register_physical_memory(pci_to_cpu_addr(r
->addr
),
547 qemu_unregister_coalesced_mmio(r
->addr
, r
->size
);
552 r
->map_func(d
, i
, r
->addr
, r
->size
, r
->type
);
559 uint32_t pci_default_read_config(PCIDevice
*d
,
560 uint32_t address
, int len
)
567 if (address
<= 0xfc) {
568 val
= le32_to_cpu(*(uint32_t *)(d
->config
+ address
));
573 if (address
<= 0xfe) {
574 val
= le16_to_cpu(*(uint16_t *)(d
->config
+ address
));
579 val
= d
->config
[address
];
585 void pci_default_write_config(PCIDevice
*d
, uint32_t addr
, uint32_t val
, int l
)
587 uint8_t orig
[PCI_CONFIG_SPACE_SIZE
];
590 /* not efficient, but simple */
591 memcpy(orig
, d
->config
, PCI_CONFIG_SPACE_SIZE
);
592 for(i
= 0; i
< l
&& addr
< PCI_CONFIG_SPACE_SIZE
; val
>>= 8, ++i
, ++addr
) {
593 uint8_t wmask
= d
->wmask
[addr
];
594 d
->config
[addr
] = (d
->config
[addr
] & ~wmask
) | (val
& wmask
);
596 if (memcmp(orig
+ PCI_BASE_ADDRESS_0
, d
->config
+ PCI_BASE_ADDRESS_0
, 24)
597 || ((orig
[PCI_COMMAND
] ^ d
->config
[PCI_COMMAND
])
598 & (PCI_COMMAND_MEMORY
| PCI_COMMAND_IO
)))
599 pci_update_mappings(d
);
602 void pci_data_write(void *opaque
, uint32_t addr
, uint32_t val
, int len
)
606 int config_addr
, bus_num
;
609 PCI_DPRINTF("pci_data_write: addr=%08x val=%08x len=%d\n",
612 bus_num
= (addr
>> 16) & 0xff;
613 while (s
&& s
->bus_num
!= bus_num
)
617 pci_dev
= s
->devices
[(addr
>> 8) & 0xff];
620 config_addr
= addr
& 0xff;
621 PCI_DPRINTF("pci_config_write: %s: addr=%02x val=%08x len=%d\n",
622 pci_dev
->name
, config_addr
, val
, len
);
623 pci_dev
->config_write(pci_dev
, config_addr
, val
, len
);
626 uint32_t pci_data_read(void *opaque
, uint32_t addr
, int len
)
630 int config_addr
, bus_num
;
633 bus_num
= (addr
>> 16) & 0xff;
634 while (s
&& s
->bus_num
!= bus_num
)
638 pci_dev
= s
->devices
[(addr
>> 8) & 0xff];
655 config_addr
= addr
& 0xff;
656 val
= pci_dev
->config_read(pci_dev
, config_addr
, len
);
657 PCI_DPRINTF("pci_config_read: %s: addr=%02x val=%08x len=%d\n",
658 pci_dev
->name
, config_addr
, val
, len
);
661 PCI_DPRINTF("pci_data_read: addr=%08x val=%08x len=%d\n",
667 /***********************************************************/
668 /* generic PCI irq support */
670 /* 0 <= irq_num <= 3. level must be 0 or 1 */
671 static void pci_set_irq(void *opaque
, int irq_num
, int level
)
673 PCIDevice
*pci_dev
= opaque
;
677 change
= level
- pci_dev
->irq_state
[irq_num
];
681 pci_dev
->irq_state
[irq_num
] = level
;
684 irq_num
= bus
->map_irq(pci_dev
, irq_num
);
687 pci_dev
= bus
->parent_dev
;
689 bus
->irq_count
[irq_num
] += change
;
690 bus
->set_irq(bus
->irq_opaque
, irq_num
, bus
->irq_count
[irq_num
] != 0);
693 /***********************************************************/
694 /* monitor info on PCI */
701 static const pci_class_desc pci_class_descriptions
[] =
703 { 0x0100, "SCSI controller"},
704 { 0x0101, "IDE controller"},
705 { 0x0102, "Floppy controller"},
706 { 0x0103, "IPI controller"},
707 { 0x0104, "RAID controller"},
708 { 0x0106, "SATA controller"},
709 { 0x0107, "SAS controller"},
710 { 0x0180, "Storage controller"},
711 { 0x0200, "Ethernet controller"},
712 { 0x0201, "Token Ring controller"},
713 { 0x0202, "FDDI controller"},
714 { 0x0203, "ATM controller"},
715 { 0x0280, "Network controller"},
716 { 0x0300, "VGA controller"},
717 { 0x0301, "XGA controller"},
718 { 0x0302, "3D controller"},
719 { 0x0380, "Display controller"},
720 { 0x0400, "Video controller"},
721 { 0x0401, "Audio controller"},
723 { 0x0480, "Multimedia controller"},
724 { 0x0500, "RAM controller"},
725 { 0x0501, "Flash controller"},
726 { 0x0580, "Memory controller"},
727 { 0x0600, "Host bridge"},
728 { 0x0601, "ISA bridge"},
729 { 0x0602, "EISA bridge"},
730 { 0x0603, "MC bridge"},
731 { 0x0604, "PCI bridge"},
732 { 0x0605, "PCMCIA bridge"},
733 { 0x0606, "NUBUS bridge"},
734 { 0x0607, "CARDBUS bridge"},
735 { 0x0608, "RACEWAY bridge"},
737 { 0x0c03, "USB controller"},
741 static void pci_info_device(PCIDevice
*d
)
743 Monitor
*mon
= cur_mon
;
746 const pci_class_desc
*desc
;
748 monitor_printf(mon
, " Bus %2d, device %3d, function %d:\n",
749 d
->bus
->bus_num
, d
->devfn
>> 3, d
->devfn
& 7);
750 class = le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_CLASS_DEVICE
)));
751 monitor_printf(mon
, " ");
752 desc
= pci_class_descriptions
;
753 while (desc
->desc
&& class != desc
->class)
756 monitor_printf(mon
, "%s", desc
->desc
);
758 monitor_printf(mon
, "Class %04x", class);
760 monitor_printf(mon
, ": PCI device %04x:%04x\n",
761 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_VENDOR_ID
))),
762 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_DEVICE_ID
))));
764 if (d
->config
[PCI_INTERRUPT_PIN
] != 0) {
765 monitor_printf(mon
, " IRQ %d.\n",
766 d
->config
[PCI_INTERRUPT_LINE
]);
768 if (class == 0x0604) {
769 monitor_printf(mon
, " BUS %d.\n", d
->config
[0x19]);
771 for(i
= 0;i
< PCI_NUM_REGIONS
; i
++) {
772 r
= &d
->io_regions
[i
];
774 monitor_printf(mon
, " BAR%d: ", i
);
775 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
776 monitor_printf(mon
, "I/O at 0x%04x [0x%04x].\n",
777 r
->addr
, r
->addr
+ r
->size
- 1);
779 monitor_printf(mon
, "32 bit memory at 0x%08x [0x%08x].\n",
780 r
->addr
, r
->addr
+ r
->size
- 1);
784 monitor_printf(mon
, " id \"%s\"\n", d
->qdev
.id
? d
->qdev
.id
: "");
785 if (class == 0x0604 && d
->config
[0x19] != 0) {
786 pci_for_each_device(d
->config
[0x19], pci_info_device
);
790 void pci_for_each_device(int bus_num
, void (*fn
)(PCIDevice
*d
))
792 PCIBus
*bus
= first_bus
;
796 while (bus
&& bus
->bus_num
!= bus_num
)
799 for(devfn
= 0; devfn
< 256; devfn
++) {
800 d
= bus
->devices
[devfn
];
807 void pci_info(Monitor
*mon
)
809 pci_for_each_device(0, pci_info_device
);
812 PCIDevice
*pci_create(const char *name
, const char *devaddr
)
818 bus
= pci_get_bus_devfn(&devfn
, devaddr
);
820 fprintf(stderr
, "Invalid PCI device address %s for device %s\n",
825 dev
= qdev_create(&bus
->qbus
, name
);
826 qdev_prop_set_uint32(dev
, "addr", devfn
);
827 return (PCIDevice
*)dev
;
830 static const char * const pci_nic_models
[] = {
842 static const char * const pci_nic_names
[] = {
854 int pci_nic_supported(const char *model
)
858 for (i
= 0; pci_nic_names
[i
]; i
++)
859 if (strcmp(model
, pci_nic_names
[i
]) == 0)
865 /* Initialize a PCI NIC. */
866 PCIDevice
*pci_nic_init(NICInfo
*nd
, const char *default_model
,
867 const char *default_devaddr
)
869 const char *devaddr
= nd
->devaddr
? nd
->devaddr
: default_devaddr
;
876 i
= qemu_find_nic_model(nd
, pci_nic_models
, default_model
);
880 bus
= pci_get_bus_devfn(&devfn
, devaddr
);
882 qemu_error("Invalid PCI device address %s for device %s\n",
883 devaddr
, pci_nic_names
[i
]);
887 pci_dev
= pci_create_noinit(bus
, devfn
, pci_nic_names
[i
]);
888 dev
= &pci_dev
->qdev
;
890 dev
->id
= qemu_strdup(nd
->id
);
892 if (qdev_init(dev
) < 0)
898 PCIDevice
*pci_nic_init_nofail(NICInfo
*nd
, const char *default_model
,
899 const char *default_devaddr
)
903 if (qemu_show_nic_models(nd
->model
, pci_nic_models
))
906 res
= pci_nic_init(nd
, default_model
, default_devaddr
);
919 static void pci_bridge_write_config(PCIDevice
*d
,
920 uint32_t address
, uint32_t val
, int len
)
922 PCIBridge
*s
= (PCIBridge
*)d
;
924 pci_default_write_config(d
, address
, val
, len
);
925 s
->bus
.bus_num
= d
->config
[PCI_SECONDARY_BUS
];
928 PCIBus
*pci_find_bus(int bus_num
)
930 PCIBus
*bus
= first_bus
;
932 while (bus
&& bus
->bus_num
!= bus_num
)
938 PCIDevice
*pci_find_device(int bus_num
, int slot
, int function
)
940 PCIBus
*bus
= pci_find_bus(bus_num
);
945 return bus
->devices
[PCI_DEVFN(slot
, function
)];
948 static int pci_bridge_initfn(PCIDevice
*dev
)
950 PCIBridge
*s
= DO_UPCAST(PCIBridge
, dev
, dev
);
952 pci_config_set_vendor_id(s
->dev
.config
, s
->vid
);
953 pci_config_set_device_id(s
->dev
.config
, s
->did
);
955 s
->dev
.config
[0x04] = 0x06; // command = bus master, pci mem
956 s
->dev
.config
[0x05] = 0x00;
957 s
->dev
.config
[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
958 s
->dev
.config
[0x07] = 0x00; // status = fast devsel
959 s
->dev
.config
[0x08] = 0x00; // revision
960 s
->dev
.config
[0x09] = 0x00; // programming i/f
961 pci_config_set_class(s
->dev
.config
, PCI_CLASS_BRIDGE_PCI
);
962 s
->dev
.config
[0x0D] = 0x10; // latency_timer
963 s
->dev
.config
[PCI_HEADER_TYPE
] =
964 PCI_HEADER_TYPE_MULTI_FUNCTION
| PCI_HEADER_TYPE_BRIDGE
; // header_type
965 s
->dev
.config
[0x1E] = 0xa0; // secondary status
969 PCIBus
*pci_bridge_init(PCIBus
*bus
, int devfn
, uint16_t vid
, uint16_t did
,
970 pci_map_irq_fn map_irq
, const char *name
)
975 dev
= pci_create_noinit(bus
, devfn
, "pci-bridge");
976 qdev_prop_set_uint32(&dev
->qdev
, "vendorid", vid
);
977 qdev_prop_set_uint32(&dev
->qdev
, "deviceid", did
);
978 qdev_init(&dev
->qdev
);
980 s
= DO_UPCAST(PCIBridge
, dev
, dev
);
981 pci_register_secondary_bus(&s
->bus
, &s
->dev
, map_irq
, name
);
985 static int pci_qdev_init(DeviceState
*qdev
, DeviceInfo
*base
)
987 PCIDevice
*pci_dev
= (PCIDevice
*)qdev
;
988 PCIDeviceInfo
*info
= container_of(base
, PCIDeviceInfo
, qdev
);
992 bus
= FROM_QBUS(PCIBus
, qdev_get_parent_bus(qdev
));
993 devfn
= pci_dev
->devfn
;
994 pci_dev
= do_pci_register_device(pci_dev
, bus
, base
->name
, devfn
,
995 info
->config_read
, info
->config_write
);
997 rc
= info
->init(pci_dev
);
1000 if (qdev
->hotplugged
)
1001 bus
->hotplug(pci_dev
, 1);
1005 static int pci_unplug_device(DeviceState
*qdev
)
1007 PCIDevice
*dev
= DO_UPCAST(PCIDevice
, qdev
, qdev
);
1009 dev
->bus
->hotplug(dev
, 0);
1013 void pci_qdev_register(PCIDeviceInfo
*info
)
1015 info
->qdev
.init
= pci_qdev_init
;
1016 info
->qdev
.unplug
= pci_unplug_device
;
1017 info
->qdev
.exit
= pci_unregister_device
;
1018 info
->qdev
.bus_info
= &pci_bus_info
;
1019 qdev_register(&info
->qdev
);
1022 void pci_qdev_register_many(PCIDeviceInfo
*info
)
1024 while (info
->qdev
.name
) {
1025 pci_qdev_register(info
);
1030 PCIDevice
*pci_create_noinit(PCIBus
*bus
, int devfn
, const char *name
)
1034 dev
= qdev_create(&bus
->qbus
, name
);
1035 qdev_prop_set_uint32(dev
, "addr", devfn
);
1036 return DO_UPCAST(PCIDevice
, qdev
, dev
);
1039 PCIDevice
*pci_create_simple(PCIBus
*bus
, int devfn
, const char *name
)
1041 PCIDevice
*dev
= pci_create_noinit(bus
, devfn
, name
);
1042 qdev_init(&dev
->qdev
);
1046 static int pci_find_space(PCIDevice
*pdev
, uint8_t size
)
1048 int offset
= PCI_CONFIG_HEADER_SIZE
;
1050 for (i
= PCI_CONFIG_HEADER_SIZE
; i
< PCI_CONFIG_SPACE_SIZE
; ++i
)
1053 else if (i
- offset
+ 1 == size
)
1058 static uint8_t pci_find_capability_list(PCIDevice
*pdev
, uint8_t cap_id
,
1063 if (!(pdev
->config
[PCI_STATUS
] & PCI_STATUS_CAP_LIST
))
1066 for (prev
= PCI_CAPABILITY_LIST
; (next
= pdev
->config
[prev
]);
1067 prev
= next
+ PCI_CAP_LIST_NEXT
)
1068 if (pdev
->config
[next
+ PCI_CAP_LIST_ID
] == cap_id
)
1076 /* Reserve space and add capability to the linked list in pci config space */
1077 int pci_add_capability(PCIDevice
*pdev
, uint8_t cap_id
, uint8_t size
)
1079 uint8_t offset
= pci_find_space(pdev
, size
);
1080 uint8_t *config
= pdev
->config
+ offset
;
1083 config
[PCI_CAP_LIST_ID
] = cap_id
;
1084 config
[PCI_CAP_LIST_NEXT
] = pdev
->config
[PCI_CAPABILITY_LIST
];
1085 pdev
->config
[PCI_CAPABILITY_LIST
] = offset
;
1086 pdev
->config
[PCI_STATUS
] |= PCI_STATUS_CAP_LIST
;
1087 memset(pdev
->used
+ offset
, 0xFF, size
);
1088 /* Make capability read-only by default */
1089 memset(pdev
->wmask
+ offset
, 0, size
);
1090 /* Check capability by default */
1091 memset(pdev
->cmask
+ offset
, 0xFF, size
);
1095 /* Unlink capability from the pci config space. */
1096 void pci_del_capability(PCIDevice
*pdev
, uint8_t cap_id
, uint8_t size
)
1098 uint8_t prev
, offset
= pci_find_capability_list(pdev
, cap_id
, &prev
);
1101 pdev
->config
[prev
] = pdev
->config
[offset
+ PCI_CAP_LIST_NEXT
];
1102 /* Make capability writeable again */
1103 memset(pdev
->wmask
+ offset
, 0xff, size
);
1104 /* Clear cmask as device-specific registers can't be checked */
1105 memset(pdev
->cmask
+ offset
, 0, size
);
1106 memset(pdev
->used
+ offset
, 0, size
);
1108 if (!pdev
->config
[PCI_CAPABILITY_LIST
])
1109 pdev
->config
[PCI_STATUS
] &= ~PCI_STATUS_CAP_LIST
;
1112 /* Reserve space for capability at a known offset (to call after load). */
1113 void pci_reserve_capability(PCIDevice
*pdev
, uint8_t offset
, uint8_t size
)
1115 memset(pdev
->used
+ offset
, 0xff, size
);
1118 uint8_t pci_find_capability(PCIDevice
*pdev
, uint8_t cap_id
)
1120 return pci_find_capability_list(pdev
, cap_id
, NULL
);
1123 static void pcibus_dev_print(Monitor
*mon
, DeviceState
*dev
, int indent
)
1125 PCIDevice
*d
= (PCIDevice
*)dev
;
1126 const pci_class_desc
*desc
;
1131 class = le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_CLASS_DEVICE
)));
1132 desc
= pci_class_descriptions
;
1133 while (desc
->desc
&& class != desc
->class)
1136 snprintf(ctxt
, sizeof(ctxt
), "%s", desc
->desc
);
1138 snprintf(ctxt
, sizeof(ctxt
), "Class %04x", class);
1141 monitor_printf(mon
, "%*sclass %s, addr %02x:%02x.%x, "
1142 "pci id %04x:%04x (sub %04x:%04x)\n",
1144 d
->bus
->bus_num
, d
->devfn
>> 3, d
->devfn
& 7,
1145 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_VENDOR_ID
))),
1146 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_DEVICE_ID
))),
1147 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_SUBSYSTEM_VENDOR_ID
))),
1148 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_SUBSYSTEM_ID
))));
1149 for (i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
1150 r
= &d
->io_regions
[i
];
1153 monitor_printf(mon
, "%*sbar %d: %s at 0x%x [0x%x]\n", indent
, "",
1154 i
, r
->type
& PCI_ADDRESS_SPACE_IO
? "i/o" : "mem",
1155 r
->addr
, r
->addr
+ r
->size
- 1);
1159 static PCIDeviceInfo bridge_info
= {
1160 .qdev
.name
= "pci-bridge",
1161 .qdev
.size
= sizeof(PCIBridge
),
1162 .init
= pci_bridge_initfn
,
1163 .config_write
= pci_bridge_write_config
,
1164 .qdev
.props
= (Property
[]) {
1165 DEFINE_PROP_HEX32("vendorid", PCIBridge
, vid
, 0),
1166 DEFINE_PROP_HEX32("deviceid", PCIBridge
, did
, 0),
1167 DEFINE_PROP_END_OF_LIST(),
1171 static void pci_register_devices(void)
1173 pci_qdev_register(&bridge_info
);
1176 device_init(pci_register_devices
)