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, Lei Xia <lxia@northwestern.edu>
11 * Copyright (c) 2009, Chang Seok Bae <jhuell@gmail.com>
12 * Copyright (c) 2009, The V3VEE Project <http://www.v3vee.org>
13 * All rights reserved.
15 * Author: Lei Xia <lxia@northwestern.edu>
16 * Chang Seok Bae <jhuell@gmail.com>
18 * This is free software. You are permitted to use,
19 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
22 #ifndef __DEVICES_PCI_H__
23 #define __DEVICES_PCI_H__
28 #include <palacios/vmm_types.h>
29 #include <palacios/vmm_rbtree.h>
31 #include <devices/pci_types.h>
36 typedef enum { PCI_BAR_IO,
42 PCI_BAR_NONE } pci_bar_type_t;
44 typedef enum {PCI_STD_DEVICE, PCI_TO_PCI_BRIDGE, PCI_CARDBUS, PCI_MULTIFUNCTION, PCI_PASSTHROUGH} pci_device_type_t;
48 // For the rest of the subclass codes see:
49 // http://www.acm.uiuc.edu/sigops/roll_your_own/7.c.1.html
51 #define PCI_AUTO_DEV_NUM (-1)
61 addr_t default_base_addr;
62 int (*mem_read)(addr_t guest_addr, void * dst, uint_t length, void * private_data);
63 int (*mem_write)(addr_t guest_addr, void * src, uint_t length, void * private_data);
68 uint16_t default_base_port;
69 int (*io_read)(ushort_t port, void * dst, uint_t length, void * private_data);
70 int (*io_write)(ushort_t port, void * src, uint_t length, void * private_data);
74 int (*bar_init)(int bar_num, uint32_t * dst,void * private_data);
75 int (*bar_write)(int bar_num, uint32_t * src, void * private_data);
88 #define PCI_IO_MASK 0xfffffffc
89 #define PCI_MEM_MASK 0xfffffff0
90 #define PCI_MEM24_MASK 0x000ffff0
92 #define PCI_IO_BASE(bar_val) (bar_val & PCI_IO_MASK)
93 #define PCI_MEM32_BASE(bar_val) (bar_val & PCI_MEM_MASK)
94 #define PCI_MEM24_BASE(bar_val) (bar_val & PCI_MEM24_MASK)
98 pci_device_type_t type;
101 uint8_t config_space[256];
104 struct pci_config_header config_header;
105 uint8_t config_data[192];
106 } __attribute__((packed));
107 } __attribute__((packed));
109 struct v3_pci_bar bar[6];
111 struct rb_node dev_tree_node;
120 } __attribute__((packed));
121 } __attribute__((packed));
125 int (*config_update)(uint_t reg_num, void * src, uint_t length, void * priv_data);
127 int (*cmd_update)(struct pci_device * pci_dev, uchar_t io_enabled, uchar_t mem_enabled);
128 int (*ext_rom_update)(struct pci_device * pci_dev);
130 int (*config_write)(uint_t reg_num, void * src, uint_t length, void * private_data);
131 int (*config_read)(uint_t reg_num, void * dst, uint_t length, void * private_data);
134 int ext_rom_update_flag;
141 int v3_pci_set_irq_bridge(struct vm_device * pci_bus, int bus_num,
142 int (*raise_pci_irq)(struct vm_device * dev, struct pci_device * pci_dev),
143 int (*lower_pci_irq)(struct vm_device * dev, struct pci_device * pci_dev),
144 struct vm_device * bridge_dev);
147 int v3_pci_raise_irq(struct vm_device * pci_bus, int bus_num, struct pci_device * dev);
148 int v3_pci_lower_irq(struct vm_device * pci_bus, int bus_num, struct pci_device * dev);
151 v3_pci_register_device(struct vm_device * pci,
152 pci_device_type_t dev_type,
157 struct v3_pci_bar * bars,
158 int (*config_update)(uint_t reg_num, void * src, uint_t length, void * private_data),
159 int (*cmd_update)(struct pci_device *pci_dev, uchar_t io_enabled, uchar_t mem_enabled),
160 int (*ext_rom_update)(struct pci_device *pci_dev),
165 v3_pci_register_passthrough_device(struct vm_device * pci,
170 int (*config_write)(uint_t reg_num, void * src, uint_t length, void * private_data),
171 int (*config_read)(uint_t reg_num, void * dst, uint_t length, void * private_data),
172 void * private_data);