blob: 133069738ba05214a1ebee4c7c42f7e5936b5bb2 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * rx_copybreak/alignment
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * More testing
13 *
Alan Cox113aa832008-10-13 19:01:08 -070014 * The changes are (c) Copyright 2004, Red Hat Inc. <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Additional fixes and clean up: Francois Romieu
16 *
17 * This source has not been verified for use in safety critical systems.
18 *
19 * Please direct queries about the revamped driver to the linux-kernel
20 * list not VIA.
21 *
22 * Original code:
23 *
24 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
25 * All rights reserved.
26 *
27 * This software may be redistributed and/or modified under
28 * the terms of the GNU General Public License as published by the Free
29 * Software Foundation; either version 2 of the License, or
30 * any later version.
31 *
32 * This program is distributed in the hope that it will be useful, but
33 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
34 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
35 * for more details.
36 *
37 * Author: Chuang Liang-Shing, AJ Jiang
38 *
39 * Date: Jan 24, 2003
40 *
41 * MODULE_LICENSE("GPL");
42 *
43 */
44
45
46#include <linux/module.h>
47#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/init.h>
49#include <linux/mm.h>
50#include <linux/errno.h>
51#include <linux/ioport.h>
52#include <linux/pci.h>
53#include <linux/kernel.h>
54#include <linux/netdevice.h>
55#include <linux/etherdevice.h>
56#include <linux/skbuff.h>
57#include <linux/delay.h>
58#include <linux/timer.h>
59#include <linux/slab.h>
60#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/string.h>
62#include <linux/wait.h>
Dave Jonesc4067402009-07-20 17:35:21 +000063#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/if.h>
Dave Jonesc4067402009-07-20 17:35:21 +000065#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/proc_fs.h>
67#include <linux/inetdevice.h>
68#include <linux/reboot.h>
69#include <linux/ethtool.h>
70#include <linux/mii.h>
71#include <linux/in.h>
72#include <linux/if_arp.h>
Stephen Hemminger501e4d22007-08-24 13:56:49 -070073#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/ip.h>
75#include <linux/tcp.h>
76#include <linux/udp.h>
77#include <linux/crc-ccitt.h>
78#include <linux/crc32.h>
79
80#include "via-velocity.h"
81
82
Dave Jonesc4067402009-07-20 17:35:21 +000083static int velocity_nics;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static int msglevel = MSG_LEVEL_INFO;
85
Stephen Hemminger01faccb2007-08-24 14:40:45 -070086/**
87 * mac_get_cam_mask - Read a CAM mask
88 * @regs: register block for this velocity
89 * @mask: buffer to store mask
90 *
91 * Fetch the mask bits of the selected CAM and store them into the
92 * provided mask buffer.
93 */
Dave Jonesc4067402009-07-20 17:35:21 +000094static void mac_get_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
Stephen Hemminger01faccb2007-08-24 14:40:45 -070095{
96 int i;
97
98 /* Select CAM mask */
99 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
100
101 writeb(0, &regs->CAMADDR);
102
103 /* read mask */
104 for (i = 0; i < 8; i++)
105 *mask++ = readb(&(regs->MARCAM[i]));
106
107 /* disable CAMEN */
108 writeb(0, &regs->CAMADDR);
109
110 /* Select mar */
111 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700112}
113
114
115/**
116 * mac_set_cam_mask - Set a CAM mask
117 * @regs: register block for this velocity
118 * @mask: CAM mask to load
119 *
120 * Store a new mask into a CAM
121 */
Dave Jonesc4067402009-07-20 17:35:21 +0000122static void mac_set_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700123{
124 int i;
125 /* Select CAM mask */
126 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
127
128 writeb(CAMADDR_CAMEN, &regs->CAMADDR);
129
Dave Jonesc4067402009-07-20 17:35:21 +0000130 for (i = 0; i < 8; i++)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700131 writeb(*mask++, &(regs->MARCAM[i]));
Dave Jonesc4067402009-07-20 17:35:21 +0000132
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700133 /* disable CAMEN */
134 writeb(0, &regs->CAMADDR);
135
136 /* Select mar */
137 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
138}
139
Dave Jonesc4067402009-07-20 17:35:21 +0000140static void mac_set_vlan_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700141{
142 int i;
143 /* Select CAM mask */
144 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
145
146 writeb(CAMADDR_CAMEN | CAMADDR_VCAMSL, &regs->CAMADDR);
147
Dave Jonesc4067402009-07-20 17:35:21 +0000148 for (i = 0; i < 8; i++)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700149 writeb(*mask++, &(regs->MARCAM[i]));
Dave Jonesc4067402009-07-20 17:35:21 +0000150
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700151 /* disable CAMEN */
152 writeb(0, &regs->CAMADDR);
153
154 /* Select mar */
155 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
156}
157
158/**
159 * mac_set_cam - set CAM data
160 * @regs: register block of this velocity
161 * @idx: Cam index
162 * @addr: 2 or 6 bytes of CAM data
163 *
164 * Load an address or vlan tag into a CAM
165 */
Dave Jonesc4067402009-07-20 17:35:21 +0000166static void mac_set_cam(struct mac_regs __iomem *regs, int idx, const u8 *addr)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700167{
168 int i;
169
170 /* Select CAM mask */
171 BYTE_REG_BITS_SET(CAMCR_PS_CAM_DATA, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
172
173 idx &= (64 - 1);
174
175 writeb(CAMADDR_CAMEN | idx, &regs->CAMADDR);
176
Dave Jonesc4067402009-07-20 17:35:21 +0000177 for (i = 0; i < 6; i++)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700178 writeb(*addr++, &(regs->MARCAM[i]));
Dave Jonesc4067402009-07-20 17:35:21 +0000179
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700180 BYTE_REG_BITS_ON(CAMCR_CAMWR, &regs->CAMCR);
181
182 udelay(10);
183
184 writeb(0, &regs->CAMADDR);
185
186 /* Select mar */
187 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
188}
189
Dave Jonesc4067402009-07-20 17:35:21 +0000190static void mac_set_vlan_cam(struct mac_regs __iomem *regs, int idx,
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700191 const u8 *addr)
192{
193
194 /* Select CAM mask */
195 BYTE_REG_BITS_SET(CAMCR_PS_CAM_DATA, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
196
197 idx &= (64 - 1);
198
199 writeb(CAMADDR_CAMEN | CAMADDR_VCAMSL | idx, &regs->CAMADDR);
200 writew(*((u16 *) addr), &regs->MARCAM[0]);
201
202 BYTE_REG_BITS_ON(CAMCR_CAMWR, &regs->CAMCR);
203
204 udelay(10);
205
206 writeb(0, &regs->CAMADDR);
207
208 /* Select mar */
209 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
210}
211
212
213/**
214 * mac_wol_reset - reset WOL after exiting low power
215 * @regs: register block of this velocity
216 *
217 * Called after we drop out of wake on lan mode in order to
218 * reset the Wake on lan features. This function doesn't restore
219 * the rest of the logic from the result of sleep/wakeup
220 */
Dave Jonesc4067402009-07-20 17:35:21 +0000221static void mac_wol_reset(struct mac_regs __iomem *regs)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700222{
223
224 /* Turn off SWPTAG right after leaving power mode */
225 BYTE_REG_BITS_OFF(STICKHW_SWPTAG, &regs->STICKHW);
226 /* clear sticky bits */
227 BYTE_REG_BITS_OFF((STICKHW_DS1 | STICKHW_DS0), &regs->STICKHW);
228
229 BYTE_REG_BITS_OFF(CHIPGCR_FCGMII, &regs->CHIPGCR);
230 BYTE_REG_BITS_OFF(CHIPGCR_FCMODE, &regs->CHIPGCR);
231 /* disable force PME-enable */
232 writeb(WOLCFG_PMEOVR, &regs->WOLCFGClr);
233 /* disable power-event config bit */
234 writew(0xFFFF, &regs->WOLCRClr);
235 /* clear power status */
236 writew(0xFFFF, &regs->WOLSRClr);
237}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Jeff Garzik7282d492006-09-13 14:30:00 -0400239static const struct ethtool_ops velocity_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241/*
242 Define module options
243*/
244
245MODULE_AUTHOR("VIA Networking Technologies, Inc.");
246MODULE_LICENSE("GPL");
247MODULE_DESCRIPTION("VIA Networking Velocity Family Gigabit Ethernet Adapter Driver");
248
Dave Jonesc4067402009-07-20 17:35:21 +0000249#define VELOCITY_PARAM(N, D) \
250 static int N[MAX_UNITS] = OPTION_DEFAULT;\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 module_param_array(N, int, NULL, 0); \
Dave Jonesc4067402009-07-20 17:35:21 +0000252 MODULE_PARM_DESC(N, D);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254#define RX_DESC_MIN 64
255#define RX_DESC_MAX 255
256#define RX_DESC_DEF 64
257VELOCITY_PARAM(RxDescriptors, "Number of receive descriptors");
258
259#define TX_DESC_MIN 16
260#define TX_DESC_MAX 256
261#define TX_DESC_DEF 64
262VELOCITY_PARAM(TxDescriptors, "Number of transmit descriptors");
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#define RX_THRESH_MIN 0
265#define RX_THRESH_MAX 3
266#define RX_THRESH_DEF 0
267/* rx_thresh[] is used for controlling the receive fifo threshold.
268 0: indicate the rxfifo threshold is 128 bytes.
269 1: indicate the rxfifo threshold is 512 bytes.
270 2: indicate the rxfifo threshold is 1024 bytes.
271 3: indicate the rxfifo threshold is store & forward.
272*/
273VELOCITY_PARAM(rx_thresh, "Receive fifo threshold");
274
275#define DMA_LENGTH_MIN 0
276#define DMA_LENGTH_MAX 7
Simon Kagstrom2a5774f2009-11-25 22:10:34 +0000277#define DMA_LENGTH_DEF 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279/* DMA_length[] is used for controlling the DMA length
280 0: 8 DWORDs
281 1: 16 DWORDs
282 2: 32 DWORDs
283 3: 64 DWORDs
284 4: 128 DWORDs
285 5: 256 DWORDs
286 6: SF(flush till emply)
287 7: SF(flush till emply)
288*/
289VELOCITY_PARAM(DMA_length, "DMA length");
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#define IP_ALIG_DEF 0
292/* IP_byte_align[] is used for IP header DWORD byte aligned
293 0: indicate the IP header won't be DWORD byte aligned.(Default) .
294 1: indicate the IP header will be DWORD byte aligned.
295 In some enviroment, the IP header should be DWORD byte aligned,
296 or the packet will be droped when we receive it. (eg: IPVS)
297*/
298VELOCITY_PARAM(IP_byte_align, "Enable IP header dword aligned");
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300#define FLOW_CNTL_DEF 1
301#define FLOW_CNTL_MIN 1
302#define FLOW_CNTL_MAX 5
303
304/* flow_control[] is used for setting the flow control ability of NIC.
305 1: hardware deafult - AUTO (default). Use Hardware default value in ANAR.
306 2: enable TX flow control.
307 3: enable RX flow control.
308 4: enable RX/TX flow control.
309 5: disable
310*/
311VELOCITY_PARAM(flow_control, "Enable flow control ability");
312
313#define MED_LNK_DEF 0
314#define MED_LNK_MIN 0
315#define MED_LNK_MAX 4
316/* speed_duplex[] is used for setting the speed and duplex mode of NIC.
317 0: indicate autonegotiation for both speed and duplex mode
318 1: indicate 100Mbps half duplex mode
319 2: indicate 100Mbps full duplex mode
320 3: indicate 10Mbps half duplex mode
321 4: indicate 10Mbps full duplex mode
322
323 Note:
Dave Jonesc4067402009-07-20 17:35:21 +0000324 if EEPROM have been set to the force mode, this option is ignored
325 by driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326*/
327VELOCITY_PARAM(speed_duplex, "Setting the speed and duplex mode");
328
329#define VAL_PKT_LEN_DEF 0
330/* ValPktLen[] is used for setting the checksum offload ability of NIC.
331 0: Receive frame with invalid layer 2 length (Default)
332 1: Drop frame with invalid layer 2 length
333*/
334VELOCITY_PARAM(ValPktLen, "Receiving or Drop invalid 802.3 frame");
335
336#define WOL_OPT_DEF 0
337#define WOL_OPT_MIN 0
338#define WOL_OPT_MAX 7
339/* wol_opts[] is used for controlling wake on lan behavior.
340 0: Wake up if recevied a magic packet. (Default)
341 1: Wake up if link status is on/off.
342 2: Wake up if recevied an arp packet.
343 4: Wake up if recevied any unicast packet.
344 Those value can be sumed up to support more than one option.
345*/
346VELOCITY_PARAM(wol_opts, "Wake On Lan options");
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static int rx_copybreak = 200;
349module_param(rx_copybreak, int, 0644);
350MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/*
353 * Internal board variants. At the moment we have only one
354 */
Andrew Morton4f14b922008-02-09 23:41:40 -0800355static struct velocity_info_tbl chip_info_table[] = {
Jeff Garzikcabb7662006-06-27 09:25:28 -0400356 {CHIP_TYPE_VT6110, "VIA Networking Velocity Family Gigabit Ethernet Adapter", 1, 0x00FFFFFFUL},
357 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
360/*
361 * Describe the PCI device identifiers that we support in this
362 * device driver. Used for hotplug autoloading.
363 */
Jeff Garzike54f4892006-06-27 09:20:08 -0400364static const struct pci_device_id velocity_id_table[] __devinitdata = {
365 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_612X) },
366 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367};
368
369MODULE_DEVICE_TABLE(pci, velocity_id_table);
370
371/**
372 * get_chip_name - identifier to name
373 * @id: chip identifier
374 *
375 * Given a chip identifier return a suitable description. Returns
376 * a pointer a static string valid while the driver is loaded.
377 */
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700378static const char __devinit *get_chip_name(enum chip_type chip_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 int i;
381 for (i = 0; chip_info_table[i].name != NULL; i++)
382 if (chip_info_table[i].chip_id == chip_id)
383 break;
384 return chip_info_table[i].name;
385}
386
387/**
388 * velocity_remove1 - device unplug
389 * @pdev: PCI device being removed
390 *
391 * Device unload callback. Called on an unplug or on module
392 * unload for each active device that is present. Disconnects
393 * the device from the network layer and frees all the resources
394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static void __devexit velocity_remove1(struct pci_dev *pdev)
396{
397 struct net_device *dev = pci_get_drvdata(pdev);
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -0400398 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 unregister_netdev(dev);
401 iounmap(vptr->mac_regs);
402 pci_release_regions(pdev);
403 pci_disable_device(pdev);
404 pci_set_drvdata(pdev, NULL);
405 free_netdev(dev);
406
407 velocity_nics--;
408}
409
410/**
411 * velocity_set_int_opt - parser for integer options
412 * @opt: pointer to option value
413 * @val: value the user requested (or -1 for default)
414 * @min: lowest value allowed
415 * @max: highest value allowed
416 * @def: default value
417 * @name: property name
418 * @dev: device name
419 *
420 * Set an integer property in the module options. This function does
421 * all the verification and checking as well as reporting so that
422 * we don't duplicate code for each option.
423 */
Sven Hartge07b5f6a2008-10-23 13:03:44 +0000424static void __devinit velocity_set_int_opt(int *opt, int val, int min, int max, int def, char *name, const char *devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 if (val == -1)
427 *opt = def;
428 else if (val < min || val > max) {
429 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: the value of parameter %s is invalid, the valid range is (%d-%d)\n",
430 devname, name, min, max);
431 *opt = def;
432 } else {
433 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_INFO "%s: set value of parameter %s to %d\n",
434 devname, name, val);
435 *opt = val;
436 }
437}
438
439/**
440 * velocity_set_bool_opt - parser for boolean options
441 * @opt: pointer to option value
442 * @val: value the user requested (or -1 for default)
443 * @def: default value (yes/no)
444 * @flag: numeric value to set for true.
445 * @name: property name
446 * @dev: device name
447 *
448 * Set a boolean property in the module options. This function does
449 * all the verification and checking as well as reporting so that
450 * we don't duplicate code for each option.
451 */
Dave Jonesc4067402009-07-20 17:35:21 +0000452static void __devinit velocity_set_bool_opt(u32 *opt, int val, int def, u32 flag, char *name, const char *devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 (*opt) &= (~flag);
455 if (val == -1)
456 *opt |= (def ? flag : 0);
457 else if (val < 0 || val > 1) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400458 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 -0700459 devname, name);
460 *opt |= (def ? flag : 0);
461 } else {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400462 printk(KERN_INFO "%s: set parameter %s to %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 devname, name, val ? "TRUE" : "FALSE");
464 *opt |= (val ? flag : 0);
465 }
466}
467
468/**
469 * velocity_get_options - set options on device
470 * @opts: option structure for the device
471 * @index: index of option to use in module options array
472 * @devname: device name
473 *
474 * Turn the module and command options into a single structure
475 * for the current device
476 */
Sven Hartge07b5f6a2008-10-23 13:03:44 +0000477static void __devinit velocity_get_options(struct velocity_opt *opts, int index, const char *devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479
480 velocity_set_int_opt(&opts->rx_thresh, rx_thresh[index], RX_THRESH_MIN, RX_THRESH_MAX, RX_THRESH_DEF, "rx_thresh", devname);
481 velocity_set_int_opt(&opts->DMA_length, DMA_length[index], DMA_LENGTH_MIN, DMA_LENGTH_MAX, DMA_LENGTH_DEF, "DMA_length", devname);
482 velocity_set_int_opt(&opts->numrx, RxDescriptors[index], RX_DESC_MIN, RX_DESC_MAX, RX_DESC_DEF, "RxDescriptors", devname);
483 velocity_set_int_opt(&opts->numtx, TxDescriptors[index], TX_DESC_MIN, TX_DESC_MAX, TX_DESC_DEF, "TxDescriptors", devname);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 velocity_set_int_opt(&opts->flow_cntl, flow_control[index], FLOW_CNTL_MIN, FLOW_CNTL_MAX, FLOW_CNTL_DEF, "flow_control", devname);
486 velocity_set_bool_opt(&opts->flags, IP_byte_align[index], IP_ALIG_DEF, VELOCITY_FLAGS_IP_ALIGN, "IP_byte_align", devname);
487 velocity_set_bool_opt(&opts->flags, ValPktLen[index], VAL_PKT_LEN_DEF, VELOCITY_FLAGS_VAL_PKT_LEN, "ValPktLen", devname);
488 velocity_set_int_opt((int *) &opts->spd_dpx, speed_duplex[index], MED_LNK_MIN, MED_LNK_MAX, MED_LNK_DEF, "Media link mode", devname);
489 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 opts->numrx = (opts->numrx & ~3);
491}
492
493/**
494 * velocity_init_cam_filter - initialise CAM
495 * @vptr: velocity to program
496 *
497 * Initialize the content addressable memory used for filters. Load
498 * appropriately according to the presence of VLAN
499 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500static void velocity_init_cam_filter(struct velocity_info *vptr)
501{
Dave Jonesc4067402009-07-20 17:35:21 +0000502 struct mac_regs __iomem *regs = vptr->mac_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* Turn on MCFG_PQEN, turn off MCFG_RTGOPT */
505 WORD_REG_BITS_SET(MCFG_PQEN, MCFG_RTGOPT, &regs->MCFG);
506 WORD_REG_BITS_ON(MCFG_VIDFR, &regs->MCFG);
507
508 /* Disable all CAMs */
509 memset(vptr->vCAMmask, 0, sizeof(u8) * 8);
510 memset(vptr->mCAMmask, 0, sizeof(u8) * 8);
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700511 mac_set_vlan_cam_mask(regs, vptr->vCAMmask);
512 mac_set_cam_mask(regs, vptr->mCAMmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Francois Romieud4f73c82008-04-24 23:32:33 +0200514 /* Enable VCAMs */
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700515 if (vptr->vlgrp) {
Francois Romieud4f73c82008-04-24 23:32:33 +0200516 unsigned int vid, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Francois Romieud4f73c82008-04-24 23:32:33 +0200518 if (!vlan_group_get_device(vptr->vlgrp, 0))
519 WORD_REG_BITS_ON(MCFG_RTGOPT, &regs->MCFG);
520
521 for (vid = 1; (vid < VLAN_VID_MASK); vid++) {
522 if (vlan_group_get_device(vptr->vlgrp, vid)) {
523 mac_set_vlan_cam(regs, i, (u8 *) &vid);
524 vptr->vCAMmask[i / 8] |= 0x1 << (i % 8);
525 if (++i >= VCAM_SIZE)
526 break;
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700527 }
528 }
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700529 mac_set_vlan_cam_mask(regs, vptr->vCAMmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531}
532
Francois Romieud4f73c82008-04-24 23:32:33 +0200533static void velocity_vlan_rx_register(struct net_device *dev,
534 struct vlan_group *grp)
535{
536 struct velocity_info *vptr = netdev_priv(dev);
537
538 vptr->vlgrp = grp;
539}
540
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700541static void velocity_vlan_rx_add_vid(struct net_device *dev, unsigned short vid)
542{
543 struct velocity_info *vptr = netdev_priv(dev);
544
Dave Jonesc4067402009-07-20 17:35:21 +0000545 spin_lock_irq(&vptr->lock);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700546 velocity_init_cam_filter(vptr);
Dave Jonesc4067402009-07-20 17:35:21 +0000547 spin_unlock_irq(&vptr->lock);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700548}
549
550static void velocity_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
551{
552 struct velocity_info *vptr = netdev_priv(dev);
553
Dave Jonesc4067402009-07-20 17:35:21 +0000554 spin_lock_irq(&vptr->lock);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700555 vlan_group_set_device(vptr->vlgrp, vid, NULL);
556 velocity_init_cam_filter(vptr);
Dave Jonesc4067402009-07-20 17:35:21 +0000557 spin_unlock_irq(&vptr->lock);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700558}
559
Francois Romieu3c4dc712008-07-31 22:51:18 +0200560static void velocity_init_rx_ring_indexes(struct velocity_info *vptr)
561{
562 vptr->rx.dirty = vptr->rx.filled = vptr->rx.curr = 0;
563}
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565/**
566 * velocity_rx_reset - handle a receive reset
567 * @vptr: velocity we are resetting
568 *
569 * Reset the ownership and status for the receive ring side.
570 * Hand all the receive queue to the NIC.
571 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572static void velocity_rx_reset(struct velocity_info *vptr)
573{
574
Dave Jonesc4067402009-07-20 17:35:21 +0000575 struct mac_regs __iomem *regs = vptr->mac_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 int i;
577
Francois Romieu3c4dc712008-07-31 22:51:18 +0200578 velocity_init_rx_ring_indexes(vptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /*
581 * Init state, all RD entries belong to the NIC
582 */
583 for (i = 0; i < vptr->options.numrx; ++i)
Francois Romieu0fe9f152008-07-31 22:10:10 +0200584 vptr->rx.ring[i].rdesc0.len |= OWNED_BY_NIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 writew(vptr->options.numrx, &regs->RBRDU);
Francois Romieu0fe9f152008-07-31 22:10:10 +0200587 writel(vptr->rx.pool_dma, &regs->RDBaseLo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 writew(0, &regs->RDIdx);
589 writew(vptr->options.numrx - 1, &regs->RDCSize);
590}
591
592/**
Dave Jones2cf71d22009-07-23 18:11:12 -0700593 * velocity_get_opt_media_mode - get media selection
594 * @vptr: velocity adapter
595 *
596 * Get the media mode stored in EEPROM or module options and load
597 * mii_status accordingly. The requested link state information
598 * is also returned.
599 */
600static u32 velocity_get_opt_media_mode(struct velocity_info *vptr)
601{
602 u32 status = 0;
603
604 switch (vptr->options.spd_dpx) {
605 case SPD_DPX_AUTO:
606 status = VELOCITY_AUTONEG_ENABLE;
607 break;
608 case SPD_DPX_100_FULL:
609 status = VELOCITY_SPEED_100 | VELOCITY_DUPLEX_FULL;
610 break;
611 case SPD_DPX_10_FULL:
612 status = VELOCITY_SPEED_10 | VELOCITY_DUPLEX_FULL;
613 break;
614 case SPD_DPX_100_HALF:
615 status = VELOCITY_SPEED_100;
616 break;
617 case SPD_DPX_10_HALF:
618 status = VELOCITY_SPEED_10;
619 break;
620 }
621 vptr->mii_status = status;
622 return status;
623}
624
625/**
626 * safe_disable_mii_autopoll - autopoll off
627 * @regs: velocity registers
628 *
629 * Turn off the autopoll and wait for it to disable on the chip
630 */
631static void safe_disable_mii_autopoll(struct mac_regs __iomem *regs)
632{
633 u16 ww;
634
635 /* turn off MAUTO */
636 writeb(0, &regs->MIICR);
637 for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
638 udelay(1);
639 if (BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
640 break;
641 }
642}
643
644/**
645 * enable_mii_autopoll - turn on autopolling
646 * @regs: velocity registers
647 *
648 * Enable the MII link status autopoll feature on the Velocity
649 * hardware. Wait for it to enable.
650 */
651static void enable_mii_autopoll(struct mac_regs __iomem *regs)
652{
653 int ii;
654
655 writeb(0, &(regs->MIICR));
656 writeb(MIIADR_SWMPL, &regs->MIIADR);
657
658 for (ii = 0; ii < W_MAX_TIMEOUT; ii++) {
659 udelay(1);
660 if (BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
661 break;
662 }
663
664 writeb(MIICR_MAUTO, &regs->MIICR);
665
666 for (ii = 0; ii < W_MAX_TIMEOUT; ii++) {
667 udelay(1);
668 if (!BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
669 break;
670 }
671
672}
673
674/**
675 * velocity_mii_read - read MII data
676 * @regs: velocity registers
677 * @index: MII register index
678 * @data: buffer for received data
679 *
680 * Perform a single read of an MII 16bit register. Returns zero
681 * on success or -ETIMEDOUT if the PHY did not respond.
682 */
683static int velocity_mii_read(struct mac_regs __iomem *regs, u8 index, u16 *data)
684{
685 u16 ww;
686
687 /*
688 * Disable MIICR_MAUTO, so that mii addr can be set normally
689 */
690 safe_disable_mii_autopoll(regs);
691
692 writeb(index, &regs->MIIADR);
693
694 BYTE_REG_BITS_ON(MIICR_RCMD, &regs->MIICR);
695
696 for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
697 if (!(readb(&regs->MIICR) & MIICR_RCMD))
698 break;
699 }
700
701 *data = readw(&regs->MIIDATA);
702
703 enable_mii_autopoll(regs);
704 if (ww == W_MAX_TIMEOUT)
705 return -ETIMEDOUT;
706 return 0;
707}
708
709
710/**
711 * mii_check_media_mode - check media state
712 * @regs: velocity registers
713 *
714 * Check the current MII status and determine the link status
715 * accordingly
716 */
717static u32 mii_check_media_mode(struct mac_regs __iomem *regs)
718{
719 u32 status = 0;
720 u16 ANAR;
721
722 if (!MII_REG_BITS_IS_ON(BMSR_LNK, MII_REG_BMSR, regs))
723 status |= VELOCITY_LINK_FAIL;
724
725 if (MII_REG_BITS_IS_ON(G1000CR_1000FD, MII_REG_G1000CR, regs))
726 status |= VELOCITY_SPEED_1000 | VELOCITY_DUPLEX_FULL;
727 else if (MII_REG_BITS_IS_ON(G1000CR_1000, MII_REG_G1000CR, regs))
728 status |= (VELOCITY_SPEED_1000);
729 else {
730 velocity_mii_read(regs, MII_REG_ANAR, &ANAR);
731 if (ANAR & ANAR_TXFD)
732 status |= (VELOCITY_SPEED_100 | VELOCITY_DUPLEX_FULL);
733 else if (ANAR & ANAR_TX)
734 status |= VELOCITY_SPEED_100;
735 else if (ANAR & ANAR_10FD)
736 status |= (VELOCITY_SPEED_10 | VELOCITY_DUPLEX_FULL);
737 else
738 status |= (VELOCITY_SPEED_10);
739 }
740
741 if (MII_REG_BITS_IS_ON(BMCR_AUTO, MII_REG_BMCR, regs)) {
742 velocity_mii_read(regs, MII_REG_ANAR, &ANAR);
743 if ((ANAR & (ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10))
744 == (ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10)) {
745 if (MII_REG_BITS_IS_ON(G1000CR_1000 | G1000CR_1000FD, MII_REG_G1000CR, regs))
746 status |= VELOCITY_AUTONEG_ENABLE;
747 }
748 }
749
750 return status;
751}
752
753/**
754 * velocity_mii_write - write MII data
755 * @regs: velocity registers
756 * @index: MII register index
757 * @data: 16bit data for the MII register
758 *
759 * Perform a single write to an MII 16bit register. Returns zero
760 * on success or -ETIMEDOUT if the PHY did not respond.
761 */
762static int velocity_mii_write(struct mac_regs __iomem *regs, u8 mii_addr, u16 data)
763{
764 u16 ww;
765
766 /*
767 * Disable MIICR_MAUTO, so that mii addr can be set normally
768 */
769 safe_disable_mii_autopoll(regs);
770
771 /* MII reg offset */
772 writeb(mii_addr, &regs->MIIADR);
773 /* set MII data */
774 writew(data, &regs->MIIDATA);
775
776 /* turn on MIICR_WCMD */
777 BYTE_REG_BITS_ON(MIICR_WCMD, &regs->MIICR);
778
779 /* W_MAX_TIMEOUT is the timeout period */
780 for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
781 udelay(5);
782 if (!(readb(&regs->MIICR) & MIICR_WCMD))
783 break;
784 }
785 enable_mii_autopoll(regs);
786
787 if (ww == W_MAX_TIMEOUT)
788 return -ETIMEDOUT;
789 return 0;
790}
791
792/**
793 * set_mii_flow_control - flow control setup
794 * @vptr: velocity interface
795 *
796 * Set up the flow control on this interface according to
797 * the supplied user/eeprom options.
798 */
799static void set_mii_flow_control(struct velocity_info *vptr)
800{
801 /*Enable or Disable PAUSE in ANAR */
802 switch (vptr->options.flow_cntl) {
803 case FLOW_CNTL_TX:
804 MII_REG_BITS_OFF(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs);
805 MII_REG_BITS_ON(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs);
806 break;
807
808 case FLOW_CNTL_RX:
809 MII_REG_BITS_ON(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs);
810 MII_REG_BITS_ON(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs);
811 break;
812
813 case FLOW_CNTL_TX_RX:
814 MII_REG_BITS_ON(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs);
815 MII_REG_BITS_ON(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs);
816 break;
817
818 case FLOW_CNTL_DISABLE:
819 MII_REG_BITS_OFF(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs);
820 MII_REG_BITS_OFF(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs);
821 break;
822 default:
823 break;
824 }
825}
826
827/**
828 * mii_set_auto_on - autonegotiate on
829 * @vptr: velocity
830 *
831 * Enable autonegotation on this interface
832 */
833static void mii_set_auto_on(struct velocity_info *vptr)
834{
835 if (MII_REG_BITS_IS_ON(BMCR_AUTO, MII_REG_BMCR, vptr->mac_regs))
836 MII_REG_BITS_ON(BMCR_REAUTO, MII_REG_BMCR, vptr->mac_regs);
837 else
838 MII_REG_BITS_ON(BMCR_AUTO, MII_REG_BMCR, vptr->mac_regs);
839}
840
841static u32 check_connection_type(struct mac_regs __iomem *regs)
842{
843 u32 status = 0;
844 u8 PHYSR0;
845 u16 ANAR;
846 PHYSR0 = readb(&regs->PHYSR0);
847
848 /*
849 if (!(PHYSR0 & PHYSR0_LINKGD))
850 status|=VELOCITY_LINK_FAIL;
851 */
852
853 if (PHYSR0 & PHYSR0_FDPX)
854 status |= VELOCITY_DUPLEX_FULL;
855
856 if (PHYSR0 & PHYSR0_SPDG)
857 status |= VELOCITY_SPEED_1000;
858 else if (PHYSR0 & PHYSR0_SPD10)
859 status |= VELOCITY_SPEED_10;
860 else
861 status |= VELOCITY_SPEED_100;
862
863 if (MII_REG_BITS_IS_ON(BMCR_AUTO, MII_REG_BMCR, regs)) {
864 velocity_mii_read(regs, MII_REG_ANAR, &ANAR);
865 if ((ANAR & (ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10))
866 == (ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10)) {
867 if (MII_REG_BITS_IS_ON(G1000CR_1000 | G1000CR_1000FD, MII_REG_G1000CR, regs))
868 status |= VELOCITY_AUTONEG_ENABLE;
869 }
870 }
871
872 return status;
873}
874
875
876
877/**
878 * velocity_set_media_mode - set media mode
879 * @mii_status: old MII link state
880 *
881 * Check the media link state and configure the flow control
882 * PHY and also velocity hardware setup accordingly. In particular
883 * we need to set up CD polling and frame bursting.
884 */
885static int velocity_set_media_mode(struct velocity_info *vptr, u32 mii_status)
886{
887 u32 curr_status;
888 struct mac_regs __iomem *regs = vptr->mac_regs;
889
890 vptr->mii_status = mii_check_media_mode(vptr->mac_regs);
891 curr_status = vptr->mii_status & (~VELOCITY_LINK_FAIL);
892
893 /* Set mii link status */
894 set_mii_flow_control(vptr);
895
896 /*
897 Check if new status is consisent with current status
Joe Perches8e95a202009-12-03 07:58:21 +0000898 if (((mii_status & curr_status) & VELOCITY_AUTONEG_ENABLE) ||
899 (mii_status==curr_status)) {
Dave Jones2cf71d22009-07-23 18:11:12 -0700900 vptr->mii_status=mii_check_media_mode(vptr->mac_regs);
901 vptr->mii_status=check_connection_type(vptr->mac_regs);
902 VELOCITY_PRT(MSG_LEVEL_INFO, "Velocity link no change\n");
903 return 0;
904 }
905 */
906
907 if (PHYID_GET_PHY_ID(vptr->phy_id) == PHYID_CICADA_CS8201)
908 MII_REG_BITS_ON(AUXCR_MDPPS, MII_REG_AUXCR, vptr->mac_regs);
909
910 /*
911 * If connection type is AUTO
912 */
913 if (mii_status & VELOCITY_AUTONEG_ENABLE) {
914 VELOCITY_PRT(MSG_LEVEL_INFO, "Velocity is AUTO mode\n");
915 /* clear force MAC mode bit */
916 BYTE_REG_BITS_OFF(CHIPGCR_FCMODE, &regs->CHIPGCR);
917 /* set duplex mode of MAC according to duplex mode of MII */
918 MII_REG_BITS_ON(ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10, MII_REG_ANAR, vptr->mac_regs);
919 MII_REG_BITS_ON(G1000CR_1000FD | G1000CR_1000, MII_REG_G1000CR, vptr->mac_regs);
920 MII_REG_BITS_ON(BMCR_SPEED1G, MII_REG_BMCR, vptr->mac_regs);
921
922 /* enable AUTO-NEGO mode */
923 mii_set_auto_on(vptr);
924 } else {
925 u16 ANAR;
926 u8 CHIPGCR;
927
928 /*
929 * 1. if it's 3119, disable frame bursting in halfduplex mode
930 * and enable it in fullduplex mode
931 * 2. set correct MII/GMII and half/full duplex mode in CHIPGCR
932 * 3. only enable CD heart beat counter in 10HD mode
933 */
934
935 /* set force MAC mode bit */
936 BYTE_REG_BITS_ON(CHIPGCR_FCMODE, &regs->CHIPGCR);
937
938 CHIPGCR = readb(&regs->CHIPGCR);
939 CHIPGCR &= ~CHIPGCR_FCGMII;
940
941 if (mii_status & VELOCITY_DUPLEX_FULL) {
942 CHIPGCR |= CHIPGCR_FCFDX;
943 writeb(CHIPGCR, &regs->CHIPGCR);
944 VELOCITY_PRT(MSG_LEVEL_INFO, "set Velocity to forced full mode\n");
945 if (vptr->rev_id < REV_ID_VT3216_A0)
946 BYTE_REG_BITS_OFF(TCR_TB2BDIS, &regs->TCR);
947 } else {
948 CHIPGCR &= ~CHIPGCR_FCFDX;
949 VELOCITY_PRT(MSG_LEVEL_INFO, "set Velocity to forced half mode\n");
950 writeb(CHIPGCR, &regs->CHIPGCR);
951 if (vptr->rev_id < REV_ID_VT3216_A0)
952 BYTE_REG_BITS_ON(TCR_TB2BDIS, &regs->TCR);
953 }
954
955 MII_REG_BITS_OFF(G1000CR_1000FD | G1000CR_1000, MII_REG_G1000CR, vptr->mac_regs);
956
957 if (!(mii_status & VELOCITY_DUPLEX_FULL) && (mii_status & VELOCITY_SPEED_10))
958 BYTE_REG_BITS_OFF(TESTCFG_HBDIS, &regs->TESTCFG);
959 else
960 BYTE_REG_BITS_ON(TESTCFG_HBDIS, &regs->TESTCFG);
961
962 /* MII_REG_BITS_OFF(BMCR_SPEED1G, MII_REG_BMCR, vptr->mac_regs); */
963 velocity_mii_read(vptr->mac_regs, MII_REG_ANAR, &ANAR);
964 ANAR &= (~(ANAR_TXFD | ANAR_TX | ANAR_10FD | ANAR_10));
965 if (mii_status & VELOCITY_SPEED_100) {
966 if (mii_status & VELOCITY_DUPLEX_FULL)
967 ANAR |= ANAR_TXFD;
968 else
969 ANAR |= ANAR_TX;
970 } else {
971 if (mii_status & VELOCITY_DUPLEX_FULL)
972 ANAR |= ANAR_10FD;
973 else
974 ANAR |= ANAR_10;
975 }
976 velocity_mii_write(vptr->mac_regs, MII_REG_ANAR, ANAR);
977 /* enable AUTO-NEGO mode */
978 mii_set_auto_on(vptr);
979 /* MII_REG_BITS_ON(BMCR_AUTO, MII_REG_BMCR, vptr->mac_regs); */
980 }
981 /* vptr->mii_status=mii_check_media_mode(vptr->mac_regs); */
982 /* vptr->mii_status=check_connection_type(vptr->mac_regs); */
983 return VELOCITY_LINK_CHANGE;
984}
985
986/**
987 * velocity_print_link_status - link status reporting
988 * @vptr: velocity to report on
989 *
990 * Turn the link status of the velocity card into a kernel log
991 * description of the new link state, detailing speed and duplex
992 * status
993 */
994static void velocity_print_link_status(struct velocity_info *vptr)
995{
996
997 if (vptr->mii_status & VELOCITY_LINK_FAIL) {
998 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: failed to detect cable link\n", vptr->dev->name);
999 } else if (vptr->options.spd_dpx == SPD_DPX_AUTO) {
1000 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: Link auto-negotiation", vptr->dev->name);
1001
1002 if (vptr->mii_status & VELOCITY_SPEED_1000)
1003 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 1000M bps");
1004 else if (vptr->mii_status & VELOCITY_SPEED_100)
1005 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps");
1006 else
1007 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps");
1008
1009 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
1010 VELOCITY_PRT(MSG_LEVEL_INFO, " full duplex\n");
1011 else
1012 VELOCITY_PRT(MSG_LEVEL_INFO, " half duplex\n");
1013 } else {
1014 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: Link forced", vptr->dev->name);
1015 switch (vptr->options.spd_dpx) {
1016 case SPD_DPX_100_HALF:
1017 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps half duplex\n");
1018 break;
1019 case SPD_DPX_100_FULL:
1020 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps full duplex\n");
1021 break;
1022 case SPD_DPX_10_HALF:
1023 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps half duplex\n");
1024 break;
1025 case SPD_DPX_10_FULL:
1026 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps full duplex\n");
1027 break;
1028 default:
1029 break;
1030 }
1031 }
1032}
1033
1034/**
1035 * enable_flow_control_ability - flow control
1036 * @vptr: veloity to configure
1037 *
1038 * Set up flow control according to the flow control options
1039 * determined by the eeprom/configuration.
1040 */
1041static void enable_flow_control_ability(struct velocity_info *vptr)
1042{
1043
1044 struct mac_regs __iomem *regs = vptr->mac_regs;
1045
1046 switch (vptr->options.flow_cntl) {
1047
1048 case FLOW_CNTL_DEFAULT:
1049 if (BYTE_REG_BITS_IS_ON(PHYSR0_RXFLC, &regs->PHYSR0))
1050 writel(CR0_FDXRFCEN, &regs->CR0Set);
1051 else
1052 writel(CR0_FDXRFCEN, &regs->CR0Clr);
1053
1054 if (BYTE_REG_BITS_IS_ON(PHYSR0_TXFLC, &regs->PHYSR0))
1055 writel(CR0_FDXTFCEN, &regs->CR0Set);
1056 else
1057 writel(CR0_FDXTFCEN, &regs->CR0Clr);
1058 break;
1059
1060 case FLOW_CNTL_TX:
1061 writel(CR0_FDXTFCEN, &regs->CR0Set);
1062 writel(CR0_FDXRFCEN, &regs->CR0Clr);
1063 break;
1064
1065 case FLOW_CNTL_RX:
1066 writel(CR0_FDXRFCEN, &regs->CR0Set);
1067 writel(CR0_FDXTFCEN, &regs->CR0Clr);
1068 break;
1069
1070 case FLOW_CNTL_TX_RX:
1071 writel(CR0_FDXTFCEN, &regs->CR0Set);
1072 writel(CR0_FDXRFCEN, &regs->CR0Set);
1073 break;
1074
1075 case FLOW_CNTL_DISABLE:
1076 writel(CR0_FDXRFCEN, &regs->CR0Clr);
1077 writel(CR0_FDXTFCEN, &regs->CR0Clr);
1078 break;
1079
1080 default:
1081 break;
1082 }
1083
1084}
1085
1086/**
1087 * velocity_soft_reset - soft reset
1088 * @vptr: velocity to reset
1089 *
1090 * Kick off a soft reset of the velocity adapter and then poll
1091 * until the reset sequence has completed before returning.
1092 */
1093static int velocity_soft_reset(struct velocity_info *vptr)
1094{
1095 struct mac_regs __iomem *regs = vptr->mac_regs;
1096 int i = 0;
1097
1098 writel(CR0_SFRST, &regs->CR0Set);
1099
1100 for (i = 0; i < W_MAX_TIMEOUT; i++) {
1101 udelay(5);
1102 if (!DWORD_REG_BITS_IS_ON(CR0_SFRST, &regs->CR0Set))
1103 break;
1104 }
1105
1106 if (i == W_MAX_TIMEOUT) {
1107 writel(CR0_FORSRST, &regs->CR0Set);
1108 /* FIXME: PCI POSTING */
1109 /* delay 2ms */
1110 mdelay(2);
1111 }
1112 return 0;
1113}
1114
1115/**
1116 * velocity_set_multi - filter list change callback
1117 * @dev: network device
1118 *
1119 * Called by the network layer when the filter lists need to change
1120 * for a velocity adapter. Reload the CAMs with the new address
1121 * filter ruleset.
1122 */
1123static void velocity_set_multi(struct net_device *dev)
1124{
1125 struct velocity_info *vptr = netdev_priv(dev);
1126 struct mac_regs __iomem *regs = vptr->mac_regs;
1127 u8 rx_mode;
1128 int i;
1129 struct dev_mc_list *mclist;
1130
1131 if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
1132 writel(0xffffffff, &regs->MARCAM[0]);
1133 writel(0xffffffff, &regs->MARCAM[4]);
1134 rx_mode = (RCR_AM | RCR_AB | RCR_PROM);
Joe Perches8e95a202009-12-03 07:58:21 +00001135 } else if ((dev->mc_count > vptr->multicast_limit) ||
1136 (dev->flags & IFF_ALLMULTI)) {
Dave Jones2cf71d22009-07-23 18:11:12 -07001137 writel(0xffffffff, &regs->MARCAM[0]);
1138 writel(0xffffffff, &regs->MARCAM[4]);
1139 rx_mode = (RCR_AM | RCR_AB);
1140 } else {
1141 int offset = MCAM_SIZE - vptr->multicast_limit;
1142 mac_get_cam_mask(regs, vptr->mCAMmask);
1143
1144 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count; i++, mclist = mclist->next) {
1145 mac_set_cam(regs, i + offset, mclist->dmi_addr);
1146 vptr->mCAMmask[(offset + i) / 8] |= 1 << ((offset + i) & 7);
1147 }
1148
1149 mac_set_cam_mask(regs, vptr->mCAMmask);
1150 rx_mode = RCR_AM | RCR_AB | RCR_AP;
1151 }
1152 if (dev->mtu > 1500)
1153 rx_mode |= RCR_AL;
1154
1155 BYTE_REG_BITS_ON(rx_mode, &regs->RCR);
1156
1157}
1158
1159/*
1160 * MII access , media link mode setting functions
1161 */
1162
1163/**
1164 * mii_init - set up MII
1165 * @vptr: velocity adapter
1166 * @mii_status: links tatus
1167 *
1168 * Set up the PHY for the current link state.
1169 */
1170static void mii_init(struct velocity_info *vptr, u32 mii_status)
1171{
1172 u16 BMCR;
1173
1174 switch (PHYID_GET_PHY_ID(vptr->phy_id)) {
1175 case PHYID_CICADA_CS8201:
1176 /*
1177 * Reset to hardware default
1178 */
1179 MII_REG_BITS_OFF((ANAR_ASMDIR | ANAR_PAUSE), MII_REG_ANAR, vptr->mac_regs);
1180 /*
1181 * Turn on ECHODIS bit in NWay-forced full mode and turn it
1182 * off it in NWay-forced half mode for NWay-forced v.s.
1183 * legacy-forced issue.
1184 */
1185 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
1186 MII_REG_BITS_ON(TCSR_ECHODIS, MII_REG_TCSR, vptr->mac_regs);
1187 else
1188 MII_REG_BITS_OFF(TCSR_ECHODIS, MII_REG_TCSR, vptr->mac_regs);
1189 /*
1190 * Turn on Link/Activity LED enable bit for CIS8201
1191 */
1192 MII_REG_BITS_ON(PLED_LALBE, MII_REG_PLED, vptr->mac_regs);
1193 break;
1194 case PHYID_VT3216_32BIT:
1195 case PHYID_VT3216_64BIT:
1196 /*
1197 * Reset to hardware default
1198 */
1199 MII_REG_BITS_ON((ANAR_ASMDIR | ANAR_PAUSE), MII_REG_ANAR, vptr->mac_regs);
1200 /*
1201 * Turn on ECHODIS bit in NWay-forced full mode and turn it
1202 * off it in NWay-forced half mode for NWay-forced v.s.
1203 * legacy-forced issue
1204 */
1205 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
1206 MII_REG_BITS_ON(TCSR_ECHODIS, MII_REG_TCSR, vptr->mac_regs);
1207 else
1208 MII_REG_BITS_OFF(TCSR_ECHODIS, MII_REG_TCSR, vptr->mac_regs);
1209 break;
1210
1211 case PHYID_MARVELL_1000:
1212 case PHYID_MARVELL_1000S:
1213 /*
1214 * Assert CRS on Transmit
1215 */
1216 MII_REG_BITS_ON(PSCR_ACRSTX, MII_REG_PSCR, vptr->mac_regs);
1217 /*
1218 * Reset to hardware default
1219 */
1220 MII_REG_BITS_ON((ANAR_ASMDIR | ANAR_PAUSE), MII_REG_ANAR, vptr->mac_regs);
1221 break;
1222 default:
1223 ;
1224 }
1225 velocity_mii_read(vptr->mac_regs, MII_REG_BMCR, &BMCR);
1226 if (BMCR & BMCR_ISO) {
1227 BMCR &= ~BMCR_ISO;
1228 velocity_mii_write(vptr->mac_regs, MII_REG_BMCR, BMCR);
1229 }
1230}
1231
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00001232/**
1233 * setup_queue_timers - Setup interrupt timers
1234 *
1235 * Setup interrupt frequency during suppression (timeout if the frame
1236 * count isn't filled).
1237 */
1238static void setup_queue_timers(struct velocity_info *vptr)
1239{
1240 /* Only for newer revisions */
1241 if (vptr->rev_id >= REV_ID_VT3216_A0) {
1242 u8 txqueue_timer = 0;
1243 u8 rxqueue_timer = 0;
1244
1245 if (vptr->mii_status & (VELOCITY_SPEED_1000 |
1246 VELOCITY_SPEED_100)) {
1247 txqueue_timer = vptr->options.txqueue_timer;
1248 rxqueue_timer = vptr->options.rxqueue_timer;
1249 }
1250
1251 writeb(txqueue_timer, &vptr->mac_regs->TQETMR);
1252 writeb(rxqueue_timer, &vptr->mac_regs->RQETMR);
1253 }
1254}
1255/**
1256 * setup_adaptive_interrupts - Setup interrupt suppression
1257 *
1258 * @vptr velocity adapter
1259 *
1260 * The velocity is able to suppress interrupt during high interrupt load.
1261 * This function turns on that feature.
1262 */
1263static void setup_adaptive_interrupts(struct velocity_info *vptr)
1264{
1265 struct mac_regs __iomem *regs = vptr->mac_regs;
1266 u16 tx_intsup = vptr->options.tx_intsup;
1267 u16 rx_intsup = vptr->options.rx_intsup;
1268
1269 /* Setup default interrupt mask (will be changed below) */
1270 vptr->int_mask = INT_MASK_DEF;
1271
1272 /* Set Tx Interrupt Suppression Threshold */
1273 writeb(CAMCR_PS0, &regs->CAMCR);
1274 if (tx_intsup != 0) {
1275 vptr->int_mask &= ~(ISR_PTXI | ISR_PTX0I | ISR_PTX1I |
1276 ISR_PTX2I | ISR_PTX3I);
1277 writew(tx_intsup, &regs->ISRCTL);
1278 } else
1279 writew(ISRCTL_TSUPDIS, &regs->ISRCTL);
1280
1281 /* Set Rx Interrupt Suppression Threshold */
1282 writeb(CAMCR_PS1, &regs->CAMCR);
1283 if (rx_intsup != 0) {
1284 vptr->int_mask &= ~ISR_PRXI;
1285 writew(rx_intsup, &regs->ISRCTL);
1286 } else
1287 writew(ISRCTL_RSUPDIS, &regs->ISRCTL);
1288
1289 /* Select page to interrupt hold timer */
1290 writeb(0, &regs->CAMCR);
1291}
Dave Jones2cf71d22009-07-23 18:11:12 -07001292
1293/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 * velocity_init_registers - initialise MAC registers
1295 * @vptr: velocity to init
1296 * @type: type of initialisation (hot or cold)
1297 *
1298 * Initialise the MAC on a reset or on first set up on the
1299 * hardware.
1300 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001301static void velocity_init_registers(struct velocity_info *vptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 enum velocity_init_type type)
1303{
Dave Jonesc4067402009-07-20 17:35:21 +00001304 struct mac_regs __iomem *regs = vptr->mac_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 int i, mii_status;
1306
1307 mac_wol_reset(regs);
1308
1309 switch (type) {
1310 case VELOCITY_INIT_RESET:
1311 case VELOCITY_INIT_WOL:
1312
1313 netif_stop_queue(vptr->dev);
1314
1315 /*
1316 * Reset RX to prevent RX pointer not on the 4X location
1317 */
1318 velocity_rx_reset(vptr);
1319 mac_rx_queue_run(regs);
1320 mac_rx_queue_wake(regs);
1321
1322 mii_status = velocity_get_opt_media_mode(vptr);
1323 if (velocity_set_media_mode(vptr, mii_status) != VELOCITY_LINK_CHANGE) {
1324 velocity_print_link_status(vptr);
1325 if (!(vptr->mii_status & VELOCITY_LINK_FAIL))
1326 netif_wake_queue(vptr->dev);
1327 }
1328
1329 enable_flow_control_ability(vptr);
1330
1331 mac_clear_isr(regs);
1332 writel(CR0_STOP, &regs->CR0Clr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001333 writel((CR0_DPOLL | CR0_TXON | CR0_RXON | CR0_STRT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 &regs->CR0Set);
1335
1336 break;
1337
1338 case VELOCITY_INIT_COLD:
1339 default:
1340 /*
1341 * Do reset
1342 */
1343 velocity_soft_reset(vptr);
1344 mdelay(5);
1345
1346 mac_eeprom_reload(regs);
Dave Jonesc4067402009-07-20 17:35:21 +00001347 for (i = 0; i < 6; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 writeb(vptr->dev->dev_addr[i], &(regs->PAR[i]));
Dave Jonesc4067402009-07-20 17:35:21 +00001349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 /*
1351 * clear Pre_ACPI bit.
1352 */
1353 BYTE_REG_BITS_OFF(CFGA_PACPI, &(regs->CFGA));
1354 mac_set_rx_thresh(regs, vptr->options.rx_thresh);
1355 mac_set_dma_length(regs, vptr->options.DMA_length);
1356
1357 writeb(WOLCFG_SAM | WOLCFG_SAB, &regs->WOLCFGSet);
1358 /*
1359 * Back off algorithm use original IEEE standard
1360 */
1361 BYTE_REG_BITS_SET(CFGB_OFSET, (CFGB_CRANDOM | CFGB_CAP | CFGB_MBA | CFGB_BAKOPT), &regs->CFGB);
1362
1363 /*
1364 * Init CAM filter
1365 */
1366 velocity_init_cam_filter(vptr);
1367
1368 /*
1369 * Set packet filter: Receive directed and broadcast address
1370 */
1371 velocity_set_multi(vptr->dev);
1372
1373 /*
1374 * Enable MII auto-polling
1375 */
1376 enable_mii_autopoll(regs);
1377
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00001378 setup_adaptive_interrupts(vptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Francois Romieu0fe9f152008-07-31 22:10:10 +02001380 writel(vptr->rx.pool_dma, &regs->RDBaseLo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 writew(vptr->options.numrx - 1, &regs->RDCSize);
1382 mac_rx_queue_run(regs);
1383 mac_rx_queue_wake(regs);
1384
1385 writew(vptr->options.numtx - 1, &regs->TDCSize);
1386
Francois Romieu0fe9f152008-07-31 22:10:10 +02001387 for (i = 0; i < vptr->tx.numq; i++) {
1388 writel(vptr->tx.pool_dma[i], &regs->TDBaseLo[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 mac_tx_queue_run(regs, i);
1390 }
1391
1392 init_flow_control_register(vptr);
1393
1394 writel(CR0_STOP, &regs->CR0Clr);
1395 writel((CR0_DPOLL | CR0_TXON | CR0_RXON | CR0_STRT), &regs->CR0Set);
1396
1397 mii_status = velocity_get_opt_media_mode(vptr);
1398 netif_stop_queue(vptr->dev);
1399
1400 mii_init(vptr, mii_status);
1401
1402 if (velocity_set_media_mode(vptr, mii_status) != VELOCITY_LINK_CHANGE) {
1403 velocity_print_link_status(vptr);
1404 if (!(vptr->mii_status & VELOCITY_LINK_FAIL))
1405 netif_wake_queue(vptr->dev);
1406 }
1407
1408 enable_flow_control_ability(vptr);
1409 mac_hw_mibs_init(regs);
1410 mac_write_int_mask(vptr->int_mask, regs);
1411 mac_clear_isr(regs);
1412
1413 }
1414}
1415
Dave Jones2cf71d22009-07-23 18:11:12 -07001416static void velocity_give_many_rx_descs(struct velocity_info *vptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Dave Jonesc4067402009-07-20 17:35:21 +00001418 struct mac_regs __iomem *regs = vptr->mac_regs;
Dave Jones2cf71d22009-07-23 18:11:12 -07001419 int avail, dirty, unusable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Dave Jones2cf71d22009-07-23 18:11:12 -07001421 /*
1422 * RD number must be equal to 4X per hardware spec
1423 * (programming guide rev 1.20, p.13)
1424 */
1425 if (vptr->rx.filled < 4)
1426 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Dave Jones2cf71d22009-07-23 18:11:12 -07001428 wmb();
1429
1430 unusable = vptr->rx.filled & 0x0003;
1431 dirty = vptr->rx.dirty - unusable;
1432 for (avail = vptr->rx.filled & 0xfffc; avail; avail--) {
1433 dirty = (dirty > 0) ? dirty - 1 : vptr->options.numrx - 1;
1434 vptr->rx.ring[dirty].rdesc0.len |= OWNED_BY_NIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
Dave Jones2cf71d22009-07-23 18:11:12 -07001437 writew(vptr->rx.filled & 0xfffc, &regs->RBRDU);
1438 vptr->rx.filled = unusable;
1439}
1440
1441/**
1442 * velocity_init_dma_rings - set up DMA rings
1443 * @vptr: Velocity to set up
1444 *
1445 * Allocate PCI mapped DMA rings for the receive and transmit layer
1446 * to use.
1447 */
1448static int velocity_init_dma_rings(struct velocity_info *vptr)
1449{
1450 struct velocity_opt *opt = &vptr->options;
1451 const unsigned int rx_ring_size = opt->numrx * sizeof(struct rx_desc);
1452 const unsigned int tx_ring_size = opt->numtx * sizeof(struct tx_desc);
1453 struct pci_dev *pdev = vptr->pdev;
1454 dma_addr_t pool_dma;
1455 void *pool;
1456 unsigned int i;
1457
1458 /*
1459 * Allocate all RD/TD rings a single pool.
1460 *
1461 * pci_alloc_consistent() fulfills the requirement for 64 bytes
1462 * alignment
1463 */
1464 pool = pci_alloc_consistent(pdev, tx_ring_size * vptr->tx.numq +
1465 rx_ring_size, &pool_dma);
1466 if (!pool) {
1467 dev_err(&pdev->dev, "%s : DMA memory allocation failed.\n",
1468 vptr->dev->name);
1469 return -ENOMEM;
1470 }
1471
1472 vptr->rx.ring = pool;
1473 vptr->rx.pool_dma = pool_dma;
1474
1475 pool += rx_ring_size;
1476 pool_dma += rx_ring_size;
1477
1478 for (i = 0; i < vptr->tx.numq; i++) {
1479 vptr->tx.rings[i] = pool;
1480 vptr->tx.pool_dma[i] = pool_dma;
1481 pool += tx_ring_size;
1482 pool_dma += tx_ring_size;
1483 }
1484
1485 return 0;
1486}
1487
1488static void velocity_set_rxbufsize(struct velocity_info *vptr, int mtu)
1489{
1490 vptr->rx.buf_sz = (mtu <= ETH_DATA_LEN) ? PKT_BUF_SZ : mtu + 32;
1491}
1492
1493/**
1494 * velocity_alloc_rx_buf - allocate aligned receive buffer
1495 * @vptr: velocity
1496 * @idx: ring index
1497 *
1498 * Allocate a new full sized buffer for the reception of a frame and
1499 * map it into PCI space for the hardware to use. The hardware
1500 * requires *64* byte alignment of the buffer which makes life
1501 * less fun than would be ideal.
1502 */
1503static int velocity_alloc_rx_buf(struct velocity_info *vptr, int idx)
1504{
1505 struct rx_desc *rd = &(vptr->rx.ring[idx]);
1506 struct velocity_rd_info *rd_info = &(vptr->rx.info[idx]);
1507
1508 rd_info->skb = dev_alloc_skb(vptr->rx.buf_sz + 64);
1509 if (rd_info->skb == NULL)
1510 return -ENOMEM;
1511
1512 /*
1513 * Do the gymnastics to get the buffer head for data at
1514 * 64byte alignment.
1515 */
Simon Kagstromda95b2d2009-11-25 22:09:53 +00001516 skb_reserve(rd_info->skb,
1517 64 - ((unsigned long) rd_info->skb->data & 63));
Dave Jones2cf71d22009-07-23 18:11:12 -07001518 rd_info->skb_dma = pci_map_single(vptr->pdev, rd_info->skb->data,
1519 vptr->rx.buf_sz, PCI_DMA_FROMDEVICE);
1520
1521 /*
1522 * Fill in the descriptor to match
1523 */
1524
1525 *((u32 *) & (rd->rdesc0)) = 0;
1526 rd->size = cpu_to_le16(vptr->rx.buf_sz) | RX_INTEN;
1527 rd->pa_low = cpu_to_le32(rd_info->skb_dma);
1528 rd->pa_high = 0;
1529 return 0;
1530}
1531
1532
1533static int velocity_rx_refill(struct velocity_info *vptr)
1534{
1535 int dirty = vptr->rx.dirty, done = 0;
1536
1537 do {
1538 struct rx_desc *rd = vptr->rx.ring + dirty;
1539
1540 /* Fine for an all zero Rx desc at init time as well */
1541 if (rd->rdesc0.len & OWNED_BY_NIC)
1542 break;
1543
1544 if (!vptr->rx.info[dirty].skb) {
1545 if (velocity_alloc_rx_buf(vptr, dirty) < 0)
1546 break;
1547 }
1548 done++;
1549 dirty = (dirty < vptr->options.numrx - 1) ? dirty + 1 : 0;
1550 } while (dirty != vptr->rx.curr);
1551
1552 if (done) {
1553 vptr->rx.dirty = dirty;
1554 vptr->rx.filled += done;
1555 }
1556
1557 return done;
1558}
1559
1560/**
1561 * velocity_free_rd_ring - free receive ring
1562 * @vptr: velocity to clean up
1563 *
1564 * Free the receive buffers for each ring slot and any
1565 * attached socket buffers that need to go away.
1566 */
1567static void velocity_free_rd_ring(struct velocity_info *vptr)
1568{
1569 int i;
1570
1571 if (vptr->rx.info == NULL)
1572 return;
1573
1574 for (i = 0; i < vptr->options.numrx; i++) {
1575 struct velocity_rd_info *rd_info = &(vptr->rx.info[i]);
1576 struct rx_desc *rd = vptr->rx.ring + i;
1577
1578 memset(rd, 0, sizeof(*rd));
1579
1580 if (!rd_info->skb)
1581 continue;
1582 pci_unmap_single(vptr->pdev, rd_info->skb_dma, vptr->rx.buf_sz,
1583 PCI_DMA_FROMDEVICE);
1584 rd_info->skb_dma = 0;
1585
1586 dev_kfree_skb(rd_info->skb);
1587 rd_info->skb = NULL;
1588 }
1589
1590 kfree(vptr->rx.info);
1591 vptr->rx.info = NULL;
1592}
1593
1594
1595
1596/**
1597 * velocity_init_rd_ring - set up receive ring
1598 * @vptr: velocity to configure
1599 *
1600 * Allocate and set up the receive buffers for each ring slot and
1601 * assign them to the network adapter.
1602 */
1603static int velocity_init_rd_ring(struct velocity_info *vptr)
1604{
1605 int ret = -ENOMEM;
1606
1607 vptr->rx.info = kcalloc(vptr->options.numrx,
1608 sizeof(struct velocity_rd_info), GFP_KERNEL);
1609 if (!vptr->rx.info)
1610 goto out;
1611
1612 velocity_init_rx_ring_indexes(vptr);
1613
1614 if (velocity_rx_refill(vptr) != vptr->options.numrx) {
1615 VELOCITY_PRT(MSG_LEVEL_ERR, KERN_ERR
1616 "%s: failed to allocate RX buffer.\n", vptr->dev->name);
1617 velocity_free_rd_ring(vptr);
1618 goto out;
1619 }
1620
1621 ret = 0;
1622out:
1623 return ret;
1624}
1625
1626/**
1627 * velocity_init_td_ring - set up transmit ring
1628 * @vptr: velocity
1629 *
1630 * Set up the transmit ring and chain the ring pointers together.
1631 * Returns zero on success or a negative posix errno code for
1632 * failure.
1633 */
1634static int velocity_init_td_ring(struct velocity_info *vptr)
1635{
Dave Jones2cf71d22009-07-23 18:11:12 -07001636 int j;
1637
1638 /* Init the TD ring entries */
1639 for (j = 0; j < vptr->tx.numq; j++) {
Dave Jones2cf71d22009-07-23 18:11:12 -07001640
1641 vptr->tx.infos[j] = kcalloc(vptr->options.numtx,
1642 sizeof(struct velocity_td_info),
1643 GFP_KERNEL);
1644 if (!vptr->tx.infos[j]) {
1645 while (--j >= 0)
1646 kfree(vptr->tx.infos[j]);
1647 return -ENOMEM;
1648 }
1649
1650 vptr->tx.tail[j] = vptr->tx.curr[j] = vptr->tx.used[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
1652 return 0;
1653}
1654
Dave Jones2cf71d22009-07-23 18:11:12 -07001655/**
1656 * velocity_free_dma_rings - free PCI ring pointers
1657 * @vptr: Velocity to free from
1658 *
1659 * Clean up the PCI ring buffers allocated to this velocity.
1660 */
1661static void velocity_free_dma_rings(struct velocity_info *vptr)
1662{
1663 const int size = vptr->options.numrx * sizeof(struct rx_desc) +
1664 vptr->options.numtx * sizeof(struct tx_desc) * vptr->tx.numq;
1665
1666 pci_free_consistent(vptr->pdev, size, vptr->rx.ring, vptr->rx.pool_dma);
1667}
1668
1669
1670static int velocity_init_rings(struct velocity_info *vptr, int mtu)
1671{
1672 int ret;
1673
1674 velocity_set_rxbufsize(vptr, mtu);
1675
1676 ret = velocity_init_dma_rings(vptr);
1677 if (ret < 0)
1678 goto out;
1679
1680 ret = velocity_init_rd_ring(vptr);
1681 if (ret < 0)
1682 goto err_free_dma_rings_0;
1683
1684 ret = velocity_init_td_ring(vptr);
1685 if (ret < 0)
1686 goto err_free_rd_ring_1;
1687out:
1688 return ret;
1689
1690err_free_rd_ring_1:
1691 velocity_free_rd_ring(vptr);
1692err_free_dma_rings_0:
1693 velocity_free_dma_rings(vptr);
1694 goto out;
1695}
1696
1697/**
1698 * velocity_free_tx_buf - free transmit buffer
1699 * @vptr: velocity
1700 * @tdinfo: buffer
1701 *
1702 * Release an transmit buffer. If the buffer was preallocated then
1703 * recycle it, if not then unmap the buffer.
1704 */
Simon Kagstromc79992f2009-11-25 22:10:43 +00001705static void velocity_free_tx_buf(struct velocity_info *vptr,
1706 struct velocity_td_info *tdinfo, struct tx_desc *td)
Dave Jones2cf71d22009-07-23 18:11:12 -07001707{
1708 struct sk_buff *skb = tdinfo->skb;
Dave Jones2cf71d22009-07-23 18:11:12 -07001709
1710 /*
1711 * Don't unmap the pre-allocated tx_bufs
1712 */
1713 if (tdinfo->skb_dma) {
Simon Kagstromc79992f2009-11-25 22:10:43 +00001714 int i;
Dave Jones2cf71d22009-07-23 18:11:12 -07001715
Dave Jones2cf71d22009-07-23 18:11:12 -07001716 for (i = 0; i < tdinfo->nskb_dma; i++) {
Simon Kagstromc79992f2009-11-25 22:10:43 +00001717 size_t pktlen = max_t(size_t, skb->len, ETH_ZLEN);
1718
1719 /* For scatter-gather */
1720 if (skb_shinfo(skb)->nr_frags > 0)
1721 pktlen = max_t(size_t, pktlen,
1722 td->td_buf[i].size & ~TD_QUEUE);
1723
1724 pci_unmap_single(vptr->pdev, tdinfo->skb_dma[i],
1725 le16_to_cpu(pktlen), PCI_DMA_TODEVICE);
Dave Jones2cf71d22009-07-23 18:11:12 -07001726 }
1727 }
1728 dev_kfree_skb_irq(skb);
1729 tdinfo->skb = NULL;
1730}
1731
1732
1733/*
1734 * FIXME: could we merge this with velocity_free_tx_buf ?
1735 */
1736static void velocity_free_td_ring_entry(struct velocity_info *vptr,
1737 int q, int n)
1738{
1739 struct velocity_td_info *td_info = &(vptr->tx.infos[q][n]);
1740 int i;
1741
1742 if (td_info == NULL)
1743 return;
1744
1745 if (td_info->skb) {
1746 for (i = 0; i < td_info->nskb_dma; i++) {
1747 if (td_info->skb_dma[i]) {
1748 pci_unmap_single(vptr->pdev, td_info->skb_dma[i],
1749 td_info->skb->len, PCI_DMA_TODEVICE);
1750 td_info->skb_dma[i] = 0;
1751 }
1752 }
1753 dev_kfree_skb(td_info->skb);
1754 td_info->skb = NULL;
1755 }
1756}
1757
1758/**
1759 * velocity_free_td_ring - free td ring
1760 * @vptr: velocity
1761 *
1762 * Free up the transmit ring for this particular velocity adapter.
1763 * We free the ring contents but not the ring itself.
1764 */
1765static void velocity_free_td_ring(struct velocity_info *vptr)
1766{
1767 int i, j;
1768
1769 for (j = 0; j < vptr->tx.numq; j++) {
1770 if (vptr->tx.infos[j] == NULL)
1771 continue;
1772 for (i = 0; i < vptr->options.numtx; i++)
1773 velocity_free_td_ring_entry(vptr, j, i);
1774
1775 kfree(vptr->tx.infos[j]);
1776 vptr->tx.infos[j] = NULL;
1777 }
1778}
1779
1780
1781static void velocity_free_rings(struct velocity_info *vptr)
1782{
1783 velocity_free_td_ring(vptr);
1784 velocity_free_rd_ring(vptr);
1785 velocity_free_dma_rings(vptr);
1786}
1787
1788/**
1789 * velocity_error - handle error from controller
1790 * @vptr: velocity
1791 * @status: card status
1792 *
1793 * Process an error report from the hardware and attempt to recover
1794 * the card itself. At the moment we cannot recover from some
1795 * theoretically impossible errors but this could be fixed using
1796 * the pci_device_failed logic to bounce the hardware
1797 *
1798 */
1799static void velocity_error(struct velocity_info *vptr, int status)
1800{
1801
1802 if (status & ISR_TXSTLI) {
1803 struct mac_regs __iomem *regs = vptr->mac_regs;
1804
1805 printk(KERN_ERR "TD structure error TDindex=%hx\n", readw(&regs->TDIdx[0]));
1806 BYTE_REG_BITS_ON(TXESR_TDSTR, &regs->TXESR);
1807 writew(TRDCSR_RUN, &regs->TDCSRClr);
1808 netif_stop_queue(vptr->dev);
1809
1810 /* FIXME: port over the pci_device_failed code and use it
1811 here */
1812 }
1813
1814 if (status & ISR_SRCI) {
1815 struct mac_regs __iomem *regs = vptr->mac_regs;
1816 int linked;
1817
1818 if (vptr->options.spd_dpx == SPD_DPX_AUTO) {
1819 vptr->mii_status = check_connection_type(regs);
1820
1821 /*
1822 * If it is a 3119, disable frame bursting in
1823 * halfduplex mode and enable it in fullduplex
1824 * mode
1825 */
1826 if (vptr->rev_id < REV_ID_VT3216_A0) {
David S. Miller6cdee2f2009-09-02 00:32:56 -07001827 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
Dave Jones2cf71d22009-07-23 18:11:12 -07001828 BYTE_REG_BITS_ON(TCR_TB2BDIS, &regs->TCR);
1829 else
1830 BYTE_REG_BITS_OFF(TCR_TB2BDIS, &regs->TCR);
1831 }
1832 /*
1833 * Only enable CD heart beat counter in 10HD mode
1834 */
1835 if (!(vptr->mii_status & VELOCITY_DUPLEX_FULL) && (vptr->mii_status & VELOCITY_SPEED_10))
1836 BYTE_REG_BITS_OFF(TESTCFG_HBDIS, &regs->TESTCFG);
1837 else
1838 BYTE_REG_BITS_ON(TESTCFG_HBDIS, &regs->TESTCFG);
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00001839
1840 setup_queue_timers(vptr);
Dave Jones2cf71d22009-07-23 18:11:12 -07001841 }
1842 /*
1843 * Get link status from PHYSR0
1844 */
1845 linked = readb(&regs->PHYSR0) & PHYSR0_LINKGD;
1846
1847 if (linked) {
1848 vptr->mii_status &= ~VELOCITY_LINK_FAIL;
1849 netif_carrier_on(vptr->dev);
1850 } else {
1851 vptr->mii_status |= VELOCITY_LINK_FAIL;
1852 netif_carrier_off(vptr->dev);
1853 }
1854
1855 velocity_print_link_status(vptr);
1856 enable_flow_control_ability(vptr);
1857
1858 /*
1859 * Re-enable auto-polling because SRCI will disable
1860 * auto-polling
1861 */
1862
1863 enable_mii_autopoll(regs);
1864
1865 if (vptr->mii_status & VELOCITY_LINK_FAIL)
1866 netif_stop_queue(vptr->dev);
1867 else
1868 netif_wake_queue(vptr->dev);
1869
1870 };
1871 if (status & ISR_MIBFI)
1872 velocity_update_hw_mibs(vptr);
1873 if (status & ISR_LSTEI)
1874 mac_rx_queue_wake(vptr->mac_regs);
1875}
1876
1877/**
1878 * tx_srv - transmit interrupt service
1879 * @vptr; Velocity
Dave Jones2cf71d22009-07-23 18:11:12 -07001880 *
1881 * Scan the queues looking for transmitted packets that
1882 * we can complete and clean up. Update any statistics as
1883 * necessary/
1884 */
Simon Kagstromd6cade02010-02-09 23:37:54 +00001885static int velocity_tx_srv(struct velocity_info *vptr)
Dave Jones2cf71d22009-07-23 18:11:12 -07001886{
1887 struct tx_desc *td;
1888 int qnum;
1889 int full = 0;
1890 int idx;
1891 int works = 0;
1892 struct velocity_td_info *tdinfo;
1893 struct net_device_stats *stats = &vptr->dev->stats;
1894
1895 for (qnum = 0; qnum < vptr->tx.numq; qnum++) {
1896 for (idx = vptr->tx.tail[qnum]; vptr->tx.used[qnum] > 0;
1897 idx = (idx + 1) % vptr->options.numtx) {
1898
1899 /*
1900 * Get Tx Descriptor
1901 */
1902 td = &(vptr->tx.rings[qnum][idx]);
1903 tdinfo = &(vptr->tx.infos[qnum][idx]);
1904
1905 if (td->tdesc0.len & OWNED_BY_NIC)
1906 break;
1907
1908 if ((works++ > 15))
1909 break;
1910
1911 if (td->tdesc0.TSR & TSR0_TERR) {
1912 stats->tx_errors++;
1913 stats->tx_dropped++;
1914 if (td->tdesc0.TSR & TSR0_CDH)
1915 stats->tx_heartbeat_errors++;
1916 if (td->tdesc0.TSR & TSR0_CRS)
1917 stats->tx_carrier_errors++;
1918 if (td->tdesc0.TSR & TSR0_ABT)
1919 stats->tx_aborted_errors++;
1920 if (td->tdesc0.TSR & TSR0_OWC)
1921 stats->tx_window_errors++;
1922 } else {
1923 stats->tx_packets++;
1924 stats->tx_bytes += tdinfo->skb->len;
1925 }
Simon Kagstromc79992f2009-11-25 22:10:43 +00001926 velocity_free_tx_buf(vptr, tdinfo, td);
Dave Jones2cf71d22009-07-23 18:11:12 -07001927 vptr->tx.used[qnum]--;
1928 }
1929 vptr->tx.tail[qnum] = idx;
1930
1931 if (AVAIL_TD(vptr, qnum) < 1)
1932 full = 1;
1933 }
1934 /*
1935 * Look to see if we should kick the transmit network
1936 * layer for more work.
1937 */
Joe Perches8e95a202009-12-03 07:58:21 +00001938 if (netif_queue_stopped(vptr->dev) && (full == 0) &&
1939 (!(vptr->mii_status & VELOCITY_LINK_FAIL))) {
Dave Jones2cf71d22009-07-23 18:11:12 -07001940 netif_wake_queue(vptr->dev);
1941 }
1942 return works;
1943}
1944
1945/**
1946 * velocity_rx_csum - checksum process
1947 * @rd: receive packet descriptor
1948 * @skb: network layer packet buffer
1949 *
1950 * Process the status bits for the received packet and determine
1951 * if the checksum was computed and verified by the hardware
1952 */
1953static inline void velocity_rx_csum(struct rx_desc *rd, struct sk_buff *skb)
1954{
1955 skb->ip_summed = CHECKSUM_NONE;
1956
1957 if (rd->rdesc1.CSM & CSM_IPKT) {
1958 if (rd->rdesc1.CSM & CSM_IPOK) {
1959 if ((rd->rdesc1.CSM & CSM_TCPKT) ||
1960 (rd->rdesc1.CSM & CSM_UDPKT)) {
1961 if (!(rd->rdesc1.CSM & CSM_TUPOK))
1962 return;
1963 }
1964 skb->ip_summed = CHECKSUM_UNNECESSARY;
1965 }
1966 }
1967}
1968
1969/**
1970 * velocity_rx_copy - in place Rx copy for small packets
1971 * @rx_skb: network layer packet buffer candidate
1972 * @pkt_size: received data size
1973 * @rd: receive packet descriptor
1974 * @dev: network device
1975 *
1976 * Replace the current skb that is scheduled for Rx processing by a
1977 * shorter, immediatly allocated skb, if the received packet is small
1978 * enough. This function returns a negative value if the received
1979 * packet is too big or if memory is exhausted.
1980 */
1981static int velocity_rx_copy(struct sk_buff **rx_skb, int pkt_size,
1982 struct velocity_info *vptr)
1983{
1984 int ret = -1;
1985 if (pkt_size < rx_copybreak) {
1986 struct sk_buff *new_skb;
1987
Eric Dumazet89d71a62009-10-13 05:34:20 +00001988 new_skb = netdev_alloc_skb_ip_align(vptr->dev, pkt_size);
Dave Jones2cf71d22009-07-23 18:11:12 -07001989 if (new_skb) {
1990 new_skb->ip_summed = rx_skb[0]->ip_summed;
Dave Jones2cf71d22009-07-23 18:11:12 -07001991 skb_copy_from_linear_data(*rx_skb, new_skb->data, pkt_size);
1992 *rx_skb = new_skb;
1993 ret = 0;
1994 }
1995
1996 }
1997 return ret;
1998}
1999
2000/**
2001 * velocity_iph_realign - IP header alignment
2002 * @vptr: velocity we are handling
2003 * @skb: network layer packet buffer
2004 * @pkt_size: received data size
2005 *
2006 * Align IP header on a 2 bytes boundary. This behavior can be
2007 * configured by the user.
2008 */
2009static inline void velocity_iph_realign(struct velocity_info *vptr,
2010 struct sk_buff *skb, int pkt_size)
2011{
2012 if (vptr->flags & VELOCITY_FLAGS_IP_ALIGN) {
2013 memmove(skb->data + 2, skb->data, pkt_size);
2014 skb_reserve(skb, 2);
2015 }
2016}
2017
2018
2019/**
2020 * velocity_receive_frame - received packet processor
2021 * @vptr: velocity we are handling
2022 * @idx: ring index
2023 *
2024 * A packet has arrived. We process the packet and if appropriate
2025 * pass the frame up the network stack
2026 */
2027static int velocity_receive_frame(struct velocity_info *vptr, int idx)
2028{
2029 void (*pci_action)(struct pci_dev *, dma_addr_t, size_t, int);
2030 struct net_device_stats *stats = &vptr->dev->stats;
2031 struct velocity_rd_info *rd_info = &(vptr->rx.info[idx]);
2032 struct rx_desc *rd = &(vptr->rx.ring[idx]);
2033 int pkt_len = le16_to_cpu(rd->rdesc0.len) & 0x3fff;
2034 struct sk_buff *skb;
2035
2036 if (rd->rdesc0.RSR & (RSR_STP | RSR_EDP)) {
2037 VELOCITY_PRT(MSG_LEVEL_VERBOSE, KERN_ERR " %s : the received frame span multple RDs.\n", vptr->dev->name);
2038 stats->rx_length_errors++;
2039 return -EINVAL;
2040 }
2041
2042 if (rd->rdesc0.RSR & RSR_MAR)
2043 stats->multicast++;
2044
2045 skb = rd_info->skb;
2046
2047 pci_dma_sync_single_for_cpu(vptr->pdev, rd_info->skb_dma,
2048 vptr->rx.buf_sz, PCI_DMA_FROMDEVICE);
2049
2050 /*
2051 * Drop frame not meeting IEEE 802.3
2052 */
2053
2054 if (vptr->flags & VELOCITY_FLAGS_VAL_PKT_LEN) {
2055 if (rd->rdesc0.RSR & RSR_RL) {
2056 stats->rx_length_errors++;
2057 return -EINVAL;
2058 }
2059 }
2060
2061 pci_action = pci_dma_sync_single_for_device;
2062
2063 velocity_rx_csum(rd, skb);
2064
2065 if (velocity_rx_copy(&skb, pkt_len, vptr) < 0) {
2066 velocity_iph_realign(vptr, skb, pkt_len);
2067 pci_action = pci_unmap_single;
2068 rd_info->skb = NULL;
2069 }
2070
2071 pci_action(vptr->pdev, rd_info->skb_dma, vptr->rx.buf_sz,
2072 PCI_DMA_FROMDEVICE);
2073
2074 skb_put(skb, pkt_len - 4);
2075 skb->protocol = eth_type_trans(skb, vptr->dev);
2076
2077 if (vptr->vlgrp && (rd->rdesc0.RSR & RSR_DETAG)) {
2078 vlan_hwaccel_rx(skb, vptr->vlgrp,
2079 swab16(le16_to_cpu(rd->rdesc1.PQTAG)));
2080 } else
2081 netif_rx(skb);
2082
2083 stats->rx_bytes += pkt_len;
2084
2085 return 0;
2086}
2087
2088
2089/**
2090 * velocity_rx_srv - service RX interrupt
2091 * @vptr: velocity
Dave Jones2cf71d22009-07-23 18:11:12 -07002092 *
2093 * Walk the receive ring of the velocity adapter and remove
2094 * any received packets from the receive queue. Hand the ring
2095 * slots back to the adapter for reuse.
2096 */
Simon Kagstromd6cade02010-02-09 23:37:54 +00002097static int velocity_rx_srv(struct velocity_info *vptr, int budget_left)
Dave Jones2cf71d22009-07-23 18:11:12 -07002098{
2099 struct net_device_stats *stats = &vptr->dev->stats;
2100 int rd_curr = vptr->rx.curr;
2101 int works = 0;
2102
Simon Kagstromdfff7142009-11-25 22:10:26 +00002103 while (works < budget_left) {
Dave Jones2cf71d22009-07-23 18:11:12 -07002104 struct rx_desc *rd = vptr->rx.ring + rd_curr;
2105
2106 if (!vptr->rx.info[rd_curr].skb)
2107 break;
2108
2109 if (rd->rdesc0.len & OWNED_BY_NIC)
2110 break;
2111
2112 rmb();
2113
2114 /*
2115 * Don't drop CE or RL error frame although RXOK is off
2116 */
2117 if (rd->rdesc0.RSR & (RSR_RXOK | RSR_CE | RSR_RL)) {
2118 if (velocity_receive_frame(vptr, rd_curr) < 0)
2119 stats->rx_dropped++;
2120 } else {
2121 if (rd->rdesc0.RSR & RSR_CRC)
2122 stats->rx_crc_errors++;
2123 if (rd->rdesc0.RSR & RSR_FAE)
2124 stats->rx_frame_errors++;
2125
2126 stats->rx_dropped++;
2127 }
2128
2129 rd->size |= RX_INTEN;
2130
2131 rd_curr++;
2132 if (rd_curr >= vptr->options.numrx)
2133 rd_curr = 0;
Simon Kagstromdfff7142009-11-25 22:10:26 +00002134 works++;
2135 }
Dave Jones2cf71d22009-07-23 18:11:12 -07002136
2137 vptr->rx.curr = rd_curr;
2138
2139 if ((works > 0) && (velocity_rx_refill(vptr) > 0))
2140 velocity_give_many_rx_descs(vptr);
2141
2142 VAR_USED(stats);
2143 return works;
2144}
2145
Simon Kagstromdfff7142009-11-25 22:10:26 +00002146static int velocity_poll(struct napi_struct *napi, int budget)
2147{
2148 struct velocity_info *vptr = container_of(napi,
2149 struct velocity_info, napi);
2150 unsigned int rx_done;
2151 u32 isr_status;
2152
2153 spin_lock(&vptr->lock);
2154 isr_status = mac_read_isr(vptr->mac_regs);
2155
2156 /* Ack the interrupt */
2157 mac_write_isr(vptr->mac_regs, isr_status);
2158 if (isr_status & (~(ISR_PRXI | ISR_PPRXI | ISR_PTXI | ISR_PPTXI)))
2159 velocity_error(vptr, isr_status);
2160
2161 /*
2162 * Do rx and tx twice for performance (taken from the VIA
2163 * out-of-tree driver).
2164 */
Simon Kagstromd6cade02010-02-09 23:37:54 +00002165 rx_done = velocity_rx_srv(vptr, budget / 2);
2166 velocity_tx_srv(vptr);
2167 rx_done += velocity_rx_srv(vptr, budget - rx_done);
2168 velocity_tx_srv(vptr);
Simon Kagstromdfff7142009-11-25 22:10:26 +00002169
2170 spin_unlock(&vptr->lock);
2171
2172 /* If budget not fully consumed, exit the polling mode */
2173 if (rx_done < budget) {
2174 napi_complete(napi);
2175 mac_enable_int(vptr->mac_regs);
2176 }
2177
2178 return rx_done;
2179}
Dave Jones2cf71d22009-07-23 18:11:12 -07002180
2181/**
2182 * velocity_intr - interrupt callback
2183 * @irq: interrupt number
2184 * @dev_instance: interrupting device
2185 *
2186 * Called whenever an interrupt is generated by the velocity
2187 * adapter IRQ line. We may not be the source of the interrupt
2188 * and need to identify initially if we are, and if not exit as
2189 * efficiently as possible.
2190 */
2191static irqreturn_t velocity_intr(int irq, void *dev_instance)
2192{
2193 struct net_device *dev = dev_instance;
2194 struct velocity_info *vptr = netdev_priv(dev);
2195 u32 isr_status;
Dave Jones2cf71d22009-07-23 18:11:12 -07002196
2197 spin_lock(&vptr->lock);
2198 isr_status = mac_read_isr(vptr->mac_regs);
2199
2200 /* Not us ? */
2201 if (isr_status == 0) {
2202 spin_unlock(&vptr->lock);
2203 return IRQ_NONE;
2204 }
2205
Simon Kagstromdfff7142009-11-25 22:10:26 +00002206 if (likely(napi_schedule_prep(&vptr->napi))) {
2207 mac_disable_int(vptr->mac_regs);
2208 __napi_schedule(&vptr->napi);
Dave Jones2cf71d22009-07-23 18:11:12 -07002209 }
2210 spin_unlock(&vptr->lock);
Dave Jones2cf71d22009-07-23 18:11:12 -07002211
Simon Kagstromdfff7142009-11-25 22:10:26 +00002212 return IRQ_HANDLED;
Dave Jones2cf71d22009-07-23 18:11:12 -07002213}
2214
2215/**
2216 * velocity_open - interface activation callback
2217 * @dev: network layer device to open
2218 *
2219 * Called when the network layer brings the interface up. Returns
2220 * a negative posix error code on failure, or zero on success.
2221 *
2222 * All the ring allocation and set up is done on open for this
2223 * adapter to minimise memory usage when inactive
2224 */
2225static int velocity_open(struct net_device *dev)
2226{
2227 struct velocity_info *vptr = netdev_priv(dev);
2228 int ret;
2229
2230 ret = velocity_init_rings(vptr, dev->mtu);
2231 if (ret < 0)
2232 goto out;
2233
2234 /* Ensure chip is running */
2235 pci_set_power_state(vptr->pdev, PCI_D0);
2236
Dave Jones2cf71d22009-07-23 18:11:12 -07002237 velocity_init_registers(vptr, VELOCITY_INIT_COLD);
2238
Julia Lawall1ede9b52009-11-18 08:24:13 +00002239 ret = request_irq(vptr->pdev->irq, velocity_intr, IRQF_SHARED,
Dave Jones2cf71d22009-07-23 18:11:12 -07002240 dev->name, dev);
2241 if (ret < 0) {
2242 /* Power down the chip */
2243 pci_set_power_state(vptr->pdev, PCI_D3hot);
2244 velocity_free_rings(vptr);
2245 goto out;
2246 }
2247
Ben Hutchings35bb5ca2009-12-14 16:05:09 +00002248 velocity_give_many_rx_descs(vptr);
2249
Dave Jones2cf71d22009-07-23 18:11:12 -07002250 mac_enable_int(vptr->mac_regs);
2251 netif_start_queue(dev);
Simon Kagstromdfff7142009-11-25 22:10:26 +00002252 napi_enable(&vptr->napi);
Dave Jones2cf71d22009-07-23 18:11:12 -07002253 vptr->flags |= VELOCITY_FLAGS_OPENED;
2254out:
2255 return ret;
2256}
2257
2258/**
2259 * velocity_shutdown - shut down the chip
2260 * @vptr: velocity to deactivate
2261 *
2262 * Shuts down the internal operations of the velocity and
2263 * disables interrupts, autopolling, transmit and receive
2264 */
2265static void velocity_shutdown(struct velocity_info *vptr)
2266{
2267 struct mac_regs __iomem *regs = vptr->mac_regs;
2268 mac_disable_int(regs);
2269 writel(CR0_STOP, &regs->CR0Set);
2270 writew(0xFFFF, &regs->TDCSRClr);
2271 writeb(0xFF, &regs->RDCSRClr);
2272 safe_disable_mii_autopoll(regs);
2273 mac_clear_isr(regs);
2274}
2275
2276/**
2277 * velocity_change_mtu - MTU change callback
2278 * @dev: network device
2279 * @new_mtu: desired MTU
2280 *
2281 * Handle requests from the networking layer for MTU change on
2282 * this interface. It gets called on a change by the network layer.
2283 * Return zero for success or negative posix error code.
2284 */
2285static int velocity_change_mtu(struct net_device *dev, int new_mtu)
2286{
2287 struct velocity_info *vptr = netdev_priv(dev);
2288 int ret = 0;
2289
2290 if ((new_mtu < VELOCITY_MIN_MTU) || new_mtu > (VELOCITY_MAX_MTU)) {
2291 VELOCITY_PRT(MSG_LEVEL_ERR, KERN_NOTICE "%s: Invalid MTU.\n",
2292 vptr->dev->name);
2293 ret = -EINVAL;
2294 goto out_0;
2295 }
2296
2297 if (!netif_running(dev)) {
2298 dev->mtu = new_mtu;
2299 goto out_0;
2300 }
2301
2302 if (dev->mtu != new_mtu) {
2303 struct velocity_info *tmp_vptr;
2304 unsigned long flags;
2305 struct rx_info rx;
2306 struct tx_info tx;
2307
2308 tmp_vptr = kzalloc(sizeof(*tmp_vptr), GFP_KERNEL);
2309 if (!tmp_vptr) {
2310 ret = -ENOMEM;
2311 goto out_0;
2312 }
2313
2314 tmp_vptr->dev = dev;
2315 tmp_vptr->pdev = vptr->pdev;
2316 tmp_vptr->options = vptr->options;
2317 tmp_vptr->tx.numq = vptr->tx.numq;
2318
2319 ret = velocity_init_rings(tmp_vptr, new_mtu);
2320 if (ret < 0)
2321 goto out_free_tmp_vptr_1;
2322
2323 spin_lock_irqsave(&vptr->lock, flags);
2324
2325 netif_stop_queue(dev);
2326 velocity_shutdown(vptr);
2327
2328 rx = vptr->rx;
2329 tx = vptr->tx;
2330
2331 vptr->rx = tmp_vptr->rx;
2332 vptr->tx = tmp_vptr->tx;
2333
2334 tmp_vptr->rx = rx;
2335 tmp_vptr->tx = tx;
2336
2337 dev->mtu = new_mtu;
2338
Dave Jones2cf71d22009-07-23 18:11:12 -07002339 velocity_init_registers(vptr, VELOCITY_INIT_COLD);
2340
Ben Hutchings35bb5ca2009-12-14 16:05:09 +00002341 velocity_give_many_rx_descs(vptr);
2342
Dave Jones2cf71d22009-07-23 18:11:12 -07002343 mac_enable_int(vptr->mac_regs);
2344 netif_start_queue(dev);
2345
2346 spin_unlock_irqrestore(&vptr->lock, flags);
2347
2348 velocity_free_rings(tmp_vptr);
2349
2350out_free_tmp_vptr_1:
2351 kfree(tmp_vptr);
2352 }
2353out_0:
2354 return ret;
2355}
2356
2357/**
2358 * velocity_mii_ioctl - MII ioctl handler
2359 * @dev: network device
2360 * @ifr: the ifreq block for the ioctl
2361 * @cmd: the command
2362 *
2363 * Process MII requests made via ioctl from the network layer. These
2364 * are used by tools like kudzu to interrogate the link state of the
2365 * hardware
2366 */
2367static int velocity_mii_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2368{
2369 struct velocity_info *vptr = netdev_priv(dev);
2370 struct mac_regs __iomem *regs = vptr->mac_regs;
2371 unsigned long flags;
2372 struct mii_ioctl_data *miidata = if_mii(ifr);
2373 int err;
2374
2375 switch (cmd) {
2376 case SIOCGMIIPHY:
2377 miidata->phy_id = readb(&regs->MIIADR) & 0x1f;
2378 break;
2379 case SIOCGMIIREG:
Dave Jones2cf71d22009-07-23 18:11:12 -07002380 if (velocity_mii_read(vptr->mac_regs, miidata->reg_num & 0x1f, &(miidata->val_out)) < 0)
2381 return -ETIMEDOUT;
2382 break;
2383 case SIOCSMIIREG:
Dave Jones2cf71d22009-07-23 18:11:12 -07002384 spin_lock_irqsave(&vptr->lock, flags);
2385 err = velocity_mii_write(vptr->mac_regs, miidata->reg_num & 0x1f, miidata->val_in);
2386 spin_unlock_irqrestore(&vptr->lock, flags);
2387 check_connection_type(vptr->mac_regs);
2388 if (err)
2389 return err;
2390 break;
2391 default:
2392 return -EOPNOTSUPP;
2393 }
2394 return 0;
2395}
2396
2397
2398/**
2399 * velocity_ioctl - ioctl entry point
2400 * @dev: network device
2401 * @rq: interface request ioctl
2402 * @cmd: command code
2403 *
2404 * Called when the user issues an ioctl request to the network
2405 * device in question. The velocity interface supports MII.
2406 */
2407static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2408{
2409 struct velocity_info *vptr = netdev_priv(dev);
2410 int ret;
2411
2412 /* If we are asked for information and the device is power
2413 saving then we need to bring the device back up to talk to it */
2414
2415 if (!netif_running(dev))
2416 pci_set_power_state(vptr->pdev, PCI_D0);
2417
2418 switch (cmd) {
2419 case SIOCGMIIPHY: /* Get address of MII PHY in use. */
2420 case SIOCGMIIREG: /* Read MII PHY register. */
2421 case SIOCSMIIREG: /* Write to MII PHY register. */
2422 ret = velocity_mii_ioctl(dev, rq, cmd);
2423 break;
2424
2425 default:
2426 ret = -EOPNOTSUPP;
2427 }
2428 if (!netif_running(dev))
2429 pci_set_power_state(vptr->pdev, PCI_D3hot);
2430
2431
2432 return ret;
2433}
2434
2435/**
2436 * velocity_get_status - statistics callback
2437 * @dev: network device
2438 *
2439 * Callback from the network layer to allow driver statistics
2440 * to be resynchronized with hardware collected state. In the
2441 * case of the velocity we need to pull the MIB counters from
2442 * the hardware into the counters before letting the network
2443 * layer display them.
2444 */
2445static struct net_device_stats *velocity_get_stats(struct net_device *dev)
2446{
2447 struct velocity_info *vptr = netdev_priv(dev);
2448
2449 /* If the hardware is down, don't touch MII */
2450 if (!netif_running(dev))
2451 return &dev->stats;
2452
2453 spin_lock_irq(&vptr->lock);
2454 velocity_update_hw_mibs(vptr);
2455 spin_unlock_irq(&vptr->lock);
2456
2457 dev->stats.rx_packets = vptr->mib_counter[HW_MIB_ifRxAllPkts];
2458 dev->stats.rx_errors = vptr->mib_counter[HW_MIB_ifRxErrorPkts];
2459 dev->stats.rx_length_errors = vptr->mib_counter[HW_MIB_ifInRangeLengthErrors];
2460
2461// unsigned long rx_dropped; /* no space in linux buffers */
2462 dev->stats.collisions = vptr->mib_counter[HW_MIB_ifTxEtherCollisions];
2463 /* detailed rx_errors: */
2464// unsigned long rx_length_errors;
2465// unsigned long rx_over_errors; /* receiver ring buff overflow */
2466 dev->stats.rx_crc_errors = vptr->mib_counter[HW_MIB_ifRxPktCRCE];
2467// unsigned long rx_frame_errors; /* recv'd frame alignment error */
2468// unsigned long rx_fifo_errors; /* recv'r fifo overrun */
2469// unsigned long rx_missed_errors; /* receiver missed packet */
2470
2471 /* detailed tx_errors */
2472// unsigned long tx_fifo_errors;
2473
2474 return &dev->stats;
2475}
2476
2477/**
2478 * velocity_close - close adapter callback
2479 * @dev: network device
2480 *
2481 * Callback from the network layer when the velocity is being
2482 * deactivated by the network layer
2483 */
2484static int velocity_close(struct net_device *dev)
2485{
2486 struct velocity_info *vptr = netdev_priv(dev);
2487
Simon Kagstromdfff7142009-11-25 22:10:26 +00002488 napi_disable(&vptr->napi);
Dave Jones2cf71d22009-07-23 18:11:12 -07002489 netif_stop_queue(dev);
2490 velocity_shutdown(vptr);
2491
2492 if (vptr->flags & VELOCITY_FLAGS_WOL_ENABLED)
2493 velocity_get_ip(vptr);
2494 if (dev->irq != 0)
2495 free_irq(dev->irq, dev);
2496
2497 /* Power down the chip */
2498 pci_set_power_state(vptr->pdev, PCI_D3hot);
2499
2500 velocity_free_rings(vptr);
2501
2502 vptr->flags &= (~VELOCITY_FLAGS_OPENED);
2503 return 0;
2504}
2505
2506/**
2507 * velocity_xmit - transmit packet callback
2508 * @skb: buffer to transmit
2509 * @dev: network device
2510 *
2511 * Called by the networ layer to request a packet is queued to
2512 * the velocity. Returns zero on success.
2513 */
Stephen Hemminger613573252009-08-31 19:50:58 +00002514static netdev_tx_t velocity_xmit(struct sk_buff *skb,
2515 struct net_device *dev)
Dave Jones2cf71d22009-07-23 18:11:12 -07002516{
2517 struct velocity_info *vptr = netdev_priv(dev);
2518 int qnum = 0;
2519 struct tx_desc *td_ptr;
2520 struct velocity_td_info *tdinfo;
2521 unsigned long flags;
2522 int pktlen;
Simon Kagstromc79992f2009-11-25 22:10:43 +00002523 int index, prev;
2524 int i = 0;
Dave Jones2cf71d22009-07-23 18:11:12 -07002525
2526 if (skb_padto(skb, ETH_ZLEN))
2527 goto out;
Dave Jones2cf71d22009-07-23 18:11:12 -07002528
Simon Kagstromc79992f2009-11-25 22:10:43 +00002529 /* The hardware can handle at most 7 memory segments, so merge
2530 * the skb if there are more */
2531 if (skb_shinfo(skb)->nr_frags > 6 && __skb_linearize(skb)) {
2532 kfree_skb(skb);
2533 return NETDEV_TX_OK;
2534 }
2535
2536 pktlen = skb_shinfo(skb)->nr_frags == 0 ?
2537 max_t(unsigned int, skb->len, ETH_ZLEN) :
2538 skb_headlen(skb);
Dave Jones2cf71d22009-07-23 18:11:12 -07002539
2540 spin_lock_irqsave(&vptr->lock, flags);
2541
2542 index = vptr->tx.curr[qnum];
2543 td_ptr = &(vptr->tx.rings[qnum][index]);
2544 tdinfo = &(vptr->tx.infos[qnum][index]);
2545
2546 td_ptr->tdesc1.TCR = TCR0_TIC;
2547 td_ptr->td_buf[0].size &= ~TD_QUEUE;
2548
2549 /*
2550 * Map the linear network buffer into PCI space and
2551 * add it to the transmit ring.
2552 */
2553 tdinfo->skb = skb;
2554 tdinfo->skb_dma[0] = pci_map_single(vptr->pdev, skb->data, pktlen, PCI_DMA_TODEVICE);
Simon Kagstromc79992f2009-11-25 22:10:43 +00002555 td_ptr->tdesc0.len = cpu_to_le16(pktlen);
Dave Jones2cf71d22009-07-23 18:11:12 -07002556 td_ptr->td_buf[0].pa_low = cpu_to_le32(tdinfo->skb_dma[0]);
2557 td_ptr->td_buf[0].pa_high = 0;
Simon Kagstromc79992f2009-11-25 22:10:43 +00002558 td_ptr->td_buf[0].size = cpu_to_le16(pktlen);
2559
2560 /* Handle fragments */
2561 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2562 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2563
2564 tdinfo->skb_dma[i + 1] = pci_map_page(vptr->pdev, frag->page,
2565 frag->page_offset, frag->size,
2566 PCI_DMA_TODEVICE);
2567
2568 td_ptr->td_buf[i + 1].pa_low = cpu_to_le32(tdinfo->skb_dma[i + 1]);
2569 td_ptr->td_buf[i + 1].pa_high = 0;
2570 td_ptr->td_buf[i + 1].size = cpu_to_le16(frag->size);
2571 }
2572 tdinfo->nskb_dma = i + 1;
Dave Jones2cf71d22009-07-23 18:11:12 -07002573
2574 td_ptr->tdesc1.cmd = TCPLS_NORMAL + (tdinfo->nskb_dma + 1) * 16;
2575
2576 if (vptr->vlgrp && vlan_tx_tag_present(skb)) {
2577 td_ptr->tdesc1.vlan = cpu_to_le16(vlan_tx_tag_get(skb));
2578 td_ptr->tdesc1.TCR |= TCR0_VETAG;
2579 }
2580
2581 /*
2582 * Handle hardware checksum
2583 */
Joe Perches8e95a202009-12-03 07:58:21 +00002584 if ((dev->features & NETIF_F_IP_CSUM) &&
2585 (skb->ip_summed == CHECKSUM_PARTIAL)) {
Dave Jones2cf71d22009-07-23 18:11:12 -07002586 const struct iphdr *ip = ip_hdr(skb);
2587 if (ip->protocol == IPPROTO_TCP)
2588 td_ptr->tdesc1.TCR |= TCR0_TCPCK;
2589 else if (ip->protocol == IPPROTO_UDP)
2590 td_ptr->tdesc1.TCR |= (TCR0_UDPCK);
2591 td_ptr->tdesc1.TCR |= TCR0_IPCK;
2592 }
Dave Jones2cf71d22009-07-23 18:11:12 -07002593
Simon Kagstromc79992f2009-11-25 22:10:43 +00002594 prev = index - 1;
2595 if (prev < 0)
2596 prev = vptr->options.numtx - 1;
2597 td_ptr->tdesc0.len |= OWNED_BY_NIC;
2598 vptr->tx.used[qnum]++;
2599 vptr->tx.curr[qnum] = (index + 1) % vptr->options.numtx;
Dave Jones2cf71d22009-07-23 18:11:12 -07002600
Simon Kagstromc79992f2009-11-25 22:10:43 +00002601 if (AVAIL_TD(vptr, qnum) < 1)
2602 netif_stop_queue(dev);
Dave Jones2cf71d22009-07-23 18:11:12 -07002603
Simon Kagstromc79992f2009-11-25 22:10:43 +00002604 td_ptr = &(vptr->tx.rings[qnum][prev]);
2605 td_ptr->td_buf[0].size |= TD_QUEUE;
2606 mac_tx_queue_wake(vptr->mac_regs, qnum);
Dave Jones2cf71d22009-07-23 18:11:12 -07002607
Dave Jones2cf71d22009-07-23 18:11:12 -07002608 dev->trans_start = jiffies;
2609 spin_unlock_irqrestore(&vptr->lock, flags);
2610out:
2611 return NETDEV_TX_OK;
2612}
2613
2614
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002615static const struct net_device_ops velocity_netdev_ops = {
2616 .ndo_open = velocity_open,
2617 .ndo_stop = velocity_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08002618 .ndo_start_xmit = velocity_xmit,
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002619 .ndo_get_stats = velocity_get_stats,
2620 .ndo_validate_addr = eth_validate_addr,
Stephen Hemmingerfe96aaa2009-01-09 11:13:14 +00002621 .ndo_set_mac_address = eth_mac_addr,
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002622 .ndo_set_multicast_list = velocity_set_multi,
2623 .ndo_change_mtu = velocity_change_mtu,
2624 .ndo_do_ioctl = velocity_ioctl,
2625 .ndo_vlan_rx_add_vid = velocity_vlan_rx_add_vid,
2626 .ndo_vlan_rx_kill_vid = velocity_vlan_rx_kill_vid,
2627 .ndo_vlan_rx_register = velocity_vlan_rx_register,
2628};
2629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630/**
Dave Jones2cf71d22009-07-23 18:11:12 -07002631 * velocity_init_info - init private data
2632 * @pdev: PCI device
2633 * @vptr: Velocity info
2634 * @info: Board type
2635 *
2636 * Set up the initial velocity_info struct for the device that has been
2637 * discovered.
2638 */
2639static void __devinit velocity_init_info(struct pci_dev *pdev,
2640 struct velocity_info *vptr,
2641 const struct velocity_info_tbl *info)
2642{
2643 memset(vptr, 0, sizeof(struct velocity_info));
2644
2645 vptr->pdev = pdev;
2646 vptr->chip_id = info->chip_id;
2647 vptr->tx.numq = info->txqueue;
2648 vptr->multicast_limit = MCAM_SIZE;
2649 spin_lock_init(&vptr->lock);
Dave Jones2cf71d22009-07-23 18:11:12 -07002650}
2651
2652/**
2653 * velocity_get_pci_info - retrieve PCI info for device
2654 * @vptr: velocity device
2655 * @pdev: PCI device it matches
2656 *
2657 * Retrieve the PCI configuration space data that interests us from
2658 * the kernel PCI layer
2659 */
2660static int __devinit velocity_get_pci_info(struct velocity_info *vptr, struct pci_dev *pdev)
2661{
2662 vptr->rev_id = pdev->revision;
2663
2664 pci_set_master(pdev);
2665
2666 vptr->ioaddr = pci_resource_start(pdev, 0);
2667 vptr->memaddr = pci_resource_start(pdev, 1);
2668
2669 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_IO)) {
2670 dev_err(&pdev->dev,
2671 "region #0 is not an I/O resource, aborting.\n");
2672 return -EINVAL;
2673 }
2674
2675 if ((pci_resource_flags(pdev, 1) & IORESOURCE_IO)) {
2676 dev_err(&pdev->dev,
2677 "region #1 is an I/O resource, aborting.\n");
2678 return -EINVAL;
2679 }
2680
2681 if (pci_resource_len(pdev, 1) < VELOCITY_IO_SIZE) {
2682 dev_err(&pdev->dev, "region #1 is too small.\n");
2683 return -EINVAL;
2684 }
2685 vptr->pdev = pdev;
2686
2687 return 0;
2688}
2689
2690/**
2691 * velocity_print_info - per driver data
2692 * @vptr: velocity
2693 *
2694 * Print per driver data as the kernel driver finds Velocity
2695 * hardware
2696 */
2697static void __devinit velocity_print_info(struct velocity_info *vptr)
2698{
2699 struct net_device *dev = vptr->dev;
2700
2701 printk(KERN_INFO "%s: %s\n", dev->name, get_chip_name(vptr->chip_id));
2702 printk(KERN_INFO "%s: Ethernet Address: %2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
2703 dev->name,
2704 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
2705 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
2706}
2707
2708static u32 velocity_get_link(struct net_device *dev)
2709{
2710 struct velocity_info *vptr = netdev_priv(dev);
2711 struct mac_regs __iomem *regs = vptr->mac_regs;
2712 return BYTE_REG_BITS_IS_ON(PHYSR0_LINKGD, &regs->PHYSR0) ? 1 : 0;
2713}
2714
2715
2716/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 * velocity_found1 - set up discovered velocity card
2718 * @pdev: PCI device
2719 * @ent: PCI device table entry that matched
2720 *
2721 * Configure a discovered adapter from scratch. Return a negative
2722 * errno error code on failure paths.
2723 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724static int __devinit velocity_found1(struct pci_dev *pdev, const struct pci_device_id *ent)
2725{
2726 static int first = 1;
2727 struct net_device *dev;
2728 int i;
Sven Hartge07b5f6a2008-10-23 13:03:44 +00002729 const char *drv_string;
Jeff Garzikcabb7662006-06-27 09:25:28 -04002730 const struct velocity_info_tbl *info = &chip_info_table[ent->driver_data];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 struct velocity_info *vptr;
Dave Jonesc4067402009-07-20 17:35:21 +00002732 struct mac_regs __iomem *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 int ret = -ENOMEM;
2734
Jeff Garzike54f4892006-06-27 09:20:08 -04002735 /* FIXME: this driver, like almost all other ethernet drivers,
2736 * can support more than MAX_UNITS.
2737 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if (velocity_nics >= MAX_UNITS) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002739 dev_notice(&pdev->dev, "already found %d NICs.\n",
Jeff Garzike54f4892006-06-27 09:20:08 -04002740 velocity_nics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 return -ENODEV;
2742 }
2743
2744 dev = alloc_etherdev(sizeof(struct velocity_info));
Jeff Garzike54f4892006-06-27 09:20:08 -04002745 if (!dev) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04002746 dev_err(&pdev->dev, "allocate net device failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 goto out;
2748 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002749
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 /* Chain it all together */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 SET_NETDEV_DEV(dev, &pdev->dev);
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04002753 vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
2755
2756 if (first) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002757 printk(KERN_INFO "%s Ver. %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 VELOCITY_FULL_DRV_NAM, VELOCITY_VERSION);
2759 printk(KERN_INFO "Copyright (c) 2002, 2003 VIA Networking Technologies, Inc.\n");
2760 printk(KERN_INFO "Copyright (c) 2004 Red Hat Inc.\n");
2761 first = 0;
2762 }
2763
2764 velocity_init_info(pdev, vptr, info);
2765
2766 vptr->dev = dev;
2767
2768 dev->irq = pdev->irq;
2769
2770 ret = pci_enable_device(pdev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002771 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 goto err_free_dev;
2773
2774 ret = velocity_get_pci_info(vptr, pdev);
2775 if (ret < 0) {
Jeff Garzike54f4892006-06-27 09:20:08 -04002776 /* error message already printed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 goto err_disable;
2778 }
2779
2780 ret = pci_request_regions(pdev, VELOCITY_NAME);
2781 if (ret < 0) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04002782 dev_err(&pdev->dev, "No PCI resources.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 goto err_disable;
2784 }
2785
Jeff Garzikcabb7662006-06-27 09:25:28 -04002786 regs = ioremap(vptr->memaddr, VELOCITY_IO_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (regs == NULL) {
2788 ret = -EIO;
2789 goto err_release_res;
2790 }
2791
2792 vptr->mac_regs = regs;
2793
2794 mac_wol_reset(regs);
2795
2796 dev->base_addr = vptr->ioaddr;
2797
2798 for (i = 0; i < 6; i++)
2799 dev->dev_addr[i] = readb(&regs->PAR[i]);
2800
2801
Sven Hartge07b5f6a2008-10-23 13:03:44 +00002802 drv_string = dev_driver_string(&pdev->dev);
2803
2804 velocity_get_options(&vptr->options, velocity_nics, drv_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002806 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 * Mask out the options cannot be set to the chip
2808 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002809
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 vptr->options.flags &= info->flags;
2811
2812 /*
2813 * Enable the chip specified capbilities
2814 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 vptr->flags = vptr->options.flags | (info->flags & 0xFF000000UL);
2817
2818 vptr->wol_opts = vptr->options.wol_opts;
2819 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
2820
2821 vptr->phy_id = MII_GET_PHY_ID(vptr->mac_regs);
2822
2823 dev->irq = pdev->irq;
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002824 dev->netdev_ops = &velocity_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 dev->ethtool_ops = &velocity_ethtool_ops;
Simon Kagstromdfff7142009-11-25 22:10:26 +00002826 netif_napi_add(dev, &vptr->napi, velocity_poll, VELOCITY_NAPI_WEIGHT);
Stephen Hemminger501e4d22007-08-24 13:56:49 -07002827
Francois Romieud4f73c82008-04-24 23:32:33 +02002828 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_FILTER |
Simon Kagstromb06f78f2009-11-25 22:10:52 +00002829 NETIF_F_HW_VLAN_RX | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 ret = register_netdev(dev);
2832 if (ret < 0)
2833 goto err_iounmap;
2834
Séguier Régisd3b238a2009-06-16 11:25:49 +00002835 if (!velocity_get_link(dev)) {
Francois Romieu8a22ddd2006-06-23 00:47:06 +02002836 netif_carrier_off(dev);
Séguier Régisd3b238a2009-06-16 11:25:49 +00002837 vptr->mii_status |= VELOCITY_LINK_FAIL;
2838 }
Francois Romieu8a22ddd2006-06-23 00:47:06 +02002839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 velocity_print_info(vptr);
2841 pci_set_drvdata(pdev, dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 /* and leave the chip powered down */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002844
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 pci_set_power_state(pdev, PCI_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 velocity_nics++;
2847out:
2848 return ret;
2849
2850err_iounmap:
2851 iounmap(regs);
2852err_release_res:
2853 pci_release_regions(pdev);
2854err_disable:
2855 pci_disable_device(pdev);
2856err_free_dev:
2857 free_netdev(dev);
2858 goto out;
2859}
2860
Dave Jones2cf71d22009-07-23 18:11:12 -07002861
2862#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863/**
Dave Jones2cf71d22009-07-23 18:11:12 -07002864 * wol_calc_crc - WOL CRC
2865 * @pattern: data pattern
2866 * @mask_pattern: mask
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 *
Dave Jones2cf71d22009-07-23 18:11:12 -07002868 * Compute the wake on lan crc hashes for the packet header
2869 * we are interested in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 */
Dave Jones2cf71d22009-07-23 18:11:12 -07002871static u16 wol_calc_crc(int size, u8 *pattern, u8 *mask_pattern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Dave Jones2cf71d22009-07-23 18:11:12 -07002873 u16 crc = 0xFFFF;
2874 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 int i, j;
2876
Dave Jones2cf71d22009-07-23 18:11:12 -07002877 for (i = 0; i < size; i++) {
2878 mask = mask_pattern[i];
2879
2880 /* Skip this loop if the mask equals to zero */
2881 if (mask == 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Dave Jones2cf71d22009-07-23 18:11:12 -07002884 for (j = 0; j < 8; j++) {
2885 if ((mask & 0x01) == 0) {
2886 mask >>= 1;
2887 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 }
Dave Jones2cf71d22009-07-23 18:11:12 -07002889 mask >>= 1;
2890 crc = crc_ccitt(crc, &(pattern[i * 8 + j]), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 }
2892 }
Dave Jones2cf71d22009-07-23 18:11:12 -07002893 /* Finally, invert the result once to get the correct data */
2894 crc = ~crc;
2895 return bitrev32(crc) >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896}
2897
2898/**
Dave Jones2cf71d22009-07-23 18:11:12 -07002899 * velocity_set_wol - set up for wake on lan
2900 * @vptr: velocity to set WOL status on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 *
Dave Jones2cf71d22009-07-23 18:11:12 -07002902 * Set a card up for wake on lan either by unicast or by
2903 * ARP packet.
2904 *
2905 * FIXME: check static buffer is safe here
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 */
Dave Jones2cf71d22009-07-23 18:11:12 -07002907static int velocity_set_wol(struct velocity_info *vptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908{
Dave Jonesc4067402009-07-20 17:35:21 +00002909 struct mac_regs __iomem *regs = vptr->mac_regs;
Dave Jones2cf71d22009-07-23 18:11:12 -07002910 static u8 buf[256];
2911 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Dave Jones2cf71d22009-07-23 18:11:12 -07002913 static u32 mask_pattern[2][4] = {
2914 {0x00203000, 0x000003C0, 0x00000000, 0x0000000}, /* ARP */
2915 {0xfffff000, 0xffffffff, 0xffffffff, 0x000ffff} /* Magic Packet */
2916 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Dave Jones2cf71d22009-07-23 18:11:12 -07002918 writew(0xFFFF, &regs->WOLCRClr);
2919 writeb(WOLCFG_SAB | WOLCFG_SAM, &regs->WOLCFGSet);
2920 writew(WOLCR_MAGIC_EN, &regs->WOLCRSet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Dave Jones2cf71d22009-07-23 18:11:12 -07002922 /*
2923 if (vptr->wol_opts & VELOCITY_WOL_PHY)
2924 writew((WOLCR_LINKON_EN|WOLCR_LINKOFF_EN), &regs->WOLCRSet);
2925 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
Dave Jones2cf71d22009-07-23 18:11:12 -07002927 if (vptr->wol_opts & VELOCITY_WOL_UCAST)
2928 writew(WOLCR_UNICAST_EN, &regs->WOLCRSet);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002929
Dave Jones2cf71d22009-07-23 18:11:12 -07002930 if (vptr->wol_opts & VELOCITY_WOL_ARP) {
2931 struct arp_packet *arp = (struct arp_packet *) buf;
2932 u16 crc;
2933 memset(buf, 0, sizeof(struct arp_packet) + 7);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002934
Dave Jones2cf71d22009-07-23 18:11:12 -07002935 for (i = 0; i < 4; i++)
2936 writel(mask_pattern[0][i], &regs->ByteMask[0][i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Dave Jones2cf71d22009-07-23 18:11:12 -07002938 arp->type = htons(ETH_P_ARP);
2939 arp->ar_op = htons(1);
2940
2941 memcpy(arp->ar_tip, vptr->ip_addr, 4);
2942
2943 crc = wol_calc_crc((sizeof(struct arp_packet) + 7) / 8, buf,
2944 (u8 *) & mask_pattern[0][0]);
2945
2946 writew(crc, &regs->PatternCRC[0]);
2947 writew(WOLCR_ARP_EN, &regs->WOLCRSet);
2948 }
2949
2950 BYTE_REG_BITS_ON(PWCFG_WOLTYPE, &regs->PWCFGSet);
2951 BYTE_REG_BITS_ON(PWCFG_LEGACY_WOLEN, &regs->PWCFGSet);
2952
2953 writew(0x0FFF, &regs->WOLSRClr);
2954
2955 if (vptr->mii_status & VELOCITY_AUTONEG_ENABLE) {
2956 if (PHYID_GET_PHY_ID(vptr->phy_id) == PHYID_CICADA_CS8201)
2957 MII_REG_BITS_ON(AUXCR_MDPPS, MII_REG_AUXCR, vptr->mac_regs);
2958
2959 MII_REG_BITS_OFF(G1000CR_1000FD | G1000CR_1000, MII_REG_G1000CR, vptr->mac_regs);
2960 }
2961
2962 if (vptr->mii_status & VELOCITY_SPEED_1000)
2963 MII_REG_BITS_ON(BMCR_REAUTO, MII_REG_BMCR, vptr->mac_regs);
2964
2965 BYTE_REG_BITS_ON(CHIPGCR_FCMODE, &regs->CHIPGCR);
2966
2967 {
2968 u8 GCR;
2969 GCR = readb(&regs->CHIPGCR);
2970 GCR = (GCR & ~CHIPGCR_FCGMII) | CHIPGCR_FCFDX;
2971 writeb(GCR, &regs->CHIPGCR);
2972 }
2973
2974 BYTE_REG_BITS_OFF(ISR_PWEI, &regs->ISR);
2975 /* Turn on SWPTAG just before entering power mode */
2976 BYTE_REG_BITS_ON(STICKHW_SWPTAG, &regs->STICKHW);
2977 /* Go to bed ..... */
2978 BYTE_REG_BITS_ON((STICKHW_DS1 | STICKHW_DS0), &regs->STICKHW);
2979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 return 0;
2981}
2982
2983/**
Dave Jones2cf71d22009-07-23 18:11:12 -07002984 * velocity_save_context - save registers
2985 * @vptr: velocity
2986 * @context: buffer for stored context
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 *
Dave Jones2cf71d22009-07-23 18:11:12 -07002988 * Retrieve the current configuration from the velocity hardware
2989 * and stash it in the context structure, for use by the context
2990 * restore functions. This allows us to save things we need across
2991 * power down states
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 */
Dave Jones2cf71d22009-07-23 18:11:12 -07002993static void velocity_save_context(struct velocity_info *vptr, struct velocity_context *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
Dave Jones2cf71d22009-07-23 18:11:12 -07002995 struct mac_regs __iomem *regs = vptr->mac_regs;
2996 u16 i;
2997 u8 __iomem *ptr = (u8 __iomem *)regs;
2998
2999 for (i = MAC_REG_PAR; i < MAC_REG_CR0_CLR; i += 4)
3000 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
3001
3002 for (i = MAC_REG_MAR; i < MAC_REG_TDCSR_CLR; i += 4)
3003 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
3004
3005 for (i = MAC_REG_RDBASE_LO; i < MAC_REG_FIFO_TEST0; i += 4)
3006 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
3007
3008}
3009
3010static int velocity_suspend(struct pci_dev *pdev, pm_message_t state)
3011{
3012 struct net_device *dev = pci_get_drvdata(pdev);
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003013 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 unsigned long flags;
Francois Romieu580a6902008-07-11 00:03:44 +02003015
Dave Jones2cf71d22009-07-23 18:11:12 -07003016 if (!netif_running(vptr->dev))
3017 return 0;
Francois Romieu580a6902008-07-11 00:03:44 +02003018
Dave Jones2cf71d22009-07-23 18:11:12 -07003019 netif_device_detach(vptr->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
3021 spin_lock_irqsave(&vptr->lock, flags);
Dave Jones2cf71d22009-07-23 18:11:12 -07003022 pci_save_state(pdev);
3023#ifdef ETHTOOL_GWOL
3024 if (vptr->flags & VELOCITY_FLAGS_WOL_ENABLED) {
3025 velocity_get_ip(vptr);
3026 velocity_save_context(vptr, &vptr->context);
3027 velocity_shutdown(vptr);
3028 velocity_set_wol(vptr);
3029 pci_enable_wake(pdev, PCI_D3hot, 1);
3030 pci_set_power_state(pdev, PCI_D3hot);
3031 } else {
3032 velocity_save_context(vptr, &vptr->context);
3033 velocity_shutdown(vptr);
3034 pci_disable_device(pdev);
3035 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 }
Dave Jones2cf71d22009-07-23 18:11:12 -07003037#else
3038 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3039#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 spin_unlock_irqrestore(&vptr->lock, flags);
Dave Jones2cf71d22009-07-23 18:11:12 -07003041 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042}
3043
3044/**
Dave Jones2cf71d22009-07-23 18:11:12 -07003045 * velocity_restore_context - restore registers
3046 * @vptr: velocity
3047 * @context: buffer for stored context
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 *
Dave Jones2cf71d22009-07-23 18:11:12 -07003049 * Reload the register configuration from the velocity context
3050 * created by velocity_save_context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 */
Dave Jones2cf71d22009-07-23 18:11:12 -07003052static void velocity_restore_context(struct velocity_info *vptr, struct velocity_context *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053{
Dave Jones2cf71d22009-07-23 18:11:12 -07003054 struct mac_regs __iomem *regs = vptr->mac_regs;
3055 int i;
3056 u8 __iomem *ptr = (u8 __iomem *)regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Dave Jones2cf71d22009-07-23 18:11:12 -07003058 for (i = MAC_REG_PAR; i < MAC_REG_CR0_SET; i += 4)
3059 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Dave Jones2cf71d22009-07-23 18:11:12 -07003061 /* Just skip cr0 */
3062 for (i = MAC_REG_CR1_SET; i < MAC_REG_CR0_CLR; i++) {
3063 /* Clear */
3064 writeb(~(*((u8 *) (context->mac_reg + i))), ptr + i + 4);
3065 /* Set */
3066 writeb(*((u8 *) (context->mac_reg + i)), ptr + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 }
3068
Dave Jones2cf71d22009-07-23 18:11:12 -07003069 for (i = MAC_REG_MAR; i < MAC_REG_IMR; i += 4)
3070 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
3071
3072 for (i = MAC_REG_RDBASE_LO; i < MAC_REG_FIFO_TEST0; i += 4)
3073 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
3074
3075 for (i = MAC_REG_TDCSR_SET; i <= MAC_REG_RDCSR_SET; i++)
3076 writeb(*((u8 *) (context->mac_reg + i)), ptr + i);
3077}
3078
3079static int velocity_resume(struct pci_dev *pdev)
3080{
3081 struct net_device *dev = pci_get_drvdata(pdev);
3082 struct velocity_info *vptr = netdev_priv(dev);
3083 unsigned long flags;
3084 int i;
3085
3086 if (!netif_running(vptr->dev))
3087 return 0;
3088
3089 pci_set_power_state(pdev, PCI_D0);
3090 pci_enable_wake(pdev, 0, 0);
3091 pci_restore_state(pdev);
3092
3093 mac_wol_reset(vptr->mac_regs);
3094
3095 spin_lock_irqsave(&vptr->lock, flags);
3096 velocity_restore_context(vptr, &vptr->context);
3097 velocity_init_registers(vptr, VELOCITY_INIT_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 mac_disable_int(vptr->mac_regs);
3099
Simon Kagstromd6cade02010-02-09 23:37:54 +00003100 velocity_tx_srv(vptr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003101
Dave Jones2cf71d22009-07-23 18:11:12 -07003102 for (i = 0; i < vptr->tx.numq; i++) {
3103 if (vptr->tx.used[i])
3104 mac_tx_queue_wake(vptr->mac_regs, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 }
Dave Jones2cf71d22009-07-23 18:11:12 -07003106
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 mac_enable_int(vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07003108 spin_unlock_irqrestore(&vptr->lock, flags);
3109 netif_device_attach(vptr->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
Dave Jones2cf71d22009-07-23 18:11:12 -07003111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112}
Dave Jones2cf71d22009-07-23 18:11:12 -07003113#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
3115/*
3116 * Definition for our device driver. The PCI layer interface
3117 * uses this to handle all our card discover and plugging
3118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119static struct pci_driver velocity_driver = {
3120 .name = VELOCITY_NAME,
3121 .id_table = velocity_id_table,
3122 .probe = velocity_found1,
3123 .remove = __devexit_p(velocity_remove1),
3124#ifdef CONFIG_PM
3125 .suspend = velocity_suspend,
3126 .resume = velocity_resume,
3127#endif
3128};
3129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
3131/**
3132 * velocity_ethtool_up - pre hook for ethtool
3133 * @dev: network device
3134 *
3135 * Called before an ethtool operation. We need to make sure the
3136 * chip is out of D3 state before we poke at it.
3137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138static int velocity_ethtool_up(struct net_device *dev)
3139{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003140 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 if (!netif_running(dev))
3142 pci_set_power_state(vptr->pdev, PCI_D0);
3143 return 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003144}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
3146/**
3147 * velocity_ethtool_down - post hook for ethtool
3148 * @dev: network device
3149 *
3150 * Called after an ethtool operation. Restore the chip back to D3
3151 * state if it isn't running.
3152 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153static void velocity_ethtool_down(struct net_device *dev)
3154{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003155 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 if (!netif_running(dev))
3157 pci_set_power_state(vptr->pdev, PCI_D3hot);
3158}
3159
3160static int velocity_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3161{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003162 struct velocity_info *vptr = netdev_priv(dev);
Dave Jonesc4067402009-07-20 17:35:21 +00003163 struct mac_regs __iomem *regs = vptr->mac_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 u32 status;
3165 status = check_connection_type(vptr->mac_regs);
3166
Jay Cliburn59b693f2006-07-20 23:23:57 +02003167 cmd->supported = SUPPORTED_TP |
3168 SUPPORTED_Autoneg |
3169 SUPPORTED_10baseT_Half |
3170 SUPPORTED_10baseT_Full |
3171 SUPPORTED_100baseT_Half |
3172 SUPPORTED_100baseT_Full |
3173 SUPPORTED_1000baseT_Half |
3174 SUPPORTED_1000baseT_Full;
3175 if (status & VELOCITY_SPEED_1000)
3176 cmd->speed = SPEED_1000;
3177 else if (status & VELOCITY_SPEED_100)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 cmd->speed = SPEED_100;
3179 else
3180 cmd->speed = SPEED_10;
3181 cmd->autoneg = (status & VELOCITY_AUTONEG_ENABLE) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
3182 cmd->port = PORT_TP;
3183 cmd->transceiver = XCVR_INTERNAL;
3184 cmd->phy_address = readb(&regs->MIIADR) & 0x1F;
3185
3186 if (status & VELOCITY_DUPLEX_FULL)
3187 cmd->duplex = DUPLEX_FULL;
3188 else
3189 cmd->duplex = DUPLEX_HALF;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 return 0;
3192}
3193
3194static int velocity_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3195{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003196 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 u32 curr_status;
3198 u32 new_status = 0;
3199 int ret = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 curr_status = check_connection_type(vptr->mac_regs);
3202 curr_status &= (~VELOCITY_LINK_FAIL);
3203
3204 new_status |= ((cmd->autoneg) ? VELOCITY_AUTONEG_ENABLE : 0);
3205 new_status |= ((cmd->speed == SPEED_100) ? VELOCITY_SPEED_100 : 0);
3206 new_status |= ((cmd->speed == SPEED_10) ? VELOCITY_SPEED_10 : 0);
3207 new_status |= ((cmd->duplex == DUPLEX_FULL) ? VELOCITY_DUPLEX_FULL : 0);
3208
3209 if ((new_status & VELOCITY_AUTONEG_ENABLE) && (new_status != (curr_status | VELOCITY_AUTONEG_ENABLE)))
3210 ret = -EINVAL;
3211 else
3212 velocity_set_media_mode(vptr, new_status);
3213
3214 return ret;
3215}
3216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217static void velocity_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3218{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003219 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 strcpy(info->driver, VELOCITY_NAME);
3221 strcpy(info->version, VELOCITY_VERSION);
3222 strcpy(info->bus_info, pci_name(vptr->pdev));
3223}
3224
3225static void velocity_ethtool_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3226{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003227 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 wol->supported = WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_ARP;
3229 wol->wolopts |= WAKE_MAGIC;
3230 /*
3231 if (vptr->wol_opts & VELOCITY_WOL_PHY)
3232 wol.wolopts|=WAKE_PHY;
3233 */
3234 if (vptr->wol_opts & VELOCITY_WOL_UCAST)
3235 wol->wolopts |= WAKE_UCAST;
3236 if (vptr->wol_opts & VELOCITY_WOL_ARP)
3237 wol->wolopts |= WAKE_ARP;
3238 memcpy(&wol->sopass, vptr->wol_passwd, 6);
3239}
3240
3241static int velocity_ethtool_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3242{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003243 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245 if (!(wol->wolopts & (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_ARP)))
3246 return -EFAULT;
3247 vptr->wol_opts = VELOCITY_WOL_MAGIC;
3248
3249 /*
3250 if (wol.wolopts & WAKE_PHY) {
3251 vptr->wol_opts|=VELOCITY_WOL_PHY;
3252 vptr->flags |=VELOCITY_FLAGS_WOL_ENABLED;
3253 }
3254 */
3255
3256 if (wol->wolopts & WAKE_MAGIC) {
3257 vptr->wol_opts |= VELOCITY_WOL_MAGIC;
3258 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3259 }
3260 if (wol->wolopts & WAKE_UCAST) {
3261 vptr->wol_opts |= VELOCITY_WOL_UCAST;
3262 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3263 }
3264 if (wol->wolopts & WAKE_ARP) {
3265 vptr->wol_opts |= VELOCITY_WOL_ARP;
3266 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3267 }
3268 memcpy(vptr->wol_passwd, wol->sopass, 6);
3269 return 0;
3270}
3271
3272static u32 velocity_get_msglevel(struct net_device *dev)
3273{
3274 return msglevel;
3275}
3276
3277static void velocity_set_msglevel(struct net_device *dev, u32 value)
3278{
3279 msglevel = value;
3280}
3281
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00003282static int get_pending_timer_val(int val)
3283{
3284 int mult_bits = val >> 6;
3285 int mult = 1;
3286
3287 switch (mult_bits)
3288 {
3289 case 1:
3290 mult = 4; break;
3291 case 2:
3292 mult = 16; break;
3293 case 3:
3294 mult = 64; break;
3295 case 0:
3296 default:
3297 break;
3298 }
3299
3300 return (val & 0x3f) * mult;
3301}
3302
3303static void set_pending_timer_val(int *val, u32 us)
3304{
3305 u8 mult = 0;
3306 u8 shift = 0;
3307
3308 if (us >= 0x3f) {
3309 mult = 1; /* mult with 4 */
3310 shift = 2;
3311 }
3312 if (us >= 0x3f * 4) {
3313 mult = 2; /* mult with 16 */
3314 shift = 4;
3315 }
3316 if (us >= 0x3f * 16) {
3317 mult = 3; /* mult with 64 */
3318 shift = 6;
3319 }
3320
3321 *val = (mult << 6) | ((us >> shift) & 0x3f);
3322}
3323
3324
3325static int velocity_get_coalesce(struct net_device *dev,
3326 struct ethtool_coalesce *ecmd)
3327{
3328 struct velocity_info *vptr = netdev_priv(dev);
3329
3330 ecmd->tx_max_coalesced_frames = vptr->options.tx_intsup;
3331 ecmd->rx_max_coalesced_frames = vptr->options.rx_intsup;
3332
3333 ecmd->rx_coalesce_usecs = get_pending_timer_val(vptr->options.rxqueue_timer);
3334 ecmd->tx_coalesce_usecs = get_pending_timer_val(vptr->options.txqueue_timer);
3335
3336 return 0;
3337}
3338
3339static int velocity_set_coalesce(struct net_device *dev,
3340 struct ethtool_coalesce *ecmd)
3341{
3342 struct velocity_info *vptr = netdev_priv(dev);
3343 int max_us = 0x3f * 64;
3344
3345 /* 6 bits of */
3346 if (ecmd->tx_coalesce_usecs > max_us)
3347 return -EINVAL;
3348 if (ecmd->rx_coalesce_usecs > max_us)
3349 return -EINVAL;
3350
3351 if (ecmd->tx_max_coalesced_frames > 0xff)
3352 return -EINVAL;
3353 if (ecmd->rx_max_coalesced_frames > 0xff)
3354 return -EINVAL;
3355
3356 vptr->options.rx_intsup = ecmd->rx_max_coalesced_frames;
3357 vptr->options.tx_intsup = ecmd->tx_max_coalesced_frames;
3358
3359 set_pending_timer_val(&vptr->options.rxqueue_timer,
3360 ecmd->rx_coalesce_usecs);
3361 set_pending_timer_val(&vptr->options.txqueue_timer,
3362 ecmd->tx_coalesce_usecs);
3363
3364 /* Setup the interrupt suppression and queue timers */
3365 mac_disable_int(vptr->mac_regs);
3366 setup_adaptive_interrupts(vptr);
3367 setup_queue_timers(vptr);
3368
3369 mac_write_int_mask(vptr->int_mask, vptr->mac_regs);
3370 mac_clear_isr(vptr->mac_regs);
3371 mac_enable_int(vptr->mac_regs);
3372
3373 return 0;
3374}
3375
Jeff Garzik7282d492006-09-13 14:30:00 -04003376static const struct ethtool_ops velocity_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 .get_settings = velocity_get_settings,
3378 .set_settings = velocity_set_settings,
3379 .get_drvinfo = velocity_get_drvinfo,
Simon Kagstromb06f78f2009-11-25 22:10:52 +00003380 .set_tx_csum = ethtool_op_set_tx_csum,
3381 .get_tx_csum = ethtool_op_get_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 .get_wol = velocity_ethtool_get_wol,
3383 .set_wol = velocity_ethtool_set_wol,
3384 .get_msglevel = velocity_get_msglevel,
3385 .set_msglevel = velocity_set_msglevel,
Simon Kagstromc79992f2009-11-25 22:10:43 +00003386 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 .get_link = velocity_get_link,
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00003388 .get_coalesce = velocity_get_coalesce,
3389 .set_coalesce = velocity_set_coalesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 .begin = velocity_ethtool_up,
3391 .complete = velocity_ethtool_down
3392};
3393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394#ifdef CONFIG_PM
Randy Dunlapce9f7fe2006-12-18 21:21:10 -08003395#ifdef CONFIG_INET
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396static int velocity_netdev_event(struct notifier_block *nb, unsigned long notification, void *ptr)
3397{
3398 struct in_ifaddr *ifa = (struct in_ifaddr *) ptr;
Denis V. Luneva337499f2008-02-28 20:44:27 -08003399 struct net_device *dev = ifa->ifa_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400
Ben Hutchings516b4df2009-10-28 04:01:46 -07003401 if (dev_net(dev) == &init_net &&
3402 dev->netdev_ops == &velocity_netdev_ops)
3403 velocity_get_ip(netdev_priv(dev));
Denis V. Luneva337499f2008-02-28 20:44:27 -08003404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 return NOTIFY_DONE;
3406}
Dave Jones2cf71d22009-07-23 18:11:12 -07003407#endif /* CONFIG_INET */
3408#endif /* CONFIG_PM */
Randy Dunlapce9f7fe2006-12-18 21:21:10 -08003409
Dave Jones2cf71d22009-07-23 18:11:12 -07003410#if defined(CONFIG_PM) && defined(CONFIG_INET)
3411static struct notifier_block velocity_inetaddr_notifier = {
3412 .notifier_call = velocity_netdev_event,
3413};
3414
3415static void velocity_register_notifier(void)
3416{
3417 register_inetaddr_notifier(&velocity_inetaddr_notifier);
3418}
3419
3420static void velocity_unregister_notifier(void)
3421{
3422 unregister_inetaddr_notifier(&velocity_inetaddr_notifier);
3423}
3424
3425#else
3426
3427#define velocity_register_notifier() do {} while (0)
3428#define velocity_unregister_notifier() do {} while (0)
3429
3430#endif /* defined(CONFIG_PM) && defined(CONFIG_INET) */
3431
3432/**
3433 * velocity_init_module - load time function
3434 *
3435 * Called when the velocity module is loaded. The PCI driver
3436 * is registered with the PCI layer, and in turn will call
3437 * the probe functions for each velocity adapter installed
3438 * in the system.
3439 */
3440static int __init velocity_init_module(void)
3441{
3442 int ret;
3443
3444 velocity_register_notifier();
3445 ret = pci_register_driver(&velocity_driver);
3446 if (ret < 0)
3447 velocity_unregister_notifier();
3448 return ret;
3449}
3450
3451/**
3452 * velocity_cleanup - module unload
3453 *
3454 * When the velocity hardware is unloaded this function is called.
3455 * It will clean up the notifiers and the unregister the PCI
3456 * driver interface for this hardware. This in turn cleans up
3457 * all discovered interfaces before returning from the function
3458 */
3459static void __exit velocity_cleanup_module(void)
3460{
3461 velocity_unregister_notifier();
3462 pci_unregister_driver(&velocity_driver);
3463}
3464
3465module_init(velocity_init_module);
3466module_exit(velocity_cleanup_module);