first public release
[dpdk.git] / lib / librte_pmd_igb / igb / e1000_82575.h
1 /******************************************************************************
2
3   Copyright (c) 2001-2011, Intel Corporation 
4   All rights reserved.
5   
6   Redistribution and use in source and binary forms, with or without 
7   modification, are permitted provided that the following conditions are met:
8   
9    1. Redistributions of source code must retain the above copyright notice, 
10       this list of conditions and the following disclaimer.
11   
12    2. Redistributions in binary form must reproduce the above copyright 
13       notice, this list of conditions and the following disclaimer in the 
14       documentation and/or other materials provided with the distribution.
15   
16    3. Neither the name of the Intel Corporation nor the names of its 
17       contributors may be used to endorse or promote products derived from 
18       this software without specific prior written permission.
19   
20   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
22   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
23   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
24   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
25   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
26   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
27   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
28   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
29   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   POSSIBILITY OF SUCH DAMAGE.
31
32 ******************************************************************************/
33 /*$FreeBSD$*/
34
35 #ifndef _E1000_82575_H_
36 #define _E1000_82575_H_
37
38 #define ID_LED_DEFAULT_82575_SERDES ((ID_LED_DEF1_DEF2 << 12) | \
39                                      (ID_LED_DEF1_DEF2 <<  8) | \
40                                      (ID_LED_DEF1_DEF2 <<  4) | \
41                                      (ID_LED_OFF1_ON2))
42 /*
43  * Receive Address Register Count
44  * Number of high/low register pairs in the RAR.  The RAR (Receive Address
45  * Registers) holds the directed and multicast addresses that we monitor.
46  * These entries are also used for MAC-based filtering.
47  */
48 /*
49  * For 82576, there are an additional set of RARs that begin at an offset
50  * separate from the first set of RARs.
51  */
52 #define E1000_RAR_ENTRIES_82575        16
53 #define E1000_RAR_ENTRIES_82576        24
54 #define E1000_RAR_ENTRIES_82580        24
55 #define E1000_RAR_ENTRIES_I350         32
56 #define E1000_SW_SYNCH_MB              0x00000100
57 #define E1000_STAT_DEV_RST_SET         0x00100000
58 #define E1000_CTRL_DEV_RST             0x20000000
59
60 #ifdef E1000_BIT_FIELDS
61 struct e1000_adv_data_desc {
62         __le64 buffer_addr;    /* Address of the descriptor's data buffer */
63         union {
64                 u32 data;
65                 struct {
66                         u32 datalen :16; /* Data buffer length */
67                         u32 rsvd    :4;
68                         u32 dtyp    :4;  /* Descriptor type */
69                         u32 dcmd    :8;  /* Descriptor command */
70                 } config;
71         } lower;
72         union {
73                 u32 data;
74                 struct {
75                         u32 status  :4;  /* Descriptor status */
76                         u32 idx     :4;
77                         u32 popts   :6;  /* Packet Options */
78                         u32 paylen  :18; /* Payload length */
79                 } options;
80         } upper;
81 };
82
83 #define E1000_TXD_DTYP_ADV_C    0x2  /* Advanced Context Descriptor */
84 #define E1000_TXD_DTYP_ADV_D    0x3  /* Advanced Data Descriptor */
85 #define E1000_ADV_TXD_CMD_DEXT  0x20 /* Descriptor extension (0 = legacy) */
86 #define E1000_ADV_TUCMD_IPV4    0x2  /* IP Packet Type: 1=IPv4 */
87 #define E1000_ADV_TUCMD_IPV6    0x0  /* IP Packet Type: 0=IPv6 */
88 #define E1000_ADV_TUCMD_L4T_UDP 0x0  /* L4 Packet TYPE of UDP */
89 #define E1000_ADV_TUCMD_L4T_TCP 0x4  /* L4 Packet TYPE of TCP */
90 #define E1000_ADV_TUCMD_MKRREQ  0x10 /* Indicates markers are required */
91 #define E1000_ADV_DCMD_EOP      0x1  /* End of Packet */
92 #define E1000_ADV_DCMD_IFCS     0x2  /* Insert FCS (Ethernet CRC) */
93 #define E1000_ADV_DCMD_RS       0x8  /* Report Status */
94 #define E1000_ADV_DCMD_VLE      0x40 /* Add VLAN tag */
95 #define E1000_ADV_DCMD_TSE      0x80 /* TCP Seg enable */
96 /* Extended Device Control */
97 #define E1000_CTRL_EXT_NSICR    0x00000001 /* Disable Intr Clear all on read */
98
99 struct e1000_adv_context_desc {
100         union {
101                 u32 ip_config;
102                 struct {
103                         u32 iplen    :9;
104                         u32 maclen   :7;
105                         u32 vlan_tag :16;
106                 } fields;
107         } ip_setup;
108         u32 seq_num;
109         union {
110                 u64 l4_config;
111                 struct {
112                         u32 mkrloc :9;
113                         u32 tucmd  :11;
114                         u32 dtyp   :4;
115                         u32 adv    :8;
116                         u32 rsvd   :4;
117                         u32 idx    :4;
118                         u32 l4len  :8;
119                         u32 mss    :16;
120                 } fields;
121         } l4_setup;
122 };
123 #endif
124
125 /* SRRCTL bit definitions */
126 #define E1000_SRRCTL_BSIZEPKT_SHIFT                     10 /* Shift _right_ */
127 #define E1000_SRRCTL_BSIZEHDRSIZE_MASK                  0x00000F00
128 #define E1000_SRRCTL_BSIZEHDRSIZE_SHIFT                 2  /* Shift _left_ */
129 #define E1000_SRRCTL_DESCTYPE_LEGACY                    0x00000000
130 #define E1000_SRRCTL_DESCTYPE_ADV_ONEBUF                0x02000000
131 #define E1000_SRRCTL_DESCTYPE_HDR_SPLIT                 0x04000000
132 #define E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS          0x0A000000
133 #define E1000_SRRCTL_DESCTYPE_HDR_REPLICATION           0x06000000
134 #define E1000_SRRCTL_DESCTYPE_HDR_REPLICATION_LARGE_PKT 0x08000000
135 #define E1000_SRRCTL_DESCTYPE_MASK                      0x0E000000
136 #define E1000_SRRCTL_TIMESTAMP                          0x40000000
137 #define E1000_SRRCTL_DROP_EN                            0x80000000
138
139 #define E1000_SRRCTL_BSIZEPKT_MASK      0x0000007F
140 #define E1000_SRRCTL_BSIZEHDR_MASK      0x00003F00
141
142 #define E1000_TX_HEAD_WB_ENABLE   0x1
143 #define E1000_TX_SEQNUM_WB_ENABLE 0x2
144
145 #define E1000_MRQC_ENABLE_RSS_4Q            0x00000002
146 #define E1000_MRQC_ENABLE_VMDQ              0x00000003
147 #define E1000_MRQC_ENABLE_VMDQ_RSS_2Q       0x00000005
148 #define E1000_MRQC_RSS_FIELD_IPV4_UDP       0x00400000
149 #define E1000_MRQC_RSS_FIELD_IPV6_UDP       0x00800000
150 #define E1000_MRQC_RSS_FIELD_IPV6_UDP_EX    0x01000000
151 #define E1000_MRQC_ENABLE_RSS_8Q            0x00000002
152
153 #define E1000_VMRCTL_MIRROR_PORT_SHIFT      8
154 #define E1000_VMRCTL_MIRROR_DSTPORT_MASK    (7 << E1000_VMRCTL_MIRROR_PORT_SHIFT)
155 #define E1000_VMRCTL_POOL_MIRROR_ENABLE     (1 << 0)
156 #define E1000_VMRCTL_UPLINK_MIRROR_ENABLE   (1 << 1)
157 #define E1000_VMRCTL_DOWNLINK_MIRROR_ENABLE (1 << 2)
158
159 #define E1000_EICR_TX_QUEUE ( \
160     E1000_EICR_TX_QUEUE0 |    \
161     E1000_EICR_TX_QUEUE1 |    \
162     E1000_EICR_TX_QUEUE2 |    \
163     E1000_EICR_TX_QUEUE3)
164
165 #define E1000_EICR_RX_QUEUE ( \
166     E1000_EICR_RX_QUEUE0 |    \
167     E1000_EICR_RX_QUEUE1 |    \
168     E1000_EICR_RX_QUEUE2 |    \
169     E1000_EICR_RX_QUEUE3)
170
171 #define E1000_EIMS_RX_QUEUE E1000_EICR_RX_QUEUE
172 #define E1000_EIMS_TX_QUEUE E1000_EICR_TX_QUEUE
173
174 #define EIMS_ENABLE_MASK ( \
175     E1000_EIMS_RX_QUEUE  | \
176     E1000_EIMS_TX_QUEUE  | \
177     E1000_EIMS_TCP_TIMER | \
178     E1000_EIMS_OTHER)
179
180 /* Immediate Interrupt Rx (A.K.A. Low Latency Interrupt) */
181 #define E1000_IMIR_PORT_IM_EN     0x00010000  /* TCP port enable */
182 #define E1000_IMIR_PORT_BP        0x00020000  /* TCP port check bypass */
183 #define E1000_IMIREXT_SIZE_BP     0x00001000  /* Packet size bypass */
184 #define E1000_IMIREXT_CTRL_URG    0x00002000  /* Check URG bit in header */
185 #define E1000_IMIREXT_CTRL_ACK    0x00004000  /* Check ACK bit in header */
186 #define E1000_IMIREXT_CTRL_PSH    0x00008000  /* Check PSH bit in header */
187 #define E1000_IMIREXT_CTRL_RST    0x00010000  /* Check RST bit in header */
188 #define E1000_IMIREXT_CTRL_SYN    0x00020000  /* Check SYN bit in header */
189 #define E1000_IMIREXT_CTRL_FIN    0x00040000  /* Check FIN bit in header */
190 #define E1000_IMIREXT_CTRL_BP     0x00080000  /* Bypass check of ctrl bits */
191
192 /* Receive Descriptor - Advanced */
193 union e1000_adv_rx_desc {
194         struct {
195                 __le64 pkt_addr;             /* Packet buffer address */
196                 __le64 hdr_addr;             /* Header buffer address */
197         } read;
198         struct {
199                 struct {
200                         union {
201                                 __le32 data;
202                                 struct {
203                                         __le16 pkt_info; /*RSS type, Pkt type*/
204                                         /* Split Header, header buffer len */
205                                         __le16 hdr_info;
206                                 } hs_rss;
207                         } lo_dword;
208                         union {
209                                 __le32 rss;          /* RSS Hash */
210                                 struct {
211                                         __le16 ip_id;    /* IP id */
212                                         __le16 csum;     /* Packet Checksum */
213                                 } csum_ip;
214                         } hi_dword;
215                 } lower;
216                 struct {
217                         __le32 status_error;     /* ext status/error */
218                         __le16 length;           /* Packet length */
219                         __le16 vlan;             /* VLAN tag */
220                 } upper;
221         } wb;  /* writeback */
222 };
223
224 #define E1000_RXDADV_RSSTYPE_MASK        0x0000000F
225 #define E1000_RXDADV_RSSTYPE_SHIFT       12
226 #define E1000_RXDADV_HDRBUFLEN_MASK      0x7FE0
227 #define E1000_RXDADV_HDRBUFLEN_SHIFT     5
228 #define E1000_RXDADV_SPLITHEADER_EN      0x00001000
229 #define E1000_RXDADV_SPH                 0x8000
230 #define E1000_RXDADV_STAT_TS             0x10000 /* Pkt was time stamped */
231 #define E1000_RXDADV_STAT_TSIP           0x08000 /* timestamp in packet */
232 #define E1000_RXDADV_ERR_HBO             0x00800000
233
234 /* RSS Hash results */
235 #define E1000_RXDADV_RSSTYPE_NONE        0x00000000
236 #define E1000_RXDADV_RSSTYPE_IPV4_TCP    0x00000001
237 #define E1000_RXDADV_RSSTYPE_IPV4        0x00000002
238 #define E1000_RXDADV_RSSTYPE_IPV6_TCP    0x00000003
239 #define E1000_RXDADV_RSSTYPE_IPV6_EX     0x00000004
240 #define E1000_RXDADV_RSSTYPE_IPV6        0x00000005
241 #define E1000_RXDADV_RSSTYPE_IPV6_TCP_EX 0x00000006
242 #define E1000_RXDADV_RSSTYPE_IPV4_UDP    0x00000007
243 #define E1000_RXDADV_RSSTYPE_IPV6_UDP    0x00000008
244 #define E1000_RXDADV_RSSTYPE_IPV6_UDP_EX 0x00000009
245
246 /* RSS Packet Types as indicated in the receive descriptor */
247 #define E1000_RXDADV_PKTTYPE_NONE        0x00000000
248 #define E1000_RXDADV_PKTTYPE_IPV4        0x00000010 /* IPV4 hdr present */
249 #define E1000_RXDADV_PKTTYPE_IPV4_EX     0x00000020 /* IPV4 hdr + extensions */
250 #define E1000_RXDADV_PKTTYPE_IPV6        0x00000040 /* IPV6 hdr present */
251 #define E1000_RXDADV_PKTTYPE_IPV6_EX     0x00000080 /* IPV6 hdr + extensions */
252 #define E1000_RXDADV_PKTTYPE_TCP         0x00000100 /* TCP hdr present */
253 #define E1000_RXDADV_PKTTYPE_UDP         0x00000200 /* UDP hdr present */
254 #define E1000_RXDADV_PKTTYPE_SCTP        0x00000400 /* SCTP hdr present */
255 #define E1000_RXDADV_PKTTYPE_NFS         0x00000800 /* NFS hdr present */
256
257 #define E1000_RXDADV_PKTTYPE_IPSEC_ESP   0x00001000 /* IPSec ESP */
258 #define E1000_RXDADV_PKTTYPE_IPSEC_AH    0x00002000 /* IPSec AH */
259 #define E1000_RXDADV_PKTTYPE_LINKSEC     0x00004000 /* LinkSec Encap */
260 #define E1000_RXDADV_PKTTYPE_ETQF        0x00008000 /* PKTTYPE is ETQF index */
261 #define E1000_RXDADV_PKTTYPE_ETQF_MASK   0x00000070 /* ETQF has 8 indices */
262 #define E1000_RXDADV_PKTTYPE_ETQF_SHIFT  4          /* Right-shift 4 bits */
263
264 /* LinkSec results */
265 /* Security Processing bit Indication */
266 #define E1000_RXDADV_LNKSEC_STATUS_SECP         0x00020000
267 #define E1000_RXDADV_LNKSEC_ERROR_BIT_MASK      0x18000000
268 #define E1000_RXDADV_LNKSEC_ERROR_NO_SA_MATCH   0x08000000
269 #define E1000_RXDADV_LNKSEC_ERROR_REPLAY_ERROR  0x10000000
270 #define E1000_RXDADV_LNKSEC_ERROR_BAD_SIG       0x18000000
271
272 #define E1000_RXDADV_IPSEC_STATUS_SECP          0x00020000
273 #define E1000_RXDADV_IPSEC_ERROR_BIT_MASK       0x18000000
274 #define E1000_RXDADV_IPSEC_ERROR_INVALID_PROTOCOL       0x08000000
275 #define E1000_RXDADV_IPSEC_ERROR_INVALID_LENGTH         0x10000000
276 #define E1000_RXDADV_IPSEC_ERROR_AUTHENTICATION_FAILED  0x18000000
277
278 /* Transmit Descriptor - Advanced */
279 union e1000_adv_tx_desc {
280         struct {
281                 __le64 buffer_addr;    /* Address of descriptor's data buf */
282                 __le32 cmd_type_len;
283                 __le32 olinfo_status;
284         } read;
285         struct {
286                 __le64 rsvd;       /* Reserved */
287                 __le32 nxtseq_seed;
288                 __le32 status;
289         } wb;
290 };
291
292 /* Adv Transmit Descriptor Config Masks */
293 #define E1000_ADVTXD_DTYP_CTXT    0x00200000 /* Advanced Context Descriptor */
294 #define E1000_ADVTXD_DTYP_DATA    0x00300000 /* Advanced Data Descriptor */
295 #define E1000_ADVTXD_DCMD_EOP     0x01000000 /* End of Packet */
296 #define E1000_ADVTXD_DCMD_IFCS    0x02000000 /* Insert FCS (Ethernet CRC) */
297 #define E1000_ADVTXD_DCMD_RS      0x08000000 /* Report Status */
298 #define E1000_ADVTXD_DCMD_DDTYP_ISCSI  0x10000000 /* DDP hdr type or iSCSI */
299 #define E1000_ADVTXD_DCMD_DEXT    0x20000000 /* Descriptor extension (1=Adv) */
300 #define E1000_ADVTXD_DCMD_VLE     0x40000000 /* VLAN pkt enable */
301 #define E1000_ADVTXD_DCMD_TSE     0x80000000 /* TCP Seg enable */
302 #define E1000_ADVTXD_MAC_LINKSEC  0x00040000 /* Apply LinkSec on packet */
303 #define E1000_ADVTXD_MAC_TSTAMP   0x00080000 /* IEEE1588 Timestamp packet */
304 #define E1000_ADVTXD_STAT_SN_CRC  0x00000002 /* NXTSEQ/SEED present in WB */
305 #define E1000_ADVTXD_IDX_SHIFT    4  /* Adv desc Index shift */
306 #define E1000_ADVTXD_POPTS_ISCO_1ST  0x00000000 /* 1st TSO of iSCSI PDU */
307 #define E1000_ADVTXD_POPTS_ISCO_MDL  0x00000800 /* Middle TSO of iSCSI PDU */
308 #define E1000_ADVTXD_POPTS_ISCO_LAST 0x00001000 /* Last TSO of iSCSI PDU */
309 #define E1000_ADVTXD_POPTS_ISCO_FULL 0x00001800 /* 1st&Last TSO-full iSCSI PDU*/
310 #define E1000_ADVTXD_POPTS_IPSEC     0x00000400 /* IPSec offload request */
311 #define E1000_ADVTXD_PAYLEN_SHIFT    14 /* Adv desc PAYLEN shift */
312
313 /* Context descriptors */
314 struct e1000_adv_tx_context_desc {
315         __le32 vlan_macip_lens;
316         __le32 seqnum_seed;
317         __le32 type_tucmd_mlhl;
318         __le32 mss_l4len_idx;
319 };
320
321 #define E1000_ADVTXD_MACLEN_SHIFT    9  /* Adv ctxt desc mac len shift */
322 #define E1000_ADVTXD_VLAN_SHIFT     16  /* Adv ctxt vlan tag shift */
323 #define E1000_ADVTXD_TUCMD_IPV4    0x00000400  /* IP Packet Type: 1=IPv4 */
324 #define E1000_ADVTXD_TUCMD_IPV6    0x00000000  /* IP Packet Type: 0=IPv6 */
325 #define E1000_ADVTXD_TUCMD_L4T_UDP 0x00000000  /* L4 Packet TYPE of UDP */
326 #define E1000_ADVTXD_TUCMD_L4T_TCP 0x00000800  /* L4 Packet TYPE of TCP */
327 #define E1000_ADVTXD_TUCMD_L4T_SCTP 0x00001000  /* L4 Packet TYPE of SCTP */
328 #define E1000_ADVTXD_TUCMD_IPSEC_TYPE_ESP    0x00002000 /* IPSec Type ESP */
329 /* IPSec Encrypt Enable for ESP */
330 #define E1000_ADVTXD_TUCMD_IPSEC_ENCRYPT_EN  0x00004000
331 #define E1000_ADVTXD_TUCMD_MKRREQ  0x00002000 /* Req requires Markers and CRC */
332 #define E1000_ADVTXD_L4LEN_SHIFT     8  /* Adv ctxt L4LEN shift */
333 #define E1000_ADVTXD_MSS_SHIFT      16  /* Adv ctxt MSS shift */
334 /* Adv ctxt IPSec SA IDX mask */
335 #define E1000_ADVTXD_IPSEC_SA_INDEX_MASK     0x000000FF
336 /* Adv ctxt IPSec ESP len mask */
337 #define E1000_ADVTXD_IPSEC_ESP_LEN_MASK      0x000000FF
338
339 /* Additional Transmit Descriptor Control definitions */
340 #define E1000_TXDCTL_QUEUE_ENABLE  0x02000000 /* Enable specific Tx Queue */
341 #define E1000_TXDCTL_SWFLSH        0x04000000 /* Tx Desc. write-back flushing */
342 /* Tx Queue Arbitration Priority 0=low, 1=high */
343 #define E1000_TXDCTL_PRIORITY      0x08000000
344
345 /* Additional Receive Descriptor Control definitions */
346 #define E1000_RXDCTL_QUEUE_ENABLE  0x02000000 /* Enable specific Rx Queue */
347 #define E1000_RXDCTL_SWFLSH        0x04000000 /* Rx Desc. write-back flushing */
348
349 /* Direct Cache Access (DCA) definitions */
350 #define E1000_DCA_CTRL_DCA_ENABLE  0x00000000 /* DCA Enable */
351 #define E1000_DCA_CTRL_DCA_DISABLE 0x00000001 /* DCA Disable */
352
353 #define E1000_DCA_CTRL_DCA_MODE_CB1 0x00 /* DCA Mode CB1 */
354 #define E1000_DCA_CTRL_DCA_MODE_CB2 0x02 /* DCA Mode CB2 */
355
356 #define E1000_DCA_RXCTRL_CPUID_MASK 0x0000001F /* Rx CPUID Mask */
357 #define E1000_DCA_RXCTRL_DESC_DCA_EN (1 << 5) /* DCA Rx Desc enable */
358 #define E1000_DCA_RXCTRL_HEAD_DCA_EN (1 << 6) /* DCA Rx Desc header enable */
359 #define E1000_DCA_RXCTRL_DATA_DCA_EN (1 << 7) /* DCA Rx Desc payload enable */
360
361 #define E1000_DCA_TXCTRL_CPUID_MASK 0x0000001F /* Tx CPUID Mask */
362 #define E1000_DCA_TXCTRL_DESC_DCA_EN (1 << 5) /* DCA Tx Desc enable */
363 #define E1000_DCA_TXCTRL_TX_WB_RO_EN (1 << 11) /* Tx Desc writeback RO bit */
364
365 #define E1000_DCA_TXCTRL_CPUID_MASK_82576 0xFF000000 /* Tx CPUID Mask */
366 #define E1000_DCA_RXCTRL_CPUID_MASK_82576 0xFF000000 /* Rx CPUID Mask */
367 #define E1000_DCA_TXCTRL_CPUID_SHIFT_82576 24 /* Tx CPUID */
368 #define E1000_DCA_RXCTRL_CPUID_SHIFT_82576 24 /* Rx CPUID */
369
370 /* Additional interrupt register bit definitions */
371 #define E1000_ICR_LSECPNS       0x00000020          /* PN threshold - server */
372 #define E1000_IMS_LSECPNS       E1000_ICR_LSECPNS   /* PN threshold - server */
373 #define E1000_ICS_LSECPNS       E1000_ICR_LSECPNS   /* PN threshold - server */
374
375 /* ETQF register bit definitions */
376 #define E1000_ETQF_FILTER_ENABLE   (1 << 26)
377 #define E1000_ETQF_IMM_INT         (1 << 29)
378 #define E1000_ETQF_1588            (1 << 30)
379 #define E1000_ETQF_QUEUE_ENABLE    (1 << 31)
380 /*
381  * ETQF filter list: one static filter per filter consumer. This is
382  *                   to avoid filter collisions later. Add new filters
383  *                   here!!
384  *
385  * Current filters:
386  *    EAPOL 802.1x (0x888e): Filter 0
387  */
388 #define E1000_ETQF_FILTER_EAPOL          0
389
390 #define E1000_FTQF_VF_BP               0x00008000
391 #define E1000_FTQF_1588_TIME_STAMP     0x08000000
392 #define E1000_FTQF_MASK                0xF0000000
393 #define E1000_FTQF_MASK_PROTO_BP       0x10000000
394 #define E1000_FTQF_MASK_SOURCE_ADDR_BP 0x20000000
395 #define E1000_FTQF_MASK_DEST_ADDR_BP   0x40000000
396 #define E1000_FTQF_MASK_SOURCE_PORT_BP 0x80000000
397
398 #define E1000_NVM_APME_82575          0x0400
399 #define MAX_NUM_VFS                   8
400
401 #define E1000_DTXSWC_MAC_SPOOF_MASK   0x000000FF /* Per VF MAC spoof control */
402 #define E1000_DTXSWC_VLAN_SPOOF_MASK  0x0000FF00 /* Per VF VLAN spoof control */
403 #define E1000_DTXSWC_LLE_MASK         0x00FF0000 /* Per VF Local LB enables */
404 #define E1000_DTXSWC_VLAN_SPOOF_SHIFT 8
405 #define E1000_DTXSWC_LLE_SHIFT        16
406 #define E1000_DTXSWC_VMDQ_LOOPBACK_EN (1 << 31)  /* global VF LB enable */
407
408 /* Easy defines for setting default pool, would normally be left a zero */
409 #define E1000_VT_CTL_DEFAULT_POOL_SHIFT 7
410 #define E1000_VT_CTL_DEFAULT_POOL_MASK  (0x7 << E1000_VT_CTL_DEFAULT_POOL_SHIFT)
411
412 /* Other useful VMD_CTL register defines */
413 #define E1000_VT_CTL_IGNORE_MAC         (1 << 28)
414 #define E1000_VT_CTL_DISABLE_DEF_POOL   (1 << 29)
415 #define E1000_VT_CTL_VM_REPL_EN         (1 << 30)
416
417 /* Per VM Offload register setup */
418 #define E1000_VMOLR_RLPML_MASK 0x00003FFF /* Long Packet Maximum Length mask */
419 #define E1000_VMOLR_LPE        0x00010000 /* Accept Long packet */
420 #define E1000_VMOLR_RSSE       0x00020000 /* Enable RSS */
421 #define E1000_VMOLR_AUPE       0x01000000 /* Accept untagged packets */
422 #define E1000_VMOLR_ROMPE      0x02000000 /* Accept overflow multicast */
423 #define E1000_VMOLR_ROPE       0x04000000 /* Accept overflow unicast */
424 #define E1000_VMOLR_BAM        0x08000000 /* Accept Broadcast packets */
425 #define E1000_VMOLR_MPME       0x10000000 /* Multicast promiscuous mode */
426 #define E1000_VMOLR_STRVLAN    0x40000000 /* Vlan stripping enable */
427 #define E1000_VMOLR_STRCRC     0x80000000 /* CRC stripping enable */
428
429 #define E1000_VMOLR_VPE        0x00800000 /* VLAN promiscuous enable */
430 #define E1000_VMOLR_UPE        0x20000000 /* Unicast promisuous enable */
431 #define E1000_DVMOLR_HIDVLAN   0x20000000 /* Vlan hiding enable */
432 #define E1000_DVMOLR_STRVLAN   0x40000000 /* Vlan stripping enable */
433 #define E1000_DVMOLR_STRCRC    0x80000000 /* CRC stripping enable */
434
435 #define E1000_PBRWAC_WALPB     0x00000007 /* Wrap around event on LAN Rx PB */
436 #define E1000_PBRWAC_PBE       0x00000008 /* Rx packet buffer empty */
437
438 #define E1000_VLVF_ARRAY_SIZE     32
439 #define E1000_VLVF_VLANID_MASK    0x00000FFF
440 #define E1000_VLVF_POOLSEL_SHIFT  12
441 #define E1000_VLVF_POOLSEL_MASK   (0xFF << E1000_VLVF_POOLSEL_SHIFT)
442 #define E1000_VLVF_LVLAN          0x00100000
443 #define E1000_VLVF_VLANID_ENABLE  0x80000000
444
445 #define E1000_VMVIR_VLANA_DEFAULT 0x40000000 /* Always use default VLAN */
446 #define E1000_VMVIR_VLANA_NEVER   0x80000000 /* Never insert VLAN tag */
447
448 #define E1000_VF_INIT_TIMEOUT 200 /* Number of retries to clear RSTI */
449
450 #define E1000_IOVCTL 0x05BBC
451 #define E1000_IOVCTL_REUSE_VFQ 0x00000001
452
453 #define E1000_RPLOLR_STRVLAN   0x40000000
454 #define E1000_RPLOLR_STRCRC    0x80000000
455
456 #define E1000_TCTL_EXT_COLD       0x000FFC00
457 #define E1000_TCTL_EXT_COLD_SHIFT 10
458
459 #define E1000_DTXCTL_8023LL     0x0004
460 #define E1000_DTXCTL_VLAN_ADDED 0x0008
461 #define E1000_DTXCTL_OOS_ENABLE 0x0010
462 #define E1000_DTXCTL_MDP_EN     0x0020
463 #define E1000_DTXCTL_SPOOF_INT  0x0040
464
465 #define ALL_QUEUES   0xFFFF
466
467 /* Rx packet buffer size defines */
468 #define E1000_RXPBS_SIZE_MASK_82576  0x0000007F
469 void e1000_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable);
470 void e1000_vmdq_set_anti_spoofing_pf(struct e1000_hw *hw, bool enable, int pf);
471 void e1000_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable);
472 s32 e1000_init_nvm_params_82575(struct e1000_hw *hw);
473
474 enum e1000_promisc_type {
475         e1000_promisc_disabled = 0,   /* all promisc modes disabled */
476         e1000_promisc_unicast = 1,    /* unicast promiscuous enabled */
477         e1000_promisc_multicast = 2,  /* multicast promiscuous enabled */
478         e1000_promisc_enabled = 3,    /* both uni and multicast promisc */
479         e1000_num_promisc_types
480 };
481
482 void e1000_vfta_set_vf(struct e1000_hw *, u16, bool);
483 void e1000_rlpml_set_vf(struct e1000_hw *, u16);
484 s32 e1000_promisc_set_vf(struct e1000_hw *, enum e1000_promisc_type type);
485 u16 e1000_rxpbs_adjust_82580(u32 data);
486 s32 e1000_set_eee_i350(struct e1000_hw *);
487 #endif /* _E1000_82575_H_ */