c8f4318e17ff828fbc83383990a80a7d591a1f53
[deb_dpdk.git] / drivers / net / failsafe / failsafe_eal.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2017 6WIND S.A.
5  *   Copyright 2017 Mellanox.
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 6WIND S.A. 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 <rte_malloc.h>
35
36 #include "failsafe_private.h"
37
38 static int
39 fs_bus_init(struct rte_eth_dev *dev)
40 {
41         struct sub_device *sdev;
42         struct rte_devargs *da;
43         uint8_t i;
44         int ret;
45
46         FOREACH_SUBDEV(sdev, i, dev) {
47                 if (sdev->state != DEV_PARSED)
48                         continue;
49                 da = &sdev->devargs;
50                 ret = rte_eal_hotplug_add(da->bus->name,
51                                           da->name,
52                                           da->args);
53                 if (ret) {
54                         ERROR("sub_device %d probe failed %s%s%s", i,
55                               rte_errno ? "(" : "",
56                               rte_errno ? strerror(rte_errno) : "",
57                               rte_errno ? ")" : "");
58                         continue;
59                 }
60                 ETH(sdev) = rte_eth_dev_allocated(da->name);
61                 if (ETH(sdev) == NULL) {
62                         ERROR("sub_device %d init went wrong", i);
63                         return -ENODEV;
64                 }
65                 SUB_ID(sdev) = i;
66                 sdev->fs_dev = dev;
67                 sdev->dev = ETH(sdev)->device;
68                 ETH(sdev)->state = RTE_ETH_DEV_DEFERRED;
69                 sdev->state = DEV_PROBED;
70         }
71         return 0;
72 }
73
74 int
75 failsafe_eal_init(struct rte_eth_dev *dev)
76 {
77         int ret;
78
79         ret = fs_bus_init(dev);
80         if (ret)
81                 return ret;
82         if (PRIV(dev)->state < DEV_PROBED)
83                 PRIV(dev)->state = DEV_PROBED;
84         fs_switch_dev(dev, NULL);
85         return 0;
86 }
87
88 static int
89 fs_bus_uninit(struct rte_eth_dev *dev)
90 {
91         struct sub_device *sdev = NULL;
92         uint8_t i;
93         int ret;
94
95         FOREACH_SUBDEV_STATE(sdev, i, dev, DEV_PROBED) {
96                 ret = rte_eal_hotplug_remove(sdev->bus->name,
97                                              sdev->dev->name);
98                 if (ret) {
99                         ERROR("Failed to remove requested device %s",
100                               sdev->dev->name);
101                         continue;
102                 }
103                 sdev->state = DEV_PROBED - 1;
104         }
105         return 0;
106 }
107
108 int
109 failsafe_eal_uninit(struct rte_eth_dev *dev)
110 {
111         int ret;
112
113         ret = fs_bus_uninit(dev);
114         if (ret)
115                 return ret;
116         PRIV(dev)->state = DEV_PROBED - 1;
117         return 0;
118 }