doc: whitespace changes in licenses
[dpdk.git] / lib / librte_eal / common / eal_common_pci.c
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 /*   BSD LICENSE
34  *
35  *   Copyright(c) 2013 6WIND.
36  *
37  *   Redistribution and use in source and binary forms, with or without
38  *   modification, are permitted provided that the following conditions
39  *   are met:
40  *
41  *     * Redistributions of source code must retain the above copyright
42  *       notice, this list of conditions and the following disclaimer.
43  *     * Redistributions in binary form must reproduce the above copyright
44  *       notice, this list of conditions and the following disclaimer in
45  *       the documentation and/or other materials provided with the
46  *       distribution.
47  *     * Neither the name of 6WIND S.A. nor the names of its
48  *       contributors may be used to endorse or promote products derived
49  *       from this software without specific prior written permission.
50  *
51  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
52  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
53  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
54  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
55  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
56  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
57  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
61  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62  */
63
64 #include <inttypes.h>
65 #include <stdint.h>
66 #include <stdlib.h>
67 #include <stdio.h>
68 #include <sys/queue.h>
69
70 #include <rte_interrupts.h>
71 #include <rte_log.h>
72 #include <rte_pci.h>
73 #include <rte_per_lcore.h>
74 #include <rte_memory.h>
75 #include <rte_memzone.h>
76 #include <rte_tailq.h>
77 #include <rte_eal.h>
78
79 #include "eal_private.h"
80
81 struct pci_driver_list driver_list;
82 struct pci_device_list device_list;
83
84 static struct rte_pci_addr *dev_blacklist = NULL;
85 static unsigned dev_blacklist_size = 0;
86
87 static int is_blacklisted(struct rte_pci_device *dev)
88 {
89         struct rte_pci_addr *loc = &dev->addr;
90         unsigned i;
91
92         for (i = 0; i < dev_blacklist_size; i++) {
93                 if ((loc->domain == dev_blacklist[i].domain) &&
94                                 (loc->bus == dev_blacklist[i].bus) &&
95                                 (loc->devid == dev_blacklist[i].devid) &&
96                                 (loc->function == dev_blacklist[i].function)) {
97                         return 1;
98                 }
99         }
100
101         return 0;           /* not in blacklist */
102 }
103
104 /*
105  * If vendor/device ID match, call the devinit() function of all
106  * registered driver for the given device. Return -1 if no driver is
107  * found for this device.
108  * For drivers with the RTE_PCI_DRV_MULTIPLE flag enabled, register
109  * the same device multiple times until failure to do so.
110  * It is required for non-Intel NIC drivers provided by third-parties such
111  * as 6WIND.
112  */
113 static int
114 pci_probe_all_drivers(struct rte_pci_device *dev)
115 {
116         struct rte_pci_driver *dr = NULL;
117         int rc;
118
119         dev->blacklisted = !!is_blacklisted(dev);
120         TAILQ_FOREACH(dr, &driver_list, next) {
121                 rc = rte_eal_pci_probe_one_driver(dr, dev);
122                 if (rc < 0)
123                         /* negative value is an error */
124                         break;
125                 if (rc > 0)
126                         /* positive value means driver not found */
127                         continue;
128                 /* initialize subsequent driver instances for this device */
129                 if ((dr->drv_flags & RTE_PCI_DRV_MULTIPLE) &&
130                                 (!dev->blacklisted))
131                         while (rte_eal_pci_probe_one_driver(dr, dev) == 0)
132                                 ;
133                 return 0;
134         }
135         return -1;
136 }
137
138 /*
139  * Scan the content of the PCI bus, and call the devinit() function for
140  * all registered drivers that have a matching entry in its id_table
141  * for discovered devices.
142  */
143 int
144 rte_eal_pci_probe(void)
145 {
146         struct rte_pci_device *dev = NULL;
147
148         TAILQ_FOREACH(dev, &device_list, next)
149                 pci_probe_all_drivers(dev);
150         return 0;
151 }
152
153 /* dump one device */
154 static int
155 pci_dump_one_device(struct rte_pci_device *dev)
156 {
157         int i;
158
159         printf(PCI_PRI_FMT, dev->addr.domain, dev->addr.bus,
160                dev->addr.devid, dev->addr.function);
161         printf(" - vendor:%x device:%x\n", dev->id.vendor_id,
162                dev->id.device_id);
163
164         for (i = 0; i != sizeof(dev->mem_resource) /
165                 sizeof(dev->mem_resource[0]); i++) {
166                 printf("   %16.16"PRIx64" %16.16"PRIx64"\n",
167                         dev->mem_resource[i].phys_addr, 
168                         dev->mem_resource[i].len);
169         }
170         return 0;
171 }
172
173 /* dump devices on the bus */
174 void
175 rte_eal_pci_dump(void)
176 {
177         struct rte_pci_device *dev = NULL;
178
179         TAILQ_FOREACH(dev, &device_list, next) {
180                 pci_dump_one_device(dev);
181         }
182 }
183
184 /* register a driver */
185 void
186 rte_eal_pci_register(struct rte_pci_driver *driver)
187 {
188         TAILQ_INSERT_TAIL(&driver_list, driver, next);
189 }
190
191 /* unregister a driver */
192 void
193 rte_eal_pci_unregister(struct rte_pci_driver *driver)
194 {
195         TAILQ_REMOVE(&driver_list, driver, next);
196 }
197
198 void
199 rte_eal_pci_set_blacklist(struct rte_pci_addr *blacklist, unsigned size)
200 {
201         dev_blacklist = blacklist;
202         dev_blacklist_size = size;
203 }