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