1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright(c) 2005 - 2006 Attansic Corporation. All rights reserved.
4 * Copyright(c) 2006 - 2007 Chris Snook <csnook@redhat.com>
5 * Copyright(c) 2006 - 2008 Jay Cliburn <jcliburn@gmail.com>
7 * Derived from Intel e1000 driver
8 * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
10 * Contact Information:
11 * Xiong Huang <xiong.huang@atheros.com>
12 * Jie Yang <jie.yang@atheros.com>
13 * Chris Snook <csnook@redhat.com>
14 * Jay Cliburn <jcliburn@gmail.com>
16 * This version is adapted from the Attansic reference driver.
19 * Add more ethtool functions.
20 * Fix abstruse irq enable/disable condition described here:
21 * http://marc.theaimsgroup.com/?l=linux-netdev&m=116398508500553&w=2
27 * interrupt coalescing
31 #include <linux/atomic.h>
32 #include <asm/byteorder.h>
34 #include <linux/compiler.h>
35 #include <linux/crc32.h>
36 #include <linux/delay.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/etherdevice.h>
39 #include <linux/hardirq.h>
40 #include <linux/if_ether.h>
41 #include <linux/if_vlan.h>
43 #include <linux/interrupt.h>
45 #include <linux/irqflags.h>
46 #include <linux/irqreturn.h>
47 #include <linux/jiffies.h>
48 #include <linux/mii.h>
49 #include <linux/module.h>
50 #include <linux/net.h>
51 #include <linux/netdevice.h>
52 #include <linux/pci.h>
53 #include <linux/pci_ids.h>
55 #include <linux/skbuff.h>
56 #include <linux/slab.h>
57 #include <linux/spinlock.h>
58 #include <linux/string.h>
59 #include <linux/tcp.h>
60 #include <linux/timer.h>
61 #include <linux/types.h>
62 #include <linux/workqueue.h>
64 #include <net/checksum.h>
68 MODULE_AUTHOR("Xiong Huang <xiong.huang@atheros.com>, "
69 "Chris Snook <csnook@redhat.com>, "
70 "Jay Cliburn <jcliburn@gmail.com>");
71 MODULE_LICENSE("GPL");
73 /* Temporary hack for merging atl1 and atl2 */
76 static const struct ethtool_ops atl1_ethtool_ops
;
79 * This is the only thing that needs to be changed to adjust the
80 * maximum number of ports that the driver can manage.
82 #define ATL1_MAX_NIC 4
84 #define OPTION_UNSET -1
85 #define OPTION_DISABLED 0
86 #define OPTION_ENABLED 1
88 #define ATL1_PARAM_INIT { [0 ... ATL1_MAX_NIC] = OPTION_UNSET }
91 * Interrupt Moderate Timer in units of 2 us
93 * Valid Range: 10-65535
95 * Default Value: 100 (200us)
97 static int int_mod_timer
[ATL1_MAX_NIC
+1] = ATL1_PARAM_INIT
;
98 static unsigned int num_int_mod_timer
;
99 module_param_array_named(int_mod_timer
, int_mod_timer
, int,
100 &num_int_mod_timer
, 0);
101 MODULE_PARM_DESC(int_mod_timer
, "Interrupt moderator timer");
103 #define DEFAULT_INT_MOD_CNT 100 /* 200us */
104 #define MAX_INT_MOD_CNT 65000
105 #define MIN_INT_MOD_CNT 50
108 enum { enable_option
, range_option
, list_option
} type
;
113 struct { /* range_option info */
117 struct { /* list_option info */
119 struct atl1_opt_list
{
127 static int atl1_validate_option(int *value
, struct atl1_option
*opt
,
128 struct pci_dev
*pdev
)
130 if (*value
== OPTION_UNSET
) {
139 dev_info(&pdev
->dev
, "%s enabled\n", opt
->name
);
141 case OPTION_DISABLED
:
142 dev_info(&pdev
->dev
, "%s disabled\n", opt
->name
);
147 if (*value
>= opt
->arg
.r
.min
&& *value
<= opt
->arg
.r
.max
) {
148 dev_info(&pdev
->dev
, "%s set to %i\n", opt
->name
,
155 struct atl1_opt_list
*ent
;
157 for (i
= 0; i
< opt
->arg
.l
.nr
; i
++) {
158 ent
= &opt
->arg
.l
.p
[i
];
159 if (*value
== ent
->i
) {
160 if (ent
->str
[0] != '\0')
161 dev_info(&pdev
->dev
, "%s\n",
173 dev_info(&pdev
->dev
, "invalid %s specified (%i) %s\n",
174 opt
->name
, *value
, opt
->err
);
180 * atl1_check_options - Range Checking for Command Line Parameters
181 * @adapter: board private structure
183 * This routine checks all command line parameters for valid user
184 * input. If an invalid value is given, or if no user specified
185 * value exists, a default value is used. The final value is stored
186 * in a variable in the adapter structure.
188 static void atl1_check_options(struct atl1_adapter
*adapter
)
190 struct pci_dev
*pdev
= adapter
->pdev
;
191 int bd
= adapter
->bd_number
;
192 if (bd
>= ATL1_MAX_NIC
) {
193 dev_notice(&pdev
->dev
, "no configuration for board#%i\n", bd
);
194 dev_notice(&pdev
->dev
, "using defaults for all values\n");
196 { /* Interrupt Moderate Timer */
197 struct atl1_option opt
= {
198 .type
= range_option
,
199 .name
= "Interrupt Moderator Timer",
200 .err
= "using default of "
201 __MODULE_STRING(DEFAULT_INT_MOD_CNT
),
202 .def
= DEFAULT_INT_MOD_CNT
,
203 .arg
= {.r
= {.min
= MIN_INT_MOD_CNT
,
204 .max
= MAX_INT_MOD_CNT
} }
207 if (num_int_mod_timer
> bd
) {
208 val
= int_mod_timer
[bd
];
209 atl1_validate_option(&val
, &opt
, pdev
);
210 adapter
->imt
= (u16
) val
;
212 adapter
->imt
= (u16
) (opt
.def
);
217 * atl1_pci_tbl - PCI Device ID Table
219 static const struct pci_device_id atl1_pci_tbl
[] = {
220 {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC
, PCI_DEVICE_ID_ATTANSIC_L1
)},
221 /* required last entry */
224 MODULE_DEVICE_TABLE(pci
, atl1_pci_tbl
);
226 static const u32 atl1_default_msg
= NETIF_MSG_DRV
| NETIF_MSG_PROBE
|
227 NETIF_MSG_LINK
| NETIF_MSG_TIMER
| NETIF_MSG_IFDOWN
| NETIF_MSG_IFUP
;
229 static int debug
= -1;
230 module_param(debug
, int, 0);
231 MODULE_PARM_DESC(debug
, "Message level (0=none,...,16=all)");
234 * Reset the transmit and receive units; mask and clear all interrupts.
235 * hw - Struct containing variables accessed by shared code
236 * return : 0 or idle status (if error)
238 static s32
atl1_reset_hw(struct atl1_hw
*hw
)
240 struct pci_dev
*pdev
= hw
->back
->pdev
;
241 struct atl1_adapter
*adapter
= hw
->back
;
246 * Clear Interrupt mask to stop board from generating
247 * interrupts & Clear any pending interrupt events
250 * atlx_irq_disable(adapter);
251 * iowrite32(0xffffffff, hw->hw_addr + REG_ISR);
255 * Issue Soft Reset to the MAC. This will reset the chip's
256 * transmit, receive, DMA. It will not effect
257 * the current PCI configuration. The global reset bit is self-
258 * clearing, and should clear within a microsecond.
260 iowrite32(MASTER_CTRL_SOFT_RST
, hw
->hw_addr
+ REG_MASTER_CTRL
);
261 ioread32(hw
->hw_addr
+ REG_MASTER_CTRL
);
263 iowrite16(1, hw
->hw_addr
+ REG_PHY_ENABLE
);
264 ioread16(hw
->hw_addr
+ REG_PHY_ENABLE
);
266 /* delay about 1ms */
269 /* Wait at least 10ms for All module to be Idle */
270 for (i
= 0; i
< 10; i
++) {
271 icr
= ioread32(hw
->hw_addr
+ REG_IDLE_STATUS
);
276 /* FIXME: still the right way to do this? */
281 if (netif_msg_hw(adapter
))
282 dev_dbg(&pdev
->dev
, "ICR = 0x%x\n", icr
);
289 /* function about EEPROM
292 * return 0 if eeprom exist
294 static int atl1_check_eeprom_exist(struct atl1_hw
*hw
)
297 value
= ioread32(hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
298 if (value
& SPI_FLASH_CTRL_EN_VPD
) {
299 value
&= ~SPI_FLASH_CTRL_EN_VPD
;
300 iowrite32(value
, hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
303 value
= ioread16(hw
->hw_addr
+ REG_PCIE_CAP_LIST
);
304 return ((value
& 0xFF00) == 0x6C00) ? 0 : 1;
307 static bool atl1_read_eeprom(struct atl1_hw
*hw
, u32 offset
, u32
*p_value
)
313 /* address do not align */
316 iowrite32(0, hw
->hw_addr
+ REG_VPD_DATA
);
317 control
= (offset
& VPD_CAP_VPD_ADDR_MASK
) << VPD_CAP_VPD_ADDR_SHIFT
;
318 iowrite32(control
, hw
->hw_addr
+ REG_VPD_CAP
);
319 ioread32(hw
->hw_addr
+ REG_VPD_CAP
);
321 for (i
= 0; i
< 10; i
++) {
323 control
= ioread32(hw
->hw_addr
+ REG_VPD_CAP
);
324 if (control
& VPD_CAP_VPD_FLAG
)
327 if (control
& VPD_CAP_VPD_FLAG
) {
328 *p_value
= ioread32(hw
->hw_addr
+ REG_VPD_DATA
);
336 * Reads the value from a PHY register
337 * hw - Struct containing variables accessed by shared code
338 * reg_addr - address of the PHY register to read
340 static s32
atl1_read_phy_reg(struct atl1_hw
*hw
, u16 reg_addr
, u16
*phy_data
)
345 val
= ((u32
) (reg_addr
& MDIO_REG_ADDR_MASK
)) << MDIO_REG_ADDR_SHIFT
|
346 MDIO_START
| MDIO_SUP_PREAMBLE
| MDIO_RW
| MDIO_CLK_25_4
<<
348 iowrite32(val
, hw
->hw_addr
+ REG_MDIO_CTRL
);
349 ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
351 for (i
= 0; i
< MDIO_WAIT_TIMES
; i
++) {
353 val
= ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
354 if (!(val
& (MDIO_START
| MDIO_BUSY
)))
357 if (!(val
& (MDIO_START
| MDIO_BUSY
))) {
358 *phy_data
= (u16
) val
;
364 #define CUSTOM_SPI_CS_SETUP 2
365 #define CUSTOM_SPI_CLK_HI 2
366 #define CUSTOM_SPI_CLK_LO 2
367 #define CUSTOM_SPI_CS_HOLD 2
368 #define CUSTOM_SPI_CS_HI 3
370 static bool atl1_spi_read(struct atl1_hw
*hw
, u32 addr
, u32
*buf
)
375 iowrite32(0, hw
->hw_addr
+ REG_SPI_DATA
);
376 iowrite32(addr
, hw
->hw_addr
+ REG_SPI_ADDR
);
378 value
= SPI_FLASH_CTRL_WAIT_READY
|
379 (CUSTOM_SPI_CS_SETUP
& SPI_FLASH_CTRL_CS_SETUP_MASK
) <<
380 SPI_FLASH_CTRL_CS_SETUP_SHIFT
| (CUSTOM_SPI_CLK_HI
&
381 SPI_FLASH_CTRL_CLK_HI_MASK
) <<
382 SPI_FLASH_CTRL_CLK_HI_SHIFT
| (CUSTOM_SPI_CLK_LO
&
383 SPI_FLASH_CTRL_CLK_LO_MASK
) <<
384 SPI_FLASH_CTRL_CLK_LO_SHIFT
| (CUSTOM_SPI_CS_HOLD
&
385 SPI_FLASH_CTRL_CS_HOLD_MASK
) <<
386 SPI_FLASH_CTRL_CS_HOLD_SHIFT
| (CUSTOM_SPI_CS_HI
&
387 SPI_FLASH_CTRL_CS_HI_MASK
) <<
388 SPI_FLASH_CTRL_CS_HI_SHIFT
| (1 & SPI_FLASH_CTRL_INS_MASK
) <<
389 SPI_FLASH_CTRL_INS_SHIFT
;
391 iowrite32(value
, hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
393 value
|= SPI_FLASH_CTRL_START
;
394 iowrite32(value
, hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
395 ioread32(hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
397 for (i
= 0; i
< 10; i
++) {
399 value
= ioread32(hw
->hw_addr
+ REG_SPI_FLASH_CTRL
);
400 if (!(value
& SPI_FLASH_CTRL_START
))
404 if (value
& SPI_FLASH_CTRL_START
)
407 *buf
= ioread32(hw
->hw_addr
+ REG_SPI_DATA
);
413 * get_permanent_address
414 * return 0 if get valid mac address,
416 static int atl1_get_permanent_address(struct atl1_hw
*hw
)
421 u8 eth_addr
[ETH_ALEN
];
424 if (is_valid_ether_addr(hw
->perm_mac_addr
))
428 addr
[0] = addr
[1] = 0;
430 if (!atl1_check_eeprom_exist(hw
)) {
433 /* Read out all EEPROM content */
436 if (atl1_read_eeprom(hw
, i
+ 0x100, &control
)) {
438 if (reg
== REG_MAC_STA_ADDR
)
440 else if (reg
== (REG_MAC_STA_ADDR
+ 4))
443 } else if ((control
& 0xff) == 0x5A) {
445 reg
= (u16
) (control
>> 16);
454 *(u32
*) ð_addr
[2] = swab32(addr
[0]);
455 *(u16
*) ð_addr
[0] = swab16(*(u16
*) &addr
[1]);
456 if (is_valid_ether_addr(eth_addr
)) {
457 memcpy(hw
->perm_mac_addr
, eth_addr
, ETH_ALEN
);
462 /* see if SPI FLAGS exist ? */
463 addr
[0] = addr
[1] = 0;
468 if (atl1_spi_read(hw
, i
+ 0x1f000, &control
)) {
470 if (reg
== REG_MAC_STA_ADDR
)
472 else if (reg
== (REG_MAC_STA_ADDR
+ 4))
475 } else if ((control
& 0xff) == 0x5A) {
477 reg
= (u16
) (control
>> 16);
487 *(u32
*) ð_addr
[2] = swab32(addr
[0]);
488 *(u16
*) ð_addr
[0] = swab16(*(u16
*) &addr
[1]);
489 if (is_valid_ether_addr(eth_addr
)) {
490 memcpy(hw
->perm_mac_addr
, eth_addr
, ETH_ALEN
);
495 * On some motherboards, the MAC address is written by the
496 * BIOS directly to the MAC register during POST, and is
497 * not stored in eeprom. If all else thus far has failed
498 * to fetch the permanent MAC address, try reading it directly.
500 addr
[0] = ioread32(hw
->hw_addr
+ REG_MAC_STA_ADDR
);
501 addr
[1] = ioread16(hw
->hw_addr
+ (REG_MAC_STA_ADDR
+ 4));
502 *(u32
*) ð_addr
[2] = swab32(addr
[0]);
503 *(u16
*) ð_addr
[0] = swab16(*(u16
*) &addr
[1]);
504 if (is_valid_ether_addr(eth_addr
)) {
505 memcpy(hw
->perm_mac_addr
, eth_addr
, ETH_ALEN
);
513 * Reads the adapter's MAC address from the EEPROM
514 * hw - Struct containing variables accessed by shared code
516 static s32
atl1_read_mac_addr(struct atl1_hw
*hw
)
521 if (atl1_get_permanent_address(hw
)) {
522 eth_random_addr(hw
->perm_mac_addr
);
526 for (i
= 0; i
< ETH_ALEN
; i
++)
527 hw
->mac_addr
[i
] = hw
->perm_mac_addr
[i
];
532 * Hashes an address to determine its location in the multicast table
533 * hw - Struct containing variables accessed by shared code
534 * mc_addr - the multicast address to hash
538 * set hash value for a multicast address
539 * hash calcu processing :
540 * 1. calcu 32bit CRC for multicast address
541 * 2. reverse crc with MSB to LSB
543 static u32
atl1_hash_mc_addr(struct atl1_hw
*hw
, u8
*mc_addr
)
545 u32 crc32
, value
= 0;
548 crc32
= ether_crc_le(6, mc_addr
);
549 for (i
= 0; i
< 32; i
++)
550 value
|= (((crc32
>> i
) & 1) << (31 - i
));
556 * Sets the bit in the multicast table corresponding to the hash value.
557 * hw - Struct containing variables accessed by shared code
558 * hash_value - Multicast address hash value
560 static void atl1_hash_set(struct atl1_hw
*hw
, u32 hash_value
)
562 u32 hash_bit
, hash_reg
;
566 * The HASH Table is a register array of 2 32-bit registers.
567 * It is treated like an array of 64 bits. We want to set
568 * bit BitArray[hash_value]. So we figure out what register
569 * the bit is in, read it, OR in the new bit, then write
570 * back the new value. The register is determined by the
571 * upper 7 bits of the hash value and the bit within that
572 * register are determined by the lower 5 bits of the value.
574 hash_reg
= (hash_value
>> 31) & 0x1;
575 hash_bit
= (hash_value
>> 26) & 0x1F;
576 mta
= ioread32((hw
->hw_addr
+ REG_RX_HASH_TABLE
) + (hash_reg
<< 2));
577 mta
|= (1 << hash_bit
);
578 iowrite32(mta
, (hw
->hw_addr
+ REG_RX_HASH_TABLE
) + (hash_reg
<< 2));
582 * Writes a value to a PHY register
583 * hw - Struct containing variables accessed by shared code
584 * reg_addr - address of the PHY register to write
585 * data - data to write to the PHY
587 static s32
atl1_write_phy_reg(struct atl1_hw
*hw
, u32 reg_addr
, u16 phy_data
)
592 val
= ((u32
) (phy_data
& MDIO_DATA_MASK
)) << MDIO_DATA_SHIFT
|
593 (reg_addr
& MDIO_REG_ADDR_MASK
) << MDIO_REG_ADDR_SHIFT
|
595 MDIO_START
| MDIO_CLK_25_4
<< MDIO_CLK_SEL_SHIFT
;
596 iowrite32(val
, hw
->hw_addr
+ REG_MDIO_CTRL
);
597 ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
599 for (i
= 0; i
< MDIO_WAIT_TIMES
; i
++) {
601 val
= ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
602 if (!(val
& (MDIO_START
| MDIO_BUSY
)))
606 if (!(val
& (MDIO_START
| MDIO_BUSY
)))
613 * Make L001's PHY out of Power Saving State (bug)
614 * hw - Struct containing variables accessed by shared code
615 * when power on, L001's PHY always on Power saving State
616 * (Gigabit Link forbidden)
618 static s32
atl1_phy_leave_power_saving(struct atl1_hw
*hw
)
621 ret
= atl1_write_phy_reg(hw
, 29, 0x0029);
624 return atl1_write_phy_reg(hw
, 30, 0);
628 * Resets the PHY and make all config validate
629 * hw - Struct containing variables accessed by shared code
631 * Sets bit 15 and 12 of the MII Control regiser (for F001 bug)
633 static s32
atl1_phy_reset(struct atl1_hw
*hw
)
635 struct pci_dev
*pdev
= hw
->back
->pdev
;
636 struct atl1_adapter
*adapter
= hw
->back
;
640 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
641 hw
->media_type
== MEDIA_TYPE_1000M_FULL
)
642 phy_data
= MII_CR_RESET
| MII_CR_AUTO_NEG_EN
;
644 switch (hw
->media_type
) {
645 case MEDIA_TYPE_100M_FULL
:
647 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_100
|
650 case MEDIA_TYPE_100M_HALF
:
651 phy_data
= MII_CR_SPEED_100
| MII_CR_RESET
;
653 case MEDIA_TYPE_10M_FULL
:
655 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_10
| MII_CR_RESET
;
658 /* MEDIA_TYPE_10M_HALF: */
659 phy_data
= MII_CR_SPEED_10
| MII_CR_RESET
;
664 ret_val
= atl1_write_phy_reg(hw
, MII_BMCR
, phy_data
);
668 /* pcie serdes link may be down! */
669 if (netif_msg_hw(adapter
))
670 dev_dbg(&pdev
->dev
, "pcie phy link down\n");
672 for (i
= 0; i
< 25; i
++) {
674 val
= ioread32(hw
->hw_addr
+ REG_MDIO_CTRL
);
675 if (!(val
& (MDIO_START
| MDIO_BUSY
)))
679 if ((val
& (MDIO_START
| MDIO_BUSY
)) != 0) {
680 if (netif_msg_hw(adapter
))
682 "pcie link down at least 25ms\n");
690 * Configures PHY autoneg and flow control advertisement settings
691 * hw - Struct containing variables accessed by shared code
693 static s32
atl1_phy_setup_autoneg_adv(struct atl1_hw
*hw
)
696 s16 mii_autoneg_adv_reg
;
697 s16 mii_1000t_ctrl_reg
;
699 /* Read the MII Auto-Neg Advertisement Register (Address 4). */
700 mii_autoneg_adv_reg
= MII_AR_DEFAULT_CAP_MASK
;
702 /* Read the MII 1000Base-T Control Register (Address 9). */
703 mii_1000t_ctrl_reg
= MII_ATLX_CR_1000T_DEFAULT_CAP_MASK
;
706 * First we clear all the 10/100 mb speed bits in the Auto-Neg
707 * Advertisement Register (Address 4) and the 1000 mb speed bits in
708 * the 1000Base-T Control Register (Address 9).
710 mii_autoneg_adv_reg
&= ~MII_AR_SPEED_MASK
;
711 mii_1000t_ctrl_reg
&= ~MII_ATLX_CR_1000T_SPEED_MASK
;
714 * Need to parse media_type and set up
715 * the appropriate PHY registers.
717 switch (hw
->media_type
) {
718 case MEDIA_TYPE_AUTO_SENSOR
:
719 mii_autoneg_adv_reg
|= (MII_AR_10T_HD_CAPS
|
721 MII_AR_100TX_HD_CAPS
|
722 MII_AR_100TX_FD_CAPS
);
723 mii_1000t_ctrl_reg
|= MII_ATLX_CR_1000T_FD_CAPS
;
726 case MEDIA_TYPE_1000M_FULL
:
727 mii_1000t_ctrl_reg
|= MII_ATLX_CR_1000T_FD_CAPS
;
730 case MEDIA_TYPE_100M_FULL
:
731 mii_autoneg_adv_reg
|= MII_AR_100TX_FD_CAPS
;
734 case MEDIA_TYPE_100M_HALF
:
735 mii_autoneg_adv_reg
|= MII_AR_100TX_HD_CAPS
;
738 case MEDIA_TYPE_10M_FULL
:
739 mii_autoneg_adv_reg
|= MII_AR_10T_FD_CAPS
;
743 mii_autoneg_adv_reg
|= MII_AR_10T_HD_CAPS
;
747 /* flow control fixed to enable all */
748 mii_autoneg_adv_reg
|= (MII_AR_ASM_DIR
| MII_AR_PAUSE
);
750 hw
->mii_autoneg_adv_reg
= mii_autoneg_adv_reg
;
751 hw
->mii_1000t_ctrl_reg
= mii_1000t_ctrl_reg
;
753 ret_val
= atl1_write_phy_reg(hw
, MII_ADVERTISE
, mii_autoneg_adv_reg
);
757 ret_val
= atl1_write_phy_reg(hw
, MII_ATLX_CR
, mii_1000t_ctrl_reg
);
765 * Configures link settings.
766 * hw - Struct containing variables accessed by shared code
767 * Assumes the hardware has previously been reset and the
768 * transmitter and receiver are not enabled.
770 static s32
atl1_setup_link(struct atl1_hw
*hw
)
772 struct pci_dev
*pdev
= hw
->back
->pdev
;
773 struct atl1_adapter
*adapter
= hw
->back
;
778 * PHY will advertise value(s) parsed from
779 * autoneg_advertised and fc
780 * no matter what autoneg is , We will not wait link result.
782 ret_val
= atl1_phy_setup_autoneg_adv(hw
);
784 if (netif_msg_link(adapter
))
786 "error setting up autonegotiation\n");
789 /* SW.Reset , En-Auto-Neg if needed */
790 ret_val
= atl1_phy_reset(hw
);
792 if (netif_msg_link(adapter
))
793 dev_dbg(&pdev
->dev
, "error resetting phy\n");
796 hw
->phy_configured
= true;
800 static void atl1_init_flash_opcode(struct atl1_hw
*hw
)
802 if (hw
->flash_vendor
>= ARRAY_SIZE(flash_table
))
804 hw
->flash_vendor
= 0;
807 iowrite8(flash_table
[hw
->flash_vendor
].cmd_program
,
808 hw
->hw_addr
+ REG_SPI_FLASH_OP_PROGRAM
);
809 iowrite8(flash_table
[hw
->flash_vendor
].cmd_sector_erase
,
810 hw
->hw_addr
+ REG_SPI_FLASH_OP_SC_ERASE
);
811 iowrite8(flash_table
[hw
->flash_vendor
].cmd_chip_erase
,
812 hw
->hw_addr
+ REG_SPI_FLASH_OP_CHIP_ERASE
);
813 iowrite8(flash_table
[hw
->flash_vendor
].cmd_rdid
,
814 hw
->hw_addr
+ REG_SPI_FLASH_OP_RDID
);
815 iowrite8(flash_table
[hw
->flash_vendor
].cmd_wren
,
816 hw
->hw_addr
+ REG_SPI_FLASH_OP_WREN
);
817 iowrite8(flash_table
[hw
->flash_vendor
].cmd_rdsr
,
818 hw
->hw_addr
+ REG_SPI_FLASH_OP_RDSR
);
819 iowrite8(flash_table
[hw
->flash_vendor
].cmd_wrsr
,
820 hw
->hw_addr
+ REG_SPI_FLASH_OP_WRSR
);
821 iowrite8(flash_table
[hw
->flash_vendor
].cmd_read
,
822 hw
->hw_addr
+ REG_SPI_FLASH_OP_READ
);
826 * Performs basic configuration of the adapter.
827 * hw - Struct containing variables accessed by shared code
828 * Assumes that the controller has previously been reset and is in a
829 * post-reset uninitialized state. Initializes multicast table,
830 * and Calls routines to setup link
831 * Leaves the transmit and receive units disabled and uninitialized.
833 static s32
atl1_init_hw(struct atl1_hw
*hw
)
837 /* Zero out the Multicast HASH table */
838 iowrite32(0, hw
->hw_addr
+ REG_RX_HASH_TABLE
);
839 /* clear the old settings from the multicast hash table */
840 iowrite32(0, (hw
->hw_addr
+ REG_RX_HASH_TABLE
) + (1 << 2));
842 atl1_init_flash_opcode(hw
);
844 if (!hw
->phy_configured
) {
845 /* enable GPHY LinkChange Interrupt */
846 ret_val
= atl1_write_phy_reg(hw
, 18, 0xC00);
849 /* make PHY out of power-saving state */
850 ret_val
= atl1_phy_leave_power_saving(hw
);
853 /* Call a subroutine to configure the link */
854 ret_val
= atl1_setup_link(hw
);
860 * Detects the current speed and duplex settings of the hardware.
861 * hw - Struct containing variables accessed by shared code
862 * speed - Speed of the connection
863 * duplex - Duplex setting of the connection
865 static s32
atl1_get_speed_and_duplex(struct atl1_hw
*hw
, u16
*speed
, u16
*duplex
)
867 struct pci_dev
*pdev
= hw
->back
->pdev
;
868 struct atl1_adapter
*adapter
= hw
->back
;
872 /* ; --- Read PHY Specific Status Register (17) */
873 ret_val
= atl1_read_phy_reg(hw
, MII_ATLX_PSSR
, &phy_data
);
877 if (!(phy_data
& MII_ATLX_PSSR_SPD_DPLX_RESOLVED
))
878 return ATLX_ERR_PHY_RES
;
880 switch (phy_data
& MII_ATLX_PSSR_SPEED
) {
881 case MII_ATLX_PSSR_1000MBS
:
884 case MII_ATLX_PSSR_100MBS
:
887 case MII_ATLX_PSSR_10MBS
:
891 if (netif_msg_hw(adapter
))
892 dev_dbg(&pdev
->dev
, "error getting speed\n");
893 return ATLX_ERR_PHY_SPEED
;
895 if (phy_data
& MII_ATLX_PSSR_DPLX
)
896 *duplex
= FULL_DUPLEX
;
898 *duplex
= HALF_DUPLEX
;
903 static void atl1_set_mac_addr(struct atl1_hw
*hw
)
908 * 0: 6AF600DC 1: 000B
911 value
= (((u32
) hw
->mac_addr
[2]) << 24) |
912 (((u32
) hw
->mac_addr
[3]) << 16) |
913 (((u32
) hw
->mac_addr
[4]) << 8) | (((u32
) hw
->mac_addr
[5]));
914 iowrite32(value
, hw
->hw_addr
+ REG_MAC_STA_ADDR
);
916 value
= (((u32
) hw
->mac_addr
[0]) << 8) | (((u32
) hw
->mac_addr
[1]));
917 iowrite32(value
, (hw
->hw_addr
+ REG_MAC_STA_ADDR
) + (1 << 2));
921 * atl1_sw_init - Initialize general software structures (struct atl1_adapter)
922 * @adapter: board private structure to initialize
924 * atl1_sw_init initializes the Adapter private data structure.
925 * Fields are initialized based on PCI device information and
926 * OS network device settings (MTU size).
928 static int atl1_sw_init(struct atl1_adapter
*adapter
)
930 struct atl1_hw
*hw
= &adapter
->hw
;
931 struct net_device
*netdev
= adapter
->netdev
;
933 hw
->max_frame_size
= netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
934 hw
->min_frame_size
= ETH_ZLEN
+ ETH_FCS_LEN
;
937 device_set_wakeup_enable(&adapter
->pdev
->dev
, false);
938 adapter
->rx_buffer_len
= (hw
->max_frame_size
+ 7) & ~7;
939 adapter
->ict
= 50000; /* 100ms */
940 adapter
->link_speed
= SPEED_0
; /* hardware init */
941 adapter
->link_duplex
= FULL_DUPLEX
;
943 hw
->phy_configured
= false;
944 hw
->preamble_len
= 7;
954 hw
->rfd_fetch_gap
= 1;
955 hw
->rx_jumbo_th
= adapter
->rx_buffer_len
/ 8;
956 hw
->rx_jumbo_lkah
= 1;
957 hw
->rrd_ret_timer
= 16;
959 hw
->tpd_fetch_th
= 16;
960 hw
->txf_burst
= 0x100;
961 hw
->tx_jumbo_task_th
= (hw
->max_frame_size
+ 7) >> 3;
962 hw
->tpd_fetch_gap
= 1;
963 hw
->rcb_value
= atl1_rcb_64
;
964 hw
->dma_ord
= atl1_dma_ord_enh
;
965 hw
->dmar_block
= atl1_dma_req_256
;
966 hw
->dmaw_block
= atl1_dma_req_256
;
969 hw
->cmb_rx_timer
= 1; /* about 2us */
970 hw
->cmb_tx_timer
= 1; /* about 2us */
971 hw
->smb_timer
= 100000; /* about 200ms */
973 spin_lock_init(&adapter
->lock
);
974 spin_lock_init(&adapter
->mb_lock
);
979 static int mdio_read(struct net_device
*netdev
, int phy_id
, int reg_num
)
981 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
984 atl1_read_phy_reg(&adapter
->hw
, reg_num
& 0x1f, &result
);
989 static void mdio_write(struct net_device
*netdev
, int phy_id
, int reg_num
,
992 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
994 atl1_write_phy_reg(&adapter
->hw
, reg_num
, val
);
997 static int atl1_mii_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
999 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
1000 unsigned long flags
;
1003 if (!netif_running(netdev
))
1006 spin_lock_irqsave(&adapter
->lock
, flags
);
1007 retval
= generic_mii_ioctl(&adapter
->mii
, if_mii(ifr
), cmd
, NULL
);
1008 spin_unlock_irqrestore(&adapter
->lock
, flags
);
1014 * atl1_setup_mem_resources - allocate Tx / RX descriptor resources
1015 * @adapter: board private structure
1017 * Return 0 on success, negative on failure
1019 static s32
atl1_setup_ring_resources(struct atl1_adapter
*adapter
)
1021 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
1022 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1023 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1024 struct atl1_ring_header
*ring_header
= &adapter
->ring_header
;
1025 struct pci_dev
*pdev
= adapter
->pdev
;
1029 size
= sizeof(struct atl1_buffer
) * (tpd_ring
->count
+ rfd_ring
->count
);
1030 tpd_ring
->buffer_info
= kzalloc(size
, GFP_KERNEL
);
1031 if (unlikely(!tpd_ring
->buffer_info
)) {
1032 if (netif_msg_drv(adapter
))
1033 dev_err(&pdev
->dev
, "kzalloc failed , size = D%d\n",
1037 rfd_ring
->buffer_info
=
1038 (tpd_ring
->buffer_info
+ tpd_ring
->count
);
1041 * real ring DMA buffer
1042 * each ring/block may need up to 8 bytes for alignment, hence the
1043 * additional 40 bytes tacked onto the end.
1045 ring_header
->size
= size
=
1046 sizeof(struct tx_packet_desc
) * tpd_ring
->count
1047 + sizeof(struct rx_free_desc
) * rfd_ring
->count
1048 + sizeof(struct rx_return_desc
) * rrd_ring
->count
1049 + sizeof(struct coals_msg_block
)
1050 + sizeof(struct stats_msg_block
)
1053 ring_header
->desc
= pci_alloc_consistent(pdev
, ring_header
->size
,
1055 if (unlikely(!ring_header
->desc
)) {
1056 if (netif_msg_drv(adapter
))
1057 dev_err(&pdev
->dev
, "pci_alloc_consistent failed\n");
1062 tpd_ring
->dma
= ring_header
->dma
;
1063 offset
= (tpd_ring
->dma
& 0x7) ? (8 - (ring_header
->dma
& 0x7)) : 0;
1064 tpd_ring
->dma
+= offset
;
1065 tpd_ring
->desc
= (u8
*) ring_header
->desc
+ offset
;
1066 tpd_ring
->size
= sizeof(struct tx_packet_desc
) * tpd_ring
->count
;
1069 rfd_ring
->dma
= tpd_ring
->dma
+ tpd_ring
->size
;
1070 offset
= (rfd_ring
->dma
& 0x7) ? (8 - (rfd_ring
->dma
& 0x7)) : 0;
1071 rfd_ring
->dma
+= offset
;
1072 rfd_ring
->desc
= (u8
*) tpd_ring
->desc
+ (tpd_ring
->size
+ offset
);
1073 rfd_ring
->size
= sizeof(struct rx_free_desc
) * rfd_ring
->count
;
1077 rrd_ring
->dma
= rfd_ring
->dma
+ rfd_ring
->size
;
1078 offset
= (rrd_ring
->dma
& 0x7) ? (8 - (rrd_ring
->dma
& 0x7)) : 0;
1079 rrd_ring
->dma
+= offset
;
1080 rrd_ring
->desc
= (u8
*) rfd_ring
->desc
+ (rfd_ring
->size
+ offset
);
1081 rrd_ring
->size
= sizeof(struct rx_return_desc
) * rrd_ring
->count
;
1085 adapter
->cmb
.dma
= rrd_ring
->dma
+ rrd_ring
->size
;
1086 offset
= (adapter
->cmb
.dma
& 0x7) ? (8 - (adapter
->cmb
.dma
& 0x7)) : 0;
1087 adapter
->cmb
.dma
+= offset
;
1088 adapter
->cmb
.cmb
= (struct coals_msg_block
*)
1089 ((u8
*) rrd_ring
->desc
+ (rrd_ring
->size
+ offset
));
1092 adapter
->smb
.dma
= adapter
->cmb
.dma
+ sizeof(struct coals_msg_block
);
1093 offset
= (adapter
->smb
.dma
& 0x7) ? (8 - (adapter
->smb
.dma
& 0x7)) : 0;
1094 adapter
->smb
.dma
+= offset
;
1095 adapter
->smb
.smb
= (struct stats_msg_block
*)
1096 ((u8
*) adapter
->cmb
.cmb
+
1097 (sizeof(struct coals_msg_block
) + offset
));
1102 kfree(tpd_ring
->buffer_info
);
1106 static void atl1_init_ring_ptrs(struct atl1_adapter
*adapter
)
1108 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
1109 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1110 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1112 atomic_set(&tpd_ring
->next_to_use
, 0);
1113 atomic_set(&tpd_ring
->next_to_clean
, 0);
1115 rfd_ring
->next_to_clean
= 0;
1116 atomic_set(&rfd_ring
->next_to_use
, 0);
1118 rrd_ring
->next_to_use
= 0;
1119 atomic_set(&rrd_ring
->next_to_clean
, 0);
1123 * atl1_clean_rx_ring - Free RFD Buffers
1124 * @adapter: board private structure
1126 static void atl1_clean_rx_ring(struct atl1_adapter
*adapter
)
1128 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1129 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1130 struct atl1_buffer
*buffer_info
;
1131 struct pci_dev
*pdev
= adapter
->pdev
;
1135 /* Free all the Rx ring sk_buffs */
1136 for (i
= 0; i
< rfd_ring
->count
; i
++) {
1137 buffer_info
= &rfd_ring
->buffer_info
[i
];
1138 if (buffer_info
->dma
) {
1139 pci_unmap_page(pdev
, buffer_info
->dma
,
1140 buffer_info
->length
, PCI_DMA_FROMDEVICE
);
1141 buffer_info
->dma
= 0;
1143 if (buffer_info
->skb
) {
1144 dev_kfree_skb(buffer_info
->skb
);
1145 buffer_info
->skb
= NULL
;
1149 size
= sizeof(struct atl1_buffer
) * rfd_ring
->count
;
1150 memset(rfd_ring
->buffer_info
, 0, size
);
1152 /* Zero out the descriptor ring */
1153 memset(rfd_ring
->desc
, 0, rfd_ring
->size
);
1155 rfd_ring
->next_to_clean
= 0;
1156 atomic_set(&rfd_ring
->next_to_use
, 0);
1158 rrd_ring
->next_to_use
= 0;
1159 atomic_set(&rrd_ring
->next_to_clean
, 0);
1163 * atl1_clean_tx_ring - Free Tx Buffers
1164 * @adapter: board private structure
1166 static void atl1_clean_tx_ring(struct atl1_adapter
*adapter
)
1168 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
1169 struct atl1_buffer
*buffer_info
;
1170 struct pci_dev
*pdev
= adapter
->pdev
;
1174 /* Free all the Tx ring sk_buffs */
1175 for (i
= 0; i
< tpd_ring
->count
; i
++) {
1176 buffer_info
= &tpd_ring
->buffer_info
[i
];
1177 if (buffer_info
->dma
) {
1178 pci_unmap_page(pdev
, buffer_info
->dma
,
1179 buffer_info
->length
, PCI_DMA_TODEVICE
);
1180 buffer_info
->dma
= 0;
1184 for (i
= 0; i
< tpd_ring
->count
; i
++) {
1185 buffer_info
= &tpd_ring
->buffer_info
[i
];
1186 if (buffer_info
->skb
) {
1187 dev_kfree_skb_any(buffer_info
->skb
);
1188 buffer_info
->skb
= NULL
;
1192 size
= sizeof(struct atl1_buffer
) * tpd_ring
->count
;
1193 memset(tpd_ring
->buffer_info
, 0, size
);
1195 /* Zero out the descriptor ring */
1196 memset(tpd_ring
->desc
, 0, tpd_ring
->size
);
1198 atomic_set(&tpd_ring
->next_to_use
, 0);
1199 atomic_set(&tpd_ring
->next_to_clean
, 0);
1203 * atl1_free_ring_resources - Free Tx / RX descriptor Resources
1204 * @adapter: board private structure
1206 * Free all transmit software resources
1208 static void atl1_free_ring_resources(struct atl1_adapter
*adapter
)
1210 struct pci_dev
*pdev
= adapter
->pdev
;
1211 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
1212 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1213 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1214 struct atl1_ring_header
*ring_header
= &adapter
->ring_header
;
1216 atl1_clean_tx_ring(adapter
);
1217 atl1_clean_rx_ring(adapter
);
1219 kfree(tpd_ring
->buffer_info
);
1220 pci_free_consistent(pdev
, ring_header
->size
, ring_header
->desc
,
1223 tpd_ring
->buffer_info
= NULL
;
1224 tpd_ring
->desc
= NULL
;
1227 rfd_ring
->buffer_info
= NULL
;
1228 rfd_ring
->desc
= NULL
;
1231 rrd_ring
->desc
= NULL
;
1234 adapter
->cmb
.dma
= 0;
1235 adapter
->cmb
.cmb
= NULL
;
1237 adapter
->smb
.dma
= 0;
1238 adapter
->smb
.smb
= NULL
;
1241 static void atl1_setup_mac_ctrl(struct atl1_adapter
*adapter
)
1244 struct atl1_hw
*hw
= &adapter
->hw
;
1245 struct net_device
*netdev
= adapter
->netdev
;
1246 /* Config MAC CTRL Register */
1247 value
= MAC_CTRL_TX_EN
| MAC_CTRL_RX_EN
;
1249 if (FULL_DUPLEX
== adapter
->link_duplex
)
1250 value
|= MAC_CTRL_DUPLX
;
1252 value
|= ((u32
) ((SPEED_1000
== adapter
->link_speed
) ?
1253 MAC_CTRL_SPEED_1000
: MAC_CTRL_SPEED_10_100
) <<
1254 MAC_CTRL_SPEED_SHIFT
);
1256 value
|= (MAC_CTRL_TX_FLOW
| MAC_CTRL_RX_FLOW
);
1258 value
|= (MAC_CTRL_ADD_CRC
| MAC_CTRL_PAD
);
1259 /* preamble length */
1260 value
|= (((u32
) adapter
->hw
.preamble_len
1261 & MAC_CTRL_PRMLEN_MASK
) << MAC_CTRL_PRMLEN_SHIFT
);
1263 __atlx_vlan_mode(netdev
->features
, &value
);
1265 if (adapter->rx_csum)
1266 value |= MAC_CTRL_RX_CHKSUM_EN;
1269 value
|= MAC_CTRL_BC_EN
;
1270 if (netdev
->flags
& IFF_PROMISC
)
1271 value
|= MAC_CTRL_PROMIS_EN
;
1272 else if (netdev
->flags
& IFF_ALLMULTI
)
1273 value
|= MAC_CTRL_MC_ALL_EN
;
1274 /* value |= MAC_CTRL_LOOPBACK; */
1275 iowrite32(value
, hw
->hw_addr
+ REG_MAC_CTRL
);
1278 static u32
atl1_check_link(struct atl1_adapter
*adapter
)
1280 struct atl1_hw
*hw
= &adapter
->hw
;
1281 struct net_device
*netdev
= adapter
->netdev
;
1283 u16 speed
, duplex
, phy_data
;
1286 /* MII_BMSR must read twice */
1287 atl1_read_phy_reg(hw
, MII_BMSR
, &phy_data
);
1288 atl1_read_phy_reg(hw
, MII_BMSR
, &phy_data
);
1289 if (!(phy_data
& BMSR_LSTATUS
)) {
1291 if (netif_carrier_ok(netdev
)) {
1292 /* old link state: Up */
1293 if (netif_msg_link(adapter
))
1294 dev_info(&adapter
->pdev
->dev
, "link is down\n");
1295 adapter
->link_speed
= SPEED_0
;
1296 netif_carrier_off(netdev
);
1302 ret_val
= atl1_get_speed_and_duplex(hw
, &speed
, &duplex
);
1306 switch (hw
->media_type
) {
1307 case MEDIA_TYPE_1000M_FULL
:
1308 if (speed
!= SPEED_1000
|| duplex
!= FULL_DUPLEX
)
1311 case MEDIA_TYPE_100M_FULL
:
1312 if (speed
!= SPEED_100
|| duplex
!= FULL_DUPLEX
)
1315 case MEDIA_TYPE_100M_HALF
:
1316 if (speed
!= SPEED_100
|| duplex
!= HALF_DUPLEX
)
1319 case MEDIA_TYPE_10M_FULL
:
1320 if (speed
!= SPEED_10
|| duplex
!= FULL_DUPLEX
)
1323 case MEDIA_TYPE_10M_HALF
:
1324 if (speed
!= SPEED_10
|| duplex
!= HALF_DUPLEX
)
1329 /* link result is our setting */
1331 if (adapter
->link_speed
!= speed
||
1332 adapter
->link_duplex
!= duplex
) {
1333 adapter
->link_speed
= speed
;
1334 adapter
->link_duplex
= duplex
;
1335 atl1_setup_mac_ctrl(adapter
);
1336 if (netif_msg_link(adapter
))
1337 dev_info(&adapter
->pdev
->dev
,
1338 "%s link is up %d Mbps %s\n",
1339 netdev
->name
, adapter
->link_speed
,
1340 adapter
->link_duplex
== FULL_DUPLEX
?
1341 "full duplex" : "half duplex");
1343 if (!netif_carrier_ok(netdev
)) {
1344 /* Link down -> Up */
1345 netif_carrier_on(netdev
);
1350 /* change original link status */
1351 if (netif_carrier_ok(netdev
)) {
1352 adapter
->link_speed
= SPEED_0
;
1353 netif_carrier_off(netdev
);
1354 netif_stop_queue(netdev
);
1357 if (hw
->media_type
!= MEDIA_TYPE_AUTO_SENSOR
&&
1358 hw
->media_type
!= MEDIA_TYPE_1000M_FULL
) {
1359 switch (hw
->media_type
) {
1360 case MEDIA_TYPE_100M_FULL
:
1361 phy_data
= MII_CR_FULL_DUPLEX
| MII_CR_SPEED_100
|
1364 case MEDIA_TYPE_100M_HALF
:
1365 phy_data
= MII_CR_SPEED_100
| MII_CR_RESET
;
1367 case MEDIA_TYPE_10M_FULL
:
1369 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_10
| MII_CR_RESET
;
1372 /* MEDIA_TYPE_10M_HALF: */
1373 phy_data
= MII_CR_SPEED_10
| MII_CR_RESET
;
1376 atl1_write_phy_reg(hw
, MII_BMCR
, phy_data
);
1380 /* auto-neg, insert timer to re-config phy */
1381 if (!adapter
->phy_timer_pending
) {
1382 adapter
->phy_timer_pending
= true;
1383 mod_timer(&adapter
->phy_config_timer
,
1384 round_jiffies(jiffies
+ 3 * HZ
));
1390 static void set_flow_ctrl_old(struct atl1_adapter
*adapter
)
1394 /* RFD Flow Control */
1395 value
= adapter
->rfd_ring
.count
;
1401 value
= ((hi
& RXQ_RXF_PAUSE_TH_HI_MASK
) << RXQ_RXF_PAUSE_TH_HI_SHIFT
) |
1402 ((lo
& RXQ_RXF_PAUSE_TH_LO_MASK
) << RXQ_RXF_PAUSE_TH_LO_SHIFT
);
1403 iowrite32(value
, adapter
->hw
.hw_addr
+ REG_RXQ_RXF_PAUSE_THRESH
);
1405 /* RRD Flow Control */
1406 value
= adapter
->rrd_ring
.count
;
1411 value
= ((hi
& RXQ_RRD_PAUSE_TH_HI_MASK
) << RXQ_RRD_PAUSE_TH_HI_SHIFT
) |
1412 ((lo
& RXQ_RRD_PAUSE_TH_LO_MASK
) << RXQ_RRD_PAUSE_TH_LO_SHIFT
);
1413 iowrite32(value
, adapter
->hw
.hw_addr
+ REG_RXQ_RRD_PAUSE_THRESH
);
1416 static void set_flow_ctrl_new(struct atl1_hw
*hw
)
1420 /* RXF Flow Control */
1421 value
= ioread32(hw
->hw_addr
+ REG_SRAM_RXF_LEN
);
1428 value
= ((hi
& RXQ_RXF_PAUSE_TH_HI_MASK
) << RXQ_RXF_PAUSE_TH_HI_SHIFT
) |
1429 ((lo
& RXQ_RXF_PAUSE_TH_LO_MASK
) << RXQ_RXF_PAUSE_TH_LO_SHIFT
);
1430 iowrite32(value
, hw
->hw_addr
+ REG_RXQ_RXF_PAUSE_THRESH
);
1432 /* RRD Flow Control */
1433 value
= ioread32(hw
->hw_addr
+ REG_SRAM_RRD_LEN
);
1440 value
= ((hi
& RXQ_RRD_PAUSE_TH_HI_MASK
) << RXQ_RRD_PAUSE_TH_HI_SHIFT
) |
1441 ((lo
& RXQ_RRD_PAUSE_TH_LO_MASK
) << RXQ_RRD_PAUSE_TH_LO_SHIFT
);
1442 iowrite32(value
, hw
->hw_addr
+ REG_RXQ_RRD_PAUSE_THRESH
);
1446 * atl1_configure - Configure Transmit&Receive Unit after Reset
1447 * @adapter: board private structure
1449 * Configure the Tx /Rx unit of the MAC after a reset.
1451 static u32
atl1_configure(struct atl1_adapter
*adapter
)
1453 struct atl1_hw
*hw
= &adapter
->hw
;
1456 /* clear interrupt status */
1457 iowrite32(0xffffffff, adapter
->hw
.hw_addr
+ REG_ISR
);
1459 /* set MAC Address */
1460 value
= (((u32
) hw
->mac_addr
[2]) << 24) |
1461 (((u32
) hw
->mac_addr
[3]) << 16) |
1462 (((u32
) hw
->mac_addr
[4]) << 8) |
1463 (((u32
) hw
->mac_addr
[5]));
1464 iowrite32(value
, hw
->hw_addr
+ REG_MAC_STA_ADDR
);
1465 value
= (((u32
) hw
->mac_addr
[0]) << 8) | (((u32
) hw
->mac_addr
[1]));
1466 iowrite32(value
, hw
->hw_addr
+ (REG_MAC_STA_ADDR
+ 4));
1470 /* HI base address */
1471 iowrite32((u32
) ((adapter
->tpd_ring
.dma
& 0xffffffff00000000ULL
) >> 32),
1472 hw
->hw_addr
+ REG_DESC_BASE_ADDR_HI
);
1473 /* LO base address */
1474 iowrite32((u32
) (adapter
->rfd_ring
.dma
& 0x00000000ffffffffULL
),
1475 hw
->hw_addr
+ REG_DESC_RFD_ADDR_LO
);
1476 iowrite32((u32
) (adapter
->rrd_ring
.dma
& 0x00000000ffffffffULL
),
1477 hw
->hw_addr
+ REG_DESC_RRD_ADDR_LO
);
1478 iowrite32((u32
) (adapter
->tpd_ring
.dma
& 0x00000000ffffffffULL
),
1479 hw
->hw_addr
+ REG_DESC_TPD_ADDR_LO
);
1480 iowrite32((u32
) (adapter
->cmb
.dma
& 0x00000000ffffffffULL
),
1481 hw
->hw_addr
+ REG_DESC_CMB_ADDR_LO
);
1482 iowrite32((u32
) (adapter
->smb
.dma
& 0x00000000ffffffffULL
),
1483 hw
->hw_addr
+ REG_DESC_SMB_ADDR_LO
);
1486 value
= adapter
->rrd_ring
.count
;
1488 value
+= adapter
->rfd_ring
.count
;
1489 iowrite32(value
, hw
->hw_addr
+ REG_DESC_RFD_RRD_RING_SIZE
);
1490 iowrite32(adapter
->tpd_ring
.count
, hw
->hw_addr
+
1491 REG_DESC_TPD_RING_SIZE
);
1494 iowrite32(1, hw
->hw_addr
+ REG_LOAD_PTR
);
1496 /* config Mailbox */
1497 value
= ((atomic_read(&adapter
->tpd_ring
.next_to_use
)
1498 & MB_TPD_PROD_INDX_MASK
) << MB_TPD_PROD_INDX_SHIFT
) |
1499 ((atomic_read(&adapter
->rrd_ring
.next_to_clean
)
1500 & MB_RRD_CONS_INDX_MASK
) << MB_RRD_CONS_INDX_SHIFT
) |
1501 ((atomic_read(&adapter
->rfd_ring
.next_to_use
)
1502 & MB_RFD_PROD_INDX_MASK
) << MB_RFD_PROD_INDX_SHIFT
);
1503 iowrite32(value
, hw
->hw_addr
+ REG_MAILBOX
);
1505 /* config IPG/IFG */
1506 value
= (((u32
) hw
->ipgt
& MAC_IPG_IFG_IPGT_MASK
)
1507 << MAC_IPG_IFG_IPGT_SHIFT
) |
1508 (((u32
) hw
->min_ifg
& MAC_IPG_IFG_MIFG_MASK
)
1509 << MAC_IPG_IFG_MIFG_SHIFT
) |
1510 (((u32
) hw
->ipgr1
& MAC_IPG_IFG_IPGR1_MASK
)
1511 << MAC_IPG_IFG_IPGR1_SHIFT
) |
1512 (((u32
) hw
->ipgr2
& MAC_IPG_IFG_IPGR2_MASK
)
1513 << MAC_IPG_IFG_IPGR2_SHIFT
);
1514 iowrite32(value
, hw
->hw_addr
+ REG_MAC_IPG_IFG
);
1516 /* config Half-Duplex Control */
1517 value
= ((u32
) hw
->lcol
& MAC_HALF_DUPLX_CTRL_LCOL_MASK
) |
1518 (((u32
) hw
->max_retry
& MAC_HALF_DUPLX_CTRL_RETRY_MASK
)
1519 << MAC_HALF_DUPLX_CTRL_RETRY_SHIFT
) |
1520 MAC_HALF_DUPLX_CTRL_EXC_DEF_EN
|
1521 (0xa << MAC_HALF_DUPLX_CTRL_ABEBT_SHIFT
) |
1522 (((u32
) hw
->jam_ipg
& MAC_HALF_DUPLX_CTRL_JAMIPG_MASK
)
1523 << MAC_HALF_DUPLX_CTRL_JAMIPG_SHIFT
);
1524 iowrite32(value
, hw
->hw_addr
+ REG_MAC_HALF_DUPLX_CTRL
);
1526 /* set Interrupt Moderator Timer */
1527 iowrite16(adapter
->imt
, hw
->hw_addr
+ REG_IRQ_MODU_TIMER_INIT
);
1528 iowrite32(MASTER_CTRL_ITIMER_EN
, hw
->hw_addr
+ REG_MASTER_CTRL
);
1530 /* set Interrupt Clear Timer */
1531 iowrite16(adapter
->ict
, hw
->hw_addr
+ REG_CMBDISDMA_TIMER
);
1533 /* set max frame size hw will accept */
1534 iowrite32(hw
->max_frame_size
, hw
->hw_addr
+ REG_MTU
);
1536 /* jumbo size & rrd retirement timer */
1537 value
= (((u32
) hw
->rx_jumbo_th
& RXQ_JMBOSZ_TH_MASK
)
1538 << RXQ_JMBOSZ_TH_SHIFT
) |
1539 (((u32
) hw
->rx_jumbo_lkah
& RXQ_JMBO_LKAH_MASK
)
1540 << RXQ_JMBO_LKAH_SHIFT
) |
1541 (((u32
) hw
->rrd_ret_timer
& RXQ_RRD_TIMER_MASK
)
1542 << RXQ_RRD_TIMER_SHIFT
);
1543 iowrite32(value
, hw
->hw_addr
+ REG_RXQ_JMBOSZ_RRDTIM
);
1546 switch (hw
->dev_rev
) {
1551 set_flow_ctrl_old(adapter
);
1554 set_flow_ctrl_new(hw
);
1559 value
= (((u32
) hw
->tpd_burst
& TXQ_CTRL_TPD_BURST_NUM_MASK
)
1560 << TXQ_CTRL_TPD_BURST_NUM_SHIFT
) |
1561 (((u32
) hw
->txf_burst
& TXQ_CTRL_TXF_BURST_NUM_MASK
)
1562 << TXQ_CTRL_TXF_BURST_NUM_SHIFT
) |
1563 (((u32
) hw
->tpd_fetch_th
& TXQ_CTRL_TPD_FETCH_TH_MASK
)
1564 << TXQ_CTRL_TPD_FETCH_TH_SHIFT
) | TXQ_CTRL_ENH_MODE
|
1566 iowrite32(value
, hw
->hw_addr
+ REG_TXQ_CTRL
);
1568 /* min tpd fetch gap & tx jumbo packet size threshold for taskoffload */
1569 value
= (((u32
) hw
->tx_jumbo_task_th
& TX_JUMBO_TASK_TH_MASK
)
1570 << TX_JUMBO_TASK_TH_SHIFT
) |
1571 (((u32
) hw
->tpd_fetch_gap
& TX_TPD_MIN_IPG_MASK
)
1572 << TX_TPD_MIN_IPG_SHIFT
);
1573 iowrite32(value
, hw
->hw_addr
+ REG_TX_JUMBO_TASK_TH_TPD_IPG
);
1576 value
= (((u32
) hw
->rfd_burst
& RXQ_CTRL_RFD_BURST_NUM_MASK
)
1577 << RXQ_CTRL_RFD_BURST_NUM_SHIFT
) |
1578 (((u32
) hw
->rrd_burst
& RXQ_CTRL_RRD_BURST_THRESH_MASK
)
1579 << RXQ_CTRL_RRD_BURST_THRESH_SHIFT
) |
1580 (((u32
) hw
->rfd_fetch_gap
& RXQ_CTRL_RFD_PREF_MIN_IPG_MASK
)
1581 << RXQ_CTRL_RFD_PREF_MIN_IPG_SHIFT
) | RXQ_CTRL_CUT_THRU_EN
|
1583 iowrite32(value
, hw
->hw_addr
+ REG_RXQ_CTRL
);
1585 /* config DMA Engine */
1586 value
= ((((u32
) hw
->dmar_block
) & DMA_CTRL_DMAR_BURST_LEN_MASK
)
1587 << DMA_CTRL_DMAR_BURST_LEN_SHIFT
) |
1588 ((((u32
) hw
->dmaw_block
) & DMA_CTRL_DMAW_BURST_LEN_MASK
)
1589 << DMA_CTRL_DMAW_BURST_LEN_SHIFT
) | DMA_CTRL_DMAR_EN
|
1591 value
|= (u32
) hw
->dma_ord
;
1592 if (atl1_rcb_128
== hw
->rcb_value
)
1593 value
|= DMA_CTRL_RCB_VALUE
;
1594 iowrite32(value
, hw
->hw_addr
+ REG_DMA_CTRL
);
1596 /* config CMB / SMB */
1597 value
= (hw
->cmb_tpd
> adapter
->tpd_ring
.count
) ?
1598 hw
->cmb_tpd
: adapter
->tpd_ring
.count
;
1600 value
|= hw
->cmb_rrd
;
1601 iowrite32(value
, hw
->hw_addr
+ REG_CMB_WRITE_TH
);
1602 value
= hw
->cmb_rx_timer
| ((u32
) hw
->cmb_tx_timer
<< 16);
1603 iowrite32(value
, hw
->hw_addr
+ REG_CMB_WRITE_TIMER
);
1604 iowrite32(hw
->smb_timer
, hw
->hw_addr
+ REG_SMB_TIMER
);
1606 /* --- enable CMB / SMB */
1607 value
= CSMB_CTRL_CMB_EN
| CSMB_CTRL_SMB_EN
;
1608 iowrite32(value
, hw
->hw_addr
+ REG_CSMB_CTRL
);
1610 value
= ioread32(adapter
->hw
.hw_addr
+ REG_ISR
);
1611 if (unlikely((value
& ISR_PHY_LINKDOWN
) != 0))
1612 value
= 1; /* config failed */
1616 /* clear all interrupt status */
1617 iowrite32(0x3fffffff, adapter
->hw
.hw_addr
+ REG_ISR
);
1618 iowrite32(0, adapter
->hw
.hw_addr
+ REG_ISR
);
1623 * atl1_pcie_patch - Patch for PCIE module
1625 static void atl1_pcie_patch(struct atl1_adapter
*adapter
)
1629 /* much vendor magic here */
1631 iowrite32(value
, adapter
->hw
.hw_addr
+ 0x12FC);
1632 /* pcie flow control mode change */
1633 value
= ioread32(adapter
->hw
.hw_addr
+ 0x1008);
1635 iowrite32(value
, adapter
->hw
.hw_addr
+ 0x1008);
1639 * When ACPI resume on some VIA MotherBoard, the Interrupt Disable bit/0x400
1640 * on PCI Command register is disable.
1641 * The function enable this bit.
1642 * Brackett, 2006/03/15
1644 static void atl1_via_workaround(struct atl1_adapter
*adapter
)
1646 unsigned long value
;
1648 value
= ioread16(adapter
->hw
.hw_addr
+ PCI_COMMAND
);
1649 if (value
& PCI_COMMAND_INTX_DISABLE
)
1650 value
&= ~PCI_COMMAND_INTX_DISABLE
;
1651 iowrite32(value
, adapter
->hw
.hw_addr
+ PCI_COMMAND
);
1654 static void atl1_inc_smb(struct atl1_adapter
*adapter
)
1656 struct net_device
*netdev
= adapter
->netdev
;
1657 struct stats_msg_block
*smb
= adapter
->smb
.smb
;
1659 u64 new_rx_errors
= smb
->rx_frag
+
1666 u64 new_tx_errors
= smb
->tx_late_col
+
1671 /* Fill out the OS statistics structure */
1672 adapter
->soft_stats
.rx_packets
+= smb
->rx_ok
+ new_rx_errors
;
1673 adapter
->soft_stats
.tx_packets
+= smb
->tx_ok
+ new_tx_errors
;
1674 adapter
->soft_stats
.rx_bytes
+= smb
->rx_byte_cnt
;
1675 adapter
->soft_stats
.tx_bytes
+= smb
->tx_byte_cnt
;
1676 adapter
->soft_stats
.multicast
+= smb
->rx_mcast
;
1677 adapter
->soft_stats
.collisions
+= smb
->tx_1_col
+
1683 adapter
->soft_stats
.rx_errors
+= new_rx_errors
;
1684 adapter
->soft_stats
.rx_fifo_errors
+= smb
->rx_rxf_ov
;
1685 adapter
->soft_stats
.rx_length_errors
+= smb
->rx_len_err
;
1686 adapter
->soft_stats
.rx_crc_errors
+= smb
->rx_fcs_err
;
1687 adapter
->soft_stats
.rx_frame_errors
+= smb
->rx_align_err
;
1689 adapter
->soft_stats
.rx_pause
+= smb
->rx_pause
;
1690 adapter
->soft_stats
.rx_rrd_ov
+= smb
->rx_rrd_ov
;
1691 adapter
->soft_stats
.rx_trunc
+= smb
->rx_sz_ov
;
1694 adapter
->soft_stats
.tx_errors
+= new_tx_errors
;
1695 adapter
->soft_stats
.tx_fifo_errors
+= smb
->tx_underrun
;
1696 adapter
->soft_stats
.tx_aborted_errors
+= smb
->tx_abort_col
;
1697 adapter
->soft_stats
.tx_window_errors
+= smb
->tx_late_col
;
1699 adapter
->soft_stats
.excecol
+= smb
->tx_abort_col
;
1700 adapter
->soft_stats
.deffer
+= smb
->tx_defer
;
1701 adapter
->soft_stats
.scc
+= smb
->tx_1_col
;
1702 adapter
->soft_stats
.mcc
+= smb
->tx_2_col
;
1703 adapter
->soft_stats
.latecol
+= smb
->tx_late_col
;
1704 adapter
->soft_stats
.tx_underrun
+= smb
->tx_underrun
;
1705 adapter
->soft_stats
.tx_trunc
+= smb
->tx_trunc
;
1706 adapter
->soft_stats
.tx_pause
+= smb
->tx_pause
;
1708 netdev
->stats
.rx_bytes
= adapter
->soft_stats
.rx_bytes
;
1709 netdev
->stats
.tx_bytes
= adapter
->soft_stats
.tx_bytes
;
1710 netdev
->stats
.multicast
= adapter
->soft_stats
.multicast
;
1711 netdev
->stats
.collisions
= adapter
->soft_stats
.collisions
;
1712 netdev
->stats
.rx_errors
= adapter
->soft_stats
.rx_errors
;
1713 netdev
->stats
.rx_length_errors
=
1714 adapter
->soft_stats
.rx_length_errors
;
1715 netdev
->stats
.rx_crc_errors
= adapter
->soft_stats
.rx_crc_errors
;
1716 netdev
->stats
.rx_frame_errors
=
1717 adapter
->soft_stats
.rx_frame_errors
;
1718 netdev
->stats
.rx_fifo_errors
= adapter
->soft_stats
.rx_fifo_errors
;
1719 netdev
->stats
.rx_dropped
= adapter
->soft_stats
.rx_rrd_ov
;
1720 netdev
->stats
.tx_errors
= adapter
->soft_stats
.tx_errors
;
1721 netdev
->stats
.tx_fifo_errors
= adapter
->soft_stats
.tx_fifo_errors
;
1722 netdev
->stats
.tx_aborted_errors
=
1723 adapter
->soft_stats
.tx_aborted_errors
;
1724 netdev
->stats
.tx_window_errors
=
1725 adapter
->soft_stats
.tx_window_errors
;
1726 netdev
->stats
.tx_carrier_errors
=
1727 adapter
->soft_stats
.tx_carrier_errors
;
1729 netdev
->stats
.rx_packets
= adapter
->soft_stats
.rx_packets
;
1730 netdev
->stats
.tx_packets
= adapter
->soft_stats
.tx_packets
;
1733 static void atl1_update_mailbox(struct atl1_adapter
*adapter
)
1735 unsigned long flags
;
1736 u32 tpd_next_to_use
;
1737 u32 rfd_next_to_use
;
1738 u32 rrd_next_to_clean
;
1741 spin_lock_irqsave(&adapter
->mb_lock
, flags
);
1743 tpd_next_to_use
= atomic_read(&adapter
->tpd_ring
.next_to_use
);
1744 rfd_next_to_use
= atomic_read(&adapter
->rfd_ring
.next_to_use
);
1745 rrd_next_to_clean
= atomic_read(&adapter
->rrd_ring
.next_to_clean
);
1747 value
= ((rfd_next_to_use
& MB_RFD_PROD_INDX_MASK
) <<
1748 MB_RFD_PROD_INDX_SHIFT
) |
1749 ((rrd_next_to_clean
& MB_RRD_CONS_INDX_MASK
) <<
1750 MB_RRD_CONS_INDX_SHIFT
) |
1751 ((tpd_next_to_use
& MB_TPD_PROD_INDX_MASK
) <<
1752 MB_TPD_PROD_INDX_SHIFT
);
1753 iowrite32(value
, adapter
->hw
.hw_addr
+ REG_MAILBOX
);
1755 spin_unlock_irqrestore(&adapter
->mb_lock
, flags
);
1758 static void atl1_clean_alloc_flag(struct atl1_adapter
*adapter
,
1759 struct rx_return_desc
*rrd
, u16 offset
)
1761 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1763 while (rfd_ring
->next_to_clean
!= (rrd
->buf_indx
+ offset
)) {
1764 rfd_ring
->buffer_info
[rfd_ring
->next_to_clean
].alloced
= 0;
1765 if (++rfd_ring
->next_to_clean
== rfd_ring
->count
) {
1766 rfd_ring
->next_to_clean
= 0;
1771 static void atl1_update_rfd_index(struct atl1_adapter
*adapter
,
1772 struct rx_return_desc
*rrd
)
1776 num_buf
= (rrd
->xsz
.xsum_sz
.pkt_size
+ adapter
->rx_buffer_len
- 1) /
1777 adapter
->rx_buffer_len
;
1778 if (rrd
->num_buf
== num_buf
)
1779 /* clean alloc flag for bad rrd */
1780 atl1_clean_alloc_flag(adapter
, rrd
, num_buf
);
1783 static void atl1_rx_checksum(struct atl1_adapter
*adapter
,
1784 struct rx_return_desc
*rrd
, struct sk_buff
*skb
)
1786 struct pci_dev
*pdev
= adapter
->pdev
;
1789 * The L1 hardware contains a bug that erroneously sets the
1790 * PACKET_FLAG_ERR and ERR_FLAG_L4_CHKSUM bits whenever a
1791 * fragmented IP packet is received, even though the packet
1792 * is perfectly valid and its checksum is correct. There's
1793 * no way to distinguish between one of these good packets
1794 * and a packet that actually contains a TCP/UDP checksum
1795 * error, so all we can do is allow it to be handed up to
1796 * the higher layers and let it be sorted out there.
1799 skb_checksum_none_assert(skb
);
1801 if (unlikely(rrd
->pkt_flg
& PACKET_FLAG_ERR
)) {
1802 if (rrd
->err_flg
& (ERR_FLAG_CRC
| ERR_FLAG_TRUNC
|
1803 ERR_FLAG_CODE
| ERR_FLAG_OV
)) {
1804 adapter
->hw_csum_err
++;
1805 if (netif_msg_rx_err(adapter
))
1806 dev_printk(KERN_DEBUG
, &pdev
->dev
,
1807 "rx checksum error\n");
1813 if (!(rrd
->pkt_flg
& PACKET_FLAG_IPV4
))
1814 /* checksum is invalid, but it's not an IPv4 pkt, so ok */
1818 if (likely(!(rrd
->err_flg
&
1819 (ERR_FLAG_IP_CHKSUM
| ERR_FLAG_L4_CHKSUM
)))) {
1820 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1821 adapter
->hw_csum_good
++;
1827 * atl1_alloc_rx_buffers - Replace used receive buffers
1828 * @adapter: address of board private structure
1830 static u16
atl1_alloc_rx_buffers(struct atl1_adapter
*adapter
)
1832 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1833 struct pci_dev
*pdev
= adapter
->pdev
;
1835 unsigned long offset
;
1836 struct atl1_buffer
*buffer_info
, *next_info
;
1837 struct sk_buff
*skb
;
1839 u16 rfd_next_to_use
, next_next
;
1840 struct rx_free_desc
*rfd_desc
;
1842 next_next
= rfd_next_to_use
= atomic_read(&rfd_ring
->next_to_use
);
1843 if (++next_next
== rfd_ring
->count
)
1845 buffer_info
= &rfd_ring
->buffer_info
[rfd_next_to_use
];
1846 next_info
= &rfd_ring
->buffer_info
[next_next
];
1848 while (!buffer_info
->alloced
&& !next_info
->alloced
) {
1849 if (buffer_info
->skb
) {
1850 buffer_info
->alloced
= 1;
1854 rfd_desc
= ATL1_RFD_DESC(rfd_ring
, rfd_next_to_use
);
1856 skb
= netdev_alloc_skb_ip_align(adapter
->netdev
,
1857 adapter
->rx_buffer_len
);
1858 if (unlikely(!skb
)) {
1859 /* Better luck next round */
1860 adapter
->soft_stats
.rx_dropped
++;
1864 buffer_info
->alloced
= 1;
1865 buffer_info
->skb
= skb
;
1866 buffer_info
->length
= (u16
) adapter
->rx_buffer_len
;
1867 page
= virt_to_page(skb
->data
);
1868 offset
= offset_in_page(skb
->data
);
1869 buffer_info
->dma
= pci_map_page(pdev
, page
, offset
,
1870 adapter
->rx_buffer_len
,
1871 PCI_DMA_FROMDEVICE
);
1872 rfd_desc
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
1873 rfd_desc
->buf_len
= cpu_to_le16(adapter
->rx_buffer_len
);
1874 rfd_desc
->coalese
= 0;
1877 rfd_next_to_use
= next_next
;
1878 if (unlikely(++next_next
== rfd_ring
->count
))
1881 buffer_info
= &rfd_ring
->buffer_info
[rfd_next_to_use
];
1882 next_info
= &rfd_ring
->buffer_info
[next_next
];
1888 * Force memory writes to complete before letting h/w
1889 * know there are new descriptors to fetch. (Only
1890 * applicable for weak-ordered memory model archs,
1894 atomic_set(&rfd_ring
->next_to_use
, (int)rfd_next_to_use
);
1899 static int atl1_intr_rx(struct atl1_adapter
*adapter
, int budget
)
1903 u16 rrd_next_to_clean
;
1905 struct atl1_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1906 struct atl1_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1907 struct atl1_buffer
*buffer_info
;
1908 struct rx_return_desc
*rrd
;
1909 struct sk_buff
*skb
;
1913 rrd_next_to_clean
= atomic_read(&rrd_ring
->next_to_clean
);
1915 while (count
< budget
) {
1916 rrd
= ATL1_RRD_DESC(rrd_ring
, rrd_next_to_clean
);
1918 if (likely(rrd
->xsz
.valid
)) { /* packet valid */
1920 /* check rrd status */
1921 if (likely(rrd
->num_buf
== 1))
1923 else if (netif_msg_rx_err(adapter
)) {
1924 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1925 "unexpected RRD buffer count\n");
1926 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1927 "rx_buf_len = %d\n",
1928 adapter
->rx_buffer_len
);
1929 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1930 "RRD num_buf = %d\n",
1932 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1933 "RRD pkt_len = %d\n",
1934 rrd
->xsz
.xsum_sz
.pkt_size
);
1935 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1936 "RRD pkt_flg = 0x%08X\n",
1938 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1939 "RRD err_flg = 0x%08X\n",
1941 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1942 "RRD vlan_tag = 0x%08X\n",
1946 /* rrd seems to be bad */
1947 if (unlikely(i
-- > 0)) {
1948 /* rrd may not be DMAed completely */
1953 if (netif_msg_rx_err(adapter
))
1954 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
1956 /* see if update RFD index */
1957 if (rrd
->num_buf
> 1)
1958 atl1_update_rfd_index(adapter
, rrd
);
1962 if (++rrd_next_to_clean
== rrd_ring
->count
)
1963 rrd_next_to_clean
= 0;
1966 } else { /* current rrd still not be updated */
1971 /* clean alloc flag for bad rrd */
1972 atl1_clean_alloc_flag(adapter
, rrd
, 0);
1974 buffer_info
= &rfd_ring
->buffer_info
[rrd
->buf_indx
];
1975 if (++rfd_ring
->next_to_clean
== rfd_ring
->count
)
1976 rfd_ring
->next_to_clean
= 0;
1978 /* update rrd next to clean */
1979 if (++rrd_next_to_clean
== rrd_ring
->count
)
1980 rrd_next_to_clean
= 0;
1983 if (unlikely(rrd
->pkt_flg
& PACKET_FLAG_ERR
)) {
1984 if (!(rrd
->err_flg
&
1985 (ERR_FLAG_IP_CHKSUM
| ERR_FLAG_L4_CHKSUM
1987 /* packet error, don't need upstream */
1988 buffer_info
->alloced
= 0;
1995 pci_unmap_page(adapter
->pdev
, buffer_info
->dma
,
1996 buffer_info
->length
, PCI_DMA_FROMDEVICE
);
1997 buffer_info
->dma
= 0;
1998 skb
= buffer_info
->skb
;
1999 length
= le16_to_cpu(rrd
->xsz
.xsum_sz
.pkt_size
);
2001 skb_put(skb
, length
- ETH_FCS_LEN
);
2003 /* Receive Checksum Offload */
2004 atl1_rx_checksum(adapter
, rrd
, skb
);
2005 skb
->protocol
= eth_type_trans(skb
, adapter
->netdev
);
2007 if (rrd
->pkt_flg
& PACKET_FLAG_VLAN_INS
) {
2008 u16 vlan_tag
= (rrd
->vlan_tag
>> 4) |
2009 ((rrd
->vlan_tag
& 7) << 13) |
2010 ((rrd
->vlan_tag
& 8) << 9);
2012 __vlan_hwaccel_put_tag(skb
, htons(ETH_P_8021Q
), vlan_tag
);
2014 netif_receive_skb(skb
);
2016 /* let protocol layer free skb */
2017 buffer_info
->skb
= NULL
;
2018 buffer_info
->alloced
= 0;
2022 atomic_set(&rrd_ring
->next_to_clean
, rrd_next_to_clean
);
2024 atl1_alloc_rx_buffers(adapter
);
2026 /* update mailbox ? */
2028 u32 tpd_next_to_use
;
2029 u32 rfd_next_to_use
;
2031 spin_lock(&adapter
->mb_lock
);
2033 tpd_next_to_use
= atomic_read(&adapter
->tpd_ring
.next_to_use
);
2035 atomic_read(&adapter
->rfd_ring
.next_to_use
);
2037 atomic_read(&adapter
->rrd_ring
.next_to_clean
);
2038 value
= ((rfd_next_to_use
& MB_RFD_PROD_INDX_MASK
) <<
2039 MB_RFD_PROD_INDX_SHIFT
) |
2040 ((rrd_next_to_clean
& MB_RRD_CONS_INDX_MASK
) <<
2041 MB_RRD_CONS_INDX_SHIFT
) |
2042 ((tpd_next_to_use
& MB_TPD_PROD_INDX_MASK
) <<
2043 MB_TPD_PROD_INDX_SHIFT
);
2044 iowrite32(value
, adapter
->hw
.hw_addr
+ REG_MAILBOX
);
2045 spin_unlock(&adapter
->mb_lock
);
2051 static int atl1_intr_tx(struct atl1_adapter
*adapter
)
2053 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
2054 struct atl1_buffer
*buffer_info
;
2055 u16 sw_tpd_next_to_clean
;
2056 u16 cmb_tpd_next_to_clean
;
2059 sw_tpd_next_to_clean
= atomic_read(&tpd_ring
->next_to_clean
);
2060 cmb_tpd_next_to_clean
= le16_to_cpu(adapter
->cmb
.cmb
->tpd_cons_idx
);
2062 while (cmb_tpd_next_to_clean
!= sw_tpd_next_to_clean
) {
2063 buffer_info
= &tpd_ring
->buffer_info
[sw_tpd_next_to_clean
];
2064 if (buffer_info
->dma
) {
2065 pci_unmap_page(adapter
->pdev
, buffer_info
->dma
,
2066 buffer_info
->length
, PCI_DMA_TODEVICE
);
2067 buffer_info
->dma
= 0;
2070 if (buffer_info
->skb
) {
2071 dev_consume_skb_irq(buffer_info
->skb
);
2072 buffer_info
->skb
= NULL
;
2075 if (++sw_tpd_next_to_clean
== tpd_ring
->count
)
2076 sw_tpd_next_to_clean
= 0;
2080 atomic_set(&tpd_ring
->next_to_clean
, sw_tpd_next_to_clean
);
2082 if (netif_queue_stopped(adapter
->netdev
) &&
2083 netif_carrier_ok(adapter
->netdev
))
2084 netif_wake_queue(adapter
->netdev
);
2089 static u16
atl1_tpd_avail(struct atl1_tpd_ring
*tpd_ring
)
2091 u16 next_to_clean
= atomic_read(&tpd_ring
->next_to_clean
);
2092 u16 next_to_use
= atomic_read(&tpd_ring
->next_to_use
);
2093 return (next_to_clean
> next_to_use
) ?
2094 next_to_clean
- next_to_use
- 1 :
2095 tpd_ring
->count
+ next_to_clean
- next_to_use
- 1;
2098 static int atl1_tso(struct atl1_adapter
*adapter
, struct sk_buff
*skb
,
2099 struct tx_packet_desc
*ptpd
)
2104 if (skb_shinfo(skb
)->gso_size
) {
2107 err
= skb_cow_head(skb
, 0);
2111 if (skb
->protocol
== htons(ETH_P_IP
)) {
2112 struct iphdr
*iph
= ip_hdr(skb
);
2114 real_len
= (((unsigned char *)iph
- skb
->data
) +
2115 ntohs(iph
->tot_len
));
2116 if (real_len
< skb
->len
)
2117 pskb_trim(skb
, real_len
);
2118 hdr_len
= (skb_transport_offset(skb
) + tcp_hdrlen(skb
));
2119 if (skb
->len
== hdr_len
) {
2121 tcp_hdr(skb
)->check
=
2122 ~csum_tcpudp_magic(iph
->saddr
,
2123 iph
->daddr
, tcp_hdrlen(skb
),
2125 ptpd
->word3
|= (iph
->ihl
& TPD_IPHL_MASK
) <<
2127 ptpd
->word3
|= ((tcp_hdrlen(skb
) >> 2) &
2128 TPD_TCPHDRLEN_MASK
) <<
2129 TPD_TCPHDRLEN_SHIFT
;
2130 ptpd
->word3
|= 1 << TPD_IP_CSUM_SHIFT
;
2131 ptpd
->word3
|= 1 << TPD_TCP_CSUM_SHIFT
;
2136 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(iph
->saddr
,
2137 iph
->daddr
, 0, IPPROTO_TCP
, 0);
2138 ip_off
= (unsigned char *)iph
-
2139 (unsigned char *) skb_network_header(skb
);
2140 if (ip_off
== 8) /* 802.3-SNAP frame */
2141 ptpd
->word3
|= 1 << TPD_ETHTYPE_SHIFT
;
2142 else if (ip_off
!= 0)
2145 ptpd
->word3
|= (iph
->ihl
& TPD_IPHL_MASK
) <<
2147 ptpd
->word3
|= ((tcp_hdrlen(skb
) >> 2) &
2148 TPD_TCPHDRLEN_MASK
) << TPD_TCPHDRLEN_SHIFT
;
2149 ptpd
->word3
|= (skb_shinfo(skb
)->gso_size
&
2150 TPD_MSS_MASK
) << TPD_MSS_SHIFT
;
2151 ptpd
->word3
|= 1 << TPD_SEGMENT_EN_SHIFT
;
2158 static int atl1_tx_csum(struct atl1_adapter
*adapter
, struct sk_buff
*skb
,
2159 struct tx_packet_desc
*ptpd
)
2163 if (likely(skb
->ip_summed
== CHECKSUM_PARTIAL
)) {
2164 css
= skb_checksum_start_offset(skb
);
2165 cso
= css
+ (u8
) skb
->csum_offset
;
2166 if (unlikely(css
& 0x1)) {
2167 /* L1 hardware requires an even number here */
2168 if (netif_msg_tx_err(adapter
))
2169 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
2170 "payload offset not an even number\n");
2173 ptpd
->word3
|= (css
& TPD_PLOADOFFSET_MASK
) <<
2174 TPD_PLOADOFFSET_SHIFT
;
2175 ptpd
->word3
|= (cso
& TPD_CCSUMOFFSET_MASK
) <<
2176 TPD_CCSUMOFFSET_SHIFT
;
2177 ptpd
->word3
|= 1 << TPD_CUST_CSUM_EN_SHIFT
;
2183 static void atl1_tx_map(struct atl1_adapter
*adapter
, struct sk_buff
*skb
,
2184 struct tx_packet_desc
*ptpd
)
2186 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
2187 struct atl1_buffer
*buffer_info
;
2188 u16 buf_len
= skb
->len
;
2190 unsigned long offset
;
2191 unsigned int nr_frags
;
2198 buf_len
-= skb
->data_len
;
2199 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2200 next_to_use
= atomic_read(&tpd_ring
->next_to_use
);
2201 buffer_info
= &tpd_ring
->buffer_info
[next_to_use
];
2202 BUG_ON(buffer_info
->skb
);
2203 /* put skb in last TPD */
2204 buffer_info
->skb
= NULL
;
2206 retval
= (ptpd
->word3
>> TPD_SEGMENT_EN_SHIFT
) & TPD_SEGMENT_EN_MASK
;
2209 hdr_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
2210 buffer_info
->length
= hdr_len
;
2211 page
= virt_to_page(skb
->data
);
2212 offset
= offset_in_page(skb
->data
);
2213 buffer_info
->dma
= pci_map_page(adapter
->pdev
, page
,
2217 if (++next_to_use
== tpd_ring
->count
)
2220 if (buf_len
> hdr_len
) {
2223 data_len
= buf_len
- hdr_len
;
2224 nseg
= (data_len
+ ATL1_MAX_TX_BUF_LEN
- 1) /
2225 ATL1_MAX_TX_BUF_LEN
;
2226 for (i
= 0; i
< nseg
; i
++) {
2228 &tpd_ring
->buffer_info
[next_to_use
];
2229 buffer_info
->skb
= NULL
;
2230 buffer_info
->length
=
2231 (ATL1_MAX_TX_BUF_LEN
>=
2232 data_len
) ? ATL1_MAX_TX_BUF_LEN
: data_len
;
2233 data_len
-= buffer_info
->length
;
2234 page
= virt_to_page(skb
->data
+
2235 (hdr_len
+ i
* ATL1_MAX_TX_BUF_LEN
));
2236 offset
= offset_in_page(skb
->data
+
2237 (hdr_len
+ i
* ATL1_MAX_TX_BUF_LEN
));
2238 buffer_info
->dma
= pci_map_page(adapter
->pdev
,
2239 page
, offset
, buffer_info
->length
,
2241 if (++next_to_use
== tpd_ring
->count
)
2247 buffer_info
->length
= buf_len
;
2248 page
= virt_to_page(skb
->data
);
2249 offset
= offset_in_page(skb
->data
);
2250 buffer_info
->dma
= pci_map_page(adapter
->pdev
, page
,
2251 offset
, buf_len
, PCI_DMA_TODEVICE
);
2252 if (++next_to_use
== tpd_ring
->count
)
2256 for (f
= 0; f
< nr_frags
; f
++) {
2257 const skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[f
];
2260 buf_len
= skb_frag_size(frag
);
2262 nseg
= (buf_len
+ ATL1_MAX_TX_BUF_LEN
- 1) /
2263 ATL1_MAX_TX_BUF_LEN
;
2264 for (i
= 0; i
< nseg
; i
++) {
2265 buffer_info
= &tpd_ring
->buffer_info
[next_to_use
];
2266 BUG_ON(buffer_info
->skb
);
2268 buffer_info
->skb
= NULL
;
2269 buffer_info
->length
= (buf_len
> ATL1_MAX_TX_BUF_LEN
) ?
2270 ATL1_MAX_TX_BUF_LEN
: buf_len
;
2271 buf_len
-= buffer_info
->length
;
2272 buffer_info
->dma
= skb_frag_dma_map(&adapter
->pdev
->dev
,
2273 frag
, i
* ATL1_MAX_TX_BUF_LEN
,
2274 buffer_info
->length
, DMA_TO_DEVICE
);
2276 if (++next_to_use
== tpd_ring
->count
)
2281 /* last tpd's buffer-info */
2282 buffer_info
->skb
= skb
;
2285 static void atl1_tx_queue(struct atl1_adapter
*adapter
, u16 count
,
2286 struct tx_packet_desc
*ptpd
)
2288 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
2289 struct atl1_buffer
*buffer_info
;
2290 struct tx_packet_desc
*tpd
;
2293 u16 next_to_use
= (u16
) atomic_read(&tpd_ring
->next_to_use
);
2295 for (j
= 0; j
< count
; j
++) {
2296 buffer_info
= &tpd_ring
->buffer_info
[next_to_use
];
2297 tpd
= ATL1_TPD_DESC(&adapter
->tpd_ring
, next_to_use
);
2299 memcpy(tpd
, ptpd
, sizeof(struct tx_packet_desc
));
2300 tpd
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
2301 tpd
->word2
&= ~(TPD_BUFLEN_MASK
<< TPD_BUFLEN_SHIFT
);
2302 tpd
->word2
|= (cpu_to_le16(buffer_info
->length
) &
2303 TPD_BUFLEN_MASK
) << TPD_BUFLEN_SHIFT
;
2306 * if this is the first packet in a TSO chain, set
2307 * TPD_HDRFLAG, otherwise, clear it.
2309 val
= (tpd
->word3
>> TPD_SEGMENT_EN_SHIFT
) &
2310 TPD_SEGMENT_EN_MASK
;
2313 tpd
->word3
|= 1 << TPD_HDRFLAG_SHIFT
;
2315 tpd
->word3
&= ~(1 << TPD_HDRFLAG_SHIFT
);
2318 if (j
== (count
- 1))
2319 tpd
->word3
|= 1 << TPD_EOP_SHIFT
;
2321 if (++next_to_use
== tpd_ring
->count
)
2325 * Force memory writes to complete before letting h/w
2326 * know there are new descriptors to fetch. (Only
2327 * applicable for weak-ordered memory model archs,
2332 atomic_set(&tpd_ring
->next_to_use
, next_to_use
);
2335 static netdev_tx_t
atl1_xmit_frame(struct sk_buff
*skb
,
2336 struct net_device
*netdev
)
2338 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2339 struct atl1_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
;
2344 struct tx_packet_desc
*ptpd
;
2346 unsigned int nr_frags
= 0;
2347 unsigned int mss
= 0;
2349 unsigned int proto_hdr_len
;
2351 len
= skb_headlen(skb
);
2353 if (unlikely(skb
->len
<= 0)) {
2354 dev_kfree_skb_any(skb
);
2355 return NETDEV_TX_OK
;
2358 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2359 for (f
= 0; f
< nr_frags
; f
++) {
2360 unsigned int f_size
= skb_frag_size(&skb_shinfo(skb
)->frags
[f
]);
2361 count
+= (f_size
+ ATL1_MAX_TX_BUF_LEN
- 1) /
2362 ATL1_MAX_TX_BUF_LEN
;
2365 mss
= skb_shinfo(skb
)->gso_size
;
2367 if (skb
->protocol
== htons(ETH_P_IP
)) {
2368 proto_hdr_len
= (skb_transport_offset(skb
) +
2370 if (unlikely(proto_hdr_len
> len
)) {
2371 dev_kfree_skb_any(skb
);
2372 return NETDEV_TX_OK
;
2374 /* need additional TPD ? */
2375 if (proto_hdr_len
!= len
)
2376 count
+= (len
- proto_hdr_len
+
2377 ATL1_MAX_TX_BUF_LEN
- 1) /
2378 ATL1_MAX_TX_BUF_LEN
;
2382 if (atl1_tpd_avail(&adapter
->tpd_ring
) < count
) {
2383 /* not enough descriptors */
2384 netif_stop_queue(netdev
);
2385 if (netif_msg_tx_queued(adapter
))
2386 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
2388 return NETDEV_TX_BUSY
;
2391 ptpd
= ATL1_TPD_DESC(tpd_ring
,
2392 (u16
) atomic_read(&tpd_ring
->next_to_use
));
2393 memset(ptpd
, 0, sizeof(struct tx_packet_desc
));
2395 if (skb_vlan_tag_present(skb
)) {
2396 vlan_tag
= skb_vlan_tag_get(skb
);
2397 vlan_tag
= (vlan_tag
<< 4) | (vlan_tag
>> 13) |
2398 ((vlan_tag
>> 9) & 0x8);
2399 ptpd
->word3
|= 1 << TPD_INS_VL_TAG_SHIFT
;
2400 ptpd
->word2
|= (vlan_tag
& TPD_VLANTAG_MASK
) <<
2404 tso
= atl1_tso(adapter
, skb
, ptpd
);
2406 dev_kfree_skb_any(skb
);
2407 return NETDEV_TX_OK
;
2411 ret_val
= atl1_tx_csum(adapter
, skb
, ptpd
);
2413 dev_kfree_skb_any(skb
);
2414 return NETDEV_TX_OK
;
2418 atl1_tx_map(adapter
, skb
, ptpd
);
2419 atl1_tx_queue(adapter
, count
, ptpd
);
2420 atl1_update_mailbox(adapter
);
2421 return NETDEV_TX_OK
;
2424 static int atl1_rings_clean(struct napi_struct
*napi
, int budget
)
2426 struct atl1_adapter
*adapter
= container_of(napi
, struct atl1_adapter
, napi
);
2427 int work_done
= atl1_intr_rx(adapter
, budget
);
2429 if (atl1_intr_tx(adapter
))
2432 /* Let's come again to process some more packets */
2433 if (work_done
>= budget
)
2436 napi_complete_done(napi
, work_done
);
2437 /* re-enable Interrupt */
2438 if (likely(adapter
->int_enabled
))
2439 atlx_imr_set(adapter
, IMR_NORMAL_MASK
);
2443 static inline int atl1_sched_rings_clean(struct atl1_adapter
* adapter
)
2445 if (!napi_schedule_prep(&adapter
->napi
))
2446 /* It is possible in case even the RX/TX ints are disabled via IMR
2447 * register the ISR bits are set anyway (but do not produce IRQ).
2448 * To handle such situation the napi functions used to check is
2449 * something scheduled or not.
2453 __napi_schedule(&adapter
->napi
);
2456 * Disable RX/TX ints via IMR register if it is
2457 * allowed. NAPI handler must reenable them in same
2460 if (!adapter
->int_enabled
)
2463 atlx_imr_set(adapter
, IMR_NORXTX_MASK
);
2468 * atl1_intr - Interrupt Handler
2469 * @irq: interrupt number
2470 * @data: pointer to a network interface device structure
2472 static irqreturn_t
atl1_intr(int irq
, void *data
)
2474 struct atl1_adapter
*adapter
= netdev_priv(data
);
2477 status
= adapter
->cmb
.cmb
->int_stats
;
2481 /* clear CMB interrupt status at once,
2482 * but leave rx/tx interrupt status in case it should be dropped
2483 * only if rx/tx processing queued. In other case interrupt
2486 adapter
->cmb
.cmb
->int_stats
= status
& (ISR_CMB_TX
| ISR_CMB_RX
);
2488 if (status
& ISR_GPHY
) /* clear phy status */
2489 atlx_clear_phy_int(adapter
);
2491 /* clear ISR status, and Enable CMB DMA/Disable Interrupt */
2492 iowrite32(status
| ISR_DIS_INT
, adapter
->hw
.hw_addr
+ REG_ISR
);
2494 /* check if SMB intr */
2495 if (status
& ISR_SMB
)
2496 atl1_inc_smb(adapter
);
2498 /* check if PCIE PHY Link down */
2499 if (status
& ISR_PHY_LINKDOWN
) {
2500 if (netif_msg_intr(adapter
))
2501 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
2502 "pcie phy link down %x\n", status
);
2503 if (netif_running(adapter
->netdev
)) { /* reset MAC */
2504 atlx_irq_disable(adapter
);
2505 schedule_work(&adapter
->reset_dev_task
);
2510 /* check if DMA read/write error ? */
2511 if (status
& (ISR_DMAR_TO_RST
| ISR_DMAW_TO_RST
)) {
2512 if (netif_msg_intr(adapter
))
2513 dev_printk(KERN_DEBUG
, &adapter
->pdev
->dev
,
2514 "pcie DMA r/w error (status = 0x%x)\n",
2516 atlx_irq_disable(adapter
);
2517 schedule_work(&adapter
->reset_dev_task
);
2522 if (status
& ISR_GPHY
) {
2523 adapter
->soft_stats
.tx_carrier_errors
++;
2524 atl1_check_for_link(adapter
);
2527 /* transmit or receive event */
2528 if (status
& (ISR_CMB_TX
| ISR_CMB_RX
) &&
2529 atl1_sched_rings_clean(adapter
))
2530 adapter
->cmb
.cmb
->int_stats
= adapter
->cmb
.cmb
->int_stats
&
2531 ~(ISR_CMB_TX
| ISR_CMB_RX
);
2534 if (unlikely(status
& (ISR_RXF_OV
| ISR_RFD_UNRUN
|
2535 ISR_RRD_OV
| ISR_HOST_RFD_UNRUN
|
2536 ISR_HOST_RRD_OV
))) {
2537 if (netif_msg_intr(adapter
))
2538 dev_printk(KERN_DEBUG
,
2539 &adapter
->pdev
->dev
,
2540 "rx exception, ISR = 0x%x\n",
2542 atl1_sched_rings_clean(adapter
);
2545 /* re-enable Interrupt */
2546 iowrite32(ISR_DIS_SMB
| ISR_DIS_DMA
, adapter
->hw
.hw_addr
+ REG_ISR
);
2552 * atl1_phy_config - Timer Call-back
2553 * @data: pointer to netdev cast into an unsigned long
2555 static void atl1_phy_config(struct timer_list
*t
)
2557 struct atl1_adapter
*adapter
= from_timer(adapter
, t
,
2559 struct atl1_hw
*hw
= &adapter
->hw
;
2560 unsigned long flags
;
2562 spin_lock_irqsave(&adapter
->lock
, flags
);
2563 adapter
->phy_timer_pending
= false;
2564 atl1_write_phy_reg(hw
, MII_ADVERTISE
, hw
->mii_autoneg_adv_reg
);
2565 atl1_write_phy_reg(hw
, MII_ATLX_CR
, hw
->mii_1000t_ctrl_reg
);
2566 atl1_write_phy_reg(hw
, MII_BMCR
, MII_CR_RESET
| MII_CR_AUTO_NEG_EN
);
2567 spin_unlock_irqrestore(&adapter
->lock
, flags
);
2571 * Orphaned vendor comment left intact here:
2573 * If TPD Buffer size equal to 0, PCIE DMAR_TO_INT
2574 * will assert. We do soft reset <0x1400=1> according
2575 * with the SPEC. BUT, it seemes that PCIE or DMA
2576 * state-machine will not be reset. DMAR_TO_INT will
2577 * assert again and again.
2581 static int atl1_reset(struct atl1_adapter
*adapter
)
2584 ret
= atl1_reset_hw(&adapter
->hw
);
2587 return atl1_init_hw(&adapter
->hw
);
2590 static s32
atl1_up(struct atl1_adapter
*adapter
)
2592 struct net_device
*netdev
= adapter
->netdev
;
2596 /* hardware has been reset, we need to reload some things */
2597 atlx_set_multi(netdev
);
2598 atl1_init_ring_ptrs(adapter
);
2599 atlx_restore_vlan(adapter
);
2600 err
= atl1_alloc_rx_buffers(adapter
);
2602 /* no RX BUFFER allocated */
2605 if (unlikely(atl1_configure(adapter
))) {
2610 err
= pci_enable_msi(adapter
->pdev
);
2612 if (netif_msg_ifup(adapter
))
2613 dev_info(&adapter
->pdev
->dev
,
2614 "Unable to enable MSI: %d\n", err
);
2615 irq_flags
|= IRQF_SHARED
;
2618 err
= request_irq(adapter
->pdev
->irq
, atl1_intr
, irq_flags
,
2619 netdev
->name
, netdev
);
2623 napi_enable(&adapter
->napi
);
2624 atlx_irq_enable(adapter
);
2625 atl1_check_link(adapter
);
2626 netif_start_queue(netdev
);
2630 pci_disable_msi(adapter
->pdev
);
2631 /* free rx_buffers */
2632 atl1_clean_rx_ring(adapter
);
2636 static void atl1_down(struct atl1_adapter
*adapter
)
2638 struct net_device
*netdev
= adapter
->netdev
;
2640 napi_disable(&adapter
->napi
);
2641 netif_stop_queue(netdev
);
2642 del_timer_sync(&adapter
->phy_config_timer
);
2643 adapter
->phy_timer_pending
= false;
2645 atlx_irq_disable(adapter
);
2646 free_irq(adapter
->pdev
->irq
, netdev
);
2647 pci_disable_msi(adapter
->pdev
);
2648 atl1_reset_hw(&adapter
->hw
);
2649 adapter
->cmb
.cmb
->int_stats
= 0;
2651 adapter
->link_speed
= SPEED_0
;
2652 adapter
->link_duplex
= -1;
2653 netif_carrier_off(netdev
);
2655 atl1_clean_tx_ring(adapter
);
2656 atl1_clean_rx_ring(adapter
);
2659 static void atl1_reset_dev_task(struct work_struct
*work
)
2661 struct atl1_adapter
*adapter
=
2662 container_of(work
, struct atl1_adapter
, reset_dev_task
);
2663 struct net_device
*netdev
= adapter
->netdev
;
2665 netif_device_detach(netdev
);
2668 netif_device_attach(netdev
);
2672 * atl1_change_mtu - Change the Maximum Transfer Unit
2673 * @netdev: network interface device structure
2674 * @new_mtu: new value for maximum frame size
2676 * Returns 0 on success, negative on failure
2678 static int atl1_change_mtu(struct net_device
*netdev
, int new_mtu
)
2680 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2681 int max_frame
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
2683 adapter
->hw
.max_frame_size
= max_frame
;
2684 adapter
->hw
.tx_jumbo_task_th
= (max_frame
+ 7) >> 3;
2685 adapter
->rx_buffer_len
= (max_frame
+ 7) & ~7;
2686 adapter
->hw
.rx_jumbo_th
= adapter
->rx_buffer_len
/ 8;
2688 netdev
->mtu
= new_mtu
;
2689 if (netif_running(netdev
)) {
2698 * atl1_open - Called when a network interface is made active
2699 * @netdev: network interface device structure
2701 * Returns 0 on success, negative value on failure
2703 * The open entry point is called when a network interface is made
2704 * active by the system (IFF_UP). At this point all resources needed
2705 * for transmit and receive operations are allocated, the interrupt
2706 * handler is registered with the OS, the watchdog timer is started,
2707 * and the stack is notified that the interface is ready.
2709 static int atl1_open(struct net_device
*netdev
)
2711 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2714 netif_carrier_off(netdev
);
2716 /* allocate transmit descriptors */
2717 err
= atl1_setup_ring_resources(adapter
);
2721 err
= atl1_up(adapter
);
2728 atl1_reset(adapter
);
2733 * atl1_close - Disables a network interface
2734 * @netdev: network interface device structure
2736 * Returns 0, this is not allowed to fail
2738 * The close entry point is called when an interface is de-activated
2739 * by the OS. The hardware is still under the drivers control, but
2740 * needs to be disabled. A global MAC reset is issued to stop the
2741 * hardware, and all transmit and receive resources are freed.
2743 static int atl1_close(struct net_device
*netdev
)
2745 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2747 atl1_free_ring_resources(adapter
);
2751 #ifdef CONFIG_PM_SLEEP
2752 static int atl1_suspend(struct device
*dev
)
2754 struct net_device
*netdev
= dev_get_drvdata(dev
);
2755 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2756 struct atl1_hw
*hw
= &adapter
->hw
;
2758 u32 wufc
= adapter
->wol
;
2763 netif_device_detach(netdev
);
2764 if (netif_running(netdev
))
2767 atl1_read_phy_reg(hw
, MII_BMSR
, (u16
*) & ctrl
);
2768 atl1_read_phy_reg(hw
, MII_BMSR
, (u16
*) & ctrl
);
2769 val
= ctrl
& BMSR_LSTATUS
;
2771 wufc
&= ~ATLX_WUFC_LNKC
;
2776 val
= atl1_get_speed_and_duplex(hw
, &speed
, &duplex
);
2778 if (netif_msg_ifdown(adapter
))
2779 dev_printk(KERN_DEBUG
, dev
,
2780 "error getting speed/duplex\n");
2786 /* enable magic packet WOL */
2787 if (wufc
& ATLX_WUFC_MAG
)
2788 ctrl
|= (WOL_MAGIC_EN
| WOL_MAGIC_PME_EN
);
2789 iowrite32(ctrl
, hw
->hw_addr
+ REG_WOL_CTRL
);
2790 ioread32(hw
->hw_addr
+ REG_WOL_CTRL
);
2792 /* configure the mac */
2793 ctrl
= MAC_CTRL_RX_EN
;
2794 ctrl
|= ((u32
)((speed
== SPEED_1000
) ? MAC_CTRL_SPEED_1000
:
2795 MAC_CTRL_SPEED_10_100
) << MAC_CTRL_SPEED_SHIFT
);
2796 if (duplex
== FULL_DUPLEX
)
2797 ctrl
|= MAC_CTRL_DUPLX
;
2798 ctrl
|= (((u32
)adapter
->hw
.preamble_len
&
2799 MAC_CTRL_PRMLEN_MASK
) << MAC_CTRL_PRMLEN_SHIFT
);
2800 __atlx_vlan_mode(netdev
->features
, &ctrl
);
2801 if (wufc
& ATLX_WUFC_MAG
)
2802 ctrl
|= MAC_CTRL_BC_EN
;
2803 iowrite32(ctrl
, hw
->hw_addr
+ REG_MAC_CTRL
);
2804 ioread32(hw
->hw_addr
+ REG_MAC_CTRL
);
2807 ctrl
= ioread32(hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2808 ctrl
|= PCIE_PHYMISC_FORCE_RCV_DET
;
2809 iowrite32(ctrl
, hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2810 ioread32(hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2812 ctrl
|= (WOL_LINK_CHG_EN
| WOL_LINK_CHG_PME_EN
);
2813 iowrite32(ctrl
, hw
->hw_addr
+ REG_WOL_CTRL
);
2814 ioread32(hw
->hw_addr
+ REG_WOL_CTRL
);
2815 iowrite32(0, hw
->hw_addr
+ REG_MAC_CTRL
);
2816 ioread32(hw
->hw_addr
+ REG_MAC_CTRL
);
2817 hw
->phy_configured
= false;
2823 iowrite32(0, hw
->hw_addr
+ REG_WOL_CTRL
);
2824 ioread32(hw
->hw_addr
+ REG_WOL_CTRL
);
2825 ctrl
= ioread32(hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2826 ctrl
|= PCIE_PHYMISC_FORCE_RCV_DET
;
2827 iowrite32(ctrl
, hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2828 ioread32(hw
->hw_addr
+ REG_PCIE_PHYMISC
);
2829 hw
->phy_configured
= false;
2834 static int atl1_resume(struct device
*dev
)
2836 struct net_device
*netdev
= dev_get_drvdata(dev
);
2837 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2839 iowrite32(0, adapter
->hw
.hw_addr
+ REG_WOL_CTRL
);
2841 atl1_reset_hw(&adapter
->hw
);
2843 if (netif_running(netdev
)) {
2844 adapter
->cmb
.cmb
->int_stats
= 0;
2847 netif_device_attach(netdev
);
2853 static SIMPLE_DEV_PM_OPS(atl1_pm_ops
, atl1_suspend
, atl1_resume
);
2855 static void atl1_shutdown(struct pci_dev
*pdev
)
2857 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2858 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
2860 #ifdef CONFIG_PM_SLEEP
2861 atl1_suspend(&pdev
->dev
);
2863 pci_wake_from_d3(pdev
, adapter
->wol
);
2864 pci_set_power_state(pdev
, PCI_D3hot
);
2867 #ifdef CONFIG_NET_POLL_CONTROLLER
2868 static void atl1_poll_controller(struct net_device
*netdev
)
2870 disable_irq(netdev
->irq
);
2871 atl1_intr(netdev
->irq
, netdev
);
2872 enable_irq(netdev
->irq
);
2876 static const struct net_device_ops atl1_netdev_ops
= {
2877 .ndo_open
= atl1_open
,
2878 .ndo_stop
= atl1_close
,
2879 .ndo_start_xmit
= atl1_xmit_frame
,
2880 .ndo_set_rx_mode
= atlx_set_multi
,
2881 .ndo_validate_addr
= eth_validate_addr
,
2882 .ndo_set_mac_address
= atl1_set_mac
,
2883 .ndo_change_mtu
= atl1_change_mtu
,
2884 .ndo_fix_features
= atlx_fix_features
,
2885 .ndo_set_features
= atlx_set_features
,
2886 .ndo_do_ioctl
= atlx_ioctl
,
2887 .ndo_tx_timeout
= atlx_tx_timeout
,
2888 #ifdef CONFIG_NET_POLL_CONTROLLER
2889 .ndo_poll_controller
= atl1_poll_controller
,
2894 * atl1_probe - Device Initialization Routine
2895 * @pdev: PCI device information struct
2896 * @ent: entry in atl1_pci_tbl
2898 * Returns 0 on success, negative on failure
2900 * atl1_probe initializes an adapter identified by a pci_dev structure.
2901 * The OS initialization, configuring of the adapter private structure,
2902 * and a hardware reset occur.
2904 static int atl1_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
2906 struct net_device
*netdev
;
2907 struct atl1_adapter
*adapter
;
2908 static int cards_found
= 0;
2911 err
= pci_enable_device(pdev
);
2916 * The atl1 chip can DMA to 64-bit addresses, but it uses a single
2917 * shared register for the high 32 bits, so only a single, aligned,
2918 * 4 GB physical address range can be used at a time.
2920 * Supporting 64-bit DMA on this hardware is more trouble than it's
2921 * worth. It is far easier to limit to 32-bit DMA than update
2922 * various kernel subsystems to support the mechanics required by a
2923 * fixed-high-32-bit system.
2925 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
2927 dev_err(&pdev
->dev
, "no usable DMA configuration\n");
2931 * Mark all PCI regions associated with PCI device
2932 * pdev as being reserved by owner atl1_driver_name
2934 err
= pci_request_regions(pdev
, ATLX_DRIVER_NAME
);
2936 goto err_request_regions
;
2939 * Enables bus-mastering on the device and calls
2940 * pcibios_set_master to do the needed arch specific settings
2942 pci_set_master(pdev
);
2944 netdev
= alloc_etherdev(sizeof(struct atl1_adapter
));
2947 goto err_alloc_etherdev
;
2949 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
2951 pci_set_drvdata(pdev
, netdev
);
2952 adapter
= netdev_priv(netdev
);
2953 adapter
->netdev
= netdev
;
2954 adapter
->pdev
= pdev
;
2955 adapter
->hw
.back
= adapter
;
2956 adapter
->msg_enable
= netif_msg_init(debug
, atl1_default_msg
);
2958 adapter
->hw
.hw_addr
= pci_iomap(pdev
, 0, 0);
2959 if (!adapter
->hw
.hw_addr
) {
2963 /* get device revision number */
2964 adapter
->hw
.dev_rev
= ioread16(adapter
->hw
.hw_addr
+
2965 (REG_MASTER_CTRL
+ 2));
2967 /* set default ring resource counts */
2968 adapter
->rfd_ring
.count
= adapter
->rrd_ring
.count
= ATL1_DEFAULT_RFD
;
2969 adapter
->tpd_ring
.count
= ATL1_DEFAULT_TPD
;
2971 adapter
->mii
.dev
= netdev
;
2972 adapter
->mii
.mdio_read
= mdio_read
;
2973 adapter
->mii
.mdio_write
= mdio_write
;
2974 adapter
->mii
.phy_id_mask
= 0x1f;
2975 adapter
->mii
.reg_num_mask
= 0x1f;
2977 netdev
->netdev_ops
= &atl1_netdev_ops
;
2978 netdev
->watchdog_timeo
= 5 * HZ
;
2979 netif_napi_add(netdev
, &adapter
->napi
, atl1_rings_clean
, 64);
2981 netdev
->ethtool_ops
= &atl1_ethtool_ops
;
2982 adapter
->bd_number
= cards_found
;
2984 /* setup the private structure */
2985 err
= atl1_sw_init(adapter
);
2989 netdev
->features
= NETIF_F_HW_CSUM
;
2990 netdev
->features
|= NETIF_F_SG
;
2991 netdev
->features
|= (NETIF_F_HW_VLAN_CTAG_TX
| NETIF_F_HW_VLAN_CTAG_RX
);
2993 netdev
->hw_features
= NETIF_F_HW_CSUM
| NETIF_F_SG
| NETIF_F_TSO
|
2994 NETIF_F_HW_VLAN_CTAG_RX
;
2996 /* is this valid? see atl1_setup_mac_ctrl() */
2997 netdev
->features
|= NETIF_F_RXCSUM
;
2999 /* MTU range: 42 - 10218 */
3000 netdev
->min_mtu
= ETH_ZLEN
- (ETH_HLEN
+ VLAN_HLEN
);
3001 netdev
->max_mtu
= MAX_JUMBO_FRAME_SIZE
-
3002 (ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
);
3005 * patch for some L1 of old version,
3006 * the final version of L1 may not need these
3009 /* atl1_pcie_patch(adapter); */
3011 /* really reset GPHY core */
3012 iowrite16(0, adapter
->hw
.hw_addr
+ REG_PHY_ENABLE
);
3015 * reset the controller to
3016 * put the device in a known good starting state
3018 if (atl1_reset_hw(&adapter
->hw
)) {
3023 /* copy the MAC address out of the EEPROM */
3024 if (atl1_read_mac_addr(&adapter
->hw
)) {
3025 /* mark random mac */
3026 netdev
->addr_assign_type
= NET_ADDR_RANDOM
;
3028 memcpy(netdev
->dev_addr
, adapter
->hw
.mac_addr
, netdev
->addr_len
);
3030 if (!is_valid_ether_addr(netdev
->dev_addr
)) {
3035 atl1_check_options(adapter
);
3037 /* pre-init the MAC, and setup link */
3038 err
= atl1_init_hw(&adapter
->hw
);
3044 atl1_pcie_patch(adapter
);
3045 /* assume we have no link for now */
3046 netif_carrier_off(netdev
);
3048 timer_setup(&adapter
->phy_config_timer
, atl1_phy_config
, 0);
3049 adapter
->phy_timer_pending
= false;
3051 INIT_WORK(&adapter
->reset_dev_task
, atl1_reset_dev_task
);
3053 INIT_WORK(&adapter
->link_chg_task
, atlx_link_chg_task
);
3055 err
= register_netdev(netdev
);
3060 atl1_via_workaround(adapter
);
3064 pci_iounmap(pdev
, adapter
->hw
.hw_addr
);
3066 free_netdev(netdev
);
3068 pci_release_regions(pdev
);
3070 err_request_regions
:
3071 pci_disable_device(pdev
);
3076 * atl1_remove - Device Removal Routine
3077 * @pdev: PCI device information struct
3079 * atl1_remove is called by the PCI subsystem to alert the driver
3080 * that it should release a PCI device. The could be caused by a
3081 * Hot-Plug event, or because the driver is going to be removed from
3084 static void atl1_remove(struct pci_dev
*pdev
)
3086 struct net_device
*netdev
= pci_get_drvdata(pdev
);
3087 struct atl1_adapter
*adapter
;
3088 /* Device not available. Return. */
3092 adapter
= netdev_priv(netdev
);
3095 * Some atl1 boards lack persistent storage for their MAC, and get it
3096 * from the BIOS during POST. If we've been messing with the MAC
3097 * address, we need to save the permanent one.
3099 if (!ether_addr_equal_unaligned(adapter
->hw
.mac_addr
,
3100 adapter
->hw
.perm_mac_addr
)) {
3101 memcpy(adapter
->hw
.mac_addr
, adapter
->hw
.perm_mac_addr
,
3103 atl1_set_mac_addr(&adapter
->hw
);
3106 iowrite16(0, adapter
->hw
.hw_addr
+ REG_PHY_ENABLE
);
3107 unregister_netdev(netdev
);
3108 pci_iounmap(pdev
, adapter
->hw
.hw_addr
);
3109 pci_release_regions(pdev
);
3110 free_netdev(netdev
);
3111 pci_disable_device(pdev
);
3114 static struct pci_driver atl1_driver
= {
3115 .name
= ATLX_DRIVER_NAME
,
3116 .id_table
= atl1_pci_tbl
,
3117 .probe
= atl1_probe
,
3118 .remove
= atl1_remove
,
3119 .shutdown
= atl1_shutdown
,
3120 .driver
.pm
= &atl1_pm_ops
,
3124 char stat_string
[ETH_GSTRING_LEN
];
3129 #define ATL1_STAT(m) \
3130 sizeof(((struct atl1_adapter *)0)->m), offsetof(struct atl1_adapter, m)
3132 static struct atl1_stats atl1_gstrings_stats
[] = {
3133 {"rx_packets", ATL1_STAT(soft_stats
.rx_packets
)},
3134 {"tx_packets", ATL1_STAT(soft_stats
.tx_packets
)},
3135 {"rx_bytes", ATL1_STAT(soft_stats
.rx_bytes
)},
3136 {"tx_bytes", ATL1_STAT(soft_stats
.tx_bytes
)},
3137 {"rx_errors", ATL1_STAT(soft_stats
.rx_errors
)},
3138 {"tx_errors", ATL1_STAT(soft_stats
.tx_errors
)},
3139 {"multicast", ATL1_STAT(soft_stats
.multicast
)},
3140 {"collisions", ATL1_STAT(soft_stats
.collisions
)},
3141 {"rx_length_errors", ATL1_STAT(soft_stats
.rx_length_errors
)},
3142 {"rx_over_errors", ATL1_STAT(soft_stats
.rx_missed_errors
)},
3143 {"rx_crc_errors", ATL1_STAT(soft_stats
.rx_crc_errors
)},
3144 {"rx_frame_errors", ATL1_STAT(soft_stats
.rx_frame_errors
)},
3145 {"rx_fifo_errors", ATL1_STAT(soft_stats
.rx_fifo_errors
)},
3146 {"rx_missed_errors", ATL1_STAT(soft_stats
.rx_missed_errors
)},
3147 {"tx_aborted_errors", ATL1_STAT(soft_stats
.tx_aborted_errors
)},
3148 {"tx_carrier_errors", ATL1_STAT(soft_stats
.tx_carrier_errors
)},
3149 {"tx_fifo_errors", ATL1_STAT(soft_stats
.tx_fifo_errors
)},
3150 {"tx_window_errors", ATL1_STAT(soft_stats
.tx_window_errors
)},
3151 {"tx_abort_exce_coll", ATL1_STAT(soft_stats
.excecol
)},
3152 {"tx_abort_late_coll", ATL1_STAT(soft_stats
.latecol
)},
3153 {"tx_deferred_ok", ATL1_STAT(soft_stats
.deffer
)},
3154 {"tx_single_coll_ok", ATL1_STAT(soft_stats
.scc
)},
3155 {"tx_multi_coll_ok", ATL1_STAT(soft_stats
.mcc
)},
3156 {"tx_underrun", ATL1_STAT(soft_stats
.tx_underrun
)},
3157 {"tx_trunc", ATL1_STAT(soft_stats
.tx_trunc
)},
3158 {"tx_pause", ATL1_STAT(soft_stats
.tx_pause
)},
3159 {"rx_pause", ATL1_STAT(soft_stats
.rx_pause
)},
3160 {"rx_rrd_ov", ATL1_STAT(soft_stats
.rx_rrd_ov
)},
3161 {"rx_trunc", ATL1_STAT(soft_stats
.rx_trunc
)}
3164 static void atl1_get_ethtool_stats(struct net_device
*netdev
,
3165 struct ethtool_stats
*stats
, u64
*data
)
3167 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3171 for (i
= 0; i
< ARRAY_SIZE(atl1_gstrings_stats
); i
++) {
3172 p
= (char *)adapter
+atl1_gstrings_stats
[i
].stat_offset
;
3173 data
[i
] = (atl1_gstrings_stats
[i
].sizeof_stat
==
3174 sizeof(u64
)) ? *(u64
*)p
: *(u32
*)p
;
3179 static int atl1_get_sset_count(struct net_device
*netdev
, int sset
)
3183 return ARRAY_SIZE(atl1_gstrings_stats
);
3189 static int atl1_get_link_ksettings(struct net_device
*netdev
,
3190 struct ethtool_link_ksettings
*cmd
)
3192 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3193 struct atl1_hw
*hw
= &adapter
->hw
;
3194 u32 supported
, advertising
;
3196 supported
= (SUPPORTED_10baseT_Half
|
3197 SUPPORTED_10baseT_Full
|
3198 SUPPORTED_100baseT_Half
|
3199 SUPPORTED_100baseT_Full
|
3200 SUPPORTED_1000baseT_Full
|
3201 SUPPORTED_Autoneg
| SUPPORTED_TP
);
3202 advertising
= ADVERTISED_TP
;
3203 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3204 hw
->media_type
== MEDIA_TYPE_1000M_FULL
) {
3205 advertising
|= ADVERTISED_Autoneg
;
3206 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
) {
3207 advertising
|= ADVERTISED_Autoneg
;
3209 (ADVERTISED_10baseT_Half
|
3210 ADVERTISED_10baseT_Full
|
3211 ADVERTISED_100baseT_Half
|
3212 ADVERTISED_100baseT_Full
|
3213 ADVERTISED_1000baseT_Full
);
3215 advertising
|= (ADVERTISED_1000baseT_Full
);
3217 cmd
->base
.port
= PORT_TP
;
3218 cmd
->base
.phy_address
= 0;
3220 if (netif_carrier_ok(adapter
->netdev
)) {
3221 u16 link_speed
, link_duplex
;
3222 atl1_get_speed_and_duplex(hw
, &link_speed
, &link_duplex
);
3223 cmd
->base
.speed
= link_speed
;
3224 if (link_duplex
== FULL_DUPLEX
)
3225 cmd
->base
.duplex
= DUPLEX_FULL
;
3227 cmd
->base
.duplex
= DUPLEX_HALF
;
3229 cmd
->base
.speed
= SPEED_UNKNOWN
;
3230 cmd
->base
.duplex
= DUPLEX_UNKNOWN
;
3232 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3233 hw
->media_type
== MEDIA_TYPE_1000M_FULL
)
3234 cmd
->base
.autoneg
= AUTONEG_ENABLE
;
3236 cmd
->base
.autoneg
= AUTONEG_DISABLE
;
3238 ethtool_convert_legacy_u32_to_link_mode(cmd
->link_modes
.supported
,
3240 ethtool_convert_legacy_u32_to_link_mode(cmd
->link_modes
.advertising
,
3246 static int atl1_set_link_ksettings(struct net_device
*netdev
,
3247 const struct ethtool_link_ksettings
*cmd
)
3249 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3250 struct atl1_hw
*hw
= &adapter
->hw
;
3253 u16 old_media_type
= hw
->media_type
;
3255 if (netif_running(adapter
->netdev
)) {
3256 if (netif_msg_link(adapter
))
3257 dev_dbg(&adapter
->pdev
->dev
,
3258 "ethtool shutting down adapter\n");
3262 if (cmd
->base
.autoneg
== AUTONEG_ENABLE
)
3263 hw
->media_type
= MEDIA_TYPE_AUTO_SENSOR
;
3265 u32 speed
= cmd
->base
.speed
;
3266 if (speed
== SPEED_1000
) {
3267 if (cmd
->base
.duplex
!= DUPLEX_FULL
) {
3268 if (netif_msg_link(adapter
))
3269 dev_warn(&adapter
->pdev
->dev
,
3270 "1000M half is invalid\n");
3274 hw
->media_type
= MEDIA_TYPE_1000M_FULL
;
3275 } else if (speed
== SPEED_100
) {
3276 if (cmd
->base
.duplex
== DUPLEX_FULL
)
3277 hw
->media_type
= MEDIA_TYPE_100M_FULL
;
3279 hw
->media_type
= MEDIA_TYPE_100M_HALF
;
3281 if (cmd
->base
.duplex
== DUPLEX_FULL
)
3282 hw
->media_type
= MEDIA_TYPE_10M_FULL
;
3284 hw
->media_type
= MEDIA_TYPE_10M_HALF
;
3288 if (atl1_phy_setup_autoneg_adv(hw
)) {
3290 if (netif_msg_link(adapter
))
3291 dev_warn(&adapter
->pdev
->dev
,
3292 "invalid ethtool speed/duplex setting\n");
3295 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3296 hw
->media_type
== MEDIA_TYPE_1000M_FULL
)
3297 phy_data
= MII_CR_RESET
| MII_CR_AUTO_NEG_EN
;
3299 switch (hw
->media_type
) {
3300 case MEDIA_TYPE_100M_FULL
:
3302 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_100
|
3305 case MEDIA_TYPE_100M_HALF
:
3306 phy_data
= MII_CR_SPEED_100
| MII_CR_RESET
;
3308 case MEDIA_TYPE_10M_FULL
:
3310 MII_CR_FULL_DUPLEX
| MII_CR_SPEED_10
| MII_CR_RESET
;
3313 /* MEDIA_TYPE_10M_HALF: */
3314 phy_data
= MII_CR_SPEED_10
| MII_CR_RESET
;
3318 atl1_write_phy_reg(hw
, MII_BMCR
, phy_data
);
3321 hw
->media_type
= old_media_type
;
3323 if (netif_running(adapter
->netdev
)) {
3324 if (netif_msg_link(adapter
))
3325 dev_dbg(&adapter
->pdev
->dev
,
3326 "ethtool starting adapter\n");
3328 } else if (!ret_val
) {
3329 if (netif_msg_link(adapter
))
3330 dev_dbg(&adapter
->pdev
->dev
,
3331 "ethtool resetting adapter\n");
3332 atl1_reset(adapter
);
3337 static void atl1_get_drvinfo(struct net_device
*netdev
,
3338 struct ethtool_drvinfo
*drvinfo
)
3340 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3342 strlcpy(drvinfo
->driver
, ATLX_DRIVER_NAME
, sizeof(drvinfo
->driver
));
3343 strlcpy(drvinfo
->bus_info
, pci_name(adapter
->pdev
),
3344 sizeof(drvinfo
->bus_info
));
3347 static void atl1_get_wol(struct net_device
*netdev
,
3348 struct ethtool_wolinfo
*wol
)
3350 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3352 wol
->supported
= WAKE_MAGIC
;
3354 if (adapter
->wol
& ATLX_WUFC_MAG
)
3355 wol
->wolopts
|= WAKE_MAGIC
;
3358 static int atl1_set_wol(struct net_device
*netdev
,
3359 struct ethtool_wolinfo
*wol
)
3361 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3363 if (wol
->wolopts
& (WAKE_PHY
| WAKE_UCAST
| WAKE_MCAST
| WAKE_BCAST
|
3364 WAKE_ARP
| WAKE_MAGICSECURE
))
3367 if (wol
->wolopts
& WAKE_MAGIC
)
3368 adapter
->wol
|= ATLX_WUFC_MAG
;
3370 device_set_wakeup_enable(&adapter
->pdev
->dev
, adapter
->wol
);
3375 static u32
atl1_get_msglevel(struct net_device
*netdev
)
3377 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3378 return adapter
->msg_enable
;
3381 static void atl1_set_msglevel(struct net_device
*netdev
, u32 value
)
3383 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3384 adapter
->msg_enable
= value
;
3387 static int atl1_get_regs_len(struct net_device
*netdev
)
3389 return ATL1_REG_COUNT
* sizeof(u32
);
3392 static void atl1_get_regs(struct net_device
*netdev
, struct ethtool_regs
*regs
,
3395 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3396 struct atl1_hw
*hw
= &adapter
->hw
;
3400 for (i
= 0; i
< ATL1_REG_COUNT
; i
++) {
3402 * This switch statement avoids reserved regions
3403 * of register space.
3428 /* reserved region; don't read it */
3432 /* unreserved region */
3433 regbuf
[i
] = ioread32(hw
->hw_addr
+ (i
* sizeof(u32
)));
3438 static void atl1_get_ringparam(struct net_device
*netdev
,
3439 struct ethtool_ringparam
*ring
)
3441 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3442 struct atl1_tpd_ring
*txdr
= &adapter
->tpd_ring
;
3443 struct atl1_rfd_ring
*rxdr
= &adapter
->rfd_ring
;
3445 ring
->rx_max_pending
= ATL1_MAX_RFD
;
3446 ring
->tx_max_pending
= ATL1_MAX_TPD
;
3447 ring
->rx_pending
= rxdr
->count
;
3448 ring
->tx_pending
= txdr
->count
;
3451 static int atl1_set_ringparam(struct net_device
*netdev
,
3452 struct ethtool_ringparam
*ring
)
3454 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3455 struct atl1_tpd_ring
*tpdr
= &adapter
->tpd_ring
;
3456 struct atl1_rrd_ring
*rrdr
= &adapter
->rrd_ring
;
3457 struct atl1_rfd_ring
*rfdr
= &adapter
->rfd_ring
;
3459 struct atl1_tpd_ring tpd_old
, tpd_new
;
3460 struct atl1_rfd_ring rfd_old
, rfd_new
;
3461 struct atl1_rrd_ring rrd_old
, rrd_new
;
3462 struct atl1_ring_header rhdr_old
, rhdr_new
;
3463 struct atl1_smb smb
;
3464 struct atl1_cmb cmb
;
3467 tpd_old
= adapter
->tpd_ring
;
3468 rfd_old
= adapter
->rfd_ring
;
3469 rrd_old
= adapter
->rrd_ring
;
3470 rhdr_old
= adapter
->ring_header
;
3472 if (netif_running(adapter
->netdev
))
3475 rfdr
->count
= (u16
) max(ring
->rx_pending
, (u32
) ATL1_MIN_RFD
);
3476 rfdr
->count
= rfdr
->count
> ATL1_MAX_RFD
? ATL1_MAX_RFD
:
3478 rfdr
->count
= (rfdr
->count
+ 3) & ~3;
3479 rrdr
->count
= rfdr
->count
;
3481 tpdr
->count
= (u16
) max(ring
->tx_pending
, (u32
) ATL1_MIN_TPD
);
3482 tpdr
->count
= tpdr
->count
> ATL1_MAX_TPD
? ATL1_MAX_TPD
:
3484 tpdr
->count
= (tpdr
->count
+ 3) & ~3;
3486 if (netif_running(adapter
->netdev
)) {
3487 /* try to get new resources before deleting old */
3488 err
= atl1_setup_ring_resources(adapter
);
3490 goto err_setup_ring
;
3493 * save the new, restore the old in order to free it,
3494 * then restore the new back again
3497 rfd_new
= adapter
->rfd_ring
;
3498 rrd_new
= adapter
->rrd_ring
;
3499 tpd_new
= adapter
->tpd_ring
;
3500 rhdr_new
= adapter
->ring_header
;
3501 adapter
->rfd_ring
= rfd_old
;
3502 adapter
->rrd_ring
= rrd_old
;
3503 adapter
->tpd_ring
= tpd_old
;
3504 adapter
->ring_header
= rhdr_old
;
3506 * Save SMB and CMB, since atl1_free_ring_resources
3511 atl1_free_ring_resources(adapter
);
3512 adapter
->rfd_ring
= rfd_new
;
3513 adapter
->rrd_ring
= rrd_new
;
3514 adapter
->tpd_ring
= tpd_new
;
3515 adapter
->ring_header
= rhdr_new
;
3519 err
= atl1_up(adapter
);
3526 adapter
->rfd_ring
= rfd_old
;
3527 adapter
->rrd_ring
= rrd_old
;
3528 adapter
->tpd_ring
= tpd_old
;
3529 adapter
->ring_header
= rhdr_old
;
3534 static void atl1_get_pauseparam(struct net_device
*netdev
,
3535 struct ethtool_pauseparam
*epause
)
3537 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3538 struct atl1_hw
*hw
= &adapter
->hw
;
3540 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3541 hw
->media_type
== MEDIA_TYPE_1000M_FULL
) {
3542 epause
->autoneg
= AUTONEG_ENABLE
;
3544 epause
->autoneg
= AUTONEG_DISABLE
;
3546 epause
->rx_pause
= 1;
3547 epause
->tx_pause
= 1;
3550 static int atl1_set_pauseparam(struct net_device
*netdev
,
3551 struct ethtool_pauseparam
*epause
)
3553 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3554 struct atl1_hw
*hw
= &adapter
->hw
;
3556 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3557 hw
->media_type
== MEDIA_TYPE_1000M_FULL
) {
3558 epause
->autoneg
= AUTONEG_ENABLE
;
3560 epause
->autoneg
= AUTONEG_DISABLE
;
3563 epause
->rx_pause
= 1;
3564 epause
->tx_pause
= 1;
3569 static void atl1_get_strings(struct net_device
*netdev
, u32 stringset
,
3575 switch (stringset
) {
3577 for (i
= 0; i
< ARRAY_SIZE(atl1_gstrings_stats
); i
++) {
3578 memcpy(p
, atl1_gstrings_stats
[i
].stat_string
,
3580 p
+= ETH_GSTRING_LEN
;
3586 static int atl1_nway_reset(struct net_device
*netdev
)
3588 struct atl1_adapter
*adapter
= netdev_priv(netdev
);
3589 struct atl1_hw
*hw
= &adapter
->hw
;
3591 if (netif_running(netdev
)) {
3595 if (hw
->media_type
== MEDIA_TYPE_AUTO_SENSOR
||
3596 hw
->media_type
== MEDIA_TYPE_1000M_FULL
) {
3597 phy_data
= MII_CR_RESET
| MII_CR_AUTO_NEG_EN
;
3599 switch (hw
->media_type
) {
3600 case MEDIA_TYPE_100M_FULL
:
3601 phy_data
= MII_CR_FULL_DUPLEX
|
3602 MII_CR_SPEED_100
| MII_CR_RESET
;
3604 case MEDIA_TYPE_100M_HALF
:
3605 phy_data
= MII_CR_SPEED_100
| MII_CR_RESET
;
3607 case MEDIA_TYPE_10M_FULL
:
3608 phy_data
= MII_CR_FULL_DUPLEX
|
3609 MII_CR_SPEED_10
| MII_CR_RESET
;
3612 /* MEDIA_TYPE_10M_HALF */
3613 phy_data
= MII_CR_SPEED_10
| MII_CR_RESET
;
3616 atl1_write_phy_reg(hw
, MII_BMCR
, phy_data
);
3622 static const struct ethtool_ops atl1_ethtool_ops
= {
3623 .get_drvinfo
= atl1_get_drvinfo
,
3624 .get_wol
= atl1_get_wol
,
3625 .set_wol
= atl1_set_wol
,
3626 .get_msglevel
= atl1_get_msglevel
,
3627 .set_msglevel
= atl1_set_msglevel
,
3628 .get_regs_len
= atl1_get_regs_len
,
3629 .get_regs
= atl1_get_regs
,
3630 .get_ringparam
= atl1_get_ringparam
,
3631 .set_ringparam
= atl1_set_ringparam
,
3632 .get_pauseparam
= atl1_get_pauseparam
,
3633 .set_pauseparam
= atl1_set_pauseparam
,
3634 .get_link
= ethtool_op_get_link
,
3635 .get_strings
= atl1_get_strings
,
3636 .nway_reset
= atl1_nway_reset
,
3637 .get_ethtool_stats
= atl1_get_ethtool_stats
,
3638 .get_sset_count
= atl1_get_sset_count
,
3639 .get_link_ksettings
= atl1_get_link_ksettings
,
3640 .set_link_ksettings
= atl1_set_link_ksettings
,
3643 module_pci_driver(atl1_driver
);