bus: fix driver registration
[dpdk.git] / lib / librte_eal / common / eal_common_dev.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   Copyright(c) 2014 6WIND S.A.
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include <stdio.h>
36 #include <string.h>
37 #include <inttypes.h>
38 #include <sys/queue.h>
39
40 #include <rte_bus.h>
41 #include <rte_dev.h>
42 #include <rte_devargs.h>
43 #include <rte_debug.h>
44 #include <rte_devargs.h>
45 #include <rte_log.h>
46
47 #include "eal_private.h"
48
49 static int cmp_detached_dev_name(const struct rte_device *dev,
50         const void *_name)
51 {
52         const char *name = _name;
53
54         /* skip attached devices */
55         if (dev->driver != NULL)
56                 return 1;
57
58         return strcmp(dev->name, name);
59 }
60
61 static int cmp_dev_name(const struct rte_device *dev, const void *_name)
62 {
63         const char *name = _name;
64
65         return strcmp(dev->name, name);
66 }
67
68 int rte_eal_dev_attach(const char *name, const char *devargs)
69 {
70         int ret;
71
72         if (name == NULL || devargs == NULL) {
73                 RTE_LOG(ERR, EAL, "Invalid device or arguments provided\n");
74                 return -EINVAL;
75         }
76
77         ret = rte_eal_hotplug_add("pci", name, devargs);
78         if (ret && ret != -EINVAL)
79                 return ret;
80
81         /*
82          * If we haven't found a bus device the user meant to "hotplug" a
83          * virtual device instead.
84          */
85         ret = rte_vdev_init(name, devargs);
86         if (ret)
87                 RTE_LOG(ERR, EAL, "Driver cannot attach the device (%s)\n",
88                         name);
89         return ret;
90 }
91
92 int rte_eal_dev_detach(struct rte_device *dev)
93 {
94         struct rte_bus *bus;
95         int ret;
96
97         if (dev == NULL) {
98                 RTE_LOG(ERR, EAL, "Invalid device provided.\n");
99                 return -EINVAL;
100         }
101
102         bus = rte_bus_find_by_device(dev);
103         if (bus == NULL) {
104                 RTE_LOG(ERR, EAL, "Cannot find bus for device (%s)\n",
105                         dev->name);
106                 return -EINVAL;
107         }
108
109         if (bus->unplug == NULL) {
110                 RTE_LOG(ERR, EAL, "Bus function not supported\n");
111                 return -ENOTSUP;
112         }
113
114         ret = bus->unplug(dev);
115         if (ret)
116                 RTE_LOG(ERR, EAL, "Driver cannot detach the device (%s)\n",
117                         dev->name);
118         return ret;
119 }
120
121 int rte_eal_hotplug_add(const char *busname, const char *devname,
122                         const char *devargs)
123 {
124         struct rte_bus *bus;
125         struct rte_device *dev;
126         int ret;
127
128         bus = rte_bus_find_by_name(busname);
129         if (bus == NULL) {
130                 RTE_LOG(ERR, EAL, "Cannot find bus (%s)\n", busname);
131                 return -ENOENT;
132         }
133
134         if (bus->plug == NULL) {
135                 RTE_LOG(ERR, EAL, "Function plug not supported by bus (%s)\n",
136                         bus->name);
137                 return -ENOTSUP;
138         }
139
140         ret = bus->scan();
141         if (ret)
142                 return ret;
143
144         dev = bus->find_device(NULL, cmp_detached_dev_name, devname);
145         if (dev == NULL) {
146                 RTE_LOG(ERR, EAL, "Cannot find unplugged device (%s)\n",
147                         devname);
148                 return -EINVAL;
149         }
150
151         ret = bus->plug(dev, devargs);
152         if (ret)
153                 RTE_LOG(ERR, EAL, "Driver cannot attach the device (%s)\n",
154                         dev->name);
155         return ret;
156 }
157
158 int rte_eal_hotplug_remove(const char *busname, const char *devname)
159 {
160         struct rte_bus *bus;
161         struct rte_device *dev;
162         int ret;
163
164         bus = rte_bus_find_by_name(busname);
165         if (bus == NULL) {
166                 RTE_LOG(ERR, EAL, "Cannot find bus (%s)\n", busname);
167                 return -ENOENT;
168         }
169
170         if (bus->unplug == NULL) {
171                 RTE_LOG(ERR, EAL, "Function unplug not supported by bus (%s)\n",
172                         bus->name);
173                 return -ENOTSUP;
174         }
175
176         dev = bus->find_device(NULL, cmp_dev_name, devname);
177         if (dev == NULL) {
178                 RTE_LOG(ERR, EAL, "Cannot find plugged device (%s)\n", devname);
179                 return -EINVAL;
180         }
181
182         ret = bus->unplug(dev);
183         if (ret)
184                 RTE_LOG(ERR, EAL, "Driver cannot detach the device (%s)\n",
185                         dev->name);
186         return ret;
187 }