avf: RSS support
[vpp.git] / src / plugins / avf / cli.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 #include <stdint.h>
18 #include <net/if.h>
19 #include <sys/ioctl.h>
20 #include <inttypes.h>
21
22 #include <vlib/vlib.h>
23 #include <vlib/unix/unix.h>
24 #include <vlib/pci/pci.h>
25 #include <vnet/ethernet/ethernet.h>
26
27 #include <avf/avf.h>
28
29 static clib_error_t *
30 avf_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
31                        vlib_cli_command_t * cmd)
32 {
33   unformat_input_t _line_input, *line_input = &_line_input;
34   avf_create_if_args_t args;
35   u32 tmp;
36
37   memset (&args, 0, sizeof (avf_create_if_args_t));
38
39   /* Get a line of input. */
40   if (!unformat_user (input, unformat_line_input, line_input))
41     return 0;
42
43   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
44     {
45       if (unformat (line_input, "%U", unformat_vlib_pci_addr, &args.addr))
46         ;
47       else if (unformat (line_input, "elog"))
48         args.enable_elog = 1;
49       else if (unformat (line_input, "rx-queue-size %u", &tmp))
50         args.rxq_size = tmp;
51       else if (unformat (line_input, "tx-queue-size %u", &tmp))
52         args.txq_size = tmp;
53       else if (unformat (line_input, "num-rx-queues %u", &tmp))
54         args.rxq_num = tmp;
55       else
56         return clib_error_return (0, "unknown input `%U'",
57                                   format_unformat_error, input);
58     }
59   unformat_free (line_input);
60
61   avf_create_if (vm, &args);
62
63   return args.error;
64 }
65
66 /* *INDENT-OFF* */
67 VLIB_CLI_COMMAND (avf_create_command, static) = {
68   .path = "create interface avf",
69   .short_help = "create interface avf <pci-address> "
70                 "[rx-queue-size <size>] [tx-queue-size <size>] "
71                 "[num-rx-queues <size>]",
72   .function = avf_create_command_fn,
73 };
74 /* *INDENT-ON* */
75
76 static clib_error_t *
77 avf_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
78                        vlib_cli_command_t * cmd)
79 {
80   unformat_input_t _line_input, *line_input = &_line_input;
81   u32 sw_if_index = ~0;
82   vnet_hw_interface_t *hw;
83   avf_main_t *am = &avf_main;
84   avf_device_t *ad;
85   vnet_main_t *vnm = vnet_get_main ();
86
87   /* Get a line of input. */
88   if (!unformat_user (input, unformat_line_input, line_input))
89     return 0;
90
91   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
92     {
93       if (unformat (line_input, "sw_if_index %d", &sw_if_index))
94         ;
95       else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
96                          vnm, &sw_if_index))
97         ;
98       else
99         return clib_error_return (0, "unknown input `%U'",
100                                   format_unformat_error, input);
101     }
102   unformat_free (line_input);
103
104   if (sw_if_index == ~0)
105     return clib_error_return (0,
106                               "please specify interface name or sw_if_index");
107
108   hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
109   if (hw == NULL || avf_device_class.index != hw->dev_class_index)
110     return clib_error_return (0, "not an AVF interface");
111
112   ad = pool_elt_at_index (am->devices, hw->dev_instance);
113
114   avf_delete_if (vm, ad);
115
116   return 0;
117 }
118
119 /* *INDENT-OFF* */
120 VLIB_CLI_COMMAND (avf_delete_command, static) = {
121   .path = "delete interface avf",
122   .short_help = "delete interface avf "
123     "{<interface> | sw_if_index <sw_idx>}",
124   .function = avf_delete_command_fn,
125 };
126 /* *INDENT-ON* */
127
128 static clib_error_t *
129 avf_test_command_fn (vlib_main_t * vm, unformat_input_t * input,
130                      vlib_cli_command_t * cmd)
131 {
132   unformat_input_t _line_input, *line_input = &_line_input;
133   u32 sw_if_index = ~0;
134   vnet_hw_interface_t *hw;
135   avf_main_t *am = &avf_main;
136   avf_device_t *ad;
137   vnet_main_t *vnm = vnet_get_main ();
138   int test_irq = 0, enable_elog = 0, disable_elog = 0;
139
140   /* Get a line of input. */
141   if (!unformat_user (input, unformat_line_input, line_input))
142     return 0;
143
144   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
145     {
146       if (unformat (line_input, "sw_if_index %d", &sw_if_index))
147         ;
148       else if (unformat (line_input, "irq"))
149         test_irq = 1;
150       else if (unformat (line_input, "elog-on"))
151         enable_elog = 1;
152       else if (unformat (line_input, "elog-off"))
153         disable_elog = 1;
154       else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
155                          vnm, &sw_if_index))
156         ;
157       else
158         return clib_error_return (0, "unknown input `%U'",
159                                   format_unformat_error, input);
160     }
161   unformat_free (line_input);
162
163   if (sw_if_index == ~0)
164     return clib_error_return (0,
165                               "please specify interface name or sw_if_index");
166
167   hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
168   if (hw == NULL || avf_device_class.index != hw->dev_class_index)
169     return clib_error_return (0, "not a AVF interface");
170
171   ad = pool_elt_at_index (am->devices, hw->dev_instance);
172
173   if (enable_elog)
174     ad->flags |= AVF_DEVICE_F_ELOG;
175
176   if (disable_elog)
177     ad->flags &= ~AVF_DEVICE_F_ELOG;
178
179   if (test_irq)
180     avf_reg_write (ad, AVFINT_DYN_CTL0, (1 << 0) | (3 << 3) | (1 << 2));
181
182   return 0;
183 }
184
185 /* *INDENT-OFF* */
186 VLIB_CLI_COMMAND (avf_test_command, static) = {
187   .path = "test avf",
188   .short_help = "test avf [<interface> | sw_if_index <sw_idx>] [irq] "
189     "[elog-on] [elog-off]",
190   .function = avf_test_command_fn,
191 };
192 /* *INDENT-ON* */
193
194 clib_error_t *
195 avf_cli_init (vlib_main_t * vm)
196 {
197   return 0;
198 }
199
200 VLIB_INIT_FUNCTION (avf_cli_init);
201
202 /*
203  * fd.io coding-style-patch-verification: ON
204  *
205  * Local Variables:
206  * eval: (c-set-style "gnu")
207  * End:
208  */