1*4882a593Smuzhiyun /* Agere Systems Inc.
2*4882a593Smuzhiyun * 10/100/1000 Base-T Ethernet Driver for the ET1301 and ET131x series MACs
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * Copyright © 2005 Agere Systems Inc.
5*4882a593Smuzhiyun * All rights reserved.
6*4882a593Smuzhiyun * http://www.agere.com
7*4882a593Smuzhiyun *
8*4882a593Smuzhiyun * Copyright (c) 2011 Mark Einon <mark.einon@gmail.com>
9*4882a593Smuzhiyun *
10*4882a593Smuzhiyun *------------------------------------------------------------------------------
11*4882a593Smuzhiyun *
12*4882a593Smuzhiyun * SOFTWARE LICENSE
13*4882a593Smuzhiyun *
14*4882a593Smuzhiyun * This software is provided subject to the following terms and conditions,
15*4882a593Smuzhiyun * which you should read carefully before using the software. Using this
16*4882a593Smuzhiyun * software indicates your acceptance of these terms and conditions. If you do
17*4882a593Smuzhiyun * not agree with these terms and conditions, do not use the software.
18*4882a593Smuzhiyun *
19*4882a593Smuzhiyun * Copyright © 2005 Agere Systems Inc.
20*4882a593Smuzhiyun * All rights reserved.
21*4882a593Smuzhiyun *
22*4882a593Smuzhiyun * Redistribution and use in source or binary forms, with or without
23*4882a593Smuzhiyun * modifications, are permitted provided that the following conditions are met:
24*4882a593Smuzhiyun *
25*4882a593Smuzhiyun * . Redistributions of source code must retain the above copyright notice, this
26*4882a593Smuzhiyun * list of conditions and the following Disclaimer as comments in the code as
27*4882a593Smuzhiyun * well as in the documentation and/or other materials provided with the
28*4882a593Smuzhiyun * distribution.
29*4882a593Smuzhiyun *
30*4882a593Smuzhiyun * . Redistributions in binary form must reproduce the above copyright notice,
31*4882a593Smuzhiyun * this list of conditions and the following Disclaimer in the documentation
32*4882a593Smuzhiyun * and/or other materials provided with the distribution.
33*4882a593Smuzhiyun *
34*4882a593Smuzhiyun * . Neither the name of Agere Systems Inc. nor the names of the contributors
35*4882a593Smuzhiyun * may be used to endorse or promote products derived from this software
36*4882a593Smuzhiyun * without specific prior written permission.
37*4882a593Smuzhiyun *
38*4882a593Smuzhiyun * Disclaimer
39*4882a593Smuzhiyun *
40*4882a593Smuzhiyun * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
41*4882a593Smuzhiyun * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF
42*4882a593Smuzhiyun * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY
43*4882a593Smuzhiyun * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN
44*4882a593Smuzhiyun * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY
45*4882a593Smuzhiyun * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
46*4882a593Smuzhiyun * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47*4882a593Smuzhiyun * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
48*4882a593Smuzhiyun * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT
49*4882a593Smuzhiyun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
50*4882a593Smuzhiyun * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
51*4882a593Smuzhiyun * DAMAGE.
52*4882a593Smuzhiyun */
53*4882a593Smuzhiyun
54*4882a593Smuzhiyun #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
55*4882a593Smuzhiyun
56*4882a593Smuzhiyun #include <linux/pci.h>
57*4882a593Smuzhiyun #include <linux/module.h>
58*4882a593Smuzhiyun #include <linux/types.h>
59*4882a593Smuzhiyun #include <linux/kernel.h>
60*4882a593Smuzhiyun
61*4882a593Smuzhiyun #include <linux/sched.h>
62*4882a593Smuzhiyun #include <linux/ptrace.h>
63*4882a593Smuzhiyun #include <linux/slab.h>
64*4882a593Smuzhiyun #include <linux/ctype.h>
65*4882a593Smuzhiyun #include <linux/string.h>
66*4882a593Smuzhiyun #include <linux/timer.h>
67*4882a593Smuzhiyun #include <linux/interrupt.h>
68*4882a593Smuzhiyun #include <linux/in.h>
69*4882a593Smuzhiyun #include <linux/delay.h>
70*4882a593Smuzhiyun #include <linux/bitops.h>
71*4882a593Smuzhiyun #include <linux/io.h>
72*4882a593Smuzhiyun
73*4882a593Smuzhiyun #include <linux/netdevice.h>
74*4882a593Smuzhiyun #include <linux/etherdevice.h>
75*4882a593Smuzhiyun #include <linux/skbuff.h>
76*4882a593Smuzhiyun #include <linux/if_arp.h>
77*4882a593Smuzhiyun #include <linux/ioport.h>
78*4882a593Smuzhiyun #include <linux/crc32.h>
79*4882a593Smuzhiyun #include <linux/random.h>
80*4882a593Smuzhiyun #include <linux/phy.h>
81*4882a593Smuzhiyun
82*4882a593Smuzhiyun #include "et131x.h"
83*4882a593Smuzhiyun
84*4882a593Smuzhiyun MODULE_AUTHOR("Victor Soriano <vjsoriano@agere.com>");
85*4882a593Smuzhiyun MODULE_AUTHOR("Mark Einon <mark.einon@gmail.com>");
86*4882a593Smuzhiyun MODULE_LICENSE("Dual BSD/GPL");
87*4882a593Smuzhiyun MODULE_DESCRIPTION("10/100/1000 Base-T Ethernet Driver for the ET1310 by Agere Systems");
88*4882a593Smuzhiyun
89*4882a593Smuzhiyun /* EEPROM defines */
90*4882a593Smuzhiyun #define MAX_NUM_REGISTER_POLLS 1000
91*4882a593Smuzhiyun #define MAX_NUM_WRITE_RETRIES 2
92*4882a593Smuzhiyun
93*4882a593Smuzhiyun /* MAC defines */
94*4882a593Smuzhiyun #define COUNTER_WRAP_16_BIT 0x10000
95*4882a593Smuzhiyun #define COUNTER_WRAP_12_BIT 0x1000
96*4882a593Smuzhiyun
97*4882a593Smuzhiyun /* PCI defines */
98*4882a593Smuzhiyun #define INTERNAL_MEM_SIZE 0x400 /* 1024 of internal memory */
99*4882a593Smuzhiyun #define INTERNAL_MEM_RX_OFFSET 0x1FF /* 50% Tx, 50% Rx */
100*4882a593Smuzhiyun
101*4882a593Smuzhiyun /* ISR defines */
102*4882a593Smuzhiyun /* For interrupts, normal running is:
103*4882a593Smuzhiyun * rxdma_xfr_done, phy_interrupt, mac_stat_interrupt,
104*4882a593Smuzhiyun * watchdog_interrupt & txdma_xfer_done
105*4882a593Smuzhiyun *
106*4882a593Smuzhiyun * In both cases, when flow control is enabled for either Tx or bi-direction,
107*4882a593Smuzhiyun * we additional enable rx_fbr0_low and rx_fbr1_low, so we know when the
108*4882a593Smuzhiyun * buffer rings are running low.
109*4882a593Smuzhiyun */
110*4882a593Smuzhiyun #define INT_MASK_DISABLE 0xffffffff
111*4882a593Smuzhiyun
112*4882a593Smuzhiyun /* NOTE: Masking out MAC_STAT Interrupt for now...
113*4882a593Smuzhiyun * #define INT_MASK_ENABLE 0xfff6bf17
114*4882a593Smuzhiyun * #define INT_MASK_ENABLE_NO_FLOW 0xfff6bfd7
115*4882a593Smuzhiyun */
116*4882a593Smuzhiyun #define INT_MASK_ENABLE 0xfffebf17
117*4882a593Smuzhiyun #define INT_MASK_ENABLE_NO_FLOW 0xfffebfd7
118*4882a593Smuzhiyun
119*4882a593Smuzhiyun /* General defines */
120*4882a593Smuzhiyun /* Packet and header sizes */
121*4882a593Smuzhiyun #define NIC_MIN_PACKET_SIZE 60
122*4882a593Smuzhiyun
123*4882a593Smuzhiyun /* Multicast list size */
124*4882a593Smuzhiyun #define NIC_MAX_MCAST_LIST 128
125*4882a593Smuzhiyun
126*4882a593Smuzhiyun /* Supported Filters */
127*4882a593Smuzhiyun #define ET131X_PACKET_TYPE_DIRECTED 0x0001
128*4882a593Smuzhiyun #define ET131X_PACKET_TYPE_MULTICAST 0x0002
129*4882a593Smuzhiyun #define ET131X_PACKET_TYPE_BROADCAST 0x0004
130*4882a593Smuzhiyun #define ET131X_PACKET_TYPE_PROMISCUOUS 0x0008
131*4882a593Smuzhiyun #define ET131X_PACKET_TYPE_ALL_MULTICAST 0x0010
132*4882a593Smuzhiyun
133*4882a593Smuzhiyun /* Tx Timeout */
134*4882a593Smuzhiyun #define ET131X_TX_TIMEOUT (1 * HZ)
135*4882a593Smuzhiyun #define NIC_SEND_HANG_THRESHOLD 0
136*4882a593Smuzhiyun
137*4882a593Smuzhiyun /* MP_ADAPTER flags */
138*4882a593Smuzhiyun #define FMP_ADAPTER_INTERRUPT_IN_USE 0x00000008
139*4882a593Smuzhiyun
140*4882a593Smuzhiyun /* MP_SHARED flags */
141*4882a593Smuzhiyun #define FMP_ADAPTER_LOWER_POWER 0x00200000
142*4882a593Smuzhiyun
143*4882a593Smuzhiyun #define FMP_ADAPTER_NON_RECOVER_ERROR 0x00800000
144*4882a593Smuzhiyun #define FMP_ADAPTER_HARDWARE_ERROR 0x04000000
145*4882a593Smuzhiyun
146*4882a593Smuzhiyun #define FMP_ADAPTER_FAIL_SEND_MASK 0x3ff00000
147*4882a593Smuzhiyun
148*4882a593Smuzhiyun /* Some offsets in PCI config space that are actually used. */
149*4882a593Smuzhiyun #define ET1310_PCI_MAC_ADDRESS 0xA4
150*4882a593Smuzhiyun #define ET1310_PCI_EEPROM_STATUS 0xB2
151*4882a593Smuzhiyun #define ET1310_PCI_ACK_NACK 0xC0
152*4882a593Smuzhiyun #define ET1310_PCI_REPLAY 0xC2
153*4882a593Smuzhiyun #define ET1310_PCI_L0L1LATENCY 0xCF
154*4882a593Smuzhiyun
155*4882a593Smuzhiyun /* PCI Product IDs */
156*4882a593Smuzhiyun #define ET131X_PCI_DEVICE_ID_GIG 0xED00 /* ET1310 1000 Base-T 8 */
157*4882a593Smuzhiyun #define ET131X_PCI_DEVICE_ID_FAST 0xED01 /* ET1310 100 Base-T */
158*4882a593Smuzhiyun
159*4882a593Smuzhiyun /* Define order of magnitude converter */
160*4882a593Smuzhiyun #define NANO_IN_A_MICRO 1000
161*4882a593Smuzhiyun
162*4882a593Smuzhiyun #define PARM_RX_NUM_BUFS_DEF 4
163*4882a593Smuzhiyun #define PARM_RX_TIME_INT_DEF 10
164*4882a593Smuzhiyun #define PARM_RX_MEM_END_DEF 0x2bc
165*4882a593Smuzhiyun #define PARM_TX_TIME_INT_DEF 40
166*4882a593Smuzhiyun #define PARM_TX_NUM_BUFS_DEF 4
167*4882a593Smuzhiyun #define PARM_DMA_CACHE_DEF 0
168*4882a593Smuzhiyun
169*4882a593Smuzhiyun /* RX defines */
170*4882a593Smuzhiyun #define FBR_CHUNKS 32
171*4882a593Smuzhiyun #define MAX_DESC_PER_RING_RX 1024
172*4882a593Smuzhiyun
173*4882a593Smuzhiyun /* number of RFDs - default and min */
174*4882a593Smuzhiyun #define RFD_LOW_WATER_MARK 40
175*4882a593Smuzhiyun #define NIC_DEFAULT_NUM_RFD 1024
176*4882a593Smuzhiyun #define NUM_FBRS 2
177*4882a593Smuzhiyun
178*4882a593Smuzhiyun #define MAX_PACKETS_HANDLED 256
179*4882a593Smuzhiyun #define ET131X_MIN_MTU 64
180*4882a593Smuzhiyun #define ET131X_MAX_MTU 9216
181*4882a593Smuzhiyun
182*4882a593Smuzhiyun #define ALCATEL_MULTICAST_PKT 0x01000000
183*4882a593Smuzhiyun #define ALCATEL_BROADCAST_PKT 0x02000000
184*4882a593Smuzhiyun
185*4882a593Smuzhiyun /* typedefs for Free Buffer Descriptors */
186*4882a593Smuzhiyun struct fbr_desc {
187*4882a593Smuzhiyun u32 addr_lo;
188*4882a593Smuzhiyun u32 addr_hi;
189*4882a593Smuzhiyun u32 word2; /* Bits 10-31 reserved, 0-9 descriptor */
190*4882a593Smuzhiyun };
191*4882a593Smuzhiyun
192*4882a593Smuzhiyun /* Packet Status Ring Descriptors
193*4882a593Smuzhiyun *
194*4882a593Smuzhiyun * Word 0:
195*4882a593Smuzhiyun *
196*4882a593Smuzhiyun * top 16 bits are from the Alcatel Status Word as enumerated in
197*4882a593Smuzhiyun * PE-MCXMAC Data Sheet IPD DS54 0210-1 (also IPD-DS80 0205-2)
198*4882a593Smuzhiyun *
199*4882a593Smuzhiyun * 0: hp hash pass
200*4882a593Smuzhiyun * 1: ipa IP checksum assist
201*4882a593Smuzhiyun * 2: ipp IP checksum pass
202*4882a593Smuzhiyun * 3: tcpa TCP checksum assist
203*4882a593Smuzhiyun * 4: tcpp TCP checksum pass
204*4882a593Smuzhiyun * 5: wol WOL Event
205*4882a593Smuzhiyun * 6: rxmac_error RXMAC Error Indicator
206*4882a593Smuzhiyun * 7: drop Drop packet
207*4882a593Smuzhiyun * 8: ft Frame Truncated
208*4882a593Smuzhiyun * 9: jp Jumbo Packet
209*4882a593Smuzhiyun * 10: vp VLAN Packet
210*4882a593Smuzhiyun * 11-15: unused
211*4882a593Smuzhiyun * 16: asw_prev_pkt_dropped e.g. IFG too small on previous
212*4882a593Smuzhiyun * 17: asw_RX_DV_event short receive event detected
213*4882a593Smuzhiyun * 18: asw_false_carrier_event bad carrier since last good packet
214*4882a593Smuzhiyun * 19: asw_code_err one or more nibbles signalled as errors
215*4882a593Smuzhiyun * 20: asw_CRC_err CRC error
216*4882a593Smuzhiyun * 21: asw_len_chk_err frame length field incorrect
217*4882a593Smuzhiyun * 22: asw_too_long frame length > 1518 bytes
218*4882a593Smuzhiyun * 23: asw_OK valid CRC + no code error
219*4882a593Smuzhiyun * 24: asw_multicast has a multicast address
220*4882a593Smuzhiyun * 25: asw_broadcast has a broadcast address
221*4882a593Smuzhiyun * 26: asw_dribble_nibble spurious bits after EOP
222*4882a593Smuzhiyun * 27: asw_control_frame is a control frame
223*4882a593Smuzhiyun * 28: asw_pause_frame is a pause frame
224*4882a593Smuzhiyun * 29: asw_unsupported_op unsupported OP code
225*4882a593Smuzhiyun * 30: asw_VLAN_tag VLAN tag detected
226*4882a593Smuzhiyun * 31: asw_long_evt Rx long event
227*4882a593Smuzhiyun *
228*4882a593Smuzhiyun * Word 1:
229*4882a593Smuzhiyun * 0-15: length length in bytes
230*4882a593Smuzhiyun * 16-25: bi Buffer Index
231*4882a593Smuzhiyun * 26-27: ri Ring Index
232*4882a593Smuzhiyun * 28-31: reserved
233*4882a593Smuzhiyun */
234*4882a593Smuzhiyun struct pkt_stat_desc {
235*4882a593Smuzhiyun u32 word0;
236*4882a593Smuzhiyun u32 word1;
237*4882a593Smuzhiyun };
238*4882a593Smuzhiyun
239*4882a593Smuzhiyun /* Typedefs for the RX DMA status word */
240*4882a593Smuzhiyun
241*4882a593Smuzhiyun /* rx status word 0 holds part of the status bits of the Rx DMA engine
242*4882a593Smuzhiyun * that get copied out to memory by the ET-1310. Word 0 is a 32 bit word
243*4882a593Smuzhiyun * which contains the Free Buffer ring 0 and 1 available offset.
244*4882a593Smuzhiyun *
245*4882a593Smuzhiyun * bit 0-9 FBR1 offset
246*4882a593Smuzhiyun * bit 10 Wrap flag for FBR1
247*4882a593Smuzhiyun * bit 16-25 FBR0 offset
248*4882a593Smuzhiyun * bit 26 Wrap flag for FBR0
249*4882a593Smuzhiyun */
250*4882a593Smuzhiyun
251*4882a593Smuzhiyun /* RXSTAT_WORD1_t structure holds part of the status bits of the Rx DMA engine
252*4882a593Smuzhiyun * that get copied out to memory by the ET-1310. Word 3 is a 32 bit word
253*4882a593Smuzhiyun * which contains the Packet Status Ring available offset.
254*4882a593Smuzhiyun *
255*4882a593Smuzhiyun * bit 0-15 reserved
256*4882a593Smuzhiyun * bit 16-27 PSRoffset
257*4882a593Smuzhiyun * bit 28 PSRwrap
258*4882a593Smuzhiyun * bit 29-31 unused
259*4882a593Smuzhiyun */
260*4882a593Smuzhiyun
261*4882a593Smuzhiyun /* struct rx_status_block is a structure representing the status of the Rx
262*4882a593Smuzhiyun * DMA engine it sits in free memory, and is pointed to by 0x101c / 0x1020
263*4882a593Smuzhiyun */
264*4882a593Smuzhiyun struct rx_status_block {
265*4882a593Smuzhiyun u32 word0;
266*4882a593Smuzhiyun u32 word1;
267*4882a593Smuzhiyun };
268*4882a593Smuzhiyun
269*4882a593Smuzhiyun /* Structure for look-up table holding free buffer ring pointers, addresses
270*4882a593Smuzhiyun * and state.
271*4882a593Smuzhiyun */
272*4882a593Smuzhiyun struct fbr_lookup {
273*4882a593Smuzhiyun void *virt[MAX_DESC_PER_RING_RX];
274*4882a593Smuzhiyun u32 bus_high[MAX_DESC_PER_RING_RX];
275*4882a593Smuzhiyun u32 bus_low[MAX_DESC_PER_RING_RX];
276*4882a593Smuzhiyun void *ring_virtaddr;
277*4882a593Smuzhiyun dma_addr_t ring_physaddr;
278*4882a593Smuzhiyun void *mem_virtaddrs[MAX_DESC_PER_RING_RX / FBR_CHUNKS];
279*4882a593Smuzhiyun dma_addr_t mem_physaddrs[MAX_DESC_PER_RING_RX / FBR_CHUNKS];
280*4882a593Smuzhiyun u32 local_full;
281*4882a593Smuzhiyun u32 num_entries;
282*4882a593Smuzhiyun dma_addr_t buffsize;
283*4882a593Smuzhiyun };
284*4882a593Smuzhiyun
285*4882a593Smuzhiyun /* struct rx_ring is the structure representing the adaptor's local
286*4882a593Smuzhiyun * reference(s) to the rings
287*4882a593Smuzhiyun */
288*4882a593Smuzhiyun struct rx_ring {
289*4882a593Smuzhiyun struct fbr_lookup *fbr[NUM_FBRS];
290*4882a593Smuzhiyun void *ps_ring_virtaddr;
291*4882a593Smuzhiyun dma_addr_t ps_ring_physaddr;
292*4882a593Smuzhiyun u32 local_psr_full;
293*4882a593Smuzhiyun u32 psr_entries;
294*4882a593Smuzhiyun
295*4882a593Smuzhiyun struct rx_status_block *rx_status_block;
296*4882a593Smuzhiyun dma_addr_t rx_status_bus;
297*4882a593Smuzhiyun
298*4882a593Smuzhiyun struct list_head recv_list;
299*4882a593Smuzhiyun u32 num_ready_recv;
300*4882a593Smuzhiyun
301*4882a593Smuzhiyun u32 num_rfd;
302*4882a593Smuzhiyun
303*4882a593Smuzhiyun bool unfinished_receives;
304*4882a593Smuzhiyun };
305*4882a593Smuzhiyun
306*4882a593Smuzhiyun /* TX defines */
307*4882a593Smuzhiyun /* word 2 of the control bits in the Tx Descriptor ring for the ET-1310
308*4882a593Smuzhiyun *
309*4882a593Smuzhiyun * 0-15: length of packet
310*4882a593Smuzhiyun * 16-27: VLAN tag
311*4882a593Smuzhiyun * 28: VLAN CFI
312*4882a593Smuzhiyun * 29-31: VLAN priority
313*4882a593Smuzhiyun *
314*4882a593Smuzhiyun * word 3 of the control bits in the Tx Descriptor ring for the ET-1310
315*4882a593Smuzhiyun *
316*4882a593Smuzhiyun * 0: last packet in the sequence
317*4882a593Smuzhiyun * 1: first packet in the sequence
318*4882a593Smuzhiyun * 2: interrupt the processor when this pkt sent
319*4882a593Smuzhiyun * 3: Control word - no packet data
320*4882a593Smuzhiyun * 4: Issue half-duplex backpressure : XON/XOFF
321*4882a593Smuzhiyun * 5: send pause frame
322*4882a593Smuzhiyun * 6: Tx frame has error
323*4882a593Smuzhiyun * 7: append CRC
324*4882a593Smuzhiyun * 8: MAC override
325*4882a593Smuzhiyun * 9: pad packet
326*4882a593Smuzhiyun * 10: Packet is a Huge packet
327*4882a593Smuzhiyun * 11: append VLAN tag
328*4882a593Smuzhiyun * 12: IP checksum assist
329*4882a593Smuzhiyun * 13: TCP checksum assist
330*4882a593Smuzhiyun * 14: UDP checksum assist
331*4882a593Smuzhiyun */
332*4882a593Smuzhiyun #define TXDESC_FLAG_LASTPKT 0x0001
333*4882a593Smuzhiyun #define TXDESC_FLAG_FIRSTPKT 0x0002
334*4882a593Smuzhiyun #define TXDESC_FLAG_INTPROC 0x0004
335*4882a593Smuzhiyun
336*4882a593Smuzhiyun /* struct tx_desc represents each descriptor on the ring */
337*4882a593Smuzhiyun struct tx_desc {
338*4882a593Smuzhiyun u32 addr_hi;
339*4882a593Smuzhiyun u32 addr_lo;
340*4882a593Smuzhiyun u32 len_vlan; /* control words how to xmit the */
341*4882a593Smuzhiyun u32 flags; /* data (detailed above) */
342*4882a593Smuzhiyun };
343*4882a593Smuzhiyun
344*4882a593Smuzhiyun /* The status of the Tx DMA engine it sits in free memory, and is pointed to
345*4882a593Smuzhiyun * by 0x101c / 0x1020. This is a DMA10 type
346*4882a593Smuzhiyun */
347*4882a593Smuzhiyun
348*4882a593Smuzhiyun /* TCB (Transmit Control Block: Host Side) */
349*4882a593Smuzhiyun struct tcb {
350*4882a593Smuzhiyun struct tcb *next; /* Next entry in ring */
351*4882a593Smuzhiyun u32 count; /* Used to spot stuck/lost packets */
352*4882a593Smuzhiyun u32 stale; /* Used to spot stuck/lost packets */
353*4882a593Smuzhiyun struct sk_buff *skb; /* Network skb we are tied to */
354*4882a593Smuzhiyun u32 index; /* Ring indexes */
355*4882a593Smuzhiyun u32 index_start;
356*4882a593Smuzhiyun };
357*4882a593Smuzhiyun
358*4882a593Smuzhiyun /* Structure representing our local reference(s) to the ring */
359*4882a593Smuzhiyun struct tx_ring {
360*4882a593Smuzhiyun /* TCB (Transmit Control Block) memory and lists */
361*4882a593Smuzhiyun struct tcb *tcb_ring;
362*4882a593Smuzhiyun
363*4882a593Smuzhiyun /* List of TCBs that are ready to be used */
364*4882a593Smuzhiyun struct tcb *tcb_qhead;
365*4882a593Smuzhiyun struct tcb *tcb_qtail;
366*4882a593Smuzhiyun
367*4882a593Smuzhiyun /* list of TCBs that are currently being sent. */
368*4882a593Smuzhiyun struct tcb *send_head;
369*4882a593Smuzhiyun struct tcb *send_tail;
370*4882a593Smuzhiyun int used;
371*4882a593Smuzhiyun
372*4882a593Smuzhiyun /* The actual descriptor ring */
373*4882a593Smuzhiyun struct tx_desc *tx_desc_ring;
374*4882a593Smuzhiyun dma_addr_t tx_desc_ring_pa;
375*4882a593Smuzhiyun
376*4882a593Smuzhiyun /* send_idx indicates where we last wrote to in the descriptor ring. */
377*4882a593Smuzhiyun u32 send_idx;
378*4882a593Smuzhiyun
379*4882a593Smuzhiyun /* The location of the write-back status block */
380*4882a593Smuzhiyun u32 *tx_status;
381*4882a593Smuzhiyun dma_addr_t tx_status_pa;
382*4882a593Smuzhiyun
383*4882a593Smuzhiyun /* Packets since the last IRQ: used for interrupt coalescing */
384*4882a593Smuzhiyun int since_irq;
385*4882a593Smuzhiyun };
386*4882a593Smuzhiyun
387*4882a593Smuzhiyun /* Do not change these values: if changed, then change also in respective
388*4882a593Smuzhiyun * TXdma and Rxdma engines
389*4882a593Smuzhiyun */
390*4882a593Smuzhiyun #define NUM_DESC_PER_RING_TX 512 /* TX Do not change these values */
391*4882a593Smuzhiyun #define NUM_TCB 64
392*4882a593Smuzhiyun
393*4882a593Smuzhiyun /* These values are all superseded by registry entries to facilitate tuning.
394*4882a593Smuzhiyun * Once the desired performance has been achieved, the optimal registry values
395*4882a593Smuzhiyun * should be re-populated to these #defines:
396*4882a593Smuzhiyun */
397*4882a593Smuzhiyun #define TX_ERROR_PERIOD 1000
398*4882a593Smuzhiyun
399*4882a593Smuzhiyun #define LO_MARK_PERCENT_FOR_PSR 15
400*4882a593Smuzhiyun #define LO_MARK_PERCENT_FOR_RX 15
401*4882a593Smuzhiyun
402*4882a593Smuzhiyun /* RFD (Receive Frame Descriptor) */
403*4882a593Smuzhiyun struct rfd {
404*4882a593Smuzhiyun struct list_head list_node;
405*4882a593Smuzhiyun struct sk_buff *skb;
406*4882a593Smuzhiyun u32 len; /* total size of receive frame */
407*4882a593Smuzhiyun u16 bufferindex;
408*4882a593Smuzhiyun u8 ringindex;
409*4882a593Smuzhiyun };
410*4882a593Smuzhiyun
411*4882a593Smuzhiyun /* Flow Control */
412*4882a593Smuzhiyun #define FLOW_BOTH 0
413*4882a593Smuzhiyun #define FLOW_TXONLY 1
414*4882a593Smuzhiyun #define FLOW_RXONLY 2
415*4882a593Smuzhiyun #define FLOW_NONE 3
416*4882a593Smuzhiyun
417*4882a593Smuzhiyun /* Struct to define some device statistics */
418*4882a593Smuzhiyun struct ce_stats {
419*4882a593Smuzhiyun u32 multicast_pkts_rcvd;
420*4882a593Smuzhiyun u32 rcvd_pkts_dropped;
421*4882a593Smuzhiyun
422*4882a593Smuzhiyun u32 tx_underflows;
423*4882a593Smuzhiyun u32 tx_collisions;
424*4882a593Smuzhiyun u32 tx_excessive_collisions;
425*4882a593Smuzhiyun u32 tx_first_collisions;
426*4882a593Smuzhiyun u32 tx_late_collisions;
427*4882a593Smuzhiyun u32 tx_max_pkt_errs;
428*4882a593Smuzhiyun u32 tx_deferred;
429*4882a593Smuzhiyun
430*4882a593Smuzhiyun u32 rx_overflows;
431*4882a593Smuzhiyun u32 rx_length_errs;
432*4882a593Smuzhiyun u32 rx_align_errs;
433*4882a593Smuzhiyun u32 rx_crc_errs;
434*4882a593Smuzhiyun u32 rx_code_violations;
435*4882a593Smuzhiyun u32 rx_other_errs;
436*4882a593Smuzhiyun
437*4882a593Smuzhiyun u32 interrupt_status;
438*4882a593Smuzhiyun };
439*4882a593Smuzhiyun
440*4882a593Smuzhiyun /* The private adapter structure */
441*4882a593Smuzhiyun struct et131x_adapter {
442*4882a593Smuzhiyun struct net_device *netdev;
443*4882a593Smuzhiyun struct pci_dev *pdev;
444*4882a593Smuzhiyun struct mii_bus *mii_bus;
445*4882a593Smuzhiyun struct napi_struct napi;
446*4882a593Smuzhiyun
447*4882a593Smuzhiyun /* Flags that indicate current state of the adapter */
448*4882a593Smuzhiyun u32 flags;
449*4882a593Smuzhiyun
450*4882a593Smuzhiyun /* local link state, to determine if a state change has occurred */
451*4882a593Smuzhiyun int link;
452*4882a593Smuzhiyun
453*4882a593Smuzhiyun /* Configuration */
454*4882a593Smuzhiyun u8 rom_addr[ETH_ALEN];
455*4882a593Smuzhiyun u8 addr[ETH_ALEN];
456*4882a593Smuzhiyun bool has_eeprom;
457*4882a593Smuzhiyun u8 eeprom_data[2];
458*4882a593Smuzhiyun
459*4882a593Smuzhiyun spinlock_t tcb_send_qlock; /* protects the tx_ring send tcb list */
460*4882a593Smuzhiyun spinlock_t tcb_ready_qlock; /* protects the tx_ring ready tcb list */
461*4882a593Smuzhiyun spinlock_t rcv_lock; /* protects the rx_ring receive list */
462*4882a593Smuzhiyun
463*4882a593Smuzhiyun /* Packet Filter and look ahead size */
464*4882a593Smuzhiyun u32 packet_filter;
465*4882a593Smuzhiyun
466*4882a593Smuzhiyun /* multicast list */
467*4882a593Smuzhiyun u32 multicast_addr_count;
468*4882a593Smuzhiyun u8 multicast_list[NIC_MAX_MCAST_LIST][ETH_ALEN];
469*4882a593Smuzhiyun
470*4882a593Smuzhiyun /* Pointer to the device's PCI register space */
471*4882a593Smuzhiyun struct address_map __iomem *regs;
472*4882a593Smuzhiyun
473*4882a593Smuzhiyun /* Registry parameters */
474*4882a593Smuzhiyun u8 wanted_flow; /* Flow we want for 802.3x flow control */
475*4882a593Smuzhiyun u32 registry_jumbo_packet; /* Max supported ethernet packet size */
476*4882a593Smuzhiyun
477*4882a593Smuzhiyun /* Derived from the registry: */
478*4882a593Smuzhiyun u8 flow; /* flow control validated by the far-end */
479*4882a593Smuzhiyun
480*4882a593Smuzhiyun /* Minimize init-time */
481*4882a593Smuzhiyun struct timer_list error_timer;
482*4882a593Smuzhiyun
483*4882a593Smuzhiyun /* variable putting the phy into coma mode when boot up with no cable
484*4882a593Smuzhiyun * plugged in after 5 seconds
485*4882a593Smuzhiyun */
486*4882a593Smuzhiyun u8 boot_coma;
487*4882a593Smuzhiyun
488*4882a593Smuzhiyun /* Tx Memory Variables */
489*4882a593Smuzhiyun struct tx_ring tx_ring;
490*4882a593Smuzhiyun
491*4882a593Smuzhiyun /* Rx Memory Variables */
492*4882a593Smuzhiyun struct rx_ring rx_ring;
493*4882a593Smuzhiyun
494*4882a593Smuzhiyun struct ce_stats stats;
495*4882a593Smuzhiyun };
496*4882a593Smuzhiyun
eeprom_wait_ready(struct pci_dev * pdev,u32 * status)497*4882a593Smuzhiyun static int eeprom_wait_ready(struct pci_dev *pdev, u32 *status)
498*4882a593Smuzhiyun {
499*4882a593Smuzhiyun u32 reg;
500*4882a593Smuzhiyun int i;
501*4882a593Smuzhiyun
502*4882a593Smuzhiyun /* 1. Check LBCIF Status Register for bits 6 & 3:2 all equal to 0 and
503*4882a593Smuzhiyun * bits 7,1:0 both equal to 1, at least once after reset.
504*4882a593Smuzhiyun * Subsequent operations need only to check that bits 1:0 are equal
505*4882a593Smuzhiyun * to 1 prior to starting a single byte read/write
506*4882a593Smuzhiyun */
507*4882a593Smuzhiyun for (i = 0; i < MAX_NUM_REGISTER_POLLS; i++) {
508*4882a593Smuzhiyun if (pci_read_config_dword(pdev, LBCIF_DWORD1_GROUP, ®))
509*4882a593Smuzhiyun return -EIO;
510*4882a593Smuzhiyun
511*4882a593Smuzhiyun /* I2C idle and Phy Queue Avail both true */
512*4882a593Smuzhiyun if ((reg & 0x3000) == 0x3000) {
513*4882a593Smuzhiyun if (status)
514*4882a593Smuzhiyun *status = reg;
515*4882a593Smuzhiyun return reg & 0xFF;
516*4882a593Smuzhiyun }
517*4882a593Smuzhiyun }
518*4882a593Smuzhiyun return -ETIMEDOUT;
519*4882a593Smuzhiyun }
520*4882a593Smuzhiyun
eeprom_write(struct et131x_adapter * adapter,u32 addr,u8 data)521*4882a593Smuzhiyun static int eeprom_write(struct et131x_adapter *adapter, u32 addr, u8 data)
522*4882a593Smuzhiyun {
523*4882a593Smuzhiyun struct pci_dev *pdev = adapter->pdev;
524*4882a593Smuzhiyun int index = 0;
525*4882a593Smuzhiyun int retries;
526*4882a593Smuzhiyun int err = 0;
527*4882a593Smuzhiyun int writeok = 0;
528*4882a593Smuzhiyun u32 status;
529*4882a593Smuzhiyun u32 val = 0;
530*4882a593Smuzhiyun
531*4882a593Smuzhiyun /* For an EEPROM, an I2C single byte write is defined as a START
532*4882a593Smuzhiyun * condition followed by the device address, EEPROM address, one byte
533*4882a593Smuzhiyun * of data and a STOP condition. The STOP condition will trigger the
534*4882a593Smuzhiyun * EEPROM's internally timed write cycle to the nonvolatile memory.
535*4882a593Smuzhiyun * All inputs are disabled during this write cycle and the EEPROM will
536*4882a593Smuzhiyun * not respond to any access until the internal write is complete.
537*4882a593Smuzhiyun */
538*4882a593Smuzhiyun err = eeprom_wait_ready(pdev, NULL);
539*4882a593Smuzhiyun if (err < 0)
540*4882a593Smuzhiyun return err;
541*4882a593Smuzhiyun
542*4882a593Smuzhiyun /* 2. Write to the LBCIF Control Register: bit 7=1, bit 6=1, bit 3=0,
543*4882a593Smuzhiyun * and bits 1:0 both =0. Bit 5 should be set according to the
544*4882a593Smuzhiyun * type of EEPROM being accessed (1=two byte addressing, 0=one
545*4882a593Smuzhiyun * byte addressing).
546*4882a593Smuzhiyun */
547*4882a593Smuzhiyun if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER,
548*4882a593Smuzhiyun LBCIF_CONTROL_LBCIF_ENABLE |
549*4882a593Smuzhiyun LBCIF_CONTROL_I2C_WRITE))
550*4882a593Smuzhiyun return -EIO;
551*4882a593Smuzhiyun
552*4882a593Smuzhiyun /* Prepare EEPROM address for Step 3 */
553*4882a593Smuzhiyun for (retries = 0; retries < MAX_NUM_WRITE_RETRIES; retries++) {
554*4882a593Smuzhiyun if (pci_write_config_dword(pdev, LBCIF_ADDRESS_REGISTER, addr))
555*4882a593Smuzhiyun break;
556*4882a593Smuzhiyun /* Write the data to the LBCIF Data Register (the I2C write
557*4882a593Smuzhiyun * will begin).
558*4882a593Smuzhiyun */
559*4882a593Smuzhiyun if (pci_write_config_byte(pdev, LBCIF_DATA_REGISTER, data))
560*4882a593Smuzhiyun break;
561*4882a593Smuzhiyun /* Monitor bit 1:0 of the LBCIF Status Register. When bits
562*4882a593Smuzhiyun * 1:0 are both equal to 1, the I2C write has completed and the
563*4882a593Smuzhiyun * internal write cycle of the EEPROM is about to start.
564*4882a593Smuzhiyun * (bits 1:0 = 01 is a legal state while waiting from both
565*4882a593Smuzhiyun * equal to 1, but bits 1:0 = 10 is invalid and implies that
566*4882a593Smuzhiyun * something is broken).
567*4882a593Smuzhiyun */
568*4882a593Smuzhiyun err = eeprom_wait_ready(pdev, &status);
569*4882a593Smuzhiyun if (err < 0)
570*4882a593Smuzhiyun return 0;
571*4882a593Smuzhiyun
572*4882a593Smuzhiyun /* Check bit 3 of the LBCIF Status Register. If equal to 1,
573*4882a593Smuzhiyun * an error has occurred.Don't break here if we are revision
574*4882a593Smuzhiyun * 1, this is so we do a blind write for load bug.
575*4882a593Smuzhiyun */
576*4882a593Smuzhiyun if ((status & LBCIF_STATUS_GENERAL_ERROR) &&
577*4882a593Smuzhiyun adapter->pdev->revision == 0)
578*4882a593Smuzhiyun break;
579*4882a593Smuzhiyun
580*4882a593Smuzhiyun /* Check bit 2 of the LBCIF Status Register. If equal to 1 an
581*4882a593Smuzhiyun * ACK error has occurred on the address phase of the write.
582*4882a593Smuzhiyun * This could be due to an actual hardware failure or the
583*4882a593Smuzhiyun * EEPROM may still be in its internal write cycle from a
584*4882a593Smuzhiyun * previous write. This write operation was ignored and must be
585*4882a593Smuzhiyun *repeated later.
586*4882a593Smuzhiyun */
587*4882a593Smuzhiyun if (status & LBCIF_STATUS_ACK_ERROR) {
588*4882a593Smuzhiyun /* This could be due to an actual hardware failure
589*4882a593Smuzhiyun * or the EEPROM may still be in its internal write
590*4882a593Smuzhiyun * cycle from a previous write. This write operation
591*4882a593Smuzhiyun * was ignored and must be repeated later.
592*4882a593Smuzhiyun */
593*4882a593Smuzhiyun udelay(10);
594*4882a593Smuzhiyun continue;
595*4882a593Smuzhiyun }
596*4882a593Smuzhiyun
597*4882a593Smuzhiyun writeok = 1;
598*4882a593Smuzhiyun break;
599*4882a593Smuzhiyun }
600*4882a593Smuzhiyun
601*4882a593Smuzhiyun udelay(10);
602*4882a593Smuzhiyun
603*4882a593Smuzhiyun while (1) {
604*4882a593Smuzhiyun if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER,
605*4882a593Smuzhiyun LBCIF_CONTROL_LBCIF_ENABLE))
606*4882a593Smuzhiyun writeok = 0;
607*4882a593Smuzhiyun
608*4882a593Smuzhiyun /* Do read until internal ACK_ERROR goes away meaning write
609*4882a593Smuzhiyun * completed
610*4882a593Smuzhiyun */
611*4882a593Smuzhiyun do {
612*4882a593Smuzhiyun pci_write_config_dword(pdev,
613*4882a593Smuzhiyun LBCIF_ADDRESS_REGISTER,
614*4882a593Smuzhiyun addr);
615*4882a593Smuzhiyun do {
616*4882a593Smuzhiyun pci_read_config_dword(pdev,
617*4882a593Smuzhiyun LBCIF_DATA_REGISTER,
618*4882a593Smuzhiyun &val);
619*4882a593Smuzhiyun } while ((val & 0x00010000) == 0);
620*4882a593Smuzhiyun } while (val & 0x00040000);
621*4882a593Smuzhiyun
622*4882a593Smuzhiyun if ((val & 0xFF00) != 0xC000 || index == 10000)
623*4882a593Smuzhiyun break;
624*4882a593Smuzhiyun index++;
625*4882a593Smuzhiyun }
626*4882a593Smuzhiyun return writeok ? 0 : -EIO;
627*4882a593Smuzhiyun }
628*4882a593Smuzhiyun
eeprom_read(struct et131x_adapter * adapter,u32 addr,u8 * pdata)629*4882a593Smuzhiyun static int eeprom_read(struct et131x_adapter *adapter, u32 addr, u8 *pdata)
630*4882a593Smuzhiyun {
631*4882a593Smuzhiyun struct pci_dev *pdev = adapter->pdev;
632*4882a593Smuzhiyun int err;
633*4882a593Smuzhiyun u32 status;
634*4882a593Smuzhiyun
635*4882a593Smuzhiyun /* A single byte read is similar to the single byte write, with the
636*4882a593Smuzhiyun * exception of the data flow:
637*4882a593Smuzhiyun */
638*4882a593Smuzhiyun err = eeprom_wait_ready(pdev, NULL);
639*4882a593Smuzhiyun if (err < 0)
640*4882a593Smuzhiyun return err;
641*4882a593Smuzhiyun /* Write to the LBCIF Control Register: bit 7=1, bit 6=0, bit 3=0,
642*4882a593Smuzhiyun * and bits 1:0 both =0. Bit 5 should be set according to the type
643*4882a593Smuzhiyun * of EEPROM being accessed (1=two byte addressing, 0=one byte
644*4882a593Smuzhiyun * addressing).
645*4882a593Smuzhiyun */
646*4882a593Smuzhiyun if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER,
647*4882a593Smuzhiyun LBCIF_CONTROL_LBCIF_ENABLE))
648*4882a593Smuzhiyun return -EIO;
649*4882a593Smuzhiyun /* Write the address to the LBCIF Address Register (I2C read will
650*4882a593Smuzhiyun * begin).
651*4882a593Smuzhiyun */
652*4882a593Smuzhiyun if (pci_write_config_dword(pdev, LBCIF_ADDRESS_REGISTER, addr))
653*4882a593Smuzhiyun return -EIO;
654*4882a593Smuzhiyun /* Monitor bit 0 of the LBCIF Status Register. When = 1, I2C read
655*4882a593Smuzhiyun * is complete. (if bit 1 =1 and bit 0 stays = 0, a hardware failure
656*4882a593Smuzhiyun * has occurred).
657*4882a593Smuzhiyun */
658*4882a593Smuzhiyun err = eeprom_wait_ready(pdev, &status);
659*4882a593Smuzhiyun if (err < 0)
660*4882a593Smuzhiyun return err;
661*4882a593Smuzhiyun /* Regardless of error status, read data byte from LBCIF Data
662*4882a593Smuzhiyun * Register.
663*4882a593Smuzhiyun */
664*4882a593Smuzhiyun *pdata = err;
665*4882a593Smuzhiyun
666*4882a593Smuzhiyun return (status & LBCIF_STATUS_ACK_ERROR) ? -EIO : 0;
667*4882a593Smuzhiyun }
668*4882a593Smuzhiyun
et131x_init_eeprom(struct et131x_adapter * adapter)669*4882a593Smuzhiyun static int et131x_init_eeprom(struct et131x_adapter *adapter)
670*4882a593Smuzhiyun {
671*4882a593Smuzhiyun struct pci_dev *pdev = adapter->pdev;
672*4882a593Smuzhiyun u8 eestatus;
673*4882a593Smuzhiyun
674*4882a593Smuzhiyun pci_read_config_byte(pdev, ET1310_PCI_EEPROM_STATUS, &eestatus);
675*4882a593Smuzhiyun
676*4882a593Smuzhiyun /* THIS IS A WORKAROUND:
677*4882a593Smuzhiyun * I need to call this function twice to get my card in a
678*4882a593Smuzhiyun * LG M1 Express Dual running. I tried also a msleep before this
679*4882a593Smuzhiyun * function, because I thought there could be some time conditions
680*4882a593Smuzhiyun * but it didn't work. Call the whole function twice also work.
681*4882a593Smuzhiyun */
682*4882a593Smuzhiyun if (pci_read_config_byte(pdev, ET1310_PCI_EEPROM_STATUS, &eestatus)) {
683*4882a593Smuzhiyun dev_err(&pdev->dev,
684*4882a593Smuzhiyun "Could not read PCI config space for EEPROM Status\n");
685*4882a593Smuzhiyun return -EIO;
686*4882a593Smuzhiyun }
687*4882a593Smuzhiyun
688*4882a593Smuzhiyun /* Determine if the error(s) we care about are present. If they are
689*4882a593Smuzhiyun * present we need to fail.
690*4882a593Smuzhiyun */
691*4882a593Smuzhiyun if (eestatus & 0x4C) {
692*4882a593Smuzhiyun int write_failed = 0;
693*4882a593Smuzhiyun
694*4882a593Smuzhiyun if (pdev->revision == 0x01) {
695*4882a593Smuzhiyun int i;
696*4882a593Smuzhiyun static const u8 eedata[4] = { 0xFE, 0x13, 0x10, 0xFF };
697*4882a593Smuzhiyun
698*4882a593Smuzhiyun /* Re-write the first 4 bytes if we have an eeprom
699*4882a593Smuzhiyun * present and the revision id is 1, this fixes the
700*4882a593Smuzhiyun * corruption seen with 1310 B Silicon
701*4882a593Smuzhiyun */
702*4882a593Smuzhiyun for (i = 0; i < 3; i++)
703*4882a593Smuzhiyun if (eeprom_write(adapter, i, eedata[i]) < 0)
704*4882a593Smuzhiyun write_failed = 1;
705*4882a593Smuzhiyun }
706*4882a593Smuzhiyun if (pdev->revision != 0x01 || write_failed) {
707*4882a593Smuzhiyun dev_err(&pdev->dev,
708*4882a593Smuzhiyun "Fatal EEPROM Status Error - 0x%04x\n",
709*4882a593Smuzhiyun eestatus);
710*4882a593Smuzhiyun
711*4882a593Smuzhiyun /* This error could mean that there was an error
712*4882a593Smuzhiyun * reading the eeprom or that the eeprom doesn't exist.
713*4882a593Smuzhiyun * We will treat each case the same and not try to
714*4882a593Smuzhiyun * gather additional information that normally would
715*4882a593Smuzhiyun * come from the eeprom, like MAC Address
716*4882a593Smuzhiyun */
717*4882a593Smuzhiyun adapter->has_eeprom = false;
718*4882a593Smuzhiyun return -EIO;
719*4882a593Smuzhiyun }
720*4882a593Smuzhiyun }
721*4882a593Smuzhiyun adapter->has_eeprom = true;
722*4882a593Smuzhiyun
723*4882a593Smuzhiyun /* Read the EEPROM for information regarding LED behavior. Refer to
724*4882a593Smuzhiyun * et131x_xcvr_init() for its use.
725*4882a593Smuzhiyun */
726*4882a593Smuzhiyun eeprom_read(adapter, 0x70, &adapter->eeprom_data[0]);
727*4882a593Smuzhiyun eeprom_read(adapter, 0x71, &adapter->eeprom_data[1]);
728*4882a593Smuzhiyun
729*4882a593Smuzhiyun if (adapter->eeprom_data[0] != 0xcd)
730*4882a593Smuzhiyun /* Disable all optional features */
731*4882a593Smuzhiyun adapter->eeprom_data[1] = 0x00;
732*4882a593Smuzhiyun
733*4882a593Smuzhiyun return 0;
734*4882a593Smuzhiyun }
735*4882a593Smuzhiyun
et131x_rx_dma_enable(struct et131x_adapter * adapter)736*4882a593Smuzhiyun static void et131x_rx_dma_enable(struct et131x_adapter *adapter)
737*4882a593Smuzhiyun {
738*4882a593Smuzhiyun /* Setup the receive dma configuration register for normal operation */
739*4882a593Smuzhiyun u32 csr = ET_RXDMA_CSR_FBR1_ENABLE;
740*4882a593Smuzhiyun struct rx_ring *rx_ring = &adapter->rx_ring;
741*4882a593Smuzhiyun
742*4882a593Smuzhiyun if (rx_ring->fbr[1]->buffsize == 4096)
743*4882a593Smuzhiyun csr |= ET_RXDMA_CSR_FBR1_SIZE_LO;
744*4882a593Smuzhiyun else if (rx_ring->fbr[1]->buffsize == 8192)
745*4882a593Smuzhiyun csr |= ET_RXDMA_CSR_FBR1_SIZE_HI;
746*4882a593Smuzhiyun else if (rx_ring->fbr[1]->buffsize == 16384)
747*4882a593Smuzhiyun csr |= ET_RXDMA_CSR_FBR1_SIZE_LO | ET_RXDMA_CSR_FBR1_SIZE_HI;
748*4882a593Smuzhiyun
749*4882a593Smuzhiyun csr |= ET_RXDMA_CSR_FBR0_ENABLE;
750*4882a593Smuzhiyun if (rx_ring->fbr[0]->buffsize == 256)
751*4882a593Smuzhiyun csr |= ET_RXDMA_CSR_FBR0_SIZE_LO;
752*4882a593Smuzhiyun else if (rx_ring->fbr[0]->buffsize == 512)
753*4882a593Smuzhiyun csr |= ET_RXDMA_CSR_FBR0_SIZE_HI;
754*4882a593Smuzhiyun else if (rx_ring->fbr[0]->buffsize == 1024)
755*4882a593Smuzhiyun csr |= ET_RXDMA_CSR_FBR0_SIZE_LO | ET_RXDMA_CSR_FBR0_SIZE_HI;
756*4882a593Smuzhiyun writel(csr, &adapter->regs->rxdma.csr);
757*4882a593Smuzhiyun
758*4882a593Smuzhiyun csr = readl(&adapter->regs->rxdma.csr);
759*4882a593Smuzhiyun if (csr & ET_RXDMA_CSR_HALT_STATUS) {
760*4882a593Smuzhiyun udelay(5);
761*4882a593Smuzhiyun csr = readl(&adapter->regs->rxdma.csr);
762*4882a593Smuzhiyun if (csr & ET_RXDMA_CSR_HALT_STATUS) {
763*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
764*4882a593Smuzhiyun "RX Dma failed to exit halt state. CSR 0x%08x\n",
765*4882a593Smuzhiyun csr);
766*4882a593Smuzhiyun }
767*4882a593Smuzhiyun }
768*4882a593Smuzhiyun }
769*4882a593Smuzhiyun
et131x_rx_dma_disable(struct et131x_adapter * adapter)770*4882a593Smuzhiyun static void et131x_rx_dma_disable(struct et131x_adapter *adapter)
771*4882a593Smuzhiyun {
772*4882a593Smuzhiyun u32 csr;
773*4882a593Smuzhiyun /* Setup the receive dma configuration register */
774*4882a593Smuzhiyun writel(ET_RXDMA_CSR_HALT | ET_RXDMA_CSR_FBR1_ENABLE,
775*4882a593Smuzhiyun &adapter->regs->rxdma.csr);
776*4882a593Smuzhiyun csr = readl(&adapter->regs->rxdma.csr);
777*4882a593Smuzhiyun if (!(csr & ET_RXDMA_CSR_HALT_STATUS)) {
778*4882a593Smuzhiyun udelay(5);
779*4882a593Smuzhiyun csr = readl(&adapter->regs->rxdma.csr);
780*4882a593Smuzhiyun if (!(csr & ET_RXDMA_CSR_HALT_STATUS))
781*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
782*4882a593Smuzhiyun "RX Dma failed to enter halt state. CSR 0x%08x\n",
783*4882a593Smuzhiyun csr);
784*4882a593Smuzhiyun }
785*4882a593Smuzhiyun }
786*4882a593Smuzhiyun
et131x_tx_dma_enable(struct et131x_adapter * adapter)787*4882a593Smuzhiyun static void et131x_tx_dma_enable(struct et131x_adapter *adapter)
788*4882a593Smuzhiyun {
789*4882a593Smuzhiyun /* Setup the transmit dma configuration register for normal
790*4882a593Smuzhiyun * operation
791*4882a593Smuzhiyun */
792*4882a593Smuzhiyun writel(ET_TXDMA_SNGL_EPKT | (PARM_DMA_CACHE_DEF << ET_TXDMA_CACHE_SHIFT),
793*4882a593Smuzhiyun &adapter->regs->txdma.csr);
794*4882a593Smuzhiyun }
795*4882a593Smuzhiyun
add_10bit(u32 * v,int n)796*4882a593Smuzhiyun static inline void add_10bit(u32 *v, int n)
797*4882a593Smuzhiyun {
798*4882a593Smuzhiyun *v = INDEX10(*v + n) | (*v & ET_DMA10_WRAP);
799*4882a593Smuzhiyun }
800*4882a593Smuzhiyun
add_12bit(u32 * v,int n)801*4882a593Smuzhiyun static inline void add_12bit(u32 *v, int n)
802*4882a593Smuzhiyun {
803*4882a593Smuzhiyun *v = INDEX12(*v + n) | (*v & ET_DMA12_WRAP);
804*4882a593Smuzhiyun }
805*4882a593Smuzhiyun
et1310_config_mac_regs1(struct et131x_adapter * adapter)806*4882a593Smuzhiyun static void et1310_config_mac_regs1(struct et131x_adapter *adapter)
807*4882a593Smuzhiyun {
808*4882a593Smuzhiyun struct mac_regs __iomem *macregs = &adapter->regs->mac;
809*4882a593Smuzhiyun u32 station1;
810*4882a593Smuzhiyun u32 station2;
811*4882a593Smuzhiyun u32 ipg;
812*4882a593Smuzhiyun
813*4882a593Smuzhiyun /* First we need to reset everything. Write to MAC configuration
814*4882a593Smuzhiyun * register 1 to perform reset.
815*4882a593Smuzhiyun */
816*4882a593Smuzhiyun writel(ET_MAC_CFG1_SOFT_RESET | ET_MAC_CFG1_SIM_RESET |
817*4882a593Smuzhiyun ET_MAC_CFG1_RESET_RXMC | ET_MAC_CFG1_RESET_TXMC |
818*4882a593Smuzhiyun ET_MAC_CFG1_RESET_RXFUNC | ET_MAC_CFG1_RESET_TXFUNC,
819*4882a593Smuzhiyun ¯egs->cfg1);
820*4882a593Smuzhiyun
821*4882a593Smuzhiyun /* Next lets configure the MAC Inter-packet gap register */
822*4882a593Smuzhiyun ipg = 0x38005860; /* IPG1 0x38 IPG2 0x58 B2B 0x60 */
823*4882a593Smuzhiyun ipg |= 0x50 << 8; /* ifg enforce 0x50 */
824*4882a593Smuzhiyun writel(ipg, ¯egs->ipg);
825*4882a593Smuzhiyun
826*4882a593Smuzhiyun /* Next lets configure the MAC Half Duplex register */
827*4882a593Smuzhiyun /* BEB trunc 0xA, Ex Defer, Rexmit 0xF Coll 0x37 */
828*4882a593Smuzhiyun writel(0x00A1F037, ¯egs->hfdp);
829*4882a593Smuzhiyun
830*4882a593Smuzhiyun /* Next lets configure the MAC Interface Control register */
831*4882a593Smuzhiyun writel(0, ¯egs->if_ctrl);
832*4882a593Smuzhiyun
833*4882a593Smuzhiyun writel(ET_MAC_MIIMGMT_CLK_RST, ¯egs->mii_mgmt_cfg);
834*4882a593Smuzhiyun
835*4882a593Smuzhiyun /* Next lets configure the MAC Station Address register. These
836*4882a593Smuzhiyun * values are read from the EEPROM during initialization and stored
837*4882a593Smuzhiyun * in the adapter structure. We write what is stored in the adapter
838*4882a593Smuzhiyun * structure to the MAC Station Address registers high and low. This
839*4882a593Smuzhiyun * station address is used for generating and checking pause control
840*4882a593Smuzhiyun * packets.
841*4882a593Smuzhiyun */
842*4882a593Smuzhiyun station2 = (adapter->addr[1] << ET_MAC_STATION_ADDR2_OC2_SHIFT) |
843*4882a593Smuzhiyun (adapter->addr[0] << ET_MAC_STATION_ADDR2_OC1_SHIFT);
844*4882a593Smuzhiyun station1 = (adapter->addr[5] << ET_MAC_STATION_ADDR1_OC6_SHIFT) |
845*4882a593Smuzhiyun (adapter->addr[4] << ET_MAC_STATION_ADDR1_OC5_SHIFT) |
846*4882a593Smuzhiyun (adapter->addr[3] << ET_MAC_STATION_ADDR1_OC4_SHIFT) |
847*4882a593Smuzhiyun adapter->addr[2];
848*4882a593Smuzhiyun writel(station1, ¯egs->station_addr_1);
849*4882a593Smuzhiyun writel(station2, ¯egs->station_addr_2);
850*4882a593Smuzhiyun
851*4882a593Smuzhiyun /* Max ethernet packet in bytes that will be passed by the mac without
852*4882a593Smuzhiyun * being truncated. Allow the MAC to pass 4 more than our max packet
853*4882a593Smuzhiyun * size. This is 4 for the Ethernet CRC.
854*4882a593Smuzhiyun *
855*4882a593Smuzhiyun * Packets larger than (registry_jumbo_packet) that do not contain a
856*4882a593Smuzhiyun * VLAN ID will be dropped by the Rx function.
857*4882a593Smuzhiyun */
858*4882a593Smuzhiyun writel(adapter->registry_jumbo_packet + 4, ¯egs->max_fm_len);
859*4882a593Smuzhiyun
860*4882a593Smuzhiyun /* clear out MAC config reset */
861*4882a593Smuzhiyun writel(0, ¯egs->cfg1);
862*4882a593Smuzhiyun }
863*4882a593Smuzhiyun
et1310_config_mac_regs2(struct et131x_adapter * adapter)864*4882a593Smuzhiyun static void et1310_config_mac_regs2(struct et131x_adapter *adapter)
865*4882a593Smuzhiyun {
866*4882a593Smuzhiyun int32_t delay = 0;
867*4882a593Smuzhiyun struct mac_regs __iomem *mac = &adapter->regs->mac;
868*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
869*4882a593Smuzhiyun u32 cfg1;
870*4882a593Smuzhiyun u32 cfg2;
871*4882a593Smuzhiyun u32 ifctrl;
872*4882a593Smuzhiyun u32 ctl;
873*4882a593Smuzhiyun
874*4882a593Smuzhiyun ctl = readl(&adapter->regs->txmac.ctl);
875*4882a593Smuzhiyun cfg1 = readl(&mac->cfg1);
876*4882a593Smuzhiyun cfg2 = readl(&mac->cfg2);
877*4882a593Smuzhiyun ifctrl = readl(&mac->if_ctrl);
878*4882a593Smuzhiyun
879*4882a593Smuzhiyun /* Set up the if mode bits */
880*4882a593Smuzhiyun cfg2 &= ~ET_MAC_CFG2_IFMODE_MASK;
881*4882a593Smuzhiyun if (phydev->speed == SPEED_1000) {
882*4882a593Smuzhiyun cfg2 |= ET_MAC_CFG2_IFMODE_1000;
883*4882a593Smuzhiyun ifctrl &= ~ET_MAC_IFCTRL_PHYMODE;
884*4882a593Smuzhiyun } else {
885*4882a593Smuzhiyun cfg2 |= ET_MAC_CFG2_IFMODE_100;
886*4882a593Smuzhiyun ifctrl |= ET_MAC_IFCTRL_PHYMODE;
887*4882a593Smuzhiyun }
888*4882a593Smuzhiyun
889*4882a593Smuzhiyun cfg1 |= ET_MAC_CFG1_RX_ENABLE | ET_MAC_CFG1_TX_ENABLE |
890*4882a593Smuzhiyun ET_MAC_CFG1_TX_FLOW;
891*4882a593Smuzhiyun
892*4882a593Smuzhiyun cfg1 &= ~(ET_MAC_CFG1_LOOPBACK | ET_MAC_CFG1_RX_FLOW);
893*4882a593Smuzhiyun if (adapter->flow == FLOW_RXONLY || adapter->flow == FLOW_BOTH)
894*4882a593Smuzhiyun cfg1 |= ET_MAC_CFG1_RX_FLOW;
895*4882a593Smuzhiyun writel(cfg1, &mac->cfg1);
896*4882a593Smuzhiyun
897*4882a593Smuzhiyun /* Now we need to initialize the MAC Configuration 2 register */
898*4882a593Smuzhiyun /* preamble 7, check length, huge frame off, pad crc, crc enable
899*4882a593Smuzhiyun * full duplex off
900*4882a593Smuzhiyun */
901*4882a593Smuzhiyun cfg2 |= 0x7 << ET_MAC_CFG2_PREAMBLE_SHIFT;
902*4882a593Smuzhiyun cfg2 |= ET_MAC_CFG2_IFMODE_LEN_CHECK;
903*4882a593Smuzhiyun cfg2 |= ET_MAC_CFG2_IFMODE_PAD_CRC;
904*4882a593Smuzhiyun cfg2 |= ET_MAC_CFG2_IFMODE_CRC_ENABLE;
905*4882a593Smuzhiyun cfg2 &= ~ET_MAC_CFG2_IFMODE_HUGE_FRAME;
906*4882a593Smuzhiyun cfg2 &= ~ET_MAC_CFG2_IFMODE_FULL_DPLX;
907*4882a593Smuzhiyun
908*4882a593Smuzhiyun if (phydev->duplex == DUPLEX_FULL)
909*4882a593Smuzhiyun cfg2 |= ET_MAC_CFG2_IFMODE_FULL_DPLX;
910*4882a593Smuzhiyun
911*4882a593Smuzhiyun ifctrl &= ~ET_MAC_IFCTRL_GHDMODE;
912*4882a593Smuzhiyun if (phydev->duplex == DUPLEX_HALF)
913*4882a593Smuzhiyun ifctrl |= ET_MAC_IFCTRL_GHDMODE;
914*4882a593Smuzhiyun
915*4882a593Smuzhiyun writel(ifctrl, &mac->if_ctrl);
916*4882a593Smuzhiyun writel(cfg2, &mac->cfg2);
917*4882a593Smuzhiyun
918*4882a593Smuzhiyun do {
919*4882a593Smuzhiyun udelay(10);
920*4882a593Smuzhiyun delay++;
921*4882a593Smuzhiyun cfg1 = readl(&mac->cfg1);
922*4882a593Smuzhiyun } while ((cfg1 & ET_MAC_CFG1_WAIT) != ET_MAC_CFG1_WAIT && delay < 100);
923*4882a593Smuzhiyun
924*4882a593Smuzhiyun if (delay == 100) {
925*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev,
926*4882a593Smuzhiyun "Syncd bits did not respond correctly cfg1 word 0x%08x\n",
927*4882a593Smuzhiyun cfg1);
928*4882a593Smuzhiyun }
929*4882a593Smuzhiyun
930*4882a593Smuzhiyun ctl |= ET_TX_CTRL_TXMAC_ENABLE | ET_TX_CTRL_FC_DISABLE;
931*4882a593Smuzhiyun writel(ctl, &adapter->regs->txmac.ctl);
932*4882a593Smuzhiyun
933*4882a593Smuzhiyun if (adapter->flags & FMP_ADAPTER_LOWER_POWER) {
934*4882a593Smuzhiyun et131x_rx_dma_enable(adapter);
935*4882a593Smuzhiyun et131x_tx_dma_enable(adapter);
936*4882a593Smuzhiyun }
937*4882a593Smuzhiyun }
938*4882a593Smuzhiyun
et1310_in_phy_coma(struct et131x_adapter * adapter)939*4882a593Smuzhiyun static int et1310_in_phy_coma(struct et131x_adapter *adapter)
940*4882a593Smuzhiyun {
941*4882a593Smuzhiyun u32 pmcsr = readl(&adapter->regs->global.pm_csr);
942*4882a593Smuzhiyun
943*4882a593Smuzhiyun return ET_PM_PHY_SW_COMA & pmcsr ? 1 : 0;
944*4882a593Smuzhiyun }
945*4882a593Smuzhiyun
et1310_setup_device_for_multicast(struct et131x_adapter * adapter)946*4882a593Smuzhiyun static void et1310_setup_device_for_multicast(struct et131x_adapter *adapter)
947*4882a593Smuzhiyun {
948*4882a593Smuzhiyun struct rxmac_regs __iomem *rxmac = &adapter->regs->rxmac;
949*4882a593Smuzhiyun u32 hash1 = 0;
950*4882a593Smuzhiyun u32 hash2 = 0;
951*4882a593Smuzhiyun u32 hash3 = 0;
952*4882a593Smuzhiyun u32 hash4 = 0;
953*4882a593Smuzhiyun
954*4882a593Smuzhiyun /* If ET131X_PACKET_TYPE_MULTICAST is specified, then we provision
955*4882a593Smuzhiyun * the multi-cast LIST. If it is NOT specified, (and "ALL" is not
956*4882a593Smuzhiyun * specified) then we should pass NO multi-cast addresses to the
957*4882a593Smuzhiyun * driver.
958*4882a593Smuzhiyun */
959*4882a593Smuzhiyun if (adapter->packet_filter & ET131X_PACKET_TYPE_MULTICAST) {
960*4882a593Smuzhiyun int i;
961*4882a593Smuzhiyun
962*4882a593Smuzhiyun /* Loop through our multicast array and set up the device */
963*4882a593Smuzhiyun for (i = 0; i < adapter->multicast_addr_count; i++) {
964*4882a593Smuzhiyun u32 result;
965*4882a593Smuzhiyun
966*4882a593Smuzhiyun result = ether_crc(6, adapter->multicast_list[i]);
967*4882a593Smuzhiyun
968*4882a593Smuzhiyun result = (result & 0x3F800000) >> 23;
969*4882a593Smuzhiyun
970*4882a593Smuzhiyun if (result < 32) {
971*4882a593Smuzhiyun hash1 |= (1 << result);
972*4882a593Smuzhiyun } else if ((31 < result) && (result < 64)) {
973*4882a593Smuzhiyun result -= 32;
974*4882a593Smuzhiyun hash2 |= (1 << result);
975*4882a593Smuzhiyun } else if ((63 < result) && (result < 96)) {
976*4882a593Smuzhiyun result -= 64;
977*4882a593Smuzhiyun hash3 |= (1 << result);
978*4882a593Smuzhiyun } else {
979*4882a593Smuzhiyun result -= 96;
980*4882a593Smuzhiyun hash4 |= (1 << result);
981*4882a593Smuzhiyun }
982*4882a593Smuzhiyun }
983*4882a593Smuzhiyun }
984*4882a593Smuzhiyun
985*4882a593Smuzhiyun /* Write out the new hash to the device */
986*4882a593Smuzhiyun if (!et1310_in_phy_coma(adapter)) {
987*4882a593Smuzhiyun writel(hash1, &rxmac->multi_hash1);
988*4882a593Smuzhiyun writel(hash2, &rxmac->multi_hash2);
989*4882a593Smuzhiyun writel(hash3, &rxmac->multi_hash3);
990*4882a593Smuzhiyun writel(hash4, &rxmac->multi_hash4);
991*4882a593Smuzhiyun }
992*4882a593Smuzhiyun }
993*4882a593Smuzhiyun
et1310_setup_device_for_unicast(struct et131x_adapter * adapter)994*4882a593Smuzhiyun static void et1310_setup_device_for_unicast(struct et131x_adapter *adapter)
995*4882a593Smuzhiyun {
996*4882a593Smuzhiyun struct rxmac_regs __iomem *rxmac = &adapter->regs->rxmac;
997*4882a593Smuzhiyun u32 uni_pf1;
998*4882a593Smuzhiyun u32 uni_pf2;
999*4882a593Smuzhiyun u32 uni_pf3;
1000*4882a593Smuzhiyun
1001*4882a593Smuzhiyun /* Set up unicast packet filter reg 3 to be the first two octets of
1002*4882a593Smuzhiyun * the MAC address for both address
1003*4882a593Smuzhiyun *
1004*4882a593Smuzhiyun * Set up unicast packet filter reg 2 to be the octets 2 - 5 of the
1005*4882a593Smuzhiyun * MAC address for second address
1006*4882a593Smuzhiyun *
1007*4882a593Smuzhiyun * Set up unicast packet filter reg 3 to be the octets 2 - 5 of the
1008*4882a593Smuzhiyun * MAC address for first address
1009*4882a593Smuzhiyun */
1010*4882a593Smuzhiyun uni_pf3 = (adapter->addr[0] << ET_RX_UNI_PF_ADDR2_1_SHIFT) |
1011*4882a593Smuzhiyun (adapter->addr[1] << ET_RX_UNI_PF_ADDR2_2_SHIFT) |
1012*4882a593Smuzhiyun (adapter->addr[0] << ET_RX_UNI_PF_ADDR1_1_SHIFT) |
1013*4882a593Smuzhiyun adapter->addr[1];
1014*4882a593Smuzhiyun
1015*4882a593Smuzhiyun uni_pf2 = (adapter->addr[2] << ET_RX_UNI_PF_ADDR2_3_SHIFT) |
1016*4882a593Smuzhiyun (adapter->addr[3] << ET_RX_UNI_PF_ADDR2_4_SHIFT) |
1017*4882a593Smuzhiyun (adapter->addr[4] << ET_RX_UNI_PF_ADDR2_5_SHIFT) |
1018*4882a593Smuzhiyun adapter->addr[5];
1019*4882a593Smuzhiyun
1020*4882a593Smuzhiyun uni_pf1 = (adapter->addr[2] << ET_RX_UNI_PF_ADDR1_3_SHIFT) |
1021*4882a593Smuzhiyun (adapter->addr[3] << ET_RX_UNI_PF_ADDR1_4_SHIFT) |
1022*4882a593Smuzhiyun (adapter->addr[4] << ET_RX_UNI_PF_ADDR1_5_SHIFT) |
1023*4882a593Smuzhiyun adapter->addr[5];
1024*4882a593Smuzhiyun
1025*4882a593Smuzhiyun if (!et1310_in_phy_coma(adapter)) {
1026*4882a593Smuzhiyun writel(uni_pf1, &rxmac->uni_pf_addr1);
1027*4882a593Smuzhiyun writel(uni_pf2, &rxmac->uni_pf_addr2);
1028*4882a593Smuzhiyun writel(uni_pf3, &rxmac->uni_pf_addr3);
1029*4882a593Smuzhiyun }
1030*4882a593Smuzhiyun }
1031*4882a593Smuzhiyun
et1310_config_rxmac_regs(struct et131x_adapter * adapter)1032*4882a593Smuzhiyun static void et1310_config_rxmac_regs(struct et131x_adapter *adapter)
1033*4882a593Smuzhiyun {
1034*4882a593Smuzhiyun struct rxmac_regs __iomem *rxmac = &adapter->regs->rxmac;
1035*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
1036*4882a593Smuzhiyun u32 sa_lo;
1037*4882a593Smuzhiyun u32 sa_hi = 0;
1038*4882a593Smuzhiyun u32 pf_ctrl = 0;
1039*4882a593Smuzhiyun u32 __iomem *wolw;
1040*4882a593Smuzhiyun
1041*4882a593Smuzhiyun /* Disable the MAC while it is being configured (also disable WOL) */
1042*4882a593Smuzhiyun writel(0x8, &rxmac->ctrl);
1043*4882a593Smuzhiyun
1044*4882a593Smuzhiyun /* Initialize WOL to disabled. */
1045*4882a593Smuzhiyun writel(0, &rxmac->crc0);
1046*4882a593Smuzhiyun writel(0, &rxmac->crc12);
1047*4882a593Smuzhiyun writel(0, &rxmac->crc34);
1048*4882a593Smuzhiyun
1049*4882a593Smuzhiyun /* We need to set the WOL mask0 - mask4 next. We initialize it to
1050*4882a593Smuzhiyun * its default Values of 0x00000000 because there are not WOL masks
1051*4882a593Smuzhiyun * as of this time.
1052*4882a593Smuzhiyun */
1053*4882a593Smuzhiyun for (wolw = &rxmac->mask0_word0; wolw <= &rxmac->mask4_word3; wolw++)
1054*4882a593Smuzhiyun writel(0, wolw);
1055*4882a593Smuzhiyun
1056*4882a593Smuzhiyun /* Lets setup the WOL Source Address */
1057*4882a593Smuzhiyun sa_lo = (adapter->addr[2] << ET_RX_WOL_LO_SA3_SHIFT) |
1058*4882a593Smuzhiyun (adapter->addr[3] << ET_RX_WOL_LO_SA4_SHIFT) |
1059*4882a593Smuzhiyun (adapter->addr[4] << ET_RX_WOL_LO_SA5_SHIFT) |
1060*4882a593Smuzhiyun adapter->addr[5];
1061*4882a593Smuzhiyun writel(sa_lo, &rxmac->sa_lo);
1062*4882a593Smuzhiyun
1063*4882a593Smuzhiyun sa_hi = (u32)(adapter->addr[0] << ET_RX_WOL_HI_SA1_SHIFT) |
1064*4882a593Smuzhiyun adapter->addr[1];
1065*4882a593Smuzhiyun writel(sa_hi, &rxmac->sa_hi);
1066*4882a593Smuzhiyun
1067*4882a593Smuzhiyun /* Disable all Packet Filtering */
1068*4882a593Smuzhiyun writel(0, &rxmac->pf_ctrl);
1069*4882a593Smuzhiyun
1070*4882a593Smuzhiyun /* Let's initialize the Unicast Packet filtering address */
1071*4882a593Smuzhiyun if (adapter->packet_filter & ET131X_PACKET_TYPE_DIRECTED) {
1072*4882a593Smuzhiyun et1310_setup_device_for_unicast(adapter);
1073*4882a593Smuzhiyun pf_ctrl |= ET_RX_PFCTRL_UNICST_FILTER_ENABLE;
1074*4882a593Smuzhiyun } else {
1075*4882a593Smuzhiyun writel(0, &rxmac->uni_pf_addr1);
1076*4882a593Smuzhiyun writel(0, &rxmac->uni_pf_addr2);
1077*4882a593Smuzhiyun writel(0, &rxmac->uni_pf_addr3);
1078*4882a593Smuzhiyun }
1079*4882a593Smuzhiyun
1080*4882a593Smuzhiyun /* Let's initialize the Multicast hash */
1081*4882a593Smuzhiyun if (!(adapter->packet_filter & ET131X_PACKET_TYPE_ALL_MULTICAST)) {
1082*4882a593Smuzhiyun pf_ctrl |= ET_RX_PFCTRL_MLTCST_FILTER_ENABLE;
1083*4882a593Smuzhiyun et1310_setup_device_for_multicast(adapter);
1084*4882a593Smuzhiyun }
1085*4882a593Smuzhiyun
1086*4882a593Smuzhiyun /* Runt packet filtering. Didn't work in version A silicon. */
1087*4882a593Smuzhiyun pf_ctrl |= (NIC_MIN_PACKET_SIZE + 4) << ET_RX_PFCTRL_MIN_PKT_SZ_SHIFT;
1088*4882a593Smuzhiyun pf_ctrl |= ET_RX_PFCTRL_FRAG_FILTER_ENABLE;
1089*4882a593Smuzhiyun
1090*4882a593Smuzhiyun if (adapter->registry_jumbo_packet > 8192)
1091*4882a593Smuzhiyun /* In order to transmit jumbo packets greater than 8k, the
1092*4882a593Smuzhiyun * FIFO between RxMAC and RxDMA needs to be reduced in size
1093*4882a593Smuzhiyun * to (16k - Jumbo packet size). In order to implement this,
1094*4882a593Smuzhiyun * we must use "cut through" mode in the RxMAC, which chops
1095*4882a593Smuzhiyun * packets down into segments which are (max_size * 16). In
1096*4882a593Smuzhiyun * this case we selected 256 bytes, since this is the size of
1097*4882a593Smuzhiyun * the PCI-Express TLP's that the 1310 uses.
1098*4882a593Smuzhiyun *
1099*4882a593Smuzhiyun * seg_en on, fc_en off, size 0x10
1100*4882a593Smuzhiyun */
1101*4882a593Smuzhiyun writel(0x41, &rxmac->mcif_ctrl_max_seg);
1102*4882a593Smuzhiyun else
1103*4882a593Smuzhiyun writel(0, &rxmac->mcif_ctrl_max_seg);
1104*4882a593Smuzhiyun
1105*4882a593Smuzhiyun writel(0, &rxmac->mcif_water_mark);
1106*4882a593Smuzhiyun writel(0, &rxmac->mif_ctrl);
1107*4882a593Smuzhiyun writel(0, &rxmac->space_avail);
1108*4882a593Smuzhiyun
1109*4882a593Smuzhiyun /* Initialize the the mif_ctrl register
1110*4882a593Smuzhiyun * bit 3: Receive code error. One or more nibbles were signaled as
1111*4882a593Smuzhiyun * errors during the reception of the packet. Clear this
1112*4882a593Smuzhiyun * bit in Gigabit, set it in 100Mbit. This was derived
1113*4882a593Smuzhiyun * experimentally at UNH.
1114*4882a593Smuzhiyun * bit 4: Receive CRC error. The packet's CRC did not match the
1115*4882a593Smuzhiyun * internally generated CRC.
1116*4882a593Smuzhiyun * bit 5: Receive length check error. Indicates that frame length
1117*4882a593Smuzhiyun * field value in the packet does not match the actual data
1118*4882a593Smuzhiyun * byte length and is not a type field.
1119*4882a593Smuzhiyun * bit 16: Receive frame truncated.
1120*4882a593Smuzhiyun * bit 17: Drop packet enable
1121*4882a593Smuzhiyun */
1122*4882a593Smuzhiyun if (phydev && phydev->speed == SPEED_100)
1123*4882a593Smuzhiyun writel(0x30038, &rxmac->mif_ctrl);
1124*4882a593Smuzhiyun else
1125*4882a593Smuzhiyun writel(0x30030, &rxmac->mif_ctrl);
1126*4882a593Smuzhiyun
1127*4882a593Smuzhiyun /* Finally we initialize RxMac to be enabled & WOL disabled. Packet
1128*4882a593Smuzhiyun * filter is always enabled since it is where the runt packets are
1129*4882a593Smuzhiyun * supposed to be dropped. For version A silicon, runt packet
1130*4882a593Smuzhiyun * dropping doesn't work, so it is disabled in the pf_ctrl register,
1131*4882a593Smuzhiyun * but we still leave the packet filter on.
1132*4882a593Smuzhiyun */
1133*4882a593Smuzhiyun writel(pf_ctrl, &rxmac->pf_ctrl);
1134*4882a593Smuzhiyun writel(ET_RX_CTRL_RXMAC_ENABLE | ET_RX_CTRL_WOL_DISABLE, &rxmac->ctrl);
1135*4882a593Smuzhiyun }
1136*4882a593Smuzhiyun
et1310_config_txmac_regs(struct et131x_adapter * adapter)1137*4882a593Smuzhiyun static void et1310_config_txmac_regs(struct et131x_adapter *adapter)
1138*4882a593Smuzhiyun {
1139*4882a593Smuzhiyun struct txmac_regs __iomem *txmac = &adapter->regs->txmac;
1140*4882a593Smuzhiyun
1141*4882a593Smuzhiyun /* We need to update the Control Frame Parameters
1142*4882a593Smuzhiyun * cfpt - control frame pause timer set to 64 (0x40)
1143*4882a593Smuzhiyun * cfep - control frame extended pause timer set to 0x0
1144*4882a593Smuzhiyun */
1145*4882a593Smuzhiyun if (adapter->flow == FLOW_NONE)
1146*4882a593Smuzhiyun writel(0, &txmac->cf_param);
1147*4882a593Smuzhiyun else
1148*4882a593Smuzhiyun writel(0x40, &txmac->cf_param);
1149*4882a593Smuzhiyun }
1150*4882a593Smuzhiyun
et1310_config_macstat_regs(struct et131x_adapter * adapter)1151*4882a593Smuzhiyun static void et1310_config_macstat_regs(struct et131x_adapter *adapter)
1152*4882a593Smuzhiyun {
1153*4882a593Smuzhiyun struct macstat_regs __iomem *macstat = &adapter->regs->macstat;
1154*4882a593Smuzhiyun u32 __iomem *reg;
1155*4882a593Smuzhiyun
1156*4882a593Smuzhiyun /* initialize all the macstat registers to zero on the device */
1157*4882a593Smuzhiyun for (reg = &macstat->txrx_0_64_byte_frames;
1158*4882a593Smuzhiyun reg <= &macstat->carry_reg2; reg++)
1159*4882a593Smuzhiyun writel(0, reg);
1160*4882a593Smuzhiyun
1161*4882a593Smuzhiyun /* Unmask any counters that we want to track the overflow of.
1162*4882a593Smuzhiyun * Initially this will be all counters. It may become clear later
1163*4882a593Smuzhiyun * that we do not need to track all counters.
1164*4882a593Smuzhiyun */
1165*4882a593Smuzhiyun writel(0xFFFFBE32, &macstat->carry_reg1_mask);
1166*4882a593Smuzhiyun writel(0xFFFE7E8B, &macstat->carry_reg2_mask);
1167*4882a593Smuzhiyun }
1168*4882a593Smuzhiyun
et131x_phy_mii_read(struct et131x_adapter * adapter,u8 addr,u8 reg,u16 * value)1169*4882a593Smuzhiyun static int et131x_phy_mii_read(struct et131x_adapter *adapter, u8 addr,
1170*4882a593Smuzhiyun u8 reg, u16 *value)
1171*4882a593Smuzhiyun {
1172*4882a593Smuzhiyun struct mac_regs __iomem *mac = &adapter->regs->mac;
1173*4882a593Smuzhiyun int status = 0;
1174*4882a593Smuzhiyun u32 delay = 0;
1175*4882a593Smuzhiyun u32 mii_addr;
1176*4882a593Smuzhiyun u32 mii_cmd;
1177*4882a593Smuzhiyun u32 mii_indicator;
1178*4882a593Smuzhiyun
1179*4882a593Smuzhiyun /* Save a local copy of the registers we are dealing with so we can
1180*4882a593Smuzhiyun * set them back
1181*4882a593Smuzhiyun */
1182*4882a593Smuzhiyun mii_addr = readl(&mac->mii_mgmt_addr);
1183*4882a593Smuzhiyun mii_cmd = readl(&mac->mii_mgmt_cmd);
1184*4882a593Smuzhiyun
1185*4882a593Smuzhiyun /* Stop the current operation */
1186*4882a593Smuzhiyun writel(0, &mac->mii_mgmt_cmd);
1187*4882a593Smuzhiyun
1188*4882a593Smuzhiyun /* Set up the register we need to read from on the correct PHY */
1189*4882a593Smuzhiyun writel(ET_MAC_MII_ADDR(addr, reg), &mac->mii_mgmt_addr);
1190*4882a593Smuzhiyun
1191*4882a593Smuzhiyun writel(0x1, &mac->mii_mgmt_cmd);
1192*4882a593Smuzhiyun
1193*4882a593Smuzhiyun do {
1194*4882a593Smuzhiyun udelay(50);
1195*4882a593Smuzhiyun delay++;
1196*4882a593Smuzhiyun mii_indicator = readl(&mac->mii_mgmt_indicator);
1197*4882a593Smuzhiyun } while ((mii_indicator & ET_MAC_MGMT_WAIT) && delay < 50);
1198*4882a593Smuzhiyun
1199*4882a593Smuzhiyun /* If we hit the max delay, we could not read the register */
1200*4882a593Smuzhiyun if (delay == 50) {
1201*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev,
1202*4882a593Smuzhiyun "reg 0x%08x could not be read\n", reg);
1203*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev, "status is 0x%08x\n",
1204*4882a593Smuzhiyun mii_indicator);
1205*4882a593Smuzhiyun
1206*4882a593Smuzhiyun status = -EIO;
1207*4882a593Smuzhiyun goto out;
1208*4882a593Smuzhiyun }
1209*4882a593Smuzhiyun
1210*4882a593Smuzhiyun /* If we hit here we were able to read the register and we need to
1211*4882a593Smuzhiyun * return the value to the caller
1212*4882a593Smuzhiyun */
1213*4882a593Smuzhiyun *value = readl(&mac->mii_mgmt_stat) & ET_MAC_MIIMGMT_STAT_PHYCRTL_MASK;
1214*4882a593Smuzhiyun
1215*4882a593Smuzhiyun out:
1216*4882a593Smuzhiyun /* Stop the read operation */
1217*4882a593Smuzhiyun writel(0, &mac->mii_mgmt_cmd);
1218*4882a593Smuzhiyun
1219*4882a593Smuzhiyun /* set the registers we touched back to the state at which we entered
1220*4882a593Smuzhiyun * this function
1221*4882a593Smuzhiyun */
1222*4882a593Smuzhiyun writel(mii_addr, &mac->mii_mgmt_addr);
1223*4882a593Smuzhiyun writel(mii_cmd, &mac->mii_mgmt_cmd);
1224*4882a593Smuzhiyun
1225*4882a593Smuzhiyun return status;
1226*4882a593Smuzhiyun }
1227*4882a593Smuzhiyun
et131x_mii_read(struct et131x_adapter * adapter,u8 reg,u16 * value)1228*4882a593Smuzhiyun static int et131x_mii_read(struct et131x_adapter *adapter, u8 reg, u16 *value)
1229*4882a593Smuzhiyun {
1230*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
1231*4882a593Smuzhiyun
1232*4882a593Smuzhiyun if (!phydev)
1233*4882a593Smuzhiyun return -EIO;
1234*4882a593Smuzhiyun
1235*4882a593Smuzhiyun return et131x_phy_mii_read(adapter, phydev->mdio.addr, reg, value);
1236*4882a593Smuzhiyun }
1237*4882a593Smuzhiyun
et131x_mii_write(struct et131x_adapter * adapter,u8 addr,u8 reg,u16 value)1238*4882a593Smuzhiyun static int et131x_mii_write(struct et131x_adapter *adapter, u8 addr, u8 reg,
1239*4882a593Smuzhiyun u16 value)
1240*4882a593Smuzhiyun {
1241*4882a593Smuzhiyun struct mac_regs __iomem *mac = &adapter->regs->mac;
1242*4882a593Smuzhiyun int status = 0;
1243*4882a593Smuzhiyun u32 delay = 0;
1244*4882a593Smuzhiyun u32 mii_addr;
1245*4882a593Smuzhiyun u32 mii_cmd;
1246*4882a593Smuzhiyun u32 mii_indicator;
1247*4882a593Smuzhiyun
1248*4882a593Smuzhiyun /* Save a local copy of the registers we are dealing with so we can
1249*4882a593Smuzhiyun * set them back
1250*4882a593Smuzhiyun */
1251*4882a593Smuzhiyun mii_addr = readl(&mac->mii_mgmt_addr);
1252*4882a593Smuzhiyun mii_cmd = readl(&mac->mii_mgmt_cmd);
1253*4882a593Smuzhiyun
1254*4882a593Smuzhiyun /* Stop the current operation */
1255*4882a593Smuzhiyun writel(0, &mac->mii_mgmt_cmd);
1256*4882a593Smuzhiyun
1257*4882a593Smuzhiyun /* Set up the register we need to write to on the correct PHY */
1258*4882a593Smuzhiyun writel(ET_MAC_MII_ADDR(addr, reg), &mac->mii_mgmt_addr);
1259*4882a593Smuzhiyun
1260*4882a593Smuzhiyun /* Add the value to write to the registers to the mac */
1261*4882a593Smuzhiyun writel(value, &mac->mii_mgmt_ctrl);
1262*4882a593Smuzhiyun
1263*4882a593Smuzhiyun do {
1264*4882a593Smuzhiyun udelay(50);
1265*4882a593Smuzhiyun delay++;
1266*4882a593Smuzhiyun mii_indicator = readl(&mac->mii_mgmt_indicator);
1267*4882a593Smuzhiyun } while ((mii_indicator & ET_MAC_MGMT_BUSY) && delay < 100);
1268*4882a593Smuzhiyun
1269*4882a593Smuzhiyun /* If we hit the max delay, we could not write the register */
1270*4882a593Smuzhiyun if (delay == 100) {
1271*4882a593Smuzhiyun u16 tmp;
1272*4882a593Smuzhiyun
1273*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev,
1274*4882a593Smuzhiyun "reg 0x%08x could not be written", reg);
1275*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev, "status is 0x%08x\n",
1276*4882a593Smuzhiyun mii_indicator);
1277*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev, "command is 0x%08x\n",
1278*4882a593Smuzhiyun readl(&mac->mii_mgmt_cmd));
1279*4882a593Smuzhiyun
1280*4882a593Smuzhiyun et131x_mii_read(adapter, reg, &tmp);
1281*4882a593Smuzhiyun
1282*4882a593Smuzhiyun status = -EIO;
1283*4882a593Smuzhiyun }
1284*4882a593Smuzhiyun /* Stop the write operation */
1285*4882a593Smuzhiyun writel(0, &mac->mii_mgmt_cmd);
1286*4882a593Smuzhiyun
1287*4882a593Smuzhiyun /* set the registers we touched back to the state at which we entered
1288*4882a593Smuzhiyun * this function
1289*4882a593Smuzhiyun */
1290*4882a593Smuzhiyun writel(mii_addr, &mac->mii_mgmt_addr);
1291*4882a593Smuzhiyun writel(mii_cmd, &mac->mii_mgmt_cmd);
1292*4882a593Smuzhiyun
1293*4882a593Smuzhiyun return status;
1294*4882a593Smuzhiyun }
1295*4882a593Smuzhiyun
et1310_phy_read_mii_bit(struct et131x_adapter * adapter,u16 regnum,u16 bitnum,u8 * value)1296*4882a593Smuzhiyun static void et1310_phy_read_mii_bit(struct et131x_adapter *adapter,
1297*4882a593Smuzhiyun u16 regnum,
1298*4882a593Smuzhiyun u16 bitnum,
1299*4882a593Smuzhiyun u8 *value)
1300*4882a593Smuzhiyun {
1301*4882a593Smuzhiyun u16 reg;
1302*4882a593Smuzhiyun u16 mask = 1 << bitnum;
1303*4882a593Smuzhiyun
1304*4882a593Smuzhiyun et131x_mii_read(adapter, regnum, ®);
1305*4882a593Smuzhiyun
1306*4882a593Smuzhiyun *value = (reg & mask) >> bitnum;
1307*4882a593Smuzhiyun }
1308*4882a593Smuzhiyun
et1310_config_flow_control(struct et131x_adapter * adapter)1309*4882a593Smuzhiyun static void et1310_config_flow_control(struct et131x_adapter *adapter)
1310*4882a593Smuzhiyun {
1311*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
1312*4882a593Smuzhiyun
1313*4882a593Smuzhiyun if (phydev->duplex == DUPLEX_HALF) {
1314*4882a593Smuzhiyun adapter->flow = FLOW_NONE;
1315*4882a593Smuzhiyun } else {
1316*4882a593Smuzhiyun char remote_pause, remote_async_pause;
1317*4882a593Smuzhiyun
1318*4882a593Smuzhiyun et1310_phy_read_mii_bit(adapter, 5, 10, &remote_pause);
1319*4882a593Smuzhiyun et1310_phy_read_mii_bit(adapter, 5, 11, &remote_async_pause);
1320*4882a593Smuzhiyun
1321*4882a593Smuzhiyun if (remote_pause && remote_async_pause) {
1322*4882a593Smuzhiyun adapter->flow = adapter->wanted_flow;
1323*4882a593Smuzhiyun } else if (remote_pause && !remote_async_pause) {
1324*4882a593Smuzhiyun if (adapter->wanted_flow == FLOW_BOTH)
1325*4882a593Smuzhiyun adapter->flow = FLOW_BOTH;
1326*4882a593Smuzhiyun else
1327*4882a593Smuzhiyun adapter->flow = FLOW_NONE;
1328*4882a593Smuzhiyun } else if (!remote_pause && !remote_async_pause) {
1329*4882a593Smuzhiyun adapter->flow = FLOW_NONE;
1330*4882a593Smuzhiyun } else {
1331*4882a593Smuzhiyun if (adapter->wanted_flow == FLOW_BOTH)
1332*4882a593Smuzhiyun adapter->flow = FLOW_RXONLY;
1333*4882a593Smuzhiyun else
1334*4882a593Smuzhiyun adapter->flow = FLOW_NONE;
1335*4882a593Smuzhiyun }
1336*4882a593Smuzhiyun }
1337*4882a593Smuzhiyun }
1338*4882a593Smuzhiyun
1339*4882a593Smuzhiyun /* et1310_update_macstat_host_counters - Update local copy of the statistics */
et1310_update_macstat_host_counters(struct et131x_adapter * adapter)1340*4882a593Smuzhiyun static void et1310_update_macstat_host_counters(struct et131x_adapter *adapter)
1341*4882a593Smuzhiyun {
1342*4882a593Smuzhiyun struct ce_stats *stats = &adapter->stats;
1343*4882a593Smuzhiyun struct macstat_regs __iomem *macstat =
1344*4882a593Smuzhiyun &adapter->regs->macstat;
1345*4882a593Smuzhiyun
1346*4882a593Smuzhiyun stats->tx_collisions += readl(&macstat->tx_total_collisions);
1347*4882a593Smuzhiyun stats->tx_first_collisions += readl(&macstat->tx_single_collisions);
1348*4882a593Smuzhiyun stats->tx_deferred += readl(&macstat->tx_deferred);
1349*4882a593Smuzhiyun stats->tx_excessive_collisions +=
1350*4882a593Smuzhiyun readl(&macstat->tx_multiple_collisions);
1351*4882a593Smuzhiyun stats->tx_late_collisions += readl(&macstat->tx_late_collisions);
1352*4882a593Smuzhiyun stats->tx_underflows += readl(&macstat->tx_undersize_frames);
1353*4882a593Smuzhiyun stats->tx_max_pkt_errs += readl(&macstat->tx_oversize_frames);
1354*4882a593Smuzhiyun
1355*4882a593Smuzhiyun stats->rx_align_errs += readl(&macstat->rx_align_errs);
1356*4882a593Smuzhiyun stats->rx_crc_errs += readl(&macstat->rx_code_errs);
1357*4882a593Smuzhiyun stats->rcvd_pkts_dropped += readl(&macstat->rx_drops);
1358*4882a593Smuzhiyun stats->rx_overflows += readl(&macstat->rx_oversize_packets);
1359*4882a593Smuzhiyun stats->rx_code_violations += readl(&macstat->rx_fcs_errs);
1360*4882a593Smuzhiyun stats->rx_length_errs += readl(&macstat->rx_frame_len_errs);
1361*4882a593Smuzhiyun stats->rx_other_errs += readl(&macstat->rx_fragment_packets);
1362*4882a593Smuzhiyun }
1363*4882a593Smuzhiyun
1364*4882a593Smuzhiyun /* et1310_handle_macstat_interrupt
1365*4882a593Smuzhiyun *
1366*4882a593Smuzhiyun * One of the MACSTAT counters has wrapped. Update the local copy of
1367*4882a593Smuzhiyun * the statistics held in the adapter structure, checking the "wrap"
1368*4882a593Smuzhiyun * bit for each counter.
1369*4882a593Smuzhiyun */
et1310_handle_macstat_interrupt(struct et131x_adapter * adapter)1370*4882a593Smuzhiyun static void et1310_handle_macstat_interrupt(struct et131x_adapter *adapter)
1371*4882a593Smuzhiyun {
1372*4882a593Smuzhiyun u32 carry_reg1;
1373*4882a593Smuzhiyun u32 carry_reg2;
1374*4882a593Smuzhiyun
1375*4882a593Smuzhiyun /* Read the interrupt bits from the register(s). These are Clear On
1376*4882a593Smuzhiyun * Write.
1377*4882a593Smuzhiyun */
1378*4882a593Smuzhiyun carry_reg1 = readl(&adapter->regs->macstat.carry_reg1);
1379*4882a593Smuzhiyun carry_reg2 = readl(&adapter->regs->macstat.carry_reg2);
1380*4882a593Smuzhiyun
1381*4882a593Smuzhiyun writel(carry_reg1, &adapter->regs->macstat.carry_reg1);
1382*4882a593Smuzhiyun writel(carry_reg2, &adapter->regs->macstat.carry_reg2);
1383*4882a593Smuzhiyun
1384*4882a593Smuzhiyun /* We need to do update the host copy of all the MAC_STAT counters.
1385*4882a593Smuzhiyun * For each counter, check it's overflow bit. If the overflow bit is
1386*4882a593Smuzhiyun * set, then increment the host version of the count by one complete
1387*4882a593Smuzhiyun * revolution of the counter. This routine is called when the counter
1388*4882a593Smuzhiyun * block indicates that one of the counters has wrapped.
1389*4882a593Smuzhiyun */
1390*4882a593Smuzhiyun if (carry_reg1 & (1 << 14))
1391*4882a593Smuzhiyun adapter->stats.rx_code_violations += COUNTER_WRAP_16_BIT;
1392*4882a593Smuzhiyun if (carry_reg1 & (1 << 8))
1393*4882a593Smuzhiyun adapter->stats.rx_align_errs += COUNTER_WRAP_12_BIT;
1394*4882a593Smuzhiyun if (carry_reg1 & (1 << 7))
1395*4882a593Smuzhiyun adapter->stats.rx_length_errs += COUNTER_WRAP_16_BIT;
1396*4882a593Smuzhiyun if (carry_reg1 & (1 << 2))
1397*4882a593Smuzhiyun adapter->stats.rx_other_errs += COUNTER_WRAP_16_BIT;
1398*4882a593Smuzhiyun if (carry_reg1 & (1 << 6))
1399*4882a593Smuzhiyun adapter->stats.rx_crc_errs += COUNTER_WRAP_16_BIT;
1400*4882a593Smuzhiyun if (carry_reg1 & (1 << 3))
1401*4882a593Smuzhiyun adapter->stats.rx_overflows += COUNTER_WRAP_16_BIT;
1402*4882a593Smuzhiyun if (carry_reg1 & (1 << 0))
1403*4882a593Smuzhiyun adapter->stats.rcvd_pkts_dropped += COUNTER_WRAP_16_BIT;
1404*4882a593Smuzhiyun if (carry_reg2 & (1 << 16))
1405*4882a593Smuzhiyun adapter->stats.tx_max_pkt_errs += COUNTER_WRAP_12_BIT;
1406*4882a593Smuzhiyun if (carry_reg2 & (1 << 15))
1407*4882a593Smuzhiyun adapter->stats.tx_underflows += COUNTER_WRAP_12_BIT;
1408*4882a593Smuzhiyun if (carry_reg2 & (1 << 6))
1409*4882a593Smuzhiyun adapter->stats.tx_first_collisions += COUNTER_WRAP_12_BIT;
1410*4882a593Smuzhiyun if (carry_reg2 & (1 << 8))
1411*4882a593Smuzhiyun adapter->stats.tx_deferred += COUNTER_WRAP_12_BIT;
1412*4882a593Smuzhiyun if (carry_reg2 & (1 << 5))
1413*4882a593Smuzhiyun adapter->stats.tx_excessive_collisions += COUNTER_WRAP_12_BIT;
1414*4882a593Smuzhiyun if (carry_reg2 & (1 << 4))
1415*4882a593Smuzhiyun adapter->stats.tx_late_collisions += COUNTER_WRAP_12_BIT;
1416*4882a593Smuzhiyun if (carry_reg2 & (1 << 2))
1417*4882a593Smuzhiyun adapter->stats.tx_collisions += COUNTER_WRAP_12_BIT;
1418*4882a593Smuzhiyun }
1419*4882a593Smuzhiyun
et131x_mdio_read(struct mii_bus * bus,int phy_addr,int reg)1420*4882a593Smuzhiyun static int et131x_mdio_read(struct mii_bus *bus, int phy_addr, int reg)
1421*4882a593Smuzhiyun {
1422*4882a593Smuzhiyun struct net_device *netdev = bus->priv;
1423*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
1424*4882a593Smuzhiyun u16 value;
1425*4882a593Smuzhiyun int ret;
1426*4882a593Smuzhiyun
1427*4882a593Smuzhiyun ret = et131x_phy_mii_read(adapter, phy_addr, reg, &value);
1428*4882a593Smuzhiyun
1429*4882a593Smuzhiyun if (ret < 0)
1430*4882a593Smuzhiyun return ret;
1431*4882a593Smuzhiyun
1432*4882a593Smuzhiyun return value;
1433*4882a593Smuzhiyun }
1434*4882a593Smuzhiyun
et131x_mdio_write(struct mii_bus * bus,int phy_addr,int reg,u16 value)1435*4882a593Smuzhiyun static int et131x_mdio_write(struct mii_bus *bus, int phy_addr,
1436*4882a593Smuzhiyun int reg, u16 value)
1437*4882a593Smuzhiyun {
1438*4882a593Smuzhiyun struct net_device *netdev = bus->priv;
1439*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
1440*4882a593Smuzhiyun
1441*4882a593Smuzhiyun return et131x_mii_write(adapter, phy_addr, reg, value);
1442*4882a593Smuzhiyun }
1443*4882a593Smuzhiyun
1444*4882a593Smuzhiyun /* et1310_phy_power_switch - PHY power control
1445*4882a593Smuzhiyun * @adapter: device to control
1446*4882a593Smuzhiyun * @down: true for off/false for back on
1447*4882a593Smuzhiyun *
1448*4882a593Smuzhiyun * one hundred, ten, one thousand megs
1449*4882a593Smuzhiyun * How would you like to have your LAN accessed
1450*4882a593Smuzhiyun * Can't you see that this code processed
1451*4882a593Smuzhiyun * Phy power, phy power..
1452*4882a593Smuzhiyun */
et1310_phy_power_switch(struct et131x_adapter * adapter,bool down)1453*4882a593Smuzhiyun static void et1310_phy_power_switch(struct et131x_adapter *adapter, bool down)
1454*4882a593Smuzhiyun {
1455*4882a593Smuzhiyun u16 data;
1456*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
1457*4882a593Smuzhiyun
1458*4882a593Smuzhiyun et131x_mii_read(adapter, MII_BMCR, &data);
1459*4882a593Smuzhiyun data &= ~BMCR_PDOWN;
1460*4882a593Smuzhiyun if (down)
1461*4882a593Smuzhiyun data |= BMCR_PDOWN;
1462*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr, MII_BMCR, data);
1463*4882a593Smuzhiyun }
1464*4882a593Smuzhiyun
1465*4882a593Smuzhiyun /* et131x_xcvr_init - Init the phy if we are setting it into force mode */
et131x_xcvr_init(struct et131x_adapter * adapter)1466*4882a593Smuzhiyun static void et131x_xcvr_init(struct et131x_adapter *adapter)
1467*4882a593Smuzhiyun {
1468*4882a593Smuzhiyun u16 lcr2;
1469*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
1470*4882a593Smuzhiyun
1471*4882a593Smuzhiyun /* Set the LED behavior such that LED 1 indicates speed (off =
1472*4882a593Smuzhiyun * 10Mbits, blink = 100Mbits, on = 1000Mbits) and LED 2 indicates
1473*4882a593Smuzhiyun * link and activity (on for link, blink off for activity).
1474*4882a593Smuzhiyun *
1475*4882a593Smuzhiyun * NOTE: Some customizations have been added here for specific
1476*4882a593Smuzhiyun * vendors; The LED behavior is now determined by vendor data in the
1477*4882a593Smuzhiyun * EEPROM. However, the above description is the default.
1478*4882a593Smuzhiyun */
1479*4882a593Smuzhiyun if ((adapter->eeprom_data[1] & 0x4) == 0) {
1480*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_LED_2, &lcr2);
1481*4882a593Smuzhiyun
1482*4882a593Smuzhiyun lcr2 &= (ET_LED2_LED_100TX | ET_LED2_LED_1000T);
1483*4882a593Smuzhiyun lcr2 |= (LED_VAL_LINKON_ACTIVE << LED_LINK_SHIFT);
1484*4882a593Smuzhiyun
1485*4882a593Smuzhiyun if ((adapter->eeprom_data[1] & 0x8) == 0)
1486*4882a593Smuzhiyun lcr2 |= (LED_VAL_1000BT_100BTX << LED_TXRX_SHIFT);
1487*4882a593Smuzhiyun else
1488*4882a593Smuzhiyun lcr2 |= (LED_VAL_LINKON << LED_TXRX_SHIFT);
1489*4882a593Smuzhiyun
1490*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr, PHY_LED_2, lcr2);
1491*4882a593Smuzhiyun }
1492*4882a593Smuzhiyun }
1493*4882a593Smuzhiyun
1494*4882a593Smuzhiyun /* et131x_configure_global_regs - configure JAGCore global regs */
et131x_configure_global_regs(struct et131x_adapter * adapter)1495*4882a593Smuzhiyun static void et131x_configure_global_regs(struct et131x_adapter *adapter)
1496*4882a593Smuzhiyun {
1497*4882a593Smuzhiyun struct global_regs __iomem *regs = &adapter->regs->global;
1498*4882a593Smuzhiyun
1499*4882a593Smuzhiyun writel(0, ®s->rxq_start_addr);
1500*4882a593Smuzhiyun writel(INTERNAL_MEM_SIZE - 1, ®s->txq_end_addr);
1501*4882a593Smuzhiyun
1502*4882a593Smuzhiyun if (adapter->registry_jumbo_packet < 2048) {
1503*4882a593Smuzhiyun /* Tx / RxDMA and Tx/Rx MAC interfaces have a 1k word
1504*4882a593Smuzhiyun * block of RAM that the driver can split between Tx
1505*4882a593Smuzhiyun * and Rx as it desires. Our default is to split it
1506*4882a593Smuzhiyun * 50/50:
1507*4882a593Smuzhiyun */
1508*4882a593Smuzhiyun writel(PARM_RX_MEM_END_DEF, ®s->rxq_end_addr);
1509*4882a593Smuzhiyun writel(PARM_RX_MEM_END_DEF + 1, ®s->txq_start_addr);
1510*4882a593Smuzhiyun } else if (adapter->registry_jumbo_packet < 8192) {
1511*4882a593Smuzhiyun /* For jumbo packets > 2k but < 8k, split 50-50. */
1512*4882a593Smuzhiyun writel(INTERNAL_MEM_RX_OFFSET, ®s->rxq_end_addr);
1513*4882a593Smuzhiyun writel(INTERNAL_MEM_RX_OFFSET + 1, ®s->txq_start_addr);
1514*4882a593Smuzhiyun } else {
1515*4882a593Smuzhiyun /* 9216 is the only packet size greater than 8k that
1516*4882a593Smuzhiyun * is available. The Tx buffer has to be big enough
1517*4882a593Smuzhiyun * for one whole packet on the Tx side. We'll make
1518*4882a593Smuzhiyun * the Tx 9408, and give the rest to Rx
1519*4882a593Smuzhiyun */
1520*4882a593Smuzhiyun writel(0x01b3, ®s->rxq_end_addr);
1521*4882a593Smuzhiyun writel(0x01b4, ®s->txq_start_addr);
1522*4882a593Smuzhiyun }
1523*4882a593Smuzhiyun
1524*4882a593Smuzhiyun /* Initialize the loopback register. Disable all loopbacks. */
1525*4882a593Smuzhiyun writel(0, ®s->loopback);
1526*4882a593Smuzhiyun
1527*4882a593Smuzhiyun writel(0, ®s->msi_config);
1528*4882a593Smuzhiyun
1529*4882a593Smuzhiyun /* By default, disable the watchdog timer. It will be enabled when
1530*4882a593Smuzhiyun * a packet is queued.
1531*4882a593Smuzhiyun */
1532*4882a593Smuzhiyun writel(0, ®s->watchdog_timer);
1533*4882a593Smuzhiyun }
1534*4882a593Smuzhiyun
1535*4882a593Smuzhiyun /* et131x_config_rx_dma_regs - Start of Rx_DMA init sequence */
et131x_config_rx_dma_regs(struct et131x_adapter * adapter)1536*4882a593Smuzhiyun static void et131x_config_rx_dma_regs(struct et131x_adapter *adapter)
1537*4882a593Smuzhiyun {
1538*4882a593Smuzhiyun struct rxdma_regs __iomem *rx_dma = &adapter->regs->rxdma;
1539*4882a593Smuzhiyun struct rx_ring *rx_local = &adapter->rx_ring;
1540*4882a593Smuzhiyun struct fbr_desc *fbr_entry;
1541*4882a593Smuzhiyun u32 entry;
1542*4882a593Smuzhiyun u32 psr_num_des;
1543*4882a593Smuzhiyun unsigned long flags;
1544*4882a593Smuzhiyun u8 id;
1545*4882a593Smuzhiyun
1546*4882a593Smuzhiyun et131x_rx_dma_disable(adapter);
1547*4882a593Smuzhiyun
1548*4882a593Smuzhiyun /* Load the completion writeback physical address */
1549*4882a593Smuzhiyun writel(upper_32_bits(rx_local->rx_status_bus), &rx_dma->dma_wb_base_hi);
1550*4882a593Smuzhiyun writel(lower_32_bits(rx_local->rx_status_bus), &rx_dma->dma_wb_base_lo);
1551*4882a593Smuzhiyun
1552*4882a593Smuzhiyun memset(rx_local->rx_status_block, 0, sizeof(struct rx_status_block));
1553*4882a593Smuzhiyun
1554*4882a593Smuzhiyun /* Set the address and parameters of the packet status ring */
1555*4882a593Smuzhiyun writel(upper_32_bits(rx_local->ps_ring_physaddr), &rx_dma->psr_base_hi);
1556*4882a593Smuzhiyun writel(lower_32_bits(rx_local->ps_ring_physaddr), &rx_dma->psr_base_lo);
1557*4882a593Smuzhiyun writel(rx_local->psr_entries - 1, &rx_dma->psr_num_des);
1558*4882a593Smuzhiyun writel(0, &rx_dma->psr_full_offset);
1559*4882a593Smuzhiyun
1560*4882a593Smuzhiyun psr_num_des = readl(&rx_dma->psr_num_des) & ET_RXDMA_PSR_NUM_DES_MASK;
1561*4882a593Smuzhiyun writel((psr_num_des * LO_MARK_PERCENT_FOR_PSR) / 100,
1562*4882a593Smuzhiyun &rx_dma->psr_min_des);
1563*4882a593Smuzhiyun
1564*4882a593Smuzhiyun spin_lock_irqsave(&adapter->rcv_lock, flags);
1565*4882a593Smuzhiyun
1566*4882a593Smuzhiyun /* These local variables track the PSR in the adapter structure */
1567*4882a593Smuzhiyun rx_local->local_psr_full = 0;
1568*4882a593Smuzhiyun
1569*4882a593Smuzhiyun for (id = 0; id < NUM_FBRS; id++) {
1570*4882a593Smuzhiyun u32 __iomem *num_des;
1571*4882a593Smuzhiyun u32 __iomem *full_offset;
1572*4882a593Smuzhiyun u32 __iomem *min_des;
1573*4882a593Smuzhiyun u32 __iomem *base_hi;
1574*4882a593Smuzhiyun u32 __iomem *base_lo;
1575*4882a593Smuzhiyun struct fbr_lookup *fbr = rx_local->fbr[id];
1576*4882a593Smuzhiyun
1577*4882a593Smuzhiyun if (id == 0) {
1578*4882a593Smuzhiyun num_des = &rx_dma->fbr0_num_des;
1579*4882a593Smuzhiyun full_offset = &rx_dma->fbr0_full_offset;
1580*4882a593Smuzhiyun min_des = &rx_dma->fbr0_min_des;
1581*4882a593Smuzhiyun base_hi = &rx_dma->fbr0_base_hi;
1582*4882a593Smuzhiyun base_lo = &rx_dma->fbr0_base_lo;
1583*4882a593Smuzhiyun } else {
1584*4882a593Smuzhiyun num_des = &rx_dma->fbr1_num_des;
1585*4882a593Smuzhiyun full_offset = &rx_dma->fbr1_full_offset;
1586*4882a593Smuzhiyun min_des = &rx_dma->fbr1_min_des;
1587*4882a593Smuzhiyun base_hi = &rx_dma->fbr1_base_hi;
1588*4882a593Smuzhiyun base_lo = &rx_dma->fbr1_base_lo;
1589*4882a593Smuzhiyun }
1590*4882a593Smuzhiyun
1591*4882a593Smuzhiyun /* Now's the best time to initialize FBR contents */
1592*4882a593Smuzhiyun fbr_entry = fbr->ring_virtaddr;
1593*4882a593Smuzhiyun for (entry = 0; entry < fbr->num_entries; entry++) {
1594*4882a593Smuzhiyun fbr_entry->addr_hi = fbr->bus_high[entry];
1595*4882a593Smuzhiyun fbr_entry->addr_lo = fbr->bus_low[entry];
1596*4882a593Smuzhiyun fbr_entry->word2 = entry;
1597*4882a593Smuzhiyun fbr_entry++;
1598*4882a593Smuzhiyun }
1599*4882a593Smuzhiyun
1600*4882a593Smuzhiyun /* Set the address and parameters of Free buffer ring 1 and 0 */
1601*4882a593Smuzhiyun writel(upper_32_bits(fbr->ring_physaddr), base_hi);
1602*4882a593Smuzhiyun writel(lower_32_bits(fbr->ring_physaddr), base_lo);
1603*4882a593Smuzhiyun writel(fbr->num_entries - 1, num_des);
1604*4882a593Smuzhiyun writel(ET_DMA10_WRAP, full_offset);
1605*4882a593Smuzhiyun
1606*4882a593Smuzhiyun /* This variable tracks the free buffer ring 1 full position,
1607*4882a593Smuzhiyun * so it has to match the above.
1608*4882a593Smuzhiyun */
1609*4882a593Smuzhiyun fbr->local_full = ET_DMA10_WRAP;
1610*4882a593Smuzhiyun writel(((fbr->num_entries * LO_MARK_PERCENT_FOR_RX) / 100) - 1,
1611*4882a593Smuzhiyun min_des);
1612*4882a593Smuzhiyun }
1613*4882a593Smuzhiyun
1614*4882a593Smuzhiyun /* Program the number of packets we will receive before generating an
1615*4882a593Smuzhiyun * interrupt.
1616*4882a593Smuzhiyun * For version B silicon, this value gets updated once autoneg is
1617*4882a593Smuzhiyun *complete.
1618*4882a593Smuzhiyun */
1619*4882a593Smuzhiyun writel(PARM_RX_NUM_BUFS_DEF, &rx_dma->num_pkt_done);
1620*4882a593Smuzhiyun
1621*4882a593Smuzhiyun /* The "time_done" is not working correctly to coalesce interrupts
1622*4882a593Smuzhiyun * after a given time period, but rather is giving us an interrupt
1623*4882a593Smuzhiyun * regardless of whether we have received packets.
1624*4882a593Smuzhiyun * This value gets updated once autoneg is complete.
1625*4882a593Smuzhiyun */
1626*4882a593Smuzhiyun writel(PARM_RX_TIME_INT_DEF, &rx_dma->max_pkt_time);
1627*4882a593Smuzhiyun
1628*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->rcv_lock, flags);
1629*4882a593Smuzhiyun }
1630*4882a593Smuzhiyun
1631*4882a593Smuzhiyun /* et131x_config_tx_dma_regs - Set up the tx dma section of the JAGCore.
1632*4882a593Smuzhiyun *
1633*4882a593Smuzhiyun * Configure the transmit engine with the ring buffers we have created
1634*4882a593Smuzhiyun * and prepare it for use.
1635*4882a593Smuzhiyun */
et131x_config_tx_dma_regs(struct et131x_adapter * adapter)1636*4882a593Smuzhiyun static void et131x_config_tx_dma_regs(struct et131x_adapter *adapter)
1637*4882a593Smuzhiyun {
1638*4882a593Smuzhiyun struct txdma_regs __iomem *txdma = &adapter->regs->txdma;
1639*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
1640*4882a593Smuzhiyun
1641*4882a593Smuzhiyun /* Load the hardware with the start of the transmit descriptor ring. */
1642*4882a593Smuzhiyun writel(upper_32_bits(tx_ring->tx_desc_ring_pa), &txdma->pr_base_hi);
1643*4882a593Smuzhiyun writel(lower_32_bits(tx_ring->tx_desc_ring_pa), &txdma->pr_base_lo);
1644*4882a593Smuzhiyun
1645*4882a593Smuzhiyun /* Initialise the transmit DMA engine */
1646*4882a593Smuzhiyun writel(NUM_DESC_PER_RING_TX - 1, &txdma->pr_num_des);
1647*4882a593Smuzhiyun
1648*4882a593Smuzhiyun /* Load the completion writeback physical address */
1649*4882a593Smuzhiyun writel(upper_32_bits(tx_ring->tx_status_pa), &txdma->dma_wb_base_hi);
1650*4882a593Smuzhiyun writel(lower_32_bits(tx_ring->tx_status_pa), &txdma->dma_wb_base_lo);
1651*4882a593Smuzhiyun
1652*4882a593Smuzhiyun *tx_ring->tx_status = 0;
1653*4882a593Smuzhiyun
1654*4882a593Smuzhiyun writel(0, &txdma->service_request);
1655*4882a593Smuzhiyun tx_ring->send_idx = 0;
1656*4882a593Smuzhiyun }
1657*4882a593Smuzhiyun
1658*4882a593Smuzhiyun /* et131x_adapter_setup - Set the adapter up as per cassini+ documentation */
et131x_adapter_setup(struct et131x_adapter * adapter)1659*4882a593Smuzhiyun static void et131x_adapter_setup(struct et131x_adapter *adapter)
1660*4882a593Smuzhiyun {
1661*4882a593Smuzhiyun et131x_configure_global_regs(adapter);
1662*4882a593Smuzhiyun et1310_config_mac_regs1(adapter);
1663*4882a593Smuzhiyun
1664*4882a593Smuzhiyun /* Configure the MMC registers */
1665*4882a593Smuzhiyun /* All we need to do is initialize the Memory Control Register */
1666*4882a593Smuzhiyun writel(ET_MMC_ENABLE, &adapter->regs->mmc.mmc_ctrl);
1667*4882a593Smuzhiyun
1668*4882a593Smuzhiyun et1310_config_rxmac_regs(adapter);
1669*4882a593Smuzhiyun et1310_config_txmac_regs(adapter);
1670*4882a593Smuzhiyun
1671*4882a593Smuzhiyun et131x_config_rx_dma_regs(adapter);
1672*4882a593Smuzhiyun et131x_config_tx_dma_regs(adapter);
1673*4882a593Smuzhiyun
1674*4882a593Smuzhiyun et1310_config_macstat_regs(adapter);
1675*4882a593Smuzhiyun
1676*4882a593Smuzhiyun et1310_phy_power_switch(adapter, 0);
1677*4882a593Smuzhiyun et131x_xcvr_init(adapter);
1678*4882a593Smuzhiyun }
1679*4882a593Smuzhiyun
1680*4882a593Smuzhiyun /* et131x_soft_reset - Issue soft reset to the hardware, complete for ET1310 */
et131x_soft_reset(struct et131x_adapter * adapter)1681*4882a593Smuzhiyun static void et131x_soft_reset(struct et131x_adapter *adapter)
1682*4882a593Smuzhiyun {
1683*4882a593Smuzhiyun u32 reg;
1684*4882a593Smuzhiyun
1685*4882a593Smuzhiyun /* Disable MAC Core */
1686*4882a593Smuzhiyun reg = ET_MAC_CFG1_SOFT_RESET | ET_MAC_CFG1_SIM_RESET |
1687*4882a593Smuzhiyun ET_MAC_CFG1_RESET_RXMC | ET_MAC_CFG1_RESET_TXMC |
1688*4882a593Smuzhiyun ET_MAC_CFG1_RESET_RXFUNC | ET_MAC_CFG1_RESET_TXFUNC;
1689*4882a593Smuzhiyun writel(reg, &adapter->regs->mac.cfg1);
1690*4882a593Smuzhiyun
1691*4882a593Smuzhiyun reg = ET_RESET_ALL;
1692*4882a593Smuzhiyun writel(reg, &adapter->regs->global.sw_reset);
1693*4882a593Smuzhiyun
1694*4882a593Smuzhiyun reg = ET_MAC_CFG1_RESET_RXMC | ET_MAC_CFG1_RESET_TXMC |
1695*4882a593Smuzhiyun ET_MAC_CFG1_RESET_RXFUNC | ET_MAC_CFG1_RESET_TXFUNC;
1696*4882a593Smuzhiyun writel(reg, &adapter->regs->mac.cfg1);
1697*4882a593Smuzhiyun writel(0, &adapter->regs->mac.cfg1);
1698*4882a593Smuzhiyun }
1699*4882a593Smuzhiyun
et131x_enable_interrupts(struct et131x_adapter * adapter)1700*4882a593Smuzhiyun static void et131x_enable_interrupts(struct et131x_adapter *adapter)
1701*4882a593Smuzhiyun {
1702*4882a593Smuzhiyun u32 mask;
1703*4882a593Smuzhiyun
1704*4882a593Smuzhiyun if (adapter->flow == FLOW_TXONLY || adapter->flow == FLOW_BOTH)
1705*4882a593Smuzhiyun mask = INT_MASK_ENABLE;
1706*4882a593Smuzhiyun else
1707*4882a593Smuzhiyun mask = INT_MASK_ENABLE_NO_FLOW;
1708*4882a593Smuzhiyun
1709*4882a593Smuzhiyun writel(mask, &adapter->regs->global.int_mask);
1710*4882a593Smuzhiyun }
1711*4882a593Smuzhiyun
et131x_disable_interrupts(struct et131x_adapter * adapter)1712*4882a593Smuzhiyun static void et131x_disable_interrupts(struct et131x_adapter *adapter)
1713*4882a593Smuzhiyun {
1714*4882a593Smuzhiyun writel(INT_MASK_DISABLE, &adapter->regs->global.int_mask);
1715*4882a593Smuzhiyun }
1716*4882a593Smuzhiyun
et131x_tx_dma_disable(struct et131x_adapter * adapter)1717*4882a593Smuzhiyun static void et131x_tx_dma_disable(struct et131x_adapter *adapter)
1718*4882a593Smuzhiyun {
1719*4882a593Smuzhiyun /* Setup the transmit dma configuration register */
1720*4882a593Smuzhiyun writel(ET_TXDMA_CSR_HALT | ET_TXDMA_SNGL_EPKT,
1721*4882a593Smuzhiyun &adapter->regs->txdma.csr);
1722*4882a593Smuzhiyun }
1723*4882a593Smuzhiyun
et131x_enable_txrx(struct net_device * netdev)1724*4882a593Smuzhiyun static void et131x_enable_txrx(struct net_device *netdev)
1725*4882a593Smuzhiyun {
1726*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
1727*4882a593Smuzhiyun
1728*4882a593Smuzhiyun et131x_rx_dma_enable(adapter);
1729*4882a593Smuzhiyun et131x_tx_dma_enable(adapter);
1730*4882a593Smuzhiyun
1731*4882a593Smuzhiyun if (adapter->flags & FMP_ADAPTER_INTERRUPT_IN_USE)
1732*4882a593Smuzhiyun et131x_enable_interrupts(adapter);
1733*4882a593Smuzhiyun
1734*4882a593Smuzhiyun netif_start_queue(netdev);
1735*4882a593Smuzhiyun }
1736*4882a593Smuzhiyun
et131x_disable_txrx(struct net_device * netdev)1737*4882a593Smuzhiyun static void et131x_disable_txrx(struct net_device *netdev)
1738*4882a593Smuzhiyun {
1739*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
1740*4882a593Smuzhiyun
1741*4882a593Smuzhiyun netif_stop_queue(netdev);
1742*4882a593Smuzhiyun
1743*4882a593Smuzhiyun et131x_rx_dma_disable(adapter);
1744*4882a593Smuzhiyun et131x_tx_dma_disable(adapter);
1745*4882a593Smuzhiyun
1746*4882a593Smuzhiyun et131x_disable_interrupts(adapter);
1747*4882a593Smuzhiyun }
1748*4882a593Smuzhiyun
et131x_init_send(struct et131x_adapter * adapter)1749*4882a593Smuzhiyun static void et131x_init_send(struct et131x_adapter *adapter)
1750*4882a593Smuzhiyun {
1751*4882a593Smuzhiyun int i;
1752*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
1753*4882a593Smuzhiyun struct tcb *tcb = tx_ring->tcb_ring;
1754*4882a593Smuzhiyun
1755*4882a593Smuzhiyun tx_ring->tcb_qhead = tcb;
1756*4882a593Smuzhiyun
1757*4882a593Smuzhiyun memset(tcb, 0, sizeof(struct tcb) * NUM_TCB);
1758*4882a593Smuzhiyun
1759*4882a593Smuzhiyun for (i = 0; i < NUM_TCB; i++) {
1760*4882a593Smuzhiyun tcb->next = tcb + 1;
1761*4882a593Smuzhiyun tcb++;
1762*4882a593Smuzhiyun }
1763*4882a593Smuzhiyun
1764*4882a593Smuzhiyun tcb--;
1765*4882a593Smuzhiyun tx_ring->tcb_qtail = tcb;
1766*4882a593Smuzhiyun tcb->next = NULL;
1767*4882a593Smuzhiyun /* Curr send queue should now be empty */
1768*4882a593Smuzhiyun tx_ring->send_head = NULL;
1769*4882a593Smuzhiyun tx_ring->send_tail = NULL;
1770*4882a593Smuzhiyun }
1771*4882a593Smuzhiyun
1772*4882a593Smuzhiyun /* et1310_enable_phy_coma
1773*4882a593Smuzhiyun *
1774*4882a593Smuzhiyun * driver receive an phy status change interrupt while in D0 and check that
1775*4882a593Smuzhiyun * phy_status is down.
1776*4882a593Smuzhiyun *
1777*4882a593Smuzhiyun * -- gate off JAGCore;
1778*4882a593Smuzhiyun * -- set gigE PHY in Coma mode
1779*4882a593Smuzhiyun * -- wake on phy_interrupt; Perform software reset JAGCore,
1780*4882a593Smuzhiyun * re-initialize jagcore and gigE PHY
1781*4882a593Smuzhiyun */
et1310_enable_phy_coma(struct et131x_adapter * adapter)1782*4882a593Smuzhiyun static void et1310_enable_phy_coma(struct et131x_adapter *adapter)
1783*4882a593Smuzhiyun {
1784*4882a593Smuzhiyun u32 pmcsr = readl(&adapter->regs->global.pm_csr);
1785*4882a593Smuzhiyun
1786*4882a593Smuzhiyun /* Stop sending packets. */
1787*4882a593Smuzhiyun adapter->flags |= FMP_ADAPTER_LOWER_POWER;
1788*4882a593Smuzhiyun
1789*4882a593Smuzhiyun /* Wait for outstanding Receive packets */
1790*4882a593Smuzhiyun et131x_disable_txrx(adapter->netdev);
1791*4882a593Smuzhiyun
1792*4882a593Smuzhiyun /* Gate off JAGCore 3 clock domains */
1793*4882a593Smuzhiyun pmcsr &= ~ET_PMCSR_INIT;
1794*4882a593Smuzhiyun writel(pmcsr, &adapter->regs->global.pm_csr);
1795*4882a593Smuzhiyun
1796*4882a593Smuzhiyun /* Program gigE PHY in to Coma mode */
1797*4882a593Smuzhiyun pmcsr |= ET_PM_PHY_SW_COMA;
1798*4882a593Smuzhiyun writel(pmcsr, &adapter->regs->global.pm_csr);
1799*4882a593Smuzhiyun }
1800*4882a593Smuzhiyun
et1310_disable_phy_coma(struct et131x_adapter * adapter)1801*4882a593Smuzhiyun static void et1310_disable_phy_coma(struct et131x_adapter *adapter)
1802*4882a593Smuzhiyun {
1803*4882a593Smuzhiyun u32 pmcsr;
1804*4882a593Smuzhiyun
1805*4882a593Smuzhiyun pmcsr = readl(&adapter->regs->global.pm_csr);
1806*4882a593Smuzhiyun
1807*4882a593Smuzhiyun /* Disable phy_sw_coma register and re-enable JAGCore clocks */
1808*4882a593Smuzhiyun pmcsr |= ET_PMCSR_INIT;
1809*4882a593Smuzhiyun pmcsr &= ~ET_PM_PHY_SW_COMA;
1810*4882a593Smuzhiyun writel(pmcsr, &adapter->regs->global.pm_csr);
1811*4882a593Smuzhiyun
1812*4882a593Smuzhiyun /* Restore the GbE PHY speed and duplex modes;
1813*4882a593Smuzhiyun * Reset JAGCore; re-configure and initialize JAGCore and gigE PHY
1814*4882a593Smuzhiyun */
1815*4882a593Smuzhiyun
1816*4882a593Smuzhiyun /* Re-initialize the send structures */
1817*4882a593Smuzhiyun et131x_init_send(adapter);
1818*4882a593Smuzhiyun
1819*4882a593Smuzhiyun /* Bring the device back to the state it was during init prior to
1820*4882a593Smuzhiyun * autonegotiation being complete. This way, when we get the auto-neg
1821*4882a593Smuzhiyun * complete interrupt, we can complete init by calling ConfigMacREGS2.
1822*4882a593Smuzhiyun */
1823*4882a593Smuzhiyun et131x_soft_reset(adapter);
1824*4882a593Smuzhiyun
1825*4882a593Smuzhiyun et131x_adapter_setup(adapter);
1826*4882a593Smuzhiyun
1827*4882a593Smuzhiyun /* Allow Tx to restart */
1828*4882a593Smuzhiyun adapter->flags &= ~FMP_ADAPTER_LOWER_POWER;
1829*4882a593Smuzhiyun
1830*4882a593Smuzhiyun et131x_enable_txrx(adapter->netdev);
1831*4882a593Smuzhiyun }
1832*4882a593Smuzhiyun
bump_free_buff_ring(u32 * free_buff_ring,u32 limit)1833*4882a593Smuzhiyun static inline u32 bump_free_buff_ring(u32 *free_buff_ring, u32 limit)
1834*4882a593Smuzhiyun {
1835*4882a593Smuzhiyun u32 tmp_free_buff_ring = *free_buff_ring;
1836*4882a593Smuzhiyun
1837*4882a593Smuzhiyun tmp_free_buff_ring++;
1838*4882a593Smuzhiyun /* This works for all cases where limit < 1024. The 1023 case
1839*4882a593Smuzhiyun * works because 1023++ is 1024 which means the if condition is not
1840*4882a593Smuzhiyun * taken but the carry of the bit into the wrap bit toggles the wrap
1841*4882a593Smuzhiyun * value correctly
1842*4882a593Smuzhiyun */
1843*4882a593Smuzhiyun if ((tmp_free_buff_ring & ET_DMA10_MASK) > limit) {
1844*4882a593Smuzhiyun tmp_free_buff_ring &= ~ET_DMA10_MASK;
1845*4882a593Smuzhiyun tmp_free_buff_ring ^= ET_DMA10_WRAP;
1846*4882a593Smuzhiyun }
1847*4882a593Smuzhiyun /* For the 1023 case */
1848*4882a593Smuzhiyun tmp_free_buff_ring &= (ET_DMA10_MASK | ET_DMA10_WRAP);
1849*4882a593Smuzhiyun *free_buff_ring = tmp_free_buff_ring;
1850*4882a593Smuzhiyun return tmp_free_buff_ring;
1851*4882a593Smuzhiyun }
1852*4882a593Smuzhiyun
1853*4882a593Smuzhiyun /* et131x_rx_dma_memory_alloc
1854*4882a593Smuzhiyun *
1855*4882a593Smuzhiyun * Allocates Free buffer ring 1 for sure, free buffer ring 0 if required,
1856*4882a593Smuzhiyun * and the Packet Status Ring.
1857*4882a593Smuzhiyun */
et131x_rx_dma_memory_alloc(struct et131x_adapter * adapter)1858*4882a593Smuzhiyun static int et131x_rx_dma_memory_alloc(struct et131x_adapter *adapter)
1859*4882a593Smuzhiyun {
1860*4882a593Smuzhiyun u8 id;
1861*4882a593Smuzhiyun u32 i, j;
1862*4882a593Smuzhiyun u32 bufsize;
1863*4882a593Smuzhiyun u32 psr_size;
1864*4882a593Smuzhiyun u32 fbr_chunksize;
1865*4882a593Smuzhiyun struct rx_ring *rx_ring = &adapter->rx_ring;
1866*4882a593Smuzhiyun struct fbr_lookup *fbr;
1867*4882a593Smuzhiyun
1868*4882a593Smuzhiyun /* Alloc memory for the lookup table */
1869*4882a593Smuzhiyun rx_ring->fbr[0] = kzalloc(sizeof(*fbr), GFP_KERNEL);
1870*4882a593Smuzhiyun if (rx_ring->fbr[0] == NULL)
1871*4882a593Smuzhiyun return -ENOMEM;
1872*4882a593Smuzhiyun rx_ring->fbr[1] = kzalloc(sizeof(*fbr), GFP_KERNEL);
1873*4882a593Smuzhiyun if (rx_ring->fbr[1] == NULL)
1874*4882a593Smuzhiyun return -ENOMEM;
1875*4882a593Smuzhiyun
1876*4882a593Smuzhiyun /* The first thing we will do is configure the sizes of the buffer
1877*4882a593Smuzhiyun * rings. These will change based on jumbo packet support. Larger
1878*4882a593Smuzhiyun * jumbo packets increases the size of each entry in FBR0, and the
1879*4882a593Smuzhiyun * number of entries in FBR0, while at the same time decreasing the
1880*4882a593Smuzhiyun * number of entries in FBR1.
1881*4882a593Smuzhiyun *
1882*4882a593Smuzhiyun * FBR1 holds "large" frames, FBR0 holds "small" frames. If FBR1
1883*4882a593Smuzhiyun * entries are huge in order to accommodate a "jumbo" frame, then it
1884*4882a593Smuzhiyun * will have less entries. Conversely, FBR1 will now be relied upon
1885*4882a593Smuzhiyun * to carry more "normal" frames, thus it's entry size also increases
1886*4882a593Smuzhiyun * and the number of entries goes up too (since it now carries
1887*4882a593Smuzhiyun * "small" + "regular" packets.
1888*4882a593Smuzhiyun *
1889*4882a593Smuzhiyun * In this scheme, we try to maintain 512 entries between the two
1890*4882a593Smuzhiyun * rings. Also, FBR1 remains a constant size - when it's size doubles
1891*4882a593Smuzhiyun * the number of entries halves. FBR0 increases in size, however.
1892*4882a593Smuzhiyun */
1893*4882a593Smuzhiyun if (adapter->registry_jumbo_packet < 2048) {
1894*4882a593Smuzhiyun rx_ring->fbr[0]->buffsize = 256;
1895*4882a593Smuzhiyun rx_ring->fbr[0]->num_entries = 512;
1896*4882a593Smuzhiyun rx_ring->fbr[1]->buffsize = 2048;
1897*4882a593Smuzhiyun rx_ring->fbr[1]->num_entries = 512;
1898*4882a593Smuzhiyun } else if (adapter->registry_jumbo_packet < 4096) {
1899*4882a593Smuzhiyun rx_ring->fbr[0]->buffsize = 512;
1900*4882a593Smuzhiyun rx_ring->fbr[0]->num_entries = 1024;
1901*4882a593Smuzhiyun rx_ring->fbr[1]->buffsize = 4096;
1902*4882a593Smuzhiyun rx_ring->fbr[1]->num_entries = 512;
1903*4882a593Smuzhiyun } else {
1904*4882a593Smuzhiyun rx_ring->fbr[0]->buffsize = 1024;
1905*4882a593Smuzhiyun rx_ring->fbr[0]->num_entries = 768;
1906*4882a593Smuzhiyun rx_ring->fbr[1]->buffsize = 16384;
1907*4882a593Smuzhiyun rx_ring->fbr[1]->num_entries = 128;
1908*4882a593Smuzhiyun }
1909*4882a593Smuzhiyun
1910*4882a593Smuzhiyun rx_ring->psr_entries = rx_ring->fbr[0]->num_entries +
1911*4882a593Smuzhiyun rx_ring->fbr[1]->num_entries;
1912*4882a593Smuzhiyun
1913*4882a593Smuzhiyun for (id = 0; id < NUM_FBRS; id++) {
1914*4882a593Smuzhiyun fbr = rx_ring->fbr[id];
1915*4882a593Smuzhiyun /* Allocate an area of memory for Free Buffer Ring */
1916*4882a593Smuzhiyun bufsize = sizeof(struct fbr_desc) * fbr->num_entries;
1917*4882a593Smuzhiyun fbr->ring_virtaddr = dma_alloc_coherent(&adapter->pdev->dev,
1918*4882a593Smuzhiyun bufsize,
1919*4882a593Smuzhiyun &fbr->ring_physaddr,
1920*4882a593Smuzhiyun GFP_KERNEL);
1921*4882a593Smuzhiyun if (!fbr->ring_virtaddr) {
1922*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
1923*4882a593Smuzhiyun "Cannot alloc memory for Free Buffer Ring %d\n",
1924*4882a593Smuzhiyun id);
1925*4882a593Smuzhiyun return -ENOMEM;
1926*4882a593Smuzhiyun }
1927*4882a593Smuzhiyun }
1928*4882a593Smuzhiyun
1929*4882a593Smuzhiyun for (id = 0; id < NUM_FBRS; id++) {
1930*4882a593Smuzhiyun fbr = rx_ring->fbr[id];
1931*4882a593Smuzhiyun fbr_chunksize = (FBR_CHUNKS * fbr->buffsize);
1932*4882a593Smuzhiyun
1933*4882a593Smuzhiyun for (i = 0; i < fbr->num_entries / FBR_CHUNKS; i++) {
1934*4882a593Smuzhiyun dma_addr_t fbr_physaddr;
1935*4882a593Smuzhiyun
1936*4882a593Smuzhiyun fbr->mem_virtaddrs[i] = dma_alloc_coherent(
1937*4882a593Smuzhiyun &adapter->pdev->dev, fbr_chunksize,
1938*4882a593Smuzhiyun &fbr->mem_physaddrs[i],
1939*4882a593Smuzhiyun GFP_KERNEL);
1940*4882a593Smuzhiyun
1941*4882a593Smuzhiyun if (!fbr->mem_virtaddrs[i]) {
1942*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
1943*4882a593Smuzhiyun "Could not alloc memory\n");
1944*4882a593Smuzhiyun return -ENOMEM;
1945*4882a593Smuzhiyun }
1946*4882a593Smuzhiyun
1947*4882a593Smuzhiyun /* See NOTE in "Save Physical Address" comment above */
1948*4882a593Smuzhiyun fbr_physaddr = fbr->mem_physaddrs[i];
1949*4882a593Smuzhiyun
1950*4882a593Smuzhiyun for (j = 0; j < FBR_CHUNKS; j++) {
1951*4882a593Smuzhiyun u32 k = (i * FBR_CHUNKS) + j;
1952*4882a593Smuzhiyun
1953*4882a593Smuzhiyun /* Save the Virtual address of this index for
1954*4882a593Smuzhiyun * quick access later
1955*4882a593Smuzhiyun */
1956*4882a593Smuzhiyun fbr->virt[k] = (u8 *)fbr->mem_virtaddrs[i] +
1957*4882a593Smuzhiyun (j * fbr->buffsize);
1958*4882a593Smuzhiyun
1959*4882a593Smuzhiyun /* now store the physical address in the
1960*4882a593Smuzhiyun * descriptor so the device can access it
1961*4882a593Smuzhiyun */
1962*4882a593Smuzhiyun fbr->bus_high[k] = upper_32_bits(fbr_physaddr);
1963*4882a593Smuzhiyun fbr->bus_low[k] = lower_32_bits(fbr_physaddr);
1964*4882a593Smuzhiyun fbr_physaddr += fbr->buffsize;
1965*4882a593Smuzhiyun }
1966*4882a593Smuzhiyun }
1967*4882a593Smuzhiyun }
1968*4882a593Smuzhiyun
1969*4882a593Smuzhiyun /* Allocate an area of memory for FIFO of Packet Status ring entries */
1970*4882a593Smuzhiyun psr_size = sizeof(struct pkt_stat_desc) * rx_ring->psr_entries;
1971*4882a593Smuzhiyun
1972*4882a593Smuzhiyun rx_ring->ps_ring_virtaddr = dma_alloc_coherent(&adapter->pdev->dev,
1973*4882a593Smuzhiyun psr_size,
1974*4882a593Smuzhiyun &rx_ring->ps_ring_physaddr,
1975*4882a593Smuzhiyun GFP_KERNEL);
1976*4882a593Smuzhiyun
1977*4882a593Smuzhiyun if (!rx_ring->ps_ring_virtaddr) {
1978*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
1979*4882a593Smuzhiyun "Cannot alloc memory for Packet Status Ring\n");
1980*4882a593Smuzhiyun return -ENOMEM;
1981*4882a593Smuzhiyun }
1982*4882a593Smuzhiyun
1983*4882a593Smuzhiyun /* Allocate an area of memory for writeback of status information */
1984*4882a593Smuzhiyun rx_ring->rx_status_block = dma_alloc_coherent(&adapter->pdev->dev,
1985*4882a593Smuzhiyun sizeof(struct rx_status_block),
1986*4882a593Smuzhiyun &rx_ring->rx_status_bus,
1987*4882a593Smuzhiyun GFP_KERNEL);
1988*4882a593Smuzhiyun if (!rx_ring->rx_status_block) {
1989*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
1990*4882a593Smuzhiyun "Cannot alloc memory for Status Block\n");
1991*4882a593Smuzhiyun return -ENOMEM;
1992*4882a593Smuzhiyun }
1993*4882a593Smuzhiyun rx_ring->num_rfd = NIC_DEFAULT_NUM_RFD;
1994*4882a593Smuzhiyun
1995*4882a593Smuzhiyun /* The RFDs are going to be put on lists later on, so initialize the
1996*4882a593Smuzhiyun * lists now.
1997*4882a593Smuzhiyun */
1998*4882a593Smuzhiyun INIT_LIST_HEAD(&rx_ring->recv_list);
1999*4882a593Smuzhiyun return 0;
2000*4882a593Smuzhiyun }
2001*4882a593Smuzhiyun
et131x_rx_dma_memory_free(struct et131x_adapter * adapter)2002*4882a593Smuzhiyun static void et131x_rx_dma_memory_free(struct et131x_adapter *adapter)
2003*4882a593Smuzhiyun {
2004*4882a593Smuzhiyun u8 id;
2005*4882a593Smuzhiyun u32 ii;
2006*4882a593Smuzhiyun u32 bufsize;
2007*4882a593Smuzhiyun u32 psr_size;
2008*4882a593Smuzhiyun struct rfd *rfd;
2009*4882a593Smuzhiyun struct rx_ring *rx_ring = &adapter->rx_ring;
2010*4882a593Smuzhiyun struct fbr_lookup *fbr;
2011*4882a593Smuzhiyun
2012*4882a593Smuzhiyun /* Free RFDs and associated packet descriptors */
2013*4882a593Smuzhiyun WARN_ON(rx_ring->num_ready_recv != rx_ring->num_rfd);
2014*4882a593Smuzhiyun
2015*4882a593Smuzhiyun while (!list_empty(&rx_ring->recv_list)) {
2016*4882a593Smuzhiyun rfd = list_entry(rx_ring->recv_list.next,
2017*4882a593Smuzhiyun struct rfd, list_node);
2018*4882a593Smuzhiyun
2019*4882a593Smuzhiyun list_del(&rfd->list_node);
2020*4882a593Smuzhiyun rfd->skb = NULL;
2021*4882a593Smuzhiyun kfree(rfd);
2022*4882a593Smuzhiyun }
2023*4882a593Smuzhiyun
2024*4882a593Smuzhiyun /* Free Free Buffer Rings */
2025*4882a593Smuzhiyun for (id = 0; id < NUM_FBRS; id++) {
2026*4882a593Smuzhiyun fbr = rx_ring->fbr[id];
2027*4882a593Smuzhiyun
2028*4882a593Smuzhiyun if (!fbr || !fbr->ring_virtaddr)
2029*4882a593Smuzhiyun continue;
2030*4882a593Smuzhiyun
2031*4882a593Smuzhiyun /* First the packet memory */
2032*4882a593Smuzhiyun for (ii = 0; ii < fbr->num_entries / FBR_CHUNKS; ii++) {
2033*4882a593Smuzhiyun if (fbr->mem_virtaddrs[ii]) {
2034*4882a593Smuzhiyun bufsize = fbr->buffsize * FBR_CHUNKS;
2035*4882a593Smuzhiyun
2036*4882a593Smuzhiyun dma_free_coherent(&adapter->pdev->dev,
2037*4882a593Smuzhiyun bufsize,
2038*4882a593Smuzhiyun fbr->mem_virtaddrs[ii],
2039*4882a593Smuzhiyun fbr->mem_physaddrs[ii]);
2040*4882a593Smuzhiyun
2041*4882a593Smuzhiyun fbr->mem_virtaddrs[ii] = NULL;
2042*4882a593Smuzhiyun }
2043*4882a593Smuzhiyun }
2044*4882a593Smuzhiyun
2045*4882a593Smuzhiyun bufsize = sizeof(struct fbr_desc) * fbr->num_entries;
2046*4882a593Smuzhiyun
2047*4882a593Smuzhiyun dma_free_coherent(&adapter->pdev->dev,
2048*4882a593Smuzhiyun bufsize,
2049*4882a593Smuzhiyun fbr->ring_virtaddr,
2050*4882a593Smuzhiyun fbr->ring_physaddr);
2051*4882a593Smuzhiyun
2052*4882a593Smuzhiyun fbr->ring_virtaddr = NULL;
2053*4882a593Smuzhiyun }
2054*4882a593Smuzhiyun
2055*4882a593Smuzhiyun /* Free Packet Status Ring */
2056*4882a593Smuzhiyun if (rx_ring->ps_ring_virtaddr) {
2057*4882a593Smuzhiyun psr_size = sizeof(struct pkt_stat_desc) * rx_ring->psr_entries;
2058*4882a593Smuzhiyun
2059*4882a593Smuzhiyun dma_free_coherent(&adapter->pdev->dev, psr_size,
2060*4882a593Smuzhiyun rx_ring->ps_ring_virtaddr,
2061*4882a593Smuzhiyun rx_ring->ps_ring_physaddr);
2062*4882a593Smuzhiyun
2063*4882a593Smuzhiyun rx_ring->ps_ring_virtaddr = NULL;
2064*4882a593Smuzhiyun }
2065*4882a593Smuzhiyun
2066*4882a593Smuzhiyun /* Free area of memory for the writeback of status information */
2067*4882a593Smuzhiyun if (rx_ring->rx_status_block) {
2068*4882a593Smuzhiyun dma_free_coherent(&adapter->pdev->dev,
2069*4882a593Smuzhiyun sizeof(struct rx_status_block),
2070*4882a593Smuzhiyun rx_ring->rx_status_block,
2071*4882a593Smuzhiyun rx_ring->rx_status_bus);
2072*4882a593Smuzhiyun rx_ring->rx_status_block = NULL;
2073*4882a593Smuzhiyun }
2074*4882a593Smuzhiyun
2075*4882a593Smuzhiyun /* Free the FBR Lookup Table */
2076*4882a593Smuzhiyun kfree(rx_ring->fbr[0]);
2077*4882a593Smuzhiyun kfree(rx_ring->fbr[1]);
2078*4882a593Smuzhiyun
2079*4882a593Smuzhiyun /* Reset Counters */
2080*4882a593Smuzhiyun rx_ring->num_ready_recv = 0;
2081*4882a593Smuzhiyun }
2082*4882a593Smuzhiyun
2083*4882a593Smuzhiyun /* et131x_init_recv - Initialize receive data structures */
et131x_init_recv(struct et131x_adapter * adapter)2084*4882a593Smuzhiyun static int et131x_init_recv(struct et131x_adapter *adapter)
2085*4882a593Smuzhiyun {
2086*4882a593Smuzhiyun struct rfd *rfd;
2087*4882a593Smuzhiyun u32 rfdct;
2088*4882a593Smuzhiyun struct rx_ring *rx_ring = &adapter->rx_ring;
2089*4882a593Smuzhiyun
2090*4882a593Smuzhiyun /* Setup each RFD */
2091*4882a593Smuzhiyun for (rfdct = 0; rfdct < rx_ring->num_rfd; rfdct++) {
2092*4882a593Smuzhiyun rfd = kzalloc(sizeof(*rfd), GFP_ATOMIC | GFP_DMA);
2093*4882a593Smuzhiyun if (!rfd)
2094*4882a593Smuzhiyun return -ENOMEM;
2095*4882a593Smuzhiyun
2096*4882a593Smuzhiyun rfd->skb = NULL;
2097*4882a593Smuzhiyun
2098*4882a593Smuzhiyun /* Add this RFD to the recv_list */
2099*4882a593Smuzhiyun list_add_tail(&rfd->list_node, &rx_ring->recv_list);
2100*4882a593Smuzhiyun
2101*4882a593Smuzhiyun /* Increment the available RFD's */
2102*4882a593Smuzhiyun rx_ring->num_ready_recv++;
2103*4882a593Smuzhiyun }
2104*4882a593Smuzhiyun
2105*4882a593Smuzhiyun return 0;
2106*4882a593Smuzhiyun }
2107*4882a593Smuzhiyun
2108*4882a593Smuzhiyun /* et131x_set_rx_dma_timer - Set the heartbeat timer according to line rate */
et131x_set_rx_dma_timer(struct et131x_adapter * adapter)2109*4882a593Smuzhiyun static void et131x_set_rx_dma_timer(struct et131x_adapter *adapter)
2110*4882a593Smuzhiyun {
2111*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
2112*4882a593Smuzhiyun
2113*4882a593Smuzhiyun /* For version B silicon, we do not use the RxDMA timer for 10 and 100
2114*4882a593Smuzhiyun * Mbits/s line rates. We do not enable and RxDMA interrupt coalescing.
2115*4882a593Smuzhiyun */
2116*4882a593Smuzhiyun if ((phydev->speed == SPEED_100) || (phydev->speed == SPEED_10)) {
2117*4882a593Smuzhiyun writel(0, &adapter->regs->rxdma.max_pkt_time);
2118*4882a593Smuzhiyun writel(1, &adapter->regs->rxdma.num_pkt_done);
2119*4882a593Smuzhiyun }
2120*4882a593Smuzhiyun }
2121*4882a593Smuzhiyun
2122*4882a593Smuzhiyun /* nic_return_rfd - Recycle a RFD and put it back onto the receive list */
nic_return_rfd(struct et131x_adapter * adapter,struct rfd * rfd)2123*4882a593Smuzhiyun static void nic_return_rfd(struct et131x_adapter *adapter, struct rfd *rfd)
2124*4882a593Smuzhiyun {
2125*4882a593Smuzhiyun struct rx_ring *rx_local = &adapter->rx_ring;
2126*4882a593Smuzhiyun struct rxdma_regs __iomem *rx_dma = &adapter->regs->rxdma;
2127*4882a593Smuzhiyun u16 buff_index = rfd->bufferindex;
2128*4882a593Smuzhiyun u8 ring_index = rfd->ringindex;
2129*4882a593Smuzhiyun unsigned long flags;
2130*4882a593Smuzhiyun struct fbr_lookup *fbr = rx_local->fbr[ring_index];
2131*4882a593Smuzhiyun
2132*4882a593Smuzhiyun /* We don't use any of the OOB data besides status. Otherwise, we
2133*4882a593Smuzhiyun * need to clean up OOB data
2134*4882a593Smuzhiyun */
2135*4882a593Smuzhiyun if (buff_index < fbr->num_entries) {
2136*4882a593Smuzhiyun u32 free_buff_ring;
2137*4882a593Smuzhiyun u32 __iomem *offset;
2138*4882a593Smuzhiyun struct fbr_desc *next;
2139*4882a593Smuzhiyun
2140*4882a593Smuzhiyun if (ring_index == 0)
2141*4882a593Smuzhiyun offset = &rx_dma->fbr0_full_offset;
2142*4882a593Smuzhiyun else
2143*4882a593Smuzhiyun offset = &rx_dma->fbr1_full_offset;
2144*4882a593Smuzhiyun
2145*4882a593Smuzhiyun next = (struct fbr_desc *)(fbr->ring_virtaddr) +
2146*4882a593Smuzhiyun INDEX10(fbr->local_full);
2147*4882a593Smuzhiyun
2148*4882a593Smuzhiyun /* Handle the Free Buffer Ring advancement here. Write
2149*4882a593Smuzhiyun * the PA / Buffer Index for the returned buffer into
2150*4882a593Smuzhiyun * the oldest (next to be freed)FBR entry
2151*4882a593Smuzhiyun */
2152*4882a593Smuzhiyun next->addr_hi = fbr->bus_high[buff_index];
2153*4882a593Smuzhiyun next->addr_lo = fbr->bus_low[buff_index];
2154*4882a593Smuzhiyun next->word2 = buff_index;
2155*4882a593Smuzhiyun
2156*4882a593Smuzhiyun free_buff_ring = bump_free_buff_ring(&fbr->local_full,
2157*4882a593Smuzhiyun fbr->num_entries - 1);
2158*4882a593Smuzhiyun writel(free_buff_ring, offset);
2159*4882a593Smuzhiyun } else {
2160*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
2161*4882a593Smuzhiyun "%s illegal Buffer Index returned\n", __func__);
2162*4882a593Smuzhiyun }
2163*4882a593Smuzhiyun
2164*4882a593Smuzhiyun /* The processing on this RFD is done, so put it back on the tail of
2165*4882a593Smuzhiyun * our list
2166*4882a593Smuzhiyun */
2167*4882a593Smuzhiyun spin_lock_irqsave(&adapter->rcv_lock, flags);
2168*4882a593Smuzhiyun list_add_tail(&rfd->list_node, &rx_local->recv_list);
2169*4882a593Smuzhiyun rx_local->num_ready_recv++;
2170*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->rcv_lock, flags);
2171*4882a593Smuzhiyun
2172*4882a593Smuzhiyun WARN_ON(rx_local->num_ready_recv > rx_local->num_rfd);
2173*4882a593Smuzhiyun }
2174*4882a593Smuzhiyun
2175*4882a593Smuzhiyun /* nic_rx_pkts - Checks the hardware for available packets
2176*4882a593Smuzhiyun *
2177*4882a593Smuzhiyun * Checks the hardware for available packets, using completion ring
2178*4882a593Smuzhiyun * If packets are available, it gets an RFD from the recv_list, attaches
2179*4882a593Smuzhiyun * the packet to it, puts the RFD in the RecvPendList, and also returns
2180*4882a593Smuzhiyun * the pointer to the RFD.
2181*4882a593Smuzhiyun */
nic_rx_pkts(struct et131x_adapter * adapter)2182*4882a593Smuzhiyun static struct rfd *nic_rx_pkts(struct et131x_adapter *adapter)
2183*4882a593Smuzhiyun {
2184*4882a593Smuzhiyun struct rx_ring *rx_local = &adapter->rx_ring;
2185*4882a593Smuzhiyun struct rx_status_block *status;
2186*4882a593Smuzhiyun struct pkt_stat_desc *psr;
2187*4882a593Smuzhiyun struct rfd *rfd;
2188*4882a593Smuzhiyun unsigned long flags;
2189*4882a593Smuzhiyun struct list_head *element;
2190*4882a593Smuzhiyun u8 ring_index;
2191*4882a593Smuzhiyun u16 buff_index;
2192*4882a593Smuzhiyun u32 len;
2193*4882a593Smuzhiyun u32 word0;
2194*4882a593Smuzhiyun u32 word1;
2195*4882a593Smuzhiyun struct sk_buff *skb;
2196*4882a593Smuzhiyun struct fbr_lookup *fbr;
2197*4882a593Smuzhiyun
2198*4882a593Smuzhiyun /* RX Status block is written by the DMA engine prior to every
2199*4882a593Smuzhiyun * interrupt. It contains the next to be used entry in the Packet
2200*4882a593Smuzhiyun * Status Ring, and also the two Free Buffer rings.
2201*4882a593Smuzhiyun */
2202*4882a593Smuzhiyun status = rx_local->rx_status_block;
2203*4882a593Smuzhiyun word1 = status->word1 >> 16;
2204*4882a593Smuzhiyun
2205*4882a593Smuzhiyun /* Check the PSR and wrap bits do not match */
2206*4882a593Smuzhiyun if ((word1 & 0x1FFF) == (rx_local->local_psr_full & 0x1FFF))
2207*4882a593Smuzhiyun return NULL; /* Looks like this ring is not updated yet */
2208*4882a593Smuzhiyun
2209*4882a593Smuzhiyun /* The packet status ring indicates that data is available. */
2210*4882a593Smuzhiyun psr = (struct pkt_stat_desc *)(rx_local->ps_ring_virtaddr) +
2211*4882a593Smuzhiyun (rx_local->local_psr_full & 0xFFF);
2212*4882a593Smuzhiyun
2213*4882a593Smuzhiyun /* Grab any information that is required once the PSR is advanced,
2214*4882a593Smuzhiyun * since we can no longer rely on the memory being accurate
2215*4882a593Smuzhiyun */
2216*4882a593Smuzhiyun len = psr->word1 & 0xFFFF;
2217*4882a593Smuzhiyun ring_index = (psr->word1 >> 26) & 0x03;
2218*4882a593Smuzhiyun fbr = rx_local->fbr[ring_index];
2219*4882a593Smuzhiyun buff_index = (psr->word1 >> 16) & 0x3FF;
2220*4882a593Smuzhiyun word0 = psr->word0;
2221*4882a593Smuzhiyun
2222*4882a593Smuzhiyun /* Indicate that we have used this PSR entry. */
2223*4882a593Smuzhiyun /* FIXME wrap 12 */
2224*4882a593Smuzhiyun add_12bit(&rx_local->local_psr_full, 1);
2225*4882a593Smuzhiyun if ((rx_local->local_psr_full & 0xFFF) > rx_local->psr_entries - 1) {
2226*4882a593Smuzhiyun /* Clear psr full and toggle the wrap bit */
2227*4882a593Smuzhiyun rx_local->local_psr_full &= ~0xFFF;
2228*4882a593Smuzhiyun rx_local->local_psr_full ^= 0x1000;
2229*4882a593Smuzhiyun }
2230*4882a593Smuzhiyun
2231*4882a593Smuzhiyun writel(rx_local->local_psr_full, &adapter->regs->rxdma.psr_full_offset);
2232*4882a593Smuzhiyun
2233*4882a593Smuzhiyun if (ring_index > 1 || buff_index > fbr->num_entries - 1) {
2234*4882a593Smuzhiyun /* Illegal buffer or ring index cannot be used by S/W*/
2235*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
2236*4882a593Smuzhiyun "NICRxPkts PSR Entry %d indicates length of %d and/or bad bi(%d)\n",
2237*4882a593Smuzhiyun rx_local->local_psr_full & 0xFFF, len, buff_index);
2238*4882a593Smuzhiyun return NULL;
2239*4882a593Smuzhiyun }
2240*4882a593Smuzhiyun
2241*4882a593Smuzhiyun /* Get and fill the RFD. */
2242*4882a593Smuzhiyun spin_lock_irqsave(&adapter->rcv_lock, flags);
2243*4882a593Smuzhiyun
2244*4882a593Smuzhiyun element = rx_local->recv_list.next;
2245*4882a593Smuzhiyun rfd = list_entry(element, struct rfd, list_node);
2246*4882a593Smuzhiyun
2247*4882a593Smuzhiyun if (!rfd) {
2248*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->rcv_lock, flags);
2249*4882a593Smuzhiyun return NULL;
2250*4882a593Smuzhiyun }
2251*4882a593Smuzhiyun
2252*4882a593Smuzhiyun list_del(&rfd->list_node);
2253*4882a593Smuzhiyun rx_local->num_ready_recv--;
2254*4882a593Smuzhiyun
2255*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->rcv_lock, flags);
2256*4882a593Smuzhiyun
2257*4882a593Smuzhiyun rfd->bufferindex = buff_index;
2258*4882a593Smuzhiyun rfd->ringindex = ring_index;
2259*4882a593Smuzhiyun
2260*4882a593Smuzhiyun /* In V1 silicon, there is a bug which screws up filtering of runt
2261*4882a593Smuzhiyun * packets. Therefore runt packet filtering is disabled in the MAC and
2262*4882a593Smuzhiyun * the packets are dropped here. They are also counted here.
2263*4882a593Smuzhiyun */
2264*4882a593Smuzhiyun if (len < (NIC_MIN_PACKET_SIZE + 4)) {
2265*4882a593Smuzhiyun adapter->stats.rx_other_errs++;
2266*4882a593Smuzhiyun rfd->len = 0;
2267*4882a593Smuzhiyun goto out;
2268*4882a593Smuzhiyun }
2269*4882a593Smuzhiyun
2270*4882a593Smuzhiyun if ((word0 & ALCATEL_MULTICAST_PKT) && !(word0 & ALCATEL_BROADCAST_PKT))
2271*4882a593Smuzhiyun adapter->stats.multicast_pkts_rcvd++;
2272*4882a593Smuzhiyun
2273*4882a593Smuzhiyun rfd->len = len;
2274*4882a593Smuzhiyun
2275*4882a593Smuzhiyun skb = dev_alloc_skb(rfd->len + 2);
2276*4882a593Smuzhiyun if (!skb)
2277*4882a593Smuzhiyun return NULL;
2278*4882a593Smuzhiyun
2279*4882a593Smuzhiyun adapter->netdev->stats.rx_bytes += rfd->len;
2280*4882a593Smuzhiyun
2281*4882a593Smuzhiyun skb_put_data(skb, fbr->virt[buff_index], rfd->len);
2282*4882a593Smuzhiyun
2283*4882a593Smuzhiyun skb->protocol = eth_type_trans(skb, adapter->netdev);
2284*4882a593Smuzhiyun skb->ip_summed = CHECKSUM_NONE;
2285*4882a593Smuzhiyun netif_receive_skb(skb);
2286*4882a593Smuzhiyun
2287*4882a593Smuzhiyun out:
2288*4882a593Smuzhiyun nic_return_rfd(adapter, rfd);
2289*4882a593Smuzhiyun return rfd;
2290*4882a593Smuzhiyun }
2291*4882a593Smuzhiyun
et131x_handle_recv_pkts(struct et131x_adapter * adapter,int budget)2292*4882a593Smuzhiyun static int et131x_handle_recv_pkts(struct et131x_adapter *adapter, int budget)
2293*4882a593Smuzhiyun {
2294*4882a593Smuzhiyun struct rfd *rfd = NULL;
2295*4882a593Smuzhiyun int count = 0;
2296*4882a593Smuzhiyun int limit = budget;
2297*4882a593Smuzhiyun bool done = true;
2298*4882a593Smuzhiyun struct rx_ring *rx_ring = &adapter->rx_ring;
2299*4882a593Smuzhiyun
2300*4882a593Smuzhiyun if (budget > MAX_PACKETS_HANDLED)
2301*4882a593Smuzhiyun limit = MAX_PACKETS_HANDLED;
2302*4882a593Smuzhiyun
2303*4882a593Smuzhiyun /* Process up to available RFD's */
2304*4882a593Smuzhiyun while (count < limit) {
2305*4882a593Smuzhiyun if (list_empty(&rx_ring->recv_list)) {
2306*4882a593Smuzhiyun WARN_ON(rx_ring->num_ready_recv != 0);
2307*4882a593Smuzhiyun done = false;
2308*4882a593Smuzhiyun break;
2309*4882a593Smuzhiyun }
2310*4882a593Smuzhiyun
2311*4882a593Smuzhiyun rfd = nic_rx_pkts(adapter);
2312*4882a593Smuzhiyun
2313*4882a593Smuzhiyun if (rfd == NULL)
2314*4882a593Smuzhiyun break;
2315*4882a593Smuzhiyun
2316*4882a593Smuzhiyun /* Do not receive any packets until a filter has been set.
2317*4882a593Smuzhiyun * Do not receive any packets until we have link.
2318*4882a593Smuzhiyun * If length is zero, return the RFD in order to advance the
2319*4882a593Smuzhiyun * Free buffer ring.
2320*4882a593Smuzhiyun */
2321*4882a593Smuzhiyun if (!adapter->packet_filter ||
2322*4882a593Smuzhiyun !netif_carrier_ok(adapter->netdev) ||
2323*4882a593Smuzhiyun rfd->len == 0)
2324*4882a593Smuzhiyun continue;
2325*4882a593Smuzhiyun
2326*4882a593Smuzhiyun adapter->netdev->stats.rx_packets++;
2327*4882a593Smuzhiyun
2328*4882a593Smuzhiyun if (rx_ring->num_ready_recv < RFD_LOW_WATER_MARK)
2329*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev, "RFD's are running out\n");
2330*4882a593Smuzhiyun
2331*4882a593Smuzhiyun count++;
2332*4882a593Smuzhiyun }
2333*4882a593Smuzhiyun
2334*4882a593Smuzhiyun if (count == limit || !done) {
2335*4882a593Smuzhiyun rx_ring->unfinished_receives = true;
2336*4882a593Smuzhiyun writel(PARM_TX_TIME_INT_DEF * NANO_IN_A_MICRO,
2337*4882a593Smuzhiyun &adapter->regs->global.watchdog_timer);
2338*4882a593Smuzhiyun } else {
2339*4882a593Smuzhiyun /* Watchdog timer will disable itself if appropriate. */
2340*4882a593Smuzhiyun rx_ring->unfinished_receives = false;
2341*4882a593Smuzhiyun }
2342*4882a593Smuzhiyun
2343*4882a593Smuzhiyun return count;
2344*4882a593Smuzhiyun }
2345*4882a593Smuzhiyun
2346*4882a593Smuzhiyun /* et131x_tx_dma_memory_alloc
2347*4882a593Smuzhiyun *
2348*4882a593Smuzhiyun * Allocates memory that will be visible both to the device and to the CPU.
2349*4882a593Smuzhiyun * The OS will pass us packets, pointers to which we will insert in the Tx
2350*4882a593Smuzhiyun * Descriptor queue. The device will read this queue to find the packets in
2351*4882a593Smuzhiyun * memory. The device will update the "status" in memory each time it xmits a
2352*4882a593Smuzhiyun * packet.
2353*4882a593Smuzhiyun */
et131x_tx_dma_memory_alloc(struct et131x_adapter * adapter)2354*4882a593Smuzhiyun static int et131x_tx_dma_memory_alloc(struct et131x_adapter *adapter)
2355*4882a593Smuzhiyun {
2356*4882a593Smuzhiyun int desc_size = 0;
2357*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
2358*4882a593Smuzhiyun
2359*4882a593Smuzhiyun /* Allocate memory for the TCB's (Transmit Control Block) */
2360*4882a593Smuzhiyun tx_ring->tcb_ring = kcalloc(NUM_TCB, sizeof(struct tcb),
2361*4882a593Smuzhiyun GFP_KERNEL | GFP_DMA);
2362*4882a593Smuzhiyun if (!tx_ring->tcb_ring)
2363*4882a593Smuzhiyun return -ENOMEM;
2364*4882a593Smuzhiyun
2365*4882a593Smuzhiyun desc_size = (sizeof(struct tx_desc) * NUM_DESC_PER_RING_TX);
2366*4882a593Smuzhiyun tx_ring->tx_desc_ring = dma_alloc_coherent(&adapter->pdev->dev,
2367*4882a593Smuzhiyun desc_size,
2368*4882a593Smuzhiyun &tx_ring->tx_desc_ring_pa,
2369*4882a593Smuzhiyun GFP_KERNEL);
2370*4882a593Smuzhiyun if (!tx_ring->tx_desc_ring) {
2371*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
2372*4882a593Smuzhiyun "Cannot alloc memory for Tx Ring\n");
2373*4882a593Smuzhiyun return -ENOMEM;
2374*4882a593Smuzhiyun }
2375*4882a593Smuzhiyun
2376*4882a593Smuzhiyun tx_ring->tx_status = dma_alloc_coherent(&adapter->pdev->dev,
2377*4882a593Smuzhiyun sizeof(u32),
2378*4882a593Smuzhiyun &tx_ring->tx_status_pa,
2379*4882a593Smuzhiyun GFP_KERNEL);
2380*4882a593Smuzhiyun if (!tx_ring->tx_status) {
2381*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
2382*4882a593Smuzhiyun "Cannot alloc memory for Tx status block\n");
2383*4882a593Smuzhiyun return -ENOMEM;
2384*4882a593Smuzhiyun }
2385*4882a593Smuzhiyun return 0;
2386*4882a593Smuzhiyun }
2387*4882a593Smuzhiyun
et131x_tx_dma_memory_free(struct et131x_adapter * adapter)2388*4882a593Smuzhiyun static void et131x_tx_dma_memory_free(struct et131x_adapter *adapter)
2389*4882a593Smuzhiyun {
2390*4882a593Smuzhiyun int desc_size = 0;
2391*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
2392*4882a593Smuzhiyun
2393*4882a593Smuzhiyun if (tx_ring->tx_desc_ring) {
2394*4882a593Smuzhiyun /* Free memory relating to Tx rings here */
2395*4882a593Smuzhiyun desc_size = (sizeof(struct tx_desc) * NUM_DESC_PER_RING_TX);
2396*4882a593Smuzhiyun dma_free_coherent(&adapter->pdev->dev,
2397*4882a593Smuzhiyun desc_size,
2398*4882a593Smuzhiyun tx_ring->tx_desc_ring,
2399*4882a593Smuzhiyun tx_ring->tx_desc_ring_pa);
2400*4882a593Smuzhiyun tx_ring->tx_desc_ring = NULL;
2401*4882a593Smuzhiyun }
2402*4882a593Smuzhiyun
2403*4882a593Smuzhiyun /* Free memory for the Tx status block */
2404*4882a593Smuzhiyun if (tx_ring->tx_status) {
2405*4882a593Smuzhiyun dma_free_coherent(&adapter->pdev->dev,
2406*4882a593Smuzhiyun sizeof(u32),
2407*4882a593Smuzhiyun tx_ring->tx_status,
2408*4882a593Smuzhiyun tx_ring->tx_status_pa);
2409*4882a593Smuzhiyun
2410*4882a593Smuzhiyun tx_ring->tx_status = NULL;
2411*4882a593Smuzhiyun }
2412*4882a593Smuzhiyun /* Free the memory for the tcb structures */
2413*4882a593Smuzhiyun kfree(tx_ring->tcb_ring);
2414*4882a593Smuzhiyun }
2415*4882a593Smuzhiyun
2416*4882a593Smuzhiyun /* nic_send_packet - NIC specific send handler for version B silicon. */
nic_send_packet(struct et131x_adapter * adapter,struct tcb * tcb)2417*4882a593Smuzhiyun static int nic_send_packet(struct et131x_adapter *adapter, struct tcb *tcb)
2418*4882a593Smuzhiyun {
2419*4882a593Smuzhiyun u32 i;
2420*4882a593Smuzhiyun struct tx_desc desc[24];
2421*4882a593Smuzhiyun u32 frag = 0;
2422*4882a593Smuzhiyun u32 thiscopy, remainder;
2423*4882a593Smuzhiyun struct sk_buff *skb = tcb->skb;
2424*4882a593Smuzhiyun u32 nr_frags = skb_shinfo(skb)->nr_frags + 1;
2425*4882a593Smuzhiyun skb_frag_t *frags = &skb_shinfo(skb)->frags[0];
2426*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
2427*4882a593Smuzhiyun dma_addr_t dma_addr;
2428*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
2429*4882a593Smuzhiyun
2430*4882a593Smuzhiyun /* Part of the optimizations of this send routine restrict us to
2431*4882a593Smuzhiyun * sending 24 fragments at a pass. In practice we should never see
2432*4882a593Smuzhiyun * more than 5 fragments.
2433*4882a593Smuzhiyun */
2434*4882a593Smuzhiyun
2435*4882a593Smuzhiyun /* nr_frags should be no more than 18. */
2436*4882a593Smuzhiyun BUILD_BUG_ON(MAX_SKB_FRAGS + 1 > 23);
2437*4882a593Smuzhiyun
2438*4882a593Smuzhiyun memset(desc, 0, sizeof(struct tx_desc) * (nr_frags + 1));
2439*4882a593Smuzhiyun
2440*4882a593Smuzhiyun for (i = 0; i < nr_frags; i++) {
2441*4882a593Smuzhiyun /* If there is something in this element, lets get a
2442*4882a593Smuzhiyun * descriptor from the ring and get the necessary data
2443*4882a593Smuzhiyun */
2444*4882a593Smuzhiyun if (i == 0) {
2445*4882a593Smuzhiyun /* If the fragments are smaller than a standard MTU,
2446*4882a593Smuzhiyun * then map them to a single descriptor in the Tx
2447*4882a593Smuzhiyun * Desc ring. However, if they're larger, as is
2448*4882a593Smuzhiyun * possible with support for jumbo packets, then
2449*4882a593Smuzhiyun * split them each across 2 descriptors.
2450*4882a593Smuzhiyun *
2451*4882a593Smuzhiyun * This will work until we determine why the hardware
2452*4882a593Smuzhiyun * doesn't seem to like large fragments.
2453*4882a593Smuzhiyun */
2454*4882a593Smuzhiyun if (skb_headlen(skb) <= 1514) {
2455*4882a593Smuzhiyun /* Low 16bits are length, high is vlan and
2456*4882a593Smuzhiyun * unused currently so zero
2457*4882a593Smuzhiyun */
2458*4882a593Smuzhiyun desc[frag].len_vlan = skb_headlen(skb);
2459*4882a593Smuzhiyun dma_addr = dma_map_single(&adapter->pdev->dev,
2460*4882a593Smuzhiyun skb->data,
2461*4882a593Smuzhiyun skb_headlen(skb),
2462*4882a593Smuzhiyun DMA_TO_DEVICE);
2463*4882a593Smuzhiyun desc[frag].addr_lo = lower_32_bits(dma_addr);
2464*4882a593Smuzhiyun desc[frag].addr_hi = upper_32_bits(dma_addr);
2465*4882a593Smuzhiyun frag++;
2466*4882a593Smuzhiyun } else {
2467*4882a593Smuzhiyun desc[frag].len_vlan = skb_headlen(skb) / 2;
2468*4882a593Smuzhiyun dma_addr = dma_map_single(&adapter->pdev->dev,
2469*4882a593Smuzhiyun skb->data,
2470*4882a593Smuzhiyun skb_headlen(skb) / 2,
2471*4882a593Smuzhiyun DMA_TO_DEVICE);
2472*4882a593Smuzhiyun desc[frag].addr_lo = lower_32_bits(dma_addr);
2473*4882a593Smuzhiyun desc[frag].addr_hi = upper_32_bits(dma_addr);
2474*4882a593Smuzhiyun frag++;
2475*4882a593Smuzhiyun
2476*4882a593Smuzhiyun desc[frag].len_vlan = skb_headlen(skb) / 2;
2477*4882a593Smuzhiyun dma_addr = dma_map_single(&adapter->pdev->dev,
2478*4882a593Smuzhiyun skb->data +
2479*4882a593Smuzhiyun skb_headlen(skb) / 2,
2480*4882a593Smuzhiyun skb_headlen(skb) / 2,
2481*4882a593Smuzhiyun DMA_TO_DEVICE);
2482*4882a593Smuzhiyun desc[frag].addr_lo = lower_32_bits(dma_addr);
2483*4882a593Smuzhiyun desc[frag].addr_hi = upper_32_bits(dma_addr);
2484*4882a593Smuzhiyun frag++;
2485*4882a593Smuzhiyun }
2486*4882a593Smuzhiyun } else {
2487*4882a593Smuzhiyun desc[frag].len_vlan = skb_frag_size(&frags[i - 1]);
2488*4882a593Smuzhiyun dma_addr = skb_frag_dma_map(&adapter->pdev->dev,
2489*4882a593Smuzhiyun &frags[i - 1],
2490*4882a593Smuzhiyun 0,
2491*4882a593Smuzhiyun desc[frag].len_vlan,
2492*4882a593Smuzhiyun DMA_TO_DEVICE);
2493*4882a593Smuzhiyun desc[frag].addr_lo = lower_32_bits(dma_addr);
2494*4882a593Smuzhiyun desc[frag].addr_hi = upper_32_bits(dma_addr);
2495*4882a593Smuzhiyun frag++;
2496*4882a593Smuzhiyun }
2497*4882a593Smuzhiyun }
2498*4882a593Smuzhiyun
2499*4882a593Smuzhiyun if (phydev && phydev->speed == SPEED_1000) {
2500*4882a593Smuzhiyun if (++tx_ring->since_irq == PARM_TX_NUM_BUFS_DEF) {
2501*4882a593Smuzhiyun /* Last element & Interrupt flag */
2502*4882a593Smuzhiyun desc[frag - 1].flags =
2503*4882a593Smuzhiyun TXDESC_FLAG_INTPROC | TXDESC_FLAG_LASTPKT;
2504*4882a593Smuzhiyun tx_ring->since_irq = 0;
2505*4882a593Smuzhiyun } else { /* Last element */
2506*4882a593Smuzhiyun desc[frag - 1].flags = TXDESC_FLAG_LASTPKT;
2507*4882a593Smuzhiyun }
2508*4882a593Smuzhiyun } else {
2509*4882a593Smuzhiyun desc[frag - 1].flags =
2510*4882a593Smuzhiyun TXDESC_FLAG_INTPROC | TXDESC_FLAG_LASTPKT;
2511*4882a593Smuzhiyun }
2512*4882a593Smuzhiyun
2513*4882a593Smuzhiyun desc[0].flags |= TXDESC_FLAG_FIRSTPKT;
2514*4882a593Smuzhiyun
2515*4882a593Smuzhiyun tcb->index_start = tx_ring->send_idx;
2516*4882a593Smuzhiyun tcb->stale = 0;
2517*4882a593Smuzhiyun
2518*4882a593Smuzhiyun thiscopy = NUM_DESC_PER_RING_TX - INDEX10(tx_ring->send_idx);
2519*4882a593Smuzhiyun
2520*4882a593Smuzhiyun if (thiscopy >= frag) {
2521*4882a593Smuzhiyun remainder = 0;
2522*4882a593Smuzhiyun thiscopy = frag;
2523*4882a593Smuzhiyun } else {
2524*4882a593Smuzhiyun remainder = frag - thiscopy;
2525*4882a593Smuzhiyun }
2526*4882a593Smuzhiyun
2527*4882a593Smuzhiyun memcpy(tx_ring->tx_desc_ring + INDEX10(tx_ring->send_idx),
2528*4882a593Smuzhiyun desc,
2529*4882a593Smuzhiyun sizeof(struct tx_desc) * thiscopy);
2530*4882a593Smuzhiyun
2531*4882a593Smuzhiyun add_10bit(&tx_ring->send_idx, thiscopy);
2532*4882a593Smuzhiyun
2533*4882a593Smuzhiyun if (INDEX10(tx_ring->send_idx) == 0 ||
2534*4882a593Smuzhiyun INDEX10(tx_ring->send_idx) == NUM_DESC_PER_RING_TX) {
2535*4882a593Smuzhiyun tx_ring->send_idx &= ~ET_DMA10_MASK;
2536*4882a593Smuzhiyun tx_ring->send_idx ^= ET_DMA10_WRAP;
2537*4882a593Smuzhiyun }
2538*4882a593Smuzhiyun
2539*4882a593Smuzhiyun if (remainder) {
2540*4882a593Smuzhiyun memcpy(tx_ring->tx_desc_ring,
2541*4882a593Smuzhiyun desc + thiscopy,
2542*4882a593Smuzhiyun sizeof(struct tx_desc) * remainder);
2543*4882a593Smuzhiyun
2544*4882a593Smuzhiyun add_10bit(&tx_ring->send_idx, remainder);
2545*4882a593Smuzhiyun }
2546*4882a593Smuzhiyun
2547*4882a593Smuzhiyun if (INDEX10(tx_ring->send_idx) == 0) {
2548*4882a593Smuzhiyun if (tx_ring->send_idx)
2549*4882a593Smuzhiyun tcb->index = NUM_DESC_PER_RING_TX - 1;
2550*4882a593Smuzhiyun else
2551*4882a593Smuzhiyun tcb->index = ET_DMA10_WRAP|(NUM_DESC_PER_RING_TX - 1);
2552*4882a593Smuzhiyun } else {
2553*4882a593Smuzhiyun tcb->index = tx_ring->send_idx - 1;
2554*4882a593Smuzhiyun }
2555*4882a593Smuzhiyun
2556*4882a593Smuzhiyun spin_lock(&adapter->tcb_send_qlock);
2557*4882a593Smuzhiyun
2558*4882a593Smuzhiyun if (tx_ring->send_tail)
2559*4882a593Smuzhiyun tx_ring->send_tail->next = tcb;
2560*4882a593Smuzhiyun else
2561*4882a593Smuzhiyun tx_ring->send_head = tcb;
2562*4882a593Smuzhiyun
2563*4882a593Smuzhiyun tx_ring->send_tail = tcb;
2564*4882a593Smuzhiyun
2565*4882a593Smuzhiyun WARN_ON(tcb->next != NULL);
2566*4882a593Smuzhiyun
2567*4882a593Smuzhiyun tx_ring->used++;
2568*4882a593Smuzhiyun
2569*4882a593Smuzhiyun spin_unlock(&adapter->tcb_send_qlock);
2570*4882a593Smuzhiyun
2571*4882a593Smuzhiyun /* Write the new write pointer back to the device. */
2572*4882a593Smuzhiyun writel(tx_ring->send_idx, &adapter->regs->txdma.service_request);
2573*4882a593Smuzhiyun
2574*4882a593Smuzhiyun /* For Gig only, we use Tx Interrupt coalescing. Enable the software
2575*4882a593Smuzhiyun * timer to wake us up if this packet isn't followed by N more.
2576*4882a593Smuzhiyun */
2577*4882a593Smuzhiyun if (phydev && phydev->speed == SPEED_1000) {
2578*4882a593Smuzhiyun writel(PARM_TX_TIME_INT_DEF * NANO_IN_A_MICRO,
2579*4882a593Smuzhiyun &adapter->regs->global.watchdog_timer);
2580*4882a593Smuzhiyun }
2581*4882a593Smuzhiyun return 0;
2582*4882a593Smuzhiyun }
2583*4882a593Smuzhiyun
send_packet(struct sk_buff * skb,struct et131x_adapter * adapter)2584*4882a593Smuzhiyun static int send_packet(struct sk_buff *skb, struct et131x_adapter *adapter)
2585*4882a593Smuzhiyun {
2586*4882a593Smuzhiyun int status;
2587*4882a593Smuzhiyun struct tcb *tcb;
2588*4882a593Smuzhiyun unsigned long flags;
2589*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
2590*4882a593Smuzhiyun
2591*4882a593Smuzhiyun /* All packets must have at least a MAC address and a protocol type */
2592*4882a593Smuzhiyun if (skb->len < ETH_HLEN)
2593*4882a593Smuzhiyun return -EIO;
2594*4882a593Smuzhiyun
2595*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_ready_qlock, flags);
2596*4882a593Smuzhiyun
2597*4882a593Smuzhiyun tcb = tx_ring->tcb_qhead;
2598*4882a593Smuzhiyun
2599*4882a593Smuzhiyun if (tcb == NULL) {
2600*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_ready_qlock, flags);
2601*4882a593Smuzhiyun return -ENOMEM;
2602*4882a593Smuzhiyun }
2603*4882a593Smuzhiyun
2604*4882a593Smuzhiyun tx_ring->tcb_qhead = tcb->next;
2605*4882a593Smuzhiyun
2606*4882a593Smuzhiyun if (tx_ring->tcb_qhead == NULL)
2607*4882a593Smuzhiyun tx_ring->tcb_qtail = NULL;
2608*4882a593Smuzhiyun
2609*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_ready_qlock, flags);
2610*4882a593Smuzhiyun
2611*4882a593Smuzhiyun tcb->skb = skb;
2612*4882a593Smuzhiyun tcb->next = NULL;
2613*4882a593Smuzhiyun
2614*4882a593Smuzhiyun status = nic_send_packet(adapter, tcb);
2615*4882a593Smuzhiyun
2616*4882a593Smuzhiyun if (status != 0) {
2617*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_ready_qlock, flags);
2618*4882a593Smuzhiyun
2619*4882a593Smuzhiyun if (tx_ring->tcb_qtail)
2620*4882a593Smuzhiyun tx_ring->tcb_qtail->next = tcb;
2621*4882a593Smuzhiyun else
2622*4882a593Smuzhiyun /* Apparently ready Q is empty. */
2623*4882a593Smuzhiyun tx_ring->tcb_qhead = tcb;
2624*4882a593Smuzhiyun
2625*4882a593Smuzhiyun tx_ring->tcb_qtail = tcb;
2626*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_ready_qlock, flags);
2627*4882a593Smuzhiyun return status;
2628*4882a593Smuzhiyun }
2629*4882a593Smuzhiyun WARN_ON(tx_ring->used > NUM_TCB);
2630*4882a593Smuzhiyun return 0;
2631*4882a593Smuzhiyun }
2632*4882a593Smuzhiyun
2633*4882a593Smuzhiyun /* free_send_packet - Recycle a struct tcb */
free_send_packet(struct et131x_adapter * adapter,struct tcb * tcb)2634*4882a593Smuzhiyun static inline void free_send_packet(struct et131x_adapter *adapter,
2635*4882a593Smuzhiyun struct tcb *tcb)
2636*4882a593Smuzhiyun {
2637*4882a593Smuzhiyun unsigned long flags;
2638*4882a593Smuzhiyun struct tx_desc *desc = NULL;
2639*4882a593Smuzhiyun struct net_device_stats *stats = &adapter->netdev->stats;
2640*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
2641*4882a593Smuzhiyun u64 dma_addr;
2642*4882a593Smuzhiyun
2643*4882a593Smuzhiyun if (tcb->skb) {
2644*4882a593Smuzhiyun stats->tx_bytes += tcb->skb->len;
2645*4882a593Smuzhiyun
2646*4882a593Smuzhiyun /* Iterate through the TX descriptors on the ring
2647*4882a593Smuzhiyun * corresponding to this packet and umap the fragments
2648*4882a593Smuzhiyun * they point to
2649*4882a593Smuzhiyun */
2650*4882a593Smuzhiyun do {
2651*4882a593Smuzhiyun desc = tx_ring->tx_desc_ring +
2652*4882a593Smuzhiyun INDEX10(tcb->index_start);
2653*4882a593Smuzhiyun
2654*4882a593Smuzhiyun dma_addr = desc->addr_lo;
2655*4882a593Smuzhiyun dma_addr |= (u64)desc->addr_hi << 32;
2656*4882a593Smuzhiyun
2657*4882a593Smuzhiyun dma_unmap_single(&adapter->pdev->dev,
2658*4882a593Smuzhiyun dma_addr,
2659*4882a593Smuzhiyun desc->len_vlan, DMA_TO_DEVICE);
2660*4882a593Smuzhiyun
2661*4882a593Smuzhiyun add_10bit(&tcb->index_start, 1);
2662*4882a593Smuzhiyun if (INDEX10(tcb->index_start) >=
2663*4882a593Smuzhiyun NUM_DESC_PER_RING_TX) {
2664*4882a593Smuzhiyun tcb->index_start &= ~ET_DMA10_MASK;
2665*4882a593Smuzhiyun tcb->index_start ^= ET_DMA10_WRAP;
2666*4882a593Smuzhiyun }
2667*4882a593Smuzhiyun } while (desc != tx_ring->tx_desc_ring + INDEX10(tcb->index));
2668*4882a593Smuzhiyun
2669*4882a593Smuzhiyun dev_kfree_skb_any(tcb->skb);
2670*4882a593Smuzhiyun }
2671*4882a593Smuzhiyun
2672*4882a593Smuzhiyun memset(tcb, 0, sizeof(struct tcb));
2673*4882a593Smuzhiyun
2674*4882a593Smuzhiyun /* Add the TCB to the Ready Q */
2675*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_ready_qlock, flags);
2676*4882a593Smuzhiyun
2677*4882a593Smuzhiyun stats->tx_packets++;
2678*4882a593Smuzhiyun
2679*4882a593Smuzhiyun if (tx_ring->tcb_qtail)
2680*4882a593Smuzhiyun tx_ring->tcb_qtail->next = tcb;
2681*4882a593Smuzhiyun else /* Apparently ready Q is empty. */
2682*4882a593Smuzhiyun tx_ring->tcb_qhead = tcb;
2683*4882a593Smuzhiyun
2684*4882a593Smuzhiyun tx_ring->tcb_qtail = tcb;
2685*4882a593Smuzhiyun
2686*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_ready_qlock, flags);
2687*4882a593Smuzhiyun WARN_ON(tx_ring->used < 0);
2688*4882a593Smuzhiyun }
2689*4882a593Smuzhiyun
2690*4882a593Smuzhiyun /* et131x_free_busy_send_packets - Free and complete the stopped active sends */
et131x_free_busy_send_packets(struct et131x_adapter * adapter)2691*4882a593Smuzhiyun static void et131x_free_busy_send_packets(struct et131x_adapter *adapter)
2692*4882a593Smuzhiyun {
2693*4882a593Smuzhiyun struct tcb *tcb;
2694*4882a593Smuzhiyun unsigned long flags;
2695*4882a593Smuzhiyun u32 freed = 0;
2696*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
2697*4882a593Smuzhiyun
2698*4882a593Smuzhiyun /* Any packets being sent? Check the first TCB on the send list */
2699*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
2700*4882a593Smuzhiyun
2701*4882a593Smuzhiyun tcb = tx_ring->send_head;
2702*4882a593Smuzhiyun
2703*4882a593Smuzhiyun while (tcb != NULL && freed < NUM_TCB) {
2704*4882a593Smuzhiyun struct tcb *next = tcb->next;
2705*4882a593Smuzhiyun
2706*4882a593Smuzhiyun tx_ring->send_head = next;
2707*4882a593Smuzhiyun
2708*4882a593Smuzhiyun if (next == NULL)
2709*4882a593Smuzhiyun tx_ring->send_tail = NULL;
2710*4882a593Smuzhiyun
2711*4882a593Smuzhiyun tx_ring->used--;
2712*4882a593Smuzhiyun
2713*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
2714*4882a593Smuzhiyun
2715*4882a593Smuzhiyun freed++;
2716*4882a593Smuzhiyun free_send_packet(adapter, tcb);
2717*4882a593Smuzhiyun
2718*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
2719*4882a593Smuzhiyun
2720*4882a593Smuzhiyun tcb = tx_ring->send_head;
2721*4882a593Smuzhiyun }
2722*4882a593Smuzhiyun
2723*4882a593Smuzhiyun WARN_ON(freed == NUM_TCB);
2724*4882a593Smuzhiyun
2725*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
2726*4882a593Smuzhiyun
2727*4882a593Smuzhiyun tx_ring->used = 0;
2728*4882a593Smuzhiyun }
2729*4882a593Smuzhiyun
2730*4882a593Smuzhiyun /* et131x_handle_send_pkts
2731*4882a593Smuzhiyun *
2732*4882a593Smuzhiyun * Re-claim the send resources, complete sends and get more to send from
2733*4882a593Smuzhiyun * the send wait queue.
2734*4882a593Smuzhiyun */
et131x_handle_send_pkts(struct et131x_adapter * adapter)2735*4882a593Smuzhiyun static void et131x_handle_send_pkts(struct et131x_adapter *adapter)
2736*4882a593Smuzhiyun {
2737*4882a593Smuzhiyun unsigned long flags;
2738*4882a593Smuzhiyun u32 serviced;
2739*4882a593Smuzhiyun struct tcb *tcb;
2740*4882a593Smuzhiyun u32 index;
2741*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
2742*4882a593Smuzhiyun
2743*4882a593Smuzhiyun serviced = readl(&adapter->regs->txdma.new_service_complete);
2744*4882a593Smuzhiyun index = INDEX10(serviced);
2745*4882a593Smuzhiyun
2746*4882a593Smuzhiyun /* Has the ring wrapped? Process any descriptors that do not have
2747*4882a593Smuzhiyun * the same "wrap" indicator as the current completion indicator
2748*4882a593Smuzhiyun */
2749*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
2750*4882a593Smuzhiyun
2751*4882a593Smuzhiyun tcb = tx_ring->send_head;
2752*4882a593Smuzhiyun
2753*4882a593Smuzhiyun while (tcb &&
2754*4882a593Smuzhiyun ((serviced ^ tcb->index) & ET_DMA10_WRAP) &&
2755*4882a593Smuzhiyun index < INDEX10(tcb->index)) {
2756*4882a593Smuzhiyun tx_ring->used--;
2757*4882a593Smuzhiyun tx_ring->send_head = tcb->next;
2758*4882a593Smuzhiyun if (tcb->next == NULL)
2759*4882a593Smuzhiyun tx_ring->send_tail = NULL;
2760*4882a593Smuzhiyun
2761*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
2762*4882a593Smuzhiyun free_send_packet(adapter, tcb);
2763*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
2764*4882a593Smuzhiyun
2765*4882a593Smuzhiyun /* Goto the next packet */
2766*4882a593Smuzhiyun tcb = tx_ring->send_head;
2767*4882a593Smuzhiyun }
2768*4882a593Smuzhiyun while (tcb &&
2769*4882a593Smuzhiyun !((serviced ^ tcb->index) & ET_DMA10_WRAP) &&
2770*4882a593Smuzhiyun index > (tcb->index & ET_DMA10_MASK)) {
2771*4882a593Smuzhiyun tx_ring->used--;
2772*4882a593Smuzhiyun tx_ring->send_head = tcb->next;
2773*4882a593Smuzhiyun if (tcb->next == NULL)
2774*4882a593Smuzhiyun tx_ring->send_tail = NULL;
2775*4882a593Smuzhiyun
2776*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
2777*4882a593Smuzhiyun free_send_packet(adapter, tcb);
2778*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
2779*4882a593Smuzhiyun
2780*4882a593Smuzhiyun /* Goto the next packet */
2781*4882a593Smuzhiyun tcb = tx_ring->send_head;
2782*4882a593Smuzhiyun }
2783*4882a593Smuzhiyun
2784*4882a593Smuzhiyun /* Wake up the queue when we hit a low-water mark */
2785*4882a593Smuzhiyun if (tx_ring->used <= NUM_TCB / 3)
2786*4882a593Smuzhiyun netif_wake_queue(adapter->netdev);
2787*4882a593Smuzhiyun
2788*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
2789*4882a593Smuzhiyun }
2790*4882a593Smuzhiyun
et131x_get_regs_len(struct net_device * netdev)2791*4882a593Smuzhiyun static int et131x_get_regs_len(struct net_device *netdev)
2792*4882a593Smuzhiyun {
2793*4882a593Smuzhiyun #define ET131X_REGS_LEN 256
2794*4882a593Smuzhiyun return ET131X_REGS_LEN * sizeof(u32);
2795*4882a593Smuzhiyun }
2796*4882a593Smuzhiyun
et131x_get_regs(struct net_device * netdev,struct ethtool_regs * regs,void * regs_data)2797*4882a593Smuzhiyun static void et131x_get_regs(struct net_device *netdev,
2798*4882a593Smuzhiyun struct ethtool_regs *regs, void *regs_data)
2799*4882a593Smuzhiyun {
2800*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
2801*4882a593Smuzhiyun struct address_map __iomem *aregs = adapter->regs;
2802*4882a593Smuzhiyun u32 *regs_buff = regs_data;
2803*4882a593Smuzhiyun u32 num = 0;
2804*4882a593Smuzhiyun u16 tmp;
2805*4882a593Smuzhiyun
2806*4882a593Smuzhiyun memset(regs_data, 0, et131x_get_regs_len(netdev));
2807*4882a593Smuzhiyun
2808*4882a593Smuzhiyun regs->version = (1 << 24) | (adapter->pdev->revision << 16) |
2809*4882a593Smuzhiyun adapter->pdev->device;
2810*4882a593Smuzhiyun
2811*4882a593Smuzhiyun /* PHY regs */
2812*4882a593Smuzhiyun et131x_mii_read(adapter, MII_BMCR, &tmp);
2813*4882a593Smuzhiyun regs_buff[num++] = tmp;
2814*4882a593Smuzhiyun et131x_mii_read(adapter, MII_BMSR, &tmp);
2815*4882a593Smuzhiyun regs_buff[num++] = tmp;
2816*4882a593Smuzhiyun et131x_mii_read(adapter, MII_PHYSID1, &tmp);
2817*4882a593Smuzhiyun regs_buff[num++] = tmp;
2818*4882a593Smuzhiyun et131x_mii_read(adapter, MII_PHYSID2, &tmp);
2819*4882a593Smuzhiyun regs_buff[num++] = tmp;
2820*4882a593Smuzhiyun et131x_mii_read(adapter, MII_ADVERTISE, &tmp);
2821*4882a593Smuzhiyun regs_buff[num++] = tmp;
2822*4882a593Smuzhiyun et131x_mii_read(adapter, MII_LPA, &tmp);
2823*4882a593Smuzhiyun regs_buff[num++] = tmp;
2824*4882a593Smuzhiyun et131x_mii_read(adapter, MII_EXPANSION, &tmp);
2825*4882a593Smuzhiyun regs_buff[num++] = tmp;
2826*4882a593Smuzhiyun /* Autoneg next page transmit reg */
2827*4882a593Smuzhiyun et131x_mii_read(adapter, 0x07, &tmp);
2828*4882a593Smuzhiyun regs_buff[num++] = tmp;
2829*4882a593Smuzhiyun /* Link partner next page reg */
2830*4882a593Smuzhiyun et131x_mii_read(adapter, 0x08, &tmp);
2831*4882a593Smuzhiyun regs_buff[num++] = tmp;
2832*4882a593Smuzhiyun et131x_mii_read(adapter, MII_CTRL1000, &tmp);
2833*4882a593Smuzhiyun regs_buff[num++] = tmp;
2834*4882a593Smuzhiyun et131x_mii_read(adapter, MII_STAT1000, &tmp);
2835*4882a593Smuzhiyun regs_buff[num++] = tmp;
2836*4882a593Smuzhiyun et131x_mii_read(adapter, 0x0b, &tmp);
2837*4882a593Smuzhiyun regs_buff[num++] = tmp;
2838*4882a593Smuzhiyun et131x_mii_read(adapter, 0x0c, &tmp);
2839*4882a593Smuzhiyun regs_buff[num++] = tmp;
2840*4882a593Smuzhiyun et131x_mii_read(adapter, MII_MMD_CTRL, &tmp);
2841*4882a593Smuzhiyun regs_buff[num++] = tmp;
2842*4882a593Smuzhiyun et131x_mii_read(adapter, MII_MMD_DATA, &tmp);
2843*4882a593Smuzhiyun regs_buff[num++] = tmp;
2844*4882a593Smuzhiyun et131x_mii_read(adapter, MII_ESTATUS, &tmp);
2845*4882a593Smuzhiyun regs_buff[num++] = tmp;
2846*4882a593Smuzhiyun
2847*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_INDEX_REG, &tmp);
2848*4882a593Smuzhiyun regs_buff[num++] = tmp;
2849*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_DATA_REG, &tmp);
2850*4882a593Smuzhiyun regs_buff[num++] = tmp;
2851*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_MPHY_CONTROL_REG, &tmp);
2852*4882a593Smuzhiyun regs_buff[num++] = tmp;
2853*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_LOOPBACK_CONTROL, &tmp);
2854*4882a593Smuzhiyun regs_buff[num++] = tmp;
2855*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_LOOPBACK_CONTROL + 1, &tmp);
2856*4882a593Smuzhiyun regs_buff[num++] = tmp;
2857*4882a593Smuzhiyun
2858*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_REGISTER_MGMT_CONTROL, &tmp);
2859*4882a593Smuzhiyun regs_buff[num++] = tmp;
2860*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_CONFIG, &tmp);
2861*4882a593Smuzhiyun regs_buff[num++] = tmp;
2862*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_PHY_CONTROL, &tmp);
2863*4882a593Smuzhiyun regs_buff[num++] = tmp;
2864*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_INTERRUPT_MASK, &tmp);
2865*4882a593Smuzhiyun regs_buff[num++] = tmp;
2866*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_INTERRUPT_STATUS, &tmp);
2867*4882a593Smuzhiyun regs_buff[num++] = tmp;
2868*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_PHY_STATUS, &tmp);
2869*4882a593Smuzhiyun regs_buff[num++] = tmp;
2870*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_LED_1, &tmp);
2871*4882a593Smuzhiyun regs_buff[num++] = tmp;
2872*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_LED_2, &tmp);
2873*4882a593Smuzhiyun regs_buff[num++] = tmp;
2874*4882a593Smuzhiyun
2875*4882a593Smuzhiyun /* Global regs */
2876*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.txq_start_addr);
2877*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.txq_end_addr);
2878*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.rxq_start_addr);
2879*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.rxq_end_addr);
2880*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.pm_csr);
2881*4882a593Smuzhiyun regs_buff[num++] = adapter->stats.interrupt_status;
2882*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.int_mask);
2883*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.int_alias_clr_en);
2884*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.int_status_alias);
2885*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.sw_reset);
2886*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.slv_timer);
2887*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.msi_config);
2888*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.loopback);
2889*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->global.watchdog_timer);
2890*4882a593Smuzhiyun
2891*4882a593Smuzhiyun /* TXDMA regs */
2892*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.csr);
2893*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.pr_base_hi);
2894*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.pr_base_lo);
2895*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.pr_num_des);
2896*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.txq_wr_addr);
2897*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.txq_wr_addr_ext);
2898*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.txq_rd_addr);
2899*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.dma_wb_base_hi);
2900*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.dma_wb_base_lo);
2901*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.service_request);
2902*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.service_complete);
2903*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.cache_rd_index);
2904*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.cache_wr_index);
2905*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.tx_dma_error);
2906*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.desc_abort_cnt);
2907*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.payload_abort_cnt);
2908*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.writeback_abort_cnt);
2909*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.desc_timeout_cnt);
2910*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.payload_timeout_cnt);
2911*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.writeback_timeout_cnt);
2912*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.desc_error_cnt);
2913*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.payload_error_cnt);
2914*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.writeback_error_cnt);
2915*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.dropped_tlp_cnt);
2916*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.new_service_complete);
2917*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->txdma.ethernet_packet_cnt);
2918*4882a593Smuzhiyun
2919*4882a593Smuzhiyun /* RXDMA regs */
2920*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.csr);
2921*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.dma_wb_base_hi);
2922*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.dma_wb_base_lo);
2923*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.num_pkt_done);
2924*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.max_pkt_time);
2925*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.rxq_rd_addr);
2926*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.rxq_rd_addr_ext);
2927*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.rxq_wr_addr);
2928*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.psr_base_hi);
2929*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.psr_base_lo);
2930*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.psr_num_des);
2931*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.psr_avail_offset);
2932*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.psr_full_offset);
2933*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.psr_access_index);
2934*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.psr_min_des);
2935*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr0_base_lo);
2936*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr0_base_hi);
2937*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr0_num_des);
2938*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr0_avail_offset);
2939*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr0_full_offset);
2940*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr0_rd_index);
2941*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr0_min_des);
2942*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr1_base_lo);
2943*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr1_base_hi);
2944*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr1_num_des);
2945*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr1_avail_offset);
2946*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr1_full_offset);
2947*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr1_rd_index);
2948*4882a593Smuzhiyun regs_buff[num++] = readl(&aregs->rxdma.fbr1_min_des);
2949*4882a593Smuzhiyun }
2950*4882a593Smuzhiyun
et131x_get_drvinfo(struct net_device * netdev,struct ethtool_drvinfo * info)2951*4882a593Smuzhiyun static void et131x_get_drvinfo(struct net_device *netdev,
2952*4882a593Smuzhiyun struct ethtool_drvinfo *info)
2953*4882a593Smuzhiyun {
2954*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
2955*4882a593Smuzhiyun
2956*4882a593Smuzhiyun strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
2957*4882a593Smuzhiyun strlcpy(info->bus_info, pci_name(adapter->pdev),
2958*4882a593Smuzhiyun sizeof(info->bus_info));
2959*4882a593Smuzhiyun }
2960*4882a593Smuzhiyun
2961*4882a593Smuzhiyun static const struct ethtool_ops et131x_ethtool_ops = {
2962*4882a593Smuzhiyun .get_drvinfo = et131x_get_drvinfo,
2963*4882a593Smuzhiyun .get_regs_len = et131x_get_regs_len,
2964*4882a593Smuzhiyun .get_regs = et131x_get_regs,
2965*4882a593Smuzhiyun .get_link = ethtool_op_get_link,
2966*4882a593Smuzhiyun .get_link_ksettings = phy_ethtool_get_link_ksettings,
2967*4882a593Smuzhiyun .set_link_ksettings = phy_ethtool_set_link_ksettings,
2968*4882a593Smuzhiyun };
2969*4882a593Smuzhiyun
2970*4882a593Smuzhiyun /* et131x_hwaddr_init - set up the MAC Address */
et131x_hwaddr_init(struct et131x_adapter * adapter)2971*4882a593Smuzhiyun static void et131x_hwaddr_init(struct et131x_adapter *adapter)
2972*4882a593Smuzhiyun {
2973*4882a593Smuzhiyun /* If have our default mac from init and no mac address from
2974*4882a593Smuzhiyun * EEPROM then we need to generate the last octet and set it on the
2975*4882a593Smuzhiyun * device
2976*4882a593Smuzhiyun */
2977*4882a593Smuzhiyun if (is_zero_ether_addr(adapter->rom_addr)) {
2978*4882a593Smuzhiyun /* We need to randomly generate the last octet so we
2979*4882a593Smuzhiyun * decrease our chances of setting the mac address to
2980*4882a593Smuzhiyun * same as another one of our cards in the system
2981*4882a593Smuzhiyun */
2982*4882a593Smuzhiyun get_random_bytes(&adapter->addr[5], 1);
2983*4882a593Smuzhiyun /* We have the default value in the register we are
2984*4882a593Smuzhiyun * working with so we need to copy the current
2985*4882a593Smuzhiyun * address into the permanent address
2986*4882a593Smuzhiyun */
2987*4882a593Smuzhiyun ether_addr_copy(adapter->rom_addr, adapter->addr);
2988*4882a593Smuzhiyun } else {
2989*4882a593Smuzhiyun /* We do not have an override address, so set the
2990*4882a593Smuzhiyun * current address to the permanent address and add
2991*4882a593Smuzhiyun * it to the device
2992*4882a593Smuzhiyun */
2993*4882a593Smuzhiyun ether_addr_copy(adapter->addr, adapter->rom_addr);
2994*4882a593Smuzhiyun }
2995*4882a593Smuzhiyun }
2996*4882a593Smuzhiyun
et131x_pci_init(struct et131x_adapter * adapter,struct pci_dev * pdev)2997*4882a593Smuzhiyun static int et131x_pci_init(struct et131x_adapter *adapter,
2998*4882a593Smuzhiyun struct pci_dev *pdev)
2999*4882a593Smuzhiyun {
3000*4882a593Smuzhiyun u16 max_payload;
3001*4882a593Smuzhiyun int i, rc;
3002*4882a593Smuzhiyun
3003*4882a593Smuzhiyun rc = et131x_init_eeprom(adapter);
3004*4882a593Smuzhiyun if (rc < 0)
3005*4882a593Smuzhiyun goto out;
3006*4882a593Smuzhiyun
3007*4882a593Smuzhiyun if (!pci_is_pcie(pdev)) {
3008*4882a593Smuzhiyun dev_err(&pdev->dev, "Missing PCIe capabilities\n");
3009*4882a593Smuzhiyun goto err_out;
3010*4882a593Smuzhiyun }
3011*4882a593Smuzhiyun
3012*4882a593Smuzhiyun /* Program the Ack/Nak latency and replay timers */
3013*4882a593Smuzhiyun max_payload = pdev->pcie_mpss;
3014*4882a593Smuzhiyun
3015*4882a593Smuzhiyun if (max_payload < 2) {
3016*4882a593Smuzhiyun static const u16 acknak[2] = { 0x76, 0xD0 };
3017*4882a593Smuzhiyun static const u16 replay[2] = { 0x1E0, 0x2ED };
3018*4882a593Smuzhiyun
3019*4882a593Smuzhiyun if (pci_write_config_word(pdev, ET1310_PCI_ACK_NACK,
3020*4882a593Smuzhiyun acknak[max_payload])) {
3021*4882a593Smuzhiyun dev_err(&pdev->dev,
3022*4882a593Smuzhiyun "Could not write PCI config space for ACK/NAK\n");
3023*4882a593Smuzhiyun goto err_out;
3024*4882a593Smuzhiyun }
3025*4882a593Smuzhiyun if (pci_write_config_word(pdev, ET1310_PCI_REPLAY,
3026*4882a593Smuzhiyun replay[max_payload])) {
3027*4882a593Smuzhiyun dev_err(&pdev->dev,
3028*4882a593Smuzhiyun "Could not write PCI config space for Replay Timer\n");
3029*4882a593Smuzhiyun goto err_out;
3030*4882a593Smuzhiyun }
3031*4882a593Smuzhiyun }
3032*4882a593Smuzhiyun
3033*4882a593Smuzhiyun /* l0s and l1 latency timers. We are using default values.
3034*4882a593Smuzhiyun * Representing 001 for L0s and 010 for L1
3035*4882a593Smuzhiyun */
3036*4882a593Smuzhiyun if (pci_write_config_byte(pdev, ET1310_PCI_L0L1LATENCY, 0x11)) {
3037*4882a593Smuzhiyun dev_err(&pdev->dev,
3038*4882a593Smuzhiyun "Could not write PCI config space for Latency Timers\n");
3039*4882a593Smuzhiyun goto err_out;
3040*4882a593Smuzhiyun }
3041*4882a593Smuzhiyun
3042*4882a593Smuzhiyun /* Change the max read size to 2k */
3043*4882a593Smuzhiyun if (pcie_set_readrq(pdev, 2048)) {
3044*4882a593Smuzhiyun dev_err(&pdev->dev,
3045*4882a593Smuzhiyun "Couldn't change PCI config space for Max read size\n");
3046*4882a593Smuzhiyun goto err_out;
3047*4882a593Smuzhiyun }
3048*4882a593Smuzhiyun
3049*4882a593Smuzhiyun /* Get MAC address from config space if an eeprom exists, otherwise
3050*4882a593Smuzhiyun * the MAC address there will not be valid
3051*4882a593Smuzhiyun */
3052*4882a593Smuzhiyun if (!adapter->has_eeprom) {
3053*4882a593Smuzhiyun et131x_hwaddr_init(adapter);
3054*4882a593Smuzhiyun return 0;
3055*4882a593Smuzhiyun }
3056*4882a593Smuzhiyun
3057*4882a593Smuzhiyun for (i = 0; i < ETH_ALEN; i++) {
3058*4882a593Smuzhiyun if (pci_read_config_byte(pdev, ET1310_PCI_MAC_ADDRESS + i,
3059*4882a593Smuzhiyun adapter->rom_addr + i)) {
3060*4882a593Smuzhiyun dev_err(&pdev->dev, "Could not read PCI config space for MAC address\n");
3061*4882a593Smuzhiyun goto err_out;
3062*4882a593Smuzhiyun }
3063*4882a593Smuzhiyun }
3064*4882a593Smuzhiyun ether_addr_copy(adapter->addr, adapter->rom_addr);
3065*4882a593Smuzhiyun out:
3066*4882a593Smuzhiyun return rc;
3067*4882a593Smuzhiyun err_out:
3068*4882a593Smuzhiyun rc = -EIO;
3069*4882a593Smuzhiyun goto out;
3070*4882a593Smuzhiyun }
3071*4882a593Smuzhiyun
3072*4882a593Smuzhiyun /* et131x_error_timer_handler
3073*4882a593Smuzhiyun * @data: timer-specific variable; here a pointer to our adapter structure
3074*4882a593Smuzhiyun *
3075*4882a593Smuzhiyun * The routine called when the error timer expires, to track the number of
3076*4882a593Smuzhiyun * recurring errors.
3077*4882a593Smuzhiyun */
et131x_error_timer_handler(struct timer_list * t)3078*4882a593Smuzhiyun static void et131x_error_timer_handler(struct timer_list *t)
3079*4882a593Smuzhiyun {
3080*4882a593Smuzhiyun struct et131x_adapter *adapter = from_timer(adapter, t, error_timer);
3081*4882a593Smuzhiyun struct phy_device *phydev = adapter->netdev->phydev;
3082*4882a593Smuzhiyun
3083*4882a593Smuzhiyun if (et1310_in_phy_coma(adapter)) {
3084*4882a593Smuzhiyun /* Bring the device immediately out of coma, to
3085*4882a593Smuzhiyun * prevent it from sleeping indefinitely, this
3086*4882a593Smuzhiyun * mechanism could be improved!
3087*4882a593Smuzhiyun */
3088*4882a593Smuzhiyun et1310_disable_phy_coma(adapter);
3089*4882a593Smuzhiyun adapter->boot_coma = 20;
3090*4882a593Smuzhiyun } else {
3091*4882a593Smuzhiyun et1310_update_macstat_host_counters(adapter);
3092*4882a593Smuzhiyun }
3093*4882a593Smuzhiyun
3094*4882a593Smuzhiyun if (!phydev->link && adapter->boot_coma < 11)
3095*4882a593Smuzhiyun adapter->boot_coma++;
3096*4882a593Smuzhiyun
3097*4882a593Smuzhiyun if (adapter->boot_coma == 10) {
3098*4882a593Smuzhiyun if (!phydev->link) {
3099*4882a593Smuzhiyun if (!et1310_in_phy_coma(adapter)) {
3100*4882a593Smuzhiyun /* NOTE - This was originally a 'sync with
3101*4882a593Smuzhiyun * interrupt'. How to do that under Linux?
3102*4882a593Smuzhiyun */
3103*4882a593Smuzhiyun et131x_enable_interrupts(adapter);
3104*4882a593Smuzhiyun et1310_enable_phy_coma(adapter);
3105*4882a593Smuzhiyun }
3106*4882a593Smuzhiyun }
3107*4882a593Smuzhiyun }
3108*4882a593Smuzhiyun
3109*4882a593Smuzhiyun /* This is a periodic timer, so reschedule */
3110*4882a593Smuzhiyun mod_timer(&adapter->error_timer, jiffies +
3111*4882a593Smuzhiyun msecs_to_jiffies(TX_ERROR_PERIOD));
3112*4882a593Smuzhiyun }
3113*4882a593Smuzhiyun
et131x_adapter_memory_free(struct et131x_adapter * adapter)3114*4882a593Smuzhiyun static void et131x_adapter_memory_free(struct et131x_adapter *adapter)
3115*4882a593Smuzhiyun {
3116*4882a593Smuzhiyun et131x_tx_dma_memory_free(adapter);
3117*4882a593Smuzhiyun et131x_rx_dma_memory_free(adapter);
3118*4882a593Smuzhiyun }
3119*4882a593Smuzhiyun
et131x_adapter_memory_alloc(struct et131x_adapter * adapter)3120*4882a593Smuzhiyun static int et131x_adapter_memory_alloc(struct et131x_adapter *adapter)
3121*4882a593Smuzhiyun {
3122*4882a593Smuzhiyun int status;
3123*4882a593Smuzhiyun
3124*4882a593Smuzhiyun status = et131x_tx_dma_memory_alloc(adapter);
3125*4882a593Smuzhiyun if (status) {
3126*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
3127*4882a593Smuzhiyun "et131x_tx_dma_memory_alloc FAILED\n");
3128*4882a593Smuzhiyun et131x_tx_dma_memory_free(adapter);
3129*4882a593Smuzhiyun return status;
3130*4882a593Smuzhiyun }
3131*4882a593Smuzhiyun
3132*4882a593Smuzhiyun status = et131x_rx_dma_memory_alloc(adapter);
3133*4882a593Smuzhiyun if (status) {
3134*4882a593Smuzhiyun dev_err(&adapter->pdev->dev,
3135*4882a593Smuzhiyun "et131x_rx_dma_memory_alloc FAILED\n");
3136*4882a593Smuzhiyun et131x_adapter_memory_free(adapter);
3137*4882a593Smuzhiyun return status;
3138*4882a593Smuzhiyun }
3139*4882a593Smuzhiyun
3140*4882a593Smuzhiyun status = et131x_init_recv(adapter);
3141*4882a593Smuzhiyun if (status) {
3142*4882a593Smuzhiyun dev_err(&adapter->pdev->dev, "et131x_init_recv FAILED\n");
3143*4882a593Smuzhiyun et131x_adapter_memory_free(adapter);
3144*4882a593Smuzhiyun }
3145*4882a593Smuzhiyun return status;
3146*4882a593Smuzhiyun }
3147*4882a593Smuzhiyun
et131x_adjust_link(struct net_device * netdev)3148*4882a593Smuzhiyun static void et131x_adjust_link(struct net_device *netdev)
3149*4882a593Smuzhiyun {
3150*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3151*4882a593Smuzhiyun struct phy_device *phydev = netdev->phydev;
3152*4882a593Smuzhiyun
3153*4882a593Smuzhiyun if (!phydev)
3154*4882a593Smuzhiyun return;
3155*4882a593Smuzhiyun if (phydev->link == adapter->link)
3156*4882a593Smuzhiyun return;
3157*4882a593Smuzhiyun
3158*4882a593Smuzhiyun /* Check to see if we are in coma mode and if
3159*4882a593Smuzhiyun * so, disable it because we will not be able
3160*4882a593Smuzhiyun * to read PHY values until we are out.
3161*4882a593Smuzhiyun */
3162*4882a593Smuzhiyun if (et1310_in_phy_coma(adapter))
3163*4882a593Smuzhiyun et1310_disable_phy_coma(adapter);
3164*4882a593Smuzhiyun
3165*4882a593Smuzhiyun adapter->link = phydev->link;
3166*4882a593Smuzhiyun phy_print_status(phydev);
3167*4882a593Smuzhiyun
3168*4882a593Smuzhiyun if (phydev->link) {
3169*4882a593Smuzhiyun adapter->boot_coma = 20;
3170*4882a593Smuzhiyun if (phydev->speed == SPEED_10) {
3171*4882a593Smuzhiyun u16 register18;
3172*4882a593Smuzhiyun
3173*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_MPHY_CONTROL_REG,
3174*4882a593Smuzhiyun ®ister18);
3175*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3176*4882a593Smuzhiyun PHY_MPHY_CONTROL_REG,
3177*4882a593Smuzhiyun register18 | 0x4);
3178*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3179*4882a593Smuzhiyun PHY_INDEX_REG, register18 | 0x8402);
3180*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3181*4882a593Smuzhiyun PHY_DATA_REG, register18 | 511);
3182*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3183*4882a593Smuzhiyun PHY_MPHY_CONTROL_REG, register18);
3184*4882a593Smuzhiyun }
3185*4882a593Smuzhiyun
3186*4882a593Smuzhiyun et1310_config_flow_control(adapter);
3187*4882a593Smuzhiyun
3188*4882a593Smuzhiyun if (phydev->speed == SPEED_1000 &&
3189*4882a593Smuzhiyun adapter->registry_jumbo_packet > 2048) {
3190*4882a593Smuzhiyun u16 reg;
3191*4882a593Smuzhiyun
3192*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_CONFIG, ®);
3193*4882a593Smuzhiyun reg &= ~ET_PHY_CONFIG_TX_FIFO_DEPTH;
3194*4882a593Smuzhiyun reg |= ET_PHY_CONFIG_FIFO_DEPTH_32;
3195*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3196*4882a593Smuzhiyun PHY_CONFIG, reg);
3197*4882a593Smuzhiyun }
3198*4882a593Smuzhiyun
3199*4882a593Smuzhiyun et131x_set_rx_dma_timer(adapter);
3200*4882a593Smuzhiyun et1310_config_mac_regs2(adapter);
3201*4882a593Smuzhiyun } else {
3202*4882a593Smuzhiyun adapter->boot_coma = 0;
3203*4882a593Smuzhiyun
3204*4882a593Smuzhiyun if (phydev->speed == SPEED_10) {
3205*4882a593Smuzhiyun u16 register18;
3206*4882a593Smuzhiyun
3207*4882a593Smuzhiyun et131x_mii_read(adapter, PHY_MPHY_CONTROL_REG,
3208*4882a593Smuzhiyun ®ister18);
3209*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3210*4882a593Smuzhiyun PHY_MPHY_CONTROL_REG,
3211*4882a593Smuzhiyun register18 | 0x4);
3212*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3213*4882a593Smuzhiyun PHY_INDEX_REG, register18 | 0x8402);
3214*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3215*4882a593Smuzhiyun PHY_DATA_REG, register18 | 511);
3216*4882a593Smuzhiyun et131x_mii_write(adapter, phydev->mdio.addr,
3217*4882a593Smuzhiyun PHY_MPHY_CONTROL_REG, register18);
3218*4882a593Smuzhiyun }
3219*4882a593Smuzhiyun
3220*4882a593Smuzhiyun et131x_free_busy_send_packets(adapter);
3221*4882a593Smuzhiyun et131x_init_send(adapter);
3222*4882a593Smuzhiyun
3223*4882a593Smuzhiyun /* Bring the device back to the state it was during
3224*4882a593Smuzhiyun * init prior to autonegotiation being complete. This
3225*4882a593Smuzhiyun * way, when we get the auto-neg complete interrupt,
3226*4882a593Smuzhiyun * we can complete init by calling config_mac_regs2.
3227*4882a593Smuzhiyun */
3228*4882a593Smuzhiyun et131x_soft_reset(adapter);
3229*4882a593Smuzhiyun
3230*4882a593Smuzhiyun et131x_adapter_setup(adapter);
3231*4882a593Smuzhiyun
3232*4882a593Smuzhiyun et131x_disable_txrx(netdev);
3233*4882a593Smuzhiyun et131x_enable_txrx(netdev);
3234*4882a593Smuzhiyun }
3235*4882a593Smuzhiyun }
3236*4882a593Smuzhiyun
et131x_mii_probe(struct net_device * netdev)3237*4882a593Smuzhiyun static int et131x_mii_probe(struct net_device *netdev)
3238*4882a593Smuzhiyun {
3239*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3240*4882a593Smuzhiyun struct phy_device *phydev = NULL;
3241*4882a593Smuzhiyun
3242*4882a593Smuzhiyun phydev = phy_find_first(adapter->mii_bus);
3243*4882a593Smuzhiyun if (!phydev) {
3244*4882a593Smuzhiyun dev_err(&adapter->pdev->dev, "no PHY found\n");
3245*4882a593Smuzhiyun return -ENODEV;
3246*4882a593Smuzhiyun }
3247*4882a593Smuzhiyun
3248*4882a593Smuzhiyun phydev = phy_connect(netdev, phydev_name(phydev),
3249*4882a593Smuzhiyun &et131x_adjust_link, PHY_INTERFACE_MODE_MII);
3250*4882a593Smuzhiyun
3251*4882a593Smuzhiyun if (IS_ERR(phydev)) {
3252*4882a593Smuzhiyun dev_err(&adapter->pdev->dev, "Could not attach to PHY\n");
3253*4882a593Smuzhiyun return PTR_ERR(phydev);
3254*4882a593Smuzhiyun }
3255*4882a593Smuzhiyun
3256*4882a593Smuzhiyun phy_set_max_speed(phydev, SPEED_100);
3257*4882a593Smuzhiyun
3258*4882a593Smuzhiyun if (adapter->pdev->device != ET131X_PCI_DEVICE_ID_FAST)
3259*4882a593Smuzhiyun phy_set_max_speed(phydev, SPEED_1000);
3260*4882a593Smuzhiyun
3261*4882a593Smuzhiyun phydev->autoneg = AUTONEG_ENABLE;
3262*4882a593Smuzhiyun
3263*4882a593Smuzhiyun phy_attached_info(phydev);
3264*4882a593Smuzhiyun
3265*4882a593Smuzhiyun return 0;
3266*4882a593Smuzhiyun }
3267*4882a593Smuzhiyun
et131x_adapter_init(struct net_device * netdev,struct pci_dev * pdev)3268*4882a593Smuzhiyun static struct et131x_adapter *et131x_adapter_init(struct net_device *netdev,
3269*4882a593Smuzhiyun struct pci_dev *pdev)
3270*4882a593Smuzhiyun {
3271*4882a593Smuzhiyun static const u8 default_mac[] = { 0x00, 0x05, 0x3d, 0x00, 0x02, 0x00 };
3272*4882a593Smuzhiyun
3273*4882a593Smuzhiyun struct et131x_adapter *adapter;
3274*4882a593Smuzhiyun
3275*4882a593Smuzhiyun adapter = netdev_priv(netdev);
3276*4882a593Smuzhiyun adapter->pdev = pci_dev_get(pdev);
3277*4882a593Smuzhiyun adapter->netdev = netdev;
3278*4882a593Smuzhiyun
3279*4882a593Smuzhiyun spin_lock_init(&adapter->tcb_send_qlock);
3280*4882a593Smuzhiyun spin_lock_init(&adapter->tcb_ready_qlock);
3281*4882a593Smuzhiyun spin_lock_init(&adapter->rcv_lock);
3282*4882a593Smuzhiyun
3283*4882a593Smuzhiyun adapter->registry_jumbo_packet = 1514; /* 1514-9216 */
3284*4882a593Smuzhiyun
3285*4882a593Smuzhiyun ether_addr_copy(adapter->addr, default_mac);
3286*4882a593Smuzhiyun
3287*4882a593Smuzhiyun return adapter;
3288*4882a593Smuzhiyun }
3289*4882a593Smuzhiyun
et131x_pci_remove(struct pci_dev * pdev)3290*4882a593Smuzhiyun static void et131x_pci_remove(struct pci_dev *pdev)
3291*4882a593Smuzhiyun {
3292*4882a593Smuzhiyun struct net_device *netdev = pci_get_drvdata(pdev);
3293*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3294*4882a593Smuzhiyun
3295*4882a593Smuzhiyun unregister_netdev(netdev);
3296*4882a593Smuzhiyun netif_napi_del(&adapter->napi);
3297*4882a593Smuzhiyun phy_disconnect(netdev->phydev);
3298*4882a593Smuzhiyun mdiobus_unregister(adapter->mii_bus);
3299*4882a593Smuzhiyun mdiobus_free(adapter->mii_bus);
3300*4882a593Smuzhiyun
3301*4882a593Smuzhiyun et131x_adapter_memory_free(adapter);
3302*4882a593Smuzhiyun iounmap(adapter->regs);
3303*4882a593Smuzhiyun pci_dev_put(pdev);
3304*4882a593Smuzhiyun
3305*4882a593Smuzhiyun free_netdev(netdev);
3306*4882a593Smuzhiyun pci_release_regions(pdev);
3307*4882a593Smuzhiyun pci_disable_device(pdev);
3308*4882a593Smuzhiyun }
3309*4882a593Smuzhiyun
et131x_up(struct net_device * netdev)3310*4882a593Smuzhiyun static void et131x_up(struct net_device *netdev)
3311*4882a593Smuzhiyun {
3312*4882a593Smuzhiyun et131x_enable_txrx(netdev);
3313*4882a593Smuzhiyun phy_start(netdev->phydev);
3314*4882a593Smuzhiyun }
3315*4882a593Smuzhiyun
et131x_down(struct net_device * netdev)3316*4882a593Smuzhiyun static void et131x_down(struct net_device *netdev)
3317*4882a593Smuzhiyun {
3318*4882a593Smuzhiyun /* Save the timestamp for the TX watchdog, prevent a timeout */
3319*4882a593Smuzhiyun netif_trans_update(netdev);
3320*4882a593Smuzhiyun
3321*4882a593Smuzhiyun phy_stop(netdev->phydev);
3322*4882a593Smuzhiyun et131x_disable_txrx(netdev);
3323*4882a593Smuzhiyun }
3324*4882a593Smuzhiyun
3325*4882a593Smuzhiyun #ifdef CONFIG_PM_SLEEP
et131x_suspend(struct device * dev)3326*4882a593Smuzhiyun static int et131x_suspend(struct device *dev)
3327*4882a593Smuzhiyun {
3328*4882a593Smuzhiyun struct pci_dev *pdev = to_pci_dev(dev);
3329*4882a593Smuzhiyun struct net_device *netdev = pci_get_drvdata(pdev);
3330*4882a593Smuzhiyun
3331*4882a593Smuzhiyun if (netif_running(netdev)) {
3332*4882a593Smuzhiyun netif_device_detach(netdev);
3333*4882a593Smuzhiyun et131x_down(netdev);
3334*4882a593Smuzhiyun pci_save_state(pdev);
3335*4882a593Smuzhiyun }
3336*4882a593Smuzhiyun
3337*4882a593Smuzhiyun return 0;
3338*4882a593Smuzhiyun }
3339*4882a593Smuzhiyun
et131x_resume(struct device * dev)3340*4882a593Smuzhiyun static int et131x_resume(struct device *dev)
3341*4882a593Smuzhiyun {
3342*4882a593Smuzhiyun struct pci_dev *pdev = to_pci_dev(dev);
3343*4882a593Smuzhiyun struct net_device *netdev = pci_get_drvdata(pdev);
3344*4882a593Smuzhiyun
3345*4882a593Smuzhiyun if (netif_running(netdev)) {
3346*4882a593Smuzhiyun pci_restore_state(pdev);
3347*4882a593Smuzhiyun et131x_up(netdev);
3348*4882a593Smuzhiyun netif_device_attach(netdev);
3349*4882a593Smuzhiyun }
3350*4882a593Smuzhiyun
3351*4882a593Smuzhiyun return 0;
3352*4882a593Smuzhiyun }
3353*4882a593Smuzhiyun #endif
3354*4882a593Smuzhiyun
3355*4882a593Smuzhiyun static SIMPLE_DEV_PM_OPS(et131x_pm_ops, et131x_suspend, et131x_resume);
3356*4882a593Smuzhiyun
et131x_isr(int irq,void * dev_id)3357*4882a593Smuzhiyun static irqreturn_t et131x_isr(int irq, void *dev_id)
3358*4882a593Smuzhiyun {
3359*4882a593Smuzhiyun bool handled = true;
3360*4882a593Smuzhiyun bool enable_interrupts = true;
3361*4882a593Smuzhiyun struct net_device *netdev = dev_id;
3362*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3363*4882a593Smuzhiyun struct address_map __iomem *iomem = adapter->regs;
3364*4882a593Smuzhiyun struct rx_ring *rx_ring = &adapter->rx_ring;
3365*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
3366*4882a593Smuzhiyun u32 status;
3367*4882a593Smuzhiyun
3368*4882a593Smuzhiyun if (!netif_device_present(netdev)) {
3369*4882a593Smuzhiyun handled = false;
3370*4882a593Smuzhiyun enable_interrupts = false;
3371*4882a593Smuzhiyun goto out;
3372*4882a593Smuzhiyun }
3373*4882a593Smuzhiyun
3374*4882a593Smuzhiyun et131x_disable_interrupts(adapter);
3375*4882a593Smuzhiyun
3376*4882a593Smuzhiyun status = readl(&adapter->regs->global.int_status);
3377*4882a593Smuzhiyun
3378*4882a593Smuzhiyun if (adapter->flow == FLOW_TXONLY || adapter->flow == FLOW_BOTH)
3379*4882a593Smuzhiyun status &= ~INT_MASK_ENABLE;
3380*4882a593Smuzhiyun else
3381*4882a593Smuzhiyun status &= ~INT_MASK_ENABLE_NO_FLOW;
3382*4882a593Smuzhiyun
3383*4882a593Smuzhiyun /* Make sure this is our interrupt */
3384*4882a593Smuzhiyun if (!status) {
3385*4882a593Smuzhiyun handled = false;
3386*4882a593Smuzhiyun et131x_enable_interrupts(adapter);
3387*4882a593Smuzhiyun goto out;
3388*4882a593Smuzhiyun }
3389*4882a593Smuzhiyun
3390*4882a593Smuzhiyun /* This is our interrupt, so process accordingly */
3391*4882a593Smuzhiyun if (status & ET_INTR_WATCHDOG) {
3392*4882a593Smuzhiyun struct tcb *tcb = tx_ring->send_head;
3393*4882a593Smuzhiyun
3394*4882a593Smuzhiyun if (tcb)
3395*4882a593Smuzhiyun if (++tcb->stale > 1)
3396*4882a593Smuzhiyun status |= ET_INTR_TXDMA_ISR;
3397*4882a593Smuzhiyun
3398*4882a593Smuzhiyun if (rx_ring->unfinished_receives)
3399*4882a593Smuzhiyun status |= ET_INTR_RXDMA_XFR_DONE;
3400*4882a593Smuzhiyun else if (tcb == NULL)
3401*4882a593Smuzhiyun writel(0, &adapter->regs->global.watchdog_timer);
3402*4882a593Smuzhiyun
3403*4882a593Smuzhiyun status &= ~ET_INTR_WATCHDOG;
3404*4882a593Smuzhiyun }
3405*4882a593Smuzhiyun
3406*4882a593Smuzhiyun if (status & (ET_INTR_RXDMA_XFR_DONE | ET_INTR_TXDMA_ISR)) {
3407*4882a593Smuzhiyun enable_interrupts = false;
3408*4882a593Smuzhiyun napi_schedule(&adapter->napi);
3409*4882a593Smuzhiyun }
3410*4882a593Smuzhiyun
3411*4882a593Smuzhiyun status &= ~(ET_INTR_TXDMA_ISR | ET_INTR_RXDMA_XFR_DONE);
3412*4882a593Smuzhiyun
3413*4882a593Smuzhiyun if (!status)
3414*4882a593Smuzhiyun goto out;
3415*4882a593Smuzhiyun
3416*4882a593Smuzhiyun if (status & ET_INTR_TXDMA_ERR) {
3417*4882a593Smuzhiyun /* Following read also clears the register (COR) */
3418*4882a593Smuzhiyun u32 txdma_err = readl(&iomem->txdma.tx_dma_error);
3419*4882a593Smuzhiyun
3420*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev,
3421*4882a593Smuzhiyun "TXDMA_ERR interrupt, error = %d\n",
3422*4882a593Smuzhiyun txdma_err);
3423*4882a593Smuzhiyun }
3424*4882a593Smuzhiyun
3425*4882a593Smuzhiyun if (status & (ET_INTR_RXDMA_FB_R0_LOW | ET_INTR_RXDMA_FB_R1_LOW)) {
3426*4882a593Smuzhiyun /* This indicates the number of unused buffers in RXDMA free
3427*4882a593Smuzhiyun * buffer ring 0 is <= the limit you programmed. Free buffer
3428*4882a593Smuzhiyun * resources need to be returned. Free buffers are consumed as
3429*4882a593Smuzhiyun * packets are passed from the network to the host. The host
3430*4882a593Smuzhiyun * becomes aware of the packets from the contents of the packet
3431*4882a593Smuzhiyun * status ring. This ring is queried when the packet done
3432*4882a593Smuzhiyun * interrupt occurs. Packets are then passed to the OS. When
3433*4882a593Smuzhiyun * the OS is done with the packets the resources can be
3434*4882a593Smuzhiyun * returned to the ET1310 for re-use. This interrupt is one
3435*4882a593Smuzhiyun * method of returning resources.
3436*4882a593Smuzhiyun */
3437*4882a593Smuzhiyun
3438*4882a593Smuzhiyun /* If the user has flow control on, then we will
3439*4882a593Smuzhiyun * send a pause packet, otherwise just exit
3440*4882a593Smuzhiyun */
3441*4882a593Smuzhiyun if (adapter->flow == FLOW_TXONLY || adapter->flow == FLOW_BOTH) {
3442*4882a593Smuzhiyun /* Tell the device to send a pause packet via the back
3443*4882a593Smuzhiyun * pressure register (bp req and bp xon/xoff)
3444*4882a593Smuzhiyun */
3445*4882a593Smuzhiyun if (!et1310_in_phy_coma(adapter))
3446*4882a593Smuzhiyun writel(3, &iomem->txmac.bp_ctrl);
3447*4882a593Smuzhiyun }
3448*4882a593Smuzhiyun }
3449*4882a593Smuzhiyun
3450*4882a593Smuzhiyun /* Handle Packet Status Ring Low Interrupt */
3451*4882a593Smuzhiyun if (status & ET_INTR_RXDMA_STAT_LOW) {
3452*4882a593Smuzhiyun /* Same idea as with the two Free Buffer Rings. Packets going
3453*4882a593Smuzhiyun * from the network to the host each consume a free buffer
3454*4882a593Smuzhiyun * resource and a packet status resource. These resources are
3455*4882a593Smuzhiyun * passed to the OS. When the OS is done with the resources,
3456*4882a593Smuzhiyun * they need to be returned to the ET1310. This is one method
3457*4882a593Smuzhiyun * of returning the resources.
3458*4882a593Smuzhiyun */
3459*4882a593Smuzhiyun }
3460*4882a593Smuzhiyun
3461*4882a593Smuzhiyun if (status & ET_INTR_RXDMA_ERR) {
3462*4882a593Smuzhiyun /* The rxdma_error interrupt is sent when a time-out on a
3463*4882a593Smuzhiyun * request issued by the JAGCore has occurred or a completion is
3464*4882a593Smuzhiyun * returned with an un-successful status. In both cases the
3465*4882a593Smuzhiyun * request is considered complete. The JAGCore will
3466*4882a593Smuzhiyun * automatically re-try the request in question. Normally
3467*4882a593Smuzhiyun * information on events like these are sent to the host using
3468*4882a593Smuzhiyun * the "Advanced Error Reporting" capability. This interrupt is
3469*4882a593Smuzhiyun * another way of getting similar information. The only thing
3470*4882a593Smuzhiyun * required is to clear the interrupt by reading the ISR in the
3471*4882a593Smuzhiyun * global resources. The JAGCore will do a re-try on the
3472*4882a593Smuzhiyun * request. Normally you should never see this interrupt. If
3473*4882a593Smuzhiyun * you start to see this interrupt occurring frequently then
3474*4882a593Smuzhiyun * something bad has occurred. A reset might be the thing to do.
3475*4882a593Smuzhiyun */
3476*4882a593Smuzhiyun /* TRAP();*/
3477*4882a593Smuzhiyun
3478*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev, "RxDMA_ERR interrupt, error %x\n",
3479*4882a593Smuzhiyun readl(&iomem->txmac.tx_test));
3480*4882a593Smuzhiyun }
3481*4882a593Smuzhiyun
3482*4882a593Smuzhiyun /* Handle the Wake on LAN Event */
3483*4882a593Smuzhiyun if (status & ET_INTR_WOL) {
3484*4882a593Smuzhiyun /* This is a secondary interrupt for wake on LAN. The driver
3485*4882a593Smuzhiyun * should never see this, if it does, something serious is
3486*4882a593Smuzhiyun * wrong.
3487*4882a593Smuzhiyun */
3488*4882a593Smuzhiyun dev_err(&adapter->pdev->dev, "WAKE_ON_LAN interrupt\n");
3489*4882a593Smuzhiyun }
3490*4882a593Smuzhiyun
3491*4882a593Smuzhiyun if (status & ET_INTR_TXMAC) {
3492*4882a593Smuzhiyun u32 err = readl(&iomem->txmac.err);
3493*4882a593Smuzhiyun
3494*4882a593Smuzhiyun /* When any of the errors occur and TXMAC generates an
3495*4882a593Smuzhiyun * interrupt to report these errors, it usually means that
3496*4882a593Smuzhiyun * TXMAC has detected an error in the data stream retrieved
3497*4882a593Smuzhiyun * from the on-chip Tx Q. All of these errors are catastrophic
3498*4882a593Smuzhiyun * and TXMAC won't be able to recover data when these errors
3499*4882a593Smuzhiyun * occur. In a nutshell, the whole Tx path will have to be reset
3500*4882a593Smuzhiyun * and re-configured afterwards.
3501*4882a593Smuzhiyun */
3502*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev, "TXMAC interrupt, error 0x%08x\n",
3503*4882a593Smuzhiyun err);
3504*4882a593Smuzhiyun
3505*4882a593Smuzhiyun /* If we are debugging, we want to see this error, otherwise we
3506*4882a593Smuzhiyun * just want the device to be reset and continue
3507*4882a593Smuzhiyun */
3508*4882a593Smuzhiyun }
3509*4882a593Smuzhiyun
3510*4882a593Smuzhiyun if (status & ET_INTR_RXMAC) {
3511*4882a593Smuzhiyun /* These interrupts are catastrophic to the device, what we need
3512*4882a593Smuzhiyun * to do is disable the interrupts and set the flag to cause us
3513*4882a593Smuzhiyun * to reset so we can solve this issue.
3514*4882a593Smuzhiyun */
3515*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev,
3516*4882a593Smuzhiyun "RXMAC interrupt, error 0x%08x. Requesting reset\n",
3517*4882a593Smuzhiyun readl(&iomem->rxmac.err_reg));
3518*4882a593Smuzhiyun
3519*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev,
3520*4882a593Smuzhiyun "Enable 0x%08x, Diag 0x%08x\n",
3521*4882a593Smuzhiyun readl(&iomem->rxmac.ctrl),
3522*4882a593Smuzhiyun readl(&iomem->rxmac.rxq_diag));
3523*4882a593Smuzhiyun
3524*4882a593Smuzhiyun /* If we are debugging, we want to see this error, otherwise we
3525*4882a593Smuzhiyun * just want the device to be reset and continue
3526*4882a593Smuzhiyun */
3527*4882a593Smuzhiyun }
3528*4882a593Smuzhiyun
3529*4882a593Smuzhiyun if (status & ET_INTR_MAC_STAT) {
3530*4882a593Smuzhiyun /* This means at least one of the un-masked counters in the
3531*4882a593Smuzhiyun * MAC_STAT block has rolled over. Use this to maintain the top,
3532*4882a593Smuzhiyun * software managed bits of the counter(s).
3533*4882a593Smuzhiyun */
3534*4882a593Smuzhiyun et1310_handle_macstat_interrupt(adapter);
3535*4882a593Smuzhiyun }
3536*4882a593Smuzhiyun
3537*4882a593Smuzhiyun if (status & ET_INTR_SLV_TIMEOUT) {
3538*4882a593Smuzhiyun /* This means a timeout has occurred on a read or write request
3539*4882a593Smuzhiyun * to one of the JAGCore registers. The Global Resources block
3540*4882a593Smuzhiyun * has terminated the request and on a read request, returned a
3541*4882a593Smuzhiyun * "fake" value. The most likely reasons are: Bad Address or the
3542*4882a593Smuzhiyun * addressed module is in a power-down state and can't respond.
3543*4882a593Smuzhiyun */
3544*4882a593Smuzhiyun }
3545*4882a593Smuzhiyun
3546*4882a593Smuzhiyun out:
3547*4882a593Smuzhiyun if (enable_interrupts)
3548*4882a593Smuzhiyun et131x_enable_interrupts(adapter);
3549*4882a593Smuzhiyun
3550*4882a593Smuzhiyun return IRQ_RETVAL(handled);
3551*4882a593Smuzhiyun }
3552*4882a593Smuzhiyun
et131x_poll(struct napi_struct * napi,int budget)3553*4882a593Smuzhiyun static int et131x_poll(struct napi_struct *napi, int budget)
3554*4882a593Smuzhiyun {
3555*4882a593Smuzhiyun struct et131x_adapter *adapter =
3556*4882a593Smuzhiyun container_of(napi, struct et131x_adapter, napi);
3557*4882a593Smuzhiyun int work_done = et131x_handle_recv_pkts(adapter, budget);
3558*4882a593Smuzhiyun
3559*4882a593Smuzhiyun et131x_handle_send_pkts(adapter);
3560*4882a593Smuzhiyun
3561*4882a593Smuzhiyun if (work_done < budget) {
3562*4882a593Smuzhiyun napi_complete_done(&adapter->napi, work_done);
3563*4882a593Smuzhiyun et131x_enable_interrupts(adapter);
3564*4882a593Smuzhiyun }
3565*4882a593Smuzhiyun
3566*4882a593Smuzhiyun return work_done;
3567*4882a593Smuzhiyun }
3568*4882a593Smuzhiyun
3569*4882a593Smuzhiyun /* et131x_stats - Return the current device statistics */
et131x_stats(struct net_device * netdev)3570*4882a593Smuzhiyun static struct net_device_stats *et131x_stats(struct net_device *netdev)
3571*4882a593Smuzhiyun {
3572*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3573*4882a593Smuzhiyun struct net_device_stats *stats = &adapter->netdev->stats;
3574*4882a593Smuzhiyun struct ce_stats *devstat = &adapter->stats;
3575*4882a593Smuzhiyun
3576*4882a593Smuzhiyun stats->rx_errors = devstat->rx_length_errs +
3577*4882a593Smuzhiyun devstat->rx_align_errs +
3578*4882a593Smuzhiyun devstat->rx_crc_errs +
3579*4882a593Smuzhiyun devstat->rx_code_violations +
3580*4882a593Smuzhiyun devstat->rx_other_errs;
3581*4882a593Smuzhiyun stats->tx_errors = devstat->tx_max_pkt_errs;
3582*4882a593Smuzhiyun stats->multicast = devstat->multicast_pkts_rcvd;
3583*4882a593Smuzhiyun stats->collisions = devstat->tx_collisions;
3584*4882a593Smuzhiyun
3585*4882a593Smuzhiyun stats->rx_length_errors = devstat->rx_length_errs;
3586*4882a593Smuzhiyun stats->rx_over_errors = devstat->rx_overflows;
3587*4882a593Smuzhiyun stats->rx_crc_errors = devstat->rx_crc_errs;
3588*4882a593Smuzhiyun stats->rx_dropped = devstat->rcvd_pkts_dropped;
3589*4882a593Smuzhiyun
3590*4882a593Smuzhiyun /* NOTE: Not used, can't find analogous statistics */
3591*4882a593Smuzhiyun /* stats->rx_frame_errors = devstat->; */
3592*4882a593Smuzhiyun /* stats->rx_fifo_errors = devstat->; */
3593*4882a593Smuzhiyun /* stats->rx_missed_errors = devstat->; */
3594*4882a593Smuzhiyun
3595*4882a593Smuzhiyun /* stats->tx_aborted_errors = devstat->; */
3596*4882a593Smuzhiyun /* stats->tx_carrier_errors = devstat->; */
3597*4882a593Smuzhiyun /* stats->tx_fifo_errors = devstat->; */
3598*4882a593Smuzhiyun /* stats->tx_heartbeat_errors = devstat->; */
3599*4882a593Smuzhiyun /* stats->tx_window_errors = devstat->; */
3600*4882a593Smuzhiyun return stats;
3601*4882a593Smuzhiyun }
3602*4882a593Smuzhiyun
et131x_open(struct net_device * netdev)3603*4882a593Smuzhiyun static int et131x_open(struct net_device *netdev)
3604*4882a593Smuzhiyun {
3605*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3606*4882a593Smuzhiyun struct pci_dev *pdev = adapter->pdev;
3607*4882a593Smuzhiyun unsigned int irq = pdev->irq;
3608*4882a593Smuzhiyun int result;
3609*4882a593Smuzhiyun
3610*4882a593Smuzhiyun /* Start the timer to track NIC errors */
3611*4882a593Smuzhiyun timer_setup(&adapter->error_timer, et131x_error_timer_handler, 0);
3612*4882a593Smuzhiyun adapter->error_timer.expires = jiffies +
3613*4882a593Smuzhiyun msecs_to_jiffies(TX_ERROR_PERIOD);
3614*4882a593Smuzhiyun add_timer(&adapter->error_timer);
3615*4882a593Smuzhiyun
3616*4882a593Smuzhiyun result = request_irq(irq, et131x_isr,
3617*4882a593Smuzhiyun IRQF_SHARED, netdev->name, netdev);
3618*4882a593Smuzhiyun if (result) {
3619*4882a593Smuzhiyun dev_err(&pdev->dev, "could not register IRQ %d\n", irq);
3620*4882a593Smuzhiyun return result;
3621*4882a593Smuzhiyun }
3622*4882a593Smuzhiyun
3623*4882a593Smuzhiyun adapter->flags |= FMP_ADAPTER_INTERRUPT_IN_USE;
3624*4882a593Smuzhiyun
3625*4882a593Smuzhiyun napi_enable(&adapter->napi);
3626*4882a593Smuzhiyun
3627*4882a593Smuzhiyun et131x_up(netdev);
3628*4882a593Smuzhiyun
3629*4882a593Smuzhiyun return result;
3630*4882a593Smuzhiyun }
3631*4882a593Smuzhiyun
et131x_close(struct net_device * netdev)3632*4882a593Smuzhiyun static int et131x_close(struct net_device *netdev)
3633*4882a593Smuzhiyun {
3634*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3635*4882a593Smuzhiyun
3636*4882a593Smuzhiyun et131x_down(netdev);
3637*4882a593Smuzhiyun napi_disable(&adapter->napi);
3638*4882a593Smuzhiyun
3639*4882a593Smuzhiyun adapter->flags &= ~FMP_ADAPTER_INTERRUPT_IN_USE;
3640*4882a593Smuzhiyun free_irq(adapter->pdev->irq, netdev);
3641*4882a593Smuzhiyun
3642*4882a593Smuzhiyun /* Stop the error timer */
3643*4882a593Smuzhiyun return del_timer_sync(&adapter->error_timer);
3644*4882a593Smuzhiyun }
3645*4882a593Smuzhiyun
3646*4882a593Smuzhiyun /* et131x_set_packet_filter - Configures the Rx Packet filtering */
et131x_set_packet_filter(struct et131x_adapter * adapter)3647*4882a593Smuzhiyun static int et131x_set_packet_filter(struct et131x_adapter *adapter)
3648*4882a593Smuzhiyun {
3649*4882a593Smuzhiyun int filter = adapter->packet_filter;
3650*4882a593Smuzhiyun u32 ctrl;
3651*4882a593Smuzhiyun u32 pf_ctrl;
3652*4882a593Smuzhiyun
3653*4882a593Smuzhiyun ctrl = readl(&adapter->regs->rxmac.ctrl);
3654*4882a593Smuzhiyun pf_ctrl = readl(&adapter->regs->rxmac.pf_ctrl);
3655*4882a593Smuzhiyun
3656*4882a593Smuzhiyun /* Default to disabled packet filtering */
3657*4882a593Smuzhiyun ctrl |= 0x04;
3658*4882a593Smuzhiyun
3659*4882a593Smuzhiyun /* Set us to be in promiscuous mode so we receive everything, this
3660*4882a593Smuzhiyun * is also true when we get a packet filter of 0
3661*4882a593Smuzhiyun */
3662*4882a593Smuzhiyun if ((filter & ET131X_PACKET_TYPE_PROMISCUOUS) || filter == 0)
3663*4882a593Smuzhiyun pf_ctrl &= ~7; /* Clear filter bits */
3664*4882a593Smuzhiyun else {
3665*4882a593Smuzhiyun /* Set us up with Multicast packet filtering. Three cases are
3666*4882a593Smuzhiyun * possible - (1) we have a multi-cast list, (2) we receive ALL
3667*4882a593Smuzhiyun * multicast entries or (3) we receive none.
3668*4882a593Smuzhiyun */
3669*4882a593Smuzhiyun if (filter & ET131X_PACKET_TYPE_ALL_MULTICAST)
3670*4882a593Smuzhiyun pf_ctrl &= ~2; /* Multicast filter bit */
3671*4882a593Smuzhiyun else {
3672*4882a593Smuzhiyun et1310_setup_device_for_multicast(adapter);
3673*4882a593Smuzhiyun pf_ctrl |= 2;
3674*4882a593Smuzhiyun ctrl &= ~0x04;
3675*4882a593Smuzhiyun }
3676*4882a593Smuzhiyun
3677*4882a593Smuzhiyun /* Set us up with Unicast packet filtering */
3678*4882a593Smuzhiyun if (filter & ET131X_PACKET_TYPE_DIRECTED) {
3679*4882a593Smuzhiyun et1310_setup_device_for_unicast(adapter);
3680*4882a593Smuzhiyun pf_ctrl |= 4;
3681*4882a593Smuzhiyun ctrl &= ~0x04;
3682*4882a593Smuzhiyun }
3683*4882a593Smuzhiyun
3684*4882a593Smuzhiyun /* Set us up with Broadcast packet filtering */
3685*4882a593Smuzhiyun if (filter & ET131X_PACKET_TYPE_BROADCAST) {
3686*4882a593Smuzhiyun pf_ctrl |= 1; /* Broadcast filter bit */
3687*4882a593Smuzhiyun ctrl &= ~0x04;
3688*4882a593Smuzhiyun } else {
3689*4882a593Smuzhiyun pf_ctrl &= ~1;
3690*4882a593Smuzhiyun }
3691*4882a593Smuzhiyun
3692*4882a593Smuzhiyun /* Setup the receive mac configuration registers - Packet
3693*4882a593Smuzhiyun * Filter control + the enable / disable for packet filter
3694*4882a593Smuzhiyun * in the control reg.
3695*4882a593Smuzhiyun */
3696*4882a593Smuzhiyun writel(pf_ctrl, &adapter->regs->rxmac.pf_ctrl);
3697*4882a593Smuzhiyun writel(ctrl, &adapter->regs->rxmac.ctrl);
3698*4882a593Smuzhiyun }
3699*4882a593Smuzhiyun return 0;
3700*4882a593Smuzhiyun }
3701*4882a593Smuzhiyun
et131x_multicast(struct net_device * netdev)3702*4882a593Smuzhiyun static void et131x_multicast(struct net_device *netdev)
3703*4882a593Smuzhiyun {
3704*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3705*4882a593Smuzhiyun int packet_filter;
3706*4882a593Smuzhiyun struct netdev_hw_addr *ha;
3707*4882a593Smuzhiyun int i;
3708*4882a593Smuzhiyun
3709*4882a593Smuzhiyun /* Before we modify the platform-independent filter flags, store them
3710*4882a593Smuzhiyun * locally. This allows us to determine if anything's changed and if
3711*4882a593Smuzhiyun * we even need to bother the hardware
3712*4882a593Smuzhiyun */
3713*4882a593Smuzhiyun packet_filter = adapter->packet_filter;
3714*4882a593Smuzhiyun
3715*4882a593Smuzhiyun /* Clear the 'multicast' flag locally; because we only have a single
3716*4882a593Smuzhiyun * flag to check multicast, and multiple multicast addresses can be
3717*4882a593Smuzhiyun * set, this is the easiest way to determine if more than one
3718*4882a593Smuzhiyun * multicast address is being set.
3719*4882a593Smuzhiyun */
3720*4882a593Smuzhiyun packet_filter &= ~ET131X_PACKET_TYPE_MULTICAST;
3721*4882a593Smuzhiyun
3722*4882a593Smuzhiyun /* Check the net_device flags and set the device independent flags
3723*4882a593Smuzhiyun * accordingly
3724*4882a593Smuzhiyun */
3725*4882a593Smuzhiyun if (netdev->flags & IFF_PROMISC)
3726*4882a593Smuzhiyun adapter->packet_filter |= ET131X_PACKET_TYPE_PROMISCUOUS;
3727*4882a593Smuzhiyun else
3728*4882a593Smuzhiyun adapter->packet_filter &= ~ET131X_PACKET_TYPE_PROMISCUOUS;
3729*4882a593Smuzhiyun
3730*4882a593Smuzhiyun if ((netdev->flags & IFF_ALLMULTI) ||
3731*4882a593Smuzhiyun (netdev_mc_count(netdev) > NIC_MAX_MCAST_LIST))
3732*4882a593Smuzhiyun adapter->packet_filter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
3733*4882a593Smuzhiyun
3734*4882a593Smuzhiyun if (netdev_mc_count(netdev) < 1) {
3735*4882a593Smuzhiyun adapter->packet_filter &= ~ET131X_PACKET_TYPE_ALL_MULTICAST;
3736*4882a593Smuzhiyun adapter->packet_filter &= ~ET131X_PACKET_TYPE_MULTICAST;
3737*4882a593Smuzhiyun } else {
3738*4882a593Smuzhiyun adapter->packet_filter |= ET131X_PACKET_TYPE_MULTICAST;
3739*4882a593Smuzhiyun }
3740*4882a593Smuzhiyun
3741*4882a593Smuzhiyun /* Set values in the private adapter struct */
3742*4882a593Smuzhiyun i = 0;
3743*4882a593Smuzhiyun netdev_for_each_mc_addr(ha, netdev) {
3744*4882a593Smuzhiyun if (i == NIC_MAX_MCAST_LIST)
3745*4882a593Smuzhiyun break;
3746*4882a593Smuzhiyun ether_addr_copy(adapter->multicast_list[i++], ha->addr);
3747*4882a593Smuzhiyun }
3748*4882a593Smuzhiyun adapter->multicast_addr_count = i;
3749*4882a593Smuzhiyun
3750*4882a593Smuzhiyun /* Are the new flags different from the previous ones? If not, then no
3751*4882a593Smuzhiyun * action is required
3752*4882a593Smuzhiyun *
3753*4882a593Smuzhiyun * NOTE - This block will always update the multicast_list with the
3754*4882a593Smuzhiyun * hardware, even if the addresses aren't the same.
3755*4882a593Smuzhiyun */
3756*4882a593Smuzhiyun if (packet_filter != adapter->packet_filter)
3757*4882a593Smuzhiyun et131x_set_packet_filter(adapter);
3758*4882a593Smuzhiyun }
3759*4882a593Smuzhiyun
et131x_tx(struct sk_buff * skb,struct net_device * netdev)3760*4882a593Smuzhiyun static netdev_tx_t et131x_tx(struct sk_buff *skb, struct net_device *netdev)
3761*4882a593Smuzhiyun {
3762*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3763*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
3764*4882a593Smuzhiyun
3765*4882a593Smuzhiyun /* stop the queue if it's getting full */
3766*4882a593Smuzhiyun if (tx_ring->used >= NUM_TCB - 1 && !netif_queue_stopped(netdev))
3767*4882a593Smuzhiyun netif_stop_queue(netdev);
3768*4882a593Smuzhiyun
3769*4882a593Smuzhiyun /* Save the timestamp for the TX timeout watchdog */
3770*4882a593Smuzhiyun netif_trans_update(netdev);
3771*4882a593Smuzhiyun
3772*4882a593Smuzhiyun /* TCB is not available */
3773*4882a593Smuzhiyun if (tx_ring->used >= NUM_TCB)
3774*4882a593Smuzhiyun goto drop_err;
3775*4882a593Smuzhiyun
3776*4882a593Smuzhiyun if ((adapter->flags & FMP_ADAPTER_FAIL_SEND_MASK) ||
3777*4882a593Smuzhiyun !netif_carrier_ok(netdev))
3778*4882a593Smuzhiyun goto drop_err;
3779*4882a593Smuzhiyun
3780*4882a593Smuzhiyun if (send_packet(skb, adapter))
3781*4882a593Smuzhiyun goto drop_err;
3782*4882a593Smuzhiyun
3783*4882a593Smuzhiyun return NETDEV_TX_OK;
3784*4882a593Smuzhiyun
3785*4882a593Smuzhiyun drop_err:
3786*4882a593Smuzhiyun dev_kfree_skb_any(skb);
3787*4882a593Smuzhiyun adapter->netdev->stats.tx_dropped++;
3788*4882a593Smuzhiyun return NETDEV_TX_OK;
3789*4882a593Smuzhiyun }
3790*4882a593Smuzhiyun
3791*4882a593Smuzhiyun /* et131x_tx_timeout - Timeout handler
3792*4882a593Smuzhiyun *
3793*4882a593Smuzhiyun * The handler called when a Tx request times out. The timeout period is
3794*4882a593Smuzhiyun * specified by the 'tx_timeo" element in the net_device structure (see
3795*4882a593Smuzhiyun * et131x_alloc_device() to see how this value is set).
3796*4882a593Smuzhiyun */
et131x_tx_timeout(struct net_device * netdev,unsigned int txqueue)3797*4882a593Smuzhiyun static void et131x_tx_timeout(struct net_device *netdev, unsigned int txqueue)
3798*4882a593Smuzhiyun {
3799*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3800*4882a593Smuzhiyun struct tx_ring *tx_ring = &adapter->tx_ring;
3801*4882a593Smuzhiyun struct tcb *tcb;
3802*4882a593Smuzhiyun unsigned long flags;
3803*4882a593Smuzhiyun
3804*4882a593Smuzhiyun /* If the device is closed, ignore the timeout */
3805*4882a593Smuzhiyun if (!(adapter->flags & FMP_ADAPTER_INTERRUPT_IN_USE))
3806*4882a593Smuzhiyun return;
3807*4882a593Smuzhiyun
3808*4882a593Smuzhiyun /* Any nonrecoverable hardware error?
3809*4882a593Smuzhiyun * Checks adapter->flags for any failure in phy reading
3810*4882a593Smuzhiyun */
3811*4882a593Smuzhiyun if (adapter->flags & FMP_ADAPTER_NON_RECOVER_ERROR)
3812*4882a593Smuzhiyun return;
3813*4882a593Smuzhiyun
3814*4882a593Smuzhiyun /* Hardware failure? */
3815*4882a593Smuzhiyun if (adapter->flags & FMP_ADAPTER_HARDWARE_ERROR) {
3816*4882a593Smuzhiyun dev_err(&adapter->pdev->dev, "hardware error - reset\n");
3817*4882a593Smuzhiyun return;
3818*4882a593Smuzhiyun }
3819*4882a593Smuzhiyun
3820*4882a593Smuzhiyun /* Is send stuck? */
3821*4882a593Smuzhiyun spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
3822*4882a593Smuzhiyun tcb = tx_ring->send_head;
3823*4882a593Smuzhiyun spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
3824*4882a593Smuzhiyun
3825*4882a593Smuzhiyun if (tcb) {
3826*4882a593Smuzhiyun tcb->count++;
3827*4882a593Smuzhiyun
3828*4882a593Smuzhiyun if (tcb->count > NIC_SEND_HANG_THRESHOLD) {
3829*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev,
3830*4882a593Smuzhiyun "Send stuck - reset. tcb->WrIndex %x\n",
3831*4882a593Smuzhiyun tcb->index);
3832*4882a593Smuzhiyun
3833*4882a593Smuzhiyun adapter->netdev->stats.tx_errors++;
3834*4882a593Smuzhiyun
3835*4882a593Smuzhiyun /* perform reset of tx/rx */
3836*4882a593Smuzhiyun et131x_disable_txrx(netdev);
3837*4882a593Smuzhiyun et131x_enable_txrx(netdev);
3838*4882a593Smuzhiyun }
3839*4882a593Smuzhiyun }
3840*4882a593Smuzhiyun }
3841*4882a593Smuzhiyun
et131x_change_mtu(struct net_device * netdev,int new_mtu)3842*4882a593Smuzhiyun static int et131x_change_mtu(struct net_device *netdev, int new_mtu)
3843*4882a593Smuzhiyun {
3844*4882a593Smuzhiyun int result = 0;
3845*4882a593Smuzhiyun struct et131x_adapter *adapter = netdev_priv(netdev);
3846*4882a593Smuzhiyun
3847*4882a593Smuzhiyun et131x_disable_txrx(netdev);
3848*4882a593Smuzhiyun
3849*4882a593Smuzhiyun netdev->mtu = new_mtu;
3850*4882a593Smuzhiyun
3851*4882a593Smuzhiyun et131x_adapter_memory_free(adapter);
3852*4882a593Smuzhiyun
3853*4882a593Smuzhiyun /* Set the config parameter for Jumbo Packet support */
3854*4882a593Smuzhiyun adapter->registry_jumbo_packet = new_mtu + 14;
3855*4882a593Smuzhiyun et131x_soft_reset(adapter);
3856*4882a593Smuzhiyun
3857*4882a593Smuzhiyun result = et131x_adapter_memory_alloc(adapter);
3858*4882a593Smuzhiyun if (result != 0) {
3859*4882a593Smuzhiyun dev_warn(&adapter->pdev->dev,
3860*4882a593Smuzhiyun "Change MTU failed; couldn't re-alloc DMA memory\n");
3861*4882a593Smuzhiyun return result;
3862*4882a593Smuzhiyun }
3863*4882a593Smuzhiyun
3864*4882a593Smuzhiyun et131x_init_send(adapter);
3865*4882a593Smuzhiyun et131x_hwaddr_init(adapter);
3866*4882a593Smuzhiyun ether_addr_copy(netdev->dev_addr, adapter->addr);
3867*4882a593Smuzhiyun
3868*4882a593Smuzhiyun /* Init the device with the new settings */
3869*4882a593Smuzhiyun et131x_adapter_setup(adapter);
3870*4882a593Smuzhiyun et131x_enable_txrx(netdev);
3871*4882a593Smuzhiyun
3872*4882a593Smuzhiyun return result;
3873*4882a593Smuzhiyun }
3874*4882a593Smuzhiyun
3875*4882a593Smuzhiyun static const struct net_device_ops et131x_netdev_ops = {
3876*4882a593Smuzhiyun .ndo_open = et131x_open,
3877*4882a593Smuzhiyun .ndo_stop = et131x_close,
3878*4882a593Smuzhiyun .ndo_start_xmit = et131x_tx,
3879*4882a593Smuzhiyun .ndo_set_rx_mode = et131x_multicast,
3880*4882a593Smuzhiyun .ndo_tx_timeout = et131x_tx_timeout,
3881*4882a593Smuzhiyun .ndo_change_mtu = et131x_change_mtu,
3882*4882a593Smuzhiyun .ndo_set_mac_address = eth_mac_addr,
3883*4882a593Smuzhiyun .ndo_validate_addr = eth_validate_addr,
3884*4882a593Smuzhiyun .ndo_get_stats = et131x_stats,
3885*4882a593Smuzhiyun .ndo_do_ioctl = phy_do_ioctl,
3886*4882a593Smuzhiyun };
3887*4882a593Smuzhiyun
et131x_pci_setup(struct pci_dev * pdev,const struct pci_device_id * ent)3888*4882a593Smuzhiyun static int et131x_pci_setup(struct pci_dev *pdev,
3889*4882a593Smuzhiyun const struct pci_device_id *ent)
3890*4882a593Smuzhiyun {
3891*4882a593Smuzhiyun struct net_device *netdev;
3892*4882a593Smuzhiyun struct et131x_adapter *adapter;
3893*4882a593Smuzhiyun int rc;
3894*4882a593Smuzhiyun
3895*4882a593Smuzhiyun rc = pci_enable_device(pdev);
3896*4882a593Smuzhiyun if (rc < 0) {
3897*4882a593Smuzhiyun dev_err(&pdev->dev, "pci_enable_device() failed\n");
3898*4882a593Smuzhiyun goto out;
3899*4882a593Smuzhiyun }
3900*4882a593Smuzhiyun
3901*4882a593Smuzhiyun /* Perform some basic PCI checks */
3902*4882a593Smuzhiyun if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
3903*4882a593Smuzhiyun dev_err(&pdev->dev, "Can't find PCI device's base address\n");
3904*4882a593Smuzhiyun rc = -ENODEV;
3905*4882a593Smuzhiyun goto err_disable;
3906*4882a593Smuzhiyun }
3907*4882a593Smuzhiyun
3908*4882a593Smuzhiyun rc = pci_request_regions(pdev, DRIVER_NAME);
3909*4882a593Smuzhiyun if (rc < 0) {
3910*4882a593Smuzhiyun dev_err(&pdev->dev, "Can't get PCI resources\n");
3911*4882a593Smuzhiyun goto err_disable;
3912*4882a593Smuzhiyun }
3913*4882a593Smuzhiyun
3914*4882a593Smuzhiyun pci_set_master(pdev);
3915*4882a593Smuzhiyun
3916*4882a593Smuzhiyun /* Check the DMA addressing support of this device */
3917*4882a593Smuzhiyun if (dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)) &&
3918*4882a593Smuzhiyun dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32))) {
3919*4882a593Smuzhiyun dev_err(&pdev->dev, "No usable DMA addressing method\n");
3920*4882a593Smuzhiyun rc = -EIO;
3921*4882a593Smuzhiyun goto err_release_res;
3922*4882a593Smuzhiyun }
3923*4882a593Smuzhiyun
3924*4882a593Smuzhiyun netdev = alloc_etherdev(sizeof(struct et131x_adapter));
3925*4882a593Smuzhiyun if (!netdev) {
3926*4882a593Smuzhiyun dev_err(&pdev->dev, "Couldn't alloc netdev struct\n");
3927*4882a593Smuzhiyun rc = -ENOMEM;
3928*4882a593Smuzhiyun goto err_release_res;
3929*4882a593Smuzhiyun }
3930*4882a593Smuzhiyun
3931*4882a593Smuzhiyun netdev->watchdog_timeo = ET131X_TX_TIMEOUT;
3932*4882a593Smuzhiyun netdev->netdev_ops = &et131x_netdev_ops;
3933*4882a593Smuzhiyun netdev->min_mtu = ET131X_MIN_MTU;
3934*4882a593Smuzhiyun netdev->max_mtu = ET131X_MAX_MTU;
3935*4882a593Smuzhiyun
3936*4882a593Smuzhiyun SET_NETDEV_DEV(netdev, &pdev->dev);
3937*4882a593Smuzhiyun netdev->ethtool_ops = &et131x_ethtool_ops;
3938*4882a593Smuzhiyun
3939*4882a593Smuzhiyun adapter = et131x_adapter_init(netdev, pdev);
3940*4882a593Smuzhiyun
3941*4882a593Smuzhiyun rc = et131x_pci_init(adapter, pdev);
3942*4882a593Smuzhiyun if (rc < 0)
3943*4882a593Smuzhiyun goto err_free_dev;
3944*4882a593Smuzhiyun
3945*4882a593Smuzhiyun /* Map the bus-relative registers to system virtual memory */
3946*4882a593Smuzhiyun adapter->regs = pci_ioremap_bar(pdev, 0);
3947*4882a593Smuzhiyun if (!adapter->regs) {
3948*4882a593Smuzhiyun dev_err(&pdev->dev, "Cannot map device registers\n");
3949*4882a593Smuzhiyun rc = -ENOMEM;
3950*4882a593Smuzhiyun goto err_free_dev;
3951*4882a593Smuzhiyun }
3952*4882a593Smuzhiyun
3953*4882a593Smuzhiyun /* If Phy COMA mode was enabled when we went down, disable it here. */
3954*4882a593Smuzhiyun writel(ET_PMCSR_INIT, &adapter->regs->global.pm_csr);
3955*4882a593Smuzhiyun
3956*4882a593Smuzhiyun et131x_soft_reset(adapter);
3957*4882a593Smuzhiyun et131x_disable_interrupts(adapter);
3958*4882a593Smuzhiyun
3959*4882a593Smuzhiyun rc = et131x_adapter_memory_alloc(adapter);
3960*4882a593Smuzhiyun if (rc < 0) {
3961*4882a593Smuzhiyun dev_err(&pdev->dev, "Could not alloc adapter memory (DMA)\n");
3962*4882a593Smuzhiyun goto err_iounmap;
3963*4882a593Smuzhiyun }
3964*4882a593Smuzhiyun
3965*4882a593Smuzhiyun et131x_init_send(adapter);
3966*4882a593Smuzhiyun
3967*4882a593Smuzhiyun netif_napi_add(netdev, &adapter->napi, et131x_poll, 64);
3968*4882a593Smuzhiyun
3969*4882a593Smuzhiyun ether_addr_copy(netdev->dev_addr, adapter->addr);
3970*4882a593Smuzhiyun
3971*4882a593Smuzhiyun rc = -ENOMEM;
3972*4882a593Smuzhiyun
3973*4882a593Smuzhiyun adapter->mii_bus = mdiobus_alloc();
3974*4882a593Smuzhiyun if (!adapter->mii_bus) {
3975*4882a593Smuzhiyun dev_err(&pdev->dev, "Alloc of mii_bus struct failed\n");
3976*4882a593Smuzhiyun goto err_mem_free;
3977*4882a593Smuzhiyun }
3978*4882a593Smuzhiyun
3979*4882a593Smuzhiyun adapter->mii_bus->name = "et131x_eth_mii";
3980*4882a593Smuzhiyun snprintf(adapter->mii_bus->id, MII_BUS_ID_SIZE, "%x",
3981*4882a593Smuzhiyun (adapter->pdev->bus->number << 8) | adapter->pdev->devfn);
3982*4882a593Smuzhiyun adapter->mii_bus->priv = netdev;
3983*4882a593Smuzhiyun adapter->mii_bus->read = et131x_mdio_read;
3984*4882a593Smuzhiyun adapter->mii_bus->write = et131x_mdio_write;
3985*4882a593Smuzhiyun
3986*4882a593Smuzhiyun rc = mdiobus_register(adapter->mii_bus);
3987*4882a593Smuzhiyun if (rc < 0) {
3988*4882a593Smuzhiyun dev_err(&pdev->dev, "failed to register MII bus\n");
3989*4882a593Smuzhiyun goto err_mdio_free;
3990*4882a593Smuzhiyun }
3991*4882a593Smuzhiyun
3992*4882a593Smuzhiyun rc = et131x_mii_probe(netdev);
3993*4882a593Smuzhiyun if (rc < 0) {
3994*4882a593Smuzhiyun dev_err(&pdev->dev, "failed to probe MII bus\n");
3995*4882a593Smuzhiyun goto err_mdio_unregister;
3996*4882a593Smuzhiyun }
3997*4882a593Smuzhiyun
3998*4882a593Smuzhiyun et131x_adapter_setup(adapter);
3999*4882a593Smuzhiyun
4000*4882a593Smuzhiyun /* Init variable for counting how long we do not have link status */
4001*4882a593Smuzhiyun adapter->boot_coma = 0;
4002*4882a593Smuzhiyun et1310_disable_phy_coma(adapter);
4003*4882a593Smuzhiyun
4004*4882a593Smuzhiyun /* We can enable interrupts now
4005*4882a593Smuzhiyun *
4006*4882a593Smuzhiyun * NOTE - Because registration of interrupt handler is done in the
4007*4882a593Smuzhiyun * device's open(), defer enabling device interrupts to that
4008*4882a593Smuzhiyun * point
4009*4882a593Smuzhiyun */
4010*4882a593Smuzhiyun
4011*4882a593Smuzhiyun rc = register_netdev(netdev);
4012*4882a593Smuzhiyun if (rc < 0) {
4013*4882a593Smuzhiyun dev_err(&pdev->dev, "register_netdev() failed\n");
4014*4882a593Smuzhiyun goto err_phy_disconnect;
4015*4882a593Smuzhiyun }
4016*4882a593Smuzhiyun
4017*4882a593Smuzhiyun /* Register the net_device struct with the PCI subsystem. Save a copy
4018*4882a593Smuzhiyun * of the PCI config space for this device now that the device has
4019*4882a593Smuzhiyun * been initialized, just in case it needs to be quickly restored.
4020*4882a593Smuzhiyun */
4021*4882a593Smuzhiyun pci_set_drvdata(pdev, netdev);
4022*4882a593Smuzhiyun out:
4023*4882a593Smuzhiyun return rc;
4024*4882a593Smuzhiyun
4025*4882a593Smuzhiyun err_phy_disconnect:
4026*4882a593Smuzhiyun phy_disconnect(netdev->phydev);
4027*4882a593Smuzhiyun err_mdio_unregister:
4028*4882a593Smuzhiyun mdiobus_unregister(adapter->mii_bus);
4029*4882a593Smuzhiyun err_mdio_free:
4030*4882a593Smuzhiyun mdiobus_free(adapter->mii_bus);
4031*4882a593Smuzhiyun err_mem_free:
4032*4882a593Smuzhiyun et131x_adapter_memory_free(adapter);
4033*4882a593Smuzhiyun err_iounmap:
4034*4882a593Smuzhiyun iounmap(adapter->regs);
4035*4882a593Smuzhiyun err_free_dev:
4036*4882a593Smuzhiyun pci_dev_put(pdev);
4037*4882a593Smuzhiyun free_netdev(netdev);
4038*4882a593Smuzhiyun err_release_res:
4039*4882a593Smuzhiyun pci_release_regions(pdev);
4040*4882a593Smuzhiyun err_disable:
4041*4882a593Smuzhiyun pci_disable_device(pdev);
4042*4882a593Smuzhiyun goto out;
4043*4882a593Smuzhiyun }
4044*4882a593Smuzhiyun
4045*4882a593Smuzhiyun static const struct pci_device_id et131x_pci_table[] = {
4046*4882a593Smuzhiyun { PCI_VDEVICE(ATT, ET131X_PCI_DEVICE_ID_GIG), 0UL},
4047*4882a593Smuzhiyun { PCI_VDEVICE(ATT, ET131X_PCI_DEVICE_ID_FAST), 0UL},
4048*4882a593Smuzhiyun { 0,}
4049*4882a593Smuzhiyun };
4050*4882a593Smuzhiyun MODULE_DEVICE_TABLE(pci, et131x_pci_table);
4051*4882a593Smuzhiyun
4052*4882a593Smuzhiyun static struct pci_driver et131x_driver = {
4053*4882a593Smuzhiyun .name = DRIVER_NAME,
4054*4882a593Smuzhiyun .id_table = et131x_pci_table,
4055*4882a593Smuzhiyun .probe = et131x_pci_setup,
4056*4882a593Smuzhiyun .remove = et131x_pci_remove,
4057*4882a593Smuzhiyun .driver.pm = &et131x_pm_ops,
4058*4882a593Smuzhiyun };
4059*4882a593Smuzhiyun
4060*4882a593Smuzhiyun module_pci_driver(et131x_driver);
4061