remove version in all files
[dpdk.git] / lib / librte_eal / common / eal_common_pci.c
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 #include <inttypes.h>
36 #include <stdint.h>
37 #include <stdio.h>
38 #include <sys/queue.h>
39
40 #include <rte_interrupts.h>
41 #include <rte_pci.h>
42 #include <rte_per_lcore.h>
43 #include <rte_memory.h>
44 #include <rte_memzone.h>
45 #include <rte_tailq.h>
46 #include <rte_eal.h>
47
48 #include "eal_private.h"
49
50 struct pci_driver_list driver_list;
51 struct pci_device_list device_list;
52
53 static struct rte_pci_addr *dev_blacklist = NULL;
54 static unsigned dev_blacklist_size = 0;
55
56 static int is_blacklisted(struct rte_pci_device *dev)
57 {
58         struct rte_pci_addr *loc = &dev->addr;
59         unsigned i;
60
61         for (i = 0; i < dev_blacklist_size; i++) {
62                 if ((loc->domain == dev_blacklist[i].domain) &&
63                                 (loc->bus == dev_blacklist[i].bus) &&
64                                 (loc->devid == dev_blacklist[i].devid) &&
65                                 (loc->function == dev_blacklist[i].function)) {
66                         return 1;
67                 }
68         }
69
70         return 0;           /* not in blacklist */
71 }
72
73 /*
74  * If vendor/device ID match, call the devinit() function of all
75  * registered driver for the given device. Return -1 if no driver is
76  * found for this device.
77  */
78 static int
79 pci_probe_all_drivers(struct rte_pci_device *dev)
80 {
81         struct rte_pci_driver *dr = NULL;
82
83         TAILQ_FOREACH(dr, &driver_list, next) {
84                 if (is_blacklisted(dev))
85                         return -1;
86                 if (rte_eal_pci_probe_one_driver(dr, dev) == 0)
87                         return 0;
88         }
89         return -1;
90 }
91
92 /*
93  * Scan the content of the PCI bus, and call the devinit() function for
94  * all registered drivers that have a matching entry in its id_table
95  * for discovered devices.
96  */
97 int
98 rte_eal_pci_probe(void)
99 {
100         struct rte_pci_device *dev = NULL;
101
102         TAILQ_FOREACH(dev, &device_list, next)
103                 pci_probe_all_drivers(dev);
104
105         return 0;
106 }
107
108 /* dump one device */
109 static int
110 pci_dump_one_device(struct rte_pci_device *dev)
111 {
112         printf(PCI_PRI_FMT, dev->addr.domain, dev->addr.bus,
113                dev->addr.devid, dev->addr.function);
114         printf(" - vendor:%x device:%x\n", dev->id.vendor_id,
115                dev->id.device_id);
116         printf("   %16.16"PRIx64" %16.16"PRIx64"\n",
117                dev->mem_resource.phys_addr, dev->mem_resource.len);
118         return 0;
119 }
120
121 /* dump devices on the bus */
122 void
123 rte_eal_pci_dump(void)
124 {
125         struct rte_pci_device *dev = NULL;
126
127         TAILQ_FOREACH(dev, &device_list, next) {
128                 pci_dump_one_device(dev);
129         }
130 }
131
132 /* register a driver */
133 void
134 rte_eal_pci_register(struct rte_pci_driver *driver)
135 {
136         TAILQ_INSERT_TAIL(&driver_list, driver, next);
137 }
138
139 void
140 rte_eal_pci_set_blacklist(struct rte_pci_addr *blacklist, unsigned size)
141 {
142         dev_blacklist = blacklist;
143         dev_blacklist_size = size;
144 }