| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | /*******************************************************************************
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Intel PRO/1000 Linux driver | 
					
						
							| 
									
										
										
										
											2013-01-01 16:00:01 +00:00
										 |  |  |   Copyright(c) 1999 - 2013 Intel Corporation. | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |   under the terms and conditions of the GNU General Public License, | 
					
						
							|  |  |  |   version 2, as published by the Free Software Foundation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This program is distributed in the hope it will be useful, but WITHOUT | 
					
						
							|  |  |  |   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |   more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   You should have received a copy of the GNU General Public License along with | 
					
						
							|  |  |  |   this program; if not, write to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   The full GNU General Public License is included in this distribution in | 
					
						
							|  |  |  |   the file called "COPYING". | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Contact Information: | 
					
						
							|  |  |  |   Linux NICS <linux.nics@intel.com> | 
					
						
							|  |  |  |   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | 
					
						
							|  |  |  |   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | *******************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Linux PRO/1000 Ethernet Driver main header file */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _E1000_H_
 | 
					
						
							|  |  |  | #define _E1000_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-25 16:01:01 +00:00
										 |  |  | #include <linux/bitops.h>
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/timer.h>
 | 
					
						
							|  |  |  | #include <linux/workqueue.h>
 | 
					
						
							|  |  |  | #include <linux/io.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							| 
									
										
										
										
											2009-11-20 23:24:48 +00:00
										 |  |  | #include <linux/pci.h>
 | 
					
						
							| 
									
										
										
										
											2010-04-27 03:33:04 +00:00
										 |  |  | #include <linux/pci-aspm.h>
 | 
					
						
							| 
									
										
										
										
											2011-01-06 14:29:51 +00:00
										 |  |  | #include <linux/crc32.h>
 | 
					
						
							| 
									
										
										
										
											2011-03-25 16:01:01 +00:00
										 |  |  | #include <linux/if_vlan.h>
 | 
					
						
							| 
									
										
										
										
											2012-12-27 08:32:33 +00:00
										 |  |  | #include <linux/clocksource.h>
 | 
					
						
							|  |  |  | #include <linux/net_tstamp.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-19 01:09:58 +00:00
										 |  |  | #include <linux/ptp_clock_kernel.h>
 | 
					
						
							|  |  |  | #include <linux/ptp_classify.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-16 08:54:35 +00:00
										 |  |  | #include <linux/mii.h>
 | 
					
						
							| 
									
										
										
										
											2013-03-20 07:23:11 +00:00
										 |  |  | #include <linux/mdio.h>
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #include "hw.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct e1000_info; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-04 17:20:41 -07:00
										 |  |  | #define e_dbg(format, arg...) \
 | 
					
						
							| 
									
										
										
										
											2010-03-24 12:55:30 +00:00
										 |  |  | 	netdev_dbg(hw->adapter->netdev, format, ## arg) | 
					
						
							| 
									
										
										
										
											2008-08-04 17:20:41 -07:00
										 |  |  | #define e_err(format, arg...) \
 | 
					
						
							| 
									
										
										
										
											2010-03-24 12:55:30 +00:00
										 |  |  | 	netdev_err(adapter->netdev, format, ## arg) | 
					
						
							| 
									
										
										
										
											2008-08-04 17:20:41 -07:00
										 |  |  | #define e_info(format, arg...) \
 | 
					
						
							| 
									
										
										
										
											2010-03-24 12:55:30 +00:00
										 |  |  | 	netdev_info(adapter->netdev, format, ## arg) | 
					
						
							| 
									
										
										
										
											2008-08-04 17:20:41 -07:00
										 |  |  | #define e_warn(format, arg...) \
 | 
					
						
							| 
									
										
										
										
											2010-03-24 12:55:30 +00:00
										 |  |  | 	netdev_warn(adapter->netdev, format, ## arg) | 
					
						
							| 
									
										
										
										
											2008-08-04 17:20:41 -07:00
										 |  |  | #define e_notice(format, arg...) \
 | 
					
						
							| 
									
										
										
										
											2010-03-24 12:55:30 +00:00
										 |  |  | 	netdev_notice(adapter->netdev, format, ## arg) | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-22 18:21:29 +02:00
										 |  |  | /* Interrupt modes, as used by the IntMode parameter */ | 
					
						
							| 
									
										
										
										
											2008-08-26 18:37:06 -07:00
										 |  |  | #define E1000E_INT_MODE_LEGACY		0
 | 
					
						
							|  |  |  | #define E1000E_INT_MODE_MSI		1
 | 
					
						
							|  |  |  | #define E1000E_INT_MODE_MSIX		2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-28 09:15:03 -07:00
										 |  |  | /* Tx/Rx descriptor defines */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #define E1000_DEFAULT_TXD		256
 | 
					
						
							|  |  |  | #define E1000_MAX_TXD			4096
 | 
					
						
							| 
									
										
										
										
											2008-04-23 11:09:19 -07:00
										 |  |  | #define E1000_MIN_TXD			64
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define E1000_DEFAULT_RXD		256
 | 
					
						
							|  |  |  | #define E1000_MAX_RXD			4096
 | 
					
						
							| 
									
										
										
										
											2008-04-23 11:09:19 -07:00
										 |  |  | #define E1000_MIN_RXD			64
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-23 11:09:08 -07:00
										 |  |  | #define E1000_MIN_ITR_USECS		10 /* 100000 irq/sec */
 | 
					
						
							|  |  |  | #define E1000_MAX_ITR_USECS		10000 /* 100    irq/sec */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #define E1000_FC_PAUSE_TIME		0x0680 /* 858 usec */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* How many Tx Descriptors do we need to call netif_wake_queue ? */ | 
					
						
							|  |  |  | /* How many Rx Buffers do we bundle into one write to the hardware ? */ | 
					
						
							|  |  |  | #define E1000_RX_BUFFER_WRITE		16 /* Must be power of 2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define AUTO_ALL_MODES			0
 | 
					
						
							|  |  |  | #define E1000_EEPROM_APME		0x0400
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define E1000_MNG_VLAN_NONE		(-1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Number of packet split data buffers (not including the header buffer) */ | 
					
						
							|  |  |  | #define PS_PAGE_BUFFERS			(MAX_PS_BUFFERS - 1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-02 11:28:58 +00:00
										 |  |  | #define DEFAULT_JUMBO			9234
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-14 14:35:17 +00:00
										 |  |  | /* Time to wait before putting the device into D3 if there's no link (in ms). */ | 
					
						
							|  |  |  | #define LINK_TIMEOUT		100
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-28 09:28:37 +00:00
										 |  |  | /* Count for polling __E1000_RESET condition every 10-20msec.
 | 
					
						
							| 
									
										
										
										
											2012-03-21 00:39:12 +00:00
										 |  |  |  * Experimentation has shown the reset can take approximately 210msec. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define E1000_CHECK_RESET_COUNT		25
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-29 21:38:49 +00:00
										 |  |  | #define DEFAULT_RDTR			0
 | 
					
						
							|  |  |  | #define DEFAULT_RADV			8
 | 
					
						
							|  |  |  | #define BURST_RDTR			0x20
 | 
					
						
							|  |  |  | #define BURST_RADV			0x20
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-28 09:28:37 +00:00
										 |  |  | /* in the case of WTHRESH, it appears at least the 82571/2 hardware
 | 
					
						
							| 
									
										
										
										
											2010-09-29 21:38:49 +00:00
										 |  |  |  * writes back 4 descriptors when WTHRESH=5, and 3 descriptors when | 
					
						
							| 
									
										
										
										
											2012-10-10 15:34:20 +00:00
										 |  |  |  * WTHRESH=4, so a setting of 5 gives the most efficient bus | 
					
						
							|  |  |  |  * utilization but to avoid possible Tx stalls, set it to 1 | 
					
						
							| 
									
										
										
										
											2010-09-29 21:38:49 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define E1000_TXDCTL_DMA_BURST_ENABLE                          \
 | 
					
						
							|  |  |  | 	(E1000_TXDCTL_GRAN | /* set descriptor granularity */  \ | 
					
						
							|  |  |  | 	 E1000_TXDCTL_COUNT_DESC |                             \ | 
					
						
							| 
									
										
										
										
											2012-10-10 15:34:20 +00:00
										 |  |  | 	 (1 << 16) | /* wthresh must be +1 more than desired */\ | 
					
						
							| 
									
										
										
										
											2010-09-29 21:38:49 +00:00
										 |  |  | 	 (1 << 8)  | /* hthresh */                             \ | 
					
						
							|  |  |  | 	 0x1f)       /* pthresh */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define E1000_RXDCTL_DMA_BURST_ENABLE                          \
 | 
					
						
							|  |  |  | 	(0x01000000 | /* set descriptor granularity */         \ | 
					
						
							|  |  |  | 	 (4 << 16)  | /* set writeback threshold    */         \ | 
					
						
							|  |  |  | 	 (4 << 8)   | /* set prefetch threshold     */         \ | 
					
						
							|  |  |  | 	 0x20)        /* set hthresh                */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define E1000_TIDV_FPD (1 << 31)
 | 
					
						
							|  |  |  | #define E1000_RDTR_FPD (1 << 31)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | enum e1000_boards { | 
					
						
							|  |  |  | 	board_82571, | 
					
						
							|  |  |  | 	board_82572, | 
					
						
							|  |  |  | 	board_82573, | 
					
						
							| 
									
										
										
										
											2008-08-26 18:37:06 -07:00
										 |  |  | 	board_82574, | 
					
						
							| 
									
										
										
										
											2009-03-19 01:12:27 +00:00
										 |  |  | 	board_82583, | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	board_80003es2lan, | 
					
						
							|  |  |  | 	board_ich8lan, | 
					
						
							|  |  |  | 	board_ich9lan, | 
					
						
							| 
									
										
										
										
											2008-08-26 18:36:50 -07:00
										 |  |  | 	board_ich10lan, | 
					
						
							| 
									
										
										
										
											2009-06-02 11:29:18 +00:00
										 |  |  | 	board_pchlan, | 
					
						
							| 
									
										
										
										
											2010-06-16 13:27:28 +00:00
										 |  |  | 	board_pch2lan, | 
					
						
							| 
									
										
										
										
											2012-04-19 03:21:47 +00:00
										 |  |  | 	board_pch_lpt, | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct e1000_ps_page { | 
					
						
							|  |  |  | 	struct page *page; | 
					
						
							|  |  |  | 	u64 dma; /* must be u64 - written to hw */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-28 09:28:37 +00:00
										 |  |  | /* wrappers around a pointer to a socket buffer,
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  |  * so a DMA handle can be stored along with the buffer | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct e1000_buffer { | 
					
						
							|  |  |  | 	dma_addr_t dma; | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	union { | 
					
						
							| 
									
										
										
										
											2008-03-28 09:15:03 -07:00
										 |  |  | 		/* Tx */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 		struct { | 
					
						
							|  |  |  | 			unsigned long time_stamp; | 
					
						
							|  |  |  | 			u16 length; | 
					
						
							|  |  |  | 			u16 next_to_watch; | 
					
						
							| 
									
										
										
										
											2010-05-05 14:02:27 +00:00
										 |  |  | 			unsigned int segs; | 
					
						
							|  |  |  | 			unsigned int bytecount; | 
					
						
							| 
									
										
										
										
											2009-12-02 16:45:31 +00:00
										 |  |  | 			u16 mapped_as_page; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2008-03-28 09:15:03 -07:00
										 |  |  | 		/* Rx */ | 
					
						
							| 
									
										
										
										
											2009-12-02 16:45:31 +00:00
										 |  |  | 		struct { | 
					
						
							|  |  |  | 			/* arrays of page information for packet split */ | 
					
						
							|  |  |  | 			struct e1000_ps_page *ps_pages; | 
					
						
							|  |  |  | 			struct page *page; | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	}; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct e1000_ring { | 
					
						
							| 
									
										
										
										
											2011-12-16 00:45:45 +00:00
										 |  |  | 	struct e1000_adapter *adapter;	/* back pointer to adapter */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	void *desc;			/* pointer to ring memory  */ | 
					
						
							|  |  |  | 	dma_addr_t dma;			/* phys address of ring    */ | 
					
						
							|  |  |  | 	unsigned int size;		/* length of ring in bytes */ | 
					
						
							|  |  |  | 	unsigned int count;		/* number of desc. in ring */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u16 next_to_use; | 
					
						
							|  |  |  | 	u16 next_to_clean; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-16 00:45:40 +00:00
										 |  |  | 	void __iomem *head; | 
					
						
							|  |  |  | 	void __iomem *tail; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* array of buffer information structs */ | 
					
						
							|  |  |  | 	struct e1000_buffer *buffer_info; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-26 18:37:06 -07:00
										 |  |  | 	char name[IFNAMSIZ + 5]; | 
					
						
							|  |  |  | 	u32 ims_val; | 
					
						
							|  |  |  | 	u32 itr_val; | 
					
						
							| 
									
										
										
										
											2011-12-16 00:45:40 +00:00
										 |  |  | 	void __iomem *itr_register; | 
					
						
							| 
									
										
										
										
											2008-08-26 18:37:06 -07:00
										 |  |  | 	int set_itr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	struct sk_buff *rx_skb_top; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-23 11:09:00 -07:00
										 |  |  | /* PHY register snapshot values */ | 
					
						
							|  |  |  | struct e1000_phy_regs { | 
					
						
							|  |  |  | 	u16 bmcr;		/* basic mode control register    */ | 
					
						
							|  |  |  | 	u16 bmsr;		/* basic mode status register     */ | 
					
						
							|  |  |  | 	u16 advertise;		/* auto-negotiation advertisement */ | 
					
						
							|  |  |  | 	u16 lpa;		/* link partner ability register  */ | 
					
						
							|  |  |  | 	u16 expansion;		/* auto-negotiation expansion reg */ | 
					
						
							|  |  |  | 	u16 ctrl1000;		/* 1000BASE-T control register    */ | 
					
						
							|  |  |  | 	u16 stat1000;		/* 1000BASE-T status register     */ | 
					
						
							|  |  |  | 	u16 estatus;		/* extended status register       */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | /* board specific private data structure */ | 
					
						
							|  |  |  | struct e1000_adapter { | 
					
						
							|  |  |  | 	struct timer_list watchdog_timer; | 
					
						
							|  |  |  | 	struct timer_list phy_info_timer; | 
					
						
							|  |  |  | 	struct timer_list blink_timer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct work_struct reset_task; | 
					
						
							|  |  |  | 	struct work_struct watchdog_task; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const struct e1000_info *ei; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-25 16:01:01 +00:00
										 |  |  | 	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)]; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	u32 bd_number; | 
					
						
							|  |  |  | 	u32 rx_buffer_len; | 
					
						
							|  |  |  | 	u16 mng_vlan_id; | 
					
						
							|  |  |  | 	u16 link_speed; | 
					
						
							|  |  |  | 	u16 link_duplex; | 
					
						
							| 
									
										
										
										
											2008-11-21 17:00:22 -08:00
										 |  |  | 	u16 eeprom_vers; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* track device up/down/testing state */ | 
					
						
							|  |  |  | 	unsigned long state; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Interrupt Throttle Rate */ | 
					
						
							|  |  |  | 	u32 itr; | 
					
						
							|  |  |  | 	u32 itr_setting; | 
					
						
							|  |  |  | 	u16 tx_itr; | 
					
						
							|  |  |  | 	u16 rx_itr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-20 04:06:16 +00:00
										 |  |  | 	/* Tx - one ring per active queue */ | 
					
						
							|  |  |  | 	struct e1000_ring *tx_ring ____cacheline_aligned_in_smp; | 
					
						
							| 
									
										
										
										
											2012-08-24 20:38:11 +00:00
										 |  |  | 	u32 tx_fifo_limit; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct napi_struct napi; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-23 09:00:03 +00:00
										 |  |  | 	unsigned int uncorr_errors;	/* uncorrectable ECC errors */ | 
					
						
							|  |  |  | 	unsigned int corr_errors;	/* correctable ECC errors */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	unsigned int restart_queue; | 
					
						
							|  |  |  | 	u32 txd_cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool detect_tx_hung; | 
					
						
							| 
									
										
										
										
											2011-11-18 14:25:00 +00:00
										 |  |  | 	bool tx_hang_recheck; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	u8 tx_timeout_factor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u32 tx_int_delay; | 
					
						
							|  |  |  | 	u32 tx_abs_int_delay; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	unsigned int total_tx_bytes; | 
					
						
							|  |  |  | 	unsigned int total_tx_packets; | 
					
						
							|  |  |  | 	unsigned int total_rx_bytes; | 
					
						
							|  |  |  | 	unsigned int total_rx_packets; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-28 09:15:03 -07:00
										 |  |  | 	/* Tx stats */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	u64 tpt_old; | 
					
						
							|  |  |  | 	u64 colc_old; | 
					
						
							| 
									
										
										
										
											2008-04-23 11:09:00 -07:00
										 |  |  | 	u32 gotc; | 
					
						
							|  |  |  | 	u64 gotc_old; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	u32 tx_timeout_count; | 
					
						
							|  |  |  | 	u32 tx_fifo_head; | 
					
						
							|  |  |  | 	u32 tx_head_addr; | 
					
						
							|  |  |  | 	u32 tx_fifo_size; | 
					
						
							|  |  |  | 	u32 tx_dma_failed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-28 09:28:37 +00:00
										 |  |  | 	/* Rx */ | 
					
						
							| 
									
										
										
										
											2011-12-16 00:45:45 +00:00
										 |  |  | 	bool (*clean_rx) (struct e1000_ring *ring, int *work_done, | 
					
						
							|  |  |  | 			  int work_to_do) ____cacheline_aligned_in_smp; | 
					
						
							|  |  |  | 	void (*alloc_rx_buf) (struct e1000_ring *ring, int cleaned_count, | 
					
						
							|  |  |  | 			      gfp_t gfp); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	struct e1000_ring *rx_ring; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u32 rx_int_delay; | 
					
						
							|  |  |  | 	u32 rx_abs_int_delay; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-28 09:15:03 -07:00
										 |  |  | 	/* Rx stats */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	u64 hw_csum_err; | 
					
						
							|  |  |  | 	u64 hw_csum_good; | 
					
						
							|  |  |  | 	u64 rx_hdr_split; | 
					
						
							| 
									
										
										
										
											2008-04-23 11:09:00 -07:00
										 |  |  | 	u32 gorc; | 
					
						
							|  |  |  | 	u64 gorc_old; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	u32 alloc_rx_buff_failed; | 
					
						
							|  |  |  | 	u32 rx_dma_failed; | 
					
						
							| 
									
										
										
										
											2012-12-27 08:32:33 +00:00
										 |  |  | 	u32 rx_hwtstamp_cleared; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	unsigned int rx_ps_pages; | 
					
						
							|  |  |  | 	u16 rx_ps_bsize0; | 
					
						
							| 
									
										
										
										
											2008-03-28 09:15:16 -07:00
										 |  |  | 	u32 max_frame_size; | 
					
						
							|  |  |  | 	u32 min_frame_size; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* OS defined structs */ | 
					
						
							|  |  |  | 	struct net_device *netdev; | 
					
						
							|  |  |  | 	struct pci_dev *pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* structs defined in e1000_hw.h */ | 
					
						
							|  |  |  | 	struct e1000_hw hw; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-04 10:06:03 +00:00
										 |  |  | 	spinlock_t stats64_lock;	/* protects statistics counters */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	struct e1000_hw_stats stats; | 
					
						
							|  |  |  | 	struct e1000_phy_info phy_info; | 
					
						
							|  |  |  | 	struct e1000_phy_stats phy_stats; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-23 11:09:00 -07:00
										 |  |  | 	/* Snapshot of PHY registers */ | 
					
						
							|  |  |  | 	struct e1000_phy_regs phy_regs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	struct e1000_ring test_tx_ring; | 
					
						
							|  |  |  | 	struct e1000_ring test_rx_ring; | 
					
						
							|  |  |  | 	u32 test_icr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u32 msg_enable; | 
					
						
							| 
									
										
										
										
											2010-08-02 14:27:23 +00:00
										 |  |  | 	unsigned int num_vectors; | 
					
						
							| 
									
										
										
										
											2008-08-26 18:37:06 -07:00
										 |  |  | 	struct msix_entry *msix_entries; | 
					
						
							|  |  |  | 	int int_mode; | 
					
						
							|  |  |  | 	u32 eiac_mask; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	u32 eeprom_wol; | 
					
						
							|  |  |  | 	u32 wol; | 
					
						
							|  |  |  | 	u32 pba; | 
					
						
							| 
									
										
										
										
											2009-06-02 11:28:58 +00:00
										 |  |  | 	u32 max_hw_frame_size; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-28 09:15:16 -07:00
										 |  |  | 	bool fc_autoneg; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	unsigned int flags; | 
					
						
							| 
									
										
										
										
											2008-11-14 06:45:23 +00:00
										 |  |  | 	unsigned int flags2; | 
					
						
							| 
									
										
										
										
											2008-10-02 16:33:25 -07:00
										 |  |  | 	struct work_struct downshift_task; | 
					
						
							|  |  |  | 	struct work_struct update_phy_task; | 
					
						
							| 
									
										
										
										
											2009-11-20 23:28:56 +00:00
										 |  |  | 	struct work_struct print_hang_task; | 
					
						
							| 
									
										
										
										
											2010-03-14 14:35:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool idle_check; | 
					
						
							| 
									
										
										
										
											2010-10-28 00:59:53 +00:00
										 |  |  | 	int phy_hang_count; | 
					
						
							| 
									
										
										
										
											2011-12-16 00:45:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	u16 tx_ring_count; | 
					
						
							|  |  |  | 	u16 rx_ring_count; | 
					
						
							| 
									
										
										
										
											2012-12-27 08:32:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct hwtstamp_config hwtstamp_config; | 
					
						
							|  |  |  | 	struct delayed_work systim_overflow_work; | 
					
						
							|  |  |  | 	struct sk_buff *tx_hwtstamp_skb; | 
					
						
							|  |  |  | 	struct work_struct tx_hwtstamp_work; | 
					
						
							|  |  |  | 	spinlock_t systim_lock;	/* protects SYSTIML/H regsters */ | 
					
						
							|  |  |  | 	struct cyclecounter cc; | 
					
						
							|  |  |  | 	struct timecounter tc; | 
					
						
							| 
									
										
										
										
											2013-01-19 01:09:58 +00:00
										 |  |  | 	struct ptp_clock *ptp_clock; | 
					
						
							|  |  |  | 	struct ptp_clock_info ptp_clock_info; | 
					
						
							| 
									
										
										
										
											2013-03-20 07:23:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	u16 eee_advert; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct e1000_info { | 
					
						
							|  |  |  | 	enum e1000_mac_type	mac; | 
					
						
							|  |  |  | 	unsigned int		flags; | 
					
						
							| 
									
										
										
										
											2010-04-27 03:33:04 +00:00
										 |  |  | 	unsigned int		flags2; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	u32			pba; | 
					
						
							| 
									
										
										
										
											2009-06-02 11:28:58 +00:00
										 |  |  | 	u32			max_hw_frame_size; | 
					
						
							| 
									
										
										
										
											2008-04-02 13:48:18 -07:00
										 |  |  | 	s32			(*get_variants)(struct e1000_adapter *); | 
					
						
							| 
									
										
										
										
											2011-09-24 13:23:52 +00:00
										 |  |  | 	const struct e1000_mac_operations *mac_ops; | 
					
						
							|  |  |  | 	const struct e1000_phy_operations *phy_ops; | 
					
						
							|  |  |  | 	const struct e1000_nvm_operations *nvm_ops; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-19 01:09:58 +00:00
										 |  |  | s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-27 08:32:33 +00:00
										 |  |  | /* The system time is maintained by a 64-bit counter comprised of the 32-bit
 | 
					
						
							|  |  |  |  * SYSTIMH and SYSTIML registers.  How the counter increments (and therefore | 
					
						
							|  |  |  |  * its resolution) is based on the contents of the TIMINCA register - it | 
					
						
							|  |  |  |  * increments every incperiod (bits 31:24) clock ticks by incvalue (bits 23:0). | 
					
						
							|  |  |  |  * For the best accuracy, the incperiod should be as small as possible.  The | 
					
						
							|  |  |  |  * incvalue is scaled by a factor as large as possible (while still fitting | 
					
						
							|  |  |  |  * in bits 23:0) so that relatively small clock corrections can be made. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * As a result, a shift of INCVALUE_SHIFT_n is used to fit a value of | 
					
						
							|  |  |  |  * INCVALUE_n into the TIMINCA register allowing 32+8+(24-INCVALUE_SHIFT_n) | 
					
						
							|  |  |  |  * bits to count nanoseconds leaving the rest for fractional nonseconds. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define INCVALUE_96MHz		125
 | 
					
						
							|  |  |  | #define INCVALUE_SHIFT_96MHz	17
 | 
					
						
							|  |  |  | #define INCPERIOD_SHIFT_96MHz	2
 | 
					
						
							|  |  |  | #define INCPERIOD_96MHz		(12 >> INCPERIOD_SHIFT_96MHz)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define INCVALUE_25MHz		40
 | 
					
						
							|  |  |  | #define INCVALUE_SHIFT_25MHz	18
 | 
					
						
							|  |  |  | #define INCPERIOD_25MHz		1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Another drawback of scaling the incvalue by a large factor is the
 | 
					
						
							|  |  |  |  * 64-bit SYSTIM register overflows more quickly.  This is dealt with | 
					
						
							|  |  |  |  * by simply reading the clock before it overflows. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Clock	ns bits	Overflows after | 
					
						
							|  |  |  |  * ~~~~~~	~~~~~~~	~~~~~~~~~~~~~~~ | 
					
						
							|  |  |  |  * 96MHz	47-bit	2^(47-INCPERIOD_SHIFT_96MHz) / 10^9 / 3600 = 9.77 hrs | 
					
						
							|  |  |  |  * 25MHz	46-bit	2^46 / 10^9 / 3600 = 19.55 hours | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define E1000_SYSTIM_OVERFLOW_PERIOD	(HZ * 60 * 60 * 4)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | /* hardware capability, feature, and workaround flags */ | 
					
						
							|  |  |  | #define FLAG_HAS_AMT                      (1 << 0)
 | 
					
						
							|  |  |  | #define FLAG_HAS_FLASH                    (1 << 1)
 | 
					
						
							|  |  |  | #define FLAG_HAS_HW_VLAN_FILTER           (1 << 2)
 | 
					
						
							|  |  |  | #define FLAG_HAS_WOL                      (1 << 3)
 | 
					
						
							| 
									
										
										
										
											2011-12-16 00:46:27 +00:00
										 |  |  | /* reserved bit4 */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #define FLAG_HAS_CTRLEXT_ON_LOAD          (1 << 5)
 | 
					
						
							|  |  |  | #define FLAG_HAS_SWSM_ON_LOAD             (1 << 6)
 | 
					
						
							|  |  |  | #define FLAG_HAS_JUMBO_FRAMES             (1 << 7)
 | 
					
						
							| 
									
										
										
										
											2008-10-01 17:18:35 -07:00
										 |  |  | #define FLAG_READ_ONLY_NVM                (1 << 8)
 | 
					
						
							| 
									
										
										
										
											2008-04-29 09:16:05 -07:00
										 |  |  | #define FLAG_IS_ICH                       (1 << 9)
 | 
					
						
							| 
									
										
										
										
											2008-08-26 18:37:06 -07:00
										 |  |  | #define FLAG_HAS_MSIX                     (1 << 10)
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #define FLAG_HAS_SMART_POWER_DOWN         (1 << 11)
 | 
					
						
							|  |  |  | #define FLAG_IS_QUAD_PORT_A               (1 << 12)
 | 
					
						
							|  |  |  | #define FLAG_IS_QUAD_PORT                 (1 << 13)
 | 
					
						
							| 
									
										
										
										
											2012-12-27 08:32:33 +00:00
										 |  |  | #define FLAG_HAS_HW_TIMESTAMP             (1 << 14)
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #define FLAG_APME_IN_WUC                  (1 << 15)
 | 
					
						
							|  |  |  | #define FLAG_APME_IN_CTRL3                (1 << 16)
 | 
					
						
							|  |  |  | #define FLAG_APME_CHECK_PORT_B            (1 << 17)
 | 
					
						
							|  |  |  | #define FLAG_DISABLE_FC_PAUSE_TIME        (1 << 18)
 | 
					
						
							|  |  |  | #define FLAG_NO_WAKE_UCAST                (1 << 19)
 | 
					
						
							|  |  |  | #define FLAG_MNG_PT_ENABLED               (1 << 20)
 | 
					
						
							|  |  |  | #define FLAG_RESET_OVERWRITES_LAA         (1 << 21)
 | 
					
						
							|  |  |  | #define FLAG_TARC_SPEED_MODE_BIT          (1 << 22)
 | 
					
						
							|  |  |  | #define FLAG_TARC_SET_BIT_ZERO            (1 << 23)
 | 
					
						
							|  |  |  | #define FLAG_RX_NEEDS_RESTART             (1 << 24)
 | 
					
						
							|  |  |  | #define FLAG_LSC_GIG_SPEED_DROP           (1 << 25)
 | 
					
						
							|  |  |  | #define FLAG_SMART_POWER_DOWN             (1 << 26)
 | 
					
						
							|  |  |  | #define FLAG_MSI_ENABLED                  (1 << 27)
 | 
					
						
							| 
									
										
										
										
											2011-08-19 03:23:48 +00:00
										 |  |  | /* reserved (1 << 28) */ | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #define FLAG_TSO_FORCE                    (1 << 29)
 | 
					
						
							| 
									
										
										
										
											2012-12-05 06:26:14 +00:00
										 |  |  | #define FLAG_RESTART_NOW                  (1 << 30)
 | 
					
						
							| 
									
										
										
										
											2008-08-08 18:36:11 -07:00
										 |  |  | #define FLAG_MSI_TEST_FAILED              (1 << 31)
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-14 06:45:23 +00:00
										 |  |  | #define FLAG2_CRC_STRIPPING               (1 << 0)
 | 
					
						
							| 
									
										
										
										
											2009-06-02 11:29:18 +00:00
										 |  |  | #define FLAG2_HAS_PHY_WAKEUP              (1 << 1)
 | 
					
						
							| 
									
										
										
										
											2010-01-19 14:15:59 +00:00
										 |  |  | #define FLAG2_IS_DISCARDING               (1 << 2)
 | 
					
						
							| 
									
										
										
										
											2010-04-27 03:33:04 +00:00
										 |  |  | #define FLAG2_DISABLE_ASPM_L1             (1 << 3)
 | 
					
						
							| 
									
										
										
										
											2010-06-16 13:26:41 +00:00
										 |  |  | #define FLAG2_HAS_PHY_STATS               (1 << 4)
 | 
					
						
							| 
									
										
										
										
											2010-06-16 13:27:49 +00:00
										 |  |  | #define FLAG2_HAS_EEE                     (1 << 5)
 | 
					
						
							| 
									
										
										
										
											2010-09-29 21:38:49 +00:00
										 |  |  | #define FLAG2_DMA_BURST                   (1 << 6)
 | 
					
						
							| 
									
										
										
										
											2011-03-24 03:09:03 +00:00
										 |  |  | #define FLAG2_DISABLE_ASPM_L0S            (1 << 7)
 | 
					
						
							| 
									
										
										
										
											2010-09-29 21:39:37 +00:00
										 |  |  | #define FLAG2_DISABLE_AIM                 (1 << 8)
 | 
					
						
							| 
									
										
										
										
											2010-10-28 00:59:53 +00:00
										 |  |  | #define FLAG2_CHECK_PHY_HANG              (1 << 9)
 | 
					
						
							| 
									
										
										
										
											2011-07-22 06:21:35 +00:00
										 |  |  | #define FLAG2_NO_DISABLE_RX               (1 << 10)
 | 
					
						
							| 
									
										
										
										
											2011-07-29 05:53:02 +00:00
										 |  |  | #define FLAG2_PCIM2PCI_ARBITER_WA         (1 << 11)
 | 
					
						
							| 
									
										
										
										
											2012-02-11 15:39:25 +00:00
										 |  |  | #define FLAG2_DFLT_CRC_STRIPPING          (1 << 12)
 | 
					
						
							| 
									
										
										
										
											2012-12-27 08:32:33 +00:00
										 |  |  | #define FLAG2_CHECK_RX_HWTSTAMP           (1 << 13)
 | 
					
						
							| 
									
										
										
										
											2008-11-14 06:45:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #define E1000_RX_DESC_PS(R, i)	    \
 | 
					
						
							|  |  |  | 	(&(((union e1000_rx_desc_packet_split *)((R).desc))[i])) | 
					
						
							| 
									
										
										
										
											2011-07-22 06:21:46 +00:00
										 |  |  | #define E1000_RX_DESC_EXT(R, i)	    \
 | 
					
						
							|  |  |  | 	(&(((union e1000_rx_desc_extended *)((R).desc))[i])) | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #define E1000_GET_DESC(R, i, type)	(&(((struct type *)((R).desc))[i]))
 | 
					
						
							|  |  |  | #define E1000_TX_DESC(R, i)		E1000_GET_DESC(R, i, e1000_tx_desc)
 | 
					
						
							|  |  |  | #define E1000_CONTEXT_DESC(R, i)	E1000_GET_DESC(R, i, e1000_context_desc)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum e1000_state_t { | 
					
						
							|  |  |  | 	__E1000_TESTING, | 
					
						
							|  |  |  | 	__E1000_RESETTING, | 
					
						
							| 
									
										
										
										
											2011-10-07 03:50:38 +00:00
										 |  |  | 	__E1000_ACCESS_SHARED_RESOURCE, | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	__E1000_DOWN | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum latency_range { | 
					
						
							|  |  |  | 	lowest_latency = 0, | 
					
						
							|  |  |  | 	low_latency = 1, | 
					
						
							|  |  |  | 	bulk_latency = 2, | 
					
						
							|  |  |  | 	latency_invalid = 255 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern char e1000e_driver_name[]; | 
					
						
							|  |  |  | extern const char e1000e_driver_version[]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern void e1000e_check_options(struct e1000_adapter *adapter); | 
					
						
							|  |  |  | extern void e1000e_set_ethtool_ops(struct net_device *netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int e1000e_up(struct e1000_adapter *adapter); | 
					
						
							|  |  |  | extern void e1000e_down(struct e1000_adapter *adapter); | 
					
						
							|  |  |  | extern void e1000e_reinit_locked(struct e1000_adapter *adapter); | 
					
						
							|  |  |  | extern void e1000e_reset(struct e1000_adapter *adapter); | 
					
						
							|  |  |  | extern void e1000e_power_up_phy(struct e1000_adapter *adapter); | 
					
						
							| 
									
										
										
										
											2011-12-16 00:45:45 +00:00
										 |  |  | extern int e1000e_setup_rx_resources(struct e1000_ring *ring); | 
					
						
							|  |  |  | extern int e1000e_setup_tx_resources(struct e1000_ring *ring); | 
					
						
							|  |  |  | extern void e1000e_free_rx_resources(struct e1000_ring *ring); | 
					
						
							|  |  |  | extern void e1000e_free_tx_resources(struct e1000_ring *ring); | 
					
						
							| 
									
										
										
										
											2011-01-07 05:12:09 +00:00
										 |  |  | extern struct rtnl_link_stats64 *e1000e_get_stats64(struct net_device *netdev, | 
					
						
							| 
									
										
										
										
											2013-02-20 04:05:55 +00:00
										 |  |  | 						    struct rtnl_link_stats64 | 
					
						
							|  |  |  | 						    *stats); | 
					
						
							| 
									
										
										
										
											2008-08-26 18:37:06 -07:00
										 |  |  | extern void e1000e_set_interrupt_capability(struct e1000_adapter *adapter); | 
					
						
							|  |  |  | extern void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter); | 
					
						
							| 
									
										
										
										
											2011-01-06 14:29:52 +00:00
										 |  |  | extern void e1000e_get_hw_control(struct e1000_adapter *adapter); | 
					
						
							|  |  |  | extern void e1000e_release_hw_control(struct e1000_adapter *adapter); | 
					
						
							| 
									
										
										
										
											2012-07-12 00:02:42 +00:00
										 |  |  | extern void e1000e_write_itr(struct e1000_adapter *adapter, u32 itr); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | extern unsigned int copybreak; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-24 13:23:52 +00:00
										 |  |  | extern const struct e1000_info e1000_82571_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_82572_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_82573_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_82574_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_82583_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_ich8_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_ich9_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_ich10_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_pch_info; | 
					
						
							|  |  |  | extern const struct e1000_info e1000_pch2_info; | 
					
						
							| 
									
										
										
										
											2012-04-19 03:21:47 +00:00
										 |  |  | extern const struct e1000_info e1000_pch_lpt_info; | 
					
						
							| 
									
										
										
										
											2011-09-24 13:23:52 +00:00
										 |  |  | extern const struct e1000_info e1000_es2_info; | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-19 01:09:58 +00:00
										 |  |  | extern void e1000e_ptp_init(struct e1000_adapter *adapter); | 
					
						
							|  |  |  | extern void e1000e_ptp_remove(struct e1000_adapter *adapter); | 
					
						
							| 
									
										
										
										
											2009-12-02 17:03:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | static inline s32 e1000_phy_hw_reset(struct e1000_hw *hw) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-20 23:25:26 +00:00
										 |  |  | 	return hw->phy.ops.reset(hw); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline s32 e1e_rphy(struct e1000_hw *hw, u32 offset, u16 *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-20 23:25:26 +00:00
										 |  |  | 	return hw->phy.ops.read_reg(hw, offset, data); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-14 04:21:52 +00:00
										 |  |  | static inline s32 e1e_rphy_locked(struct e1000_hw *hw, u32 offset, u16 *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return hw->phy.ops.read_reg_locked(hw, offset, data); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | static inline s32 e1e_wphy(struct e1000_hw *hw, u32 offset, u16 data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-20 23:25:26 +00:00
										 |  |  | 	return hw->phy.ops.write_reg(hw, offset, data); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-14 04:21:52 +00:00
										 |  |  | static inline s32 e1e_wphy_locked(struct e1000_hw *hw, u32 offset, u16 data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return hw->phy.ops.write_reg_locked(hw, offset, data); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-22 09:03:14 +00:00
										 |  |  | extern void e1000e_reload_nvm_generic(struct e1000_hw *hw); | 
					
						
							| 
									
										
										
										
											2010-01-13 02:04:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline s32 e1000e_read_mac_addr(struct e1000_hw *hw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (hw->mac.ops.read_mac_addr) | 
					
						
							|  |  |  | 		return hw->mac.ops.read_mac_addr(hw); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return e1000_read_mac_addr_generic(hw); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline s32 e1000_validate_nvm_checksum(struct e1000_hw *hw) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-20 23:25:26 +00:00
										 |  |  | 	return hw->nvm.ops.validate(hw); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline s32 e1000e_update_nvm_checksum(struct e1000_hw *hw) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-20 23:25:26 +00:00
										 |  |  | 	return hw->nvm.ops.update(hw); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-20 04:05:50 +00:00
										 |  |  | static inline s32 e1000_read_nvm(struct e1000_hw *hw, u16 offset, u16 words, | 
					
						
							|  |  |  | 				 u16 *data) | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-20 23:25:26 +00:00
										 |  |  | 	return hw->nvm.ops.read(hw, offset, words, data); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-20 04:05:50 +00:00
										 |  |  | static inline s32 e1000_write_nvm(struct e1000_hw *hw, u16 offset, u16 words, | 
					
						
							|  |  |  | 				  u16 *data) | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-20 23:25:26 +00:00
										 |  |  | 	return hw->nvm.ops.write(hw, offset, words, data); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline s32 e1000_get_phy_info(struct e1000_hw *hw) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-20 23:25:26 +00:00
										 |  |  | 	return hw->phy.ops.get_info(hw); | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline u32 __er32(struct e1000_hw *hw, unsigned long reg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return readl(hw->hw_addr + reg); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-20 03:47:52 +00:00
										 |  |  | #define er32(reg)	__er32(hw, E1000_##reg)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * __ew32_prepare - prepare to write to MAC CSR register on certain parts | 
					
						
							|  |  |  |  * @hw: pointer to the HW structure | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * When updating the MAC CSR registers, the Manageability Engine (ME) could | 
					
						
							|  |  |  |  * be accessing the registers at the same time.  Normally, this is handled in | 
					
						
							|  |  |  |  * h/w by an arbiter but on some parts there is a bug that acknowledges Host | 
					
						
							|  |  |  |  * accesses later than it should which could result in the register to have | 
					
						
							|  |  |  |  * an incorrect value.  Workaround this by checking the FWSM register which | 
					
						
							|  |  |  |  * has bit 24 set while ME is accessing MAC CSR registers, wait if it is set | 
					
						
							|  |  |  |  * and try again a number of times. | 
					
						
							|  |  |  |  **/ | 
					
						
							|  |  |  | static inline s32 __ew32_prepare(struct e1000_hw *hw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	s32 i = E1000_ICH_FWSM_PCIM2PCI_COUNT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while ((er32(FWSM) & E1000_ICH_FWSM_PCIM2PCI) && --i) | 
					
						
							| 
									
										
										
										
											2013-05-06 22:52:47 -07:00
										 |  |  | 		udelay(50); | 
					
						
							| 
									
										
										
										
											2012-03-20 03:47:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return i; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | static inline void __ew32(struct e1000_hw *hw, unsigned long reg, u32 val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-20 03:47:52 +00:00
										 |  |  | 	if (hw->adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA) | 
					
						
							|  |  |  | 		__ew32_prepare(hw); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | 	writel(val, hw->hw_addr + reg); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-20 03:47:52 +00:00
										 |  |  | #define ew32(reg, val)	__ew32(hw, E1000_##reg, (val))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define e1e_flush()	er32(STATUS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define E1000_WRITE_REG_ARRAY(a, reg, offset, value) \
 | 
					
						
							|  |  |  | 	(__ew32((a), (reg + ((offset) << 2)), (value))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define E1000_READ_REG_ARRAY(a, reg, offset) \
 | 
					
						
							|  |  |  | 	(readl((a)->hw_addr + reg + ((offset) << 2))) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-17 12:30:59 -07:00
										 |  |  | #endif /* _E1000_H_ */
 |