2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2009, Jack Lange <jarusl@cs.northwestern.edu>
11 * Copyright (c) 2009, Lei Xia <lxia@northwestern.edu>
12 * Copyright (c) 2009, Chang Seok Bae <jhuell@gmail.com>
13 * Copyright (c) 2009, The V3VEE Project <http://www.v3vee.org>
14 * All rights reserved.
16 * Author: Jack Lange <jarusl@cs.northwestern.edu>
17 * Lei Xia <lxia@northwestern.edu>
18 * Chang Seok Bae <jhuell@gmail.com>
20 * This is free software. You are permitted to use,
21 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
26 #include <palacios/vmm.h>
27 #include <palacios/vmm_types.h>
28 #include <palacios/vmm_io.h>
29 #include <palacios/vmm_intr.h>
30 #include <palacios/vmm_rbtree.h>
31 #include <palacios/vmm_dev_mgr.h>
33 #include <devices/pci.h>
34 #include <devices/pci_types.h>
36 #include <palacios/vm_guest.h>
40 #ifndef V3_CONFIG_DEBUG_PCI
42 #define PrintDebug(fmt, args...)
46 #define CONFIG_ADDR_PORT 0x0cf8
47 #define CONFIG_DATA_PORT 0x0cfc
49 #define PCI_DEV_IO_PORT_BASE 0xc000
51 #define PCI_BUS_COUNT 1
53 // This must always be a multiple of 8
54 #define MAX_BUS_DEVICES 32
67 } __attribute__((packed));
68 } __attribute__((packed));
69 } __attribute__((packed));
78 // Red Black tree containing all attached devices
79 struct rb_root devices;
81 // Bitmap of the allocated device numbers
82 uint8_t dev_map[MAX_BUS_DEVICES / 8];
85 int (*raise_pci_irq)(struct pci_device * pci_dev, void * dev_data);
86 int (*lower_pci_irq)(struct pci_device * pci_dev, void * dev_data);
93 // Configuration address register
94 struct pci_addr_reg addr_reg;
96 // Base IO Port which PCI devices will register with...
100 struct pci_bus bus_list[PCI_BUS_COUNT];
107 #ifdef V3_CONFIG_DEBUG_PCI
109 static void pci_dump_state(struct pci_internal * pci_state) {
110 struct rb_node * node = v3_rb_first(&(pci_state->bus_list[0].devices));
111 struct pci_device * tmp_dev = NULL;
113 PrintDebug("===PCI: Dumping state Begin ==========\n");
116 tmp_dev = rb_entry(node, struct pci_device, dev_tree_node);
118 PrintDebug("PCI Device Number: %d (%s):\n", tmp_dev->dev_num, tmp_dev->name);
119 PrintDebug("irq = %d\n", tmp_dev->config_header.intr_line);
120 PrintDebug("Vend ID: 0x%x\n", tmp_dev->config_header.vendor_id);
121 PrintDebug("Device ID: 0x%x\n", tmp_dev->config_header.device_id);
123 } while ((node = v3_rb_next(node)));
125 PrintDebug("====PCI: Dumping state End==========\n");
133 // Scan the dev_map bitmap for the first '0' bit
134 static int get_free_dev_num(struct pci_bus * bus) {
137 for (i = 0; i < sizeof(bus->dev_map); i++) {
138 PrintDebug("i=%d\n", i);
139 if (bus->dev_map[i] != 0xff) {
141 for (j = 0; j < 8; j++) {
142 PrintDebug("\tj=%d\n", j);
143 if (!(bus->dev_map[i] & (0x1 << j))) {
144 return ((i * 8) + j);
153 static void allocate_dev_num(struct pci_bus * bus, int dev_num) {
154 int major = (dev_num / 8);
155 int minor = dev_num % 8;
157 bus->dev_map[major] |= (0x1 << minor);
163 struct pci_device * __add_device_to_bus(struct pci_bus * bus, struct pci_device * dev) {
165 struct rb_node ** p = &(bus->devices.rb_node);
166 struct rb_node * parent = NULL;
167 struct pci_device * tmp_dev = NULL;
171 tmp_dev = rb_entry(parent, struct pci_device, dev_tree_node);
173 if (dev->devfn < tmp_dev->devfn) {
175 } else if (dev->devfn > tmp_dev->devfn) {
182 rb_link_node(&(dev->dev_tree_node), parent, p);
189 struct pci_device * add_device_to_bus(struct pci_bus * bus, struct pci_device * dev) {
191 struct pci_device * ret = NULL;
193 if ((ret = __add_device_to_bus(bus, dev))) {
197 v3_rb_insert_color(&(dev->dev_tree_node), &(bus->devices));
199 allocate_dev_num(bus, dev->dev_num);
205 static struct pci_device * get_device(struct pci_bus * bus, uint8_t dev_num, uint8_t fn_num) {
206 struct rb_node * n = bus->devices.rb_node;
207 struct pci_device * dev = NULL;
208 uint8_t devfn = ((dev_num & 0x1f) << 3) | (fn_num & 0x7);
211 dev = rb_entry(n, struct pci_device, dev_tree_node);
213 if (devfn < dev->devfn) {
215 } else if (devfn > dev->devfn) {
231 static int addr_port_read(struct guest_info * core, ushort_t port, void * dst, uint_t length, void * priv_data) {
232 struct pci_internal * pci_state = priv_data;
233 int reg_offset = port & 0x3;
234 uint8_t * reg_addr = ((uint8_t *)&(pci_state->addr_reg.val)) + reg_offset;
236 PrintDebug("Reading PCI Address Port (%x): %x len=%d\n", port, pci_state->addr_reg.val, length);
239 if (reg_offset != 0) {
240 PrintError("Invalid Address Port Read\n");
243 *(uint32_t *)dst = *(uint32_t *)reg_addr;
244 } else if (length == 2) {
245 if (reg_offset > 2) {
246 PrintError("Invalid Address Port Read\n");
249 *(uint16_t *)dst = *(uint16_t *)reg_addr;
250 } else if (length == 1) {
251 *(uint8_t *)dst = *(uint8_t *)reg_addr;
253 PrintError("Invalid read length (%d) for PCI address register\n", length);
262 static int addr_port_write(struct guest_info * core, ushort_t port, void * src, uint_t length, void * priv_data) {
263 struct pci_internal * pci_state = priv_data;
264 int reg_offset = port & 0x3;
265 uint8_t * reg_addr = ((uint8_t *)&(pci_state->addr_reg.val)) + reg_offset;
269 if (reg_offset != 0) {
270 PrintError("Invalid Address Port Write\n");
274 PrintDebug("Writing PCI 4 bytes Val=%x\n", *(uint32_t *)src);
276 *(uint32_t *)reg_addr = *(uint32_t *)src;
277 } else if (length == 2) {
278 if (reg_offset > 2) {
279 PrintError("Invalid Address Port Write\n");
283 PrintDebug("Writing PCI 2 byte Val=%x\n", *(uint16_t *)src);
285 *(uint16_t *)reg_addr = *(uint16_t *)src;
286 } else if (length == 1) {
287 PrintDebug("Writing PCI 1 byte Val=%x\n", *(uint8_t *)src);
288 *(uint8_t *)reg_addr = *(uint8_t *)src;
290 PrintError("Invalid write length (%d) for PCI address register\n", length);
294 PrintDebug("Writing PCI Address Port(%x): %x\n", port, pci_state->addr_reg.val);
300 static int data_port_read(struct guest_info * core, ushort_t port, void * dst, uint_t length, void * priv_data) {
301 struct pci_internal * pci_state = priv_data;
302 struct pci_device * pci_dev = NULL;
303 uint_t reg_num = (pci_state->addr_reg.reg_num << 2) + (port & 0x3);
306 if (pci_state->addr_reg.bus_num != 0) {
308 for (i = 0; i < length; i++) {
309 *((uint8_t *)dst + i) = 0xff;
315 PrintDebug("Reading PCI Data register. bus = %d, dev = %d, reg = %d (%x), cfg_reg = %x\n",
316 pci_state->addr_reg.bus_num,
317 pci_state->addr_reg.dev_num,
319 pci_state->addr_reg.val);
321 pci_dev = get_device(&(pci_state->bus_list[0]), pci_state->addr_reg.dev_num, pci_state->addr_reg.fn_num);
323 if (pci_dev == NULL) {
324 for (i = 0; i < length; i++) {
325 *(uint8_t *)((uint8_t *)dst + i) = 0xff;
331 if (pci_dev->type == PCI_PASSTHROUGH) {
332 if (pci_dev->config_read(reg_num, dst, length, pci_dev->priv_data) == -1) {
333 PrintError("Failed to handle configuration update for passthrough pci_device\n");
340 for (i = 0; i < length; i++) {
341 *(uint8_t *)((uint8_t *)dst + i) = pci_dev->config_space[reg_num + i];
344 PrintDebug("\tVal=%x, len=%d\n", *(uint32_t *)dst, length);
350 static inline int is_cfg_reg_writable(uchar_t header_type, int reg_num) {
351 if (header_type == 0x00) {
369 } else if (header_type == 0x80) {
388 // PCI to PCI Bridge = 0x01
389 // CardBus Bridge = 0x02
392 PrintError("Invalid PCI Header type (0x%.2x)\n", header_type);
398 static int bar_update(struct guest_info * info, struct pci_device * pci, int bar_num, uint32_t new_val) {
399 struct v3_pci_bar * bar = &(pci->bar[bar_num]);
401 PrintDebug("Updating BAR Register (Dev=%s) (bar=%d) (old_val=0x%x) (new_val=0x%x)\n",
402 pci->name, bar_num, bar->val, new_val);
408 PrintDebug("\tRehooking %d IO ports from base 0x%x to 0x%x for %d ports\n",
409 bar->num_ports, PCI_IO_BASE(bar->val), PCI_IO_BASE(new_val),
412 // only do this if pci device is enabled....
413 if (!(pci->config_header.status & 0x1)) {
414 PrintError("PCI Device IO space not enabled\n");
417 for (i = 0; i < bar->num_ports; i++) {
419 PrintDebug("Rehooking PCI IO port (old port=%u) (new port=%u)\n",
420 PCI_IO_BASE(bar->val) + i, PCI_IO_BASE(new_val) + i);
422 v3_unhook_io_port(info->vm_info, PCI_IO_BASE(bar->val) + i);
424 if (v3_hook_io_port(info->vm_info, PCI_IO_BASE(new_val) + i,
425 bar->io_read, bar->io_write,
426 bar->private_data) == -1) {
428 PrintError("Could not hook PCI IO port (old port=%u) (new port=%u)\n",
429 PCI_IO_BASE(bar->val) + i, PCI_IO_BASE(new_val) + i);
430 v3_print_io_map(info->vm_info);
439 case PCI_BAR_MEM32: {
440 v3_unhook_mem(info->vm_info, V3_MEM_CORE_ANY, (addr_t)(bar->val));
443 v3_hook_full_mem(info->vm_info, V3_MEM_CORE_ANY, PCI_MEM32_BASE(new_val),
444 PCI_MEM32_BASE(new_val) + (bar->num_pages * PAGE_SIZE_4KB),
445 bar->mem_read, bar->mem_write, pci->priv_data);
447 PrintError("Write hooks not supported for PCI\n");
456 PrintDebug("Reprogramming an unsupported BAR register (Dev=%s) (bar=%d) (val=%x)\n",
457 pci->name, bar_num, new_val);
461 PrintError("Invalid Bar Reg updated (bar=%d)\n", bar_num);
469 static int data_port_write(struct guest_info * core, ushort_t port, void * src, uint_t length, void * priv_data) {
470 struct pci_internal * pci_state = priv_data;
471 struct pci_device * pci_dev = NULL;
472 uint_t reg_num = (pci_state->addr_reg.reg_num << 2) + (port & 0x3);
476 if (pci_state->addr_reg.bus_num != 0) {
480 PrintDebug("Writing PCI Data register. bus = %d, dev = %d, fn = %d, reg = %d (0x%x) addr_reg = 0x%x (val=0x%x, len=%d)\n",
481 pci_state->addr_reg.bus_num,
482 pci_state->addr_reg.dev_num,
483 pci_state->addr_reg.fn_num,
485 pci_state->addr_reg.val,
486 *(uint32_t *)src, length);
489 pci_dev = get_device(&(pci_state->bus_list[0]), pci_state->addr_reg.dev_num, pci_state->addr_reg.fn_num);
491 if (pci_dev == NULL) {
492 PrintError("Writing configuration space for non-present device (dev_num=%d)\n",
493 pci_state->addr_reg.dev_num);
497 if (pci_dev->type == PCI_PASSTHROUGH) {
498 if (pci_dev->config_write(reg_num, src, length, pci_dev->priv_data) == -1) {
499 PrintError("Failed to handle configuration update for passthrough pci_device\n");
507 for (i = 0; i < length; i++) {
508 uint_t cur_reg = reg_num + i;
509 int writable = is_cfg_reg_writable(pci_dev->config_header.header_type, cur_reg);
511 if (writable == -1) {
512 PrintError("Invalid PCI configuration space\n");
517 pci_dev->config_space[cur_reg] = *(uint8_t *)((uint8_t *)src + i);
519 if ((cur_reg >= 0x10) && (cur_reg < 0x28)) {
520 // BAR Register Update
521 int bar_reg = ((cur_reg & ~0x3) - 0x10) / 4;
523 pci_dev->bar_update_flag = 1;
524 pci_dev->bar[bar_reg].updated = 1;
526 // PrintDebug("Updating BAR register %d\n", bar_reg);
528 } else if ((cur_reg >= 0x30) && (cur_reg < 0x34)) {
529 // Extension ROM update
531 pci_dev->exp_rom_update_flag = 1;
532 } else if (cur_reg == 0x04) {
534 uint8_t command = *((uint8_t *)src + i);
536 PrintError("command update for %s old=%x new=%x\n",
538 pci_dev->config_space[cur_reg],command);
540 pci_dev->config_space[cur_reg] = command;
542 if (pci_dev->cmd_update) {
543 pci_dev->cmd_update(pci_dev, (command & 0x01), (command & 0x02));
546 } else if (cur_reg == 0x0f) {
548 pci_dev->config_header.BIST = 0x00;
551 PrintError("PCI Write to read only register %d\n", cur_reg);
555 if (pci_dev->config_update) {
556 pci_dev->config_update(reg_num, src, length, pci_dev->priv_data);
559 // Scan for BAR updated
560 if (pci_dev->bar_update_flag) {
561 for (i = 0; i < 6; i++) {
562 if (pci_dev->bar[i].updated) {
563 int bar_offset = 0x10 + 4 * i;
566 if (pci_dev->bar[i].type == PCI_BAR_PASSTHROUGH) {
567 if (pci_dev->bar[i].bar_write(i, (uint32_t *)(pci_dev->config_space + bar_offset), pci_dev->bar[i].private_data) == -1) {
568 PrintError("Error in passthrough bar write operation\n");
573 *(uint32_t *)(pci_dev->config_space + bar_offset) &= pci_dev->bar[i].mask;
574 // check special flags....
577 if (bar_update(core, pci_dev, i, *(uint32_t *)(pci_dev->config_space + bar_offset)) == -1) {
578 PrintError("PCI Device %s: Bar update Error Bar=%d\n", pci_dev->name, i);
583 pci_dev->bar[i].updated = 0;
586 pci_dev->bar_update_flag = 0;
589 if ((pci_dev->exp_rom_update_flag) && (pci_dev->exp_rom_update)) {
590 pci_dev->exp_rom_update(pci_dev, &(pci_dev->config_header.expansion_rom_address), pci_dev->priv_data);
591 pci_dev->exp_rom_update_flag = 0;
602 static void init_pci_busses(struct pci_internal * pci_state) {
605 for (i = 0; i < PCI_BUS_COUNT; i++) {
606 pci_state->bus_list[i].bus_num = i;
607 pci_state->bus_list[i].devices.rb_node = NULL;
608 memset(pci_state->bus_list[i].dev_map, 0, sizeof(pci_state->bus_list[i].dev_map));
613 static int pci_free(struct pci_internal * pci_state) {
618 for (i = 0; i < PCI_BUS_COUNT; i++) {
619 struct pci_bus * bus = &(pci_state->bus_list[i]);
620 struct rb_node * node = v3_rb_first(&(bus->devices));
621 struct pci_device * dev = NULL;
624 dev = rb_entry(node, struct pci_device, dev_tree_node);
625 node = v3_rb_next(node);
627 v3_rb_erase(&(dev->dev_tree_node), &(bus->devices));
637 #ifdef V3_CONFIG_CHECKPOINT
639 #include <palacios/vmm_sprintf.h>
641 static int pci_save(struct v3_chkpt_ctx * ctx, void * private_data) {
642 struct pci_internal * pci = (struct pci_internal *)private_data;
646 v3_chkpt_save_32(ctx, "ADDR_REG", &(pci->addr_reg.val));
647 v3_chkpt_save_16(ctx, "IO_BASE", &(pci->dev_io_base));
649 for (i = 0; i < PCI_BUS_COUNT; i++) {
650 struct pci_bus * bus = &(pci->bus_list[i]);
651 struct rb_node * node = v3_rb_first(&(bus->devices));
652 struct pci_device * dev = NULL;
653 struct v3_chkpt_ctx * bus_ctx = NULL;
655 snprintf(buf, 128, "pci-%d\n", i);
657 bus_ctx = v3_chkpt_open_ctx(ctx->chkpt, ctx, buf);
660 struct v3_chkpt_ctx * dev_ctx = NULL;
662 dev = rb_entry(node, struct pci_device, dev_tree_node);
664 snprintf(buf, 128, "pci-%d.%d-%d", i, dev->dev_num, dev->fn_num);
665 dev_ctx = v3_chkpt_open_ctx(bus_ctx->chkpt, bus_ctx, buf);
667 v3_chkpt_save(dev_ctx, "CONFIG_SPACE", 256, dev->config_space);
669 for (bar_idx = 0; bar_idx < 6; bar_idx++) {
670 snprintf(buf, 128, "BAR-%d", bar_idx);
671 v3_chkpt_save_32(dev_ctx, buf, &(dev->bar[bar_idx].val));
674 node = v3_rb_next(node);
683 static int pci_load(struct v3_chkpt_ctx * ctx, void * private_data) {
684 struct pci_internal * pci = (struct pci_internal *)private_data;
688 v3_chkpt_load_32(ctx, "ADDR_REG", &(pci->addr_reg.val));
689 v3_chkpt_load_16(ctx, "IO_BASE", &(pci->dev_io_base));
691 for (i = 0; i < PCI_BUS_COUNT; i++) {
692 struct pci_bus * bus = &(pci->bus_list[i]);
693 struct rb_node * node = v3_rb_first(&(bus->devices));
694 struct pci_device * dev = NULL;
695 struct v3_chkpt_ctx * bus_ctx = NULL;
697 snprintf(buf, 128, "pci-%d\n", i);
699 bus_ctx = v3_chkpt_open_ctx(ctx->chkpt, ctx, buf);
702 struct v3_chkpt_ctx * dev_ctx = NULL;
704 dev = rb_entry(node, struct pci_device, dev_tree_node);
706 snprintf(buf, 128, "pci-%d.%d-%d", i, dev->dev_num, dev->fn_num);
707 dev_ctx = v3_chkpt_open_ctx(bus_ctx->chkpt, bus_ctx, buf);
709 v3_chkpt_load(dev_ctx, "CONFIG_SPACE", 256, dev->config_space);
711 for (bar_idx = 0; bar_idx < 6; bar_idx++) {
712 snprintf(buf, 128, "BAR-%d", bar_idx);
713 v3_chkpt_load_32(dev_ctx, buf, &(dev->bar[bar_idx].val));
716 node = v3_rb_next(node);
730 static struct v3_device_ops dev_ops = {
731 .free = (int (*)(void *))pci_free,
732 #ifdef V3_CONFIG_CHECKPOINT
741 static int pci_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
742 struct pci_internal * pci_state = V3_Malloc(sizeof(struct pci_internal));
744 char * dev_id = v3_cfg_val(cfg, "ID");
747 PrintDebug("PCI internal at %p\n",(void *)pci_state);
749 struct vm_device * dev = v3_add_device(vm, dev_id, &dev_ops, pci_state);
752 PrintError("Could not attach device %s\n", dev_id);
758 pci_state->addr_reg.val = 0;
759 pci_state->dev_io_base = PCI_DEV_IO_PORT_BASE;
761 init_pci_busses(pci_state);
763 PrintDebug("Sizeof config header=%d\n", (int)sizeof(struct pci_config_header));
765 for (i = 0; i < 4; i++) {
766 ret |= v3_dev_hook_io(dev, CONFIG_ADDR_PORT + i, &addr_port_read, &addr_port_write);
767 ret |= v3_dev_hook_io(dev, CONFIG_DATA_PORT + i, &data_port_read, &data_port_write);
771 PrintError("Error hooking PCI IO ports\n");
772 v3_remove_device(dev);
780 device_register("PCI", pci_init)
783 static inline int init_bars(struct v3_vm_info * vm, struct pci_device * pci_dev) {
786 for (i = 0; i < 6; i++) {
787 int bar_offset = 0x10 + (4 * i);
789 if (pci_dev->bar[i].type == PCI_BAR_IO) {
791 pci_dev->bar[i].mask = (~((pci_dev->bar[i].num_ports) - 1)) | 0x01;
793 if (pci_dev->bar[i].default_base_port != 0xffff) {
794 pci_dev->bar[i].val = pci_dev->bar[i].default_base_port & pci_dev->bar[i].mask;
796 pci_dev->bar[i].val = 0;
799 pci_dev->bar[i].val |= 0x00000001;
801 for (j = 0; j < pci_dev->bar[i].num_ports; j++) {
803 if (pci_dev->bar[i].default_base_port != 0xffff) {
804 if (v3_hook_io_port(vm, pci_dev->bar[i].default_base_port + j,
805 pci_dev->bar[i].io_read, pci_dev->bar[i].io_write,
806 pci_dev->bar[i].private_data) == -1) {
807 PrintError("Could not hook default io port %x\n", pci_dev->bar[i].default_base_port + j);
813 *(uint32_t *)(pci_dev->config_space + bar_offset) = pci_dev->bar[i].val;
815 } else if (pci_dev->bar[i].type == PCI_BAR_MEM32) {
816 pci_dev->bar[i].mask = ~((pci_dev->bar[i].num_pages << 12) - 1);
817 pci_dev->bar[i].mask |= 0xf; // preserve the configuration flags
819 if (pci_dev->bar[i].default_base_addr != 0xffffffff) {
820 pci_dev->bar[i].val = pci_dev->bar[i].default_base_addr & pci_dev->bar[i].mask;
822 pci_dev->bar[i].val = 0;
826 if (pci_dev->bar[i].mem_read) {
828 v3_hook_full_mem(vm, V3_MEM_CORE_ANY, pci_dev->bar[i].default_base_addr,
829 pci_dev->bar[i].default_base_addr + (pci_dev->bar[i].num_pages * PAGE_SIZE_4KB),
830 pci_dev->bar[i].mem_read, pci_dev->bar[i].mem_write, pci_dev->priv_data);
831 } else if (pci_dev->bar[i].mem_write) {
833 PrintError("Write hooks not supported for PCI devices\n");
836 v3_hook_write_mem(pci_dev->vm_dev->vm, pci_dev->bar[i].default_base_addr,
837 pci_dev->bar[i].default_base_addr + (pci_dev->bar[i].num_pages * PAGE_SIZE_4KB),
838 pci_dev->bar[i].mem_write, pci_dev->vm_dev);
841 // set the prefetchable flag...
842 pci_dev->bar[i].val |= 0x00000008;
846 *(uint32_t *)(pci_dev->config_space + bar_offset) = pci_dev->bar[i].val;
848 } else if (pci_dev->bar[i].type == PCI_BAR_MEM24) {
849 PrintError("16 Bit memory ranges not supported (reg: %d)\n", i);
851 } else if (pci_dev->bar[i].type == PCI_BAR_NONE) {
852 pci_dev->bar[i].val = 0x00000000;
853 pci_dev->bar[i].mask = 0x00000000; // This ensures that all updates will be dropped
854 *(uint32_t *)(pci_dev->config_space + bar_offset) = pci_dev->bar[i].val;
855 } else if (pci_dev->bar[i].type == PCI_BAR_PASSTHROUGH) {
857 // Call the bar init function to get the local cached value
858 pci_dev->bar[i].bar_init(i, &(pci_dev->bar[i].val), pci_dev->bar[i].private_data);
861 PrintError("Invalid BAR type for bar #%d\n", i);
870 int v3_pci_set_irq_bridge(struct vm_device * pci_bus, int bus_num,
871 int (*raise_pci_irq)(struct pci_device * pci_dev, void * dev_data),
872 int (*lower_pci_irq)(struct pci_device * pci_dev, void * dev_data),
874 struct pci_internal * pci_state = (struct pci_internal *)pci_bus->private_data;
877 pci_state->bus_list[bus_num].raise_pci_irq = raise_pci_irq;
878 pci_state->bus_list[bus_num].lower_pci_irq = lower_pci_irq;
879 pci_state->bus_list[bus_num].irq_dev_data = priv_data;
884 int v3_pci_raise_irq(struct vm_device * pci_bus, int bus_num, struct pci_device * dev) {
885 struct pci_internal * pci_state = (struct pci_internal *)pci_bus->private_data;
886 struct pci_bus * bus = &(pci_state->bus_list[bus_num]);
888 return bus->raise_pci_irq(dev, bus->irq_dev_data);
891 int v3_pci_lower_irq(struct vm_device * pci_bus, int bus_num, struct pci_device * dev) {
892 struct pci_internal * pci_state = (struct pci_internal *)pci_bus->private_data;
893 struct pci_bus * bus = &(pci_state->bus_list[bus_num]);
895 return bus->lower_pci_irq(dev, bus->irq_dev_data);
898 // if dev_num == -1, auto assign
899 struct pci_device * v3_pci_register_device(struct vm_device * pci,
900 pci_device_type_t dev_type,
905 struct v3_pci_bar * bars,
906 int (*config_update)(uint_t reg_num, void * src, uint_t length, void * priv_data),
907 int (*cmd_update)(struct pci_device * pci_dev, uchar_t io_enabled, uchar_t mem_enabled),
908 int (*exp_rom_update)(struct pci_device * pci_dev, uint32_t * src, void * priv_data),
911 struct pci_internal * pci_state = (struct pci_internal *)pci->private_data;
912 struct pci_bus * bus = &(pci_state->bus_list[bus_num]);
913 struct pci_device * pci_dev = NULL;
916 if (dev_num > MAX_BUS_DEVICES) {
917 PrintError("Requested Invalid device number (%d)\n", dev_num);
921 if (dev_num == PCI_AUTO_DEV_NUM) {
922 PrintDebug("Searching for free device number\n");
923 if ((dev_num = get_free_dev_num(bus)) == -1) {
924 PrintError("No more available PCI slots on bus %d\n", bus->bus_num);
929 PrintDebug("Checking for PCI Device\n");
931 if (get_device(bus, dev_num, fn_num) != NULL) {
932 PrintError("PCI Device already registered at slot %d on bus %d\n",
933 dev_num, bus->bus_num);
938 pci_dev = (struct pci_device *)V3_Malloc(sizeof(struct pci_device));
940 if (pci_dev == NULL) {
941 PrintError("Could not allocate pci device\n");
945 memset(pci_dev, 0, sizeof(struct pci_device));
948 pci_dev->type = dev_type;
950 switch (pci_dev->type) {
952 pci_dev->config_header.header_type = 0x00;
954 case PCI_MULTIFUNCTION:
955 pci_dev->config_header.header_type = 0x80;
958 PrintError("Unhandled PCI Device Type: %d\n", dev_type);
964 pci_dev->bus_num = bus_num;
965 pci_dev->dev_num = dev_num;
966 pci_dev->fn_num = fn_num;
968 strncpy(pci_dev->name, name, sizeof(pci_dev->name));
969 pci_dev->priv_data = priv_data;
971 // register update callbacks
972 pci_dev->config_update = config_update;
973 pci_dev->cmd_update = cmd_update;
974 pci_dev->exp_rom_update = exp_rom_update;
978 for (i = 0; i < 6; i ++) {
979 pci_dev->bar[i].type = bars[i].type;
980 pci_dev->bar[i].private_data = bars[i].private_data;
982 if (pci_dev->bar[i].type == PCI_BAR_IO) {
983 pci_dev->bar[i].num_ports = bars[i].num_ports;
985 // This is a horrible HACK becaues the BIOS is supposed to set the PCI base ports
986 // And if the BIOS doesn't, Linux just happily overlaps device port assignments
987 if (bars[i].default_base_port != (uint16_t)-1) {
988 pci_dev->bar[i].default_base_port = bars[i].default_base_port;
990 pci_dev->bar[i].default_base_port = pci_state->dev_io_base;
991 pci_state->dev_io_base += ( 0x100 * ((bars[i].num_ports / 0x100) + 1) );
994 pci_dev->bar[i].io_read = bars[i].io_read;
995 pci_dev->bar[i].io_write = bars[i].io_write;
996 } else if (pci_dev->bar[i].type == PCI_BAR_MEM32) {
997 pci_dev->bar[i].num_pages = bars[i].num_pages;
998 pci_dev->bar[i].default_base_addr = bars[i].default_base_addr;
999 pci_dev->bar[i].mem_read = bars[i].mem_read;
1000 pci_dev->bar[i].mem_write = bars[i].mem_write;
1001 } else if (pci_dev->bar[i].type == PCI_BAR_PASSTHROUGH) {
1002 pci_dev->bar[i].bar_init = bars[i].bar_init;
1003 pci_dev->bar[i].bar_write = bars[i].bar_write;
1005 pci_dev->bar[i].num_pages = 0;
1006 pci_dev->bar[i].default_base_addr = 0;
1007 pci_dev->bar[i].mem_read = NULL;
1008 pci_dev->bar[i].mem_write = NULL;
1012 if (init_bars(pci->vm, pci_dev) == -1) {
1013 PrintError("could not initialize bar registers\n");
1018 add_device_to_bus(bus, pci_dev);
1020 #ifdef V3_CONFIG_DEBUG_PCI
1021 pci_dump_state(pci_state);
1029 // if dev_num == -1, auto assign
1030 struct pci_device * v3_pci_register_passthrough_device(struct vm_device * pci,
1035 int (*config_write)(uint_t reg_num, void * src, uint_t length, void * private_data),
1036 int (*config_read)(uint_t reg_num, void * dst, uint_t length, void * private_data),
1037 void * private_data) {
1039 struct pci_internal * pci_state = (struct pci_internal *)pci->private_data;
1040 struct pci_bus * bus = &(pci_state->bus_list[bus_num]);
1041 struct pci_device * pci_dev = NULL;
1043 if (dev_num > MAX_BUS_DEVICES) {
1044 PrintError("Requested Invalid device number (%d)\n", dev_num);
1048 if (dev_num == PCI_AUTO_DEV_NUM) {
1049 PrintDebug("Searching for free device number\n");
1050 if ((dev_num = get_free_dev_num(bus)) == -1) {
1051 PrintError("No more available PCI slots on bus %d\n", bus->bus_num);
1056 PrintDebug("Checking for PCI Device\n");
1058 if (get_device(bus, dev_num, fn_num) != NULL) {
1059 PrintError("PCI Device already registered at slot %d on bus %d\n",
1060 dev_num, bus->bus_num);
1065 pci_dev = (struct pci_device *)V3_Malloc(sizeof(struct pci_device));
1067 if (pci_dev == NULL) {
1068 PrintError("Could not allocate pci device\n");
1072 memset(pci_dev, 0, sizeof(struct pci_device));
1074 pci_dev->bus_num = bus_num;
1075 pci_dev->dev_num = dev_num;
1076 pci_dev->fn_num = fn_num;
1078 strncpy(pci_dev->name, name, sizeof(pci_dev->name));
1079 pci_dev->priv_data = private_data;
1081 // register update callbacks
1082 pci_dev->config_write = config_write;
1083 pci_dev->config_read = config_read;
1086 add_device_to_bus(bus, pci_dev);
1088 #ifdef V3_CONFIG_DEBUG_PCI
1089 pci_dump_state(pci_state);