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