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