2 * Copyright(c) 2005 - 2006 Attansic Corporation. All rights reserved.
3 * Copyright(c) 2006 - 2007 Chris Snook <csnook@redhat.com>
4 * Copyright(c) 2006 - 2008 Jay Cliburn <jcliburn@gmail.com>
6 * Derived from Intel e1000 driver
7 * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * You should have received a copy of the GNU General Public License along with
20 * this program; if not, write to the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * The full GNU General Public License is included in this distribution in the
24 * file called COPYING.
26 * Contact Information:
27 * Xiong Huang <xiong.huang@atheros.com>
28 * Jie Yang <jie.yang@atheros.com>
29 * Chris Snook <csnook@redhat.com>
30 * Jay Cliburn <jcliburn@gmail.com>
32 * This version is adapted from the Attansic reference driver.
35 * Add more ethtool functions.
36 * Fix abstruse irq enable/disable condition described here:
37 * http://marc.theaimsgroup.com/?l=linux-netdev&m=116398508500553&w=2
43 * interrupt coalescing
47 #include <linux/atomic.h>
48 #include <asm/byteorder.h>
50 #include <linux/compiler.h>
51 #include <linux/crc32.h>
52 #include <linux/delay.h>
53 #include <linux/dma-mapping.h>
54 #include <linux/etherdevice.h>
55 #include <linux/hardirq.h>
56 #include <linux/if_ether.h>
57 #include <linux/if_vlan.h>
59 #include <linux/interrupt.h>
61 #include <linux/irqflags.h>
62 #include <linux/irqreturn.h>
63 #include <linux/jiffies.h>
64 #include <linux/mii.h>
65 #include <linux/module.h>
66 #include <linux/moduleparam.h>
67 #include <linux/net.h>
68 #include <linux/netdevice.h>
69 #include <linux/pci.h>
70 #include <linux/pci_ids.h>
72 #include <linux/skbuff.h>
73 #include <linux/slab.h>
74 #include <linux/spinlock.h>
75 #include <linux/string.h>
76 #include <linux/tcp.h>
77 #include <linux/timer.h>
78 #include <linux/types.h>
79 #include <linux/workqueue.h>
81 #include <net/checksum.h>
85 #define ATLX_DRIVER_VERSION "2.1.3"
86 MODULE_AUTHOR("Xiong Huang <xiong.huang@atheros.com>, "
87 "Chris Snook <csnook@redhat.com>, "
88 "Jay Cliburn <jcliburn@gmail.com>");
89 MODULE_LICENSE("GPL");
90 MODULE_VERSION(ATLX_DRIVER_VERSION
);
92 /* Temporary hack for merging atl1 and atl2 */
95 static const struct ethtool_ops atl1_ethtool_ops
;
98 * This is the only thing that needs to be changed to adjust the
99 * maximum number of ports that the driver can manage.
101 #define ATL1_MAX_NIC 4
103 #define OPTION_UNSET -1
104 #define OPTION_DISABLED 0
105 #define OPTION_ENABLED 1
107 #define ATL1_PARAM_INIT { [0 ... ATL1_MAX_NIC] = OPTION_UNSET }
110 * Interrupt Moderate Timer in units of 2 us
112 * Valid Range: 10-65535
114 * Default Value: 100 (200us)
116 static int __devinitdata int_mod_timer
[ATL1_MAX_NIC
+1] = ATL1_PARAM_INIT
;
117 static unsigned int num_int_mod_timer
;
118 module_param_array_named(int_mod_timer
, int_mod_timer
, int,
119 &num_int_mod_timer
, 0);
120 MODULE_PARM_DESC(int_mod_timer
, "Interrupt moderator timer");
122 #define DEFAULT_INT_MOD_CNT 100 /* 200us */
123 #define MAX_INT_MOD_CNT 65000
124 #define MIN_INT_MOD_CNT 50
127 enum { enable_option
, range_option
, list_option
} type
;
132 struct { /* range_option info */
136 struct { /* list_option info */
138 struct atl1_opt_list
{
146 static int __devinit
atl1_validate_option(int *value
, struct atl1_option
*opt
,
147 struct pci_dev
*pdev
)
149 if (*value
== OPTION_UNSET
) {
158 dev_info(&pdev
->dev
, "%s enabled\n", opt
->name
);
160 case OPTION_DISABLED
:
161 dev_info(&pdev
->dev
, "%s disabled\n", opt
->name
);
166 if (*value
>= opt
->arg
.r
.min
&& *value
<= opt
->arg
.r
.max
) {
167 dev_info(&pdev
->dev
, "%s set to %i\n", opt
->name
,
174 struct atl1_opt_list
*ent
;
176 for (i
= 0; i
< opt
->arg
.l
.nr
; i
++) {
177 ent
= &opt
->arg
.l
.p
[i
];
178 if (*value
== ent
->i
) {
179 if (ent
->str
[0] != '\0')
180 dev_info(&pdev
->dev
, "%s\n",
192 dev_info(&pdev
->dev
, "invalid %s specified (%i) %s\n",
193 opt
->name
, *value
, opt
->err
);
199 * atl1_check_options - Range Checking for Command Line Parameters
200 * @adapter: board private structure
202 * This routine checks all command line parameters for valid user
203 * input. If an invalid value is given, or if no user specified
204 * value exists, a default value is used. The final value is stored
205 * in a variable in the adapter structure.
207 static void __devinit
atl1_check_options(struct atl1_adapter
*adapter
)
209 struct pci_dev
*pdev
= adapter
->pdev
;
210 int bd
= adapter
->bd_number
;
211 if (bd
>= ATL1_MAX_NIC
) {
212 dev_notice(&pdev
->dev
, "no configuration for board#%i\n", bd
);
213 dev_notice(&pdev
->dev
, "using defaults for all values\n");
215 { /* Interrupt Moderate Timer */
216 struct atl1_option opt
= {
217 .type
= range_option
,
218 .name
= "Interrupt Moderator Timer",
219 .err
= "using default of "
220 __MODULE_STRING(DEFAULT_INT_MOD_CNT
),
221 .def
= DEFAULT_INT_MOD_CNT
,
222 .arg
= {.r
= {.min
= MIN_INT_MOD_CNT
,
223 .max
= MAX_INT_MOD_CNT
} }
226 if (num_int_mod_timer
> bd
) {
227 val
= int_mod_timer
[bd
];
228 atl1_validate_option(&val
, &opt
, pdev
);
229 adapter
->imt
= (u16
) val
;
231 adapter
->imt
= (u16
) (opt
.def
);
236 * atl1_pci_tbl - PCI Device ID Table
238 static DEFINE_PCI_DEVICE_TABLE(atl1_pci_tbl
) = {
239 {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC
, PCI_DEVICE_ID_ATTANSIC_L1
)},
240 /* required last entry */
243 MODULE_DEVICE_TABLE(pci
, atl1_pci_tbl
);
245 static const u32 atl1_default_msg
= NETIF_MSG_DRV
| NETIF_MSG_PROBE
|
246 NETIF_MSG_LINK
| NETIF_MSG_TIMER
| NETIF_MSG_IFDOWN
| NETIF_MSG_IFUP
;
248 static int debug
= -1;
249 module_param(debug
, int, 0);
250 MODULE_PARM_DESC(debug
, "Message level (0=none,...,16=all)");
253 * Reset the transmit and receive units; mask and clear all interrupts.
254 * hw - Struct containing variables accessed by shared code
255 * return : 0 or idle status (if error)
257 static s32
atl1_reset_hw(struct atl1_hw
*hw
)
259 struct pci_dev
*pdev
= hw
->back
->pdev
;
260 struct atl1_adapter
*adapter
= hw
->back
;
265 * Clear Interrupt mask to stop board from generating
266 * interrupts & Clear any pending interrupt events
269 * iowrite32(0, hw->hw_addr + REG_IMR);
270 * iowrite32(0xffffffff, hw->hw_addr + REG_ISR);
274 * Issue Soft Reset to the MAC. This will reset the chip's
275 * transmit, receive, DMA. It will not effect
276 * the current PCI configuration. The global reset bit is self-
277 * clearing, and should clear within a microsecond.
279 iowrite32(MASTER_CTRL_SOFT_RST
, hw
->hw_addr
+ REG_MASTER_CTRL
);
280 ioread32(hw
->hw_addr
+ REG_MASTER_CTRL
);
282 iowrite16(1, hw
->hw_addr
+ REG_PHY_ENABLE
);
283 ioread16(hw
->hw_addr
+ REG_PHY_ENABLE
);
285 /* delay about 1ms */
288 /* Wait at least 10ms for All module to be Idle */
289 for (i
= 0; i
< 10; i
++) {
290 icr
= ioread32(hw
->hw_addr
+ REG_IDLE_STATUS
);
295 /* FIXME: still the right way to do this? */
300 if (netif_msg_hw(adapter
))
301 dev_dbg(&pdev
->dev
, "ICR = 0x%x\n", icr
);
308 /* function about EEPROM
311 * return 0 if eeprom exist
313 static int atl1_check_eeprom_exist(struct atl1_hw
*hw
)
316 value
= ioread32(hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
317 if (value
& SPI_FLASH_CTRL_EN_VPD
) {
318 value
&= ~SPI_FLASH_CTRL_EN_VPD
;
319 iowrite32(value
, hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
322 value
= ioread16(hw
->hw_addr
+ REG_PCIE_CAP_LIST
);
323 return ((value
& 0xFF00) == 0x6C00) ? 0 : 1;
326 static bool atl1_read_eeprom(struct atl1_hw
*hw
, u32 offset
, u32
*p_value
)
332 /* address do not align */
335 iowrite32(0, hw
->hw_addr
+ REG_VPD_DATA
);
336 control
= (offset
& VPD_CAP_VPD_ADDR_MASK
) << VPD_CAP_VPD_ADDR_SHIFT
;
337 iowrite32(control
, hw
->hw_addr
+ REG_VPD_CAP
);
338 ioread32(hw
->hw_addr
+ REG_VPD_CAP
);
340 for (i
= 0; i
< 10; i
++) {
342 control
= ioread32(hw
->hw_addr
+ REG_VPD_CAP
);
343 if (control
& VPD_CAP_VPD_FLAG
)
346 if (control
& VPD_CAP_VPD_FLAG
) {
347 *p_value
= ioread32(hw
->hw_addr
+ REG_VPD_DATA
);
355 * Reads the value from a PHY register
356 * hw - Struct containing variables accessed by shared code
357 * reg_addr - address of the PHY register to read
359 static s32
atl1_read_phy_reg(struct atl1_hw
*hw
, u16 reg_addr
, u16
*phy_data
)
364 val
= ((u32
) (reg_addr
& MDIO_REG_ADDR_MASK
)) << MDIO_REG_ADDR_SHIFT
|
365 MDIO_START
| MDIO_SUP_PREAMBLE
| MDIO_RW
| MDIO_CLK_25_4
<<
367 iowrite32(val
, hw
->hw_addr
+ REG_MDIO_CTRL
);
368 ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
370 for (i
= 0; i
< MDIO_WAIT_TIMES
; i
++) {
372 val
= ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
373 if (!(val
& (MDIO_START
| MDIO_BUSY
)))
376 if (!(val
& (MDIO_START
| MDIO_BUSY
))) {
377 *phy_data
= (u16
) val
;
383 #define CUSTOM_SPI_CS_SETUP 2
384 #define CUSTOM_SPI_CLK_HI 2
385 #define CUSTOM_SPI_CLK_LO 2
386 #define CUSTOM_SPI_CS_HOLD 2
387 #define CUSTOM_SPI_CS_HI 3
389 static bool atl1_spi_read(struct atl1_hw
*hw
, u32 addr
, u32
*buf
)
394 iowrite32(0, hw
->hw_addr
+ REG_SPI_DATA
);
395 iowrite32(addr
, hw
->hw_addr
+ REG_SPI_ADDR
);
397 value
= SPI_FLASH_CTRL_WAIT_READY
|
398 (CUSTOM_SPI_CS_SETUP
& SPI_FLASH_CTRL_CS_SETUP_MASK
) <<
399 SPI_FLASH_CTRL_CS_SETUP_SHIFT
| (CUSTOM_SPI_CLK_HI
&
400 SPI_FLASH_CTRL_CLK_HI_MASK
) <<
401 SPI_FLASH_CTRL_CLK_HI_SHIFT
| (CUSTOM_SPI_CLK_LO
&
402 SPI_FLASH_CTRL_CLK_LO_MASK
) <<
403 SPI_FLASH_CTRL_CLK_LO_SHIFT
| (CUSTOM_SPI_CS_HOLD
&
404 SPI_FLASH_CTRL_CS_HOLD_MASK
) <<
405 SPI_FLASH_CTRL_CS_HOLD_SHIFT
| (CUSTOM_SPI_CS_HI
&
406 SPI_FLASH_CTRL_CS_HI_MASK
) <<
407 SPI_FLASH_CTRL_CS_HI_SHIFT
| (1 & SPI_FLASH_CTRL_INS_MASK
) <<
408 SPI_FLASH_CTRL_INS_SHIFT
;
410 iowrite32(value
, hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
412 value
|= SPI_FLASH_CTRL_START
;
413 iowrite32(value
, hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
414 ioread32(hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
416 for (i
= 0; i
< 10; i
++) {
418 value
= ioread32(hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
419 if (!(value
& SPI_FLASH_CTRL_START
))
423 if (value
& SPI_FLASH_CTRL_START
)
426 *buf
= ioread32(hw
->hw_addr
+ REG_SPI_DATA
);
432 * get_permanent_address
433 * return 0 if get valid mac address,
435 static int atl1_get_permanent_address(struct atl1_hw
*hw
)
440 u8 eth_addr
[ETH_ALEN
];
443 if (is_valid_ether_addr(hw
->perm_mac_addr
))
447 addr
[0] = addr
[1] = 0;
449 if (!atl1_check_eeprom_exist(hw
)) {
452 /* Read out all EEPROM content */
455 if (atl1_read_eeprom(hw
, i
+ 0x100, &control
)) {
457 if (reg
== REG_MAC_STA_ADDR
)
459 else if (reg
== (REG_MAC_STA_ADDR
+ 4))
462 } else if ((control
& 0xff) == 0x5A) {
464 reg
= (u16
) (control
>> 16);
473 *(u32
*) ð_addr
[2] = swab32(addr
[0]);
474 *(u16
*) ð_addr
[0] = swab16(*(u16
*) &addr
[1]);
475 if (is_valid_ether_addr(eth_addr
)) {
476 memcpy(hw
->perm_mac_addr
, eth_addr
, ETH_ALEN
);
481 /* see if SPI FLAGS exist ? */
482 addr
[0] = addr
[1] = 0;
487 if (atl1_spi_read(hw
, i
+ 0x1f000, &control
)) {
489 if (reg
== REG_MAC_STA_ADDR
)
491 else if (reg
== (REG_MAC_STA_ADDR
+ 4))
494 } else if ((control
& 0xff) == 0x5A) {
496 reg
= (u16
) (control
>> 16);
506 *(u32
*) ð_addr
[2] = swab32(addr
[0]);
507 *(u16
*) ð_addr
[0] = swab16(*(u16
*) &addr
[1]);
508 if (is_valid_ether_addr(eth_addr
)) {
509 memcpy(hw
->perm_mac_addr
, eth_addr
, ETH_ALEN
);
514 * On some motherboards, the MAC address is written by the
515 * BIOS directly to the MAC register during POST, and is
516 * not stored in eeprom. If all else thus far has failed
517 * to fetch the permanent MAC address, try reading it directly.
519 addr
[0] = ioread32(hw
->hw_addr
+ REG_MAC_STA_ADDR
);
520 addr
[1] = ioread16(hw
->hw_addr
+ (REG_MAC_STA_ADDR
+ 4));
521 *(u32
*) ð_addr
[2] = swab32(addr
[0]);
522 *(u16
*) ð_addr
[0] = swab16(*(u16
*) &addr
[1]);
523 if (is_valid_ether_addr(eth_addr
)) {
524 memcpy(hw
->perm_mac_addr
, eth_addr
, ETH_ALEN
);
532 * Reads the adapter's MAC address from the EEPROM
533 * hw - Struct containing variables accessed by shared code
535 static s32
atl1_read_mac_addr(struct atl1_hw
*hw
)
539 if (atl1_get_permanent_address(hw
))
540 random_ether_addr(hw
->perm_mac_addr
);
542 for (i
= 0; i
< ETH_ALEN
; i
++)
543 hw
->mac_addr
[i
] = hw
->perm_mac_addr
[i
];
548 * Hashes an address to determine its location in the multicast table
549 * hw - Struct containing variables accessed by shared code
550 * mc_addr - the multicast address to hash
554 * set hash value for a multicast address
555 * hash calcu processing :
556 * 1. calcu 32bit CRC for multicast address
557 * 2. reverse crc with MSB to LSB
559 static u32
atl1_hash_mc_addr(struct atl1_hw
*hw
, u8
*mc_addr
)
561 u32 crc32
, value
= 0;
564 crc32
= ether_crc_le(6, mc_addr
);
565 for (i
= 0; i
< 32; i
++)
566 value
|= (((crc32
>> i
) & 1) << (31 - i
));
572 * Sets the bit in the multicast table corresponding to the hash value.
573 * hw - Struct containing variables accessed by shared code
574 * hash_value - Multicast address hash value
576 static void atl1_hash_set(struct atl1_hw
*hw
, u32 hash_value
)
578 u32 hash_bit
, hash_reg
;
582 * The HASH Table is a register array of 2 32-bit registers.
583 * It is treated like an array of 64 bits. We want to set
584 * bit BitArray[hash_value]. So we figure out what register
585 * the bit is in, read it, OR in the new bit, then write
586 * back the new value. The register is determined by the
587 * upper 7 bits of the hash value and the bit within that
588 * register are determined by the lower 5 bits of the value.
590 hash_reg
= (hash_value
>> 31) & 0x1;
591 hash_bit
= (hash_value
>> 26) & 0x1F;
592 mta
= ioread32((hw
->hw_addr
+ REG_RX_HASH_TABLE
) + (hash_reg
<< 2));
593 mta
|= (1 << hash_bit
);
594 iowrite32(mta
, (hw
->hw_addr
+ REG_RX_HASH_TABLE
) + (hash_reg
<< 2));
598 * Writes a value to a PHY register
599 * hw - Struct containing variables accessed by shared code
600 * reg_addr - address of the PHY register to write
601 * data - data to write to the PHY
603 static s32
atl1_write_phy_reg(struct atl1_hw
*hw
, u32 reg_addr
, u16 phy_data
)
608 val
= ((u32
) (phy_data
& MDIO_DATA_MASK
)) << MDIO_DATA_SHIFT
|
609 (reg_addr
& MDIO_REG_ADDR_MASK
) << MDIO_REG_ADDR_SHIFT
|
611 MDIO_START
| MDIO_CLK_25_4
<< MDIO_CLK_SEL_SHIFT
;
612 iowrite32(val
, hw
->hw_addr
+ REG_MDIO_CTRL
);
613 ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
615 for (i
= 0; i
< MDIO_WAIT_TIMES
; i
++) {
617 val
= ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
618 if (!(val
& (MDIO_START
| MDIO_BUSY
)))
622 if (!(val
& (MDIO_START
| MDIO_BUSY
)))
629 * Make L001's PHY out of Power Saving State (bug)
630 * hw - Struct containing variables accessed by shared code
631 * when power on, L001's PHY always on Power saving State
632 * (Gigabit Link forbidden)
634 static s32
atl1_phy_leave_power_saving(struct atl1_hw
*hw
)
637 ret
= atl1_write_phy_reg(hw
, 29, 0x0029);
640 return atl1_write_phy_reg(hw
, 30, 0);
644 * Resets the PHY and make all config validate
645 * hw - Struct containing variables accessed by shared code
647 * Sets bit 15 and 12 of the MII Control regiser (for F001 bug)
649 static s32
atl1_phy_reset(struct atl1_hw
*hw
)
651 struct pci_dev
*pdev
= hw
->back
->pdev
;
652 struct atl1_adapter
*adapter
= hw
->back
;
656 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
657 hw
->media_type
== MEDIA_TYPE_1000M_FULL
)
658 phy_data
= MII_CR_RESET
| MII_CR_AUTO_NEG_EN
;
660 switch (hw
->media_type
) {
661 case MEDIA_TYPE_100M_FULL
:
663 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_100
|
666 case MEDIA_TYPE_100M_HALF
:
667 phy_data
= MII_CR_SPEED_100
| MII_CR_RESET
;
669 case MEDIA_TYPE_10M_FULL
:
671 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_10
| MII_CR_RESET
;
674 /* MEDIA_TYPE_10M_HALF: */
675 phy_data
= MII_CR_SPEED_10
| MII_CR_RESET
;
680 ret_val
= atl1_write_phy_reg(hw
, MII_BMCR
, phy_data
);
684 /* pcie serdes link may be down! */
685 if (netif_msg_hw(adapter
))
686 dev_dbg(&pdev
->dev
, "pcie phy link down\n");
688 for (i
= 0; i
< 25; i
++) {
690 val
= ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
691 if (!(val
& (MDIO_START
| MDIO_BUSY
)))
695 if ((val
& (MDIO_START
| MDIO_BUSY
)) != 0) {
696 if (netif_msg_hw(adapter
))
698 "pcie link down at least 25ms\n");
706 * Configures PHY autoneg and flow control advertisement settings
707 * hw - Struct containing variables accessed by shared code
709 static s32
atl1_phy_setup_autoneg_adv(struct atl1_hw
*hw
)
712 s16 mii_autoneg_adv_reg
;
713 s16 mii_1000t_ctrl_reg
;
715 /* Read the MII Auto-Neg Advertisement Register (Address 4). */
716 mii_autoneg_adv_reg
= MII_AR_DEFAULT_CAP_MASK
;
718 /* Read the MII 1000Base-T Control Register (Address 9). */
719 mii_1000t_ctrl_reg
= MII_ATLX_CR_1000T_DEFAULT_CAP_MASK
;
722 * First we clear all the 10/100 mb speed bits in the Auto-Neg
723 * Advertisement Register (Address 4) and the 1000 mb speed bits in
724 * the 1000Base-T Control Register (Address 9).
726 mii_autoneg_adv_reg
&= ~MII_AR_SPEED_MASK
;
727 mii_1000t_ctrl_reg
&= ~MII_ATLX_CR_1000T_SPEED_MASK
;
730 * Need to parse media_type and set up
731 * the appropriate PHY registers.
733 switch (hw
->media_type
) {
734 case MEDIA_TYPE_AUTO_SENSOR
:
735 mii_autoneg_adv_reg
|= (MII_AR_10T_HD_CAPS
|
737 MII_AR_100TX_HD_CAPS
|
738 MII_AR_100TX_FD_CAPS
);
739 mii_1000t_ctrl_reg
|= MII_ATLX_CR_1000T_FD_CAPS
;
742 case MEDIA_TYPE_1000M_FULL
:
743 mii_1000t_ctrl_reg
|= MII_ATLX_CR_1000T_FD_CAPS
;
746 case MEDIA_TYPE_100M_FULL
:
747 mii_autoneg_adv_reg
|= MII_AR_100TX_FD_CAPS
;
750 case MEDIA_TYPE_100M_HALF
:
751 mii_autoneg_adv_reg
|= MII_AR_100TX_HD_CAPS
;
754 case MEDIA_TYPE_10M_FULL
:
755 mii_autoneg_adv_reg
|= MII_AR_10T_FD_CAPS
;
759 mii_autoneg_adv_reg
|= MII_AR_10T_HD_CAPS
;
763 /* flow control fixed to enable all */
764 mii_autoneg_adv_reg
|= (MII_AR_ASM_DIR
| MII_AR_PAUSE
);
766 hw
->mii_autoneg_adv_reg
= mii_autoneg_adv_reg
;
767 hw
->mii_1000t_ctrl_reg
= mii_1000t_ctrl_reg
;
769 ret_val
= atl1_write_phy_reg(hw
, MII_ADVERTISE
, mii_autoneg_adv_reg
);
773 ret_val
= atl1_write_phy_reg(hw
, MII_ATLX_CR
, mii_1000t_ctrl_reg
);
781 * Configures link settings.
782 * hw - Struct containing variables accessed by shared code
783 * Assumes the hardware has previously been reset and the
784 * transmitter and receiver are not enabled.
786 static s32
atl1_setup_link(struct atl1_hw
*hw
)
788 struct pci_dev
*pdev
= hw
->back
->pdev
;
789 struct atl1_adapter
*adapter
= hw
->back
;
794 * PHY will advertise value(s) parsed from
795 * autoneg_advertised and fc
796 * no matter what autoneg is , We will not wait link result.
798 ret_val
= atl1_phy_setup_autoneg_adv(hw
);
800 if (netif_msg_link(adapter
))
802 "error setting up autonegotiation\n");
805 /* SW.Reset , En-Auto-Neg if needed */
806 ret_val
= atl1_phy_reset(hw
);
808 if (netif_msg_link(adapter
))
809 dev_dbg(&pdev
->dev
, "error resetting phy\n");
812 hw
->phy_configured
= true;
816 static void atl1_init_flash_opcode(struct atl1_hw
*hw
)
818 if (hw
->flash_vendor
>= ARRAY_SIZE(flash_table
))
820 hw
->flash_vendor
= 0;
823 iowrite8(flash_table
[hw
->flash_vendor
].cmd_program
,
824 hw
->hw_addr
+ REG_SPI_FLASH_OP_PROGRAM
);
825 iowrite8(flash_table
[hw
->flash_vendor
].cmd_sector_erase
,
826 hw
->hw_addr
+ REG_SPI_FLASH_OP_SC_ERASE
);
827 iowrite8(flash_table
[hw
->flash_vendor
].cmd_chip_erase
,
828 hw
->hw_addr
+ REG_SPI_FLASH_OP_CHIP_ERASE
);
829 iowrite8(flash_table
[hw
->flash_vendor
].cmd_rdid
,
830 hw
->hw_addr
+ REG_SPI_FLASH_OP_RDID
);
831 iowrite8(flash_table
[hw
->flash_vendor
].cmd_wren
,
832 hw
->hw_addr
+ REG_SPI_FLASH_OP_WREN
);
833 iowrite8(flash_table
[hw
->flash_vendor
].cmd_rdsr
,
834 hw
->hw_addr
+ REG_SPI_FLASH_OP_RDSR
);
835 iowrite8(flash_table
[hw
->flash_vendor
].cmd_wrsr
,
836 hw
->hw_addr
+ REG_SPI_FLASH_OP_WRSR
);
837 iowrite8(flash_table
[hw
->flash_vendor
].cmd_read
,
838 hw
->hw_addr
+ REG_SPI_FLASH_OP_READ
);
842 * Performs basic configuration of the adapter.
843 * hw - Struct containing variables accessed by shared code
844 * Assumes that the controller has previously been reset and is in a
845 * post-reset uninitialized state. Initializes multicast table,
846 * and Calls routines to setup link
847 * Leaves the transmit and receive units disabled and uninitialized.
849 static s32
atl1_init_hw(struct atl1_hw
*hw
)
853 /* Zero out the Multicast HASH table */
854 iowrite32(0, hw
->hw_addr
+ REG_RX_HASH_TABLE
);
855 /* clear the old settings from the multicast hash table */
856 iowrite32(0, (hw
->hw_addr
+ REG_RX_HASH_TABLE
) + (1 << 2));
858 atl1_init_flash_opcode(hw
);
860 if (!hw
->phy_configured
) {
861 /* enable GPHY LinkChange Interrrupt */
862 ret_val
= atl1_write_phy_reg(hw
, 18, 0xC00);
865 /* make PHY out of power-saving state */
866 ret_val
= atl1_phy_leave_power_saving(hw
);
869 /* Call a subroutine to configure the link */
870 ret_val
= atl1_setup_link(hw
);
876 * Detects the current speed and duplex settings of the hardware.
877 * hw - Struct containing variables accessed by shared code
878 * speed - Speed of the connection
879 * duplex - Duplex setting of the connection
881 static s32
atl1_get_speed_and_duplex(struct atl1_hw
*hw
, u16
*speed
, u16
*duplex
)
883 struct pci_dev
*pdev
= hw
->back
->pdev
;
884 struct atl1_adapter
*adapter
= hw
->back
;
888 /* ; --- Read PHY Specific Status Register (17) */
889 ret_val
= atl1_read_phy_reg(hw
, MII_ATLX_PSSR
, &phy_data
);
893 if (!(phy_data
& MII_ATLX_PSSR_SPD_DPLX_RESOLVED
))
894 return ATLX_ERR_PHY_RES
;
896 switch (phy_data
& MII_ATLX_PSSR_SPEED
) {
897 case MII_ATLX_PSSR_1000MBS
:
900 case MII_ATLX_PSSR_100MBS
:
903 case MII_ATLX_PSSR_10MBS
:
907 if (netif_msg_hw(adapter
))
908 dev_dbg(&pdev
->dev
, "error getting speed\n");
909 return ATLX_ERR_PHY_SPEED
;
912 if (phy_data
& MII_ATLX_PSSR_DPLX
)
913 *duplex
= FULL_DUPLEX
;
915 *duplex
= HALF_DUPLEX
;
920 static void atl1_set_mac_addr(struct atl1_hw
*hw
)
925 * 0: 6AF600DC 1: 000B
928 value
= (((u32
) hw
->mac_addr
[2]) << 24) |
929 (((u32
) hw
->mac_addr
[3]) << 16) |
930 (((u32
) hw
->mac_addr
[4]) << 8) | (((u32
) hw
->mac_addr
[5]));
931 iowrite32(value
, hw
->hw_addr
+ REG_MAC_STA_ADDR
);
933 value
= (((u32
) hw
->mac_addr
[0]) << 8) | (((u32
) hw
->mac_addr
[1]));
934 iowrite32(value
, (hw
->hw_addr
+ REG_MAC_STA_ADDR
) + (1 << 2));
938 * atl1_sw_init - Initialize general software structures (struct atl1_adapter)
939 * @adapter: board private structure to initialize
941 * atl1_sw_init initializes the Adapter private data structure.
942 * Fields are initialized based on PCI device information and
943 * OS network device settings (MTU size).
945 static int __devinit
atl1_sw_init(struct atl1_adapter
*adapter
)
947 struct atl1_hw
*hw
= &adapter
->hw
;
948 struct net_device
*netdev
= adapter
->netdev
;
950 hw
->max_frame_size
= netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
951 hw
->min_frame_size
= ETH_ZLEN
+ ETH_FCS_LEN
;
954 device_set_wakeup_enable(&adapter
->pdev
->dev
, false);
955 adapter
->rx_buffer_len
= (hw
->max_frame_size
+ 7) & ~7;
956 adapter
->ict
= 50000; /* 100ms */
957 adapter
->link_speed
= SPEED_0
; /* hardware init */
958 adapter
->link_duplex
= FULL_DUPLEX
;
960 hw
->phy_configured
= false;
961 hw
->preamble_len
= 7;
971 hw
->rfd_fetch_gap
= 1;
972 hw
->rx_jumbo_th
= adapter
->rx_buffer_len
/ 8;
973 hw
->rx_jumbo_lkah
= 1;
974 hw
->rrd_ret_timer
= 16;
976 hw
->tpd_fetch_th
= 16;
977 hw
->txf_burst
= 0x100;
978 hw
->tx_jumbo_task_th
= (hw
->max_frame_size
+ 7) >> 3;
979 hw
->tpd_fetch_gap
= 1;
980 hw
->rcb_value
= atl1_rcb_64
;
981 hw
->dma_ord
= atl1_dma_ord_enh
;
982 hw
->dmar_block
= atl1_dma_req_256
;
983 hw
->dmaw_block
= atl1_dma_req_256
;
986 hw
->cmb_rx_timer
= 1; /* about 2us */
987 hw
->cmb_tx_timer
= 1; /* about 2us */
988 hw
->smb_timer
= 100000; /* about 200ms */
990 spin_lock_init(&adapter
->lock
);
991 spin_lock_init(&adapter
->mb_lock
);
996 static int mdio_read(struct net_device
*netdev
, int phy_id
, int reg_num
)
998 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
1001 atl1_read_phy_reg(&adapter
->hw
, reg_num
& 0x1f, &result
);
1006 static void mdio_write(struct net_device
*netdev
, int phy_id
, int reg_num
,
1009 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
1011 atl1_write_phy_reg(&adapter
->hw
, reg_num
, val
);
1020 static int atl1_mii_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
1022 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
1023 unsigned long flags
;
1026 if (!netif_running(netdev
))
1029 spin_lock_irqsave(&adapter
->lock
, flags
);
1030 retval
= generic_mii_ioctl(&adapter
->mii
, if_mii(ifr
), cmd
, NULL
);
1031 spin_unlock_irqrestore(&adapter
->lock
, flags
);
1037 * atl1_setup_mem_resources - allocate Tx / RX descriptor resources
1038 * @adapter: board private structure
1040 * Return 0 on success, negative on failure
1042 static s32
atl1_setup_ring_resources(struct atl1_adapter
*adapter
)
1044 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
1045 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1046 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1047 struct atl1_ring_header
*ring_header
= &adapter
->ring_header
;
1048 struct pci_dev
*pdev
= adapter
->pdev
;
1052 size
= sizeof(struct atl1_buffer
) * (tpd_ring
->count
+ rfd_ring
->count
);
1053 tpd_ring
->buffer_info
= kzalloc(size
, GFP_KERNEL
);
1054 if (unlikely(!tpd_ring
->buffer_info
)) {
1055 if (netif_msg_drv(adapter
))
1056 dev_err(&pdev
->dev
, "kzalloc failed , size = D%d\n",
1060 rfd_ring
->buffer_info
=
1061 (struct atl1_buffer
*)(tpd_ring
->buffer_info
+ tpd_ring
->count
);
1064 * real ring DMA buffer
1065 * each ring/block may need up to 8 bytes for alignment, hence the
1066 * additional 40 bytes tacked onto the end.
1068 ring_header
->size
= size
=
1069 sizeof(struct tx_packet_desc
) * tpd_ring
->count
1070 + sizeof(struct rx_free_desc
) * rfd_ring
->count
1071 + sizeof(struct rx_return_desc
) * rrd_ring
->count
1072 + sizeof(struct coals_msg_block
)
1073 + sizeof(struct stats_msg_block
)
1076 ring_header
->desc
= pci_alloc_consistent(pdev
, ring_header
->size
,
1078 if (unlikely(!ring_header
->desc
)) {
1079 if (netif_msg_drv(adapter
))
1080 dev_err(&pdev
->dev
, "pci_alloc_consistent failed\n");
1084 memset(ring_header
->desc
, 0, ring_header
->size
);
1087 tpd_ring
->dma
= ring_header
->dma
;
1088 offset
= (tpd_ring
->dma
& 0x7) ? (8 - (ring_header
->dma
& 0x7)) : 0;
1089 tpd_ring
->dma
+= offset
;
1090 tpd_ring
->desc
= (u8
*) ring_header
->desc
+ offset
;
1091 tpd_ring
->size
= sizeof(struct tx_packet_desc
) * tpd_ring
->count
;
1094 rfd_ring
->dma
= tpd_ring
->dma
+ tpd_ring
->size
;
1095 offset
= (rfd_ring
->dma
& 0x7) ? (8 - (rfd_ring
->dma
& 0x7)) : 0;
1096 rfd_ring
->dma
+= offset
;
1097 rfd_ring
->desc
= (u8
*) tpd_ring
->desc
+ (tpd_ring
->size
+ offset
);
1098 rfd_ring
->size
= sizeof(struct rx_free_desc
) * rfd_ring
->count
;
1102 rrd_ring
->dma
= rfd_ring
->dma
+ rfd_ring
->size
;
1103 offset
= (rrd_ring
->dma
& 0x7) ? (8 - (rrd_ring
->dma
& 0x7)) : 0;
1104 rrd_ring
->dma
+= offset
;
1105 rrd_ring
->desc
= (u8
*) rfd_ring
->desc
+ (rfd_ring
->size
+ offset
);
1106 rrd_ring
->size
= sizeof(struct rx_return_desc
) * rrd_ring
->count
;
1110 adapter
->cmb
.dma
= rrd_ring
->dma
+ rrd_ring
->size
;
1111 offset
= (adapter
->cmb
.dma
& 0x7) ? (8 - (adapter
->cmb
.dma
& 0x7)) : 0;
1112 adapter
->cmb
.dma
+= offset
;
1113 adapter
->cmb
.cmb
= (struct coals_msg_block
*)
1114 ((u8
*) rrd_ring
->desc
+ (rrd_ring
->size
+ offset
));
1117 adapter
->smb
.dma
= adapter
->cmb
.dma
+ sizeof(struct coals_msg_block
);
1118 offset
= (adapter
->smb
.dma
& 0x7) ? (8 - (adapter
->smb
.dma
& 0x7)) : 0;
1119 adapter
->smb
.dma
+= offset
;
1120 adapter
->smb
.smb
= (struct stats_msg_block
*)
1121 ((u8
*) adapter
->cmb
.cmb
+
1122 (sizeof(struct coals_msg_block
) + offset
));
1127 kfree(tpd_ring
->buffer_info
);
1131 static void atl1_init_ring_ptrs(struct atl1_adapter
*adapter
)
1133 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
1134 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1135 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1137 atomic_set(&tpd_ring
->next_to_use
, 0);
1138 atomic_set(&tpd_ring
->next_to_clean
, 0);
1140 rfd_ring
->next_to_clean
= 0;
1141 atomic_set(&rfd_ring
->next_to_use
, 0);
1143 rrd_ring
->next_to_use
= 0;
1144 atomic_set(&rrd_ring
->next_to_clean
, 0);
1148 * atl1_clean_rx_ring - Free RFD Buffers
1149 * @adapter: board private structure
1151 static void atl1_clean_rx_ring(struct atl1_adapter
*adapter
)
1153 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1154 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1155 struct atl1_buffer
*buffer_info
;
1156 struct pci_dev
*pdev
= adapter
->pdev
;
1160 /* Free all the Rx ring sk_buffs */
1161 for (i
= 0; i
< rfd_ring
->count
; i
++) {
1162 buffer_info
= &rfd_ring
->buffer_info
[i
];
1163 if (buffer_info
->dma
) {
1164 pci_unmap_page(pdev
, buffer_info
->dma
,
1165 buffer_info
->length
, PCI_DMA_FROMDEVICE
);
1166 buffer_info
->dma
= 0;
1168 if (buffer_info
->skb
) {
1169 dev_kfree_skb(buffer_info
->skb
);
1170 buffer_info
->skb
= NULL
;
1174 size
= sizeof(struct atl1_buffer
) * rfd_ring
->count
;
1175 memset(rfd_ring
->buffer_info
, 0, size
);
1177 /* Zero out the descriptor ring */
1178 memset(rfd_ring
->desc
, 0, rfd_ring
->size
);
1180 rfd_ring
->next_to_clean
= 0;
1181 atomic_set(&rfd_ring
->next_to_use
, 0);
1183 rrd_ring
->next_to_use
= 0;
1184 atomic_set(&rrd_ring
->next_to_clean
, 0);
1188 * atl1_clean_tx_ring - Free Tx Buffers
1189 * @adapter: board private structure
1191 static void atl1_clean_tx_ring(struct atl1_adapter
*adapter
)
1193 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
1194 struct atl1_buffer
*buffer_info
;
1195 struct pci_dev
*pdev
= adapter
->pdev
;
1199 /* Free all the Tx ring sk_buffs */
1200 for (i
= 0; i
< tpd_ring
->count
; i
++) {
1201 buffer_info
= &tpd_ring
->buffer_info
[i
];
1202 if (buffer_info
->dma
) {
1203 pci_unmap_page(pdev
, buffer_info
->dma
,
1204 buffer_info
->length
, PCI_DMA_TODEVICE
);
1205 buffer_info
->dma
= 0;
1209 for (i
= 0; i
< tpd_ring
->count
; i
++) {
1210 buffer_info
= &tpd_ring
->buffer_info
[i
];
1211 if (buffer_info
->skb
) {
1212 dev_kfree_skb_any(buffer_info
->skb
);
1213 buffer_info
->skb
= NULL
;
1217 size
= sizeof(struct atl1_buffer
) * tpd_ring
->count
;
1218 memset(tpd_ring
->buffer_info
, 0, size
);
1220 /* Zero out the descriptor ring */
1221 memset(tpd_ring
->desc
, 0, tpd_ring
->size
);
1223 atomic_set(&tpd_ring
->next_to_use
, 0);
1224 atomic_set(&tpd_ring
->next_to_clean
, 0);
1228 * atl1_free_ring_resources - Free Tx / RX descriptor Resources
1229 * @adapter: board private structure
1231 * Free all transmit software resources
1233 static void atl1_free_ring_resources(struct atl1_adapter
*adapter
)
1235 struct pci_dev
*pdev
= adapter
->pdev
;
1236 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
1237 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1238 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1239 struct atl1_ring_header
*ring_header
= &adapter
->ring_header
;
1241 atl1_clean_tx_ring(adapter
);
1242 atl1_clean_rx_ring(adapter
);
1244 kfree(tpd_ring
->buffer_info
);
1245 pci_free_consistent(pdev
, ring_header
->size
, ring_header
->desc
,
1248 tpd_ring
->buffer_info
= NULL
;
1249 tpd_ring
->desc
= NULL
;
1252 rfd_ring
->buffer_info
= NULL
;
1253 rfd_ring
->desc
= NULL
;
1256 rrd_ring
->desc
= NULL
;
1259 adapter
->cmb
.dma
= 0;
1260 adapter
->cmb
.cmb
= NULL
;
1262 adapter
->smb
.dma
= 0;
1263 adapter
->smb
.smb
= NULL
;
1266 static void atl1_setup_mac_ctrl(struct atl1_adapter
*adapter
)
1269 struct atl1_hw
*hw
= &adapter
->hw
;
1270 struct net_device
*netdev
= adapter
->netdev
;
1271 /* Config MAC CTRL Register */
1272 value
= MAC_CTRL_TX_EN
| MAC_CTRL_RX_EN
;
1274 if (FULL_DUPLEX
== adapter
->link_duplex
)
1275 value
|= MAC_CTRL_DUPLX
;
1277 value
|= ((u32
) ((SPEED_1000
== adapter
->link_speed
) ?
1278 MAC_CTRL_SPEED_1000
: MAC_CTRL_SPEED_10_100
) <<
1279 MAC_CTRL_SPEED_SHIFT
);
1281 value
|= (MAC_CTRL_TX_FLOW
| MAC_CTRL_RX_FLOW
);
1283 value
|= (MAC_CTRL_ADD_CRC
| MAC_CTRL_PAD
);
1284 /* preamble length */
1285 value
|= (((u32
) adapter
->hw
.preamble_len
1286 & MAC_CTRL_PRMLEN_MASK
) << MAC_CTRL_PRMLEN_SHIFT
);
1288 __atlx_vlan_mode(netdev
->features
, &value
);
1290 if (adapter->rx_csum)
1291 value |= MAC_CTRL_RX_CHKSUM_EN;
1294 value
|= MAC_CTRL_BC_EN
;
1295 if (netdev
->flags
& IFF_PROMISC
)
1296 value
|= MAC_CTRL_PROMIS_EN
;
1297 else if (netdev
->flags
& IFF_ALLMULTI
)
1298 value
|= MAC_CTRL_MC_ALL_EN
;
1299 /* value |= MAC_CTRL_LOOPBACK; */
1300 iowrite32(value
, hw
->hw_addr
+ REG_MAC_CTRL
);
1303 static u32
atl1_check_link(struct atl1_adapter
*adapter
)
1305 struct atl1_hw
*hw
= &adapter
->hw
;
1306 struct net_device
*netdev
= adapter
->netdev
;
1308 u16 speed
, duplex
, phy_data
;
1311 /* MII_BMSR must read twice */
1312 atl1_read_phy_reg(hw
, MII_BMSR
, &phy_data
);
1313 atl1_read_phy_reg(hw
, MII_BMSR
, &phy_data
);
1314 if (!(phy_data
& BMSR_LSTATUS
)) {
1316 if (netif_carrier_ok(netdev
)) {
1317 /* old link state: Up */
1318 if (netif_msg_link(adapter
))
1319 dev_info(&adapter
->pdev
->dev
, "link is down\n");
1320 adapter
->link_speed
= SPEED_0
;
1321 netif_carrier_off(netdev
);
1327 ret_val
= atl1_get_speed_and_duplex(hw
, &speed
, &duplex
);
1331 switch (hw
->media_type
) {
1332 case MEDIA_TYPE_1000M_FULL
:
1333 if (speed
!= SPEED_1000
|| duplex
!= FULL_DUPLEX
)
1336 case MEDIA_TYPE_100M_FULL
:
1337 if (speed
!= SPEED_100
|| duplex
!= FULL_DUPLEX
)
1340 case MEDIA_TYPE_100M_HALF
:
1341 if (speed
!= SPEED_100
|| duplex
!= HALF_DUPLEX
)
1344 case MEDIA_TYPE_10M_FULL
:
1345 if (speed
!= SPEED_10
|| duplex
!= FULL_DUPLEX
)
1348 case MEDIA_TYPE_10M_HALF
:
1349 if (speed
!= SPEED_10
|| duplex
!= HALF_DUPLEX
)
1354 /* link result is our setting */
1356 if (adapter
->link_speed
!= speed
||
1357 adapter
->link_duplex
!= duplex
) {
1358 adapter
->link_speed
= speed
;
1359 adapter
->link_duplex
= duplex
;
1360 atl1_setup_mac_ctrl(adapter
);
1361 if (netif_msg_link(adapter
))
1362 dev_info(&adapter
->pdev
->dev
,
1363 "%s link is up %d Mbps %s\n",
1364 netdev
->name
, adapter
->link_speed
,
1365 adapter
->link_duplex
== FULL_DUPLEX
?
1366 "full duplex" : "half duplex");
1368 if (!netif_carrier_ok(netdev
)) {
1369 /* Link down -> Up */
1370 netif_carrier_on(netdev
);
1375 /* change original link status */
1376 if (netif_carrier_ok(netdev
)) {
1377 adapter
->link_speed
= SPEED_0
;
1378 netif_carrier_off(netdev
);
1379 netif_stop_queue(netdev
);
1382 if (hw
->media_type
!= MEDIA_TYPE_AUTO_SENSOR
&&
1383 hw
->media_type
!= MEDIA_TYPE_1000M_FULL
) {
1384 switch (hw
->media_type
) {
1385 case MEDIA_TYPE_100M_FULL
:
1386 phy_data
= MII_CR_FULL_DUPLEX
| MII_CR_SPEED_100
|
1389 case MEDIA_TYPE_100M_HALF
:
1390 phy_data
= MII_CR_SPEED_100
| MII_CR_RESET
;
1392 case MEDIA_TYPE_10M_FULL
:
1394 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_10
| MII_CR_RESET
;
1397 /* MEDIA_TYPE_10M_HALF: */
1398 phy_data
= MII_CR_SPEED_10
| MII_CR_RESET
;
1401 atl1_write_phy_reg(hw
, MII_BMCR
, phy_data
);
1405 /* auto-neg, insert timer to re-config phy */
1406 if (!adapter
->phy_timer_pending
) {
1407 adapter
->phy_timer_pending
= true;
1408 mod_timer(&adapter
->phy_config_timer
,
1409 round_jiffies(jiffies
+ 3 * HZ
));
1415 static void set_flow_ctrl_old(struct atl1_adapter
*adapter
)
1419 /* RFD Flow Control */
1420 value
= adapter
->rfd_ring
.count
;
1426 value
= ((hi
& RXQ_RXF_PAUSE_TH_HI_MASK
) << RXQ_RXF_PAUSE_TH_HI_SHIFT
) |
1427 ((lo
& RXQ_RXF_PAUSE_TH_LO_MASK
) << RXQ_RXF_PAUSE_TH_LO_SHIFT
);
1428 iowrite32(value
, adapter
->hw
.hw_addr
+ REG_RXQ_RXF_PAUSE_THRESH
);
1430 /* RRD Flow Control */
1431 value
= adapter
->rrd_ring
.count
;
1436 value
= ((hi
& RXQ_RRD_PAUSE_TH_HI_MASK
) << RXQ_RRD_PAUSE_TH_HI_SHIFT
) |
1437 ((lo
& RXQ_RRD_PAUSE_TH_LO_MASK
) << RXQ_RRD_PAUSE_TH_LO_SHIFT
);
1438 iowrite32(value
, adapter
->hw
.hw_addr
+ REG_RXQ_RRD_PAUSE_THRESH
);
1441 static void set_flow_ctrl_new(struct atl1_hw
*hw
)
1445 /* RXF Flow Control */
1446 value
= ioread32(hw
->hw_addr
+ REG_SRAM_RXF_LEN
);
1453 value
= ((hi
& RXQ_RXF_PAUSE_TH_HI_MASK
) << RXQ_RXF_PAUSE_TH_HI_SHIFT
) |
1454 ((lo
& RXQ_RXF_PAUSE_TH_LO_MASK
) << RXQ_RXF_PAUSE_TH_LO_SHIFT
);
1455 iowrite32(value
, hw
->hw_addr
+ REG_RXQ_RXF_PAUSE_THRESH
);
1457 /* RRD Flow Control */
1458 value
= ioread32(hw
->hw_addr
+ REG_SRAM_RRD_LEN
);
1465 value
= ((hi
& RXQ_RRD_PAUSE_TH_HI_MASK
) << RXQ_RRD_PAUSE_TH_HI_SHIFT
) |
1466 ((lo
& RXQ_RRD_PAUSE_TH_LO_MASK
) << RXQ_RRD_PAUSE_TH_LO_SHIFT
);
1467 iowrite32(value
, hw
->hw_addr
+ REG_RXQ_RRD_PAUSE_THRESH
);
1471 * atl1_configure - Configure Transmit&Receive Unit after Reset
1472 * @adapter: board private structure
1474 * Configure the Tx /Rx unit of the MAC after a reset.
1476 static u32
atl1_configure(struct atl1_adapter
*adapter
)
1478 struct atl1_hw
*hw
= &adapter
->hw
;
1481 /* clear interrupt status */
1482 iowrite32(0xffffffff, adapter
->hw
.hw_addr
+ REG_ISR
);
1484 /* set MAC Address */
1485 value
= (((u32
) hw
->mac_addr
[2]) << 24) |
1486 (((u32
) hw
->mac_addr
[3]) << 16) |
1487 (((u32
) hw
->mac_addr
[4]) << 8) |
1488 (((u32
) hw
->mac_addr
[5]));
1489 iowrite32(value
, hw
->hw_addr
+ REG_MAC_STA_ADDR
);
1490 value
= (((u32
) hw
->mac_addr
[0]) << 8) | (((u32
) hw
->mac_addr
[1]));
1491 iowrite32(value
, hw
->hw_addr
+ (REG_MAC_STA_ADDR
+ 4));
1495 /* HI base address */
1496 iowrite32((u32
) ((adapter
->tpd_ring
.dma
& 0xffffffff00000000ULL
) >> 32),
1497 hw
->hw_addr
+ REG_DESC_BASE_ADDR_HI
);
1498 /* LO base address */
1499 iowrite32((u32
) (adapter
->rfd_ring
.dma
& 0x00000000ffffffffULL
),
1500 hw
->hw_addr
+ REG_DESC_RFD_ADDR_LO
);
1501 iowrite32((u32
) (adapter
->rrd_ring
.dma
& 0x00000000ffffffffULL
),
1502 hw
->hw_addr
+ REG_DESC_RRD_ADDR_LO
);
1503 iowrite32((u32
) (adapter
->tpd_ring
.dma
& 0x00000000ffffffffULL
),
1504 hw
->hw_addr
+ REG_DESC_TPD_ADDR_LO
);
1505 iowrite32((u32
) (adapter
->cmb
.dma
& 0x00000000ffffffffULL
),
1506 hw
->hw_addr
+ REG_DESC_CMB_ADDR_LO
);
1507 iowrite32((u32
) (adapter
->smb
.dma
& 0x00000000ffffffffULL
),
1508 hw
->hw_addr
+ REG_DESC_SMB_ADDR_LO
);
1511 value
= adapter
->rrd_ring
.count
;
1513 value
+= adapter
->rfd_ring
.count
;
1514 iowrite32(value
, hw
->hw_addr
+ REG_DESC_RFD_RRD_RING_SIZE
);
1515 iowrite32(adapter
->tpd_ring
.count
, hw
->hw_addr
+
1516 REG_DESC_TPD_RING_SIZE
);
1519 iowrite32(1, hw
->hw_addr
+ REG_LOAD_PTR
);
1521 /* config Mailbox */
1522 value
= ((atomic_read(&adapter
->tpd_ring
.next_to_use
)
1523 & MB_TPD_PROD_INDX_MASK
) << MB_TPD_PROD_INDX_SHIFT
) |
1524 ((atomic_read(&adapter
->rrd_ring
.next_to_clean
)
1525 & MB_RRD_CONS_INDX_MASK
) << MB_RRD_CONS_INDX_SHIFT
) |
1526 ((atomic_read(&adapter
->rfd_ring
.next_to_use
)
1527 & MB_RFD_PROD_INDX_MASK
) << MB_RFD_PROD_INDX_SHIFT
);
1528 iowrite32(value
, hw
->hw_addr
+ REG_MAILBOX
);
1530 /* config IPG/IFG */
1531 value
= (((u32
) hw
->ipgt
& MAC_IPG_IFG_IPGT_MASK
)
1532 << MAC_IPG_IFG_IPGT_SHIFT
) |
1533 (((u32
) hw
->min_ifg
& MAC_IPG_IFG_MIFG_MASK
)
1534 << MAC_IPG_IFG_MIFG_SHIFT
) |
1535 (((u32
) hw
->ipgr1
& MAC_IPG_IFG_IPGR1_MASK
)
1536 << MAC_IPG_IFG_IPGR1_SHIFT
) |
1537 (((u32
) hw
->ipgr2
& MAC_IPG_IFG_IPGR2_MASK
)
1538 << MAC_IPG_IFG_IPGR2_SHIFT
);
1539 iowrite32(value
, hw
->hw_addr
+ REG_MAC_IPG_IFG
);
1541 /* config Half-Duplex Control */
1542 value
= ((u32
) hw
->lcol
& MAC_HALF_DUPLX_CTRL_LCOL_MASK
) |
1543 (((u32
) hw
->max_retry
& MAC_HALF_DUPLX_CTRL_RETRY_MASK
)
1544 << MAC_HALF_DUPLX_CTRL_RETRY_SHIFT
) |
1545 MAC_HALF_DUPLX_CTRL_EXC_DEF_EN
|
1546 (0xa << MAC_HALF_DUPLX_CTRL_ABEBT_SHIFT
) |
1547 (((u32
) hw
->jam_ipg
& MAC_HALF_DUPLX_CTRL_JAMIPG_MASK
)
1548 << MAC_HALF_DUPLX_CTRL_JAMIPG_SHIFT
);
1549 iowrite32(value
, hw
->hw_addr
+ REG_MAC_HALF_DUPLX_CTRL
);
1551 /* set Interrupt Moderator Timer */
1552 iowrite16(adapter
->imt
, hw
->hw_addr
+ REG_IRQ_MODU_TIMER_INIT
);
1553 iowrite32(MASTER_CTRL_ITIMER_EN
, hw
->hw_addr
+ REG_MASTER_CTRL
);
1555 /* set Interrupt Clear Timer */
1556 iowrite16(adapter
->ict
, hw
->hw_addr
+ REG_CMBDISDMA_TIMER
);
1558 /* set max frame size hw will accept */
1559 iowrite32(hw
->max_frame_size
, hw
->hw_addr
+ REG_MTU
);
1561 /* jumbo size & rrd retirement timer */
1562 value
= (((u32
) hw
->rx_jumbo_th
& RXQ_JMBOSZ_TH_MASK
)
1563 << RXQ_JMBOSZ_TH_SHIFT
) |
1564 (((u32
) hw
->rx_jumbo_lkah
& RXQ_JMBO_LKAH_MASK
)
1565 << RXQ_JMBO_LKAH_SHIFT
) |
1566 (((u32
) hw
->rrd_ret_timer
& RXQ_RRD_TIMER_MASK
)
1567 << RXQ_RRD_TIMER_SHIFT
);
1568 iowrite32(value
, hw
->hw_addr
+ REG_RXQ_JMBOSZ_RRDTIM
);
1571 switch (hw
->dev_rev
) {
1576 set_flow_ctrl_old(adapter
);
1579 set_flow_ctrl_new(hw
);
1584 value
= (((u32
) hw
->tpd_burst
& TXQ_CTRL_TPD_BURST_NUM_MASK
)
1585 << TXQ_CTRL_TPD_BURST_NUM_SHIFT
) |
1586 (((u32
) hw
->txf_burst
& TXQ_CTRL_TXF_BURST_NUM_MASK
)
1587 << TXQ_CTRL_TXF_BURST_NUM_SHIFT
) |
1588 (((u32
) hw
->tpd_fetch_th
& TXQ_CTRL_TPD_FETCH_TH_MASK
)
1589 << TXQ_CTRL_TPD_FETCH_TH_SHIFT
) | TXQ_CTRL_ENH_MODE
|
1591 iowrite32(value
, hw
->hw_addr
+ REG_TXQ_CTRL
);
1593 /* min tpd fetch gap & tx jumbo packet size threshold for taskoffload */
1594 value
= (((u32
) hw
->tx_jumbo_task_th
& TX_JUMBO_TASK_TH_MASK
)
1595 << TX_JUMBO_TASK_TH_SHIFT
) |
1596 (((u32
) hw
->tpd_fetch_gap
& TX_TPD_MIN_IPG_MASK
)
1597 << TX_TPD_MIN_IPG_SHIFT
);
1598 iowrite32(value
, hw
->hw_addr
+ REG_TX_JUMBO_TASK_TH_TPD_IPG
);
1601 value
= (((u32
) hw
->rfd_burst
& RXQ_CTRL_RFD_BURST_NUM_MASK
)
1602 << RXQ_CTRL_RFD_BURST_NUM_SHIFT
) |
1603 (((u32
) hw
->rrd_burst
& RXQ_CTRL_RRD_BURST_THRESH_MASK
)
1604 << RXQ_CTRL_RRD_BURST_THRESH_SHIFT
) |
1605 (((u32
) hw
->rfd_fetch_gap
& RXQ_CTRL_RFD_PREF_MIN_IPG_MASK
)
1606 << RXQ_CTRL_RFD_PREF_MIN_IPG_SHIFT
) | RXQ_CTRL_CUT_THRU_EN
|
1608 iowrite32(value
, hw
->hw_addr
+ REG_RXQ_CTRL
);
1610 /* config DMA Engine */
1611 value
= ((((u32
) hw
->dmar_block
) & DMA_CTRL_DMAR_BURST_LEN_MASK
)
1612 << DMA_CTRL_DMAR_BURST_LEN_SHIFT
) |
1613 ((((u32
) hw
->dmaw_block
) & DMA_CTRL_DMAW_BURST_LEN_MASK
)
1614 << DMA_CTRL_DMAW_BURST_LEN_SHIFT
) | DMA_CTRL_DMAR_EN
|
1616 value
|= (u32
) hw
->dma_ord
;
1617 if (atl1_rcb_128
== hw
->rcb_value
)
1618 value
|= DMA_CTRL_RCB_VALUE
;
1619 iowrite32(value
, hw
->hw_addr
+ REG_DMA_CTRL
);
1621 /* config CMB / SMB */
1622 value
= (hw
->cmb_tpd
> adapter
->tpd_ring
.count
) ?
1623 hw
->cmb_tpd
: adapter
->tpd_ring
.count
;
1625 value
|= hw
->cmb_rrd
;
1626 iowrite32(value
, hw
->hw_addr
+ REG_CMB_WRITE_TH
);
1627 value
= hw
->cmb_rx_timer
| ((u32
) hw
->cmb_tx_timer
<< 16);
1628 iowrite32(value
, hw
->hw_addr
+ REG_CMB_WRITE_TIMER
);
1629 iowrite32(hw
->smb_timer
, hw
->hw_addr
+ REG_SMB_TIMER
);
1631 /* --- enable CMB / SMB */
1632 value
= CSMB_CTRL_CMB_EN
| CSMB_CTRL_SMB_EN
;
1633 iowrite32(value
, hw
->hw_addr
+ REG_CSMB_CTRL
);
1635 value
= ioread32(adapter
->hw
.hw_addr
+ REG_ISR
);
1636 if (unlikely((value
& ISR_PHY_LINKDOWN
) != 0))
1637 value
= 1; /* config failed */
1641 /* clear all interrupt status */
1642 iowrite32(0x3fffffff, adapter
->hw
.hw_addr
+ REG_ISR
);
1643 iowrite32(0, adapter
->hw
.hw_addr
+ REG_ISR
);
1648 * atl1_pcie_patch - Patch for PCIE module
1650 static void atl1_pcie_patch(struct atl1_adapter
*adapter
)
1654 /* much vendor magic here */
1656 iowrite32(value
, adapter
->hw
.hw_addr
+ 0x12FC);
1657 /* pcie flow control mode change */
1658 value
= ioread32(adapter
->hw
.hw_addr
+ 0x1008);
1660 iowrite32(value
, adapter
->hw
.hw_addr
+ 0x1008);
1664 * When ACPI resume on some VIA MotherBoard, the Interrupt Disable bit/0x400
1665 * on PCI Command register is disable.
1666 * The function enable this bit.
1667 * Brackett, 2006/03/15
1669 static void atl1_via_workaround(struct atl1_adapter
*adapter
)
1671 unsigned long value
;
1673 value
= ioread16(adapter
->hw
.hw_addr
+ PCI_COMMAND
);
1674 if (value
& PCI_COMMAND_INTX_DISABLE
)
1675 value
&= ~PCI_COMMAND_INTX_DISABLE
;
1676 iowrite32(value
, adapter
->hw
.hw_addr
+ PCI_COMMAND
);
1679 static void atl1_inc_smb(struct atl1_adapter
*adapter
)
1681 struct net_device
*netdev
= adapter
->netdev
;
1682 struct stats_msg_block
*smb
= adapter
->smb
.smb
;
1684 /* Fill out the OS statistics structure */
1685 adapter
->soft_stats
.rx_packets
+= smb
->rx_ok
;
1686 adapter
->soft_stats
.tx_packets
+= smb
->tx_ok
;
1687 adapter
->soft_stats
.rx_bytes
+= smb
->rx_byte_cnt
;
1688 adapter
->soft_stats
.tx_bytes
+= smb
->tx_byte_cnt
;
1689 adapter
->soft_stats
.multicast
+= smb
->rx_mcast
;
1690 adapter
->soft_stats
.collisions
+= (smb
->tx_1_col
+ smb
->tx_2_col
* 2 +
1691 smb
->tx_late_col
+ smb
->tx_abort_col
* adapter
->hw
.max_retry
);
1694 adapter
->soft_stats
.rx_errors
+= (smb
->rx_frag
+ smb
->rx_fcs_err
+
1695 smb
->rx_len_err
+ smb
->rx_sz_ov
+ smb
->rx_rxf_ov
+
1696 smb
->rx_rrd_ov
+ smb
->rx_align_err
);
1697 adapter
->soft_stats
.rx_fifo_errors
+= smb
->rx_rxf_ov
;
1698 adapter
->soft_stats
.rx_length_errors
+= smb
->rx_len_err
;
1699 adapter
->soft_stats
.rx_crc_errors
+= smb
->rx_fcs_err
;
1700 adapter
->soft_stats
.rx_frame_errors
+= smb
->rx_align_err
;
1701 adapter
->soft_stats
.rx_missed_errors
+= (smb
->rx_rrd_ov
+
1704 adapter
->soft_stats
.rx_pause
+= smb
->rx_pause
;
1705 adapter
->soft_stats
.rx_rrd_ov
+= smb
->rx_rrd_ov
;
1706 adapter
->soft_stats
.rx_trunc
+= smb
->rx_sz_ov
;
1709 adapter
->soft_stats
.tx_errors
+= (smb
->tx_late_col
+
1710 smb
->tx_abort_col
+ smb
->tx_underrun
+ smb
->tx_trunc
);
1711 adapter
->soft_stats
.tx_fifo_errors
+= smb
->tx_underrun
;
1712 adapter
->soft_stats
.tx_aborted_errors
+= smb
->tx_abort_col
;
1713 adapter
->soft_stats
.tx_window_errors
+= smb
->tx_late_col
;
1715 adapter
->soft_stats
.excecol
+= smb
->tx_abort_col
;
1716 adapter
->soft_stats
.deffer
+= smb
->tx_defer
;
1717 adapter
->soft_stats
.scc
+= smb
->tx_1_col
;
1718 adapter
->soft_stats
.mcc
+= smb
->tx_2_col
;
1719 adapter
->soft_stats
.latecol
+= smb
->tx_late_col
;
1720 adapter
->soft_stats
.tx_underun
+= smb
->tx_underrun
;
1721 adapter
->soft_stats
.tx_trunc
+= smb
->tx_trunc
;
1722 adapter
->soft_stats
.tx_pause
+= smb
->tx_pause
;
1724 netdev
->stats
.rx_packets
= adapter
->soft_stats
.rx_packets
;
1725 netdev
->stats
.tx_packets
= adapter
->soft_stats
.tx_packets
;
1726 netdev
->stats
.rx_bytes
= adapter
->soft_stats
.rx_bytes
;
1727 netdev
->stats
.tx_bytes
= adapter
->soft_stats
.tx_bytes
;
1728 netdev
->stats
.multicast
= adapter
->soft_stats
.multicast
;
1729 netdev
->stats
.collisions
= adapter
->soft_stats
.collisions
;
1730 netdev
->stats
.rx_errors
= adapter
->soft_stats
.rx_errors
;
1731 netdev
->stats
.rx_over_errors
=
1732 adapter
->soft_stats
.rx_missed_errors
;
1733 netdev
->stats
.rx_length_errors
=
1734 adapter
->soft_stats
.rx_length_errors
;
1735 netdev
->stats
.rx_crc_errors
= adapter
->soft_stats
.rx_crc_errors
;
1736 netdev
->stats
.rx_frame_errors
=
1737 adapter
->soft_stats
.rx_frame_errors
;
1738 netdev
->stats
.rx_fifo_errors
= adapter
->soft_stats
.rx_fifo_errors
;
1739 netdev
->stats
.rx_missed_errors
=
1740 adapter
->soft_stats
.rx_missed_errors
;
1741 netdev
->stats
.tx_errors
= adapter
->soft_stats
.tx_errors
;
1742 netdev
->stats
.tx_fifo_errors
= adapter
->soft_stats
.tx_fifo_errors
;
1743 netdev
->stats
.tx_aborted_errors
=
1744 adapter
->soft_stats
.tx_aborted_errors
;
1745 netdev
->stats
.tx_window_errors
=
1746 adapter
->soft_stats
.tx_window_errors
;
1747 netdev
->stats
.tx_carrier_errors
=
1748 adapter
->soft_stats
.tx_carrier_errors
;
1751 static void atl1_update_mailbox(struct atl1_adapter
*adapter
)
1753 unsigned long flags
;
1754 u32 tpd_next_to_use
;
1755 u32 rfd_next_to_use
;
1756 u32 rrd_next_to_clean
;
1759 spin_lock_irqsave(&adapter
->mb_lock
, flags
);
1761 tpd_next_to_use
= atomic_read(&adapter
->tpd_ring
.next_to_use
);
1762 rfd_next_to_use
= atomic_read(&adapter
->rfd_ring
.next_to_use
);
1763 rrd_next_to_clean
= atomic_read(&adapter
->rrd_ring
.next_to_clean
);
1765 value
= ((rfd_next_to_use
& MB_RFD_PROD_INDX_MASK
) <<
1766 MB_RFD_PROD_INDX_SHIFT
) |
1767 ((rrd_next_to_clean
& MB_RRD_CONS_INDX_MASK
) <<
1768 MB_RRD_CONS_INDX_SHIFT
) |
1769 ((tpd_next_to_use
& MB_TPD_PROD_INDX_MASK
) <<
1770 MB_TPD_PROD_INDX_SHIFT
);
1771 iowrite32(value
, adapter
->hw
.hw_addr
+ REG_MAILBOX
);
1773 spin_unlock_irqrestore(&adapter
->mb_lock
, flags
);
1776 static void atl1_clean_alloc_flag(struct atl1_adapter
*adapter
,
1777 struct rx_return_desc
*rrd
, u16 offset
)
1779 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1781 while (rfd_ring
->next_to_clean
!= (rrd
->buf_indx
+ offset
)) {
1782 rfd_ring
->buffer_info
[rfd_ring
->next_to_clean
].alloced
= 0;
1783 if (++rfd_ring
->next_to_clean
== rfd_ring
->count
) {
1784 rfd_ring
->next_to_clean
= 0;
1789 static void atl1_update_rfd_index(struct atl1_adapter
*adapter
,
1790 struct rx_return_desc
*rrd
)
1794 num_buf
= (rrd
->xsz
.xsum_sz
.pkt_size
+ adapter
->rx_buffer_len
- 1) /
1795 adapter
->rx_buffer_len
;
1796 if (rrd
->num_buf
== num_buf
)
1797 /* clean alloc flag for bad rrd */
1798 atl1_clean_alloc_flag(adapter
, rrd
, num_buf
);
1801 static void atl1_rx_checksum(struct atl1_adapter
*adapter
,
1802 struct rx_return_desc
*rrd
, struct sk_buff
*skb
)
1804 struct pci_dev
*pdev
= adapter
->pdev
;
1807 * The L1 hardware contains a bug that erroneously sets the
1808 * PACKET_FLAG_ERR and ERR_FLAG_L4_CHKSUM bits whenever a
1809 * fragmented IP packet is received, even though the packet
1810 * is perfectly valid and its checksum is correct. There's
1811 * no way to distinguish between one of these good packets
1812 * and a packet that actually contains a TCP/UDP checksum
1813 * error, so all we can do is allow it to be handed up to
1814 * the higher layers and let it be sorted out there.
1817 skb_checksum_none_assert(skb
);
1819 if (unlikely(rrd
->pkt_flg
& PACKET_FLAG_ERR
)) {
1820 if (rrd
->err_flg
& (ERR_FLAG_CRC
| ERR_FLAG_TRUNC
|
1821 ERR_FLAG_CODE
| ERR_FLAG_OV
)) {
1822 adapter
->hw_csum_err
++;
1823 if (netif_msg_rx_err(adapter
))
1824 dev_printk(KERN_DEBUG
, &pdev
->dev
,
1825 "rx checksum error\n");
1831 if (!(rrd
->pkt_flg
& PACKET_FLAG_IPV4
))
1832 /* checksum is invalid, but it's not an IPv4 pkt, so ok */
1836 if (likely(!(rrd
->err_flg
&
1837 (ERR_FLAG_IP_CHKSUM
| ERR_FLAG_L4_CHKSUM
)))) {
1838 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1839 adapter
->hw_csum_good
++;
1845 * atl1_alloc_rx_buffers - Replace used receive buffers
1846 * @adapter: address of board private structure
1848 static u16
atl1_alloc_rx_buffers(struct atl1_adapter
*adapter
)
1850 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1851 struct pci_dev
*pdev
= adapter
->pdev
;
1853 unsigned long offset
;
1854 struct atl1_buffer
*buffer_info
, *next_info
;
1855 struct sk_buff
*skb
;
1857 u16 rfd_next_to_use
, next_next
;
1858 struct rx_free_desc
*rfd_desc
;
1860 next_next
= rfd_next_to_use
= atomic_read(&rfd_ring
->next_to_use
);
1861 if (++next_next
== rfd_ring
->count
)
1863 buffer_info
= &rfd_ring
->buffer_info
[rfd_next_to_use
];
1864 next_info
= &rfd_ring
->buffer_info
[next_next
];
1866 while (!buffer_info
->alloced
&& !next_info
->alloced
) {
1867 if (buffer_info
->skb
) {
1868 buffer_info
->alloced
= 1;
1872 rfd_desc
= ATL1_RFD_DESC(rfd_ring
, rfd_next_to_use
);
1874 skb
= netdev_alloc_skb_ip_align(adapter
->netdev
,
1875 adapter
->rx_buffer_len
);
1876 if (unlikely(!skb
)) {
1877 /* Better luck next round */
1878 adapter
->netdev
->stats
.rx_dropped
++;
1882 buffer_info
->alloced
= 1;
1883 buffer_info
->skb
= skb
;
1884 buffer_info
->length
= (u16
) adapter
->rx_buffer_len
;
1885 page
= virt_to_page(skb
->data
);
1886 offset
= (unsigned long)skb
->data
& ~PAGE_MASK
;
1887 buffer_info
->dma
= pci_map_page(pdev
, page
, offset
,
1888 adapter
->rx_buffer_len
,
1889 PCI_DMA_FROMDEVICE
);
1890 rfd_desc
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
1891 rfd_desc
->buf_len
= cpu_to_le16(adapter
->rx_buffer_len
);
1892 rfd_desc
->coalese
= 0;
1895 rfd_next_to_use
= next_next
;
1896 if (unlikely(++next_next
== rfd_ring
->count
))
1899 buffer_info
= &rfd_ring
->buffer_info
[rfd_next_to_use
];
1900 next_info
= &rfd_ring
->buffer_info
[next_next
];
1906 * Force memory writes to complete before letting h/w
1907 * know there are new descriptors to fetch. (Only
1908 * applicable for weak-ordered memory model archs,
1912 atomic_set(&rfd_ring
->next_to_use
, (int)rfd_next_to_use
);
1917 static void atl1_intr_rx(struct atl1_adapter
*adapter
)
1921 u16 rrd_next_to_clean
;
1923 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1924 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1925 struct atl1_buffer
*buffer_info
;
1926 struct rx_return_desc
*rrd
;
1927 struct sk_buff
*skb
;
1931 rrd_next_to_clean
= atomic_read(&rrd_ring
->next_to_clean
);
1934 rrd
= ATL1_RRD_DESC(rrd_ring
, rrd_next_to_clean
);
1936 if (likely(rrd
->xsz
.valid
)) { /* packet valid */
1938 /* check rrd status */
1939 if (likely(rrd
->num_buf
== 1))
1941 else if (netif_msg_rx_err(adapter
)) {
1942 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1943 "unexpected RRD buffer count\n");
1944 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1945 "rx_buf_len = %d\n",
1946 adapter
->rx_buffer_len
);
1947 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1948 "RRD num_buf = %d\n",
1950 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1951 "RRD pkt_len = %d\n",
1952 rrd
->xsz
.xsum_sz
.pkt_size
);
1953 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1954 "RRD pkt_flg = 0x%08X\n",
1956 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1957 "RRD err_flg = 0x%08X\n",
1959 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1960 "RRD vlan_tag = 0x%08X\n",
1964 /* rrd seems to be bad */
1965 if (unlikely(i
-- > 0)) {
1966 /* rrd may not be DMAed completely */
1971 if (netif_msg_rx_err(adapter
))
1972 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1974 /* see if update RFD index */
1975 if (rrd
->num_buf
> 1)
1976 atl1_update_rfd_index(adapter
, rrd
);
1980 if (++rrd_next_to_clean
== rrd_ring
->count
)
1981 rrd_next_to_clean
= 0;
1984 } else { /* current rrd still not be updated */
1989 /* clean alloc flag for bad rrd */
1990 atl1_clean_alloc_flag(adapter
, rrd
, 0);
1992 buffer_info
= &rfd_ring
->buffer_info
[rrd
->buf_indx
];
1993 if (++rfd_ring
->next_to_clean
== rfd_ring
->count
)
1994 rfd_ring
->next_to_clean
= 0;
1996 /* update rrd next to clean */
1997 if (++rrd_next_to_clean
== rrd_ring
->count
)
1998 rrd_next_to_clean
= 0;
2001 if (unlikely(rrd
->pkt_flg
& PACKET_FLAG_ERR
)) {
2002 if (!(rrd
->err_flg
&
2003 (ERR_FLAG_IP_CHKSUM
| ERR_FLAG_L4_CHKSUM
2005 /* packet error, don't need upstream */
2006 buffer_info
->alloced
= 0;
2013 pci_unmap_page(adapter
->pdev
, buffer_info
->dma
,
2014 buffer_info
->length
, PCI_DMA_FROMDEVICE
);
2015 buffer_info
->dma
= 0;
2016 skb
= buffer_info
->skb
;
2017 length
= le16_to_cpu(rrd
->xsz
.xsum_sz
.pkt_size
);
2019 skb_put(skb
, length
- ETH_FCS_LEN
);
2021 /* Receive Checksum Offload */
2022 atl1_rx_checksum(adapter
, rrd
, skb
);
2023 skb
->protocol
= eth_type_trans(skb
, adapter
->netdev
);
2025 if (rrd
->pkt_flg
& PACKET_FLAG_VLAN_INS
) {
2026 u16 vlan_tag
= (rrd
->vlan_tag
>> 4) |
2027 ((rrd
->vlan_tag
& 7) << 13) |
2028 ((rrd
->vlan_tag
& 8) << 9);
2030 __vlan_hwaccel_put_tag(skb
, vlan_tag
);
2034 /* let protocol layer free skb */
2035 buffer_info
->skb
= NULL
;
2036 buffer_info
->alloced
= 0;
2040 atomic_set(&rrd_ring
->next_to_clean
, rrd_next_to_clean
);
2042 atl1_alloc_rx_buffers(adapter
);
2044 /* update mailbox ? */
2046 u32 tpd_next_to_use
;
2047 u32 rfd_next_to_use
;
2049 spin_lock(&adapter
->mb_lock
);
2051 tpd_next_to_use
= atomic_read(&adapter
->tpd_ring
.next_to_use
);
2053 atomic_read(&adapter
->rfd_ring
.next_to_use
);
2055 atomic_read(&adapter
->rrd_ring
.next_to_clean
);
2056 value
= ((rfd_next_to_use
& MB_RFD_PROD_INDX_MASK
) <<
2057 MB_RFD_PROD_INDX_SHIFT
) |
2058 ((rrd_next_to_clean
& MB_RRD_CONS_INDX_MASK
) <<
2059 MB_RRD_CONS_INDX_SHIFT
) |
2060 ((tpd_next_to_use
& MB_TPD_PROD_INDX_MASK
) <<
2061 MB_TPD_PROD_INDX_SHIFT
);
2062 iowrite32(value
, adapter
->hw
.hw_addr
+ REG_MAILBOX
);
2063 spin_unlock(&adapter
->mb_lock
);
2067 static void atl1_intr_tx(struct atl1_adapter
*adapter
)
2069 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
2070 struct atl1_buffer
*buffer_info
;
2071 u16 sw_tpd_next_to_clean
;
2072 u16 cmb_tpd_next_to_clean
;
2074 sw_tpd_next_to_clean
= atomic_read(&tpd_ring
->next_to_clean
);
2075 cmb_tpd_next_to_clean
= le16_to_cpu(adapter
->cmb
.cmb
->tpd_cons_idx
);
2077 while (cmb_tpd_next_to_clean
!= sw_tpd_next_to_clean
) {
2078 buffer_info
= &tpd_ring
->buffer_info
[sw_tpd_next_to_clean
];
2079 if (buffer_info
->dma
) {
2080 pci_unmap_page(adapter
->pdev
, buffer_info
->dma
,
2081 buffer_info
->length
, PCI_DMA_TODEVICE
);
2082 buffer_info
->dma
= 0;
2085 if (buffer_info
->skb
) {
2086 dev_kfree_skb_irq(buffer_info
->skb
);
2087 buffer_info
->skb
= NULL
;
2090 if (++sw_tpd_next_to_clean
== tpd_ring
->count
)
2091 sw_tpd_next_to_clean
= 0;
2093 atomic_set(&tpd_ring
->next_to_clean
, sw_tpd_next_to_clean
);
2095 if (netif_queue_stopped(adapter
->netdev
) &&
2096 netif_carrier_ok(adapter
->netdev
))
2097 netif_wake_queue(adapter
->netdev
);
2100 static u16
atl1_tpd_avail(struct atl1_tpd_ring
*tpd_ring
)
2102 u16 next_to_clean
= atomic_read(&tpd_ring
->next_to_clean
);
2103 u16 next_to_use
= atomic_read(&tpd_ring
->next_to_use
);
2104 return (next_to_clean
> next_to_use
) ?
2105 next_to_clean
- next_to_use
- 1 :
2106 tpd_ring
->count
+ next_to_clean
- next_to_use
- 1;
2109 static int atl1_tso(struct atl1_adapter
*adapter
, struct sk_buff
*skb
,
2110 struct tx_packet_desc
*ptpd
)
2116 if (skb_shinfo(skb
)->gso_size
) {
2117 if (skb_header_cloned(skb
)) {
2118 err
= pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
);
2123 if (skb
->protocol
== htons(ETH_P_IP
)) {
2124 struct iphdr
*iph
= ip_hdr(skb
);
2126 real_len
= (((unsigned char *)iph
- skb
->data
) +
2127 ntohs(iph
->tot_len
));
2128 if (real_len
< skb
->len
)
2129 pskb_trim(skb
, real_len
);
2130 hdr_len
= (skb_transport_offset(skb
) + tcp_hdrlen(skb
));
2131 if (skb
->len
== hdr_len
) {
2133 tcp_hdr(skb
)->check
=
2134 ~csum_tcpudp_magic(iph
->saddr
,
2135 iph
->daddr
, tcp_hdrlen(skb
),
2137 ptpd
->word3
|= (iph
->ihl
& TPD_IPHL_MASK
) <<
2139 ptpd
->word3
|= ((tcp_hdrlen(skb
) >> 2) &
2140 TPD_TCPHDRLEN_MASK
) <<
2141 TPD_TCPHDRLEN_SHIFT
;
2142 ptpd
->word3
|= 1 << TPD_IP_CSUM_SHIFT
;
2143 ptpd
->word3
|= 1 << TPD_TCP_CSUM_SHIFT
;
2148 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(iph
->saddr
,
2149 iph
->daddr
, 0, IPPROTO_TCP
, 0);
2150 ip_off
= (unsigned char *)iph
-
2151 (unsigned char *) skb_network_header(skb
);
2152 if (ip_off
== 8) /* 802.3-SNAP frame */
2153 ptpd
->word3
|= 1 << TPD_ETHTYPE_SHIFT
;
2154 else if (ip_off
!= 0)
2157 ptpd
->word3
|= (iph
->ihl
& TPD_IPHL_MASK
) <<
2159 ptpd
->word3
|= ((tcp_hdrlen(skb
) >> 2) &
2160 TPD_TCPHDRLEN_MASK
) << TPD_TCPHDRLEN_SHIFT
;
2161 ptpd
->word3
|= (skb_shinfo(skb
)->gso_size
&
2162 TPD_MSS_MASK
) << TPD_MSS_SHIFT
;
2163 ptpd
->word3
|= 1 << TPD_SEGMENT_EN_SHIFT
;
2170 static int atl1_tx_csum(struct atl1_adapter
*adapter
, struct sk_buff
*skb
,
2171 struct tx_packet_desc
*ptpd
)
2175 if (likely(skb
->ip_summed
== CHECKSUM_PARTIAL
)) {
2176 css
= skb_checksum_start_offset(skb
);
2177 cso
= css
+ (u8
) skb
->csum_offset
;
2178 if (unlikely(css
& 0x1)) {
2179 /* L1 hardware requires an even number here */
2180 if (netif_msg_tx_err(adapter
))
2181 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
2182 "payload offset not an even number\n");
2185 ptpd
->word3
|= (css
& TPD_PLOADOFFSET_MASK
) <<
2186 TPD_PLOADOFFSET_SHIFT
;
2187 ptpd
->word3
|= (cso
& TPD_CCSUMOFFSET_MASK
) <<
2188 TPD_CCSUMOFFSET_SHIFT
;
2189 ptpd
->word3
|= 1 << TPD_CUST_CSUM_EN_SHIFT
;
2195 static void atl1_tx_map(struct atl1_adapter
*adapter
, struct sk_buff
*skb
,
2196 struct tx_packet_desc
*ptpd
)
2198 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
2199 struct atl1_buffer
*buffer_info
;
2200 u16 buf_len
= skb
->len
;
2202 unsigned long offset
;
2203 unsigned int nr_frags
;
2210 buf_len
-= skb
->data_len
;
2211 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2212 next_to_use
= atomic_read(&tpd_ring
->next_to_use
);
2213 buffer_info
= &tpd_ring
->buffer_info
[next_to_use
];
2214 BUG_ON(buffer_info
->skb
);
2215 /* put skb in last TPD */
2216 buffer_info
->skb
= NULL
;
2218 retval
= (ptpd
->word3
>> TPD_SEGMENT_EN_SHIFT
) & TPD_SEGMENT_EN_MASK
;
2221 hdr_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
2222 buffer_info
->length
= hdr_len
;
2223 page
= virt_to_page(skb
->data
);
2224 offset
= (unsigned long)skb
->data
& ~PAGE_MASK
;
2225 buffer_info
->dma
= pci_map_page(adapter
->pdev
, page
,
2229 if (++next_to_use
== tpd_ring
->count
)
2232 if (buf_len
> hdr_len
) {
2235 data_len
= buf_len
- hdr_len
;
2236 nseg
= (data_len
+ ATL1_MAX_TX_BUF_LEN
- 1) /
2237 ATL1_MAX_TX_BUF_LEN
;
2238 for (i
= 0; i
< nseg
; i
++) {
2240 &tpd_ring
->buffer_info
[next_to_use
];
2241 buffer_info
->skb
= NULL
;
2242 buffer_info
->length
=
2243 (ATL1_MAX_TX_BUF_LEN
>=
2244 data_len
) ? ATL1_MAX_TX_BUF_LEN
: data_len
;
2245 data_len
-= buffer_info
->length
;
2246 page
= virt_to_page(skb
->data
+
2247 (hdr_len
+ i
* ATL1_MAX_TX_BUF_LEN
));
2248 offset
= (unsigned long)(skb
->data
+
2249 (hdr_len
+ i
* ATL1_MAX_TX_BUF_LEN
)) &
2251 buffer_info
->dma
= pci_map_page(adapter
->pdev
,
2252 page
, offset
, buffer_info
->length
,
2254 if (++next_to_use
== tpd_ring
->count
)
2260 buffer_info
->length
= buf_len
;
2261 page
= virt_to_page(skb
->data
);
2262 offset
= (unsigned long)skb
->data
& ~PAGE_MASK
;
2263 buffer_info
->dma
= pci_map_page(adapter
->pdev
, page
,
2264 offset
, buf_len
, PCI_DMA_TODEVICE
);
2265 if (++next_to_use
== tpd_ring
->count
)
2269 for (f
= 0; f
< nr_frags
; f
++) {
2270 struct skb_frag_struct
*frag
;
2273 frag
= &skb_shinfo(skb
)->frags
[f
];
2274 buf_len
= frag
->size
;
2276 nseg
= (buf_len
+ ATL1_MAX_TX_BUF_LEN
- 1) /
2277 ATL1_MAX_TX_BUF_LEN
;
2278 for (i
= 0; i
< nseg
; i
++) {
2279 buffer_info
= &tpd_ring
->buffer_info
[next_to_use
];
2280 BUG_ON(buffer_info
->skb
);
2282 buffer_info
->skb
= NULL
;
2283 buffer_info
->length
= (buf_len
> ATL1_MAX_TX_BUF_LEN
) ?
2284 ATL1_MAX_TX_BUF_LEN
: buf_len
;
2285 buf_len
-= buffer_info
->length
;
2286 buffer_info
->dma
= pci_map_page(adapter
->pdev
,
2288 frag
->page_offset
+ (i
* ATL1_MAX_TX_BUF_LEN
),
2289 buffer_info
->length
, PCI_DMA_TODEVICE
);
2291 if (++next_to_use
== tpd_ring
->count
)
2296 /* last tpd's buffer-info */
2297 buffer_info
->skb
= skb
;
2300 static void atl1_tx_queue(struct atl1_adapter
*adapter
, u16 count
,
2301 struct tx_packet_desc
*ptpd
)
2303 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
2304 struct atl1_buffer
*buffer_info
;
2305 struct tx_packet_desc
*tpd
;
2308 u16 next_to_use
= (u16
) atomic_read(&tpd_ring
->next_to_use
);
2310 for (j
= 0; j
< count
; j
++) {
2311 buffer_info
= &tpd_ring
->buffer_info
[next_to_use
];
2312 tpd
= ATL1_TPD_DESC(&adapter
->tpd_ring
, next_to_use
);
2314 memcpy(tpd
, ptpd
, sizeof(struct tx_packet_desc
));
2315 tpd
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
2316 tpd
->word2
&= ~(TPD_BUFLEN_MASK
<< TPD_BUFLEN_SHIFT
);
2317 tpd
->word2
|= (cpu_to_le16(buffer_info
->length
) &
2318 TPD_BUFLEN_MASK
) << TPD_BUFLEN_SHIFT
;
2321 * if this is the first packet in a TSO chain, set
2322 * TPD_HDRFLAG, otherwise, clear it.
2324 val
= (tpd
->word3
>> TPD_SEGMENT_EN_SHIFT
) &
2325 TPD_SEGMENT_EN_MASK
;
2328 tpd
->word3
|= 1 << TPD_HDRFLAG_SHIFT
;
2330 tpd
->word3
&= ~(1 << TPD_HDRFLAG_SHIFT
);
2333 if (j
== (count
- 1))
2334 tpd
->word3
|= 1 << TPD_EOP_SHIFT
;
2336 if (++next_to_use
== tpd_ring
->count
)
2340 * Force memory writes to complete before letting h/w
2341 * know there are new descriptors to fetch. (Only
2342 * applicable for weak-ordered memory model archs,
2347 atomic_set(&tpd_ring
->next_to_use
, next_to_use
);
2350 static netdev_tx_t
atl1_xmit_frame(struct sk_buff
*skb
,
2351 struct net_device
*netdev
)
2353 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2354 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
2359 struct tx_packet_desc
*ptpd
;
2362 unsigned int nr_frags
= 0;
2363 unsigned int mss
= 0;
2365 unsigned int proto_hdr_len
;
2367 len
= skb_headlen(skb
);
2369 if (unlikely(skb
->len
<= 0)) {
2370 dev_kfree_skb_any(skb
);
2371 return NETDEV_TX_OK
;
2374 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2375 for (f
= 0; f
< nr_frags
; f
++) {
2376 frag_size
= skb_shinfo(skb
)->frags
[f
].size
;
2378 count
+= (frag_size
+ ATL1_MAX_TX_BUF_LEN
- 1) /
2379 ATL1_MAX_TX_BUF_LEN
;
2382 mss
= skb_shinfo(skb
)->gso_size
;
2384 if (skb
->protocol
== htons(ETH_P_IP
)) {
2385 proto_hdr_len
= (skb_transport_offset(skb
) +
2387 if (unlikely(proto_hdr_len
> len
)) {
2388 dev_kfree_skb_any(skb
);
2389 return NETDEV_TX_OK
;
2391 /* need additional TPD ? */
2392 if (proto_hdr_len
!= len
)
2393 count
+= (len
- proto_hdr_len
+
2394 ATL1_MAX_TX_BUF_LEN
- 1) /
2395 ATL1_MAX_TX_BUF_LEN
;
2399 if (atl1_tpd_avail(&adapter
->tpd_ring
) < count
) {
2400 /* not enough descriptors */
2401 netif_stop_queue(netdev
);
2402 if (netif_msg_tx_queued(adapter
))
2403 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
2405 return NETDEV_TX_BUSY
;
2408 ptpd
= ATL1_TPD_DESC(tpd_ring
,
2409 (u16
) atomic_read(&tpd_ring
->next_to_use
));
2410 memset(ptpd
, 0, sizeof(struct tx_packet_desc
));
2412 if (vlan_tx_tag_present(skb
)) {
2413 vlan_tag
= vlan_tx_tag_get(skb
);
2414 vlan_tag
= (vlan_tag
<< 4) | (vlan_tag
>> 13) |
2415 ((vlan_tag
>> 9) & 0x8);
2416 ptpd
->word3
|= 1 << TPD_INS_VL_TAG_SHIFT
;
2417 ptpd
->word2
|= (vlan_tag
& TPD_VLANTAG_MASK
) <<
2421 tso
= atl1_tso(adapter
, skb
, ptpd
);
2423 dev_kfree_skb_any(skb
);
2424 return NETDEV_TX_OK
;
2428 ret_val
= atl1_tx_csum(adapter
, skb
, ptpd
);
2430 dev_kfree_skb_any(skb
);
2431 return NETDEV_TX_OK
;
2435 atl1_tx_map(adapter
, skb
, ptpd
);
2436 atl1_tx_queue(adapter
, count
, ptpd
);
2437 atl1_update_mailbox(adapter
);
2439 return NETDEV_TX_OK
;
2443 * atl1_intr - Interrupt Handler
2444 * @irq: interrupt number
2445 * @data: pointer to a network interface device structure
2446 * @pt_regs: CPU registers structure
2448 static irqreturn_t
atl1_intr(int irq
, void *data
)
2450 struct atl1_adapter
*adapter
= netdev_priv(data
);
2454 status
= adapter
->cmb
.cmb
->int_stats
;
2459 /* clear CMB interrupt status at once */
2460 adapter
->cmb
.cmb
->int_stats
= 0;
2462 if (status
& ISR_GPHY
) /* clear phy status */
2463 atlx_clear_phy_int(adapter
);
2465 /* clear ISR status, and Enable CMB DMA/Disable Interrupt */
2466 iowrite32(status
| ISR_DIS_INT
, adapter
->hw
.hw_addr
+ REG_ISR
);
2468 /* check if SMB intr */
2469 if (status
& ISR_SMB
)
2470 atl1_inc_smb(adapter
);
2472 /* check if PCIE PHY Link down */
2473 if (status
& ISR_PHY_LINKDOWN
) {
2474 if (netif_msg_intr(adapter
))
2475 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
2476 "pcie phy link down %x\n", status
);
2477 if (netif_running(adapter
->netdev
)) { /* reset MAC */
2478 iowrite32(0, adapter
->hw
.hw_addr
+ REG_IMR
);
2479 schedule_work(&adapter
->pcie_dma_to_rst_task
);
2484 /* check if DMA read/write error ? */
2485 if (status
& (ISR_DMAR_TO_RST
| ISR_DMAW_TO_RST
)) {
2486 if (netif_msg_intr(adapter
))
2487 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
2488 "pcie DMA r/w error (status = 0x%x)\n",
2490 iowrite32(0, adapter
->hw
.hw_addr
+ REG_IMR
);
2491 schedule_work(&adapter
->pcie_dma_to_rst_task
);
2496 if (status
& ISR_GPHY
) {
2497 adapter
->soft_stats
.tx_carrier_errors
++;
2498 atl1_check_for_link(adapter
);
2501 /* transmit event */
2502 if (status
& ISR_CMB_TX
)
2503 atl1_intr_tx(adapter
);
2506 if (unlikely(status
& (ISR_RXF_OV
| ISR_RFD_UNRUN
|
2507 ISR_RRD_OV
| ISR_HOST_RFD_UNRUN
|
2508 ISR_HOST_RRD_OV
| ISR_CMB_RX
))) {
2509 if (status
& (ISR_RXF_OV
| ISR_RFD_UNRUN
|
2510 ISR_RRD_OV
| ISR_HOST_RFD_UNRUN
|
2512 if (netif_msg_intr(adapter
))
2513 dev_printk(KERN_DEBUG
,
2514 &adapter
->pdev
->dev
,
2515 "rx exception, ISR = 0x%x\n",
2517 atl1_intr_rx(adapter
);
2523 } while ((status
= adapter
->cmb
.cmb
->int_stats
));
2525 /* re-enable Interrupt */
2526 iowrite32(ISR_DIS_SMB
| ISR_DIS_DMA
, adapter
->hw
.hw_addr
+ REG_ISR
);
2532 * atl1_phy_config - Timer Call-back
2533 * @data: pointer to netdev cast into an unsigned long
2535 static void atl1_phy_config(unsigned long data
)
2537 struct atl1_adapter
*adapter
= (struct atl1_adapter
*)data
;
2538 struct atl1_hw
*hw
= &adapter
->hw
;
2539 unsigned long flags
;
2541 spin_lock_irqsave(&adapter
->lock
, flags
);
2542 adapter
->phy_timer_pending
= false;
2543 atl1_write_phy_reg(hw
, MII_ADVERTISE
, hw
->mii_autoneg_adv_reg
);
2544 atl1_write_phy_reg(hw
, MII_ATLX_CR
, hw
->mii_1000t_ctrl_reg
);
2545 atl1_write_phy_reg(hw
, MII_BMCR
, MII_CR_RESET
| MII_CR_AUTO_NEG_EN
);
2546 spin_unlock_irqrestore(&adapter
->lock
, flags
);
2550 * Orphaned vendor comment left intact here:
2552 * If TPD Buffer size equal to 0, PCIE DMAR_TO_INT
2553 * will assert. We do soft reset <0x1400=1> according
2554 * with the SPEC. BUT, it seemes that PCIE or DMA
2555 * state-machine will not be reset. DMAR_TO_INT will
2556 * assert again and again.
2560 static int atl1_reset(struct atl1_adapter
*adapter
)
2563 ret
= atl1_reset_hw(&adapter
->hw
);
2566 return atl1_init_hw(&adapter
->hw
);
2569 static s32
atl1_up(struct atl1_adapter
*adapter
)
2571 struct net_device
*netdev
= adapter
->netdev
;
2575 /* hardware has been reset, we need to reload some things */
2576 atlx_set_multi(netdev
);
2577 atl1_init_ring_ptrs(adapter
);
2578 atlx_restore_vlan(adapter
);
2579 err
= atl1_alloc_rx_buffers(adapter
);
2581 /* no RX BUFFER allocated */
2584 if (unlikely(atl1_configure(adapter
))) {
2589 err
= pci_enable_msi(adapter
->pdev
);
2591 if (netif_msg_ifup(adapter
))
2592 dev_info(&adapter
->pdev
->dev
,
2593 "Unable to enable MSI: %d\n", err
);
2594 irq_flags
|= IRQF_SHARED
;
2597 err
= request_irq(adapter
->pdev
->irq
, atl1_intr
, irq_flags
,
2598 netdev
->name
, netdev
);
2602 atlx_irq_enable(adapter
);
2603 atl1_check_link(adapter
);
2604 netif_start_queue(netdev
);
2608 pci_disable_msi(adapter
->pdev
);
2609 /* free rx_buffers */
2610 atl1_clean_rx_ring(adapter
);
2614 static void atl1_down(struct atl1_adapter
*adapter
)
2616 struct net_device
*netdev
= adapter
->netdev
;
2618 netif_stop_queue(netdev
);
2619 del_timer_sync(&adapter
->phy_config_timer
);
2620 adapter
->phy_timer_pending
= false;
2622 atlx_irq_disable(adapter
);
2623 free_irq(adapter
->pdev
->irq
, netdev
);
2624 pci_disable_msi(adapter
->pdev
);
2625 atl1_reset_hw(&adapter
->hw
);
2626 adapter
->cmb
.cmb
->int_stats
= 0;
2628 adapter
->link_speed
= SPEED_0
;
2629 adapter
->link_duplex
= -1;
2630 netif_carrier_off(netdev
);
2632 atl1_clean_tx_ring(adapter
);
2633 atl1_clean_rx_ring(adapter
);
2636 static void atl1_tx_timeout_task(struct work_struct
*work
)
2638 struct atl1_adapter
*adapter
=
2639 container_of(work
, struct atl1_adapter
, tx_timeout_task
);
2640 struct net_device
*netdev
= adapter
->netdev
;
2642 netif_device_detach(netdev
);
2645 netif_device_attach(netdev
);
2649 * atl1_change_mtu - Change the Maximum Transfer Unit
2650 * @netdev: network interface device structure
2651 * @new_mtu: new value for maximum frame size
2653 * Returns 0 on success, negative on failure
2655 static int atl1_change_mtu(struct net_device
*netdev
, int new_mtu
)
2657 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2658 int old_mtu
= netdev
->mtu
;
2659 int max_frame
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
2661 if ((max_frame
< ETH_ZLEN
+ ETH_FCS_LEN
) ||
2662 (max_frame
> MAX_JUMBO_FRAME_SIZE
)) {
2663 if (netif_msg_link(adapter
))
2664 dev_warn(&adapter
->pdev
->dev
, "invalid MTU setting\n");
2668 adapter
->hw
.max_frame_size
= max_frame
;
2669 adapter
->hw
.tx_jumbo_task_th
= (max_frame
+ 7) >> 3;
2670 adapter
->rx_buffer_len
= (max_frame
+ 7) & ~7;
2671 adapter
->hw
.rx_jumbo_th
= adapter
->rx_buffer_len
/ 8;
2673 netdev
->mtu
= new_mtu
;
2674 if ((old_mtu
!= new_mtu
) && netif_running(netdev
)) {
2683 * atl1_open - Called when a network interface is made active
2684 * @netdev: network interface device structure
2686 * Returns 0 on success, negative value on failure
2688 * The open entry point is called when a network interface is made
2689 * active by the system (IFF_UP). At this point all resources needed
2690 * for transmit and receive operations are allocated, the interrupt
2691 * handler is registered with the OS, the watchdog timer is started,
2692 * and the stack is notified that the interface is ready.
2694 static int atl1_open(struct net_device
*netdev
)
2696 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2699 netif_carrier_off(netdev
);
2701 /* allocate transmit descriptors */
2702 err
= atl1_setup_ring_resources(adapter
);
2706 err
= atl1_up(adapter
);
2713 atl1_reset(adapter
);
2718 * atl1_close - Disables a network interface
2719 * @netdev: network interface device structure
2721 * Returns 0, this is not allowed to fail
2723 * The close entry point is called when an interface is de-activated
2724 * by the OS. The hardware is still under the drivers control, but
2725 * needs to be disabled. A global MAC reset is issued to stop the
2726 * hardware, and all transmit and receive resources are freed.
2728 static int atl1_close(struct net_device
*netdev
)
2730 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2732 atl1_free_ring_resources(adapter
);
2737 static int atl1_suspend(struct device
*dev
)
2739 struct pci_dev
*pdev
= to_pci_dev(dev
);
2740 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2741 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2742 struct atl1_hw
*hw
= &adapter
->hw
;
2744 u32 wufc
= adapter
->wol
;
2749 netif_device_detach(netdev
);
2750 if (netif_running(netdev
))
2753 atl1_read_phy_reg(hw
, MII_BMSR
, (u16
*) & ctrl
);
2754 atl1_read_phy_reg(hw
, MII_BMSR
, (u16
*) & ctrl
);
2755 val
= ctrl
& BMSR_LSTATUS
;
2757 wufc
&= ~ATLX_WUFC_LNKC
;
2762 val
= atl1_get_speed_and_duplex(hw
, &speed
, &duplex
);
2764 if (netif_msg_ifdown(adapter
))
2765 dev_printk(KERN_DEBUG
, &pdev
->dev
,
2766 "error getting speed/duplex\n");
2772 /* enable magic packet WOL */
2773 if (wufc
& ATLX_WUFC_MAG
)
2774 ctrl
|= (WOL_MAGIC_EN
| WOL_MAGIC_PME_EN
);
2775 iowrite32(ctrl
, hw
->hw_addr
+ REG_WOL_CTRL
);
2776 ioread32(hw
->hw_addr
+ REG_WOL_CTRL
);
2778 /* configure the mac */
2779 ctrl
= MAC_CTRL_RX_EN
;
2780 ctrl
|= ((u32
)((speed
== SPEED_1000
) ? MAC_CTRL_SPEED_1000
:
2781 MAC_CTRL_SPEED_10_100
) << MAC_CTRL_SPEED_SHIFT
);
2782 if (duplex
== FULL_DUPLEX
)
2783 ctrl
|= MAC_CTRL_DUPLX
;
2784 ctrl
|= (((u32
)adapter
->hw
.preamble_len
&
2785 MAC_CTRL_PRMLEN_MASK
) << MAC_CTRL_PRMLEN_SHIFT
);
2786 __atlx_vlan_mode(netdev
->features
, &ctrl
);
2787 if (wufc
& ATLX_WUFC_MAG
)
2788 ctrl
|= MAC_CTRL_BC_EN
;
2789 iowrite32(ctrl
, hw
->hw_addr
+ REG_MAC_CTRL
);
2790 ioread32(hw
->hw_addr
+ REG_MAC_CTRL
);
2793 ctrl
= ioread32(hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2794 ctrl
|= PCIE_PHYMISC_FORCE_RCV_DET
;
2795 iowrite32(ctrl
, hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2796 ioread32(hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2798 ctrl
|= (WOL_LINK_CHG_EN
| WOL_LINK_CHG_PME_EN
);
2799 iowrite32(ctrl
, hw
->hw_addr
+ REG_WOL_CTRL
);
2800 ioread32(hw
->hw_addr
+ REG_WOL_CTRL
);
2801 iowrite32(0, hw
->hw_addr
+ REG_MAC_CTRL
);
2802 ioread32(hw
->hw_addr
+ REG_MAC_CTRL
);
2803 hw
->phy_configured
= false;
2809 iowrite32(0, hw
->hw_addr
+ REG_WOL_CTRL
);
2810 ioread32(hw
->hw_addr
+ REG_WOL_CTRL
);
2811 ctrl
= ioread32(hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2812 ctrl
|= PCIE_PHYMISC_FORCE_RCV_DET
;
2813 iowrite32(ctrl
, hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2814 ioread32(hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2815 hw
->phy_configured
= false;
2820 static int atl1_resume(struct device
*dev
)
2822 struct pci_dev
*pdev
= to_pci_dev(dev
);
2823 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2824 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2826 iowrite32(0, adapter
->hw
.hw_addr
+ REG_WOL_CTRL
);
2828 atl1_reset_hw(&adapter
->hw
);
2830 if (netif_running(netdev
)) {
2831 adapter
->cmb
.cmb
->int_stats
= 0;
2834 netif_device_attach(netdev
);
2839 static SIMPLE_DEV_PM_OPS(atl1_pm_ops
, atl1_suspend
, atl1_resume
);
2840 #define ATL1_PM_OPS (&atl1_pm_ops)
2844 static int atl1_suspend(struct device
*dev
) { return 0; }
2846 #define ATL1_PM_OPS NULL
2849 static void atl1_shutdown(struct pci_dev
*pdev
)
2851 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2852 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2854 atl1_suspend(&pdev
->dev
);
2855 pci_wake_from_d3(pdev
, adapter
->wol
);
2856 pci_set_power_state(pdev
, PCI_D3hot
);
2859 #ifdef CONFIG_NET_POLL_CONTROLLER
2860 static void atl1_poll_controller(struct net_device
*netdev
)
2862 disable_irq(netdev
->irq
);
2863 atl1_intr(netdev
->irq
, netdev
);
2864 enable_irq(netdev
->irq
);
2868 static const struct net_device_ops atl1_netdev_ops
= {
2869 .ndo_open
= atl1_open
,
2870 .ndo_stop
= atl1_close
,
2871 .ndo_start_xmit
= atl1_xmit_frame
,
2872 .ndo_set_rx_mode
= atlx_set_multi
,
2873 .ndo_validate_addr
= eth_validate_addr
,
2874 .ndo_set_mac_address
= atl1_set_mac
,
2875 .ndo_change_mtu
= atl1_change_mtu
,
2876 .ndo_fix_features
= atlx_fix_features
,
2877 .ndo_set_features
= atlx_set_features
,
2878 .ndo_do_ioctl
= atlx_ioctl
,
2879 .ndo_tx_timeout
= atlx_tx_timeout
,
2880 #ifdef CONFIG_NET_POLL_CONTROLLER
2881 .ndo_poll_controller
= atl1_poll_controller
,
2886 * atl1_probe - Device Initialization Routine
2887 * @pdev: PCI device information struct
2888 * @ent: entry in atl1_pci_tbl
2890 * Returns 0 on success, negative on failure
2892 * atl1_probe initializes an adapter identified by a pci_dev structure.
2893 * The OS initialization, configuring of the adapter private structure,
2894 * and a hardware reset occur.
2896 static int __devinit
atl1_probe(struct pci_dev
*pdev
,
2897 const struct pci_device_id
*ent
)
2899 struct net_device
*netdev
;
2900 struct atl1_adapter
*adapter
;
2901 static int cards_found
= 0;
2904 err
= pci_enable_device(pdev
);
2909 * The atl1 chip can DMA to 64-bit addresses, but it uses a single
2910 * shared register for the high 32 bits, so only a single, aligned,
2911 * 4 GB physical address range can be used at a time.
2913 * Supporting 64-bit DMA on this hardware is more trouble than it's
2914 * worth. It is far easier to limit to 32-bit DMA than update
2915 * various kernel subsystems to support the mechanics required by a
2916 * fixed-high-32-bit system.
2918 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
2920 dev_err(&pdev
->dev
, "no usable DMA configuration\n");
2924 * Mark all PCI regions associated with PCI device
2925 * pdev as being reserved by owner atl1_driver_name
2927 err
= pci_request_regions(pdev
, ATLX_DRIVER_NAME
);
2929 goto err_request_regions
;
2932 * Enables bus-mastering on the device and calls
2933 * pcibios_set_master to do the needed arch specific settings
2935 pci_set_master(pdev
);
2937 netdev
= alloc_etherdev(sizeof(struct atl1_adapter
));
2940 goto err_alloc_etherdev
;
2942 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
2944 pci_set_drvdata(pdev
, netdev
);
2945 adapter
= netdev_priv(netdev
);
2946 adapter
->netdev
= netdev
;
2947 adapter
->pdev
= pdev
;
2948 adapter
->hw
.back
= adapter
;
2949 adapter
->msg_enable
= netif_msg_init(debug
, atl1_default_msg
);
2951 adapter
->hw
.hw_addr
= pci_iomap(pdev
, 0, 0);
2952 if (!adapter
->hw
.hw_addr
) {
2956 /* get device revision number */
2957 adapter
->hw
.dev_rev
= ioread16(adapter
->hw
.hw_addr
+
2958 (REG_MASTER_CTRL
+ 2));
2959 if (netif_msg_probe(adapter
))
2960 dev_info(&pdev
->dev
, "version %s\n", ATLX_DRIVER_VERSION
);
2962 /* set default ring resource counts */
2963 adapter
->rfd_ring
.count
= adapter
->rrd_ring
.count
= ATL1_DEFAULT_RFD
;
2964 adapter
->tpd_ring
.count
= ATL1_DEFAULT_TPD
;
2966 adapter
->mii
.dev
= netdev
;
2967 adapter
->mii
.mdio_read
= mdio_read
;
2968 adapter
->mii
.mdio_write
= mdio_write
;
2969 adapter
->mii
.phy_id_mask
= 0x1f;
2970 adapter
->mii
.reg_num_mask
= 0x1f;
2972 netdev
->netdev_ops
= &atl1_netdev_ops
;
2973 netdev
->watchdog_timeo
= 5 * HZ
;
2975 netdev
->ethtool_ops
= &atl1_ethtool_ops
;
2976 adapter
->bd_number
= cards_found
;
2978 /* setup the private structure */
2979 err
= atl1_sw_init(adapter
);
2983 netdev
->features
= NETIF_F_HW_CSUM
;
2984 netdev
->features
|= NETIF_F_SG
;
2985 netdev
->features
|= (NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX
);
2987 netdev
->hw_features
= NETIF_F_HW_CSUM
| NETIF_F_SG
| NETIF_F_TSO
|
2990 /* is this valid? see atl1_setup_mac_ctrl() */
2991 netdev
->features
|= NETIF_F_RXCSUM
;
2994 * patch for some L1 of old version,
2995 * the final version of L1 may not need these
2998 /* atl1_pcie_patch(adapter); */
3000 /* really reset GPHY core */
3001 iowrite16(0, adapter
->hw
.hw_addr
+ REG_PHY_ENABLE
);
3004 * reset the controller to
3005 * put the device in a known good starting state
3007 if (atl1_reset_hw(&adapter
->hw
)) {
3012 /* copy the MAC address out of the EEPROM */
3013 atl1_read_mac_addr(&adapter
->hw
);
3014 memcpy(netdev
->dev_addr
, adapter
->hw
.mac_addr
, netdev
->addr_len
);
3016 if (!is_valid_ether_addr(netdev
->dev_addr
)) {
3021 atl1_check_options(adapter
);
3023 /* pre-init the MAC, and setup link */
3024 err
= atl1_init_hw(&adapter
->hw
);
3030 atl1_pcie_patch(adapter
);
3031 /* assume we have no link for now */
3032 netif_carrier_off(netdev
);
3034 setup_timer(&adapter
->phy_config_timer
, atl1_phy_config
,
3035 (unsigned long)adapter
);
3036 adapter
->phy_timer_pending
= false;
3038 INIT_WORK(&adapter
->tx_timeout_task
, atl1_tx_timeout_task
);
3040 INIT_WORK(&adapter
->link_chg_task
, atlx_link_chg_task
);
3042 INIT_WORK(&adapter
->pcie_dma_to_rst_task
, atl1_tx_timeout_task
);
3044 err
= register_netdev(netdev
);
3049 atl1_via_workaround(adapter
);
3053 pci_iounmap(pdev
, adapter
->hw
.hw_addr
);
3055 free_netdev(netdev
);
3057 pci_release_regions(pdev
);
3059 err_request_regions
:
3060 pci_disable_device(pdev
);
3065 * atl1_remove - Device Removal Routine
3066 * @pdev: PCI device information struct
3068 * atl1_remove is called by the PCI subsystem to alert the driver
3069 * that it should release a PCI device. The could be caused by a
3070 * Hot-Plug event, or because the driver is going to be removed from
3073 static void __devexit
atl1_remove(struct pci_dev
*pdev
)
3075 struct net_device
*netdev
= pci_get_drvdata(pdev
);
3076 struct atl1_adapter
*adapter
;
3077 /* Device not available. Return. */
3081 adapter
= netdev_priv(netdev
);
3084 * Some atl1 boards lack persistent storage for their MAC, and get it
3085 * from the BIOS during POST. If we've been messing with the MAC
3086 * address, we need to save the permanent one.
3088 if (memcmp(adapter
->hw
.mac_addr
, adapter
->hw
.perm_mac_addr
, ETH_ALEN
)) {
3089 memcpy(adapter
->hw
.mac_addr
, adapter
->hw
.perm_mac_addr
,
3091 atl1_set_mac_addr(&adapter
->hw
);
3094 iowrite16(0, adapter
->hw
.hw_addr
+ REG_PHY_ENABLE
);
3095 unregister_netdev(netdev
);
3096 pci_iounmap(pdev
, adapter
->hw
.hw_addr
);
3097 pci_release_regions(pdev
);
3098 free_netdev(netdev
);
3099 pci_disable_device(pdev
);
3102 static struct pci_driver atl1_driver
= {
3103 .name
= ATLX_DRIVER_NAME
,
3104 .id_table
= atl1_pci_tbl
,
3105 .probe
= atl1_probe
,
3106 .remove
= __devexit_p(atl1_remove
),
3107 .shutdown
= atl1_shutdown
,
3108 .driver
.pm
= ATL1_PM_OPS
,
3112 * atl1_exit_module - Driver Exit Cleanup Routine
3114 * atl1_exit_module is called just before the driver is removed
3117 static void __exit
atl1_exit_module(void)
3119 pci_unregister_driver(&atl1_driver
);
3123 * atl1_init_module - Driver Registration Routine
3125 * atl1_init_module is the first routine called when the driver is
3126 * loaded. All it does is register with the PCI subsystem.
3128 static int __init
atl1_init_module(void)
3130 return pci_register_driver(&atl1_driver
);
3133 module_init(atl1_init_module
);
3134 module_exit(atl1_exit_module
);
3137 char stat_string
[ETH_GSTRING_LEN
];
3142 #define ATL1_STAT(m) \
3143 sizeof(((struct atl1_adapter *)0)->m), offsetof(struct atl1_adapter, m)
3145 static struct atl1_stats atl1_gstrings_stats
[] = {
3146 {"rx_packets", ATL1_STAT(soft_stats
.rx_packets
)},
3147 {"tx_packets", ATL1_STAT(soft_stats
.tx_packets
)},
3148 {"rx_bytes", ATL1_STAT(soft_stats
.rx_bytes
)},
3149 {"tx_bytes", ATL1_STAT(soft_stats
.tx_bytes
)},
3150 {"rx_errors", ATL1_STAT(soft_stats
.rx_errors
)},
3151 {"tx_errors", ATL1_STAT(soft_stats
.tx_errors
)},
3152 {"multicast", ATL1_STAT(soft_stats
.multicast
)},
3153 {"collisions", ATL1_STAT(soft_stats
.collisions
)},
3154 {"rx_length_errors", ATL1_STAT(soft_stats
.rx_length_errors
)},
3155 {"rx_over_errors", ATL1_STAT(soft_stats
.rx_missed_errors
)},
3156 {"rx_crc_errors", ATL1_STAT(soft_stats
.rx_crc_errors
)},
3157 {"rx_frame_errors", ATL1_STAT(soft_stats
.rx_frame_errors
)},
3158 {"rx_fifo_errors", ATL1_STAT(soft_stats
.rx_fifo_errors
)},
3159 {"rx_missed_errors", ATL1_STAT(soft_stats
.rx_missed_errors
)},
3160 {"tx_aborted_errors", ATL1_STAT(soft_stats
.tx_aborted_errors
)},
3161 {"tx_carrier_errors", ATL1_STAT(soft_stats
.tx_carrier_errors
)},
3162 {"tx_fifo_errors", ATL1_STAT(soft_stats
.tx_fifo_errors
)},
3163 {"tx_window_errors", ATL1_STAT(soft_stats
.tx_window_errors
)},
3164 {"tx_abort_exce_coll", ATL1_STAT(soft_stats
.excecol
)},
3165 {"tx_abort_late_coll", ATL1_STAT(soft_stats
.latecol
)},
3166 {"tx_deferred_ok", ATL1_STAT(soft_stats
.deffer
)},
3167 {"tx_single_coll_ok", ATL1_STAT(soft_stats
.scc
)},
3168 {"tx_multi_coll_ok", ATL1_STAT(soft_stats
.mcc
)},
3169 {"tx_underun", ATL1_STAT(soft_stats
.tx_underun
)},
3170 {"tx_trunc", ATL1_STAT(soft_stats
.tx_trunc
)},
3171 {"tx_pause", ATL1_STAT(soft_stats
.tx_pause
)},
3172 {"rx_pause", ATL1_STAT(soft_stats
.rx_pause
)},
3173 {"rx_rrd_ov", ATL1_STAT(soft_stats
.rx_rrd_ov
)},
3174 {"rx_trunc", ATL1_STAT(soft_stats
.rx_trunc
)}
3177 static void atl1_get_ethtool_stats(struct net_device
*netdev
,
3178 struct ethtool_stats
*stats
, u64
*data
)
3180 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3184 for (i
= 0; i
< ARRAY_SIZE(atl1_gstrings_stats
); i
++) {
3185 p
= (char *)adapter
+atl1_gstrings_stats
[i
].stat_offset
;
3186 data
[i
] = (atl1_gstrings_stats
[i
].sizeof_stat
==
3187 sizeof(u64
)) ? *(u64
*)p
: *(u32
*)p
;
3192 static int atl1_get_sset_count(struct net_device
*netdev
, int sset
)
3196 return ARRAY_SIZE(atl1_gstrings_stats
);
3202 static int atl1_get_settings(struct net_device
*netdev
,
3203 struct ethtool_cmd
*ecmd
)
3205 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3206 struct atl1_hw
*hw
= &adapter
->hw
;
3208 ecmd
->supported
= (SUPPORTED_10baseT_Half
|
3209 SUPPORTED_10baseT_Full
|
3210 SUPPORTED_100baseT_Half
|
3211 SUPPORTED_100baseT_Full
|
3212 SUPPORTED_1000baseT_Full
|
3213 SUPPORTED_Autoneg
| SUPPORTED_TP
);
3214 ecmd
->advertising
= ADVERTISED_TP
;
3215 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3216 hw
->media_type
== MEDIA_TYPE_1000M_FULL
) {
3217 ecmd
->advertising
|= ADVERTISED_Autoneg
;
3218 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
) {
3219 ecmd
->advertising
|= ADVERTISED_Autoneg
;
3220 ecmd
->advertising
|=
3221 (ADVERTISED_10baseT_Half
|
3222 ADVERTISED_10baseT_Full
|
3223 ADVERTISED_100baseT_Half
|
3224 ADVERTISED_100baseT_Full
|
3225 ADVERTISED_1000baseT_Full
);
3227 ecmd
->advertising
|= (ADVERTISED_1000baseT_Full
);
3229 ecmd
->port
= PORT_TP
;
3230 ecmd
->phy_address
= 0;
3231 ecmd
->transceiver
= XCVR_INTERNAL
;
3233 if (netif_carrier_ok(adapter
->netdev
)) {
3234 u16 link_speed
, link_duplex
;
3235 atl1_get_speed_and_duplex(hw
, &link_speed
, &link_duplex
);
3236 ethtool_cmd_speed_set(ecmd
, link_speed
);
3237 if (link_duplex
== FULL_DUPLEX
)
3238 ecmd
->duplex
= DUPLEX_FULL
;
3240 ecmd
->duplex
= DUPLEX_HALF
;
3242 ethtool_cmd_speed_set(ecmd
, -1);
3245 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3246 hw
->media_type
== MEDIA_TYPE_1000M_FULL
)
3247 ecmd
->autoneg
= AUTONEG_ENABLE
;
3249 ecmd
->autoneg
= AUTONEG_DISABLE
;
3254 static int atl1_set_settings(struct net_device
*netdev
,
3255 struct ethtool_cmd
*ecmd
)
3257 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3258 struct atl1_hw
*hw
= &adapter
->hw
;
3261 u16 old_media_type
= hw
->media_type
;
3263 if (netif_running(adapter
->netdev
)) {
3264 if (netif_msg_link(adapter
))
3265 dev_dbg(&adapter
->pdev
->dev
,
3266 "ethtool shutting down adapter\n");
3270 if (ecmd
->autoneg
== AUTONEG_ENABLE
)
3271 hw
->media_type
= MEDIA_TYPE_AUTO_SENSOR
;
3273 u32 speed
= ethtool_cmd_speed(ecmd
);
3274 if (speed
== SPEED_1000
) {
3275 if (ecmd
->duplex
!= DUPLEX_FULL
) {
3276 if (netif_msg_link(adapter
))
3277 dev_warn(&adapter
->pdev
->dev
,
3278 "1000M half is invalid\n");
3282 hw
->media_type
= MEDIA_TYPE_1000M_FULL
;
3283 } else if (speed
== SPEED_100
) {
3284 if (ecmd
->duplex
== DUPLEX_FULL
)
3285 hw
->media_type
= MEDIA_TYPE_100M_FULL
;
3287 hw
->media_type
= MEDIA_TYPE_100M_HALF
;
3289 if (ecmd
->duplex
== DUPLEX_FULL
)
3290 hw
->media_type
= MEDIA_TYPE_10M_FULL
;
3292 hw
->media_type
= MEDIA_TYPE_10M_HALF
;
3295 switch (hw
->media_type
) {
3296 case MEDIA_TYPE_AUTO_SENSOR
:
3298 ADVERTISED_10baseT_Half
|
3299 ADVERTISED_10baseT_Full
|
3300 ADVERTISED_100baseT_Half
|
3301 ADVERTISED_100baseT_Full
|
3302 ADVERTISED_1000baseT_Full
|
3303 ADVERTISED_Autoneg
| ADVERTISED_TP
;
3305 case MEDIA_TYPE_1000M_FULL
:
3307 ADVERTISED_1000baseT_Full
|
3308 ADVERTISED_Autoneg
| ADVERTISED_TP
;
3311 ecmd
->advertising
= 0;
3314 if (atl1_phy_setup_autoneg_adv(hw
)) {
3316 if (netif_msg_link(adapter
))
3317 dev_warn(&adapter
->pdev
->dev
,
3318 "invalid ethtool speed/duplex setting\n");
3321 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3322 hw
->media_type
== MEDIA_TYPE_1000M_FULL
)
3323 phy_data
= MII_CR_RESET
| MII_CR_AUTO_NEG_EN
;
3325 switch (hw
->media_type
) {
3326 case MEDIA_TYPE_100M_FULL
:
3328 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_100
|
3331 case MEDIA_TYPE_100M_HALF
:
3332 phy_data
= MII_CR_SPEED_100
| MII_CR_RESET
;
3334 case MEDIA_TYPE_10M_FULL
:
3336 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_10
| MII_CR_RESET
;
3339 /* MEDIA_TYPE_10M_HALF: */
3340 phy_data
= MII_CR_SPEED_10
| MII_CR_RESET
;
3344 atl1_write_phy_reg(hw
, MII_BMCR
, phy_data
);
3347 hw
->media_type
= old_media_type
;
3349 if (netif_running(adapter
->netdev
)) {
3350 if (netif_msg_link(adapter
))
3351 dev_dbg(&adapter
->pdev
->dev
,
3352 "ethtool starting adapter\n");
3354 } else if (!ret_val
) {
3355 if (netif_msg_link(adapter
))
3356 dev_dbg(&adapter
->pdev
->dev
,
3357 "ethtool resetting adapter\n");
3358 atl1_reset(adapter
);
3363 static void atl1_get_drvinfo(struct net_device
*netdev
,
3364 struct ethtool_drvinfo
*drvinfo
)
3366 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3368 strlcpy(drvinfo
->driver
, ATLX_DRIVER_NAME
, sizeof(drvinfo
->driver
));
3369 strlcpy(drvinfo
->version
, ATLX_DRIVER_VERSION
,
3370 sizeof(drvinfo
->version
));
3371 strlcpy(drvinfo
->fw_version
, "N/A", sizeof(drvinfo
->fw_version
));
3372 strlcpy(drvinfo
->bus_info
, pci_name(adapter
->pdev
),
3373 sizeof(drvinfo
->bus_info
));
3374 drvinfo
->eedump_len
= ATL1_EEDUMP_LEN
;
3377 static void atl1_get_wol(struct net_device
*netdev
,
3378 struct ethtool_wolinfo
*wol
)
3380 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3382 wol
->supported
= WAKE_MAGIC
;
3384 if (adapter
->wol
& ATLX_WUFC_MAG
)
3385 wol
->wolopts
|= WAKE_MAGIC
;
3388 static int atl1_set_wol(struct net_device
*netdev
,
3389 struct ethtool_wolinfo
*wol
)
3391 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3393 if (wol
->wolopts
& (WAKE_PHY
| WAKE_UCAST
| WAKE_MCAST
| WAKE_BCAST
|
3394 WAKE_ARP
| WAKE_MAGICSECURE
))
3397 if (wol
->wolopts
& WAKE_MAGIC
)
3398 adapter
->wol
|= ATLX_WUFC_MAG
;
3400 device_set_wakeup_enable(&adapter
->pdev
->dev
, adapter
->wol
);
3405 static u32
atl1_get_msglevel(struct net_device
*netdev
)
3407 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3408 return adapter
->msg_enable
;
3411 static void atl1_set_msglevel(struct net_device
*netdev
, u32 value
)
3413 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3414 adapter
->msg_enable
= value
;
3417 static int atl1_get_regs_len(struct net_device
*netdev
)
3419 return ATL1_REG_COUNT
* sizeof(u32
);
3422 static void atl1_get_regs(struct net_device
*netdev
, struct ethtool_regs
*regs
,
3425 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3426 struct atl1_hw
*hw
= &adapter
->hw
;
3430 for (i
= 0; i
< ATL1_REG_COUNT
; i
++) {
3432 * This switch statement avoids reserved regions
3433 * of register space.
3458 /* reserved region; don't read it */
3462 /* unreserved region */
3463 regbuf
[i
] = ioread32(hw
->hw_addr
+ (i
* sizeof(u32
)));
3468 static void atl1_get_ringparam(struct net_device
*netdev
,
3469 struct ethtool_ringparam
*ring
)
3471 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3472 struct atl1_tpd_ring
*txdr
= &adapter
->tpd_ring
;
3473 struct atl1_rfd_ring
*rxdr
= &adapter
->rfd_ring
;
3475 ring
->rx_max_pending
= ATL1_MAX_RFD
;
3476 ring
->tx_max_pending
= ATL1_MAX_TPD
;
3477 ring
->rx_mini_max_pending
= 0;
3478 ring
->rx_jumbo_max_pending
= 0;
3479 ring
->rx_pending
= rxdr
->count
;
3480 ring
->tx_pending
= txdr
->count
;
3481 ring
->rx_mini_pending
= 0;
3482 ring
->rx_jumbo_pending
= 0;
3485 static int atl1_set_ringparam(struct net_device
*netdev
,
3486 struct ethtool_ringparam
*ring
)
3488 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3489 struct atl1_tpd_ring
*tpdr
= &adapter
->tpd_ring
;
3490 struct atl1_rrd_ring
*rrdr
= &adapter
->rrd_ring
;
3491 struct atl1_rfd_ring
*rfdr
= &adapter
->rfd_ring
;
3493 struct atl1_tpd_ring tpd_old
, tpd_new
;
3494 struct atl1_rfd_ring rfd_old
, rfd_new
;
3495 struct atl1_rrd_ring rrd_old
, rrd_new
;
3496 struct atl1_ring_header rhdr_old
, rhdr_new
;
3497 struct atl1_smb smb
;
3498 struct atl1_cmb cmb
;
3501 tpd_old
= adapter
->tpd_ring
;
3502 rfd_old
= adapter
->rfd_ring
;
3503 rrd_old
= adapter
->rrd_ring
;
3504 rhdr_old
= adapter
->ring_header
;
3506 if (netif_running(adapter
->netdev
))
3509 rfdr
->count
= (u16
) max(ring
->rx_pending
, (u32
) ATL1_MIN_RFD
);
3510 rfdr
->count
= rfdr
->count
> ATL1_MAX_RFD
? ATL1_MAX_RFD
:
3512 rfdr
->count
= (rfdr
->count
+ 3) & ~3;
3513 rrdr
->count
= rfdr
->count
;
3515 tpdr
->count
= (u16
) max(ring
->tx_pending
, (u32
) ATL1_MIN_TPD
);
3516 tpdr
->count
= tpdr
->count
> ATL1_MAX_TPD
? ATL1_MAX_TPD
:
3518 tpdr
->count
= (tpdr
->count
+ 3) & ~3;
3520 if (netif_running(adapter
->netdev
)) {
3521 /* try to get new resources before deleting old */
3522 err
= atl1_setup_ring_resources(adapter
);
3524 goto err_setup_ring
;
3527 * save the new, restore the old in order to free it,
3528 * then restore the new back again
3531 rfd_new
= adapter
->rfd_ring
;
3532 rrd_new
= adapter
->rrd_ring
;
3533 tpd_new
= adapter
->tpd_ring
;
3534 rhdr_new
= adapter
->ring_header
;
3535 adapter
->rfd_ring
= rfd_old
;
3536 adapter
->rrd_ring
= rrd_old
;
3537 adapter
->tpd_ring
= tpd_old
;
3538 adapter
->ring_header
= rhdr_old
;
3540 * Save SMB and CMB, since atl1_free_ring_resources
3545 atl1_free_ring_resources(adapter
);
3546 adapter
->rfd_ring
= rfd_new
;
3547 adapter
->rrd_ring
= rrd_new
;
3548 adapter
->tpd_ring
= tpd_new
;
3549 adapter
->ring_header
= rhdr_new
;
3553 err
= atl1_up(adapter
);
3560 adapter
->rfd_ring
= rfd_old
;
3561 adapter
->rrd_ring
= rrd_old
;
3562 adapter
->tpd_ring
= tpd_old
;
3563 adapter
->ring_header
= rhdr_old
;
3568 static void atl1_get_pauseparam(struct net_device
*netdev
,
3569 struct ethtool_pauseparam
*epause
)
3571 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3572 struct atl1_hw
*hw
= &adapter
->hw
;
3574 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3575 hw
->media_type
== MEDIA_TYPE_1000M_FULL
) {
3576 epause
->autoneg
= AUTONEG_ENABLE
;
3578 epause
->autoneg
= AUTONEG_DISABLE
;
3580 epause
->rx_pause
= 1;
3581 epause
->tx_pause
= 1;
3584 static int atl1_set_pauseparam(struct net_device
*netdev
,
3585 struct ethtool_pauseparam
*epause
)
3587 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3588 struct atl1_hw
*hw
= &adapter
->hw
;
3590 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3591 hw
->media_type
== MEDIA_TYPE_1000M_FULL
) {
3592 epause
->autoneg
= AUTONEG_ENABLE
;
3594 epause
->autoneg
= AUTONEG_DISABLE
;
3597 epause
->rx_pause
= 1;
3598 epause
->tx_pause
= 1;
3603 static void atl1_get_strings(struct net_device
*netdev
, u32 stringset
,
3609 switch (stringset
) {
3611 for (i
= 0; i
< ARRAY_SIZE(atl1_gstrings_stats
); i
++) {
3612 memcpy(p
, atl1_gstrings_stats
[i
].stat_string
,
3614 p
+= ETH_GSTRING_LEN
;
3620 static int atl1_nway_reset(struct net_device
*netdev
)
3622 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3623 struct atl1_hw
*hw
= &adapter
->hw
;
3625 if (netif_running(netdev
)) {
3629 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3630 hw
->media_type
== MEDIA_TYPE_1000M_FULL
) {
3631 phy_data
= MII_CR_RESET
| MII_CR_AUTO_NEG_EN
;
3633 switch (hw
->media_type
) {
3634 case MEDIA_TYPE_100M_FULL
:
3635 phy_data
= MII_CR_FULL_DUPLEX
|
3636 MII_CR_SPEED_100
| MII_CR_RESET
;
3638 case MEDIA_TYPE_100M_HALF
:
3639 phy_data
= MII_CR_SPEED_100
| MII_CR_RESET
;
3641 case MEDIA_TYPE_10M_FULL
:
3642 phy_data
= MII_CR_FULL_DUPLEX
|
3643 MII_CR_SPEED_10
| MII_CR_RESET
;
3646 /* MEDIA_TYPE_10M_HALF */
3647 phy_data
= MII_CR_SPEED_10
| MII_CR_RESET
;
3650 atl1_write_phy_reg(hw
, MII_BMCR
, phy_data
);
3656 static const struct ethtool_ops atl1_ethtool_ops
= {
3657 .get_settings
= atl1_get_settings
,
3658 .set_settings
= atl1_set_settings
,
3659 .get_drvinfo
= atl1_get_drvinfo
,
3660 .get_wol
= atl1_get_wol
,
3661 .set_wol
= atl1_set_wol
,
3662 .get_msglevel
= atl1_get_msglevel
,
3663 .set_msglevel
= atl1_set_msglevel
,
3664 .get_regs_len
= atl1_get_regs_len
,
3665 .get_regs
= atl1_get_regs
,
3666 .get_ringparam
= atl1_get_ringparam
,
3667 .set_ringparam
= atl1_set_ringparam
,
3668 .get_pauseparam
= atl1_get_pauseparam
,
3669 .set_pauseparam
= atl1_set_pauseparam
,
3670 .get_link
= ethtool_op_get_link
,
3671 .get_strings
= atl1_get_strings
,
3672 .nway_reset
= atl1_nway_reset
,
3673 .get_ethtool_stats
= atl1_get_ethtool_stats
,
3674 .get_sset_count
= atl1_get_sset_count
,