via-velocity: Correct 64-byte alignment for rx buffers
[safe/jmp/linux-2.6] / drivers / net / via-velocity.c
1 /*
2  * This code is derived from the VIA reference driver (copyright message
3  * below) provided to Red Hat by VIA Networking Technologies, Inc. for
4  * addition to the Linux kernel.
5  *
6  * The code has been merged into one source file, cleaned up to follow
7  * Linux coding style,  ported to the Linux 2.6 kernel tree and cleaned
8  * for 64bit hardware platforms.
9  *
10  * TODO
11  *      rx_copybreak/alignment
12  *      Scatter gather
13  *      More testing
14  *
15  * The changes are (c) Copyright 2004, Red Hat Inc. <alan@lxorguk.ukuu.org.uk>
16  * Additional fixes and clean up: Francois Romieu
17  *
18  * This source has not been verified for use in safety critical systems.
19  *
20  * Please direct queries about the revamped driver to the linux-kernel
21  * list not VIA.
22  *
23  * Original code:
24  *
25  * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
26  * All rights reserved.
27  *
28  * This software may be redistributed and/or modified under
29  * the terms of the GNU General Public License as published by the Free
30  * Software Foundation; either version 2 of the License, or
31  * any later version.
32  *
33  * This program is distributed in the hope that it will be useful, but
34  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
35  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
36  * for more details.
37  *
38  * Author: Chuang Liang-Shing, AJ Jiang
39  *
40  * Date: Jan 24, 2003
41  *
42  * MODULE_LICENSE("GPL");
43  *
44  */
45
46
47 #include <linux/module.h>
48 #include <linux/types.h>
49 #include <linux/init.h>
50 #include <linux/mm.h>
51 #include <linux/errno.h>
52 #include <linux/ioport.h>
53 #include <linux/pci.h>
54 #include <linux/kernel.h>
55 #include <linux/netdevice.h>
56 #include <linux/etherdevice.h>
57 #include <linux/skbuff.h>
58 #include <linux/delay.h>
59 #include <linux/timer.h>
60 #include <linux/slab.h>
61 #include <linux/interrupt.h>
62 #include <linux/string.h>
63 #include <linux/wait.h>
64 #include <linux/io.h>
65 #include <linux/if.h>
66 #include <linux/uaccess.h>
67 #include <linux/proc_fs.h>
68 #include <linux/inetdevice.h>
69 #include <linux/reboot.h>
70 #include <linux/ethtool.h>
71 #include <linux/mii.h>
72 #include <linux/in.h>
73 #include <linux/if_arp.h>
74 #include <linux/if_vlan.h>
75 #include <linux/ip.h>
76 #include <linux/tcp.h>
77 #include <linux/udp.h>
78 #include <linux/crc-ccitt.h>
79 #include <linux/crc32.h>
80
81 #include "via-velocity.h"
82
83
84 static int velocity_nics;
85 static int msglevel = MSG_LEVEL_INFO;
86
87 /**
88  *      mac_get_cam_mask        -       Read a CAM mask
89  *      @regs: register block for this velocity
90  *      @mask: buffer to store mask
91  *
92  *      Fetch the mask bits of the selected CAM and store them into the
93  *      provided mask buffer.
94  */
95 static void mac_get_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
96 {
97         int i;
98
99         /* Select CAM mask */
100         BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
101
102         writeb(0, &regs->CAMADDR);
103
104         /* read mask */
105         for (i = 0; i < 8; i++)
106                 *mask++ = readb(&(regs->MARCAM[i]));
107
108         /* disable CAMEN */
109         writeb(0, &regs->CAMADDR);
110
111         /* Select mar */
112         BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
113 }
114
115
116 /**
117  *      mac_set_cam_mask        -       Set a CAM mask
118  *      @regs: register block for this velocity
119  *      @mask: CAM mask to load
120  *
121  *      Store a new mask into a CAM
122  */
123 static void mac_set_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
124 {
125         int i;
126         /* Select CAM mask */
127         BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
128
129         writeb(CAMADDR_CAMEN, &regs->CAMADDR);
130
131         for (i = 0; i < 8; i++)
132                 writeb(*mask++, &(regs->MARCAM[i]));
133
134         /* disable CAMEN */
135         writeb(0, &regs->CAMADDR);
136
137         /* Select mar */
138         BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
139 }
140
141 static void mac_set_vlan_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
142 {
143         int i;
144         /* Select CAM mask */
145         BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
146
147         writeb(CAMADDR_CAMEN | CAMADDR_VCAMSL, &regs->CAMADDR);
148
149         for (i = 0; i < 8; i++)
150                 writeb(*mask++, &(regs->MARCAM[i]));
151
152         /* disable CAMEN */
153         writeb(0, &regs->CAMADDR);
154
155         /* Select mar */
156         BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
157 }
158
159 /**
160  *      mac_set_cam     -       set CAM data
161  *      @regs: register block of this velocity
162  *      @idx: Cam index
163  *      @addr: 2 or 6 bytes of CAM data
164  *
165  *      Load an address or vlan tag into a CAM
166  */
167 static void mac_set_cam(struct mac_regs __iomem *regs, int idx, const u8 *addr)
168 {
169         int i;
170
171         /* Select CAM mask */
172         BYTE_REG_BITS_SET(CAMCR_PS_CAM_DATA, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
173
174         idx &= (64 - 1);
175
176         writeb(CAMADDR_CAMEN | idx, &regs->CAMADDR);
177
178         for (i = 0; i < 6; i++)
179                 writeb(*addr++, &(regs->MARCAM[i]));
180
181         BYTE_REG_BITS_ON(CAMCR_CAMWR, &regs->CAMCR);
182
183         udelay(10);
184
185         writeb(0, &regs->CAMADDR);
186
187         /* Select mar */
188         BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
189 }
190
191 static void mac_set_vlan_cam(struct mac_regs __iomem *regs, int idx,
192                              const u8 *addr)
193 {
194
195         /* Select CAM mask */
196         BYTE_REG_BITS_SET(CAMCR_PS_CAM_DATA, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
197
198         idx &= (64 - 1);
199
200         writeb(CAMADDR_CAMEN | CAMADDR_VCAMSL | idx, &regs->CAMADDR);
201         writew(*((u16 *) addr), &regs->MARCAM[0]);
202
203         BYTE_REG_BITS_ON(CAMCR_CAMWR, &regs->CAMCR);
204
205         udelay(10);
206
207         writeb(0, &regs->CAMADDR);
208
209         /* Select mar */
210         BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
211 }
212
213
214 /**
215  *      mac_wol_reset   -       reset WOL after exiting low power
216  *      @regs: register block of this velocity
217  *
218  *      Called after we drop out of wake on lan mode in order to
219  *      reset the Wake on lan features. This function doesn't restore
220  *      the rest of the logic from the result of sleep/wakeup
221  */
222 static void mac_wol_reset(struct mac_regs __iomem *regs)
223 {
224
225         /* Turn off SWPTAG right after leaving power mode */
226         BYTE_REG_BITS_OFF(STICKHW_SWPTAG, &regs->STICKHW);
227         /* clear sticky bits */
228         BYTE_REG_BITS_OFF((STICKHW_DS1 | STICKHW_DS0), &regs->STICKHW);
229
230         BYTE_REG_BITS_OFF(CHIPGCR_FCGMII, &regs->CHIPGCR);
231         BYTE_REG_BITS_OFF(CHIPGCR_FCMODE, &regs->CHIPGCR);
232         /* disable force PME-enable */
233         writeb(WOLCFG_PMEOVR, &regs->WOLCFGClr);
234         /* disable power-event config bit */
235         writew(0xFFFF, &regs->WOLCRClr);
236         /* clear power status */
237         writew(0xFFFF, &regs->WOLSRClr);
238 }
239
240 static const struct ethtool_ops velocity_ethtool_ops;
241
242 /*
243     Define module options
244 */
245
246 MODULE_AUTHOR("VIA Networking Technologies, Inc.");
247 MODULE_LICENSE("GPL");
248 MODULE_DESCRIPTION("VIA Networking Velocity Family Gigabit Ethernet Adapter Driver");
249
250 #define VELOCITY_PARAM(N, D) \
251         static int N[MAX_UNITS] = OPTION_DEFAULT;\
252         module_param_array(N, int, NULL, 0); \
253         MODULE_PARM_DESC(N, D);
254
255 #define RX_DESC_MIN     64
256 #define RX_DESC_MAX     255
257 #define RX_DESC_DEF     64
258 VELOCITY_PARAM(RxDescriptors, "Number of receive descriptors");
259
260 #define TX_DESC_MIN     16
261 #define TX_DESC_MAX     256
262 #define TX_DESC_DEF     64
263 VELOCITY_PARAM(TxDescriptors, "Number of transmit descriptors");
264
265 #define RX_THRESH_MIN   0
266 #define RX_THRESH_MAX   3
267 #define RX_THRESH_DEF   0
268 /* rx_thresh[] is used for controlling the receive fifo threshold.
269    0: indicate the rxfifo threshold is 128 bytes.
270    1: indicate the rxfifo threshold is 512 bytes.
271    2: indicate the rxfifo threshold is 1024 bytes.
272    3: indicate the rxfifo threshold is store & forward.
273 */
274 VELOCITY_PARAM(rx_thresh, "Receive fifo threshold");
275
276 #define DMA_LENGTH_MIN  0
277 #define DMA_LENGTH_MAX  7
278 #define DMA_LENGTH_DEF  0
279
280 /* DMA_length[] is used for controlling the DMA length
281    0: 8 DWORDs
282    1: 16 DWORDs
283    2: 32 DWORDs
284    3: 64 DWORDs
285    4: 128 DWORDs
286    5: 256 DWORDs
287    6: SF(flush till emply)
288    7: SF(flush till emply)
289 */
290 VELOCITY_PARAM(DMA_length, "DMA length");
291
292 #define IP_ALIG_DEF     0
293 /* IP_byte_align[] is used for IP header DWORD byte aligned
294    0: indicate the IP header won't be DWORD byte aligned.(Default) .
295    1: indicate the IP header will be DWORD byte aligned.
296       In some enviroment, the IP header should be DWORD byte aligned,
297       or the packet will be droped when we receive it. (eg: IPVS)
298 */
299 VELOCITY_PARAM(IP_byte_align, "Enable IP header dword aligned");
300
301 #define TX_CSUM_DEF     1
302 /* txcsum_offload[] is used for setting the checksum offload ability of NIC.
303    (We only support RX checksum offload now)
304    0: disable csum_offload[checksum offload
305    1: enable checksum offload. (Default)
306 */
307 VELOCITY_PARAM(txcsum_offload, "Enable transmit packet checksum offload");
308
309 #define FLOW_CNTL_DEF   1
310 #define FLOW_CNTL_MIN   1
311 #define FLOW_CNTL_MAX   5
312
313 /* flow_control[] is used for setting the flow control ability of NIC.
314    1: hardware deafult - AUTO (default). Use Hardware default value in ANAR.
315    2: enable TX flow control.
316    3: enable RX flow control.
317    4: enable RX/TX flow control.
318    5: disable
319 */
320 VELOCITY_PARAM(flow_control, "Enable flow control ability");
321
322 #define MED_LNK_DEF 0
323 #define MED_LNK_MIN 0
324 #define MED_LNK_MAX 4
325 /* speed_duplex[] is used for setting the speed and duplex mode of NIC.
326    0: indicate autonegotiation for both speed and duplex mode
327    1: indicate 100Mbps half duplex mode
328    2: indicate 100Mbps full duplex mode
329    3: indicate 10Mbps half duplex mode
330    4: indicate 10Mbps full duplex mode
331
332    Note:
333    if EEPROM have been set to the force mode, this option is ignored
334    by driver.
335 */
336 VELOCITY_PARAM(speed_duplex, "Setting the speed and duplex mode");
337
338 #define VAL_PKT_LEN_DEF     0
339 /* ValPktLen[] is used for setting the checksum offload ability of NIC.
340    0: Receive frame with invalid layer 2 length (Default)
341    1: Drop frame with invalid layer 2 length
342 */
343 VELOCITY_PARAM(ValPktLen, "Receiving or Drop invalid 802.3 frame");
344
345 #define WOL_OPT_DEF     0
346 #define WOL_OPT_MIN     0
347 #define WOL_OPT_MAX     7
348 /* wol_opts[] is used for controlling wake on lan behavior.
349    0: Wake up if recevied a magic packet. (Default)
350    1: Wake up if link status is on/off.
351    2: Wake up if recevied an arp packet.
352    4: Wake up if recevied any unicast packet.
353    Those value can be sumed up to support more than one option.
354 */
355 VELOCITY_PARAM(wol_opts, "Wake On Lan options");
356
357 #define INT_WORKS_DEF   20
358 #define INT_WORKS_MIN   10
359 #define INT_WORKS_MAX   64
360
361 VELOCITY_PARAM(int_works, "Number of packets per interrupt services");
362
363 static int rx_copybreak = 200;
364 module_param(rx_copybreak, int, 0644);
365 MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
366
367 /*
368  *      Internal board variants. At the moment we have only one
369  */
370 static struct velocity_info_tbl chip_info_table[] = {
371         {CHIP_TYPE_VT6110, "VIA Networking Velocity Family Gigabit Ethernet Adapter", 1, 0x00FFFFFFUL},
372         { }
373 };
374
375 /*
376  *      Describe the PCI device identifiers that we support in this
377  *      device driver. Used for hotplug autoloading.
378  */
379 static const struct pci_device_id velocity_id_table[] __devinitdata = {
380         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_612X) },
381         { }
382 };
383
384 MODULE_DEVICE_TABLE(pci, velocity_id_table);
385
386 /**
387  *      get_chip_name   -       identifier to name
388  *      @id: chip identifier
389  *
390  *      Given a chip identifier return a suitable description. Returns
391  *      a pointer a static string valid while the driver is loaded.
392  */
393 static const char __devinit *get_chip_name(enum chip_type chip_id)
394 {
395         int i;
396         for (i = 0; chip_info_table[i].name != NULL; i++)
397                 if (chip_info_table[i].chip_id == chip_id)
398                         break;
399         return chip_info_table[i].name;
400 }
401
402 /**
403  *      velocity_remove1        -       device unplug
404  *      @pdev: PCI device being removed
405  *
406  *      Device unload callback. Called on an unplug or on module
407  *      unload for each active device that is present. Disconnects
408  *      the device from the network layer and frees all the resources
409  */
410 static void __devexit velocity_remove1(struct pci_dev *pdev)
411 {
412         struct net_device *dev = pci_get_drvdata(pdev);
413         struct velocity_info *vptr = netdev_priv(dev);
414
415         unregister_netdev(dev);
416         iounmap(vptr->mac_regs);
417         pci_release_regions(pdev);
418         pci_disable_device(pdev);
419         pci_set_drvdata(pdev, NULL);
420         free_netdev(dev);
421
422         velocity_nics--;
423 }
424
425 /**
426  *      velocity_set_int_opt    -       parser for integer options
427  *      @opt: pointer to option value
428  *      @val: value the user requested (or -1 for default)
429  *      @min: lowest value allowed
430  *      @max: highest value allowed
431  *      @def: default value
432  *      @name: property name
433  *      @dev: device name
434  *
435  *      Set an integer property in the module options. This function does
436  *      all the verification and checking as well as reporting so that
437  *      we don't duplicate code for each option.
438  */
439 static void __devinit velocity_set_int_opt(int *opt, int val, int min, int max, int def, char *name, const char *devname)
440 {
441         if (val == -1)
442                 *opt = def;
443         else if (val < min || val > max) {
444                 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: the value of parameter %s is invalid, the valid range is (%d-%d)\n",
445                                         devname, name, min, max);
446                 *opt = def;
447         } else {
448                 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_INFO "%s: set value of parameter %s to %d\n",
449                                         devname, name, val);
450                 *opt = val;
451         }
452 }
453
454 /**
455  *      velocity_set_bool_opt   -       parser for boolean options
456  *      @opt: pointer to option value
457  *      @val: value the user requested (or -1 for default)
458  *      @def: default value (yes/no)
459  *      @flag: numeric value to set for true.
460  *      @name: property name
461  *      @dev: device name
462  *
463  *      Set a boolean property in the module options. This function does
464  *      all the verification and checking as well as reporting so that
465  *      we don't duplicate code for each option.
466  */
467 static void __devinit velocity_set_bool_opt(u32 *opt, int val, int def, u32 flag, char *name, const char *devname)
468 {
469         (*opt) &= (~flag);
470         if (val == -1)
471                 *opt |= (def ? flag : 0);
472         else if (val < 0 || val > 1) {
473                 printk(KERN_NOTICE "%s: the value of parameter %s is invalid, the valid range is (0-1)\n",
474                         devname, name);
475                 *opt |= (def ? flag : 0);
476         } else {
477                 printk(KERN_INFO "%s: set parameter %s to %s\n",
478                         devname, name, val ? "TRUE" : "FALSE");
479                 *opt |= (val ? flag : 0);
480         }
481 }
482
483 /**
484  *      velocity_get_options    -       set options on device
485  *      @opts: option structure for the device
486  *      @index: index of option to use in module options array
487  *      @devname: device name
488  *
489  *      Turn the module and command options into a single structure
490  *      for the current device
491  */
492 static void __devinit velocity_get_options(struct velocity_opt *opts, int index, const char *devname)
493 {
494
495         velocity_set_int_opt(&opts->rx_thresh, rx_thresh[index], RX_THRESH_MIN, RX_THRESH_MAX, RX_THRESH_DEF, "rx_thresh", devname);
496         velocity_set_int_opt(&opts->DMA_length, DMA_length[index], DMA_LENGTH_MIN, DMA_LENGTH_MAX, DMA_LENGTH_DEF, "DMA_length", devname);
497         velocity_set_int_opt(&opts->numrx, RxDescriptors[index], RX_DESC_MIN, RX_DESC_MAX, RX_DESC_DEF, "RxDescriptors", devname);
498         velocity_set_int_opt(&opts->numtx, TxDescriptors[index], TX_DESC_MIN, TX_DESC_MAX, TX_DESC_DEF, "TxDescriptors", devname);
499
500         velocity_set_bool_opt(&opts->flags, txcsum_offload[index], TX_CSUM_DEF, VELOCITY_FLAGS_TX_CSUM, "txcsum_offload", devname);
501         velocity_set_int_opt(&opts->flow_cntl, flow_control[index], FLOW_CNTL_MIN, FLOW_CNTL_MAX, FLOW_CNTL_DEF, "flow_control", devname);
502         velocity_set_bool_opt(&opts->flags, IP_byte_align[index], IP_ALIG_DEF, VELOCITY_FLAGS_IP_ALIGN, "IP_byte_align", devname);
503         velocity_set_bool_opt(&opts->flags, ValPktLen[index], VAL_PKT_LEN_DEF, VELOCITY_FLAGS_VAL_PKT_LEN, "ValPktLen", devname);
504         velocity_set_int_opt((int *) &opts->spd_dpx, speed_duplex[index], MED_LNK_MIN, MED_LNK_MAX, MED_LNK_DEF, "Media link mode", devname);
505         velocity_set_int_opt((int *) &opts->wol_opts, wol_opts[index], WOL_OPT_MIN, WOL_OPT_MAX, WOL_OPT_DEF, "Wake On Lan options", devname);
506         velocity_set_int_opt((int *) &opts->int_works, int_works[index], INT_WORKS_MIN, INT_WORKS_MAX, INT_WORKS_DEF, "Interrupt service works", devname);
507         opts->numrx = (opts->numrx & ~3);
508 }
509
510 /**
511  *      velocity_init_cam_filter        -       initialise CAM
512  *      @vptr: velocity to program
513  *
514  *      Initialize the content addressable memory used for filters. Load
515  *      appropriately according to the presence of VLAN
516  */
517 static void velocity_init_cam_filter(struct velocity_info *vptr)
518 {
519         struct mac_regs __iomem *regs = vptr->mac_regs;
520
521         /* Turn on MCFG_PQEN, turn off MCFG_RTGOPT */
522         WORD_REG_BITS_SET(MCFG_PQEN, MCFG_RTGOPT, &regs->MCFG);
523         WORD_REG_BITS_ON(MCFG_VIDFR, &regs->MCFG);
524
525         /* Disable all CAMs */
526         memset(vptr->vCAMmask, 0, sizeof(u8) * 8);
527         memset(vptr->mCAMmask, 0, sizeof(u8) * 8);
528         mac_set_vlan_cam_mask(regs, vptr->vCAMmask);
529         mac_set_cam_mask(regs, vptr->mCAMmask);
530
531         /* Enable VCAMs */
532         if (vptr->vlgrp) {
533                 unsigned int vid, i = 0;
534
535                 if (!vlan_group_get_device(vptr->vlgrp, 0))
536                         WORD_REG_BITS_ON(MCFG_RTGOPT, &regs->MCFG);
537
538                 for (vid = 1; (vid < VLAN_VID_MASK); vid++) {
539                         if (vlan_group_get_device(vptr->vlgrp, vid)) {
540                                 mac_set_vlan_cam(regs, i, (u8 *) &vid);
541                                 vptr->vCAMmask[i / 8] |= 0x1 << (i % 8);
542                                 if (++i >= VCAM_SIZE)
543                                         break;
544                         }
545                 }
546                 mac_set_vlan_cam_mask(regs, vptr->vCAMmask);
547         }
548 }
549
550 static void velocity_vlan_rx_register(struct net_device *dev,
551                                       struct vlan_group *grp)
552 {
553         struct velocity_info *vptr = netdev_priv(dev);
554
555         vptr->vlgrp = grp;
556 }
557
558 static void velocity_vlan_rx_add_vid(struct net_device *dev, unsigned short vid)
559 {
560         struct velocity_info *vptr = netdev_priv(dev);
561
562         spin_lock_irq(&vptr->lock);
563         velocity_init_cam_filter(vptr);
564         spin_unlock_irq(&vptr->lock);
565 }
566
567 static void velocity_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
568 {
569         struct velocity_info *vptr = netdev_priv(dev);
570
571         spin_lock_irq(&vptr->lock);
572         vlan_group_set_device(vptr->vlgrp, vid, NULL);
573         velocity_init_cam_filter(vptr);
574         spin_unlock_irq(&vptr->lock);
575 }
576
577 static void velocity_init_rx_ring_indexes(struct velocity_info *vptr)
578 {
579         vptr->rx.dirty = vptr->rx.filled = vptr->rx.curr = 0;
580 }
581
582 /**
583  *      velocity_rx_reset       -       handle a receive reset
584  *      @vptr: velocity we are resetting
585  *
586  *      Reset the ownership and status for the receive ring side.
587  *      Hand all the receive queue to the NIC.
588  */
589 static void velocity_rx_reset(struct velocity_info *vptr)
590 {
591
592         struct mac_regs __iomem *regs = vptr->mac_regs;
593         int i;
594
595         velocity_init_rx_ring_indexes(vptr);
596
597         /*
598          *      Init state, all RD entries belong to the NIC
599          */
600         for (i = 0; i < vptr->options.numrx; ++i)
601                 vptr->rx.ring[i].rdesc0.len |= OWNED_BY_NIC;
602
603         writew(vptr->options.numrx, &regs->RBRDU);
604         writel(vptr->rx.pool_dma, &regs->RDBaseLo);
605         writew(0, &regs->RDIdx);
606         writew(vptr->options.numrx - 1, &regs->RDCSize);
607 }
608
609 /**
610  *      velocity_get_opt_media_mode     -       get media selection
611  *      @vptr: velocity adapter
612  *
613  *      Get the media mode stored in EEPROM or module options and load
614  *      mii_status accordingly. The requested link state information
615  *      is also returned.
616  */
617 static u32 velocity_get_opt_media_mode(struct velocity_info *vptr)
618 {
619         u32 status = 0;
620
621         switch (vptr->options.spd_dpx) {
622         case SPD_DPX_AUTO:
623                 status = VELOCITY_AUTONEG_ENABLE;
624                 break;
625         case SPD_DPX_100_FULL:
626                 status = VELOCITY_SPEED_100 | VELOCITY_DUPLEX_FULL;
627                 break;
628         case SPD_DPX_10_FULL:
629                 status = VELOCITY_SPEED_10 | VELOCITY_DUPLEX_FULL;
630                 break;
631         case SPD_DPX_100_HALF:
632                 status = VELOCITY_SPEED_100;
633                 break;
634         case SPD_DPX_10_HALF:
635                 status = VELOCITY_SPEED_10;
636                 break;
637         }
638         vptr->mii_status = status;
639         return status;
640 }
641
642 /**
643  *      safe_disable_mii_autopoll       -       autopoll off
644  *      @regs: velocity registers
645  *
646  *      Turn off the autopoll and wait for it to disable on the chip
647  */
648 static void safe_disable_mii_autopoll(struct mac_regs __iomem *regs)
649 {
650         u16 ww;
651
652         /*  turn off MAUTO */
653         writeb(0, &regs->MIICR);
654         for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
655                 udelay(1);
656                 if (BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
657                         break;
658         }
659 }
660
661 /**
662  *      enable_mii_autopoll     -       turn on autopolling
663  *      @regs: velocity registers
664  *
665  *      Enable the MII link status autopoll feature on the Velocity
666  *      hardware. Wait for it to enable.
667  */
668 static void enable_mii_autopoll(struct mac_regs __iomem *regs)
669 {
670         int ii;
671
672         writeb(0, &(regs->MIICR));
673         writeb(MIIADR_SWMPL, &regs->MIIADR);
674
675         for (ii = 0; ii < W_MAX_TIMEOUT; ii++) {
676                 udelay(1);
677                 if (BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
678                         break;
679         }
680
681         writeb(MIICR_MAUTO, &regs->MIICR);
682
683         for (ii = 0; ii < W_MAX_TIMEOUT; ii++) {
684                 udelay(1);
685                 if (!BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
686                         break;
687         }
688
689 }
690
691 /**
692  *      velocity_mii_read       -       read MII data
693  *      @regs: velocity registers
694  *      @index: MII register index
695  *      @data: buffer for received data
696  *
697  *      Perform a single read of an MII 16bit register. Returns zero
698  *      on success or -ETIMEDOUT if the PHY did not respond.
699  */
700 static int velocity_mii_read(struct mac_regs __iomem *regs, u8 index, u16 *data)
701 {
702         u16 ww;
703
704         /*
705          *      Disable MIICR_MAUTO, so that mii addr can be set normally
706          */
707         safe_disable_mii_autopoll(regs);
708
709         writeb(index, &regs->MIIADR);
710
711         BYTE_REG_BITS_ON(MIICR_RCMD, &regs->MIICR);
712
713         for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
714                 if (!(readb(&regs->MIICR) & MIICR_RCMD))
715                         break;
716         }
717
718         *data = readw(&regs->MIIDATA);
719
720         enable_mii_autopoll(regs);
721         if (ww == W_MAX_TIMEOUT)
722                 return -ETIMEDOUT;
723         return 0;
724 }
725
726
727 /**
728  *      mii_check_media_mode    -       check media state
729  *      @regs: velocity registers
730  *
731  *      Check the current MII status and determine the link status
732  *      accordingly
733  */
734 static u32 mii_check_media_mode(struct mac_regs __iomem *regs)
735 {
736         u32 status = 0;
737         u16 ANAR;
738
739         if (!MII_REG_BITS_IS_ON(BMSR_LNK, MII_REG_BMSR, regs))
740                 status |= VELOCITY_LINK_FAIL;
741
742         if (MII_REG_BITS_IS_ON(G1000CR_1000FD, MII_REG_G1000CR, regs))
743                 status |= VELOCITY_SPEED_1000 | VELOCITY_DUPLEX_FULL;
744         else if (MII_REG_BITS_IS_ON(G1000CR_1000, MII_REG_G1000CR, regs))
745                 status |= (VELOCITY_SPEED_1000);
746         else {
747                 velocity_mii_read(regs, MII_REG_ANAR, &ANAR);
748                 if (ANAR & ANAR_TXFD)
749                         status |= (VELOCITY_SPEED_100 | VELOCITY_DUPLEX_FULL);
750                 else if (ANAR & ANAR_TX)
751                         status |= VELOCITY_SPEED_100;
752                 else if (ANAR & ANAR_10FD)
753                         status |= (VELOCITY_SPEED_10 | VELOCITY_DUPLEX_FULL);
754                 else
755                         status |= (VELOCITY_SPEED_10);
756         }
757
758         if (MII_REG_BITS_IS_ON(BMCR_AUTO, MII_REG_BMCR, regs)) {
759                 velocity_mii_read(regs, MII_REG_ANAR, &ANAR);
760                 if ((ANAR & (ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10))
761                     == (ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10)) {
762                         if (MII_REG_BITS_IS_ON(G1000CR_1000 | G1000CR_1000FD, MII_REG_G1000CR, regs))
763                                 status |= VELOCITY_AUTONEG_ENABLE;
764                 }
765         }
766
767         return status;
768 }
769
770 /**
771  *      velocity_mii_write      -       write MII data
772  *      @regs: velocity registers
773  *      @index: MII register index
774  *      @data: 16bit data for the MII register
775  *
776  *      Perform a single write to an MII 16bit register. Returns zero
777  *      on success or -ETIMEDOUT if the PHY did not respond.
778  */
779 static int velocity_mii_write(struct mac_regs __iomem *regs, u8 mii_addr, u16 data)
780 {
781         u16 ww;
782
783         /*
784          *      Disable MIICR_MAUTO, so that mii addr can be set normally
785          */
786         safe_disable_mii_autopoll(regs);
787
788         /* MII reg offset */
789         writeb(mii_addr, &regs->MIIADR);
790         /* set MII data */
791         writew(data, &regs->MIIDATA);
792
793         /* turn on MIICR_WCMD */
794         BYTE_REG_BITS_ON(MIICR_WCMD, &regs->MIICR);
795
796         /* W_MAX_TIMEOUT is the timeout period */
797         for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
798                 udelay(5);
799                 if (!(readb(&regs->MIICR) & MIICR_WCMD))
800                         break;
801         }
802         enable_mii_autopoll(regs);
803
804         if (ww == W_MAX_TIMEOUT)
805                 return -ETIMEDOUT;
806         return 0;
807 }
808
809 /**
810  *      set_mii_flow_control    -       flow control setup
811  *      @vptr: velocity interface
812  *
813  *      Set up the flow control on this interface according to
814  *      the supplied user/eeprom options.
815  */
816 static void set_mii_flow_control(struct velocity_info *vptr)
817 {
818         /*Enable or Disable PAUSE in ANAR */
819         switch (vptr->options.flow_cntl) {
820         case FLOW_CNTL_TX:
821                 MII_REG_BITS_OFF(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs);
822                 MII_REG_BITS_ON(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs);
823                 break;
824
825         case FLOW_CNTL_RX:
826                 MII_REG_BITS_ON(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs);
827                 MII_REG_BITS_ON(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs);
828                 break;
829
830         case FLOW_CNTL_TX_RX:
831                 MII_REG_BITS_ON(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs);
832                 MII_REG_BITS_ON(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs);
833                 break;
834
835         case FLOW_CNTL_DISABLE:
836                 MII_REG_BITS_OFF(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs);
837                 MII_REG_BITS_OFF(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs);
838                 break;
839         default:
840                 break;
841         }
842 }
843
844 /**
845  *      mii_set_auto_on         -       autonegotiate on
846  *      @vptr: velocity
847  *
848  *      Enable autonegotation on this interface
849  */
850 static void mii_set_auto_on(struct velocity_info *vptr)
851 {
852         if (MII_REG_BITS_IS_ON(BMCR_AUTO, MII_REG_BMCR, vptr->mac_regs))
853                 MII_REG_BITS_ON(BMCR_REAUTO, MII_REG_BMCR, vptr->mac_regs);
854         else
855                 MII_REG_BITS_ON(BMCR_AUTO, MII_REG_BMCR, vptr->mac_regs);
856 }
857
858 static u32 check_connection_type(struct mac_regs __iomem *regs)
859 {
860         u32 status = 0;
861         u8 PHYSR0;
862         u16 ANAR;
863         PHYSR0 = readb(&regs->PHYSR0);
864
865         /*
866            if (!(PHYSR0 & PHYSR0_LINKGD))
867            status|=VELOCITY_LINK_FAIL;
868          */
869
870         if (PHYSR0 & PHYSR0_FDPX)
871                 status |= VELOCITY_DUPLEX_FULL;
872
873         if (PHYSR0 & PHYSR0_SPDG)
874                 status |= VELOCITY_SPEED_1000;
875         else if (PHYSR0 & PHYSR0_SPD10)
876                 status |= VELOCITY_SPEED_10;
877         else
878                 status |= VELOCITY_SPEED_100;
879
880         if (MII_REG_BITS_IS_ON(BMCR_AUTO, MII_REG_BMCR, regs)) {
881                 velocity_mii_read(regs, MII_REG_ANAR, &ANAR);
882                 if ((ANAR & (ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10))
883                     == (ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10)) {
884                         if (MII_REG_BITS_IS_ON(G1000CR_1000 | G1000CR_1000FD, MII_REG_G1000CR, regs))
885                                 status |= VELOCITY_AUTONEG_ENABLE;
886                 }
887         }
888
889         return status;
890 }
891
892
893
894 /**
895  *      velocity_set_media_mode         -       set media mode
896  *      @mii_status: old MII link state
897  *
898  *      Check the media link state and configure the flow control
899  *      PHY and also velocity hardware setup accordingly. In particular
900  *      we need to set up CD polling and frame bursting.
901  */
902 static int velocity_set_media_mode(struct velocity_info *vptr, u32 mii_status)
903 {
904         u32 curr_status;
905         struct mac_regs __iomem *regs = vptr->mac_regs;
906
907         vptr->mii_status = mii_check_media_mode(vptr->mac_regs);
908         curr_status = vptr->mii_status & (~VELOCITY_LINK_FAIL);
909
910         /* Set mii link status */
911         set_mii_flow_control(vptr);
912
913         /*
914            Check if new status is consisent with current status
915            if (((mii_status & curr_status) & VELOCITY_AUTONEG_ENABLE)
916            || (mii_status==curr_status)) {
917            vptr->mii_status=mii_check_media_mode(vptr->mac_regs);
918            vptr->mii_status=check_connection_type(vptr->mac_regs);
919            VELOCITY_PRT(MSG_LEVEL_INFO, "Velocity link no change\n");
920            return 0;
921            }
922          */
923
924         if (PHYID_GET_PHY_ID(vptr->phy_id) == PHYID_CICADA_CS8201)
925                 MII_REG_BITS_ON(AUXCR_MDPPS, MII_REG_AUXCR, vptr->mac_regs);
926
927         /*
928          *      If connection type is AUTO
929          */
930         if (mii_status & VELOCITY_AUTONEG_ENABLE) {
931                 VELOCITY_PRT(MSG_LEVEL_INFO, "Velocity is AUTO mode\n");
932                 /* clear force MAC mode bit */
933                 BYTE_REG_BITS_OFF(CHIPGCR_FCMODE, &regs->CHIPGCR);
934                 /* set duplex mode of MAC according to duplex mode of MII */
935                 MII_REG_BITS_ON(ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10, MII_REG_ANAR, vptr->mac_regs);
936                 MII_REG_BITS_ON(G1000CR_1000FD | G1000CR_1000, MII_REG_G1000CR, vptr->mac_regs);
937                 MII_REG_BITS_ON(BMCR_SPEED1G, MII_REG_BMCR, vptr->mac_regs);
938
939                 /* enable AUTO-NEGO mode */
940                 mii_set_auto_on(vptr);
941         } else {
942                 u16 ANAR;
943                 u8 CHIPGCR;
944
945                 /*
946                  * 1. if it's 3119, disable frame bursting in halfduplex mode
947                  *    and enable it in fullduplex mode
948                  * 2. set correct MII/GMII and half/full duplex mode in CHIPGCR
949                  * 3. only enable CD heart beat counter in 10HD mode
950                  */
951
952                 /* set force MAC mode bit */
953                 BYTE_REG_BITS_ON(CHIPGCR_FCMODE, &regs->CHIPGCR);
954
955                 CHIPGCR = readb(&regs->CHIPGCR);
956                 CHIPGCR &= ~CHIPGCR_FCGMII;
957
958                 if (mii_status & VELOCITY_DUPLEX_FULL) {
959                         CHIPGCR |= CHIPGCR_FCFDX;
960                         writeb(CHIPGCR, &regs->CHIPGCR);
961                         VELOCITY_PRT(MSG_LEVEL_INFO, "set Velocity to forced full mode\n");
962                         if (vptr->rev_id < REV_ID_VT3216_A0)
963                                 BYTE_REG_BITS_OFF(TCR_TB2BDIS, &regs->TCR);
964                 } else {
965                         CHIPGCR &= ~CHIPGCR_FCFDX;
966                         VELOCITY_PRT(MSG_LEVEL_INFO, "set Velocity to forced half mode\n");
967                         writeb(CHIPGCR, &regs->CHIPGCR);
968                         if (vptr->rev_id < REV_ID_VT3216_A0)
969                                 BYTE_REG_BITS_ON(TCR_TB2BDIS, &regs->TCR);
970                 }
971
972                 MII_REG_BITS_OFF(G1000CR_1000FD | G1000CR_1000, MII_REG_G1000CR, vptr->mac_regs);
973
974                 if (!(mii_status & VELOCITY_DUPLEX_FULL) && (mii_status & VELOCITY_SPEED_10))
975                         BYTE_REG_BITS_OFF(TESTCFG_HBDIS, &regs->TESTCFG);
976                 else
977                         BYTE_REG_BITS_ON(TESTCFG_HBDIS, &regs->TESTCFG);
978
979                 /* MII_REG_BITS_OFF(BMCR_SPEED1G, MII_REG_BMCR, vptr->mac_regs); */
980                 velocity_mii_read(vptr->mac_regs, MII_REG_ANAR, &ANAR);
981                 ANAR &= (~(ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10));
982                 if (mii_status & VELOCITY_SPEED_100) {
983                         if (mii_status & VELOCITY_DUPLEX_FULL)
984                                 ANAR |= ANAR_TXFD;
985                         else
986                                 ANAR |= ANAR_TX;
987                 } else {
988                         if (mii_status & VELOCITY_DUPLEX_FULL)
989                                 ANAR |= ANAR_10FD;
990                         else
991                                 ANAR |= ANAR_10;
992                 }
993                 velocity_mii_write(vptr->mac_regs, MII_REG_ANAR, ANAR);
994                 /* enable AUTO-NEGO mode */
995                 mii_set_auto_on(vptr);
996                 /* MII_REG_BITS_ON(BMCR_AUTO, MII_REG_BMCR, vptr->mac_regs); */
997         }
998         /* vptr->mii_status=mii_check_media_mode(vptr->mac_regs); */
999         /* vptr->mii_status=check_connection_type(vptr->mac_regs); */
1000         return VELOCITY_LINK_CHANGE;
1001 }
1002
1003 /**
1004  *      velocity_print_link_status      -       link status reporting
1005  *      @vptr: velocity to report on
1006  *
1007  *      Turn the link status of the velocity card into a kernel log
1008  *      description of the new link state, detailing speed and duplex
1009  *      status
1010  */
1011 static void velocity_print_link_status(struct velocity_info *vptr)
1012 {
1013
1014         if (vptr->mii_status & VELOCITY_LINK_FAIL) {
1015                 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: failed to detect cable link\n", vptr->dev->name);
1016         } else if (vptr->options.spd_dpx == SPD_DPX_AUTO) {
1017                 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: Link auto-negotiation", vptr->dev->name);
1018
1019                 if (vptr->mii_status & VELOCITY_SPEED_1000)
1020                         VELOCITY_PRT(MSG_LEVEL_INFO, " speed 1000M bps");
1021                 else if (vptr->mii_status & VELOCITY_SPEED_100)
1022                         VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps");
1023                 else
1024                         VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps");
1025
1026                 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
1027                         VELOCITY_PRT(MSG_LEVEL_INFO, " full duplex\n");
1028                 else
1029                         VELOCITY_PRT(MSG_LEVEL_INFO, " half duplex\n");
1030         } else {
1031                 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: Link forced", vptr->dev->name);
1032                 switch (vptr->options.spd_dpx) {
1033                 case SPD_DPX_100_HALF:
1034                         VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps half duplex\n");
1035                         break;
1036                 case SPD_DPX_100_FULL:
1037                         VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps full duplex\n");
1038                         break;
1039                 case SPD_DPX_10_HALF:
1040                         VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps half duplex\n");
1041                         break;
1042                 case SPD_DPX_10_FULL:
1043                         VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps full duplex\n");
1044                         break;
1045                 default:
1046                         break;
1047                 }
1048         }
1049 }
1050
1051 /**
1052  *      enable_flow_control_ability     -       flow control
1053  *      @vptr: veloity to configure
1054  *
1055  *      Set up flow control according to the flow control options
1056  *      determined by the eeprom/configuration.
1057  */
1058 static void enable_flow_control_ability(struct velocity_info *vptr)
1059 {
1060
1061         struct mac_regs __iomem *regs = vptr->mac_regs;
1062
1063         switch (vptr->options.flow_cntl) {
1064
1065         case FLOW_CNTL_DEFAULT:
1066                 if (BYTE_REG_BITS_IS_ON(PHYSR0_RXFLC, &regs->PHYSR0))
1067                         writel(CR0_FDXRFCEN, &regs->CR0Set);
1068                 else
1069                         writel(CR0_FDXRFCEN, &regs->CR0Clr);
1070
1071                 if (BYTE_REG_BITS_IS_ON(PHYSR0_TXFLC, &regs->PHYSR0))
1072                         writel(CR0_FDXTFCEN, &regs->CR0Set);
1073                 else
1074                         writel(CR0_FDXTFCEN, &regs->CR0Clr);
1075                 break;
1076
1077         case FLOW_CNTL_TX:
1078                 writel(CR0_FDXTFCEN, &regs->CR0Set);
1079                 writel(CR0_FDXRFCEN, &regs->CR0Clr);
1080                 break;
1081
1082         case FLOW_CNTL_RX:
1083                 writel(CR0_FDXRFCEN, &regs->CR0Set);
1084                 writel(CR0_FDXTFCEN, &regs->CR0Clr);
1085                 break;
1086
1087         case FLOW_CNTL_TX_RX:
1088                 writel(CR0_FDXTFCEN, &regs->CR0Set);
1089                 writel(CR0_FDXRFCEN, &regs->CR0Set);
1090                 break;
1091
1092         case FLOW_CNTL_DISABLE:
1093                 writel(CR0_FDXRFCEN, &regs->CR0Clr);
1094                 writel(CR0_FDXTFCEN, &regs->CR0Clr);
1095                 break;
1096
1097         default:
1098                 break;
1099         }
1100
1101 }
1102
1103 /**
1104  *      velocity_soft_reset     -       soft reset
1105  *      @vptr: velocity to reset
1106  *
1107  *      Kick off a soft reset of the velocity adapter and then poll
1108  *      until the reset sequence has completed before returning.
1109  */
1110 static int velocity_soft_reset(struct velocity_info *vptr)
1111 {
1112         struct mac_regs __iomem *regs = vptr->mac_regs;
1113         int i = 0;
1114
1115         writel(CR0_SFRST, &regs->CR0Set);
1116
1117         for (i = 0; i < W_MAX_TIMEOUT; i++) {
1118                 udelay(5);
1119                 if (!DWORD_REG_BITS_IS_ON(CR0_SFRST, &regs->CR0Set))
1120                         break;
1121         }
1122
1123         if (i == W_MAX_TIMEOUT) {
1124                 writel(CR0_FORSRST, &regs->CR0Set);
1125                 /* FIXME: PCI POSTING */
1126                 /* delay 2ms */
1127                 mdelay(2);
1128         }
1129         return 0;
1130 }
1131
1132 /**
1133  *      velocity_set_multi      -       filter list change callback
1134  *      @dev: network device
1135  *
1136  *      Called by the network layer when the filter lists need to change
1137  *      for a velocity adapter. Reload the CAMs with the new address
1138  *      filter ruleset.
1139  */
1140 static void velocity_set_multi(struct net_device *dev)
1141 {
1142         struct velocity_info *vptr = netdev_priv(dev);
1143         struct mac_regs __iomem *regs = vptr->mac_regs;
1144         u8 rx_mode;
1145         int i;
1146         struct dev_mc_list *mclist;
1147
1148         if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
1149                 writel(0xffffffff, &regs->MARCAM[0]);
1150                 writel(0xffffffff, &regs->MARCAM[4]);
1151                 rx_mode = (RCR_AM | RCR_AB | RCR_PROM);
1152         } else if ((dev->mc_count > vptr->multicast_limit)
1153                    || (dev->flags & IFF_ALLMULTI)) {
1154                 writel(0xffffffff, &regs->MARCAM[0]);
1155                 writel(0xffffffff, &regs->MARCAM[4]);
1156                 rx_mode = (RCR_AM | RCR_AB);
1157         } else {
1158                 int offset = MCAM_SIZE - vptr->multicast_limit;
1159                 mac_get_cam_mask(regs, vptr->mCAMmask);
1160
1161                 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count; i++, mclist = mclist->next) {
1162                         mac_set_cam(regs, i + offset, mclist->dmi_addr);
1163                         vptr->mCAMmask[(offset + i) / 8] |= 1 << ((offset + i) & 7);
1164                 }
1165
1166                 mac_set_cam_mask(regs, vptr->mCAMmask);
1167                 rx_mode = RCR_AM | RCR_AB | RCR_AP;
1168         }
1169         if (dev->mtu > 1500)
1170                 rx_mode |= RCR_AL;
1171
1172         BYTE_REG_BITS_ON(rx_mode, &regs->RCR);
1173
1174 }
1175
1176 /*
1177  * MII access , media link mode setting functions
1178  */
1179
1180 /**
1181  *      mii_init        -       set up MII
1182  *      @vptr: velocity adapter
1183  *      @mii_status:  links tatus
1184  *
1185  *      Set up the PHY for the current link state.
1186  */
1187 static void mii_init(struct velocity_info *vptr, u32 mii_status)
1188 {
1189         u16 BMCR;
1190
1191         switch (PHYID_GET_PHY_ID(vptr->phy_id)) {
1192         case PHYID_CICADA_CS8201:
1193                 /*
1194                  *      Reset to hardware default
1195                  */
1196                 MII_REG_BITS_OFF((ANAR_ASMDIR | ANAR_PAUSE), MII_REG_ANAR, vptr->mac_regs);
1197                 /*
1198                  *      Turn on ECHODIS bit in NWay-forced full mode and turn it
1199                  *      off it in NWay-forced half mode for NWay-forced v.s.
1200                  *      legacy-forced issue.
1201                  */
1202                 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
1203                         MII_REG_BITS_ON(TCSR_ECHODIS, MII_REG_TCSR, vptr->mac_regs);
1204                 else
1205                         MII_REG_BITS_OFF(TCSR_ECHODIS, MII_REG_TCSR, vptr->mac_regs);
1206                 /*
1207                  *      Turn on Link/Activity LED enable bit for CIS8201
1208                  */
1209                 MII_REG_BITS_ON(PLED_LALBE, MII_REG_PLED, vptr->mac_regs);
1210                 break;
1211         case PHYID_VT3216_32BIT:
1212         case PHYID_VT3216_64BIT:
1213                 /*
1214                  *      Reset to hardware default
1215                  */
1216                 MII_REG_BITS_ON((ANAR_ASMDIR | ANAR_PAUSE), MII_REG_ANAR, vptr->mac_regs);
1217                 /*
1218                  *      Turn on ECHODIS bit in NWay-forced full mode and turn it
1219                  *      off it in NWay-forced half mode for NWay-forced v.s.
1220                  *      legacy-forced issue
1221                  */
1222                 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
1223                         MII_REG_BITS_ON(TCSR_ECHODIS, MII_REG_TCSR, vptr->mac_regs);
1224                 else
1225                         MII_REG_BITS_OFF(TCSR_ECHODIS, MII_REG_TCSR, vptr->mac_regs);
1226                 break;
1227
1228         case PHYID_MARVELL_1000:
1229         case PHYID_MARVELL_1000S:
1230                 /*
1231                  *      Assert CRS on Transmit
1232                  */
1233                 MII_REG_BITS_ON(PSCR_ACRSTX, MII_REG_PSCR, vptr->mac_regs);
1234                 /*
1235                  *      Reset to hardware default
1236                  */
1237                 MII_REG_BITS_ON((ANAR_ASMDIR | ANAR_PAUSE), MII_REG_ANAR, vptr->mac_regs);
1238                 break;
1239         default:
1240                 ;
1241         }
1242         velocity_mii_read(vptr->mac_regs, MII_REG_BMCR, &BMCR);
1243         if (BMCR & BMCR_ISO) {
1244                 BMCR &= ~BMCR_ISO;
1245                 velocity_mii_write(vptr->mac_regs, MII_REG_BMCR, BMCR);
1246         }
1247 }
1248
1249
1250 /**
1251  *      velocity_init_registers -       initialise MAC registers
1252  *      @vptr: velocity to init
1253  *      @type: type of initialisation (hot or cold)
1254  *
1255  *      Initialise the MAC on a reset or on first set up on the
1256  *      hardware.
1257  */
1258 static void velocity_init_registers(struct velocity_info *vptr,
1259                                     enum velocity_init_type type)
1260 {
1261         struct mac_regs __iomem *regs = vptr->mac_regs;
1262         int i, mii_status;
1263
1264         mac_wol_reset(regs);
1265
1266         switch (type) {
1267         case VELOCITY_INIT_RESET:
1268         case VELOCITY_INIT_WOL:
1269
1270                 netif_stop_queue(vptr->dev);
1271
1272                 /*
1273                  *      Reset RX to prevent RX pointer not on the 4X location
1274                  */
1275                 velocity_rx_reset(vptr);
1276                 mac_rx_queue_run(regs);
1277                 mac_rx_queue_wake(regs);
1278
1279                 mii_status = velocity_get_opt_media_mode(vptr);
1280                 if (velocity_set_media_mode(vptr, mii_status) != VELOCITY_LINK_CHANGE) {
1281                         velocity_print_link_status(vptr);
1282                         if (!(vptr->mii_status & VELOCITY_LINK_FAIL))
1283                                 netif_wake_queue(vptr->dev);
1284                 }
1285
1286                 enable_flow_control_ability(vptr);
1287
1288                 mac_clear_isr(regs);
1289                 writel(CR0_STOP, &regs->CR0Clr);
1290                 writel((CR0_DPOLL | CR0_TXON | CR0_RXON | CR0_STRT),
1291                                                         &regs->CR0Set);
1292
1293                 break;
1294
1295         case VELOCITY_INIT_COLD:
1296         default:
1297                 /*
1298                  *      Do reset
1299                  */
1300                 velocity_soft_reset(vptr);
1301                 mdelay(5);
1302
1303                 mac_eeprom_reload(regs);
1304                 for (i = 0; i < 6; i++)
1305                         writeb(vptr->dev->dev_addr[i], &(regs->PAR[i]));
1306
1307                 /*
1308                  *      clear Pre_ACPI bit.
1309                  */
1310                 BYTE_REG_BITS_OFF(CFGA_PACPI, &(regs->CFGA));
1311                 mac_set_rx_thresh(regs, vptr->options.rx_thresh);
1312                 mac_set_dma_length(regs, vptr->options.DMA_length);
1313
1314                 writeb(WOLCFG_SAM | WOLCFG_SAB, &regs->WOLCFGSet);
1315                 /*
1316                  *      Back off algorithm use original IEEE standard
1317                  */
1318                 BYTE_REG_BITS_SET(CFGB_OFSET, (CFGB_CRANDOM | CFGB_CAP | CFGB_MBA | CFGB_BAKOPT), &regs->CFGB);
1319
1320                 /*
1321                  *      Init CAM filter
1322                  */
1323                 velocity_init_cam_filter(vptr);
1324
1325                 /*
1326                  *      Set packet filter: Receive directed and broadcast address
1327                  */
1328                 velocity_set_multi(vptr->dev);
1329
1330                 /*
1331                  *      Enable MII auto-polling
1332                  */
1333                 enable_mii_autopoll(regs);
1334
1335                 vptr->int_mask = INT_MASK_DEF;
1336
1337                 writel(vptr->rx.pool_dma, &regs->RDBaseLo);
1338                 writew(vptr->options.numrx - 1, &regs->RDCSize);
1339                 mac_rx_queue_run(regs);
1340                 mac_rx_queue_wake(regs);
1341
1342                 writew(vptr->options.numtx - 1, &regs->TDCSize);
1343
1344                 for (i = 0; i < vptr->tx.numq; i++) {
1345                         writel(vptr->tx.pool_dma[i], &regs->TDBaseLo[i]);
1346                         mac_tx_queue_run(regs, i);
1347                 }
1348
1349                 init_flow_control_register(vptr);
1350
1351                 writel(CR0_STOP, &regs->CR0Clr);
1352                 writel((CR0_DPOLL | CR0_TXON | CR0_RXON | CR0_STRT), &regs->CR0Set);
1353
1354                 mii_status = velocity_get_opt_media_mode(vptr);
1355                 netif_stop_queue(vptr->dev);
1356
1357                 mii_init(vptr, mii_status);
1358
1359                 if (velocity_set_media_mode(vptr, mii_status) != VELOCITY_LINK_CHANGE) {
1360                         velocity_print_link_status(vptr);
1361                         if (!(vptr->mii_status & VELOCITY_LINK_FAIL))
1362                                 netif_wake_queue(vptr->dev);
1363                 }
1364
1365                 enable_flow_control_ability(vptr);
1366                 mac_hw_mibs_init(regs);
1367                 mac_write_int_mask(vptr->int_mask, regs);
1368                 mac_clear_isr(regs);
1369
1370         }
1371 }
1372
1373 static void velocity_give_many_rx_descs(struct velocity_info *vptr)
1374 {
1375         struct mac_regs __iomem *regs = vptr->mac_regs;
1376         int avail, dirty, unusable;
1377
1378         /*
1379          * RD number must be equal to 4X per hardware spec
1380          * (programming guide rev 1.20, p.13)
1381          */
1382         if (vptr->rx.filled < 4)
1383                 return;
1384
1385         wmb();
1386
1387         unusable = vptr->rx.filled & 0x0003;
1388         dirty = vptr->rx.dirty - unusable;
1389         for (avail = vptr->rx.filled & 0xfffc; avail; avail--) {
1390                 dirty = (dirty > 0) ? dirty - 1 : vptr->options.numrx - 1;
1391                 vptr->rx.ring[dirty].rdesc0.len |= OWNED_BY_NIC;
1392         }
1393
1394         writew(vptr->rx.filled & 0xfffc, &regs->RBRDU);
1395         vptr->rx.filled = unusable;
1396 }
1397
1398 /**
1399  *      velocity_init_dma_rings -       set up DMA rings
1400  *      @vptr: Velocity to set up
1401  *
1402  *      Allocate PCI mapped DMA rings for the receive and transmit layer
1403  *      to use.
1404  */
1405 static int velocity_init_dma_rings(struct velocity_info *vptr)
1406 {
1407         struct velocity_opt *opt = &vptr->options;
1408         const unsigned int rx_ring_size = opt->numrx * sizeof(struct rx_desc);
1409         const unsigned int tx_ring_size = opt->numtx * sizeof(struct tx_desc);
1410         struct pci_dev *pdev = vptr->pdev;
1411         dma_addr_t pool_dma;
1412         void *pool;
1413         unsigned int i;
1414
1415         /*
1416          * Allocate all RD/TD rings a single pool.
1417          *
1418          * pci_alloc_consistent() fulfills the requirement for 64 bytes
1419          * alignment
1420          */
1421         pool = pci_alloc_consistent(pdev, tx_ring_size * vptr->tx.numq +
1422                                     rx_ring_size, &pool_dma);
1423         if (!pool) {
1424                 dev_err(&pdev->dev, "%s : DMA memory allocation failed.\n",
1425                         vptr->dev->name);
1426                 return -ENOMEM;
1427         }
1428
1429         vptr->rx.ring = pool;
1430         vptr->rx.pool_dma = pool_dma;
1431
1432         pool += rx_ring_size;
1433         pool_dma += rx_ring_size;
1434
1435         for (i = 0; i < vptr->tx.numq; i++) {
1436                 vptr->tx.rings[i] = pool;
1437                 vptr->tx.pool_dma[i] = pool_dma;
1438                 pool += tx_ring_size;
1439                 pool_dma += tx_ring_size;
1440         }
1441
1442         return 0;
1443 }
1444
1445 static void velocity_set_rxbufsize(struct velocity_info *vptr, int mtu)
1446 {
1447         vptr->rx.buf_sz = (mtu <= ETH_DATA_LEN) ? PKT_BUF_SZ : mtu + 32;
1448 }
1449
1450 /**
1451  *      velocity_alloc_rx_buf   -       allocate aligned receive buffer
1452  *      @vptr: velocity
1453  *      @idx: ring index
1454  *
1455  *      Allocate a new full sized buffer for the reception of a frame and
1456  *      map it into PCI space for the hardware to use. The hardware
1457  *      requires *64* byte alignment of the buffer which makes life
1458  *      less fun than would be ideal.
1459  */
1460 static int velocity_alloc_rx_buf(struct velocity_info *vptr, int idx)
1461 {
1462         struct rx_desc *rd = &(vptr->rx.ring[idx]);
1463         struct velocity_rd_info *rd_info = &(vptr->rx.info[idx]);
1464
1465         rd_info->skb = dev_alloc_skb(vptr->rx.buf_sz + 64);
1466         if (rd_info->skb == NULL)
1467                 return -ENOMEM;
1468
1469         /*
1470          *      Do the gymnastics to get the buffer head for data at
1471          *      64byte alignment.
1472          */
1473         skb_reserve(rd_info->skb,
1474                         64 - ((unsigned long) rd_info->skb->data & 63));
1475         rd_info->skb_dma = pci_map_single(vptr->pdev, rd_info->skb->data,
1476                                         vptr->rx.buf_sz, PCI_DMA_FROMDEVICE);
1477
1478         /*
1479          *      Fill in the descriptor to match
1480          */
1481
1482         *((u32 *) & (rd->rdesc0)) = 0;
1483         rd->size = cpu_to_le16(vptr->rx.buf_sz) | RX_INTEN;
1484         rd->pa_low = cpu_to_le32(rd_info->skb_dma);
1485         rd->pa_high = 0;
1486         return 0;
1487 }
1488
1489
1490 static int velocity_rx_refill(struct velocity_info *vptr)
1491 {
1492         int dirty = vptr->rx.dirty, done = 0;
1493
1494         do {
1495                 struct rx_desc *rd = vptr->rx.ring + dirty;
1496
1497                 /* Fine for an all zero Rx desc at init time as well */
1498                 if (rd->rdesc0.len & OWNED_BY_NIC)
1499                         break;
1500
1501                 if (!vptr->rx.info[dirty].skb) {
1502                         if (velocity_alloc_rx_buf(vptr, dirty) < 0)
1503                                 break;
1504                 }
1505                 done++;
1506                 dirty = (dirty < vptr->options.numrx - 1) ? dirty + 1 : 0;
1507         } while (dirty != vptr->rx.curr);
1508
1509         if (done) {
1510                 vptr->rx.dirty = dirty;
1511                 vptr->rx.filled += done;
1512         }
1513
1514         return done;
1515 }
1516
1517 /**
1518  *      velocity_free_rd_ring   -       free receive ring
1519  *      @vptr: velocity to clean up
1520  *
1521  *      Free the receive buffers for each ring slot and any
1522  *      attached socket buffers that need to go away.
1523  */
1524 static void velocity_free_rd_ring(struct velocity_info *vptr)
1525 {
1526         int i;
1527
1528         if (vptr->rx.info == NULL)
1529                 return;
1530
1531         for (i = 0; i < vptr->options.numrx; i++) {
1532                 struct velocity_rd_info *rd_info = &(vptr->rx.info[i]);
1533                 struct rx_desc *rd = vptr->rx.ring + i;
1534
1535                 memset(rd, 0, sizeof(*rd));
1536
1537                 if (!rd_info->skb)
1538                         continue;
1539                 pci_unmap_single(vptr->pdev, rd_info->skb_dma, vptr->rx.buf_sz,
1540                                  PCI_DMA_FROMDEVICE);
1541                 rd_info->skb_dma = 0;
1542
1543                 dev_kfree_skb(rd_info->skb);
1544                 rd_info->skb = NULL;
1545         }
1546
1547         kfree(vptr->rx.info);
1548         vptr->rx.info = NULL;
1549 }
1550
1551
1552
1553 /**
1554  *      velocity_init_rd_ring   -       set up receive ring
1555  *      @vptr: velocity to configure
1556  *
1557  *      Allocate and set up the receive buffers for each ring slot and
1558  *      assign them to the network adapter.
1559  */
1560 static int velocity_init_rd_ring(struct velocity_info *vptr)
1561 {
1562         int ret = -ENOMEM;
1563
1564         vptr->rx.info = kcalloc(vptr->options.numrx,
1565                                 sizeof(struct velocity_rd_info), GFP_KERNEL);
1566         if (!vptr->rx.info)
1567                 goto out;
1568
1569         velocity_init_rx_ring_indexes(vptr);
1570
1571         if (velocity_rx_refill(vptr) != vptr->options.numrx) {
1572                 VELOCITY_PRT(MSG_LEVEL_ERR, KERN_ERR
1573                         "%s: failed to allocate RX buffer.\n", vptr->dev->name);
1574                 velocity_free_rd_ring(vptr);
1575                 goto out;
1576         }
1577
1578         ret = 0;
1579 out:
1580         return ret;
1581 }
1582
1583 /**
1584  *      velocity_init_td_ring   -       set up transmit ring
1585  *      @vptr:  velocity
1586  *
1587  *      Set up the transmit ring and chain the ring pointers together.
1588  *      Returns zero on success or a negative posix errno code for
1589  *      failure.
1590  */
1591 static int velocity_init_td_ring(struct velocity_info *vptr)
1592 {
1593         dma_addr_t curr;
1594         int j;
1595
1596         /* Init the TD ring entries */
1597         for (j = 0; j < vptr->tx.numq; j++) {
1598                 curr = vptr->tx.pool_dma[j];
1599
1600                 vptr->tx.infos[j] = kcalloc(vptr->options.numtx,
1601                                             sizeof(struct velocity_td_info),
1602                                             GFP_KERNEL);
1603                 if (!vptr->tx.infos[j]) {
1604                         while (--j >= 0)
1605                                 kfree(vptr->tx.infos[j]);
1606                         return -ENOMEM;
1607                 }
1608
1609                 vptr->tx.tail[j] = vptr->tx.curr[j] = vptr->tx.used[j] = 0;
1610         }
1611         return 0;
1612 }
1613
1614 /**
1615  *      velocity_free_dma_rings -       free PCI ring pointers
1616  *      @vptr: Velocity to free from
1617  *
1618  *      Clean up the PCI ring buffers allocated to this velocity.
1619  */
1620 static void velocity_free_dma_rings(struct velocity_info *vptr)
1621 {
1622         const int size = vptr->options.numrx * sizeof(struct rx_desc) +
1623                 vptr->options.numtx * sizeof(struct tx_desc) * vptr->tx.numq;
1624
1625         pci_free_consistent(vptr->pdev, size, vptr->rx.ring, vptr->rx.pool_dma);
1626 }
1627
1628
1629 static int velocity_init_rings(struct velocity_info *vptr, int mtu)
1630 {
1631         int ret;
1632
1633         velocity_set_rxbufsize(vptr, mtu);
1634
1635         ret = velocity_init_dma_rings(vptr);
1636         if (ret < 0)
1637                 goto out;
1638
1639         ret = velocity_init_rd_ring(vptr);
1640         if (ret < 0)
1641                 goto err_free_dma_rings_0;
1642
1643         ret = velocity_init_td_ring(vptr);
1644         if (ret < 0)
1645                 goto err_free_rd_ring_1;
1646 out:
1647         return ret;
1648
1649 err_free_rd_ring_1:
1650         velocity_free_rd_ring(vptr);
1651 err_free_dma_rings_0:
1652         velocity_free_dma_rings(vptr);
1653         goto out;
1654 }
1655
1656 /**
1657  *      velocity_free_tx_buf    -       free transmit buffer
1658  *      @vptr: velocity
1659  *      @tdinfo: buffer
1660  *
1661  *      Release an transmit buffer. If the buffer was preallocated then
1662  *      recycle it, if not then unmap the buffer.
1663  */
1664 static void velocity_free_tx_buf(struct velocity_info *vptr, struct velocity_td_info *tdinfo)
1665 {
1666         struct sk_buff *skb = tdinfo->skb;
1667         int i;
1668         int pktlen;
1669
1670         /*
1671          *      Don't unmap the pre-allocated tx_bufs
1672          */
1673         if (tdinfo->skb_dma) {
1674
1675                 pktlen = max_t(unsigned int, skb->len, ETH_ZLEN);
1676                 for (i = 0; i < tdinfo->nskb_dma; i++) {
1677                         pci_unmap_single(vptr->pdev, tdinfo->skb_dma[i], pktlen, PCI_DMA_TODEVICE);
1678                         tdinfo->skb_dma[i] = 0;
1679                 }
1680         }
1681         dev_kfree_skb_irq(skb);
1682         tdinfo->skb = NULL;
1683 }
1684
1685
1686 /*
1687  *      FIXME: could we merge this with velocity_free_tx_buf ?
1688  */
1689 static void velocity_free_td_ring_entry(struct velocity_info *vptr,
1690                                                          int q, int n)
1691 {
1692         struct velocity_td_info *td_info = &(vptr->tx.infos[q][n]);
1693         int i;
1694
1695         if (td_info == NULL)
1696                 return;
1697
1698         if (td_info->skb) {
1699                 for (i = 0; i < td_info->nskb_dma; i++) {
1700                         if (td_info->skb_dma[i]) {
1701                                 pci_unmap_single(vptr->pdev, td_info->skb_dma[i],
1702                                         td_info->skb->len, PCI_DMA_TODEVICE);
1703                                 td_info->skb_dma[i] = 0;
1704                         }
1705                 }
1706                 dev_kfree_skb(td_info->skb);
1707                 td_info->skb = NULL;
1708         }
1709 }
1710
1711 /**
1712  *      velocity_free_td_ring   -       free td ring
1713  *      @vptr: velocity
1714  *
1715  *      Free up the transmit ring for this particular velocity adapter.
1716  *      We free the ring contents but not the ring itself.
1717  */
1718 static void velocity_free_td_ring(struct velocity_info *vptr)
1719 {
1720         int i, j;
1721
1722         for (j = 0; j < vptr->tx.numq; j++) {
1723                 if (vptr->tx.infos[j] == NULL)
1724                         continue;
1725                 for (i = 0; i < vptr->options.numtx; i++)
1726                         velocity_free_td_ring_entry(vptr, j, i);
1727
1728                 kfree(vptr->tx.infos[j]);
1729                 vptr->tx.infos[j] = NULL;
1730         }
1731 }
1732
1733
1734 static void velocity_free_rings(struct velocity_info *vptr)
1735 {
1736         velocity_free_td_ring(vptr);
1737         velocity_free_rd_ring(vptr);
1738         velocity_free_dma_rings(vptr);
1739 }
1740
1741 /**
1742  *      velocity_error  -       handle error from controller
1743  *      @vptr: velocity
1744  *      @status: card status
1745  *
1746  *      Process an error report from the hardware and attempt to recover
1747  *      the card itself. At the moment we cannot recover from some
1748  *      theoretically impossible errors but this could be fixed using
1749  *      the pci_device_failed logic to bounce the hardware
1750  *
1751  */
1752 static void velocity_error(struct velocity_info *vptr, int status)
1753 {
1754
1755         if (status & ISR_TXSTLI) {
1756                 struct mac_regs __iomem *regs = vptr->mac_regs;
1757
1758                 printk(KERN_ERR "TD structure error TDindex=%hx\n", readw(&regs->TDIdx[0]));
1759                 BYTE_REG_BITS_ON(TXESR_TDSTR, &regs->TXESR);
1760                 writew(TRDCSR_RUN, &regs->TDCSRClr);
1761                 netif_stop_queue(vptr->dev);
1762
1763                 /* FIXME: port over the pci_device_failed code and use it
1764                    here */
1765         }
1766
1767         if (status & ISR_SRCI) {
1768                 struct mac_regs __iomem *regs = vptr->mac_regs;
1769                 int linked;
1770
1771                 if (vptr->options.spd_dpx == SPD_DPX_AUTO) {
1772                         vptr->mii_status = check_connection_type(regs);
1773
1774                         /*
1775                          *      If it is a 3119, disable frame bursting in
1776                          *      halfduplex mode and enable it in fullduplex
1777                          *       mode
1778                          */
1779                         if (vptr->rev_id < REV_ID_VT3216_A0) {
1780                                 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
1781                                         BYTE_REG_BITS_ON(TCR_TB2BDIS, &regs->TCR);
1782                                 else
1783                                         BYTE_REG_BITS_OFF(TCR_TB2BDIS, &regs->TCR);
1784                         }
1785                         /*
1786                          *      Only enable CD heart beat counter in 10HD mode
1787                          */
1788                         if (!(vptr->mii_status & VELOCITY_DUPLEX_FULL) && (vptr->mii_status & VELOCITY_SPEED_10))
1789                                 BYTE_REG_BITS_OFF(TESTCFG_HBDIS, &regs->TESTCFG);
1790                         else
1791                                 BYTE_REG_BITS_ON(TESTCFG_HBDIS, &regs->TESTCFG);
1792                 }
1793                 /*
1794                  *      Get link status from PHYSR0
1795                  */
1796                 linked = readb(&regs->PHYSR0) & PHYSR0_LINKGD;
1797
1798                 if (linked) {
1799                         vptr->mii_status &= ~VELOCITY_LINK_FAIL;
1800                         netif_carrier_on(vptr->dev);
1801                 } else {
1802                         vptr->mii_status |= VELOCITY_LINK_FAIL;
1803                         netif_carrier_off(vptr->dev);
1804                 }
1805
1806                 velocity_print_link_status(vptr);
1807                 enable_flow_control_ability(vptr);
1808
1809                 /*
1810                  *      Re-enable auto-polling because SRCI will disable
1811                  *      auto-polling
1812                  */
1813
1814                 enable_mii_autopoll(regs);
1815
1816                 if (vptr->mii_status & VELOCITY_LINK_FAIL)
1817                         netif_stop_queue(vptr->dev);
1818                 else
1819                         netif_wake_queue(vptr->dev);
1820
1821         };
1822         if (status & ISR_MIBFI)
1823                 velocity_update_hw_mibs(vptr);
1824         if (status & ISR_LSTEI)
1825                 mac_rx_queue_wake(vptr->mac_regs);
1826 }
1827
1828 /**
1829  *      tx_srv          -       transmit interrupt service
1830  *      @vptr; Velocity
1831  *      @status:
1832  *
1833  *      Scan the queues looking for transmitted packets that
1834  *      we can complete and clean up. Update any statistics as
1835  *      necessary/
1836  */
1837 static int velocity_tx_srv(struct velocity_info *vptr, u32 status)
1838 {
1839         struct tx_desc *td;
1840         int qnum;
1841         int full = 0;
1842         int idx;
1843         int works = 0;
1844         struct velocity_td_info *tdinfo;
1845         struct net_device_stats *stats = &vptr->dev->stats;
1846
1847         for (qnum = 0; qnum < vptr->tx.numq; qnum++) {
1848                 for (idx = vptr->tx.tail[qnum]; vptr->tx.used[qnum] > 0;
1849                         idx = (idx + 1) % vptr->options.numtx) {
1850
1851                         /*
1852                          *      Get Tx Descriptor
1853                          */
1854                         td = &(vptr->tx.rings[qnum][idx]);
1855                         tdinfo = &(vptr->tx.infos[qnum][idx]);
1856
1857                         if (td->tdesc0.len & OWNED_BY_NIC)
1858                                 break;
1859
1860                         if ((works++ > 15))
1861                                 break;
1862
1863                         if (td->tdesc0.TSR & TSR0_TERR) {
1864                                 stats->tx_errors++;
1865                                 stats->tx_dropped++;
1866                                 if (td->tdesc0.TSR & TSR0_CDH)
1867                                         stats->tx_heartbeat_errors++;
1868                                 if (td->tdesc0.TSR & TSR0_CRS)
1869                                         stats->tx_carrier_errors++;
1870                                 if (td->tdesc0.TSR & TSR0_ABT)
1871                                         stats->tx_aborted_errors++;
1872                                 if (td->tdesc0.TSR & TSR0_OWC)
1873                                         stats->tx_window_errors++;
1874                         } else {
1875                                 stats->tx_packets++;
1876                                 stats->tx_bytes += tdinfo->skb->len;
1877                         }
1878                         velocity_free_tx_buf(vptr, tdinfo);
1879                         vptr->tx.used[qnum]--;
1880                 }
1881                 vptr->tx.tail[qnum] = idx;
1882
1883                 if (AVAIL_TD(vptr, qnum) < 1)
1884                         full = 1;
1885         }
1886         /*
1887          *      Look to see if we should kick the transmit network
1888          *      layer for more work.
1889          */
1890         if (netif_queue_stopped(vptr->dev) && (full == 0)
1891             && (!(vptr->mii_status & VELOCITY_LINK_FAIL))) {
1892                 netif_wake_queue(vptr->dev);
1893         }
1894         return works;
1895 }
1896
1897 /**
1898  *      velocity_rx_csum        -       checksum process
1899  *      @rd: receive packet descriptor
1900  *      @skb: network layer packet buffer
1901  *
1902  *      Process the status bits for the received packet and determine
1903  *      if the checksum was computed and verified by the hardware
1904  */
1905 static inline void velocity_rx_csum(struct rx_desc *rd, struct sk_buff *skb)
1906 {
1907         skb->ip_summed = CHECKSUM_NONE;
1908
1909         if (rd->rdesc1.CSM & CSM_IPKT) {
1910                 if (rd->rdesc1.CSM & CSM_IPOK) {
1911                         if ((rd->rdesc1.CSM & CSM_TCPKT) ||
1912                                         (rd->rdesc1.CSM & CSM_UDPKT)) {
1913                                 if (!(rd->rdesc1.CSM & CSM_TUPOK))
1914                                         return;
1915                         }
1916                         skb->ip_summed = CHECKSUM_UNNECESSARY;
1917                 }
1918         }
1919 }
1920
1921 /**
1922  *      velocity_rx_copy        -       in place Rx copy for small packets
1923  *      @rx_skb: network layer packet buffer candidate
1924  *      @pkt_size: received data size
1925  *      @rd: receive packet descriptor
1926  *      @dev: network device
1927  *
1928  *      Replace the current skb that is scheduled for Rx processing by a
1929  *      shorter, immediatly allocated skb, if the received packet is small
1930  *      enough. This function returns a negative value if the received
1931  *      packet is too big or if memory is exhausted.
1932  */
1933 static int velocity_rx_copy(struct sk_buff **rx_skb, int pkt_size,
1934                             struct velocity_info *vptr)
1935 {
1936         int ret = -1;
1937         if (pkt_size < rx_copybreak) {
1938                 struct sk_buff *new_skb;
1939
1940                 new_skb = netdev_alloc_skb_ip_align(vptr->dev, pkt_size);
1941                 if (new_skb) {
1942                         new_skb->ip_summed = rx_skb[0]->ip_summed;
1943                         skb_copy_from_linear_data(*rx_skb, new_skb->data, pkt_size);
1944                         *rx_skb = new_skb;
1945                         ret = 0;
1946                 }
1947
1948         }
1949         return ret;
1950 }
1951
1952 /**
1953  *      velocity_iph_realign    -       IP header alignment
1954  *      @vptr: velocity we are handling
1955  *      @skb: network layer packet buffer
1956  *      @pkt_size: received data size
1957  *
1958  *      Align IP header on a 2 bytes boundary. This behavior can be
1959  *      configured by the user.
1960  */
1961 static inline void velocity_iph_realign(struct velocity_info *vptr,
1962                                         struct sk_buff *skb, int pkt_size)
1963 {
1964         if (vptr->flags & VELOCITY_FLAGS_IP_ALIGN) {
1965                 memmove(skb->data + 2, skb->data, pkt_size);
1966                 skb_reserve(skb, 2);
1967         }
1968 }
1969
1970
1971 /**
1972  *      velocity_receive_frame  -       received packet processor
1973  *      @vptr: velocity we are handling
1974  *      @idx: ring index
1975  *
1976  *      A packet has arrived. We process the packet and if appropriate
1977  *      pass the frame up the network stack
1978  */
1979 static int velocity_receive_frame(struct velocity_info *vptr, int idx)
1980 {
1981         void (*pci_action)(struct pci_dev *, dma_addr_t, size_t, int);
1982         struct net_device_stats *stats = &vptr->dev->stats;
1983         struct velocity_rd_info *rd_info = &(vptr->rx.info[idx]);
1984         struct rx_desc *rd = &(vptr->rx.ring[idx]);
1985         int pkt_len = le16_to_cpu(rd->rdesc0.len) & 0x3fff;
1986         struct sk_buff *skb;
1987
1988         if (rd->rdesc0.RSR & (RSR_STP | RSR_EDP)) {
1989                 VELOCITY_PRT(MSG_LEVEL_VERBOSE, KERN_ERR " %s : the received frame span multple RDs.\n", vptr->dev->name);
1990                 stats->rx_length_errors++;
1991                 return -EINVAL;
1992         }
1993
1994         if (rd->rdesc0.RSR & RSR_MAR)
1995                 stats->multicast++;
1996
1997         skb = rd_info->skb;
1998
1999         pci_dma_sync_single_for_cpu(vptr->pdev, rd_info->skb_dma,
2000                                     vptr->rx.buf_sz, PCI_DMA_FROMDEVICE);
2001
2002         /*
2003          *      Drop frame not meeting IEEE 802.3
2004          */
2005
2006         if (vptr->flags & VELOCITY_FLAGS_VAL_PKT_LEN) {
2007                 if (rd->rdesc0.RSR & RSR_RL) {
2008                         stats->rx_length_errors++;
2009                         return -EINVAL;
2010                 }
2011         }
2012
2013         pci_action = pci_dma_sync_single_for_device;
2014
2015         velocity_rx_csum(rd, skb);
2016
2017         if (velocity_rx_copy(&skb, pkt_len, vptr) < 0) {
2018                 velocity_iph_realign(vptr, skb, pkt_len);
2019                 pci_action = pci_unmap_single;
2020                 rd_info->skb = NULL;
2021         }
2022
2023         pci_action(vptr->pdev, rd_info->skb_dma, vptr->rx.buf_sz,
2024                    PCI_DMA_FROMDEVICE);
2025
2026         skb_put(skb, pkt_len - 4);
2027         skb->protocol = eth_type_trans(skb, vptr->dev);
2028
2029         if (vptr->vlgrp && (rd->rdesc0.RSR & RSR_DETAG)) {
2030                 vlan_hwaccel_rx(skb, vptr->vlgrp,
2031                                 swab16(le16_to_cpu(rd->rdesc1.PQTAG)));
2032         } else
2033                 netif_rx(skb);
2034
2035         stats->rx_bytes += pkt_len;
2036
2037         return 0;
2038 }
2039
2040
2041 /**
2042  *      velocity_rx_srv         -       service RX interrupt
2043  *      @vptr: velocity
2044  *      @status: adapter status (unused)
2045  *
2046  *      Walk the receive ring of the velocity adapter and remove
2047  *      any received packets from the receive queue. Hand the ring
2048  *      slots back to the adapter for reuse.
2049  */
2050 static int velocity_rx_srv(struct velocity_info *vptr, int status)
2051 {
2052         struct net_device_stats *stats = &vptr->dev->stats;
2053         int rd_curr = vptr->rx.curr;
2054         int works = 0;
2055
2056         do {
2057                 struct rx_desc *rd = vptr->rx.ring + rd_curr;
2058
2059                 if (!vptr->rx.info[rd_curr].skb)
2060                         break;
2061
2062                 if (rd->rdesc0.len & OWNED_BY_NIC)
2063                         break;
2064
2065                 rmb();
2066
2067                 /*
2068                  *      Don't drop CE or RL error frame although RXOK is off
2069                  */
2070                 if (rd->rdesc0.RSR & (RSR_RXOK | RSR_CE | RSR_RL)) {
2071                         if (velocity_receive_frame(vptr, rd_curr) < 0)
2072                                 stats->rx_dropped++;
2073                 } else {
2074                         if (rd->rdesc0.RSR & RSR_CRC)
2075                                 stats->rx_crc_errors++;
2076                         if (rd->rdesc0.RSR & RSR_FAE)
2077                                 stats->rx_frame_errors++;
2078
2079                         stats->rx_dropped++;
2080                 }
2081
2082                 rd->size |= RX_INTEN;
2083
2084                 rd_curr++;
2085                 if (rd_curr >= vptr->options.numrx)
2086                         rd_curr = 0;
2087         } while (++works <= 15);
2088
2089         vptr->rx.curr = rd_curr;
2090
2091         if ((works > 0) && (velocity_rx_refill(vptr) > 0))
2092                 velocity_give_many_rx_descs(vptr);
2093
2094         VAR_USED(stats);
2095         return works;
2096 }
2097
2098
2099 /**
2100  *      velocity_intr           -       interrupt callback
2101  *      @irq: interrupt number
2102  *      @dev_instance: interrupting device
2103  *
2104  *      Called whenever an interrupt is generated by the velocity
2105  *      adapter IRQ line. We may not be the source of the interrupt
2106  *      and need to identify initially if we are, and if not exit as
2107  *      efficiently as possible.
2108  */
2109 static irqreturn_t velocity_intr(int irq, void *dev_instance)
2110 {
2111         struct net_device *dev = dev_instance;
2112         struct velocity_info *vptr = netdev_priv(dev);
2113         u32 isr_status;
2114         int max_count = 0;
2115
2116
2117         spin_lock(&vptr->lock);
2118         isr_status = mac_read_isr(vptr->mac_regs);
2119
2120         /* Not us ? */
2121         if (isr_status == 0) {
2122                 spin_unlock(&vptr->lock);
2123                 return IRQ_NONE;
2124         }
2125
2126         mac_disable_int(vptr->mac_regs);
2127
2128         /*
2129          *      Keep processing the ISR until we have completed
2130          *      processing and the isr_status becomes zero
2131          */
2132
2133         while (isr_status != 0) {
2134                 mac_write_isr(vptr->mac_regs, isr_status);
2135                 if (isr_status & (~(ISR_PRXI | ISR_PPRXI | ISR_PTXI | ISR_PPTXI)))
2136                         velocity_error(vptr, isr_status);
2137                 if (isr_status & (ISR_PRXI | ISR_PPRXI))
2138                         max_count += velocity_rx_srv(vptr, isr_status);
2139                 if (isr_status & (ISR_PTXI | ISR_PPTXI))
2140                         max_count += velocity_tx_srv(vptr, isr_status);
2141                 isr_status = mac_read_isr(vptr->mac_regs);
2142                 if (max_count > vptr->options.int_works) {
2143                         printk(KERN_WARNING "%s: excessive work at interrupt.\n",
2144                                 dev->name);
2145                         max_count = 0;
2146                 }
2147         }
2148         spin_unlock(&vptr->lock);
2149         mac_enable_int(vptr->mac_regs);
2150         return IRQ_HANDLED;
2151
2152 }
2153
2154 /**
2155  *      velocity_open           -       interface activation callback
2156  *      @dev: network layer device to open
2157  *
2158  *      Called when the network layer brings the interface up. Returns
2159  *      a negative posix error code on failure, or zero on success.
2160  *
2161  *      All the ring allocation and set up is done on open for this
2162  *      adapter to minimise memory usage when inactive
2163  */
2164 static int velocity_open(struct net_device *dev)
2165 {
2166         struct velocity_info *vptr = netdev_priv(dev);
2167         int ret;
2168
2169         ret = velocity_init_rings(vptr, dev->mtu);
2170         if (ret < 0)
2171                 goto out;
2172
2173         /* Ensure chip is running */
2174         pci_set_power_state(vptr->pdev, PCI_D0);
2175
2176         velocity_give_many_rx_descs(vptr);
2177
2178         velocity_init_registers(vptr, VELOCITY_INIT_COLD);
2179
2180         ret = request_irq(vptr->pdev->irq, velocity_intr, IRQF_SHARED,
2181                           dev->name, dev);
2182         if (ret < 0) {
2183                 /* Power down the chip */
2184                 pci_set_power_state(vptr->pdev, PCI_D3hot);
2185                 velocity_free_rings(vptr);
2186                 goto out;
2187         }
2188
2189         mac_enable_int(vptr->mac_regs);
2190         netif_start_queue(dev);
2191         vptr->flags |= VELOCITY_FLAGS_OPENED;
2192 out:
2193         return ret;
2194 }
2195
2196 /**
2197  *      velocity_shutdown       -       shut down the chip
2198  *      @vptr: velocity to deactivate
2199  *
2200  *      Shuts down the internal operations of the velocity and
2201  *      disables interrupts, autopolling, transmit and receive
2202  */
2203 static void velocity_shutdown(struct velocity_info *vptr)
2204 {
2205         struct mac_regs __iomem *regs = vptr->mac_regs;
2206         mac_disable_int(regs);
2207         writel(CR0_STOP, &regs->CR0Set);
2208         writew(0xFFFF, &regs->TDCSRClr);
2209         writeb(0xFF, &regs->RDCSRClr);
2210         safe_disable_mii_autopoll(regs);
2211         mac_clear_isr(regs);
2212 }
2213
2214 /**
2215  *      velocity_change_mtu     -       MTU change callback
2216  *      @dev: network device
2217  *      @new_mtu: desired MTU
2218  *
2219  *      Handle requests from the networking layer for MTU change on
2220  *      this interface. It gets called on a change by the network layer.
2221  *      Return zero for success or negative posix error code.
2222  */
2223 static int velocity_change_mtu(struct net_device *dev, int new_mtu)
2224 {
2225         struct velocity_info *vptr = netdev_priv(dev);
2226         int ret = 0;
2227
2228         if ((new_mtu < VELOCITY_MIN_MTU) || new_mtu > (VELOCITY_MAX_MTU)) {
2229                 VELOCITY_PRT(MSG_LEVEL_ERR, KERN_NOTICE "%s: Invalid MTU.\n",
2230                                 vptr->dev->name);
2231                 ret = -EINVAL;
2232                 goto out_0;
2233         }
2234
2235         if (!netif_running(dev)) {
2236                 dev->mtu = new_mtu;
2237                 goto out_0;
2238         }
2239
2240         if (dev->mtu != new_mtu) {
2241                 struct velocity_info *tmp_vptr;
2242                 unsigned long flags;
2243                 struct rx_info rx;
2244                 struct tx_info tx;
2245
2246                 tmp_vptr = kzalloc(sizeof(*tmp_vptr), GFP_KERNEL);
2247                 if (!tmp_vptr) {
2248                         ret = -ENOMEM;
2249                         goto out_0;
2250                 }
2251
2252                 tmp_vptr->dev = dev;
2253                 tmp_vptr->pdev = vptr->pdev;
2254                 tmp_vptr->options = vptr->options;
2255                 tmp_vptr->tx.numq = vptr->tx.numq;
2256
2257                 ret = velocity_init_rings(tmp_vptr, new_mtu);
2258                 if (ret < 0)
2259                         goto out_free_tmp_vptr_1;
2260
2261                 spin_lock_irqsave(&vptr->lock, flags);
2262
2263                 netif_stop_queue(dev);
2264                 velocity_shutdown(vptr);
2265
2266                 rx = vptr->rx;
2267                 tx = vptr->tx;
2268
2269                 vptr->rx = tmp_vptr->rx;
2270                 vptr->tx = tmp_vptr->tx;
2271
2272                 tmp_vptr->rx = rx;
2273                 tmp_vptr->tx = tx;
2274
2275                 dev->mtu = new_mtu;
2276
2277                 velocity_give_many_rx_descs(vptr);
2278
2279                 velocity_init_registers(vptr, VELOCITY_INIT_COLD);
2280
2281                 mac_enable_int(vptr->mac_regs);
2282                 netif_start_queue(dev);
2283
2284                 spin_unlock_irqrestore(&vptr->lock, flags);
2285
2286                 velocity_free_rings(tmp_vptr);
2287
2288 out_free_tmp_vptr_1:
2289                 kfree(tmp_vptr);
2290         }
2291 out_0:
2292         return ret;
2293 }
2294
2295 /**
2296  *      velocity_mii_ioctl              -       MII ioctl handler
2297  *      @dev: network device
2298  *      @ifr: the ifreq block for the ioctl
2299  *      @cmd: the command
2300  *
2301  *      Process MII requests made via ioctl from the network layer. These
2302  *      are used by tools like kudzu to interrogate the link state of the
2303  *      hardware
2304  */
2305 static int velocity_mii_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2306 {
2307         struct velocity_info *vptr = netdev_priv(dev);
2308         struct mac_regs __iomem *regs = vptr->mac_regs;
2309         unsigned long flags;
2310         struct mii_ioctl_data *miidata = if_mii(ifr);
2311         int err;
2312
2313         switch (cmd) {
2314         case SIOCGMIIPHY:
2315                 miidata->phy_id = readb(&regs->MIIADR) & 0x1f;
2316                 break;
2317         case SIOCGMIIREG:
2318                 if (velocity_mii_read(vptr->mac_regs, miidata->reg_num & 0x1f, &(miidata->val_out)) < 0)
2319                         return -ETIMEDOUT;
2320                 break;
2321         case SIOCSMIIREG:
2322                 spin_lock_irqsave(&vptr->lock, flags);
2323                 err = velocity_mii_write(vptr->mac_regs, miidata->reg_num & 0x1f, miidata->val_in);
2324                 spin_unlock_irqrestore(&vptr->lock, flags);
2325                 check_connection_type(vptr->mac_regs);
2326                 if (err)
2327                         return err;
2328                 break;
2329         default:
2330                 return -EOPNOTSUPP;
2331         }
2332         return 0;
2333 }
2334
2335
2336 /**
2337  *      velocity_ioctl          -       ioctl entry point
2338  *      @dev: network device
2339  *      @rq: interface request ioctl
2340  *      @cmd: command code
2341  *
2342  *      Called when the user issues an ioctl request to the network
2343  *      device in question. The velocity interface supports MII.
2344  */
2345 static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2346 {
2347         struct velocity_info *vptr = netdev_priv(dev);
2348         int ret;
2349
2350         /* If we are asked for information and the device is power
2351            saving then we need to bring the device back up to talk to it */
2352
2353         if (!netif_running(dev))
2354                 pci_set_power_state(vptr->pdev, PCI_D0);
2355
2356         switch (cmd) {
2357         case SIOCGMIIPHY:       /* Get address of MII PHY in use. */
2358         case SIOCGMIIREG:       /* Read MII PHY register. */
2359         case SIOCSMIIREG:       /* Write to MII PHY register. */
2360                 ret = velocity_mii_ioctl(dev, rq, cmd);
2361                 break;
2362
2363         default:
2364                 ret = -EOPNOTSUPP;
2365         }
2366         if (!netif_running(dev))
2367                 pci_set_power_state(vptr->pdev, PCI_D3hot);
2368
2369
2370         return ret;
2371 }
2372
2373 /**
2374  *      velocity_get_status     -       statistics callback
2375  *      @dev: network device
2376  *
2377  *      Callback from the network layer to allow driver statistics
2378  *      to be resynchronized with hardware collected state. In the
2379  *      case of the velocity we need to pull the MIB counters from
2380  *      the hardware into the counters before letting the network
2381  *      layer display them.
2382  */
2383 static struct net_device_stats *velocity_get_stats(struct net_device *dev)
2384 {
2385         struct velocity_info *vptr = netdev_priv(dev);
2386
2387         /* If the hardware is down, don't touch MII */
2388         if (!netif_running(dev))
2389                 return &dev->stats;
2390
2391         spin_lock_irq(&vptr->lock);
2392         velocity_update_hw_mibs(vptr);
2393         spin_unlock_irq(&vptr->lock);
2394
2395         dev->stats.rx_packets = vptr->mib_counter[HW_MIB_ifRxAllPkts];
2396         dev->stats.rx_errors = vptr->mib_counter[HW_MIB_ifRxErrorPkts];
2397         dev->stats.rx_length_errors = vptr->mib_counter[HW_MIB_ifInRangeLengthErrors];
2398
2399 //  unsigned long   rx_dropped;     /* no space in linux buffers    */
2400         dev->stats.collisions = vptr->mib_counter[HW_MIB_ifTxEtherCollisions];
2401         /* detailed rx_errors: */
2402 //  unsigned long   rx_length_errors;
2403 //  unsigned long   rx_over_errors;     /* receiver ring buff overflow  */
2404         dev->stats.rx_crc_errors = vptr->mib_counter[HW_MIB_ifRxPktCRCE];
2405 //  unsigned long   rx_frame_errors;    /* recv'd frame alignment error */
2406 //  unsigned long   rx_fifo_errors;     /* recv'r fifo overrun      */
2407 //  unsigned long   rx_missed_errors;   /* receiver missed packet   */
2408
2409         /* detailed tx_errors */
2410 //  unsigned long   tx_fifo_errors;
2411
2412         return &dev->stats;
2413 }
2414
2415 /**
2416  *      velocity_close          -       close adapter callback
2417  *      @dev: network device
2418  *
2419  *      Callback from the network layer when the velocity is being
2420  *      deactivated by the network layer
2421  */
2422 static int velocity_close(struct net_device *dev)
2423 {
2424         struct velocity_info *vptr = netdev_priv(dev);
2425
2426         netif_stop_queue(dev);
2427         velocity_shutdown(vptr);
2428
2429         if (vptr->flags & VELOCITY_FLAGS_WOL_ENABLED)
2430                 velocity_get_ip(vptr);
2431         if (dev->irq != 0)
2432                 free_irq(dev->irq, dev);
2433
2434         /* Power down the chip */
2435         pci_set_power_state(vptr->pdev, PCI_D3hot);
2436
2437         velocity_free_rings(vptr);
2438
2439         vptr->flags &= (~VELOCITY_FLAGS_OPENED);
2440         return 0;
2441 }
2442
2443 /**
2444  *      velocity_xmit           -       transmit packet callback
2445  *      @skb: buffer to transmit
2446  *      @dev: network device
2447  *
2448  *      Called by the networ layer to request a packet is queued to
2449  *      the velocity. Returns zero on success.
2450  */
2451 static netdev_tx_t velocity_xmit(struct sk_buff *skb,
2452                                  struct net_device *dev)
2453 {
2454         struct velocity_info *vptr = netdev_priv(dev);
2455         int qnum = 0;
2456         struct tx_desc *td_ptr;
2457         struct velocity_td_info *tdinfo;
2458         unsigned long flags;
2459         int pktlen;
2460         __le16 len;
2461         int index;
2462
2463         if (skb_padto(skb, ETH_ZLEN))
2464                 goto out;
2465         pktlen = max_t(unsigned int, skb->len, ETH_ZLEN);
2466
2467         len = cpu_to_le16(pktlen);
2468
2469         spin_lock_irqsave(&vptr->lock, flags);
2470
2471         index = vptr->tx.curr[qnum];
2472         td_ptr = &(vptr->tx.rings[qnum][index]);
2473         tdinfo = &(vptr->tx.infos[qnum][index]);
2474
2475         td_ptr->tdesc1.TCR = TCR0_TIC;
2476         td_ptr->td_buf[0].size &= ~TD_QUEUE;
2477
2478         /*
2479          *      Map the linear network buffer into PCI space and
2480          *      add it to the transmit ring.
2481          */
2482         tdinfo->skb = skb;
2483         tdinfo->skb_dma[0] = pci_map_single(vptr->pdev, skb->data, pktlen, PCI_DMA_TODEVICE);
2484         td_ptr->tdesc0.len = len;
2485         td_ptr->td_buf[0].pa_low = cpu_to_le32(tdinfo->skb_dma[0]);
2486         td_ptr->td_buf[0].pa_high = 0;
2487         td_ptr->td_buf[0].size = len;
2488         tdinfo->nskb_dma = 1;
2489
2490         td_ptr->tdesc1.cmd = TCPLS_NORMAL + (tdinfo->nskb_dma + 1) * 16;
2491
2492         if (vptr->vlgrp && vlan_tx_tag_present(skb)) {
2493                 td_ptr->tdesc1.vlan = cpu_to_le16(vlan_tx_tag_get(skb));
2494                 td_ptr->tdesc1.TCR |= TCR0_VETAG;
2495         }
2496
2497         /*
2498          *      Handle hardware checksum
2499          */
2500         if ((vptr->flags & VELOCITY_FLAGS_TX_CSUM)
2501                                  && (skb->ip_summed == CHECKSUM_PARTIAL)) {
2502                 const struct iphdr *ip = ip_hdr(skb);
2503                 if (ip->protocol == IPPROTO_TCP)
2504                         td_ptr->tdesc1.TCR |= TCR0_TCPCK;
2505                 else if (ip->protocol == IPPROTO_UDP)
2506                         td_ptr->tdesc1.TCR |= (TCR0_UDPCK);
2507                 td_ptr->tdesc1.TCR |= TCR0_IPCK;
2508         }
2509         {
2510
2511                 int prev = index - 1;
2512
2513                 if (prev < 0)
2514                         prev = vptr->options.numtx - 1;
2515                 td_ptr->tdesc0.len |= OWNED_BY_NIC;
2516                 vptr->tx.used[qnum]++;
2517                 vptr->tx.curr[qnum] = (index + 1) % vptr->options.numtx;
2518
2519                 if (AVAIL_TD(vptr, qnum) < 1)
2520                         netif_stop_queue(dev);
2521
2522                 td_ptr = &(vptr->tx.rings[qnum][prev]);
2523                 td_ptr->td_buf[0].size |= TD_QUEUE;
2524                 mac_tx_queue_wake(vptr->mac_regs, qnum);
2525         }
2526         dev->trans_start = jiffies;
2527         spin_unlock_irqrestore(&vptr->lock, flags);
2528 out:
2529         return NETDEV_TX_OK;
2530 }
2531
2532
2533 static const struct net_device_ops velocity_netdev_ops = {
2534         .ndo_open               = velocity_open,
2535         .ndo_stop               = velocity_close,
2536         .ndo_start_xmit         = velocity_xmit,
2537         .ndo_get_stats          = velocity_get_stats,
2538         .ndo_validate_addr      = eth_validate_addr,
2539         .ndo_set_mac_address    = eth_mac_addr,
2540         .ndo_set_multicast_list = velocity_set_multi,
2541         .ndo_change_mtu         = velocity_change_mtu,
2542         .ndo_do_ioctl           = velocity_ioctl,
2543         .ndo_vlan_rx_add_vid    = velocity_vlan_rx_add_vid,
2544         .ndo_vlan_rx_kill_vid   = velocity_vlan_rx_kill_vid,
2545         .ndo_vlan_rx_register   = velocity_vlan_rx_register,
2546 };
2547
2548 /**
2549  *      velocity_init_info      -       init private data
2550  *      @pdev: PCI device
2551  *      @vptr: Velocity info
2552  *      @info: Board type
2553  *
2554  *      Set up the initial velocity_info struct for the device that has been
2555  *      discovered.
2556  */
2557 static void __devinit velocity_init_info(struct pci_dev *pdev,
2558                                          struct velocity_info *vptr,
2559                                          const struct velocity_info_tbl *info)
2560 {
2561         memset(vptr, 0, sizeof(struct velocity_info));
2562
2563         vptr->pdev = pdev;
2564         vptr->chip_id = info->chip_id;
2565         vptr->tx.numq = info->txqueue;
2566         vptr->multicast_limit = MCAM_SIZE;
2567         spin_lock_init(&vptr->lock);
2568 }
2569
2570 /**
2571  *      velocity_get_pci_info   -       retrieve PCI info for device
2572  *      @vptr: velocity device
2573  *      @pdev: PCI device it matches
2574  *
2575  *      Retrieve the PCI configuration space data that interests us from
2576  *      the kernel PCI layer
2577  */
2578 static int __devinit velocity_get_pci_info(struct velocity_info *vptr, struct pci_dev *pdev)
2579 {
2580         vptr->rev_id = pdev->revision;
2581
2582         pci_set_master(pdev);
2583
2584         vptr->ioaddr = pci_resource_start(pdev, 0);
2585         vptr->memaddr = pci_resource_start(pdev, 1);
2586
2587         if (!(pci_resource_flags(pdev, 0) & IORESOURCE_IO)) {
2588                 dev_err(&pdev->dev,
2589                            "region #0 is not an I/O resource, aborting.\n");
2590                 return -EINVAL;
2591         }
2592
2593         if ((pci_resource_flags(pdev, 1) & IORESOURCE_IO)) {
2594                 dev_err(&pdev->dev,
2595                            "region #1 is an I/O resource, aborting.\n");
2596                 return -EINVAL;
2597         }
2598
2599         if (pci_resource_len(pdev, 1) < VELOCITY_IO_SIZE) {
2600                 dev_err(&pdev->dev, "region #1 is too small.\n");
2601                 return -EINVAL;
2602         }
2603         vptr->pdev = pdev;
2604
2605         return 0;
2606 }
2607
2608 /**
2609  *      velocity_print_info     -       per driver data
2610  *      @vptr: velocity
2611  *
2612  *      Print per driver data as the kernel driver finds Velocity
2613  *      hardware
2614  */
2615 static void __devinit velocity_print_info(struct velocity_info *vptr)
2616 {
2617         struct net_device *dev = vptr->dev;
2618
2619         printk(KERN_INFO "%s: %s\n", dev->name, get_chip_name(vptr->chip_id));
2620         printk(KERN_INFO "%s: Ethernet Address: %2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
2621                 dev->name,
2622                 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
2623                 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
2624 }
2625
2626 static u32 velocity_get_link(struct net_device *dev)
2627 {
2628         struct velocity_info *vptr = netdev_priv(dev);
2629         struct mac_regs __iomem *regs = vptr->mac_regs;
2630         return BYTE_REG_BITS_IS_ON(PHYSR0_LINKGD, &regs->PHYSR0) ? 1 : 0;
2631 }
2632
2633
2634 /**
2635  *      velocity_found1         -       set up discovered velocity card
2636  *      @pdev: PCI device
2637  *      @ent: PCI device table entry that matched
2638  *
2639  *      Configure a discovered adapter from scratch. Return a negative
2640  *      errno error code on failure paths.
2641  */
2642 static int __devinit velocity_found1(struct pci_dev *pdev, const struct pci_device_id *ent)
2643 {
2644         static int first = 1;
2645         struct net_device *dev;
2646         int i;
2647         const char *drv_string;
2648         const struct velocity_info_tbl *info = &chip_info_table[ent->driver_data];
2649         struct velocity_info *vptr;
2650         struct mac_regs __iomem *regs;
2651         int ret = -ENOMEM;
2652
2653         /* FIXME: this driver, like almost all other ethernet drivers,
2654          * can support more than MAX_UNITS.
2655          */
2656         if (velocity_nics >= MAX_UNITS) {
2657                 dev_notice(&pdev->dev, "already found %d NICs.\n",
2658                            velocity_nics);
2659                 return -ENODEV;
2660         }
2661
2662         dev = alloc_etherdev(sizeof(struct velocity_info));
2663         if (!dev) {
2664                 dev_err(&pdev->dev, "allocate net device failed.\n");
2665                 goto out;
2666         }
2667
2668         /* Chain it all together */
2669
2670         SET_NETDEV_DEV(dev, &pdev->dev);
2671         vptr = netdev_priv(dev);
2672
2673
2674         if (first) {
2675                 printk(KERN_INFO "%s Ver. %s\n",
2676                         VELOCITY_FULL_DRV_NAM, VELOCITY_VERSION);
2677                 printk(KERN_INFO "Copyright (c) 2002, 2003 VIA Networking Technologies, Inc.\n");
2678                 printk(KERN_INFO "Copyright (c) 2004 Red Hat Inc.\n");
2679                 first = 0;
2680         }
2681
2682         velocity_init_info(pdev, vptr, info);
2683
2684         vptr->dev = dev;
2685
2686         dev->irq = pdev->irq;
2687
2688         ret = pci_enable_device(pdev);
2689         if (ret < 0)
2690                 goto err_free_dev;
2691
2692         ret = velocity_get_pci_info(vptr, pdev);
2693         if (ret < 0) {
2694                 /* error message already printed */
2695                 goto err_disable;
2696         }
2697
2698         ret = pci_request_regions(pdev, VELOCITY_NAME);
2699         if (ret < 0) {
2700                 dev_err(&pdev->dev, "No PCI resources.\n");
2701                 goto err_disable;
2702         }
2703
2704         regs = ioremap(vptr->memaddr, VELOCITY_IO_SIZE);
2705         if (regs == NULL) {
2706                 ret = -EIO;
2707                 goto err_release_res;
2708         }
2709
2710         vptr->mac_regs = regs;
2711
2712         mac_wol_reset(regs);
2713
2714         dev->base_addr = vptr->ioaddr;
2715
2716         for (i = 0; i < 6; i++)
2717                 dev->dev_addr[i] = readb(&regs->PAR[i]);
2718
2719
2720         drv_string = dev_driver_string(&pdev->dev);
2721
2722         velocity_get_options(&vptr->options, velocity_nics, drv_string);
2723
2724         /*
2725          *      Mask out the options cannot be set to the chip
2726          */
2727
2728         vptr->options.flags &= info->flags;
2729
2730         /*
2731          *      Enable the chip specified capbilities
2732          */
2733
2734         vptr->flags = vptr->options.flags | (info->flags & 0xFF000000UL);
2735
2736         vptr->wol_opts = vptr->options.wol_opts;
2737         vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
2738
2739         vptr->phy_id = MII_GET_PHY_ID(vptr->mac_regs);
2740
2741         dev->irq = pdev->irq;
2742         dev->netdev_ops = &velocity_netdev_ops;
2743         dev->ethtool_ops = &velocity_ethtool_ops;
2744
2745         dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_FILTER |
2746                 NETIF_F_HW_VLAN_RX;
2747
2748         if (vptr->flags & VELOCITY_FLAGS_TX_CSUM)
2749                 dev->features |= NETIF_F_IP_CSUM;
2750
2751         ret = register_netdev(dev);
2752         if (ret < 0)
2753                 goto err_iounmap;
2754
2755         if (!velocity_get_link(dev)) {
2756                 netif_carrier_off(dev);
2757                 vptr->mii_status |= VELOCITY_LINK_FAIL;
2758         }
2759
2760         velocity_print_info(vptr);
2761         pci_set_drvdata(pdev, dev);
2762
2763         /* and leave the chip powered down */
2764
2765         pci_set_power_state(pdev, PCI_D3hot);
2766         velocity_nics++;
2767 out:
2768         return ret;
2769
2770 err_iounmap:
2771         iounmap(regs);
2772 err_release_res:
2773         pci_release_regions(pdev);
2774 err_disable:
2775         pci_disable_device(pdev);
2776 err_free_dev:
2777         free_netdev(dev);
2778         goto out;
2779 }
2780
2781
2782 #ifdef CONFIG_PM
2783 /**
2784  *      wol_calc_crc            -       WOL CRC
2785  *      @pattern: data pattern
2786  *      @mask_pattern: mask
2787  *
2788  *      Compute the wake on lan crc hashes for the packet header
2789  *      we are interested in.
2790  */
2791 static u16 wol_calc_crc(int size, u8 *pattern, u8 *mask_pattern)
2792 {
2793         u16 crc = 0xFFFF;
2794         u8 mask;
2795         int i, j;
2796
2797         for (i = 0; i < size; i++) {
2798                 mask = mask_pattern[i];
2799
2800                 /* Skip this loop if the mask equals to zero */
2801                 if (mask == 0x00)
2802                         continue;
2803
2804                 for (j = 0; j < 8; j++) {
2805                         if ((mask & 0x01) == 0) {
2806                                 mask >>= 1;
2807                                 continue;
2808                         }
2809                         mask >>= 1;
2810                         crc = crc_ccitt(crc, &(pattern[i * 8 + j]), 1);
2811                 }
2812         }
2813         /*      Finally, invert the result once to get the correct data */
2814         crc = ~crc;
2815         return bitrev32(crc) >> 16;
2816 }
2817
2818 /**
2819  *      velocity_set_wol        -       set up for wake on lan
2820  *      @vptr: velocity to set WOL status on
2821  *
2822  *      Set a card up for wake on lan either by unicast or by
2823  *      ARP packet.
2824  *
2825  *      FIXME: check static buffer is safe here
2826  */
2827 static int velocity_set_wol(struct velocity_info *vptr)
2828 {
2829         struct mac_regs __iomem *regs = vptr->mac_regs;
2830         static u8 buf[256];
2831         int i;
2832
2833         static u32 mask_pattern[2][4] = {
2834                 {0x00203000, 0x000003C0, 0x00000000, 0x0000000}, /* ARP */
2835                 {0xfffff000, 0xffffffff, 0xffffffff, 0x000ffff}  /* Magic Packet */
2836         };
2837
2838         writew(0xFFFF, &regs->WOLCRClr);
2839         writeb(WOLCFG_SAB | WOLCFG_SAM, &regs->WOLCFGSet);
2840         writew(WOLCR_MAGIC_EN, &regs->WOLCRSet);
2841
2842         /*
2843            if (vptr->wol_opts & VELOCITY_WOL_PHY)
2844            writew((WOLCR_LINKON_EN|WOLCR_LINKOFF_EN), &regs->WOLCRSet);
2845          */
2846
2847         if (vptr->wol_opts & VELOCITY_WOL_UCAST)
2848                 writew(WOLCR_UNICAST_EN, &regs->WOLCRSet);
2849
2850         if (vptr->wol_opts & VELOCITY_WOL_ARP) {
2851                 struct arp_packet *arp = (struct arp_packet *) buf;
2852                 u16 crc;
2853                 memset(buf, 0, sizeof(struct arp_packet) + 7);
2854
2855                 for (i = 0; i < 4; i++)
2856                         writel(mask_pattern[0][i], &regs->ByteMask[0][i]);
2857
2858                 arp->type = htons(ETH_P_ARP);
2859                 arp->ar_op = htons(1);
2860
2861                 memcpy(arp->ar_tip, vptr->ip_addr, 4);
2862
2863                 crc = wol_calc_crc((sizeof(struct arp_packet) + 7) / 8, buf,
2864                                 (u8 *) & mask_pattern[0][0]);
2865
2866                 writew(crc, &regs->PatternCRC[0]);
2867                 writew(WOLCR_ARP_EN, &regs->WOLCRSet);
2868         }
2869
2870         BYTE_REG_BITS_ON(PWCFG_WOLTYPE, &regs->PWCFGSet);
2871         BYTE_REG_BITS_ON(PWCFG_LEGACY_WOLEN, &regs->PWCFGSet);
2872
2873         writew(0x0FFF, &regs->WOLSRClr);
2874
2875         if (vptr->mii_status & VELOCITY_AUTONEG_ENABLE) {
2876                 if (PHYID_GET_PHY_ID(vptr->phy_id) == PHYID_CICADA_CS8201)
2877                         MII_REG_BITS_ON(AUXCR_MDPPS, MII_REG_AUXCR, vptr->mac_regs);
2878
2879                 MII_REG_BITS_OFF(G1000CR_1000FD | G1000CR_1000, MII_REG_G1000CR, vptr->mac_regs);
2880         }
2881
2882         if (vptr->mii_status & VELOCITY_SPEED_1000)
2883                 MII_REG_BITS_ON(BMCR_REAUTO, MII_REG_BMCR, vptr->mac_regs);
2884
2885         BYTE_REG_BITS_ON(CHIPGCR_FCMODE, &regs->CHIPGCR);
2886
2887         {
2888                 u8 GCR;
2889                 GCR = readb(&regs->CHIPGCR);
2890                 GCR = (GCR & ~CHIPGCR_FCGMII) | CHIPGCR_FCFDX;
2891                 writeb(GCR, &regs->CHIPGCR);
2892         }
2893
2894         BYTE_REG_BITS_OFF(ISR_PWEI, &regs->ISR);
2895         /* Turn on SWPTAG just before entering power mode */
2896         BYTE_REG_BITS_ON(STICKHW_SWPTAG, &regs->STICKHW);
2897         /* Go to bed ..... */
2898         BYTE_REG_BITS_ON((STICKHW_DS1 | STICKHW_DS0), &regs->STICKHW);
2899
2900         return 0;
2901 }
2902
2903 /**
2904  *      velocity_save_context   -       save registers
2905  *      @vptr: velocity
2906  *      @context: buffer for stored context
2907  *
2908  *      Retrieve the current configuration from the velocity hardware
2909  *      and stash it in the context structure, for use by the context
2910  *      restore functions. This allows us to save things we need across
2911  *      power down states
2912  */
2913 static void velocity_save_context(struct velocity_info *vptr, struct velocity_context *context)
2914 {
2915         struct mac_regs __iomem *regs = vptr->mac_regs;
2916         u16 i;
2917         u8 __iomem *ptr = (u8 __iomem *)regs;
2918
2919         for (i = MAC_REG_PAR; i < MAC_REG_CR0_CLR; i += 4)
2920                 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
2921
2922         for (i = MAC_REG_MAR; i < MAC_REG_TDCSR_CLR; i += 4)
2923                 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
2924
2925         for (i = MAC_REG_RDBASE_LO; i < MAC_REG_FIFO_TEST0; i += 4)
2926                 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
2927
2928 }
2929
2930 static int velocity_suspend(struct pci_dev *pdev, pm_message_t state)
2931 {
2932         struct net_device *dev = pci_get_drvdata(pdev);
2933         struct velocity_info *vptr = netdev_priv(dev);
2934         unsigned long flags;
2935
2936         if (!netif_running(vptr->dev))
2937                 return 0;
2938
2939         netif_device_detach(vptr->dev);
2940
2941         spin_lock_irqsave(&vptr->lock, flags);
2942         pci_save_state(pdev);
2943 #ifdef ETHTOOL_GWOL
2944         if (vptr->flags & VELOCITY_FLAGS_WOL_ENABLED) {
2945                 velocity_get_ip(vptr);
2946                 velocity_save_context(vptr, &vptr->context);
2947                 velocity_shutdown(vptr);
2948                 velocity_set_wol(vptr);
2949                 pci_enable_wake(pdev, PCI_D3hot, 1);
2950                 pci_set_power_state(pdev, PCI_D3hot);
2951         } else {
2952                 velocity_save_context(vptr, &vptr->context);
2953                 velocity_shutdown(vptr);
2954                 pci_disable_device(pdev);
2955                 pci_set_power_state(pdev, pci_choose_state(pdev, state));
2956         }
2957 #else
2958         pci_set_power_state(pdev, pci_choose_state(pdev, state));
2959 #endif
2960         spin_unlock_irqrestore(&vptr->lock, flags);
2961         return 0;
2962 }
2963
2964 /**
2965  *      velocity_restore_context        -       restore registers
2966  *      @vptr: velocity
2967  *      @context: buffer for stored context
2968  *
2969  *      Reload the register configuration from the velocity context
2970  *      created by velocity_save_context.
2971  */
2972 static void velocity_restore_context(struct velocity_info *vptr, struct velocity_context *context)
2973 {
2974         struct mac_regs __iomem *regs = vptr->mac_regs;
2975         int i;
2976         u8 __iomem *ptr = (u8 __iomem *)regs;
2977
2978         for (i = MAC_REG_PAR; i < MAC_REG_CR0_SET; i += 4)
2979                 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
2980
2981         /* Just skip cr0 */
2982         for (i = MAC_REG_CR1_SET; i < MAC_REG_CR0_CLR; i++) {
2983                 /* Clear */
2984                 writeb(~(*((u8 *) (context->mac_reg + i))), ptr + i + 4);
2985                 /* Set */
2986                 writeb(*((u8 *) (context->mac_reg + i)), ptr + i);
2987         }
2988
2989         for (i = MAC_REG_MAR; i < MAC_REG_IMR; i += 4)
2990                 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
2991
2992         for (i = MAC_REG_RDBASE_LO; i < MAC_REG_FIFO_TEST0; i += 4)
2993                 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
2994
2995         for (i = MAC_REG_TDCSR_SET; i <= MAC_REG_RDCSR_SET; i++)
2996                 writeb(*((u8 *) (context->mac_reg + i)), ptr + i);
2997 }
2998
2999 static int velocity_resume(struct pci_dev *pdev)
3000 {
3001         struct net_device *dev = pci_get_drvdata(pdev);
3002         struct velocity_info *vptr = netdev_priv(dev);
3003         unsigned long flags;
3004         int i;
3005
3006         if (!netif_running(vptr->dev))
3007                 return 0;
3008
3009         pci_set_power_state(pdev, PCI_D0);
3010         pci_enable_wake(pdev, 0, 0);
3011         pci_restore_state(pdev);
3012
3013         mac_wol_reset(vptr->mac_regs);
3014
3015         spin_lock_irqsave(&vptr->lock, flags);
3016         velocity_restore_context(vptr, &vptr->context);
3017         velocity_init_registers(vptr, VELOCITY_INIT_WOL);
3018         mac_disable_int(vptr->mac_regs);
3019
3020         velocity_tx_srv(vptr, 0);
3021
3022         for (i = 0; i < vptr->tx.numq; i++) {
3023                 if (vptr->tx.used[i])
3024                         mac_tx_queue_wake(vptr->mac_regs, i);
3025         }
3026
3027         mac_enable_int(vptr->mac_regs);
3028         spin_unlock_irqrestore(&vptr->lock, flags);
3029         netif_device_attach(vptr->dev);
3030
3031         return 0;
3032 }
3033 #endif
3034
3035 /*
3036  *      Definition for our device driver. The PCI layer interface
3037  *      uses this to handle all our card discover and plugging
3038  */
3039 static struct pci_driver velocity_driver = {
3040       .name     = VELOCITY_NAME,
3041       .id_table = velocity_id_table,
3042       .probe    = velocity_found1,
3043       .remove   = __devexit_p(velocity_remove1),
3044 #ifdef CONFIG_PM
3045       .suspend  = velocity_suspend,
3046       .resume   = velocity_resume,
3047 #endif
3048 };
3049
3050
3051 /**
3052  *      velocity_ethtool_up     -       pre hook for ethtool
3053  *      @dev: network device
3054  *
3055  *      Called before an ethtool operation. We need to make sure the
3056  *      chip is out of D3 state before we poke at it.
3057  */
3058 static int velocity_ethtool_up(struct net_device *dev)
3059 {
3060         struct velocity_info *vptr = netdev_priv(dev);
3061         if (!netif_running(dev))
3062                 pci_set_power_state(vptr->pdev, PCI_D0);
3063         return 0;
3064 }
3065
3066 /**
3067  *      velocity_ethtool_down   -       post hook for ethtool
3068  *      @dev: network device
3069  *
3070  *      Called after an ethtool operation. Restore the chip back to D3
3071  *      state if it isn't running.
3072  */
3073 static void velocity_ethtool_down(struct net_device *dev)
3074 {
3075         struct velocity_info *vptr = netdev_priv(dev);
3076         if (!netif_running(dev))
3077                 pci_set_power_state(vptr->pdev, PCI_D3hot);
3078 }
3079
3080 static int velocity_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3081 {
3082         struct velocity_info *vptr = netdev_priv(dev);
3083         struct mac_regs __iomem *regs = vptr->mac_regs;
3084         u32 status;
3085         status = check_connection_type(vptr->mac_regs);
3086
3087         cmd->supported = SUPPORTED_TP |
3088                         SUPPORTED_Autoneg |
3089                         SUPPORTED_10baseT_Half |
3090                         SUPPORTED_10baseT_Full |
3091                         SUPPORTED_100baseT_Half |
3092                         SUPPORTED_100baseT_Full |
3093                         SUPPORTED_1000baseT_Half |
3094                         SUPPORTED_1000baseT_Full;
3095         if (status & VELOCITY_SPEED_1000)
3096                 cmd->speed = SPEED_1000;
3097         else if (status & VELOCITY_SPEED_100)
3098                 cmd->speed = SPEED_100;
3099         else
3100                 cmd->speed = SPEED_10;
3101         cmd->autoneg = (status & VELOCITY_AUTONEG_ENABLE) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
3102         cmd->port = PORT_TP;
3103         cmd->transceiver = XCVR_INTERNAL;
3104         cmd->phy_address = readb(&regs->MIIADR) & 0x1F;
3105
3106         if (status & VELOCITY_DUPLEX_FULL)
3107                 cmd->duplex = DUPLEX_FULL;
3108         else
3109                 cmd->duplex = DUPLEX_HALF;
3110
3111         return 0;
3112 }
3113
3114 static int velocity_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3115 {
3116         struct velocity_info *vptr = netdev_priv(dev);
3117         u32 curr_status;
3118         u32 new_status = 0;
3119         int ret = 0;
3120
3121         curr_status = check_connection_type(vptr->mac_regs);
3122         curr_status &= (~VELOCITY_LINK_FAIL);
3123
3124         new_status |= ((cmd->autoneg) ? VELOCITY_AUTONEG_ENABLE : 0);
3125         new_status |= ((cmd->speed == SPEED_100) ? VELOCITY_SPEED_100 : 0);
3126         new_status |= ((cmd->speed == SPEED_10) ? VELOCITY_SPEED_10 : 0);
3127         new_status |= ((cmd->duplex == DUPLEX_FULL) ? VELOCITY_DUPLEX_FULL : 0);
3128
3129         if ((new_status & VELOCITY_AUTONEG_ENABLE) && (new_status != (curr_status | VELOCITY_AUTONEG_ENABLE)))
3130                 ret = -EINVAL;
3131         else
3132                 velocity_set_media_mode(vptr, new_status);
3133
3134         return ret;
3135 }
3136
3137 static void velocity_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3138 {
3139         struct velocity_info *vptr = netdev_priv(dev);
3140         strcpy(info->driver, VELOCITY_NAME);
3141         strcpy(info->version, VELOCITY_VERSION);
3142         strcpy(info->bus_info, pci_name(vptr->pdev));
3143 }
3144
3145 static void velocity_ethtool_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3146 {
3147         struct velocity_info *vptr = netdev_priv(dev);
3148         wol->supported = WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_ARP;
3149         wol->wolopts |= WAKE_MAGIC;
3150         /*
3151            if (vptr->wol_opts & VELOCITY_WOL_PHY)
3152                    wol.wolopts|=WAKE_PHY;
3153                          */
3154         if (vptr->wol_opts & VELOCITY_WOL_UCAST)
3155                 wol->wolopts |= WAKE_UCAST;
3156         if (vptr->wol_opts & VELOCITY_WOL_ARP)
3157                 wol->wolopts |= WAKE_ARP;
3158         memcpy(&wol->sopass, vptr->wol_passwd, 6);
3159 }
3160
3161 static int velocity_ethtool_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3162 {
3163         struct velocity_info *vptr = netdev_priv(dev);
3164
3165         if (!(wol->wolopts & (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_ARP)))
3166                 return -EFAULT;
3167         vptr->wol_opts = VELOCITY_WOL_MAGIC;
3168
3169         /*
3170            if (wol.wolopts & WAKE_PHY) {
3171            vptr->wol_opts|=VELOCITY_WOL_PHY;
3172            vptr->flags |=VELOCITY_FLAGS_WOL_ENABLED;
3173            }
3174          */
3175
3176         if (wol->wolopts & WAKE_MAGIC) {
3177                 vptr->wol_opts |= VELOCITY_WOL_MAGIC;
3178                 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3179         }
3180         if (wol->wolopts & WAKE_UCAST) {
3181                 vptr->wol_opts |= VELOCITY_WOL_UCAST;
3182                 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3183         }
3184         if (wol->wolopts & WAKE_ARP) {
3185                 vptr->wol_opts |= VELOCITY_WOL_ARP;
3186                 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3187         }
3188         memcpy(vptr->wol_passwd, wol->sopass, 6);
3189         return 0;
3190 }
3191
3192 static u32 velocity_get_msglevel(struct net_device *dev)
3193 {
3194         return msglevel;
3195 }
3196
3197 static void velocity_set_msglevel(struct net_device *dev, u32 value)
3198 {
3199          msglevel = value;
3200 }
3201
3202 static const struct ethtool_ops velocity_ethtool_ops = {
3203         .get_settings   =       velocity_get_settings,
3204         .set_settings   =       velocity_set_settings,
3205         .get_drvinfo    =       velocity_get_drvinfo,
3206         .get_wol        =       velocity_ethtool_get_wol,
3207         .set_wol        =       velocity_ethtool_set_wol,
3208         .get_msglevel   =       velocity_get_msglevel,
3209         .set_msglevel   =       velocity_set_msglevel,
3210         .get_link       =       velocity_get_link,
3211         .begin          =       velocity_ethtool_up,
3212         .complete       =       velocity_ethtool_down
3213 };
3214
3215 #ifdef CONFIG_PM
3216 #ifdef CONFIG_INET
3217 static int velocity_netdev_event(struct notifier_block *nb, unsigned long notification, void *ptr)
3218 {
3219         struct in_ifaddr *ifa = (struct in_ifaddr *) ptr;
3220         struct net_device *dev = ifa->ifa_dev->dev;
3221
3222         if (dev_net(dev) == &init_net &&
3223             dev->netdev_ops == &velocity_netdev_ops)
3224                 velocity_get_ip(netdev_priv(dev));
3225
3226         return NOTIFY_DONE;
3227 }
3228 #endif  /* CONFIG_INET */
3229 #endif  /* CONFIG_PM */
3230
3231 #if defined(CONFIG_PM) && defined(CONFIG_INET)
3232 static struct notifier_block velocity_inetaddr_notifier = {
3233       .notifier_call    = velocity_netdev_event,
3234 };
3235
3236 static void velocity_register_notifier(void)
3237 {
3238         register_inetaddr_notifier(&velocity_inetaddr_notifier);
3239 }
3240
3241 static void velocity_unregister_notifier(void)
3242 {
3243         unregister_inetaddr_notifier(&velocity_inetaddr_notifier);
3244 }
3245
3246 #else
3247
3248 #define velocity_register_notifier()    do {} while (0)
3249 #define velocity_unregister_notifier()  do {} while (0)
3250
3251 #endif  /* defined(CONFIG_PM) && defined(CONFIG_INET) */
3252
3253 /**
3254  *      velocity_init_module    -       load time function
3255  *
3256  *      Called when the velocity module is loaded. The PCI driver
3257  *      is registered with the PCI layer, and in turn will call
3258  *      the probe functions for each velocity adapter installed
3259  *      in the system.
3260  */
3261 static int __init velocity_init_module(void)
3262 {
3263         int ret;
3264
3265         velocity_register_notifier();
3266         ret = pci_register_driver(&velocity_driver);
3267         if (ret < 0)
3268                 velocity_unregister_notifier();
3269         return ret;
3270 }
3271
3272 /**
3273  *      velocity_cleanup        -       module unload
3274  *
3275  *      When the velocity hardware is unloaded this function is called.
3276  *      It will clean up the notifiers and the unregister the PCI
3277  *      driver interface for this hardware. This in turn cleans up
3278  *      all discovered interfaces before returning from the function
3279  */
3280 static void __exit velocity_cleanup_module(void)
3281 {
3282         velocity_unregister_notifier();
3283         pci_unregister_driver(&velocity_driver);
3284 }
3285
3286 module_init(velocity_init_module);
3287 module_exit(velocity_cleanup_module);