generic: rtl8366: add debugfs file for VLAN4K table
[openwrt/svn-archive/archive.git] / target / linux / generic / files / drivers / net / phy / rtl8366_smi.h
index 66448e6092ec82b6c302541684e0908614e15e82..12768a4455a7d7008ff75c896f35dad237c2bff0 100644 (file)
@@ -45,10 +45,14 @@ struct rtl8366_smi {
 
        struct rtl8366_smi_ops  *ops;
 
+       int                     vlan_enabled;
+       int                     vlan4k_enabled;
+
        char                    buf[4096];
 #ifdef CONFIG_RTL8366S_PHY_DEBUG_FS
        struct dentry           *debugfs_root;
        u16                     dbg_reg;
+       u8                      dbg_vlan_4k_page;
 #endif
 };
 
@@ -87,6 +91,8 @@ struct rtl8366_smi_ops {
        int     (*get_mib_counter)(struct rtl8366_smi *smi, int counter,
                                   int port, unsigned long long *val);
        int     (*is_vlan_valid)(struct rtl8366_smi *smi, unsigned vlan);
+       int     (*enable_vlan)(struct rtl8366_smi *smi, int enable);
+       int     (*enable_vlan4k)(struct rtl8366_smi *smi, int enable);
 };
 
 struct rtl8366_smi *rtl8366_smi_alloc(struct device *parent);
@@ -96,8 +102,6 @@ int rtl8366_smi_write_reg(struct rtl8366_smi *smi, u32 addr, u32 data);
 int rtl8366_smi_read_reg(struct rtl8366_smi *smi, u32 addr, u32 *data);
 int rtl8366_smi_rmwr(struct rtl8366_smi *smi, u32 addr, u32 mask, u32 data);
 
-int rtl8366_set_vlan(struct rtl8366_smi *smi, int vid, u32 member, u32 untag,
-                    u32 fid);
 int rtl8366_reset_vlan(struct rtl8366_smi *smi);
 
 #ifdef CONFIG_RTL8366S_PHY_DEBUG_FS
@@ -117,7 +121,19 @@ int rtl8366_sw_get_port_mib(struct switch_dev *dev,
 int rtl8366_sw_get_vlan_info(struct switch_dev *dev,
                             const struct switch_attr *attr,
                             struct switch_val *val);
+int rtl8366_sw_get_vlan_fid(struct switch_dev *dev,
+                            const struct switch_attr *attr,
+                            struct switch_val *val);
+int rtl8366_sw_set_vlan_fid(struct switch_dev *dev,
+                            const struct switch_attr *attr,
+                            struct switch_val *val);
 int rtl8366_sw_get_vlan_ports(struct switch_dev *dev, struct switch_val *val);
 int rtl8366_sw_set_vlan_ports(struct switch_dev *dev, struct switch_val *val);
+int rtl8366_sw_get_vlan_enable(struct switch_dev *dev,
+                              const struct switch_attr *attr,
+                              struct switch_val *val);
+int rtl8366_sw_set_vlan_enable(struct switch_dev *dev,
+                              const struct switch_attr *attr,
+                              struct switch_val *val);
 
 #endif /*  _RTL8366_SMI_H */