2 * Copyright 2015 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
6 * Ethernet Switch commands
12 #define ETHSW_MAX_CMD_PARAMS 20
13 #define ETHSW_CMD_PORT_ALL -1
14 #define ETHSW_CMD_VLAN_ALL -1
15 #define ETHSW_CMD_AGGR_GRP_NONE -1
17 /* IDs used to track keywords in a command */
18 enum ethsw_keyword_id {
19 ethsw_id_key_end = -1,
46 ethsw_id_count, /* keep last */
49 enum ethsw_keyword_opt_id {
50 ethsw_id_port_no = ethsw_id_count + 1,
56 ethsw_id_count_all, /* keep last */
59 struct ethsw_command_def {
60 int cmd_to_keywords[ETHSW_MAX_CMD_PARAMS];
66 int (*cmd_function)(struct ethsw_command_def *parsed_cmd);
69 /* Structure to be created and initialized by an Ethernet Switch driver */
70 struct ethsw_command_func {
71 const char *ethsw_name;
72 int (*port_enable)(struct ethsw_command_def *parsed_cmd);
73 int (*port_disable)(struct ethsw_command_def *parsed_cmd);
74 int (*port_show)(struct ethsw_command_def *parsed_cmd);
75 int (*port_stats)(struct ethsw_command_def *parsed_cmd);
76 int (*port_stats_clear)(struct ethsw_command_def *parsed_cmd);
77 int (*port_learn)(struct ethsw_command_def *parsed_cmd);
78 int (*port_learn_show)(struct ethsw_command_def *parsed_cmd);
79 int (*fdb_show)(struct ethsw_command_def *parsed_cmd);
80 int (*fdb_flush)(struct ethsw_command_def *parsed_cmd);
81 int (*fdb_entry_add)(struct ethsw_command_def *parsed_cmd);
82 int (*fdb_entry_del)(struct ethsw_command_def *parsed_cmd);
83 int (*pvid_show)(struct ethsw_command_def *parsed_cmd);
84 int (*pvid_set)(struct ethsw_command_def *parsed_cmd);
85 int (*vlan_show)(struct ethsw_command_def *parsed_cmd);
86 int (*vlan_set)(struct ethsw_command_def *parsed_cmd);
87 int (*port_untag_show)(struct ethsw_command_def *parsed_cmd);
88 int (*port_untag_set)(struct ethsw_command_def *parsed_cmd);
89 int (*port_egr_vlan_show)(struct ethsw_command_def *parsed_cmd);
90 int (*port_egr_vlan_set)(struct ethsw_command_def *parsed_cmd);
91 int (*vlan_learn_show)(struct ethsw_command_def *parsed_cmd);
92 int (*vlan_learn_set)(struct ethsw_command_def *parsed_cmd);
93 int (*port_ingr_filt_show)(struct ethsw_command_def *parsed_cmd);
94 int (*port_ingr_filt_set)(struct ethsw_command_def *parsed_cmd);
95 int (*port_aggr_show)(struct ethsw_command_def *parsed_cmd);
96 int (*port_aggr_set)(struct ethsw_command_def *parsed_cmd);
99 int ethsw_define_functions(const struct ethsw_command_func *cmd_func);
101 #endif /* _CMD_ETHSW_H_ */