doc: whitespace changes in licenses
[dpdk.git] / lib / librte_pmd_e1000 / igb_rxtx.c
index 62c2985..334082d 100644 (file)
@@ -4,32 +4,31 @@
  *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
  *   All rights reserved.
  * 
- *   Redistribution and use in source and binary forms, with or without 
- *   modification, are permitted provided that the following conditions 
+ *   Redistribution and use in source and binary forms, with or without
+ *   modification, are permitted provided that the following conditions
  *   are met:
  * 
- *     * Redistributions of source code must retain the above copyright 
+ *     * Redistributions of source code must retain the above copyright
  *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright 
- *       notice, this list of conditions and the following disclaimer in 
- *       the documentation and/or other materials provided with the 
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in
+ *       the documentation and/or other materials provided with the
  *       distribution.
- *     * Neither the name of Intel Corporation nor the names of its 
- *       contributors may be used to endorse or promote products derived 
+ *     * Neither the name of Intel Corporation nor the names of its
+ *       contributors may be used to endorse or promote products derived
  *       from this software without specific prior written permission.
  * 
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+ *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- * 
  */
 
 #include <sys/queue.h>
@@ -1391,26 +1390,46 @@ eth_igb_rx_queue_setup(struct rte_eth_dev *dev,
 uint32_t 
 eth_igb_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
 {
+#define IGB_RXQ_SCAN_INTERVAL 4
+       volatile union e1000_adv_rx_desc *rxdp;
        struct igb_rx_queue *rxq;
-       uint32_t nb_pkts_available;
-       uint32_t rx_rdh;
-       uint32_t rx_id;
+       uint32_t desc = 0;
 
        if (rx_queue_id >= dev->data->nb_rx_queues) {
-               PMD_RX_LOG(DEBUG,"Invalid RX queue_id=%d\n", rx_queue_id);
+               PMD_RX_LOG(ERR, "Invalid RX queue id=%d\n", rx_queue_id);
                return 0;
        }
 
        rxq = dev->data->rx_queues[rx_queue_id];
-       rx_id = (uint16_t) ((rxq->rx_tail == 0) ? (rxq->nb_rx_desc - 1) :
-                                                       (rxq->rx_tail - 1));
-       rx_rdh = E1000_PCI_REG(rxq->rdh_reg_addr);
-       if (rx_rdh > rx_id) 
-               nb_pkts_available = rx_rdh - rx_id;
-       else
-               nb_pkts_available = rx_rdh - rx_id + rxq->nb_rx_desc;
-       
-       return (nb_pkts_available);
+       rxdp = &(rxq->rx_ring[rxq->rx_tail]);
+
+       while ((desc < rxq->nb_rx_desc) &&
+               (rxdp->wb.upper.status_error & E1000_RXD_STAT_DD)) {
+               desc += IGB_RXQ_SCAN_INTERVAL;
+               rxdp += IGB_RXQ_SCAN_INTERVAL;
+               if (rxq->rx_tail + desc >= rxq->nb_rx_desc)
+                       rxdp = &(rxq->rx_ring[rxq->rx_tail +
+                               desc - rxq->nb_rx_desc]);
+       }
+
+       return 0;
+}
+
+int
+eth_igb_rx_descriptor_done(void *rx_queue, uint16_t offset)
+{
+       volatile union e1000_adv_rx_desc *rxdp;
+       struct igb_rx_queue *rxq = rx_queue;
+       uint32_t desc;
+
+       if (unlikely(offset >= rxq->nb_rx_desc))
+               return 0;
+       desc = rxq->rx_tail + offset;
+       if (desc >= rxq->nb_rx_desc)
+               desc -= rxq->nb_rx_desc;
+
+       rxdp = &rxq->rx_ring[desc];
+       return !!(rxdp->wb.upper.status_error & E1000_RXD_STAT_DD);
 }
 
 void
@@ -1584,6 +1603,36 @@ igb_alloc_rx_queue_mbufs(struct igb_rx_queue *rxq)
        return 0;
 }
 
+#define E1000_MRQC_DEF_Q_SHIFT               (3)
+static int
+igb_dev_mq_rx_configure(struct rte_eth_dev *dev)
+{
+       struct e1000_hw *hw =
+               E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+       uint32_t mrqc;
+       if (RTE_ETH_DEV_SRIOV(dev).active == ETH_8_POOLS) {
+               /*
+               * SRIOV active scheme
+               * FIXME if support RSS together with VMDq & SRIOV
+               */
+               mrqc = E1000_MRQC_ENABLE_VMDQ;
+               /* 011b Def_Q ignore, according to VT_CTL.DEF_PL */
+               mrqc |= 0x3 << E1000_MRQC_DEF_Q_SHIFT;
+               E1000_WRITE_REG(hw, E1000_MRQC, mrqc);
+       } else if(RTE_ETH_DEV_SRIOV(dev).active == 0) { 
+               /*
+               * SRIOV inactive scheme
+               */
+               if (dev->data->nb_rx_queues > 1)
+                       igb_rss_configure(dev);
+               else
+                       igb_rss_disable(dev);
+       }
+       return 0;
+}
 int
 eth_igb_rx_init(struct rte_eth_dev *dev)
 {
@@ -1733,10 +1782,7 @@ eth_igb_rx_init(struct rte_eth_dev *dev)
        /*
         * Configure RSS if device configured with multiple RX queues.
         */
-       if (dev->data->nb_rx_queues > 1)
-               igb_rss_configure(dev);
-       else
-               igb_rss_disable(dev);
+       igb_dev_mq_rx_configure(dev);
 
        /*
         * Setup the Checksum Register.