LCOV - code coverage report
Current view: top level - drivers/net/ethernet/stmicro/stmmac - chain_mode.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 74 0.0 %
Date: 2022-04-01 14:35:51 Functions: 0 5 0.0 %
Branches: 0 44 0.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0-only
       2                 :            : /*******************************************************************************
       3                 :            :   Specialised functions for managing Chained mode
       4                 :            : 
       5                 :            :   Copyright(C) 2011  STMicroelectronics Ltd
       6                 :            : 
       7                 :            :   It defines all the functions used to handle the normal/enhanced
       8                 :            :   descriptors in case of the DMA is configured to work in chained or
       9                 :            :   in ring mode.
      10                 :            : 
      11                 :            : 
      12                 :            :   Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
      13                 :            : *******************************************************************************/
      14                 :            : 
      15                 :            : #include "stmmac.h"
      16                 :            : 
      17                 :          0 : static int jumbo_frm(void *p, struct sk_buff *skb, int csum)
      18                 :            : {
      19                 :          0 :         struct stmmac_tx_queue *tx_q = (struct stmmac_tx_queue *)p;
      20         [ #  # ]:          0 :         unsigned int nopaged_len = skb_headlen(skb);
      21                 :          0 :         struct stmmac_priv *priv = tx_q->priv_data;
      22                 :          0 :         unsigned int entry = tx_q->cur_tx;
      23                 :          0 :         unsigned int bmax, des2;
      24                 :          0 :         unsigned int i = 1, len;
      25                 :          0 :         struct dma_desc *desc;
      26                 :            : 
      27                 :          0 :         desc = tx_q->dma_tx + entry;
      28                 :            : 
      29         [ #  # ]:          0 :         if (priv->plat->enh_desc)
      30                 :            :                 bmax = BUF_SIZE_8KiB;
      31                 :            :         else
      32                 :          0 :                 bmax = BUF_SIZE_2KiB;
      33                 :            : 
      34                 :          0 :         len = nopaged_len - bmax;
      35                 :            : 
      36                 :          0 :         des2 = dma_map_single(priv->device, skb->data,
      37                 :            :                               bmax, DMA_TO_DEVICE);
      38                 :          0 :         desc->des2 = cpu_to_le32(des2);
      39                 :          0 :         if (dma_mapping_error(priv->device, des2))
      40                 :            :                 return -1;
      41                 :          0 :         tx_q->tx_skbuff_dma[entry].buf = des2;
      42                 :          0 :         tx_q->tx_skbuff_dma[entry].len = bmax;
      43                 :            :         /* do not close the descriptor and do not set own bit */
      44   [ #  #  #  # ]:          0 :         stmmac_prepare_tx_desc(priv, desc, 1, bmax, csum, STMMAC_CHAIN_MODE,
      45                 :            :                         0, false, skb->len);
      46                 :            : 
      47         [ #  # ]:          0 :         while (len != 0) {
      48                 :          0 :                 tx_q->tx_skbuff[entry] = NULL;
      49                 :          0 :                 entry = STMMAC_GET_ENTRY(entry, DMA_TX_SIZE);
      50                 :          0 :                 desc = tx_q->dma_tx + entry;
      51                 :            : 
      52         [ #  # ]:          0 :                 if (len > bmax) {
      53                 :          0 :                         des2 = dma_map_single(priv->device,
      54                 :            :                                               (skb->data + bmax * i),
      55                 :            :                                               bmax, DMA_TO_DEVICE);
      56                 :          0 :                         desc->des2 = cpu_to_le32(des2);
      57                 :          0 :                         if (dma_mapping_error(priv->device, des2))
      58                 :            :                                 return -1;
      59                 :          0 :                         tx_q->tx_skbuff_dma[entry].buf = des2;
      60                 :          0 :                         tx_q->tx_skbuff_dma[entry].len = bmax;
      61   [ #  #  #  # ]:          0 :                         stmmac_prepare_tx_desc(priv, desc, 0, bmax, csum,
      62                 :            :                                         STMMAC_CHAIN_MODE, 1, false, skb->len);
      63                 :          0 :                         len -= bmax;
      64                 :          0 :                         i++;
      65                 :            :                 } else {
      66                 :          0 :                         des2 = dma_map_single(priv->device,
      67                 :            :                                               (skb->data + bmax * i), len,
      68                 :            :                                               DMA_TO_DEVICE);
      69                 :          0 :                         desc->des2 = cpu_to_le32(des2);
      70                 :          0 :                         if (dma_mapping_error(priv->device, des2))
      71                 :            :                                 return -1;
      72                 :          0 :                         tx_q->tx_skbuff_dma[entry].buf = des2;
      73                 :          0 :                         tx_q->tx_skbuff_dma[entry].len = len;
      74                 :            :                         /* last descriptor can be set now */
      75   [ #  #  #  # ]:          0 :                         stmmac_prepare_tx_desc(priv, desc, 0, len, csum,
      76                 :            :                                         STMMAC_CHAIN_MODE, 1, true, skb->len);
      77                 :            :                         len = 0;
      78                 :            :                 }
      79                 :            :         }
      80                 :            : 
      81                 :          0 :         tx_q->cur_tx = entry;
      82                 :            : 
      83                 :          0 :         return entry;
      84                 :            : }
      85                 :            : 
      86                 :          0 : static unsigned int is_jumbo_frm(int len, int enh_desc)
      87                 :            : {
      88                 :          0 :         unsigned int ret = 0;
      89                 :            : 
      90   [ #  #  #  #  :          0 :         if ((enh_desc && (len > BUF_SIZE_8KiB)) ||
                   #  # ]
      91         [ #  # ]:          0 :             (!enh_desc && (len > BUF_SIZE_2KiB))) {
      92                 :          0 :                 ret = 1;
      93                 :            :         }
      94                 :            : 
      95                 :          0 :         return ret;
      96                 :            : }
      97                 :            : 
      98                 :          0 : static void init_dma_chain(void *des, dma_addr_t phy_addr,
      99                 :            :                                   unsigned int size, unsigned int extend_desc)
     100                 :            : {
     101                 :            :         /*
     102                 :            :          * In chained mode the des3 points to the next element in the ring.
     103                 :            :          * The latest element has to point to the head.
     104                 :            :          */
     105                 :          0 :         int i;
     106                 :          0 :         dma_addr_t dma_phy = phy_addr;
     107                 :            : 
     108         [ #  # ]:          0 :         if (extend_desc) {
     109                 :            :                 struct dma_extended_desc *p = (struct dma_extended_desc *)des;
     110         [ #  # ]:          0 :                 for (i = 0; i < (size - 1); i++) {
     111                 :          0 :                         dma_phy += sizeof(struct dma_extended_desc);
     112                 :          0 :                         p->basic.des3 = cpu_to_le32((unsigned int)dma_phy);
     113                 :          0 :                         p++;
     114                 :            :                 }
     115                 :          0 :                 p->basic.des3 = cpu_to_le32((unsigned int)phy_addr);
     116                 :            : 
     117                 :            :         } else {
     118                 :            :                 struct dma_desc *p = (struct dma_desc *)des;
     119         [ #  # ]:          0 :                 for (i = 0; i < (size - 1); i++) {
     120                 :          0 :                         dma_phy += sizeof(struct dma_desc);
     121                 :          0 :                         p->des3 = cpu_to_le32((unsigned int)dma_phy);
     122                 :          0 :                         p++;
     123                 :            :                 }
     124                 :          0 :                 p->des3 = cpu_to_le32((unsigned int)phy_addr);
     125                 :            :         }
     126                 :          0 : }
     127                 :            : 
     128                 :          0 : static void refill_desc3(void *priv_ptr, struct dma_desc *p)
     129                 :            : {
     130                 :          0 :         struct stmmac_rx_queue *rx_q = (struct stmmac_rx_queue *)priv_ptr;
     131                 :          0 :         struct stmmac_priv *priv = rx_q->priv_data;
     132                 :            : 
     133   [ #  #  #  # ]:          0 :         if (priv->hwts_rx_en && !priv->extend_desc)
     134                 :            :                 /* NOTE: Device will overwrite des3 with timestamp value if
     135                 :            :                  * 1588-2002 time stamping is enabled, hence reinitialize it
     136                 :            :                  * to keep explicit chaining in the descriptor.
     137                 :            :                  */
     138                 :          0 :                 p->des3 = cpu_to_le32((unsigned int)(rx_q->dma_rx_phy +
     139                 :            :                                       (((rx_q->dirty_rx) + 1) %
     140                 :            :                                        DMA_RX_SIZE) *
     141                 :            :                                       sizeof(struct dma_desc)));
     142                 :          0 : }
     143                 :            : 
     144                 :          0 : static void clean_desc3(void *priv_ptr, struct dma_desc *p)
     145                 :            : {
     146                 :          0 :         struct stmmac_tx_queue *tx_q = (struct stmmac_tx_queue *)priv_ptr;
     147                 :          0 :         struct stmmac_priv *priv = tx_q->priv_data;
     148                 :          0 :         unsigned int entry = tx_q->dirty_tx;
     149                 :            : 
     150   [ #  #  #  # ]:          0 :         if (tx_q->tx_skbuff_dma[entry].last_segment && !priv->extend_desc &&
     151         [ #  # ]:          0 :             priv->hwts_tx_en)
     152                 :            :                 /* NOTE: Device will overwrite des3 with timestamp value if
     153                 :            :                  * 1588-2002 time stamping is enabled, hence reinitialize it
     154                 :            :                  * to keep explicit chaining in the descriptor.
     155                 :            :                  */
     156                 :          0 :                 p->des3 = cpu_to_le32((unsigned int)((tx_q->dma_tx_phy +
     157                 :            :                                       ((tx_q->dirty_tx + 1) % DMA_TX_SIZE))
     158                 :            :                                       * sizeof(struct dma_desc)));
     159                 :          0 : }
     160                 :            : 
     161                 :            : const struct stmmac_mode_ops chain_mode_ops = {
     162                 :            :         .init = init_dma_chain,
     163                 :            :         .is_jumbo_frm = is_jumbo_frm,
     164                 :            :         .jumbo_frm = jumbo_frm,
     165                 :            :         .refill_desc3 = refill_desc3,
     166                 :            :         .clean_desc3 = clean_desc3,
     167                 :            : };

Generated by: LCOV version 1.14