net/sfc: factor out libefx-based Rx datapath
[dpdk.git] / drivers / net / sfc / sfc_kvargs.c
1 /*-
2  *   BSD LICENSE
3  *
4  * Copyright (c) 2016-2017 Solarflare Communications Inc.
5  * All rights reserved.
6  *
7  * This software was jointly developed between OKTET Labs (under contract
8  * for Solarflare) and Solarflare Communications, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  *    this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  *    this list of conditions and the following disclaimer in the documentation
17  *    and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include <stdbool.h>
33 #include <strings.h>
34
35 #include <rte_devargs.h>
36 #include <rte_kvargs.h>
37
38 #include "sfc.h"
39 #include "sfc_kvargs.h"
40
41 int
42 sfc_kvargs_parse(struct sfc_adapter *sa)
43 {
44         struct rte_eth_dev *eth_dev = (sa)->eth_dev;
45         struct rte_devargs *devargs = eth_dev->device->devargs;
46         const char **params = (const char *[]){
47                 SFC_KVARG_STATS_UPDATE_PERIOD_MS,
48                 SFC_KVARG_DEBUG_INIT,
49                 SFC_KVARG_MCDI_LOGGING,
50                 SFC_KVARG_PERF_PROFILE,
51                 SFC_KVARG_RX_DATAPATH,
52                 NULL,
53         };
54
55         if (devargs == NULL)
56                 return 0;
57
58         sa->kvargs = rte_kvargs_parse(devargs->args, params);
59         if (sa->kvargs == NULL)
60                 return EINVAL;
61
62         return 0;
63 }
64
65 void
66 sfc_kvargs_cleanup(struct sfc_adapter *sa)
67 {
68         rte_kvargs_free(sa->kvargs);
69 }
70
71 static int
72 sfc_kvarg_match_value(const char *value, const char * const *values,
73                       unsigned int n_values)
74 {
75         unsigned int i;
76
77         for (i = 0; i < n_values; ++i)
78                 if (strcasecmp(value, values[i]) == 0)
79                         return 1;
80
81         return 0;
82 }
83
84 int
85 sfc_kvargs_process(struct sfc_adapter *sa, const char *key_match,
86                    arg_handler_t handler, void *opaque_arg)
87 {
88         if (sa->kvargs == NULL)
89                 return 0;
90
91         return -rte_kvargs_process(sa->kvargs, key_match, handler, opaque_arg);
92 }
93
94 int
95 sfc_kvarg_bool_handler(__rte_unused const char *key,
96                        const char *value_str, void *opaque)
97 {
98         const char * const true_strs[] = {
99                 "1", "y", "yes", "on", "true"
100         };
101         const char * const false_strs[] = {
102                 "0", "n", "no", "off", "false"
103         };
104         bool *value = opaque;
105
106         if (sfc_kvarg_match_value(value_str, true_strs,
107                                   RTE_DIM(true_strs)))
108                 *value = true;
109         else if (sfc_kvarg_match_value(value_str, false_strs,
110                                        RTE_DIM(false_strs)))
111                 *value = false;
112         else
113                 return -EINVAL;
114
115         return 0;
116 }
117
118 int
119 sfc_kvarg_long_handler(__rte_unused const char *key,
120                        const char *value_str, void *opaque)
121 {
122         long value;
123         char *endptr;
124
125         if (!value_str || !opaque)
126                 return -EINVAL;
127
128         value = strtol(value_str, &endptr, 0);
129         if (endptr == value_str)
130                 return -EINVAL;
131
132         *(long *)opaque = value;
133
134         return 0;
135 }
136
137 int
138 sfc_kvarg_string_handler(__rte_unused const char *key,
139                          const char *value_str, void *opaque)
140 {
141         *(const char **)opaque = value_str;
142
143         return 0;
144 }