1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright(c) 1999 - 2006 Intel Corporation. */
4 /* Linux PRO/1000 Ethernet Driver main header file */
9 #include <linux/stddef.h>
10 #include <linux/module.h>
11 #include <linux/types.h>
12 #include <asm/byteorder.h>
14 #include <linux/errno.h>
15 #include <linux/ioport.h>
16 #include <linux/pci.h>
17 #include <linux/kernel.h>
18 #include <linux/netdevice.h>
19 #include <linux/etherdevice.h>
20 #include <linux/skbuff.h>
21 #include <linux/delay.h>
22 #include <linux/timer.h>
23 #include <linux/slab.h>
24 #include <linux/vmalloc.h>
25 #include <linux/interrupt.h>
26 #include <linux/string.h>
27 #include <linux/pagemap.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/bitops.h>
32 #include <linux/capability.h>
35 #include <linux/ipv6.h>
36 #include <linux/tcp.h>
37 #include <linux/udp.h>
38 #include <net/pkt_sched.h>
39 #include <linux/list.h>
40 #include <linux/reboot.h>
41 #include <net/checksum.h>
42 #include <linux/mii.h>
43 #include <linux/ethtool.h>
44 #include <linux/if_vlan.h>
50 #define INTEL_E1000_ETHERNET_DEVICE(device_id) {\
51 PCI_DEVICE(PCI_VENDOR_ID_INTEL, device_id)}
57 #define E1000_MAX_INTR 10
60 * Count for polling __E1000_RESET condition every 10-20msec.
62 #define E1000_CHECK_RESET_COUNT 50
64 /* TX/RX descriptor defines */
65 #define E1000_DEFAULT_TXD 256
66 #define E1000_MAX_TXD 256
67 #define E1000_MIN_TXD 48
68 #define E1000_MAX_82544_TXD 4096
70 #define E1000_DEFAULT_RXD 256
71 #define E1000_MAX_RXD 256
72 #define E1000_MIN_RXD 48
73 #define E1000_MAX_82544_RXD 4096
75 #define E1000_MIN_ITR_USECS 10 /* 100000 irq/sec */
76 #define E1000_MAX_ITR_USECS 10000 /* 100 irq/sec */
78 /* this is the size past which hardware will drop packets when setting LPE=0 */
79 #define MAXIMUM_ETHERNET_VLAN_SIZE 1522
81 /* Supported Rx Buffer Sizes */
82 #define E1000_RXBUFFER_128 128 /* Used for packet split */
83 #define E1000_RXBUFFER_256 256 /* Used for packet split */
84 #define E1000_RXBUFFER_512 512
85 #define E1000_RXBUFFER_1024 1024
86 #define E1000_RXBUFFER_2048 2048
87 #define E1000_RXBUFFER_4096 4096
88 #define E1000_RXBUFFER_8192 8192
89 #define E1000_RXBUFFER_16384 16384
91 /* SmartSpeed delimiters */
92 #define E1000_SMARTSPEED_DOWNSHIFT 3
93 #define E1000_SMARTSPEED_MAX 15
95 /* Packet Buffer allocations */
96 #define E1000_PBA_BYTES_SHIFT 0xA
97 #define E1000_TX_HEAD_ADDR_SHIFT 7
98 #define E1000_PBA_TX_MASK 0xFFFF0000
100 /* Flow Control Watermarks */
101 #define E1000_FC_HIGH_DIFF 0x1638 /* High: 5688 bytes below Rx FIFO size */
102 #define E1000_FC_LOW_DIFF 0x1640 /* Low: 5696 bytes below Rx FIFO size */
104 #define E1000_FC_PAUSE_TIME 0xFFFF /* pause for the max or until send xon */
106 /* How many Tx Descriptors do we need to call netif_wake_queue ? */
107 #define E1000_TX_QUEUE_WAKE 16
108 /* How many Rx Buffers do we bundle into one write to the hardware ? */
109 #define E1000_RX_BUFFER_WRITE 16 /* Must be power of 2 */
111 #define AUTO_ALL_MODES 0
112 #define E1000_EEPROM_82544_APM 0x0004
113 #define E1000_EEPROM_APME 0x0400
115 #ifndef E1000_MASTER_SLAVE
116 /* Switch to override PHY master/slave setting */
117 #define E1000_MASTER_SLAVE e1000_ms_hw_default
120 #define E1000_MNG_VLAN_NONE (-1)
122 /* wrapper around a pointer to a socket buffer,
123 * so a DMA handle can be stored along with the buffer
125 struct e1000_tx_buffer
{
128 unsigned long time_stamp
;
133 unsigned int bytecount
;
136 struct e1000_rx_buffer
{
138 struct page
*page
; /* jumbo: alloc_page */
139 u8
*data
; /* else, netdev_alloc_frag */
144 struct e1000_tx_ring
{
145 /* pointer to the descriptor ring memory */
147 /* physical address of the descriptor ring */
149 /* length of descriptor ring in bytes */
151 /* number of descriptors in the ring */
153 /* next descriptor to associate a buffer with */
154 unsigned int next_to_use
;
155 /* next descriptor to check for DD status bit */
156 unsigned int next_to_clean
;
157 /* array of buffer information structs */
158 struct e1000_tx_buffer
*buffer_info
;
165 struct e1000_rx_ring
{
166 /* pointer to the descriptor ring memory */
168 /* physical address of the descriptor ring */
170 /* length of descriptor ring in bytes */
172 /* number of descriptors in the ring */
174 /* next descriptor to associate a buffer with */
175 unsigned int next_to_use
;
176 /* next descriptor to check for DD status bit */
177 unsigned int next_to_clean
;
178 /* array of buffer information structs */
179 struct e1000_rx_buffer
*buffer_info
;
180 struct sk_buff
*rx_skb_top
;
182 /* cpu for rx queue */
189 #define E1000_DESC_UNUSED(R) \
191 unsigned int clean = smp_load_acquire(&(R)->next_to_clean); \
192 unsigned int use = READ_ONCE((R)->next_to_use); \
193 (clean > use ? 0 : (R)->count) + clean - use - 1; \
196 #define E1000_RX_DESC_EXT(R, i) \
197 (&(((union e1000_rx_desc_extended *)((R).desc))[i]))
198 #define E1000_GET_DESC(R, i, type) (&(((struct type *)((R).desc))[i]))
199 #define E1000_RX_DESC(R, i) E1000_GET_DESC(R, i, e1000_rx_desc)
200 #define E1000_TX_DESC(R, i) E1000_GET_DESC(R, i, e1000_tx_desc)
201 #define E1000_CONTEXT_DESC(R, i) E1000_GET_DESC(R, i, e1000_context_desc)
203 /* board specific private data structure */
205 struct e1000_adapter
{
206 unsigned long active_vlans
[BITS_TO_LONGS(VLAN_N_VID
)];
215 spinlock_t stats_lock
;
216 unsigned int total_tx_bytes
;
217 unsigned int total_tx_packets
;
218 unsigned int total_rx_bytes
;
219 unsigned int total_rx_packets
;
220 /* Interrupt Throttle Rate */
229 struct e1000_tx_ring
*tx_ring
; /* One per active queue */
230 unsigned int restart_queue
;
233 u32 tx_abs_int_delay
;
238 u32 tx_timeout_count
;
242 u8 tx_timeout_factor
;
243 atomic_t tx_fifo_stall
;
249 bool (*clean_rx
)(struct e1000_adapter
*adapter
,
250 struct e1000_rx_ring
*rx_ring
,
251 int *work_done
, int work_to_do
);
252 void (*alloc_rx_buf
)(struct e1000_adapter
*adapter
,
253 struct e1000_rx_ring
*rx_ring
,
255 struct e1000_rx_ring
*rx_ring
; /* One per active queue */
256 struct napi_struct napi
;
263 u32 alloc_rx_buff_failed
;
265 u32 rx_abs_int_delay
;
270 /* OS defined structs */
271 struct net_device
*netdev
;
272 struct pci_dev
*pdev
;
274 /* structs defined in e1000_hw.h */
276 struct e1000_hw_stats stats
;
277 struct e1000_phy_info phy_info
;
278 struct e1000_phy_stats phy_stats
;
281 struct e1000_tx_ring test_tx_ring
;
282 struct e1000_rx_ring test_rx_ring
;
286 /* to not mess up cache alignment, always add to the bottom */
288 bool smart_power_down
; /* phy smart power down */
293 /* for ioport free */
299 struct work_struct reset_task
;
300 struct delayed_work watchdog_task
;
301 struct delayed_work fifo_stall_task
;
302 struct delayed_work phy_info_task
;
313 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
315 struct net_device
*e1000_get_hw_dev(struct e1000_hw
*hw
);
316 #define e_dbg(format, arg...) \
317 netdev_dbg(e1000_get_hw_dev(hw), format, ## arg)
318 #define e_err(msglvl, format, arg...) \
319 netif_err(adapter, msglvl, adapter->netdev, format, ## arg)
320 #define e_info(msglvl, format, arg...) \
321 netif_info(adapter, msglvl, adapter->netdev, format, ## arg)
322 #define e_warn(msglvl, format, arg...) \
323 netif_warn(adapter, msglvl, adapter->netdev, format, ## arg)
324 #define e_notice(msglvl, format, arg...) \
325 netif_notice(adapter, msglvl, adapter->netdev, format, ## arg)
326 #define e_dev_info(format, arg...) \
327 dev_info(&adapter->pdev->dev, format, ## arg)
328 #define e_dev_warn(format, arg...) \
329 dev_warn(&adapter->pdev->dev, format, ## arg)
330 #define e_dev_err(format, arg...) \
331 dev_err(&adapter->pdev->dev, format, ## arg)
333 extern char e1000_driver_name
[];
334 extern const char e1000_driver_version
[];
336 int e1000_open(struct net_device
*netdev
);
337 int e1000_close(struct net_device
*netdev
);
338 int e1000_up(struct e1000_adapter
*adapter
);
339 void e1000_down(struct e1000_adapter
*adapter
);
340 void e1000_reinit_locked(struct e1000_adapter
*adapter
);
341 void e1000_reset(struct e1000_adapter
*adapter
);
342 int e1000_set_spd_dplx(struct e1000_adapter
*adapter
, u32 spd
, u8 dplx
);
343 int e1000_setup_all_rx_resources(struct e1000_adapter
*adapter
);
344 int e1000_setup_all_tx_resources(struct e1000_adapter
*adapter
);
345 void e1000_free_all_rx_resources(struct e1000_adapter
*adapter
);
346 void e1000_free_all_tx_resources(struct e1000_adapter
*adapter
);
347 void e1000_update_stats(struct e1000_adapter
*adapter
);
348 bool e1000_has_link(struct e1000_adapter
*adapter
);
349 void e1000_power_up_phy(struct e1000_adapter
*);
350 void e1000_set_ethtool_ops(struct net_device
*netdev
);
351 void e1000_check_options(struct e1000_adapter
*adapter
);
352 char *e1000_get_hw_dev_name(struct e1000_hw
*hw
);
354 #endif /* _E1000_H_ */