Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


updates to the PCI configuration for the southbridge and northbridge
[palacios.git] / palacios / include / devices / pci.h
1 /* 
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.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
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.
14  *
15  * Author:  Lei Xia <lxia@northwestern.edu>
16  *             Chang Seok Bae <jhuell@gmail.com>
17  *
18  * This is free software.  You are permitted to use,
19  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
20  */
21
22 #ifndef __DEVICES_PCI_H__
23 #define __DEVICES_PCI_H__
24
25 #ifdef __V3VEE__
26
27 #include <palacios/vm_dev.h>
28 #include <palacios/vmm_types.h>
29 #include <palacios/vmm_rbtree.h>
30
31 #include <devices/pci_types.h>
32
33
34 typedef enum {PCI_BAR_IO, PCI_BAR_MEM16, PCI_BAR_MEM32, PCI_BAR_MEM64_LOW, PCI_BAR_MEM64_HIGH, PCI_BAR_NONE} pci_bar_type_t;
35
36 typedef enum {PCI_STD_DEVICE, PCI_TO_PCI_BRIDGE, PCI_CARDBUS, PCI_MULTIFUNCTION} pci_device_type_t;
37
38 struct pci_device;
39
40 struct v3_pci_bar {
41     pci_bar_type_t type;
42     
43     union {
44         struct {
45             int num_pages;
46             addr_t default_base_addr;
47             int (*mem_read)(addr_t guest_addr, void * dst, uint_t length, void * private_data);
48             int (*mem_write)(addr_t guest_addr, void * src, uint_t length, void * private_data);
49         };
50
51         struct {
52             int num_ports;
53             uint16_t default_base_port;
54             int (*io_read)(ushort_t port, void * dst, uint_t length, struct vm_device * dev);
55             int (*io_write)(ushort_t port, void * src, uint_t length, struct vm_device * dev);
56         };
57     };
58
59     // Internal PCI data
60     uint32_t val;
61     int updated;
62     uint32_t mask;
63 };
64
65
66 #define PCI_IO_BASE(bar_val) (bar_val & 0xfffffffc)
67 #define PCI_MEM32_BASE(bar_val) (bar_val & 0xfffffff0)
68
69 struct pci_device {
70
71     union {
72         uint8_t config_space[256];
73
74         struct {
75             struct pci_config_header config_header;
76             uint8_t config_data[192];
77         } __attribute__((packed));
78     } __attribute__((packed));
79
80     struct v3_pci_bar bar[6];
81
82     struct rb_node dev_tree_node;
83
84     uint_t bus_num;
85
86     union {
87         uint8_t devfn;
88         struct {
89             uint8_t fn_num       : 3;
90             uint8_t dev_num      : 5;
91         } __attribute__((packed));
92     } __attribute__((packed));
93
94     char name[64];
95
96     struct vm_device * vm_dev;  //the corresponding virtual device
97
98     int (*config_update)(struct pci_device * pci_dev, uint_t reg_num, int length);
99
100     int (*cmd_update)(struct pci_device *pci_dev, uchar_t io_enabled, uchar_t mem_enabled);
101     int (*ext_rom_update)(struct pci_device *pci_dev);
102
103     int ext_rom_update_flag;
104     int bar_update_flag;
105
106     void * priv_data;
107 };
108
109
110
111 struct vm_device * v3_create_pci();
112
113 struct pci_device * 
114 v3_pci_register_device(struct vm_device * pci,
115                        pci_device_type_t dev_type, 
116                        int bus_num,
117                        int dev_num,
118                        int fn_num,
119                        const char * name,
120                        struct v3_pci_bar * bars,
121                        int (*config_update)(struct pci_device * pci_dev, uint_t reg_num, int length),
122                        int (*cmd_update)(struct pci_device *pci_dev, uchar_t io_enabled, uchar_t mem_enabled),
123                        int (*ext_rom_update)(struct pci_device *pci_dev),
124                        struct vm_device * dev);
125
126
127 #endif
128
129 #endif
130