1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * This code is derived from the VIA reference driver (copyright message
4 * below) provided to Red Hat by VIA Networking Technologies, Inc. for
5 * addition to the Linux kernel.
7 * The code has been merged into one source file, cleaned up to follow
8 * Linux coding style, ported to the Linux 2.6 kernel tree and cleaned
9 * for 64bit hardware platforms.
12 * rx_copybreak/alignment
15 * The changes are (c) Copyright 2004, Red Hat Inc. <alan@lxorguk.ukuu.org.uk>
16 * Additional fixes and clean up: Francois Romieu
18 * This source has not been verified for use in safety critical systems.
20 * Please direct queries about the revamped driver to the linux-kernel
25 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
26 * All rights reserved.
28 * Author: Chuang Liang-Shing, AJ Jiang
32 * MODULE_LICENSE("GPL");
35 #include <linux/module.h>
36 #include <linux/types.h>
37 #include <linux/bitops.h>
38 #include <linux/init.h>
39 #include <linux/dma-mapping.h>
41 #include <linux/errno.h>
42 #include <linux/ioport.h>
43 #include <linux/pci.h>
44 #include <linux/kernel.h>
45 #include <linux/netdevice.h>
46 #include <linux/etherdevice.h>
47 #include <linux/skbuff.h>
48 #include <linux/delay.h>
49 #include <linux/timer.h>
50 #include <linux/slab.h>
51 #include <linux/interrupt.h>
52 #include <linux/string.h>
53 #include <linux/wait.h>
56 #include <linux/uaccess.h>
57 #include <linux/proc_fs.h>
58 #include <linux/of_address.h>
59 #include <linux/of_device.h>
60 #include <linux/of_irq.h>
61 #include <linux/inetdevice.h>
62 #include <linux/platform_device.h>
63 #include <linux/reboot.h>
64 #include <linux/ethtool.h>
65 #include <linux/mii.h>
67 #include <linux/if_arp.h>
68 #include <linux/if_vlan.h>
70 #include <linux/tcp.h>
71 #include <linux/udp.h>
72 #include <linux/crc-ccitt.h>
73 #include <linux/crc32.h>
75 #include "via-velocity.h"
77 enum velocity_bus_type
{
82 static int velocity_nics
;
83 static int msglevel
= MSG_LEVEL_INFO
;
85 static void velocity_set_power_state(struct velocity_info
*vptr
, char state
)
87 void *addr
= vptr
->mac_regs
;
90 pci_set_power_state(vptr
->pdev
, state
);
92 writeb(state
, addr
+ 0x154);
96 * mac_get_cam_mask - Read a CAM mask
97 * @regs: register block for this velocity
98 * @mask: buffer to store mask
100 * Fetch the mask bits of the selected CAM and store them into the
101 * provided mask buffer.
103 static void mac_get_cam_mask(struct mac_regs __iomem
*regs
, u8
*mask
)
107 /* Select CAM mask */
108 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
110 writeb(0, ®s
->CAMADDR
);
113 for (i
= 0; i
< 8; i
++)
114 *mask
++ = readb(&(regs
->MARCAM
[i
]));
117 writeb(0, ®s
->CAMADDR
);
120 BYTE_REG_BITS_SET(CAMCR_PS_MAR
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
124 * mac_set_cam_mask - Set a CAM mask
125 * @regs: register block for this velocity
126 * @mask: CAM mask to load
128 * Store a new mask into a CAM
130 static void mac_set_cam_mask(struct mac_regs __iomem
*regs
, u8
*mask
)
133 /* Select CAM mask */
134 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
136 writeb(CAMADDR_CAMEN
, ®s
->CAMADDR
);
138 for (i
= 0; i
< 8; i
++)
139 writeb(*mask
++, &(regs
->MARCAM
[i
]));
142 writeb(0, ®s
->CAMADDR
);
145 BYTE_REG_BITS_SET(CAMCR_PS_MAR
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
148 static void mac_set_vlan_cam_mask(struct mac_regs __iomem
*regs
, u8
*mask
)
151 /* Select CAM mask */
152 BYTE_REG_BITS_SET(CAMCR_PS_CAM_MASK
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
154 writeb(CAMADDR_CAMEN
| CAMADDR_VCAMSL
, ®s
->CAMADDR
);
156 for (i
= 0; i
< 8; i
++)
157 writeb(*mask
++, &(regs
->MARCAM
[i
]));
160 writeb(0, ®s
->CAMADDR
);
163 BYTE_REG_BITS_SET(CAMCR_PS_MAR
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
167 * mac_set_cam - set CAM data
168 * @regs: register block of this velocity
170 * @addr: 2 or 6 bytes of CAM data
172 * Load an address or vlan tag into a CAM
174 static void mac_set_cam(struct mac_regs __iomem
*regs
, int idx
, const u8
*addr
)
178 /* Select CAM mask */
179 BYTE_REG_BITS_SET(CAMCR_PS_CAM_DATA
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
183 writeb(CAMADDR_CAMEN
| idx
, ®s
->CAMADDR
);
185 for (i
= 0; i
< 6; i
++)
186 writeb(*addr
++, &(regs
->MARCAM
[i
]));
188 BYTE_REG_BITS_ON(CAMCR_CAMWR
, ®s
->CAMCR
);
192 writeb(0, ®s
->CAMADDR
);
195 BYTE_REG_BITS_SET(CAMCR_PS_MAR
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
198 static void mac_set_vlan_cam(struct mac_regs __iomem
*regs
, int idx
,
202 /* Select CAM mask */
203 BYTE_REG_BITS_SET(CAMCR_PS_CAM_DATA
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
207 writeb(CAMADDR_CAMEN
| CAMADDR_VCAMSL
| idx
, ®s
->CAMADDR
);
208 writew(*((u16
*) addr
), ®s
->MARCAM
[0]);
210 BYTE_REG_BITS_ON(CAMCR_CAMWR
, ®s
->CAMCR
);
214 writeb(0, ®s
->CAMADDR
);
217 BYTE_REG_BITS_SET(CAMCR_PS_MAR
, CAMCR_PS1
| CAMCR_PS0
, ®s
->CAMCR
);
222 * mac_wol_reset - reset WOL after exiting low power
223 * @regs: register block of this velocity
225 * Called after we drop out of wake on lan mode in order to
226 * reset the Wake on lan features. This function doesn't restore
227 * the rest of the logic from the result of sleep/wakeup
229 static void mac_wol_reset(struct mac_regs __iomem
*regs
)
232 /* Turn off SWPTAG right after leaving power mode */
233 BYTE_REG_BITS_OFF(STICKHW_SWPTAG
, ®s
->STICKHW
);
234 /* clear sticky bits */
235 BYTE_REG_BITS_OFF((STICKHW_DS1
| STICKHW_DS0
), ®s
->STICKHW
);
237 BYTE_REG_BITS_OFF(CHIPGCR_FCGMII
, ®s
->CHIPGCR
);
238 BYTE_REG_BITS_OFF(CHIPGCR_FCMODE
, ®s
->CHIPGCR
);
239 /* disable force PME-enable */
240 writeb(WOLCFG_PMEOVR
, ®s
->WOLCFGClr
);
241 /* disable power-event config bit */
242 writew(0xFFFF, ®s
->WOLCRClr
);
243 /* clear power status */
244 writew(0xFFFF, ®s
->WOLSRClr
);
247 static const struct ethtool_ops velocity_ethtool_ops
;
250 Define module options
253 MODULE_AUTHOR("VIA Networking Technologies, Inc.");
254 MODULE_LICENSE("GPL");
255 MODULE_DESCRIPTION("VIA Networking Velocity Family Gigabit Ethernet Adapter Driver");
257 #define VELOCITY_PARAM(N, D) \
258 static int N[MAX_UNITS] = OPTION_DEFAULT;\
259 module_param_array(N, int, NULL, 0); \
260 MODULE_PARM_DESC(N, D);
262 #define RX_DESC_MIN 64
263 #define RX_DESC_MAX 255
264 #define RX_DESC_DEF 64
265 VELOCITY_PARAM(RxDescriptors
, "Number of receive descriptors");
267 #define TX_DESC_MIN 16
268 #define TX_DESC_MAX 256
269 #define TX_DESC_DEF 64
270 VELOCITY_PARAM(TxDescriptors
, "Number of transmit descriptors");
272 #define RX_THRESH_MIN 0
273 #define RX_THRESH_MAX 3
274 #define RX_THRESH_DEF 0
275 /* rx_thresh[] is used for controlling the receive fifo threshold.
276 0: indicate the rxfifo threshold is 128 bytes.
277 1: indicate the rxfifo threshold is 512 bytes.
278 2: indicate the rxfifo threshold is 1024 bytes.
279 3: indicate the rxfifo threshold is store & forward.
281 VELOCITY_PARAM(rx_thresh
, "Receive fifo threshold");
283 #define DMA_LENGTH_MIN 0
284 #define DMA_LENGTH_MAX 7
285 #define DMA_LENGTH_DEF 6
287 /* DMA_length[] is used for controlling the DMA length
294 6: SF(flush till emply)
295 7: SF(flush till emply)
297 VELOCITY_PARAM(DMA_length
, "DMA length");
299 #define IP_ALIG_DEF 0
300 /* IP_byte_align[] is used for IP header DWORD byte aligned
301 0: indicate the IP header won't be DWORD byte aligned.(Default) .
302 1: indicate the IP header will be DWORD byte aligned.
303 In some environment, the IP header should be DWORD byte aligned,
304 or the packet will be droped when we receive it. (eg: IPVS)
306 VELOCITY_PARAM(IP_byte_align
, "Enable IP header dword aligned");
308 #define FLOW_CNTL_DEF 1
309 #define FLOW_CNTL_MIN 1
310 #define FLOW_CNTL_MAX 5
312 /* flow_control[] is used for setting the flow control ability of NIC.
313 1: hardware deafult - AUTO (default). Use Hardware default value in ANAR.
314 2: enable TX flow control.
315 3: enable RX flow control.
316 4: enable RX/TX flow control.
319 VELOCITY_PARAM(flow_control
, "Enable flow control ability");
321 #define MED_LNK_DEF 0
322 #define MED_LNK_MIN 0
323 #define MED_LNK_MAX 5
324 /* speed_duplex[] is used for setting the speed and duplex mode of NIC.
325 0: indicate autonegotiation for both speed and duplex mode
326 1: indicate 100Mbps half duplex mode
327 2: indicate 100Mbps full duplex mode
328 3: indicate 10Mbps half duplex mode
329 4: indicate 10Mbps full duplex mode
330 5: indicate 1000Mbps full duplex mode
333 if EEPROM have been set to the force mode, this option is ignored
336 VELOCITY_PARAM(speed_duplex
, "Setting the speed and duplex mode");
338 #define WOL_OPT_DEF 0
339 #define WOL_OPT_MIN 0
340 #define WOL_OPT_MAX 7
341 /* wol_opts[] is used for controlling wake on lan behavior.
342 0: Wake up if recevied a magic packet. (Default)
343 1: Wake up if link status is on/off.
344 2: Wake up if recevied an arp packet.
345 4: Wake up if recevied any unicast packet.
346 Those value can be sumed up to support more than one option.
348 VELOCITY_PARAM(wol_opts
, "Wake On Lan options");
350 static int rx_copybreak
= 200;
351 module_param(rx_copybreak
, int, 0644);
352 MODULE_PARM_DESC(rx_copybreak
, "Copy breakpoint for copy-only-tiny-frames");
355 * Internal board variants. At the moment we have only one
357 static struct velocity_info_tbl chip_info_table
[] = {
358 {CHIP_TYPE_VT6110
, "VIA Networking Velocity Family Gigabit Ethernet Adapter", 1, 0x00FFFFFFUL
},
363 * Describe the PCI device identifiers that we support in this
364 * device driver. Used for hotplug autoloading.
367 static const struct pci_device_id velocity_pci_id_table
[] = {
368 { PCI_DEVICE(PCI_VENDOR_ID_VIA
, PCI_DEVICE_ID_VIA_612X
) },
372 MODULE_DEVICE_TABLE(pci
, velocity_pci_id_table
);
375 * Describe the OF device identifiers that we support in this
376 * device driver. Used for devicetree nodes.
378 static const struct of_device_id velocity_of_ids
[] = {
379 { .compatible
= "via,velocity-vt6110", .data
= &chip_info_table
[0] },
382 MODULE_DEVICE_TABLE(of
, velocity_of_ids
);
385 * get_chip_name - identifier to name
386 * @id: chip identifier
388 * Given a chip identifier return a suitable description. Returns
389 * a pointer a static string valid while the driver is loaded.
391 static const char *get_chip_name(enum chip_type chip_id
)
394 for (i
= 0; chip_info_table
[i
].name
!= NULL
; i
++)
395 if (chip_info_table
[i
].chip_id
== chip_id
)
397 return chip_info_table
[i
].name
;
401 * velocity_set_int_opt - parser for integer options
402 * @opt: pointer to option value
403 * @val: value the user requested (or -1 for default)
404 * @min: lowest value allowed
405 * @max: highest value allowed
406 * @def: default value
407 * @name: property name
410 * Set an integer property in the module options. This function does
411 * all the verification and checking as well as reporting so that
412 * we don't duplicate code for each option.
414 static void velocity_set_int_opt(int *opt
, int val
, int min
, int max
, int def
,
415 char *name
, const char *devname
)
419 else if (val
< min
|| val
> max
) {
420 VELOCITY_PRT(MSG_LEVEL_INFO
, KERN_NOTICE
"%s: the value of parameter %s is invalid, the valid range is (%d-%d)\n",
421 devname
, name
, min
, max
);
424 VELOCITY_PRT(MSG_LEVEL_INFO
, KERN_INFO
"%s: set value of parameter %s to %d\n",
431 * velocity_set_bool_opt - parser for boolean options
432 * @opt: pointer to option value
433 * @val: value the user requested (or -1 for default)
434 * @def: default value (yes/no)
435 * @flag: numeric value to set for true.
436 * @name: property name
439 * Set a boolean property in the module options. This function does
440 * all the verification and checking as well as reporting so that
441 * we don't duplicate code for each option.
443 static void velocity_set_bool_opt(u32
*opt
, int val
, int def
, u32 flag
,
444 char *name
, const char *devname
)
448 *opt
|= (def
? flag
: 0);
449 else if (val
< 0 || val
> 1) {
450 printk(KERN_NOTICE
"%s: the value of parameter %s is invalid, the valid range is (0-1)\n",
452 *opt
|= (def
? flag
: 0);
454 printk(KERN_INFO
"%s: set parameter %s to %s\n",
455 devname
, name
, val
? "TRUE" : "FALSE");
456 *opt
|= (val
? flag
: 0);
461 * velocity_get_options - set options on device
462 * @opts: option structure for the device
463 * @index: index of option to use in module options array
464 * @devname: device name
466 * Turn the module and command options into a single structure
467 * for the current device
469 static void velocity_get_options(struct velocity_opt
*opts
, int index
,
473 velocity_set_int_opt(&opts
->rx_thresh
, rx_thresh
[index
], RX_THRESH_MIN
, RX_THRESH_MAX
, RX_THRESH_DEF
, "rx_thresh", devname
);
474 velocity_set_int_opt(&opts
->DMA_length
, DMA_length
[index
], DMA_LENGTH_MIN
, DMA_LENGTH_MAX
, DMA_LENGTH_DEF
, "DMA_length", devname
);
475 velocity_set_int_opt(&opts
->numrx
, RxDescriptors
[index
], RX_DESC_MIN
, RX_DESC_MAX
, RX_DESC_DEF
, "RxDescriptors", devname
);
476 velocity_set_int_opt(&opts
->numtx
, TxDescriptors
[index
], TX_DESC_MIN
, TX_DESC_MAX
, TX_DESC_DEF
, "TxDescriptors", devname
);
478 velocity_set_int_opt(&opts
->flow_cntl
, flow_control
[index
], FLOW_CNTL_MIN
, FLOW_CNTL_MAX
, FLOW_CNTL_DEF
, "flow_control", devname
);
479 velocity_set_bool_opt(&opts
->flags
, IP_byte_align
[index
], IP_ALIG_DEF
, VELOCITY_FLAGS_IP_ALIGN
, "IP_byte_align", devname
);
480 velocity_set_int_opt((int *) &opts
->spd_dpx
, speed_duplex
[index
], MED_LNK_MIN
, MED_LNK_MAX
, MED_LNK_DEF
, "Media link mode", devname
);
481 velocity_set_int_opt(&opts
->wol_opts
, wol_opts
[index
], WOL_OPT_MIN
, WOL_OPT_MAX
, WOL_OPT_DEF
, "Wake On Lan options", devname
);
482 opts
->numrx
= (opts
->numrx
& ~3);
486 * velocity_init_cam_filter - initialise CAM
487 * @vptr: velocity to program
489 * Initialize the content addressable memory used for filters. Load
490 * appropriately according to the presence of VLAN
492 static void velocity_init_cam_filter(struct velocity_info
*vptr
)
494 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
495 unsigned int vid
, i
= 0;
497 /* Turn on MCFG_PQEN, turn off MCFG_RTGOPT */
498 WORD_REG_BITS_SET(MCFG_PQEN
, MCFG_RTGOPT
, ®s
->MCFG
);
499 WORD_REG_BITS_ON(MCFG_VIDFR
, ®s
->MCFG
);
501 /* Disable all CAMs */
502 memset(vptr
->vCAMmask
, 0, sizeof(u8
) * 8);
503 memset(vptr
->mCAMmask
, 0, sizeof(u8
) * 8);
504 mac_set_vlan_cam_mask(regs
, vptr
->vCAMmask
);
505 mac_set_cam_mask(regs
, vptr
->mCAMmask
);
508 for_each_set_bit(vid
, vptr
->active_vlans
, VLAN_N_VID
) {
509 mac_set_vlan_cam(regs
, i
, (u8
*) &vid
);
510 vptr
->vCAMmask
[i
/ 8] |= 0x1 << (i
% 8);
511 if (++i
>= VCAM_SIZE
)
514 mac_set_vlan_cam_mask(regs
, vptr
->vCAMmask
);
517 static int velocity_vlan_rx_add_vid(struct net_device
*dev
,
518 __be16 proto
, u16 vid
)
520 struct velocity_info
*vptr
= netdev_priv(dev
);
522 spin_lock_irq(&vptr
->lock
);
523 set_bit(vid
, vptr
->active_vlans
);
524 velocity_init_cam_filter(vptr
);
525 spin_unlock_irq(&vptr
->lock
);
529 static int velocity_vlan_rx_kill_vid(struct net_device
*dev
,
530 __be16 proto
, u16 vid
)
532 struct velocity_info
*vptr
= netdev_priv(dev
);
534 spin_lock_irq(&vptr
->lock
);
535 clear_bit(vid
, vptr
->active_vlans
);
536 velocity_init_cam_filter(vptr
);
537 spin_unlock_irq(&vptr
->lock
);
541 static void velocity_init_rx_ring_indexes(struct velocity_info
*vptr
)
543 vptr
->rx
.dirty
= vptr
->rx
.filled
= vptr
->rx
.curr
= 0;
547 * velocity_rx_reset - handle a receive reset
548 * @vptr: velocity we are resetting
550 * Reset the ownership and status for the receive ring side.
551 * Hand all the receive queue to the NIC.
553 static void velocity_rx_reset(struct velocity_info
*vptr
)
556 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
559 velocity_init_rx_ring_indexes(vptr
);
562 * Init state, all RD entries belong to the NIC
564 for (i
= 0; i
< vptr
->options
.numrx
; ++i
)
565 vptr
->rx
.ring
[i
].rdesc0
.len
|= OWNED_BY_NIC
;
567 writew(vptr
->options
.numrx
, ®s
->RBRDU
);
568 writel(vptr
->rx
.pool_dma
, ®s
->RDBaseLo
);
569 writew(0, ®s
->RDIdx
);
570 writew(vptr
->options
.numrx
- 1, ®s
->RDCSize
);
574 * velocity_get_opt_media_mode - get media selection
575 * @vptr: velocity adapter
577 * Get the media mode stored in EEPROM or module options and load
578 * mii_status accordingly. The requested link state information
581 static u32
velocity_get_opt_media_mode(struct velocity_info
*vptr
)
585 switch (vptr
->options
.spd_dpx
) {
587 status
= VELOCITY_AUTONEG_ENABLE
;
589 case SPD_DPX_100_FULL
:
590 status
= VELOCITY_SPEED_100
| VELOCITY_DUPLEX_FULL
;
592 case SPD_DPX_10_FULL
:
593 status
= VELOCITY_SPEED_10
| VELOCITY_DUPLEX_FULL
;
595 case SPD_DPX_100_HALF
:
596 status
= VELOCITY_SPEED_100
;
598 case SPD_DPX_10_HALF
:
599 status
= VELOCITY_SPEED_10
;
601 case SPD_DPX_1000_FULL
:
602 status
= VELOCITY_SPEED_1000
| VELOCITY_DUPLEX_FULL
;
605 vptr
->mii_status
= status
;
610 * safe_disable_mii_autopoll - autopoll off
611 * @regs: velocity registers
613 * Turn off the autopoll and wait for it to disable on the chip
615 static void safe_disable_mii_autopoll(struct mac_regs __iomem
*regs
)
620 writeb(0, ®s
->MIICR
);
621 for (ww
= 0; ww
< W_MAX_TIMEOUT
; ww
++) {
623 if (BYTE_REG_BITS_IS_ON(MIISR_MIDLE
, ®s
->MIISR
))
629 * enable_mii_autopoll - turn on autopolling
630 * @regs: velocity registers
632 * Enable the MII link status autopoll feature on the Velocity
633 * hardware. Wait for it to enable.
635 static void enable_mii_autopoll(struct mac_regs __iomem
*regs
)
639 writeb(0, &(regs
->MIICR
));
640 writeb(MIIADR_SWMPL
, ®s
->MIIADR
);
642 for (ii
= 0; ii
< W_MAX_TIMEOUT
; ii
++) {
644 if (BYTE_REG_BITS_IS_ON(MIISR_MIDLE
, ®s
->MIISR
))
648 writeb(MIICR_MAUTO
, ®s
->MIICR
);
650 for (ii
= 0; ii
< W_MAX_TIMEOUT
; ii
++) {
652 if (!BYTE_REG_BITS_IS_ON(MIISR_MIDLE
, ®s
->MIISR
))
659 * velocity_mii_read - read MII data
660 * @regs: velocity registers
661 * @index: MII register index
662 * @data: buffer for received data
664 * Perform a single read of an MII 16bit register. Returns zero
665 * on success or -ETIMEDOUT if the PHY did not respond.
667 static int velocity_mii_read(struct mac_regs __iomem
*regs
, u8 index
, u16
*data
)
672 * Disable MIICR_MAUTO, so that mii addr can be set normally
674 safe_disable_mii_autopoll(regs
);
676 writeb(index
, ®s
->MIIADR
);
678 BYTE_REG_BITS_ON(MIICR_RCMD
, ®s
->MIICR
);
680 for (ww
= 0; ww
< W_MAX_TIMEOUT
; ww
++) {
681 if (!(readb(®s
->MIICR
) & MIICR_RCMD
))
685 *data
= readw(®s
->MIIDATA
);
687 enable_mii_autopoll(regs
);
688 if (ww
== W_MAX_TIMEOUT
)
694 * mii_check_media_mode - check media state
695 * @regs: velocity registers
697 * Check the current MII status and determine the link status
700 static u32
mii_check_media_mode(struct mac_regs __iomem
*regs
)
705 if (!MII_REG_BITS_IS_ON(BMSR_LSTATUS
, MII_BMSR
, regs
))
706 status
|= VELOCITY_LINK_FAIL
;
708 if (MII_REG_BITS_IS_ON(ADVERTISE_1000FULL
, MII_CTRL1000
, regs
))
709 status
|= VELOCITY_SPEED_1000
| VELOCITY_DUPLEX_FULL
;
710 else if (MII_REG_BITS_IS_ON(ADVERTISE_1000HALF
, MII_CTRL1000
, regs
))
711 status
|= (VELOCITY_SPEED_1000
);
713 velocity_mii_read(regs
, MII_ADVERTISE
, &ANAR
);
714 if (ANAR
& ADVERTISE_100FULL
)
715 status
|= (VELOCITY_SPEED_100
| VELOCITY_DUPLEX_FULL
);
716 else if (ANAR
& ADVERTISE_100HALF
)
717 status
|= VELOCITY_SPEED_100
;
718 else if (ANAR
& ADVERTISE_10FULL
)
719 status
|= (VELOCITY_SPEED_10
| VELOCITY_DUPLEX_FULL
);
721 status
|= (VELOCITY_SPEED_10
);
724 if (MII_REG_BITS_IS_ON(BMCR_ANENABLE
, MII_BMCR
, regs
)) {
725 velocity_mii_read(regs
, MII_ADVERTISE
, &ANAR
);
726 if ((ANAR
& (ADVERTISE_100FULL
| ADVERTISE_100HALF
| ADVERTISE_10FULL
| ADVERTISE_10HALF
))
727 == (ADVERTISE_100FULL
| ADVERTISE_100HALF
| ADVERTISE_10FULL
| ADVERTISE_10HALF
)) {
728 if (MII_REG_BITS_IS_ON(ADVERTISE_1000HALF
| ADVERTISE_1000FULL
, MII_CTRL1000
, regs
))
729 status
|= VELOCITY_AUTONEG_ENABLE
;
737 * velocity_mii_write - write MII data
738 * @regs: velocity registers
739 * @index: MII register index
740 * @data: 16bit data for the MII register
742 * Perform a single write to an MII 16bit register. Returns zero
743 * on success or -ETIMEDOUT if the PHY did not respond.
745 static int velocity_mii_write(struct mac_regs __iomem
*regs
, u8 mii_addr
, u16 data
)
750 * Disable MIICR_MAUTO, so that mii addr can be set normally
752 safe_disable_mii_autopoll(regs
);
755 writeb(mii_addr
, ®s
->MIIADR
);
757 writew(data
, ®s
->MIIDATA
);
759 /* turn on MIICR_WCMD */
760 BYTE_REG_BITS_ON(MIICR_WCMD
, ®s
->MIICR
);
762 /* W_MAX_TIMEOUT is the timeout period */
763 for (ww
= 0; ww
< W_MAX_TIMEOUT
; ww
++) {
765 if (!(readb(®s
->MIICR
) & MIICR_WCMD
))
768 enable_mii_autopoll(regs
);
770 if (ww
== W_MAX_TIMEOUT
)
776 * set_mii_flow_control - flow control setup
777 * @vptr: velocity interface
779 * Set up the flow control on this interface according to
780 * the supplied user/eeprom options.
782 static void set_mii_flow_control(struct velocity_info
*vptr
)
784 /*Enable or Disable PAUSE in ANAR */
785 switch (vptr
->options
.flow_cntl
) {
787 MII_REG_BITS_OFF(ADVERTISE_PAUSE_CAP
, MII_ADVERTISE
, vptr
->mac_regs
);
788 MII_REG_BITS_ON(ADVERTISE_PAUSE_ASYM
, MII_ADVERTISE
, vptr
->mac_regs
);
792 MII_REG_BITS_ON(ADVERTISE_PAUSE_CAP
, MII_ADVERTISE
, vptr
->mac_regs
);
793 MII_REG_BITS_ON(ADVERTISE_PAUSE_ASYM
, MII_ADVERTISE
, vptr
->mac_regs
);
796 case FLOW_CNTL_TX_RX
:
797 MII_REG_BITS_ON(ADVERTISE_PAUSE_CAP
, MII_ADVERTISE
, vptr
->mac_regs
);
798 MII_REG_BITS_OFF(ADVERTISE_PAUSE_ASYM
, MII_ADVERTISE
, vptr
->mac_regs
);
801 case FLOW_CNTL_DISABLE
:
802 MII_REG_BITS_OFF(ADVERTISE_PAUSE_CAP
, MII_ADVERTISE
, vptr
->mac_regs
);
803 MII_REG_BITS_OFF(ADVERTISE_PAUSE_ASYM
, MII_ADVERTISE
, vptr
->mac_regs
);
811 * mii_set_auto_on - autonegotiate on
814 * Enable autonegotation on this interface
816 static void mii_set_auto_on(struct velocity_info
*vptr
)
818 if (MII_REG_BITS_IS_ON(BMCR_ANENABLE
, MII_BMCR
, vptr
->mac_regs
))
819 MII_REG_BITS_ON(BMCR_ANRESTART
, MII_BMCR
, vptr
->mac_regs
);
821 MII_REG_BITS_ON(BMCR_ANENABLE
, MII_BMCR
, vptr
->mac_regs
);
824 static u32
check_connection_type(struct mac_regs __iomem
*regs
)
829 PHYSR0
= readb(®s
->PHYSR0
);
832 if (!(PHYSR0 & PHYSR0_LINKGD))
833 status|=VELOCITY_LINK_FAIL;
836 if (PHYSR0
& PHYSR0_FDPX
)
837 status
|= VELOCITY_DUPLEX_FULL
;
839 if (PHYSR0
& PHYSR0_SPDG
)
840 status
|= VELOCITY_SPEED_1000
;
841 else if (PHYSR0
& PHYSR0_SPD10
)
842 status
|= VELOCITY_SPEED_10
;
844 status
|= VELOCITY_SPEED_100
;
846 if (MII_REG_BITS_IS_ON(BMCR_ANENABLE
, MII_BMCR
, regs
)) {
847 velocity_mii_read(regs
, MII_ADVERTISE
, &ANAR
);
848 if ((ANAR
& (ADVERTISE_100FULL
| ADVERTISE_100HALF
| ADVERTISE_10FULL
| ADVERTISE_10HALF
))
849 == (ADVERTISE_100FULL
| ADVERTISE_100HALF
| ADVERTISE_10FULL
| ADVERTISE_10HALF
)) {
850 if (MII_REG_BITS_IS_ON(ADVERTISE_1000HALF
| ADVERTISE_1000FULL
, MII_CTRL1000
, regs
))
851 status
|= VELOCITY_AUTONEG_ENABLE
;
859 * velocity_set_media_mode - set media mode
860 * @mii_status: old MII link state
862 * Check the media link state and configure the flow control
863 * PHY and also velocity hardware setup accordingly. In particular
864 * we need to set up CD polling and frame bursting.
866 static int velocity_set_media_mode(struct velocity_info
*vptr
, u32 mii_status
)
869 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
871 vptr
->mii_status
= mii_check_media_mode(vptr
->mac_regs
);
872 curr_status
= vptr
->mii_status
& (~VELOCITY_LINK_FAIL
);
874 /* Set mii link status */
875 set_mii_flow_control(vptr
);
878 Check if new status is consistent with current status
879 if (((mii_status & curr_status) & VELOCITY_AUTONEG_ENABLE) ||
880 (mii_status==curr_status)) {
881 vptr->mii_status=mii_check_media_mode(vptr->mac_regs);
882 vptr->mii_status=check_connection_type(vptr->mac_regs);
883 VELOCITY_PRT(MSG_LEVEL_INFO, "Velocity link no change\n");
888 if (PHYID_GET_PHY_ID(vptr
->phy_id
) == PHYID_CICADA_CS8201
)
889 MII_REG_BITS_ON(AUXCR_MDPPS
, MII_NCONFIG
, vptr
->mac_regs
);
892 * If connection type is AUTO
894 if (mii_status
& VELOCITY_AUTONEG_ENABLE
) {
895 VELOCITY_PRT(MSG_LEVEL_INFO
, "Velocity is AUTO mode\n");
896 /* clear force MAC mode bit */
897 BYTE_REG_BITS_OFF(CHIPGCR_FCMODE
, ®s
->CHIPGCR
);
898 /* set duplex mode of MAC according to duplex mode of MII */
899 MII_REG_BITS_ON(ADVERTISE_100FULL
| ADVERTISE_100HALF
| ADVERTISE_10FULL
| ADVERTISE_10HALF
, MII_ADVERTISE
, vptr
->mac_regs
);
900 MII_REG_BITS_ON(ADVERTISE_1000FULL
| ADVERTISE_1000HALF
, MII_CTRL1000
, vptr
->mac_regs
);
901 MII_REG_BITS_ON(BMCR_SPEED1000
, MII_BMCR
, vptr
->mac_regs
);
903 /* enable AUTO-NEGO mode */
904 mii_set_auto_on(vptr
);
911 * 1. if it's 3119, disable frame bursting in halfduplex mode
912 * and enable it in fullduplex mode
913 * 2. set correct MII/GMII and half/full duplex mode in CHIPGCR
914 * 3. only enable CD heart beat counter in 10HD mode
917 /* set force MAC mode bit */
918 BYTE_REG_BITS_ON(CHIPGCR_FCMODE
, ®s
->CHIPGCR
);
920 CHIPGCR
= readb(®s
->CHIPGCR
);
922 if (mii_status
& VELOCITY_SPEED_1000
)
923 CHIPGCR
|= CHIPGCR_FCGMII
;
925 CHIPGCR
&= ~CHIPGCR_FCGMII
;
927 if (mii_status
& VELOCITY_DUPLEX_FULL
) {
928 CHIPGCR
|= CHIPGCR_FCFDX
;
929 writeb(CHIPGCR
, ®s
->CHIPGCR
);
930 VELOCITY_PRT(MSG_LEVEL_INFO
, "set Velocity to forced full mode\n");
931 if (vptr
->rev_id
< REV_ID_VT3216_A0
)
932 BYTE_REG_BITS_OFF(TCR_TB2BDIS
, ®s
->TCR
);
934 CHIPGCR
&= ~CHIPGCR_FCFDX
;
935 VELOCITY_PRT(MSG_LEVEL_INFO
, "set Velocity to forced half mode\n");
936 writeb(CHIPGCR
, ®s
->CHIPGCR
);
937 if (vptr
->rev_id
< REV_ID_VT3216_A0
)
938 BYTE_REG_BITS_ON(TCR_TB2BDIS
, ®s
->TCR
);
941 velocity_mii_read(vptr
->mac_regs
, MII_CTRL1000
, &CTRL1000
);
942 CTRL1000
&= ~(ADVERTISE_1000FULL
| ADVERTISE_1000HALF
);
943 if ((mii_status
& VELOCITY_SPEED_1000
) &&
944 (mii_status
& VELOCITY_DUPLEX_FULL
)) {
945 CTRL1000
|= ADVERTISE_1000FULL
;
947 velocity_mii_write(vptr
->mac_regs
, MII_CTRL1000
, CTRL1000
);
949 if (!(mii_status
& VELOCITY_DUPLEX_FULL
) && (mii_status
& VELOCITY_SPEED_10
))
950 BYTE_REG_BITS_OFF(TESTCFG_HBDIS
, ®s
->TESTCFG
);
952 BYTE_REG_BITS_ON(TESTCFG_HBDIS
, ®s
->TESTCFG
);
954 /* MII_REG_BITS_OFF(BMCR_SPEED1000, MII_BMCR, vptr->mac_regs); */
955 velocity_mii_read(vptr
->mac_regs
, MII_ADVERTISE
, &ANAR
);
956 ANAR
&= (~(ADVERTISE_100FULL
| ADVERTISE_100HALF
| ADVERTISE_10FULL
| ADVERTISE_10HALF
));
957 if (mii_status
& VELOCITY_SPEED_100
) {
958 if (mii_status
& VELOCITY_DUPLEX_FULL
)
959 ANAR
|= ADVERTISE_100FULL
;
961 ANAR
|= ADVERTISE_100HALF
;
962 } else if (mii_status
& VELOCITY_SPEED_10
) {
963 if (mii_status
& VELOCITY_DUPLEX_FULL
)
964 ANAR
|= ADVERTISE_10FULL
;
966 ANAR
|= ADVERTISE_10HALF
;
968 velocity_mii_write(vptr
->mac_regs
, MII_ADVERTISE
, ANAR
);
969 /* enable AUTO-NEGO mode */
970 mii_set_auto_on(vptr
);
971 /* MII_REG_BITS_ON(BMCR_ANENABLE, MII_BMCR, vptr->mac_regs); */
973 /* vptr->mii_status=mii_check_media_mode(vptr->mac_regs); */
974 /* vptr->mii_status=check_connection_type(vptr->mac_regs); */
975 return VELOCITY_LINK_CHANGE
;
979 * velocity_print_link_status - link status reporting
980 * @vptr: velocity to report on
982 * Turn the link status of the velocity card into a kernel log
983 * description of the new link state, detailing speed and duplex
986 static void velocity_print_link_status(struct velocity_info
*vptr
)
989 if (vptr
->mii_status
& VELOCITY_LINK_FAIL
) {
990 VELOCITY_PRT(MSG_LEVEL_INFO
, KERN_NOTICE
"%s: failed to detect cable link\n", vptr
->netdev
->name
);
991 } else if (vptr
->options
.spd_dpx
== SPD_DPX_AUTO
) {
992 VELOCITY_PRT(MSG_LEVEL_INFO
, KERN_NOTICE
"%s: Link auto-negotiation", vptr
->netdev
->name
);
994 if (vptr
->mii_status
& VELOCITY_SPEED_1000
)
995 VELOCITY_PRT(MSG_LEVEL_INFO
, " speed 1000M bps");
996 else if (vptr
->mii_status
& VELOCITY_SPEED_100
)
997 VELOCITY_PRT(MSG_LEVEL_INFO
, " speed 100M bps");
999 VELOCITY_PRT(MSG_LEVEL_INFO
, " speed 10M bps");
1001 if (vptr
->mii_status
& VELOCITY_DUPLEX_FULL
)
1002 VELOCITY_PRT(MSG_LEVEL_INFO
, " full duplex\n");
1004 VELOCITY_PRT(MSG_LEVEL_INFO
, " half duplex\n");
1006 VELOCITY_PRT(MSG_LEVEL_INFO
, KERN_NOTICE
"%s: Link forced", vptr
->netdev
->name
);
1007 switch (vptr
->options
.spd_dpx
) {
1008 case SPD_DPX_1000_FULL
:
1009 VELOCITY_PRT(MSG_LEVEL_INFO
, " speed 1000M bps full duplex\n");
1011 case SPD_DPX_100_HALF
:
1012 VELOCITY_PRT(MSG_LEVEL_INFO
, " speed 100M bps half duplex\n");
1014 case SPD_DPX_100_FULL
:
1015 VELOCITY_PRT(MSG_LEVEL_INFO
, " speed 100M bps full duplex\n");
1017 case SPD_DPX_10_HALF
:
1018 VELOCITY_PRT(MSG_LEVEL_INFO
, " speed 10M bps half duplex\n");
1020 case SPD_DPX_10_FULL
:
1021 VELOCITY_PRT(MSG_LEVEL_INFO
, " speed 10M bps full duplex\n");
1030 * enable_flow_control_ability - flow control
1031 * @vptr: veloity to configure
1033 * Set up flow control according to the flow control options
1034 * determined by the eeprom/configuration.
1036 static void enable_flow_control_ability(struct velocity_info
*vptr
)
1039 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
1041 switch (vptr
->options
.flow_cntl
) {
1043 case FLOW_CNTL_DEFAULT
:
1044 if (BYTE_REG_BITS_IS_ON(PHYSR0_RXFLC
, ®s
->PHYSR0
))
1045 writel(CR0_FDXRFCEN
, ®s
->CR0Set
);
1047 writel(CR0_FDXRFCEN
, ®s
->CR0Clr
);
1049 if (BYTE_REG_BITS_IS_ON(PHYSR0_TXFLC
, ®s
->PHYSR0
))
1050 writel(CR0_FDXTFCEN
, ®s
->CR0Set
);
1052 writel(CR0_FDXTFCEN
, ®s
->CR0Clr
);
1056 writel(CR0_FDXTFCEN
, ®s
->CR0Set
);
1057 writel(CR0_FDXRFCEN
, ®s
->CR0Clr
);
1061 writel(CR0_FDXRFCEN
, ®s
->CR0Set
);
1062 writel(CR0_FDXTFCEN
, ®s
->CR0Clr
);
1065 case FLOW_CNTL_TX_RX
:
1066 writel(CR0_FDXTFCEN
, ®s
->CR0Set
);
1067 writel(CR0_FDXRFCEN
, ®s
->CR0Set
);
1070 case FLOW_CNTL_DISABLE
:
1071 writel(CR0_FDXRFCEN
, ®s
->CR0Clr
);
1072 writel(CR0_FDXTFCEN
, ®s
->CR0Clr
);
1082 * velocity_soft_reset - soft reset
1083 * @vptr: velocity to reset
1085 * Kick off a soft reset of the velocity adapter and then poll
1086 * until the reset sequence has completed before returning.
1088 static int velocity_soft_reset(struct velocity_info
*vptr
)
1090 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
1093 writel(CR0_SFRST
, ®s
->CR0Set
);
1095 for (i
= 0; i
< W_MAX_TIMEOUT
; i
++) {
1097 if (!DWORD_REG_BITS_IS_ON(CR0_SFRST
, ®s
->CR0Set
))
1101 if (i
== W_MAX_TIMEOUT
) {
1102 writel(CR0_FORSRST
, ®s
->CR0Set
);
1103 /* FIXME: PCI POSTING */
1111 * velocity_set_multi - filter list change callback
1112 * @dev: network device
1114 * Called by the network layer when the filter lists need to change
1115 * for a velocity adapter. Reload the CAMs with the new address
1118 static void velocity_set_multi(struct net_device
*dev
)
1120 struct velocity_info
*vptr
= netdev_priv(dev
);
1121 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
1124 struct netdev_hw_addr
*ha
;
1126 if (dev
->flags
& IFF_PROMISC
) { /* Set promiscuous. */
1127 writel(0xffffffff, ®s
->MARCAM
[0]);
1128 writel(0xffffffff, ®s
->MARCAM
[4]);
1129 rx_mode
= (RCR_AM
| RCR_AB
| RCR_PROM
);
1130 } else if ((netdev_mc_count(dev
) > vptr
->multicast_limit
) ||
1131 (dev
->flags
& IFF_ALLMULTI
)) {
1132 writel(0xffffffff, ®s
->MARCAM
[0]);
1133 writel(0xffffffff, ®s
->MARCAM
[4]);
1134 rx_mode
= (RCR_AM
| RCR_AB
);
1136 int offset
= MCAM_SIZE
- vptr
->multicast_limit
;
1137 mac_get_cam_mask(regs
, vptr
->mCAMmask
);
1140 netdev_for_each_mc_addr(ha
, dev
) {
1141 mac_set_cam(regs
, i
+ offset
, ha
->addr
);
1142 vptr
->mCAMmask
[(offset
+ i
) / 8] |= 1 << ((offset
+ i
) & 7);
1146 mac_set_cam_mask(regs
, vptr
->mCAMmask
);
1147 rx_mode
= RCR_AM
| RCR_AB
| RCR_AP
;
1149 if (dev
->mtu
> 1500)
1152 BYTE_REG_BITS_ON(rx_mode
, ®s
->RCR
);
1157 * MII access , media link mode setting functions
1161 * mii_init - set up MII
1162 * @vptr: velocity adapter
1163 * @mii_status: links tatus
1165 * Set up the PHY for the current link state.
1167 static void mii_init(struct velocity_info
*vptr
, u32 mii_status
)
1171 switch (PHYID_GET_PHY_ID(vptr
->phy_id
)) {
1172 case PHYID_ICPLUS_IP101A
:
1173 MII_REG_BITS_ON((ADVERTISE_PAUSE_ASYM
| ADVERTISE_PAUSE_CAP
),
1174 MII_ADVERTISE
, vptr
->mac_regs
);
1175 if (vptr
->mii_status
& VELOCITY_DUPLEX_FULL
)
1176 MII_REG_BITS_ON(TCSR_ECHODIS
, MII_SREVISION
,
1179 MII_REG_BITS_OFF(TCSR_ECHODIS
, MII_SREVISION
,
1181 MII_REG_BITS_ON(PLED_LALBE
, MII_TPISTATUS
, vptr
->mac_regs
);
1183 case PHYID_CICADA_CS8201
:
1185 * Reset to hardware default
1187 MII_REG_BITS_OFF((ADVERTISE_PAUSE_ASYM
| ADVERTISE_PAUSE_CAP
), MII_ADVERTISE
, vptr
->mac_regs
);
1189 * Turn on ECHODIS bit in NWay-forced full mode and turn it
1190 * off it in NWay-forced half mode for NWay-forced v.s.
1191 * legacy-forced issue.
1193 if (vptr
->mii_status
& VELOCITY_DUPLEX_FULL
)
1194 MII_REG_BITS_ON(TCSR_ECHODIS
, MII_SREVISION
, vptr
->mac_regs
);
1196 MII_REG_BITS_OFF(TCSR_ECHODIS
, MII_SREVISION
, vptr
->mac_regs
);
1198 * Turn on Link/Activity LED enable bit for CIS8201
1200 MII_REG_BITS_ON(PLED_LALBE
, MII_TPISTATUS
, vptr
->mac_regs
);
1202 case PHYID_VT3216_32BIT
:
1203 case PHYID_VT3216_64BIT
:
1205 * Reset to hardware default
1207 MII_REG_BITS_ON((ADVERTISE_PAUSE_ASYM
| ADVERTISE_PAUSE_CAP
), MII_ADVERTISE
, vptr
->mac_regs
);
1209 * Turn on ECHODIS bit in NWay-forced full mode and turn it
1210 * off it in NWay-forced half mode for NWay-forced v.s.
1211 * legacy-forced issue
1213 if (vptr
->mii_status
& VELOCITY_DUPLEX_FULL
)
1214 MII_REG_BITS_ON(TCSR_ECHODIS
, MII_SREVISION
, vptr
->mac_regs
);
1216 MII_REG_BITS_OFF(TCSR_ECHODIS
, MII_SREVISION
, vptr
->mac_regs
);
1219 case PHYID_MARVELL_1000
:
1220 case PHYID_MARVELL_1000S
:
1222 * Assert CRS on Transmit
1224 MII_REG_BITS_ON(PSCR_ACRSTX
, MII_REG_PSCR
, vptr
->mac_regs
);
1226 * Reset to hardware default
1228 MII_REG_BITS_ON((ADVERTISE_PAUSE_ASYM
| ADVERTISE_PAUSE_CAP
), MII_ADVERTISE
, vptr
->mac_regs
);
1233 velocity_mii_read(vptr
->mac_regs
, MII_BMCR
, &BMCR
);
1234 if (BMCR
& BMCR_ISOLATE
) {
1235 BMCR
&= ~BMCR_ISOLATE
;
1236 velocity_mii_write(vptr
->mac_regs
, MII_BMCR
, BMCR
);
1241 * setup_queue_timers - Setup interrupt timers
1243 * Setup interrupt frequency during suppression (timeout if the frame
1244 * count isn't filled).
1246 static void setup_queue_timers(struct velocity_info
*vptr
)
1248 /* Only for newer revisions */
1249 if (vptr
->rev_id
>= REV_ID_VT3216_A0
) {
1250 u8 txqueue_timer
= 0;
1251 u8 rxqueue_timer
= 0;
1253 if (vptr
->mii_status
& (VELOCITY_SPEED_1000
|
1254 VELOCITY_SPEED_100
)) {
1255 txqueue_timer
= vptr
->options
.txqueue_timer
;
1256 rxqueue_timer
= vptr
->options
.rxqueue_timer
;
1259 writeb(txqueue_timer
, &vptr
->mac_regs
->TQETMR
);
1260 writeb(rxqueue_timer
, &vptr
->mac_regs
->RQETMR
);
1265 * setup_adaptive_interrupts - Setup interrupt suppression
1267 * @vptr velocity adapter
1269 * The velocity is able to suppress interrupt during high interrupt load.
1270 * This function turns on that feature.
1272 static void setup_adaptive_interrupts(struct velocity_info
*vptr
)
1274 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
1275 u16 tx_intsup
= vptr
->options
.tx_intsup
;
1276 u16 rx_intsup
= vptr
->options
.rx_intsup
;
1278 /* Setup default interrupt mask (will be changed below) */
1279 vptr
->int_mask
= INT_MASK_DEF
;
1281 /* Set Tx Interrupt Suppression Threshold */
1282 writeb(CAMCR_PS0
, ®s
->CAMCR
);
1283 if (tx_intsup
!= 0) {
1284 vptr
->int_mask
&= ~(ISR_PTXI
| ISR_PTX0I
| ISR_PTX1I
|
1285 ISR_PTX2I
| ISR_PTX3I
);
1286 writew(tx_intsup
, ®s
->ISRCTL
);
1288 writew(ISRCTL_TSUPDIS
, ®s
->ISRCTL
);
1290 /* Set Rx Interrupt Suppression Threshold */
1291 writeb(CAMCR_PS1
, ®s
->CAMCR
);
1292 if (rx_intsup
!= 0) {
1293 vptr
->int_mask
&= ~ISR_PRXI
;
1294 writew(rx_intsup
, ®s
->ISRCTL
);
1296 writew(ISRCTL_RSUPDIS
, ®s
->ISRCTL
);
1298 /* Select page to interrupt hold timer */
1299 writeb(0, ®s
->CAMCR
);
1303 * velocity_init_registers - initialise MAC registers
1304 * @vptr: velocity to init
1305 * @type: type of initialisation (hot or cold)
1307 * Initialise the MAC on a reset or on first set up on the
1310 static void velocity_init_registers(struct velocity_info
*vptr
,
1311 enum velocity_init_type type
)
1313 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
1314 struct net_device
*netdev
= vptr
->netdev
;
1317 mac_wol_reset(regs
);
1320 case VELOCITY_INIT_RESET
:
1321 case VELOCITY_INIT_WOL
:
1323 netif_stop_queue(netdev
);
1326 * Reset RX to prevent RX pointer not on the 4X location
1328 velocity_rx_reset(vptr
);
1329 mac_rx_queue_run(regs
);
1330 mac_rx_queue_wake(regs
);
1332 mii_status
= velocity_get_opt_media_mode(vptr
);
1333 if (velocity_set_media_mode(vptr
, mii_status
) != VELOCITY_LINK_CHANGE
) {
1334 velocity_print_link_status(vptr
);
1335 if (!(vptr
->mii_status
& VELOCITY_LINK_FAIL
))
1336 netif_wake_queue(netdev
);
1339 enable_flow_control_ability(vptr
);
1341 mac_clear_isr(regs
);
1342 writel(CR0_STOP
, ®s
->CR0Clr
);
1343 writel((CR0_DPOLL
| CR0_TXON
| CR0_RXON
| CR0_STRT
),
1348 case VELOCITY_INIT_COLD
:
1353 velocity_soft_reset(vptr
);
1356 if (!vptr
->no_eeprom
) {
1357 mac_eeprom_reload(regs
);
1358 for (i
= 0; i
< 6; i
++)
1359 writeb(netdev
->dev_addr
[i
], regs
->PAR
+ i
);
1363 * clear Pre_ACPI bit.
1365 BYTE_REG_BITS_OFF(CFGA_PACPI
, &(regs
->CFGA
));
1366 mac_set_rx_thresh(regs
, vptr
->options
.rx_thresh
);
1367 mac_set_dma_length(regs
, vptr
->options
.DMA_length
);
1369 writeb(WOLCFG_SAM
| WOLCFG_SAB
, ®s
->WOLCFGSet
);
1371 * Back off algorithm use original IEEE standard
1373 BYTE_REG_BITS_SET(CFGB_OFSET
, (CFGB_CRANDOM
| CFGB_CAP
| CFGB_MBA
| CFGB_BAKOPT
), ®s
->CFGB
);
1378 velocity_init_cam_filter(vptr
);
1381 * Set packet filter: Receive directed and broadcast address
1383 velocity_set_multi(netdev
);
1386 * Enable MII auto-polling
1388 enable_mii_autopoll(regs
);
1390 setup_adaptive_interrupts(vptr
);
1392 writel(vptr
->rx
.pool_dma
, ®s
->RDBaseLo
);
1393 writew(vptr
->options
.numrx
- 1, ®s
->RDCSize
);
1394 mac_rx_queue_run(regs
);
1395 mac_rx_queue_wake(regs
);
1397 writew(vptr
->options
.numtx
- 1, ®s
->TDCSize
);
1399 for (i
= 0; i
< vptr
->tx
.numq
; i
++) {
1400 writel(vptr
->tx
.pool_dma
[i
], ®s
->TDBaseLo
[i
]);
1401 mac_tx_queue_run(regs
, i
);
1404 init_flow_control_register(vptr
);
1406 writel(CR0_STOP
, ®s
->CR0Clr
);
1407 writel((CR0_DPOLL
| CR0_TXON
| CR0_RXON
| CR0_STRT
), ®s
->CR0Set
);
1409 mii_status
= velocity_get_opt_media_mode(vptr
);
1410 netif_stop_queue(netdev
);
1412 mii_init(vptr
, mii_status
);
1414 if (velocity_set_media_mode(vptr
, mii_status
) != VELOCITY_LINK_CHANGE
) {
1415 velocity_print_link_status(vptr
);
1416 if (!(vptr
->mii_status
& VELOCITY_LINK_FAIL
))
1417 netif_wake_queue(netdev
);
1420 enable_flow_control_ability(vptr
);
1421 mac_hw_mibs_init(regs
);
1422 mac_write_int_mask(vptr
->int_mask
, regs
);
1423 mac_clear_isr(regs
);
1428 static void velocity_give_many_rx_descs(struct velocity_info
*vptr
)
1430 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
1431 int avail
, dirty
, unusable
;
1434 * RD number must be equal to 4X per hardware spec
1435 * (programming guide rev 1.20, p.13)
1437 if (vptr
->rx
.filled
< 4)
1442 unusable
= vptr
->rx
.filled
& 0x0003;
1443 dirty
= vptr
->rx
.dirty
- unusable
;
1444 for (avail
= vptr
->rx
.filled
& 0xfffc; avail
; avail
--) {
1445 dirty
= (dirty
> 0) ? dirty
- 1 : vptr
->options
.numrx
- 1;
1446 vptr
->rx
.ring
[dirty
].rdesc0
.len
|= OWNED_BY_NIC
;
1449 writew(vptr
->rx
.filled
& 0xfffc, ®s
->RBRDU
);
1450 vptr
->rx
.filled
= unusable
;
1454 * velocity_init_dma_rings - set up DMA rings
1455 * @vptr: Velocity to set up
1457 * Allocate PCI mapped DMA rings for the receive and transmit layer
1460 static int velocity_init_dma_rings(struct velocity_info
*vptr
)
1462 struct velocity_opt
*opt
= &vptr
->options
;
1463 const unsigned int rx_ring_size
= opt
->numrx
* sizeof(struct rx_desc
);
1464 const unsigned int tx_ring_size
= opt
->numtx
* sizeof(struct tx_desc
);
1465 dma_addr_t pool_dma
;
1470 * Allocate all RD/TD rings a single pool.
1472 * dma_alloc_coherent() fulfills the requirement for 64 bytes
1475 pool
= dma_alloc_coherent(vptr
->dev
, tx_ring_size
* vptr
->tx
.numq
+
1476 rx_ring_size
, &pool_dma
, GFP_ATOMIC
);
1478 dev_err(vptr
->dev
, "%s : DMA memory allocation failed.\n",
1479 vptr
->netdev
->name
);
1483 vptr
->rx
.ring
= pool
;
1484 vptr
->rx
.pool_dma
= pool_dma
;
1486 pool
+= rx_ring_size
;
1487 pool_dma
+= rx_ring_size
;
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
;
1499 static void velocity_set_rxbufsize(struct velocity_info
*vptr
, int mtu
)
1501 vptr
->rx
.buf_sz
= (mtu
<= ETH_DATA_LEN
) ? PKT_BUF_SZ
: mtu
+ 32;
1505 * velocity_alloc_rx_buf - allocate aligned receive buffer
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.
1514 static int velocity_alloc_rx_buf(struct velocity_info
*vptr
, int idx
)
1516 struct rx_desc
*rd
= &(vptr
->rx
.ring
[idx
]);
1517 struct velocity_rd_info
*rd_info
= &(vptr
->rx
.info
[idx
]);
1519 rd_info
->skb
= netdev_alloc_skb(vptr
->netdev
, vptr
->rx
.buf_sz
+ 64);
1520 if (rd_info
->skb
== NULL
)
1524 * Do the gymnastics to get the buffer head for data at
1527 skb_reserve(rd_info
->skb
,
1528 64 - ((unsigned long) rd_info
->skb
->data
& 63));
1529 rd_info
->skb_dma
= dma_map_single(vptr
->dev
, rd_info
->skb
->data
,
1530 vptr
->rx
.buf_sz
, DMA_FROM_DEVICE
);
1533 * Fill in the descriptor to match
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
);
1544 static int velocity_rx_refill(struct velocity_info
*vptr
)
1546 int dirty
= vptr
->rx
.dirty
, done
= 0;
1549 struct rx_desc
*rd
= vptr
->rx
.ring
+ dirty
;
1551 /* Fine for an all zero Rx desc at init time as well */
1552 if (rd
->rdesc0
.len
& OWNED_BY_NIC
)
1555 if (!vptr
->rx
.info
[dirty
].skb
) {
1556 if (velocity_alloc_rx_buf(vptr
, dirty
) < 0)
1560 dirty
= (dirty
< vptr
->options
.numrx
- 1) ? dirty
+ 1 : 0;
1561 } while (dirty
!= vptr
->rx
.curr
);
1564 vptr
->rx
.dirty
= dirty
;
1565 vptr
->rx
.filled
+= done
;
1572 * velocity_free_rd_ring - free receive ring
1573 * @vptr: velocity to clean up
1575 * Free the receive buffers for each ring slot and any
1576 * attached socket buffers that need to go away.
1578 static void velocity_free_rd_ring(struct velocity_info
*vptr
)
1582 if (vptr
->rx
.info
== NULL
)
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
;
1589 memset(rd
, 0, sizeof(*rd
));
1593 dma_unmap_single(vptr
->dev
, rd_info
->skb_dma
, vptr
->rx
.buf_sz
,
1595 rd_info
->skb_dma
= 0;
1597 dev_kfree_skb(rd_info
->skb
);
1598 rd_info
->skb
= NULL
;
1601 kfree(vptr
->rx
.info
);
1602 vptr
->rx
.info
= NULL
;
1606 * velocity_init_rd_ring - set up receive ring
1607 * @vptr: velocity to configure
1609 * Allocate and set up the receive buffers for each ring slot and
1610 * assign them to the network adapter.
1612 static int velocity_init_rd_ring(struct velocity_info
*vptr
)
1616 vptr
->rx
.info
= kcalloc(vptr
->options
.numrx
,
1617 sizeof(struct velocity_rd_info
), GFP_KERNEL
);
1621 velocity_init_rx_ring_indexes(vptr
);
1623 if (velocity_rx_refill(vptr
) != vptr
->options
.numrx
) {
1624 VELOCITY_PRT(MSG_LEVEL_ERR
, KERN_ERR
1625 "%s: failed to allocate RX buffer.\n", vptr
->netdev
->name
);
1626 velocity_free_rd_ring(vptr
);
1636 * velocity_init_td_ring - set up transmit ring
1639 * Set up the transmit ring and chain the ring pointers together.
1640 * Returns zero on success or a negative posix errno code for
1643 static int velocity_init_td_ring(struct velocity_info
*vptr
)
1647 /* Init the TD ring entries */
1648 for (j
= 0; j
< vptr
->tx
.numq
; j
++) {
1650 vptr
->tx
.infos
[j
] = kcalloc(vptr
->options
.numtx
,
1651 sizeof(struct velocity_td_info
),
1653 if (!vptr
->tx
.infos
[j
]) {
1655 kfree(vptr
->tx
.infos
[j
]);
1659 vptr
->tx
.tail
[j
] = vptr
->tx
.curr
[j
] = vptr
->tx
.used
[j
] = 0;
1665 * velocity_free_dma_rings - free PCI ring pointers
1666 * @vptr: Velocity to free from
1668 * Clean up the PCI ring buffers allocated to this velocity.
1670 static void velocity_free_dma_rings(struct velocity_info
*vptr
)
1672 const int size
= vptr
->options
.numrx
* sizeof(struct rx_desc
) +
1673 vptr
->options
.numtx
* sizeof(struct tx_desc
) * vptr
->tx
.numq
;
1675 dma_free_coherent(vptr
->dev
, size
, vptr
->rx
.ring
, vptr
->rx
.pool_dma
);
1678 static int velocity_init_rings(struct velocity_info
*vptr
, int mtu
)
1682 velocity_set_rxbufsize(vptr
, mtu
);
1684 ret
= velocity_init_dma_rings(vptr
);
1688 ret
= velocity_init_rd_ring(vptr
);
1690 goto err_free_dma_rings_0
;
1692 ret
= velocity_init_td_ring(vptr
);
1694 goto err_free_rd_ring_1
;
1699 velocity_free_rd_ring(vptr
);
1700 err_free_dma_rings_0
:
1701 velocity_free_dma_rings(vptr
);
1706 * velocity_free_tx_buf - free transmit buffer
1710 * Release an transmit buffer. If the buffer was preallocated then
1711 * recycle it, if not then unmap the buffer.
1713 static void velocity_free_tx_buf(struct velocity_info
*vptr
,
1714 struct velocity_td_info
*tdinfo
, struct tx_desc
*td
)
1716 struct sk_buff
*skb
= tdinfo
->skb
;
1720 * Don't unmap the pre-allocated tx_bufs
1722 for (i
= 0; i
< tdinfo
->nskb_dma
; i
++) {
1723 size_t pktlen
= max_t(size_t, skb
->len
, ETH_ZLEN
);
1725 /* For scatter-gather */
1726 if (skb_shinfo(skb
)->nr_frags
> 0)
1727 pktlen
= max_t(size_t, pktlen
,
1728 td
->td_buf
[i
].size
& ~TD_QUEUE
);
1730 dma_unmap_single(vptr
->dev
, tdinfo
->skb_dma
[i
],
1731 le16_to_cpu(pktlen
), DMA_TO_DEVICE
);
1733 dev_consume_skb_irq(skb
);
1738 * FIXME: could we merge this with velocity_free_tx_buf ?
1740 static void velocity_free_td_ring_entry(struct velocity_info
*vptr
,
1743 struct velocity_td_info
*td_info
= &(vptr
->tx
.infos
[q
][n
]);
1746 if (td_info
== NULL
)
1750 for (i
= 0; i
< td_info
->nskb_dma
; i
++) {
1751 if (td_info
->skb_dma
[i
]) {
1752 dma_unmap_single(vptr
->dev
, td_info
->skb_dma
[i
],
1753 td_info
->skb
->len
, DMA_TO_DEVICE
);
1754 td_info
->skb_dma
[i
] = 0;
1757 dev_kfree_skb(td_info
->skb
);
1758 td_info
->skb
= NULL
;
1763 * velocity_free_td_ring - free td ring
1766 * Free up the transmit ring for this particular velocity adapter.
1767 * We free the ring contents but not the ring itself.
1769 static void velocity_free_td_ring(struct velocity_info
*vptr
)
1773 for (j
= 0; j
< vptr
->tx
.numq
; j
++) {
1774 if (vptr
->tx
.infos
[j
] == NULL
)
1776 for (i
= 0; i
< vptr
->options
.numtx
; i
++)
1777 velocity_free_td_ring_entry(vptr
, j
, i
);
1779 kfree(vptr
->tx
.infos
[j
]);
1780 vptr
->tx
.infos
[j
] = NULL
;
1784 static void velocity_free_rings(struct velocity_info
*vptr
)
1786 velocity_free_td_ring(vptr
);
1787 velocity_free_rd_ring(vptr
);
1788 velocity_free_dma_rings(vptr
);
1792 * velocity_error - handle error from controller
1794 * @status: card status
1796 * Process an error report from the hardware and attempt to recover
1797 * the card itself. At the moment we cannot recover from some
1798 * theoretically impossible errors but this could be fixed using
1799 * the pci_device_failed logic to bounce the hardware
1802 static void velocity_error(struct velocity_info
*vptr
, int status
)
1805 if (status
& ISR_TXSTLI
) {
1806 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
1808 printk(KERN_ERR
"TD structure error TDindex=%hx\n", readw(®s
->TDIdx
[0]));
1809 BYTE_REG_BITS_ON(TXESR_TDSTR
, ®s
->TXESR
);
1810 writew(TRDCSR_RUN
, ®s
->TDCSRClr
);
1811 netif_stop_queue(vptr
->netdev
);
1813 /* FIXME: port over the pci_device_failed code and use it
1817 if (status
& ISR_SRCI
) {
1818 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
1821 if (vptr
->options
.spd_dpx
== SPD_DPX_AUTO
) {
1822 vptr
->mii_status
= check_connection_type(regs
);
1825 * If it is a 3119, disable frame bursting in
1826 * halfduplex mode and enable it in fullduplex
1829 if (vptr
->rev_id
< REV_ID_VT3216_A0
) {
1830 if (vptr
->mii_status
& VELOCITY_DUPLEX_FULL
)
1831 BYTE_REG_BITS_ON(TCR_TB2BDIS
, ®s
->TCR
);
1833 BYTE_REG_BITS_OFF(TCR_TB2BDIS
, ®s
->TCR
);
1836 * Only enable CD heart beat counter in 10HD mode
1838 if (!(vptr
->mii_status
& VELOCITY_DUPLEX_FULL
) && (vptr
->mii_status
& VELOCITY_SPEED_10
))
1839 BYTE_REG_BITS_OFF(TESTCFG_HBDIS
, ®s
->TESTCFG
);
1841 BYTE_REG_BITS_ON(TESTCFG_HBDIS
, ®s
->TESTCFG
);
1843 setup_queue_timers(vptr
);
1846 * Get link status from PHYSR0
1848 linked
= readb(®s
->PHYSR0
) & PHYSR0_LINKGD
;
1851 vptr
->mii_status
&= ~VELOCITY_LINK_FAIL
;
1852 netif_carrier_on(vptr
->netdev
);
1854 vptr
->mii_status
|= VELOCITY_LINK_FAIL
;
1855 netif_carrier_off(vptr
->netdev
);
1858 velocity_print_link_status(vptr
);
1859 enable_flow_control_ability(vptr
);
1862 * Re-enable auto-polling because SRCI will disable
1866 enable_mii_autopoll(regs
);
1868 if (vptr
->mii_status
& VELOCITY_LINK_FAIL
)
1869 netif_stop_queue(vptr
->netdev
);
1871 netif_wake_queue(vptr
->netdev
);
1874 if (status
& ISR_MIBFI
)
1875 velocity_update_hw_mibs(vptr
);
1876 if (status
& ISR_LSTEI
)
1877 mac_rx_queue_wake(vptr
->mac_regs
);
1881 * tx_srv - transmit interrupt service
1884 * Scan the queues looking for transmitted packets that
1885 * we can complete and clean up. Update any statistics as
1888 static int velocity_tx_srv(struct velocity_info
*vptr
)
1895 struct velocity_td_info
*tdinfo
;
1896 struct net_device_stats
*stats
= &vptr
->netdev
->stats
;
1898 for (qnum
= 0; qnum
< vptr
->tx
.numq
; qnum
++) {
1899 for (idx
= vptr
->tx
.tail
[qnum
]; vptr
->tx
.used
[qnum
] > 0;
1900 idx
= (idx
+ 1) % vptr
->options
.numtx
) {
1905 td
= &(vptr
->tx
.rings
[qnum
][idx
]);
1906 tdinfo
= &(vptr
->tx
.infos
[qnum
][idx
]);
1908 if (td
->tdesc0
.len
& OWNED_BY_NIC
)
1914 if (td
->tdesc0
.TSR
& TSR0_TERR
) {
1916 stats
->tx_dropped
++;
1917 if (td
->tdesc0
.TSR
& TSR0_CDH
)
1918 stats
->tx_heartbeat_errors
++;
1919 if (td
->tdesc0
.TSR
& TSR0_CRS
)
1920 stats
->tx_carrier_errors
++;
1921 if (td
->tdesc0
.TSR
& TSR0_ABT
)
1922 stats
->tx_aborted_errors
++;
1923 if (td
->tdesc0
.TSR
& TSR0_OWC
)
1924 stats
->tx_window_errors
++;
1926 stats
->tx_packets
++;
1927 stats
->tx_bytes
+= tdinfo
->skb
->len
;
1929 velocity_free_tx_buf(vptr
, tdinfo
, td
);
1930 vptr
->tx
.used
[qnum
]--;
1932 vptr
->tx
.tail
[qnum
] = idx
;
1934 if (AVAIL_TD(vptr
, qnum
) < 1)
1938 * Look to see if we should kick the transmit network
1939 * layer for more work.
1941 if (netif_queue_stopped(vptr
->netdev
) && (full
== 0) &&
1942 (!(vptr
->mii_status
& VELOCITY_LINK_FAIL
))) {
1943 netif_wake_queue(vptr
->netdev
);
1949 * velocity_rx_csum - checksum process
1950 * @rd: receive packet descriptor
1951 * @skb: network layer packet buffer
1953 * Process the status bits for the received packet and determine
1954 * if the checksum was computed and verified by the hardware
1956 static inline void velocity_rx_csum(struct rx_desc
*rd
, struct sk_buff
*skb
)
1958 skb_checksum_none_assert(skb
);
1960 if (rd
->rdesc1
.CSM
& CSM_IPKT
) {
1961 if (rd
->rdesc1
.CSM
& CSM_IPOK
) {
1962 if ((rd
->rdesc1
.CSM
& CSM_TCPKT
) ||
1963 (rd
->rdesc1
.CSM
& CSM_UDPKT
)) {
1964 if (!(rd
->rdesc1
.CSM
& CSM_TUPOK
))
1967 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1973 * velocity_rx_copy - in place Rx copy for small packets
1974 * @rx_skb: network layer packet buffer candidate
1975 * @pkt_size: received data size
1976 * @rd: receive packet descriptor
1977 * @dev: network device
1979 * Replace the current skb that is scheduled for Rx processing by a
1980 * shorter, immediately allocated skb, if the received packet is small
1981 * enough. This function returns a negative value if the received
1982 * packet is too big or if memory is exhausted.
1984 static int velocity_rx_copy(struct sk_buff
**rx_skb
, int pkt_size
,
1985 struct velocity_info
*vptr
)
1988 if (pkt_size
< rx_copybreak
) {
1989 struct sk_buff
*new_skb
;
1991 new_skb
= netdev_alloc_skb_ip_align(vptr
->netdev
, pkt_size
);
1993 new_skb
->ip_summed
= rx_skb
[0]->ip_summed
;
1994 skb_copy_from_linear_data(*rx_skb
, new_skb
->data
, pkt_size
);
2004 * velocity_iph_realign - IP header alignment
2005 * @vptr: velocity we are handling
2006 * @skb: network layer packet buffer
2007 * @pkt_size: received data size
2009 * Align IP header on a 2 bytes boundary. This behavior can be
2010 * configured by the user.
2012 static inline void velocity_iph_realign(struct velocity_info
*vptr
,
2013 struct sk_buff
*skb
, int pkt_size
)
2015 if (vptr
->flags
& VELOCITY_FLAGS_IP_ALIGN
) {
2016 memmove(skb
->data
+ 2, skb
->data
, pkt_size
);
2017 skb_reserve(skb
, 2);
2022 * velocity_receive_frame - received packet processor
2023 * @vptr: velocity we are handling
2026 * A packet has arrived. We process the packet and if appropriate
2027 * pass the frame up the network stack
2029 static int velocity_receive_frame(struct velocity_info
*vptr
, int idx
)
2031 struct net_device_stats
*stats
= &vptr
->netdev
->stats
;
2032 struct velocity_rd_info
*rd_info
= &(vptr
->rx
.info
[idx
]);
2033 struct rx_desc
*rd
= &(vptr
->rx
.ring
[idx
]);
2034 int pkt_len
= le16_to_cpu(rd
->rdesc0
.len
) & 0x3fff;
2035 struct sk_buff
*skb
;
2037 if (unlikely(rd
->rdesc0
.RSR
& (RSR_STP
| RSR_EDP
| RSR_RL
))) {
2038 if (rd
->rdesc0
.RSR
& (RSR_STP
| RSR_EDP
))
2039 VELOCITY_PRT(MSG_LEVEL_VERBOSE
, KERN_ERR
" %s : the received frame spans multiple RDs.\n", vptr
->netdev
->name
);
2040 stats
->rx_length_errors
++;
2044 if (rd
->rdesc0
.RSR
& RSR_MAR
)
2049 dma_sync_single_for_cpu(vptr
->dev
, rd_info
->skb_dma
,
2050 vptr
->rx
.buf_sz
, DMA_FROM_DEVICE
);
2052 velocity_rx_csum(rd
, skb
);
2054 if (velocity_rx_copy(&skb
, pkt_len
, vptr
) < 0) {
2055 velocity_iph_realign(vptr
, skb
, pkt_len
);
2056 rd_info
->skb
= NULL
;
2057 dma_unmap_single(vptr
->dev
, rd_info
->skb_dma
, vptr
->rx
.buf_sz
,
2060 dma_sync_single_for_device(vptr
->dev
, rd_info
->skb_dma
,
2061 vptr
->rx
.buf_sz
, DMA_FROM_DEVICE
);
2064 skb_put(skb
, pkt_len
- 4);
2065 skb
->protocol
= eth_type_trans(skb
, vptr
->netdev
);
2067 if (rd
->rdesc0
.RSR
& RSR_DETAG
) {
2068 u16 vid
= swab16(le16_to_cpu(rd
->rdesc1
.PQTAG
));
2070 __vlan_hwaccel_put_tag(skb
, htons(ETH_P_8021Q
), vid
);
2072 netif_receive_skb(skb
);
2074 stats
->rx_bytes
+= pkt_len
;
2075 stats
->rx_packets
++;
2081 * velocity_rx_srv - service RX interrupt
2084 * Walk the receive ring of the velocity adapter and remove
2085 * any received packets from the receive queue. Hand the ring
2086 * slots back to the adapter for reuse.
2088 static int velocity_rx_srv(struct velocity_info
*vptr
, int budget_left
)
2090 struct net_device_stats
*stats
= &vptr
->netdev
->stats
;
2091 int rd_curr
= vptr
->rx
.curr
;
2094 while (works
< budget_left
) {
2095 struct rx_desc
*rd
= vptr
->rx
.ring
+ rd_curr
;
2097 if (!vptr
->rx
.info
[rd_curr
].skb
)
2100 if (rd
->rdesc0
.len
& OWNED_BY_NIC
)
2106 * Don't drop CE or RL error frame although RXOK is off
2108 if (rd
->rdesc0
.RSR
& (RSR_RXOK
| RSR_CE
| RSR_RL
)) {
2109 if (velocity_receive_frame(vptr
, rd_curr
) < 0)
2110 stats
->rx_dropped
++;
2112 if (rd
->rdesc0
.RSR
& RSR_CRC
)
2113 stats
->rx_crc_errors
++;
2114 if (rd
->rdesc0
.RSR
& RSR_FAE
)
2115 stats
->rx_frame_errors
++;
2117 stats
->rx_dropped
++;
2120 rd
->size
|= RX_INTEN
;
2123 if (rd_curr
>= vptr
->options
.numrx
)
2128 vptr
->rx
.curr
= rd_curr
;
2130 if ((works
> 0) && (velocity_rx_refill(vptr
) > 0))
2131 velocity_give_many_rx_descs(vptr
);
2137 static int velocity_poll(struct napi_struct
*napi
, int budget
)
2139 struct velocity_info
*vptr
= container_of(napi
,
2140 struct velocity_info
, napi
);
2141 unsigned int rx_done
;
2142 unsigned long flags
;
2145 * Do rx and tx twice for performance (taken from the VIA
2146 * out-of-tree driver).
2148 rx_done
= velocity_rx_srv(vptr
, budget
);
2149 spin_lock_irqsave(&vptr
->lock
, flags
);
2150 velocity_tx_srv(vptr
);
2151 /* If budget not fully consumed, exit the polling mode */
2152 if (rx_done
< budget
) {
2153 napi_complete_done(napi
, rx_done
);
2154 mac_enable_int(vptr
->mac_regs
);
2156 spin_unlock_irqrestore(&vptr
->lock
, flags
);
2162 * velocity_intr - interrupt callback
2163 * @irq: interrupt number
2164 * @dev_instance: interrupting device
2166 * Called whenever an interrupt is generated by the velocity
2167 * adapter IRQ line. We may not be the source of the interrupt
2168 * and need to identify initially if we are, and if not exit as
2169 * efficiently as possible.
2171 static irqreturn_t
velocity_intr(int irq
, void *dev_instance
)
2173 struct net_device
*dev
= dev_instance
;
2174 struct velocity_info
*vptr
= netdev_priv(dev
);
2177 spin_lock(&vptr
->lock
);
2178 isr_status
= mac_read_isr(vptr
->mac_regs
);
2181 if (isr_status
== 0) {
2182 spin_unlock(&vptr
->lock
);
2186 /* Ack the interrupt */
2187 mac_write_isr(vptr
->mac_regs
, isr_status
);
2189 if (likely(napi_schedule_prep(&vptr
->napi
))) {
2190 mac_disable_int(vptr
->mac_regs
);
2191 __napi_schedule(&vptr
->napi
);
2194 if (isr_status
& (~(ISR_PRXI
| ISR_PPRXI
| ISR_PTXI
| ISR_PPTXI
)))
2195 velocity_error(vptr
, isr_status
);
2197 spin_unlock(&vptr
->lock
);
2203 * velocity_open - interface activation callback
2204 * @dev: network layer device to open
2206 * Called when the network layer brings the interface up. Returns
2207 * a negative posix error code on failure, or zero on success.
2209 * All the ring allocation and set up is done on open for this
2210 * adapter to minimise memory usage when inactive
2212 static int velocity_open(struct net_device
*dev
)
2214 struct velocity_info
*vptr
= netdev_priv(dev
);
2217 ret
= velocity_init_rings(vptr
, dev
->mtu
);
2221 /* Ensure chip is running */
2222 velocity_set_power_state(vptr
, PCI_D0
);
2224 velocity_init_registers(vptr
, VELOCITY_INIT_COLD
);
2226 ret
= request_irq(dev
->irq
, velocity_intr
, IRQF_SHARED
,
2229 /* Power down the chip */
2230 velocity_set_power_state(vptr
, PCI_D3hot
);
2231 velocity_free_rings(vptr
);
2235 velocity_give_many_rx_descs(vptr
);
2237 mac_enable_int(vptr
->mac_regs
);
2238 netif_start_queue(dev
);
2239 napi_enable(&vptr
->napi
);
2240 vptr
->flags
|= VELOCITY_FLAGS_OPENED
;
2246 * velocity_shutdown - shut down the chip
2247 * @vptr: velocity to deactivate
2249 * Shuts down the internal operations of the velocity and
2250 * disables interrupts, autopolling, transmit and receive
2252 static void velocity_shutdown(struct velocity_info
*vptr
)
2254 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
2255 mac_disable_int(regs
);
2256 writel(CR0_STOP
, ®s
->CR0Set
);
2257 writew(0xFFFF, ®s
->TDCSRClr
);
2258 writeb(0xFF, ®s
->RDCSRClr
);
2259 safe_disable_mii_autopoll(regs
);
2260 mac_clear_isr(regs
);
2264 * velocity_change_mtu - MTU change callback
2265 * @dev: network device
2266 * @new_mtu: desired MTU
2268 * Handle requests from the networking layer for MTU change on
2269 * this interface. It gets called on a change by the network layer.
2270 * Return zero for success or negative posix error code.
2272 static int velocity_change_mtu(struct net_device
*dev
, int new_mtu
)
2274 struct velocity_info
*vptr
= netdev_priv(dev
);
2277 if (!netif_running(dev
)) {
2282 if (dev
->mtu
!= new_mtu
) {
2283 struct velocity_info
*tmp_vptr
;
2284 unsigned long flags
;
2288 tmp_vptr
= kzalloc(sizeof(*tmp_vptr
), GFP_KERNEL
);
2294 tmp_vptr
->netdev
= dev
;
2295 tmp_vptr
->pdev
= vptr
->pdev
;
2296 tmp_vptr
->dev
= vptr
->dev
;
2297 tmp_vptr
->options
= vptr
->options
;
2298 tmp_vptr
->tx
.numq
= vptr
->tx
.numq
;
2300 ret
= velocity_init_rings(tmp_vptr
, new_mtu
);
2302 goto out_free_tmp_vptr_1
;
2304 napi_disable(&vptr
->napi
);
2306 spin_lock_irqsave(&vptr
->lock
, flags
);
2308 netif_stop_queue(dev
);
2309 velocity_shutdown(vptr
);
2314 vptr
->rx
= tmp_vptr
->rx
;
2315 vptr
->tx
= tmp_vptr
->tx
;
2322 velocity_init_registers(vptr
, VELOCITY_INIT_COLD
);
2324 velocity_give_many_rx_descs(vptr
);
2326 napi_enable(&vptr
->napi
);
2328 mac_enable_int(vptr
->mac_regs
);
2329 netif_start_queue(dev
);
2331 spin_unlock_irqrestore(&vptr
->lock
, flags
);
2333 velocity_free_rings(tmp_vptr
);
2335 out_free_tmp_vptr_1
:
2342 #ifdef CONFIG_NET_POLL_CONTROLLER
2344 * velocity_poll_controller - Velocity Poll controller function
2345 * @dev: network device
2348 * Used by NETCONSOLE and other diagnostic tools to allow network I/P
2349 * with interrupts disabled.
2351 static void velocity_poll_controller(struct net_device
*dev
)
2353 disable_irq(dev
->irq
);
2354 velocity_intr(dev
->irq
, dev
);
2355 enable_irq(dev
->irq
);
2360 * velocity_mii_ioctl - MII ioctl handler
2361 * @dev: network device
2362 * @ifr: the ifreq block for the ioctl
2365 * Process MII requests made via ioctl from the network layer. These
2366 * are used by tools like kudzu to interrogate the link state of the
2369 static int velocity_mii_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
2371 struct velocity_info
*vptr
= netdev_priv(dev
);
2372 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
2373 unsigned long flags
;
2374 struct mii_ioctl_data
*miidata
= if_mii(ifr
);
2379 miidata
->phy_id
= readb(®s
->MIIADR
) & 0x1f;
2382 if (velocity_mii_read(vptr
->mac_regs
, miidata
->reg_num
& 0x1f, &(miidata
->val_out
)) < 0)
2386 spin_lock_irqsave(&vptr
->lock
, flags
);
2387 err
= velocity_mii_write(vptr
->mac_regs
, miidata
->reg_num
& 0x1f, miidata
->val_in
);
2388 spin_unlock_irqrestore(&vptr
->lock
, flags
);
2389 check_connection_type(vptr
->mac_regs
);
2400 * velocity_ioctl - ioctl entry point
2401 * @dev: network device
2402 * @rq: interface request ioctl
2403 * @cmd: command code
2405 * Called when the user issues an ioctl request to the network
2406 * device in question. The velocity interface supports MII.
2408 static int velocity_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
2410 struct velocity_info
*vptr
= netdev_priv(dev
);
2413 /* If we are asked for information and the device is power
2414 saving then we need to bring the device back up to talk to it */
2416 if (!netif_running(dev
))
2417 velocity_set_power_state(vptr
, PCI_D0
);
2420 case SIOCGMIIPHY
: /* Get address of MII PHY in use. */
2421 case SIOCGMIIREG
: /* Read MII PHY register. */
2422 case SIOCSMIIREG
: /* Write to MII PHY register. */
2423 ret
= velocity_mii_ioctl(dev
, rq
, cmd
);
2429 if (!netif_running(dev
))
2430 velocity_set_power_state(vptr
, PCI_D3hot
);
2437 * velocity_get_status - statistics callback
2438 * @dev: network device
2440 * Callback from the network layer to allow driver statistics
2441 * to be resynchronized with hardware collected state. In the
2442 * case of the velocity we need to pull the MIB counters from
2443 * the hardware into the counters before letting the network
2444 * layer display them.
2446 static struct net_device_stats
*velocity_get_stats(struct net_device
*dev
)
2448 struct velocity_info
*vptr
= netdev_priv(dev
);
2450 /* If the hardware is down, don't touch MII */
2451 if (!netif_running(dev
))
2454 spin_lock_irq(&vptr
->lock
);
2455 velocity_update_hw_mibs(vptr
);
2456 spin_unlock_irq(&vptr
->lock
);
2458 dev
->stats
.rx_packets
= vptr
->mib_counter
[HW_MIB_ifRxAllPkts
];
2459 dev
->stats
.rx_errors
= vptr
->mib_counter
[HW_MIB_ifRxErrorPkts
];
2460 dev
->stats
.rx_length_errors
= vptr
->mib_counter
[HW_MIB_ifInRangeLengthErrors
];
2462 // unsigned long rx_dropped; /* no space in linux buffers */
2463 dev
->stats
.collisions
= vptr
->mib_counter
[HW_MIB_ifTxEtherCollisions
];
2464 /* detailed rx_errors: */
2465 // unsigned long rx_length_errors;
2466 // unsigned long rx_over_errors; /* receiver ring buff overflow */
2467 dev
->stats
.rx_crc_errors
= vptr
->mib_counter
[HW_MIB_ifRxPktCRCE
];
2468 // unsigned long rx_frame_errors; /* recv'd frame alignment error */
2469 // unsigned long rx_fifo_errors; /* recv'r fifo overrun */
2470 // unsigned long rx_missed_errors; /* receiver missed packet */
2472 /* detailed tx_errors */
2473 // unsigned long tx_fifo_errors;
2479 * velocity_close - close adapter callback
2480 * @dev: network device
2482 * Callback from the network layer when the velocity is being
2483 * deactivated by the network layer
2485 static int velocity_close(struct net_device
*dev
)
2487 struct velocity_info
*vptr
= netdev_priv(dev
);
2489 napi_disable(&vptr
->napi
);
2490 netif_stop_queue(dev
);
2491 velocity_shutdown(vptr
);
2493 if (vptr
->flags
& VELOCITY_FLAGS_WOL_ENABLED
)
2494 velocity_get_ip(vptr
);
2496 free_irq(dev
->irq
, dev
);
2498 velocity_free_rings(vptr
);
2500 vptr
->flags
&= (~VELOCITY_FLAGS_OPENED
);
2505 * velocity_xmit - transmit packet callback
2506 * @skb: buffer to transmit
2507 * @dev: network device
2509 * Called by the networ layer to request a packet is queued to
2510 * the velocity. Returns zero on success.
2512 static netdev_tx_t
velocity_xmit(struct sk_buff
*skb
,
2513 struct net_device
*dev
)
2515 struct velocity_info
*vptr
= netdev_priv(dev
);
2517 struct tx_desc
*td_ptr
;
2518 struct velocity_td_info
*tdinfo
;
2519 unsigned long flags
;
2524 if (skb_padto(skb
, ETH_ZLEN
))
2527 /* The hardware can handle at most 7 memory segments, so merge
2528 * the skb if there are more */
2529 if (skb_shinfo(skb
)->nr_frags
> 6 && __skb_linearize(skb
)) {
2530 dev_kfree_skb_any(skb
);
2531 return NETDEV_TX_OK
;
2534 pktlen
= skb_shinfo(skb
)->nr_frags
== 0 ?
2535 max_t(unsigned int, skb
->len
, ETH_ZLEN
) :
2538 spin_lock_irqsave(&vptr
->lock
, flags
);
2540 index
= vptr
->tx
.curr
[qnum
];
2541 td_ptr
= &(vptr
->tx
.rings
[qnum
][index
]);
2542 tdinfo
= &(vptr
->tx
.infos
[qnum
][index
]);
2544 td_ptr
->tdesc1
.TCR
= TCR0_TIC
;
2545 td_ptr
->td_buf
[0].size
&= ~TD_QUEUE
;
2548 * Map the linear network buffer into PCI space and
2549 * add it to the transmit ring.
2552 tdinfo
->skb_dma
[0] = dma_map_single(vptr
->dev
, skb
->data
, pktlen
,
2554 td_ptr
->tdesc0
.len
= cpu_to_le16(pktlen
);
2555 td_ptr
->td_buf
[0].pa_low
= cpu_to_le32(tdinfo
->skb_dma
[0]);
2556 td_ptr
->td_buf
[0].pa_high
= 0;
2557 td_ptr
->td_buf
[0].size
= cpu_to_le16(pktlen
);
2559 /* Handle fragments */
2560 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
2561 const skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
2563 tdinfo
->skb_dma
[i
+ 1] = skb_frag_dma_map(vptr
->dev
,
2565 skb_frag_size(frag
),
2568 td_ptr
->td_buf
[i
+ 1].pa_low
= cpu_to_le32(tdinfo
->skb_dma
[i
+ 1]);
2569 td_ptr
->td_buf
[i
+ 1].pa_high
= 0;
2570 td_ptr
->td_buf
[i
+ 1].size
= cpu_to_le16(skb_frag_size(frag
));
2572 tdinfo
->nskb_dma
= i
+ 1;
2574 td_ptr
->tdesc1
.cmd
= TCPLS_NORMAL
+ (tdinfo
->nskb_dma
+ 1) * 16;
2576 if (skb_vlan_tag_present(skb
)) {
2577 td_ptr
->tdesc1
.vlan
= cpu_to_le16(skb_vlan_tag_get(skb
));
2578 td_ptr
->tdesc1
.TCR
|= TCR0_VETAG
;
2582 * Handle hardware checksum
2584 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
2585 const struct iphdr
*ip
= ip_hdr(skb
);
2586 if (ip
->protocol
== IPPROTO_TCP
)
2587 td_ptr
->tdesc1
.TCR
|= TCR0_TCPCK
;
2588 else if (ip
->protocol
== IPPROTO_UDP
)
2589 td_ptr
->tdesc1
.TCR
|= (TCR0_UDPCK
);
2590 td_ptr
->tdesc1
.TCR
|= TCR0_IPCK
;
2595 prev
= vptr
->options
.numtx
- 1;
2596 td_ptr
->tdesc0
.len
|= OWNED_BY_NIC
;
2597 vptr
->tx
.used
[qnum
]++;
2598 vptr
->tx
.curr
[qnum
] = (index
+ 1) % vptr
->options
.numtx
;
2600 if (AVAIL_TD(vptr
, qnum
) < 1)
2601 netif_stop_queue(dev
);
2603 td_ptr
= &(vptr
->tx
.rings
[qnum
][prev
]);
2604 td_ptr
->td_buf
[0].size
|= TD_QUEUE
;
2605 mac_tx_queue_wake(vptr
->mac_regs
, qnum
);
2607 spin_unlock_irqrestore(&vptr
->lock
, flags
);
2609 return NETDEV_TX_OK
;
2612 static const struct net_device_ops velocity_netdev_ops
= {
2613 .ndo_open
= velocity_open
,
2614 .ndo_stop
= velocity_close
,
2615 .ndo_start_xmit
= velocity_xmit
,
2616 .ndo_get_stats
= velocity_get_stats
,
2617 .ndo_validate_addr
= eth_validate_addr
,
2618 .ndo_set_mac_address
= eth_mac_addr
,
2619 .ndo_set_rx_mode
= velocity_set_multi
,
2620 .ndo_change_mtu
= velocity_change_mtu
,
2621 .ndo_do_ioctl
= velocity_ioctl
,
2622 .ndo_vlan_rx_add_vid
= velocity_vlan_rx_add_vid
,
2623 .ndo_vlan_rx_kill_vid
= velocity_vlan_rx_kill_vid
,
2624 #ifdef CONFIG_NET_POLL_CONTROLLER
2625 .ndo_poll_controller
= velocity_poll_controller
,
2630 * velocity_init_info - init private data
2632 * @vptr: Velocity info
2635 * Set up the initial velocity_info struct for the device that has been
2638 static void velocity_init_info(struct velocity_info
*vptr
,
2639 const struct velocity_info_tbl
*info
)
2641 vptr
->chip_id
= info
->chip_id
;
2642 vptr
->tx
.numq
= info
->txqueue
;
2643 vptr
->multicast_limit
= MCAM_SIZE
;
2644 spin_lock_init(&vptr
->lock
);
2648 * velocity_get_pci_info - retrieve PCI info for device
2649 * @vptr: velocity device
2650 * @pdev: PCI device it matches
2652 * Retrieve the PCI configuration space data that interests us from
2653 * the kernel PCI layer
2655 static int velocity_get_pci_info(struct velocity_info
*vptr
)
2657 struct pci_dev
*pdev
= vptr
->pdev
;
2659 pci_set_master(pdev
);
2661 vptr
->ioaddr
= pci_resource_start(pdev
, 0);
2662 vptr
->memaddr
= pci_resource_start(pdev
, 1);
2664 if (!(pci_resource_flags(pdev
, 0) & IORESOURCE_IO
)) {
2666 "region #0 is not an I/O resource, aborting.\n");
2670 if ((pci_resource_flags(pdev
, 1) & IORESOURCE_IO
)) {
2672 "region #1 is an I/O resource, aborting.\n");
2676 if (pci_resource_len(pdev
, 1) < VELOCITY_IO_SIZE
) {
2677 dev_err(&pdev
->dev
, "region #1 is too small.\n");
2685 * velocity_get_platform_info - retrieve platform info for device
2686 * @vptr: velocity device
2687 * @pdev: platform device it matches
2689 * Retrieve the Platform configuration data that interests us
2691 static int velocity_get_platform_info(struct velocity_info
*vptr
)
2693 struct resource res
;
2696 if (of_get_property(vptr
->dev
->of_node
, "no-eeprom", NULL
))
2697 vptr
->no_eeprom
= 1;
2699 ret
= of_address_to_resource(vptr
->dev
->of_node
, 0, &res
);
2701 dev_err(vptr
->dev
, "unable to find memory address\n");
2705 vptr
->memaddr
= res
.start
;
2707 if (resource_size(&res
) < VELOCITY_IO_SIZE
) {
2708 dev_err(vptr
->dev
, "memory region is too small.\n");
2716 * velocity_print_info - per driver data
2719 * Print per driver data as the kernel driver finds Velocity
2722 static void velocity_print_info(struct velocity_info
*vptr
)
2724 struct net_device
*dev
= vptr
->netdev
;
2726 printk(KERN_INFO
"%s: %s\n", dev
->name
, get_chip_name(vptr
->chip_id
));
2727 printk(KERN_INFO
"%s: Ethernet Address: %pM\n",
2728 dev
->name
, dev
->dev_addr
);
2731 static u32
velocity_get_link(struct net_device
*dev
)
2733 struct velocity_info
*vptr
= netdev_priv(dev
);
2734 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
2735 return BYTE_REG_BITS_IS_ON(PHYSR0_LINKGD
, ®s
->PHYSR0
) ? 1 : 0;
2739 * velocity_probe - set up discovered velocity device
2741 * @ent: PCI device table entry that matched
2742 * @bustype: bus that device is connected to
2744 * Configure a discovered adapter from scratch. Return a negative
2745 * errno error code on failure paths.
2747 static int velocity_probe(struct device
*dev
, int irq
,
2748 const struct velocity_info_tbl
*info
,
2749 enum velocity_bus_type bustype
)
2751 static int first
= 1;
2752 struct net_device
*netdev
;
2754 const char *drv_string
;
2755 struct velocity_info
*vptr
;
2756 struct mac_regs __iomem
*regs
;
2759 /* FIXME: this driver, like almost all other ethernet drivers,
2760 * can support more than MAX_UNITS.
2762 if (velocity_nics
>= MAX_UNITS
) {
2763 dev_notice(dev
, "already found %d NICs.\n", velocity_nics
);
2767 netdev
= alloc_etherdev(sizeof(struct velocity_info
));
2771 /* Chain it all together */
2773 SET_NETDEV_DEV(netdev
, dev
);
2774 vptr
= netdev_priv(netdev
);
2777 printk(KERN_INFO
"%s Ver. %s\n",
2778 VELOCITY_FULL_DRV_NAM
, VELOCITY_VERSION
);
2779 printk(KERN_INFO
"Copyright (c) 2002, 2003 VIA Networking Technologies, Inc.\n");
2780 printk(KERN_INFO
"Copyright (c) 2004 Red Hat Inc.\n");
2785 vptr
->netdev
= netdev
;
2788 velocity_init_info(vptr
, info
);
2790 if (bustype
== BUS_PCI
) {
2791 vptr
->pdev
= to_pci_dev(dev
);
2793 ret
= velocity_get_pci_info(vptr
);
2798 ret
= velocity_get_platform_info(vptr
);
2803 regs
= ioremap(vptr
->memaddr
, VELOCITY_IO_SIZE
);
2809 vptr
->mac_regs
= regs
;
2810 vptr
->rev_id
= readb(®s
->rev_id
);
2812 mac_wol_reset(regs
);
2814 for (i
= 0; i
< 6; i
++)
2815 netdev
->dev_addr
[i
] = readb(®s
->PAR
[i
]);
2818 drv_string
= dev_driver_string(dev
);
2820 velocity_get_options(&vptr
->options
, velocity_nics
, drv_string
);
2823 * Mask out the options cannot be set to the chip
2826 vptr
->options
.flags
&= info
->flags
;
2829 * Enable the chip specified capbilities
2832 vptr
->flags
= vptr
->options
.flags
| (info
->flags
& 0xFF000000UL
);
2834 vptr
->wol_opts
= vptr
->options
.wol_opts
;
2835 vptr
->flags
|= VELOCITY_FLAGS_WOL_ENABLED
;
2837 vptr
->phy_id
= MII_GET_PHY_ID(vptr
->mac_regs
);
2839 netdev
->netdev_ops
= &velocity_netdev_ops
;
2840 netdev
->ethtool_ops
= &velocity_ethtool_ops
;
2841 netif_napi_add(netdev
, &vptr
->napi
, velocity_poll
,
2842 VELOCITY_NAPI_WEIGHT
);
2844 netdev
->hw_features
= NETIF_F_IP_CSUM
| NETIF_F_SG
|
2845 NETIF_F_HW_VLAN_CTAG_TX
;
2846 netdev
->features
|= NETIF_F_HW_VLAN_CTAG_TX
|
2847 NETIF_F_HW_VLAN_CTAG_FILTER
| NETIF_F_HW_VLAN_CTAG_RX
|
2850 /* MTU range: 64 - 9000 */
2851 netdev
->min_mtu
= VELOCITY_MIN_MTU
;
2852 netdev
->max_mtu
= VELOCITY_MAX_MTU
;
2854 ret
= register_netdev(netdev
);
2858 if (!velocity_get_link(netdev
)) {
2859 netif_carrier_off(netdev
);
2860 vptr
->mii_status
|= VELOCITY_LINK_FAIL
;
2863 velocity_print_info(vptr
);
2864 dev_set_drvdata(vptr
->dev
, netdev
);
2866 /* and leave the chip powered down */
2868 velocity_set_power_state(vptr
, PCI_D3hot
);
2874 netif_napi_del(&vptr
->napi
);
2877 free_netdev(netdev
);
2882 * velocity_remove - device unplug
2883 * @dev: device being removed
2885 * Device unload callback. Called on an unplug or on module
2886 * unload for each active device that is present. Disconnects
2887 * the device from the network layer and frees all the resources
2889 static int velocity_remove(struct device
*dev
)
2891 struct net_device
*netdev
= dev_get_drvdata(dev
);
2892 struct velocity_info
*vptr
= netdev_priv(netdev
);
2894 unregister_netdev(netdev
);
2895 netif_napi_del(&vptr
->napi
);
2896 iounmap(vptr
->mac_regs
);
2897 free_netdev(netdev
);
2903 static int velocity_pci_probe(struct pci_dev
*pdev
,
2904 const struct pci_device_id
*ent
)
2906 const struct velocity_info_tbl
*info
=
2907 &chip_info_table
[ent
->driver_data
];
2910 ret
= pci_enable_device(pdev
);
2914 ret
= pci_request_regions(pdev
, VELOCITY_NAME
);
2916 dev_err(&pdev
->dev
, "No PCI resources.\n");
2920 ret
= velocity_probe(&pdev
->dev
, pdev
->irq
, info
, BUS_PCI
);
2924 pci_release_regions(pdev
);
2926 pci_disable_device(pdev
);
2930 static void velocity_pci_remove(struct pci_dev
*pdev
)
2932 velocity_remove(&pdev
->dev
);
2934 pci_release_regions(pdev
);
2935 pci_disable_device(pdev
);
2938 static int velocity_platform_probe(struct platform_device
*pdev
)
2940 const struct of_device_id
*of_id
;
2941 const struct velocity_info_tbl
*info
;
2944 of_id
= of_match_device(velocity_of_ids
, &pdev
->dev
);
2949 irq
= irq_of_parse_and_map(pdev
->dev
.of_node
, 0);
2953 return velocity_probe(&pdev
->dev
, irq
, info
, BUS_PLATFORM
);
2956 static int velocity_platform_remove(struct platform_device
*pdev
)
2958 velocity_remove(&pdev
->dev
);
2963 #ifdef CONFIG_PM_SLEEP
2965 * wol_calc_crc - WOL CRC
2966 * @pattern: data pattern
2967 * @mask_pattern: mask
2969 * Compute the wake on lan crc hashes for the packet header
2970 * we are interested in.
2972 static u16
wol_calc_crc(int size
, u8
*pattern
, u8
*mask_pattern
)
2978 for (i
= 0; i
< size
; i
++) {
2979 mask
= mask_pattern
[i
];
2981 /* Skip this loop if the mask equals to zero */
2985 for (j
= 0; j
< 8; j
++) {
2986 if ((mask
& 0x01) == 0) {
2991 crc
= crc_ccitt(crc
, &(pattern
[i
* 8 + j
]), 1);
2994 /* Finally, invert the result once to get the correct data */
2996 return bitrev32(crc
) >> 16;
3000 * velocity_set_wol - set up for wake on lan
3001 * @vptr: velocity to set WOL status on
3003 * Set a card up for wake on lan either by unicast or by
3006 * FIXME: check static buffer is safe here
3008 static int velocity_set_wol(struct velocity_info
*vptr
)
3010 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
3011 enum speed_opt spd_dpx
= vptr
->options
.spd_dpx
;
3015 static u32 mask_pattern
[2][4] = {
3016 {0x00203000, 0x000003C0, 0x00000000, 0x0000000}, /* ARP */
3017 {0xfffff000, 0xffffffff, 0xffffffff, 0x000ffff} /* Magic Packet */
3020 writew(0xFFFF, ®s
->WOLCRClr
);
3021 writeb(WOLCFG_SAB
| WOLCFG_SAM
, ®s
->WOLCFGSet
);
3022 writew(WOLCR_MAGIC_EN
, ®s
->WOLCRSet
);
3025 if (vptr->wol_opts & VELOCITY_WOL_PHY)
3026 writew((WOLCR_LINKON_EN|WOLCR_LINKOFF_EN), ®s->WOLCRSet);
3029 if (vptr
->wol_opts
& VELOCITY_WOL_UCAST
)
3030 writew(WOLCR_UNICAST_EN
, ®s
->WOLCRSet
);
3032 if (vptr
->wol_opts
& VELOCITY_WOL_ARP
) {
3033 struct arp_packet
*arp
= (struct arp_packet
*) buf
;
3035 memset(buf
, 0, sizeof(struct arp_packet
) + 7);
3037 for (i
= 0; i
< 4; i
++)
3038 writel(mask_pattern
[0][i
], ®s
->ByteMask
[0][i
]);
3040 arp
->type
= htons(ETH_P_ARP
);
3041 arp
->ar_op
= htons(1);
3043 memcpy(arp
->ar_tip
, vptr
->ip_addr
, 4);
3045 crc
= wol_calc_crc((sizeof(struct arp_packet
) + 7) / 8, buf
,
3046 (u8
*) & mask_pattern
[0][0]);
3048 writew(crc
, ®s
->PatternCRC
[0]);
3049 writew(WOLCR_ARP_EN
, ®s
->WOLCRSet
);
3052 BYTE_REG_BITS_ON(PWCFG_WOLTYPE
, ®s
->PWCFGSet
);
3053 BYTE_REG_BITS_ON(PWCFG_LEGACY_WOLEN
, ®s
->PWCFGSet
);
3055 writew(0x0FFF, ®s
->WOLSRClr
);
3057 if (spd_dpx
== SPD_DPX_1000_FULL
)
3060 if (spd_dpx
!= SPD_DPX_AUTO
)
3061 goto advertise_done
;
3063 if (vptr
->mii_status
& VELOCITY_AUTONEG_ENABLE
) {
3064 if (PHYID_GET_PHY_ID(vptr
->phy_id
) == PHYID_CICADA_CS8201
)
3065 MII_REG_BITS_ON(AUXCR_MDPPS
, MII_NCONFIG
, vptr
->mac_regs
);
3067 MII_REG_BITS_OFF(ADVERTISE_1000FULL
| ADVERTISE_1000HALF
, MII_CTRL1000
, vptr
->mac_regs
);
3070 if (vptr
->mii_status
& VELOCITY_SPEED_1000
)
3071 MII_REG_BITS_ON(BMCR_ANRESTART
, MII_BMCR
, vptr
->mac_regs
);
3074 BYTE_REG_BITS_ON(CHIPGCR_FCMODE
, ®s
->CHIPGCR
);
3078 GCR
= readb(®s
->CHIPGCR
);
3079 GCR
= (GCR
& ~CHIPGCR_FCGMII
) | CHIPGCR_FCFDX
;
3080 writeb(GCR
, ®s
->CHIPGCR
);
3084 BYTE_REG_BITS_OFF(ISR_PWEI
, ®s
->ISR
);
3085 /* Turn on SWPTAG just before entering power mode */
3086 BYTE_REG_BITS_ON(STICKHW_SWPTAG
, ®s
->STICKHW
);
3087 /* Go to bed ..... */
3088 BYTE_REG_BITS_ON((STICKHW_DS1
| STICKHW_DS0
), ®s
->STICKHW
);
3094 * velocity_save_context - save registers
3096 * @context: buffer for stored context
3098 * Retrieve the current configuration from the velocity hardware
3099 * and stash it in the context structure, for use by the context
3100 * restore functions. This allows us to save things we need across
3103 static void velocity_save_context(struct velocity_info
*vptr
, struct velocity_context
*context
)
3105 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
3107 u8 __iomem
*ptr
= (u8 __iomem
*)regs
;
3109 for (i
= MAC_REG_PAR
; i
< MAC_REG_CR0_CLR
; i
+= 4)
3110 *((u32
*) (context
->mac_reg
+ i
)) = readl(ptr
+ i
);
3112 for (i
= MAC_REG_MAR
; i
< MAC_REG_TDCSR_CLR
; i
+= 4)
3113 *((u32
*) (context
->mac_reg
+ i
)) = readl(ptr
+ i
);
3115 for (i
= MAC_REG_RDBASE_LO
; i
< MAC_REG_FIFO_TEST0
; i
+= 4)
3116 *((u32
*) (context
->mac_reg
+ i
)) = readl(ptr
+ i
);
3120 static int velocity_suspend(struct device
*dev
)
3122 struct net_device
*netdev
= dev_get_drvdata(dev
);
3123 struct velocity_info
*vptr
= netdev_priv(netdev
);
3124 unsigned long flags
;
3126 if (!netif_running(vptr
->netdev
))
3129 netif_device_detach(vptr
->netdev
);
3131 spin_lock_irqsave(&vptr
->lock
, flags
);
3133 pci_save_state(vptr
->pdev
);
3135 if (vptr
->flags
& VELOCITY_FLAGS_WOL_ENABLED
) {
3136 velocity_get_ip(vptr
);
3137 velocity_save_context(vptr
, &vptr
->context
);
3138 velocity_shutdown(vptr
);
3139 velocity_set_wol(vptr
);
3141 pci_enable_wake(vptr
->pdev
, PCI_D3hot
, 1);
3142 velocity_set_power_state(vptr
, PCI_D3hot
);
3144 velocity_save_context(vptr
, &vptr
->context
);
3145 velocity_shutdown(vptr
);
3147 pci_disable_device(vptr
->pdev
);
3148 velocity_set_power_state(vptr
, PCI_D3hot
);
3151 spin_unlock_irqrestore(&vptr
->lock
, flags
);
3156 * velocity_restore_context - restore registers
3158 * @context: buffer for stored context
3160 * Reload the register configuration from the velocity context
3161 * created by velocity_save_context.
3163 static void velocity_restore_context(struct velocity_info
*vptr
, struct velocity_context
*context
)
3165 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
3167 u8 __iomem
*ptr
= (u8 __iomem
*)regs
;
3169 for (i
= MAC_REG_PAR
; i
< MAC_REG_CR0_SET
; i
+= 4)
3170 writel(*((u32
*) (context
->mac_reg
+ i
)), ptr
+ i
);
3173 for (i
= MAC_REG_CR1_SET
; i
< MAC_REG_CR0_CLR
; i
++) {
3175 writeb(~(*((u8
*) (context
->mac_reg
+ i
))), ptr
+ i
+ 4);
3177 writeb(*((u8
*) (context
->mac_reg
+ i
)), ptr
+ i
);
3180 for (i
= MAC_REG_MAR
; i
< MAC_REG_IMR
; i
+= 4)
3181 writel(*((u32
*) (context
->mac_reg
+ i
)), ptr
+ i
);
3183 for (i
= MAC_REG_RDBASE_LO
; i
< MAC_REG_FIFO_TEST0
; i
+= 4)
3184 writel(*((u32
*) (context
->mac_reg
+ i
)), ptr
+ i
);
3186 for (i
= MAC_REG_TDCSR_SET
; i
<= MAC_REG_RDCSR_SET
; i
++)
3187 writeb(*((u8
*) (context
->mac_reg
+ i
)), ptr
+ i
);
3190 static int velocity_resume(struct device
*dev
)
3192 struct net_device
*netdev
= dev_get_drvdata(dev
);
3193 struct velocity_info
*vptr
= netdev_priv(netdev
);
3194 unsigned long flags
;
3197 if (!netif_running(vptr
->netdev
))
3200 velocity_set_power_state(vptr
, PCI_D0
);
3203 pci_enable_wake(vptr
->pdev
, PCI_D0
, 0);
3204 pci_restore_state(vptr
->pdev
);
3207 mac_wol_reset(vptr
->mac_regs
);
3209 spin_lock_irqsave(&vptr
->lock
, flags
);
3210 velocity_restore_context(vptr
, &vptr
->context
);
3211 velocity_init_registers(vptr
, VELOCITY_INIT_WOL
);
3212 mac_disable_int(vptr
->mac_regs
);
3214 velocity_tx_srv(vptr
);
3216 for (i
= 0; i
< vptr
->tx
.numq
; i
++) {
3217 if (vptr
->tx
.used
[i
])
3218 mac_tx_queue_wake(vptr
->mac_regs
, i
);
3221 mac_enable_int(vptr
->mac_regs
);
3222 spin_unlock_irqrestore(&vptr
->lock
, flags
);
3223 netif_device_attach(vptr
->netdev
);
3227 #endif /* CONFIG_PM_SLEEP */
3229 static SIMPLE_DEV_PM_OPS(velocity_pm_ops
, velocity_suspend
, velocity_resume
);
3232 * Definition for our device driver. The PCI layer interface
3233 * uses this to handle all our card discover and plugging
3235 static struct pci_driver velocity_pci_driver
= {
3236 .name
= VELOCITY_NAME
,
3237 .id_table
= velocity_pci_id_table
,
3238 .probe
= velocity_pci_probe
,
3239 .remove
= velocity_pci_remove
,
3241 .pm
= &velocity_pm_ops
,
3245 static struct platform_driver velocity_platform_driver
= {
3246 .probe
= velocity_platform_probe
,
3247 .remove
= velocity_platform_remove
,
3249 .name
= "via-velocity",
3250 .of_match_table
= velocity_of_ids
,
3251 .pm
= &velocity_pm_ops
,
3256 * velocity_ethtool_up - pre hook for ethtool
3257 * @dev: network device
3259 * Called before an ethtool operation. We need to make sure the
3260 * chip is out of D3 state before we poke at it. In case of ethtool
3261 * ops nesting, only wake the device up in the outermost block.
3263 static int velocity_ethtool_up(struct net_device
*dev
)
3265 struct velocity_info
*vptr
= netdev_priv(dev
);
3267 if (vptr
->ethtool_ops_nesting
== U32_MAX
)
3269 if (!vptr
->ethtool_ops_nesting
++ && !netif_running(dev
))
3270 velocity_set_power_state(vptr
, PCI_D0
);
3275 * velocity_ethtool_down - post hook for ethtool
3276 * @dev: network device
3278 * Called after an ethtool operation. Restore the chip back to D3
3279 * state if it isn't running. In case of ethtool ops nesting, only
3280 * put the device to sleep in the outermost block.
3282 static void velocity_ethtool_down(struct net_device
*dev
)
3284 struct velocity_info
*vptr
= netdev_priv(dev
);
3286 if (!--vptr
->ethtool_ops_nesting
&& !netif_running(dev
))
3287 velocity_set_power_state(vptr
, PCI_D3hot
);
3290 static int velocity_get_link_ksettings(struct net_device
*dev
,
3291 struct ethtool_link_ksettings
*cmd
)
3293 struct velocity_info
*vptr
= netdev_priv(dev
);
3294 struct mac_regs __iomem
*regs
= vptr
->mac_regs
;
3296 u32 supported
, advertising
;
3298 status
= check_connection_type(vptr
->mac_regs
);
3300 supported
= SUPPORTED_TP
|
3302 SUPPORTED_10baseT_Half
|
3303 SUPPORTED_10baseT_Full
|
3304 SUPPORTED_100baseT_Half
|
3305 SUPPORTED_100baseT_Full
|
3306 SUPPORTED_1000baseT_Half
|
3307 SUPPORTED_1000baseT_Full
;
3309 advertising
= ADVERTISED_TP
| ADVERTISED_Autoneg
;
3310 if (vptr
->options
.spd_dpx
== SPD_DPX_AUTO
) {
3312 ADVERTISED_10baseT_Half
|
3313 ADVERTISED_10baseT_Full
|
3314 ADVERTISED_100baseT_Half
|
3315 ADVERTISED_100baseT_Full
|
3316 ADVERTISED_1000baseT_Half
|
3317 ADVERTISED_1000baseT_Full
;
3319 switch (vptr
->options
.spd_dpx
) {
3320 case SPD_DPX_1000_FULL
:
3321 advertising
|= ADVERTISED_1000baseT_Full
;
3323 case SPD_DPX_100_HALF
:
3324 advertising
|= ADVERTISED_100baseT_Half
;
3326 case SPD_DPX_100_FULL
:
3327 advertising
|= ADVERTISED_100baseT_Full
;
3329 case SPD_DPX_10_HALF
:
3330 advertising
|= ADVERTISED_10baseT_Half
;
3332 case SPD_DPX_10_FULL
:
3333 advertising
|= ADVERTISED_10baseT_Full
;
3340 if (status
& VELOCITY_SPEED_1000
)
3341 cmd
->base
.speed
= SPEED_1000
;
3342 else if (status
& VELOCITY_SPEED_100
)
3343 cmd
->base
.speed
= SPEED_100
;
3345 cmd
->base
.speed
= SPEED_10
;
3347 cmd
->base
.autoneg
= (status
& VELOCITY_AUTONEG_ENABLE
) ?
3348 AUTONEG_ENABLE
: AUTONEG_DISABLE
;
3349 cmd
->base
.port
= PORT_TP
;
3350 cmd
->base
.phy_address
= readb(®s
->MIIADR
) & 0x1F;
3352 if (status
& VELOCITY_DUPLEX_FULL
)
3353 cmd
->base
.duplex
= DUPLEX_FULL
;
3355 cmd
->base
.duplex
= DUPLEX_HALF
;
3357 ethtool_convert_legacy_u32_to_link_mode(cmd
->link_modes
.supported
,
3359 ethtool_convert_legacy_u32_to_link_mode(cmd
->link_modes
.advertising
,
3365 static int velocity_set_link_ksettings(struct net_device
*dev
,
3366 const struct ethtool_link_ksettings
*cmd
)
3368 struct velocity_info
*vptr
= netdev_priv(dev
);
3369 u32 speed
= cmd
->base
.speed
;
3374 curr_status
= check_connection_type(vptr
->mac_regs
);
3375 curr_status
&= (~VELOCITY_LINK_FAIL
);
3377 new_status
|= ((cmd
->base
.autoneg
) ? VELOCITY_AUTONEG_ENABLE
: 0);
3378 new_status
|= ((speed
== SPEED_1000
) ? VELOCITY_SPEED_1000
: 0);
3379 new_status
|= ((speed
== SPEED_100
) ? VELOCITY_SPEED_100
: 0);
3380 new_status
|= ((speed
== SPEED_10
) ? VELOCITY_SPEED_10
: 0);
3381 new_status
|= ((cmd
->base
.duplex
== DUPLEX_FULL
) ?
3382 VELOCITY_DUPLEX_FULL
: 0);
3384 if ((new_status
& VELOCITY_AUTONEG_ENABLE
) &&
3385 (new_status
!= (curr_status
| VELOCITY_AUTONEG_ENABLE
))) {
3388 enum speed_opt spd_dpx
;
3390 if (new_status
& VELOCITY_AUTONEG_ENABLE
)
3391 spd_dpx
= SPD_DPX_AUTO
;
3392 else if ((new_status
& VELOCITY_SPEED_1000
) &&
3393 (new_status
& VELOCITY_DUPLEX_FULL
)) {
3394 spd_dpx
= SPD_DPX_1000_FULL
;
3395 } else if (new_status
& VELOCITY_SPEED_100
)
3396 spd_dpx
= (new_status
& VELOCITY_DUPLEX_FULL
) ?
3397 SPD_DPX_100_FULL
: SPD_DPX_100_HALF
;
3398 else if (new_status
& VELOCITY_SPEED_10
)
3399 spd_dpx
= (new_status
& VELOCITY_DUPLEX_FULL
) ?
3400 SPD_DPX_10_FULL
: SPD_DPX_10_HALF
;
3404 vptr
->options
.spd_dpx
= spd_dpx
;
3406 velocity_set_media_mode(vptr
, new_status
);
3412 static void velocity_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
3414 struct velocity_info
*vptr
= netdev_priv(dev
);
3416 strlcpy(info
->driver
, VELOCITY_NAME
, sizeof(info
->driver
));
3417 strlcpy(info
->version
, VELOCITY_VERSION
, sizeof(info
->version
));
3419 strlcpy(info
->bus_info
, pci_name(vptr
->pdev
),
3420 sizeof(info
->bus_info
));
3422 strlcpy(info
->bus_info
, "platform", sizeof(info
->bus_info
));
3425 static void velocity_ethtool_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
3427 struct velocity_info
*vptr
= netdev_priv(dev
);
3428 wol
->supported
= WAKE_PHY
| WAKE_MAGIC
| WAKE_UCAST
| WAKE_ARP
;
3429 wol
->wolopts
|= WAKE_MAGIC
;
3431 if (vptr->wol_opts & VELOCITY_WOL_PHY)
3432 wol.wolopts|=WAKE_PHY;
3434 if (vptr
->wol_opts
& VELOCITY_WOL_UCAST
)
3435 wol
->wolopts
|= WAKE_UCAST
;
3436 if (vptr
->wol_opts
& VELOCITY_WOL_ARP
)
3437 wol
->wolopts
|= WAKE_ARP
;
3438 memcpy(&wol
->sopass
, vptr
->wol_passwd
, 6);
3441 static int velocity_ethtool_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
3443 struct velocity_info
*vptr
= netdev_priv(dev
);
3445 if (!(wol
->wolopts
& (WAKE_PHY
| WAKE_MAGIC
| WAKE_UCAST
| WAKE_ARP
)))
3447 vptr
->wol_opts
= VELOCITY_WOL_MAGIC
;
3450 if (wol.wolopts & WAKE_PHY) {
3451 vptr->wol_opts|=VELOCITY_WOL_PHY;
3452 vptr->flags |=VELOCITY_FLAGS_WOL_ENABLED;
3456 if (wol
->wolopts
& WAKE_MAGIC
) {
3457 vptr
->wol_opts
|= VELOCITY_WOL_MAGIC
;
3458 vptr
->flags
|= VELOCITY_FLAGS_WOL_ENABLED
;
3460 if (wol
->wolopts
& WAKE_UCAST
) {
3461 vptr
->wol_opts
|= VELOCITY_WOL_UCAST
;
3462 vptr
->flags
|= VELOCITY_FLAGS_WOL_ENABLED
;
3464 if (wol
->wolopts
& WAKE_ARP
) {
3465 vptr
->wol_opts
|= VELOCITY_WOL_ARP
;
3466 vptr
->flags
|= VELOCITY_FLAGS_WOL_ENABLED
;
3468 memcpy(vptr
->wol_passwd
, wol
->sopass
, 6);
3472 static u32
velocity_get_msglevel(struct net_device
*dev
)
3477 static void velocity_set_msglevel(struct net_device
*dev
, u32 value
)
3482 static int get_pending_timer_val(int val
)
3484 int mult_bits
= val
>> 6;
3500 return (val
& 0x3f) * mult
;
3503 static void set_pending_timer_val(int *val
, u32 us
)
3509 mult
= 1; /* mult with 4 */
3512 if (us
>= 0x3f * 4) {
3513 mult
= 2; /* mult with 16 */
3516 if (us
>= 0x3f * 16) {
3517 mult
= 3; /* mult with 64 */
3521 *val
= (mult
<< 6) | ((us
>> shift
) & 0x3f);
3525 static int velocity_get_coalesce(struct net_device
*dev
,
3526 struct ethtool_coalesce
*ecmd
)
3528 struct velocity_info
*vptr
= netdev_priv(dev
);
3530 ecmd
->tx_max_coalesced_frames
= vptr
->options
.tx_intsup
;
3531 ecmd
->rx_max_coalesced_frames
= vptr
->options
.rx_intsup
;
3533 ecmd
->rx_coalesce_usecs
= get_pending_timer_val(vptr
->options
.rxqueue_timer
);
3534 ecmd
->tx_coalesce_usecs
= get_pending_timer_val(vptr
->options
.txqueue_timer
);
3539 static int velocity_set_coalesce(struct net_device
*dev
,
3540 struct ethtool_coalesce
*ecmd
)
3542 struct velocity_info
*vptr
= netdev_priv(dev
);
3543 int max_us
= 0x3f * 64;
3544 unsigned long flags
;
3547 if (ecmd
->tx_coalesce_usecs
> max_us
)
3549 if (ecmd
->rx_coalesce_usecs
> max_us
)
3552 if (ecmd
->tx_max_coalesced_frames
> 0xff)
3554 if (ecmd
->rx_max_coalesced_frames
> 0xff)
3557 vptr
->options
.rx_intsup
= ecmd
->rx_max_coalesced_frames
;
3558 vptr
->options
.tx_intsup
= ecmd
->tx_max_coalesced_frames
;
3560 set_pending_timer_val(&vptr
->options
.rxqueue_timer
,
3561 ecmd
->rx_coalesce_usecs
);
3562 set_pending_timer_val(&vptr
->options
.txqueue_timer
,
3563 ecmd
->tx_coalesce_usecs
);
3565 /* Setup the interrupt suppression and queue timers */
3566 spin_lock_irqsave(&vptr
->lock
, flags
);
3567 mac_disable_int(vptr
->mac_regs
);
3568 setup_adaptive_interrupts(vptr
);
3569 setup_queue_timers(vptr
);
3571 mac_write_int_mask(vptr
->int_mask
, vptr
->mac_regs
);
3572 mac_clear_isr(vptr
->mac_regs
);
3573 mac_enable_int(vptr
->mac_regs
);
3574 spin_unlock_irqrestore(&vptr
->lock
, flags
);
3579 static const char velocity_gstrings
[][ETH_GSTRING_LEN
] = {
3598 "tx_ether_collisions",
3602 "rx_mac_control_frames",
3603 "tx_mac_control_frames",
3604 "rx_frame_alignment_errors",
3610 "in_range_length_errors",
3614 static void velocity_get_strings(struct net_device
*dev
, u32 sset
, u8
*data
)
3618 memcpy(data
, *velocity_gstrings
, sizeof(velocity_gstrings
));
3623 static int velocity_get_sset_count(struct net_device
*dev
, int sset
)
3627 return ARRAY_SIZE(velocity_gstrings
);
3633 static void velocity_get_ethtool_stats(struct net_device
*dev
,
3634 struct ethtool_stats
*stats
, u64
*data
)
3636 if (netif_running(dev
)) {
3637 struct velocity_info
*vptr
= netdev_priv(dev
);
3638 u32
*p
= vptr
->mib_counter
;
3641 spin_lock_irq(&vptr
->lock
);
3642 velocity_update_hw_mibs(vptr
);
3643 spin_unlock_irq(&vptr
->lock
);
3645 for (i
= 0; i
< ARRAY_SIZE(velocity_gstrings
); i
++)
3650 static const struct ethtool_ops velocity_ethtool_ops
= {
3651 .get_drvinfo
= velocity_get_drvinfo
,
3652 .get_wol
= velocity_ethtool_get_wol
,
3653 .set_wol
= velocity_ethtool_set_wol
,
3654 .get_msglevel
= velocity_get_msglevel
,
3655 .set_msglevel
= velocity_set_msglevel
,
3656 .get_link
= velocity_get_link
,
3657 .get_strings
= velocity_get_strings
,
3658 .get_sset_count
= velocity_get_sset_count
,
3659 .get_ethtool_stats
= velocity_get_ethtool_stats
,
3660 .get_coalesce
= velocity_get_coalesce
,
3661 .set_coalesce
= velocity_set_coalesce
,
3662 .begin
= velocity_ethtool_up
,
3663 .complete
= velocity_ethtool_down
,
3664 .get_link_ksettings
= velocity_get_link_ksettings
,
3665 .set_link_ksettings
= velocity_set_link_ksettings
,
3668 #if defined(CONFIG_PM) && defined(CONFIG_INET)
3669 static int velocity_netdev_event(struct notifier_block
*nb
, unsigned long notification
, void *ptr
)
3671 struct in_ifaddr
*ifa
= ptr
;
3672 struct net_device
*dev
= ifa
->ifa_dev
->dev
;
3674 if (dev_net(dev
) == &init_net
&&
3675 dev
->netdev_ops
== &velocity_netdev_ops
)
3676 velocity_get_ip(netdev_priv(dev
));
3681 static struct notifier_block velocity_inetaddr_notifier
= {
3682 .notifier_call
= velocity_netdev_event
,
3685 static void velocity_register_notifier(void)
3687 register_inetaddr_notifier(&velocity_inetaddr_notifier
);
3690 static void velocity_unregister_notifier(void)
3692 unregister_inetaddr_notifier(&velocity_inetaddr_notifier
);
3697 #define velocity_register_notifier() do {} while (0)
3698 #define velocity_unregister_notifier() do {} while (0)
3700 #endif /* defined(CONFIG_PM) && defined(CONFIG_INET) */
3703 * velocity_init_module - load time function
3705 * Called when the velocity module is loaded. The PCI driver
3706 * is registered with the PCI layer, and in turn will call
3707 * the probe functions for each velocity adapter installed
3710 static int __init
velocity_init_module(void)
3712 int ret_pci
, ret_platform
;
3714 velocity_register_notifier();
3716 ret_pci
= pci_register_driver(&velocity_pci_driver
);
3717 ret_platform
= platform_driver_register(&velocity_platform_driver
);
3719 /* if both_registers failed, remove the notifier */
3720 if ((ret_pci
< 0) && (ret_platform
< 0)) {
3721 velocity_unregister_notifier();
3729 * velocity_cleanup - module unload
3731 * When the velocity hardware is unloaded this function is called.
3732 * It will clean up the notifiers and the unregister the PCI
3733 * driver interface for this hardware. This in turn cleans up
3734 * all discovered interfaces before returning from the function
3736 static void __exit
velocity_cleanup_module(void)
3738 velocity_unregister_notifier();
3740 pci_unregister_driver(&velocity_pci_driver
);
3741 platform_driver_unregister(&velocity_platform_driver
);
3744 module_init(velocity_init_module
);
3745 module_exit(velocity_cleanup_module
);