igb: Move RX/TX descriptor count into ring struct
[dragonfly.git] / sys / dev / netif / igb / if_igb.h
1 /*
2  * Copyright (c) 2001-2011, Intel Corporation 
3  * All rights reserved.
4  * 
5  * Redistribution and use in source and binary forms, with or without 
6  * modification, are permitted provided that the following conditions are met:
7  * 
8  *  1. Redistributions of source code must retain the above copyright notice, 
9  *     this list of conditions and the following disclaimer.
10  * 
11  *  2. Redistributions in binary form must reproduce the above copyright 
12  *     notice, this list of conditions and the following disclaimer in the 
13  *     documentation and/or other materials provided with the distribution.
14  * 
15  *  3. Neither the name of the Intel Corporation nor the names of its 
16  *     contributors may be used to endorse or promote products derived from 
17  *     this software without specific prior written permission.
18  * 
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
22  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #ifndef _IF_IGB_H_
33 #define _IF_IGB_H_
34
35 /* Tunables */
36
37 /*
38  * IGB_TXD: Maximum number of Transmit Descriptors
39  *
40  *   This value is the number of transmit descriptors allocated by the driver.
41  *   Increasing this value allows the driver to queue more transmits. Each
42  *   descriptor is 16 bytes.
43  *   Since TDLEN should be multiple of 128bytes, the number of transmit
44  *   desscriptors should meet the following condition.
45  *      (num_tx_desc * sizeof(struct e1000_tx_desc)) % 128 == 0
46  */
47 #define IGB_MIN_TXD             256
48 #define IGB_DEFAULT_TXD         1024
49 #define IGB_MAX_TXD             4096
50
51 /*
52  * IGB_RXD: Maximum number of Transmit Descriptors
53  *
54  *   This value is the number of receive descriptors allocated by the driver.
55  *   Increasing this value allows the driver to buffer more incoming packets.
56  *   Each descriptor is 16 bytes.  A receive buffer is also allocated for each
57  *   descriptor. The maximum MTU size is 16110.
58  *   Since TDLEN should be multiple of 128bytes, the number of transmit
59  *   desscriptors should meet the following condition.
60  *      (num_tx_desc * sizeof(struct e1000_tx_desc)) % 128 == 0
61  */
62 #define IGB_MIN_RXD             256
63 #define IGB_DEFAULT_RXD         1024
64 #define IGB_MAX_RXD             4096
65
66 /*
67  * This parameter controls when the driver calls the routine to reclaim
68  * transmit descriptors. Cleaning earlier seems a win.
69  */
70 #define IGB_TX_CLEANUP_THRESHOLD(sc)    ((sc)->num_tx_desc / 2)
71
72 /*
73  * This parameter controls whether or not autonegotation is enabled.
74  *              0 - Disable autonegotiation
75  *              1 - Enable  autonegotiation
76  */
77 #define DO_AUTO_NEG             1
78
79 /*
80  * This parameter control whether or not the driver will wait for
81  * autonegotiation to complete.
82  *              1 - Wait for autonegotiation to complete
83  *              0 - Don't wait for autonegotiation to complete
84  */
85 #define WAIT_FOR_AUTO_NEG_DEFAULT       0
86
87 /* Tunables -- End */
88
89 #define AUTONEG_ADV_DEFAULT     (ADVERTISE_10_HALF | ADVERTISE_10_FULL | \
90                                  ADVERTISE_100_HALF | ADVERTISE_100_FULL | \
91                                  ADVERTISE_1000_FULL)
92
93 #define AUTO_ALL_MODES                  0
94
95 /* PHY master/slave setting */
96 #define IGB_MASTER_SLAVE                e1000_ms_hw_default
97
98 /*
99  * Micellaneous constants
100  */
101 #define IGB_VENDOR_ID                   0x8086
102
103 #define IGB_JUMBO_PBA                   0x00000028
104 #define IGB_DEFAULT_PBA                 0x00000030
105 #define IGB_SMARTSPEED_DOWNSHIFT        3
106 #define IGB_SMARTSPEED_MAX              15
107 #define IGB_MAX_LOOP                    10
108
109 #define IGB_RX_PTHRESH                  (hw->mac.type <= e1000_82576 ? 16 : 8)
110 #define IGB_RX_HTHRESH                  8
111 #define IGB_RX_WTHRESH                  1
112
113 #define IGB_TX_PTHRESH                  8
114 #define IGB_TX_HTHRESH                  1
115 #define IGB_TX_WTHRESH                  16
116
117 #define MAX_NUM_MULTICAST_ADDRESSES     128
118 #define IGB_FC_PAUSE_TIME               0x0680
119
120 #define IGB_INTR_RATE                   10000
121
122 /*
123  * TDBA/RDBA should be aligned on 16 byte boundary. But TDLEN/RDLEN should be
124  * multiple of 128 bytes. So we align TDBA/RDBA on 128 byte boundary. This will
125  * also optimize cache line size effect. H/W supports up to cache line size 128.
126  */
127 #define IGB_DBA_ALIGN                   128
128
129 /* PCI Config defines */
130 #define IGB_MSIX_BAR                    3
131
132 #define IGB_MAX_SCATTER                 64
133 #define IGB_VFTA_SIZE                   128
134 #define IGB_TSO_SIZE                    (65535 + \
135                                          sizeof(struct ether_vlan_header))
136 #define IGB_TSO_SEG_SIZE                4096    /* Max dma segment size */
137 #define IGB_HDR_BUF                     128
138 #define IGB_PKTTYPE_MASK                0x0000FFF0
139
140 #define IGB_CSUM_FEATURES               (CSUM_IP | CSUM_TCP | CSUM_UDP)
141 #define IGB_IPVHL_SIZE                  1 /* sizeof(ip.ip_vhl) */
142 #define IGB_TXCSUM_MINHL                (ETHER_HDR_LEN + EVL_ENCAPLEN + \
143                                          IGB_IPVHL_SIZE)
144
145 /* One for TX csum offloading desc, the other 2 are reserved */
146 #define IGB_TX_RESERVED                 3
147
148 /* Large enough for 64K TSO */
149 #define IGB_TX_SPARE                    32
150
151 #define IGB_TX_OACTIVE_MAX              64
152
153 struct igb_softc;
154
155 /*
156  * Bus dma information structure
157  */
158 struct igb_dma {
159         bus_addr_t              dma_paddr;
160         void                    *dma_vaddr;
161         bus_dma_tag_t           dma_tag;
162         bus_dmamap_t            dma_map;
163 };
164
165 /*
166  * Transmit ring: one per queue
167  */
168 struct igb_tx_ring {
169         struct igb_softc        *sc;
170         uint32_t                me;
171         struct igb_dma          txdma;
172         bus_dma_tag_t           tx_hdr_dtag;
173         bus_dmamap_t            tx_hdr_dmap;
174         bus_addr_t              tx_hdr_paddr;
175         struct e1000_tx_desc    *tx_base;
176         int                     num_tx_desc;
177         uint32_t                next_avail_desc;
178         uint32_t                next_to_clean;
179         uint32_t                *tx_hdr;
180         int                     tx_avail;
181         struct igb_tx_buf       *tx_buf;
182         bus_dma_tag_t           tx_tag;
183         int                     tx_nsegs;
184         int                     spare_desc;
185         int                     oact_lo_desc;
186         int                     oact_hi_desc;
187         int                     intr_nsegs;
188         int                     tx_intr_bit;
189         uint32_t                tx_intr_mask;
190
191         u_long                  no_desc_avail;
192         u_long                  tx_packets;
193
194         u_long                  ctx_try_pullup;
195         u_long                  ctx_drop1;
196         u_long                  ctx_drop2;
197         u_long                  ctx_pullup1;
198         u_long                  ctx_pullup1_failed;
199         u_long                  ctx_pullup2;
200         u_long                  ctx_pullup2_failed;
201 };
202
203 /*
204  * Receive ring: one per queue
205  */
206 struct igb_rx_ring {
207         struct igb_softc        *sc;
208         uint32_t                me;
209         struct igb_dma          rxdma;
210         union e1000_adv_rx_desc *rx_base;
211         boolean_t               discard;
212         int                     num_rx_desc;
213         uint32_t                next_to_check;
214         struct igb_rx_buf       *rx_buf;
215         bus_dma_tag_t           rx_tag;
216         bus_dmamap_t            rx_sparemap;
217         int                     rx_intr_bit;
218         uint32_t                rx_intr_mask;
219
220         /*
221          * First/last mbuf pointers, for
222          * collecting multisegment RX packets.
223          */
224         struct mbuf             *fmp;
225         struct mbuf             *lmp;
226
227         /* Soft stats */
228         u_long                  rx_packets;
229 };
230
231 struct igb_softc {
232         struct arpcom           arpcom;
233         struct e1000_hw         hw;
234
235         struct e1000_osdep      osdep;
236         device_t                dev;
237         uint32_t                flags;
238 #define IGB_FLAG_SHARED_INTR    0x1
239 #define IGB_FLAG_HAS_MGMT       0x2
240
241         bus_dma_tag_t           parent_tag;
242
243         int                     mem_rid;
244         struct resource         *mem_res;
245
246         struct ifmedia          media;
247         struct callout          timer;
248
249         int                     intr_type;
250         int                     intr_rid;
251         struct resource         *intr_res;
252         void                    *intr_tag;
253
254         int                     if_flags;
255         int                     max_frame_size;
256         int                     pause_frames;
257         uint16_t                vf_ifp; /* a VF interface */
258
259         /* Management and WOL features */
260         int                     wol;
261
262         /* Info about the interface */
263         uint8_t                 link_active;
264         uint16_t                link_speed;
265         uint16_t                link_duplex;
266         uint32_t                smartspeed;
267         uint32_t                dma_coalesce;
268
269         /* Multicast array pointer */
270         uint8_t                 *mta;
271
272         int                     intr_rate;
273         uint32_t                intr_mask;
274
275         /*
276          * Transmit rings
277          */
278         int                     tx_ring_cnt;
279         struct igb_tx_ring      *tx_rings;
280
281         /*
282          * Receive rings
283          */
284         int                     rx_ring_cnt;
285         struct igb_rx_ring      *rx_rings;
286
287         /* Misc stats maintained by the driver */
288         u_long                  dropped_pkts;
289         u_long                  mbuf_defrag_failed;
290         u_long                  no_tx_dma_setup;
291         u_long                  watchdog_events;
292         u_long                  rx_overruns;
293         u_long                  device_control;
294         u_long                  rx_control;
295         u_long                  int_mask;
296         u_long                  eint_mask;
297         u_long                  packet_buf_alloc_rx;
298         u_long                  packet_buf_alloc_tx;
299
300         /* sysctl tree glue */
301         struct sysctl_ctx_list  sysctl_ctx;
302         struct sysctl_oid       *sysctl_tree;
303
304         void                    *stats;
305 };
306
307 struct igb_tx_buf {
308         struct mbuf     *m_head;
309         bus_dmamap_t    map;            /* bus_dma map for packet */
310 };
311
312 struct igb_rx_buf {
313         struct mbuf     *m_head;
314         bus_dmamap_t    map;    /* bus_dma map for packet */
315         bus_addr_t      paddr;
316 };
317
318 #define UPDATE_VF_REG(reg, last, cur)           \
319 {                                               \
320         uint32_t new = E1000_READ_REG(hw, reg); \
321         if (new < last)                         \
322                 cur += 0x100000000LL;           \
323         last = new;                             \
324         cur &= 0xFFFFFFFF00000000LL;            \
325         cur |= new;                             \
326 }
327
328 #define IGB_IS_OACTIVE(txr)     ((txr)->tx_avail < (txr)->oact_lo_desc)
329 #define IGB_IS_NOT_OACTIVE(txr) ((txr)->tx_avail >= (txr)->oact_hi_desc)
330
331 #endif /* _IF_IGB_H_ */