e0a3ff9bd909fd3db3331a1795bcd1ad520eea69
[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                 NULL,
52         };
53
54         if (devargs == NULL)
55                 return 0;
56
57         sa->kvargs = rte_kvargs_parse(devargs->args, params);
58         if (sa->kvargs == NULL)
59                 return EINVAL;
60
61         return 0;
62 }
63
64 void
65 sfc_kvargs_cleanup(struct sfc_adapter *sa)
66 {
67         rte_kvargs_free(sa->kvargs);
68 }
69
70 static int
71 sfc_kvarg_match_value(const char *value, const char * const *values,
72                       unsigned int n_values)
73 {
74         unsigned int i;
75
76         for (i = 0; i < n_values; ++i)
77                 if (strcasecmp(value, values[i]) == 0)
78                         return 1;
79
80         return 0;
81 }
82
83 int
84 sfc_kvargs_process(struct sfc_adapter *sa, const char *key_match,
85                    arg_handler_t handler, void *opaque_arg)
86 {
87         if (sa->kvargs == NULL)
88                 return 0;
89
90         return -rte_kvargs_process(sa->kvargs, key_match, handler, opaque_arg);
91 }
92
93 int
94 sfc_kvarg_bool_handler(__rte_unused const char *key,
95                        const char *value_str, void *opaque)
96 {
97         const char * const true_strs[] = {
98                 "1", "y", "yes", "on", "true"
99         };
100         const char * const false_strs[] = {
101                 "0", "n", "no", "off", "false"
102         };
103         bool *value = opaque;
104
105         if (sfc_kvarg_match_value(value_str, true_strs,
106                                   RTE_DIM(true_strs)))
107                 *value = true;
108         else if (sfc_kvarg_match_value(value_str, false_strs,
109                                        RTE_DIM(false_strs)))
110                 *value = false;
111         else
112                 return -EINVAL;
113
114         return 0;
115 }
116
117 int
118 sfc_kvarg_long_handler(__rte_unused const char *key,
119                        const char *value_str, void *opaque)
120 {
121         long value;
122         char *endptr;
123
124         if (!value_str || !opaque)
125                 return -EINVAL;
126
127         value = strtol(value_str, &endptr, 0);
128         if (endptr == value_str)
129                 return -EINVAL;
130
131         *(long *)opaque = value;
132
133         return 0;
134 }