remove version in all files
[dpdk.git] / lib / librte_eal / common / include / rte_pci.h
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without 
8  *   modification, are permitted provided that the following conditions 
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright 
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright 
14  *       notice, this list of conditions and the following disclaimer in 
15  *       the documentation and/or other materials provided with the 
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its 
18  *       contributors may be used to endorse or promote products derived 
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  * 
33  */
34
35 #ifndef _RTE_PCI_H_
36 #define _RTE_PCI_H_
37
38 /**
39  * @file
40  *
41  * RTE PCI Interface
42  */
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47
48 #include <sys/queue.h>
49 #include <stdint.h>
50 #include <inttypes.h>
51 #include <rte_interrupts.h>
52
53 TAILQ_HEAD(pci_device_list, rte_pci_device); /**< PCI devices in D-linked Q. */
54 TAILQ_HEAD(pci_driver_list, rte_pci_driver); /**< PCI drivers in D-linked Q. */
55
56 extern struct pci_driver_list driver_list; /**< Global list of PCI drivers. */
57 extern struct pci_device_list device_list; /**< Global list of PCI devices. */
58
59 /** Pathname of PCI devices directory. */
60 #define SYSFS_PCI_DEVICES "/sys/bus/pci/devices"
61
62 /** Formatting string for PCI device identifier: Ex: 0000:00:01.0 */
63 #define PCI_PRI_FMT "%.4"PRIx16":%.2"PRIx8":%.2"PRIx8".%"PRIx8
64
65 /** Nb. of values in PCI device identifier format string. */
66 #define PCI_FMT_NVAL 4
67
68 /** Nb. of values in PCI resource format. */
69 #define PCI_RESOURCE_FMT_NVAL 3
70
71 /**
72  * A structure describing a PCI resource.
73  */
74 struct rte_pci_resource {
75         uint64_t phys_addr;   /**< Physical address, 0 if no resource. */
76         uint64_t len;         /**< Length of the resource. */
77         void *addr;           /**< Virtual address, NULL when not mapped. */
78 };
79
80 /** Maximum number of PCI resources. */
81 #define PCI_MAX_RESOURCE 7
82
83 /**
84  * A structure describing an ID for a PCI driver. Each driver provides a
85  * table of these IDs for each device that it supports.
86  */
87 struct rte_pci_id {
88         uint16_t vendor_id;           /**< Vendor ID or PCI_ANY_ID. */
89         uint16_t device_id;           /**< Device ID or PCI_ANY_ID. */
90         uint16_t subsystem_vendor_id; /**< Subsystem vendor ID or PCI_ANY_ID. */
91         uint16_t subsystem_device_id; /**< Subsystem device ID or PCI_ANY_ID. */
92 };
93
94 /**
95  * A structure describing the location of a PCI device.
96  */
97 struct rte_pci_addr {
98         uint16_t domain;                /**< Device domain */
99         uint8_t bus;                    /**< Device bus */
100         uint8_t devid;                  /**< Device ID */
101         uint8_t function;               /**< Device function. */
102 };
103
104 /**
105  * A structure describing a PCI device.
106  */
107 struct rte_pci_device {
108         TAILQ_ENTRY(rte_pci_device) next;       /**< Next probed PCI device. */
109         struct rte_pci_addr addr;               /**< PCI location. */
110         struct rte_pci_id id;                   /**< PCI ID. */
111         struct rte_pci_resource mem_resource;   /**< PCI Memory Resource */
112         struct rte_intr_handle intr_handle;     /**< Interrupt handle */
113 };
114
115 /** Any PCI device identifier (vendor, device, ...) */
116 #define PCI_ANY_ID (0xffff)
117
118 #ifdef __cplusplus
119 /** C++ macro used to help building up tables of device IDs */
120 #define RTE_PCI_DEVICE(vend, dev) \
121         (vend),                   \
122         (dev),                    \
123         PCI_ANY_ID,               \
124         PCI_ANY_ID
125 #else
126 /** Macro used to help building up tables of device IDs */
127 #define RTE_PCI_DEVICE(vend, dev)          \
128         .vendor_id = (vend),               \
129         .device_id = (dev),                \
130         .subsystem_vendor_id = PCI_ANY_ID, \
131         .subsystem_device_id = PCI_ANY_ID
132 #endif
133
134 struct rte_pci_driver;
135
136 /**
137  * Initialisation function for the driver called during PCI probing.
138  */
139 typedef int (pci_devinit_t)(struct rte_pci_driver *, struct rte_pci_device *);
140
141 /**
142  * A structure describing a PCI driver.
143  */
144 struct rte_pci_driver {
145         TAILQ_ENTRY(rte_pci_driver) next;       /**< Next in list. */
146         const char *name;                       /**< Driver name. */
147         pci_devinit_t *devinit;                 /**< Device init. function. */
148         struct rte_pci_id *id_table;            /**< ID table, NULL terminated. */
149         uint32_t drv_flags;                     /**< Flags contolling handling of device. */
150 };
151
152 /**< Device needs igb_uio kernel module */
153 #define RTE_PCI_DRV_NEED_IGB_UIO 0x0001
154
155 /**
156  * Probe the PCI bus for registered drivers.
157  *
158  * Scan the content of the PCI bus, and call the probe() function for
159  * all registered drivers that have a matching entry in its id_table
160  * for discovered devices.
161  *
162  * @return
163  *   - 0 on success.
164  *   - Negative on error.
165  */
166 int rte_eal_pci_probe(void);
167
168 /**
169  * Dump the content of the PCI bus.
170  */
171 void rte_eal_pci_dump(void);
172
173 /**
174  * Register a PCI driver.
175  *
176  * @param driver
177  *   A pointer to a rte_pci_driver structure describing the driver
178  *   to be registered.
179  */
180 void rte_eal_pci_register(struct rte_pci_driver *driver);
181
182 /**
183  * Register a list of PCI locations that will be blacklisted (not used by DPDK).
184  *
185  * @param blacklist
186  *   List of PCI device addresses that will not be used by DPDK.
187  * @param size
188  *   Number of items in the list.
189  */
190 void rte_eal_pci_set_blacklist(struct rte_pci_addr *blacklist, unsigned size);
191
192 #ifdef __cplusplus
193 }
194 #endif
195
196 #endif /* _RTE_PCI_H_ */