8fa041e05f204fea16bedf989a49e77c21011b97
[dpdk.git] / app / test / test_pci.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2014 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 #include <stdio.h>
35 #include <string.h>
36 #include <stdint.h>
37 #include <sys/queue.h>
38
39 #include <cmdline_parse.h>
40
41 #include <rte_interrupts.h>
42 #include <rte_pci.h>
43
44 #include "test.h"
45
46
47 #define TEST_BLACKLIST_NUM      0x100
48
49 /*
50  * PCI test
51  * ========
52  *
53  * - Register a driver with a ``devinit()`` function.
54  *
55  * - Dump all PCI devices.
56  *
57  * - Check that the ``devinit()`` function is called at least once.
58  */
59
60 int test_pci_run = 0; /* value checked by the multiprocess test */
61 static unsigned pci_dev_count;
62 static unsigned driver_registered = 0;
63 static struct rte_pci_addr blacklist[TEST_BLACKLIST_NUM];
64
65 static int my_driver_init(struct rte_pci_driver *dr,
66                           struct rte_pci_device *dev);
67
68 /*
69  * To test cases where RTE_PCI_DRV_NEED_IGB_UIO is set, and isn't set, two
70  * drivers are created (one with IGB devices, the other with IXGBE devices).
71  */
72
73 /* IXGBE NICS */
74 struct rte_pci_id my_driver_id[] = {
75
76 #define RTE_PCI_DEV_ID_DECL_IXGBE(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
77 #include <rte_pci_dev_ids.h>
78
79 { .vendor_id = 0, /* sentinel */ },
80 };
81
82 struct rte_pci_id my_driver_id2[] = {
83
84 /* IGB & EM NICS */
85 #define RTE_PCI_DEV_ID_DECL_EM(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
86 #define RTE_PCI_DEV_ID_DECL_IGB(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
87 #define RTE_PCI_DEV_USE_82575EB_COPPER
88 #include <rte_pci_dev_ids.h>
89
90 { .vendor_id = 0, /* sentinel */ },
91 };
92
93 struct rte_pci_driver my_driver = {
94         .name = "test_driver",
95         .devinit = my_driver_init,
96         .id_table = my_driver_id,
97         .drv_flags = RTE_PCI_DRV_NEED_IGB_UIO,
98 };
99
100 struct rte_pci_driver my_driver2 = {
101         .name = "test_driver2",
102         .devinit = my_driver_init,
103         .id_table = my_driver_id2,
104         .drv_flags = 0,
105 };
106
107 static int
108 my_driver_init(__attribute__((unused)) struct rte_pci_driver *dr,
109                struct rte_pci_device *dev)
110 {
111         printf("My driver init called in %s\n", dr->name);
112         printf("%x:%x:%x.%d", dev->addr.domain, dev->addr.bus,
113                dev->addr.devid, dev->addr.function);
114         printf(" - vendor:%x device:%x\n", dev->id.vendor_id, dev->id.device_id);
115
116         pci_dev_count ++;
117         return 0;
118 }
119
120 static void
121 blacklist_clear(void)
122 {
123         rte_eal_pci_set_blacklist(NULL, 0);
124 }
125
126
127
128 static void
129 blacklist_all_devices(void)
130 {
131         struct rte_pci_device *dev = NULL;
132         unsigned idx = 0;
133
134         memset(blacklist, 0, sizeof (blacklist));
135
136         TAILQ_FOREACH(dev, &device_list, next) {
137                 if (idx >= sizeof (blacklist) / sizeof (blacklist[0])) {
138                         printf("Error: too many devices to blacklist");
139                         break;
140                 }
141                 blacklist[idx] = dev->addr;
142                 ++idx;
143         }
144
145         rte_eal_pci_set_blacklist(blacklist, idx);
146         printf("%u devices blacklisted\n", idx);
147 }
148
149 int
150 test_pci(void)
151 {
152
153         printf("Dump all devices\n");
154         rte_eal_pci_dump();
155         if (driver_registered == 0) {
156                 rte_eal_pci_register(&my_driver);
157                 rte_eal_pci_register(&my_driver2);
158                 driver_registered = 1;
159         }
160
161         pci_dev_count = 0;
162         printf("Scan bus\n");
163         rte_eal_pci_probe();
164
165         if (pci_dev_count == 0) {
166                 printf("no device detected\n");
167                 return -1;
168         }
169
170         blacklist_all_devices();
171
172         pci_dev_count = 0;
173         printf("Scan bus with all devices blacklisted\n");
174         rte_eal_pci_probe();
175
176         blacklist_clear();
177
178         if (pci_dev_count != 0) {
179                 printf("not all devices are blacklisted\n");
180                 return -1;
181         }
182
183         test_pci_run = 1;
184         if (driver_registered == 1) {
185                 rte_eal_pci_unregister(&my_driver);
186                 rte_eal_pci_unregister(&my_driver2);
187                 driver_registered = 0;
188         }
189
190         return 0;
191 }