1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright(c) 2005 - 2006 Attansic Corporation. All rights reserved.
4 * Copyright(c) 2006 - 2007 Chris Snook <csnook@redhat.com>
5 * Copyright(c) 2006 - 2008 Jay Cliburn <jcliburn@gmail.com>
7 * Derived from Intel e1000 driver
8 * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
14 #include <linux/compiler.h>
15 #include <linux/ethtool.h>
16 #include <linux/if_vlan.h>
17 #include <linux/mii.h>
18 #include <linux/module.h>
19 #include <linux/skbuff.h>
20 #include <linux/spinlock.h>
21 #include <linux/timer.h>
22 #include <linux/types.h>
23 #include <linux/workqueue.h>
27 #define ATLX_DRIVER_NAME "atl1"
29 MODULE_DESCRIPTION("Atheros L1 Gigabit Ethernet Driver");
31 #define atlx_adapter atl1_adapter
32 #define atlx_check_for_link atl1_check_for_link
33 #define atlx_check_link atl1_check_link
34 #define atlx_hash_mc_addr atl1_hash_mc_addr
35 #define atlx_hash_set atl1_hash_set
36 #define atlx_hw atl1_hw
37 #define atlx_mii_ioctl atl1_mii_ioctl
38 #define atlx_read_phy_reg atl1_read_phy_reg
39 #define atlx_set_mac atl1_set_mac
40 #define atlx_set_mac_addr atl1_set_mac_addr
45 /* function prototypes needed by multiple files */
46 static u32
atl1_hash_mc_addr(struct atl1_hw
*hw
, u8
*mc_addr
);
47 static void atl1_hash_set(struct atl1_hw
*hw
, u32 hash_value
);
48 static void atl1_set_mac_addr(struct atl1_hw
*hw
);
49 static int atl1_mii_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
,
51 static u32
atl1_check_link(struct atl1_adapter
*adapter
);
53 /* hardware definitions specific to L1 */
55 /* Block IDLE Status Register */
56 #define IDLE_STATUS_RXMAC 0x1
57 #define IDLE_STATUS_TXMAC 0x2
58 #define IDLE_STATUS_RXQ 0x4
59 #define IDLE_STATUS_TXQ 0x8
60 #define IDLE_STATUS_DMAR 0x10
61 #define IDLE_STATUS_DMAW 0x20
62 #define IDLE_STATUS_SMB 0x40
63 #define IDLE_STATUS_CMB 0x80
65 /* MDIO Control Register */
66 #define MDIO_WAIT_TIMES 30
68 /* MAC Control Register */
69 #define MAC_CTRL_TX_PAUSE 0x10000
70 #define MAC_CTRL_SCNT 0x20000
71 #define MAC_CTRL_SRST_TX 0x40000
72 #define MAC_CTRL_TX_SIMURST 0x80000
73 #define MAC_CTRL_SPEED_SHIFT 20
74 #define MAC_CTRL_SPEED_MASK 0x300000
75 #define MAC_CTRL_SPEED_1000 0x2
76 #define MAC_CTRL_SPEED_10_100 0x1
77 #define MAC_CTRL_DBG_TX_BKPRESURE 0x400000
78 #define MAC_CTRL_TX_HUGE 0x800000
79 #define MAC_CTRL_RX_CHKSUM_EN 0x1000000
80 #define MAC_CTRL_DBG 0x8000000
82 /* Wake-On-Lan control register */
83 #define WOL_CLK_SWITCH_EN 0x8000
84 #define WOL_PT5_EN 0x200000
85 #define WOL_PT6_EN 0x400000
86 #define WOL_PT5_MATCH 0x8000000
87 #define WOL_PT6_MATCH 0x10000000
89 /* WOL Length ( 2 DWORD ) */
90 #define REG_WOL_PATTERN_LEN 0x14A4
91 #define WOL_PT_LEN_MASK 0x7F
92 #define WOL_PT0_LEN_SHIFT 0
93 #define WOL_PT1_LEN_SHIFT 8
94 #define WOL_PT2_LEN_SHIFT 16
95 #define WOL_PT3_LEN_SHIFT 24
96 #define WOL_PT4_LEN_SHIFT 0
97 #define WOL_PT5_LEN_SHIFT 8
98 #define WOL_PT6_LEN_SHIFT 16
100 /* Internal SRAM Partition Registers, low 32 bits */
101 #define REG_SRAM_RFD_LEN 0x1504
102 #define REG_SRAM_RRD_ADDR 0x1508
103 #define REG_SRAM_RRD_LEN 0x150C
104 #define REG_SRAM_TPD_ADDR 0x1510
105 #define REG_SRAM_TPD_LEN 0x1514
106 #define REG_SRAM_TRD_ADDR 0x1518
107 #define REG_SRAM_TRD_LEN 0x151C
108 #define REG_SRAM_RXF_ADDR 0x1520
109 #define REG_SRAM_RXF_LEN 0x1524
110 #define REG_SRAM_TXF_ADDR 0x1528
111 #define REG_SRAM_TXF_LEN 0x152C
112 #define REG_SRAM_TCPH_PATH_ADDR 0x1530
113 #define SRAM_TCPH_ADDR_MASK 0xFFF
114 #define SRAM_TCPH_ADDR_SHIFT 0
115 #define SRAM_PATH_ADDR_MASK 0xFFF
116 #define SRAM_PATH_ADDR_SHIFT 16
118 /* Load Ptr Register */
119 #define REG_LOAD_PTR 0x1534
121 /* Descriptor Control registers, low 32 bits */
122 #define REG_DESC_RFD_ADDR_LO 0x1544
123 #define REG_DESC_RRD_ADDR_LO 0x1548
124 #define REG_DESC_TPD_ADDR_LO 0x154C
125 #define REG_DESC_CMB_ADDR_LO 0x1550
126 #define REG_DESC_SMB_ADDR_LO 0x1554
127 #define REG_DESC_RFD_RRD_RING_SIZE 0x1558
128 #define DESC_RFD_RING_SIZE_MASK 0x7FF
129 #define DESC_RFD_RING_SIZE_SHIFT 0
130 #define DESC_RRD_RING_SIZE_MASK 0x7FF
131 #define DESC_RRD_RING_SIZE_SHIFT 16
132 #define REG_DESC_TPD_RING_SIZE 0x155C
133 #define DESC_TPD_RING_SIZE_MASK 0x3FF
134 #define DESC_TPD_RING_SIZE_SHIFT 0
136 /* TXQ Control Register */
137 #define REG_TXQ_CTRL 0x1580
138 #define TXQ_CTRL_TPD_BURST_NUM_SHIFT 0
139 #define TXQ_CTRL_TPD_BURST_NUM_MASK 0x1F
140 #define TXQ_CTRL_EN 0x20
141 #define TXQ_CTRL_ENH_MODE 0x40
142 #define TXQ_CTRL_TPD_FETCH_TH_SHIFT 8
143 #define TXQ_CTRL_TPD_FETCH_TH_MASK 0x3F
144 #define TXQ_CTRL_TXF_BURST_NUM_SHIFT 16
145 #define TXQ_CTRL_TXF_BURST_NUM_MASK 0xFFFF
147 /* Jumbo packet Threshold for task offload */
148 #define REG_TX_JUMBO_TASK_TH_TPD_IPG 0x1584
149 #define TX_JUMBO_TASK_TH_MASK 0x7FF
150 #define TX_JUMBO_TASK_TH_SHIFT 0
151 #define TX_TPD_MIN_IPG_MASK 0x1F
152 #define TX_TPD_MIN_IPG_SHIFT 16
154 /* RXQ Control Register */
155 #define REG_RXQ_CTRL 0x15A0
156 #define RXQ_CTRL_RFD_BURST_NUM_SHIFT 0
157 #define RXQ_CTRL_RFD_BURST_NUM_MASK 0xFF
158 #define RXQ_CTRL_RRD_BURST_THRESH_SHIFT 8
159 #define RXQ_CTRL_RRD_BURST_THRESH_MASK 0xFF
160 #define RXQ_CTRL_RFD_PREF_MIN_IPG_SHIFT 16
161 #define RXQ_CTRL_RFD_PREF_MIN_IPG_MASK 0x1F
162 #define RXQ_CTRL_CUT_THRU_EN 0x40000000
163 #define RXQ_CTRL_EN 0x80000000
165 /* Rx jumbo packet threshold and rrd retirement timer */
166 #define REG_RXQ_JMBOSZ_RRDTIM 0x15A4
167 #define RXQ_JMBOSZ_TH_MASK 0x7FF
168 #define RXQ_JMBOSZ_TH_SHIFT 0
169 #define RXQ_JMBO_LKAH_MASK 0xF
170 #define RXQ_JMBO_LKAH_SHIFT 11
171 #define RXQ_RRD_TIMER_MASK 0xFFFF
172 #define RXQ_RRD_TIMER_SHIFT 16
174 /* RFD flow control register */
175 #define REG_RXQ_RXF_PAUSE_THRESH 0x15A8
176 #define RXQ_RXF_PAUSE_TH_HI_SHIFT 16
177 #define RXQ_RXF_PAUSE_TH_HI_MASK 0xFFF
178 #define RXQ_RXF_PAUSE_TH_LO_SHIFT 0
179 #define RXQ_RXF_PAUSE_TH_LO_MASK 0xFFF
181 /* RRD flow control register */
182 #define REG_RXQ_RRD_PAUSE_THRESH 0x15AC
183 #define RXQ_RRD_PAUSE_TH_HI_SHIFT 0
184 #define RXQ_RRD_PAUSE_TH_HI_MASK 0xFFF
185 #define RXQ_RRD_PAUSE_TH_LO_SHIFT 16
186 #define RXQ_RRD_PAUSE_TH_LO_MASK 0xFFF
188 /* DMA Engine Control Register */
189 #define REG_DMA_CTRL 0x15C0
190 #define DMA_CTRL_DMAR_IN_ORDER 0x1
191 #define DMA_CTRL_DMAR_ENH_ORDER 0x2
192 #define DMA_CTRL_DMAR_OUT_ORDER 0x4
193 #define DMA_CTRL_RCB_VALUE 0x8
194 #define DMA_CTRL_DMAR_BURST_LEN_SHIFT 4
195 #define DMA_CTRL_DMAR_BURST_LEN_MASK 7
196 #define DMA_CTRL_DMAW_BURST_LEN_SHIFT 7
197 #define DMA_CTRL_DMAW_BURST_LEN_MASK 7
198 #define DMA_CTRL_DMAR_EN 0x400
199 #define DMA_CTRL_DMAW_EN 0x800
201 /* CMB/SMB Control Register */
202 #define REG_CSMB_CTRL 0x15D0
203 #define CSMB_CTRL_CMB_NOW 1
204 #define CSMB_CTRL_SMB_NOW 2
205 #define CSMB_CTRL_CMB_EN 4
206 #define CSMB_CTRL_SMB_EN 8
208 /* CMB DMA Write Threshold Register */
209 #define REG_CMB_WRITE_TH 0x15D4
210 #define CMB_RRD_TH_SHIFT 0
211 #define CMB_RRD_TH_MASK 0x7FF
212 #define CMB_TPD_TH_SHIFT 16
213 #define CMB_TPD_TH_MASK 0x7FF
215 /* RX/TX count-down timer to trigger CMB-write. 2us resolution. */
216 #define REG_CMB_WRITE_TIMER 0x15D8
217 #define CMB_RX_TM_SHIFT 0
218 #define CMB_RX_TM_MASK 0xFFFF
219 #define CMB_TX_TM_SHIFT 16
220 #define CMB_TX_TM_MASK 0xFFFF
222 /* Number of packet received since last CMB write */
223 #define REG_CMB_RX_PKT_CNT 0x15DC
225 /* Number of packet transmitted since last CMB write */
226 #define REG_CMB_TX_PKT_CNT 0x15E0
228 /* SMB auto DMA timer register */
229 #define REG_SMB_TIMER 0x15E4
231 /* Mailbox Register */
232 #define REG_MAILBOX 0x15F0
233 #define MB_RFD_PROD_INDX_SHIFT 0
234 #define MB_RFD_PROD_INDX_MASK 0x7FF
235 #define MB_RRD_CONS_INDX_SHIFT 11
236 #define MB_RRD_CONS_INDX_MASK 0x7FF
237 #define MB_TPD_PROD_INDX_SHIFT 22
238 #define MB_TPD_PROD_INDX_MASK 0x3FF
240 /* Interrupt Status Register */
242 #define ISR_TIMER 0x2
243 #define ISR_MANUAL 0x4
244 #define ISR_RXF_OV 0x8
245 #define ISR_RFD_UNRUN 0x10
246 #define ISR_RRD_OV 0x20
247 #define ISR_TXF_UNRUN 0x40
248 #define ISR_LINK 0x80
249 #define ISR_HOST_RFD_UNRUN 0x100
250 #define ISR_HOST_RRD_OV 0x200
251 #define ISR_DMAR_TO_RST 0x400
252 #define ISR_DMAW_TO_RST 0x800
253 #define ISR_GPHY 0x1000
254 #define ISR_RX_PKT 0x10000
255 #define ISR_TX_PKT 0x20000
256 #define ISR_TX_DMA 0x40000
257 #define ISR_RX_DMA 0x80000
258 #define ISR_CMB_RX 0x100000
259 #define ISR_CMB_TX 0x200000
260 #define ISR_MAC_RX 0x400000
261 #define ISR_MAC_TX 0x800000
262 #define ISR_DIS_SMB 0x20000000
263 #define ISR_DIS_DMA 0x40000000
265 /* Normal Interrupt mask without RX/TX enabled */
266 #define IMR_NORXTX_MASK (\
273 /* Normal Interrupt mask */
274 #define IMR_NORMAL_MASK (\
279 /* Debug Interrupt Mask (enable all interrupt) */
280 #define IMR_DEBUG_MASK (\
296 #define MEDIA_TYPE_1000M_FULL 1
297 #define MEDIA_TYPE_100M_FULL 2
298 #define MEDIA_TYPE_100M_HALF 3
299 #define MEDIA_TYPE_10M_FULL 4
300 #define MEDIA_TYPE_10M_HALF 5
302 #define AUTONEG_ADVERTISE_SPEED_DEFAULT 0x002F /* All but 1000-Half */
304 #define MAX_JUMBO_FRAME_SIZE 10240
306 #define ATL1_EEDUMP_LEN 48
308 /* Statistics counters collected by the MAC */
309 struct stats_msg_block
{
311 u32 rx_ok
; /* good RX packets */
312 u32 rx_bcast
; /* good RX broadcast packets */
313 u32 rx_mcast
; /* good RX multicast packets */
314 u32 rx_pause
; /* RX pause frames */
315 u32 rx_ctrl
; /* RX control packets other than pause frames */
316 u32 rx_fcs_err
; /* RX packets with bad FCS */
317 u32 rx_len_err
; /* RX packets with length != actual size */
318 u32 rx_byte_cnt
; /* good bytes received. FCS is NOT included */
319 u32 rx_runt
; /* RX packets < 64 bytes with good FCS */
320 u32 rx_frag
; /* RX packets < 64 bytes with bad FCS */
321 u32 rx_sz_64
; /* 64 byte RX packets */
327 u32 rx_sz_1519_max
; /* 1519 byte to MTU RX packets */
328 u32 rx_sz_ov
; /* truncated RX packets > MTU */
329 u32 rx_rxf_ov
; /* frames dropped due to RX FIFO overflow */
330 u32 rx_rrd_ov
; /* frames dropped due to RRD overflow */
331 u32 rx_align_err
; /* alignment errors */
332 u32 rx_bcast_byte_cnt
; /* RX broadcast bytes, excluding FCS */
333 u32 rx_mcast_byte_cnt
; /* RX multicast bytes, excluding FCS */
334 u32 rx_err_addr
; /* packets dropped due to address filtering */
337 u32 tx_ok
; /* good TX packets */
338 u32 tx_bcast
; /* good TX broadcast packets */
339 u32 tx_mcast
; /* good TX multicast packets */
340 u32 tx_pause
; /* TX pause frames */
341 u32 tx_exc_defer
; /* TX packets deferred excessively */
342 u32 tx_ctrl
; /* TX control frames, excluding pause frames */
343 u32 tx_defer
; /* TX packets deferred */
344 u32 tx_byte_cnt
; /* bytes transmitted, FCS is NOT included */
345 u32 tx_sz_64
; /* 64 byte TX packets */
351 u32 tx_sz_1519_max
; /* 1519 byte to MTU TX packets */
352 u32 tx_1_col
; /* packets TX after a single collision */
353 u32 tx_2_col
; /* packets TX after multiple collisions */
354 u32 tx_late_col
; /* TX packets with late collisions */
355 u32 tx_abort_col
; /* TX packets aborted w/excessive collisions */
356 u32 tx_underrun
; /* TX packets aborted due to TX FIFO underrun
357 * or TRD FIFO underrun */
358 u32 tx_rd_eop
; /* reads beyond the EOP into the next frame
359 * when TRD was not written timely */
360 u32 tx_len_err
; /* TX packets where length != actual size */
361 u32 tx_trunc
; /* TX packets truncated due to size > MTU */
362 u32 tx_bcast_byte
; /* broadcast bytes transmitted, excluding FCS */
363 u32 tx_mcast_byte
; /* multicast bytes transmitted, excluding FCS */
364 u32 smb_updated
; /* 1: SMB Updated. This is used by software to
365 * indicate the statistics update. Software
366 * should clear this bit after retrieving the
367 * statistics information. */
370 /* Coalescing Message Block */
371 struct coals_msg_block
{
372 u32 int_stats
; /* interrupt status */
373 u16 rrd_prod_idx
; /* TRD Producer Index. */
374 u16 rfd_cons_idx
; /* RFD Consumer Index. */
375 u16 update
; /* Selene sets this bit every time it DMAs the
376 * CMB to host memory. Software should clear
377 * this bit when CMB info is processed. */
378 u16 tpd_cons_idx
; /* TPD Consumer Index. */
382 struct rx_return_desc
{
383 u8 num_buf
; /* Number of RFD buffers used by the received packet */
385 u16 buf_indx
; /* RFD Index of the first buffer */
394 u16 pkt_flg
; /* Packet flags */
395 u16 err_flg
; /* Error flags */
397 u16 vlan_tag
; /* VLAN TAG */
400 #define PACKET_FLAG_ETH_TYPE 0x0080
401 #define PACKET_FLAG_VLAN_INS 0x0100
402 #define PACKET_FLAG_ERR 0x0200
403 #define PACKET_FLAG_IPV4 0x0400
404 #define PACKET_FLAG_UDP 0x0800
405 #define PACKET_FLAG_TCP 0x1000
406 #define PACKET_FLAG_BCAST 0x2000
407 #define PACKET_FLAG_MCAST 0x4000
408 #define PACKET_FLAG_PAUSE 0x8000
410 #define ERR_FLAG_CRC 0x0001
411 #define ERR_FLAG_CODE 0x0002
412 #define ERR_FLAG_DRIBBLE 0x0004
413 #define ERR_FLAG_RUNT 0x0008
414 #define ERR_FLAG_OV 0x0010
415 #define ERR_FLAG_TRUNC 0x0020
416 #define ERR_FLAG_IP_CHKSUM 0x0040
417 #define ERR_FLAG_L4_CHKSUM 0x0080
418 #define ERR_FLAG_LEN 0x0100
419 #define ERR_FLAG_DES_ADDR 0x0200
422 struct rx_free_desc
{
423 __le64 buffer_addr
; /* Address of the descriptor's data buffer */
424 __le16 buf_len
; /* Size of the receive buffer in host memory */
425 u16 coalese
; /* Update consumer index to host after the
426 * reception of this frame */
427 /* __packed is required */
431 * The L1 transmit packet descriptor is comprised of four 32-bit words.
434 * +---------------------------------------+
435 * | Word 0: Buffer addr lo |
436 * +---------------------------------------+
437 * | Word 1: Buffer addr hi |
438 * +---------------------------------------+
440 * +---------------------------------------+
442 * +---------------------------------------+
444 * Words 0 and 1 combine to form a 64-bit buffer address.
446 * Word 2 is self explanatory in the #define block below.
448 * Word 3 has two forms, depending upon the state of bits 3 and 4.
449 * If bits 3 and 4 are both zero, then bits 14:31 are unused by the
450 * hardware. Otherwise, if either bit 3 or 4 is set, the definition
451 * of bits 14:31 vary according to the following depiction.
453 * 0 End of packet 0 End of packet
454 * 1 Coalesce 1 Coalesce
455 * 2 Insert VLAN tag 2 Insert VLAN tag
456 * 3 Custom csum enable = 0 3 Custom csum enable = 1
457 * 4 Segment enable = 1 4 Segment enable = 0
458 * 5 Generate IP checksum 5 Generate IP checksum
459 * 6 Generate TCP checksum 6 Generate TCP checksum
460 * 7 Generate UDP checksum 7 Generate UDP checksum
461 * 8 VLAN tagged 8 VLAN tagged
462 * 9 Ethernet frame type 9 Ethernet frame type
464 * 11 | IP hdr length (10:13) 11 | IP hdr length (10:13)
465 * 12 | (num 32-bit words) 12 | (num 32-bit words)
468 * 15 | TCP hdr length (14:17) 15 Unused
469 * 16 | (num 32-bit words) 16-+
471 * 18 Header TPD flag 18 |
472 * 19-+ 19 | Payload offset
478 * 25 | MSS (19:31) 25 |
480 * 27 | 27 | Custom csum offset
488 #define TPD_BUFLEN_MASK 0x3FFF
489 #define TPD_BUFLEN_SHIFT 0
490 #define TPD_DMAINT_MASK 0x0001
491 #define TPD_DMAINT_SHIFT 14
492 #define TPD_PKTNT_MASK 0x0001
493 #define TPD_PKTINT_SHIFT 15
494 #define TPD_VLANTAG_MASK 0xFFFF
495 #define TPD_VLANTAG_SHIFT 16
497 /* tpd word 3 bits 0:13 */
498 #define TPD_EOP_MASK 0x0001
499 #define TPD_EOP_SHIFT 0
500 #define TPD_COALESCE_MASK 0x0001
501 #define TPD_COALESCE_SHIFT 1
502 #define TPD_INS_VL_TAG_MASK 0x0001
503 #define TPD_INS_VL_TAG_SHIFT 2
504 #define TPD_CUST_CSUM_EN_MASK 0x0001
505 #define TPD_CUST_CSUM_EN_SHIFT 3
506 #define TPD_SEGMENT_EN_MASK 0x0001
507 #define TPD_SEGMENT_EN_SHIFT 4
508 #define TPD_IP_CSUM_MASK 0x0001
509 #define TPD_IP_CSUM_SHIFT 5
510 #define TPD_TCP_CSUM_MASK 0x0001
511 #define TPD_TCP_CSUM_SHIFT 6
512 #define TPD_UDP_CSUM_MASK 0x0001
513 #define TPD_UDP_CSUM_SHIFT 7
514 #define TPD_VL_TAGGED_MASK 0x0001
515 #define TPD_VL_TAGGED_SHIFT 8
516 #define TPD_ETHTYPE_MASK 0x0001
517 #define TPD_ETHTYPE_SHIFT 9
518 #define TPD_IPHL_MASK 0x000F
519 #define TPD_IPHL_SHIFT 10
521 /* tpd word 3 bits 14:31 if segment enabled */
522 #define TPD_TCPHDRLEN_MASK 0x000F
523 #define TPD_TCPHDRLEN_SHIFT 14
524 #define TPD_HDRFLAG_MASK 0x0001
525 #define TPD_HDRFLAG_SHIFT 18
526 #define TPD_MSS_MASK 0x1FFF
527 #define TPD_MSS_SHIFT 19
529 /* tpd word 3 bits 16:31 if custom csum enabled */
530 #define TPD_PLOADOFFSET_MASK 0x00FF
531 #define TPD_PLOADOFFSET_SHIFT 16
532 #define TPD_CCSUMOFFSET_MASK 0x00FF
533 #define TPD_CCSUMOFFSET_SHIFT 24
535 struct tx_packet_desc
{
541 /* DMA Order Settings */
542 enum atl1_dma_order
{
544 atl1_dma_ord_enh
= 2,
553 enum atl1_dma_req_block
{
554 atl1_dma_req_128
= 0,
555 atl1_dma_req_256
= 1,
556 atl1_dma_req_512
= 2,
557 atl1_dma_req_1024
= 3,
558 atl1_dma_req_2048
= 4,
559 atl1_dma_req_4096
= 5
562 #define ATL1_MAX_INTR 3
563 #define ATL1_MAX_TX_BUF_LEN 0x3000 /* 12288 bytes */
565 #define ATL1_DEFAULT_TPD 256
566 #define ATL1_MAX_TPD 1024
567 #define ATL1_MIN_TPD 64
568 #define ATL1_DEFAULT_RFD 512
569 #define ATL1_MIN_RFD 128
570 #define ATL1_MAX_RFD 2048
571 #define ATL1_REG_COUNT 1538
573 #define ATL1_GET_DESC(R, i, type) (&(((type *)((R)->desc))[i]))
574 #define ATL1_RFD_DESC(R, i) ATL1_GET_DESC(R, i, struct rx_free_desc)
575 #define ATL1_TPD_DESC(R, i) ATL1_GET_DESC(R, i, struct tx_packet_desc)
576 #define ATL1_RRD_DESC(R, i) ATL1_GET_DESC(R, i, struct rx_return_desc)
579 * atl1_ring_header represents a single, contiguous block of DMA space
580 * mapped for the three descriptor rings (tpd, rfd, rrd) and the two
581 * message blocks (cmb, smb) described below
583 struct atl1_ring_header
{
584 void *desc
; /* virtual address */
585 dma_addr_t dma
; /* physical address*/
586 unsigned int size
; /* length in bytes */
590 * atl1_buffer is wrapper around a pointer to a socket buffer
591 * so a DMA handle can be stored along with the skb
594 struct sk_buff
*skb
; /* socket buffer */
595 u16 length
; /* rx buffer length */
596 u16 alloced
; /* 1 if skb allocated */
600 /* transmit packet descriptor (tpd) ring */
601 struct atl1_tpd_ring
{
602 void *desc
; /* descriptor ring virtual address */
603 dma_addr_t dma
; /* descriptor ring physical address */
604 u16 size
; /* descriptor ring length in bytes */
605 u16 count
; /* number of descriptors in the ring */
606 u16 hw_idx
; /* hardware index */
607 atomic_t next_to_clean
;
608 atomic_t next_to_use
;
609 struct atl1_buffer
*buffer_info
;
612 /* receive free descriptor (rfd) ring */
613 struct atl1_rfd_ring
{
614 void *desc
; /* descriptor ring virtual address */
615 dma_addr_t dma
; /* descriptor ring physical address */
616 u16 size
; /* descriptor ring length in bytes */
617 u16 count
; /* number of descriptors in the ring */
618 atomic_t next_to_use
;
620 struct atl1_buffer
*buffer_info
;
623 /* receive return descriptor (rrd) ring */
624 struct atl1_rrd_ring
{
625 void *desc
; /* descriptor ring virtual address */
626 dma_addr_t dma
; /* descriptor ring physical address */
627 unsigned int size
; /* descriptor ring length in bytes */
628 u16 count
; /* number of descriptors in the ring */
630 atomic_t next_to_clean
;
633 /* coalescing message block (cmb) */
635 struct coals_msg_block
*cmb
;
639 /* statistics message block (smb) */
641 struct stats_msg_block
*smb
;
645 /* Statistics counters */
646 struct atl1_sft_stats
{
654 u64 rx_length_errors
;
659 u64 rx_missed_errors
;
662 u64 tx_aborted_errors
;
663 u64 tx_window_errors
;
664 u64 tx_carrier_errors
;
665 u64 tx_pause
; /* TX pause frames */
666 u64 excecol
; /* TX packets w/ excessive collisions */
667 u64 deffer
; /* TX packets deferred */
668 u64 scc
; /* packets TX after a single collision */
669 u64 mcc
; /* packets TX after multiple collisions */
670 u64 latecol
; /* TX packets w/ late collisions */
671 u64 tx_underrun
; /* TX packets aborted due to TX FIFO underrun
672 * or TRD FIFO underrun */
673 u64 tx_trunc
; /* TX packets truncated due to size > MTU */
674 u64 rx_pause
; /* num Pause packets received. */
679 /* hardware structure */
682 struct atl1_adapter
*back
;
683 enum atl1_dma_order dma_ord
;
684 enum atl1_dma_rcb rcb_value
;
685 enum atl1_dma_req_block dmar_block
;
686 enum atl1_dma_req_block dmaw_block
;
689 u8 jam_ipg
; /* IPG to start JAM for collision based flow
690 * control in half-duplex mode. In units of
692 u8 ipgt
; /* Desired back to back inter-packet gap.
693 * The default is 96-bit time */
694 u8 min_ifg
; /* Minimum number of IFG to enforce in between
695 * receive frames. Frame gap below such IFP
697 u8 ipgr1
; /* 64bit Carrier-Sense window */
698 u8 ipgr2
; /* 96-bit IPG window */
699 u8 tpd_burst
; /* Number of TPD to prefetch in cache-aligned
700 * burst. Each TPD is 16 bytes long */
701 u8 rfd_burst
; /* Number of RFD to prefetch in cache-aligned
702 * burst. Each RFD is 12 bytes long */
704 u8 rrd_burst
; /* Threshold number of RRDs that can be retired
705 * in a burst. Each RRD is 16 bytes long */
708 u16 tx_jumbo_task_th
;
709 u16 txf_burst
; /* Number of data bytes to read in a cache-
710 * aligned burst. Each SRAM entry is 8 bytes */
711 u16 rx_jumbo_th
; /* Jumbo packet size for non-VLAN packet. VLAN
712 * packets should add 4 bytes */
714 u16 rrd_ret_timer
; /* RRD retirement timer. Decrement by 1 after
715 * every 512ns passes. */
716 u16 lcol
; /* Collision Window */
724 u16 autoneg_advertised
;
726 u16 mii_autoneg_adv_reg
;
727 u16 mii_1000t_ctrl_reg
;
737 u8 mac_addr
[ETH_ALEN
];
738 u8 perm_mac_addr
[ETH_ALEN
];
743 struct atl1_adapter
{
744 struct net_device
*netdev
;
745 struct pci_dev
*pdev
;
747 struct atl1_sft_stats soft_stats
;
753 struct napi_struct napi
;
754 struct work_struct reset_dev_task
;
755 struct work_struct link_chg_task
;
757 struct timer_list phy_config_timer
;
758 bool phy_timer_pending
;
760 /* all descriptor rings' memory */
761 struct atl1_ring_header ring_header
;
764 struct atl1_tpd_ring tpd_ring
;
768 struct atl1_rfd_ring rfd_ring
;
769 struct atl1_rrd_ring rrd_ring
;
773 u16 imt
; /* interrupt moderator timer (2us resolution) */
774 u16 ict
; /* interrupt clear timer (2us resolution */
775 struct mii_if_info mii
; /* MII interface info */
778 * Use this value to check is napi handler allowed to
783 u32 bd_number
; /* board number */