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