remove version in all files
[dpdk.git] / lib / librte_pmd_ixgbe / ixgbe_ethdev.h
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without 
8  *   modification, are permitted provided that the following conditions 
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright 
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright 
14  *       notice, this list of conditions and the following disclaimer in 
15  *       the documentation and/or other materials provided with the 
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its 
18  *       contributors may be used to endorse or promote products derived 
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  * 
33  */
34
35 #ifndef _IXGBE_ETHDEV_H_
36 #define _IXGBE_ETHDEV_H_
37
38 /* need update link, bit flag */
39 #define IXGBE_FLAG_NEED_LINK_UPDATE (uint32_t)(1 << 0)
40
41 /*
42  * Defines that were not part of ixgbe_type.h as they are not used by the
43  * FreeBSD driver.
44  */
45 #define IXGBE_ADVTXD_MAC_1588       0x00080000 /* IEEE1588 Timestamp packet */
46 #define IXGBE_RXD_STAT_TMST         0x10000    /* Timestamped Packet indication */
47 #define IXGBE_ADVTXD_TUCMD_L4T_RSV  0x00001800 /* L4 Packet TYPE, resvd  */
48 #define IXGBE_RXDADV_ERR_CKSUM_BIT  30
49 #define IXGBE_RXDADV_ERR_CKSUM_MSK  3
50 #define IXGBE_ADVTXD_MACLEN_SHIFT   9          /* Bit shift for l2_len */
51
52 #define IXGBE_VFTA_SIZE 128
53
54 /*
55  * Information about the fdir mode.
56  */
57 struct ixgbe_hw_fdir_info {
58         uint16_t    collision;
59         uint16_t    free;
60         uint16_t    maxhash;
61         uint8_t     maxlen;
62         uint64_t    add;
63         uint64_t    remove;
64         uint64_t    f_add;
65         uint64_t    f_remove;
66 };
67
68 /* structure for interrupt relative data */
69 struct ixgbe_interrupt {
70         uint32_t flags;
71 };
72
73 /* local VFTA copy */
74 struct ixgbe_vfta {
75         uint32_t vfta[IXGBE_VFTA_SIZE];
76 };
77
78 /*
79  * Structure to store private data for each driver instance (for each port).
80  */
81 struct ixgbe_adapter {
82         struct ixgbe_hw             hw;
83         struct ixgbe_hw_stats       stats;
84         struct ixgbe_hw_fdir_info   fdir;
85         struct ixgbe_interrupt      intr;
86         struct ixgbe_vfta           shadow_vfta;
87 };
88
89 #define IXGBE_DEV_PRIVATE_TO_HW(adapter)\
90         (&((struct ixgbe_adapter *)adapter)->hw)
91
92 #define IXGBE_DEV_PRIVATE_TO_STATS(adapter) \
93         (&((struct ixgbe_adapter *)adapter)->stats)
94
95 #define IXGBE_DEV_PRIVATE_TO_INTR(adapter) \
96         (&((struct ixgbe_adapter *)adapter)->intr)
97
98 #define IXGBE_DEV_PRIVATE_TO_FDIR_INFO(adapter) \
99         (&((struct ixgbe_adapter *)adapter)->fdir)
100
101 #define IXGBE_DEV_PRIVATE_TO_VFTA(adapter) \
102         (&((struct ixgbe_adapter *)adapter)->shadow_vfta)
103
104
105 /*
106  * RX/TX function prototypes
107  */
108 void ixgbe_dev_clear_queues(struct rte_eth_dev *dev);
109
110 int ixgbe_dev_rx_queue_alloc(struct rte_eth_dev *dev, uint16_t nb_rx_queues);
111
112 int ixgbe_dev_tx_queue_alloc(struct rte_eth_dev *dev, uint16_t nb_tx_queues);
113
114 int  ixgbe_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
115                 uint16_t nb_rx_desc, unsigned int socket_id,
116                 const struct rte_eth_rxconf *rx_conf,
117                 struct rte_mempool *mb_pool);
118
119 int  ixgbe_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id,
120                 uint16_t nb_tx_desc, unsigned int socket_id,
121                 const struct rte_eth_txconf *tx_conf);
122
123 int ixgbe_dev_rx_init(struct rte_eth_dev *dev);
124
125 void ixgbe_dev_tx_init(struct rte_eth_dev *dev);
126
127 void ixgbe_dev_rxtx_start(struct rte_eth_dev *dev);
128
129 int ixgbevf_dev_rx_init(struct rte_eth_dev *dev);
130
131 void ixgbevf_dev_tx_init(struct rte_eth_dev *dev);
132
133 void ixgbevf_dev_rxtx_start(struct rte_eth_dev *dev);
134
135 uint16_t ixgbe_recv_pkts(struct igb_rx_queue *rxq, struct rte_mbuf **rx_pkts,
136                 uint16_t nb_pkts);
137
138 uint16_t ixgbe_recv_scattered_pkts(struct igb_rx_queue *rxq,
139                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
140
141 uint16_t ixgbe_xmit_pkts(struct igb_tx_queue *txq, struct rte_mbuf **tx_pkts,
142                 uint16_t nb_pkts);
143
144 /*
145  * Flow director function prototypes
146  */
147 int ixgbe_fdir_configure(struct rte_eth_dev *dev);
148
149 int ixgbe_fdir_add_signature_filter(struct rte_eth_dev *dev,
150                 struct rte_fdir_filter *fdir_filter, uint8_t queue);
151
152 int ixgbe_fdir_update_signature_filter(struct rte_eth_dev *dev,
153                 struct rte_fdir_filter *fdir_filter, uint8_t queue);
154
155 int ixgbe_fdir_remove_signature_filter(struct rte_eth_dev *dev,
156                 struct rte_fdir_filter *fdir_filter);
157
158 void ixgbe_fdir_info_get(struct rte_eth_dev *dev,
159                 struct rte_eth_fdir *fdir);
160
161 int ixgbe_fdir_add_perfect_filter(struct rte_eth_dev *dev,
162                 struct rte_fdir_filter *fdir_filter, uint16_t soft_id,
163                 uint8_t queue, uint8_t drop);
164
165 int ixgbe_fdir_update_perfect_filter(struct rte_eth_dev *dev,
166                 struct rte_fdir_filter *fdir_filter,uint16_t soft_id,
167                 uint8_t queue, uint8_t drop);
168
169 int ixgbe_fdir_remove_perfect_filter(struct rte_eth_dev *dev,
170                 struct rte_fdir_filter *fdir_filter, uint16_t soft_id);
171
172 int ixgbe_fdir_set_masks(struct rte_eth_dev *dev,
173                 struct rte_fdir_masks *fdir_masks);
174
175 #endif /* _IXGBE_ETHDEV_H_ */