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