blob: a9aa4a3fbfbe0532e5a9d2895cf1f944d3108e84 [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>
Jiri Pirko73b54682011-07-20 04:54:30 +000048#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/init.h>
50#include <linux/mm.h>
51#include <linux/errno.h>
52#include <linux/ioport.h>
53#include <linux/pci.h>
54#include <linux/kernel.h>
55#include <linux/netdevice.h>
56#include <linux/etherdevice.h>
57#include <linux/skbuff.h>
58#include <linux/delay.h>
59#include <linux/timer.h>
60#include <linux/slab.h>
61#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/string.h>
63#include <linux/wait.h>
Dave Jonesc4067402009-07-20 17:35:21 +000064#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/if.h>
Dave Jonesc4067402009-07-20 17:35:21 +000066#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/proc_fs.h>
68#include <linux/inetdevice.h>
69#include <linux/reboot.h>
70#include <linux/ethtool.h>
71#include <linux/mii.h>
72#include <linux/in.h>
73#include <linux/if_arp.h>
Stephen Hemminger501e4d22007-08-24 13:56:49 -070074#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/ip.h>
76#include <linux/tcp.h>
77#include <linux/udp.h>
78#include <linux/crc-ccitt.h>
79#include <linux/crc32.h>
Jiri Pirko73b54682011-07-20 04:54:30 +000080#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82#include "via-velocity.h"
83
84
Dave Jonesc4067402009-07-20 17:35:21 +000085static int velocity_nics;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int msglevel = MSG_LEVEL_INFO;
87
Stephen Hemminger01faccb2007-08-24 14:40:45 -070088/**
89 * mac_get_cam_mask - Read a CAM mask
90 * @regs: register block for this velocity
91 * @mask: buffer to store mask
92 *
93 * Fetch the mask bits of the selected CAM and store them into the
94 * provided mask buffer.
95 */
Dave Jonesc4067402009-07-20 17:35:21 +000096static void mac_get_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
Stephen Hemminger01faccb2007-08-24 14:40:45 -070097{
98 int i;
99
100 /* Select CAM mask */
101 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
102
103 writeb(0, &regs->CAMADDR);
104
105 /* read mask */
106 for (i = 0; i < 8; i++)
107 *mask++ = readb(&(regs->MARCAM[i]));
108
109 /* disable CAMEN */
110 writeb(0, &regs->CAMADDR);
111
112 /* Select mar */
113 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700114}
115
116
117/**
118 * mac_set_cam_mask - Set a CAM mask
119 * @regs: register block for this velocity
120 * @mask: CAM mask to load
121 *
122 * Store a new mask into a CAM
123 */
Dave Jonesc4067402009-07-20 17:35:21 +0000124static void mac_set_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700125{
126 int i;
127 /* Select CAM mask */
128 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
129
130 writeb(CAMADDR_CAMEN, &regs->CAMADDR);
131
Dave Jonesc4067402009-07-20 17:35:21 +0000132 for (i = 0; i < 8; i++)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700133 writeb(*mask++, &(regs->MARCAM[i]));
Dave Jonesc4067402009-07-20 17:35:21 +0000134
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700135 /* disable CAMEN */
136 writeb(0, &regs->CAMADDR);
137
138 /* Select mar */
139 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
140}
141
Dave Jonesc4067402009-07-20 17:35:21 +0000142static void mac_set_vlan_cam_mask(struct mac_regs __iomem *regs, u8 *mask)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700143{
144 int i;
145 /* Select CAM mask */
146 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
147
148 writeb(CAMADDR_CAMEN | CAMADDR_VCAMSL, &regs->CAMADDR);
149
Dave Jonesc4067402009-07-20 17:35:21 +0000150 for (i = 0; i < 8; i++)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700151 writeb(*mask++, &(regs->MARCAM[i]));
Dave Jonesc4067402009-07-20 17:35:21 +0000152
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700153 /* disable CAMEN */
154 writeb(0, &regs->CAMADDR);
155
156 /* Select mar */
157 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
158}
159
160/**
161 * mac_set_cam - set CAM data
162 * @regs: register block of this velocity
163 * @idx: Cam index
164 * @addr: 2 or 6 bytes of CAM data
165 *
166 * Load an address or vlan tag into a CAM
167 */
Dave Jonesc4067402009-07-20 17:35:21 +0000168static void mac_set_cam(struct mac_regs __iomem *regs, int idx, const u8 *addr)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700169{
170 int i;
171
172 /* Select CAM mask */
173 BYTE_REG_BITS_SET(CAMCR_PS_CAM_DATA, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
174
175 idx &= (64 - 1);
176
177 writeb(CAMADDR_CAMEN | idx, &regs->CAMADDR);
178
Dave Jonesc4067402009-07-20 17:35:21 +0000179 for (i = 0; i < 6; i++)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700180 writeb(*addr++, &(regs->MARCAM[i]));
Dave Jonesc4067402009-07-20 17:35:21 +0000181
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700182 BYTE_REG_BITS_ON(CAMCR_CAMWR, &regs->CAMCR);
183
184 udelay(10);
185
186 writeb(0, &regs->CAMADDR);
187
188 /* Select mar */
189 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
190}
191
Dave Jonesc4067402009-07-20 17:35:21 +0000192static void mac_set_vlan_cam(struct mac_regs __iomem *regs, int idx,
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700193 const u8 *addr)
194{
195
196 /* Select CAM mask */
197 BYTE_REG_BITS_SET(CAMCR_PS_CAM_DATA, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
198
199 idx &= (64 - 1);
200
201 writeb(CAMADDR_CAMEN | CAMADDR_VCAMSL | idx, &regs->CAMADDR);
202 writew(*((u16 *) addr), &regs->MARCAM[0]);
203
204 BYTE_REG_BITS_ON(CAMCR_CAMWR, &regs->CAMCR);
205
206 udelay(10);
207
208 writeb(0, &regs->CAMADDR);
209
210 /* Select mar */
211 BYTE_REG_BITS_SET(CAMCR_PS_MAR, CAMCR_PS1 | CAMCR_PS0, &regs->CAMCR);
212}
213
214
215/**
216 * mac_wol_reset - reset WOL after exiting low power
217 * @regs: register block of this velocity
218 *
219 * Called after we drop out of wake on lan mode in order to
220 * reset the Wake on lan features. This function doesn't restore
221 * the rest of the logic from the result of sleep/wakeup
222 */
Dave Jonesc4067402009-07-20 17:35:21 +0000223static void mac_wol_reset(struct mac_regs __iomem *regs)
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700224{
225
226 /* Turn off SWPTAG right after leaving power mode */
227 BYTE_REG_BITS_OFF(STICKHW_SWPTAG, &regs->STICKHW);
228 /* clear sticky bits */
229 BYTE_REG_BITS_OFF((STICKHW_DS1 | STICKHW_DS0), &regs->STICKHW);
230
231 BYTE_REG_BITS_OFF(CHIPGCR_FCGMII, &regs->CHIPGCR);
232 BYTE_REG_BITS_OFF(CHIPGCR_FCMODE, &regs->CHIPGCR);
233 /* disable force PME-enable */
234 writeb(WOLCFG_PMEOVR, &regs->WOLCFGClr);
235 /* disable power-event config bit */
236 writew(0xFFFF, &regs->WOLCRClr);
237 /* clear power status */
238 writew(0xFFFF, &regs->WOLSRClr);
239}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Jeff Garzik7282d492006-09-13 14:30:00 -0400241static const struct ethtool_ops velocity_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243/*
244 Define module options
245*/
246
247MODULE_AUTHOR("VIA Networking Technologies, Inc.");
248MODULE_LICENSE("GPL");
249MODULE_DESCRIPTION("VIA Networking Velocity Family Gigabit Ethernet Adapter Driver");
250
Dave Jonesc4067402009-07-20 17:35:21 +0000251#define VELOCITY_PARAM(N, D) \
252 static int N[MAX_UNITS] = OPTION_DEFAULT;\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 module_param_array(N, int, NULL, 0); \
Dave Jonesc4067402009-07-20 17:35:21 +0000254 MODULE_PARM_DESC(N, D);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256#define RX_DESC_MIN 64
257#define RX_DESC_MAX 255
258#define RX_DESC_DEF 64
259VELOCITY_PARAM(RxDescriptors, "Number of receive descriptors");
260
261#define TX_DESC_MIN 16
262#define TX_DESC_MAX 256
263#define TX_DESC_DEF 64
264VELOCITY_PARAM(TxDescriptors, "Number of transmit descriptors");
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266#define RX_THRESH_MIN 0
267#define RX_THRESH_MAX 3
268#define RX_THRESH_DEF 0
269/* rx_thresh[] is used for controlling the receive fifo threshold.
270 0: indicate the rxfifo threshold is 128 bytes.
271 1: indicate the rxfifo threshold is 512 bytes.
272 2: indicate the rxfifo threshold is 1024 bytes.
273 3: indicate the rxfifo threshold is store & forward.
274*/
275VELOCITY_PARAM(rx_thresh, "Receive fifo threshold");
276
277#define DMA_LENGTH_MIN 0
278#define DMA_LENGTH_MAX 7
Simon Kagstrom2a5774f2009-11-25 22:10:34 +0000279#define DMA_LENGTH_DEF 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281/* DMA_length[] is used for controlling the DMA length
282 0: 8 DWORDs
283 1: 16 DWORDs
284 2: 32 DWORDs
285 3: 64 DWORDs
286 4: 128 DWORDs
287 5: 256 DWORDs
288 6: SF(flush till emply)
289 7: SF(flush till emply)
290*/
291VELOCITY_PARAM(DMA_length, "DMA length");
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293#define IP_ALIG_DEF 0
294/* IP_byte_align[] is used for IP header DWORD byte aligned
295 0: indicate the IP header won't be DWORD byte aligned.(Default) .
296 1: indicate the IP header will be DWORD byte aligned.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300297 In some environment, the IP header should be DWORD byte aligned,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 or the packet will be droped when we receive it. (eg: IPVS)
299*/
300VELOCITY_PARAM(IP_byte_align, "Enable IP header dword aligned");
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302#define FLOW_CNTL_DEF 1
303#define FLOW_CNTL_MIN 1
304#define FLOW_CNTL_MAX 5
305
306/* flow_control[] is used for setting the flow control ability of NIC.
307 1: hardware deafult - AUTO (default). Use Hardware default value in ANAR.
308 2: enable TX flow control.
309 3: enable RX flow control.
310 4: enable RX/TX flow control.
311 5: disable
312*/
313VELOCITY_PARAM(flow_control, "Enable flow control ability");
314
315#define MED_LNK_DEF 0
316#define MED_LNK_MIN 0
françois romieu15419222010-10-13 09:26:05 +0000317#define MED_LNK_MAX 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318/* speed_duplex[] is used for setting the speed and duplex mode of NIC.
319 0: indicate autonegotiation for both speed and duplex mode
320 1: indicate 100Mbps half duplex mode
321 2: indicate 100Mbps full duplex mode
322 3: indicate 10Mbps half duplex mode
323 4: indicate 10Mbps full duplex mode
françois romieu15419222010-10-13 09:26:05 +0000324 5: indicate 1000Mbps full duplex mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 Note:
Dave Jonesc4067402009-07-20 17:35:21 +0000327 if EEPROM have been set to the force mode, this option is ignored
328 by driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329*/
330VELOCITY_PARAM(speed_duplex, "Setting the speed and duplex mode");
331
332#define VAL_PKT_LEN_DEF 0
333/* ValPktLen[] is used for setting the checksum offload ability of NIC.
334 0: Receive frame with invalid layer 2 length (Default)
335 1: Drop frame with invalid layer 2 length
336*/
337VELOCITY_PARAM(ValPktLen, "Receiving or Drop invalid 802.3 frame");
338
339#define WOL_OPT_DEF 0
340#define WOL_OPT_MIN 0
341#define WOL_OPT_MAX 7
342/* wol_opts[] is used for controlling wake on lan behavior.
343 0: Wake up if recevied a magic packet. (Default)
344 1: Wake up if link status is on/off.
345 2: Wake up if recevied an arp packet.
346 4: Wake up if recevied any unicast packet.
347 Those value can be sumed up to support more than one option.
348*/
349VELOCITY_PARAM(wol_opts, "Wake On Lan options");
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351static int rx_copybreak = 200;
352module_param(rx_copybreak, int, 0644);
353MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355/*
356 * Internal board variants. At the moment we have only one
357 */
Andrew Morton4f14b922008-02-09 23:41:40 -0800358static struct velocity_info_tbl chip_info_table[] = {
Jeff Garzikcabb7662006-06-27 09:25:28 -0400359 {CHIP_TYPE_VT6110, "VIA Networking Velocity Family Gigabit Ethernet Adapter", 1, 0x00FFFFFFUL},
360 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361};
362
363/*
364 * Describe the PCI device identifiers that we support in this
365 * device driver. Used for hotplug autoloading.
366 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000367static DEFINE_PCI_DEVICE_TABLE(velocity_id_table) = {
Jeff Garzike54f4892006-06-27 09:20:08 -0400368 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_612X) },
369 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370};
371
372MODULE_DEVICE_TABLE(pci, velocity_id_table);
373
374/**
375 * get_chip_name - identifier to name
376 * @id: chip identifier
377 *
378 * Given a chip identifier return a suitable description. Returns
379 * a pointer a static string valid while the driver is loaded.
380 */
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700381static const char __devinit *get_chip_name(enum chip_type chip_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 int i;
384 for (i = 0; chip_info_table[i].name != NULL; i++)
385 if (chip_info_table[i].chip_id == chip_id)
386 break;
387 return chip_info_table[i].name;
388}
389
390/**
391 * velocity_remove1 - device unplug
392 * @pdev: PCI device being removed
393 *
394 * Device unload callback. Called on an unplug or on module
395 * unload for each active device that is present. Disconnects
396 * the device from the network layer and frees all the resources
397 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398static void __devexit velocity_remove1(struct pci_dev *pdev)
399{
400 struct net_device *dev = pci_get_drvdata(pdev);
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -0400401 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 unregister_netdev(dev);
404 iounmap(vptr->mac_regs);
405 pci_release_regions(pdev);
406 pci_disable_device(pdev);
407 pci_set_drvdata(pdev, NULL);
408 free_netdev(dev);
409
410 velocity_nics--;
411}
412
413/**
414 * velocity_set_int_opt - parser for integer options
415 * @opt: pointer to option value
416 * @val: value the user requested (or -1 for default)
417 * @min: lowest value allowed
418 * @max: highest value allowed
419 * @def: default value
420 * @name: property name
421 * @dev: device name
422 *
423 * Set an integer property in the module options. This function does
424 * all the verification and checking as well as reporting so that
425 * we don't duplicate code for each option.
426 */
Sven Hartge07b5f6a2008-10-23 13:03:44 +0000427static 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 -0700428{
429 if (val == -1)
430 *opt = def;
431 else if (val < min || val > max) {
432 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: the value of parameter %s is invalid, the valid range is (%d-%d)\n",
433 devname, name, min, max);
434 *opt = def;
435 } else {
436 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_INFO "%s: set value of parameter %s to %d\n",
437 devname, name, val);
438 *opt = val;
439 }
440}
441
442/**
443 * velocity_set_bool_opt - parser for boolean options
444 * @opt: pointer to option value
445 * @val: value the user requested (or -1 for default)
446 * @def: default value (yes/no)
447 * @flag: numeric value to set for true.
448 * @name: property name
449 * @dev: device name
450 *
451 * Set a boolean property in the module options. This function does
452 * all the verification and checking as well as reporting so that
453 * we don't duplicate code for each option.
454 */
Dave Jonesc4067402009-07-20 17:35:21 +0000455static 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 -0700456{
457 (*opt) &= (~flag);
458 if (val == -1)
459 *opt |= (def ? flag : 0);
460 else if (val < 0 || val > 1) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400461 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 -0700462 devname, name);
463 *opt |= (def ? flag : 0);
464 } else {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400465 printk(KERN_INFO "%s: set parameter %s to %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 devname, name, val ? "TRUE" : "FALSE");
467 *opt |= (val ? flag : 0);
468 }
469}
470
471/**
472 * velocity_get_options - set options on device
473 * @opts: option structure for the device
474 * @index: index of option to use in module options array
475 * @devname: device name
476 *
477 * Turn the module and command options into a single structure
478 * for the current device
479 */
Sven Hartge07b5f6a2008-10-23 13:03:44 +0000480static void __devinit velocity_get_options(struct velocity_opt *opts, int index, const char *devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482
483 velocity_set_int_opt(&opts->rx_thresh, rx_thresh[index], RX_THRESH_MIN, RX_THRESH_MAX, RX_THRESH_DEF, "rx_thresh", devname);
484 velocity_set_int_opt(&opts->DMA_length, DMA_length[index], DMA_LENGTH_MIN, DMA_LENGTH_MAX, DMA_LENGTH_DEF, "DMA_length", devname);
485 velocity_set_int_opt(&opts->numrx, RxDescriptors[index], RX_DESC_MIN, RX_DESC_MAX, RX_DESC_DEF, "RxDescriptors", devname);
486 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 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 velocity_set_int_opt(&opts->flow_cntl, flow_control[index], FLOW_CNTL_MIN, FLOW_CNTL_MAX, FLOW_CNTL_DEF, "flow_control", devname);
489 velocity_set_bool_opt(&opts->flags, IP_byte_align[index], IP_ALIG_DEF, VELOCITY_FLAGS_IP_ALIGN, "IP_byte_align", devname);
490 velocity_set_bool_opt(&opts->flags, ValPktLen[index], VAL_PKT_LEN_DEF, VELOCITY_FLAGS_VAL_PKT_LEN, "ValPktLen", devname);
491 velocity_set_int_opt((int *) &opts->spd_dpx, speed_duplex[index], MED_LNK_MIN, MED_LNK_MAX, MED_LNK_DEF, "Media link mode", devname);
492 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 -0700493 opts->numrx = (opts->numrx & ~3);
494}
495
496/**
497 * velocity_init_cam_filter - initialise CAM
498 * @vptr: velocity to program
499 *
500 * Initialize the content addressable memory used for filters. Load
501 * appropriately according to the presence of VLAN
502 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503static void velocity_init_cam_filter(struct velocity_info *vptr)
504{
Dave Jonesc4067402009-07-20 17:35:21 +0000505 struct mac_regs __iomem *regs = vptr->mac_regs;
Jiri Pirko73b54682011-07-20 04:54:30 +0000506 unsigned int vid, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /* Turn on MCFG_PQEN, turn off MCFG_RTGOPT */
509 WORD_REG_BITS_SET(MCFG_PQEN, MCFG_RTGOPT, &regs->MCFG);
510 WORD_REG_BITS_ON(MCFG_VIDFR, &regs->MCFG);
511
512 /* Disable all CAMs */
513 memset(vptr->vCAMmask, 0, sizeof(u8) * 8);
514 memset(vptr->mCAMmask, 0, sizeof(u8) * 8);
Stephen Hemminger01faccb2007-08-24 14:40:45 -0700515 mac_set_vlan_cam_mask(regs, vptr->vCAMmask);
516 mac_set_cam_mask(regs, vptr->mCAMmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Francois Romieud4f73c82008-04-24 23:32:33 +0200518 /* Enable VCAMs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Jiri Pirko73b54682011-07-20 04:54:30 +0000520 if (test_bit(0, vptr->active_vlans))
521 WORD_REG_BITS_ON(MCFG_RTGOPT, &regs->MCFG);
Francois Romieud4f73c82008-04-24 23:32:33 +0200522
Jiri Pirko73b54682011-07-20 04:54:30 +0000523 for_each_set_bit(vid, vptr->active_vlans, VLAN_N_VID) {
524 mac_set_vlan_cam(regs, i, (u8 *) &vid);
525 vptr->vCAMmask[i / 8] |= 0x1 << (i % 8);
526 if (++i >= VCAM_SIZE)
527 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
Jiri Pirko73b54682011-07-20 04:54:30 +0000529 mac_set_vlan_cam_mask(regs, vptr->vCAMmask);
Francois Romieud4f73c82008-04-24 23:32:33 +0200530}
531
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700532static void velocity_vlan_rx_add_vid(struct net_device *dev, unsigned short vid)
533{
534 struct velocity_info *vptr = netdev_priv(dev);
535
Dave Jonesc4067402009-07-20 17:35:21 +0000536 spin_lock_irq(&vptr->lock);
Jiri Pirko73b54682011-07-20 04:54:30 +0000537 set_bit(vid, vptr->active_vlans);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700538 velocity_init_cam_filter(vptr);
Dave Jonesc4067402009-07-20 17:35:21 +0000539 spin_unlock_irq(&vptr->lock);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700540}
541
542static void velocity_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
543{
544 struct velocity_info *vptr = netdev_priv(dev);
545
Dave Jonesc4067402009-07-20 17:35:21 +0000546 spin_lock_irq(&vptr->lock);
Jiri Pirko73b54682011-07-20 04:54:30 +0000547 clear_bit(vid, vptr->active_vlans);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700548 velocity_init_cam_filter(vptr);
Dave Jonesc4067402009-07-20 17:35:21 +0000549 spin_unlock_irq(&vptr->lock);
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700550}
551
Francois Romieu3c4dc712008-07-31 22:51:18 +0200552static void velocity_init_rx_ring_indexes(struct velocity_info *vptr)
553{
554 vptr->rx.dirty = vptr->rx.filled = vptr->rx.curr = 0;
555}
Stephen Hemminger501e4d22007-08-24 13:56:49 -0700556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557/**
558 * velocity_rx_reset - handle a receive reset
559 * @vptr: velocity we are resetting
560 *
561 * Reset the ownership and status for the receive ring side.
562 * Hand all the receive queue to the NIC.
563 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564static void velocity_rx_reset(struct velocity_info *vptr)
565{
566
Dave Jonesc4067402009-07-20 17:35:21 +0000567 struct mac_regs __iomem *regs = vptr->mac_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int i;
569
Francois Romieu3c4dc712008-07-31 22:51:18 +0200570 velocity_init_rx_ring_indexes(vptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 /*
573 * Init state, all RD entries belong to the NIC
574 */
575 for (i = 0; i < vptr->options.numrx; ++i)
Francois Romieu0fe9f152008-07-31 22:10:10 +0200576 vptr->rx.ring[i].rdesc0.len |= OWNED_BY_NIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 writew(vptr->options.numrx, &regs->RBRDU);
Francois Romieu0fe9f152008-07-31 22:10:10 +0200579 writel(vptr->rx.pool_dma, &regs->RDBaseLo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 writew(0, &regs->RDIdx);
581 writew(vptr->options.numrx - 1, &regs->RDCSize);
582}
583
584/**
Dave Jones2cf71d22009-07-23 18:11:12 -0700585 * velocity_get_opt_media_mode - get media selection
586 * @vptr: velocity adapter
587 *
588 * Get the media mode stored in EEPROM or module options and load
589 * mii_status accordingly. The requested link state information
590 * is also returned.
591 */
592static u32 velocity_get_opt_media_mode(struct velocity_info *vptr)
593{
594 u32 status = 0;
595
596 switch (vptr->options.spd_dpx) {
597 case SPD_DPX_AUTO:
598 status = VELOCITY_AUTONEG_ENABLE;
599 break;
600 case SPD_DPX_100_FULL:
601 status = VELOCITY_SPEED_100 | VELOCITY_DUPLEX_FULL;
602 break;
603 case SPD_DPX_10_FULL:
604 status = VELOCITY_SPEED_10 | VELOCITY_DUPLEX_FULL;
605 break;
606 case SPD_DPX_100_HALF:
607 status = VELOCITY_SPEED_100;
608 break;
609 case SPD_DPX_10_HALF:
610 status = VELOCITY_SPEED_10;
611 break;
françois romieu15419222010-10-13 09:26:05 +0000612 case SPD_DPX_1000_FULL:
613 status = VELOCITY_SPEED_1000 | VELOCITY_DUPLEX_FULL;
614 break;
Dave Jones2cf71d22009-07-23 18:11:12 -0700615 }
616 vptr->mii_status = status;
617 return status;
618}
619
620/**
621 * safe_disable_mii_autopoll - autopoll off
622 * @regs: velocity registers
623 *
624 * Turn off the autopoll and wait for it to disable on the chip
625 */
626static void safe_disable_mii_autopoll(struct mac_regs __iomem *regs)
627{
628 u16 ww;
629
630 /* turn off MAUTO */
631 writeb(0, &regs->MIICR);
632 for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
633 udelay(1);
634 if (BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
635 break;
636 }
637}
638
639/**
640 * enable_mii_autopoll - turn on autopolling
641 * @regs: velocity registers
642 *
643 * Enable the MII link status autopoll feature on the Velocity
644 * hardware. Wait for it to enable.
645 */
646static void enable_mii_autopoll(struct mac_regs __iomem *regs)
647{
648 int ii;
649
650 writeb(0, &(regs->MIICR));
651 writeb(MIIADR_SWMPL, &regs->MIIADR);
652
653 for (ii = 0; ii < W_MAX_TIMEOUT; ii++) {
654 udelay(1);
655 if (BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
656 break;
657 }
658
659 writeb(MIICR_MAUTO, &regs->MIICR);
660
661 for (ii = 0; ii < W_MAX_TIMEOUT; ii++) {
662 udelay(1);
663 if (!BYTE_REG_BITS_IS_ON(MIISR_MIDLE, &regs->MIISR))
664 break;
665 }
666
667}
668
669/**
670 * velocity_mii_read - read MII data
671 * @regs: velocity registers
672 * @index: MII register index
673 * @data: buffer for received data
674 *
675 * Perform a single read of an MII 16bit register. Returns zero
676 * on success or -ETIMEDOUT if the PHY did not respond.
677 */
678static int velocity_mii_read(struct mac_regs __iomem *regs, u8 index, u16 *data)
679{
680 u16 ww;
681
682 /*
683 * Disable MIICR_MAUTO, so that mii addr can be set normally
684 */
685 safe_disable_mii_autopoll(regs);
686
687 writeb(index, &regs->MIIADR);
688
689 BYTE_REG_BITS_ON(MIICR_RCMD, &regs->MIICR);
690
691 for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
692 if (!(readb(&regs->MIICR) & MIICR_RCMD))
693 break;
694 }
695
696 *data = readw(&regs->MIIDATA);
697
698 enable_mii_autopoll(regs);
699 if (ww == W_MAX_TIMEOUT)
700 return -ETIMEDOUT;
701 return 0;
702}
703
704
705/**
706 * mii_check_media_mode - check media state
707 * @regs: velocity registers
708 *
709 * Check the current MII status and determine the link status
710 * accordingly
711 */
712static u32 mii_check_media_mode(struct mac_regs __iomem *regs)
713{
714 u32 status = 0;
715 u16 ANAR;
716
Francois Romieu3a7f8682010-04-06 14:24:53 -0700717 if (!MII_REG_BITS_IS_ON(BMSR_LSTATUS, MII_BMSR, regs))
Dave Jones2cf71d22009-07-23 18:11:12 -0700718 status |= VELOCITY_LINK_FAIL;
719
Francois Romieu3a7f8682010-04-06 14:24:53 -0700720 if (MII_REG_BITS_IS_ON(ADVERTISE_1000FULL, MII_CTRL1000, regs))
Dave Jones2cf71d22009-07-23 18:11:12 -0700721 status |= VELOCITY_SPEED_1000 | VELOCITY_DUPLEX_FULL;
Francois Romieu3a7f8682010-04-06 14:24:53 -0700722 else if (MII_REG_BITS_IS_ON(ADVERTISE_1000HALF, MII_CTRL1000, regs))
Dave Jones2cf71d22009-07-23 18:11:12 -0700723 status |= (VELOCITY_SPEED_1000);
724 else {
Francois Romieu3a7f8682010-04-06 14:24:53 -0700725 velocity_mii_read(regs, MII_ADVERTISE, &ANAR);
726 if (ANAR & ADVERTISE_100FULL)
Dave Jones2cf71d22009-07-23 18:11:12 -0700727 status |= (VELOCITY_SPEED_100 | VELOCITY_DUPLEX_FULL);
Francois Romieu3a7f8682010-04-06 14:24:53 -0700728 else if (ANAR & ADVERTISE_100HALF)
Dave Jones2cf71d22009-07-23 18:11:12 -0700729 status |= VELOCITY_SPEED_100;
Francois Romieu3a7f8682010-04-06 14:24:53 -0700730 else if (ANAR & ADVERTISE_10FULL)
Dave Jones2cf71d22009-07-23 18:11:12 -0700731 status |= (VELOCITY_SPEED_10 | VELOCITY_DUPLEX_FULL);
732 else
733 status |= (VELOCITY_SPEED_10);
734 }
735
Francois Romieu3a7f8682010-04-06 14:24:53 -0700736 if (MII_REG_BITS_IS_ON(BMCR_ANENABLE, MII_BMCR, regs)) {
737 velocity_mii_read(regs, MII_ADVERTISE, &ANAR);
738 if ((ANAR & (ADVERTISE_100FULL | ADVERTISE_100HALF | ADVERTISE_10FULL | ADVERTISE_10HALF))
739 == (ADVERTISE_100FULL | ADVERTISE_100HALF | ADVERTISE_10FULL | ADVERTISE_10HALF)) {
740 if (MII_REG_BITS_IS_ON(ADVERTISE_1000HALF | ADVERTISE_1000FULL, MII_CTRL1000, regs))
Dave Jones2cf71d22009-07-23 18:11:12 -0700741 status |= VELOCITY_AUTONEG_ENABLE;
742 }
743 }
744
745 return status;
746}
747
748/**
749 * velocity_mii_write - write MII data
750 * @regs: velocity registers
751 * @index: MII register index
752 * @data: 16bit data for the MII register
753 *
754 * Perform a single write to an MII 16bit register. Returns zero
755 * on success or -ETIMEDOUT if the PHY did not respond.
756 */
757static int velocity_mii_write(struct mac_regs __iomem *regs, u8 mii_addr, u16 data)
758{
759 u16 ww;
760
761 /*
762 * Disable MIICR_MAUTO, so that mii addr can be set normally
763 */
764 safe_disable_mii_autopoll(regs);
765
766 /* MII reg offset */
767 writeb(mii_addr, &regs->MIIADR);
768 /* set MII data */
769 writew(data, &regs->MIIDATA);
770
771 /* turn on MIICR_WCMD */
772 BYTE_REG_BITS_ON(MIICR_WCMD, &regs->MIICR);
773
774 /* W_MAX_TIMEOUT is the timeout period */
775 for (ww = 0; ww < W_MAX_TIMEOUT; ww++) {
776 udelay(5);
777 if (!(readb(&regs->MIICR) & MIICR_WCMD))
778 break;
779 }
780 enable_mii_autopoll(regs);
781
782 if (ww == W_MAX_TIMEOUT)
783 return -ETIMEDOUT;
784 return 0;
785}
786
787/**
788 * set_mii_flow_control - flow control setup
789 * @vptr: velocity interface
790 *
791 * Set up the flow control on this interface according to
792 * the supplied user/eeprom options.
793 */
794static void set_mii_flow_control(struct velocity_info *vptr)
795{
796 /*Enable or Disable PAUSE in ANAR */
797 switch (vptr->options.flow_cntl) {
798 case FLOW_CNTL_TX:
Francois Romieu3a7f8682010-04-06 14:24:53 -0700799 MII_REG_BITS_OFF(ADVERTISE_PAUSE_CAP, MII_ADVERTISE, vptr->mac_regs);
800 MII_REG_BITS_ON(ADVERTISE_PAUSE_ASYM, MII_ADVERTISE, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -0700801 break;
802
803 case FLOW_CNTL_RX:
Francois Romieu3a7f8682010-04-06 14:24:53 -0700804 MII_REG_BITS_ON(ADVERTISE_PAUSE_CAP, MII_ADVERTISE, vptr->mac_regs);
805 MII_REG_BITS_ON(ADVERTISE_PAUSE_ASYM, MII_ADVERTISE, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -0700806 break;
807
808 case FLOW_CNTL_TX_RX:
Francois Romieu3a7f8682010-04-06 14:24:53 -0700809 MII_REG_BITS_ON(ADVERTISE_PAUSE_CAP, MII_ADVERTISE, vptr->mac_regs);
David S. Miller4a35ecf2010-04-06 23:53:30 -0700810 MII_REG_BITS_OFF(ADVERTISE_PAUSE_ASYM, MII_ADVERTISE, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -0700811 break;
812
813 case FLOW_CNTL_DISABLE:
Francois Romieu3a7f8682010-04-06 14:24:53 -0700814 MII_REG_BITS_OFF(ADVERTISE_PAUSE_CAP, MII_ADVERTISE, vptr->mac_regs);
815 MII_REG_BITS_OFF(ADVERTISE_PAUSE_ASYM, MII_ADVERTISE, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -0700816 break;
817 default:
818 break;
819 }
820}
821
822/**
823 * mii_set_auto_on - autonegotiate on
824 * @vptr: velocity
825 *
826 * Enable autonegotation on this interface
827 */
828static void mii_set_auto_on(struct velocity_info *vptr)
829{
Francois Romieu3a7f8682010-04-06 14:24:53 -0700830 if (MII_REG_BITS_IS_ON(BMCR_ANENABLE, MII_BMCR, vptr->mac_regs))
831 MII_REG_BITS_ON(BMCR_ANRESTART, MII_BMCR, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -0700832 else
Francois Romieu3a7f8682010-04-06 14:24:53 -0700833 MII_REG_BITS_ON(BMCR_ANENABLE, MII_BMCR, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -0700834}
835
836static u32 check_connection_type(struct mac_regs __iomem *regs)
837{
838 u32 status = 0;
839 u8 PHYSR0;
840 u16 ANAR;
841 PHYSR0 = readb(&regs->PHYSR0);
842
843 /*
844 if (!(PHYSR0 & PHYSR0_LINKGD))
845 status|=VELOCITY_LINK_FAIL;
846 */
847
848 if (PHYSR0 & PHYSR0_FDPX)
849 status |= VELOCITY_DUPLEX_FULL;
850
851 if (PHYSR0 & PHYSR0_SPDG)
852 status |= VELOCITY_SPEED_1000;
853 else if (PHYSR0 & PHYSR0_SPD10)
854 status |= VELOCITY_SPEED_10;
855 else
856 status |= VELOCITY_SPEED_100;
857
Francois Romieu3a7f8682010-04-06 14:24:53 -0700858 if (MII_REG_BITS_IS_ON(BMCR_ANENABLE, MII_BMCR, regs)) {
859 velocity_mii_read(regs, MII_ADVERTISE, &ANAR);
860 if ((ANAR & (ADVERTISE_100FULL | ADVERTISE_100HALF | ADVERTISE_10FULL | ADVERTISE_10HALF))
861 == (ADVERTISE_100FULL | ADVERTISE_100HALF | ADVERTISE_10FULL | ADVERTISE_10HALF)) {
862 if (MII_REG_BITS_IS_ON(ADVERTISE_1000HALF | ADVERTISE_1000FULL, MII_CTRL1000, regs))
Dave Jones2cf71d22009-07-23 18:11:12 -0700863 status |= VELOCITY_AUTONEG_ENABLE;
864 }
865 }
866
867 return status;
868}
869
870
871
872/**
873 * velocity_set_media_mode - set media mode
874 * @mii_status: old MII link state
875 *
876 * Check the media link state and configure the flow control
877 * PHY and also velocity hardware setup accordingly. In particular
878 * we need to set up CD polling and frame bursting.
879 */
880static int velocity_set_media_mode(struct velocity_info *vptr, u32 mii_status)
881{
882 u32 curr_status;
883 struct mac_regs __iomem *regs = vptr->mac_regs;
884
885 vptr->mii_status = mii_check_media_mode(vptr->mac_regs);
886 curr_status = vptr->mii_status & (~VELOCITY_LINK_FAIL);
887
888 /* Set mii link status */
889 set_mii_flow_control(vptr);
890
891 /*
Uwe Kleine-Königa34f0b32010-12-10 14:55:42 +0100892 Check if new status is consistent with current status
Joe Perches8e95a202009-12-03 07:58:21 +0000893 if (((mii_status & curr_status) & VELOCITY_AUTONEG_ENABLE) ||
894 (mii_status==curr_status)) {
Dave Jones2cf71d22009-07-23 18:11:12 -0700895 vptr->mii_status=mii_check_media_mode(vptr->mac_regs);
896 vptr->mii_status=check_connection_type(vptr->mac_regs);
897 VELOCITY_PRT(MSG_LEVEL_INFO, "Velocity link no change\n");
898 return 0;
899 }
900 */
901
902 if (PHYID_GET_PHY_ID(vptr->phy_id) == PHYID_CICADA_CS8201)
Francois Romieu3a7f8682010-04-06 14:24:53 -0700903 MII_REG_BITS_ON(AUXCR_MDPPS, MII_NCONFIG, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -0700904
905 /*
906 * If connection type is AUTO
907 */
908 if (mii_status & VELOCITY_AUTONEG_ENABLE) {
909 VELOCITY_PRT(MSG_LEVEL_INFO, "Velocity is AUTO mode\n");
910 /* clear force MAC mode bit */
911 BYTE_REG_BITS_OFF(CHIPGCR_FCMODE, &regs->CHIPGCR);
912 /* set duplex mode of MAC according to duplex mode of MII */
Francois Romieu3a7f8682010-04-06 14:24:53 -0700913 MII_REG_BITS_ON(ADVERTISE_100FULL | ADVERTISE_100HALF | ADVERTISE_10FULL | ADVERTISE_10HALF, MII_ADVERTISE, vptr->mac_regs);
914 MII_REG_BITS_ON(ADVERTISE_1000FULL | ADVERTISE_1000HALF, MII_CTRL1000, vptr->mac_regs);
915 MII_REG_BITS_ON(BMCR_SPEED1000, MII_BMCR, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -0700916
917 /* enable AUTO-NEGO mode */
918 mii_set_auto_on(vptr);
919 } else {
françois romieu15419222010-10-13 09:26:05 +0000920 u16 CTRL1000;
Dave Jones2cf71d22009-07-23 18:11:12 -0700921 u16 ANAR;
922 u8 CHIPGCR;
923
924 /*
925 * 1. if it's 3119, disable frame bursting in halfduplex mode
926 * and enable it in fullduplex mode
927 * 2. set correct MII/GMII and half/full duplex mode in CHIPGCR
928 * 3. only enable CD heart beat counter in 10HD mode
929 */
930
931 /* set force MAC mode bit */
932 BYTE_REG_BITS_ON(CHIPGCR_FCMODE, &regs->CHIPGCR);
933
934 CHIPGCR = readb(&regs->CHIPGCR);
françois romieu15419222010-10-13 09:26:05 +0000935
936 if (mii_status & VELOCITY_SPEED_1000)
937 CHIPGCR |= CHIPGCR_FCGMII;
938 else
939 CHIPGCR &= ~CHIPGCR_FCGMII;
Dave Jones2cf71d22009-07-23 18:11:12 -0700940
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
françois romieu15419222010-10-13 09:26:05 +0000955 velocity_mii_read(vptr->mac_regs, MII_CTRL1000, &CTRL1000);
956 CTRL1000 &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
957 if ((mii_status & VELOCITY_SPEED_1000) &&
958 (mii_status & VELOCITY_DUPLEX_FULL)) {
959 CTRL1000 |= ADVERTISE_1000FULL;
960 }
961 velocity_mii_write(vptr->mac_regs, MII_CTRL1000, CTRL1000);
Dave Jones2cf71d22009-07-23 18:11:12 -0700962
963 if (!(mii_status & VELOCITY_DUPLEX_FULL) && (mii_status & VELOCITY_SPEED_10))
964 BYTE_REG_BITS_OFF(TESTCFG_HBDIS, &regs->TESTCFG);
965 else
966 BYTE_REG_BITS_ON(TESTCFG_HBDIS, &regs->TESTCFG);
967
Francois Romieu3a7f8682010-04-06 14:24:53 -0700968 /* MII_REG_BITS_OFF(BMCR_SPEED1000, MII_BMCR, vptr->mac_regs); */
969 velocity_mii_read(vptr->mac_regs, MII_ADVERTISE, &ANAR);
970 ANAR &= (~(ADVERTISE_100FULL | ADVERTISE_100HALF | ADVERTISE_10FULL | ADVERTISE_10HALF));
Dave Jones2cf71d22009-07-23 18:11:12 -0700971 if (mii_status & VELOCITY_SPEED_100) {
972 if (mii_status & VELOCITY_DUPLEX_FULL)
Francois Romieu3a7f8682010-04-06 14:24:53 -0700973 ANAR |= ADVERTISE_100FULL;
Dave Jones2cf71d22009-07-23 18:11:12 -0700974 else
Francois Romieu3a7f8682010-04-06 14:24:53 -0700975 ANAR |= ADVERTISE_100HALF;
françois romieu15419222010-10-13 09:26:05 +0000976 } else if (mii_status & VELOCITY_SPEED_10) {
Dave Jones2cf71d22009-07-23 18:11:12 -0700977 if (mii_status & VELOCITY_DUPLEX_FULL)
Francois Romieu3a7f8682010-04-06 14:24:53 -0700978 ANAR |= ADVERTISE_10FULL;
Dave Jones2cf71d22009-07-23 18:11:12 -0700979 else
Francois Romieu3a7f8682010-04-06 14:24:53 -0700980 ANAR |= ADVERTISE_10HALF;
Dave Jones2cf71d22009-07-23 18:11:12 -0700981 }
Francois Romieu3a7f8682010-04-06 14:24:53 -0700982 velocity_mii_write(vptr->mac_regs, MII_ADVERTISE, ANAR);
Dave Jones2cf71d22009-07-23 18:11:12 -0700983 /* enable AUTO-NEGO mode */
984 mii_set_auto_on(vptr);
Francois Romieu3a7f8682010-04-06 14:24:53 -0700985 /* MII_REG_BITS_ON(BMCR_ANENABLE, MII_BMCR, vptr->mac_regs); */
Dave Jones2cf71d22009-07-23 18:11:12 -0700986 }
987 /* vptr->mii_status=mii_check_media_mode(vptr->mac_regs); */
988 /* vptr->mii_status=check_connection_type(vptr->mac_regs); */
989 return VELOCITY_LINK_CHANGE;
990}
991
992/**
993 * velocity_print_link_status - link status reporting
994 * @vptr: velocity to report on
995 *
996 * Turn the link status of the velocity card into a kernel log
997 * description of the new link state, detailing speed and duplex
998 * status
999 */
1000static void velocity_print_link_status(struct velocity_info *vptr)
1001{
1002
1003 if (vptr->mii_status & VELOCITY_LINK_FAIL) {
1004 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: failed to detect cable link\n", vptr->dev->name);
1005 } else if (vptr->options.spd_dpx == SPD_DPX_AUTO) {
1006 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: Link auto-negotiation", vptr->dev->name);
1007
1008 if (vptr->mii_status & VELOCITY_SPEED_1000)
1009 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 1000M bps");
1010 else if (vptr->mii_status & VELOCITY_SPEED_100)
1011 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps");
1012 else
1013 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps");
1014
1015 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
1016 VELOCITY_PRT(MSG_LEVEL_INFO, " full duplex\n");
1017 else
1018 VELOCITY_PRT(MSG_LEVEL_INFO, " half duplex\n");
1019 } else {
1020 VELOCITY_PRT(MSG_LEVEL_INFO, KERN_NOTICE "%s: Link forced", vptr->dev->name);
1021 switch (vptr->options.spd_dpx) {
françois romieu15419222010-10-13 09:26:05 +00001022 case SPD_DPX_1000_FULL:
1023 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 1000M bps full duplex\n");
1024 break;
Dave Jones2cf71d22009-07-23 18:11:12 -07001025 case SPD_DPX_100_HALF:
1026 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps half duplex\n");
1027 break;
1028 case SPD_DPX_100_FULL:
1029 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 100M bps full duplex\n");
1030 break;
1031 case SPD_DPX_10_HALF:
1032 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps half duplex\n");
1033 break;
1034 case SPD_DPX_10_FULL:
1035 VELOCITY_PRT(MSG_LEVEL_INFO, " speed 10M bps full duplex\n");
1036 break;
1037 default:
1038 break;
1039 }
1040 }
1041}
1042
1043/**
1044 * enable_flow_control_ability - flow control
1045 * @vptr: veloity to configure
1046 *
1047 * Set up flow control according to the flow control options
1048 * determined by the eeprom/configuration.
1049 */
1050static void enable_flow_control_ability(struct velocity_info *vptr)
1051{
1052
1053 struct mac_regs __iomem *regs = vptr->mac_regs;
1054
1055 switch (vptr->options.flow_cntl) {
1056
1057 case FLOW_CNTL_DEFAULT:
1058 if (BYTE_REG_BITS_IS_ON(PHYSR0_RXFLC, &regs->PHYSR0))
1059 writel(CR0_FDXRFCEN, &regs->CR0Set);
1060 else
1061 writel(CR0_FDXRFCEN, &regs->CR0Clr);
1062
1063 if (BYTE_REG_BITS_IS_ON(PHYSR0_TXFLC, &regs->PHYSR0))
1064 writel(CR0_FDXTFCEN, &regs->CR0Set);
1065 else
1066 writel(CR0_FDXTFCEN, &regs->CR0Clr);
1067 break;
1068
1069 case FLOW_CNTL_TX:
1070 writel(CR0_FDXTFCEN, &regs->CR0Set);
1071 writel(CR0_FDXRFCEN, &regs->CR0Clr);
1072 break;
1073
1074 case FLOW_CNTL_RX:
1075 writel(CR0_FDXRFCEN, &regs->CR0Set);
1076 writel(CR0_FDXTFCEN, &regs->CR0Clr);
1077 break;
1078
1079 case FLOW_CNTL_TX_RX:
1080 writel(CR0_FDXTFCEN, &regs->CR0Set);
1081 writel(CR0_FDXRFCEN, &regs->CR0Set);
1082 break;
1083
1084 case FLOW_CNTL_DISABLE:
1085 writel(CR0_FDXRFCEN, &regs->CR0Clr);
1086 writel(CR0_FDXTFCEN, &regs->CR0Clr);
1087 break;
1088
1089 default:
1090 break;
1091 }
1092
1093}
1094
1095/**
1096 * velocity_soft_reset - soft reset
1097 * @vptr: velocity to reset
1098 *
1099 * Kick off a soft reset of the velocity adapter and then poll
1100 * until the reset sequence has completed before returning.
1101 */
1102static int velocity_soft_reset(struct velocity_info *vptr)
1103{
1104 struct mac_regs __iomem *regs = vptr->mac_regs;
1105 int i = 0;
1106
1107 writel(CR0_SFRST, &regs->CR0Set);
1108
1109 for (i = 0; i < W_MAX_TIMEOUT; i++) {
1110 udelay(5);
1111 if (!DWORD_REG_BITS_IS_ON(CR0_SFRST, &regs->CR0Set))
1112 break;
1113 }
1114
1115 if (i == W_MAX_TIMEOUT) {
1116 writel(CR0_FORSRST, &regs->CR0Set);
1117 /* FIXME: PCI POSTING */
1118 /* delay 2ms */
1119 mdelay(2);
1120 }
1121 return 0;
1122}
1123
1124/**
1125 * velocity_set_multi - filter list change callback
1126 * @dev: network device
1127 *
1128 * Called by the network layer when the filter lists need to change
1129 * for a velocity adapter. Reload the CAMs with the new address
1130 * filter ruleset.
1131 */
1132static void velocity_set_multi(struct net_device *dev)
1133{
1134 struct velocity_info *vptr = netdev_priv(dev);
1135 struct mac_regs __iomem *regs = vptr->mac_regs;
1136 u8 rx_mode;
1137 int i;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001138 struct netdev_hw_addr *ha;
Dave Jones2cf71d22009-07-23 18:11:12 -07001139
1140 if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
1141 writel(0xffffffff, &regs->MARCAM[0]);
1142 writel(0xffffffff, &regs->MARCAM[4]);
1143 rx_mode = (RCR_AM | RCR_AB | RCR_PROM);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001144 } else if ((netdev_mc_count(dev) > vptr->multicast_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00001145 (dev->flags & IFF_ALLMULTI)) {
Dave Jones2cf71d22009-07-23 18:11:12 -07001146 writel(0xffffffff, &regs->MARCAM[0]);
1147 writel(0xffffffff, &regs->MARCAM[4]);
1148 rx_mode = (RCR_AM | RCR_AB);
1149 } else {
1150 int offset = MCAM_SIZE - vptr->multicast_limit;
1151 mac_get_cam_mask(regs, vptr->mCAMmask);
1152
Jiri Pirko567ec872010-02-23 23:17:07 +00001153 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001154 netdev_for_each_mc_addr(ha, dev) {
1155 mac_set_cam(regs, i + offset, ha->addr);
Dave Jones2cf71d22009-07-23 18:11:12 -07001156 vptr->mCAMmask[(offset + i) / 8] |= 1 << ((offset + i) & 7);
Jiri Pirko567ec872010-02-23 23:17:07 +00001157 i++;
Dave Jones2cf71d22009-07-23 18:11:12 -07001158 }
1159
1160 mac_set_cam_mask(regs, vptr->mCAMmask);
1161 rx_mode = RCR_AM | RCR_AB | RCR_AP;
1162 }
1163 if (dev->mtu > 1500)
1164 rx_mode |= RCR_AL;
1165
1166 BYTE_REG_BITS_ON(rx_mode, &regs->RCR);
1167
1168}
1169
1170/*
1171 * MII access , media link mode setting functions
1172 */
1173
1174/**
1175 * mii_init - set up MII
1176 * @vptr: velocity adapter
1177 * @mii_status: links tatus
1178 *
1179 * Set up the PHY for the current link state.
1180 */
1181static void mii_init(struct velocity_info *vptr, u32 mii_status)
1182{
1183 u16 BMCR;
1184
1185 switch (PHYID_GET_PHY_ID(vptr->phy_id)) {
1186 case PHYID_CICADA_CS8201:
1187 /*
1188 * Reset to hardware default
1189 */
Francois Romieu3a7f8682010-04-06 14:24:53 -07001190 MII_REG_BITS_OFF((ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP), MII_ADVERTISE, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07001191 /*
1192 * Turn on ECHODIS bit in NWay-forced full mode and turn it
1193 * off it in NWay-forced half mode for NWay-forced v.s.
1194 * legacy-forced issue.
1195 */
1196 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
Francois Romieu3a7f8682010-04-06 14:24:53 -07001197 MII_REG_BITS_ON(TCSR_ECHODIS, MII_SREVISION, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07001198 else
Francois Romieu3a7f8682010-04-06 14:24:53 -07001199 MII_REG_BITS_OFF(TCSR_ECHODIS, MII_SREVISION, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07001200 /*
1201 * Turn on Link/Activity LED enable bit for CIS8201
1202 */
Francois Romieu3a7f8682010-04-06 14:24:53 -07001203 MII_REG_BITS_ON(PLED_LALBE, MII_TPISTATUS, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07001204 break;
1205 case PHYID_VT3216_32BIT:
1206 case PHYID_VT3216_64BIT:
1207 /*
1208 * Reset to hardware default
1209 */
Francois Romieu3a7f8682010-04-06 14:24:53 -07001210 MII_REG_BITS_ON((ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP), MII_ADVERTISE, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07001211 /*
1212 * Turn on ECHODIS bit in NWay-forced full mode and turn it
1213 * off it in NWay-forced half mode for NWay-forced v.s.
1214 * legacy-forced issue
1215 */
1216 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
Francois Romieu3a7f8682010-04-06 14:24:53 -07001217 MII_REG_BITS_ON(TCSR_ECHODIS, MII_SREVISION, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07001218 else
Francois Romieu3a7f8682010-04-06 14:24:53 -07001219 MII_REG_BITS_OFF(TCSR_ECHODIS, MII_SREVISION, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07001220 break;
1221
1222 case PHYID_MARVELL_1000:
1223 case PHYID_MARVELL_1000S:
1224 /*
1225 * Assert CRS on Transmit
1226 */
1227 MII_REG_BITS_ON(PSCR_ACRSTX, MII_REG_PSCR, vptr->mac_regs);
1228 /*
1229 * Reset to hardware default
1230 */
Francois Romieu3a7f8682010-04-06 14:24:53 -07001231 MII_REG_BITS_ON((ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP), MII_ADVERTISE, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07001232 break;
1233 default:
1234 ;
1235 }
Francois Romieu3a7f8682010-04-06 14:24:53 -07001236 velocity_mii_read(vptr->mac_regs, MII_BMCR, &BMCR);
1237 if (BMCR & BMCR_ISOLATE) {
1238 BMCR &= ~BMCR_ISOLATE;
1239 velocity_mii_write(vptr->mac_regs, MII_BMCR, BMCR);
Dave Jones2cf71d22009-07-23 18:11:12 -07001240 }
1241}
1242
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00001243/**
1244 * setup_queue_timers - Setup interrupt timers
1245 *
1246 * Setup interrupt frequency during suppression (timeout if the frame
1247 * count isn't filled).
1248 */
1249static void setup_queue_timers(struct velocity_info *vptr)
1250{
1251 /* Only for newer revisions */
1252 if (vptr->rev_id >= REV_ID_VT3216_A0) {
1253 u8 txqueue_timer = 0;
1254 u8 rxqueue_timer = 0;
1255
1256 if (vptr->mii_status & (VELOCITY_SPEED_1000 |
1257 VELOCITY_SPEED_100)) {
1258 txqueue_timer = vptr->options.txqueue_timer;
1259 rxqueue_timer = vptr->options.rxqueue_timer;
1260 }
1261
1262 writeb(txqueue_timer, &vptr->mac_regs->TQETMR);
1263 writeb(rxqueue_timer, &vptr->mac_regs->RQETMR);
1264 }
1265}
1266/**
1267 * setup_adaptive_interrupts - Setup interrupt suppression
1268 *
1269 * @vptr velocity adapter
1270 *
1271 * The velocity is able to suppress interrupt during high interrupt load.
1272 * This function turns on that feature.
1273 */
1274static void setup_adaptive_interrupts(struct velocity_info *vptr)
1275{
1276 struct mac_regs __iomem *regs = vptr->mac_regs;
1277 u16 tx_intsup = vptr->options.tx_intsup;
1278 u16 rx_intsup = vptr->options.rx_intsup;
1279
1280 /* Setup default interrupt mask (will be changed below) */
1281 vptr->int_mask = INT_MASK_DEF;
1282
1283 /* Set Tx Interrupt Suppression Threshold */
1284 writeb(CAMCR_PS0, &regs->CAMCR);
1285 if (tx_intsup != 0) {
1286 vptr->int_mask &= ~(ISR_PTXI | ISR_PTX0I | ISR_PTX1I |
1287 ISR_PTX2I | ISR_PTX3I);
1288 writew(tx_intsup, &regs->ISRCTL);
1289 } else
1290 writew(ISRCTL_TSUPDIS, &regs->ISRCTL);
1291
1292 /* Set Rx Interrupt Suppression Threshold */
1293 writeb(CAMCR_PS1, &regs->CAMCR);
1294 if (rx_intsup != 0) {
1295 vptr->int_mask &= ~ISR_PRXI;
1296 writew(rx_intsup, &regs->ISRCTL);
1297 } else
1298 writew(ISRCTL_RSUPDIS, &regs->ISRCTL);
1299
1300 /* Select page to interrupt hold timer */
1301 writeb(0, &regs->CAMCR);
1302}
Dave Jones2cf71d22009-07-23 18:11:12 -07001303
1304/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 * velocity_init_registers - initialise MAC registers
1306 * @vptr: velocity to init
1307 * @type: type of initialisation (hot or cold)
1308 *
1309 * Initialise the MAC on a reset or on first set up on the
1310 * hardware.
1311 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001312static void velocity_init_registers(struct velocity_info *vptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 enum velocity_init_type type)
1314{
Dave Jonesc4067402009-07-20 17:35:21 +00001315 struct mac_regs __iomem *regs = vptr->mac_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 int i, mii_status;
1317
1318 mac_wol_reset(regs);
1319
1320 switch (type) {
1321 case VELOCITY_INIT_RESET:
1322 case VELOCITY_INIT_WOL:
1323
1324 netif_stop_queue(vptr->dev);
1325
1326 /*
1327 * Reset RX to prevent RX pointer not on the 4X location
1328 */
1329 velocity_rx_reset(vptr);
1330 mac_rx_queue_run(regs);
1331 mac_rx_queue_wake(regs);
1332
1333 mii_status = velocity_get_opt_media_mode(vptr);
1334 if (velocity_set_media_mode(vptr, mii_status) != VELOCITY_LINK_CHANGE) {
1335 velocity_print_link_status(vptr);
1336 if (!(vptr->mii_status & VELOCITY_LINK_FAIL))
1337 netif_wake_queue(vptr->dev);
1338 }
1339
1340 enable_flow_control_ability(vptr);
1341
1342 mac_clear_isr(regs);
1343 writel(CR0_STOP, &regs->CR0Clr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001344 writel((CR0_DPOLL | CR0_TXON | CR0_RXON | CR0_STRT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 &regs->CR0Set);
1346
1347 break;
1348
1349 case VELOCITY_INIT_COLD:
1350 default:
1351 /*
1352 * Do reset
1353 */
1354 velocity_soft_reset(vptr);
1355 mdelay(5);
1356
1357 mac_eeprom_reload(regs);
Dave Jonesc4067402009-07-20 17:35:21 +00001358 for (i = 0; i < 6; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 writeb(vptr->dev->dev_addr[i], &(regs->PAR[i]));
Dave Jonesc4067402009-07-20 17:35:21 +00001360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /*
1362 * clear Pre_ACPI bit.
1363 */
1364 BYTE_REG_BITS_OFF(CFGA_PACPI, &(regs->CFGA));
1365 mac_set_rx_thresh(regs, vptr->options.rx_thresh);
1366 mac_set_dma_length(regs, vptr->options.DMA_length);
1367
1368 writeb(WOLCFG_SAM | WOLCFG_SAB, &regs->WOLCFGSet);
1369 /*
1370 * Back off algorithm use original IEEE standard
1371 */
1372 BYTE_REG_BITS_SET(CFGB_OFSET, (CFGB_CRANDOM | CFGB_CAP | CFGB_MBA | CFGB_BAKOPT), &regs->CFGB);
1373
1374 /*
1375 * Init CAM filter
1376 */
1377 velocity_init_cam_filter(vptr);
1378
1379 /*
1380 * Set packet filter: Receive directed and broadcast address
1381 */
1382 velocity_set_multi(vptr->dev);
1383
1384 /*
1385 * Enable MII auto-polling
1386 */
1387 enable_mii_autopoll(regs);
1388
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00001389 setup_adaptive_interrupts(vptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Francois Romieu0fe9f152008-07-31 22:10:10 +02001391 writel(vptr->rx.pool_dma, &regs->RDBaseLo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 writew(vptr->options.numrx - 1, &regs->RDCSize);
1393 mac_rx_queue_run(regs);
1394 mac_rx_queue_wake(regs);
1395
1396 writew(vptr->options.numtx - 1, &regs->TDCSize);
1397
Francois Romieu0fe9f152008-07-31 22:10:10 +02001398 for (i = 0; i < vptr->tx.numq; i++) {
1399 writel(vptr->tx.pool_dma[i], &regs->TDBaseLo[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 mac_tx_queue_run(regs, i);
1401 }
1402
1403 init_flow_control_register(vptr);
1404
1405 writel(CR0_STOP, &regs->CR0Clr);
1406 writel((CR0_DPOLL | CR0_TXON | CR0_RXON | CR0_STRT), &regs->CR0Set);
1407
1408 mii_status = velocity_get_opt_media_mode(vptr);
1409 netif_stop_queue(vptr->dev);
1410
1411 mii_init(vptr, mii_status);
1412
1413 if (velocity_set_media_mode(vptr, mii_status) != VELOCITY_LINK_CHANGE) {
1414 velocity_print_link_status(vptr);
1415 if (!(vptr->mii_status & VELOCITY_LINK_FAIL))
1416 netif_wake_queue(vptr->dev);
1417 }
1418
1419 enable_flow_control_ability(vptr);
1420 mac_hw_mibs_init(regs);
1421 mac_write_int_mask(vptr->int_mask, regs);
1422 mac_clear_isr(regs);
1423
1424 }
1425}
1426
Dave Jones2cf71d22009-07-23 18:11:12 -07001427static void velocity_give_many_rx_descs(struct velocity_info *vptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
Dave Jonesc4067402009-07-20 17:35:21 +00001429 struct mac_regs __iomem *regs = vptr->mac_regs;
Dave Jones2cf71d22009-07-23 18:11:12 -07001430 int avail, dirty, unusable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Dave Jones2cf71d22009-07-23 18:11:12 -07001432 /*
1433 * RD number must be equal to 4X per hardware spec
1434 * (programming guide rev 1.20, p.13)
1435 */
1436 if (vptr->rx.filled < 4)
1437 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Dave Jones2cf71d22009-07-23 18:11:12 -07001439 wmb();
1440
1441 unusable = vptr->rx.filled & 0x0003;
1442 dirty = vptr->rx.dirty - unusable;
1443 for (avail = vptr->rx.filled & 0xfffc; avail; avail--) {
1444 dirty = (dirty > 0) ? dirty - 1 : vptr->options.numrx - 1;
1445 vptr->rx.ring[dirty].rdesc0.len |= OWNED_BY_NIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447
Dave Jones2cf71d22009-07-23 18:11:12 -07001448 writew(vptr->rx.filled & 0xfffc, &regs->RBRDU);
1449 vptr->rx.filled = unusable;
1450}
1451
1452/**
1453 * velocity_init_dma_rings - set up DMA rings
1454 * @vptr: Velocity to set up
1455 *
1456 * Allocate PCI mapped DMA rings for the receive and transmit layer
1457 * to use.
1458 */
1459static int velocity_init_dma_rings(struct velocity_info *vptr)
1460{
1461 struct velocity_opt *opt = &vptr->options;
1462 const unsigned int rx_ring_size = opt->numrx * sizeof(struct rx_desc);
1463 const unsigned int tx_ring_size = opt->numtx * sizeof(struct tx_desc);
1464 struct pci_dev *pdev = vptr->pdev;
1465 dma_addr_t pool_dma;
1466 void *pool;
1467 unsigned int i;
1468
1469 /*
1470 * Allocate all RD/TD rings a single pool.
1471 *
1472 * pci_alloc_consistent() fulfills the requirement for 64 bytes
1473 * alignment
1474 */
1475 pool = pci_alloc_consistent(pdev, tx_ring_size * vptr->tx.numq +
1476 rx_ring_size, &pool_dma);
1477 if (!pool) {
1478 dev_err(&pdev->dev, "%s : DMA memory allocation failed.\n",
1479 vptr->dev->name);
1480 return -ENOMEM;
1481 }
1482
1483 vptr->rx.ring = pool;
1484 vptr->rx.pool_dma = pool_dma;
1485
1486 pool += rx_ring_size;
1487 pool_dma += rx_ring_size;
1488
1489 for (i = 0; i < vptr->tx.numq; i++) {
1490 vptr->tx.rings[i] = pool;
1491 vptr->tx.pool_dma[i] = pool_dma;
1492 pool += tx_ring_size;
1493 pool_dma += tx_ring_size;
1494 }
1495
1496 return 0;
1497}
1498
1499static void velocity_set_rxbufsize(struct velocity_info *vptr, int mtu)
1500{
1501 vptr->rx.buf_sz = (mtu <= ETH_DATA_LEN) ? PKT_BUF_SZ : mtu + 32;
1502}
1503
1504/**
1505 * velocity_alloc_rx_buf - allocate aligned receive buffer
1506 * @vptr: velocity
1507 * @idx: ring index
1508 *
1509 * Allocate a new full sized buffer for the reception of a frame and
1510 * map it into PCI space for the hardware to use. The hardware
1511 * requires *64* byte alignment of the buffer which makes life
1512 * less fun than would be ideal.
1513 */
1514static int velocity_alloc_rx_buf(struct velocity_info *vptr, int idx)
1515{
1516 struct rx_desc *rd = &(vptr->rx.ring[idx]);
1517 struct velocity_rd_info *rd_info = &(vptr->rx.info[idx]);
1518
1519 rd_info->skb = dev_alloc_skb(vptr->rx.buf_sz + 64);
1520 if (rd_info->skb == NULL)
1521 return -ENOMEM;
1522
1523 /*
1524 * Do the gymnastics to get the buffer head for data at
1525 * 64byte alignment.
1526 */
Simon Kagstromda95b2d2009-11-25 22:09:53 +00001527 skb_reserve(rd_info->skb,
1528 64 - ((unsigned long) rd_info->skb->data & 63));
Dave Jones2cf71d22009-07-23 18:11:12 -07001529 rd_info->skb_dma = pci_map_single(vptr->pdev, rd_info->skb->data,
1530 vptr->rx.buf_sz, PCI_DMA_FROMDEVICE);
1531
1532 /*
1533 * Fill in the descriptor to match
1534 */
1535
1536 *((u32 *) & (rd->rdesc0)) = 0;
1537 rd->size = cpu_to_le16(vptr->rx.buf_sz) | RX_INTEN;
1538 rd->pa_low = cpu_to_le32(rd_info->skb_dma);
1539 rd->pa_high = 0;
1540 return 0;
1541}
1542
1543
1544static int velocity_rx_refill(struct velocity_info *vptr)
1545{
1546 int dirty = vptr->rx.dirty, done = 0;
1547
1548 do {
1549 struct rx_desc *rd = vptr->rx.ring + dirty;
1550
1551 /* Fine for an all zero Rx desc at init time as well */
1552 if (rd->rdesc0.len & OWNED_BY_NIC)
1553 break;
1554
1555 if (!vptr->rx.info[dirty].skb) {
1556 if (velocity_alloc_rx_buf(vptr, dirty) < 0)
1557 break;
1558 }
1559 done++;
1560 dirty = (dirty < vptr->options.numrx - 1) ? dirty + 1 : 0;
1561 } while (dirty != vptr->rx.curr);
1562
1563 if (done) {
1564 vptr->rx.dirty = dirty;
1565 vptr->rx.filled += done;
1566 }
1567
1568 return done;
1569}
1570
1571/**
1572 * velocity_free_rd_ring - free receive ring
1573 * @vptr: velocity to clean up
1574 *
1575 * Free the receive buffers for each ring slot and any
1576 * attached socket buffers that need to go away.
1577 */
1578static void velocity_free_rd_ring(struct velocity_info *vptr)
1579{
1580 int i;
1581
1582 if (vptr->rx.info == NULL)
1583 return;
1584
1585 for (i = 0; i < vptr->options.numrx; i++) {
1586 struct velocity_rd_info *rd_info = &(vptr->rx.info[i]);
1587 struct rx_desc *rd = vptr->rx.ring + i;
1588
1589 memset(rd, 0, sizeof(*rd));
1590
1591 if (!rd_info->skb)
1592 continue;
1593 pci_unmap_single(vptr->pdev, rd_info->skb_dma, vptr->rx.buf_sz,
1594 PCI_DMA_FROMDEVICE);
1595 rd_info->skb_dma = 0;
1596
1597 dev_kfree_skb(rd_info->skb);
1598 rd_info->skb = NULL;
1599 }
1600
1601 kfree(vptr->rx.info);
1602 vptr->rx.info = NULL;
1603}
1604
1605
1606
1607/**
1608 * velocity_init_rd_ring - set up receive ring
1609 * @vptr: velocity to configure
1610 *
1611 * Allocate and set up the receive buffers for each ring slot and
1612 * assign them to the network adapter.
1613 */
1614static int velocity_init_rd_ring(struct velocity_info *vptr)
1615{
1616 int ret = -ENOMEM;
1617
1618 vptr->rx.info = kcalloc(vptr->options.numrx,
1619 sizeof(struct velocity_rd_info), GFP_KERNEL);
1620 if (!vptr->rx.info)
1621 goto out;
1622
1623 velocity_init_rx_ring_indexes(vptr);
1624
1625 if (velocity_rx_refill(vptr) != vptr->options.numrx) {
1626 VELOCITY_PRT(MSG_LEVEL_ERR, KERN_ERR
1627 "%s: failed to allocate RX buffer.\n", vptr->dev->name);
1628 velocity_free_rd_ring(vptr);
1629 goto out;
1630 }
1631
1632 ret = 0;
1633out:
1634 return ret;
1635}
1636
1637/**
1638 * velocity_init_td_ring - set up transmit ring
1639 * @vptr: velocity
1640 *
1641 * Set up the transmit ring and chain the ring pointers together.
1642 * Returns zero on success or a negative posix errno code for
1643 * failure.
1644 */
1645static int velocity_init_td_ring(struct velocity_info *vptr)
1646{
Dave Jones2cf71d22009-07-23 18:11:12 -07001647 int j;
1648
1649 /* Init the TD ring entries */
1650 for (j = 0; j < vptr->tx.numq; j++) {
Dave Jones2cf71d22009-07-23 18:11:12 -07001651
1652 vptr->tx.infos[j] = kcalloc(vptr->options.numtx,
1653 sizeof(struct velocity_td_info),
1654 GFP_KERNEL);
1655 if (!vptr->tx.infos[j]) {
1656 while (--j >= 0)
1657 kfree(vptr->tx.infos[j]);
1658 return -ENOMEM;
1659 }
1660
1661 vptr->tx.tail[j] = vptr->tx.curr[j] = vptr->tx.used[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
1663 return 0;
1664}
1665
Dave Jones2cf71d22009-07-23 18:11:12 -07001666/**
1667 * velocity_free_dma_rings - free PCI ring pointers
1668 * @vptr: Velocity to free from
1669 *
1670 * Clean up the PCI ring buffers allocated to this velocity.
1671 */
1672static void velocity_free_dma_rings(struct velocity_info *vptr)
1673{
1674 const int size = vptr->options.numrx * sizeof(struct rx_desc) +
1675 vptr->options.numtx * sizeof(struct tx_desc) * vptr->tx.numq;
1676
1677 pci_free_consistent(vptr->pdev, size, vptr->rx.ring, vptr->rx.pool_dma);
1678}
1679
1680
1681static int velocity_init_rings(struct velocity_info *vptr, int mtu)
1682{
1683 int ret;
1684
1685 velocity_set_rxbufsize(vptr, mtu);
1686
1687 ret = velocity_init_dma_rings(vptr);
1688 if (ret < 0)
1689 goto out;
1690
1691 ret = velocity_init_rd_ring(vptr);
1692 if (ret < 0)
1693 goto err_free_dma_rings_0;
1694
1695 ret = velocity_init_td_ring(vptr);
1696 if (ret < 0)
1697 goto err_free_rd_ring_1;
1698out:
1699 return ret;
1700
1701err_free_rd_ring_1:
1702 velocity_free_rd_ring(vptr);
1703err_free_dma_rings_0:
1704 velocity_free_dma_rings(vptr);
1705 goto out;
1706}
1707
1708/**
1709 * velocity_free_tx_buf - free transmit buffer
1710 * @vptr: velocity
1711 * @tdinfo: buffer
1712 *
1713 * Release an transmit buffer. If the buffer was preallocated then
1714 * recycle it, if not then unmap the buffer.
1715 */
Simon Kagstromc79992f2009-11-25 22:10:43 +00001716static void velocity_free_tx_buf(struct velocity_info *vptr,
1717 struct velocity_td_info *tdinfo, struct tx_desc *td)
Dave Jones2cf71d22009-07-23 18:11:12 -07001718{
1719 struct sk_buff *skb = tdinfo->skb;
Dave Jones2cf71d22009-07-23 18:11:12 -07001720
1721 /*
1722 * Don't unmap the pre-allocated tx_bufs
1723 */
1724 if (tdinfo->skb_dma) {
Simon Kagstromc79992f2009-11-25 22:10:43 +00001725 int i;
Dave Jones2cf71d22009-07-23 18:11:12 -07001726
Dave Jones2cf71d22009-07-23 18:11:12 -07001727 for (i = 0; i < tdinfo->nskb_dma; i++) {
Simon Kagstromc79992f2009-11-25 22:10:43 +00001728 size_t pktlen = max_t(size_t, skb->len, ETH_ZLEN);
1729
1730 /* For scatter-gather */
1731 if (skb_shinfo(skb)->nr_frags > 0)
1732 pktlen = max_t(size_t, pktlen,
1733 td->td_buf[i].size & ~TD_QUEUE);
1734
1735 pci_unmap_single(vptr->pdev, tdinfo->skb_dma[i],
1736 le16_to_cpu(pktlen), PCI_DMA_TODEVICE);
Dave Jones2cf71d22009-07-23 18:11:12 -07001737 }
1738 }
1739 dev_kfree_skb_irq(skb);
1740 tdinfo->skb = NULL;
1741}
1742
1743
1744/*
1745 * FIXME: could we merge this with velocity_free_tx_buf ?
1746 */
1747static void velocity_free_td_ring_entry(struct velocity_info *vptr,
1748 int q, int n)
1749{
1750 struct velocity_td_info *td_info = &(vptr->tx.infos[q][n]);
1751 int i;
1752
1753 if (td_info == NULL)
1754 return;
1755
1756 if (td_info->skb) {
1757 for (i = 0; i < td_info->nskb_dma; i++) {
1758 if (td_info->skb_dma[i]) {
1759 pci_unmap_single(vptr->pdev, td_info->skb_dma[i],
1760 td_info->skb->len, PCI_DMA_TODEVICE);
1761 td_info->skb_dma[i] = 0;
1762 }
1763 }
1764 dev_kfree_skb(td_info->skb);
1765 td_info->skb = NULL;
1766 }
1767}
1768
1769/**
1770 * velocity_free_td_ring - free td ring
1771 * @vptr: velocity
1772 *
1773 * Free up the transmit ring for this particular velocity adapter.
1774 * We free the ring contents but not the ring itself.
1775 */
1776static void velocity_free_td_ring(struct velocity_info *vptr)
1777{
1778 int i, j;
1779
1780 for (j = 0; j < vptr->tx.numq; j++) {
1781 if (vptr->tx.infos[j] == NULL)
1782 continue;
1783 for (i = 0; i < vptr->options.numtx; i++)
1784 velocity_free_td_ring_entry(vptr, j, i);
1785
1786 kfree(vptr->tx.infos[j]);
1787 vptr->tx.infos[j] = NULL;
1788 }
1789}
1790
1791
1792static void velocity_free_rings(struct velocity_info *vptr)
1793{
1794 velocity_free_td_ring(vptr);
1795 velocity_free_rd_ring(vptr);
1796 velocity_free_dma_rings(vptr);
1797}
1798
1799/**
1800 * velocity_error - handle error from controller
1801 * @vptr: velocity
1802 * @status: card status
1803 *
1804 * Process an error report from the hardware and attempt to recover
1805 * the card itself. At the moment we cannot recover from some
1806 * theoretically impossible errors but this could be fixed using
1807 * the pci_device_failed logic to bounce the hardware
1808 *
1809 */
1810static void velocity_error(struct velocity_info *vptr, int status)
1811{
1812
1813 if (status & ISR_TXSTLI) {
1814 struct mac_regs __iomem *regs = vptr->mac_regs;
1815
1816 printk(KERN_ERR "TD structure error TDindex=%hx\n", readw(&regs->TDIdx[0]));
1817 BYTE_REG_BITS_ON(TXESR_TDSTR, &regs->TXESR);
1818 writew(TRDCSR_RUN, &regs->TDCSRClr);
1819 netif_stop_queue(vptr->dev);
1820
1821 /* FIXME: port over the pci_device_failed code and use it
1822 here */
1823 }
1824
1825 if (status & ISR_SRCI) {
1826 struct mac_regs __iomem *regs = vptr->mac_regs;
1827 int linked;
1828
1829 if (vptr->options.spd_dpx == SPD_DPX_AUTO) {
1830 vptr->mii_status = check_connection_type(regs);
1831
1832 /*
1833 * If it is a 3119, disable frame bursting in
1834 * halfduplex mode and enable it in fullduplex
1835 * mode
1836 */
1837 if (vptr->rev_id < REV_ID_VT3216_A0) {
David S. Miller6cdee2f2009-09-02 00:32:56 -07001838 if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
Dave Jones2cf71d22009-07-23 18:11:12 -07001839 BYTE_REG_BITS_ON(TCR_TB2BDIS, &regs->TCR);
1840 else
1841 BYTE_REG_BITS_OFF(TCR_TB2BDIS, &regs->TCR);
1842 }
1843 /*
1844 * Only enable CD heart beat counter in 10HD mode
1845 */
1846 if (!(vptr->mii_status & VELOCITY_DUPLEX_FULL) && (vptr->mii_status & VELOCITY_SPEED_10))
1847 BYTE_REG_BITS_OFF(TESTCFG_HBDIS, &regs->TESTCFG);
1848 else
1849 BYTE_REG_BITS_ON(TESTCFG_HBDIS, &regs->TESTCFG);
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00001850
1851 setup_queue_timers(vptr);
Dave Jones2cf71d22009-07-23 18:11:12 -07001852 }
1853 /*
1854 * Get link status from PHYSR0
1855 */
1856 linked = readb(&regs->PHYSR0) & PHYSR0_LINKGD;
1857
1858 if (linked) {
1859 vptr->mii_status &= ~VELOCITY_LINK_FAIL;
1860 netif_carrier_on(vptr->dev);
1861 } else {
1862 vptr->mii_status |= VELOCITY_LINK_FAIL;
1863 netif_carrier_off(vptr->dev);
1864 }
1865
1866 velocity_print_link_status(vptr);
1867 enable_flow_control_ability(vptr);
1868
1869 /*
1870 * Re-enable auto-polling because SRCI will disable
1871 * auto-polling
1872 */
1873
1874 enable_mii_autopoll(regs);
1875
1876 if (vptr->mii_status & VELOCITY_LINK_FAIL)
1877 netif_stop_queue(vptr->dev);
1878 else
1879 netif_wake_queue(vptr->dev);
1880
Joe Perches6403eab2011-06-03 11:51:20 +00001881 }
Dave Jones2cf71d22009-07-23 18:11:12 -07001882 if (status & ISR_MIBFI)
1883 velocity_update_hw_mibs(vptr);
1884 if (status & ISR_LSTEI)
1885 mac_rx_queue_wake(vptr->mac_regs);
1886}
1887
1888/**
1889 * tx_srv - transmit interrupt service
1890 * @vptr; Velocity
Dave Jones2cf71d22009-07-23 18:11:12 -07001891 *
1892 * Scan the queues looking for transmitted packets that
1893 * we can complete and clean up. Update any statistics as
1894 * necessary/
1895 */
Simon Kagstromd6cade02010-02-09 23:37:54 +00001896static int velocity_tx_srv(struct velocity_info *vptr)
Dave Jones2cf71d22009-07-23 18:11:12 -07001897{
1898 struct tx_desc *td;
1899 int qnum;
1900 int full = 0;
1901 int idx;
1902 int works = 0;
1903 struct velocity_td_info *tdinfo;
1904 struct net_device_stats *stats = &vptr->dev->stats;
1905
1906 for (qnum = 0; qnum < vptr->tx.numq; qnum++) {
1907 for (idx = vptr->tx.tail[qnum]; vptr->tx.used[qnum] > 0;
1908 idx = (idx + 1) % vptr->options.numtx) {
1909
1910 /*
1911 * Get Tx Descriptor
1912 */
1913 td = &(vptr->tx.rings[qnum][idx]);
1914 tdinfo = &(vptr->tx.infos[qnum][idx]);
1915
1916 if (td->tdesc0.len & OWNED_BY_NIC)
1917 break;
1918
1919 if ((works++ > 15))
1920 break;
1921
1922 if (td->tdesc0.TSR & TSR0_TERR) {
1923 stats->tx_errors++;
1924 stats->tx_dropped++;
1925 if (td->tdesc0.TSR & TSR0_CDH)
1926 stats->tx_heartbeat_errors++;
1927 if (td->tdesc0.TSR & TSR0_CRS)
1928 stats->tx_carrier_errors++;
1929 if (td->tdesc0.TSR & TSR0_ABT)
1930 stats->tx_aborted_errors++;
1931 if (td->tdesc0.TSR & TSR0_OWC)
1932 stats->tx_window_errors++;
1933 } else {
1934 stats->tx_packets++;
1935 stats->tx_bytes += tdinfo->skb->len;
1936 }
Simon Kagstromc79992f2009-11-25 22:10:43 +00001937 velocity_free_tx_buf(vptr, tdinfo, td);
Dave Jones2cf71d22009-07-23 18:11:12 -07001938 vptr->tx.used[qnum]--;
1939 }
1940 vptr->tx.tail[qnum] = idx;
1941
1942 if (AVAIL_TD(vptr, qnum) < 1)
1943 full = 1;
1944 }
1945 /*
1946 * Look to see if we should kick the transmit network
1947 * layer for more work.
1948 */
Joe Perches8e95a202009-12-03 07:58:21 +00001949 if (netif_queue_stopped(vptr->dev) && (full == 0) &&
1950 (!(vptr->mii_status & VELOCITY_LINK_FAIL))) {
Dave Jones2cf71d22009-07-23 18:11:12 -07001951 netif_wake_queue(vptr->dev);
1952 }
1953 return works;
1954}
1955
1956/**
1957 * velocity_rx_csum - checksum process
1958 * @rd: receive packet descriptor
1959 * @skb: network layer packet buffer
1960 *
1961 * Process the status bits for the received packet and determine
1962 * if the checksum was computed and verified by the hardware
1963 */
1964static inline void velocity_rx_csum(struct rx_desc *rd, struct sk_buff *skb)
1965{
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001966 skb_checksum_none_assert(skb);
Dave Jones2cf71d22009-07-23 18:11:12 -07001967
1968 if (rd->rdesc1.CSM & CSM_IPKT) {
1969 if (rd->rdesc1.CSM & CSM_IPOK) {
1970 if ((rd->rdesc1.CSM & CSM_TCPKT) ||
1971 (rd->rdesc1.CSM & CSM_UDPKT)) {
1972 if (!(rd->rdesc1.CSM & CSM_TUPOK))
1973 return;
1974 }
1975 skb->ip_summed = CHECKSUM_UNNECESSARY;
1976 }
1977 }
1978}
1979
1980/**
1981 * velocity_rx_copy - in place Rx copy for small packets
1982 * @rx_skb: network layer packet buffer candidate
1983 * @pkt_size: received data size
1984 * @rd: receive packet descriptor
1985 * @dev: network device
1986 *
1987 * Replace the current skb that is scheduled for Rx processing by a
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001988 * shorter, immediately allocated skb, if the received packet is small
Dave Jones2cf71d22009-07-23 18:11:12 -07001989 * enough. This function returns a negative value if the received
1990 * packet is too big or if memory is exhausted.
1991 */
1992static int velocity_rx_copy(struct sk_buff **rx_skb, int pkt_size,
1993 struct velocity_info *vptr)
1994{
1995 int ret = -1;
1996 if (pkt_size < rx_copybreak) {
1997 struct sk_buff *new_skb;
1998
Eric Dumazet89d71a62009-10-13 05:34:20 +00001999 new_skb = netdev_alloc_skb_ip_align(vptr->dev, pkt_size);
Dave Jones2cf71d22009-07-23 18:11:12 -07002000 if (new_skb) {
2001 new_skb->ip_summed = rx_skb[0]->ip_summed;
Dave Jones2cf71d22009-07-23 18:11:12 -07002002 skb_copy_from_linear_data(*rx_skb, new_skb->data, pkt_size);
2003 *rx_skb = new_skb;
2004 ret = 0;
2005 }
2006
2007 }
2008 return ret;
2009}
2010
2011/**
2012 * velocity_iph_realign - IP header alignment
2013 * @vptr: velocity we are handling
2014 * @skb: network layer packet buffer
2015 * @pkt_size: received data size
2016 *
2017 * Align IP header on a 2 bytes boundary. This behavior can be
2018 * configured by the user.
2019 */
2020static inline void velocity_iph_realign(struct velocity_info *vptr,
2021 struct sk_buff *skb, int pkt_size)
2022{
2023 if (vptr->flags & VELOCITY_FLAGS_IP_ALIGN) {
2024 memmove(skb->data + 2, skb->data, pkt_size);
2025 skb_reserve(skb, 2);
2026 }
2027}
2028
2029
2030/**
2031 * velocity_receive_frame - received packet processor
2032 * @vptr: velocity we are handling
2033 * @idx: ring index
2034 *
2035 * A packet has arrived. We process the packet and if appropriate
2036 * pass the frame up the network stack
2037 */
2038static int velocity_receive_frame(struct velocity_info *vptr, int idx)
2039{
2040 void (*pci_action)(struct pci_dev *, dma_addr_t, size_t, int);
2041 struct net_device_stats *stats = &vptr->dev->stats;
2042 struct velocity_rd_info *rd_info = &(vptr->rx.info[idx]);
2043 struct rx_desc *rd = &(vptr->rx.ring[idx]);
2044 int pkt_len = le16_to_cpu(rd->rdesc0.len) & 0x3fff;
2045 struct sk_buff *skb;
2046
2047 if (rd->rdesc0.RSR & (RSR_STP | RSR_EDP)) {
2048 VELOCITY_PRT(MSG_LEVEL_VERBOSE, KERN_ERR " %s : the received frame span multple RDs.\n", vptr->dev->name);
2049 stats->rx_length_errors++;
2050 return -EINVAL;
2051 }
2052
2053 if (rd->rdesc0.RSR & RSR_MAR)
2054 stats->multicast++;
2055
2056 skb = rd_info->skb;
2057
2058 pci_dma_sync_single_for_cpu(vptr->pdev, rd_info->skb_dma,
2059 vptr->rx.buf_sz, PCI_DMA_FROMDEVICE);
2060
2061 /*
2062 * Drop frame not meeting IEEE 802.3
2063 */
2064
2065 if (vptr->flags & VELOCITY_FLAGS_VAL_PKT_LEN) {
2066 if (rd->rdesc0.RSR & RSR_RL) {
2067 stats->rx_length_errors++;
2068 return -EINVAL;
2069 }
2070 }
2071
2072 pci_action = pci_dma_sync_single_for_device;
2073
2074 velocity_rx_csum(rd, skb);
2075
2076 if (velocity_rx_copy(&skb, pkt_len, vptr) < 0) {
2077 velocity_iph_realign(vptr, skb, pkt_len);
2078 pci_action = pci_unmap_single;
2079 rd_info->skb = NULL;
2080 }
2081
2082 pci_action(vptr->pdev, rd_info->skb_dma, vptr->rx.buf_sz,
2083 PCI_DMA_FROMDEVICE);
2084
2085 skb_put(skb, pkt_len - 4);
2086 skb->protocol = eth_type_trans(skb, vptr->dev);
2087
Jiri Pirko73b54682011-07-20 04:54:30 +00002088 if (rd->rdesc0.RSR & RSR_DETAG) {
2089 u16 vid = swab16(le16_to_cpu(rd->rdesc1.PQTAG));
2090
2091 __vlan_hwaccel_put_tag(skb, vid);
2092 }
2093 netif_rx(skb);
Dave Jones2cf71d22009-07-23 18:11:12 -07002094
2095 stats->rx_bytes += pkt_len;
2096
2097 return 0;
2098}
2099
2100
2101/**
2102 * velocity_rx_srv - service RX interrupt
2103 * @vptr: velocity
Dave Jones2cf71d22009-07-23 18:11:12 -07002104 *
2105 * Walk the receive ring of the velocity adapter and remove
2106 * any received packets from the receive queue. Hand the ring
2107 * slots back to the adapter for reuse.
2108 */
Simon Kagstromd6cade02010-02-09 23:37:54 +00002109static int velocity_rx_srv(struct velocity_info *vptr, int budget_left)
Dave Jones2cf71d22009-07-23 18:11:12 -07002110{
2111 struct net_device_stats *stats = &vptr->dev->stats;
2112 int rd_curr = vptr->rx.curr;
2113 int works = 0;
2114
Simon Kagstromdfff7142009-11-25 22:10:26 +00002115 while (works < budget_left) {
Dave Jones2cf71d22009-07-23 18:11:12 -07002116 struct rx_desc *rd = vptr->rx.ring + rd_curr;
2117
2118 if (!vptr->rx.info[rd_curr].skb)
2119 break;
2120
2121 if (rd->rdesc0.len & OWNED_BY_NIC)
2122 break;
2123
2124 rmb();
2125
2126 /*
2127 * Don't drop CE or RL error frame although RXOK is off
2128 */
2129 if (rd->rdesc0.RSR & (RSR_RXOK | RSR_CE | RSR_RL)) {
2130 if (velocity_receive_frame(vptr, rd_curr) < 0)
2131 stats->rx_dropped++;
2132 } else {
2133 if (rd->rdesc0.RSR & RSR_CRC)
2134 stats->rx_crc_errors++;
2135 if (rd->rdesc0.RSR & RSR_FAE)
2136 stats->rx_frame_errors++;
2137
2138 stats->rx_dropped++;
2139 }
2140
2141 rd->size |= RX_INTEN;
2142
2143 rd_curr++;
2144 if (rd_curr >= vptr->options.numrx)
2145 rd_curr = 0;
Simon Kagstromdfff7142009-11-25 22:10:26 +00002146 works++;
2147 }
Dave Jones2cf71d22009-07-23 18:11:12 -07002148
2149 vptr->rx.curr = rd_curr;
2150
2151 if ((works > 0) && (velocity_rx_refill(vptr) > 0))
2152 velocity_give_many_rx_descs(vptr);
2153
2154 VAR_USED(stats);
2155 return works;
2156}
2157
Simon Kagstromdfff7142009-11-25 22:10:26 +00002158static int velocity_poll(struct napi_struct *napi, int budget)
2159{
2160 struct velocity_info *vptr = container_of(napi,
2161 struct velocity_info, napi);
2162 unsigned int rx_done;
Simon Kagstrom3f2e8d92010-02-09 23:38:25 +00002163 unsigned long flags;
Simon Kagstromdfff7142009-11-25 22:10:26 +00002164
Simon Kagstrom3f2e8d92010-02-09 23:38:25 +00002165 spin_lock_irqsave(&vptr->lock, flags);
Simon Kagstromdfff7142009-11-25 22:10:26 +00002166 /*
2167 * Do rx and tx twice for performance (taken from the VIA
2168 * out-of-tree driver).
2169 */
Simon Kagstromd6cade02010-02-09 23:37:54 +00002170 rx_done = velocity_rx_srv(vptr, budget / 2);
2171 velocity_tx_srv(vptr);
2172 rx_done += velocity_rx_srv(vptr, budget - rx_done);
2173 velocity_tx_srv(vptr);
Simon Kagstromdfff7142009-11-25 22:10:26 +00002174
2175 /* If budget not fully consumed, exit the polling mode */
2176 if (rx_done < budget) {
2177 napi_complete(napi);
2178 mac_enable_int(vptr->mac_regs);
2179 }
Simon Kagstrom3f2e8d92010-02-09 23:38:25 +00002180 spin_unlock_irqrestore(&vptr->lock, flags);
Simon Kagstromdfff7142009-11-25 22:10:26 +00002181
2182 return rx_done;
2183}
Dave Jones2cf71d22009-07-23 18:11:12 -07002184
2185/**
2186 * velocity_intr - interrupt callback
2187 * @irq: interrupt number
2188 * @dev_instance: interrupting device
2189 *
2190 * Called whenever an interrupt is generated by the velocity
2191 * adapter IRQ line. We may not be the source of the interrupt
2192 * and need to identify initially if we are, and if not exit as
2193 * efficiently as possible.
2194 */
2195static irqreturn_t velocity_intr(int irq, void *dev_instance)
2196{
2197 struct net_device *dev = dev_instance;
2198 struct velocity_info *vptr = netdev_priv(dev);
2199 u32 isr_status;
Dave Jones2cf71d22009-07-23 18:11:12 -07002200
2201 spin_lock(&vptr->lock);
2202 isr_status = mac_read_isr(vptr->mac_regs);
2203
2204 /* Not us ? */
2205 if (isr_status == 0) {
2206 spin_unlock(&vptr->lock);
2207 return IRQ_NONE;
2208 }
2209
Simon Kagstrom3f2e8d92010-02-09 23:38:25 +00002210 /* Ack the interrupt */
2211 mac_write_isr(vptr->mac_regs, isr_status);
2212
Simon Kagstromdfff7142009-11-25 22:10:26 +00002213 if (likely(napi_schedule_prep(&vptr->napi))) {
2214 mac_disable_int(vptr->mac_regs);
2215 __napi_schedule(&vptr->napi);
Dave Jones2cf71d22009-07-23 18:11:12 -07002216 }
Simon Kagstrom3f2e8d92010-02-09 23:38:25 +00002217
2218 if (isr_status & (~(ISR_PRXI | ISR_PPRXI | ISR_PTXI | ISR_PPTXI)))
2219 velocity_error(vptr, isr_status);
2220
Dave Jones2cf71d22009-07-23 18:11:12 -07002221 spin_unlock(&vptr->lock);
Dave Jones2cf71d22009-07-23 18:11:12 -07002222
Simon Kagstromdfff7142009-11-25 22:10:26 +00002223 return IRQ_HANDLED;
Dave Jones2cf71d22009-07-23 18:11:12 -07002224}
2225
2226/**
2227 * velocity_open - interface activation callback
2228 * @dev: network layer device to open
2229 *
2230 * Called when the network layer brings the interface up. Returns
2231 * a negative posix error code on failure, or zero on success.
2232 *
2233 * All the ring allocation and set up is done on open for this
2234 * adapter to minimise memory usage when inactive
2235 */
2236static int velocity_open(struct net_device *dev)
2237{
2238 struct velocity_info *vptr = netdev_priv(dev);
2239 int ret;
2240
2241 ret = velocity_init_rings(vptr, dev->mtu);
2242 if (ret < 0)
2243 goto out;
2244
2245 /* Ensure chip is running */
2246 pci_set_power_state(vptr->pdev, PCI_D0);
2247
Dave Jones2cf71d22009-07-23 18:11:12 -07002248 velocity_init_registers(vptr, VELOCITY_INIT_COLD);
2249
Julia Lawall1ede9b52009-11-18 08:24:13 +00002250 ret = request_irq(vptr->pdev->irq, velocity_intr, IRQF_SHARED,
Dave Jones2cf71d22009-07-23 18:11:12 -07002251 dev->name, dev);
2252 if (ret < 0) {
2253 /* Power down the chip */
2254 pci_set_power_state(vptr->pdev, PCI_D3hot);
2255 velocity_free_rings(vptr);
2256 goto out;
2257 }
2258
Ben Hutchings35bb5ca2009-12-14 16:05:09 +00002259 velocity_give_many_rx_descs(vptr);
2260
Dave Jones2cf71d22009-07-23 18:11:12 -07002261 mac_enable_int(vptr->mac_regs);
2262 netif_start_queue(dev);
Simon Kagstromdfff7142009-11-25 22:10:26 +00002263 napi_enable(&vptr->napi);
Dave Jones2cf71d22009-07-23 18:11:12 -07002264 vptr->flags |= VELOCITY_FLAGS_OPENED;
2265out:
2266 return ret;
2267}
2268
2269/**
2270 * velocity_shutdown - shut down the chip
2271 * @vptr: velocity to deactivate
2272 *
2273 * Shuts down the internal operations of the velocity and
2274 * disables interrupts, autopolling, transmit and receive
2275 */
2276static void velocity_shutdown(struct velocity_info *vptr)
2277{
2278 struct mac_regs __iomem *regs = vptr->mac_regs;
2279 mac_disable_int(regs);
2280 writel(CR0_STOP, &regs->CR0Set);
2281 writew(0xFFFF, &regs->TDCSRClr);
2282 writeb(0xFF, &regs->RDCSRClr);
2283 safe_disable_mii_autopoll(regs);
2284 mac_clear_isr(regs);
2285}
2286
2287/**
2288 * velocity_change_mtu - MTU change callback
2289 * @dev: network device
2290 * @new_mtu: desired MTU
2291 *
2292 * Handle requests from the networking layer for MTU change on
2293 * this interface. It gets called on a change by the network layer.
2294 * Return zero for success or negative posix error code.
2295 */
2296static int velocity_change_mtu(struct net_device *dev, int new_mtu)
2297{
2298 struct velocity_info *vptr = netdev_priv(dev);
2299 int ret = 0;
2300
2301 if ((new_mtu < VELOCITY_MIN_MTU) || new_mtu > (VELOCITY_MAX_MTU)) {
2302 VELOCITY_PRT(MSG_LEVEL_ERR, KERN_NOTICE "%s: Invalid MTU.\n",
2303 vptr->dev->name);
2304 ret = -EINVAL;
2305 goto out_0;
2306 }
2307
2308 if (!netif_running(dev)) {
2309 dev->mtu = new_mtu;
2310 goto out_0;
2311 }
2312
2313 if (dev->mtu != new_mtu) {
2314 struct velocity_info *tmp_vptr;
2315 unsigned long flags;
2316 struct rx_info rx;
2317 struct tx_info tx;
2318
2319 tmp_vptr = kzalloc(sizeof(*tmp_vptr), GFP_KERNEL);
2320 if (!tmp_vptr) {
2321 ret = -ENOMEM;
2322 goto out_0;
2323 }
2324
2325 tmp_vptr->dev = dev;
2326 tmp_vptr->pdev = vptr->pdev;
2327 tmp_vptr->options = vptr->options;
2328 tmp_vptr->tx.numq = vptr->tx.numq;
2329
2330 ret = velocity_init_rings(tmp_vptr, new_mtu);
2331 if (ret < 0)
2332 goto out_free_tmp_vptr_1;
2333
2334 spin_lock_irqsave(&vptr->lock, flags);
2335
2336 netif_stop_queue(dev);
2337 velocity_shutdown(vptr);
2338
2339 rx = vptr->rx;
2340 tx = vptr->tx;
2341
2342 vptr->rx = tmp_vptr->rx;
2343 vptr->tx = tmp_vptr->tx;
2344
2345 tmp_vptr->rx = rx;
2346 tmp_vptr->tx = tx;
2347
2348 dev->mtu = new_mtu;
2349
Dave Jones2cf71d22009-07-23 18:11:12 -07002350 velocity_init_registers(vptr, VELOCITY_INIT_COLD);
2351
Ben Hutchings35bb5ca2009-12-14 16:05:09 +00002352 velocity_give_many_rx_descs(vptr);
2353
Dave Jones2cf71d22009-07-23 18:11:12 -07002354 mac_enable_int(vptr->mac_regs);
2355 netif_start_queue(dev);
2356
2357 spin_unlock_irqrestore(&vptr->lock, flags);
2358
2359 velocity_free_rings(tmp_vptr);
2360
2361out_free_tmp_vptr_1:
2362 kfree(tmp_vptr);
2363 }
2364out_0:
2365 return ret;
2366}
2367
2368/**
2369 * velocity_mii_ioctl - MII ioctl handler
2370 * @dev: network device
2371 * @ifr: the ifreq block for the ioctl
2372 * @cmd: the command
2373 *
2374 * Process MII requests made via ioctl from the network layer. These
2375 * are used by tools like kudzu to interrogate the link state of the
2376 * hardware
2377 */
2378static int velocity_mii_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2379{
2380 struct velocity_info *vptr = netdev_priv(dev);
2381 struct mac_regs __iomem *regs = vptr->mac_regs;
2382 unsigned long flags;
2383 struct mii_ioctl_data *miidata = if_mii(ifr);
2384 int err;
2385
2386 switch (cmd) {
2387 case SIOCGMIIPHY:
2388 miidata->phy_id = readb(&regs->MIIADR) & 0x1f;
2389 break;
2390 case SIOCGMIIREG:
Dave Jones2cf71d22009-07-23 18:11:12 -07002391 if (velocity_mii_read(vptr->mac_regs, miidata->reg_num & 0x1f, &(miidata->val_out)) < 0)
2392 return -ETIMEDOUT;
2393 break;
2394 case SIOCSMIIREG:
Dave Jones2cf71d22009-07-23 18:11:12 -07002395 spin_lock_irqsave(&vptr->lock, flags);
2396 err = velocity_mii_write(vptr->mac_regs, miidata->reg_num & 0x1f, miidata->val_in);
2397 spin_unlock_irqrestore(&vptr->lock, flags);
2398 check_connection_type(vptr->mac_regs);
2399 if (err)
2400 return err;
2401 break;
2402 default:
2403 return -EOPNOTSUPP;
2404 }
2405 return 0;
2406}
2407
2408
2409/**
2410 * velocity_ioctl - ioctl entry point
2411 * @dev: network device
2412 * @rq: interface request ioctl
2413 * @cmd: command code
2414 *
2415 * Called when the user issues an ioctl request to the network
2416 * device in question. The velocity interface supports MII.
2417 */
2418static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2419{
2420 struct velocity_info *vptr = netdev_priv(dev);
2421 int ret;
2422
2423 /* If we are asked for information and the device is power
2424 saving then we need to bring the device back up to talk to it */
2425
2426 if (!netif_running(dev))
2427 pci_set_power_state(vptr->pdev, PCI_D0);
2428
2429 switch (cmd) {
2430 case SIOCGMIIPHY: /* Get address of MII PHY in use. */
2431 case SIOCGMIIREG: /* Read MII PHY register. */
2432 case SIOCSMIIREG: /* Write to MII PHY register. */
2433 ret = velocity_mii_ioctl(dev, rq, cmd);
2434 break;
2435
2436 default:
2437 ret = -EOPNOTSUPP;
2438 }
2439 if (!netif_running(dev))
2440 pci_set_power_state(vptr->pdev, PCI_D3hot);
2441
2442
2443 return ret;
2444}
2445
2446/**
2447 * velocity_get_status - statistics callback
2448 * @dev: network device
2449 *
2450 * Callback from the network layer to allow driver statistics
2451 * to be resynchronized with hardware collected state. In the
2452 * case of the velocity we need to pull the MIB counters from
2453 * the hardware into the counters before letting the network
2454 * layer display them.
2455 */
2456static struct net_device_stats *velocity_get_stats(struct net_device *dev)
2457{
2458 struct velocity_info *vptr = netdev_priv(dev);
2459
2460 /* If the hardware is down, don't touch MII */
2461 if (!netif_running(dev))
2462 return &dev->stats;
2463
2464 spin_lock_irq(&vptr->lock);
2465 velocity_update_hw_mibs(vptr);
2466 spin_unlock_irq(&vptr->lock);
2467
2468 dev->stats.rx_packets = vptr->mib_counter[HW_MIB_ifRxAllPkts];
2469 dev->stats.rx_errors = vptr->mib_counter[HW_MIB_ifRxErrorPkts];
2470 dev->stats.rx_length_errors = vptr->mib_counter[HW_MIB_ifInRangeLengthErrors];
2471
2472// unsigned long rx_dropped; /* no space in linux buffers */
2473 dev->stats.collisions = vptr->mib_counter[HW_MIB_ifTxEtherCollisions];
2474 /* detailed rx_errors: */
2475// unsigned long rx_length_errors;
2476// unsigned long rx_over_errors; /* receiver ring buff overflow */
2477 dev->stats.rx_crc_errors = vptr->mib_counter[HW_MIB_ifRxPktCRCE];
2478// unsigned long rx_frame_errors; /* recv'd frame alignment error */
2479// unsigned long rx_fifo_errors; /* recv'r fifo overrun */
2480// unsigned long rx_missed_errors; /* receiver missed packet */
2481
2482 /* detailed tx_errors */
2483// unsigned long tx_fifo_errors;
2484
2485 return &dev->stats;
2486}
2487
2488/**
2489 * velocity_close - close adapter callback
2490 * @dev: network device
2491 *
2492 * Callback from the network layer when the velocity is being
2493 * deactivated by the network layer
2494 */
2495static int velocity_close(struct net_device *dev)
2496{
2497 struct velocity_info *vptr = netdev_priv(dev);
2498
Simon Kagstromdfff7142009-11-25 22:10:26 +00002499 napi_disable(&vptr->napi);
Dave Jones2cf71d22009-07-23 18:11:12 -07002500 netif_stop_queue(dev);
2501 velocity_shutdown(vptr);
2502
2503 if (vptr->flags & VELOCITY_FLAGS_WOL_ENABLED)
2504 velocity_get_ip(vptr);
2505 if (dev->irq != 0)
2506 free_irq(dev->irq, dev);
2507
2508 /* Power down the chip */
2509 pci_set_power_state(vptr->pdev, PCI_D3hot);
2510
2511 velocity_free_rings(vptr);
2512
2513 vptr->flags &= (~VELOCITY_FLAGS_OPENED);
2514 return 0;
2515}
2516
2517/**
2518 * velocity_xmit - transmit packet callback
2519 * @skb: buffer to transmit
2520 * @dev: network device
2521 *
2522 * Called by the networ layer to request a packet is queued to
2523 * the velocity. Returns zero on success.
2524 */
Stephen Hemminger613573252009-08-31 19:50:58 +00002525static netdev_tx_t velocity_xmit(struct sk_buff *skb,
2526 struct net_device *dev)
Dave Jones2cf71d22009-07-23 18:11:12 -07002527{
2528 struct velocity_info *vptr = netdev_priv(dev);
2529 int qnum = 0;
2530 struct tx_desc *td_ptr;
2531 struct velocity_td_info *tdinfo;
2532 unsigned long flags;
2533 int pktlen;
Simon Kagstromc79992f2009-11-25 22:10:43 +00002534 int index, prev;
2535 int i = 0;
Dave Jones2cf71d22009-07-23 18:11:12 -07002536
2537 if (skb_padto(skb, ETH_ZLEN))
2538 goto out;
Dave Jones2cf71d22009-07-23 18:11:12 -07002539
Simon Kagstromc79992f2009-11-25 22:10:43 +00002540 /* The hardware can handle at most 7 memory segments, so merge
2541 * the skb if there are more */
2542 if (skb_shinfo(skb)->nr_frags > 6 && __skb_linearize(skb)) {
2543 kfree_skb(skb);
2544 return NETDEV_TX_OK;
2545 }
2546
2547 pktlen = skb_shinfo(skb)->nr_frags == 0 ?
2548 max_t(unsigned int, skb->len, ETH_ZLEN) :
2549 skb_headlen(skb);
Dave Jones2cf71d22009-07-23 18:11:12 -07002550
2551 spin_lock_irqsave(&vptr->lock, flags);
2552
2553 index = vptr->tx.curr[qnum];
2554 td_ptr = &(vptr->tx.rings[qnum][index]);
2555 tdinfo = &(vptr->tx.infos[qnum][index]);
2556
2557 td_ptr->tdesc1.TCR = TCR0_TIC;
2558 td_ptr->td_buf[0].size &= ~TD_QUEUE;
2559
2560 /*
2561 * Map the linear network buffer into PCI space and
2562 * add it to the transmit ring.
2563 */
2564 tdinfo->skb = skb;
2565 tdinfo->skb_dma[0] = pci_map_single(vptr->pdev, skb->data, pktlen, PCI_DMA_TODEVICE);
Simon Kagstromc79992f2009-11-25 22:10:43 +00002566 td_ptr->tdesc0.len = cpu_to_le16(pktlen);
Dave Jones2cf71d22009-07-23 18:11:12 -07002567 td_ptr->td_buf[0].pa_low = cpu_to_le32(tdinfo->skb_dma[0]);
2568 td_ptr->td_buf[0].pa_high = 0;
Simon Kagstromc79992f2009-11-25 22:10:43 +00002569 td_ptr->td_buf[0].size = cpu_to_le16(pktlen);
2570
2571 /* Handle fragments */
2572 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2573 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2574
2575 tdinfo->skb_dma[i + 1] = pci_map_page(vptr->pdev, frag->page,
2576 frag->page_offset, frag->size,
2577 PCI_DMA_TODEVICE);
2578
2579 td_ptr->td_buf[i + 1].pa_low = cpu_to_le32(tdinfo->skb_dma[i + 1]);
2580 td_ptr->td_buf[i + 1].pa_high = 0;
2581 td_ptr->td_buf[i + 1].size = cpu_to_le16(frag->size);
2582 }
2583 tdinfo->nskb_dma = i + 1;
Dave Jones2cf71d22009-07-23 18:11:12 -07002584
2585 td_ptr->tdesc1.cmd = TCPLS_NORMAL + (tdinfo->nskb_dma + 1) * 16;
2586
Jesse Grosseab6d182010-10-20 13:56:03 +00002587 if (vlan_tx_tag_present(skb)) {
Dave Jones2cf71d22009-07-23 18:11:12 -07002588 td_ptr->tdesc1.vlan = cpu_to_le16(vlan_tx_tag_get(skb));
2589 td_ptr->tdesc1.TCR |= TCR0_VETAG;
2590 }
2591
2592 /*
2593 * Handle hardware checksum
2594 */
Michał Mirosławf593fe32011-04-10 03:13:21 +00002595 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Dave Jones2cf71d22009-07-23 18:11:12 -07002596 const struct iphdr *ip = ip_hdr(skb);
2597 if (ip->protocol == IPPROTO_TCP)
2598 td_ptr->tdesc1.TCR |= TCR0_TCPCK;
2599 else if (ip->protocol == IPPROTO_UDP)
2600 td_ptr->tdesc1.TCR |= (TCR0_UDPCK);
2601 td_ptr->tdesc1.TCR |= TCR0_IPCK;
2602 }
Dave Jones2cf71d22009-07-23 18:11:12 -07002603
Simon Kagstromc79992f2009-11-25 22:10:43 +00002604 prev = index - 1;
2605 if (prev < 0)
2606 prev = vptr->options.numtx - 1;
2607 td_ptr->tdesc0.len |= OWNED_BY_NIC;
2608 vptr->tx.used[qnum]++;
2609 vptr->tx.curr[qnum] = (index + 1) % vptr->options.numtx;
Dave Jones2cf71d22009-07-23 18:11:12 -07002610
Simon Kagstromc79992f2009-11-25 22:10:43 +00002611 if (AVAIL_TD(vptr, qnum) < 1)
2612 netif_stop_queue(dev);
Dave Jones2cf71d22009-07-23 18:11:12 -07002613
Simon Kagstromc79992f2009-11-25 22:10:43 +00002614 td_ptr = &(vptr->tx.rings[qnum][prev]);
2615 td_ptr->td_buf[0].size |= TD_QUEUE;
2616 mac_tx_queue_wake(vptr->mac_regs, qnum);
Dave Jones2cf71d22009-07-23 18:11:12 -07002617
Dave Jones2cf71d22009-07-23 18:11:12 -07002618 spin_unlock_irqrestore(&vptr->lock, flags);
2619out:
2620 return NETDEV_TX_OK;
2621}
2622
2623
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002624static const struct net_device_ops velocity_netdev_ops = {
2625 .ndo_open = velocity_open,
2626 .ndo_stop = velocity_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08002627 .ndo_start_xmit = velocity_xmit,
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002628 .ndo_get_stats = velocity_get_stats,
2629 .ndo_validate_addr = eth_validate_addr,
Stephen Hemmingerfe96aaa2009-01-09 11:13:14 +00002630 .ndo_set_mac_address = eth_mac_addr,
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002631 .ndo_set_multicast_list = velocity_set_multi,
2632 .ndo_change_mtu = velocity_change_mtu,
2633 .ndo_do_ioctl = velocity_ioctl,
2634 .ndo_vlan_rx_add_vid = velocity_vlan_rx_add_vid,
2635 .ndo_vlan_rx_kill_vid = velocity_vlan_rx_kill_vid,
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002636};
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638/**
Dave Jones2cf71d22009-07-23 18:11:12 -07002639 * velocity_init_info - init private data
2640 * @pdev: PCI device
2641 * @vptr: Velocity info
2642 * @info: Board type
2643 *
2644 * Set up the initial velocity_info struct for the device that has been
2645 * discovered.
2646 */
2647static void __devinit velocity_init_info(struct pci_dev *pdev,
2648 struct velocity_info *vptr,
2649 const struct velocity_info_tbl *info)
2650{
2651 memset(vptr, 0, sizeof(struct velocity_info));
2652
2653 vptr->pdev = pdev;
2654 vptr->chip_id = info->chip_id;
2655 vptr->tx.numq = info->txqueue;
2656 vptr->multicast_limit = MCAM_SIZE;
2657 spin_lock_init(&vptr->lock);
Dave Jones2cf71d22009-07-23 18:11:12 -07002658}
2659
2660/**
2661 * velocity_get_pci_info - retrieve PCI info for device
2662 * @vptr: velocity device
2663 * @pdev: PCI device it matches
2664 *
2665 * Retrieve the PCI configuration space data that interests us from
2666 * the kernel PCI layer
2667 */
2668static int __devinit velocity_get_pci_info(struct velocity_info *vptr, struct pci_dev *pdev)
2669{
2670 vptr->rev_id = pdev->revision;
2671
2672 pci_set_master(pdev);
2673
2674 vptr->ioaddr = pci_resource_start(pdev, 0);
2675 vptr->memaddr = pci_resource_start(pdev, 1);
2676
2677 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_IO)) {
2678 dev_err(&pdev->dev,
2679 "region #0 is not an I/O resource, aborting.\n");
2680 return -EINVAL;
2681 }
2682
2683 if ((pci_resource_flags(pdev, 1) & IORESOURCE_IO)) {
2684 dev_err(&pdev->dev,
2685 "region #1 is an I/O resource, aborting.\n");
2686 return -EINVAL;
2687 }
2688
2689 if (pci_resource_len(pdev, 1) < VELOCITY_IO_SIZE) {
2690 dev_err(&pdev->dev, "region #1 is too small.\n");
2691 return -EINVAL;
2692 }
2693 vptr->pdev = pdev;
2694
2695 return 0;
2696}
2697
2698/**
2699 * velocity_print_info - per driver data
2700 * @vptr: velocity
2701 *
2702 * Print per driver data as the kernel driver finds Velocity
2703 * hardware
2704 */
2705static void __devinit velocity_print_info(struct velocity_info *vptr)
2706{
2707 struct net_device *dev = vptr->dev;
2708
2709 printk(KERN_INFO "%s: %s\n", dev->name, get_chip_name(vptr->chip_id));
H Hartley Sweetenaa7c68a2009-12-29 20:04:14 -08002710 printk(KERN_INFO "%s: Ethernet Address: %pM\n",
2711 dev->name, dev->dev_addr);
Dave Jones2cf71d22009-07-23 18:11:12 -07002712}
2713
2714static u32 velocity_get_link(struct net_device *dev)
2715{
2716 struct velocity_info *vptr = netdev_priv(dev);
2717 struct mac_regs __iomem *regs = vptr->mac_regs;
2718 return BYTE_REG_BITS_IS_ON(PHYSR0_LINKGD, &regs->PHYSR0) ? 1 : 0;
2719}
2720
2721
2722/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 * velocity_found1 - set up discovered velocity card
2724 * @pdev: PCI device
2725 * @ent: PCI device table entry that matched
2726 *
2727 * Configure a discovered adapter from scratch. Return a negative
2728 * errno error code on failure paths.
2729 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730static int __devinit velocity_found1(struct pci_dev *pdev, const struct pci_device_id *ent)
2731{
2732 static int first = 1;
2733 struct net_device *dev;
2734 int i;
Sven Hartge07b5f6a2008-10-23 13:03:44 +00002735 const char *drv_string;
Jeff Garzikcabb7662006-06-27 09:25:28 -04002736 const struct velocity_info_tbl *info = &chip_info_table[ent->driver_data];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 struct velocity_info *vptr;
Dave Jonesc4067402009-07-20 17:35:21 +00002738 struct mac_regs __iomem *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 int ret = -ENOMEM;
2740
Jeff Garzike54f4892006-06-27 09:20:08 -04002741 /* FIXME: this driver, like almost all other ethernet drivers,
2742 * can support more than MAX_UNITS.
2743 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 if (velocity_nics >= MAX_UNITS) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002745 dev_notice(&pdev->dev, "already found %d NICs.\n",
Jeff Garzike54f4892006-06-27 09:20:08 -04002746 velocity_nics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return -ENODEV;
2748 }
2749
2750 dev = alloc_etherdev(sizeof(struct velocity_info));
Jeff Garzike54f4892006-06-27 09:20:08 -04002751 if (!dev) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04002752 dev_err(&pdev->dev, "allocate net device failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 goto out;
2754 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 /* Chain it all together */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 SET_NETDEV_DEV(dev, &pdev->dev);
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04002759 vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761
2762 if (first) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002763 printk(KERN_INFO "%s Ver. %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 VELOCITY_FULL_DRV_NAM, VELOCITY_VERSION);
2765 printk(KERN_INFO "Copyright (c) 2002, 2003 VIA Networking Technologies, Inc.\n");
2766 printk(KERN_INFO "Copyright (c) 2004 Red Hat Inc.\n");
2767 first = 0;
2768 }
2769
2770 velocity_init_info(pdev, vptr, info);
2771
2772 vptr->dev = dev;
2773
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 ret = pci_enable_device(pdev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002775 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 goto err_free_dev;
2777
Kulikov Vasiliy889635f2010-08-03 05:43:18 +00002778 dev->irq = pdev->irq;
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 ret = velocity_get_pci_info(vptr, pdev);
2781 if (ret < 0) {
Jeff Garzike54f4892006-06-27 09:20:08 -04002782 /* error message already printed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 goto err_disable;
2784 }
2785
2786 ret = pci_request_regions(pdev, VELOCITY_NAME);
2787 if (ret < 0) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04002788 dev_err(&pdev->dev, "No PCI resources.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 goto err_disable;
2790 }
2791
Jeff Garzikcabb7662006-06-27 09:25:28 -04002792 regs = ioremap(vptr->memaddr, VELOCITY_IO_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 if (regs == NULL) {
2794 ret = -EIO;
2795 goto err_release_res;
2796 }
2797
2798 vptr->mac_regs = regs;
2799
2800 mac_wol_reset(regs);
2801
2802 dev->base_addr = vptr->ioaddr;
2803
2804 for (i = 0; i < 6; i++)
2805 dev->dev_addr[i] = readb(&regs->PAR[i]);
2806
2807
Sven Hartge07b5f6a2008-10-23 13:03:44 +00002808 drv_string = dev_driver_string(&pdev->dev);
2809
2810 velocity_get_options(&vptr->options, velocity_nics, drv_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002812 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 * Mask out the options cannot be set to the chip
2814 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 vptr->options.flags &= info->flags;
2817
2818 /*
2819 * Enable the chip specified capbilities
2820 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002821
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 vptr->flags = vptr->options.flags | (info->flags & 0xFF000000UL);
2823
2824 vptr->wol_opts = vptr->options.wol_opts;
2825 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
2826
2827 vptr->phy_id = MII_GET_PHY_ID(vptr->mac_regs);
2828
2829 dev->irq = pdev->irq;
Stephen Hemminger39a11bd2008-11-19 22:19:33 -08002830 dev->netdev_ops = &velocity_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 dev->ethtool_ops = &velocity_ethtool_ops;
Simon Kagstromdfff7142009-11-25 22:10:26 +00002832 netif_napi_add(dev, &vptr->napi, velocity_poll, VELOCITY_NAPI_WEIGHT);
Stephen Hemminger501e4d22007-08-24 13:56:49 -07002833
Michał Mirosławf593fe32011-04-10 03:13:21 +00002834 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_HW_VLAN_TX;
Francois Romieud4f73c82008-04-24 23:32:33 +02002835 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_FILTER |
David S. Millerde2b96f2010-09-07 13:49:44 -07002836 NETIF_F_HW_VLAN_RX | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838 ret = register_netdev(dev);
2839 if (ret < 0)
2840 goto err_iounmap;
2841
Séguier Régisd3b238a2009-06-16 11:25:49 +00002842 if (!velocity_get_link(dev)) {
Francois Romieu8a22ddd2006-06-23 00:47:06 +02002843 netif_carrier_off(dev);
Séguier Régisd3b238a2009-06-16 11:25:49 +00002844 vptr->mii_status |= VELOCITY_LINK_FAIL;
2845 }
Francois Romieu8a22ddd2006-06-23 00:47:06 +02002846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 velocity_print_info(vptr);
2848 pci_set_drvdata(pdev, dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 /* and leave the chip powered down */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 pci_set_power_state(pdev, PCI_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 velocity_nics++;
2854out:
2855 return ret;
2856
2857err_iounmap:
2858 iounmap(regs);
2859err_release_res:
2860 pci_release_regions(pdev);
2861err_disable:
2862 pci_disable_device(pdev);
2863err_free_dev:
2864 free_netdev(dev);
2865 goto out;
2866}
2867
Dave Jones2cf71d22009-07-23 18:11:12 -07002868
2869#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870/**
Dave Jones2cf71d22009-07-23 18:11:12 -07002871 * wol_calc_crc - WOL CRC
2872 * @pattern: data pattern
2873 * @mask_pattern: mask
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 *
Dave Jones2cf71d22009-07-23 18:11:12 -07002875 * Compute the wake on lan crc hashes for the packet header
2876 * we are interested in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 */
Dave Jones2cf71d22009-07-23 18:11:12 -07002878static u16 wol_calc_crc(int size, u8 *pattern, u8 *mask_pattern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879{
Dave Jones2cf71d22009-07-23 18:11:12 -07002880 u16 crc = 0xFFFF;
2881 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 int i, j;
2883
Dave Jones2cf71d22009-07-23 18:11:12 -07002884 for (i = 0; i < size; i++) {
2885 mask = mask_pattern[i];
2886
2887 /* Skip this loop if the mask equals to zero */
2888 if (mask == 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Dave Jones2cf71d22009-07-23 18:11:12 -07002891 for (j = 0; j < 8; j++) {
2892 if ((mask & 0x01) == 0) {
2893 mask >>= 1;
2894 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 }
Dave Jones2cf71d22009-07-23 18:11:12 -07002896 mask >>= 1;
2897 crc = crc_ccitt(crc, &(pattern[i * 8 + j]), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 }
2899 }
Dave Jones2cf71d22009-07-23 18:11:12 -07002900 /* Finally, invert the result once to get the correct data */
2901 crc = ~crc;
2902 return bitrev32(crc) >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903}
2904
2905/**
Dave Jones2cf71d22009-07-23 18:11:12 -07002906 * velocity_set_wol - set up for wake on lan
2907 * @vptr: velocity to set WOL status on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 *
Dave Jones2cf71d22009-07-23 18:11:12 -07002909 * Set a card up for wake on lan either by unicast or by
2910 * ARP packet.
2911 *
2912 * FIXME: check static buffer is safe here
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 */
Dave Jones2cf71d22009-07-23 18:11:12 -07002914static int velocity_set_wol(struct velocity_info *vptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915{
Dave Jonesc4067402009-07-20 17:35:21 +00002916 struct mac_regs __iomem *regs = vptr->mac_regs;
françois romieu2ffa0072011-01-20 04:59:33 +00002917 enum speed_opt spd_dpx = vptr->options.spd_dpx;
Dave Jones2cf71d22009-07-23 18:11:12 -07002918 static u8 buf[256];
2919 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Dave Jones2cf71d22009-07-23 18:11:12 -07002921 static u32 mask_pattern[2][4] = {
2922 {0x00203000, 0x000003C0, 0x00000000, 0x0000000}, /* ARP */
2923 {0xfffff000, 0xffffffff, 0xffffffff, 0x000ffff} /* Magic Packet */
2924 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
Dave Jones2cf71d22009-07-23 18:11:12 -07002926 writew(0xFFFF, &regs->WOLCRClr);
2927 writeb(WOLCFG_SAB | WOLCFG_SAM, &regs->WOLCFGSet);
2928 writew(WOLCR_MAGIC_EN, &regs->WOLCRSet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Dave Jones2cf71d22009-07-23 18:11:12 -07002930 /*
2931 if (vptr->wol_opts & VELOCITY_WOL_PHY)
2932 writew((WOLCR_LINKON_EN|WOLCR_LINKOFF_EN), &regs->WOLCRSet);
2933 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Dave Jones2cf71d22009-07-23 18:11:12 -07002935 if (vptr->wol_opts & VELOCITY_WOL_UCAST)
2936 writew(WOLCR_UNICAST_EN, &regs->WOLCRSet);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002937
Dave Jones2cf71d22009-07-23 18:11:12 -07002938 if (vptr->wol_opts & VELOCITY_WOL_ARP) {
2939 struct arp_packet *arp = (struct arp_packet *) buf;
2940 u16 crc;
2941 memset(buf, 0, sizeof(struct arp_packet) + 7);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002942
Dave Jones2cf71d22009-07-23 18:11:12 -07002943 for (i = 0; i < 4; i++)
2944 writel(mask_pattern[0][i], &regs->ByteMask[0][i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Dave Jones2cf71d22009-07-23 18:11:12 -07002946 arp->type = htons(ETH_P_ARP);
2947 arp->ar_op = htons(1);
2948
2949 memcpy(arp->ar_tip, vptr->ip_addr, 4);
2950
2951 crc = wol_calc_crc((sizeof(struct arp_packet) + 7) / 8, buf,
2952 (u8 *) & mask_pattern[0][0]);
2953
2954 writew(crc, &regs->PatternCRC[0]);
2955 writew(WOLCR_ARP_EN, &regs->WOLCRSet);
2956 }
2957
2958 BYTE_REG_BITS_ON(PWCFG_WOLTYPE, &regs->PWCFGSet);
2959 BYTE_REG_BITS_ON(PWCFG_LEGACY_WOLEN, &regs->PWCFGSet);
2960
2961 writew(0x0FFF, &regs->WOLSRClr);
2962
françois romieu2ffa0072011-01-20 04:59:33 +00002963 if (spd_dpx == SPD_DPX_1000_FULL)
2964 goto mac_done;
2965
2966 if (spd_dpx != SPD_DPX_AUTO)
2967 goto advertise_done;
2968
Dave Jones2cf71d22009-07-23 18:11:12 -07002969 if (vptr->mii_status & VELOCITY_AUTONEG_ENABLE) {
2970 if (PHYID_GET_PHY_ID(vptr->phy_id) == PHYID_CICADA_CS8201)
Francois Romieu3a7f8682010-04-06 14:24:53 -07002971 MII_REG_BITS_ON(AUXCR_MDPPS, MII_NCONFIG, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07002972
Francois Romieu3a7f8682010-04-06 14:24:53 -07002973 MII_REG_BITS_OFF(ADVERTISE_1000FULL | ADVERTISE_1000HALF, MII_CTRL1000, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07002974 }
2975
2976 if (vptr->mii_status & VELOCITY_SPEED_1000)
Francois Romieu3a7f8682010-04-06 14:24:53 -07002977 MII_REG_BITS_ON(BMCR_ANRESTART, MII_BMCR, vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07002978
françois romieu2ffa0072011-01-20 04:59:33 +00002979advertise_done:
Dave Jones2cf71d22009-07-23 18:11:12 -07002980 BYTE_REG_BITS_ON(CHIPGCR_FCMODE, &regs->CHIPGCR);
2981
2982 {
2983 u8 GCR;
2984 GCR = readb(&regs->CHIPGCR);
2985 GCR = (GCR & ~CHIPGCR_FCGMII) | CHIPGCR_FCFDX;
2986 writeb(GCR, &regs->CHIPGCR);
2987 }
2988
françois romieu2ffa0072011-01-20 04:59:33 +00002989mac_done:
Dave Jones2cf71d22009-07-23 18:11:12 -07002990 BYTE_REG_BITS_OFF(ISR_PWEI, &regs->ISR);
2991 /* Turn on SWPTAG just before entering power mode */
2992 BYTE_REG_BITS_ON(STICKHW_SWPTAG, &regs->STICKHW);
2993 /* Go to bed ..... */
2994 BYTE_REG_BITS_ON((STICKHW_DS1 | STICKHW_DS0), &regs->STICKHW);
2995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 return 0;
2997}
2998
2999/**
Dave Jones2cf71d22009-07-23 18:11:12 -07003000 * velocity_save_context - save registers
3001 * @vptr: velocity
3002 * @context: buffer for stored context
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 *
Dave Jones2cf71d22009-07-23 18:11:12 -07003004 * Retrieve the current configuration from the velocity hardware
3005 * and stash it in the context structure, for use by the context
3006 * restore functions. This allows us to save things we need across
3007 * power down states
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 */
Dave Jones2cf71d22009-07-23 18:11:12 -07003009static void velocity_save_context(struct velocity_info *vptr, struct velocity_context *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010{
Dave Jones2cf71d22009-07-23 18:11:12 -07003011 struct mac_regs __iomem *regs = vptr->mac_regs;
3012 u16 i;
3013 u8 __iomem *ptr = (u8 __iomem *)regs;
3014
3015 for (i = MAC_REG_PAR; i < MAC_REG_CR0_CLR; i += 4)
3016 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
3017
3018 for (i = MAC_REG_MAR; i < MAC_REG_TDCSR_CLR; i += 4)
3019 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
3020
3021 for (i = MAC_REG_RDBASE_LO; i < MAC_REG_FIFO_TEST0; i += 4)
3022 *((u32 *) (context->mac_reg + i)) = readl(ptr + i);
3023
3024}
3025
3026static int velocity_suspend(struct pci_dev *pdev, pm_message_t state)
3027{
3028 struct net_device *dev = pci_get_drvdata(pdev);
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003029 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 unsigned long flags;
Francois Romieu580a6902008-07-11 00:03:44 +02003031
Dave Jones2cf71d22009-07-23 18:11:12 -07003032 if (!netif_running(vptr->dev))
3033 return 0;
Francois Romieu580a6902008-07-11 00:03:44 +02003034
Dave Jones2cf71d22009-07-23 18:11:12 -07003035 netif_device_detach(vptr->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037 spin_lock_irqsave(&vptr->lock, flags);
Dave Jones2cf71d22009-07-23 18:11:12 -07003038 pci_save_state(pdev);
3039#ifdef ETHTOOL_GWOL
3040 if (vptr->flags & VELOCITY_FLAGS_WOL_ENABLED) {
3041 velocity_get_ip(vptr);
3042 velocity_save_context(vptr, &vptr->context);
3043 velocity_shutdown(vptr);
3044 velocity_set_wol(vptr);
3045 pci_enable_wake(pdev, PCI_D3hot, 1);
3046 pci_set_power_state(pdev, PCI_D3hot);
3047 } else {
3048 velocity_save_context(vptr, &vptr->context);
3049 velocity_shutdown(vptr);
3050 pci_disable_device(pdev);
3051 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 }
Dave Jones2cf71d22009-07-23 18:11:12 -07003053#else
3054 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3055#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 spin_unlock_irqrestore(&vptr->lock, flags);
Dave Jones2cf71d22009-07-23 18:11:12 -07003057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
3060/**
Dave Jones2cf71d22009-07-23 18:11:12 -07003061 * velocity_restore_context - restore registers
3062 * @vptr: velocity
3063 * @context: buffer for stored context
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 *
Dave Jones2cf71d22009-07-23 18:11:12 -07003065 * Reload the register configuration from the velocity context
3066 * created by velocity_save_context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 */
Dave Jones2cf71d22009-07-23 18:11:12 -07003068static void velocity_restore_context(struct velocity_info *vptr, struct velocity_context *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069{
Dave Jones2cf71d22009-07-23 18:11:12 -07003070 struct mac_regs __iomem *regs = vptr->mac_regs;
3071 int i;
3072 u8 __iomem *ptr = (u8 __iomem *)regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
Dave Jones2cf71d22009-07-23 18:11:12 -07003074 for (i = MAC_REG_PAR; i < MAC_REG_CR0_SET; i += 4)
3075 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Dave Jones2cf71d22009-07-23 18:11:12 -07003077 /* Just skip cr0 */
3078 for (i = MAC_REG_CR1_SET; i < MAC_REG_CR0_CLR; i++) {
3079 /* Clear */
3080 writeb(~(*((u8 *) (context->mac_reg + i))), ptr + i + 4);
3081 /* Set */
3082 writeb(*((u8 *) (context->mac_reg + i)), ptr + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 }
3084
Dave Jones2cf71d22009-07-23 18:11:12 -07003085 for (i = MAC_REG_MAR; i < MAC_REG_IMR; i += 4)
3086 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
3087
3088 for (i = MAC_REG_RDBASE_LO; i < MAC_REG_FIFO_TEST0; i += 4)
3089 writel(*((u32 *) (context->mac_reg + i)), ptr + i);
3090
3091 for (i = MAC_REG_TDCSR_SET; i <= MAC_REG_RDCSR_SET; i++)
3092 writeb(*((u8 *) (context->mac_reg + i)), ptr + i);
3093}
3094
3095static int velocity_resume(struct pci_dev *pdev)
3096{
3097 struct net_device *dev = pci_get_drvdata(pdev);
3098 struct velocity_info *vptr = netdev_priv(dev);
3099 unsigned long flags;
3100 int i;
3101
3102 if (!netif_running(vptr->dev))
3103 return 0;
3104
3105 pci_set_power_state(pdev, PCI_D0);
3106 pci_enable_wake(pdev, 0, 0);
3107 pci_restore_state(pdev);
3108
3109 mac_wol_reset(vptr->mac_regs);
3110
3111 spin_lock_irqsave(&vptr->lock, flags);
3112 velocity_restore_context(vptr, &vptr->context);
3113 velocity_init_registers(vptr, VELOCITY_INIT_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 mac_disable_int(vptr->mac_regs);
3115
Simon Kagstromd6cade02010-02-09 23:37:54 +00003116 velocity_tx_srv(vptr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003117
Dave Jones2cf71d22009-07-23 18:11:12 -07003118 for (i = 0; i < vptr->tx.numq; i++) {
3119 if (vptr->tx.used[i])
3120 mac_tx_queue_wake(vptr->mac_regs, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 }
Dave Jones2cf71d22009-07-23 18:11:12 -07003122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 mac_enable_int(vptr->mac_regs);
Dave Jones2cf71d22009-07-23 18:11:12 -07003124 spin_unlock_irqrestore(&vptr->lock, flags);
3125 netif_device_attach(vptr->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Dave Jones2cf71d22009-07-23 18:11:12 -07003127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128}
Dave Jones2cf71d22009-07-23 18:11:12 -07003129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
3131/*
3132 * Definition for our device driver. The PCI layer interface
3133 * uses this to handle all our card discover and plugging
3134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135static struct pci_driver velocity_driver = {
3136 .name = VELOCITY_NAME,
3137 .id_table = velocity_id_table,
3138 .probe = velocity_found1,
3139 .remove = __devexit_p(velocity_remove1),
3140#ifdef CONFIG_PM
3141 .suspend = velocity_suspend,
3142 .resume = velocity_resume,
3143#endif
3144};
3145
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
3147/**
3148 * velocity_ethtool_up - pre hook for ethtool
3149 * @dev: network device
3150 *
3151 * Called before an ethtool operation. We need to make sure the
3152 * chip is out of D3 state before we poke at it.
3153 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154static int velocity_ethtool_up(struct net_device *dev)
3155{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003156 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 if (!netif_running(dev))
3158 pci_set_power_state(vptr->pdev, PCI_D0);
3159 return 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003160}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
3162/**
3163 * velocity_ethtool_down - post hook for ethtool
3164 * @dev: network device
3165 *
3166 * Called after an ethtool operation. Restore the chip back to D3
3167 * state if it isn't running.
3168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169static void velocity_ethtool_down(struct net_device *dev)
3170{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003171 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 if (!netif_running(dev))
3173 pci_set_power_state(vptr->pdev, PCI_D3hot);
3174}
3175
David Decotigny70739492011-04-27 18:32:40 +00003176static int velocity_get_settings(struct net_device *dev,
3177 struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003179 struct velocity_info *vptr = netdev_priv(dev);
Dave Jonesc4067402009-07-20 17:35:21 +00003180 struct mac_regs __iomem *regs = vptr->mac_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 u32 status;
3182 status = check_connection_type(vptr->mac_regs);
3183
Jay Cliburn59b693f2006-07-20 23:23:57 +02003184 cmd->supported = SUPPORTED_TP |
3185 SUPPORTED_Autoneg |
3186 SUPPORTED_10baseT_Half |
3187 SUPPORTED_10baseT_Full |
3188 SUPPORTED_100baseT_Half |
3189 SUPPORTED_100baseT_Full |
3190 SUPPORTED_1000baseT_Half |
3191 SUPPORTED_1000baseT_Full;
françois romieu15419222010-10-13 09:26:05 +00003192
3193 cmd->advertising = ADVERTISED_TP | ADVERTISED_Autoneg;
3194 if (vptr->options.spd_dpx == SPD_DPX_AUTO) {
3195 cmd->advertising |=
3196 ADVERTISED_10baseT_Half |
3197 ADVERTISED_10baseT_Full |
3198 ADVERTISED_100baseT_Half |
3199 ADVERTISED_100baseT_Full |
3200 ADVERTISED_1000baseT_Half |
3201 ADVERTISED_1000baseT_Full;
3202 } else {
3203 switch (vptr->options.spd_dpx) {
3204 case SPD_DPX_1000_FULL:
3205 cmd->advertising |= ADVERTISED_1000baseT_Full;
3206 break;
3207 case SPD_DPX_100_HALF:
3208 cmd->advertising |= ADVERTISED_100baseT_Half;
3209 break;
3210 case SPD_DPX_100_FULL:
3211 cmd->advertising |= ADVERTISED_100baseT_Full;
3212 break;
3213 case SPD_DPX_10_HALF:
3214 cmd->advertising |= ADVERTISED_10baseT_Half;
3215 break;
3216 case SPD_DPX_10_FULL:
3217 cmd->advertising |= ADVERTISED_10baseT_Full;
3218 break;
3219 default:
3220 break;
3221 }
3222 }
David Decotigny70739492011-04-27 18:32:40 +00003223
Jay Cliburn59b693f2006-07-20 23:23:57 +02003224 if (status & VELOCITY_SPEED_1000)
David Decotigny70739492011-04-27 18:32:40 +00003225 ethtool_cmd_speed_set(cmd, SPEED_1000);
Jay Cliburn59b693f2006-07-20 23:23:57 +02003226 else if (status & VELOCITY_SPEED_100)
David Decotigny70739492011-04-27 18:32:40 +00003227 ethtool_cmd_speed_set(cmd, SPEED_100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 else
David Decotigny70739492011-04-27 18:32:40 +00003229 ethtool_cmd_speed_set(cmd, SPEED_10);
3230
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 cmd->autoneg = (status & VELOCITY_AUTONEG_ENABLE) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
3232 cmd->port = PORT_TP;
3233 cmd->transceiver = XCVR_INTERNAL;
3234 cmd->phy_address = readb(&regs->MIIADR) & 0x1F;
3235
3236 if (status & VELOCITY_DUPLEX_FULL)
3237 cmd->duplex = DUPLEX_FULL;
3238 else
3239 cmd->duplex = DUPLEX_HALF;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 return 0;
3242}
3243
David Decotigny25db0332011-04-27 18:32:39 +00003244static int velocity_set_settings(struct net_device *dev,
3245 struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003247 struct velocity_info *vptr = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +00003248 u32 speed = ethtool_cmd_speed(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 u32 curr_status;
3250 u32 new_status = 0;
3251 int ret = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003252
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 curr_status = check_connection_type(vptr->mac_regs);
3254 curr_status &= (~VELOCITY_LINK_FAIL);
3255
3256 new_status |= ((cmd->autoneg) ? VELOCITY_AUTONEG_ENABLE : 0);
David Decotigny25db0332011-04-27 18:32:39 +00003257 new_status |= ((speed == SPEED_1000) ? VELOCITY_SPEED_1000 : 0);
3258 new_status |= ((speed == SPEED_100) ? VELOCITY_SPEED_100 : 0);
3259 new_status |= ((speed == SPEED_10) ? VELOCITY_SPEED_10 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 new_status |= ((cmd->duplex == DUPLEX_FULL) ? VELOCITY_DUPLEX_FULL : 0);
3261
françois romieu15419222010-10-13 09:26:05 +00003262 if ((new_status & VELOCITY_AUTONEG_ENABLE) &&
3263 (new_status != (curr_status | VELOCITY_AUTONEG_ENABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 ret = -EINVAL;
françois romieu15419222010-10-13 09:26:05 +00003265 } else {
3266 enum speed_opt spd_dpx;
3267
3268 if (new_status & VELOCITY_AUTONEG_ENABLE)
3269 spd_dpx = SPD_DPX_AUTO;
3270 else if ((new_status & VELOCITY_SPEED_1000) &&
3271 (new_status & VELOCITY_DUPLEX_FULL)) {
3272 spd_dpx = SPD_DPX_1000_FULL;
3273 } else if (new_status & VELOCITY_SPEED_100)
3274 spd_dpx = (new_status & VELOCITY_DUPLEX_FULL) ?
3275 SPD_DPX_100_FULL : SPD_DPX_100_HALF;
3276 else if (new_status & VELOCITY_SPEED_10)
3277 spd_dpx = (new_status & VELOCITY_DUPLEX_FULL) ?
3278 SPD_DPX_10_FULL : SPD_DPX_10_HALF;
3279 else
3280 return -EOPNOTSUPP;
3281
3282 vptr->options.spd_dpx = spd_dpx;
3283
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 velocity_set_media_mode(vptr, new_status);
françois romieu15419222010-10-13 09:26:05 +00003285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
3287 return ret;
3288}
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290static void velocity_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3291{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003292 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 strcpy(info->driver, VELOCITY_NAME);
3294 strcpy(info->version, VELOCITY_VERSION);
3295 strcpy(info->bus_info, pci_name(vptr->pdev));
3296}
3297
3298static void velocity_ethtool_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3299{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003300 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 wol->supported = WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_ARP;
3302 wol->wolopts |= WAKE_MAGIC;
3303 /*
3304 if (vptr->wol_opts & VELOCITY_WOL_PHY)
3305 wol.wolopts|=WAKE_PHY;
3306 */
3307 if (vptr->wol_opts & VELOCITY_WOL_UCAST)
3308 wol->wolopts |= WAKE_UCAST;
3309 if (vptr->wol_opts & VELOCITY_WOL_ARP)
3310 wol->wolopts |= WAKE_ARP;
3311 memcpy(&wol->sopass, vptr->wol_passwd, 6);
3312}
3313
3314static int velocity_ethtool_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
3315{
Jeff Garzik8ab6f3f2006-06-27 08:56:23 -04003316 struct velocity_info *vptr = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
3318 if (!(wol->wolopts & (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_ARP)))
3319 return -EFAULT;
3320 vptr->wol_opts = VELOCITY_WOL_MAGIC;
3321
3322 /*
3323 if (wol.wolopts & WAKE_PHY) {
3324 vptr->wol_opts|=VELOCITY_WOL_PHY;
3325 vptr->flags |=VELOCITY_FLAGS_WOL_ENABLED;
3326 }
3327 */
3328
3329 if (wol->wolopts & WAKE_MAGIC) {
3330 vptr->wol_opts |= VELOCITY_WOL_MAGIC;
3331 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3332 }
3333 if (wol->wolopts & WAKE_UCAST) {
3334 vptr->wol_opts |= VELOCITY_WOL_UCAST;
3335 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3336 }
3337 if (wol->wolopts & WAKE_ARP) {
3338 vptr->wol_opts |= VELOCITY_WOL_ARP;
3339 vptr->flags |= VELOCITY_FLAGS_WOL_ENABLED;
3340 }
3341 memcpy(vptr->wol_passwd, wol->sopass, 6);
3342 return 0;
3343}
3344
3345static u32 velocity_get_msglevel(struct net_device *dev)
3346{
3347 return msglevel;
3348}
3349
3350static void velocity_set_msglevel(struct net_device *dev, u32 value)
3351{
3352 msglevel = value;
3353}
3354
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00003355static int get_pending_timer_val(int val)
3356{
3357 int mult_bits = val >> 6;
3358 int mult = 1;
3359
3360 switch (mult_bits)
3361 {
3362 case 1:
3363 mult = 4; break;
3364 case 2:
3365 mult = 16; break;
3366 case 3:
3367 mult = 64; break;
3368 case 0:
3369 default:
3370 break;
3371 }
3372
3373 return (val & 0x3f) * mult;
3374}
3375
3376static void set_pending_timer_val(int *val, u32 us)
3377{
3378 u8 mult = 0;
3379 u8 shift = 0;
3380
3381 if (us >= 0x3f) {
3382 mult = 1; /* mult with 4 */
3383 shift = 2;
3384 }
3385 if (us >= 0x3f * 4) {
3386 mult = 2; /* mult with 16 */
3387 shift = 4;
3388 }
3389 if (us >= 0x3f * 16) {
3390 mult = 3; /* mult with 64 */
3391 shift = 6;
3392 }
3393
3394 *val = (mult << 6) | ((us >> shift) & 0x3f);
3395}
3396
3397
3398static int velocity_get_coalesce(struct net_device *dev,
3399 struct ethtool_coalesce *ecmd)
3400{
3401 struct velocity_info *vptr = netdev_priv(dev);
3402
3403 ecmd->tx_max_coalesced_frames = vptr->options.tx_intsup;
3404 ecmd->rx_max_coalesced_frames = vptr->options.rx_intsup;
3405
3406 ecmd->rx_coalesce_usecs = get_pending_timer_val(vptr->options.rxqueue_timer);
3407 ecmd->tx_coalesce_usecs = get_pending_timer_val(vptr->options.txqueue_timer);
3408
3409 return 0;
3410}
3411
3412static int velocity_set_coalesce(struct net_device *dev,
3413 struct ethtool_coalesce *ecmd)
3414{
3415 struct velocity_info *vptr = netdev_priv(dev);
3416 int max_us = 0x3f * 64;
Simon Kagstrom39c2ff42010-02-09 23:38:07 +00003417 unsigned long flags;
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00003418
3419 /* 6 bits of */
3420 if (ecmd->tx_coalesce_usecs > max_us)
3421 return -EINVAL;
3422 if (ecmd->rx_coalesce_usecs > max_us)
3423 return -EINVAL;
3424
3425 if (ecmd->tx_max_coalesced_frames > 0xff)
3426 return -EINVAL;
3427 if (ecmd->rx_max_coalesced_frames > 0xff)
3428 return -EINVAL;
3429
3430 vptr->options.rx_intsup = ecmd->rx_max_coalesced_frames;
3431 vptr->options.tx_intsup = ecmd->tx_max_coalesced_frames;
3432
3433 set_pending_timer_val(&vptr->options.rxqueue_timer,
3434 ecmd->rx_coalesce_usecs);
3435 set_pending_timer_val(&vptr->options.txqueue_timer,
3436 ecmd->tx_coalesce_usecs);
3437
3438 /* Setup the interrupt suppression and queue timers */
Simon Kagstrom39c2ff42010-02-09 23:38:07 +00003439 spin_lock_irqsave(&vptr->lock, flags);
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00003440 mac_disable_int(vptr->mac_regs);
3441 setup_adaptive_interrupts(vptr);
3442 setup_queue_timers(vptr);
3443
3444 mac_write_int_mask(vptr->int_mask, vptr->mac_regs);
3445 mac_clear_isr(vptr->mac_regs);
3446 mac_enable_int(vptr->mac_regs);
Simon Kagstrom39c2ff42010-02-09 23:38:07 +00003447 spin_unlock_irqrestore(&vptr->lock, flags);
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00003448
3449 return 0;
3450}
3451
Jeff Garzik7282d492006-09-13 14:30:00 -04003452static const struct ethtool_ops velocity_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 .get_settings = velocity_get_settings,
3454 .set_settings = velocity_set_settings,
3455 .get_drvinfo = velocity_get_drvinfo,
3456 .get_wol = velocity_ethtool_get_wol,
3457 .set_wol = velocity_ethtool_set_wol,
3458 .get_msglevel = velocity_get_msglevel,
3459 .set_msglevel = velocity_set_msglevel,
3460 .get_link = velocity_get_link,
Simon Kagstrom6dfc4b92009-11-25 22:10:12 +00003461 .get_coalesce = velocity_get_coalesce,
3462 .set_coalesce = velocity_set_coalesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 .begin = velocity_ethtool_up,
3464 .complete = velocity_ethtool_down
3465};
3466
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467#ifdef CONFIG_PM
Randy Dunlapce9f7fe2006-12-18 21:21:10 -08003468#ifdef CONFIG_INET
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469static int velocity_netdev_event(struct notifier_block *nb, unsigned long notification, void *ptr)
3470{
3471 struct in_ifaddr *ifa = (struct in_ifaddr *) ptr;
Denis V. Luneva337499f2008-02-28 20:44:27 -08003472 struct net_device *dev = ifa->ifa_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
Ben Hutchings516b4df2009-10-28 04:01:46 -07003474 if (dev_net(dev) == &init_net &&
3475 dev->netdev_ops == &velocity_netdev_ops)
3476 velocity_get_ip(netdev_priv(dev));
Denis V. Luneva337499f2008-02-28 20:44:27 -08003477
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 return NOTIFY_DONE;
3479}
Dave Jones2cf71d22009-07-23 18:11:12 -07003480#endif /* CONFIG_INET */
3481#endif /* CONFIG_PM */
Randy Dunlapce9f7fe2006-12-18 21:21:10 -08003482
Dave Jones2cf71d22009-07-23 18:11:12 -07003483#if defined(CONFIG_PM) && defined(CONFIG_INET)
3484static struct notifier_block velocity_inetaddr_notifier = {
3485 .notifier_call = velocity_netdev_event,
3486};
3487
3488static void velocity_register_notifier(void)
3489{
3490 register_inetaddr_notifier(&velocity_inetaddr_notifier);
3491}
3492
3493static void velocity_unregister_notifier(void)
3494{
3495 unregister_inetaddr_notifier(&velocity_inetaddr_notifier);
3496}
3497
3498#else
3499
3500#define velocity_register_notifier() do {} while (0)
3501#define velocity_unregister_notifier() do {} while (0)
3502
3503#endif /* defined(CONFIG_PM) && defined(CONFIG_INET) */
3504
3505/**
3506 * velocity_init_module - load time function
3507 *
3508 * Called when the velocity module is loaded. The PCI driver
3509 * is registered with the PCI layer, and in turn will call
3510 * the probe functions for each velocity adapter installed
3511 * in the system.
3512 */
3513static int __init velocity_init_module(void)
3514{
3515 int ret;
3516
3517 velocity_register_notifier();
3518 ret = pci_register_driver(&velocity_driver);
3519 if (ret < 0)
3520 velocity_unregister_notifier();
3521 return ret;
3522}
3523
3524/**
3525 * velocity_cleanup - module unload
3526 *
3527 * When the velocity hardware is unloaded this function is called.
3528 * It will clean up the notifiers and the unregister the PCI
3529 * driver interface for this hardware. This in turn cleans up
3530 * all discovered interfaces before returning from the function
3531 */
3532static void __exit velocity_cleanup_module(void)
3533{
3534 velocity_unregister_notifier();
3535 pci_unregister_driver(&velocity_driver);
3536}
3537
3538module_init(velocity_init_module);
3539module_exit(velocity_cleanup_module);