blob: 7fe3ef8dc0ec7c2ba30e8a4e69e25496b5aa2353 [file] [log] [blame]
Damjan Marion1ba0fa42018-03-04 17:19:08 +01001/*
2 * Copyright (c) 2018 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#ifndef included_vlib_linux_vfio_h
17#define included_vlib_linux_vfio_h
18
19typedef struct
20{
21 int group;
22 int fd;
23 int refcnt;
24} linux_pci_vfio_iommu_group_t;
25
26typedef struct
27{
28 u32 flags;
29#define LINUX_VFIO_F_HAVE_IOMMU (1 << 0)
Damjan Marion20ba1642018-03-26 15:35:33 +020030#define LINUX_VFIO_F_HAVE_NOIOMMU (1 << 1)
Damjan Marion1ba0fa42018-03-04 17:19:08 +010031 int container_fd;
Damjan Marion1ba0fa42018-03-04 17:19:08 +010032
33 /* VFIO */
34 int iommu_mode;
35
36 /* pool of IOMMU groups */
37 linux_pci_vfio_iommu_group_t *iommu_groups;
38
39 /* iommu group pool index by group id hash */
40 uword *iommu_pool_index_by_group;
41
Damjan Marion7d426532018-09-27 14:54:49 +020042 /* logging */
43 vlib_log_class_t log_default;
Damjan Marion1ba0fa42018-03-04 17:19:08 +010044} linux_vfio_main_t;
45
46extern linux_vfio_main_t vfio_main;
47
48clib_error_t *linux_vfio_init (vlib_main_t * vm);
49void linux_vfio_dma_map_regions (vlib_main_t * vm);
50clib_error_t *linux_vfio_group_get_device_fd (vlib_pci_addr_t * addr,
51 int *fd);
52
53
54#endif /* included_vlib_linux_vfio_h */
55
56/*
57 * fd.io coding-style-patch-verification: ON
58 *
59 * Local Variables:
60 * eval: (c-set-style "gnu")
61 * End:
62 */