1 /* 2 * Copyright 2015 Freescale Semiconductor, Inc. 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 * 6 * Ethernet Switch commands 7 */ 8 9 #ifndef _CMD_ETHSW_H_ 10 #define _CMD_ETHSW_H_ 11 12 #define ETHSW_MAX_CMD_PARAMS 20 13 #define ETHSW_CMD_PORT_ALL -1 14 15 /* IDs used to track keywords in a command */ 16 enum ethsw_keyword_id { 17 ethsw_id_key_end = -1, 18 ethsw_id_help, 19 ethsw_id_show, 20 ethsw_id_port, 21 ethsw_id_enable, 22 ethsw_id_disable, 23 ethsw_id_count, /* keep last */ 24 }; 25 26 enum ethsw_keyword_opt_id { 27 ethsw_id_port_no = ethsw_id_count + 1, 28 ethsw_id_count_all, /* keep last */ 29 }; 30 31 struct ethsw_command_def { 32 int cmd_to_keywords[ETHSW_MAX_CMD_PARAMS]; 33 int cmd_keywords_nr; 34 int port; 35 int (*cmd_function)(struct ethsw_command_def *parsed_cmd); 36 }; 37 38 /* Structure to be created and initialized by an Ethernet Switch driver */ 39 struct ethsw_command_func { 40 const char *ethsw_name; 41 int (*port_enable)(struct ethsw_command_def *parsed_cmd); 42 int (*port_disable)(struct ethsw_command_def *parsed_cmd); 43 int (*port_show)(struct ethsw_command_def *parsed_cmd); 44 }; 45 46 int ethsw_define_functions(const struct ethsw_command_func *cmd_func); 47 48 #endif /* _CMD_ETHSW_H_ */ 49