]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
net: stmmac: add support for independent DMA pbl for tx/rx
authorNiklas Cassel <niklas.cassel@axis.com>
Wed, 7 Dec 2016 14:20:07 +0000 (15:20 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 8 Dec 2016 18:07:10 +0000 (13:07 -0500)
GMAC and newer supports independent programmable burst lengths for
DMA tx/rx. Add new optional devicetree properties representing this.

To be backwards compatible, snps,pbl will still be valid, but
snps,txpbl/snps,rxpbl will override the value in snps,pbl if set.

If the IP is synthesized to use the AXI interface, there is a register
and a matching DT property inside the optional stmmac-axi-config DT node
for controlling burst lengths, named snps,blen.
However, using this register, it is not possible to control tx and rx
independently. Also, this register is not available if the IP was
synthesized with, e.g., the AHB interface.

Signed-off-by: Niklas Cassel <niklas.cassel@axis.com>
Acked-by: Alexandre Torgue <alexandre.torgue@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Documentation/devicetree/bindings/net/stmmac.txt
Documentation/networking/stmmac.txt
drivers/net/ethernet/stmicro/stmmac/dwmac1000_dma.c
drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.c
drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
include/linux/stmmac.h

index b95ff998ba73c8284f41f74cfaaa9d863d59dfbb..8080038ff1b2424edf0544919c8fd48a4628b126 100644 (file)
@@ -34,7 +34,11 @@ Optional properties:
   platforms.
 - tx-fifo-depth: See ethernet.txt file in the same directory
 - rx-fifo-depth: See ethernet.txt file in the same directory
-- snps,pbl             Programmable Burst Length
+- snps,pbl             Programmable Burst Length (tx and rx)
+- snps,txpbl           Tx Programmable Burst Length. Only for GMAC and newer.
+                       If set, DMA tx will use this value rather than snps,pbl.
+- snps,rxpbl           Rx Programmable Burst Length. Only for GMAC and newer.
+                       If set, DMA rx will use this value rather than snps,pbl.
 - snps,aal             Address-Aligned Beats
 - snps,fixed-burst     Program the DMA to use the fixed burst mode
 - snps,mixed-burst     Program the DMA to use the mixed burst mode
index 014f4f756cb791389abf5dc6c228e60795c7f470..6add57374f70c57880c1a430a93717e976baeef1 100644 (file)
@@ -153,7 +153,8 @@ Where:
    o pbl: the Programmable Burst Length is maximum number of beats to
        be transferred in one DMA transaction.
        GMAC also enables the 4xPBL by default.
-   o fixed_burst/mixed_burst/burst_len
+   o txpbl/rxpbl: GMAC and newer supports independent DMA pbl for tx/rx.
+   o fixed_burst/mixed_burst/aal
  o clk_csr: fixed CSR Clock range selection.
  o has_gmac: uses the GMAC core.
  o enh_desc: if sets the MAC will use the enhanced descriptor structure.
@@ -205,16 +206,22 @@ tuned according to the HW capabilities.
 
 struct stmmac_dma_cfg {
        int pbl;
+       int txpbl;
+       int rxpbl;
        int fixed_burst;
-       int burst_len_supported;
+       int mixed_burst;
+       bool aal;
 };
 
 Where:
- o pbl: Programmable Burst Length
+ o pbl: Programmable Burst Length (tx and rx)
+ o txpbl: Transmit Programmable Burst Length. Only for GMAC and newer.
+        If set, DMA tx will use this value rather than pbl.
+ o rxpbl: Receive Programmable Burst Length. Only for GMAC and newer.
+        If set, DMA rx will use this value rather than pbl.
  o fixed_burst: program the DMA to use the fixed burst mode
- o burst_len: this is the value we put in the register
-             supported values are provided as macros in
-             linux/stmmac.h header file.
+ o mixed_burst: program the DMA to use the mixed burst mode
+ o aal: Address-Aligned Beats
 
 ---
 
index 318ae9f1010453df4558b72b9d4166938629587e..99b8040af592ef1ac57652ce0fc72707cc2469ce 100644 (file)
@@ -89,20 +89,20 @@ static void dwmac1000_dma_init(void __iomem *ioaddr,
                               u32 dma_tx, u32 dma_rx, int atds)
 {
        u32 value = readl(ioaddr + DMA_BUS_MODE);
+       int txpbl = dma_cfg->txpbl ?: dma_cfg->pbl;
+       int rxpbl = dma_cfg->rxpbl ?: dma_cfg->pbl;
 
        /*
         * Set the DMA PBL (Programmable Burst Length) mode.
         *
         * Note: before stmmac core 3.50 this mode bit was 4xPBL, and
         * post 3.5 mode bit acts as 8*PBL.
-        *
-        * This configuration doesn't take care about the Separate PBL
-        * so only the bits: 13-8 are programmed with the PBL passed from the
-        * platform.
         */
        value |= DMA_BUS_MODE_MAXPBL;
-       value &= ~DMA_BUS_MODE_PBL_MASK;
-       value |= (dma_cfg->pbl << DMA_BUS_MODE_PBL_SHIFT);
+       value |= DMA_BUS_MODE_USP;
+       value &= ~(DMA_BUS_MODE_PBL_MASK | DMA_BUS_MODE_RPBL_MASK);
+       value |= (txpbl << DMA_BUS_MODE_PBL_SHIFT);
+       value |= (rxpbl << DMA_BUS_MODE_RPBL_SHIFT);
 
        /* Set the Fixed burst mode */
        if (dma_cfg->fixed_burst)
index 7d82a3464097b00b916cc8187bfc828733fef5e1..2c3b2098f350aecb84e6c79e919a55f20f0cf0d2 100644 (file)
@@ -71,11 +71,14 @@ static void dwmac4_dma_axi(void __iomem *ioaddr, struct stmmac_axi *axi)
        writel(value, ioaddr + DMA_SYS_BUS_MODE);
 }
 
-static void dwmac4_dma_init_channel(void __iomem *ioaddr, int pbl,
+static void dwmac4_dma_init_channel(void __iomem *ioaddr,
+                                   struct stmmac_dma_cfg *dma_cfg,
                                    u32 dma_tx_phy, u32 dma_rx_phy,
                                    u32 channel)
 {
        u32 value;
+       int txpbl = dma_cfg->txpbl ?: dma_cfg->pbl;
+       int rxpbl = dma_cfg->rxpbl ?: dma_cfg->pbl;
 
        /* set PBL for each channels. Currently we affect same configuration
         * on each channel
@@ -85,11 +88,11 @@ static void dwmac4_dma_init_channel(void __iomem *ioaddr, int pbl,
        writel(value, ioaddr + DMA_CHAN_CONTROL(channel));
 
        value = readl(ioaddr + DMA_CHAN_TX_CONTROL(channel));
-       value = value | (pbl << DMA_BUS_MODE_PBL_SHIFT);
+       value = value | (txpbl << DMA_BUS_MODE_PBL_SHIFT);
        writel(value, ioaddr + DMA_CHAN_TX_CONTROL(channel));
 
        value = readl(ioaddr + DMA_CHAN_RX_CONTROL(channel));
-       value = value | (pbl << DMA_BUS_MODE_RPBL_SHIFT);
+       value = value | (rxpbl << DMA_BUS_MODE_RPBL_SHIFT);
        writel(value, ioaddr + DMA_CHAN_RX_CONTROL(channel));
 
        /* Mask interrupts by writing to CSR7 */
@@ -120,8 +123,7 @@ static void dwmac4_dma_init(void __iomem *ioaddr,
        writel(value, ioaddr + DMA_SYS_BUS_MODE);
 
        for (i = 0; i < DMA_CHANNEL_NB_MAX; i++)
-               dwmac4_dma_init_channel(ioaddr, dma_cfg->pbl,
-                                       dma_tx, dma_rx, i);
+               dwmac4_dma_init_channel(ioaddr, dma_cfg, dma_tx, dma_rx, i);
 }
 
 static void _dwmac4_dump_dma_regs(void __iomem *ioaddr, u32 channel)
index 81800f23a9c414352ad628f6616500188deaaf40..96afe0561c9993f23d02fcfa24b0447ba90dcc20 100644 (file)
@@ -315,6 +315,8 @@ stmmac_probe_config_dt(struct platform_device *pdev, const char **mac)
        of_property_read_u32(np, "snps,pbl", &dma_cfg->pbl);
        if (!dma_cfg->pbl)
                dma_cfg->pbl = DEFAULT_DMA_PBL;
+       of_property_read_u32(np, "snps,txpbl", &dma_cfg->txpbl);
+       of_property_read_u32(np, "snps,rxpbl", &dma_cfg->rxpbl);
 
        dma_cfg->aal = of_property_read_bool(np, "snps,aal");
        dma_cfg->fixed_burst = of_property_read_bool(np, "snps,fixed-burst");
index 3537fb33cc90c6ae0e9628f4ca8c08c692b4bdda..e6d7a594081993139be8173675e5b855d80077b4 100644 (file)
@@ -88,6 +88,8 @@ struct stmmac_mdio_bus_data {
 
 struct stmmac_dma_cfg {
        int pbl;
+       int txpbl;
+       int rxpbl;
        int fixed_burst;
        int mixed_burst;
        bool aal;