staging: et131x: Refactor et131x_isr() to remove indenting
[firefly-linux-kernel-4.4.55.git] / drivers / staging / et131x / et131x.c
1 /*
2  * Agere Systems Inc.
3  * 10/100/1000 Base-T Ethernet Driver for the ET1301 and ET131x series MACs
4  *
5  * Copyright © 2005 Agere Systems Inc.
6  * All rights reserved.
7  *   http://www.agere.com
8  *
9  * Copyright (c) 2011 Mark Einon <mark.einon@gmail.com>
10  *
11  *------------------------------------------------------------------------------
12  *
13  * SOFTWARE LICENSE
14  *
15  * This software is provided subject to the following terms and conditions,
16  * which you should read carefully before using the software.  Using this
17  * software indicates your acceptance of these terms and conditions.  If you do
18  * not agree with these terms and conditions, do not use the software.
19  *
20  * Copyright © 2005 Agere Systems Inc.
21  * All rights reserved.
22  *
23  * Redistribution and use in source or binary forms, with or without
24  * modifications, are permitted provided that the following conditions are met:
25  *
26  * . Redistributions of source code must retain the above copyright notice, this
27  *    list of conditions and the following Disclaimer as comments in the code as
28  *    well as in the documentation and/or other materials provided with the
29  *    distribution.
30  *
31  * . Redistributions in binary form must reproduce the above copyright notice,
32  *    this list of conditions and the following Disclaimer in the documentation
33  *    and/or other materials provided with the distribution.
34  *
35  * . Neither the name of Agere Systems Inc. nor the names of the contributors
36  *    may be used to endorse or promote products derived from this software
37  *    without specific prior written permission.
38  *
39  * Disclaimer
40  *
41  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
42  * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF
43  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  ANY
44  * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN
45  * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY
46  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
47  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
49  * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT
50  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
51  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
52  * DAMAGE.
53  *
54  */
55
56 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
57
58 #include <linux/pci.h>
59 #include <linux/init.h>
60 #include <linux/module.h>
61 #include <linux/types.h>
62 #include <linux/kernel.h>
63
64 #include <linux/sched.h>
65 #include <linux/ptrace.h>
66 #include <linux/slab.h>
67 #include <linux/ctype.h>
68 #include <linux/string.h>
69 #include <linux/timer.h>
70 #include <linux/interrupt.h>
71 #include <linux/in.h>
72 #include <linux/delay.h>
73 #include <linux/bitops.h>
74 #include <linux/io.h>
75
76 #include <linux/netdevice.h>
77 #include <linux/etherdevice.h>
78 #include <linux/skbuff.h>
79 #include <linux/if_arp.h>
80 #include <linux/ioport.h>
81 #include <linux/crc32.h>
82 #include <linux/random.h>
83 #include <linux/phy.h>
84
85 #include "et131x.h"
86
87 MODULE_AUTHOR("Victor Soriano <vjsoriano@agere.com>");
88 MODULE_AUTHOR("Mark Einon <mark.einon@gmail.com>");
89 MODULE_LICENSE("Dual BSD/GPL");
90 MODULE_DESCRIPTION("10/100/1000 Base-T Ethernet Driver for the ET1310 by Agere Systems");
91
92 /* EEPROM defines */
93 #define MAX_NUM_REGISTER_POLLS          1000
94 #define MAX_NUM_WRITE_RETRIES           2
95
96 /* MAC defines */
97 #define COUNTER_WRAP_16_BIT 0x10000
98 #define COUNTER_WRAP_12_BIT 0x1000
99
100 /* PCI defines */
101 #define INTERNAL_MEM_SIZE       0x400   /* 1024 of internal memory */
102 #define INTERNAL_MEM_RX_OFFSET  0x1FF   /* 50%   Tx, 50%   Rx */
103
104 /* ISR defines */
105 /*
106  * For interrupts, normal running is:
107  *       rxdma_xfr_done, phy_interrupt, mac_stat_interrupt,
108  *       watchdog_interrupt & txdma_xfer_done
109  *
110  * In both cases, when flow control is enabled for either Tx or bi-direction,
111  * we additional enable rx_fbr0_low and rx_fbr1_low, so we know when the
112  * buffer rings are running low.
113  */
114 #define INT_MASK_DISABLE            0xffffffff
115
116 /* NOTE: Masking out MAC_STAT Interrupt for now...
117  * #define INT_MASK_ENABLE             0xfff6bf17
118  * #define INT_MASK_ENABLE_NO_FLOW     0xfff6bfd7
119  */
120 #define INT_MASK_ENABLE             0xfffebf17
121 #define INT_MASK_ENABLE_NO_FLOW     0xfffebfd7
122
123 /* General defines */
124 /* Packet and header sizes */
125 #define NIC_MIN_PACKET_SIZE     60
126
127 /* Multicast list size */
128 #define NIC_MAX_MCAST_LIST      128
129
130 /* Supported Filters */
131 #define ET131X_PACKET_TYPE_DIRECTED             0x0001
132 #define ET131X_PACKET_TYPE_MULTICAST            0x0002
133 #define ET131X_PACKET_TYPE_BROADCAST            0x0004
134 #define ET131X_PACKET_TYPE_PROMISCUOUS          0x0008
135 #define ET131X_PACKET_TYPE_ALL_MULTICAST        0x0010
136
137 /* Tx Timeout */
138 #define ET131X_TX_TIMEOUT       (1 * HZ)
139 #define NIC_SEND_HANG_THRESHOLD 0
140
141 /* MP_TCB flags */
142 #define fMP_DEST_MULTI                  0x00000001
143 #define fMP_DEST_BROAD                  0x00000002
144
145 /* MP_ADAPTER flags */
146 #define fMP_ADAPTER_RECV_LOOKASIDE      0x00000004
147 #define fMP_ADAPTER_INTERRUPT_IN_USE    0x00000008
148
149 /* MP_SHARED flags */
150 #define fMP_ADAPTER_LOWER_POWER         0x00200000
151
152 #define fMP_ADAPTER_NON_RECOVER_ERROR   0x00800000
153 #define fMP_ADAPTER_HARDWARE_ERROR      0x04000000
154
155 #define fMP_ADAPTER_FAIL_SEND_MASK      0x3ff00000
156
157 /* Some offsets in PCI config space that are actually used. */
158 #define ET1310_PCI_MAC_ADDRESS          0xA4
159 #define ET1310_PCI_EEPROM_STATUS        0xB2
160 #define ET1310_PCI_ACK_NACK             0xC0
161 #define ET1310_PCI_REPLAY               0xC2
162 #define ET1310_PCI_L0L1LATENCY          0xCF
163
164 /* PCI Product IDs */
165 #define ET131X_PCI_DEVICE_ID_GIG        0xED00  /* ET1310 1000 Base-T 8 */
166 #define ET131X_PCI_DEVICE_ID_FAST       0xED01  /* ET1310 100  Base-T */
167
168 /* Define order of magnitude converter */
169 #define NANO_IN_A_MICRO 1000
170
171 #define PARM_RX_NUM_BUFS_DEF    4
172 #define PARM_RX_TIME_INT_DEF    10
173 #define PARM_RX_MEM_END_DEF     0x2bc
174 #define PARM_TX_TIME_INT_DEF    40
175 #define PARM_TX_NUM_BUFS_DEF    4
176 #define PARM_DMA_CACHE_DEF      0
177
178 /* RX defines */
179 #define FBR_CHUNKS              32
180 #define MAX_DESC_PER_RING_RX    1024
181
182 /* number of RFDs - default and min */
183 #define RFD_LOW_WATER_MARK      40
184 #define NIC_DEFAULT_NUM_RFD     1024
185 #define NUM_FBRS                2
186
187 #define NIC_MIN_NUM_RFD         64
188 #define NUM_PACKETS_HANDLED     256
189
190 #define ALCATEL_MULTICAST_PKT   0x01000000
191 #define ALCATEL_BROADCAST_PKT   0x02000000
192
193 /* typedefs for Free Buffer Descriptors */
194 struct fbr_desc {
195         u32 addr_lo;
196         u32 addr_hi;
197         u32 word2;              /* Bits 10-31 reserved, 0-9 descriptor */
198 };
199
200 /* Packet Status Ring Descriptors
201  *
202  * Word 0:
203  *
204  * top 16 bits are from the Alcatel Status Word as enumerated in
205  * PE-MCXMAC Data Sheet IPD DS54 0210-1 (also IPD-DS80 0205-2)
206  *
207  * 0: hp                        hash pass
208  * 1: ipa                       IP checksum assist
209  * 2: ipp                       IP checksum pass
210  * 3: tcpa                      TCP checksum assist
211  * 4: tcpp                      TCP checksum pass
212  * 5: wol                       WOL Event
213  * 6: rxmac_error               RXMAC Error Indicator
214  * 7: drop                      Drop packet
215  * 8: ft                        Frame Truncated
216  * 9: jp                        Jumbo Packet
217  * 10: vp                       VLAN Packet
218  * 11-15: unused
219  * 16: asw_prev_pkt_dropped     e.g. IFG too small on previous
220  * 17: asw_RX_DV_event          short receive event detected
221  * 18: asw_false_carrier_event  bad carrier since last good packet
222  * 19: asw_code_err             one or more nibbles signalled as errors
223  * 20: asw_CRC_err              CRC error
224  * 21: asw_len_chk_err          frame length field incorrect
225  * 22: asw_too_long             frame length > 1518 bytes
226  * 23: asw_OK                   valid CRC + no code error
227  * 24: asw_multicast            has a multicast address
228  * 25: asw_broadcast            has a broadcast address
229  * 26: asw_dribble_nibble       spurious bits after EOP
230  * 27: asw_control_frame        is a control frame
231  * 28: asw_pause_frame          is a pause frame
232  * 29: asw_unsupported_op       unsupported OP code
233  * 30: asw_VLAN_tag             VLAN tag detected
234  * 31: asw_long_evt             Rx long event
235  *
236  * Word 1:
237  * 0-15: length                 length in bytes
238  * 16-25: bi                    Buffer Index
239  * 26-27: ri                    Ring Index
240  * 28-31: reserved
241  */
242
243 struct pkt_stat_desc {
244         u32 word0;
245         u32 word1;
246 };
247
248 /* Typedefs for the RX DMA status word */
249
250 /*
251  * rx status word 0 holds part of the status bits of the Rx DMA engine
252  * that get copied out to memory by the ET-1310.  Word 0 is a 32 bit word
253  * which contains the Free Buffer ring 0 and 1 available offset.
254  *
255  * bit 0-9 FBR1 offset
256  * bit 10 Wrap flag for FBR1
257  * bit 16-25 FBR0 offset
258  * bit 26 Wrap flag for FBR0
259  */
260
261 /*
262  * RXSTAT_WORD1_t structure holds part of the status bits of the Rx DMA engine
263  * that get copied out to memory by the ET-1310.  Word 3 is a 32 bit word
264  * which contains the Packet Status Ring available offset.
265  *
266  * bit 0-15 reserved
267  * bit 16-27 PSRoffset
268  * bit 28 PSRwrap
269  * bit 29-31 unused
270  */
271
272 /*
273  * struct rx_status_block is a structure representing the status of the Rx
274  * DMA engine it sits in free memory, and is pointed to by 0x101c / 0x1020
275  */
276 struct rx_status_block {
277         u32 word0;
278         u32 word1;
279 };
280
281 /*
282  * Structure for look-up table holding free buffer ring pointers, addresses
283  * and state.
284  */
285 struct fbr_lookup {
286         void            *virt[MAX_DESC_PER_RING_RX];
287         u32              bus_high[MAX_DESC_PER_RING_RX];
288         u32              bus_low[MAX_DESC_PER_RING_RX];
289         void            *ring_virtaddr;
290         dma_addr_t       ring_physaddr;
291         void            *mem_virtaddrs[MAX_DESC_PER_RING_RX / FBR_CHUNKS];
292         dma_addr_t       mem_physaddrs[MAX_DESC_PER_RING_RX / FBR_CHUNKS];
293         u32              local_full;
294         u32              num_entries;
295         dma_addr_t       buffsize;
296 };
297
298 /*
299  * struct rx_ring is the sructure representing the adaptor's local
300  * reference(s) to the rings
301  */
302 struct rx_ring {
303         struct fbr_lookup *fbr[NUM_FBRS];
304         void *ps_ring_virtaddr;
305         dma_addr_t ps_ring_physaddr;
306         u32 local_psr_full;
307         u32 psr_num_entries;
308
309         struct rx_status_block *rx_status_block;
310         dma_addr_t rx_status_bus;
311
312         /* RECV */
313         struct list_head recv_list;
314         u32 num_ready_recv;
315
316         u32 num_rfd;
317
318         bool unfinished_receives;
319
320         /* lookaside lists */
321         struct kmem_cache *recv_lookaside;
322 };
323
324 /* TX defines */
325 /*
326  * word 2 of the control bits in the Tx Descriptor ring for the ET-1310
327  *
328  * 0-15: length of packet
329  * 16-27: VLAN tag
330  * 28: VLAN CFI
331  * 29-31: VLAN priority
332  *
333  * word 3 of the control bits in the Tx Descriptor ring for the ET-1310
334  *
335  * 0: last packet in the sequence
336  * 1: first packet in the sequence
337  * 2: interrupt the processor when this pkt sent
338  * 3: Control word - no packet data
339  * 4: Issue half-duplex backpressure : XON/XOFF
340  * 5: send pause frame
341  * 6: Tx frame has error
342  * 7: append CRC
343  * 8: MAC override
344  * 9: pad packet
345  * 10: Packet is a Huge packet
346  * 11: append VLAN tag
347  * 12: IP checksum assist
348  * 13: TCP checksum assist
349  * 14: UDP checksum assist
350  */
351
352 /* struct tx_desc represents each descriptor on the ring */
353 struct tx_desc {
354         u32 addr_hi;
355         u32 addr_lo;
356         u32 len_vlan;   /* control words how to xmit the */
357         u32 flags;      /* data (detailed above) */
358 };
359
360 /*
361  * The status of the Tx DMA engine it sits in free memory, and is pointed to
362  * by 0x101c / 0x1020. This is a DMA10 type
363  */
364
365 /* TCB (Transmit Control Block: Host Side) */
366 struct tcb {
367         struct tcb *next;       /* Next entry in ring */
368         u32 flags;              /* Our flags for the packet */
369         u32 count;              /* Used to spot stuck/lost packets */
370         u32 stale;              /* Used to spot stuck/lost packets */
371         struct sk_buff *skb;    /* Network skb we are tied to */
372         u32 index;              /* Ring indexes */
373         u32 index_start;
374 };
375
376 /* Structure representing our local reference(s) to the ring */
377 struct tx_ring {
378         /* TCB (Transmit Control Block) memory and lists */
379         struct tcb *tcb_ring;
380
381         /* List of TCBs that are ready to be used */
382         struct tcb *tcb_qhead;
383         struct tcb *tcb_qtail;
384
385         /* list of TCBs that are currently being sent.  NOTE that access to all
386          * three of these (including used) are controlled via the
387          * TCBSendQLock.  This lock should be secured prior to incementing /
388          * decrementing used, or any queue manipulation on send_head /
389          * tail
390          */
391         struct tcb *send_head;
392         struct tcb *send_tail;
393         int used;
394
395         /* The actual descriptor ring */
396         struct tx_desc *tx_desc_ring;
397         dma_addr_t tx_desc_ring_pa;
398
399         /* send_idx indicates where we last wrote to in the descriptor ring. */
400         u32 send_idx;
401
402         /* The location of the write-back status block */
403         u32 *tx_status;
404         dma_addr_t tx_status_pa;
405
406         /* Packets since the last IRQ: used for interrupt coalescing */
407         int since_irq;
408 };
409
410 /*
411  * Do not change these values: if changed, then change also in respective
412  * TXdma and Rxdma engines
413  */
414 #define NUM_DESC_PER_RING_TX         512    /* TX Do not change these values */
415 #define NUM_TCB                      64
416
417 /*
418  * These values are all superseded by registry entries to facilitate tuning.
419  * Once the desired performance has been achieved, the optimal registry values
420  * should be re-populated to these #defines:
421  */
422 #define TX_ERROR_PERIOD             1000
423
424 #define LO_MARK_PERCENT_FOR_PSR     15
425 #define LO_MARK_PERCENT_FOR_RX      15
426
427 /* RFD (Receive Frame Descriptor) */
428 struct rfd {
429         struct list_head list_node;
430         struct sk_buff *skb;
431         u32 len;        /* total size of receive frame */
432         u16 bufferindex;
433         u8 ringindex;
434 };
435
436 /* Flow Control */
437 #define FLOW_BOTH       0
438 #define FLOW_TXONLY     1
439 #define FLOW_RXONLY     2
440 #define FLOW_NONE       3
441
442 /* Struct to define some device statistics */
443 struct ce_stats {
444         /* MIB II variables
445          *
446          * NOTE: atomic_t types are only guaranteed to store 24-bits; if we
447          * MUST have 32, then we'll need another way to perform atomic
448          * operations
449          */
450         u32             unicast_pkts_rcvd;
451         atomic_t        unicast_pkts_xmtd;
452         u32             multicast_pkts_rcvd;
453         atomic_t        multicast_pkts_xmtd;
454         u32             broadcast_pkts_rcvd;
455         atomic_t        broadcast_pkts_xmtd;
456         u32             rcvd_pkts_dropped;
457
458         /* Tx Statistics. */
459         u32             tx_underflows;
460
461         u32             tx_collisions;
462         u32             tx_excessive_collisions;
463         u32             tx_first_collisions;
464         u32             tx_late_collisions;
465         u32             tx_max_pkt_errs;
466         u32             tx_deferred;
467
468         /* Rx Statistics. */
469         u32             rx_overflows;
470
471         u32             rx_length_errs;
472         u32             rx_align_errs;
473         u32             rx_crc_errs;
474         u32             rx_code_violations;
475         u32             rx_other_errs;
476
477         u32             synchronous_iterations;
478         u32             interrupt_status;
479 };
480
481 /* The private adapter structure */
482 struct et131x_adapter {
483         struct net_device *netdev;
484         struct pci_dev *pdev;
485         struct mii_bus *mii_bus;
486         struct phy_device *phydev;
487         struct work_struct task;
488
489         /* Flags that indicate current state of the adapter */
490         u32 flags;
491
492         /* local link state, to determine if a state change has occurred */
493         int link;
494
495         /* Configuration  */
496         u8 rom_addr[ETH_ALEN];
497         u8 addr[ETH_ALEN];
498         bool has_eeprom;
499         u8 eeprom_data[2];
500
501         /* Spinlocks */
502         spinlock_t lock;
503
504         spinlock_t tcb_send_qlock;
505         spinlock_t tcb_ready_qlock;
506         spinlock_t send_hw_lock;
507
508         spinlock_t rcv_lock;
509         spinlock_t rcv_pend_lock;
510         spinlock_t fbr_lock;
511
512         spinlock_t phy_lock;
513
514         /* Packet Filter and look ahead size */
515         u32 packet_filter;
516
517         /* multicast list */
518         u32 multicast_addr_count;
519         u8 multicast_list[NIC_MAX_MCAST_LIST][ETH_ALEN];
520
521         /* Pointer to the device's PCI register space */
522         struct address_map __iomem *regs;
523
524         /* Registry parameters */
525         u8 wanted_flow;         /* Flow we want for 802.3x flow control */
526         u32 registry_jumbo_packet;      /* Max supported ethernet packet size */
527
528         /* Derived from the registry: */
529         u8 flowcontrol;         /* flow control validated by the far-end */
530
531         /* Minimize init-time */
532         struct timer_list error_timer;
533
534         /* variable putting the phy into coma mode when boot up with no cable
535          * plugged in after 5 seconds
536          */
537         u8 boot_coma;
538
539         /* Next two used to save power information at power down. This
540          * information will be used during power up to set up parts of Power
541          * Management in JAGCore
542          */
543         u16 pdown_speed;
544         u8 pdown_duplex;
545
546         /* Tx Memory Variables */
547         struct tx_ring tx_ring;
548
549         /* Rx Memory Variables */
550         struct rx_ring rx_ring;
551
552         /* Stats */
553         struct ce_stats stats;
554
555         struct net_device_stats net_stats;
556 };
557
558 static int eeprom_wait_ready(struct pci_dev *pdev, u32 *status)
559 {
560         u32 reg;
561         int i;
562
563         /*
564          * 1. Check LBCIF Status Register for bits 6 & 3:2 all equal to 0 and
565          *    bits 7,1:0 both equal to 1, at least once after reset.
566          *    Subsequent operations need only to check that bits 1:0 are equal
567          *    to 1 prior to starting a single byte read/write
568          */
569
570         for (i = 0; i < MAX_NUM_REGISTER_POLLS; i++) {
571                 /* Read registers grouped in DWORD1 */
572                 if (pci_read_config_dword(pdev, LBCIF_DWORD1_GROUP, &reg))
573                         return -EIO;
574
575                 /* I2C idle and Phy Queue Avail both true */
576                 if ((reg & 0x3000) == 0x3000) {
577                         if (status)
578                                 *status = reg;
579                         return reg & 0xFF;
580                 }
581         }
582         return -ETIMEDOUT;
583 }
584
585
586 /**
587  * eeprom_write - Write a byte to the ET1310's EEPROM
588  * @adapter: pointer to our private adapter structure
589  * @addr: the address to write
590  * @data: the value to write
591  *
592  * Returns 1 for a successful write.
593  */
594 static int eeprom_write(struct et131x_adapter *adapter, u32 addr, u8 data)
595 {
596         struct pci_dev *pdev = adapter->pdev;
597         int index = 0;
598         int retries;
599         int err = 0;
600         int i2c_wack = 0;
601         int writeok = 0;
602         u32 status;
603         u32 val = 0;
604
605         /*
606          * For an EEPROM, an I2C single byte write is defined as a START
607          * condition followed by the device address, EEPROM address, one byte
608          * of data and a STOP condition.  The STOP condition will trigger the
609          * EEPROM's internally timed write cycle to the nonvolatile memory.
610          * All inputs are disabled during this write cycle and the EEPROM will
611          * not respond to any access until the internal write is complete.
612          */
613
614         err = eeprom_wait_ready(pdev, NULL);
615         if (err)
616                 return err;
617
618          /*
619          * 2. Write to the LBCIF Control Register:  bit 7=1, bit 6=1, bit 3=0,
620          *    and bits 1:0 both =0.  Bit 5 should be set according to the
621          *    type of EEPROM being accessed (1=two byte addressing, 0=one
622          *    byte addressing).
623          */
624         if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER,
625                         LBCIF_CONTROL_LBCIF_ENABLE | LBCIF_CONTROL_I2C_WRITE))
626                 return -EIO;
627
628         i2c_wack = 1;
629
630         /* Prepare EEPROM address for Step 3 */
631
632         for (retries = 0; retries < MAX_NUM_WRITE_RETRIES; retries++) {
633                 /* Write the address to the LBCIF Address Register */
634                 if (pci_write_config_dword(pdev, LBCIF_ADDRESS_REGISTER, addr))
635                         break;
636                 /*
637                  * Write the data to the LBCIF Data Register (the I2C write
638                  * will begin).
639                  */
640                 if (pci_write_config_byte(pdev, LBCIF_DATA_REGISTER, data))
641                         break;
642                 /*
643                  * Monitor bit 1:0 of the LBCIF Status Register.  When bits
644                  * 1:0 are both equal to 1, the I2C write has completed and the
645                  * internal write cycle of the EEPROM is about to start.
646                  * (bits 1:0 = 01 is a legal state while waiting from both
647                  * equal to 1, but bits 1:0 = 10 is invalid and implies that
648                  * something is broken).
649                  */
650                 err = eeprom_wait_ready(pdev, &status);
651                 if (err < 0)
652                         return 0;
653
654                 /*
655                  * Check bit 3 of the LBCIF Status Register.  If  equal to 1,
656                  * an error has occurred.Don't break here if we are revision
657                  * 1, this is so we do a blind write for load bug.
658                  */
659                 if ((status & LBCIF_STATUS_GENERAL_ERROR)
660                         && adapter->pdev->revision == 0)
661                         break;
662
663                 /*
664                  * Check bit 2 of the LBCIF Status Register.  If equal to 1 an
665                  * ACK error has occurred on the address phase of the write.
666                  * This could be due to an actual hardware failure or the
667                  * EEPROM may still be in its internal write cycle from a
668                  * previous write. This write operation was ignored and must be
669                   *repeated later.
670                  */
671                 if (status & LBCIF_STATUS_ACK_ERROR) {
672                         /*
673                          * This could be due to an actual hardware failure
674                          * or the EEPROM may still be in its internal write
675                          * cycle from a previous write. This write operation
676                          * was ignored and must be repeated later.
677                          */
678                         udelay(10);
679                         continue;
680                 }
681
682                 writeok = 1;
683                 break;
684         }
685
686         /*
687          * Set bit 6 of the LBCIF Control Register = 0.
688          */
689         udelay(10);
690
691         while (i2c_wack) {
692                 if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER,
693                         LBCIF_CONTROL_LBCIF_ENABLE))
694                         writeok = 0;
695
696                 /* Do read until internal ACK_ERROR goes away meaning write
697                  * completed
698                  */
699                 do {
700                         pci_write_config_dword(pdev,
701                                                LBCIF_ADDRESS_REGISTER,
702                                                addr);
703                         do {
704                                 pci_read_config_dword(pdev,
705                                         LBCIF_DATA_REGISTER, &val);
706                         } while ((val & 0x00010000) == 0);
707                 } while (val & 0x00040000);
708
709                 if ((val & 0xFF00) != 0xC000 || index == 10000)
710                         break;
711                 index++;
712         }
713         return writeok ? 0 : -EIO;
714 }
715
716 /**
717  * eeprom_read - Read a byte from the ET1310's EEPROM
718  * @adapter: pointer to our private adapter structure
719  * @addr: the address from which to read
720  * @pdata: a pointer to a byte in which to store the value of the read
721  * @eeprom_id: the ID of the EEPROM
722  * @addrmode: how the EEPROM is to be accessed
723  *
724  * Returns 1 for a successful read
725  */
726 static int eeprom_read(struct et131x_adapter *adapter, u32 addr, u8 *pdata)
727 {
728         struct pci_dev *pdev = adapter->pdev;
729         int err;
730         u32 status;
731
732         /*
733          * A single byte read is similar to the single byte write, with the
734          * exception of the data flow:
735          */
736
737         err = eeprom_wait_ready(pdev, NULL);
738         if (err)
739                 return err;
740         /*
741          * Write to the LBCIF Control Register:  bit 7=1, bit 6=0, bit 3=0,
742          * and bits 1:0 both =0.  Bit 5 should be set according to the type
743          * of EEPROM being accessed (1=two byte addressing, 0=one byte
744          * addressing).
745          */
746         if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER,
747                                   LBCIF_CONTROL_LBCIF_ENABLE))
748                 return -EIO;
749         /*
750          * Write the address to the LBCIF Address Register (I2C read will
751          * begin).
752          */
753         if (pci_write_config_dword(pdev, LBCIF_ADDRESS_REGISTER, addr))
754                 return -EIO;
755         /*
756          * Monitor bit 0 of the LBCIF Status Register.  When = 1, I2C read
757          * is complete. (if bit 1 =1 and bit 0 stays = 0, a hardware failure
758          * has occurred).
759          */
760         err = eeprom_wait_ready(pdev, &status);
761         if (err < 0)
762                 return err;
763         /*
764          * Regardless of error status, read data byte from LBCIF Data
765          * Register.
766          */
767         *pdata = err;
768         /*
769          * Check bit 2 of the LBCIF Status Register.  If = 1,
770          * then an error has occurred.
771          */
772         return (status & LBCIF_STATUS_ACK_ERROR) ? -EIO : 0;
773 }
774
775 static int et131x_init_eeprom(struct et131x_adapter *adapter)
776 {
777         struct pci_dev *pdev = adapter->pdev;
778         u8 eestatus;
779
780         /* We first need to check the EEPROM Status code located at offset
781          * 0xB2 of config space
782          */
783         pci_read_config_byte(pdev, ET1310_PCI_EEPROM_STATUS,
784                                       &eestatus);
785
786         /* THIS IS A WORKAROUND:
787          * I need to call this function twice to get my card in a
788          * LG M1 Express Dual running. I tried also a msleep before this
789          * function, because I thought there could be some time condidions
790          * but it didn't work. Call the whole function twice also work.
791          */
792         if (pci_read_config_byte(pdev, ET1310_PCI_EEPROM_STATUS, &eestatus)) {
793                 dev_err(&pdev->dev,
794                        "Could not read PCI config space for EEPROM Status\n");
795                 return -EIO;
796         }
797
798         /* Determine if the error(s) we care about are present. If they are
799          * present we need to fail.
800          */
801         if (eestatus & 0x4C) {
802                 int write_failed = 0;
803                 if (pdev->revision == 0x01) {
804                         int     i;
805                         static const u8 eedata[4] = { 0xFE, 0x13, 0x10, 0xFF };
806
807                         /* Re-write the first 4 bytes if we have an eeprom
808                          * present and the revision id is 1, this fixes the
809                          * corruption seen with 1310 B Silicon
810                          */
811                         for (i = 0; i < 3; i++)
812                                 if (eeprom_write(adapter, i, eedata[i]) < 0)
813                                         write_failed = 1;
814                 }
815                 if (pdev->revision  != 0x01 || write_failed) {
816                         dev_err(&pdev->dev,
817                             "Fatal EEPROM Status Error - 0x%04x\n", eestatus);
818
819                         /* This error could mean that there was an error
820                          * reading the eeprom or that the eeprom doesn't exist.
821                          * We will treat each case the same and not try to
822                          * gather additional information that normally would
823                          * come from the eeprom, like MAC Address
824                          */
825                         adapter->has_eeprom = 0;
826                         return -EIO;
827                 }
828         }
829         adapter->has_eeprom = 1;
830
831         /* Read the EEPROM for information regarding LED behavior. Refer to
832          * ET1310_phy.c, et131x_xcvr_init(), for its use.
833          */
834         eeprom_read(adapter, 0x70, &adapter->eeprom_data[0]);
835         eeprom_read(adapter, 0x71, &adapter->eeprom_data[1]);
836
837         if (adapter->eeprom_data[0] != 0xcd)
838                 /* Disable all optional features */
839                 adapter->eeprom_data[1] = 0x00;
840
841         return 0;
842 }
843
844 /**
845  * et131x_rx_dma_enable - re-start of Rx_DMA on the ET1310.
846  * @adapter: pointer to our adapter structure
847  */
848 static void et131x_rx_dma_enable(struct et131x_adapter *adapter)
849 {
850         /* Setup the receive dma configuration register for normal operation */
851         u32 csr =  0x2000;      /* FBR1 enable */
852
853         if (adapter->rx_ring.fbr[1]->buffsize == 4096)
854                 csr |= 0x0800;
855         else if (adapter->rx_ring.fbr[1]->buffsize == 8192)
856                 csr |= 0x1000;
857         else if (adapter->rx_ring.fbr[1]->buffsize == 16384)
858                 csr |= 0x1800;
859
860         csr |= 0x0400;          /* FBR0 enable */
861         if (adapter->rx_ring.fbr[0]->buffsize == 256)
862                 csr |= 0x0100;
863         else if (adapter->rx_ring.fbr[0]->buffsize == 512)
864                 csr |= 0x0200;
865         else if (adapter->rx_ring.fbr[0]->buffsize == 1024)
866                 csr |= 0x0300;
867         writel(csr, &adapter->regs->rxdma.csr);
868
869         csr = readl(&adapter->regs->rxdma.csr);
870         if (csr & 0x00020000) {
871                 udelay(5);
872                 csr = readl(&adapter->regs->rxdma.csr);
873                 if (csr & 0x00020000) {
874                         dev_err(&adapter->pdev->dev,
875                             "RX Dma failed to exit halt state.  CSR 0x%08x\n",
876                                 csr);
877                 }
878         }
879 }
880
881 /**
882  * et131x_rx_dma_disable - Stop of Rx_DMA on the ET1310
883  * @adapter: pointer to our adapter structure
884  */
885 static void et131x_rx_dma_disable(struct et131x_adapter *adapter)
886 {
887         u32 csr;
888         /* Setup the receive dma configuration register */
889         writel(0x00002001, &adapter->regs->rxdma.csr);
890         csr = readl(&adapter->regs->rxdma.csr);
891         if ((csr & 0x00020000) == 0) {  /* Check halt status (bit 17) */
892                 udelay(5);
893                 csr = readl(&adapter->regs->rxdma.csr);
894                 if ((csr & 0x00020000) == 0)
895                         dev_err(&adapter->pdev->dev,
896                         "RX Dma failed to enter halt state. CSR 0x%08x\n",
897                                 csr);
898         }
899 }
900
901 /**
902  * et131x_tx_dma_enable - re-start of Tx_DMA on the ET1310.
903  * @adapter: pointer to our adapter structure
904  *
905  * Mainly used after a return to the D0 (full-power) state from a lower state.
906  */
907 static void et131x_tx_dma_enable(struct et131x_adapter *adapter)
908 {
909         /* Setup the transmit dma configuration register for normal
910          * operation
911          */
912         writel(ET_TXDMA_SNGL_EPKT|(PARM_DMA_CACHE_DEF << ET_TXDMA_CACHE_SHIFT),
913                                         &adapter->regs->txdma.csr);
914 }
915
916 static inline void add_10bit(u32 *v, int n)
917 {
918         *v = INDEX10(*v + n) | (*v & ET_DMA10_WRAP);
919 }
920
921 static inline void add_12bit(u32 *v, int n)
922 {
923         *v = INDEX12(*v + n) | (*v & ET_DMA12_WRAP);
924 }
925
926 /**
927  * et1310_config_mac_regs1 - Initialize the first part of MAC regs
928  * @adapter: pointer to our adapter structure
929  */
930 static void et1310_config_mac_regs1(struct et131x_adapter *adapter)
931 {
932         struct mac_regs __iomem *macregs = &adapter->regs->mac;
933         u32 station1;
934         u32 station2;
935         u32 ipg;
936
937         /* First we need to reset everything.  Write to MAC configuration
938          * register 1 to perform reset.
939          */
940         writel(0xC00F0000, &macregs->cfg1);
941
942         /* Next lets configure the MAC Inter-packet gap register */
943         ipg = 0x38005860;               /* IPG1 0x38 IPG2 0x58 B2B 0x60 */
944         ipg |= 0x50 << 8;               /* ifg enforce 0x50 */
945         writel(ipg, &macregs->ipg);
946
947         /* Next lets configure the MAC Half Duplex register */
948         /* BEB trunc 0xA, Ex Defer, Rexmit 0xF Coll 0x37 */
949         writel(0x00A1F037, &macregs->hfdp);
950
951         /* Next lets configure the MAC Interface Control register */
952         writel(0, &macregs->if_ctrl);
953
954         /* Let's move on to setting up the mii management configuration */
955         writel(0x07, &macregs->mii_mgmt_cfg);   /* Clock reset 0x7 */
956
957         /* Next lets configure the MAC Station Address register.  These
958          * values are read from the EEPROM during initialization and stored
959          * in the adapter structure.  We write what is stored in the adapter
960          * structure to the MAC Station Address registers high and low.  This
961          * station address is used for generating and checking pause control
962          * packets.
963          */
964         station2 = (adapter->addr[1] << ET_MAC_STATION_ADDR2_OC2_SHIFT) |
965                    (adapter->addr[0] << ET_MAC_STATION_ADDR2_OC1_SHIFT);
966         station1 = (adapter->addr[5] << ET_MAC_STATION_ADDR1_OC6_SHIFT) |
967                    (adapter->addr[4] << ET_MAC_STATION_ADDR1_OC5_SHIFT) |
968                    (adapter->addr[3] << ET_MAC_STATION_ADDR1_OC4_SHIFT) |
969                     adapter->addr[2];
970         writel(station1, &macregs->station_addr_1);
971         writel(station2, &macregs->station_addr_2);
972
973         /* Max ethernet packet in bytes that will be passed by the mac without
974          * being truncated.  Allow the MAC to pass 4 more than our max packet
975          * size.  This is 4 for the Ethernet CRC.
976          *
977          * Packets larger than (registry_jumbo_packet) that do not contain a
978          * VLAN ID will be dropped by the Rx function.
979          */
980         writel(adapter->registry_jumbo_packet + 4, &macregs->max_fm_len);
981
982         /* clear out MAC config reset */
983         writel(0, &macregs->cfg1);
984 }
985
986 /**
987  * et1310_config_mac_regs2 - Initialize the second part of MAC regs
988  * @adapter: pointer to our adapter structure
989  */
990 static void et1310_config_mac_regs2(struct et131x_adapter *adapter)
991 {
992         int32_t delay = 0;
993         struct mac_regs __iomem *mac = &adapter->regs->mac;
994         struct phy_device *phydev = adapter->phydev;
995         u32 cfg1;
996         u32 cfg2;
997         u32 ifctrl;
998         u32 ctl;
999
1000         ctl = readl(&adapter->regs->txmac.ctl);
1001         cfg1 = readl(&mac->cfg1);
1002         cfg2 = readl(&mac->cfg2);
1003         ifctrl = readl(&mac->if_ctrl);
1004
1005         /* Set up the if mode bits */
1006         cfg2 &= ~0x300;
1007         if (phydev && phydev->speed == SPEED_1000) {
1008                 cfg2 |= 0x200;
1009                 /* Phy mode bit */
1010                 ifctrl &= ~(1 << 24);
1011         } else {
1012                 cfg2 |= 0x100;
1013                 ifctrl |= (1 << 24);
1014         }
1015
1016         /* We need to enable Rx/Tx */
1017         cfg1 |= CFG1_RX_ENABLE | CFG1_TX_ENABLE | CFG1_TX_FLOW;
1018         /* Initialize loop back to off */
1019         cfg1 &= ~(CFG1_LOOPBACK | CFG1_RX_FLOW);
1020         if (adapter->flowcontrol == FLOW_RXONLY ||
1021                                 adapter->flowcontrol == FLOW_BOTH)
1022                 cfg1 |= CFG1_RX_FLOW;
1023         writel(cfg1, &mac->cfg1);
1024
1025         /* Now we need to initialize the MAC Configuration 2 register */
1026         /* preamble 7, check length, huge frame off, pad crc, crc enable
1027            full duplex off */
1028         cfg2 |= 0x7016;
1029         cfg2 &= ~0x0021;
1030
1031         /* Turn on duplex if needed */
1032         if (phydev && phydev->duplex == DUPLEX_FULL)
1033                 cfg2 |= 0x01;
1034
1035         ifctrl &= ~(1 << 26);
1036         if (phydev && phydev->duplex == DUPLEX_HALF)
1037                 ifctrl |= (1<<26);      /* Enable ghd */
1038
1039         writel(ifctrl, &mac->if_ctrl);
1040         writel(cfg2, &mac->cfg2);
1041
1042         do {
1043                 udelay(10);
1044                 delay++;
1045                 cfg1 = readl(&mac->cfg1);
1046         } while ((cfg1 & CFG1_WAIT) != CFG1_WAIT && delay < 100);
1047
1048         if (delay == 100) {
1049                 dev_warn(&adapter->pdev->dev,
1050                     "Syncd bits did not respond correctly cfg1 word 0x%08x\n",
1051                         cfg1);
1052         }
1053
1054         /* Enable txmac */
1055         ctl |= 0x09;    /* TX mac enable, FC disable */
1056         writel(ctl, &adapter->regs->txmac.ctl);
1057
1058         /* Ready to start the RXDMA/TXDMA engine */
1059         if (adapter->flags & fMP_ADAPTER_LOWER_POWER) {
1060                 et131x_rx_dma_enable(adapter);
1061                 et131x_tx_dma_enable(adapter);
1062         }
1063 }
1064
1065 /**
1066  * et1310_in_phy_coma - check if the device is in phy coma
1067  * @adapter: pointer to our adapter structure
1068  *
1069  * Returns 0 if the device is not in phy coma, 1 if it is in phy coma
1070  */
1071 static int et1310_in_phy_coma(struct et131x_adapter *adapter)
1072 {
1073         u32 pmcsr;
1074
1075         pmcsr = readl(&adapter->regs->global.pm_csr);
1076
1077         return ET_PM_PHY_SW_COMA & pmcsr ? 1 : 0;
1078 }
1079
1080 static void et1310_setup_device_for_multicast(struct et131x_adapter *adapter)
1081 {
1082         struct rxmac_regs __iomem *rxmac = &adapter->regs->rxmac;
1083         u32 hash1 = 0;
1084         u32 hash2 = 0;
1085         u32 hash3 = 0;
1086         u32 hash4 = 0;
1087         u32 pm_csr;
1088
1089         /* If ET131X_PACKET_TYPE_MULTICAST is specified, then we provision
1090          * the multi-cast LIST.  If it is NOT specified, (and "ALL" is not
1091          * specified) then we should pass NO multi-cast addresses to the
1092          * driver.
1093          */
1094         if (adapter->packet_filter & ET131X_PACKET_TYPE_MULTICAST) {
1095                 int i;
1096
1097                 /* Loop through our multicast array and set up the device */
1098                 for (i = 0; i < adapter->multicast_addr_count; i++) {
1099                         u32 result;
1100
1101                         result = ether_crc(6, adapter->multicast_list[i]);
1102
1103                         result = (result & 0x3F800000) >> 23;
1104
1105                         if (result < 32) {
1106                                 hash1 |= (1 << result);
1107                         } else if ((31 < result) && (result < 64)) {
1108                                 result -= 32;
1109                                 hash2 |= (1 << result);
1110                         } else if ((63 < result) && (result < 96)) {
1111                                 result -= 64;
1112                                 hash3 |= (1 << result);
1113                         } else {
1114                                 result -= 96;
1115                                 hash4 |= (1 << result);
1116                         }
1117                 }
1118         }
1119
1120         /* Write out the new hash to the device */
1121         pm_csr = readl(&adapter->regs->global.pm_csr);
1122         if (!et1310_in_phy_coma(adapter)) {
1123                 writel(hash1, &rxmac->multi_hash1);
1124                 writel(hash2, &rxmac->multi_hash2);
1125                 writel(hash3, &rxmac->multi_hash3);
1126                 writel(hash4, &rxmac->multi_hash4);
1127         }
1128 }
1129
1130 static void et1310_setup_device_for_unicast(struct et131x_adapter *adapter)
1131 {
1132         struct rxmac_regs __iomem *rxmac = &adapter->regs->rxmac;
1133         u32 uni_pf1;
1134         u32 uni_pf2;
1135         u32 uni_pf3;
1136         u32 pm_csr;
1137
1138         /* Set up unicast packet filter reg 3 to be the first two octets of
1139          * the MAC address for both address
1140          *
1141          * Set up unicast packet filter reg 2 to be the octets 2 - 5 of the
1142          * MAC address for second address
1143          *
1144          * Set up unicast packet filter reg 3 to be the octets 2 - 5 of the
1145          * MAC address for first address
1146          */
1147         uni_pf3 = (adapter->addr[0] << ET_UNI_PF_ADDR2_1_SHIFT) |
1148                   (adapter->addr[1] << ET_UNI_PF_ADDR2_2_SHIFT) |
1149                   (adapter->addr[0] << ET_UNI_PF_ADDR1_1_SHIFT) |
1150                    adapter->addr[1];
1151
1152         uni_pf2 = (adapter->addr[2] << ET_UNI_PF_ADDR2_3_SHIFT) |
1153                   (adapter->addr[3] << ET_UNI_PF_ADDR2_4_SHIFT) |
1154                   (adapter->addr[4] << ET_UNI_PF_ADDR2_5_SHIFT) |
1155                    adapter->addr[5];
1156
1157         uni_pf1 = (adapter->addr[2] << ET_UNI_PF_ADDR1_3_SHIFT) |
1158                   (adapter->addr[3] << ET_UNI_PF_ADDR1_4_SHIFT) |
1159                   (adapter->addr[4] << ET_UNI_PF_ADDR1_5_SHIFT) |
1160                    adapter->addr[5];
1161
1162         pm_csr = readl(&adapter->regs->global.pm_csr);
1163         if (!et1310_in_phy_coma(adapter)) {
1164                 writel(uni_pf1, &rxmac->uni_pf_addr1);
1165                 writel(uni_pf2, &rxmac->uni_pf_addr2);
1166                 writel(uni_pf3, &rxmac->uni_pf_addr3);
1167         }
1168 }
1169
1170 static void et1310_config_rxmac_regs(struct et131x_adapter *adapter)
1171 {
1172         struct rxmac_regs __iomem *rxmac = &adapter->regs->rxmac;
1173         struct phy_device *phydev = adapter->phydev;
1174         u32 sa_lo;
1175         u32 sa_hi = 0;
1176         u32 pf_ctrl = 0;
1177
1178         /* Disable the MAC while it is being configured (also disable WOL) */
1179         writel(0x8, &rxmac->ctrl);
1180
1181         /* Initialize WOL to disabled. */
1182         writel(0, &rxmac->crc0);
1183         writel(0, &rxmac->crc12);
1184         writel(0, &rxmac->crc34);
1185
1186         /* We need to set the WOL mask0 - mask4 next.  We initialize it to
1187          * its default Values of 0x00000000 because there are not WOL masks
1188          * as of this time.
1189          */
1190         writel(0, &rxmac->mask0_word0);
1191         writel(0, &rxmac->mask0_word1);
1192         writel(0, &rxmac->mask0_word2);
1193         writel(0, &rxmac->mask0_word3);
1194
1195         writel(0, &rxmac->mask1_word0);
1196         writel(0, &rxmac->mask1_word1);
1197         writel(0, &rxmac->mask1_word2);
1198         writel(0, &rxmac->mask1_word3);
1199
1200         writel(0, &rxmac->mask2_word0);
1201         writel(0, &rxmac->mask2_word1);
1202         writel(0, &rxmac->mask2_word2);
1203         writel(0, &rxmac->mask2_word3);
1204
1205         writel(0, &rxmac->mask3_word0);
1206         writel(0, &rxmac->mask3_word1);
1207         writel(0, &rxmac->mask3_word2);
1208         writel(0, &rxmac->mask3_word3);
1209
1210         writel(0, &rxmac->mask4_word0);
1211         writel(0, &rxmac->mask4_word1);
1212         writel(0, &rxmac->mask4_word2);
1213         writel(0, &rxmac->mask4_word3);
1214
1215         /* Lets setup the WOL Source Address */
1216         sa_lo = (adapter->addr[2] << ET_WOL_LO_SA3_SHIFT) |
1217                 (adapter->addr[3] << ET_WOL_LO_SA4_SHIFT) |
1218                 (adapter->addr[4] << ET_WOL_LO_SA5_SHIFT) |
1219                  adapter->addr[5];
1220         writel(sa_lo, &rxmac->sa_lo);
1221
1222         sa_hi = (u32) (adapter->addr[0] << ET_WOL_HI_SA1_SHIFT) |
1223                        adapter->addr[1];
1224         writel(sa_hi, &rxmac->sa_hi);
1225
1226         /* Disable all Packet Filtering */
1227         writel(0, &rxmac->pf_ctrl);
1228
1229         /* Let's initialize the Unicast Packet filtering address */
1230         if (adapter->packet_filter & ET131X_PACKET_TYPE_DIRECTED) {
1231                 et1310_setup_device_for_unicast(adapter);
1232                 pf_ctrl |= 4;   /* Unicast filter */
1233         } else {
1234                 writel(0, &rxmac->uni_pf_addr1);
1235                 writel(0, &rxmac->uni_pf_addr2);
1236                 writel(0, &rxmac->uni_pf_addr3);
1237         }
1238
1239         /* Let's initialize the Multicast hash */
1240         if (!(adapter->packet_filter & ET131X_PACKET_TYPE_ALL_MULTICAST)) {
1241                 pf_ctrl |= 2;   /* Multicast filter */
1242                 et1310_setup_device_for_multicast(adapter);
1243         }
1244
1245         /* Runt packet filtering.  Didn't work in version A silicon. */
1246         pf_ctrl |= (NIC_MIN_PACKET_SIZE + 4) << 16;
1247         pf_ctrl |= 8;   /* Fragment filter */
1248
1249         if (adapter->registry_jumbo_packet > 8192)
1250                 /* In order to transmit jumbo packets greater than 8k, the
1251                  * FIFO between RxMAC and RxDMA needs to be reduced in size
1252                  * to (16k - Jumbo packet size).  In order to implement this,
1253                  * we must use "cut through" mode in the RxMAC, which chops
1254                  * packets down into segments which are (max_size * 16).  In
1255                  * this case we selected 256 bytes, since this is the size of
1256                  * the PCI-Express TLP's that the 1310 uses.
1257                  *
1258                  * seg_en on, fc_en off, size 0x10
1259                  */
1260                 writel(0x41, &rxmac->mcif_ctrl_max_seg);
1261         else
1262                 writel(0, &rxmac->mcif_ctrl_max_seg);
1263
1264         /* Initialize the MCIF water marks */
1265         writel(0, &rxmac->mcif_water_mark);
1266
1267         /*  Initialize the MIF control */
1268         writel(0, &rxmac->mif_ctrl);
1269
1270         /* Initialize the Space Available Register */
1271         writel(0, &rxmac->space_avail);
1272
1273         /* Initialize the the mif_ctrl register
1274          * bit 3:  Receive code error. One or more nibbles were signaled as
1275          *         errors  during the reception of the packet.  Clear this
1276          *         bit in Gigabit, set it in 100Mbit.  This was derived
1277          *         experimentally at UNH.
1278          * bit 4:  Receive CRC error. The packet's CRC did not match the
1279          *         internally generated CRC.
1280          * bit 5:  Receive length check error. Indicates that frame length
1281          *         field value in the packet does not match the actual data
1282          *         byte length and is not a type field.
1283          * bit 16: Receive frame truncated.
1284          * bit 17: Drop packet enable
1285          */
1286         if (phydev && phydev->speed == SPEED_100)
1287                 writel(0x30038, &rxmac->mif_ctrl);
1288         else
1289                 writel(0x30030, &rxmac->mif_ctrl);
1290
1291         /* Finally we initialize RxMac to be enabled & WOL disabled.  Packet
1292          * filter is always enabled since it is where the runt packets are
1293          * supposed to be dropped.  For version A silicon, runt packet
1294          * dropping doesn't work, so it is disabled in the pf_ctrl register,
1295          * but we still leave the packet filter on.
1296          */
1297         writel(pf_ctrl, &rxmac->pf_ctrl);
1298         writel(0x9, &rxmac->ctrl);
1299 }
1300
1301 static void et1310_config_txmac_regs(struct et131x_adapter *adapter)
1302 {
1303         struct txmac_regs __iomem *txmac = &adapter->regs->txmac;
1304
1305         /* We need to update the Control Frame Parameters
1306          * cfpt - control frame pause timer set to 64 (0x40)
1307          * cfep - control frame extended pause timer set to 0x0
1308          */
1309         if (adapter->flowcontrol == FLOW_NONE)
1310                 writel(0, &txmac->cf_param);
1311         else
1312                 writel(0x40, &txmac->cf_param);
1313 }
1314
1315 static void et1310_config_macstat_regs(struct et131x_adapter *adapter)
1316 {
1317         struct macstat_regs __iomem *macstat =
1318                 &adapter->regs->macstat;
1319
1320         /* Next we need to initialize all the macstat registers to zero on
1321          * the device.
1322          */
1323         writel(0, &macstat->txrx_0_64_byte_frames);
1324         writel(0, &macstat->txrx_65_127_byte_frames);
1325         writel(0, &macstat->txrx_128_255_byte_frames);
1326         writel(0, &macstat->txrx_256_511_byte_frames);
1327         writel(0, &macstat->txrx_512_1023_byte_frames);
1328         writel(0, &macstat->txrx_1024_1518_byte_frames);
1329         writel(0, &macstat->txrx_1519_1522_gvln_frames);
1330
1331         writel(0, &macstat->rx_bytes);
1332         writel(0, &macstat->rx_packets);
1333         writel(0, &macstat->rx_fcs_errs);
1334         writel(0, &macstat->rx_multicast_packets);
1335         writel(0, &macstat->rx_broadcast_packets);
1336         writel(0, &macstat->rx_control_frames);
1337         writel(0, &macstat->rx_pause_frames);
1338         writel(0, &macstat->rx_unknown_opcodes);
1339         writel(0, &macstat->rx_align_errs);
1340         writel(0, &macstat->rx_frame_len_errs);
1341         writel(0, &macstat->rx_code_errs);
1342         writel(0, &macstat->rx_carrier_sense_errs);
1343         writel(0, &macstat->rx_undersize_packets);
1344         writel(0, &macstat->rx_oversize_packets);
1345         writel(0, &macstat->rx_fragment_packets);
1346         writel(0, &macstat->rx_jabbers);
1347         writel(0, &macstat->rx_drops);
1348
1349         writel(0, &macstat->tx_bytes);
1350         writel(0, &macstat->tx_packets);
1351         writel(0, &macstat->tx_multicast_packets);
1352         writel(0, &macstat->tx_broadcast_packets);
1353         writel(0, &macstat->tx_pause_frames);
1354         writel(0, &macstat->tx_deferred);
1355         writel(0, &macstat->tx_excessive_deferred);
1356         writel(0, &macstat->tx_single_collisions);
1357         writel(0, &macstat->tx_multiple_collisions);
1358         writel(0, &macstat->tx_late_collisions);
1359         writel(0, &macstat->tx_excessive_collisions);
1360         writel(0, &macstat->tx_total_collisions);
1361         writel(0, &macstat->tx_pause_honored_frames);
1362         writel(0, &macstat->tx_drops);
1363         writel(0, &macstat->tx_jabbers);
1364         writel(0, &macstat->tx_fcs_errs);
1365         writel(0, &macstat->tx_control_frames);
1366         writel(0, &macstat->tx_oversize_frames);
1367         writel(0, &macstat->tx_undersize_frames);
1368         writel(0, &macstat->tx_fragments);
1369         writel(0, &macstat->carry_reg1);
1370         writel(0, &macstat->carry_reg2);
1371
1372         /* Unmask any counters that we want to track the overflow of.
1373          * Initially this will be all counters.  It may become clear later
1374          * that we do not need to track all counters.
1375          */
1376         writel(0xFFFFBE32, &macstat->carry_reg1_mask);
1377         writel(0xFFFE7E8B, &macstat->carry_reg2_mask);
1378 }
1379
1380 /**
1381  * et131x_phy_mii_read - Read from the PHY through the MII Interface on the MAC
1382  * @adapter: pointer to our private adapter structure
1383  * @addr: the address of the transceiver
1384  * @reg: the register to read
1385  * @value: pointer to a 16-bit value in which the value will be stored
1386  *
1387  * Returns 0 on success, errno on failure (as defined in errno.h)
1388  */
1389 static int et131x_phy_mii_read(struct et131x_adapter *adapter, u8 addr,
1390               u8 reg, u16 *value)
1391 {
1392         struct mac_regs __iomem *mac = &adapter->regs->mac;
1393         int status = 0;
1394         u32 delay = 0;
1395         u32 mii_addr;
1396         u32 mii_cmd;
1397         u32 mii_indicator;
1398
1399         /* Save a local copy of the registers we are dealing with so we can
1400          * set them back
1401          */
1402         mii_addr = readl(&mac->mii_mgmt_addr);
1403         mii_cmd = readl(&mac->mii_mgmt_cmd);
1404
1405         /* Stop the current operation */
1406         writel(0, &mac->mii_mgmt_cmd);
1407
1408         /* Set up the register we need to read from on the correct PHY */
1409         writel(MII_ADDR(addr, reg), &mac->mii_mgmt_addr);
1410
1411         writel(0x1, &mac->mii_mgmt_cmd);
1412
1413         do {
1414                 udelay(50);
1415                 delay++;
1416                 mii_indicator = readl(&mac->mii_mgmt_indicator);
1417         } while ((mii_indicator & MGMT_WAIT) && delay < 50);
1418
1419         /* If we hit the max delay, we could not read the register */
1420         if (delay == 50) {
1421                 dev_warn(&adapter->pdev->dev,
1422                             "reg 0x%08x could not be read\n", reg);
1423                 dev_warn(&adapter->pdev->dev, "status is  0x%08x\n",
1424                             mii_indicator);
1425
1426                 status = -EIO;
1427         }
1428
1429         /* If we hit here we were able to read the register and we need to
1430          * return the value to the caller */
1431         *value = readl(&mac->mii_mgmt_stat) & 0xFFFF;
1432
1433         /* Stop the read operation */
1434         writel(0, &mac->mii_mgmt_cmd);
1435
1436         /* set the registers we touched back to the state at which we entered
1437          * this function
1438          */
1439         writel(mii_addr, &mac->mii_mgmt_addr);
1440         writel(mii_cmd, &mac->mii_mgmt_cmd);
1441
1442         return status;
1443 }
1444
1445 static int et131x_mii_read(struct et131x_adapter *adapter, u8 reg, u16 *value)
1446 {
1447         struct phy_device *phydev = adapter->phydev;
1448
1449         if (!phydev)
1450                 return -EIO;
1451
1452         return et131x_phy_mii_read(adapter, phydev->addr, reg, value);
1453 }
1454
1455 /**
1456  * et131x_mii_write - Write to a PHY register through the MII interface of the MAC
1457  * @adapter: pointer to our private adapter structure
1458  * @reg: the register to read
1459  * @value: 16-bit value to write
1460  *
1461  * FIXME: one caller in netdev still
1462  *
1463  * Return 0 on success, errno on failure (as defined in errno.h)
1464  */
1465 static int et131x_mii_write(struct et131x_adapter *adapter, u8 reg, u16 value)
1466 {
1467         struct mac_regs __iomem *mac = &adapter->regs->mac;
1468         struct phy_device *phydev = adapter->phydev;
1469         int status = 0;
1470         u8 addr;
1471         u32 delay = 0;
1472         u32 mii_addr;
1473         u32 mii_cmd;
1474         u32 mii_indicator;
1475
1476         if (!phydev)
1477                 return -EIO;
1478
1479         addr = phydev->addr;
1480
1481         /* Save a local copy of the registers we are dealing with so we can
1482          * set them back
1483          */
1484         mii_addr = readl(&mac->mii_mgmt_addr);
1485         mii_cmd = readl(&mac->mii_mgmt_cmd);
1486
1487         /* Stop the current operation */
1488         writel(0, &mac->mii_mgmt_cmd);
1489
1490         /* Set up the register we need to write to on the correct PHY */
1491         writel(MII_ADDR(addr, reg), &mac->mii_mgmt_addr);
1492
1493         /* Add the value to write to the registers to the mac */
1494         writel(value, &mac->mii_mgmt_ctrl);
1495
1496         do {
1497                 udelay(50);
1498                 delay++;
1499                 mii_indicator = readl(&mac->mii_mgmt_indicator);
1500         } while ((mii_indicator & MGMT_BUSY) && delay < 100);
1501
1502         /* If we hit the max delay, we could not write the register */
1503         if (delay == 100) {
1504                 u16 tmp;
1505
1506                 dev_warn(&adapter->pdev->dev,
1507                     "reg 0x%08x could not be written", reg);
1508                 dev_warn(&adapter->pdev->dev, "status is  0x%08x\n",
1509                             mii_indicator);
1510                 dev_warn(&adapter->pdev->dev, "command is  0x%08x\n",
1511                             readl(&mac->mii_mgmt_cmd));
1512
1513                 et131x_mii_read(adapter, reg, &tmp);
1514
1515                 status = -EIO;
1516         }
1517         /* Stop the write operation */
1518         writel(0, &mac->mii_mgmt_cmd);
1519
1520         /*
1521          * set the registers we touched back to the state at which we entered
1522          * this function
1523          */
1524         writel(mii_addr, &mac->mii_mgmt_addr);
1525         writel(mii_cmd, &mac->mii_mgmt_cmd);
1526
1527         return status;
1528 }
1529
1530 /* Still used from _mac for BIT_READ */
1531 static void et1310_phy_access_mii_bit(struct et131x_adapter *adapter,
1532                                       u16 action, u16 regnum, u16 bitnum,
1533                                       u8 *value)
1534 {
1535         u16 reg;
1536         u16 mask = 0x0001 << bitnum;
1537
1538         /* Read the requested register */
1539         et131x_mii_read(adapter, regnum, &reg);
1540
1541         switch (action) {
1542         case TRUEPHY_BIT_READ:
1543                 *value = (reg & mask) >> bitnum;
1544                 break;
1545
1546         case TRUEPHY_BIT_SET:
1547                 et131x_mii_write(adapter, regnum, reg | mask);
1548                 break;
1549
1550         case TRUEPHY_BIT_CLEAR:
1551                 et131x_mii_write(adapter, regnum, reg & ~mask);
1552                 break;
1553
1554         default:
1555                 break;
1556         }
1557 }
1558
1559 static void et1310_config_flow_control(struct et131x_adapter *adapter)
1560 {
1561         struct phy_device *phydev = adapter->phydev;
1562
1563         if (phydev->duplex == DUPLEX_HALF) {
1564                 adapter->flowcontrol = FLOW_NONE;
1565         } else {
1566                 char remote_pause, remote_async_pause;
1567
1568                 et1310_phy_access_mii_bit(adapter,
1569                                 TRUEPHY_BIT_READ, 5, 10, &remote_pause);
1570                 et1310_phy_access_mii_bit(adapter,
1571                                 TRUEPHY_BIT_READ, 5, 11,
1572                                 &remote_async_pause);
1573
1574                 if ((remote_pause == TRUEPHY_BIT_SET) &&
1575                     (remote_async_pause == TRUEPHY_BIT_SET)) {
1576                         adapter->flowcontrol = adapter->wanted_flow;
1577                 } else if ((remote_pause == TRUEPHY_BIT_SET) &&
1578                            (remote_async_pause == TRUEPHY_BIT_CLEAR)) {
1579                         if (adapter->wanted_flow == FLOW_BOTH)
1580                                 adapter->flowcontrol = FLOW_BOTH;
1581                         else
1582                                 adapter->flowcontrol = FLOW_NONE;
1583                 } else if ((remote_pause == TRUEPHY_BIT_CLEAR) &&
1584                            (remote_async_pause == TRUEPHY_BIT_CLEAR)) {
1585                         adapter->flowcontrol = FLOW_NONE;
1586                 } else {/* if (remote_pause == TRUEPHY_CLEAR_BIT &&
1587                                remote_async_pause == TRUEPHY_SET_BIT) */
1588                         if (adapter->wanted_flow == FLOW_BOTH)
1589                                 adapter->flowcontrol = FLOW_RXONLY;
1590                         else
1591                                 adapter->flowcontrol = FLOW_NONE;
1592                 }
1593         }
1594 }
1595
1596 /**
1597  * et1310_update_macstat_host_counters - Update the local copy of the statistics
1598  * @adapter: pointer to the adapter structure
1599  */
1600 static void et1310_update_macstat_host_counters(struct et131x_adapter *adapter)
1601 {
1602         struct ce_stats *stats = &adapter->stats;
1603         struct macstat_regs __iomem *macstat =
1604                 &adapter->regs->macstat;
1605
1606         stats->tx_collisions           += readl(&macstat->tx_total_collisions);
1607         stats->tx_first_collisions     += readl(&macstat->tx_single_collisions);
1608         stats->tx_deferred             += readl(&macstat->tx_deferred);
1609         stats->tx_excessive_collisions +=
1610                                 readl(&macstat->tx_multiple_collisions);
1611         stats->tx_late_collisions      += readl(&macstat->tx_late_collisions);
1612         stats->tx_underflows           += readl(&macstat->tx_undersize_frames);
1613         stats->tx_max_pkt_errs         += readl(&macstat->tx_oversize_frames);
1614
1615         stats->rx_align_errs        += readl(&macstat->rx_align_errs);
1616         stats->rx_crc_errs          += readl(&macstat->rx_code_errs);
1617         stats->rcvd_pkts_dropped    += readl(&macstat->rx_drops);
1618         stats->rx_overflows         += readl(&macstat->rx_oversize_packets);
1619         stats->rx_code_violations   += readl(&macstat->rx_fcs_errs);
1620         stats->rx_length_errs       += readl(&macstat->rx_frame_len_errs);
1621         stats->rx_other_errs        += readl(&macstat->rx_fragment_packets);
1622 }
1623
1624 /**
1625  * et1310_handle_macstat_interrupt
1626  * @adapter: pointer to the adapter structure
1627  *
1628  * One of the MACSTAT counters has wrapped.  Update the local copy of
1629  * the statistics held in the adapter structure, checking the "wrap"
1630  * bit for each counter.
1631  */
1632 static void et1310_handle_macstat_interrupt(struct et131x_adapter *adapter)
1633 {
1634         u32 carry_reg1;
1635         u32 carry_reg2;
1636
1637         /* Read the interrupt bits from the register(s).  These are Clear On
1638          * Write.
1639          */
1640         carry_reg1 = readl(&adapter->regs->macstat.carry_reg1);
1641         carry_reg2 = readl(&adapter->regs->macstat.carry_reg2);
1642
1643         writel(carry_reg1, &adapter->regs->macstat.carry_reg1);
1644         writel(carry_reg2, &adapter->regs->macstat.carry_reg2);
1645
1646         /* We need to do update the host copy of all the MAC_STAT counters.
1647          * For each counter, check it's overflow bit.  If the overflow bit is
1648          * set, then increment the host version of the count by one complete
1649          * revolution of the counter.  This routine is called when the counter
1650          * block indicates that one of the counters has wrapped.
1651          */
1652         if (carry_reg1 & (1 << 14))
1653                 adapter->stats.rx_code_violations       += COUNTER_WRAP_16_BIT;
1654         if (carry_reg1 & (1 << 8))
1655                 adapter->stats.rx_align_errs    += COUNTER_WRAP_12_BIT;
1656         if (carry_reg1 & (1 << 7))
1657                 adapter->stats.rx_length_errs   += COUNTER_WRAP_16_BIT;
1658         if (carry_reg1 & (1 << 2))
1659                 adapter->stats.rx_other_errs    += COUNTER_WRAP_16_BIT;
1660         if (carry_reg1 & (1 << 6))
1661                 adapter->stats.rx_crc_errs      += COUNTER_WRAP_16_BIT;
1662         if (carry_reg1 & (1 << 3))
1663                 adapter->stats.rx_overflows     += COUNTER_WRAP_16_BIT;
1664         if (carry_reg1 & (1 << 0))
1665                 adapter->stats.rcvd_pkts_dropped        += COUNTER_WRAP_16_BIT;
1666         if (carry_reg2 & (1 << 16))
1667                 adapter->stats.tx_max_pkt_errs  += COUNTER_WRAP_12_BIT;
1668         if (carry_reg2 & (1 << 15))
1669                 adapter->stats.tx_underflows    += COUNTER_WRAP_12_BIT;
1670         if (carry_reg2 & (1 << 6))
1671                 adapter->stats.tx_first_collisions += COUNTER_WRAP_12_BIT;
1672         if (carry_reg2 & (1 << 8))
1673                 adapter->stats.tx_deferred      += COUNTER_WRAP_12_BIT;
1674         if (carry_reg2 & (1 << 5))
1675                 adapter->stats.tx_excessive_collisions += COUNTER_WRAP_12_BIT;
1676         if (carry_reg2 & (1 << 4))
1677                 adapter->stats.tx_late_collisions       += COUNTER_WRAP_12_BIT;
1678         if (carry_reg2 & (1 << 2))
1679                 adapter->stats.tx_collisions    += COUNTER_WRAP_12_BIT;
1680 }
1681
1682 static int et131x_mdio_read(struct mii_bus *bus, int phy_addr, int reg)
1683 {
1684         struct net_device *netdev = bus->priv;
1685         struct et131x_adapter *adapter = netdev_priv(netdev);
1686         u16 value;
1687         int ret;
1688
1689         ret = et131x_phy_mii_read(adapter, phy_addr, reg, &value);
1690
1691         if (ret < 0)
1692                 return ret;
1693         else
1694                 return value;
1695 }
1696
1697 static int et131x_mdio_write(struct mii_bus *bus, int phy_addr,
1698                              int reg, u16 value)
1699 {
1700         struct net_device *netdev = bus->priv;
1701         struct et131x_adapter *adapter = netdev_priv(netdev);
1702
1703         return et131x_mii_write(adapter, reg, value);
1704 }
1705
1706 static int et131x_mdio_reset(struct mii_bus *bus)
1707 {
1708         struct net_device *netdev = bus->priv;
1709         struct et131x_adapter *adapter = netdev_priv(netdev);
1710
1711         et131x_mii_write(adapter, MII_BMCR, BMCR_RESET);
1712
1713         return 0;
1714 }
1715
1716 /**
1717  *      et1310_phy_power_down   -       PHY power control
1718  *      @adapter: device to control
1719  *      @down: true for off/false for back on
1720  *
1721  *      one hundred, ten, one thousand megs
1722  *      How would you like to have your LAN accessed
1723  *      Can't you see that this code processed
1724  *      Phy power, phy power..
1725  */
1726 static void et1310_phy_power_down(struct et131x_adapter *adapter, bool down)
1727 {
1728         u16 data;
1729
1730         et131x_mii_read(adapter, MII_BMCR, &data);
1731         data &= ~BMCR_PDOWN;
1732         if (down)
1733                 data |= BMCR_PDOWN;
1734         et131x_mii_write(adapter, MII_BMCR, data);
1735 }
1736
1737 /**
1738  * et131x_xcvr_init - Init the phy if we are setting it into force mode
1739  * @adapter: pointer to our private adapter structure
1740  *
1741  */
1742 static void et131x_xcvr_init(struct et131x_adapter *adapter)
1743 {
1744         u16 lcr2;
1745
1746         /* Set the LED behavior such that LED 1 indicates speed (off =
1747          * 10Mbits, blink = 100Mbits, on = 1000Mbits) and LED 2 indicates
1748          * link and activity (on for link, blink off for activity).
1749          *
1750          * NOTE: Some customizations have been added here for specific
1751          * vendors; The LED behavior is now determined by vendor data in the
1752          * EEPROM. However, the above description is the default.
1753          */
1754         if ((adapter->eeprom_data[1] & 0x4) == 0) {
1755                 et131x_mii_read(adapter, PHY_LED_2, &lcr2);
1756
1757                 lcr2 &= (ET_LED2_LED_100TX | ET_LED2_LED_1000T);
1758                 lcr2 |= (LED_VAL_LINKON_ACTIVE << LED_LINK_SHIFT);
1759
1760                 if ((adapter->eeprom_data[1] & 0x8) == 0)
1761                         lcr2 |= (LED_VAL_1000BT_100BTX << LED_TXRX_SHIFT);
1762                 else
1763                         lcr2 |= (LED_VAL_LINKON << LED_TXRX_SHIFT);
1764
1765                 et131x_mii_write(adapter, PHY_LED_2, lcr2);
1766         }
1767 }
1768
1769 /**
1770  * et131x_configure_global_regs - configure JAGCore global regs
1771  * @adapter: pointer to our adapter structure
1772  *
1773  * Used to configure the global registers on the JAGCore
1774  */
1775 static void et131x_configure_global_regs(struct et131x_adapter *adapter)
1776 {
1777         struct global_regs __iomem *regs = &adapter->regs->global;
1778
1779         writel(0, &regs->rxq_start_addr);
1780         writel(INTERNAL_MEM_SIZE - 1, &regs->txq_end_addr);
1781
1782         if (adapter->registry_jumbo_packet < 2048) {
1783                 /* Tx / RxDMA and Tx/Rx MAC interfaces have a 1k word
1784                  * block of RAM that the driver can split between Tx
1785                  * and Rx as it desires.  Our default is to split it
1786                  * 50/50:
1787                  */
1788                 writel(PARM_RX_MEM_END_DEF, &regs->rxq_end_addr);
1789                 writel(PARM_RX_MEM_END_DEF + 1, &regs->txq_start_addr);
1790         } else if (adapter->registry_jumbo_packet < 8192) {
1791                 /* For jumbo packets > 2k but < 8k, split 50-50. */
1792                 writel(INTERNAL_MEM_RX_OFFSET, &regs->rxq_end_addr);
1793                 writel(INTERNAL_MEM_RX_OFFSET + 1, &regs->txq_start_addr);
1794         } else {
1795                 /* 9216 is the only packet size greater than 8k that
1796                  * is available. The Tx buffer has to be big enough
1797                  * for one whole packet on the Tx side. We'll make
1798                  * the Tx 9408, and give the rest to Rx
1799                  */
1800                 writel(0x01b3, &regs->rxq_end_addr);
1801                 writel(0x01b4, &regs->txq_start_addr);
1802         }
1803
1804         /* Initialize the loopback register. Disable all loopbacks. */
1805         writel(0, &regs->loopback);
1806
1807         /* MSI Register */
1808         writel(0, &regs->msi_config);
1809
1810         /* By default, disable the watchdog timer.  It will be enabled when
1811          * a packet is queued.
1812          */
1813         writel(0, &regs->watchdog_timer);
1814 }
1815
1816 /**
1817  * et131x_config_rx_dma_regs - Start of Rx_DMA init sequence
1818  * @adapter: pointer to our adapter structure
1819  */
1820 static void et131x_config_rx_dma_regs(struct et131x_adapter *adapter)
1821 {
1822         struct rxdma_regs __iomem *rx_dma = &adapter->regs->rxdma;
1823         struct rx_ring *rx_local = &adapter->rx_ring;
1824         struct fbr_desc *fbr_entry;
1825         u32 entry;
1826         u32 psr_num_des;
1827         unsigned long flags;
1828         u8 id;
1829
1830         /* Halt RXDMA to perform the reconfigure.  */
1831         et131x_rx_dma_disable(adapter);
1832
1833         /* Load the completion writeback physical address */
1834         writel(upper_32_bits(rx_local->rx_status_bus), &rx_dma->dma_wb_base_hi);
1835         writel(lower_32_bits(rx_local->rx_status_bus), &rx_dma->dma_wb_base_lo);
1836
1837         memset(rx_local->rx_status_block, 0, sizeof(struct rx_status_block));
1838
1839         /* Set the address and parameters of the packet status ring into the
1840          * 1310's registers
1841          */
1842         writel(upper_32_bits(rx_local->ps_ring_physaddr), &rx_dma->psr_base_hi);
1843         writel(lower_32_bits(rx_local->ps_ring_physaddr), &rx_dma->psr_base_lo);
1844         writel(rx_local->psr_num_entries - 1, &rx_dma->psr_num_des);
1845         writel(0, &rx_dma->psr_full_offset);
1846
1847         psr_num_des = readl(&rx_dma->psr_num_des) & 0xFFF;
1848         writel((psr_num_des * LO_MARK_PERCENT_FOR_PSR) / 100,
1849                &rx_dma->psr_min_des);
1850
1851         spin_lock_irqsave(&adapter->rcv_lock, flags);
1852
1853         /* These local variables track the PSR in the adapter structure */
1854         rx_local->local_psr_full = 0;
1855
1856         for (id = 0; id < NUM_FBRS; id++) {
1857                 u32 *num_des;
1858                 u32 *full_offset;
1859                 u32 *min_des;
1860                 u32 *base_hi;
1861                 u32 *base_lo;
1862
1863                 if (id == 0) {
1864                         num_des = &rx_dma->fbr0_num_des;
1865                         full_offset = &rx_dma->fbr0_full_offset;
1866                         min_des = &rx_dma->fbr0_min_des;
1867                         base_hi = &rx_dma->fbr0_base_hi;
1868                         base_lo = &rx_dma->fbr0_base_lo;
1869                 } else {
1870                         num_des = &rx_dma->fbr1_num_des;
1871                         full_offset = &rx_dma->fbr1_full_offset;
1872                         min_des = &rx_dma->fbr1_min_des;
1873                         base_hi = &rx_dma->fbr1_base_hi;
1874                         base_lo = &rx_dma->fbr1_base_lo;
1875                 }
1876
1877                 /* Now's the best time to initialize FBR contents */
1878                 fbr_entry = (struct fbr_desc *) rx_local->fbr[id]->ring_virtaddr;
1879                 for (entry = 0; entry < rx_local->fbr[id]->num_entries; entry++) {
1880                         fbr_entry->addr_hi = rx_local->fbr[id]->bus_high[entry];
1881                         fbr_entry->addr_lo = rx_local->fbr[id]->bus_low[entry];
1882                         fbr_entry->word2 = entry;
1883                         fbr_entry++;
1884                 }
1885
1886                 /* Set the address and parameters of Free buffer ring 1 and 0
1887                  * into the 1310's registers
1888                  */
1889                 writel(upper_32_bits(rx_local->fbr[id]->ring_physaddr), base_hi);
1890                 writel(lower_32_bits(rx_local->fbr[id]->ring_physaddr), base_lo);
1891                 writel(rx_local->fbr[id]->num_entries - 1, num_des);
1892                 writel(ET_DMA10_WRAP, full_offset);
1893
1894                 /* This variable tracks the free buffer ring 1 full position,
1895                  * so it has to match the above.
1896                  */
1897                 rx_local->fbr[id]->local_full = ET_DMA10_WRAP;
1898                 writel(((rx_local->fbr[id]->num_entries *
1899                                         LO_MARK_PERCENT_FOR_RX) / 100) - 1,
1900                        min_des);
1901         }
1902
1903         /* Program the number of packets we will receive before generating an
1904          * interrupt.
1905          * For version B silicon, this value gets updated once autoneg is
1906          *complete.
1907          */
1908         writel(PARM_RX_NUM_BUFS_DEF, &rx_dma->num_pkt_done);
1909
1910         /* The "time_done" is not working correctly to coalesce interrupts
1911          * after a given time period, but rather is giving us an interrupt
1912          * regardless of whether we have received packets.
1913          * This value gets updated once autoneg is complete.
1914          */
1915         writel(PARM_RX_TIME_INT_DEF, &rx_dma->max_pkt_time);
1916
1917         spin_unlock_irqrestore(&adapter->rcv_lock, flags);
1918 }
1919
1920 /**
1921  * et131x_config_tx_dma_regs - Set up the tx dma section of the JAGCore.
1922  * @adapter: pointer to our private adapter structure
1923  *
1924  * Configure the transmit engine with the ring buffers we have created
1925  * and prepare it for use.
1926  */
1927 static void et131x_config_tx_dma_regs(struct et131x_adapter *adapter)
1928 {
1929         struct txdma_regs __iomem *txdma = &adapter->regs->txdma;
1930
1931         /* Load the hardware with the start of the transmit descriptor ring. */
1932         writel(upper_32_bits(adapter->tx_ring.tx_desc_ring_pa),
1933                &txdma->pr_base_hi);
1934         writel(lower_32_bits(adapter->tx_ring.tx_desc_ring_pa),
1935                &txdma->pr_base_lo);
1936
1937         /* Initialise the transmit DMA engine */
1938         writel(NUM_DESC_PER_RING_TX - 1, &txdma->pr_num_des);
1939
1940         /* Load the completion writeback physical address */
1941         writel(upper_32_bits(adapter->tx_ring.tx_status_pa),
1942                &txdma->dma_wb_base_hi);
1943         writel(lower_32_bits(adapter->tx_ring.tx_status_pa),
1944                &txdma->dma_wb_base_lo);
1945
1946         *adapter->tx_ring.tx_status = 0;
1947
1948         writel(0, &txdma->service_request);
1949         adapter->tx_ring.send_idx = 0;
1950 }
1951
1952 /**
1953  * et131x_adapter_setup - Set the adapter up as per cassini+ documentation
1954  * @adapter: pointer to our private adapter structure
1955  *
1956  * Returns 0 on success, errno on failure (as defined in errno.h)
1957  */
1958 static void et131x_adapter_setup(struct et131x_adapter *adapter)
1959 {
1960         /* Configure the JAGCore */
1961         et131x_configure_global_regs(adapter);
1962
1963         et1310_config_mac_regs1(adapter);
1964
1965         /* Configure the MMC registers */
1966         /* All we need to do is initialize the Memory Control Register */
1967         writel(ET_MMC_ENABLE, &adapter->regs->mmc.mmc_ctrl);
1968
1969         et1310_config_rxmac_regs(adapter);
1970         et1310_config_txmac_regs(adapter);
1971
1972         et131x_config_rx_dma_regs(adapter);
1973         et131x_config_tx_dma_regs(adapter);
1974
1975         et1310_config_macstat_regs(adapter);
1976
1977         et1310_phy_power_down(adapter, 0);
1978         et131x_xcvr_init(adapter);
1979 }
1980
1981 /**
1982  * et131x_soft_reset - Issue a soft reset to the hardware, complete for ET1310
1983  * @adapter: pointer to our private adapter structure
1984  */
1985 static void et131x_soft_reset(struct et131x_adapter *adapter)
1986 {
1987         /* Disable MAC Core */
1988         writel(0xc00f0000, &adapter->regs->mac.cfg1);
1989
1990         /* Set everything to a reset value */
1991         writel(0x7F, &adapter->regs->global.sw_reset);
1992         writel(0x000f0000, &adapter->regs->mac.cfg1);
1993         writel(0x00000000, &adapter->regs->mac.cfg1);
1994 }
1995
1996 /**
1997  *      et131x_enable_interrupts        -       enable interrupt
1998  *      @adapter: et131x device
1999  *
2000  *      Enable the appropriate interrupts on the ET131x according to our
2001  *      configuration
2002  */
2003 static void et131x_enable_interrupts(struct et131x_adapter *adapter)
2004 {
2005         u32 mask;
2006
2007         /* Enable all global interrupts */
2008         if (adapter->flowcontrol == FLOW_TXONLY ||
2009                             adapter->flowcontrol == FLOW_BOTH)
2010                 mask = INT_MASK_ENABLE;
2011         else
2012                 mask = INT_MASK_ENABLE_NO_FLOW;
2013
2014         writel(mask, &adapter->regs->global.int_mask);
2015 }
2016
2017 /**
2018  *      et131x_disable_interrupts       -       interrupt disable
2019  *      @adapter: et131x device
2020  *
2021  *      Block all interrupts from the et131x device at the device itself
2022  */
2023 static void et131x_disable_interrupts(struct et131x_adapter *adapter)
2024 {
2025         /* Disable all global interrupts */
2026         writel(INT_MASK_DISABLE, &adapter->regs->global.int_mask);
2027 }
2028
2029 /**
2030  * et131x_tx_dma_disable - Stop of Tx_DMA on the ET1310
2031  * @adapter: pointer to our adapter structure
2032  */
2033 static void et131x_tx_dma_disable(struct et131x_adapter *adapter)
2034 {
2035         /* Setup the tramsmit dma configuration register */
2036         writel(ET_TXDMA_CSR_HALT|ET_TXDMA_SNGL_EPKT,
2037                                         &adapter->regs->txdma.csr);
2038 }
2039
2040 /**
2041  * et131x_enable_txrx - Enable tx/rx queues
2042  * @netdev: device to be enabled
2043  */
2044 static void et131x_enable_txrx(struct net_device *netdev)
2045 {
2046         struct et131x_adapter *adapter = netdev_priv(netdev);
2047
2048         /* Enable the Tx and Rx DMA engines (if not already enabled) */
2049         et131x_rx_dma_enable(adapter);
2050         et131x_tx_dma_enable(adapter);
2051
2052         /* Enable device interrupts */
2053         if (adapter->flags & fMP_ADAPTER_INTERRUPT_IN_USE)
2054                 et131x_enable_interrupts(adapter);
2055
2056         /* We're ready to move some data, so start the queue */
2057         netif_start_queue(netdev);
2058 }
2059
2060 /**
2061  * et131x_disable_txrx - Disable tx/rx queues
2062  * @netdev: device to be disabled
2063  */
2064 static void et131x_disable_txrx(struct net_device *netdev)
2065 {
2066         struct et131x_adapter *adapter = netdev_priv(netdev);
2067
2068         /* First thing is to stop the queue */
2069         netif_stop_queue(netdev);
2070
2071         /* Stop the Tx and Rx DMA engines */
2072         et131x_rx_dma_disable(adapter);
2073         et131x_tx_dma_disable(adapter);
2074
2075         /* Disable device interrupts */
2076         et131x_disable_interrupts(adapter);
2077 }
2078
2079 /**
2080  * et131x_init_send - Initialize send data structures
2081  * @adapter: pointer to our private adapter structure
2082  */
2083 static void et131x_init_send(struct et131x_adapter *adapter)
2084 {
2085         struct tcb *tcb;
2086         u32 ct;
2087         struct tx_ring *tx_ring;
2088
2089         /* Setup some convenience pointers */
2090         tx_ring = &adapter->tx_ring;
2091         tcb = adapter->tx_ring.tcb_ring;
2092
2093         tx_ring->tcb_qhead = tcb;
2094
2095         memset(tcb, 0, sizeof(struct tcb) * NUM_TCB);
2096
2097         /* Go through and set up each TCB */
2098         for (ct = 0; ct++ < NUM_TCB; tcb++)
2099                 /* Set the link pointer in HW TCB to the next TCB in the
2100                  * chain
2101                  */
2102                 tcb->next = tcb + 1;
2103
2104         /* Set the  tail pointer */
2105         tcb--;
2106         tx_ring->tcb_qtail = tcb;
2107         tcb->next = NULL;
2108         /* Curr send queue should now be empty */
2109         tx_ring->send_head = NULL;
2110         tx_ring->send_tail = NULL;
2111 }
2112
2113 /**
2114  * et1310_enable_phy_coma - called when network cable is unplugged
2115  * @adapter: pointer to our adapter structure
2116  *
2117  * driver receive an phy status change interrupt while in D0 and check that
2118  * phy_status is down.
2119  *
2120  *          -- gate off JAGCore;
2121  *          -- set gigE PHY in Coma mode
2122  *          -- wake on phy_interrupt; Perform software reset JAGCore,
2123  *             re-initialize jagcore and gigE PHY
2124  *
2125  *      Add D0-ASPM-PhyLinkDown Support:
2126  *          -- while in D0, when there is a phy_interrupt indicating phy link
2127  *             down status, call the MPSetPhyComa routine to enter this active
2128  *             state power saving mode
2129  *          -- while in D0-ASPM-PhyLinkDown mode, when there is a phy_interrupt
2130  *       indicating linkup status, call the MPDisablePhyComa routine to
2131  *             restore JAGCore and gigE PHY
2132  */
2133 static void et1310_enable_phy_coma(struct et131x_adapter *adapter)
2134 {
2135         unsigned long flags;
2136         u32 pmcsr;
2137
2138         pmcsr = readl(&adapter->regs->global.pm_csr);
2139
2140         /* Save the GbE PHY speed and duplex modes. Need to restore this
2141          * when cable is plugged back in
2142          */
2143         /*
2144          * TODO - when PM is re-enabled, check if we need to
2145          * perform a similar task as this -
2146          * adapter->pdown_speed = adapter->ai_force_speed;
2147          * adapter->pdown_duplex = adapter->ai_force_duplex;
2148          */
2149
2150         /* Stop sending packets. */
2151         spin_lock_irqsave(&adapter->send_hw_lock, flags);
2152         adapter->flags |= fMP_ADAPTER_LOWER_POWER;
2153         spin_unlock_irqrestore(&adapter->send_hw_lock, flags);
2154
2155         /* Wait for outstanding Receive packets */
2156
2157         et131x_disable_txrx(adapter->netdev);
2158
2159         /* Gate off JAGCore 3 clock domains */
2160         pmcsr &= ~ET_PMCSR_INIT;
2161         writel(pmcsr, &adapter->regs->global.pm_csr);
2162
2163         /* Program gigE PHY in to Coma mode */
2164         pmcsr |= ET_PM_PHY_SW_COMA;
2165         writel(pmcsr, &adapter->regs->global.pm_csr);
2166 }
2167
2168 /**
2169  * et1310_disable_phy_coma - Disable the Phy Coma Mode
2170  * @adapter: pointer to our adapter structure
2171  */
2172 static void et1310_disable_phy_coma(struct et131x_adapter *adapter)
2173 {
2174         u32 pmcsr;
2175
2176         pmcsr = readl(&adapter->regs->global.pm_csr);
2177
2178         /* Disable phy_sw_coma register and re-enable JAGCore clocks */
2179         pmcsr |= ET_PMCSR_INIT;
2180         pmcsr &= ~ET_PM_PHY_SW_COMA;
2181         writel(pmcsr, &adapter->regs->global.pm_csr);
2182
2183         /* Restore the GbE PHY speed and duplex modes;
2184          * Reset JAGCore; re-configure and initialize JAGCore and gigE PHY
2185          */
2186         /* TODO - when PM is re-enabled, check if we need to
2187          * perform a similar task as this -
2188          * adapter->ai_force_speed = adapter->pdown_speed;
2189          * adapter->ai_force_duplex = adapter->pdown_duplex;
2190          */
2191
2192         /* Re-initialize the send structures */
2193         et131x_init_send(adapter);
2194
2195         /* Bring the device back to the state it was during init prior to
2196          * autonegotiation being complete.  This way, when we get the auto-neg
2197          * complete interrupt, we can complete init by calling ConfigMacREGS2.
2198          */
2199         et131x_soft_reset(adapter);
2200
2201         /* setup et1310 as per the documentation ?? */
2202         et131x_adapter_setup(adapter);
2203
2204         /* Allow Tx to restart */
2205         adapter->flags &= ~fMP_ADAPTER_LOWER_POWER;
2206
2207         et131x_enable_txrx(adapter->netdev);
2208 }
2209
2210 static inline u32 bump_free_buff_ring(u32 *free_buff_ring, u32 limit)
2211 {
2212         u32 tmp_free_buff_ring = *free_buff_ring;
2213         tmp_free_buff_ring++;
2214         /* This works for all cases where limit < 1024. The 1023 case
2215            works because 1023++ is 1024 which means the if condition is not
2216            taken but the carry of the bit into the wrap bit toggles the wrap
2217            value correctly */
2218         if ((tmp_free_buff_ring & ET_DMA10_MASK) > limit) {
2219                 tmp_free_buff_ring &= ~ET_DMA10_MASK;
2220                 tmp_free_buff_ring ^= ET_DMA10_WRAP;
2221         }
2222         /* For the 1023 case */
2223         tmp_free_buff_ring &= (ET_DMA10_MASK|ET_DMA10_WRAP);
2224         *free_buff_ring = tmp_free_buff_ring;
2225         return tmp_free_buff_ring;
2226 }
2227
2228 /**
2229  * et131x_rx_dma_memory_alloc
2230  * @adapter: pointer to our private adapter structure
2231  *
2232  * Returns 0 on success and errno on failure (as defined in errno.h)
2233  *
2234  * Allocates Free buffer ring 1 for sure, free buffer ring 0 if required,
2235  * and the Packet Status Ring.
2236  */
2237 static int et131x_rx_dma_memory_alloc(struct et131x_adapter *adapter)
2238 {
2239         u8 id;
2240         u32 i, j;
2241         u32 bufsize;
2242         u32 pktstat_ringsize;
2243         u32 fbr_chunksize;
2244         struct rx_ring *rx_ring;
2245
2246         /* Setup some convenience pointers */
2247         rx_ring = &adapter->rx_ring;
2248
2249         /* Alloc memory for the lookup table */
2250         rx_ring->fbr[0] = kmalloc(sizeof(struct fbr_lookup), GFP_KERNEL);
2251         rx_ring->fbr[1] = kmalloc(sizeof(struct fbr_lookup), GFP_KERNEL);
2252
2253         /* The first thing we will do is configure the sizes of the buffer
2254          * rings. These will change based on jumbo packet support.  Larger
2255          * jumbo packets increases the size of each entry in FBR0, and the
2256          * number of entries in FBR0, while at the same time decreasing the
2257          * number of entries in FBR1.
2258          *
2259          * FBR1 holds "large" frames, FBR0 holds "small" frames.  If FBR1
2260          * entries are huge in order to accommodate a "jumbo" frame, then it
2261          * will have less entries.  Conversely, FBR1 will now be relied upon
2262          * to carry more "normal" frames, thus it's entry size also increases
2263          * and the number of entries goes up too (since it now carries
2264          * "small" + "regular" packets.
2265          *
2266          * In this scheme, we try to maintain 512 entries between the two
2267          * rings. Also, FBR1 remains a constant size - when it's size doubles
2268          * the number of entries halves.  FBR0 increases in size, however.
2269          */
2270
2271         if (adapter->registry_jumbo_packet < 2048) {
2272                 rx_ring->fbr[0]->buffsize = 256;
2273                 rx_ring->fbr[0]->num_entries = 512;
2274                 rx_ring->fbr[1]->buffsize = 2048;
2275                 rx_ring->fbr[1]->num_entries = 512;
2276         } else if (adapter->registry_jumbo_packet < 4096) {
2277                 rx_ring->fbr[0]->buffsize = 512;
2278                 rx_ring->fbr[0]->num_entries = 1024;
2279                 rx_ring->fbr[1]->buffsize = 4096;
2280                 rx_ring->fbr[1]->num_entries = 512;
2281         } else {
2282                 rx_ring->fbr[0]->buffsize = 1024;
2283                 rx_ring->fbr[0]->num_entries = 768;
2284                 rx_ring->fbr[1]->buffsize = 16384;
2285                 rx_ring->fbr[1]->num_entries = 128;
2286         }
2287
2288         adapter->rx_ring.psr_num_entries =
2289                                 adapter->rx_ring.fbr[0]->num_entries +
2290                                 adapter->rx_ring.fbr[1]->num_entries;
2291
2292         for (id = 0; id < NUM_FBRS; id++) {
2293                 /* Allocate an area of memory for Free Buffer Ring */
2294                 bufsize = (sizeof(struct fbr_desc) *
2295                                 rx_ring->fbr[id]->num_entries) + 0xfff;
2296                 rx_ring->fbr[id]->ring_virtaddr =
2297                                 dma_alloc_coherent(&adapter->pdev->dev,
2298                                         bufsize,
2299                                         &rx_ring->fbr[id]->ring_physaddr,
2300                                         GFP_KERNEL);
2301                 if (!rx_ring->fbr[id]->ring_virtaddr) {
2302                         dev_err(&adapter->pdev->dev,
2303                            "Cannot alloc memory for Free Buffer Ring %d\n", id);
2304                         return -ENOMEM;
2305                 }
2306         }
2307
2308         for (id = 0; id < NUM_FBRS; id++) {
2309                 fbr_chunksize = (FBR_CHUNKS * rx_ring->fbr[id]->buffsize);
2310
2311                 for (i = 0; i < (rx_ring->fbr[id]->num_entries / FBR_CHUNKS); i++) {
2312                         dma_addr_t fbr_tmp_physaddr;
2313
2314                         /* This code allocates an area of memory big enough for
2315                          * N free buffers + (buffer_size - 1) so that the
2316                          * buffers can be aligned on 4k boundaries.  If each
2317                          * buffer were aligned to a buffer_size boundary, the
2318                          * effect would be to double the size of FBR0. By
2319                          * allocating N buffers at once, we reduce this overhead
2320                          */
2321                         rx_ring->fbr[id]->mem_virtaddrs[i] = dma_alloc_coherent(
2322                                         &adapter->pdev->dev, fbr_chunksize,
2323                                         &rx_ring->fbr[id]->mem_physaddrs[i],
2324                                         GFP_KERNEL);
2325
2326                         if (!rx_ring->fbr[id]->mem_virtaddrs[i]) {
2327                                 dev_err(&adapter->pdev->dev,
2328                                         "Could not alloc memory\n");
2329                                 return -ENOMEM;
2330                         }
2331
2332                         /* See NOTE in "Save Physical Address" comment above */
2333                         fbr_tmp_physaddr = rx_ring->fbr[id]->mem_physaddrs[i];
2334
2335                         for (j = 0; j < FBR_CHUNKS; j++) {
2336                                 u32 index = (i * FBR_CHUNKS) + j;
2337
2338                                 /* Save the Virtual address of this index for
2339                                  * quick access later
2340                                  */
2341                                 rx_ring->fbr[id]->virt[index] =
2342                                   (u8 *) rx_ring->fbr[id]->mem_virtaddrs[i] +
2343                                   (j * rx_ring->fbr[id]->buffsize);
2344
2345                                 /* now store the physical address in the
2346                                  * descriptor so the device can access it
2347                                  */
2348                                 rx_ring->fbr[id]->bus_high[index] =
2349                                                 upper_32_bits(fbr_tmp_physaddr);
2350                                 rx_ring->fbr[id]->bus_low[index] =
2351                                                 lower_32_bits(fbr_tmp_physaddr);
2352
2353                                 fbr_tmp_physaddr += rx_ring->fbr[id]->buffsize;
2354                         }
2355                 }
2356         }
2357
2358         /* Allocate an area of memory for FIFO of Packet Status ring entries */
2359         pktstat_ringsize =
2360             sizeof(struct pkt_stat_desc) * adapter->rx_ring.psr_num_entries;
2361
2362         rx_ring->ps_ring_virtaddr = dma_alloc_coherent(&adapter->pdev->dev,
2363                                                   pktstat_ringsize,
2364                                                   &rx_ring->ps_ring_physaddr,
2365                                                   GFP_KERNEL);
2366
2367         if (!rx_ring->ps_ring_virtaddr) {
2368                 dev_err(&adapter->pdev->dev,
2369                           "Cannot alloc memory for Packet Status Ring\n");
2370                 return -ENOMEM;
2371         }
2372         pr_info("Packet Status Ring %llx\n",
2373                 (unsigned long long) rx_ring->ps_ring_physaddr);
2374
2375         /*
2376          * NOTE : dma_alloc_coherent(), used above to alloc DMA regions,
2377          * ALWAYS returns SAC (32-bit) addresses. If DAC (64-bit) addresses
2378          * are ever returned, make sure the high part is retrieved here before
2379          * storing the adjusted address.
2380          */
2381
2382         /* Allocate an area of memory for writeback of status information */
2383         rx_ring->rx_status_block = dma_alloc_coherent(&adapter->pdev->dev,
2384                                             sizeof(struct rx_status_block),
2385                                             &rx_ring->rx_status_bus,
2386                                             GFP_KERNEL);
2387         if (!rx_ring->rx_status_block) {
2388                 dev_err(&adapter->pdev->dev,
2389                           "Cannot alloc memory for Status Block\n");
2390                 return -ENOMEM;
2391         }
2392         rx_ring->num_rfd = NIC_DEFAULT_NUM_RFD;
2393         pr_info("PRS %llx\n", (unsigned long long)rx_ring->rx_status_bus);
2394
2395         /* Recv
2396          * kmem_cache_create initializes a lookaside list. After successful
2397          * creation, nonpaged fixed-size blocks can be allocated from and
2398          * freed to the lookaside list.
2399          * RFDs will be allocated from this pool.
2400          */
2401         rx_ring->recv_lookaside = kmem_cache_create(adapter->netdev->name,
2402                                                    sizeof(struct rfd),
2403                                                    0,
2404                                                    SLAB_CACHE_DMA |
2405                                                    SLAB_HWCACHE_ALIGN,
2406                                                    NULL);
2407
2408         adapter->flags |= fMP_ADAPTER_RECV_LOOKASIDE;
2409
2410         /* The RFDs are going to be put on lists later on, so initialize the
2411          * lists now.
2412          */
2413         INIT_LIST_HEAD(&rx_ring->recv_list);
2414         return 0;
2415 }
2416
2417 /**
2418  * et131x_rx_dma_memory_free - Free all memory allocated within this module.
2419  * @adapter: pointer to our private adapter structure
2420  */
2421 static void et131x_rx_dma_memory_free(struct et131x_adapter *adapter)
2422 {
2423         u8 id;
2424         u32 index;
2425         u32 bufsize;
2426         u32 pktstat_ringsize;
2427         struct rfd *rfd;
2428         struct rx_ring *rx_ring;
2429
2430         /* Setup some convenience pointers */
2431         rx_ring = &adapter->rx_ring;
2432
2433         /* Free RFDs and associated packet descriptors */
2434         WARN_ON(rx_ring->num_ready_recv != rx_ring->num_rfd);
2435
2436         while (!list_empty(&rx_ring->recv_list)) {
2437                 rfd = (struct rfd *) list_entry(rx_ring->recv_list.next,
2438                                 struct rfd, list_node);
2439
2440                 list_del(&rfd->list_node);
2441                 rfd->skb = NULL;
2442                 kmem_cache_free(adapter->rx_ring.recv_lookaside, rfd);
2443         }
2444
2445         /* Free Free Buffer Rings */
2446         for (id = 0; id < NUM_FBRS; id++) {
2447                 if (rx_ring->fbr[id]->ring_virtaddr) {
2448                         /* First the packet memory */
2449                         for (index = 0; index <
2450                                 (rx_ring->fbr[id]->num_entries / FBR_CHUNKS);
2451                              index++) {
2452                                 if (rx_ring->fbr[id]->mem_virtaddrs[index]) {
2453
2454                                         bufsize = (rx_ring->fbr[id]->buffsize * FBR_CHUNKS);
2455
2456                                         dma_free_coherent(&adapter->pdev->dev,
2457                                                 bufsize,
2458                                                 rx_ring->fbr[id]->mem_virtaddrs[index],
2459                                                 rx_ring->fbr[id]->mem_physaddrs[index]);
2460
2461                                         rx_ring->fbr[id]->mem_virtaddrs[index] = NULL;
2462                                 }
2463                         }
2464
2465                         bufsize =
2466                             (sizeof(struct fbr_desc) * rx_ring->fbr[id]->num_entries) +
2467                                                                                 0xfff;
2468
2469                         dma_free_coherent(&adapter->pdev->dev, bufsize,
2470                                             rx_ring->fbr[id]->ring_virtaddr,
2471                                             rx_ring->fbr[id]->ring_physaddr);
2472
2473                         rx_ring->fbr[id]->ring_virtaddr = NULL;
2474                 }
2475         }
2476
2477         /* Free Packet Status Ring */
2478         if (rx_ring->ps_ring_virtaddr) {
2479                 pktstat_ringsize = sizeof(struct pkt_stat_desc) *
2480                                         adapter->rx_ring.psr_num_entries;
2481
2482                 dma_free_coherent(&adapter->pdev->dev, pktstat_ringsize,
2483                                     rx_ring->ps_ring_virtaddr,
2484                                     rx_ring->ps_ring_physaddr);
2485
2486                 rx_ring->ps_ring_virtaddr = NULL;
2487         }
2488
2489         /* Free area of memory for the writeback of status information */
2490         if (rx_ring->rx_status_block) {
2491                 dma_free_coherent(&adapter->pdev->dev,
2492                         sizeof(struct rx_status_block),
2493                         rx_ring->rx_status_block, rx_ring->rx_status_bus);
2494                 rx_ring->rx_status_block = NULL;
2495         }
2496
2497         /* Destroy the lookaside (RFD) pool */
2498         if (adapter->flags & fMP_ADAPTER_RECV_LOOKASIDE) {
2499                 kmem_cache_destroy(rx_ring->recv_lookaside);
2500                 adapter->flags &= ~fMP_ADAPTER_RECV_LOOKASIDE;
2501         }
2502
2503         /* Free the FBR Lookup Table */
2504         kfree(rx_ring->fbr[0]);
2505         kfree(rx_ring->fbr[1]);
2506
2507         /* Reset Counters */
2508         rx_ring->num_ready_recv = 0;
2509 }
2510
2511 /**
2512  * et131x_init_recv - Initialize receive data structures.
2513  * @adapter: pointer to our private adapter structure
2514  *
2515  * Returns 0 on success and errno on failure (as defined in errno.h)
2516  */
2517 static int et131x_init_recv(struct et131x_adapter *adapter)
2518 {
2519         int status = -ENOMEM;
2520         struct rfd *rfd = NULL;
2521         u32 rfdct;
2522         u32 numrfd = 0;
2523         struct rx_ring *rx_ring;
2524
2525         /* Setup some convenience pointers */
2526         rx_ring = &adapter->rx_ring;
2527
2528         /* Setup each RFD */
2529         for (rfdct = 0; rfdct < rx_ring->num_rfd; rfdct++) {
2530                 rfd = kmem_cache_alloc(rx_ring->recv_lookaside,
2531                                                      GFP_ATOMIC | GFP_DMA);
2532
2533                 if (!rfd) {
2534                         dev_err(&adapter->pdev->dev,
2535                                   "Couldn't alloc RFD out of kmem_cache\n");
2536                         status = -ENOMEM;
2537                         continue;
2538                 }
2539
2540                 rfd->skb = NULL;
2541
2542                 /* Add this RFD to the recv_list */
2543                 list_add_tail(&rfd->list_node, &rx_ring->recv_list);
2544
2545                 /* Increment both the available RFD's, and the total RFD's. */
2546                 rx_ring->num_ready_recv++;
2547                 numrfd++;
2548         }
2549
2550         if (numrfd > NIC_MIN_NUM_RFD)
2551                 status = 0;
2552
2553         rx_ring->num_rfd = numrfd;
2554
2555         if (status != 0) {
2556                 kmem_cache_free(rx_ring->recv_lookaside, rfd);
2557                 dev_err(&adapter->pdev->dev,
2558                           "Allocation problems in et131x_init_recv\n");
2559         }
2560         return status;
2561 }
2562
2563 /**
2564  * et131x_set_rx_dma_timer - Set the heartbeat timer according to line rate.
2565  * @adapter: pointer to our adapter structure
2566  */
2567 static void et131x_set_rx_dma_timer(struct et131x_adapter *adapter)
2568 {
2569         struct phy_device *phydev = adapter->phydev;
2570
2571         if (!phydev)
2572                 return;
2573
2574         /* For version B silicon, we do not use the RxDMA timer for 10 and 100
2575          * Mbits/s line rates. We do not enable and RxDMA interrupt coalescing.
2576          */
2577         if ((phydev->speed == SPEED_100) || (phydev->speed == SPEED_10)) {
2578                 writel(0, &adapter->regs->rxdma.max_pkt_time);
2579                 writel(1, &adapter->regs->rxdma.num_pkt_done);
2580         }
2581 }
2582
2583 /**
2584  * NICReturnRFD - Recycle a RFD and put it back onto the receive list
2585  * @adapter: pointer to our adapter
2586  * @rfd: pointer to the RFD
2587  */
2588 static void nic_return_rfd(struct et131x_adapter *adapter, struct rfd *rfd)
2589 {
2590         struct rx_ring *rx_local = &adapter->rx_ring;
2591         struct rxdma_regs __iomem *rx_dma = &adapter->regs->rxdma;
2592         u16 buff_index = rfd->bufferindex;
2593         u8 ring_index = rfd->ringindex;
2594         unsigned long flags;
2595
2596         /* We don't use any of the OOB data besides status. Otherwise, we
2597          * need to clean up OOB data
2598          */
2599         if (buff_index < rx_local->fbr[ring_index]->num_entries) {
2600                 u32 *offset;
2601                 struct fbr_desc *next;
2602
2603                 spin_lock_irqsave(&adapter->fbr_lock, flags);
2604
2605                 if (ring_index == 0)
2606                         offset = &rx_dma->fbr0_full_offset;
2607                 else
2608                         offset = &rx_dma->fbr1_full_offset;
2609
2610                 next = (struct fbr_desc *) (rx_local->fbr[ring_index]->ring_virtaddr) +
2611                                 INDEX10(rx_local->fbr[ring_index]->local_full);
2612
2613                 /* Handle the Free Buffer Ring advancement here. Write
2614                  * the PA / Buffer Index for the returned buffer into
2615                  * the oldest (next to be freed)FBR entry
2616                  */
2617                 next->addr_hi = rx_local->fbr[ring_index]->bus_high[buff_index];
2618                 next->addr_lo = rx_local->fbr[ring_index]->bus_low[buff_index];
2619                 next->word2 = buff_index;
2620
2621                 writel(bump_free_buff_ring(&rx_local->fbr[ring_index]->local_full,
2622                                 rx_local->fbr[ring_index]->num_entries - 1),
2623                                 offset);
2624
2625                 spin_unlock_irqrestore(&adapter->fbr_lock, flags);
2626         } else {
2627                 dev_err(&adapter->pdev->dev,
2628                           "%s illegal Buffer Index returned\n", __func__);
2629         }
2630
2631         /* The processing on this RFD is done, so put it back on the tail of
2632          * our list
2633          */
2634         spin_lock_irqsave(&adapter->rcv_lock, flags);
2635         list_add_tail(&rfd->list_node, &rx_local->recv_list);
2636         rx_local->num_ready_recv++;
2637         spin_unlock_irqrestore(&adapter->rcv_lock, flags);
2638
2639         WARN_ON(rx_local->num_ready_recv > rx_local->num_rfd);
2640 }
2641
2642 /**
2643  * nic_rx_pkts - Checks the hardware for available packets
2644  * @adapter: pointer to our adapter
2645  *
2646  * Returns rfd, a pointer to our MPRFD.
2647  *
2648  * Checks the hardware for available packets, using completion ring
2649  * If packets are available, it gets an RFD from the recv_list, attaches
2650  * the packet to it, puts the RFD in the RecvPendList, and also returns
2651  * the pointer to the RFD.
2652  */
2653 static struct rfd *nic_rx_pkts(struct et131x_adapter *adapter)
2654 {
2655         struct rx_ring *rx_local = &adapter->rx_ring;
2656         struct rx_status_block *status;
2657         struct pkt_stat_desc *psr;
2658         struct rfd *rfd;
2659         u32 i;
2660         u8 *buf;
2661         unsigned long flags;
2662         struct list_head *element;
2663         u8 ring_index;
2664         u16 buff_index;
2665         u32 len;
2666         u32 word0;
2667         u32 word1;
2668         struct sk_buff *skb;
2669
2670         /* RX Status block is written by the DMA engine prior to every
2671          * interrupt. It contains the next to be used entry in the Packet
2672          * Status Ring, and also the two Free Buffer rings.
2673          */
2674         status = rx_local->rx_status_block;
2675         word1 = status->word1 >> 16;    /* Get the useful bits */
2676
2677         /* Check the PSR and wrap bits do not match */
2678         if ((word1 & 0x1FFF) == (rx_local->local_psr_full & 0x1FFF))
2679                 return NULL; /* Looks like this ring is not updated yet */
2680
2681         /* The packet status ring indicates that data is available. */
2682         psr = (struct pkt_stat_desc *) (rx_local->ps_ring_virtaddr) +
2683                         (rx_local->local_psr_full & 0xFFF);
2684
2685         /* Grab any information that is required once the PSR is advanced,
2686          * since we can no longer rely on the memory being accurate
2687          */
2688         len = psr->word1 & 0xFFFF;
2689         ring_index = (psr->word1 >> 26) & 0x03;
2690         buff_index = (psr->word1 >> 16) & 0x3FF;
2691         word0 = psr->word0;
2692
2693         /* Indicate that we have used this PSR entry. */
2694         /* FIXME wrap 12 */
2695         add_12bit(&rx_local->local_psr_full, 1);
2696         if (
2697           (rx_local->local_psr_full & 0xFFF) > rx_local->psr_num_entries - 1) {
2698                 /* Clear psr full and toggle the wrap bit */
2699                 rx_local->local_psr_full &=  ~0xFFF;
2700                 rx_local->local_psr_full ^= 0x1000;
2701         }
2702
2703         writel(rx_local->local_psr_full, &adapter->regs->rxdma.psr_full_offset);
2704
2705         if (ring_index > 1 ||
2706                     buff_index > rx_local->fbr[ring_index]->num_entries - 1) {
2707                 /* Illegal buffer or ring index cannot be used by S/W*/
2708                 dev_err(&adapter->pdev->dev,
2709                         "NICRxPkts PSR Entry %d indicates length of %d and/or bad bi(%d)\n",
2710                         rx_local->local_psr_full & 0xFFF, len, buff_index);
2711                 return NULL;
2712         }
2713
2714         /* Get and fill the RFD. */
2715         spin_lock_irqsave(&adapter->rcv_lock, flags);
2716
2717         element = rx_local->recv_list.next;
2718         rfd = (struct rfd *) list_entry(element, struct rfd, list_node);
2719
2720         if (!rfd) {
2721                 spin_unlock_irqrestore(&adapter->rcv_lock, flags);
2722                 return NULL;
2723         }
2724
2725         list_del(&rfd->list_node);
2726         rx_local->num_ready_recv--;
2727
2728         spin_unlock_irqrestore(&adapter->rcv_lock, flags);
2729
2730         rfd->bufferindex = buff_index;
2731         rfd->ringindex = ring_index;
2732
2733         /* In V1 silicon, there is a bug which screws up filtering of runt
2734          * packets. Therefore runt packet filtering is disabled in the MAC and
2735          * the packets are dropped here. They are also counted here.
2736          */
2737         if (len < (NIC_MIN_PACKET_SIZE + 4)) {
2738                 adapter->stats.rx_other_errs++;
2739                 len = 0;
2740         }
2741
2742         if (len == 0) {
2743                 rfd->len = 0;
2744                 goto out;
2745         }
2746
2747         /* Determine if this is a multicast packet coming in */
2748         if ((word0 & ALCATEL_MULTICAST_PKT) &&
2749             !(word0 & ALCATEL_BROADCAST_PKT)) {
2750                 /* Promiscuous mode and Multicast mode are not mutually
2751                  * exclusive as was first thought. I guess Promiscuous is just
2752                  * considered a super-set of the other filters. Generally filter
2753                  * is 0x2b when in promiscuous mode.
2754                  */
2755                 if ((adapter->packet_filter & ET131X_PACKET_TYPE_MULTICAST)
2756                    && !(adapter->packet_filter & ET131X_PACKET_TYPE_PROMISCUOUS)
2757                    && !(adapter->packet_filter &
2758                                         ET131X_PACKET_TYPE_ALL_MULTICAST)) {
2759                         buf = rx_local->fbr[ring_index]->virt[buff_index];
2760
2761                         /* Loop through our list to see if the destination
2762                          * address of this packet matches one in our list.
2763                          */
2764                         for (i = 0; i < adapter->multicast_addr_count; i++) {
2765                                 if (buf[0] == adapter->multicast_list[i][0]
2766                                  && buf[1] == adapter->multicast_list[i][1]
2767                                  && buf[2] == adapter->multicast_list[i][2]
2768                                  && buf[3] == adapter->multicast_list[i][3]
2769                                  && buf[4] == adapter->multicast_list[i][4]
2770                                  && buf[5] == adapter->multicast_list[i][5]) {
2771                                         break;
2772                                 }
2773                         }
2774
2775                         /* If our index is equal to the number of Multicast
2776                          * address we have, then this means we did not find this
2777                          * packet's matching address in our list. Set the len to
2778                          * zero, so we free our RFD when we return from this
2779                          * function.
2780                          */
2781                         if (i == adapter->multicast_addr_count)
2782                                 len = 0;
2783                 }
2784
2785                 if (len > 0)
2786                         adapter->stats.multicast_pkts_rcvd++;
2787         } else if (word0 & ALCATEL_BROADCAST_PKT) {
2788                 adapter->stats.broadcast_pkts_rcvd++;
2789         } else {
2790                 /* Not sure what this counter measures in promiscuous mode.
2791                  * Perhaps we should check the MAC address to see if it is
2792                  * directed to us in promiscuous mode.
2793                  */
2794                 adapter->stats.unicast_pkts_rcvd++;
2795         }
2796
2797         if (len == 0) {
2798                 rfd->len = 0;
2799                 goto out;
2800         }
2801
2802         rfd->len = len;
2803
2804         skb = dev_alloc_skb(rfd->len + 2);
2805         if (!skb) {
2806                 dev_err(&adapter->pdev->dev, "Couldn't alloc an SKB for Rx\n");
2807                 return NULL;
2808         }
2809
2810         adapter->net_stats.rx_bytes += rfd->len;
2811
2812         memcpy(skb_put(skb, rfd->len),
2813                rx_local->fbr[ring_index]->virt[buff_index],
2814                rfd->len);
2815
2816         skb->dev = adapter->netdev;
2817         skb->protocol = eth_type_trans(skb, adapter->netdev);
2818         skb->ip_summed = CHECKSUM_NONE;
2819         netif_rx_ni(skb);
2820
2821 out:
2822         nic_return_rfd(adapter, rfd);
2823         return rfd;
2824 }
2825
2826 /**
2827  * et131x_handle_recv_interrupt - Interrupt handler for receive processing
2828  * @adapter: pointer to our adapter
2829  *
2830  * Assumption, Rcv spinlock has been acquired.
2831  */
2832 static void et131x_handle_recv_interrupt(struct et131x_adapter *adapter)
2833 {
2834         struct rfd *rfd = NULL;
2835         u32 count = 0;
2836         bool done = true;
2837
2838         /* Process up to available RFD's */
2839         while (count < NUM_PACKETS_HANDLED) {
2840                 if (list_empty(&adapter->rx_ring.recv_list)) {
2841                         WARN_ON(adapter->rx_ring.num_ready_recv != 0);
2842                         done = false;
2843                         break;
2844                 }
2845
2846                 rfd = nic_rx_pkts(adapter);
2847
2848                 if (rfd == NULL)
2849                         break;
2850
2851                 /* Do not receive any packets until a filter has been set.
2852                  * Do not receive any packets until we have link.
2853                  * If length is zero, return the RFD in order to advance the
2854                  * Free buffer ring.
2855                  */
2856                 if (!adapter->packet_filter ||
2857                     !netif_carrier_ok(adapter->netdev) ||
2858                     rfd->len == 0)
2859                         continue;
2860
2861                 /* Increment the number of packets we received */
2862                 adapter->net_stats.rx_packets++;
2863
2864                 /* Set the status on the packet, either resources or success */
2865                 if (adapter->rx_ring.num_ready_recv < RFD_LOW_WATER_MARK) {
2866                         dev_warn(&adapter->pdev->dev,
2867                                     "RFD's are running out\n");
2868                 }
2869                 count++;
2870         }
2871
2872         if (count == NUM_PACKETS_HANDLED || !done) {
2873                 adapter->rx_ring.unfinished_receives = true;
2874                 writel(PARM_TX_TIME_INT_DEF * NANO_IN_A_MICRO,
2875                        &adapter->regs->global.watchdog_timer);
2876         } else
2877                 /* Watchdog timer will disable itself if appropriate. */
2878                 adapter->rx_ring.unfinished_receives = false;
2879 }
2880
2881 /**
2882  * et131x_tx_dma_memory_alloc
2883  * @adapter: pointer to our private adapter structure
2884  *
2885  * Returns 0 on success and errno on failure (as defined in errno.h).
2886  *
2887  * Allocates memory that will be visible both to the device and to the CPU.
2888  * The OS will pass us packets, pointers to which we will insert in the Tx
2889  * Descriptor queue. The device will read this queue to find the packets in
2890  * memory. The device will update the "status" in memory each time it xmits a
2891  * packet.
2892  */
2893 static int et131x_tx_dma_memory_alloc(struct et131x_adapter *adapter)
2894 {
2895         int desc_size = 0;
2896         struct tx_ring *tx_ring = &adapter->tx_ring;
2897
2898         /* Allocate memory for the TCB's (Transmit Control Block) */
2899         adapter->tx_ring.tcb_ring =
2900                 kcalloc(NUM_TCB, sizeof(struct tcb), GFP_ATOMIC | GFP_DMA);
2901         if (!adapter->tx_ring.tcb_ring) {
2902                 dev_err(&adapter->pdev->dev, "Cannot alloc memory for TCBs\n");
2903                 return -ENOMEM;
2904         }
2905
2906         /* Allocate enough memory for the Tx descriptor ring, and allocate
2907          * some extra so that the ring can be aligned on a 4k boundary.
2908          */
2909         desc_size = (sizeof(struct tx_desc) * NUM_DESC_PER_RING_TX);
2910         tx_ring->tx_desc_ring =
2911             (struct tx_desc *) dma_alloc_coherent(&adapter->pdev->dev,
2912                                                   desc_size,
2913                                                   &tx_ring->tx_desc_ring_pa,
2914                                                   GFP_KERNEL);
2915         if (!adapter->tx_ring.tx_desc_ring) {
2916                 dev_err(&adapter->pdev->dev,
2917                         "Cannot alloc memory for Tx Ring\n");
2918                 return -ENOMEM;
2919         }
2920
2921         /* Save physical address
2922          *
2923          * NOTE: dma_alloc_coherent(), used above to alloc DMA regions,
2924          * ALWAYS returns SAC (32-bit) addresses. If DAC (64-bit) addresses
2925          * are ever returned, make sure the high part is retrieved here before
2926          * storing the adjusted address.
2927          */
2928         /* Allocate memory for the Tx status block */
2929         tx_ring->tx_status = dma_alloc_coherent(&adapter->pdev->dev,
2930                                                     sizeof(u32),
2931                                                     &tx_ring->tx_status_pa,
2932                                                     GFP_KERNEL);
2933         if (!adapter->tx_ring.tx_status_pa) {
2934                 dev_err(&adapter->pdev->dev,
2935                                   "Cannot alloc memory for Tx status block\n");
2936                 return -ENOMEM;
2937         }
2938         return 0;
2939 }
2940
2941 /**
2942  * et131x_tx_dma_memory_free - Free all memory allocated within this module
2943  * @adapter: pointer to our private adapter structure
2944  *
2945  * Returns 0 on success and errno on failure (as defined in errno.h).
2946  */
2947 static void et131x_tx_dma_memory_free(struct et131x_adapter *adapter)
2948 {
2949         int desc_size = 0;
2950
2951         if (adapter->tx_ring.tx_desc_ring) {
2952                 /* Free memory relating to Tx rings here */
2953                 desc_size = (sizeof(struct tx_desc) * NUM_DESC_PER_RING_TX);
2954                 dma_free_coherent(&adapter->pdev->dev,
2955                                     desc_size,
2956                                     adapter->tx_ring.tx_desc_ring,
2957                                     adapter->tx_ring.tx_desc_ring_pa);
2958                 adapter->tx_ring.tx_desc_ring = NULL;
2959         }
2960
2961         /* Free memory for the Tx status block */
2962         if (adapter->tx_ring.tx_status) {
2963                 dma_free_coherent(&adapter->pdev->dev,
2964                                     sizeof(u32),
2965                                     adapter->tx_ring.tx_status,
2966                                     adapter->tx_ring.tx_status_pa);
2967
2968                 adapter->tx_ring.tx_status = NULL;
2969         }
2970         /* Free the memory for the tcb structures */
2971         kfree(adapter->tx_ring.tcb_ring);
2972 }
2973
2974 /**
2975  * nic_send_packet - NIC specific send handler for version B silicon.
2976  * @adapter: pointer to our adapter
2977  * @tcb: pointer to struct tcb
2978  *
2979  * Returns 0 or errno.
2980  */
2981 static int nic_send_packet(struct et131x_adapter *adapter, struct tcb *tcb)
2982 {
2983         u32 i;
2984         struct tx_desc desc[24];        /* 24 x 16 byte */
2985         u32 frag = 0;
2986         u32 thiscopy, remainder;
2987         struct sk_buff *skb = tcb->skb;
2988         u32 nr_frags = skb_shinfo(skb)->nr_frags + 1;
2989         struct skb_frag_struct *frags = &skb_shinfo(skb)->frags[0];
2990         unsigned long flags;
2991         struct phy_device *phydev = adapter->phydev;
2992         dma_addr_t dma_addr;
2993
2994         /* Part of the optimizations of this send routine restrict us to
2995          * sending 24 fragments at a pass.  In practice we should never see
2996          * more than 5 fragments.
2997          *
2998          * NOTE: The older version of this function (below) can handle any
2999          * number of fragments. If needed, we can call this function,
3000          * although it is less efficient.
3001          */
3002         if (nr_frags > 23)
3003                 return -EIO;
3004
3005         memset(desc, 0, sizeof(struct tx_desc) * (nr_frags + 1));
3006
3007         for (i = 0; i < nr_frags; i++) {
3008                 /* If there is something in this element, lets get a
3009                  * descriptor from the ring and get the necessary data
3010                  */
3011                 if (i == 0) {
3012                         /* If the fragments are smaller than a standard MTU,
3013                          * then map them to a single descriptor in the Tx
3014                          * Desc ring. However, if they're larger, as is
3015                          * possible with support for jumbo packets, then
3016                          * split them each across 2 descriptors.
3017                          *
3018                          * This will work until we determine why the hardware
3019                          * doesn't seem to like large fragments.
3020                          */
3021                         if (skb_headlen(skb) <= 1514) {
3022                                 /* Low 16bits are length, high is vlan and
3023                                    unused currently so zero */
3024                                 desc[frag].len_vlan = skb_headlen(skb);
3025                                 dma_addr = dma_map_single(&adapter->pdev->dev,
3026                                                           skb->data,
3027                                                           skb_headlen(skb),
3028                                                           DMA_TO_DEVICE);
3029                                 desc[frag].addr_lo = lower_32_bits(dma_addr);
3030                                 desc[frag].addr_hi = upper_32_bits(dma_addr);
3031                                 frag++;
3032                         } else {
3033                                 desc[frag].len_vlan = skb_headlen(skb) / 2;
3034                                 dma_addr = dma_map_single(&adapter->pdev->dev,
3035                                                           skb->data,
3036                                                           (skb_headlen(skb) / 2),
3037                                                           DMA_TO_DEVICE);
3038                                 desc[frag].addr_lo = lower_32_bits(dma_addr);
3039                                 desc[frag].addr_hi = upper_32_bits(dma_addr);
3040                                 frag++;
3041
3042                                 desc[frag].len_vlan = skb_headlen(skb) / 2;
3043                                 dma_addr = dma_map_single(&adapter->pdev->dev,
3044                                                           skb->data +
3045                                                           (skb_headlen(skb) / 2),
3046                                                           (skb_headlen(skb) / 2),
3047                                                           DMA_TO_DEVICE);
3048                                 desc[frag].addr_lo = lower_32_bits(dma_addr);
3049                                 desc[frag].addr_hi = upper_32_bits(dma_addr);
3050                                 frag++;
3051                         }
3052                 } else {
3053                         desc[frag].len_vlan = frags[i - 1].size;
3054                         dma_addr = skb_frag_dma_map(&adapter->pdev->dev,
3055                                                     &frags[i - 1],
3056                                                     0,
3057                                                     frags[i - 1].size,
3058                                                     DMA_TO_DEVICE);
3059                         desc[frag].addr_lo = lower_32_bits(dma_addr);
3060                         desc[frag].addr_hi = upper_32_bits(dma_addr);
3061                         frag++;
3062                 }
3063         }
3064
3065         if (phydev && phydev->speed == SPEED_1000) {
3066                 if (++adapter->tx_ring.since_irq == PARM_TX_NUM_BUFS_DEF) {
3067                         /* Last element & Interrupt flag */
3068                         desc[frag - 1].flags = 0x5;
3069                         adapter->tx_ring.since_irq = 0;
3070                 } else { /* Last element */
3071                         desc[frag - 1].flags = 0x1;
3072                 }
3073         } else
3074                 desc[frag - 1].flags = 0x5;
3075
3076         desc[0].flags |= 2;     /* First element flag */
3077
3078         tcb->index_start = adapter->tx_ring.send_idx;
3079         tcb->stale = 0;
3080
3081         spin_lock_irqsave(&adapter->send_hw_lock, flags);
3082
3083         thiscopy = NUM_DESC_PER_RING_TX -
3084                                 INDEX10(adapter->tx_ring.send_idx);
3085
3086         if (thiscopy >= frag) {
3087                 remainder = 0;
3088                 thiscopy = frag;
3089         } else {
3090                 remainder = frag - thiscopy;
3091         }
3092
3093         memcpy(adapter->tx_ring.tx_desc_ring +
3094                INDEX10(adapter->tx_ring.send_idx), desc,
3095                sizeof(struct tx_desc) * thiscopy);
3096
3097         add_10bit(&adapter->tx_ring.send_idx, thiscopy);
3098
3099         if (INDEX10(adapter->tx_ring.send_idx) == 0 ||
3100                   INDEX10(adapter->tx_ring.send_idx) == NUM_DESC_PER_RING_TX) {
3101                 adapter->tx_ring.send_idx &= ~ET_DMA10_MASK;
3102                 adapter->tx_ring.send_idx ^= ET_DMA10_WRAP;
3103         }
3104
3105         if (remainder) {
3106                 memcpy(adapter->tx_ring.tx_desc_ring,
3107                        desc + thiscopy,
3108                        sizeof(struct tx_desc) * remainder);
3109
3110                 add_10bit(&adapter->tx_ring.send_idx, remainder);
3111         }
3112
3113         if (INDEX10(adapter->tx_ring.send_idx) == 0) {
3114                 if (adapter->tx_ring.send_idx)
3115                         tcb->index = NUM_DESC_PER_RING_TX - 1;
3116                 else
3117                         tcb->index = ET_DMA10_WRAP|(NUM_DESC_PER_RING_TX - 1);
3118         } else
3119                 tcb->index = adapter->tx_ring.send_idx - 1;
3120
3121         spin_lock(&adapter->tcb_send_qlock);
3122
3123         if (adapter->tx_ring.send_tail)
3124                 adapter->tx_ring.send_tail->next = tcb;
3125         else
3126                 adapter->tx_ring.send_head = tcb;
3127
3128         adapter->tx_ring.send_tail = tcb;
3129
3130         WARN_ON(tcb->next != NULL);
3131
3132         adapter->tx_ring.used++;
3133
3134         spin_unlock(&adapter->tcb_send_qlock);
3135
3136         /* Write the new write pointer back to the device. */
3137         writel(adapter->tx_ring.send_idx,
3138                &adapter->regs->txdma.service_request);
3139
3140         /* For Gig only, we use Tx Interrupt coalescing.  Enable the software
3141          * timer to wake us up if this packet isn't followed by N more.
3142          */
3143         if (phydev && phydev->speed == SPEED_1000) {
3144                 writel(PARM_TX_TIME_INT_DEF * NANO_IN_A_MICRO,
3145                        &adapter->regs->global.watchdog_timer);
3146         }
3147         spin_unlock_irqrestore(&adapter->send_hw_lock, flags);
3148
3149         return 0;
3150 }
3151
3152 /**
3153  * send_packet - Do the work to send a packet
3154  * @skb: the packet(s) to send
3155  * @adapter: a pointer to the device's private adapter structure
3156  *
3157  * Return 0 in almost all cases; non-zero value in extreme hard failure only.
3158  *
3159  * Assumption: Send spinlock has been acquired
3160  */
3161 static int send_packet(struct sk_buff *skb, struct et131x_adapter *adapter)
3162 {
3163         int status;
3164         struct tcb *tcb = NULL;
3165         u16 *shbufva;
3166         unsigned long flags;
3167
3168         /* All packets must have at least a MAC address and a protocol type */
3169         if (skb->len < ETH_HLEN)
3170                 return -EIO;
3171
3172         /* Get a TCB for this packet */
3173         spin_lock_irqsave(&adapter->tcb_ready_qlock, flags);
3174
3175         tcb = adapter->tx_ring.tcb_qhead;
3176
3177         if (tcb == NULL) {
3178                 spin_unlock_irqrestore(&adapter->tcb_ready_qlock, flags);
3179                 return -ENOMEM;
3180         }
3181
3182         adapter->tx_ring.tcb_qhead = tcb->next;
3183
3184         if (adapter->tx_ring.tcb_qhead == NULL)
3185                 adapter->tx_ring.tcb_qtail = NULL;
3186
3187         spin_unlock_irqrestore(&adapter->tcb_ready_qlock, flags);
3188
3189         tcb->skb = skb;
3190
3191         if (skb->data != NULL && skb_headlen(skb) >= 6) {
3192                 shbufva = (u16 *) skb->data;
3193
3194                 if ((shbufva[0] == 0xffff) &&
3195                     (shbufva[1] == 0xffff) && (shbufva[2] == 0xffff)) {
3196                         tcb->flags |= fMP_DEST_BROAD;
3197                 } else if ((shbufva[0] & 0x3) == 0x0001) {
3198                         tcb->flags |=  fMP_DEST_MULTI;
3199                 }
3200         }
3201
3202         tcb->next = NULL;
3203
3204         /* Call the NIC specific send handler. */
3205         status = nic_send_packet(adapter, tcb);
3206
3207         if (status != 0) {
3208                 spin_lock_irqsave(&adapter->tcb_ready_qlock, flags);
3209
3210                 if (adapter->tx_ring.tcb_qtail)
3211                         adapter->tx_ring.tcb_qtail->next = tcb;
3212                 else
3213                         /* Apparently ready Q is empty. */
3214                         adapter->tx_ring.tcb_qhead = tcb;
3215
3216                 adapter->tx_ring.tcb_qtail = tcb;
3217                 spin_unlock_irqrestore(&adapter->tcb_ready_qlock, flags);
3218                 return status;
3219         }
3220         WARN_ON(adapter->tx_ring.used > NUM_TCB);
3221         return 0;
3222 }
3223
3224 /**
3225  * et131x_send_packets - This function is called by the OS to send packets
3226  * @skb: the packet(s) to send
3227  * @netdev:device on which to TX the above packet(s)
3228  *
3229  * Return 0 in almost all cases; non-zero value in extreme hard failure only
3230  */
3231 static int et131x_send_packets(struct sk_buff *skb, struct net_device *netdev)
3232 {
3233         int status = 0;
3234         struct et131x_adapter *adapter = netdev_priv(netdev);
3235
3236         /* Send these packets
3237          *
3238          * NOTE: The Linux Tx entry point is only given one packet at a time
3239          * to Tx, so the PacketCount and it's array used makes no sense here
3240          */
3241
3242         /* TCB is not available */
3243         if (adapter->tx_ring.used >= NUM_TCB) {
3244                 /* NOTE: If there's an error on send, no need to queue the
3245                  * packet under Linux; if we just send an error up to the
3246                  * netif layer, it will resend the skb to us.
3247                  */
3248                 status = -ENOMEM;
3249         } else {
3250                 /* We need to see if the link is up; if it's not, make the
3251                  * netif layer think we're good and drop the packet
3252                  */
3253                 if ((adapter->flags & fMP_ADAPTER_FAIL_SEND_MASK) ||
3254                                         !netif_carrier_ok(netdev)) {
3255                         dev_kfree_skb_any(skb);
3256                         skb = NULL;
3257
3258                         adapter->net_stats.tx_dropped++;
3259                 } else {
3260                         status = send_packet(skb, adapter);
3261                         if (status != 0 && status != -ENOMEM) {
3262                                 /* On any other error, make netif think we're
3263                                  * OK and drop the packet
3264                                  */
3265                                 dev_kfree_skb_any(skb);
3266                                 skb = NULL;
3267                                 adapter->net_stats.tx_dropped++;
3268                         }
3269                 }
3270         }
3271         return status;
3272 }
3273
3274 /**
3275  * free_send_packet - Recycle a struct tcb
3276  * @adapter: pointer to our adapter
3277  * @tcb: pointer to struct tcb
3278  *
3279  * Complete the packet if necessary
3280  * Assumption - Send spinlock has been acquired
3281  */
3282 static inline void free_send_packet(struct et131x_adapter *adapter,
3283                                                 struct tcb *tcb)
3284 {
3285         unsigned long flags;
3286         struct tx_desc *desc = NULL;
3287         struct net_device_stats *stats = &adapter->net_stats;
3288         u64  dma_addr;
3289
3290         if (tcb->flags & fMP_DEST_BROAD)
3291                 atomic_inc(&adapter->stats.broadcast_pkts_xmtd);
3292         else if (tcb->flags & fMP_DEST_MULTI)
3293                 atomic_inc(&adapter->stats.multicast_pkts_xmtd);
3294         else
3295                 atomic_inc(&adapter->stats.unicast_pkts_xmtd);
3296
3297         if (tcb->skb) {
3298                 stats->tx_bytes += tcb->skb->len;
3299
3300                 /* Iterate through the TX descriptors on the ring
3301                  * corresponding to this packet and umap the fragments
3302                  * they point to
3303                  */
3304                 do {
3305                         desc = (struct tx_desc *)
3306                                     (adapter->tx_ring.tx_desc_ring +
3307                                                 INDEX10(tcb->index_start));
3308
3309                         dma_addr = desc->addr_lo;
3310                         dma_addr |= (u64)desc->addr_hi << 32;
3311
3312                         dma_unmap_single(&adapter->pdev->dev,
3313                                          dma_addr,
3314                                          desc->len_vlan, DMA_TO_DEVICE);
3315
3316                         add_10bit(&tcb->index_start, 1);
3317                         if (INDEX10(tcb->index_start) >=
3318                                                         NUM_DESC_PER_RING_TX) {
3319                                 tcb->index_start &= ~ET_DMA10_MASK;
3320                                 tcb->index_start ^= ET_DMA10_WRAP;
3321                         }
3322                 } while (desc != (adapter->tx_ring.tx_desc_ring +
3323                                 INDEX10(tcb->index)));
3324
3325                 dev_kfree_skb_any(tcb->skb);
3326         }
3327
3328         memset(tcb, 0, sizeof(struct tcb));
3329
3330         /* Add the TCB to the Ready Q */
3331         spin_lock_irqsave(&adapter->tcb_ready_qlock, flags);
3332
3333         adapter->net_stats.tx_packets++;
3334
3335         if (adapter->tx_ring.tcb_qtail)
3336                 adapter->tx_ring.tcb_qtail->next = tcb;
3337         else
3338                 /* Apparently ready Q is empty. */
3339                 adapter->tx_ring.tcb_qhead = tcb;
3340
3341         adapter->tx_ring.tcb_qtail = tcb;
3342
3343         spin_unlock_irqrestore(&adapter->tcb_ready_qlock, flags);
3344         WARN_ON(adapter->tx_ring.used < 0);
3345 }
3346
3347 /**
3348  * et131x_free_busy_send_packets - Free and complete the stopped active sends
3349  * @adapter: pointer to our adapter
3350  *
3351  * Assumption - Send spinlock has been acquired
3352  */
3353 static void et131x_free_busy_send_packets(struct et131x_adapter *adapter)
3354 {
3355         struct tcb *tcb;
3356         unsigned long flags;
3357         u32 freed = 0;
3358
3359         /* Any packets being sent? Check the first TCB on the send list */
3360         spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
3361
3362         tcb = adapter->tx_ring.send_head;
3363
3364         while (tcb != NULL && freed < NUM_TCB) {
3365                 struct tcb *next = tcb->next;
3366
3367                 adapter->tx_ring.send_head = next;
3368
3369                 if (next == NULL)
3370                         adapter->tx_ring.send_tail = NULL;
3371
3372                 adapter->tx_ring.used--;
3373
3374                 spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
3375
3376                 freed++;
3377                 free_send_packet(adapter, tcb);
3378
3379                 spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
3380
3381                 tcb = adapter->tx_ring.send_head;
3382         }
3383
3384         WARN_ON(freed == NUM_TCB);
3385
3386         spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
3387
3388         adapter->tx_ring.used = 0;
3389 }
3390
3391 /**
3392  * et131x_handle_send_interrupt - Interrupt handler for sending processing
3393  * @adapter: pointer to our adapter
3394  *
3395  * Re-claim the send resources, complete sends and get more to send from
3396  * the send wait queue.
3397  *
3398  * Assumption - Send spinlock has been acquired
3399  */
3400 static void et131x_handle_send_interrupt(struct et131x_adapter *adapter)
3401 {
3402         unsigned long flags;
3403         u32 serviced;
3404         struct tcb *tcb;
3405         u32 index;
3406
3407         serviced = readl(&adapter->regs->txdma.new_service_complete);
3408         index = INDEX10(serviced);
3409
3410         /* Has the ring wrapped?  Process any descriptors that do not have
3411          * the same "wrap" indicator as the current completion indicator
3412          */
3413         spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
3414
3415         tcb = adapter->tx_ring.send_head;
3416
3417         while (tcb &&
3418                ((serviced ^ tcb->index) & ET_DMA10_WRAP) &&
3419                index < INDEX10(tcb->index)) {
3420                 adapter->tx_ring.used--;
3421                 adapter->tx_ring.send_head = tcb->next;
3422                 if (tcb->next == NULL)
3423                         adapter->tx_ring.send_tail = NULL;
3424
3425                 spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
3426                 free_send_packet(adapter, tcb);
3427                 spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
3428
3429                 /* Goto the next packet */
3430                 tcb = adapter->tx_ring.send_head;
3431         }
3432         while (tcb &&
3433                !((serviced ^ tcb->index) & ET_DMA10_WRAP)
3434                && index > (tcb->index & ET_DMA10_MASK)) {
3435                 adapter->tx_ring.used--;
3436                 adapter->tx_ring.send_head = tcb->next;
3437                 if (tcb->next == NULL)
3438                         adapter->tx_ring.send_tail = NULL;
3439
3440                 spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
3441                 free_send_packet(adapter, tcb);
3442                 spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
3443
3444                 /* Goto the next packet */
3445                 tcb = adapter->tx_ring.send_head;
3446         }
3447
3448         /* Wake up the queue when we hit a low-water mark */
3449         if (adapter->tx_ring.used <= NUM_TCB / 3)
3450                 netif_wake_queue(adapter->netdev);
3451
3452         spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
3453 }
3454
3455 static int et131x_get_settings(struct net_device *netdev,
3456                                struct ethtool_cmd *cmd)
3457 {
3458         struct et131x_adapter *adapter = netdev_priv(netdev);
3459
3460         return phy_ethtool_gset(adapter->phydev, cmd);
3461 }
3462
3463 static int et131x_set_settings(struct net_device *netdev,
3464                                struct ethtool_cmd *cmd)
3465 {
3466         struct et131x_adapter *adapter = netdev_priv(netdev);
3467
3468         return phy_ethtool_sset(adapter->phydev, cmd);
3469 }
3470
3471 static int et131x_get_regs_len(struct net_device *netdev)
3472 {
3473 #define ET131X_REGS_LEN 256
3474         return ET131X_REGS_LEN * sizeof(u32);
3475 }
3476
3477 static void et131x_get_regs(struct net_device *netdev,
3478                             struct ethtool_regs *regs, void *regs_data)
3479 {
3480         struct et131x_adapter *adapter = netdev_priv(netdev);
3481         struct address_map __iomem *aregs = adapter->regs;
3482         u32 *regs_buff = regs_data;
3483         u32 num = 0;
3484
3485         memset(regs_data, 0, et131x_get_regs_len(netdev));
3486
3487         regs->version = (1 << 24) | (adapter->pdev->revision << 16) |
3488                         adapter->pdev->device;
3489
3490         /* PHY regs */
3491         et131x_mii_read(adapter, MII_BMCR, (u16 *)&regs_buff[num++]);
3492         et131x_mii_read(adapter, MII_BMSR, (u16 *)&regs_buff[num++]);
3493         et131x_mii_read(adapter, MII_PHYSID1, (u16 *)&regs_buff[num++]);
3494         et131x_mii_read(adapter, MII_PHYSID2, (u16 *)&regs_buff[num++]);
3495         et131x_mii_read(adapter, MII_ADVERTISE, (u16 *)&regs_buff[num++]);
3496         et131x_mii_read(adapter, MII_LPA, (u16 *)&regs_buff[num++]);
3497         et131x_mii_read(adapter, MII_EXPANSION, (u16 *)&regs_buff[num++]);
3498         /* Autoneg next page transmit reg */
3499         et131x_mii_read(adapter, 0x07, (u16 *)&regs_buff[num++]);
3500         /* Link partner next page reg */
3501         et131x_mii_read(adapter, 0x08, (u16 *)&regs_buff[num++]);
3502         et131x_mii_read(adapter, MII_CTRL1000, (u16 *)&regs_buff[num++]);
3503         et131x_mii_read(adapter, MII_STAT1000, (u16 *)&regs_buff[num++]);
3504         et131x_mii_read(adapter, 0x0b, (u16 *)&regs_buff[num++]);
3505         et131x_mii_read(adapter, 0x0c, (u16 *)&regs_buff[num++]);
3506         et131x_mii_read(adapter, MII_MMD_CTRL, (u16 *)&regs_buff[num++]);
3507         et131x_mii_read(adapter, MII_MMD_DATA, (u16 *)&regs_buff[num++]);
3508         et131x_mii_read(adapter, MII_ESTATUS, (u16 *)&regs_buff[num++]);
3509
3510         et131x_mii_read(adapter, PHY_INDEX_REG, (u16 *)&regs_buff[num++]);
3511         et131x_mii_read(adapter, PHY_DATA_REG, (u16 *)&regs_buff[num++]);
3512         et131x_mii_read(adapter, PHY_MPHY_CONTROL_REG,
3513                         (u16 *)&regs_buff[num++]);
3514         et131x_mii_read(adapter, PHY_LOOPBACK_CONTROL,
3515                         (u16 *)&regs_buff[num++]);
3516         et131x_mii_read(adapter, PHY_LOOPBACK_CONTROL+1,
3517                         (u16 *)&regs_buff[num++]);
3518
3519         et131x_mii_read(adapter, PHY_REGISTER_MGMT_CONTROL,
3520                         (u16 *)&regs_buff[num++]);
3521         et131x_mii_read(adapter, PHY_CONFIG, (u16 *)&regs_buff[num++]);
3522         et131x_mii_read(adapter, PHY_PHY_CONTROL, (u16 *)&regs_buff[num++]);
3523         et131x_mii_read(adapter, PHY_INTERRUPT_MASK, (u16 *)&regs_buff[num++]);
3524         et131x_mii_read(adapter, PHY_INTERRUPT_STATUS,
3525                         (u16 *)&regs_buff[num++]);
3526         et131x_mii_read(adapter, PHY_PHY_STATUS, (u16 *)&regs_buff[num++]);
3527         et131x_mii_read(adapter, PHY_LED_1, (u16 *)&regs_buff[num++]);
3528         et131x_mii_read(adapter, PHY_LED_2, (u16 *)&regs_buff[num++]);
3529
3530         /* Global regs */
3531         regs_buff[num++] = readl(&aregs->global.txq_start_addr);
3532         regs_buff[num++] = readl(&aregs->global.txq_end_addr);
3533         regs_buff[num++] = readl(&aregs->global.rxq_start_addr);
3534         regs_buff[num++] = readl(&aregs->global.rxq_end_addr);
3535         regs_buff[num++] = readl(&aregs->global.pm_csr);
3536         regs_buff[num++] = adapter->stats.interrupt_status;
3537         regs_buff[num++] = readl(&aregs->global.int_mask);
3538         regs_buff[num++] = readl(&aregs->global.int_alias_clr_en);
3539         regs_buff[num++] = readl(&aregs->global.int_status_alias);
3540         regs_buff[num++] = readl(&aregs->global.sw_reset);
3541         regs_buff[num++] = readl(&aregs->global.slv_timer);
3542         regs_buff[num++] = readl(&aregs->global.msi_config);
3543         regs_buff[num++] = readl(&aregs->global.loopback);
3544         regs_buff[num++] = readl(&aregs->global.watchdog_timer);
3545
3546         /* TXDMA regs */
3547         regs_buff[num++] = readl(&aregs->txdma.csr);
3548         regs_buff[num++] = readl(&aregs->txdma.pr_base_hi);
3549         regs_buff[num++] = readl(&aregs->txdma.pr_base_lo);
3550         regs_buff[num++] = readl(&aregs->txdma.pr_num_des);
3551         regs_buff[num++] = readl(&aregs->txdma.txq_wr_addr);
3552         regs_buff[num++] = readl(&aregs->txdma.txq_wr_addr_ext);
3553         regs_buff[num++] = readl(&aregs->txdma.txq_rd_addr);
3554         regs_buff[num++] = readl(&aregs->txdma.dma_wb_base_hi);
3555         regs_buff[num++] = readl(&aregs->txdma.dma_wb_base_lo);
3556         regs_buff[num++] = readl(&aregs->txdma.service_request);
3557         regs_buff[num++] = readl(&aregs->txdma.service_complete);
3558         regs_buff[num++] = readl(&aregs->txdma.cache_rd_index);
3559         regs_buff[num++] = readl(&aregs->txdma.cache_wr_index);
3560         regs_buff[num++] = readl(&aregs->txdma.tx_dma_error);
3561         regs_buff[num++] = readl(&aregs->txdma.desc_abort_cnt);
3562         regs_buff[num++] = readl(&aregs->txdma.payload_abort_cnt);
3563         regs_buff[num++] = readl(&aregs->txdma.writeback_abort_cnt);
3564         regs_buff[num++] = readl(&aregs->txdma.desc_timeout_cnt);
3565         regs_buff[num++] = readl(&aregs->txdma.payload_timeout_cnt);
3566         regs_buff[num++] = readl(&aregs->txdma.writeback_timeout_cnt);
3567         regs_buff[num++] = readl(&aregs->txdma.desc_error_cnt);
3568         regs_buff[num++] = readl(&aregs->txdma.payload_error_cnt);
3569         regs_buff[num++] = readl(&aregs->txdma.writeback_error_cnt);
3570         regs_buff[num++] = readl(&aregs->txdma.dropped_tlp_cnt);
3571         regs_buff[num++] = readl(&aregs->txdma.new_service_complete);
3572         regs_buff[num++] = readl(&aregs->txdma.ethernet_packet_cnt);
3573
3574         /* RXDMA regs */
3575         regs_buff[num++] = readl(&aregs->rxdma.csr);
3576         regs_buff[num++] = readl(&aregs->rxdma.dma_wb_base_hi);
3577         regs_buff[num++] = readl(&aregs->rxdma.dma_wb_base_lo);
3578         regs_buff[num++] = readl(&aregs->rxdma.num_pkt_done);
3579         regs_buff[num++] = readl(&aregs->rxdma.max_pkt_time);
3580         regs_buff[num++] = readl(&aregs->rxdma.rxq_rd_addr);
3581         regs_buff[num++] = readl(&aregs->rxdma.rxq_rd_addr_ext);
3582         regs_buff[num++] = readl(&aregs->rxdma.rxq_wr_addr);
3583         regs_buff[num++] = readl(&aregs->rxdma.psr_base_hi);
3584         regs_buff[num++] = readl(&aregs->rxdma.psr_base_lo);
3585         regs_buff[num++] = readl(&aregs->rxdma.psr_num_des);
3586         regs_buff[num++] = readl(&aregs->rxdma.psr_avail_offset);
3587         regs_buff[num++] = readl(&aregs->rxdma.psr_full_offset);
3588         regs_buff[num++] = readl(&aregs->rxdma.psr_access_index);
3589         regs_buff[num++] = readl(&aregs->rxdma.psr_min_des);
3590         regs_buff[num++] = readl(&aregs->rxdma.fbr0_base_lo);
3591         regs_buff[num++] = readl(&aregs->rxdma.fbr0_base_hi);
3592         regs_buff[num++] = readl(&aregs->rxdma.fbr0_num_des);
3593         regs_buff[num++] = readl(&aregs->rxdma.fbr0_avail_offset);
3594         regs_buff[num++] = readl(&aregs->rxdma.fbr0_full_offset);
3595         regs_buff[num++] = readl(&aregs->rxdma.fbr0_rd_index);
3596         regs_buff[num++] = readl(&aregs->rxdma.fbr0_min_des);
3597         regs_buff[num++] = readl(&aregs->rxdma.fbr1_base_lo);
3598         regs_buff[num++] = readl(&aregs->rxdma.fbr1_base_hi);
3599         regs_buff[num++] = readl(&aregs->rxdma.fbr1_num_des);
3600         regs_buff[num++] = readl(&aregs->rxdma.fbr1_avail_offset);
3601         regs_buff[num++] = readl(&aregs->rxdma.fbr1_full_offset);
3602         regs_buff[num++] = readl(&aregs->rxdma.fbr1_rd_index);
3603         regs_buff[num++] = readl(&aregs->rxdma.fbr1_min_des);
3604 }
3605
3606 #define ET131X_DRVINFO_LEN 32 /* value from ethtool.h */
3607 static void et131x_get_drvinfo(struct net_device *netdev,
3608                                struct ethtool_drvinfo *info)
3609 {
3610         struct et131x_adapter *adapter = netdev_priv(netdev);
3611
3612         strncpy(info->driver, DRIVER_NAME, ET131X_DRVINFO_LEN);
3613         strncpy(info->version, DRIVER_VERSION, ET131X_DRVINFO_LEN);
3614         strncpy(info->bus_info, pci_name(adapter->pdev), ET131X_DRVINFO_LEN);
3615 }
3616
3617 static struct ethtool_ops et131x_ethtool_ops = {
3618         .get_settings   = et131x_get_settings,
3619         .set_settings   = et131x_set_settings,
3620         .get_drvinfo    = et131x_get_drvinfo,
3621         .get_regs_len   = et131x_get_regs_len,
3622         .get_regs       = et131x_get_regs,
3623         .get_link       = ethtool_op_get_link,
3624 };
3625 /**
3626  * et131x_hwaddr_init - set up the MAC Address on the ET1310
3627  * @adapter: pointer to our private adapter structure
3628  */
3629 static void et131x_hwaddr_init(struct et131x_adapter *adapter)
3630 {
3631         /* If have our default mac from init and no mac address from
3632          * EEPROM then we need to generate the last octet and set it on the
3633          * device
3634          */
3635         if (is_zero_ether_addr(adapter->rom_addr)) {
3636                 /*
3637                  * We need to randomly generate the last octet so we
3638                  * decrease our chances of setting the mac address to
3639                  * same as another one of our cards in the system
3640                  */
3641                 get_random_bytes(&adapter->addr[5], 1);
3642                 /*
3643                  * We have the default value in the register we are
3644                  * working with so we need to copy the current
3645                  * address into the permanent address
3646                  */
3647                 memcpy(adapter->rom_addr,
3648                         adapter->addr, ETH_ALEN);
3649         } else {
3650                 /* We do not have an override address, so set the
3651                  * current address to the permanent address and add
3652                  * it to the device
3653                  */
3654                 memcpy(adapter->addr,
3655                        adapter->rom_addr, ETH_ALEN);
3656         }
3657 }
3658
3659 /**
3660  * et131x_pci_init       - initial PCI setup
3661  * @adapter: pointer to our private adapter structure
3662  * @pdev: our PCI device
3663  *
3664  * Perform the initial setup of PCI registers and if possible initialise
3665  * the MAC address. At this point the I/O registers have yet to be mapped
3666  */
3667 static int et131x_pci_init(struct et131x_adapter *adapter,
3668                                                 struct pci_dev *pdev)
3669 {
3670         u16 max_payload;
3671         int i, rc;
3672
3673         rc = et131x_init_eeprom(adapter);
3674         if (rc < 0)
3675                 goto out;
3676
3677         if (!pci_is_pcie(pdev)) {
3678                 dev_err(&pdev->dev, "Missing PCIe capabilities\n");
3679                 goto err_out;
3680         }
3681
3682         /* Let's set up the PORT LOGIC Register.  First we need to know what
3683          * the max_payload_size is
3684          */
3685         if (pcie_capability_read_word(pdev, PCI_EXP_DEVCAP, &max_payload)) {
3686                 dev_err(&pdev->dev,
3687                     "Could not read PCI config space for Max Payload Size\n");
3688                 goto err_out;
3689         }
3690
3691         /* Program the Ack/Nak latency and replay timers */
3692         max_payload &= 0x07;
3693
3694         if (max_payload < 2) {
3695                 static const u16 acknak[2] = { 0x76, 0xD0 };
3696                 static const u16 replay[2] = { 0x1E0, 0x2ED };
3697
3698                 if (pci_write_config_word(pdev, ET1310_PCI_ACK_NACK,
3699                                                acknak[max_payload])) {
3700                         dev_err(&pdev->dev,
3701                           "Could not write PCI config space for ACK/NAK\n");
3702                         goto err_out;
3703                 }
3704                 if (pci_write_config_word(pdev, ET1310_PCI_REPLAY,
3705                                                replay[max_payload])) {
3706                         dev_err(&pdev->dev,
3707                           "Could not write PCI config space for Replay Timer\n");
3708                         goto err_out;
3709                 }
3710         }
3711
3712         /* l0s and l1 latency timers.  We are using default values.
3713          * Representing 001 for L0s and 010 for L1
3714          */
3715         if (pci_write_config_byte(pdev, ET1310_PCI_L0L1LATENCY, 0x11)) {
3716                 dev_err(&pdev->dev,
3717                   "Could not write PCI config space for Latency Timers\n");
3718                 goto err_out;
3719         }
3720
3721         /* Change the max read size to 2k */
3722         if (pcie_capability_clear_and_set_word(pdev, PCI_EXP_DEVCTL,
3723                                 PCI_EXP_DEVCTL_READRQ, 0x4 << 12)) {
3724                 dev_err(&pdev->dev,
3725                         "Couldn't change PCI config space for Max read size\n");
3726                 goto err_out;
3727         }
3728
3729         /* Get MAC address from config space if an eeprom exists, otherwise
3730          * the MAC address there will not be valid
3731          */
3732         if (!adapter->has_eeprom) {
3733                 et131x_hwaddr_init(adapter);
3734                 return 0;
3735         }
3736
3737         for (i = 0; i < ETH_ALEN; i++) {
3738                 if (pci_read_config_byte(pdev, ET1310_PCI_MAC_ADDRESS + i,
3739                                         adapter->rom_addr + i)) {
3740                         dev_err(&pdev->dev, "Could not read PCI config space for MAC address\n");
3741                         goto err_out;
3742                 }
3743         }
3744         memcpy(adapter->addr, adapter->rom_addr, ETH_ALEN);
3745 out:
3746         return rc;
3747 err_out:
3748         rc = -EIO;
3749         goto out;
3750 }
3751
3752 /**
3753  * et131x_error_timer_handler
3754  * @data: timer-specific variable; here a pointer to our adapter structure
3755  *
3756  * The routine called when the error timer expires, to track the number of
3757  * recurring errors.
3758  */
3759 static void et131x_error_timer_handler(unsigned long data)
3760 {
3761         struct et131x_adapter *adapter = (struct et131x_adapter *) data;
3762         struct phy_device *phydev = adapter->phydev;
3763
3764         if (et1310_in_phy_coma(adapter)) {
3765                 /* Bring the device immediately out of coma, to
3766                  * prevent it from sleeping indefinitely, this
3767                  * mechanism could be improved! */
3768                 et1310_disable_phy_coma(adapter);
3769                 adapter->boot_coma = 20;
3770         } else {
3771                 et1310_update_macstat_host_counters(adapter);
3772         }
3773
3774         if (!phydev->link && adapter->boot_coma < 11)
3775                 adapter->boot_coma++;
3776
3777         if (adapter->boot_coma == 10) {
3778                 if (!phydev->link) {
3779                         if (!et1310_in_phy_coma(adapter)) {
3780                                 /* NOTE - This was originally a 'sync with
3781                                  *  interrupt'. How to do that under Linux?
3782                                  */
3783                                 et131x_enable_interrupts(adapter);
3784                                 et1310_enable_phy_coma(adapter);
3785                         }
3786                 }
3787         }
3788
3789         /* This is a periodic timer, so reschedule */
3790         mod_timer(&adapter->error_timer, jiffies + TX_ERROR_PERIOD * HZ / 1000);
3791 }
3792
3793 /**
3794  * et131x_adapter_memory_alloc
3795  * @adapter: pointer to our private adapter structure
3796  *
3797  * Returns 0 on success, errno on failure (as defined in errno.h).
3798  *
3799  * Allocate all the memory blocks for send, receive and others.
3800  */
3801 static int et131x_adapter_memory_alloc(struct et131x_adapter *adapter)
3802 {
3803         int status;
3804
3805         /* Allocate memory for the Tx Ring */
3806         status = et131x_tx_dma_memory_alloc(adapter);
3807         if (status != 0) {
3808                 dev_err(&adapter->pdev->dev,
3809                           "et131x_tx_dma_memory_alloc FAILED\n");
3810                 return status;
3811         }
3812         /* Receive buffer memory allocation */
3813         status = et131x_rx_dma_memory_alloc(adapter);
3814         if (status != 0) {
3815                 dev_err(&adapter->pdev->dev,
3816                           "et131x_rx_dma_memory_alloc FAILED\n");
3817                 et131x_tx_dma_memory_free(adapter);
3818                 return status;
3819         }
3820
3821         /* Init receive data structures */
3822         status = et131x_init_recv(adapter);
3823         if (status != 0) {
3824                 dev_err(&adapter->pdev->dev,
3825                         "et131x_init_recv FAILED\n");
3826                 et131x_tx_dma_memory_free(adapter);
3827                 et131x_rx_dma_memory_free(adapter);
3828         }
3829         return status;
3830 }
3831
3832 /**
3833  * et131x_adapter_memory_free - Free all memory allocated for use by Tx & Rx
3834  * @adapter: pointer to our private adapter structure
3835  */
3836 static void et131x_adapter_memory_free(struct et131x_adapter *adapter)
3837 {
3838         /* Free DMA memory */
3839         et131x_tx_dma_memory_free(adapter);
3840         et131x_rx_dma_memory_free(adapter);
3841 }
3842
3843 static void et131x_adjust_link(struct net_device *netdev)
3844 {
3845         struct et131x_adapter *adapter = netdev_priv(netdev);
3846         struct  phy_device *phydev = adapter->phydev;
3847
3848         if (netif_carrier_ok(netdev)) {
3849                 adapter->boot_coma = 20;
3850
3851                 if (phydev && phydev->speed == SPEED_10) {
3852                         /*
3853                          * NOTE - Is there a way to query this without
3854                          * TruePHY?
3855                          * && TRU_QueryCoreType(adapter->hTruePhy, 0)==
3856                          * EMI_TRUEPHY_A13O) {
3857                          */
3858                         u16 register18;
3859
3860                         et131x_mii_read(adapter, PHY_MPHY_CONTROL_REG,
3861                                          &register18);
3862                         et131x_mii_write(adapter, PHY_MPHY_CONTROL_REG,
3863                                          register18 | 0x4);
3864                         et131x_mii_write(adapter, PHY_INDEX_REG,
3865                                          register18 | 0x8402);
3866                         et131x_mii_write(adapter, PHY_DATA_REG,
3867                                          register18 | 511);
3868                         et131x_mii_write(adapter, PHY_MPHY_CONTROL_REG,
3869                                          register18);
3870                 }
3871
3872                 et1310_config_flow_control(adapter);
3873
3874                 if (phydev && phydev->speed == SPEED_1000 &&
3875                                 adapter->registry_jumbo_packet > 2048) {
3876                         u16 reg;
3877
3878                         et131x_mii_read(adapter, PHY_CONFIG, &reg);
3879                         reg &= ~ET_PHY_CONFIG_TX_FIFO_DEPTH;
3880                         reg |= ET_PHY_CONFIG_FIFO_DEPTH_32;
3881                         et131x_mii_write(adapter, PHY_CONFIG, reg);
3882                 }
3883
3884                 et131x_set_rx_dma_timer(adapter);
3885                 et1310_config_mac_regs2(adapter);
3886         }
3887
3888         if (phydev && phydev->link != adapter->link) {
3889                 /*
3890                  * Check to see if we are in coma mode and if
3891                  * so, disable it because we will not be able
3892                  * to read PHY values until we are out.
3893                  */
3894                 if (et1310_in_phy_coma(adapter))
3895                         et1310_disable_phy_coma(adapter);
3896
3897                 if (phydev->link) {
3898                         adapter->boot_coma = 20;
3899                 } else {
3900                         dev_warn(&adapter->pdev->dev,
3901                             "Link down - cable problem ?\n");
3902                         adapter->boot_coma = 0;
3903
3904                         if (phydev->speed == SPEED_10) {
3905                                 /* NOTE - Is there a way to query this without
3906                                  * TruePHY?
3907                                  * && TRU_QueryCoreType(adapter->hTruePhy, 0) ==
3908                                  * EMI_TRUEPHY_A13O)
3909                                  */
3910                                 u16 register18;
3911
3912                                 et131x_mii_read(adapter, PHY_MPHY_CONTROL_REG,
3913                                                  &register18);
3914                                 et131x_mii_write(adapter, PHY_MPHY_CONTROL_REG,
3915                                                  register18 | 0x4);
3916                                 et131x_mii_write(adapter, PHY_INDEX_REG,
3917                                                  register18 | 0x8402);
3918                                 et131x_mii_write(adapter, PHY_DATA_REG,
3919                                                  register18 | 511);
3920                                 et131x_mii_write(adapter, PHY_MPHY_CONTROL_REG,
3921                                                  register18);
3922                         }
3923
3924                         /* Free the packets being actively sent & stopped */
3925                         et131x_free_busy_send_packets(adapter);
3926
3927                         /* Re-initialize the send structures */
3928                         et131x_init_send(adapter);
3929
3930                         /*
3931                          * Bring the device back to the state it was during
3932                          * init prior to autonegotiation being complete. This
3933                          * way, when we get the auto-neg complete interrupt,
3934                          * we can complete init by calling config_mac_regs2.
3935                          */
3936                         et131x_soft_reset(adapter);
3937
3938                         /* Setup ET1310 as per the documentation */
3939                         et131x_adapter_setup(adapter);
3940
3941                         /* perform reset of tx/rx */
3942                         et131x_disable_txrx(netdev);
3943                         et131x_enable_txrx(netdev);
3944                 }
3945
3946                 adapter->link = phydev->link;
3947
3948                 phy_print_status(phydev);
3949         }
3950 }
3951
3952 static int et131x_mii_probe(struct net_device *netdev)
3953 {
3954         struct et131x_adapter *adapter = netdev_priv(netdev);
3955         struct  phy_device *phydev = NULL;
3956
3957         phydev = phy_find_first(adapter->mii_bus);
3958         if (!phydev) {
3959                 dev_err(&adapter->pdev->dev, "no PHY found\n");
3960                 return -ENODEV;
3961         }
3962
3963         phydev = phy_connect(netdev, dev_name(&phydev->dev),
3964                         &et131x_adjust_link, 0, PHY_INTERFACE_MODE_MII);
3965
3966         if (IS_ERR(phydev)) {
3967                 dev_err(&adapter->pdev->dev, "Could not attach to PHY\n");
3968                 return PTR_ERR(phydev);
3969         }
3970
3971         phydev->supported &= (SUPPORTED_10baseT_Half
3972                                 | SUPPORTED_10baseT_Full
3973                                 | SUPPORTED_100baseT_Half
3974                                 | SUPPORTED_100baseT_Full
3975                                 | SUPPORTED_Autoneg
3976                                 | SUPPORTED_MII
3977                                 | SUPPORTED_TP);
3978
3979         if (adapter->pdev->device != ET131X_PCI_DEVICE_ID_FAST)
3980                 phydev->supported |= SUPPORTED_1000baseT_Full;
3981
3982         phydev->advertising = phydev->supported;
3983         adapter->phydev = phydev;
3984
3985         dev_info(&adapter->pdev->dev, "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
3986                  phydev->drv->name, dev_name(&phydev->dev));
3987
3988         return 0;
3989 }
3990
3991 /**
3992  * et131x_adapter_init
3993  * @adapter: pointer to the private adapter struct
3994  * @pdev: pointer to the PCI device
3995  *
3996  * Initialize the data structures for the et131x_adapter object and link
3997  * them together with the platform provided device structures.
3998  */
3999 static struct et131x_adapter *et131x_adapter_init(struct net_device *netdev,
4000                 struct pci_dev *pdev)
4001 {
4002         static const u8 default_mac[] = { 0x00, 0x05, 0x3d, 0x00, 0x02, 0x00 };
4003
4004         struct et131x_adapter *adapter;
4005
4006         /* Allocate private adapter struct and copy in relevant information */
4007         adapter = netdev_priv(netdev);
4008         adapter->pdev = pci_dev_get(pdev);
4009         adapter->netdev = netdev;
4010
4011         /* Initialize spinlocks here */
4012         spin_lock_init(&adapter->lock);
4013         spin_lock_init(&adapter->tcb_send_qlock);
4014         spin_lock_init(&adapter->tcb_ready_qlock);
4015         spin_lock_init(&adapter->send_hw_lock);
4016         spin_lock_init(&adapter->rcv_lock);
4017         spin_lock_init(&adapter->rcv_pend_lock);
4018         spin_lock_init(&adapter->fbr_lock);
4019         spin_lock_init(&adapter->phy_lock);
4020
4021         adapter->registry_jumbo_packet = 1514;  /* 1514-9216 */
4022
4023         /* Set the MAC address to a default */
4024         memcpy(adapter->addr, default_mac, ETH_ALEN);
4025
4026         return adapter;
4027 }
4028
4029 /**
4030  * et131x_pci_remove
4031  * @pdev: a pointer to the device's pci_dev structure
4032  *
4033  * Registered in the pci_driver structure, this function is called when the
4034  * PCI subsystem detects that a PCI device which matches the information
4035  * contained in the pci_device_id table has been removed.
4036  */
4037 static void et131x_pci_remove(struct pci_dev *pdev)
4038 {
4039         struct net_device *netdev = pci_get_drvdata(pdev);
4040         struct et131x_adapter *adapter = netdev_priv(netdev);
4041
4042         unregister_netdev(netdev);
4043         phy_disconnect(adapter->phydev);
4044         mdiobus_unregister(adapter->mii_bus);
4045         kfree(adapter->mii_bus->irq);
4046         mdiobus_free(adapter->mii_bus);
4047
4048         et131x_adapter_memory_free(adapter);
4049         iounmap(adapter->regs);
4050         pci_dev_put(pdev);
4051
4052         free_netdev(netdev);
4053         pci_release_regions(pdev);
4054         pci_disable_device(pdev);
4055 }
4056
4057 /**
4058  * et131x_up - Bring up a device for use.
4059  * @netdev: device to be opened
4060  */
4061 static void et131x_up(struct net_device *netdev)
4062 {
4063         struct et131x_adapter *adapter = netdev_priv(netdev);
4064
4065         et131x_enable_txrx(netdev);
4066         phy_start(adapter->phydev);
4067 }
4068
4069 /**
4070  * et131x_down - Bring down the device
4071  * @netdev: device to be brought down
4072  */
4073 static void et131x_down(struct net_device *netdev)
4074 {
4075         struct et131x_adapter *adapter = netdev_priv(netdev);
4076
4077         /* Save the timestamp for the TX watchdog, prevent a timeout */
4078         netdev->trans_start = jiffies;
4079
4080         phy_stop(adapter->phydev);
4081         et131x_disable_txrx(netdev);
4082 }
4083
4084 #ifdef CONFIG_PM_SLEEP
4085 static int et131x_suspend(struct device *dev)
4086 {
4087         struct pci_dev *pdev = to_pci_dev(dev);
4088         struct net_device *netdev = pci_get_drvdata(pdev);
4089
4090         if (netif_running(netdev)) {
4091                 netif_device_detach(netdev);
4092                 et131x_down(netdev);
4093                 pci_save_state(pdev);
4094         }
4095
4096         return 0;
4097 }
4098
4099 static int et131x_resume(struct device *dev)
4100 {
4101         struct pci_dev *pdev = to_pci_dev(dev);
4102         struct net_device *netdev = pci_get_drvdata(pdev);
4103
4104         if (netif_running(netdev)) {
4105                 pci_restore_state(pdev);
4106                 et131x_up(netdev);
4107                 netif_device_attach(netdev);
4108         }
4109
4110         return 0;
4111 }
4112
4113 static SIMPLE_DEV_PM_OPS(et131x_pm_ops, et131x_suspend, et131x_resume);
4114 #define ET131X_PM_OPS (&et131x_pm_ops)
4115 #else
4116 #define ET131X_PM_OPS NULL
4117 #endif
4118
4119 /**
4120  * et131x_isr - The Interrupt Service Routine for the driver.
4121  * @irq: the IRQ on which the interrupt was received.
4122  * @dev_id: device-specific info (here a pointer to a net_device struct)
4123  *
4124  * Returns a value indicating if the interrupt was handled.
4125  */
4126 irqreturn_t et131x_isr(int irq, void *dev_id)
4127 {
4128         bool handled = true;
4129         struct net_device *netdev = (struct net_device *)dev_id;
4130         struct et131x_adapter *adapter = NULL;
4131         u32 status;
4132
4133         if (!netif_device_present(netdev)) {
4134                 handled = false;
4135                 goto out;
4136         }
4137
4138         adapter = netdev_priv(netdev);
4139
4140         /* If the adapter is in low power state, then it should not
4141          * recognize any interrupt
4142          */
4143
4144         /* Disable Device Interrupts */
4145         et131x_disable_interrupts(adapter);
4146
4147         /* Get a copy of the value in the interrupt status register
4148          * so we can process the interrupting section
4149          */
4150         status = readl(&adapter->regs->global.int_status);
4151
4152         if (adapter->flowcontrol == FLOW_TXONLY ||
4153             adapter->flowcontrol == FLOW_BOTH) {
4154                 status &= ~INT_MASK_ENABLE;
4155         } else {
4156                 status &= ~INT_MASK_ENABLE_NO_FLOW;
4157         }
4158
4159         /* Make sure this is our interrupt */
4160         if (!status) {
4161                 handled = false;
4162                 et131x_enable_interrupts(adapter);
4163                 goto out;
4164         }
4165
4166         /* This is our interrupt, so process accordingly */
4167
4168         if (status & ET_INTR_WATCHDOG) {
4169                 struct tcb *tcb = adapter->tx_ring.send_head;
4170
4171                 if (tcb)
4172                         if (++tcb->stale > 1)
4173                                 status |= ET_INTR_TXDMA_ISR;
4174
4175                 if (adapter->rx_ring.unfinished_receives)
4176                         status |= ET_INTR_RXDMA_XFR_DONE;
4177                 else if (tcb == NULL)
4178                         writel(0, &adapter->regs->global.watchdog_timer);
4179
4180                 status &= ~ET_INTR_WATCHDOG;
4181         }
4182
4183         if (status == 0) {
4184                 /* This interrupt has in some way been "handled" by
4185                  * the ISR. Either it was a spurious Rx interrupt, or
4186                  * it was a Tx interrupt that has been filtered by
4187                  * the ISR.
4188                  */
4189                 et131x_enable_interrupts(adapter);
4190                 goto out;
4191         }
4192
4193         /* We need to save the interrupt status value for use in our
4194          * DPC. We will clear the software copy of that in that
4195          * routine.
4196          */
4197         adapter->stats.interrupt_status = status;
4198
4199         /* Schedule the ISR handler as a bottom-half task in the
4200          * kernel's tq_immediate queue, and mark the queue for
4201          * execution
4202          */
4203         schedule_work(&adapter->task);
4204 out:
4205         return IRQ_RETVAL(handled);
4206 }
4207
4208 /**
4209  * et131x_isr_handler - The ISR handler
4210  * @p_adapter, a pointer to the device's private adapter structure
4211  *
4212  * scheduled to run in a deferred context by the ISR. This is where the ISR's
4213  * work actually gets done.
4214  */
4215 static void et131x_isr_handler(struct work_struct *work)
4216 {
4217         struct et131x_adapter *adapter =
4218                 container_of(work, struct et131x_adapter, task);
4219         u32 status = adapter->stats.interrupt_status;
4220         struct address_map __iomem *iomem = adapter->regs;
4221
4222         /*
4223          * These first two are by far the most common.  Once handled, we clear
4224          * their two bits in the status word.  If the word is now zero, we
4225          * exit.
4226          */
4227         /* Handle all the completed Transmit interrupts */
4228         if (status & ET_INTR_TXDMA_ISR)
4229                 et131x_handle_send_interrupt(adapter);
4230
4231         /* Handle all the completed Receives interrupts */
4232         if (status & ET_INTR_RXDMA_XFR_DONE)
4233                 et131x_handle_recv_interrupt(adapter);
4234
4235         status &= 0xffffffd7;
4236
4237         if (!status)
4238                 goto out;
4239
4240         /* Handle the TXDMA Error interrupt */
4241         if (status & ET_INTR_TXDMA_ERR) {
4242                 u32 txdma_err;
4243
4244                 /* Following read also clears the register (COR) */
4245                 txdma_err = readl(&iomem->txdma.tx_dma_error);
4246
4247                 dev_warn(&adapter->pdev->dev,
4248                             "TXDMA_ERR interrupt, error = %d\n",
4249                             txdma_err);
4250         }
4251
4252         /* Handle Free Buffer Ring 0 and 1 Low interrupt */
4253         if (status & (ET_INTR_RXDMA_FB_R0_LOW | ET_INTR_RXDMA_FB_R1_LOW)) {
4254                 /*
4255                  * This indicates the number of unused buffers in RXDMA free
4256                  * buffer ring 0 is <= the limit you programmed. Free buffer
4257                  * resources need to be returned.  Free buffers are consumed as
4258                  * packets are passed from the network to the host. The host
4259                  * becomes aware of the packets from the contents of the packet
4260                  * status ring. This ring is queried when the packet done
4261                  * interrupt occurs. Packets are then passed to the OS. When
4262                  * the OS is done with the packets the resources can be
4263                  * returned to the ET1310 for re-use. This interrupt is one
4264                  * method of returning resources.
4265                  */
4266
4267                 /*
4268                  *  If the user has flow control on, then we will
4269                  * send a pause packet, otherwise just exit
4270                  */
4271                 if (adapter->flowcontrol == FLOW_TXONLY ||
4272                     adapter->flowcontrol == FLOW_BOTH) {
4273                         u32 pm_csr;
4274
4275                         /*
4276                          * Tell the device to send a pause packet via the back
4277                          * pressure register (bp req and bp xon/xoff)
4278                          */
4279                         pm_csr = readl(&iomem->global.pm_csr);
4280                         if (!et1310_in_phy_coma(adapter))
4281                                 writel(3, &iomem->txmac.bp_ctrl);
4282                 }
4283         }
4284
4285         /* Handle Packet Status Ring Low Interrupt */
4286         if (status & ET_INTR_RXDMA_STAT_LOW) {
4287                 /*
4288                  * Same idea as with the two Free Buffer Rings. Packets going
4289                  * from the network to the host each consume a free buffer
4290                  * resource and a packet status resource. These resoures are
4291                  * passed to the OS. When the OS is done with the resources,
4292                  * they need to be returned to the ET1310. This is one method
4293                  * of returning the resources.
4294                  */
4295         }
4296
4297         /* Handle RXDMA Error Interrupt */
4298         if (status & ET_INTR_RXDMA_ERR) {
4299                 /*
4300                  * The rxdma_error interrupt is sent when a time-out on a
4301                  * request issued by the JAGCore has occurred or a completion is
4302                  * returned with an un-successful status. In both cases the
4303                  * request is considered complete. The JAGCore will
4304                  * automatically re-try the request in question. Normally
4305                  * information on events like these are sent to the host using
4306                  * the "Advanced Error Reporting" capability. This interrupt is
4307                  * another way of getting similar information. The only thing
4308                  * required is to clear the interrupt by reading the ISR in the
4309                  * global resources. The JAGCore will do a re-try on the
4310                  * request. Normally you should never see this interrupt. If
4311                  * you start to see this interrupt occurring frequently then
4312                  * something bad has occurred. A reset might be the thing to do.
4313                  */
4314                 /* TRAP();*/
4315
4316                 dev_warn(&adapter->pdev->dev,
4317                             "RxDMA_ERR interrupt, error %x\n",
4318                             readl(&iomem->txmac.tx_test));
4319         }
4320
4321         /* Handle the Wake on LAN Event */
4322         if (status & ET_INTR_WOL) {
4323                 /*
4324                  * This is a secondary interrupt for wake on LAN. The driver
4325                  * should never see this, if it does, something serious is
4326                  * wrong. We will TRAP the message when we are in DBG mode,
4327                  * otherwise we will ignore it.
4328                  */
4329                 dev_err(&adapter->pdev->dev, "WAKE_ON_LAN interrupt\n");
4330         }
4331
4332         /* Let's move on to the TxMac */
4333         if (status & ET_INTR_TXMAC) {
4334                 u32 err = readl(&iomem->txmac.err);
4335
4336                 /*
4337                  * When any of the errors occur and TXMAC generates an
4338                  * interrupt to report these errors, it usually means that
4339                  * TXMAC has detected an error in the data stream retrieved
4340                  * from the on-chip Tx Q. All of these errors are catastrophic
4341                  * and TXMAC won't be able to recover data when these errors
4342                  * occur. In a nutshell, the whole Tx path will have to be reset
4343                  * and re-configured afterwards.
4344                  */
4345                 dev_warn(&adapter->pdev->dev,
4346                          "TXMAC interrupt, error 0x%08x\n",
4347                          err);
4348
4349                 /*
4350                  * If we are debugging, we want to see this error, otherwise we
4351                  * just want the device to be reset and continue
4352                  */
4353         }
4354
4355         /* Handle RXMAC Interrupt */
4356         if (status & ET_INTR_RXMAC) {
4357                 /*
4358                  * These interrupts are catastrophic to the device, what we need
4359                  * to do is disable the interrupts and set the flag to cause us
4360                  * to reset so we can solve this issue.
4361                  */
4362                 /* MP_SET_FLAG( adapter, fMP_ADAPTER_HARDWARE_ERROR); */
4363
4364                 dev_warn(&adapter->pdev->dev,
4365                          "RXMAC interrupt, error 0x%08x.  Requesting reset\n",
4366                          readl(&iomem->rxmac.err_reg));
4367
4368                 dev_warn(&adapter->pdev->dev,
4369                          "Enable 0x%08x, Diag 0x%08x\n",
4370                          readl(&iomem->rxmac.ctrl),
4371                          readl(&iomem->rxmac.rxq_diag));
4372
4373                 /*
4374                  * If we are debugging, we want to see this error, otherwise we
4375                  * just want the device to be reset and continue
4376                  */
4377         }
4378
4379         /* Handle MAC_STAT Interrupt */
4380         if (status & ET_INTR_MAC_STAT) {
4381                 /*
4382                  * This means at least one of the un-masked counters in the
4383                  * MAC_STAT block has rolled over. Use this to maintain the top,
4384                  * software managed bits of the counter(s).
4385                  */
4386                 et1310_handle_macstat_interrupt(adapter);
4387         }
4388
4389         /* Handle SLV Timeout Interrupt */
4390         if (status & ET_INTR_SLV_TIMEOUT) {
4391                 /*
4392                  * This means a timeout has occurred on a read or write request
4393                  * to one of the JAGCore registers. The Global Resources block
4394                  * has terminated the request and on a read request, returned a
4395                  * "fake" value. The most likely reasons are: Bad Address or the
4396                  * addressed module is in a power-down state and can't respond.
4397                  */
4398         }
4399 out:
4400         et131x_enable_interrupts(adapter);
4401 }
4402
4403 /**
4404  * et131x_stats - Return the current device statistics.
4405  * @netdev: device whose stats are being queried
4406  *
4407  * Returns 0 on success, errno on failure (as defined in errno.h)
4408  */
4409 static struct net_device_stats *et131x_stats(struct net_device *netdev)
4410 {
4411         struct et131x_adapter *adapter = netdev_priv(netdev);
4412         struct net_device_stats *stats = &adapter->net_stats;
4413         struct ce_stats *devstat = &adapter->stats;
4414
4415         stats->rx_errors = devstat->rx_length_errs +
4416                            devstat->rx_align_errs +
4417                            devstat->rx_crc_errs +
4418                            devstat->rx_code_violations +
4419                            devstat->rx_other_errs;
4420         stats->tx_errors = devstat->tx_max_pkt_errs;
4421         stats->multicast = devstat->multicast_pkts_rcvd;
4422         stats->collisions = devstat->tx_collisions;
4423
4424         stats->rx_length_errors = devstat->rx_length_errs;
4425         stats->rx_over_errors = devstat->rx_overflows;
4426         stats->rx_crc_errors = devstat->rx_crc_errs;
4427
4428         /* NOTE: These stats don't have corresponding values in CE_STATS,
4429          * so we're going to have to update these directly from within the
4430          * TX/RX code
4431          */
4432         /* stats->rx_bytes            = 20; devstat->; */
4433         /* stats->tx_bytes            = 20;  devstat->; */
4434         /* stats->rx_dropped          = devstat->; */
4435         /* stats->tx_dropped          = devstat->; */
4436
4437         /*  NOTE: Not used, can't find analogous statistics */
4438         /* stats->rx_frame_errors     = devstat->; */
4439         /* stats->rx_fifo_errors      = devstat->; */
4440         /* stats->rx_missed_errors    = devstat->; */
4441
4442         /* stats->tx_aborted_errors   = devstat->; */
4443         /* stats->tx_carrier_errors   = devstat->; */
4444         /* stats->tx_fifo_errors      = devstat->; */
4445         /* stats->tx_heartbeat_errors = devstat->; */
4446         /* stats->tx_window_errors    = devstat->; */
4447         return stats;
4448 }
4449
4450 /**
4451  * et131x_open - Open the device for use.
4452  * @netdev: device to be opened
4453  *
4454  * Returns 0 on success, errno on failure (as defined in errno.h)
4455  */
4456 static int et131x_open(struct net_device *netdev)
4457 {
4458         struct et131x_adapter *adapter = netdev_priv(netdev);
4459         struct pci_dev *pdev = adapter->pdev;
4460         unsigned int irq = pdev->irq;
4461         int result;
4462
4463         /* Start the timer to track NIC errors */
4464         init_timer(&adapter->error_timer);
4465         adapter->error_timer.expires = jiffies + TX_ERROR_PERIOD * HZ / 1000;
4466         adapter->error_timer.function = et131x_error_timer_handler;
4467         adapter->error_timer.data = (unsigned long)adapter;
4468         add_timer(&adapter->error_timer);
4469
4470         result = request_irq(irq, et131x_isr,
4471                              IRQF_SHARED, netdev->name, netdev);
4472         if (result) {
4473                 dev_err(&pdev->dev, "could not register IRQ %d\n", irq);
4474                 return result;
4475         }
4476
4477         adapter->flags |= fMP_ADAPTER_INTERRUPT_IN_USE;
4478
4479         et131x_up(netdev);
4480
4481         return result;
4482 }
4483
4484 /**
4485  * et131x_close - Close the device
4486  * @netdev: device to be closed
4487  *
4488  * Returns 0 on success, errno on failure (as defined in errno.h)
4489  */
4490 static int et131x_close(struct net_device *netdev)
4491 {
4492         struct et131x_adapter *adapter = netdev_priv(netdev);
4493
4494         et131x_down(netdev);
4495
4496         adapter->flags &= ~fMP_ADAPTER_INTERRUPT_IN_USE;
4497         free_irq(adapter->pdev->irq, netdev);
4498
4499         /* Stop the error timer */
4500         return del_timer_sync(&adapter->error_timer);
4501 }
4502
4503 /**
4504  * et131x_ioctl - The I/O Control handler for the driver
4505  * @netdev: device on which the control request is being made
4506  * @reqbuf: a pointer to the IOCTL request buffer
4507  * @cmd: the IOCTL command code
4508  *
4509  * Returns 0 on success, errno on failure (as defined in errno.h)
4510  */
4511 static int et131x_ioctl(struct net_device *netdev, struct ifreq *reqbuf,
4512                         int cmd)
4513 {
4514         struct et131x_adapter *adapter = netdev_priv(netdev);
4515
4516         if (!adapter->phydev)
4517                 return -EINVAL;
4518
4519         return phy_mii_ioctl(adapter->phydev, reqbuf, cmd);
4520 }
4521
4522 /**
4523  * et131x_set_packet_filter - Configures the Rx Packet filtering on the device
4524  * @adapter: pointer to our private adapter structure
4525  *
4526  * FIXME: lot of dups with MAC code
4527  *
4528  * Returns 0 on success, errno on failure
4529  */
4530 static int et131x_set_packet_filter(struct et131x_adapter *adapter)
4531 {
4532         int filter = adapter->packet_filter;
4533         int status = 0;
4534         u32 ctrl;
4535         u32 pf_ctrl;
4536
4537         ctrl = readl(&adapter->regs->rxmac.ctrl);
4538         pf_ctrl = readl(&adapter->regs->rxmac.pf_ctrl);
4539
4540         /* Default to disabled packet filtering.  Enable it in the individual
4541          * case statements that require the device to filter something
4542          */
4543         ctrl |= 0x04;
4544
4545         /* Set us to be in promiscuous mode so we receive everything, this
4546          * is also true when we get a packet filter of 0
4547          */
4548         if ((filter & ET131X_PACKET_TYPE_PROMISCUOUS) || filter == 0)
4549                 pf_ctrl &= ~7;  /* Clear filter bits */
4550         else {
4551                 /*
4552                  * Set us up with Multicast packet filtering.  Three cases are
4553                  * possible - (1) we have a multi-cast list, (2) we receive ALL
4554                  * multicast entries or (3) we receive none.
4555                  */
4556                 if (filter & ET131X_PACKET_TYPE_ALL_MULTICAST)
4557                         pf_ctrl &= ~2;  /* Multicast filter bit */
4558                 else {
4559                         et1310_setup_device_for_multicast(adapter);
4560                         pf_ctrl |= 2;
4561                         ctrl &= ~0x04;
4562                 }
4563
4564                 /* Set us up with Unicast packet filtering */
4565                 if (filter & ET131X_PACKET_TYPE_DIRECTED) {
4566                         et1310_setup_device_for_unicast(adapter);
4567                         pf_ctrl |= 4;
4568                         ctrl &= ~0x04;
4569                 }
4570
4571                 /* Set us up with Broadcast packet filtering */
4572                 if (filter & ET131X_PACKET_TYPE_BROADCAST) {
4573                         pf_ctrl |= 1;   /* Broadcast filter bit */
4574                         ctrl &= ~0x04;
4575                 } else
4576                         pf_ctrl &= ~1;
4577
4578                 /* Setup the receive mac configuration registers - Packet
4579                  * Filter control + the enable / disable for packet filter
4580                  * in the control reg.
4581                  */
4582                 writel(pf_ctrl, &adapter->regs->rxmac.pf_ctrl);
4583                 writel(ctrl, &adapter->regs->rxmac.ctrl);
4584         }
4585         return status;
4586 }
4587
4588 /**
4589  * et131x_multicast - The handler to configure multicasting on the interface
4590  * @netdev: a pointer to a net_device struct representing the device
4591  */
4592 static void et131x_multicast(struct net_device *netdev)
4593 {
4594         struct et131x_adapter *adapter = netdev_priv(netdev);
4595         int packet_filter;
4596         unsigned long flags;
4597         struct netdev_hw_addr *ha;
4598         int i;
4599
4600         spin_lock_irqsave(&adapter->lock, flags);
4601
4602         /* Before we modify the platform-independent filter flags, store them
4603          * locally. This allows us to determine if anything's changed and if
4604          * we even need to bother the hardware
4605          */
4606         packet_filter = adapter->packet_filter;
4607
4608         /* Clear the 'multicast' flag locally; because we only have a single
4609          * flag to check multicast, and multiple multicast addresses can be
4610          * set, this is the easiest way to determine if more than one
4611          * multicast address is being set.
4612          */
4613         packet_filter &= ~ET131X_PACKET_TYPE_MULTICAST;
4614
4615         /* Check the net_device flags and set the device independent flags
4616          * accordingly
4617          */
4618
4619         if (netdev->flags & IFF_PROMISC)
4620                 adapter->packet_filter |= ET131X_PACKET_TYPE_PROMISCUOUS;
4621         else
4622                 adapter->packet_filter &= ~ET131X_PACKET_TYPE_PROMISCUOUS;
4623
4624         if (netdev->flags & IFF_ALLMULTI)
4625                 adapter->packet_filter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
4626
4627         if (netdev_mc_count(netdev) > NIC_MAX_MCAST_LIST)
4628                 adapter->packet_filter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
4629
4630         if (netdev_mc_count(netdev) < 1) {
4631                 adapter->packet_filter &= ~ET131X_PACKET_TYPE_ALL_MULTICAST;
4632                 adapter->packet_filter &= ~ET131X_PACKET_TYPE_MULTICAST;
4633         } else
4634                 adapter->packet_filter |= ET131X_PACKET_TYPE_MULTICAST;
4635
4636         /* Set values in the private adapter struct */
4637         i = 0;
4638         netdev_for_each_mc_addr(ha, netdev) {
4639                 if (i == NIC_MAX_MCAST_LIST)
4640                         break;
4641                 memcpy(adapter->multicast_list[i++], ha->addr, ETH_ALEN);
4642         }
4643         adapter->multicast_addr_count = i;
4644
4645         /* Are the new flags different from the previous ones? If not, then no
4646          * action is required
4647          *
4648          * NOTE - This block will always update the multicast_list with the
4649          *        hardware, even if the addresses aren't the same.
4650          */
4651         if (packet_filter != adapter->packet_filter) {
4652                 /* Call the device's filter function */
4653                 et131x_set_packet_filter(adapter);
4654         }
4655         spin_unlock_irqrestore(&adapter->lock, flags);
4656 }
4657
4658 /**
4659  * et131x_tx - The handler to tx a packet on the device
4660  * @skb: data to be Tx'd
4661  * @netdev: device on which data is to be Tx'd
4662  *
4663  * Returns 0 on success, errno on failure (as defined in errno.h)
4664  */
4665 static int et131x_tx(struct sk_buff *skb, struct net_device *netdev)
4666 {
4667         int status = 0;
4668         struct et131x_adapter *adapter = netdev_priv(netdev);
4669
4670         /* stop the queue if it's getting full */
4671         if (adapter->tx_ring.used >= NUM_TCB - 1 &&
4672             !netif_queue_stopped(netdev))
4673                 netif_stop_queue(netdev);
4674
4675         /* Save the timestamp for the TX timeout watchdog */
4676         netdev->trans_start = jiffies;
4677
4678         /* Call the device-specific data Tx routine */
4679         status = et131x_send_packets(skb, netdev);
4680
4681         /* Check status and manage the netif queue if necessary */
4682         if (status != 0) {
4683                 if (status == -ENOMEM)
4684                         status = NETDEV_TX_BUSY;
4685                 else
4686                         status = NETDEV_TX_OK;
4687         }
4688         return status;
4689 }
4690
4691 /**
4692  * et131x_tx_timeout - Timeout handler
4693  * @netdev: a pointer to a net_device struct representing the device
4694  *
4695  * The handler called when a Tx request times out. The timeout period is
4696  * specified by the 'tx_timeo" element in the net_device structure (see
4697  * et131x_alloc_device() to see how this value is set).
4698  */
4699 static void et131x_tx_timeout(struct net_device *netdev)
4700 {
4701         struct et131x_adapter *adapter = netdev_priv(netdev);
4702         struct tcb *tcb;
4703         unsigned long flags;
4704
4705         /* If the device is closed, ignore the timeout */
4706         if (~(adapter->flags & fMP_ADAPTER_INTERRUPT_IN_USE))
4707                 return;
4708
4709         /* Any nonrecoverable hardware error?
4710          * Checks adapter->flags for any failure in phy reading
4711          */
4712         if (adapter->flags & fMP_ADAPTER_NON_RECOVER_ERROR)
4713                 return;
4714
4715         /* Hardware failure? */
4716         if (adapter->flags & fMP_ADAPTER_HARDWARE_ERROR) {
4717                 dev_err(&adapter->pdev->dev, "hardware error - reset\n");
4718                 return;
4719         }
4720
4721         /* Is send stuck? */
4722         spin_lock_irqsave(&adapter->tcb_send_qlock, flags);
4723
4724         tcb = adapter->tx_ring.send_head;
4725
4726         if (tcb != NULL) {
4727                 tcb->count++;
4728
4729                 if (tcb->count > NIC_SEND_HANG_THRESHOLD) {
4730                         spin_unlock_irqrestore(&adapter->tcb_send_qlock,
4731                                                flags);
4732
4733                         dev_warn(&adapter->pdev->dev,
4734                                 "Send stuck - reset.  tcb->WrIndex %x, flags 0x%08x\n",
4735                                 tcb->index,
4736                                 tcb->flags);
4737
4738                         adapter->net_stats.tx_errors++;
4739
4740                         /* perform reset of tx/rx */
4741                         et131x_disable_txrx(netdev);
4742                         et131x_enable_txrx(netdev);
4743                         return;
4744                 }
4745         }
4746
4747         spin_unlock_irqrestore(&adapter->tcb_send_qlock, flags);
4748 }
4749
4750 /**
4751  * et131x_change_mtu - The handler called to change the MTU for the device
4752  * @netdev: device whose MTU is to be changed
4753  * @new_mtu: the desired MTU
4754  *
4755  * Returns 0 on success, errno on failure (as defined in errno.h)
4756  */
4757 static int et131x_change_mtu(struct net_device *netdev, int new_mtu)
4758 {
4759         int result = 0;
4760         struct et131x_adapter *adapter = netdev_priv(netdev);
4761
4762         /* Make sure the requested MTU is valid */
4763         if (new_mtu < 64 || new_mtu > 9216)
4764                 return -EINVAL;
4765
4766         et131x_disable_txrx(netdev);
4767         et131x_handle_send_interrupt(adapter);
4768         et131x_handle_recv_interrupt(adapter);
4769
4770         /* Set the new MTU */
4771         netdev->mtu = new_mtu;
4772
4773         /* Free Rx DMA memory */
4774         et131x_adapter_memory_free(adapter);
4775
4776         /* Set the config parameter for Jumbo Packet support */
4777         adapter->registry_jumbo_packet = new_mtu + 14;
4778         et131x_soft_reset(adapter);
4779
4780         /* Alloc and init Rx DMA memory */
4781         result = et131x_adapter_memory_alloc(adapter);
4782         if (result != 0) {
4783                 dev_warn(&adapter->pdev->dev,
4784                         "Change MTU failed; couldn't re-alloc DMA memory\n");
4785                 return result;
4786         }
4787
4788         et131x_init_send(adapter);
4789
4790         et131x_hwaddr_init(adapter);
4791         memcpy(netdev->dev_addr, adapter->addr, ETH_ALEN);
4792
4793         /* Init the device with the new settings */
4794         et131x_adapter_setup(adapter);
4795
4796         et131x_enable_txrx(netdev);
4797
4798         return result;
4799 }
4800
4801 /**
4802  * et131x_set_mac_addr - handler to change the MAC address for the device
4803  * @netdev: device whose MAC is to be changed
4804  * @new_mac: the desired MAC address
4805  *
4806  * Returns 0 on success, errno on failure (as defined in errno.h)
4807  *
4808  * IMPLEMENTED BY : blux http://berndlux.de 22.01.2007 21:14
4809  */
4810 static int et131x_set_mac_addr(struct net_device *netdev, void *new_mac)
4811 {
4812         int result = 0;
4813         struct et131x_adapter *adapter = netdev_priv(netdev);
4814         struct sockaddr *address = new_mac;
4815
4816         /* begin blux */
4817
4818         if (adapter == NULL)
4819                 return -ENODEV;
4820
4821         /* Make sure the requested MAC is valid */
4822         if (!is_valid_ether_addr(address->sa_data))
4823                 return -EADDRNOTAVAIL;
4824
4825         et131x_disable_txrx(netdev);
4826         et131x_handle_send_interrupt(adapter);
4827         et131x_handle_recv_interrupt(adapter);
4828
4829         /* Set the new MAC */
4830         /* netdev->set_mac_address  = &new_mac; */
4831
4832         memcpy(netdev->dev_addr, address->sa_data, netdev->addr_len);
4833
4834         netdev_info(netdev, "Setting MAC address to %pM\n",
4835                     netdev->dev_addr);
4836
4837         /* Free Rx DMA memory */
4838         et131x_adapter_memory_free(adapter);
4839
4840         et131x_soft_reset(adapter);
4841
4842         /* Alloc and init Rx DMA memory */
4843         result = et131x_adapter_memory_alloc(adapter);
4844         if (result != 0) {
4845                 dev_err(&adapter->pdev->dev,
4846                         "Change MAC failed; couldn't re-alloc DMA memory\n");
4847                 return result;
4848         }
4849
4850         et131x_init_send(adapter);
4851
4852         et131x_hwaddr_init(adapter);
4853
4854         /* Init the device with the new settings */
4855         et131x_adapter_setup(adapter);
4856
4857         et131x_enable_txrx(netdev);
4858
4859         return result;
4860 }
4861
4862 static const struct net_device_ops et131x_netdev_ops = {
4863         .ndo_open               = et131x_open,
4864         .ndo_stop               = et131x_close,
4865         .ndo_start_xmit         = et131x_tx,
4866         .ndo_set_rx_mode        = et131x_multicast,
4867         .ndo_tx_timeout         = et131x_tx_timeout,
4868         .ndo_change_mtu         = et131x_change_mtu,
4869         .ndo_set_mac_address    = et131x_set_mac_addr,
4870         .ndo_validate_addr      = eth_validate_addr,
4871         .ndo_get_stats          = et131x_stats,
4872         .ndo_do_ioctl           = et131x_ioctl,
4873 };
4874
4875 /**
4876  * et131x_pci_setup - Perform device initialization
4877  * @pdev: a pointer to the device's pci_dev structure
4878  * @ent: this device's entry in the pci_device_id table
4879  *
4880  * Returns 0 on success, errno on failure (as defined in errno.h)
4881  *
4882  * Registered in the pci_driver structure, this function is called when the
4883  * PCI subsystem finds a new PCI device which matches the information
4884  * contained in the pci_device_id table. This routine is the equivalent to
4885  * a device insertion routine.
4886  */
4887 static int et131x_pci_setup(struct pci_dev *pdev,
4888                                const struct pci_device_id *ent)
4889 {
4890         struct net_device *netdev;
4891         struct et131x_adapter *adapter;
4892         int rc;
4893         int ii;
4894
4895         rc = pci_enable_device(pdev);
4896         if (rc < 0) {
4897                 dev_err(&pdev->dev, "pci_enable_device() failed\n");
4898                 goto out;
4899         }
4900
4901         /* Perform some basic PCI checks */
4902         if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
4903                 dev_err(&pdev->dev, "Can't find PCI device's base address\n");
4904                 rc = -ENODEV;
4905                 goto err_disable;
4906         }
4907
4908         rc = pci_request_regions(pdev, DRIVER_NAME);
4909         if (rc < 0) {
4910                 dev_err(&pdev->dev, "Can't get PCI resources\n");
4911                 goto err_disable;
4912         }
4913
4914         pci_set_master(pdev);
4915
4916         /* Check the DMA addressing support of this device */
4917         if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64))) {
4918                 rc = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
4919                 if (rc < 0) {
4920                         dev_err(&pdev->dev,
4921                           "Unable to obtain 64 bit DMA for consistent allocations\n");
4922                         goto err_release_res;
4923                 }
4924         } else if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(32))) {
4925                 rc = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
4926                 if (rc < 0) {
4927                         dev_err(&pdev->dev,
4928                           "Unable to obtain 32 bit DMA for consistent allocations\n");
4929                         goto err_release_res;
4930                 }
4931         } else {
4932                 dev_err(&pdev->dev, "No usable DMA addressing method\n");
4933                 rc = -EIO;
4934                 goto err_release_res;
4935         }
4936
4937         /* Allocate netdev and private adapter structs */
4938         netdev = alloc_etherdev(sizeof(struct et131x_adapter));
4939         if (!netdev) {
4940                 dev_err(&pdev->dev, "Couldn't alloc netdev struct\n");
4941                 rc = -ENOMEM;
4942                 goto err_release_res;
4943         }
4944
4945         netdev->watchdog_timeo = ET131X_TX_TIMEOUT;
4946         netdev->netdev_ops     = &et131x_netdev_ops;
4947
4948         SET_NETDEV_DEV(netdev, &pdev->dev);
4949         SET_ETHTOOL_OPS(netdev, &et131x_ethtool_ops);
4950
4951         adapter = et131x_adapter_init(netdev, pdev);
4952
4953         rc = et131x_pci_init(adapter, pdev);
4954         if (rc < 0)
4955                 goto err_free_dev;
4956
4957         /* Map the bus-relative registers to system virtual memory */
4958         adapter->regs = pci_ioremap_bar(pdev, 0);
4959         if (!adapter->regs) {
4960                 dev_err(&pdev->dev, "Cannot map device registers\n");
4961                 rc = -ENOMEM;
4962                 goto err_free_dev;
4963         }
4964
4965         /* If Phy COMA mode was enabled when we went down, disable it here. */
4966         writel(ET_PMCSR_INIT,  &adapter->regs->global.pm_csr);
4967
4968         /* Issue a global reset to the et1310 */
4969         et131x_soft_reset(adapter);
4970
4971         /* Disable all interrupts (paranoid) */
4972         et131x_disable_interrupts(adapter);
4973
4974         /* Allocate DMA memory */
4975         rc = et131x_adapter_memory_alloc(adapter);
4976         if (rc < 0) {
4977                 dev_err(&pdev->dev, "Could not alloc adapater memory (DMA)\n");
4978                 goto err_iounmap;
4979         }
4980
4981         /* Init send data structures */
4982         et131x_init_send(adapter);
4983
4984         /* Set up the task structure for the ISR's deferred handler */
4985         INIT_WORK(&adapter->task, et131x_isr_handler);
4986
4987         /* Copy address into the net_device struct */
4988         memcpy(netdev->dev_addr, adapter->addr, ETH_ALEN);
4989
4990         /* Init variable for counting how long we do not have link status */
4991         adapter->boot_coma = 0;
4992         et1310_disable_phy_coma(adapter);
4993
4994         rc = -ENOMEM;
4995
4996         /* Setup the mii_bus struct */
4997         adapter->mii_bus = mdiobus_alloc();
4998         if (!adapter->mii_bus) {
4999                 dev_err(&pdev->dev, "Alloc of mii_bus struct failed\n");
5000                 goto err_mem_free;
5001         }
5002
5003         adapter->mii_bus->name = "et131x_eth_mii";
5004         snprintf(adapter->mii_bus->id, MII_BUS_ID_SIZE, "%x",
5005                 (adapter->pdev->bus->number << 8) | adapter->pdev->devfn);
5006         adapter->mii_bus->priv = netdev;
5007         adapter->mii_bus->read = et131x_mdio_read;
5008         adapter->mii_bus->write = et131x_mdio_write;
5009         adapter->mii_bus->reset = et131x_mdio_reset;
5010         adapter->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
5011         if (!adapter->mii_bus->irq) {
5012                 dev_err(&pdev->dev, "mii_bus irq allocation failed\n");
5013                 goto err_mdio_free;
5014         }
5015
5016         for (ii = 0; ii < PHY_MAX_ADDR; ii++)
5017                 adapter->mii_bus->irq[ii] = PHY_POLL;
5018
5019         rc = mdiobus_register(adapter->mii_bus);
5020         if (rc < 0) {
5021                 dev_err(&pdev->dev, "failed to register MII bus\n");
5022                 goto err_mdio_free_irq;
5023         }
5024
5025         rc = et131x_mii_probe(netdev);
5026         if (rc < 0) {
5027                 dev_err(&pdev->dev, "failed to probe MII bus\n");
5028                 goto err_mdio_unregister;
5029         }
5030
5031         /* Setup et1310 as per the documentation */
5032         et131x_adapter_setup(adapter);
5033
5034         /* We can enable interrupts now
5035          *
5036          *  NOTE - Because registration of interrupt handler is done in the
5037          *         device's open(), defer enabling device interrupts to that
5038          *         point
5039          */
5040
5041         /* Register the net_device struct with the Linux network layer */
5042         rc = register_netdev(netdev);
5043         if (rc < 0) {
5044                 dev_err(&pdev->dev, "register_netdev() failed\n");
5045                 goto err_phy_disconnect;
5046         }
5047
5048         /* Register the net_device struct with the PCI subsystem. Save a copy
5049          * of the PCI config space for this device now that the device has
5050          * been initialized, just in case it needs to be quickly restored.
5051          */
5052         pci_set_drvdata(pdev, netdev);
5053 out:
5054         return rc;
5055
5056 err_phy_disconnect:
5057         phy_disconnect(adapter->phydev);
5058 err_mdio_unregister:
5059         mdiobus_unregister(adapter->mii_bus);
5060 err_mdio_free_irq:
5061         kfree(adapter->mii_bus->irq);
5062 err_mdio_free:
5063         mdiobus_free(adapter->mii_bus);
5064 err_mem_free:
5065         et131x_adapter_memory_free(adapter);
5066 err_iounmap:
5067         iounmap(adapter->regs);
5068 err_free_dev:
5069         pci_dev_put(pdev);
5070         free_netdev(netdev);
5071 err_release_res:
5072         pci_release_regions(pdev);
5073 err_disable:
5074         pci_disable_device(pdev);
5075         goto out;
5076 }
5077
5078 static DEFINE_PCI_DEVICE_TABLE(et131x_pci_table) = {
5079         { PCI_VDEVICE(ATT, ET131X_PCI_DEVICE_ID_GIG), 0UL},
5080         { PCI_VDEVICE(ATT, ET131X_PCI_DEVICE_ID_FAST), 0UL},
5081         {0,}
5082 };
5083 MODULE_DEVICE_TABLE(pci, et131x_pci_table);
5084
5085 static struct pci_driver et131x_driver = {
5086         .name           = DRIVER_NAME,
5087         .id_table       = et131x_pci_table,
5088         .probe          = et131x_pci_setup,
5089         .remove         = et131x_pci_remove,
5090         .driver.pm      = ET131X_PM_OPS,
5091 };
5092
5093 module_pci_driver(et131x_driver);