FD.io VPP  v21.06-1-gbb7418cf9
Vector Packet Processing
cli.c
Go to the documentation of this file.
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 *
31  vlib_cli_command_t * cmd)
32 {
33  unformat_input_t _line_input, *line_input = &_line_input;
35  u32 tmp;
36 
37  clib_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 if (unformat (line_input, "num-tx-queues %u", &tmp))
56  args.txq_num = tmp;
57  else if (unformat (line_input, "name %s", &args.name))
58  ;
59  else
60  return clib_error_return (0, "unknown input `%U'",
61  format_unformat_error, input);
62  }
63  unformat_free (line_input);
64 
65  avf_create_if (vm, &args);
66 
67  vec_free (args.name);
68 
69  return args.error;
70 }
71 
72 /* *INDENT-OFF* */
73 VLIB_CLI_COMMAND (avf_create_command, static) = {
74  .path = "create interface avf",
75  .short_help = "create interface avf <pci-address> "
76  "[rx-queue-size <size>] [tx-queue-size <size>] "
77  "[num-rx-queues <size>]",
78  .function = avf_create_command_fn,
79 };
80 /* *INDENT-ON* */
81 
82 static clib_error_t *
84  vlib_cli_command_t * cmd)
85 {
86  unformat_input_t _line_input, *line_input = &_line_input;
87  u32 sw_if_index = ~0;
89  vnet_main_t *vnm = vnet_get_main ();
90 
91  /* Get a line of input. */
92  if (!unformat_user (input, unformat_line_input, line_input))
93  return 0;
94 
95  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
96  {
97  if (unformat (line_input, "sw_if_index %d", &sw_if_index))
98  ;
99  else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
100  vnm, &sw_if_index))
101  ;
102  else
103  return clib_error_return (0, "unknown input `%U'",
104  format_unformat_error, input);
105  }
106  unformat_free (line_input);
107 
108  if (sw_if_index == ~0)
109  return clib_error_return (0,
110  "please specify interface name or sw_if_index");
111 
112  hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index);
113  if (hw == NULL || avf_device_class.index != hw->dev_class_index)
114  return clib_error_return (0, "not an AVF interface");
115 
118 
119  return 0;
120 }
121 
122 /* *INDENT-OFF* */
123 VLIB_CLI_COMMAND (avf_delete_command, static) = {
124  .path = "delete interface avf",
125  .short_help = "delete interface avf "
126  "{<interface> | sw_if_index <sw_idx>}",
127  .function = avf_delete_command_fn,
128  .is_mp_safe = 1,
129 };
130 /* *INDENT-ON* */
131 
132 static clib_error_t *
134  vlib_cli_command_t * cmd)
135 {
136  unformat_input_t _line_input, *line_input = &_line_input;
137  u32 sw_if_index = ~0;
139  avf_device_t *ad;
140  vnet_main_t *vnm = vnet_get_main ();
141  int test_irq = 0, enable_elog = 0, disable_elog = 0;
142 
143  /* Get a line of input. */
144  if (!unformat_user (input, unformat_line_input, line_input))
145  return 0;
146 
147  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
148  {
149  if (unformat (line_input, "sw_if_index %d", &sw_if_index))
150  ;
151  else if (unformat (line_input, "irq"))
152  test_irq = 1;
153  else if (unformat (line_input, "elog-on"))
154  enable_elog = 1;
155  else if (unformat (line_input, "elog-off"))
156  disable_elog = 1;
157  else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
158  vnm, &sw_if_index))
159  ;
160  else
161  return clib_error_return (0, "unknown input `%U'",
162  format_unformat_error, input);
163  }
164  unformat_free (line_input);
165 
166  if (sw_if_index == ~0)
167  return clib_error_return (0,
168  "please specify interface name or sw_if_index");
169 
170  hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index);
171  if (hw == NULL || avf_device_class.index != hw->dev_class_index)
172  return clib_error_return (0, "not a AVF interface");
173 
174  ad = avf_get_device (hw->dev_instance);
175 
176  if (enable_elog)
177  ad->flags |= AVF_DEVICE_F_ELOG;
178 
179  if (disable_elog)
180  ad->flags &= ~AVF_DEVICE_F_ELOG;
181 
182  if (test_irq)
183  avf_reg_write (ad, AVFINT_DYN_CTL0, (1 << 0) | (3 << 3) | (1 << 2));
184 
185  return 0;
186 }
187 
188 /* *INDENT-OFF* */
189 VLIB_CLI_COMMAND (avf_test_command, static) = {
190  .path = "test avf",
191  .short_help = "test avf [<interface> | sw_if_index <sw_idx>] [irq] "
192  "[elog-on] [elog-off]",
193  .function = avf_test_command_fn,
194 };
195 /* *INDENT-ON* */
196 
197 clib_error_t *
199 {
200  return 0;
201 }
202 
204 
205 /*
206  * fd.io coding-style-patch-verification: ON
207  *
208  * Local Variables:
209  * eval: (c-set-style "gnu")
210  * End:
211  */
clib_error_t * avf_cli_init(vlib_main_t *vm)
Definition: cli.c:198
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_pci_addr_t addr
Definition: avf.h:333
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
unformat_function_t unformat_vnet_sw_interface
vnet_device_class_t avf_device_class
unsigned int u32
Definition: types.h:88
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
#define clib_error_return(e, args...)
Definition: error.h:99
vnet_main_t * vnet_get_main(void)
static clib_error_t * avf_test_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cli.c:133
unformat_function_t unformat_line_input
Definition: format.h:275
void avf_create_if(vlib_main_t *vm, avf_create_if_args_t *args)
Definition: device.c:1582
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:1019
struct _unformat_input_t unformat_input_t
unformat_function_t unformat_vlib_pci_addr
Definition: pci.h:325
u32 * tmp
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
vlib_node_registration_t avf_process_node
(constructor) VLIB_REGISTER_NODE (avf_process_node)
Definition: device.c:1394
#define UNFORMAT_END_OF_INPUT
Definition: format.h:137
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:395
static vnet_hw_interface_t * vnet_get_sup_hw_interface_api_visible_or_null(vnet_main_t *vnm, u32 sw_if_index)
static_always_inline avf_device_t * avf_get_device(u32 dev_instance)
Definition: avf.h:368
#define AVFINT_DYN_CTL0
Definition: virtchnl.h:38
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:163
u32 flags
Definition: avf.h:218
static void avf_reg_write(avf_device_t *ad, u32 addr, u32 val)
Definition: avf.h:421
static clib_error_t * avf_delete_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cli.c:83
static void unformat_free(unformat_input_t *i)
Definition: format.h:155
clib_error_t * error
Definition: avf.h:343
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
static clib_error_t * avf_create_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cli.c:30
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:163