bf4415177be1c0e24bfe9b1ded1a0aea31baa199
[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
54         return clib_error_return (0, "unknown input `%U'",
55                                   format_unformat_error, input);
56     }
57   unformat_free (line_input);
58
59   avf_create_if (vm, &args);
60
61   return args.error;
62 }
63
64 /* *INDENT-OFF* */
65 VLIB_CLI_COMMAND (avf_create_command, static) = {
66   .path = "create interface avf",
67   .short_help = "create interface avf <pci-address> "
68                 "[rx-queue-size <size>] [tx-queue-size <size>]",
69   .function = avf_create_command_fn,
70 };
71 /* *INDENT-ON* */
72
73 static clib_error_t *
74 avf_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
75                        vlib_cli_command_t * cmd)
76 {
77   unformat_input_t _line_input, *line_input = &_line_input;
78   u32 sw_if_index = ~0;
79   vnet_hw_interface_t *hw;
80   avf_main_t *am = &avf_main;
81   avf_device_t *ad;
82   vnet_main_t *vnm = vnet_get_main ();
83
84   /* Get a line of input. */
85   if (!unformat_user (input, unformat_line_input, line_input))
86     return 0;
87
88   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
89     {
90       if (unformat (line_input, "sw_if_index %d", &sw_if_index))
91         ;
92       else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
93                          vnm, &sw_if_index))
94         ;
95       else
96         return clib_error_return (0, "unknown input `%U'",
97                                   format_unformat_error, input);
98     }
99   unformat_free (line_input);
100
101   if (sw_if_index == ~0)
102     return clib_error_return (0,
103                               "please specify interface name or sw_if_index");
104
105   hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
106   if (hw == NULL || avf_device_class.index != hw->dev_class_index)
107     return clib_error_return (0, "not an AVF interface");
108
109   ad = pool_elt_at_index (am->devices, hw->dev_instance);
110
111   avf_delete_if (vm, ad);
112
113   return 0;
114 }
115
116 /* *INDENT-OFF* */
117 VLIB_CLI_COMMAND (avf_delete_command, static) = {
118   .path = "delete interface avf",
119   .short_help = "delete interface avf "
120     "{<interface> | sw_if_index <sw_idx>}",
121   .function = avf_delete_command_fn,
122 };
123 /* *INDENT-ON* */
124
125 static clib_error_t *
126 avf_test_command_fn (vlib_main_t * vm, unformat_input_t * input,
127                      vlib_cli_command_t * cmd)
128 {
129   unformat_input_t _line_input, *line_input = &_line_input;
130   u32 sw_if_index = ~0;
131   vnet_hw_interface_t *hw;
132   avf_main_t *am = &avf_main;
133   avf_device_t *ad;
134   vnet_main_t *vnm = vnet_get_main ();
135   int test_irq = 0, enable_elog = 0, disable_elog = 0;
136
137   /* Get a line of input. */
138   if (!unformat_user (input, unformat_line_input, line_input))
139     return 0;
140
141   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
142     {
143       if (unformat (line_input, "sw_if_index %d", &sw_if_index))
144         ;
145       else if (unformat (line_input, "irq"))
146         test_irq = 1;
147       else if (unformat (line_input, "elog-on"))
148         enable_elog = 1;
149       else if (unformat (line_input, "elog-off"))
150         disable_elog = 1;
151       else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
152                          vnm, &sw_if_index))
153         ;
154       else
155         return clib_error_return (0, "unknown input `%U'",
156                                   format_unformat_error, input);
157     }
158   unformat_free (line_input);
159
160   if (sw_if_index == ~0)
161     return clib_error_return (0,
162                               "please specify interface name or sw_if_index");
163
164   hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
165   if (hw == NULL || avf_device_class.index != hw->dev_class_index)
166     return clib_error_return (0, "not a AVF interface");
167
168   ad = pool_elt_at_index (am->devices, hw->dev_instance);
169
170   if (enable_elog)
171     ad->flags |= AVF_DEVICE_F_ELOG;
172
173   if (disable_elog)
174     ad->flags &= ~AVF_DEVICE_F_ELOG;
175
176   if (test_irq)
177     avf_reg_write (ad, AVFINT_DYN_CTL0, (1 << 0) | (3 << 3) | (1 << 2));
178
179   return 0;
180 }
181
182 /* *INDENT-OFF* */
183 VLIB_CLI_COMMAND (avf_test_command, static) = {
184   .path = "test avf",
185   .short_help = "test avf [<interface> | sw_if_index <sw_idx>] [irq] "
186     "[elog-on] [elog-off]",
187   .function = avf_test_command_fn,
188 };
189 /* *INDENT-ON* */
190
191 clib_error_t *
192 avf_cli_init (vlib_main_t * vm)
193 {
194   return 0;
195 }
196
197 VLIB_INIT_FUNCTION (avf_cli_init);
198
199 /*
200  * fd.io coding-style-patch-verification: ON
201  *
202  * Local Variables:
203  * eval: (c-set-style "gnu")
204  * End:
205  */