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
28 #include "virtio-net.h"
36 pci_set_irq_fn set_irq
;
37 pci_map_irq_fn map_irq
;
38 uint32_t config_reg
; /* XXX: suppress */
40 SetIRQFunc
*low_set_irq
;
42 PCIDevice
*devices
[256];
43 PCIDevice
*parent_dev
;
45 /* The bus IRQ state is the logical OR of the connected devices.
46 Keep a count of the number of devices with raised IRQs. */
51 static void pci_update_mappings(PCIDevice
*d
);
52 static void pci_set_irq(void *opaque
, int irq_num
, int level
);
54 target_phys_addr_t pci_mem_base
;
55 static uint16_t pci_default_sub_vendor_id
= PCI_SUBVENDOR_ID_REDHAT_QUMRANET
;
56 static uint16_t pci_default_sub_device_id
= PCI_SUBDEVICE_ID_QEMU
;
57 static int pci_irq_index
;
58 static PCIBus
*first_bus
;
60 static void pcibus_save(QEMUFile
*f
, void *opaque
)
62 PCIBus
*bus
= (PCIBus
*)opaque
;
65 qemu_put_be32(f
, bus
->nirq
);
66 for (i
= 0; i
< bus
->nirq
; i
++)
67 qemu_put_be32(f
, bus
->irq_count
[i
]);
70 static int pcibus_load(QEMUFile
*f
, void *opaque
, int version_id
)
72 PCIBus
*bus
= (PCIBus
*)opaque
;
78 nirq
= qemu_get_be32(f
);
79 if (bus
->nirq
!= nirq
) {
80 fprintf(stderr
, "pcibus_load: nirq mismatch: src=%d dst=%d\n",
85 for (i
= 0; i
< nirq
; i
++)
86 bus
->irq_count
[i
] = qemu_get_be32(f
);
91 PCIBus
*pci_register_bus(pci_set_irq_fn set_irq
, pci_map_irq_fn map_irq
,
92 qemu_irq
*pic
, int devfn_min
, int nirq
)
97 bus
= qemu_mallocz(sizeof(PCIBus
) + (nirq
* sizeof(int)));
98 bus
->set_irq
= set_irq
;
99 bus
->map_irq
= map_irq
;
100 bus
->irq_opaque
= pic
;
101 bus
->devfn_min
= devfn_min
;
104 register_savevm("PCIBUS", nbus
++, 1, pcibus_save
, pcibus_load
, bus
);
108 static PCIBus
*pci_register_secondary_bus(PCIDevice
*dev
, pci_map_irq_fn map_irq
)
111 bus
= qemu_mallocz(sizeof(PCIBus
));
112 bus
->map_irq
= map_irq
;
113 bus
->parent_dev
= dev
;
114 bus
->next
= dev
->bus
->next
;
115 dev
->bus
->next
= bus
;
119 int pci_bus_num(PCIBus
*s
)
124 void pci_device_save(PCIDevice
*s
, QEMUFile
*f
)
128 qemu_put_be32(f
, 2); /* PCI device version */
129 qemu_put_buffer(f
, s
->config
, 256);
130 for (i
= 0; i
< 4; i
++)
131 qemu_put_be32(f
, s
->irq_state
[i
]);
134 int pci_device_load(PCIDevice
*s
, QEMUFile
*f
)
139 version_id
= qemu_get_be32(f
);
142 qemu_get_buffer(f
, s
->config
, 256);
143 pci_update_mappings(s
);
146 for (i
= 0; i
< 4; i
++)
147 s
->irq_state
[i
] = qemu_get_be32(f
);
152 static int pci_set_default_subsystem_id(PCIDevice
*pci_dev
)
156 id
= (void*)(&pci_dev
->config
[PCI_SUBVENDOR_ID
]);
157 id
[0] = cpu_to_le16(pci_default_sub_vendor_id
);
158 id
[1] = cpu_to_le16(pci_default_sub_device_id
);
163 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error
165 static int pci_parse_devaddr(const char *addr
, int *domp
, int *busp
, unsigned *slotp
)
170 unsigned long dom
= 0, bus
= 0;
174 val
= strtoul(p
, &e
, 16);
180 val
= strtoul(p
, &e
, 16);
187 val
= strtoul(p
, &e
, 16);
193 if (dom
> 0xffff || bus
> 0xff || val
> 0x1f)
201 /* Note: QEMU doesn't implement domains other than 0 */
202 if (dom
!= 0 || pci_find_bus(bus
) == NULL
)
211 int pci_read_devaddr(const char *addr
, int *domp
, int *busp
, unsigned *slotp
)
215 if (!get_param_value(devaddr
, sizeof(devaddr
), "pci_addr", addr
))
218 return pci_parse_devaddr(devaddr
, domp
, busp
, slotp
);
221 int pci_assign_devaddr(const char *addr
, int *domp
, int *busp
, unsigned *slotp
)
225 if (!get_param_value(devaddr
, sizeof(devaddr
), "pci_addr", addr
))
228 if (!strcmp(devaddr
, "auto")) {
231 /* want to support dom/bus auto-assign at some point */
235 return pci_parse_devaddr(devaddr
, domp
, busp
, slotp
);
238 /* -1 for devfn means auto assign */
239 PCIDevice
*pci_register_device(PCIBus
*bus
, const char *name
,
240 int instance_size
, int devfn
,
241 PCIConfigReadFunc
*config_read
,
242 PCIConfigWriteFunc
*config_write
)
246 if (pci_irq_index
>= PCI_DEVICES_MAX
)
250 for(devfn
= bus
->devfn_min
; devfn
< 256; devfn
+= 8) {
251 if (!bus
->devices
[devfn
])
257 pci_dev
= qemu_mallocz(instance_size
);
259 pci_dev
->devfn
= devfn
;
260 pstrcpy(pci_dev
->name
, sizeof(pci_dev
->name
), name
);
261 memset(pci_dev
->irq_state
, 0, sizeof(pci_dev
->irq_state
));
262 pci_set_default_subsystem_id(pci_dev
);
265 config_read
= pci_default_read_config
;
267 config_write
= pci_default_write_config
;
268 pci_dev
->config_read
= config_read
;
269 pci_dev
->config_write
= config_write
;
270 pci_dev
->irq_index
= pci_irq_index
++;
271 bus
->devices
[devfn
] = pci_dev
;
272 pci_dev
->irq
= qemu_allocate_irqs(pci_set_irq
, pci_dev
, 4);
276 static target_phys_addr_t
pci_to_cpu_addr(target_phys_addr_t addr
)
278 return addr
+ pci_mem_base
;
281 static void pci_unregister_io_regions(PCIDevice
*pci_dev
)
286 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
287 r
= &pci_dev
->io_regions
[i
];
288 if (!r
->size
|| r
->addr
== -1)
290 if (r
->type
== PCI_ADDRESS_SPACE_IO
) {
291 isa_unassign_ioport(r
->addr
, r
->size
);
293 cpu_register_physical_memory(pci_to_cpu_addr(r
->addr
),
300 int pci_unregister_device(PCIDevice
*pci_dev
)
304 if (pci_dev
->unregister
)
305 ret
= pci_dev
->unregister(pci_dev
);
309 pci_unregister_io_regions(pci_dev
);
311 qemu_free_irqs(pci_dev
->irq
);
313 pci_dev
->bus
->devices
[pci_dev
->devfn
] = NULL
;
318 void pci_register_io_region(PCIDevice
*pci_dev
, int region_num
,
319 uint32_t size
, int type
,
320 PCIMapIORegionFunc
*map_func
)
325 if ((unsigned int)region_num
>= PCI_NUM_REGIONS
)
328 if (size
& (size
-1)) {
329 fprintf(stderr
, "ERROR: PCI region size must be pow2 "
330 "type=0x%x, size=0x%x\n", type
, size
);
334 r
= &pci_dev
->io_regions
[region_num
];
338 r
->map_func
= map_func
;
339 if (region_num
== PCI_ROM_SLOT
) {
342 addr
= 0x10 + region_num
* 4;
344 *(uint32_t *)(pci_dev
->config
+ addr
) = cpu_to_le32(type
);
347 static void pci_update_mappings(PCIDevice
*d
)
351 uint32_t last_addr
, new_addr
, config_ofs
;
353 cmd
= le16_to_cpu(*(uint16_t *)(d
->config
+ PCI_COMMAND
));
354 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
355 r
= &d
->io_regions
[i
];
356 if (i
== PCI_ROM_SLOT
) {
359 config_ofs
= 0x10 + i
* 4;
362 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
363 if (cmd
& PCI_COMMAND_IO
) {
364 new_addr
= le32_to_cpu(*(uint32_t *)(d
->config
+
366 new_addr
= new_addr
& ~(r
->size
- 1);
367 last_addr
= new_addr
+ r
->size
- 1;
368 /* NOTE: we have only 64K ioports on PC */
369 if (last_addr
<= new_addr
|| new_addr
== 0 ||
370 last_addr
>= 0x10000) {
377 if (cmd
& PCI_COMMAND_MEMORY
) {
378 new_addr
= le32_to_cpu(*(uint32_t *)(d
->config
+
380 /* the ROM slot has a specific enable bit */
381 if (i
== PCI_ROM_SLOT
&& !(new_addr
& 1))
383 new_addr
= new_addr
& ~(r
->size
- 1);
384 last_addr
= new_addr
+ r
->size
- 1;
385 /* NOTE: we do not support wrapping */
386 /* XXX: as we cannot support really dynamic
387 mappings, we handle specific values as invalid
389 if (last_addr
<= new_addr
|| new_addr
== 0 ||
398 /* now do the real mapping */
399 if (new_addr
!= r
->addr
) {
401 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
403 /* NOTE: specific hack for IDE in PC case:
404 only one byte must be mapped. */
405 class = d
->config
[0x0a] | (d
->config
[0x0b] << 8);
406 if (class == 0x0101 && r
->size
== 4) {
407 isa_unassign_ioport(r
->addr
+ 2, 1);
409 isa_unassign_ioport(r
->addr
, r
->size
);
412 cpu_register_physical_memory(pci_to_cpu_addr(r
->addr
),
415 qemu_unregister_coalesced_mmio(r
->addr
, r
->size
);
420 r
->map_func(d
, i
, r
->addr
, r
->size
, r
->type
);
427 uint32_t pci_default_read_config(PCIDevice
*d
,
428 uint32_t address
, int len
)
435 if (address
<= 0xfc) {
436 val
= le32_to_cpu(*(uint32_t *)(d
->config
+ address
));
441 if (address
<= 0xfe) {
442 val
= le16_to_cpu(*(uint16_t *)(d
->config
+ address
));
447 val
= d
->config
[address
];
453 void pci_default_write_config(PCIDevice
*d
,
454 uint32_t address
, uint32_t val
, int len
)
459 if (len
== 4 && ((address
>= 0x10 && address
< 0x10 + 4 * 6) ||
460 (address
>= 0x30 && address
< 0x34))) {
464 if ( address
>= 0x30 ) {
467 reg
= (address
- 0x10) >> 2;
469 r
= &d
->io_regions
[reg
];
472 /* compute the stored value */
473 if (reg
== PCI_ROM_SLOT
) {
474 /* keep ROM enable bit */
475 val
&= (~(r
->size
- 1)) | 1;
477 val
&= ~(r
->size
- 1);
480 *(uint32_t *)(d
->config
+ address
) = cpu_to_le32(val
);
481 pci_update_mappings(d
);
485 /* not efficient, but simple */
487 for(i
= 0; i
< len
; i
++) {
488 /* default read/write accesses */
489 switch(d
->config
[0x0e]) {
502 case 0x10 ... 0x27: /* base */
503 case 0x2c ... 0x2f: /* read-only subsystem ID & vendor ID */
504 case 0x30 ... 0x33: /* rom */
525 case 0x2c ... 0x2f: /* read-only subsystem ID & vendor ID */
526 case 0x38 ... 0x3b: /* rom */
537 /* Mask out writes to reserved bits in registers */
540 val
&= ~PCI_COMMAND_RESERVED_MASK_HI
;
543 val
&= ~PCI_STATUS_RESERVED_MASK_LO
;
546 val
&= ~PCI_STATUS_RESERVED_MASK_HI
;
549 d
->config
[addr
] = val
;
557 if (end
> PCI_COMMAND
&& address
< (PCI_COMMAND
+ 2)) {
558 /* if the command register is modified, we must modify the mappings */
559 pci_update_mappings(d
);
563 void pci_data_write(void *opaque
, uint32_t addr
, uint32_t val
, int len
)
567 int config_addr
, bus_num
;
569 #if defined(DEBUG_PCI) && 0
570 printf("pci_data_write: addr=%08x val=%08x len=%d\n",
573 bus_num
= (addr
>> 16) & 0xff;
574 while (s
&& s
->bus_num
!= bus_num
)
578 pci_dev
= s
->devices
[(addr
>> 8) & 0xff];
581 config_addr
= addr
& 0xff;
582 #if defined(DEBUG_PCI)
583 printf("pci_config_write: %s: addr=%02x val=%08x len=%d\n",
584 pci_dev
->name
, config_addr
, val
, len
);
586 pci_dev
->config_write(pci_dev
, config_addr
, val
, len
);
589 uint32_t pci_data_read(void *opaque
, uint32_t addr
, int len
)
593 int config_addr
, bus_num
;
596 bus_num
= (addr
>> 16) & 0xff;
597 while (s
&& s
->bus_num
!= bus_num
)
601 pci_dev
= s
->devices
[(addr
>> 8) & 0xff];
618 config_addr
= addr
& 0xff;
619 val
= pci_dev
->config_read(pci_dev
, config_addr
, len
);
620 #if defined(DEBUG_PCI)
621 printf("pci_config_read: %s: addr=%02x val=%08x len=%d\n",
622 pci_dev
->name
, config_addr
, val
, len
);
625 #if defined(DEBUG_PCI) && 0
626 printf("pci_data_read: addr=%08x val=%08x len=%d\n",
632 /***********************************************************/
633 /* generic PCI irq support */
635 /* 0 <= irq_num <= 3. level must be 0 or 1 */
636 static void pci_set_irq(void *opaque
, int irq_num
, int level
)
638 PCIDevice
*pci_dev
= (PCIDevice
*)opaque
;
642 change
= level
- pci_dev
->irq_state
[irq_num
];
646 pci_dev
->irq_state
[irq_num
] = level
;
649 irq_num
= bus
->map_irq(pci_dev
, irq_num
);
652 pci_dev
= bus
->parent_dev
;
654 bus
->irq_count
[irq_num
] += change
;
655 bus
->set_irq(bus
->irq_opaque
, irq_num
, bus
->irq_count
[irq_num
] != 0);
658 /***********************************************************/
659 /* monitor info on PCI */
666 static const pci_class_desc pci_class_descriptions
[] =
668 { 0x0100, "SCSI controller"},
669 { 0x0101, "IDE controller"},
670 { 0x0102, "Floppy controller"},
671 { 0x0103, "IPI controller"},
672 { 0x0104, "RAID controller"},
673 { 0x0106, "SATA controller"},
674 { 0x0107, "SAS controller"},
675 { 0x0180, "Storage controller"},
676 { 0x0200, "Ethernet controller"},
677 { 0x0201, "Token Ring controller"},
678 { 0x0202, "FDDI controller"},
679 { 0x0203, "ATM controller"},
680 { 0x0280, "Network controller"},
681 { 0x0300, "VGA controller"},
682 { 0x0301, "XGA controller"},
683 { 0x0302, "3D controller"},
684 { 0x0380, "Display controller"},
685 { 0x0400, "Video controller"},
686 { 0x0401, "Audio controller"},
688 { 0x0480, "Multimedia controller"},
689 { 0x0500, "RAM controller"},
690 { 0x0501, "Flash controller"},
691 { 0x0580, "Memory controller"},
692 { 0x0600, "Host bridge"},
693 { 0x0601, "ISA bridge"},
694 { 0x0602, "EISA bridge"},
695 { 0x0603, "MC bridge"},
696 { 0x0604, "PCI bridge"},
697 { 0x0605, "PCMCIA bridge"},
698 { 0x0606, "NUBUS bridge"},
699 { 0x0607, "CARDBUS bridge"},
700 { 0x0608, "RACEWAY bridge"},
702 { 0x0c03, "USB controller"},
706 static void pci_info_device(PCIDevice
*d
)
710 const pci_class_desc
*desc
;
712 term_printf(" Bus %2d, device %3d, function %d:\n",
713 d
->bus
->bus_num
, d
->devfn
>> 3, d
->devfn
& 7);
714 class = le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_CLASS_DEVICE
)));
716 desc
= pci_class_descriptions
;
717 while (desc
->desc
&& class != desc
->class)
720 term_printf("%s", desc
->desc
);
722 term_printf("Class %04x", class);
724 term_printf(": PCI device %04x:%04x\n",
725 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_VENDOR_ID
))),
726 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_DEVICE_ID
))));
728 if (d
->config
[PCI_INTERRUPT_PIN
] != 0) {
729 term_printf(" IRQ %d.\n", d
->config
[PCI_INTERRUPT_LINE
]);
731 if (class == 0x0604) {
732 term_printf(" BUS %d.\n", d
->config
[0x19]);
734 for(i
= 0;i
< PCI_NUM_REGIONS
; i
++) {
735 r
= &d
->io_regions
[i
];
737 term_printf(" BAR%d: ", i
);
738 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
739 term_printf("I/O at 0x%04x [0x%04x].\n",
740 r
->addr
, r
->addr
+ r
->size
- 1);
742 term_printf("32 bit memory at 0x%08x [0x%08x].\n",
743 r
->addr
, r
->addr
+ r
->size
- 1);
747 if (class == 0x0604 && d
->config
[0x19] != 0) {
748 pci_for_each_device(d
->config
[0x19], pci_info_device
);
752 void pci_for_each_device(int bus_num
, void (*fn
)(PCIDevice
*d
))
754 PCIBus
*bus
= first_bus
;
758 while (bus
&& bus
->bus_num
!= bus_num
)
761 for(devfn
= 0; devfn
< 256; devfn
++) {
762 d
= bus
->devices
[devfn
];
771 pci_for_each_device(0, pci_info_device
);
774 static const char * const pci_nic_models
[] = {
786 typedef PCIDevice
*(*PCINICInitFn
)(PCIBus
*, NICInfo
*, int);
788 static PCINICInitFn pci_nic_init_fns
[] = {
800 /* Initialize a PCI NIC. */
801 PCIDevice
*pci_nic_init(PCIBus
*bus
, NICInfo
*nd
, int devfn
,
802 const char *default_model
)
807 qemu_check_nic_model_list(nd
, pci_nic_models
, default_model
);
809 for (i
= 0; pci_nic_models
[i
]; i
++)
810 if (strcmp(nd
->model
, pci_nic_models
[i
]) == 0) {
811 pci_dev
= pci_nic_init_fns
[i
](bus
, nd
, devfn
);
813 nd
->private = pci_dev
;
825 static void pci_bridge_write_config(PCIDevice
*d
,
826 uint32_t address
, uint32_t val
, int len
)
828 PCIBridge
*s
= (PCIBridge
*)d
;
830 if (address
== 0x19 || (address
== 0x18 && len
> 1)) {
832 s
->bus
->bus_num
= val
& 0xff;
834 s
->bus
->bus_num
= (val
>> 8) & 0xff;
835 #if defined(DEBUG_PCI)
836 printf ("pci-bridge: %s: Assigned bus %d\n", d
->name
, s
->bus
->bus_num
);
839 pci_default_write_config(d
, address
, val
, len
);
842 PCIBus
*pci_find_bus(int bus_num
)
844 PCIBus
*bus
= first_bus
;
846 while (bus
&& bus
->bus_num
!= bus_num
)
852 PCIDevice
*pci_find_device(int bus_num
, int slot
, int function
)
854 PCIBus
*bus
= pci_find_bus(bus_num
);
859 return bus
->devices
[PCI_DEVFN(slot
, function
)];
862 PCIBus
*pci_bridge_init(PCIBus
*bus
, int devfn
, uint16_t vid
, uint16_t did
,
863 pci_map_irq_fn map_irq
, const char *name
)
866 s
= (PCIBridge
*)pci_register_device(bus
, name
, sizeof(PCIBridge
),
867 devfn
, NULL
, pci_bridge_write_config
);
869 pci_config_set_vendor_id(s
->dev
.config
, vid
);
870 pci_config_set_device_id(s
->dev
.config
, did
);
872 s
->dev
.config
[0x04] = 0x06; // command = bus master, pci mem
873 s
->dev
.config
[0x05] = 0x00;
874 s
->dev
.config
[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
875 s
->dev
.config
[0x07] = 0x00; // status = fast devsel
876 s
->dev
.config
[0x08] = 0x00; // revision
877 s
->dev
.config
[0x09] = 0x00; // programming i/f
878 pci_config_set_class(s
->dev
.config
, PCI_CLASS_BRIDGE_PCI
);
879 s
->dev
.config
[0x0D] = 0x10; // latency_timer
880 s
->dev
.config
[0x0E] = 0x81; // header_type
881 s
->dev
.config
[0x1E] = 0xa0; // secondary status
883 s
->bus
= pci_register_secondary_bus(&s
->dev
, map_irq
);