1c70cc7bb8093e55ecde1889f0eb46b05ba522fb
[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   u32 flags;
63 #define VLIB_PCI_DEVICE_INFO_F_NOIOMMU          (1 << 0);
64
65   /* addr */
66   vlib_pci_addr_t addr;
67
68   /* Numa Node */
69   int numa_node;
70
71   /* Device data */
72   u16 device_class;
73   u16 vendor_id;
74   u16 device_id;
75
76   /* Vital Product Data */
77   u8 *product_name;
78   u8 *vpd_r;
79   u8 *vpd_w;
80
81   /* Driver name */
82   u8 *driver_name;
83
84   /* First 64 bytes of configuration space. */
85   union
86   {
87     pci_config_type0_regs_t config0;
88     pci_config_type1_regs_t config1;
89     u8 config_data[256];
90   };
91
92   /* IOMMU Group */
93   int iommu_group;
94
95 } vlib_pci_device_info_t;
96
97 typedef u32 vlib_pci_dev_handle_t;
98
99 vlib_pci_device_info_t *vlib_pci_get_device_info (vlib_main_t * vm,
100                                                   vlib_pci_addr_t * addr,
101                                                   clib_error_t ** error);
102 vlib_pci_addr_t *vlib_pci_get_all_dev_addrs ();
103 vlib_pci_addr_t *vlib_pci_get_addr (vlib_main_t * vm,
104                                     vlib_pci_dev_handle_t h);
105 uword vlib_pci_get_private_data (vlib_main_t * vm, vlib_pci_dev_handle_t h);
106 void vlib_pci_set_private_data (vlib_main_t * vm, vlib_pci_dev_handle_t h,
107                                 uword private_data);
108
109 static inline void
110 vlib_pci_free_device_info (vlib_pci_device_info_t * di)
111 {
112   if (!di)
113     return;
114   vec_free (di->product_name);
115   vec_free (di->vpd_r);
116   vec_free (di->vpd_w);
117   vec_free (di->driver_name);
118   clib_mem_free (di);
119 }
120
121 typedef struct
122 {
123   u16 vendor_id, device_id;
124 } pci_device_id_t;
125
126 typedef void (pci_intx_handler_function_t) (vlib_main_t * vm,
127                                             vlib_pci_dev_handle_t handle);
128 typedef void (pci_msix_handler_function_t) (vlib_main_t * vm,
129                                             vlib_pci_dev_handle_t handle,
130                                             u16 line);
131
132 typedef struct _pci_device_registration
133 {
134   /* Driver init function. */
135   clib_error_t *(*init_function) (vlib_main_t * vm,
136                                   vlib_pci_dev_handle_t handle);
137
138   /* Interrupt handler */
139   pci_intx_handler_function_t *interrupt_handler;
140
141   /* List of registrations */
142   struct _pci_device_registration *next_registration;
143
144   /* Vendor/device ids supported by this driver. */
145   pci_device_id_t supported_devices[];
146 } pci_device_registration_t;
147
148 /* Pool of PCI devices. */
149 typedef struct
150 {
151   vlib_main_t *vlib_main;
152   pci_device_registration_t *pci_device_registrations;
153   /* logging */
154   vlib_log_class_t log_default;
155 } vlib_pci_main_t;
156
157 extern vlib_pci_main_t pci_main;
158
159 #define PCI_REGISTER_DEVICE(x,...)                              \
160     __VA_ARGS__ pci_device_registration_t x;                    \
161 static void __vlib_add_pci_device_registration_##x (void)       \
162     __attribute__((__constructor__)) ;                          \
163 static void __vlib_add_pci_device_registration_##x (void)       \
164 {                                                               \
165     vlib_pci_main_t * pm = &pci_main;                           \
166     x.next_registration = pm->pci_device_registrations;         \
167     pm->pci_device_registrations = &x;                          \
168 }                                                               \
169 static void __vlib_rm_pci_device_registration_##x (void)        \
170     __attribute__((__destructor__)) ;                           \
171 static void __vlib_rm_pci_device_registration_##x (void)        \
172 {                                                               \
173     vlib_pci_main_t * pm = &pci_main;                           \
174     VLIB_REMOVE_FROM_LINKED_LIST (pm->pci_device_registrations, \
175                                   &x, next_registration);       \
176 }                                                               \
177 __VA_ARGS__ pci_device_registration_t x
178
179 clib_error_t *vlib_pci_bind_to_uio (vlib_main_t * vm, vlib_pci_addr_t * addr,
180                                     char *uio_driver_name);
181
182 /* Configuration space read/write. */
183 clib_error_t *vlib_pci_read_write_config (vlib_main_t * vm,
184                                           vlib_pci_dev_handle_t handle,
185                                           vlib_read_or_write_t read_or_write,
186                                           uword address, void *data,
187                                           u32 n_bytes);
188
189 /* io space read/write. */
190 clib_error_t *vlib_pci_read_write_io (vlib_main_t * vm,
191                                       vlib_pci_dev_handle_t handle,
192                                       vlib_read_or_write_t read_or_write,
193                                       uword address, void *data, u32 n_bytes);
194
195
196 #define _(t, x)                                                         \
197 static inline clib_error_t *                                            \
198 vlib_pci_read_##x##_##t (vlib_main_t *vm, vlib_pci_dev_handle_t h,      \
199                           uword address, t * data)                      \
200 {                                                                       \
201   return vlib_pci_read_write_##x (vm, h, VLIB_READ,address, data,       \
202                                      sizeof (data[0]));                 \
203 }
204
205 _(u32, config);
206 _(u16, config);
207 _(u8, config);
208
209 _(u32, io);
210 _(u16, io);
211 _(u8, io);
212
213 #undef _
214
215 #define _(t, x)                                                         \
216 static inline clib_error_t *                                            \
217 vlib_pci_write_##x##_##t (vlib_main_t *vm, vlib_pci_dev_handle_t h,     \
218                            uword address, t * data)                     \
219 {                                                                       \
220   return vlib_pci_read_write_##x (vm, h, VLIB_WRITE,                    \
221                                    address, data, sizeof (data[0]));    \
222 }
223
224 _(u32, config);
225 _(u16, config);
226 _(u8, config);
227
228 _(u32, io);
229 _(u16, io);
230 _(u8, io);
231
232 #undef _
233
234 static inline clib_error_t *
235 vlib_pci_intr_enable (vlib_main_t * vm, vlib_pci_dev_handle_t h)
236 {
237   u16 command;
238   clib_error_t *err;
239
240   err = vlib_pci_read_config_u16 (vm, h, 4, &command);
241
242   if (err)
243     return err;
244
245   command &= ~PCI_COMMAND_INTX_DISABLE;
246
247   return vlib_pci_write_config_u16 (vm, h, 4, &command);
248 }
249
250 static inline clib_error_t *
251 vlib_pci_intr_disable (vlib_main_t * vm, vlib_pci_dev_handle_t h)
252 {
253   u16 command;
254   clib_error_t *err;
255
256   err = vlib_pci_read_config_u16 (vm, h, 4, &command);
257
258   if (err)
259     return err;
260
261   command |= PCI_COMMAND_INTX_DISABLE;
262
263   return vlib_pci_write_config_u16 (vm, h, 4, &command);
264 }
265
266 static inline clib_error_t *
267 vlib_pci_bus_master_enable (vlib_main_t * vm, vlib_pci_dev_handle_t h)
268 {
269   clib_error_t *err;
270   u16 command;
271
272   /* Set bus master enable (BME) */
273   err = vlib_pci_read_config_u16 (vm, h, 4, &command);
274
275   if (err)
276     return err;
277
278   if (command & PCI_COMMAND_BUS_MASTER)
279     return 0;
280
281   command |= PCI_COMMAND_BUS_MASTER;
282
283   return vlib_pci_write_config_u16 (vm, h, 4, &command);
284 }
285
286 clib_error_t *vlib_pci_device_open (vlib_main_t * vm, vlib_pci_addr_t * addr,
287                                     pci_device_id_t ids[],
288                                     vlib_pci_dev_handle_t * handle);
289 void vlib_pci_device_close (vlib_main_t * vm, vlib_pci_dev_handle_t h);
290 clib_error_t *vlib_pci_map_region (vlib_main_t * vm, vlib_pci_dev_handle_t h,
291                                    u32 resource, void **result);
292 clib_error_t *vlib_pci_map_region_fixed (vlib_main_t * vm,
293                                          vlib_pci_dev_handle_t h,
294                                          u32 resource, u8 * addr,
295                                          void **result);
296 clib_error_t *vlib_pci_io_region (vlib_main_t * vm, vlib_pci_dev_handle_t h,
297                                   u32 resource);
298 clib_error_t *vlib_pci_register_intx_handler (vlib_main_t * vm,
299                                               vlib_pci_dev_handle_t h,
300                                               pci_intx_handler_function_t *
301                                               intx_handler);
302 clib_error_t *vlib_pci_register_msix_handler (vlib_main_t * vm,
303                                               vlib_pci_dev_handle_t h,
304                                               u32 start, u32 count,
305                                               pci_msix_handler_function_t *
306                                               msix_handler);
307 clib_error_t *vlib_pci_enable_msix_irq (vlib_main_t * vm,
308                                         vlib_pci_dev_handle_t h, u16 start,
309                                         u16 count);
310 clib_error_t *vlib_pci_disable_msix_irq (vlib_main_t * vm,
311                                          vlib_pci_dev_handle_t h, u16 start,
312                                          u16 count);
313 clib_error_t *vlib_pci_map_dma (vlib_main_t * vm, vlib_pci_dev_handle_t h,
314                                 void *ptr);
315
316 int vlib_pci_supports_virtual_addr_dma (vlib_main_t * vm,
317                                         vlib_pci_dev_handle_t h);
318
319 unformat_function_t unformat_vlib_pci_addr;
320 format_function_t format_vlib_pci_addr;
321 format_function_t format_vlib_pci_link_speed;
322 format_function_t format_vlib_pci_vpd;
323
324 #endif /* included_vlib_pci_h */
325
326 /*
327  * fd.io coding-style-patch-verification: ON
328  *
329  * Local Variables:
330  * eval: (c-set-style "gnu")
331  * End:
332  */