1 /******************************************************************************
3 Copyright (c) 2001-2010, Intel Corporation
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
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.
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.
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.
32 ******************************************************************************/
42 #include "e1000_osdep.h"
43 #include "e1000_regs.h"
44 #include "e1000_defines.h"
48 #define E1000_DEV_ID_82576_VF 0x10CA
49 #define E1000_DEV_ID_I350_VF 0x1520
51 #define E1000_VF_INIT_TIMEOUT 200 /* Number of retries to clear RSTI */
53 /* Additional Descriptor Control definitions */
54 #define E1000_TXDCTL_QUEUE_ENABLE 0x02000000 /* Enable specific Tx Queue */
55 #define E1000_RXDCTL_QUEUE_ENABLE 0x02000000 /* Enable specific Rx Queue */
57 /* SRRCTL bit definitions */
58 #define E1000_SRRCTL_BSIZEPKT_SHIFT 10 /* Shift _right_ */
59 #define E1000_SRRCTL_BSIZEHDRSIZE_MASK 0x00000F00
60 #define E1000_SRRCTL_BSIZEHDRSIZE_SHIFT 2 /* Shift _left_ */
61 #define E1000_SRRCTL_DESCTYPE_LEGACY 0x00000000
62 #define E1000_SRRCTL_DESCTYPE_ADV_ONEBUF 0x02000000
63 #define E1000_SRRCTL_DESCTYPE_HDR_SPLIT 0x04000000
64 #define E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS 0x0A000000
65 #define E1000_SRRCTL_DESCTYPE_HDR_REPLICATION 0x06000000
66 #define E1000_SRRCTL_DESCTYPE_HDR_REPLICATION_LARGE_PKT 0x08000000
67 #define E1000_SRRCTL_DESCTYPE_MASK 0x0E000000
68 #define E1000_SRRCTL_DROP_EN 0x80000000
70 #define E1000_SRRCTL_BSIZEPKT_MASK 0x0000007F
71 #define E1000_SRRCTL_BSIZEHDR_MASK 0x00003F00
73 /* Interrupt Defines */
74 #define E1000_EICR 0x01580 /* Ext. Interrupt Cause Read - R/clr */
75 #define E1000_EITR(_n) (0x01680 + ((_n) << 2))
76 #define E1000_EICS 0x01520 /* Ext. Interrupt Cause Set - W0 */
77 #define E1000_EIMS 0x01524 /* Ext. Interrupt Mask Set/Read - RW */
78 #define E1000_EIMC 0x01528 /* Ext. Interrupt Mask Clear - WO */
79 #define E1000_EIAC 0x0152C /* Ext. Interrupt Auto Clear - RW */
80 #define E1000_EIAM 0x01530 /* Ext. Interrupt Ack Auto Clear Mask - RW */
81 #define E1000_IVAR0 0x01700 /* Interrupt Vector Allocation (array) - RW */
82 #define E1000_IVAR_MISC 0x01740 /* IVAR for "other" causes - RW */
83 #define E1000_IVAR_VALID 0x80
85 /* Receive Descriptor - Advanced */
86 union e1000_adv_rx_desc
{
88 u64 pkt_addr
; /* Packet buffer address */
89 u64 hdr_addr
; /* Header buffer address */
96 /* RSS type, Packet type */
98 /* Split Header, header buffer len */
103 u32 rss
; /* RSS Hash */
105 u16 ip_id
; /* IP id */
106 u16 csum
; /* Packet Checksum */
111 u32 status_error
; /* ext status/error */
112 u16 length
; /* Packet length */
113 u16 vlan
; /* VLAN tag */
115 } wb
; /* writeback */
118 #define E1000_RXDADV_HDRBUFLEN_MASK 0x7FE0
119 #define E1000_RXDADV_HDRBUFLEN_SHIFT 5
121 /* Transmit Descriptor - Advanced */
122 union e1000_adv_tx_desc
{
124 u64 buffer_addr
; /* Address of descriptor's data buf */
129 u64 rsvd
; /* Reserved */
135 /* Adv Transmit Descriptor Config Masks */
136 #define E1000_ADVTXD_DTYP_CTXT 0x00200000 /* Advanced Context Descriptor */
137 #define E1000_ADVTXD_DTYP_DATA 0x00300000 /* Advanced Data Descriptor */
138 #define E1000_ADVTXD_DCMD_EOP 0x01000000 /* End of Packet */
139 #define E1000_ADVTXD_DCMD_IFCS 0x02000000 /* Insert FCS (Ethernet CRC) */
140 #define E1000_ADVTXD_DCMD_RS 0x08000000 /* Report Status */
141 #define E1000_ADVTXD_DCMD_DEXT 0x20000000 /* Descriptor extension (1=Adv) */
142 #define E1000_ADVTXD_DCMD_VLE 0x40000000 /* VLAN pkt enable */
143 #define E1000_ADVTXD_DCMD_TSE 0x80000000 /* TCP Seg enable */
144 #define E1000_ADVTXD_PAYLEN_SHIFT 14 /* Adv desc PAYLEN shift */
146 /* Context descriptors */
147 struct e1000_adv_tx_context_desc
{
154 #define E1000_ADVTXD_MACLEN_SHIFT 9 /* Adv ctxt desc mac len shift */
155 #define E1000_ADVTXD_TUCMD_IPV4 0x00000400 /* IP Packet Type: 1=IPv4 */
156 #define E1000_ADVTXD_TUCMD_L4T_TCP 0x00000800 /* L4 Packet TYPE of TCP */
157 #define E1000_ADVTXD_L4LEN_SHIFT 8 /* Adv ctxt L4LEN shift */
158 #define E1000_ADVTXD_MSS_SHIFT 16 /* Adv ctxt MSS shift */
160 enum e1000_mac_type
{
164 e1000_num_macs
/* List is 1-based, so subtract 1 for TRUE count. */
167 struct e1000_vf_stats
{
199 #include "e1000_mbx.h"
201 struct e1000_mac_operations
{
202 /* Function pointers for the MAC. */
203 s32 (*init_params
)(struct e1000_hw
*);
204 s32 (*check_for_link
)(struct e1000_hw
*);
205 void (*clear_vfta
)(struct e1000_hw
*);
206 s32 (*get_bus_info
)(struct e1000_hw
*);
207 s32 (*get_link_up_info
)(struct e1000_hw
*, u16
*, u16
*);
208 void (*update_mc_addr_list
)(struct e1000_hw
*, u8
*, u32
);
209 s32 (*reset_hw
)(struct e1000_hw
*);
210 s32 (*init_hw
)(struct e1000_hw
*);
211 s32 (*setup_link
)(struct e1000_hw
*);
212 void (*write_vfta
)(struct e1000_hw
*, u32
, u32
);
213 void (*rar_set
)(struct e1000_hw
*, u8
*, u32
);
214 s32 (*read_mac_addr
)(struct e1000_hw
*);
217 struct e1000_mac_info
{
218 struct e1000_mac_operations ops
;
222 enum e1000_mac_type type
;
227 bool get_link_status
;
230 struct e1000_mbx_operations
{
231 s32 (*init_params
)(struct e1000_hw
*hw
);
232 s32 (*read
)(struct e1000_hw
*, u32
*, u16
, u16
);
233 s32 (*write
)(struct e1000_hw
*, u32
*, u16
, u16
);
234 s32 (*read_posted
)(struct e1000_hw
*, u32
*, u16
, u16
);
235 s32 (*write_posted
)(struct e1000_hw
*, u32
*, u16
, u16
);
236 s32 (*check_for_msg
)(struct e1000_hw
*, u16
);
237 s32 (*check_for_ack
)(struct e1000_hw
*, u16
);
238 s32 (*check_for_rst
)(struct e1000_hw
*, u16
);
241 struct e1000_mbx_stats
{
250 struct e1000_mbx_info
{
251 struct e1000_mbx_operations ops
;
252 struct e1000_mbx_stats stats
;
258 struct e1000_dev_spec_vf
{
268 unsigned long io_base
;
270 struct e1000_mac_info mac
;
271 struct e1000_mbx_info mbx
;
274 struct e1000_dev_spec_vf vf
;
278 u16 subsystem_vendor_id
;
279 u16 subsystem_device_id
;
285 enum e1000_promisc_type
{
286 e1000_promisc_disabled
= 0, /* all promisc modes disabled */
287 e1000_promisc_unicast
= 1, /* unicast promiscuous enabled */
288 e1000_promisc_multicast
= 2, /* multicast promiscuous enabled */
289 e1000_promisc_enabled
= 3, /* both uni and multicast promisc */
290 e1000_num_promisc_types
293 /* These functions must be implemented by drivers */
294 s32
e1000_read_pcie_cap_reg(struct e1000_hw
*hw
, u32 reg
, u16
*value
);
295 void e1000_vfta_set_vf(struct e1000_hw
*, u16
, bool);
296 void e1000_rlpml_set_vf(struct e1000_hw
*, u16
);
297 s32
e1000_promisc_set_vf(struct e1000_hw
*, enum e1000_promisc_type
);
303 #endif /* _E1000_VF_H_ */