1*1a59d1b8SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */ 22b133ad6SJeff Kirsher /* 32b133ad6SJeff Kirsher * Copyright(c) 2007 Atheros Corporation. All rights reserved. 42b133ad6SJeff Kirsher * Copyright(c) 2007 xiong huang <xiong.huang@atheros.com> 52b133ad6SJeff Kirsher * 62b133ad6SJeff Kirsher * Derived from Intel e1000 driver 72b133ad6SJeff Kirsher * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved. 82b133ad6SJeff Kirsher */ 92b133ad6SJeff Kirsher 102b133ad6SJeff Kirsher #ifndef _ATL1E_H_ 112b133ad6SJeff Kirsher #define _ATL1E_H_ 122b133ad6SJeff Kirsher 132b133ad6SJeff Kirsher #include <linux/interrupt.h> 142b133ad6SJeff Kirsher #include <linux/types.h> 152b133ad6SJeff Kirsher #include <linux/errno.h> 162b133ad6SJeff Kirsher #include <linux/module.h> 172b133ad6SJeff Kirsher #include <linux/pci.h> 182b133ad6SJeff Kirsher #include <linux/netdevice.h> 192b133ad6SJeff Kirsher #include <linux/etherdevice.h> 202b133ad6SJeff Kirsher #include <linux/skbuff.h> 212b133ad6SJeff Kirsher #include <linux/ioport.h> 222b133ad6SJeff Kirsher #include <linux/slab.h> 232b133ad6SJeff Kirsher #include <linux/list.h> 242b133ad6SJeff Kirsher #include <linux/delay.h> 252b133ad6SJeff Kirsher #include <linux/sched.h> 262b133ad6SJeff Kirsher #include <linux/in.h> 272b133ad6SJeff Kirsher #include <linux/ip.h> 282b133ad6SJeff Kirsher #include <linux/ipv6.h> 292b133ad6SJeff Kirsher #include <linux/udp.h> 302b133ad6SJeff Kirsher #include <linux/mii.h> 312b133ad6SJeff Kirsher #include <linux/io.h> 322b133ad6SJeff Kirsher #include <linux/vmalloc.h> 332b133ad6SJeff Kirsher #include <linux/pagemap.h> 342b133ad6SJeff Kirsher #include <linux/tcp.h> 352b133ad6SJeff Kirsher #include <linux/ethtool.h> 362b133ad6SJeff Kirsher #include <linux/if_vlan.h> 372b133ad6SJeff Kirsher #include <linux/workqueue.h> 382b133ad6SJeff Kirsher #include <net/checksum.h> 392b133ad6SJeff Kirsher #include <net/ip6_checksum.h> 402b133ad6SJeff Kirsher 412b133ad6SJeff Kirsher #include "atl1e_hw.h" 422b133ad6SJeff Kirsher 432b133ad6SJeff Kirsher #define PCI_REG_COMMAND 0x04 /* PCI Command Register */ 442b133ad6SJeff Kirsher #define CMD_IO_SPACE 0x0001 452b133ad6SJeff Kirsher #define CMD_MEMORY_SPACE 0x0002 462b133ad6SJeff Kirsher #define CMD_BUS_MASTER 0x0004 472b133ad6SJeff Kirsher 482b133ad6SJeff Kirsher #define BAR_0 0 492b133ad6SJeff Kirsher #define BAR_1 1 502b133ad6SJeff Kirsher #define BAR_5 5 512b133ad6SJeff Kirsher 522b133ad6SJeff Kirsher /* Wake Up Filter Control */ 532b133ad6SJeff Kirsher #define AT_WUFC_LNKC 0x00000001 /* Link Status Change Wakeup Enable */ 542b133ad6SJeff Kirsher #define AT_WUFC_MAG 0x00000002 /* Magic Packet Wakeup Enable */ 552b133ad6SJeff Kirsher #define AT_WUFC_EX 0x00000004 /* Directed Exact Wakeup Enable */ 562b133ad6SJeff Kirsher #define AT_WUFC_MC 0x00000008 /* Multicast Wakeup Enable */ 572b133ad6SJeff Kirsher #define AT_WUFC_BC 0x00000010 /* Broadcast Wakeup Enable */ 582b133ad6SJeff Kirsher 592b133ad6SJeff Kirsher #define SPEED_0 0xffff 602b133ad6SJeff Kirsher #define HALF_DUPLEX 1 612b133ad6SJeff Kirsher #define FULL_DUPLEX 2 622b133ad6SJeff Kirsher 632b133ad6SJeff Kirsher /* Error Codes */ 642b133ad6SJeff Kirsher #define AT_ERR_EEPROM 1 652b133ad6SJeff Kirsher #define AT_ERR_PHY 2 662b133ad6SJeff Kirsher #define AT_ERR_CONFIG 3 672b133ad6SJeff Kirsher #define AT_ERR_PARAM 4 682b133ad6SJeff Kirsher #define AT_ERR_MAC_TYPE 5 692b133ad6SJeff Kirsher #define AT_ERR_PHY_TYPE 6 702b133ad6SJeff Kirsher #define AT_ERR_PHY_SPEED 7 712b133ad6SJeff Kirsher #define AT_ERR_PHY_RES 8 722b133ad6SJeff Kirsher #define AT_ERR_TIMEOUT 9 732b133ad6SJeff Kirsher 742b133ad6SJeff Kirsher #define MAX_JUMBO_FRAME_SIZE 0x2000 752b133ad6SJeff Kirsher 762b133ad6SJeff Kirsher #define AT_VLAN_TAG_TO_TPD_TAG(_vlan, _tpd) \ 772b133ad6SJeff Kirsher _tpd = (((_vlan) << (4)) | (((_vlan) >> 13) & 7) |\ 782b133ad6SJeff Kirsher (((_vlan) >> 9) & 8)) 792b133ad6SJeff Kirsher 802b133ad6SJeff Kirsher #define AT_TPD_TAG_TO_VLAN_TAG(_tpd, _vlan) \ 812b133ad6SJeff Kirsher _vlan = (((_tpd) >> 8) | (((_tpd) & 0x77) << 9) |\ 822b133ad6SJeff Kirsher (((_tdp) & 0x88) << 5)) 832b133ad6SJeff Kirsher 842b133ad6SJeff Kirsher #define AT_MAX_RECEIVE_QUEUE 4 852b133ad6SJeff Kirsher #define AT_PAGE_NUM_PER_QUEUE 2 862b133ad6SJeff Kirsher 872b133ad6SJeff Kirsher #define AT_DMA_HI_ADDR_MASK 0xffffffff00000000ULL 882b133ad6SJeff Kirsher #define AT_DMA_LO_ADDR_MASK 0x00000000ffffffffULL 892b133ad6SJeff Kirsher 902b133ad6SJeff Kirsher #define AT_TX_WATCHDOG (5 * HZ) 912b133ad6SJeff Kirsher #define AT_MAX_INT_WORK 10 922b133ad6SJeff Kirsher #define AT_TWSI_EEPROM_TIMEOUT 100 932b133ad6SJeff Kirsher #define AT_HW_MAX_IDLE_DELAY 10 942b133ad6SJeff Kirsher #define AT_SUSPEND_LINK_TIMEOUT 28 952b133ad6SJeff Kirsher 962b133ad6SJeff Kirsher #define AT_REGS_LEN 75 972b133ad6SJeff Kirsher #define AT_EEPROM_LEN 512 982b133ad6SJeff Kirsher #define AT_ADV_MASK (ADVERTISE_10_HALF |\ 992b133ad6SJeff Kirsher ADVERTISE_10_FULL |\ 1002b133ad6SJeff Kirsher ADVERTISE_100_HALF |\ 1012b133ad6SJeff Kirsher ADVERTISE_100_FULL |\ 1022b133ad6SJeff Kirsher ADVERTISE_1000_FULL) 1032b133ad6SJeff Kirsher 1042b133ad6SJeff Kirsher /* tpd word 2 */ 1052b133ad6SJeff Kirsher #define TPD_BUFLEN_MASK 0x3FFF 1062b133ad6SJeff Kirsher #define TPD_BUFLEN_SHIFT 0 1072b133ad6SJeff Kirsher #define TPD_DMAINT_MASK 0x0001 1082b133ad6SJeff Kirsher #define TPD_DMAINT_SHIFT 14 1092b133ad6SJeff Kirsher #define TPD_PKTNT_MASK 0x0001 1102b133ad6SJeff Kirsher #define TPD_PKTINT_SHIFT 15 1112b133ad6SJeff Kirsher #define TPD_VLANTAG_MASK 0xFFFF 1122b133ad6SJeff Kirsher #define TPD_VLAN_SHIFT 16 1132b133ad6SJeff Kirsher 1142b133ad6SJeff Kirsher /* tpd word 3 bits 0:4 */ 1152b133ad6SJeff Kirsher #define TPD_EOP_MASK 0x0001 1162b133ad6SJeff Kirsher #define TPD_EOP_SHIFT 0 1172b133ad6SJeff Kirsher #define TPD_IP_VERSION_MASK 0x0001 1182b133ad6SJeff Kirsher #define TPD_IP_VERSION_SHIFT 1 /* 0 : IPV4, 1 : IPV6 */ 1192b133ad6SJeff Kirsher #define TPD_INS_VL_TAG_MASK 0x0001 1202b133ad6SJeff Kirsher #define TPD_INS_VL_TAG_SHIFT 2 1212b133ad6SJeff Kirsher #define TPD_CC_SEGMENT_EN_MASK 0x0001 1222b133ad6SJeff Kirsher #define TPD_CC_SEGMENT_EN_SHIFT 3 1232b133ad6SJeff Kirsher #define TPD_SEGMENT_EN_MASK 0x0001 1242b133ad6SJeff Kirsher #define TPD_SEGMENT_EN_SHIFT 4 1252b133ad6SJeff Kirsher 1262b133ad6SJeff Kirsher /* tdp word 3 bits 5:7 if ip version is 0 */ 1272b133ad6SJeff Kirsher #define TPD_IP_CSUM_MASK 0x0001 1282b133ad6SJeff Kirsher #define TPD_IP_CSUM_SHIFT 5 1292b133ad6SJeff Kirsher #define TPD_TCP_CSUM_MASK 0x0001 1302b133ad6SJeff Kirsher #define TPD_TCP_CSUM_SHIFT 6 1312b133ad6SJeff Kirsher #define TPD_UDP_CSUM_MASK 0x0001 1322b133ad6SJeff Kirsher #define TPD_UDP_CSUM_SHIFT 7 1332b133ad6SJeff Kirsher 1342b133ad6SJeff Kirsher /* tdp word 3 bits 5:7 if ip version is 1 */ 1352b133ad6SJeff Kirsher #define TPD_V6_IPHLLO_MASK 0x0007 1362b133ad6SJeff Kirsher #define TPD_V6_IPHLLO_SHIFT 7 1372b133ad6SJeff Kirsher 1382b133ad6SJeff Kirsher /* tpd word 3 bits 8:9 bit */ 1392b133ad6SJeff Kirsher #define TPD_VL_TAGGED_MASK 0x0001 1402b133ad6SJeff Kirsher #define TPD_VL_TAGGED_SHIFT 8 1412b133ad6SJeff Kirsher #define TPD_ETHTYPE_MASK 0x0001 1422b133ad6SJeff Kirsher #define TPD_ETHTYPE_SHIFT 9 1432b133ad6SJeff Kirsher 1442b133ad6SJeff Kirsher /* tdp word 3 bits 10:13 if ip version is 0 */ 1452b133ad6SJeff Kirsher #define TDP_V4_IPHL_MASK 0x000F 1462b133ad6SJeff Kirsher #define TPD_V4_IPHL_SHIFT 10 1472b133ad6SJeff Kirsher 1482b133ad6SJeff Kirsher /* tdp word 3 bits 10:13 if ip version is 1 */ 1492b133ad6SJeff Kirsher #define TPD_V6_IPHLHI_MASK 0x000F 1502b133ad6SJeff Kirsher #define TPD_V6_IPHLHI_SHIFT 10 1512b133ad6SJeff Kirsher 1522b133ad6SJeff Kirsher /* tpd word 3 bit 14:31 if segment enabled */ 1532b133ad6SJeff Kirsher #define TPD_TCPHDRLEN_MASK 0x000F 1542b133ad6SJeff Kirsher #define TPD_TCPHDRLEN_SHIFT 14 1552b133ad6SJeff Kirsher #define TPD_HDRFLAG_MASK 0x0001 1562b133ad6SJeff Kirsher #define TPD_HDRFLAG_SHIFT 18 1572b133ad6SJeff Kirsher #define TPD_MSS_MASK 0x1FFF 1582b133ad6SJeff Kirsher #define TPD_MSS_SHIFT 19 1592b133ad6SJeff Kirsher 1602b133ad6SJeff Kirsher /* tdp word 3 bit 16:31 if custom csum enabled */ 1612b133ad6SJeff Kirsher #define TPD_PLOADOFFSET_MASK 0x00FF 1622b133ad6SJeff Kirsher #define TPD_PLOADOFFSET_SHIFT 16 1632b133ad6SJeff Kirsher #define TPD_CCSUMOFFSET_MASK 0x00FF 1642b133ad6SJeff Kirsher #define TPD_CCSUMOFFSET_SHIFT 24 1652b133ad6SJeff Kirsher 1662b133ad6SJeff Kirsher struct atl1e_tpd_desc { 1672b133ad6SJeff Kirsher __le64 buffer_addr; 1682b133ad6SJeff Kirsher __le32 word2; 1692b133ad6SJeff Kirsher __le32 word3; 1702b133ad6SJeff Kirsher }; 1712b133ad6SJeff Kirsher 1722b133ad6SJeff Kirsher /* how about 0x2000 */ 1732b133ad6SJeff Kirsher #define MAX_TX_BUF_LEN 0x2000 1742b133ad6SJeff Kirsher #define MAX_TX_BUF_SHIFT 13 17531d1670eSHannes Frederic Sowa #define MAX_TSO_SEG_SIZE 0x3c00 1762b133ad6SJeff Kirsher 1772b133ad6SJeff Kirsher /* rrs word 1 bit 0:31 */ 1782b133ad6SJeff Kirsher #define RRS_RX_CSUM_MASK 0xFFFF 1792b133ad6SJeff Kirsher #define RRS_RX_CSUM_SHIFT 0 1802b133ad6SJeff Kirsher #define RRS_PKT_SIZE_MASK 0x3FFF 1812b133ad6SJeff Kirsher #define RRS_PKT_SIZE_SHIFT 16 1822b133ad6SJeff Kirsher #define RRS_CPU_NUM_MASK 0x0003 1832b133ad6SJeff Kirsher #define RRS_CPU_NUM_SHIFT 30 1842b133ad6SJeff Kirsher 1852b133ad6SJeff Kirsher #define RRS_IS_RSS_IPV4 0x0001 1862b133ad6SJeff Kirsher #define RRS_IS_RSS_IPV4_TCP 0x0002 1872b133ad6SJeff Kirsher #define RRS_IS_RSS_IPV6 0x0004 1882b133ad6SJeff Kirsher #define RRS_IS_RSS_IPV6_TCP 0x0008 1892b133ad6SJeff Kirsher #define RRS_IS_IPV6 0x0010 1902b133ad6SJeff Kirsher #define RRS_IS_IP_FRAG 0x0020 1912b133ad6SJeff Kirsher #define RRS_IS_IP_DF 0x0040 1922b133ad6SJeff Kirsher #define RRS_IS_802_3 0x0080 1932b133ad6SJeff Kirsher #define RRS_IS_VLAN_TAG 0x0100 1942b133ad6SJeff Kirsher #define RRS_IS_ERR_FRAME 0x0200 1952b133ad6SJeff Kirsher #define RRS_IS_IPV4 0x0400 1962b133ad6SJeff Kirsher #define RRS_IS_UDP 0x0800 1972b133ad6SJeff Kirsher #define RRS_IS_TCP 0x1000 1982b133ad6SJeff Kirsher #define RRS_IS_BCAST 0x2000 1992b133ad6SJeff Kirsher #define RRS_IS_MCAST 0x4000 2002b133ad6SJeff Kirsher #define RRS_IS_PAUSE 0x8000 2012b133ad6SJeff Kirsher 2022b133ad6SJeff Kirsher #define RRS_ERR_BAD_CRC 0x0001 2032b133ad6SJeff Kirsher #define RRS_ERR_CODE 0x0002 2042b133ad6SJeff Kirsher #define RRS_ERR_DRIBBLE 0x0004 2052b133ad6SJeff Kirsher #define RRS_ERR_RUNT 0x0008 2062b133ad6SJeff Kirsher #define RRS_ERR_RX_OVERFLOW 0x0010 2072b133ad6SJeff Kirsher #define RRS_ERR_TRUNC 0x0020 2082b133ad6SJeff Kirsher #define RRS_ERR_IP_CSUM 0x0040 2092b133ad6SJeff Kirsher #define RRS_ERR_L4_CSUM 0x0080 2102b133ad6SJeff Kirsher #define RRS_ERR_LENGTH 0x0100 2112b133ad6SJeff Kirsher #define RRS_ERR_DES_ADDR 0x0200 2122b133ad6SJeff Kirsher 2132b133ad6SJeff Kirsher struct atl1e_recv_ret_status { 2142b133ad6SJeff Kirsher u16 seq_num; 2152b133ad6SJeff Kirsher u16 hash_lo; 2162b133ad6SJeff Kirsher __le32 word1; 2172b133ad6SJeff Kirsher u16 pkt_flag; 2182b133ad6SJeff Kirsher u16 err_flag; 2192b133ad6SJeff Kirsher u16 hash_hi; 2202b133ad6SJeff Kirsher u16 vtag; 2212b133ad6SJeff Kirsher }; 2222b133ad6SJeff Kirsher 2232b133ad6SJeff Kirsher enum atl1e_dma_req_block { 2242b133ad6SJeff Kirsher atl1e_dma_req_128 = 0, 2252b133ad6SJeff Kirsher atl1e_dma_req_256 = 1, 2262b133ad6SJeff Kirsher atl1e_dma_req_512 = 2, 2272b133ad6SJeff Kirsher atl1e_dma_req_1024 = 3, 2282b133ad6SJeff Kirsher atl1e_dma_req_2048 = 4, 2292b133ad6SJeff Kirsher atl1e_dma_req_4096 = 5 2302b133ad6SJeff Kirsher }; 2312b133ad6SJeff Kirsher 2322b133ad6SJeff Kirsher enum atl1e_rrs_type { 2332b133ad6SJeff Kirsher atl1e_rrs_disable = 0, 2342b133ad6SJeff Kirsher atl1e_rrs_ipv4 = 1, 2352b133ad6SJeff Kirsher atl1e_rrs_ipv4_tcp = 2, 2362b133ad6SJeff Kirsher atl1e_rrs_ipv6 = 4, 2372b133ad6SJeff Kirsher atl1e_rrs_ipv6_tcp = 8 2382b133ad6SJeff Kirsher }; 2392b133ad6SJeff Kirsher 2402b133ad6SJeff Kirsher enum atl1e_nic_type { 2412b133ad6SJeff Kirsher athr_l1e = 0, 2422b133ad6SJeff Kirsher athr_l2e_revA = 1, 2432b133ad6SJeff Kirsher athr_l2e_revB = 2 2442b133ad6SJeff Kirsher }; 2452b133ad6SJeff Kirsher 2462b133ad6SJeff Kirsher struct atl1e_hw_stats { 2472b133ad6SJeff Kirsher /* rx */ 2482b133ad6SJeff Kirsher unsigned long rx_ok; /* The number of good packet received. */ 2492b133ad6SJeff Kirsher unsigned long rx_bcast; /* The number of good broadcast packet received. */ 2502b133ad6SJeff Kirsher unsigned long rx_mcast; /* The number of good multicast packet received. */ 2512b133ad6SJeff Kirsher unsigned long rx_pause; /* The number of Pause packet received. */ 2522b133ad6SJeff Kirsher unsigned long rx_ctrl; /* The number of Control packet received other than Pause frame. */ 2532b133ad6SJeff Kirsher unsigned long rx_fcs_err; /* The number of packets with bad FCS. */ 2542b133ad6SJeff Kirsher unsigned long rx_len_err; /* The number of packets with mismatch of length field and actual size. */ 2552b133ad6SJeff Kirsher unsigned long rx_byte_cnt; /* The number of bytes of good packet received. FCS is NOT included. */ 2562b133ad6SJeff Kirsher unsigned long rx_runt; /* The number of packets received that are less than 64 byte long and with good FCS. */ 2572b133ad6SJeff Kirsher unsigned long rx_frag; /* The number of packets received that are less than 64 byte long and with bad FCS. */ 2582b133ad6SJeff Kirsher unsigned long rx_sz_64; /* The number of good and bad packets received that are 64 byte long. */ 2592b133ad6SJeff Kirsher unsigned long rx_sz_65_127; /* The number of good and bad packets received that are between 65 and 127-byte long. */ 2602b133ad6SJeff Kirsher unsigned long rx_sz_128_255; /* The number of good and bad packets received that are between 128 and 255-byte long. */ 2612b133ad6SJeff Kirsher unsigned long rx_sz_256_511; /* The number of good and bad packets received that are between 256 and 511-byte long. */ 2622b133ad6SJeff Kirsher unsigned long rx_sz_512_1023; /* The number of good and bad packets received that are between 512 and 1023-byte long. */ 2632b133ad6SJeff Kirsher unsigned long rx_sz_1024_1518; /* The number of good and bad packets received that are between 1024 and 1518-byte long. */ 2642b133ad6SJeff Kirsher unsigned long rx_sz_1519_max; /* The number of good and bad packets received that are between 1519-byte and MTU. */ 2652b133ad6SJeff Kirsher unsigned long rx_sz_ov; /* The number of good and bad packets received that are more than MTU size truncated by Selene. */ 2662b133ad6SJeff Kirsher unsigned long rx_rxf_ov; /* The number of frame dropped due to occurrence of RX FIFO overflow. */ 2672b133ad6SJeff Kirsher unsigned long rx_rrd_ov; /* The number of frame dropped due to occurrence of RRD overflow. */ 2682b133ad6SJeff Kirsher unsigned long rx_align_err; /* Alignment Error */ 2692b133ad6SJeff Kirsher unsigned long rx_bcast_byte_cnt; /* The byte count of broadcast packet received, excluding FCS. */ 2702b133ad6SJeff Kirsher unsigned long rx_mcast_byte_cnt; /* The byte count of multicast packet received, excluding FCS. */ 2712b133ad6SJeff Kirsher unsigned long rx_err_addr; /* The number of packets dropped due to address filtering. */ 2722b133ad6SJeff Kirsher 2732b133ad6SJeff Kirsher /* tx */ 2742b133ad6SJeff Kirsher unsigned long tx_ok; /* The number of good packet transmitted. */ 2752b133ad6SJeff Kirsher unsigned long tx_bcast; /* The number of good broadcast packet transmitted. */ 2762b133ad6SJeff Kirsher unsigned long tx_mcast; /* The number of good multicast packet transmitted. */ 2772b133ad6SJeff Kirsher unsigned long tx_pause; /* The number of Pause packet transmitted. */ 2782b133ad6SJeff Kirsher unsigned long tx_exc_defer; /* The number of packets transmitted with excessive deferral. */ 2792b133ad6SJeff Kirsher unsigned long tx_ctrl; /* The number of packets transmitted is a control frame, excluding Pause frame. */ 2802b133ad6SJeff Kirsher unsigned long tx_defer; /* The number of packets transmitted that is deferred. */ 2812b133ad6SJeff Kirsher unsigned long tx_byte_cnt; /* The number of bytes of data transmitted. FCS is NOT included. */ 2822b133ad6SJeff Kirsher unsigned long tx_sz_64; /* The number of good and bad packets transmitted that are 64 byte long. */ 2832b133ad6SJeff Kirsher unsigned long tx_sz_65_127; /* The number of good and bad packets transmitted that are between 65 and 127-byte long. */ 2842b133ad6SJeff Kirsher unsigned long tx_sz_128_255; /* The number of good and bad packets transmitted that are between 128 and 255-byte long. */ 2852b133ad6SJeff Kirsher unsigned long tx_sz_256_511; /* The number of good and bad packets transmitted that are between 256 and 511-byte long. */ 2862b133ad6SJeff Kirsher unsigned long tx_sz_512_1023; /* The number of good and bad packets transmitted that are between 512 and 1023-byte long. */ 2872b133ad6SJeff Kirsher unsigned long tx_sz_1024_1518; /* The number of good and bad packets transmitted that are between 1024 and 1518-byte long. */ 2882b133ad6SJeff Kirsher unsigned long tx_sz_1519_max; /* The number of good and bad packets transmitted that are between 1519-byte and MTU. */ 2892b133ad6SJeff Kirsher unsigned long tx_1_col; /* The number of packets subsequently transmitted successfully with a single prior collision. */ 2902b133ad6SJeff Kirsher unsigned long tx_2_col; /* The number of packets subsequently transmitted successfully with multiple prior collisions. */ 2912b133ad6SJeff Kirsher unsigned long tx_late_col; /* The number of packets transmitted with late collisions. */ 2922b133ad6SJeff Kirsher unsigned long tx_abort_col; /* The number of transmit packets aborted due to excessive collisions. */ 2932b133ad6SJeff Kirsher unsigned long tx_underrun; /* The number of transmit packets aborted due to transmit FIFO underrun, or TRD FIFO underrun */ 2942b133ad6SJeff 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 */ 2952b133ad6SJeff Kirsher unsigned long tx_len_err; /* The number of transmit packets with length field does NOT match the actual frame size. */ 2962b133ad6SJeff Kirsher unsigned long tx_trunc; /* The number of transmit packets truncated due to size exceeding MTU. */ 2972b133ad6SJeff Kirsher unsigned long tx_bcast_byte; /* The byte count of broadcast packet transmitted, excluding FCS. */ 2982b133ad6SJeff Kirsher unsigned long tx_mcast_byte; /* The byte count of multicast packet transmitted, excluding FCS. */ 2992b133ad6SJeff Kirsher }; 3002b133ad6SJeff Kirsher 3012b133ad6SJeff Kirsher struct atl1e_hw { 3022b133ad6SJeff Kirsher u8 __iomem *hw_addr; /* inner register address */ 3032b133ad6SJeff Kirsher resource_size_t mem_rang; 3042b133ad6SJeff Kirsher struct atl1e_adapter *adapter; 3052b133ad6SJeff Kirsher enum atl1e_nic_type nic_type; 3062b133ad6SJeff Kirsher u16 device_id; 3072b133ad6SJeff Kirsher u16 vendor_id; 3082b133ad6SJeff Kirsher u16 subsystem_id; 3092b133ad6SJeff Kirsher u16 subsystem_vendor_id; 3102b133ad6SJeff Kirsher u8 revision_id; 3112b133ad6SJeff Kirsher u16 pci_cmd_word; 3122b133ad6SJeff Kirsher u8 mac_addr[ETH_ALEN]; 3132b133ad6SJeff Kirsher u8 perm_mac_addr[ETH_ALEN]; 3142b133ad6SJeff Kirsher u8 preamble_len; 3152b133ad6SJeff Kirsher u16 max_frame_size; 3162b133ad6SJeff Kirsher u16 rx_jumbo_th; 3172b133ad6SJeff Kirsher u16 tx_jumbo_th; 3182b133ad6SJeff Kirsher 3192b133ad6SJeff Kirsher u16 media_type; 3202b133ad6SJeff Kirsher #define MEDIA_TYPE_AUTO_SENSOR 0 3212b133ad6SJeff Kirsher #define MEDIA_TYPE_100M_FULL 1 3222b133ad6SJeff Kirsher #define MEDIA_TYPE_100M_HALF 2 3232b133ad6SJeff Kirsher #define MEDIA_TYPE_10M_FULL 3 3242b133ad6SJeff Kirsher #define MEDIA_TYPE_10M_HALF 4 3252b133ad6SJeff Kirsher 3262b133ad6SJeff Kirsher u16 autoneg_advertised; 3272b133ad6SJeff Kirsher #define ADVERTISE_10_HALF 0x0001 3282b133ad6SJeff Kirsher #define ADVERTISE_10_FULL 0x0002 3292b133ad6SJeff Kirsher #define ADVERTISE_100_HALF 0x0004 3302b133ad6SJeff Kirsher #define ADVERTISE_100_FULL 0x0008 3312b133ad6SJeff Kirsher #define ADVERTISE_1000_HALF 0x0010 /* Not used, just FYI */ 3322b133ad6SJeff Kirsher #define ADVERTISE_1000_FULL 0x0020 3332b133ad6SJeff Kirsher u16 mii_autoneg_adv_reg; 3342b133ad6SJeff Kirsher u16 mii_1000t_ctrl_reg; 3352b133ad6SJeff Kirsher 3362b133ad6SJeff Kirsher u16 imt; /* Interrupt Moderator timer ( 2us resolution) */ 3372b133ad6SJeff Kirsher u16 ict; /* Interrupt Clear timer (2us resolution) */ 3382b133ad6SJeff Kirsher u32 smb_timer; 3392b133ad6SJeff Kirsher u16 rrd_thresh; /* Threshold of number of RRD produced to trigger 3402b133ad6SJeff Kirsher interrupt request */ 3412b133ad6SJeff Kirsher u16 tpd_thresh; 3422b133ad6SJeff Kirsher u16 rx_count_down; /* 2us resolution */ 3432b133ad6SJeff Kirsher u16 tx_count_down; 3442b133ad6SJeff Kirsher 3452b133ad6SJeff Kirsher u8 tpd_burst; /* Number of TPD to prefetch in cache-aligned burst. */ 3462b133ad6SJeff Kirsher enum atl1e_rrs_type rrs_type; 3472b133ad6SJeff Kirsher u32 base_cpu; 3482b133ad6SJeff Kirsher u32 indirect_tab; 3492b133ad6SJeff Kirsher 3502b133ad6SJeff Kirsher enum atl1e_dma_req_block dmar_block; 3512b133ad6SJeff Kirsher enum atl1e_dma_req_block dmaw_block; 3522b133ad6SJeff Kirsher u8 dmaw_dly_cnt; 3532b133ad6SJeff Kirsher u8 dmar_dly_cnt; 3542b133ad6SJeff Kirsher 3552b133ad6SJeff Kirsher bool phy_configured; 3562b133ad6SJeff Kirsher bool re_autoneg; 3572b133ad6SJeff Kirsher bool emi_ca; 3582b133ad6SJeff Kirsher }; 3592b133ad6SJeff Kirsher 3602b133ad6SJeff Kirsher /* 3612b133ad6SJeff Kirsher * wrapper around a pointer to a socket buffer, 3622b133ad6SJeff Kirsher * so a DMA handle can be stored along with the buffer 3632b133ad6SJeff Kirsher */ 3642b133ad6SJeff Kirsher struct atl1e_tx_buffer { 3652b133ad6SJeff Kirsher struct sk_buff *skb; 3662b133ad6SJeff Kirsher u16 flags; 3672b133ad6SJeff Kirsher #define ATL1E_TX_PCIMAP_SINGLE 0x0001 3682b133ad6SJeff Kirsher #define ATL1E_TX_PCIMAP_PAGE 0x0002 3692b133ad6SJeff Kirsher #define ATL1E_TX_PCIMAP_TYPE_MASK 0x0003 3702b133ad6SJeff Kirsher u16 length; 3712b133ad6SJeff Kirsher dma_addr_t dma; 3722b133ad6SJeff Kirsher }; 3732b133ad6SJeff Kirsher 3742b133ad6SJeff Kirsher #define ATL1E_SET_PCIMAP_TYPE(tx_buff, type) do { \ 3752b133ad6SJeff Kirsher ((tx_buff)->flags) &= ~ATL1E_TX_PCIMAP_TYPE_MASK; \ 3762b133ad6SJeff Kirsher ((tx_buff)->flags) |= (type); \ 3772b133ad6SJeff Kirsher } while (0) 3782b133ad6SJeff Kirsher 3792b133ad6SJeff Kirsher struct atl1e_rx_page { 3802b133ad6SJeff Kirsher dma_addr_t dma; /* receive rage DMA address */ 3812b133ad6SJeff Kirsher u8 *addr; /* receive rage virtual address */ 3822b133ad6SJeff Kirsher dma_addr_t write_offset_dma; /* the DMA address which contain the 3832b133ad6SJeff Kirsher receive data offset in the page */ 3842b133ad6SJeff Kirsher u32 *write_offset_addr; /* the virtaul address which contain 3852b133ad6SJeff Kirsher the receive data offset in the page */ 3862b133ad6SJeff Kirsher u32 read_offset; /* the offset where we have read */ 3872b133ad6SJeff Kirsher }; 3882b133ad6SJeff Kirsher 3892b133ad6SJeff Kirsher struct atl1e_rx_page_desc { 3902b133ad6SJeff Kirsher struct atl1e_rx_page rx_page[AT_PAGE_NUM_PER_QUEUE]; 3912b133ad6SJeff Kirsher u8 rx_using; 3922b133ad6SJeff Kirsher u16 rx_nxseq; 3932b133ad6SJeff Kirsher }; 3942b133ad6SJeff Kirsher 3952b133ad6SJeff Kirsher /* transmit packet descriptor (tpd) ring */ 3962b133ad6SJeff Kirsher struct atl1e_tx_ring { 3972b133ad6SJeff Kirsher struct atl1e_tpd_desc *desc; /* descriptor ring virtual address */ 3982b133ad6SJeff Kirsher dma_addr_t dma; /* descriptor ring physical address */ 3992b133ad6SJeff Kirsher u16 count; /* the count of transmit rings */ 4002b133ad6SJeff Kirsher rwlock_t tx_lock; 4012b133ad6SJeff Kirsher u16 next_to_use; 4022b133ad6SJeff Kirsher atomic_t next_to_clean; 4032b133ad6SJeff Kirsher struct atl1e_tx_buffer *tx_buffer; 4042b133ad6SJeff Kirsher dma_addr_t cmb_dma; 4052b133ad6SJeff Kirsher u32 *cmb; 4062b133ad6SJeff Kirsher }; 4072b133ad6SJeff Kirsher 4082b133ad6SJeff Kirsher /* receive packet descriptor ring */ 4092b133ad6SJeff Kirsher struct atl1e_rx_ring { 4102b133ad6SJeff Kirsher void *desc; 4112b133ad6SJeff Kirsher dma_addr_t dma; 4122b133ad6SJeff Kirsher int size; 4132b133ad6SJeff Kirsher u32 page_size; /* bytes length of rxf page */ 4142b133ad6SJeff Kirsher u32 real_page_size; /* real_page_size = page_size + jumbo + aliagn */ 4152b133ad6SJeff Kirsher struct atl1e_rx_page_desc rx_page_desc[AT_MAX_RECEIVE_QUEUE]; 4162b133ad6SJeff Kirsher }; 4172b133ad6SJeff Kirsher 4182b133ad6SJeff Kirsher /* board specific private data structure */ 4192b133ad6SJeff Kirsher struct atl1e_adapter { 4202b133ad6SJeff Kirsher struct net_device *netdev; 4212b133ad6SJeff Kirsher struct pci_dev *pdev; 4222b133ad6SJeff Kirsher struct napi_struct napi; 4232b133ad6SJeff Kirsher struct mii_if_info mii; /* MII interface info */ 4242b133ad6SJeff Kirsher struct atl1e_hw hw; 4252b133ad6SJeff Kirsher struct atl1e_hw_stats hw_stats; 4262b133ad6SJeff Kirsher 4272b133ad6SJeff Kirsher u32 wol; 4282b133ad6SJeff Kirsher u16 link_speed; 4292b133ad6SJeff Kirsher u16 link_duplex; 4302b133ad6SJeff Kirsher 4312b133ad6SJeff Kirsher spinlock_t mdio_lock; 4322b133ad6SJeff Kirsher atomic_t irq_sem; 4332b133ad6SJeff Kirsher 4342b133ad6SJeff Kirsher struct work_struct reset_task; 4352b133ad6SJeff Kirsher struct work_struct link_chg_task; 4362b133ad6SJeff Kirsher struct timer_list watchdog_timer; 4372b133ad6SJeff Kirsher struct timer_list phy_config_timer; 4382b133ad6SJeff Kirsher 4392b133ad6SJeff Kirsher /* All Descriptor memory */ 4402b133ad6SJeff Kirsher dma_addr_t ring_dma; 4412b133ad6SJeff Kirsher void *ring_vir_addr; 4422b133ad6SJeff Kirsher u32 ring_size; 4432b133ad6SJeff Kirsher 4442b133ad6SJeff Kirsher struct atl1e_tx_ring tx_ring; 4452b133ad6SJeff Kirsher struct atl1e_rx_ring rx_ring; 4462b133ad6SJeff Kirsher int num_rx_queues; 4472b133ad6SJeff Kirsher unsigned long flags; 4482b133ad6SJeff Kirsher #define __AT_TESTING 0x0001 4492b133ad6SJeff Kirsher #define __AT_RESETTING 0x0002 4502b133ad6SJeff Kirsher #define __AT_DOWN 0x0003 4512b133ad6SJeff Kirsher 4522b133ad6SJeff Kirsher u32 bd_number; /* board number;*/ 4532b133ad6SJeff Kirsher u32 pci_state[16]; 4542b133ad6SJeff Kirsher u32 *config_space; 4552b133ad6SJeff Kirsher }; 4562b133ad6SJeff Kirsher 4572b133ad6SJeff Kirsher #define AT_WRITE_REG(a, reg, value) ( \ 4582b133ad6SJeff Kirsher writel((value), ((a)->hw_addr + reg))) 4592b133ad6SJeff Kirsher 4602b133ad6SJeff Kirsher #define AT_WRITE_FLUSH(a) (\ 4612b133ad6SJeff Kirsher readl((a)->hw_addr)) 4622b133ad6SJeff Kirsher 4632b133ad6SJeff Kirsher #define AT_READ_REG(a, reg) ( \ 4642b133ad6SJeff Kirsher readl((a)->hw_addr + reg)) 4652b133ad6SJeff Kirsher 4662b133ad6SJeff Kirsher #define AT_WRITE_REGB(a, reg, value) (\ 4672b133ad6SJeff Kirsher writeb((value), ((a)->hw_addr + reg))) 4682b133ad6SJeff Kirsher 4692b133ad6SJeff Kirsher #define AT_READ_REGB(a, reg) (\ 4702b133ad6SJeff Kirsher readb((a)->hw_addr + reg)) 4712b133ad6SJeff Kirsher 4722b133ad6SJeff Kirsher #define AT_WRITE_REGW(a, reg, value) (\ 4732b133ad6SJeff Kirsher writew((value), ((a)->hw_addr + reg))) 4742b133ad6SJeff Kirsher 4752b133ad6SJeff Kirsher #define AT_READ_REGW(a, reg) (\ 4762b133ad6SJeff Kirsher readw((a)->hw_addr + reg)) 4772b133ad6SJeff Kirsher 4782b133ad6SJeff Kirsher #define AT_WRITE_REG_ARRAY(a, reg, offset, value) ( \ 4792b133ad6SJeff Kirsher writel((value), (((a)->hw_addr + reg) + ((offset) << 2)))) 4802b133ad6SJeff Kirsher 4812b133ad6SJeff Kirsher #define AT_READ_REG_ARRAY(a, reg, offset) ( \ 4822b133ad6SJeff Kirsher readl(((a)->hw_addr + reg) + ((offset) << 2))) 4832b133ad6SJeff Kirsher 4842b133ad6SJeff Kirsher extern char atl1e_driver_name[]; 4852b133ad6SJeff Kirsher 4866ae97e83SJoe Perches void atl1e_check_options(struct atl1e_adapter *adapter); 4876ae97e83SJoe Perches int atl1e_up(struct atl1e_adapter *adapter); 4886ae97e83SJoe Perches void atl1e_down(struct atl1e_adapter *adapter); 4896ae97e83SJoe Perches void atl1e_reinit_locked(struct atl1e_adapter *adapter); 4906ae97e83SJoe Perches s32 atl1e_reset_hw(struct atl1e_hw *hw); 4916ae97e83SJoe Perches void atl1e_set_ethtool_ops(struct net_device *netdev); 4922b133ad6SJeff Kirsher #endif /* _ATL1_E_H_ */ 493