vlib: map pci region by using vfio FD when vfio is used
[vpp.git] / src / vlib / pci / pci.h
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * pci.h: PCI definitions.
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39
40 #ifndef included_vlib_pci_h
41 #define included_vlib_pci_h
42
43 #include <vlib/vlib.h>
44 #include <vlib/pci/pci_config.h>
45
46 /* *INDENT-OFF* */
47 typedef CLIB_PACKED (union
48 {
49   struct
50     {
51       u16 domain;
52       u8 bus;
53       u8 slot: 5;
54       u8 function:3;
55     };
56   u32 as_u32;
57 }) vlib_pci_addr_t;
58 /* *INDENT-ON* */
59
60 typedef struct vlib_pci_device_info
61 {
62   /* addr */
63   vlib_pci_addr_t addr;
64
65   /* Numa Node */
66   int numa_node;
67
68   /* Device data */
69   u16 device_class;
70   u16 vendor_id;
71   u16 device_id;
72
73   /* Vital Product Data */
74   u8 *product_name;
75   u8 *vpd_r;
76   u8 *vpd_w;
77
78   /* Driver name */
79   u8 *driver_name;
80
81   /* First 64 bytes of configuration space. */
82   union
83   {
84     pci_config_type0_regs_t config0;
85     pci_config_type1_regs_t config1;
86     u8 config_data[256];
87   };
88
89   /* IOMMU Group */
90   int iommu_group;
91
92 } vlib_pci_device_info_t;
93
94 typedef u32 vlib_pci_dev_handle_t;
95
96 vlib_pci_device_info_t *vlib_pci_get_device_info (vlib_pci_addr_t * addr,
97                                                   clib_error_t ** error);
98 vlib_pci_addr_t *vlib_pci_get_all_dev_addrs ();
99 vlib_pci_addr_t *vlib_pci_get_addr (vlib_pci_dev_handle_t h);
100 uword vlib_pci_get_private_data (vlib_pci_dev_handle_t h);
101 void vlib_pci_set_private_data (vlib_pci_dev_handle_t h, uword private_data);
102
103 static inline void
104 vlib_pci_free_device_info (vlib_pci_device_info_t * di)
105 {
106   if (!di)
107     return;
108   vec_free (di->product_name);
109   vec_free (di->vpd_r);
110   vec_free (di->vpd_w);
111   vec_free (di->driver_name);
112   clib_mem_free (di);
113 }
114
115 typedef struct
116 {
117   u16 vendor_id, device_id;
118 } pci_device_id_t;
119
120 typedef struct _pci_device_registration
121 {
122   /* Driver init function. */
123   clib_error_t *(*init_function) (vlib_main_t * vm,
124                                   vlib_pci_dev_handle_t handle);
125
126   /* Interrupt handler */
127   void (*interrupt_handler) (vlib_pci_dev_handle_t handle);
128
129   /* List of registrations */
130   struct _pci_device_registration *next_registration;
131
132   /* Vendor/device ids supported by this driver. */
133   pci_device_id_t supported_devices[];
134 } pci_device_registration_t;
135
136 /* Pool of PCI devices. */
137 typedef struct
138 {
139   vlib_main_t *vlib_main;
140   pci_device_registration_t *pci_device_registrations;
141 } vlib_pci_main_t;
142
143 extern vlib_pci_main_t pci_main;
144
145 #define PCI_REGISTER_DEVICE(x,...)                              \
146     __VA_ARGS__ pci_device_registration_t x;                    \
147 static void __vlib_add_pci_device_registration_##x (void)       \
148     __attribute__((__constructor__)) ;                          \
149 static void __vlib_add_pci_device_registration_##x (void)       \
150 {                                                               \
151     vlib_pci_main_t * pm = &pci_main;                           \
152     x.next_registration = pm->pci_device_registrations;         \
153     pm->pci_device_registrations = &x;                          \
154 }                                                               \
155 __VA_ARGS__ pci_device_registration_t x
156
157 clib_error_t *vlib_pci_bind_to_uio (vlib_pci_addr_t * addr,
158                                     char *uio_driver_name);
159
160 /* Configuration space read/write. */
161 clib_error_t *vlib_pci_read_write_config (vlib_pci_dev_handle_t handle,
162                                           vlib_read_or_write_t read_or_write,
163                                           uword address,
164                                           void *data, u32 n_bytes);
165
166 #define _(t)                                                            \
167 static inline clib_error_t *                                            \
168 vlib_pci_read_config_##t (vlib_pci_dev_handle_t h,                      \
169                           uword address, t * data)                      \
170 {                                                                       \
171   return vlib_pci_read_write_config (h, VLIB_READ,address, data,        \
172                                      sizeof (data[0]));                 \
173 }
174
175 _(u32);
176 _(u16);
177 _(u8);
178
179 #undef _
180
181 #define _(t)                                                            \
182 static inline clib_error_t *                                            \
183 vlib_pci_write_config_##t (vlib_pci_dev_handle_t h, uword address,      \
184                            t * data)                                    \
185 {                                                                       \
186   return vlib_pci_read_write_config (h, VLIB_WRITE,                     \
187                                    address, data, sizeof (data[0]));    \
188 }
189
190 _(u32);
191 _(u16);
192 _(u8);
193
194 #undef _
195
196 static inline clib_error_t *
197 vlib_pci_intr_enable (vlib_pci_dev_handle_t h)
198 {
199   u16 command;
200   clib_error_t *err;
201
202   err = vlib_pci_read_config_u16 (h, 4, &command);
203
204   if (err)
205     return err;
206
207   command &= ~PCI_COMMAND_INTX_DISABLE;
208
209   return vlib_pci_write_config_u16 (h, 4, &command);
210 }
211
212 static inline clib_error_t *
213 vlib_pci_intr_disable (vlib_pci_dev_handle_t h)
214 {
215   u16 command;
216   clib_error_t *err;
217
218   err = vlib_pci_read_config_u16 (h, 4, &command);
219
220   if (err)
221     return err;
222
223   command |= PCI_COMMAND_INTX_DISABLE;
224
225   return vlib_pci_write_config_u16 (h, 4, &command);
226 }
227
228 static inline clib_error_t *
229 vlib_pci_bus_master_enable (vlib_pci_dev_handle_t h)
230 {
231   clib_error_t *err;
232   u16 command;
233
234   /* Set bus master enable (BME) */
235   err = vlib_pci_read_config_u16 (h, 4, &command);
236
237   if (err)
238     return err;
239
240   if (command & PCI_COMMAND_BUS_MASTER)
241     return 0;
242
243   command |= PCI_COMMAND_BUS_MASTER;
244
245   return vlib_pci_write_config_u16 (h, 4, &command);
246 }
247
248 clib_error_t *vlib_pci_map_region (vlib_pci_dev_handle_t h, u32 resource,
249                                    void **result);
250
251 clib_error_t *vlib_pci_map_region_fixed (vlib_pci_dev_handle_t h,
252                                          u32 resource, u8 * addr,
253                                          void **result);
254
255 unformat_function_t unformat_vlib_pci_addr;
256 format_function_t format_vlib_pci_addr;
257 format_function_t format_vlib_pci_link_speed;
258 format_function_t format_vlib_pci_vpd;
259
260 #endif /* included_vlib_pci_h */
261
262 /*
263  * fd.io coding-style-patch-verification: ON
264  *
265  * Local Variables:
266  * eval: (c-set-style "gnu")
267  * End:
268  */