pci: reference driver structure for each device
[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         dev->blacklisted = !!is_blacklisted(dev);
84         TAILQ_FOREACH(dr, &driver_list, next) {
85                 if (rte_eal_pci_probe_one_driver(dr, dev) == 0)
86                         return 0;
87         }
88         return -1;
89 }
90
91 /*
92  * Scan the content of the PCI bus, and call the devinit() function for
93  * all registered drivers that have a matching entry in its id_table
94  * for discovered devices.
95  */
96 int
97 rte_eal_pci_probe(void)
98 {
99         struct rte_pci_device *dev = NULL;
100
101         TAILQ_FOREACH(dev, &device_list, next)
102                 pci_probe_all_drivers(dev);
103
104         return 0;
105 }
106
107 /* dump one device */
108 static int
109 pci_dump_one_device(struct rte_pci_device *dev)
110 {
111         printf(PCI_PRI_FMT, dev->addr.domain, dev->addr.bus,
112                dev->addr.devid, dev->addr.function);
113         printf(" - vendor:%x device:%x\n", dev->id.vendor_id,
114                dev->id.device_id);
115         printf("   %16.16"PRIx64" %16.16"PRIx64"\n",
116                dev->mem_resource.phys_addr, dev->mem_resource.len);
117         return 0;
118 }
119
120 /* dump devices on the bus */
121 void
122 rte_eal_pci_dump(void)
123 {
124         struct rte_pci_device *dev = NULL;
125
126         TAILQ_FOREACH(dev, &device_list, next) {
127                 pci_dump_one_device(dev);
128         }
129 }
130
131 /* register a driver */
132 void
133 rte_eal_pci_register(struct rte_pci_driver *driver)
134 {
135         TAILQ_INSERT_TAIL(&driver_list, driver, next);
136 }
137
138 void
139 rte_eal_pci_set_blacklist(struct rte_pci_addr *blacklist, unsigned size)
140 {
141         dev_blacklist = blacklist;
142         dev_blacklist_size = size;
143 }