session: remove ipv6 lookup threading assert
[vpp.git] / src / plugins / marvell / pp2 / 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 <vnet/ethernet/ethernet.h>
25
26 #include <marvell/pp2/pp2.h>
27
28 static clib_error_t *
29 mrvl_pp2_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
30                             vlib_cli_command_t * cmd)
31 {
32   unformat_input_t _line_input, *line_input = &_line_input;
33   mrvl_pp2_create_if_args_t args = { 0 };
34   unsigned int val;
35
36   /* Get a line of input. */
37   if (!unformat_user (input, unformat_line_input, line_input))
38     return 0;
39
40   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
41     {
42       if (unformat (line_input, "name %s", &args.name))
43         ;
44       else if (unformat (line_input, "rx-queue-size %u", &val))
45         args.rx_q_sz = val;
46       else if (unformat (line_input, "tx-queue-size %u", &val))
47         args.tx_q_sz = val;
48       else
49         return clib_error_return (0, "unknown input `%U'",
50                                   format_unformat_error, input);
51     }
52   unformat_free (line_input);
53
54
55   mrvl_pp2_create_if (&args);
56
57   vec_free (args.name);
58
59   return args.error;
60 }
61
62 VLIB_CLI_COMMAND (mrvl_pp2_create_command, static) = {
63   .path = "create interface marvell pp2",
64   .short_help = "create interface marvell pp2 [name <ifname>] [rx-queue-size slots] [tx-queue-size slots]",
65   .function = mrvl_pp2_create_command_fn,
66 };
67
68 static clib_error_t *
69 mrvl_pp2_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
70                             vlib_cli_command_t * cmd)
71 {
72   unformat_input_t _line_input, *line_input = &_line_input;
73   u32 sw_if_index = ~0;
74   vnet_hw_interface_t *hw;
75   mrvl_pp2_main_t *mm = &mrvl_pp2_main;
76   mrvl_pp2_if_t *dif;
77   vnet_main_t *vnm = vnet_get_main ();
78
79   /* Get a line of input. */
80   if (!unformat_user (input, unformat_line_input, line_input))
81     return 0;
82
83   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
84     {
85       if (unformat (line_input, "sw_if_index %d", &sw_if_index))
86         ;
87       else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
88                          vnm, &sw_if_index))
89         ;
90       else
91         return clib_error_return (0, "unknown input `%U'",
92                                   format_unformat_error, input);
93     }
94   unformat_free (line_input);
95
96   if (sw_if_index == ~0)
97     return clib_error_return (0,
98                               "please specify interface name or sw_if_index");
99
100   hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index);
101   if (hw == NULL || mrvl_pp2_device_class.index != hw->dev_class_index)
102     return clib_error_return (0, "not a Marvell PP2 interface");
103
104   dif = pool_elt_at_index (mm->interfaces, hw->dev_instance);
105
106   mrvl_pp2_delete_if (dif);
107
108   return 0;
109 }
110
111 VLIB_CLI_COMMAND (mrvl_pp2_delete_command, static) = {
112   .path = "delete interface marvell pp2",
113   .short_help = "delete interface marvell pp2 "
114     "{<interface> | sw_if_index <sw_idx>}",
115   .function = mrvl_pp2_delete_command_fn,
116 };
117
118 clib_error_t *
119 mrvl_pp2_cli_init (vlib_main_t * vm)
120 {
121   /* initialize binary API */
122   mrvl_pp2_plugin_api_hookup (vm);
123
124   return 0;
125 }
126
127 VLIB_INIT_FUNCTION (mrvl_pp2_cli_init);
128
129 /*
130  * fd.io coding-style-patch-verification: ON
131  *
132  * Local Variables:
133  * eval: (c-set-style "gnu")
134  * End:
135  */