xref: /openbmc/linux/drivers/net/ethernet/atheros/atl1c/atl1c.h (revision b97d6790d03b763eca08847a9a5869a4291b9f9a)
11a59d1b8SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
22b133ad6SJeff Kirsher /*
32b133ad6SJeff Kirsher  * Copyright(c) 2008 - 2009 Atheros Corporation. All rights reserved.
42b133ad6SJeff Kirsher  *
52b133ad6SJeff Kirsher  * Derived from Intel e1000 driver
62b133ad6SJeff Kirsher  * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
72b133ad6SJeff Kirsher  */
82b133ad6SJeff Kirsher 
92b133ad6SJeff Kirsher #ifndef _ATL1C_H_
102b133ad6SJeff Kirsher #define _ATL1C_H_
112b133ad6SJeff Kirsher 
122b133ad6SJeff Kirsher #include <linux/interrupt.h>
132b133ad6SJeff Kirsher #include <linux/types.h>
142b133ad6SJeff Kirsher #include <linux/errno.h>
152b133ad6SJeff Kirsher #include <linux/module.h>
162b133ad6SJeff Kirsher #include <linux/pci.h>
172b133ad6SJeff Kirsher #include <linux/netdevice.h>
182b133ad6SJeff Kirsher #include <linux/etherdevice.h>
192b133ad6SJeff Kirsher #include <linux/skbuff.h>
202b133ad6SJeff Kirsher #include <linux/ioport.h>
212b133ad6SJeff Kirsher #include <linux/slab.h>
222b133ad6SJeff Kirsher #include <linux/list.h>
232b133ad6SJeff Kirsher #include <linux/delay.h>
242b133ad6SJeff Kirsher #include <linux/sched.h>
252b133ad6SJeff Kirsher #include <linux/in.h>
262b133ad6SJeff Kirsher #include <linux/ip.h>
272b133ad6SJeff Kirsher #include <linux/ipv6.h>
282b133ad6SJeff Kirsher #include <linux/udp.h>
292b133ad6SJeff Kirsher #include <linux/mii.h>
302b133ad6SJeff Kirsher #include <linux/io.h>
312b133ad6SJeff Kirsher #include <linux/vmalloc.h>
322b133ad6SJeff Kirsher #include <linux/pagemap.h>
332b133ad6SJeff Kirsher #include <linux/tcp.h>
342b133ad6SJeff Kirsher #include <linux/ethtool.h>
352b133ad6SJeff Kirsher #include <linux/if_vlan.h>
362b133ad6SJeff Kirsher #include <linux/workqueue.h>
372b133ad6SJeff Kirsher #include <net/checksum.h>
382b133ad6SJeff Kirsher #include <net/ip6_checksum.h>
392b133ad6SJeff Kirsher 
402b133ad6SJeff Kirsher #include "atl1c_hw.h"
412b133ad6SJeff Kirsher 
422b133ad6SJeff Kirsher /* Wake Up Filter Control */
432b133ad6SJeff Kirsher #define AT_WUFC_LNKC 0x00000001 /* Link Status Change Wakeup Enable */
442b133ad6SJeff Kirsher #define AT_WUFC_MAG  0x00000002 /* Magic Packet Wakeup Enable */
452b133ad6SJeff Kirsher #define AT_WUFC_EX   0x00000004 /* Directed Exact Wakeup Enable */
462b133ad6SJeff Kirsher #define AT_WUFC_MC   0x00000008 /* Multicast Wakeup Enable */
472b133ad6SJeff Kirsher #define AT_WUFC_BC   0x00000010 /* Broadcast Wakeup Enable */
482b133ad6SJeff Kirsher 
492b133ad6SJeff Kirsher #define AT_VLAN_TO_TAG(_vlan, _tag)	   \
502b133ad6SJeff Kirsher 	_tag =  ((((_vlan) >> 8) & 0xFF)  |\
512b133ad6SJeff Kirsher 		 (((_vlan) & 0xFF) << 8))
522b133ad6SJeff Kirsher 
532b133ad6SJeff Kirsher #define AT_TAG_TO_VLAN(_tag, _vlan) 	 \
542b133ad6SJeff Kirsher 	_vlan = ((((_tag) >> 8) & 0xFF) |\
552b133ad6SJeff Kirsher 		(((_tag) & 0xFF) << 8))
562b133ad6SJeff Kirsher 
572b133ad6SJeff Kirsher #define SPEED_0		   0xffff
582b133ad6SJeff Kirsher #define HALF_DUPLEX        1
592b133ad6SJeff Kirsher #define FULL_DUPLEX        2
602b133ad6SJeff Kirsher 
612b133ad6SJeff Kirsher #define AT_RX_BUF_SIZE		(ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN)
622b133ad6SJeff Kirsher #define MAX_JUMBO_FRAME_SIZE	(6*1024)
632b133ad6SJeff Kirsher 
642b133ad6SJeff Kirsher #define AT_MAX_RECEIVE_QUEUE    4
652b133ad6SJeff Kirsher #define AT_DEF_RECEIVE_QUEUE	1
66*057f4af2SGatis Peisenieks #define AT_MAX_TRANSMIT_QUEUE  4
672b133ad6SJeff Kirsher 
682b133ad6SJeff Kirsher #define AT_DMA_HI_ADDR_MASK     0xffffffff00000000ULL
692b133ad6SJeff Kirsher #define AT_DMA_LO_ADDR_MASK     0x00000000ffffffffULL
702b133ad6SJeff Kirsher 
712b133ad6SJeff Kirsher #define AT_TX_WATCHDOG  (5 * HZ)
722b133ad6SJeff Kirsher #define AT_MAX_INT_WORK		5
732b133ad6SJeff Kirsher #define AT_TWSI_EEPROM_TIMEOUT 	100
742b133ad6SJeff Kirsher #define AT_HW_MAX_IDLE_DELAY 	10
752b133ad6SJeff Kirsher #define AT_SUSPEND_LINK_TIMEOUT 100
762b133ad6SJeff Kirsher 
772b133ad6SJeff Kirsher #define AT_ASPM_L0S_TIMER	6
782b133ad6SJeff Kirsher #define AT_ASPM_L1_TIMER	12
792b133ad6SJeff Kirsher #define AT_LCKDET_TIMER		12
802b133ad6SJeff Kirsher 
812b133ad6SJeff Kirsher #define ATL1C_PCIE_L0S_L1_DISABLE 	0x01
822b133ad6SJeff Kirsher #define ATL1C_PCIE_PHY_RESET		0x02
832b133ad6SJeff Kirsher 
842b133ad6SJeff Kirsher #define ATL1C_ASPM_L0s_ENABLE		0x0001
852b133ad6SJeff Kirsher #define ATL1C_ASPM_L1_ENABLE		0x0002
862b133ad6SJeff Kirsher 
87864ad85fSHuang, Xiong #define AT_REGS_LEN	(74 * sizeof(u32))
882b133ad6SJeff Kirsher #define AT_EEPROM_LEN 	512
892b133ad6SJeff Kirsher 
902b133ad6SJeff Kirsher #define ATL1C_GET_DESC(R, i, type)	(&(((type *)((R)->desc))[i]))
912b133ad6SJeff Kirsher #define ATL1C_RFD_DESC(R, i)	ATL1C_GET_DESC(R, i, struct atl1c_rx_free_desc)
922b133ad6SJeff Kirsher #define ATL1C_TPD_DESC(R, i)	ATL1C_GET_DESC(R, i, struct atl1c_tpd_desc)
932b133ad6SJeff Kirsher #define ATL1C_RRD_DESC(R, i)	ATL1C_GET_DESC(R, i, struct atl1c_recv_ret_status)
942b133ad6SJeff Kirsher 
952b133ad6SJeff Kirsher /* tpd word 1 bit 0:7 General Checksum task offload */
962b133ad6SJeff Kirsher #define TPD_L4HDR_OFFSET_MASK	0x00FF
972b133ad6SJeff Kirsher #define TPD_L4HDR_OFFSET_SHIFT	0
982b133ad6SJeff Kirsher 
992b133ad6SJeff Kirsher /* tpd word 1 bit 0:7 Large Send task offload (IPv4/IPV6) */
1002b133ad6SJeff Kirsher #define TPD_TCPHDR_OFFSET_MASK	0x00FF
1012b133ad6SJeff Kirsher #define TPD_TCPHDR_OFFSET_SHIFT	0
1022b133ad6SJeff Kirsher 
1032b133ad6SJeff Kirsher /* tpd word 1 bit 0:7 Custom Checksum task offload */
1042b133ad6SJeff Kirsher #define TPD_PLOADOFFSET_MASK	0x00FF
1052b133ad6SJeff Kirsher #define TPD_PLOADOFFSET_SHIFT	0
1062b133ad6SJeff Kirsher 
1072b133ad6SJeff Kirsher /* tpd word 1 bit 8:17 */
1082b133ad6SJeff Kirsher #define TPD_CCSUM_EN_MASK	0x0001
1092b133ad6SJeff Kirsher #define TPD_CCSUM_EN_SHIFT	8
1102b133ad6SJeff Kirsher #define TPD_IP_CSUM_MASK	0x0001
1112b133ad6SJeff Kirsher #define TPD_IP_CSUM_SHIFT	9
1122b133ad6SJeff Kirsher #define TPD_TCP_CSUM_MASK	0x0001
1132b133ad6SJeff Kirsher #define TPD_TCP_CSUM_SHIFT	10
1142b133ad6SJeff Kirsher #define TPD_UDP_CSUM_MASK	0x0001
1152b133ad6SJeff Kirsher #define TPD_UDP_CSUM_SHIFT	11
1162b133ad6SJeff Kirsher #define TPD_LSO_EN_MASK		0x0001	/* TCP Large Send Offload */
1172b133ad6SJeff Kirsher #define TPD_LSO_EN_SHIFT	12
1182b133ad6SJeff Kirsher #define TPD_LSO_VER_MASK	0x0001
1192b133ad6SJeff Kirsher #define TPD_LSO_VER_SHIFT	13 	/* 0 : ipv4; 1 : ipv4/ipv6 */
1202b133ad6SJeff Kirsher #define TPD_CON_VTAG_MASK	0x0001
1212b133ad6SJeff Kirsher #define TPD_CON_VTAG_SHIFT	14
1222b133ad6SJeff Kirsher #define TPD_INS_VTAG_MASK	0x0001
1232b133ad6SJeff Kirsher #define TPD_INS_VTAG_SHIFT	15
1242b133ad6SJeff Kirsher #define TPD_IPV4_PACKET_MASK	0x0001  /* valid when LSO VER  is 1 */
1252b133ad6SJeff Kirsher #define TPD_IPV4_PACKET_SHIFT	16
1262b133ad6SJeff Kirsher #define TPD_ETH_TYPE_MASK	0x0001
1272b133ad6SJeff Kirsher #define TPD_ETH_TYPE_SHIFT	17	/* 0 : 802.3 frame; 1 : Ethernet */
1282b133ad6SJeff Kirsher 
1292b133ad6SJeff Kirsher /* tpd word 18:25 Custom Checksum task offload */
1302b133ad6SJeff Kirsher #define TPD_CCSUM_OFFSET_MASK	0x00FF
1312b133ad6SJeff Kirsher #define TPD_CCSUM_OFFSET_SHIFT	18
1322b133ad6SJeff Kirsher #define TPD_CCSUM_EPAD_MASK	0x0001
1332b133ad6SJeff Kirsher #define TPD_CCSUM_EPAD_SHIFT	30
1342b133ad6SJeff Kirsher 
1352b133ad6SJeff Kirsher /* tpd word 18:30 Large Send task offload (IPv4/IPV6) */
1362b133ad6SJeff Kirsher #define TPD_MSS_MASK            0x1FFF
1372b133ad6SJeff Kirsher #define TPD_MSS_SHIFT		18
1382b133ad6SJeff Kirsher 
1392b133ad6SJeff Kirsher #define TPD_EOP_MASK		0x0001
1402b133ad6SJeff Kirsher #define TPD_EOP_SHIFT		31
1412b133ad6SJeff Kirsher 
1422b133ad6SJeff Kirsher struct atl1c_tpd_desc {
1432b133ad6SJeff Kirsher 	__le16	buffer_len; /* include 4-byte CRC */
1442b133ad6SJeff Kirsher 	__le16	vlan_tag;
1452b133ad6SJeff Kirsher 	__le32	word1;
1462b133ad6SJeff Kirsher 	__le64	buffer_addr;
1472b133ad6SJeff Kirsher };
1482b133ad6SJeff Kirsher 
1492b133ad6SJeff Kirsher struct atl1c_tpd_ext_desc {
1502b133ad6SJeff Kirsher 	u32 reservd_0;
1512b133ad6SJeff Kirsher 	__le32 word1;
1522b133ad6SJeff Kirsher 	__le32 pkt_len;
1532b133ad6SJeff Kirsher 	u32 reservd_1;
1542b133ad6SJeff Kirsher };
1552b133ad6SJeff Kirsher /* rrs word 0 bit 0:31 */
1562b133ad6SJeff Kirsher #define RRS_RX_CSUM_MASK	0xFFFF
1572b133ad6SJeff Kirsher #define RRS_RX_CSUM_SHIFT	0
1582b133ad6SJeff Kirsher #define RRS_RX_RFD_CNT_MASK	0x000F
1592b133ad6SJeff Kirsher #define RRS_RX_RFD_CNT_SHIFT	16
1602b133ad6SJeff Kirsher #define RRS_RX_RFD_INDEX_MASK	0x0FFF
1612b133ad6SJeff Kirsher #define RRS_RX_RFD_INDEX_SHIFT	20
1622b133ad6SJeff Kirsher 
1632b133ad6SJeff Kirsher /* rrs flag bit 0:16 */
1642b133ad6SJeff Kirsher #define RRS_HEAD_LEN_MASK	0x00FF
1652b133ad6SJeff Kirsher #define RRS_HEAD_LEN_SHIFT	0
1662b133ad6SJeff Kirsher #define RRS_HDS_TYPE_MASK	0x0003
1672b133ad6SJeff Kirsher #define RRS_HDS_TYPE_SHIFT	8
1682b133ad6SJeff Kirsher #define RRS_CPU_NUM_MASK	0x0003
1692b133ad6SJeff Kirsher #define	RRS_CPU_NUM_SHIFT	10
1702b133ad6SJeff Kirsher #define RRS_HASH_FLG_MASK	0x000F
1712b133ad6SJeff Kirsher #define RRS_HASH_FLG_SHIFT	12
1722b133ad6SJeff Kirsher 
1732b133ad6SJeff Kirsher #define RRS_HDS_TYPE_HEAD	1
1742b133ad6SJeff Kirsher #define RRS_HDS_TYPE_DATA	2
1752b133ad6SJeff Kirsher 
1762b133ad6SJeff Kirsher #define RRS_IS_NO_HDS_TYPE(flag) \
1772b133ad6SJeff Kirsher 	((((flag) >> (RRS_HDS_TYPE_SHIFT)) & RRS_HDS_TYPE_MASK) == 0)
1782b133ad6SJeff Kirsher 
1792b133ad6SJeff Kirsher #define RRS_IS_HDS_HEAD(flag) \
1802b133ad6SJeff Kirsher 	((((flag) >> (RRS_HDS_TYPE_SHIFT)) & RRS_HDS_TYPE_MASK) == \
1812b133ad6SJeff Kirsher 			RRS_HDS_TYPE_HEAD)
1822b133ad6SJeff Kirsher 
1832b133ad6SJeff Kirsher #define RRS_IS_HDS_DATA(flag) \
1842b133ad6SJeff Kirsher 	((((flag) >> (RRS_HDS_TYPE_SHIFT)) & RRS_HDS_TYPE_MASK) == \
1852b133ad6SJeff Kirsher 			RRS_HDS_TYPE_DATA)
1862b133ad6SJeff Kirsher 
1872b133ad6SJeff Kirsher /* rrs word 3 bit 0:31 */
1882b133ad6SJeff Kirsher #define RRS_PKT_SIZE_MASK	0x3FFF
1892b133ad6SJeff Kirsher #define RRS_PKT_SIZE_SHIFT	0
1902b133ad6SJeff Kirsher #define RRS_ERR_L4_CSUM_MASK	0x0001
1912b133ad6SJeff Kirsher #define RRS_ERR_L4_CSUM_SHIFT	14
1922b133ad6SJeff Kirsher #define RRS_ERR_IP_CSUM_MASK	0x0001
1932b133ad6SJeff Kirsher #define RRS_ERR_IP_CSUM_SHIFT	15
1942b133ad6SJeff Kirsher #define RRS_VLAN_INS_MASK	0x0001
1952b133ad6SJeff Kirsher #define RRS_VLAN_INS_SHIFT	16
1962b133ad6SJeff Kirsher #define RRS_PROT_ID_MASK	0x0007
1972b133ad6SJeff Kirsher #define RRS_PROT_ID_SHIFT	17
1982b133ad6SJeff Kirsher #define RRS_RX_ERR_SUM_MASK	0x0001
1992b133ad6SJeff Kirsher #define RRS_RX_ERR_SUM_SHIFT	20
2002b133ad6SJeff Kirsher #define RRS_RX_ERR_CRC_MASK	0x0001
2012b133ad6SJeff Kirsher #define RRS_RX_ERR_CRC_SHIFT	21
2022b133ad6SJeff Kirsher #define RRS_RX_ERR_FAE_MASK	0x0001
2032b133ad6SJeff Kirsher #define RRS_RX_ERR_FAE_SHIFT	22
2042b133ad6SJeff Kirsher #define RRS_RX_ERR_TRUNC_MASK	0x0001
2052b133ad6SJeff Kirsher #define RRS_RX_ERR_TRUNC_SHIFT	23
2062b133ad6SJeff Kirsher #define RRS_RX_ERR_RUNC_MASK	0x0001
2072b133ad6SJeff Kirsher #define RRS_RX_ERR_RUNC_SHIFT	24
2082b133ad6SJeff Kirsher #define RRS_RX_ERR_ICMP_MASK	0x0001
2092b133ad6SJeff Kirsher #define RRS_RX_ERR_ICMP_SHIFT	25
2102b133ad6SJeff Kirsher #define RRS_PACKET_BCAST_MASK	0x0001
2112b133ad6SJeff Kirsher #define RRS_PACKET_BCAST_SHIFT	26
2122b133ad6SJeff Kirsher #define RRS_PACKET_MCAST_MASK	0x0001
2132b133ad6SJeff Kirsher #define RRS_PACKET_MCAST_SHIFT	27
2142b133ad6SJeff Kirsher #define RRS_PACKET_TYPE_MASK	0x0001
2152b133ad6SJeff Kirsher #define RRS_PACKET_TYPE_SHIFT	28
2162b133ad6SJeff Kirsher #define RRS_FIFO_FULL_MASK	0x0001
2172b133ad6SJeff Kirsher #define RRS_FIFO_FULL_SHIFT	29
2182b133ad6SJeff Kirsher #define RRS_802_3_LEN_ERR_MASK 	0x0001
2192b133ad6SJeff Kirsher #define RRS_802_3_LEN_ERR_SHIFT 30
2202b133ad6SJeff Kirsher #define RRS_RXD_UPDATED_MASK	0x0001
2212b133ad6SJeff Kirsher #define RRS_RXD_UPDATED_SHIFT	31
2222b133ad6SJeff Kirsher 
2232b133ad6SJeff Kirsher #define RRS_ERR_L4_CSUM         0x00004000
2242b133ad6SJeff Kirsher #define RRS_ERR_IP_CSUM         0x00008000
2252b133ad6SJeff Kirsher #define RRS_VLAN_INS            0x00010000
2262b133ad6SJeff Kirsher #define RRS_RX_ERR_SUM          0x00100000
2272b133ad6SJeff Kirsher #define RRS_RX_ERR_CRC          0x00200000
2282b133ad6SJeff Kirsher #define RRS_802_3_LEN_ERR	0x40000000
2292b133ad6SJeff Kirsher #define RRS_RXD_UPDATED		0x80000000
2302b133ad6SJeff Kirsher 
2312b133ad6SJeff Kirsher #define RRS_PACKET_TYPE_802_3  	1
2322b133ad6SJeff Kirsher #define RRS_PACKET_TYPE_ETH	0
2332b133ad6SJeff Kirsher #define RRS_PACKET_IS_ETH(word) \
2342b133ad6SJeff Kirsher 	((((word) >> RRS_PACKET_TYPE_SHIFT) & RRS_PACKET_TYPE_MASK) == \
2352b133ad6SJeff Kirsher 			RRS_PACKET_TYPE_ETH)
2362b133ad6SJeff Kirsher #define RRS_RXD_IS_VALID(word) \
2372b133ad6SJeff Kirsher 	((((word) >> RRS_RXD_UPDATED_SHIFT) & RRS_RXD_UPDATED_MASK) == 1)
2382b133ad6SJeff Kirsher 
2392b133ad6SJeff Kirsher #define RRS_PACKET_PROT_IS_IPV4_ONLY(word) \
2402b133ad6SJeff Kirsher 	((((word) >> RRS_PROT_ID_SHIFT) & RRS_PROT_ID_MASK) == 1)
2412b133ad6SJeff Kirsher #define RRS_PACKET_PROT_IS_IPV6_ONLY(word) \
2422b133ad6SJeff Kirsher 	((((word) >> RRS_PROT_ID_SHIFT) & RRS_PROT_ID_MASK) == 6)
2432b133ad6SJeff Kirsher 
244b0390009SGatis Peisenieks #define RRS_MT_PROT_ID_TCPUDP	BIT(19)
245b0390009SGatis Peisenieks 
2462b133ad6SJeff Kirsher struct atl1c_recv_ret_status {
2472b133ad6SJeff Kirsher 	__le32  word0;
2482b133ad6SJeff Kirsher 	__le32	rss_hash;
2492b133ad6SJeff Kirsher 	__le16	vlan_tag;
2502b133ad6SJeff Kirsher 	__le16	flag;
2512b133ad6SJeff Kirsher 	__le32	word3;
2522b133ad6SJeff Kirsher };
2532b133ad6SJeff Kirsher 
2542b133ad6SJeff Kirsher /* RFD descriptor */
2552b133ad6SJeff Kirsher struct atl1c_rx_free_desc {
2562b133ad6SJeff Kirsher 	__le64	buffer_addr;
2572b133ad6SJeff Kirsher };
2582b133ad6SJeff Kirsher 
2592b133ad6SJeff Kirsher /* DMA Order Settings */
2602b133ad6SJeff Kirsher enum atl1c_dma_order {
2612b133ad6SJeff Kirsher 	atl1c_dma_ord_in = 1,
2622b133ad6SJeff Kirsher 	atl1c_dma_ord_enh = 2,
2632b133ad6SJeff Kirsher 	atl1c_dma_ord_out = 4
2642b133ad6SJeff Kirsher };
2652b133ad6SJeff Kirsher 
2662b133ad6SJeff Kirsher enum atl1c_dma_rcb {
2672b133ad6SJeff Kirsher 	atl1c_rcb_64 = 0,
2682b133ad6SJeff Kirsher 	atl1c_rcb_128 = 1
2692b133ad6SJeff Kirsher };
2702b133ad6SJeff Kirsher 
2712b133ad6SJeff Kirsher enum atl1c_mac_speed {
2722b133ad6SJeff Kirsher 	atl1c_mac_speed_0 = 0,
2732b133ad6SJeff Kirsher 	atl1c_mac_speed_10_100 = 1,
2742b133ad6SJeff Kirsher 	atl1c_mac_speed_1000 = 2
2752b133ad6SJeff Kirsher };
2762b133ad6SJeff Kirsher 
2772b133ad6SJeff Kirsher enum atl1c_dma_req_block {
2782b133ad6SJeff Kirsher 	atl1c_dma_req_128 = 0,
2792b133ad6SJeff Kirsher 	atl1c_dma_req_256 = 1,
2802b133ad6SJeff Kirsher 	atl1c_dma_req_512 = 2,
2812b133ad6SJeff Kirsher 	atl1c_dma_req_1024 = 3,
2822b133ad6SJeff Kirsher 	atl1c_dma_req_2048 = 4,
2832b133ad6SJeff Kirsher 	atl1c_dma_req_4096 = 5
2842b133ad6SJeff Kirsher };
2852b133ad6SJeff Kirsher 
2862b133ad6SJeff Kirsher 
2872b133ad6SJeff Kirsher enum atl1c_nic_type {
2882b133ad6SJeff Kirsher 	athr_l1c = 0,
2892b133ad6SJeff Kirsher 	athr_l2c = 1,
2902b133ad6SJeff Kirsher 	athr_l2c_b,
2912b133ad6SJeff Kirsher 	athr_l2c_b2,
2922b133ad6SJeff Kirsher 	athr_l1d,
2932b133ad6SJeff Kirsher 	athr_l1d_2,
294f19d4997SGatis Peisenieks 	athr_mt,
2952b133ad6SJeff Kirsher };
2962b133ad6SJeff Kirsher 
2972b133ad6SJeff Kirsher struct atl1c_hw_stats {
2982b133ad6SJeff Kirsher 	/* rx */
2992b133ad6SJeff Kirsher 	unsigned long rx_ok;		/* The number of good packet received. */
3002b133ad6SJeff Kirsher 	unsigned long rx_bcast;		/* The number of good broadcast packet received. */
3012b133ad6SJeff Kirsher 	unsigned long rx_mcast;		/* The number of good multicast packet received. */
3022b133ad6SJeff Kirsher 	unsigned long rx_pause;		/* The number of Pause packet received. */
3032b133ad6SJeff Kirsher 	unsigned long rx_ctrl;		/* The number of Control packet received other than Pause frame. */
3042b133ad6SJeff Kirsher 	unsigned long rx_fcs_err;	/* The number of packets with bad FCS. */
3052b133ad6SJeff Kirsher 	unsigned long rx_len_err;	/* The number of packets with mismatch of length field and actual size. */
3062b133ad6SJeff Kirsher 	unsigned long rx_byte_cnt;	/* The number of bytes of good packet received. FCS is NOT included. */
3072b133ad6SJeff Kirsher 	unsigned long rx_runt;		/* The number of packets received that are less than 64 byte long and with good FCS. */
3082b133ad6SJeff Kirsher 	unsigned long rx_frag;		/* The number of packets received that are less than 64 byte long and with bad FCS. */
3092b133ad6SJeff Kirsher 	unsigned long rx_sz_64;		/* The number of good and bad packets received that are 64 byte long. */
3102b133ad6SJeff Kirsher 	unsigned long rx_sz_65_127;	/* The number of good and bad packets received that are between 65 and 127-byte long. */
3112b133ad6SJeff Kirsher 	unsigned long rx_sz_128_255;	/* The number of good and bad packets received that are between 128 and 255-byte long. */
3122b133ad6SJeff Kirsher 	unsigned long rx_sz_256_511;	/* The number of good and bad packets received that are between 256 and 511-byte long. */
3132b133ad6SJeff Kirsher 	unsigned long rx_sz_512_1023;	/* The number of good and bad packets received that are between 512 and 1023-byte long. */
3142b133ad6SJeff Kirsher 	unsigned long rx_sz_1024_1518;	/* The number of good and bad packets received that are between 1024 and 1518-byte long. */
3152b133ad6SJeff Kirsher 	unsigned long rx_sz_1519_max;	/* The number of good and bad packets received that are between 1519-byte and MTU. */
3162b133ad6SJeff Kirsher 	unsigned long rx_sz_ov;		/* The number of good and bad packets received that are more than MTU size truncated by Selene. */
3172b133ad6SJeff Kirsher 	unsigned long rx_rxf_ov;	/* The number of frame dropped due to occurrence of RX FIFO overflow. */
3182b133ad6SJeff Kirsher 	unsigned long rx_rrd_ov;	/* The number of frame dropped due to occurrence of RRD overflow. */
3192b133ad6SJeff Kirsher 	unsigned long rx_align_err;	/* Alignment Error */
3202b133ad6SJeff Kirsher 	unsigned long rx_bcast_byte_cnt; /* The byte count of broadcast packet received, excluding FCS. */
3212b133ad6SJeff Kirsher 	unsigned long rx_mcast_byte_cnt; /* The byte count of multicast packet received, excluding FCS. */
3222b133ad6SJeff Kirsher 	unsigned long rx_err_addr;	/* The number of packets dropped due to address filtering. */
3232b133ad6SJeff Kirsher 
3242b133ad6SJeff Kirsher 	/* tx */
3252b133ad6SJeff Kirsher 	unsigned long tx_ok;		/* The number of good packet transmitted. */
3262b133ad6SJeff Kirsher 	unsigned long tx_bcast;		/* The number of good broadcast packet transmitted. */
3272b133ad6SJeff Kirsher 	unsigned long tx_mcast;		/* The number of good multicast packet transmitted. */
3282b133ad6SJeff Kirsher 	unsigned long tx_pause;		/* The number of Pause packet transmitted. */
3292b133ad6SJeff Kirsher 	unsigned long tx_exc_defer;	/* The number of packets transmitted with excessive deferral. */
3302b133ad6SJeff Kirsher 	unsigned long tx_ctrl;		/* The number of packets transmitted is a control frame, excluding Pause frame. */
3312b133ad6SJeff Kirsher 	unsigned long tx_defer;		/* The number of packets transmitted that is deferred. */
3322b133ad6SJeff Kirsher 	unsigned long tx_byte_cnt;	/* The number of bytes of data transmitted. FCS is NOT included. */
3332b133ad6SJeff Kirsher 	unsigned long tx_sz_64;		/* The number of good and bad packets transmitted that are 64 byte long. */
3342b133ad6SJeff Kirsher 	unsigned long tx_sz_65_127;	/* The number of good and bad packets transmitted that are between 65 and 127-byte long. */
3352b133ad6SJeff Kirsher 	unsigned long tx_sz_128_255;	/* The number of good and bad packets transmitted that are between 128 and 255-byte long. */
3362b133ad6SJeff Kirsher 	unsigned long tx_sz_256_511;	/* The number of good and bad packets transmitted that are between 256 and 511-byte long. */
3372b133ad6SJeff Kirsher 	unsigned long tx_sz_512_1023;	/* The number of good and bad packets transmitted that are between 512 and 1023-byte long. */
3382b133ad6SJeff Kirsher 	unsigned long tx_sz_1024_1518;	/* The number of good and bad packets transmitted that are between 1024 and 1518-byte long. */
3392b133ad6SJeff Kirsher 	unsigned long tx_sz_1519_max;	/* The number of good and bad packets transmitted that are between 1519-byte and MTU. */
3402b133ad6SJeff Kirsher 	unsigned long tx_1_col;		/* The number of packets subsequently transmitted successfully with a single prior collision. */
3412b133ad6SJeff Kirsher 	unsigned long tx_2_col;		/* The number of packets subsequently transmitted successfully with multiple prior collisions. */
3422b133ad6SJeff Kirsher 	unsigned long tx_late_col;	/* The number of packets transmitted with late collisions. */
3432b133ad6SJeff Kirsher 	unsigned long tx_abort_col;	/* The number of transmit packets aborted due to excessive collisions. */
3442b133ad6SJeff Kirsher 	unsigned long tx_underrun;	/* The number of transmit packets aborted due to transmit FIFO underrun, or TRD FIFO underrun */
3452b133ad6SJeff Kirsher 	unsigned long tx_rd_eop;	/* The number of times that read beyond the EOP into the next frame area when TRD was not written timely */
3462b133ad6SJeff Kirsher 	unsigned long tx_len_err;	/* The number of transmit packets with length field does NOT match the actual frame size. */
3472b133ad6SJeff Kirsher 	unsigned long tx_trunc;		/* The number of transmit packets truncated due to size exceeding MTU. */
3482b133ad6SJeff Kirsher 	unsigned long tx_bcast_byte;	/* The byte count of broadcast packet transmitted, excluding FCS. */
3492b133ad6SJeff Kirsher 	unsigned long tx_mcast_byte;	/* The byte count of multicast packet transmitted, excluding FCS. */
3502b133ad6SJeff Kirsher };
3512b133ad6SJeff Kirsher 
3522b133ad6SJeff Kirsher struct atl1c_hw {
3532b133ad6SJeff Kirsher 	u8 __iomem      *hw_addr;            /* inner register address */
3542b133ad6SJeff Kirsher 	struct atl1c_adapter *adapter;
3552b133ad6SJeff Kirsher 	enum atl1c_nic_type  nic_type;
3562b133ad6SJeff Kirsher 	enum atl1c_dma_order dma_order;
3572b133ad6SJeff Kirsher 	enum atl1c_dma_rcb   rcb_value;
3582b133ad6SJeff Kirsher 	enum atl1c_dma_req_block dmar_block;
3592b133ad6SJeff Kirsher 
3602b133ad6SJeff Kirsher 	u16 device_id;
3612b133ad6SJeff Kirsher 	u16 vendor_id;
3622b133ad6SJeff Kirsher 	u16 subsystem_id;
3632b133ad6SJeff Kirsher 	u16 subsystem_vendor_id;
3642b133ad6SJeff Kirsher 	u8 revision_id;
3652b133ad6SJeff Kirsher 	u16 phy_id1;
3662b133ad6SJeff Kirsher 	u16 phy_id2;
3672b133ad6SJeff Kirsher 
368a1150a04SGatis Peisenieks 	spinlock_t intr_mask_lock;	/* protect the intr_mask */
3692b133ad6SJeff Kirsher 	u32 intr_mask;
3702b133ad6SJeff Kirsher 
3712b133ad6SJeff Kirsher 	u8 preamble_len;
3722b133ad6SJeff Kirsher 	u16 max_frame_size;
3732b133ad6SJeff Kirsher 	u16 min_frame_size;
3742b133ad6SJeff Kirsher 
3752b133ad6SJeff Kirsher 	enum atl1c_mac_speed mac_speed;
3762b133ad6SJeff Kirsher 	bool mac_duplex;
3772b133ad6SJeff Kirsher 	bool hibernate;
3782b133ad6SJeff Kirsher 	u16 media_type;
3792b133ad6SJeff Kirsher #define MEDIA_TYPE_AUTO_SENSOR  0
3802b133ad6SJeff Kirsher #define MEDIA_TYPE_100M_FULL    1
3812b133ad6SJeff Kirsher #define MEDIA_TYPE_100M_HALF    2
3822b133ad6SJeff Kirsher #define MEDIA_TYPE_10M_FULL     3
3832b133ad6SJeff Kirsher #define MEDIA_TYPE_10M_HALF     4
3842b133ad6SJeff Kirsher 
3852b133ad6SJeff Kirsher 	u16 autoneg_advertised;
3862b133ad6SJeff Kirsher 	u16 mii_autoneg_adv_reg;
3872b133ad6SJeff Kirsher 	u16 mii_1000t_ctrl_reg;
3882b133ad6SJeff Kirsher 
3892b133ad6SJeff Kirsher 	u16 tx_imt;	/* TX Interrupt Moderator timer ( 2us resolution) */
3902b133ad6SJeff Kirsher 	u16 rx_imt;	/* RX Interrupt Moderator timer ( 2us resolution) */
3912b133ad6SJeff Kirsher 	u16 ict;        /* Interrupt Clear timer (2us resolution) */
3922b133ad6SJeff Kirsher 	u16 ctrl_flags;
3932b133ad6SJeff Kirsher #define ATL1C_INTR_CLEAR_ON_READ	0x0001
3942b133ad6SJeff Kirsher #define ATL1C_INTR_MODRT_ENABLE	 	0x0002
3952b133ad6SJeff Kirsher #define ATL1C_CMB_ENABLE		0x0004
3962b133ad6SJeff Kirsher #define ATL1C_SMB_ENABLE		0x0010
3972b133ad6SJeff Kirsher #define ATL1C_TXQ_MODE_ENHANCE		0x0020
3982b133ad6SJeff Kirsher #define ATL1C_RX_IPV6_CHKSUM		0x0040
3992b133ad6SJeff Kirsher #define ATL1C_ASPM_L0S_SUPPORT		0x0080
4002b133ad6SJeff Kirsher #define ATL1C_ASPM_L1_SUPPORT		0x0100
4012b133ad6SJeff Kirsher #define ATL1C_ASPM_CTRL_MON		0x0200
4022b133ad6SJeff Kirsher #define ATL1C_HIB_DISABLE		0x0400
4032b133ad6SJeff Kirsher #define ATL1C_APS_MODE_ENABLE           0x0800
4042b133ad6SJeff Kirsher #define ATL1C_LINK_EXT_SYNC             0x1000
4052b133ad6SJeff Kirsher #define ATL1C_CLK_GATING_EN             0x2000
4062b133ad6SJeff Kirsher #define ATL1C_FPGA_VERSION              0x8000
4072b133ad6SJeff Kirsher 	u16 link_cap_flags;
4082b133ad6SJeff Kirsher #define ATL1C_LINK_CAP_1000M		0x0001
4092b133ad6SJeff Kirsher 	u32 smb_timer;
4102b133ad6SJeff Kirsher 
4112b133ad6SJeff Kirsher 	u16 rrd_thresh; /* Threshold of number of RRD produced to trigger
4122b133ad6SJeff Kirsher 			  interrupt request */
4132b133ad6SJeff Kirsher 	u16 tpd_thresh;
4142b133ad6SJeff Kirsher 	u8 tpd_burst;   /* Number of TPD to prefetch in cache-aligned burst. */
4152b133ad6SJeff Kirsher 	u8 rfd_burst;
4162b133ad6SJeff Kirsher 	u32 base_cpu;
4172b133ad6SJeff Kirsher 	u32 indirect_tab;
4182b133ad6SJeff Kirsher 	u8 mac_addr[ETH_ALEN];
4192b133ad6SJeff Kirsher 	u8 perm_mac_addr[ETH_ALEN];
4202b133ad6SJeff Kirsher 
4212b133ad6SJeff Kirsher 	bool phy_configured;
4222b133ad6SJeff Kirsher 	bool re_autoneg;
4232b133ad6SJeff Kirsher 	bool emi_ca;
424903d7ce0SHuang, Xiong 	bool msi_lnkpatch;	/* link patch for specific platforms */
4252b133ad6SJeff Kirsher };
4262b133ad6SJeff Kirsher 
4272b133ad6SJeff Kirsher /*
4282b133ad6SJeff Kirsher  * atl1c_ring_header represents a single, contiguous block of DMA space
4298d5c6836SHuang, Xiong  * mapped for the three descriptor rings (tpd, rfd, rrd) described below
4302b133ad6SJeff Kirsher  */
4312b133ad6SJeff Kirsher struct atl1c_ring_header {
4322b133ad6SJeff Kirsher 	void *desc;		/* virtual address */
4332b133ad6SJeff Kirsher 	dma_addr_t dma;		/* physical address*/
4342b133ad6SJeff Kirsher 	unsigned int size;	/* length in bytes */
4352b133ad6SJeff Kirsher };
4362b133ad6SJeff Kirsher 
4372b133ad6SJeff Kirsher /*
4382b133ad6SJeff Kirsher  * atl1c_buffer is wrapper around a pointer to a socket buffer
4392b133ad6SJeff Kirsher  * so a DMA handle can be stored along with the skb
4402b133ad6SJeff Kirsher  */
4412b133ad6SJeff Kirsher struct atl1c_buffer {
4422b133ad6SJeff Kirsher 	struct sk_buff *skb;	/* socket buffer */
4432b133ad6SJeff Kirsher 	u16 length;		/* rx buffer length */
4442b133ad6SJeff Kirsher 	u16 flags;		/* information of buffer */
4452b133ad6SJeff Kirsher #define ATL1C_BUFFER_FREE		0x0001
4462b133ad6SJeff Kirsher #define ATL1C_BUFFER_BUSY		0x0002
4472b133ad6SJeff Kirsher #define ATL1C_BUFFER_STATE_MASK		0x0003
4482b133ad6SJeff Kirsher 
4492b133ad6SJeff Kirsher #define ATL1C_PCIMAP_SINGLE		0x0004
4502b133ad6SJeff Kirsher #define ATL1C_PCIMAP_PAGE		0x0008
4512b133ad6SJeff Kirsher #define ATL1C_PCIMAP_TYPE_MASK		0x000C
4522b133ad6SJeff Kirsher 
4532b133ad6SJeff Kirsher #define ATL1C_PCIMAP_TODEVICE		0x0010
4542b133ad6SJeff Kirsher #define ATL1C_PCIMAP_FROMDEVICE		0x0020
4552b133ad6SJeff Kirsher #define ATL1C_PCIMAP_DIRECTION_MASK	0x0030
4562b133ad6SJeff Kirsher 	dma_addr_t dma;
4572b133ad6SJeff Kirsher };
4582b133ad6SJeff Kirsher 
4592b133ad6SJeff Kirsher #define ATL1C_SET_BUFFER_STATE(buff, state) do {	\
4602b133ad6SJeff Kirsher 	((buff)->flags) &= ~ATL1C_BUFFER_STATE_MASK;	\
4612b133ad6SJeff Kirsher 	((buff)->flags) |= (state);			\
4622b133ad6SJeff Kirsher 	} while (0)
4632b133ad6SJeff Kirsher 
4642b133ad6SJeff Kirsher #define ATL1C_SET_PCIMAP_TYPE(buff, type, direction) do {	\
4652b133ad6SJeff Kirsher 	((buff)->flags) &= ~ATL1C_PCIMAP_TYPE_MASK;		\
4662b133ad6SJeff Kirsher 	((buff)->flags) |= (type);				\
4672b133ad6SJeff Kirsher 	((buff)->flags) &= ~ATL1C_PCIMAP_DIRECTION_MASK;	\
4682b133ad6SJeff Kirsher 	((buff)->flags) |= (direction);				\
4692b133ad6SJeff Kirsher 	} while (0)
4702b133ad6SJeff Kirsher 
4712b133ad6SJeff Kirsher /* transimit packet descriptor (tpd) ring */
4722b133ad6SJeff Kirsher struct atl1c_tpd_ring {
47320a1b6bdSGatis Peisenieks 	struct atl1c_adapter *adapter;
4742b133ad6SJeff Kirsher 	void *desc;		/* descriptor ring virtual address */
4752b133ad6SJeff Kirsher 	dma_addr_t dma;		/* descriptor ring physical address */
47620a1b6bdSGatis Peisenieks 	u16 num;
4772b133ad6SJeff Kirsher 	u16 size;		/* descriptor ring length in bytes */
4782b133ad6SJeff Kirsher 	u16 count;		/* number of descriptors in the ring */
479353e3bd5SFlorian Westphal 	u16 next_to_use;
4802b133ad6SJeff Kirsher 	atomic_t next_to_clean;
4812b133ad6SJeff Kirsher 	struct atl1c_buffer *buffer_info;
48220a1b6bdSGatis Peisenieks 	struct napi_struct napi;
4832b133ad6SJeff Kirsher };
4842b133ad6SJeff Kirsher 
4852b133ad6SJeff Kirsher /* receive free descriptor (rfd) ring */
4862b133ad6SJeff Kirsher struct atl1c_rfd_ring {
4872b133ad6SJeff Kirsher 	void *desc;		/* descriptor ring virtual address */
4882b133ad6SJeff Kirsher 	dma_addr_t dma;		/* descriptor ring physical address */
4892b133ad6SJeff Kirsher 	u16 size;		/* descriptor ring length in bytes */
4902b133ad6SJeff Kirsher 	u16 count;		/* number of descriptors in the ring */
4912b133ad6SJeff Kirsher 	u16 next_to_use;
4922b133ad6SJeff Kirsher 	u16 next_to_clean;
4932b133ad6SJeff Kirsher 	struct atl1c_buffer *buffer_info;
4942b133ad6SJeff Kirsher };
4952b133ad6SJeff Kirsher 
4962b133ad6SJeff Kirsher /* receive return descriptor (rrd) ring */
4972b133ad6SJeff Kirsher struct atl1c_rrd_ring {
4988042824aSGatis Peisenieks 	struct atl1c_adapter *adapter;
4992b133ad6SJeff Kirsher 	void *desc;		/* descriptor ring virtual address */
5002b133ad6SJeff Kirsher 	dma_addr_t dma;		/* descriptor ring physical address */
5018042824aSGatis Peisenieks 	u16 num;
5022b133ad6SJeff Kirsher 	u16 size;		/* descriptor ring length in bytes */
5032b133ad6SJeff Kirsher 	u16 count;		/* number of descriptors in the ring */
5042b133ad6SJeff Kirsher 	u16 next_to_use;
5052b133ad6SJeff Kirsher 	u16 next_to_clean;
5068042824aSGatis Peisenieks 	struct napi_struct napi;
5072b133ad6SJeff Kirsher };
5082b133ad6SJeff Kirsher 
5092b133ad6SJeff Kirsher /* board specific private data structure */
5102b133ad6SJeff Kirsher struct atl1c_adapter {
5112b133ad6SJeff Kirsher 	struct net_device   *netdev;
5122b133ad6SJeff Kirsher 	struct pci_dev      *pdev;
5132b133ad6SJeff Kirsher 	struct atl1c_hw        hw;
5142b133ad6SJeff Kirsher 	struct atl1c_hw_stats  hw_stats;
5152b133ad6SJeff Kirsher 	struct mii_if_info  mii;    /* MII interface info */
5162b133ad6SJeff Kirsher 	u16 rx_buffer_len;
517*057f4af2SGatis Peisenieks 	unsigned int tx_queue_count;
518*057f4af2SGatis Peisenieks 	unsigned int rx_queue_count;
5192b133ad6SJeff Kirsher 
5202b133ad6SJeff Kirsher 	unsigned long flags;
5212b133ad6SJeff Kirsher #define __AT_TESTING        0x0001
5222b133ad6SJeff Kirsher #define __AT_RESETTING      0x0002
5232b133ad6SJeff Kirsher #define __AT_DOWN           0x0003
5242b133ad6SJeff Kirsher 	unsigned long work_event;
5252b133ad6SJeff Kirsher #define	ATL1C_WORK_EVENT_RESET		0
5262b133ad6SJeff Kirsher #define	ATL1C_WORK_EVENT_LINK_CHANGE	1
5272b133ad6SJeff Kirsher 	u32 msg_enable;
5282b133ad6SJeff Kirsher 
5292b133ad6SJeff Kirsher 	bool have_msi;
5302b133ad6SJeff Kirsher 	u32 wol;
5312b133ad6SJeff Kirsher 	u16 link_speed;
5322b133ad6SJeff Kirsher 	u16 link_duplex;
5332b133ad6SJeff Kirsher 
5342b133ad6SJeff Kirsher 	spinlock_t mdio_lock;
5352b133ad6SJeff Kirsher 	atomic_t irq_sem;
5362b133ad6SJeff Kirsher 
5372b133ad6SJeff Kirsher 	struct work_struct common_task;
5382b133ad6SJeff Kirsher 	struct timer_list watchdog_timer;
5392b133ad6SJeff Kirsher 	struct timer_list phy_config_timer;
5402b133ad6SJeff Kirsher 
5412b133ad6SJeff Kirsher 	/* All Descriptor memory */
5422b133ad6SJeff Kirsher 	struct atl1c_ring_header ring_header;
5432b133ad6SJeff Kirsher 	struct atl1c_tpd_ring tpd_ring[AT_MAX_TRANSMIT_QUEUE];
5448042824aSGatis Peisenieks 	struct atl1c_rfd_ring rfd_ring[AT_MAX_RECEIVE_QUEUE];
5458042824aSGatis Peisenieks 	struct atl1c_rrd_ring rrd_ring[AT_MAX_RECEIVE_QUEUE];
5462b133ad6SJeff Kirsher 	u32 bd_number;     /* board number;*/
5472b133ad6SJeff Kirsher };
5482b133ad6SJeff Kirsher 
5492b133ad6SJeff Kirsher #define AT_WRITE_REG(a, reg, value) ( \
5502b133ad6SJeff Kirsher 		writel((value), ((a)->hw_addr + reg)))
5512b133ad6SJeff Kirsher 
5522b133ad6SJeff Kirsher #define AT_WRITE_FLUSH(a) (\
5532b133ad6SJeff Kirsher 		readl((a)->hw_addr))
5542b133ad6SJeff Kirsher 
5552b133ad6SJeff Kirsher #define AT_READ_REG(a, reg, pdata) do {					\
5562b133ad6SJeff Kirsher 		if (unlikely((a)->hibernate)) {				\
5572b133ad6SJeff Kirsher 			readl((a)->hw_addr + reg);			\
5582b133ad6SJeff Kirsher 			*(u32 *)pdata = readl((a)->hw_addr + reg);	\
5592b133ad6SJeff Kirsher 		} else {						\
5602b133ad6SJeff Kirsher 			*(u32 *)pdata = readl((a)->hw_addr + reg);	\
5612b133ad6SJeff Kirsher 		}							\
5622b133ad6SJeff Kirsher 	} while (0)
5632b133ad6SJeff Kirsher 
5642b133ad6SJeff Kirsher #define AT_WRITE_REGB(a, reg, value) (\
5652b133ad6SJeff Kirsher 		writeb((value), ((a)->hw_addr + reg)))
5662b133ad6SJeff Kirsher 
5672b133ad6SJeff Kirsher #define AT_READ_REGB(a, reg) (\
5682b133ad6SJeff Kirsher 		readb((a)->hw_addr + reg))
5692b133ad6SJeff Kirsher 
5702b133ad6SJeff Kirsher #define AT_WRITE_REGW(a, reg, value) (\
5712b133ad6SJeff Kirsher 		writew((value), ((a)->hw_addr + reg)))
5722b133ad6SJeff Kirsher 
5730af48336SHuang, Xiong #define AT_READ_REGW(a, reg, pdata) do {				\
5740af48336SHuang, Xiong 		if (unlikely((a)->hibernate)) {				\
5750af48336SHuang, Xiong 			readw((a)->hw_addr + reg);			\
5760af48336SHuang, Xiong 			*(u16 *)pdata = readw((a)->hw_addr + reg);	\
5770af48336SHuang, Xiong 		} else {						\
5780af48336SHuang, Xiong 			*(u16 *)pdata = readw((a)->hw_addr + reg);	\
5790af48336SHuang, Xiong 		}							\
5800af48336SHuang, Xiong 	} while (0)
5812b133ad6SJeff Kirsher 
5822b133ad6SJeff Kirsher #define AT_WRITE_REG_ARRAY(a, reg, offset, value) ( \
5832b133ad6SJeff Kirsher 		writel((value), (((a)->hw_addr + reg) + ((offset) << 2))))
5842b133ad6SJeff Kirsher 
5852b133ad6SJeff Kirsher #define AT_READ_REG_ARRAY(a, reg, offset) ( \
5862b133ad6SJeff Kirsher 		readl(((a)->hw_addr + reg) + ((offset) << 2)))
5872b133ad6SJeff Kirsher 
5882b133ad6SJeff Kirsher extern char atl1c_driver_name[];
5892b133ad6SJeff Kirsher 
5906ae97e83SJoe Perches void atl1c_reinit_locked(struct atl1c_adapter *adapter);
5916ae97e83SJoe Perches s32 atl1c_reset_hw(struct atl1c_hw *hw);
5926ae97e83SJoe Perches void atl1c_set_ethtool_ops(struct net_device *netdev);
5932b133ad6SJeff Kirsher #endif /* _ATL1C_H_ */
594