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.


Apply Zheng's 64bit pci passthrough patch
[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
28 #include <palacios/vmm_types.h>
29 #include <palacios/vmm_rbtree.h>
30
31 #include <devices/pci_types.h>
32
33
34 struct vm_device;
35
36
37 typedef enum { PCI_BAR_IO, 
38                PCI_BAR_MEM24, 
39                PCI_BAR_MEM32, 
40                PCI_BAR_MEM64_LOW, 
41                PCI_BAR_MEM64_HIGH, 
42                PCI_BAR_PASSTHROUGH,
43                PCI_BAR_NONE } pci_bar_type_t;
44
45 typedef enum {PCI_STD_DEVICE, PCI_TO_PCI_BRIDGE, PCI_CARDBUS, PCI_MULTIFUNCTION, PCI_PASSTHROUGH} pci_device_type_t;
46
47
48
49 // For the rest of the subclass codes see:
50 // http://www.acm.uiuc.edu/sigops/roll_your_own/7.c.1.html
51
52 #define PCI_AUTO_DEV_NUM (-1)
53
54 struct pci_device;
55
56 struct v3_pci_bar {
57     pci_bar_type_t type;
58     
59     union {
60         struct {
61             int num_pages;
62             addr_t default_base_addr;
63             int (*mem_read)(struct guest_info * core, addr_t guest_addr, void * dst, uint_t length, void * private_data);
64             int (*mem_write)(struct guest_info * core, addr_t guest_addr, void * src, uint_t length, void * private_data);
65         };
66
67         struct {
68             int num_ports;
69             uint16_t default_base_port;
70             int (*io_read)(struct guest_info * core, uint16_t port, void * src, uint_t length, void * private_data);
71             int (*io_write)(struct guest_info * core, uint16_t port, void * src, uint_t length, void * private_data);
72         };
73         
74         struct {
75             int (*bar_init)(int bar_num, uint32_t * dst,void * private_data);
76             int (*bar_write)(int bar_num, uint32_t * src, void * private_data);
77         };
78     };
79     
80     void * private_data;
81
82     // Internal PCI data
83     uint32_t val;
84     int updated;
85     uint32_t mask;
86 };
87
88
89 #define PCI_IO_MASK 0xfffffffc
90 #define PCI_MEM_MASK 0xfffffff0
91 #define PCI_MEM24_MASK 0x000ffff0
92
93 //Zheng 03/15/2010
94 #define PCI_MEM64_HIGH_MASK32 0xffffffff
95 #define PCI_MEM64_HIGH_MASK64 0xffffffff00000000
96 #define PCI_MEM64_MASK 0xfffffffffffffff0
97 #define PCI_EXP_ROM_BASE_MASK 0xfffff800
98
99 #define PCI_IO_BASE(bar_val) (bar_val & PCI_IO_MASK)
100 #define PCI_MEM32_BASE(bar_val) (bar_val & PCI_MEM_MASK)
101 #define PCI_MEM24_BASE(bar_val) (bar_val & PCI_MEM24_MASK)
102 //Zheng 03/15/2010
103 #define PCI_MEM64_BASE_HIGH(bar_val) (bar_val & PCI_MEM64_HIGH_MASK32)
104 #define PCI_MEM64_BASE(mem64_bar_val) ((mem64_bar_val) & PCI_MEM64_MASK)
105 #define PCI_EXP_ROM_BASE(exp_rom_base_val) (exp_rom_base_val & PCI_EXP_ROM_BASE_MASK)
106
107 //Zheng 03/15/2010
108 #define PCI_MEM64_BASE_HIGH_SHIFT 32
109
110 struct pci_device {
111
112     pci_device_type_t type;
113
114     union {
115         uint8_t config_space[256];
116
117         struct {
118             struct pci_config_header config_header;
119             uint8_t config_data[192];
120         } __attribute__((packed));
121     } __attribute__((packed));
122
123     struct v3_pci_bar bar[6];
124
125     struct rb_node dev_tree_node;
126
127     uint_t bus_num;
128
129     union {
130         uint8_t devfn;
131         struct {
132             uint8_t fn_num       : 3;
133             uint8_t dev_num      : 5;
134         } __attribute__((packed));
135     } __attribute__((packed));
136
137     char name[64];
138
139     int (*config_update)(uint_t reg_num, void * src, uint_t length, void * priv_data);
140
141     int (*cmd_update)(struct pci_device * pci_dev, uchar_t io_enabled, uchar_t mem_enabled);
142     int (*ext_rom_update)(struct pci_device * pci_dev);
143
144     int (*config_write)(uint_t reg_num, void * src, uint_t length, void * private_data);
145     int (*config_read)(uint_t reg_num, void * dst, uint_t length, void * private_data);
146
147
148     int ext_rom_update_flag;
149     int bar_update_flag;
150
151     void * priv_data;
152 };
153
154
155 int v3_pci_set_irq_bridge(struct vm_device * pci_bus, int bus_num,
156                           int (*raise_pci_irq)(struct vm_device * dev, struct pci_device * pci_dev), 
157                           int (*lower_pci_irq)(struct vm_device * dev, struct pci_device * pci_dev), 
158                           struct vm_device * bridge_dev);
159
160
161 int v3_pci_raise_irq(struct vm_device * pci_bus, int bus_num, struct pci_device * dev);
162 int v3_pci_lower_irq(struct vm_device * pci_bus, int bus_num, struct pci_device * dev);
163
164 struct pci_device * 
165 v3_pci_register_device(struct vm_device * pci,
166                        pci_device_type_t dev_type, 
167                        int bus_num,
168                        int dev_num,
169                        int fn_num,
170                        const char * name,
171                        struct v3_pci_bar * bars,
172                        int (*config_update)(uint_t reg_num, void * src, uint_t length, void * private_data),
173                        int (*cmd_update)(struct pci_device *pci_dev, uchar_t io_enabled, uchar_t mem_enabled),
174                        int (*ext_rom_update)(struct pci_device *pci_dev),
175                        void * priv_data);
176
177
178 struct pci_device * 
179 v3_pci_register_passthrough_device(struct vm_device * pci,
180                                    int bus_num,
181                                    int dev_num,
182                                    int fn_num,
183                                    const char * name,
184                                    int (*config_write)(uint_t reg_num, void * src, uint_t length, void * private_data),
185                                    int (*config_read)(uint_t reg_num, void * dst, uint_t length, void * private_data),
186                                    void * private_data);
187
188
189 #endif
190
191 #endif
192