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