update copyright date to 2013
[dpdk.git] / lib / librte_pmd_ixgbe / ixgbe_ethdev.h
index 2506d90..fba370c 100644 (file)
@@ -1,7 +1,7 @@
 /*-
  *   BSD LICENSE
  * 
- *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
+ *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
  *   All rights reserved.
  * 
  *   Redistribution and use in source and binary forms, with or without 
@@ -34,6 +34,9 @@
 
 #ifndef _IXGBE_ETHDEV_H_
 #define _IXGBE_ETHDEV_H_
+#include "ixgbe/ixgbe_dcb.h"
+#include "ixgbe/ixgbe_dcb_82599.h"
+#include "ixgbe/ixgbe_dcb_82598.h"
 
 /* need update link, bit flag */
 #define IXGBE_FLAG_NEED_LINK_UPDATE (uint32_t)(1 << 0)
 #define IXGBE_RXDADV_ERR_CKSUM_MSK  3
 #define IXGBE_ADVTXD_MACLEN_SHIFT   9          /* Bit shift for l2_len */
 #define IXGBE_NB_STAT_MAPPING_REGS  32
+#define IXGBE_EXTENDED_VLAN      (uint32_t)(1 << 26) /* EXTENDED VLAN ENABLE */
 #define IXGBE_VFTA_SIZE 128
+#define IXGBE_RX_BUF_THRESHOLD 4
+#define IXGBE_MAX_RX_QUEUE_NUM 128
+#ifndef NBBY
+#define NBBY   8       /* number of bits in a byte */
+#endif
+#define IXGBE_HWSTRIP_BITMAP_SIZE (IXGBE_MAX_RX_QUEUE_NUM / (sizeof(uint32_t) * NBBY))
+
 
 /*
  * Information about the fdir mode.
@@ -75,11 +86,14 @@ struct ixgbe_stat_mapping_registers {
        uint32_t rqsmr[IXGBE_NB_STAT_MAPPING_REGS];
 };
 
-/* local VFTA copy */
 struct ixgbe_vfta {
        uint32_t vfta[IXGBE_VFTA_SIZE];
 };
 
+struct ixgbe_hwstrip {
+       uint32_t bitmap[IXGBE_HWSTRIP_BITMAP_SIZE];
+};
+
 /*
  * Structure to store private data for each driver instance (for each port).
  */
@@ -90,6 +104,8 @@ struct ixgbe_adapter {
        struct ixgbe_interrupt      intr;
        struct ixgbe_stat_mapping_registers stat_mappings;
        struct ixgbe_vfta           shadow_vfta;
+       struct ixgbe_hwstrip            hwstrip;
+       struct ixgbe_dcb_config     dcb_config;
 };
 
 #define IXGBE_DEV_PRIVATE_TO_HW(adapter)\
@@ -110,15 +126,20 @@ struct ixgbe_adapter {
 #define IXGBE_DEV_PRIVATE_TO_VFTA(adapter) \
        (&((struct ixgbe_adapter *)adapter)->shadow_vfta)
 
+#define IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(adapter) \
+       (&((struct ixgbe_adapter *)adapter)->hwstrip)
+
+#define IXGBE_DEV_PRIVATE_TO_DCB_CFG(adapter) \
+       (&((struct ixgbe_adapter *)adapter)->dcb_config)
 
 /*
  * RX/TX function prototypes
  */
 void ixgbe_dev_clear_queues(struct rte_eth_dev *dev);
 
-int ixgbe_dev_rx_queue_alloc(struct rte_eth_dev *dev, uint16_t nb_rx_queues);
+void ixgbe_dev_rx_queue_release(void *rxq);
 
-int ixgbe_dev_tx_queue_alloc(struct rte_eth_dev *dev, uint16_t nb_tx_queues);
+void ixgbe_dev_tx_queue_release(void *txq);
 
 int  ixgbe_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
                uint16_t nb_rx_desc, unsigned int socket_id,
@@ -141,13 +162,21 @@ void ixgbevf_dev_tx_init(struct rte_eth_dev *dev);
 
 void ixgbevf_dev_rxtx_start(struct rte_eth_dev *dev);
 
-uint16_t ixgbe_recv_pkts(struct igb_rx_queue *rxq, struct rte_mbuf **rx_pkts,
+uint16_t ixgbe_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                uint16_t nb_pkts);
 
-uint16_t ixgbe_recv_scattered_pkts(struct igb_rx_queue *rxq,
+#ifdef RTE_LIBRTE_IXGBE_RX_ALLOW_BULK_ALLOC
+uint16_t ixgbe_recv_pkts_bulk_alloc(void *rx_queue, struct rte_mbuf **rx_pkts,
+               uint16_t nb_pkts);
+#endif
+
+uint16_t ixgbe_recv_scattered_pkts(void *rx_queue,
                struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
 
-uint16_t ixgbe_xmit_pkts(struct igb_tx_queue *txq, struct rte_mbuf **tx_pkts,
+uint16_t ixgbe_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
+               uint16_t nb_pkts);
+
+uint16_t ixgbe_xmit_pkts_simple(void *tx_queue, struct rte_mbuf **tx_pkts,
                uint16_t nb_pkts);
 
 /*
@@ -181,4 +210,6 @@ int ixgbe_fdir_remove_perfect_filter(struct rte_eth_dev *dev,
 int ixgbe_fdir_set_masks(struct rte_eth_dev *dev,
                struct rte_fdir_masks *fdir_masks);
 
+void ixgbe_configure_dcb(struct rte_eth_dev *dev);
+
 #endif /* _IXGBE_ETHDEV_H_ */