Merge branch 'stmmac-next'
Jose Abreu says: ==================== net: stmmac: Improvements for -next Improvements for -next. More info in commit logs. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
056ddc38e9
@ -43,6 +43,10 @@
|
||||
#define GMAC_ARP_ADDR 0x00000210
|
||||
#define GMAC_ADDR_HIGH(reg) (0x300 + reg * 8)
|
||||
#define GMAC_ADDR_LOW(reg) (0x304 + reg * 8)
|
||||
#define GMAC_L3L4_CTRL(reg) (0x900 + (reg) * 0x30)
|
||||
#define GMAC_L4_ADDR(reg) (0x904 + (reg) * 0x30)
|
||||
#define GMAC_L3_ADDR0(reg) (0x910 + (reg) * 0x30)
|
||||
#define GMAC_L3_ADDR1(reg) (0x914 + (reg) * 0x30)
|
||||
|
||||
/* RX Queues Routing */
|
||||
#define GMAC_RXQCTRL_AVCPQ_MASK GENMASK(2, 0)
|
||||
@ -67,6 +71,7 @@
|
||||
#define GMAC_PACKET_FILTER_PCF BIT(7)
|
||||
#define GMAC_PACKET_FILTER_HPF BIT(10)
|
||||
#define GMAC_PACKET_FILTER_VTFE BIT(16)
|
||||
#define GMAC_PACKET_FILTER_IPFE BIT(20)
|
||||
|
||||
#define GMAC_MAX_PERFECT_ADDRESSES 128
|
||||
|
||||
@ -202,6 +207,7 @@ enum power_event {
|
||||
#define GMAC_HW_FEAT_MIISEL BIT(0)
|
||||
|
||||
/* MAC HW features1 bitmap */
|
||||
#define GMAC_HW_FEAT_L3L4FNUM GENMASK(30, 27)
|
||||
#define GMAC_HW_HASH_TB_SZ GENMASK(25, 24)
|
||||
#define GMAC_HW_FEAT_AVSEL BIT(20)
|
||||
#define GMAC_HW_TSOEN BIT(18)
|
||||
@ -228,6 +234,21 @@ enum power_event {
|
||||
#define GMAC_HI_DCS_SHIFT 16
|
||||
#define GMAC_HI_REG_AE BIT(31)
|
||||
|
||||
/* L3/L4 Filters regs */
|
||||
#define GMAC_L4DPIM0 BIT(21)
|
||||
#define GMAC_L4DPM0 BIT(20)
|
||||
#define GMAC_L4SPIM0 BIT(19)
|
||||
#define GMAC_L4SPM0 BIT(18)
|
||||
#define GMAC_L4PEN0 BIT(16)
|
||||
#define GMAC_L3DAIM0 BIT(5)
|
||||
#define GMAC_L3DAM0 BIT(4)
|
||||
#define GMAC_L3SAIM0 BIT(3)
|
||||
#define GMAC_L3SAM0 BIT(2)
|
||||
#define GMAC_L3PEN0 BIT(0)
|
||||
#define GMAC_L4DP0 GENMASK(31, 16)
|
||||
#define GMAC_L4DP0_SHIFT 16
|
||||
#define GMAC_L4SP0 GENMASK(15, 0)
|
||||
|
||||
/* MTL registers */
|
||||
#define MTL_OPERATION_MODE 0x00000c00
|
||||
#define MTL_FRPE BIT(15)
|
||||
|
@ -733,7 +733,7 @@ static void dwmac4_set_mac_loopback(void __iomem *ioaddr, bool enable)
|
||||
}
|
||||
|
||||
static void dwmac4_update_vlan_hash(struct mac_device_info *hw, u32 hash,
|
||||
bool is_double)
|
||||
u16 perfect_match, bool is_double)
|
||||
{
|
||||
void __iomem *ioaddr = hw->pcsr;
|
||||
|
||||
@ -748,6 +748,16 @@ static void dwmac4_update_vlan_hash(struct mac_device_info *hw, u32 hash,
|
||||
}
|
||||
|
||||
writel(value, ioaddr + GMAC_VLAN_TAG);
|
||||
} else if (perfect_match) {
|
||||
u32 value = GMAC_VLAN_ETV;
|
||||
|
||||
if (is_double) {
|
||||
value |= GMAC_VLAN_EDVLP;
|
||||
value |= GMAC_VLAN_ESVL;
|
||||
value |= GMAC_VLAN_DOVLTC;
|
||||
}
|
||||
|
||||
writel(value | perfect_match, ioaddr + GMAC_VLAN_TAG);
|
||||
} else {
|
||||
u32 value = readl(ioaddr + GMAC_VLAN_TAG);
|
||||
|
||||
@ -799,6 +809,106 @@ static void dwmac4_set_arp_offload(struct mac_device_info *hw, bool en,
|
||||
writel(value, ioaddr + GMAC_CONFIG);
|
||||
}
|
||||
|
||||
static int dwmac4_config_l3_filter(struct mac_device_info *hw, u32 filter_no,
|
||||
bool en, bool ipv6, bool sa, bool inv,
|
||||
u32 match)
|
||||
{
|
||||
void __iomem *ioaddr = hw->pcsr;
|
||||
u32 value;
|
||||
|
||||
value = readl(ioaddr + GMAC_PACKET_FILTER);
|
||||
value |= GMAC_PACKET_FILTER_IPFE;
|
||||
writel(value, ioaddr + GMAC_PACKET_FILTER);
|
||||
|
||||
value = readl(ioaddr + GMAC_L3L4_CTRL(filter_no));
|
||||
|
||||
/* For IPv6 not both SA/DA filters can be active */
|
||||
if (ipv6) {
|
||||
value |= GMAC_L3PEN0;
|
||||
value &= ~(GMAC_L3SAM0 | GMAC_L3SAIM0);
|
||||
value &= ~(GMAC_L3DAM0 | GMAC_L3DAIM0);
|
||||
if (sa) {
|
||||
value |= GMAC_L3SAM0;
|
||||
if (inv)
|
||||
value |= GMAC_L3SAIM0;
|
||||
} else {
|
||||
value |= GMAC_L3DAM0;
|
||||
if (inv)
|
||||
value |= GMAC_L3DAIM0;
|
||||
}
|
||||
} else {
|
||||
value &= ~GMAC_L3PEN0;
|
||||
if (sa) {
|
||||
value |= GMAC_L3SAM0;
|
||||
if (inv)
|
||||
value |= GMAC_L3SAIM0;
|
||||
} else {
|
||||
value |= GMAC_L3DAM0;
|
||||
if (inv)
|
||||
value |= GMAC_L3DAIM0;
|
||||
}
|
||||
}
|
||||
|
||||
writel(value, ioaddr + GMAC_L3L4_CTRL(filter_no));
|
||||
|
||||
if (sa) {
|
||||
writel(match, ioaddr + GMAC_L3_ADDR0(filter_no));
|
||||
} else {
|
||||
writel(match, ioaddr + GMAC_L3_ADDR1(filter_no));
|
||||
}
|
||||
|
||||
if (!en)
|
||||
writel(0, ioaddr + GMAC_L3L4_CTRL(filter_no));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int dwmac4_config_l4_filter(struct mac_device_info *hw, u32 filter_no,
|
||||
bool en, bool udp, bool sa, bool inv,
|
||||
u32 match)
|
||||
{
|
||||
void __iomem *ioaddr = hw->pcsr;
|
||||
u32 value;
|
||||
|
||||
value = readl(ioaddr + GMAC_PACKET_FILTER);
|
||||
value |= GMAC_PACKET_FILTER_IPFE;
|
||||
writel(value, ioaddr + GMAC_PACKET_FILTER);
|
||||
|
||||
value = readl(ioaddr + GMAC_L3L4_CTRL(filter_no));
|
||||
if (udp) {
|
||||
value |= GMAC_L4PEN0;
|
||||
} else {
|
||||
value &= ~GMAC_L4PEN0;
|
||||
}
|
||||
|
||||
value &= ~(GMAC_L4SPM0 | GMAC_L4SPIM0);
|
||||
value &= ~(GMAC_L4DPM0 | GMAC_L4DPIM0);
|
||||
if (sa) {
|
||||
value |= GMAC_L4SPM0;
|
||||
if (inv)
|
||||
value |= GMAC_L4SPIM0;
|
||||
} else {
|
||||
value |= GMAC_L4DPM0;
|
||||
if (inv)
|
||||
value |= GMAC_L4DPIM0;
|
||||
}
|
||||
|
||||
writel(value, ioaddr + GMAC_L3L4_CTRL(filter_no));
|
||||
|
||||
if (sa) {
|
||||
value = match & GMAC_L4SP0;
|
||||
} else {
|
||||
value = (match << GMAC_L4DP0_SHIFT) & GMAC_L4DP0;
|
||||
}
|
||||
|
||||
writel(value, ioaddr + GMAC_L4_ADDR(filter_no));
|
||||
|
||||
if (!en)
|
||||
writel(0, ioaddr + GMAC_L3L4_CTRL(filter_no));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct stmmac_ops dwmac4_ops = {
|
||||
.core_init = dwmac4_core_init,
|
||||
.set_mac = stmmac_set_mac,
|
||||
@ -833,6 +943,8 @@ const struct stmmac_ops dwmac4_ops = {
|
||||
.sarc_configure = dwmac4_sarc_configure,
|
||||
.enable_vlan = dwmac4_enable_vlan,
|
||||
.set_arp_offload = dwmac4_set_arp_offload,
|
||||
.config_l3_filter = dwmac4_config_l3_filter,
|
||||
.config_l4_filter = dwmac4_config_l4_filter,
|
||||
};
|
||||
|
||||
const struct stmmac_ops dwmac410_ops = {
|
||||
@ -869,6 +981,8 @@ const struct stmmac_ops dwmac410_ops = {
|
||||
.sarc_configure = dwmac4_sarc_configure,
|
||||
.enable_vlan = dwmac4_enable_vlan,
|
||||
.set_arp_offload = dwmac4_set_arp_offload,
|
||||
.config_l3_filter = dwmac4_config_l3_filter,
|
||||
.config_l4_filter = dwmac4_config_l4_filter,
|
||||
};
|
||||
|
||||
const struct stmmac_ops dwmac510_ops = {
|
||||
@ -910,6 +1024,8 @@ const struct stmmac_ops dwmac510_ops = {
|
||||
.sarc_configure = dwmac4_sarc_configure,
|
||||
.enable_vlan = dwmac4_enable_vlan,
|
||||
.set_arp_offload = dwmac4_set_arp_offload,
|
||||
.config_l3_filter = dwmac4_config_l3_filter,
|
||||
.config_l4_filter = dwmac4_config_l4_filter,
|
||||
};
|
||||
|
||||
int dwmac4_setup(struct stmmac_priv *priv)
|
||||
|
@ -364,6 +364,7 @@ static void dwmac4_get_hw_feature(void __iomem *ioaddr,
|
||||
|
||||
/* MAC HW feature1 */
|
||||
hw_cap = readl(ioaddr + GMAC_HW_FEATURE1);
|
||||
dma_cap->l3l4fnum = (hw_cap & GMAC_HW_FEAT_L3L4FNUM) >> 27;
|
||||
dma_cap->hash_tb_sz = (hw_cap & GMAC_HW_HASH_TB_SZ) >> 24;
|
||||
dma_cap->av = (hw_cap & GMAC_HW_FEAT_AVSEL) >> 20;
|
||||
dma_cap->tsoen = (hw_cap & GMAC_HW_TSOEN) >> 18;
|
||||
|
@ -555,7 +555,7 @@ static int dwxgmac2_rss_configure(struct mac_device_info *hw,
|
||||
}
|
||||
|
||||
static void dwxgmac2_update_vlan_hash(struct mac_device_info *hw, u32 hash,
|
||||
bool is_double)
|
||||
u16 perfect_match, bool is_double)
|
||||
{
|
||||
void __iomem *ioaddr = hw->pcsr;
|
||||
|
||||
@ -576,6 +576,21 @@ static void dwxgmac2_update_vlan_hash(struct mac_device_info *hw, u32 hash,
|
||||
}
|
||||
|
||||
writel(value, ioaddr + XGMAC_VLAN_TAG);
|
||||
} else if (perfect_match) {
|
||||
u32 value = readl(ioaddr + XGMAC_PACKET_FILTER);
|
||||
|
||||
value |= XGMAC_FILTER_VTFE;
|
||||
|
||||
writel(value, ioaddr + XGMAC_PACKET_FILTER);
|
||||
|
||||
value = XGMAC_VLAN_ETV;
|
||||
if (is_double) {
|
||||
value |= XGMAC_VLAN_EDVLP;
|
||||
value |= XGMAC_VLAN_ESVL;
|
||||
value |= XGMAC_VLAN_DOVLTC;
|
||||
}
|
||||
|
||||
writel(value | perfect_match, ioaddr + XGMAC_VLAN_TAG);
|
||||
} else {
|
||||
u32 value = readl(ioaddr + XGMAC_PACKET_FILTER);
|
||||
|
||||
|
@ -357,7 +357,7 @@ struct stmmac_ops {
|
||||
struct stmmac_rss *cfg, u32 num_rxq);
|
||||
/* VLAN */
|
||||
void (*update_vlan_hash)(struct mac_device_info *hw, u32 hash,
|
||||
bool is_double);
|
||||
u16 perfect_match, bool is_double);
|
||||
void (*enable_vlan)(struct mac_device_info *hw, u32 type);
|
||||
/* TX Timestamp */
|
||||
int (*get_mac_tx_timestamp)(struct mac_device_info *hw, u64 *ts);
|
||||
|
@ -4207,15 +4207,25 @@ static u32 stmmac_vid_crc32_le(__le16 vid_le)
|
||||
static int stmmac_vlan_update(struct stmmac_priv *priv, bool is_double)
|
||||
{
|
||||
u32 crc, hash = 0;
|
||||
u16 vid;
|
||||
int count = 0;
|
||||
u16 vid = 0;
|
||||
|
||||
for_each_set_bit(vid, priv->active_vlans, VLAN_N_VID) {
|
||||
__le16 vid_le = cpu_to_le16(vid);
|
||||
crc = bitrev32(~stmmac_vid_crc32_le(vid_le)) >> 28;
|
||||
hash |= (1 << crc);
|
||||
count++;
|
||||
}
|
||||
|
||||
return stmmac_update_vlan_hash(priv, priv->hw, hash, is_double);
|
||||
if (!priv->dma_cap.vlhash) {
|
||||
if (count > 2) /* VID = 0 always passes filter */
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
vid = cpu_to_le16(vid);
|
||||
hash = 0;
|
||||
}
|
||||
|
||||
return stmmac_update_vlan_hash(priv, priv->hw, hash, vid, is_double);
|
||||
}
|
||||
|
||||
static int stmmac_vlan_rx_add_vid(struct net_device *ndev, __be16 proto, u16 vid)
|
||||
@ -4224,8 +4234,6 @@ static int stmmac_vlan_rx_add_vid(struct net_device *ndev, __be16 proto, u16 vid
|
||||
bool is_double = false;
|
||||
int ret;
|
||||
|
||||
if (!priv->dma_cap.vlhash)
|
||||
return -EOPNOTSUPP;
|
||||
if (be16_to_cpu(proto) == ETH_P_8021AD)
|
||||
is_double = true;
|
||||
|
||||
@ -4244,8 +4252,6 @@ static int stmmac_vlan_rx_kill_vid(struct net_device *ndev, __be16 proto, u16 vi
|
||||
struct stmmac_priv *priv = netdev_priv(ndev);
|
||||
bool is_double = false;
|
||||
|
||||
if (!priv->dma_cap.vlhash)
|
||||
return -EOPNOTSUPP;
|
||||
if (be16_to_cpu(proto) == ETH_P_8021AD)
|
||||
is_double = true;
|
||||
|
||||
|
@ -816,16 +816,13 @@ out:
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stmmac_test_vlanfilt(struct stmmac_priv *priv)
|
||||
static int __stmmac_test_vlanfilt(struct stmmac_priv *priv)
|
||||
{
|
||||
struct stmmac_packet_attrs attr = { };
|
||||
struct stmmac_test_priv *tpriv;
|
||||
struct sk_buff *skb = NULL;
|
||||
int ret = 0, i;
|
||||
|
||||
if (!priv->dma_cap.vlhash)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
tpriv = kzalloc(sizeof(*tpriv), GFP_KERNEL);
|
||||
if (!tpriv)
|
||||
return -ENOMEM;
|
||||
@ -891,16 +888,32 @@ cleanup:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int stmmac_test_dvlanfilt(struct stmmac_priv *priv)
|
||||
static int stmmac_test_vlanfilt(struct stmmac_priv *priv)
|
||||
{
|
||||
if (!priv->dma_cap.vlhash)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
return __stmmac_test_vlanfilt(priv);
|
||||
}
|
||||
|
||||
static int stmmac_test_vlanfilt_perfect(struct stmmac_priv *priv)
|
||||
{
|
||||
int ret, prev_cap = priv->dma_cap.vlhash;
|
||||
|
||||
priv->dma_cap.vlhash = 0;
|
||||
ret = __stmmac_test_vlanfilt(priv);
|
||||
priv->dma_cap.vlhash = prev_cap;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int __stmmac_test_dvlanfilt(struct stmmac_priv *priv)
|
||||
{
|
||||
struct stmmac_packet_attrs attr = { };
|
||||
struct stmmac_test_priv *tpriv;
|
||||
struct sk_buff *skb = NULL;
|
||||
int ret = 0, i;
|
||||
|
||||
if (!priv->dma_cap.vlhash)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
tpriv = kzalloc(sizeof(*tpriv), GFP_KERNEL);
|
||||
if (!tpriv)
|
||||
return -ENOMEM;
|
||||
@ -967,6 +980,25 @@ cleanup:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int stmmac_test_dvlanfilt(struct stmmac_priv *priv)
|
||||
{
|
||||
if (!priv->dma_cap.vlhash)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
return __stmmac_test_dvlanfilt(priv);
|
||||
}
|
||||
|
||||
static int stmmac_test_dvlanfilt_perfect(struct stmmac_priv *priv)
|
||||
{
|
||||
int ret, prev_cap = priv->dma_cap.vlhash;
|
||||
|
||||
priv->dma_cap.vlhash = 0;
|
||||
ret = __stmmac_test_dvlanfilt(priv);
|
||||
priv->dma_cap.vlhash = prev_cap;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_NET_CLS_ACT
|
||||
static int stmmac_test_rxp(struct stmmac_priv *priv)
|
||||
{
|
||||
@ -1641,119 +1673,127 @@ static const struct stmmac_test {
|
||||
int (*fn)(struct stmmac_priv *priv);
|
||||
} stmmac_selftests[] = {
|
||||
{
|
||||
.name = "MAC Loopback ",
|
||||
.name = "MAC Loopback ",
|
||||
.lb = STMMAC_LOOPBACK_MAC,
|
||||
.fn = stmmac_test_mac_loopback,
|
||||
}, {
|
||||
.name = "PHY Loopback ",
|
||||
.name = "PHY Loopback ",
|
||||
.lb = STMMAC_LOOPBACK_NONE, /* Test will handle it */
|
||||
.fn = stmmac_test_phy_loopback,
|
||||
}, {
|
||||
.name = "MMC Counters ",
|
||||
.name = "MMC Counters ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_mmc,
|
||||
}, {
|
||||
.name = "EEE ",
|
||||
.name = "EEE ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_eee,
|
||||
}, {
|
||||
.name = "Hash Filter MC ",
|
||||
.name = "Hash Filter MC ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_hfilt,
|
||||
}, {
|
||||
.name = "Perfect Filter UC ",
|
||||
.name = "Perfect Filter UC ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_pfilt,
|
||||
}, {
|
||||
.name = "MC Filter ",
|
||||
.name = "MC Filter ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_mcfilt,
|
||||
}, {
|
||||
.name = "UC Filter ",
|
||||
.name = "UC Filter ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_ucfilt,
|
||||
}, {
|
||||
.name = "Flow Control ",
|
||||
.name = "Flow Control ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_flowctrl,
|
||||
}, {
|
||||
.name = "RSS ",
|
||||
.name = "RSS ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_rss,
|
||||
}, {
|
||||
.name = "VLAN Filtering ",
|
||||
.name = "VLAN Filtering ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_vlanfilt,
|
||||
}, {
|
||||
.name = "Double VLAN Filtering",
|
||||
.name = "VLAN Filtering (perf) ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_vlanfilt_perfect,
|
||||
}, {
|
||||
.name = "Double VLAN Filter ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_dvlanfilt,
|
||||
}, {
|
||||
.name = "Flexible RX Parser ",
|
||||
.name = "Double VLAN Filter (perf) ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_dvlanfilt_perfect,
|
||||
}, {
|
||||
.name = "Flexible RX Parser ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_rxp,
|
||||
}, {
|
||||
.name = "SA Insertion (desc) ",
|
||||
.name = "SA Insertion (desc) ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_desc_sai,
|
||||
}, {
|
||||
.name = "SA Replacement (desc)",
|
||||
.name = "SA Replacement (desc) ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_desc_sar,
|
||||
}, {
|
||||
.name = "SA Insertion (reg) ",
|
||||
.name = "SA Insertion (reg) ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_reg_sai,
|
||||
}, {
|
||||
.name = "SA Replacement (reg)",
|
||||
.name = "SA Replacement (reg) ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_reg_sar,
|
||||
}, {
|
||||
.name = "VLAN TX Insertion ",
|
||||
.name = "VLAN TX Insertion ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_vlanoff,
|
||||
}, {
|
||||
.name = "SVLAN TX Insertion ",
|
||||
.name = "SVLAN TX Insertion ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_svlanoff,
|
||||
}, {
|
||||
.name = "L3 DA Filtering ",
|
||||
.name = "L3 DA Filtering ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_l3filt_da,
|
||||
}, {
|
||||
.name = "L3 SA Filtering ",
|
||||
.name = "L3 SA Filtering ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_l3filt_sa,
|
||||
}, {
|
||||
.name = "L4 DA TCP Filtering ",
|
||||
.name = "L4 DA TCP Filtering ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_l4filt_da_tcp,
|
||||
}, {
|
||||
.name = "L4 SA TCP Filtering ",
|
||||
.name = "L4 SA TCP Filtering ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_l4filt_sa_tcp,
|
||||
}, {
|
||||
.name = "L4 DA UDP Filtering ",
|
||||
.name = "L4 DA UDP Filtering ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_l4filt_da_udp,
|
||||
}, {
|
||||
.name = "L4 SA UDP Filtering ",
|
||||
.name = "L4 SA UDP Filtering ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_l4filt_sa_udp,
|
||||
}, {
|
||||
.name = "ARP Offload ",
|
||||
.name = "ARP Offload ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_arpoffload,
|
||||
}, {
|
||||
.name = "Jumbo Frame ",
|
||||
.name = "Jumbo Frame ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_jumbo,
|
||||
}, {
|
||||
.name = "Multichannel Jumbo ",
|
||||
.name = "Multichannel Jumbo ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_mjumbo,
|
||||
}, {
|
||||
.name = "Split Header ",
|
||||
.name = "Split Header ",
|
||||
.lb = STMMAC_LOOPBACK_PHY,
|
||||
.fn = stmmac_test_sph,
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user