Enable console log from earlyconsole in Linux bootargs
[oweals/u-boot.git] / include / ethsw.h
index cc9708e9ac4c75e88d9d91b3b517215d7bc6a884..2d3c12a39e6d9f7909c47e4fcc95de0db06ad926 100644 (file)
@@ -37,6 +37,10 @@ enum ethsw_keyword_id {
        ethsw_id_egress,
        ethsw_id_tag,
        ethsw_id_classified,
+       ethsw_id_shared,
+       ethsw_id_private,
+       ethsw_id_ingress,
+       ethsw_id_filtering,
        ethsw_id_count, /* keep last */
 };
 
@@ -80,6 +84,10 @@ struct ethsw_command_func {
        int (*port_untag_set)(struct ethsw_command_def *parsed_cmd);
        int (*port_egr_vlan_show)(struct ethsw_command_def *parsed_cmd);
        int (*port_egr_vlan_set)(struct ethsw_command_def *parsed_cmd);
+       int (*vlan_learn_show)(struct ethsw_command_def *parsed_cmd);
+       int (*vlan_learn_set)(struct ethsw_command_def *parsed_cmd);
+       int (*port_ingr_filt_show)(struct ethsw_command_def *parsed_cmd);
+       int (*port_ingr_filt_set)(struct ethsw_command_def *parsed_cmd);
 };
 
 int ethsw_define_functions(const struct ethsw_command_func *cmd_func);