blob: 6d2f0de61ec500303cfed7d65c06d93fb4b2e821 [file] [log] [blame]
Codrin Ciubotariubfafe5c2015-07-24 16:55:27 +03001/*
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 */
16enum 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,
Codrin Ciubotariuc0034732015-07-24 16:55:29 +030023 ethsw_id_statistics,
24 ethsw_id_clear,
Codrin Ciubotariu2d1607f2015-07-24 16:55:30 +030025 ethsw_id_learning,
26 ethsw_id_auto,
Codrin Ciubotariubfafe5c2015-07-24 16:55:27 +030027 ethsw_id_count, /* keep last */
28};
29
30enum ethsw_keyword_opt_id {
31 ethsw_id_port_no = ethsw_id_count + 1,
32 ethsw_id_count_all, /* keep last */
33};
34
35struct ethsw_command_def {
36 int cmd_to_keywords[ETHSW_MAX_CMD_PARAMS];
37 int cmd_keywords_nr;
38 int port;
39 int (*cmd_function)(struct ethsw_command_def *parsed_cmd);
40};
41
42/* Structure to be created and initialized by an Ethernet Switch driver */
43struct ethsw_command_func {
44 const char *ethsw_name;
45 int (*port_enable)(struct ethsw_command_def *parsed_cmd);
46 int (*port_disable)(struct ethsw_command_def *parsed_cmd);
47 int (*port_show)(struct ethsw_command_def *parsed_cmd);
Codrin Ciubotariuc0034732015-07-24 16:55:29 +030048 int (*port_stats)(struct ethsw_command_def *parsed_cmd);
49 int (*port_stats_clear)(struct ethsw_command_def *parsed_cmd);
Codrin Ciubotariu2d1607f2015-07-24 16:55:30 +030050 int (*port_learn)(struct ethsw_command_def *parsed_cmd);
51 int (*port_learn_show)(struct ethsw_command_def *parsed_cmd);
Codrin Ciubotariubfafe5c2015-07-24 16:55:27 +030052};
53
54int ethsw_define_functions(const struct ethsw_command_func *cmd_func);
55
56#endif /* _CMD_ETHSW_H_ */