From: Jose Abreu <Jose.Abreu@synopsys.com> To: linux-kernel@vger.kernel.org, netdev@vger.kernel.org Cc: Jose Abreu <Jose.Abreu@synopsys.com>, Joao Pinto <Joao.Pinto@synopsys.com>, "David S . Miller" <davem@davemloft.net>, Giuseppe Cavallaro <peppe.cavallaro@st.com>, Alexandre Torgue <alexandre.torgue@st.com> Subject: [PATCH net-next v2 03/18] net: stmmac: dwmac1000: Add MAC loopback support Date: Fri, 24 May 2019 10:20:11 +0200 [thread overview] Message-ID: <c6cd496175260f6188051979992598b3e4906ac4.1558685827.git.joabreu@synopsys.com> (raw) In-Reply-To: <cover.1558685827.git.joabreu@synopsys.com> In-Reply-To: <cover.1558685827.git.joabreu@synopsys.com> In preparation for the addition of stmmac selftests we implement the MAC loopback callback in dwmac1000 core. Signed-off-by: Jose Abreu <joabreu@synopsys.com> Cc: Joao Pinto <jpinto@synopsys.com> Cc: David S. Miller <davem@davemloft.net> Cc: Giuseppe Cavallaro <peppe.cavallaro@st.com> Cc: Alexandre Torgue <alexandre.torgue@st.com> --- drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c b/drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c index 0877bde6e860..398303c783f4 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c @@ -499,6 +499,18 @@ static void dwmac1000_debug(void __iomem *ioaddr, struct stmmac_extra_stats *x, x->mac_gmii_rx_proto_engine++; } +static void dwmac1000_set_mac_loopback(void __iomem *ioaddr, bool enable) +{ + u32 value = readl(ioaddr + GMAC_CONTROL); + + if (enable) + value |= GMAC_CONTROL_LM; + else + value &= ~GMAC_CONTROL_LM; + + writel(value, ioaddr + GMAC_CONTROL); +} + const struct stmmac_ops dwmac1000_ops = { .core_init = dwmac1000_core_init, .set_mac = stmmac_set_mac, @@ -518,6 +530,7 @@ const struct stmmac_ops dwmac1000_ops = { .pcs_ctrl_ane = dwmac1000_ctrl_ane, .pcs_rane = dwmac1000_rane, .pcs_get_adv_lp = dwmac1000_get_adv_lp, + .set_mac_loopback = dwmac1000_set_mac_loopback, }; int dwmac1000_setup(struct stmmac_priv *priv) -- 2.7.4
next prev parent reply other threads:[~2019-05-24 8:20 UTC|newest] Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-05-24 8:20 [PATCH net-next v2 00/18] net: stmmac: Improvements and Selftests Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 01/18] net: stmmac: Add MAC loopback callback to HWIF Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 02/18] net: stmmac: dwmac100: Add MAC loopback support Jose Abreu 2019-05-24 8:20 ` Jose Abreu [this message] 2019-05-24 8:20 ` [PATCH net-next v2 04/18] net: stmmac: dwmac4/5: " Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 05/18] net: stmmac: dwxgmac2: " Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 06/18] net: ethernet: stmmac: dwmac-sun8i: Enable control of loopback Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 07/18] net: stmmac: Switch MMC functions to HWIF callbacks Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 08/18] net: stmmac: dwmac1000: Also pass control frames while in promisc mode Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 09/18] net: stmmac: dwmac4/5: " Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 10/18] net: stmmac: dwxgmac2: " Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 11/18] net: stmmac: Introduce selftests support Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 12/18] net: stmmac: dwmac1000: Fix Hash Filter Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 13/18] net: stmmac: dwmac1000: Clear unused address entries Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 14/18] net: stmmac: dwmac4/5: Fix Hash Filter Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 15/18] net: stmmac: dwmac4/5: Do not disable whole RX in dma_stop_rx() Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 16/18] net: stmmac: dwxgmac2: " Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 17/18] net: stmmac: dwmac4/5: Clear unused address entries Jose Abreu 2019-05-24 8:20 ` [PATCH net-next v2 18/18] net: stmmac: Prevent missing interrupts when running NAPI Jose Abreu 2019-05-24 20:46 ` [PATCH net-next v2 00/18] net: stmmac: Improvements and Selftests David Miller
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=c6cd496175260f6188051979992598b3e4906ac4.1558685827.git.joabreu@synopsys.com \ --to=jose.abreu@synopsys.com \ --cc=Joao.Pinto@synopsys.com \ --cc=alexandre.torgue@st.com \ --cc=davem@davemloft.net \ --cc=linux-kernel@vger.kernel.org \ --cc=netdev@vger.kernel.org \ --cc=peppe.cavallaro@st.com \ --subject='Re: [PATCH net-next v2 03/18] net: stmmac: dwmac1000: Add MAC loopback support' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.