2 * Copyright(c) 2008 - 2009 Atheros Corporation. All rights reserved.
4 * Derived from Intel e1000 driver
5 * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59
19 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #define ATL1C_DRV_VERSION "1.0.1.0-NAPI"
25 char atl1c_driver_name
[] = "atl1c";
26 char atl1c_driver_version
[] = ATL1C_DRV_VERSION
;
29 * atl1c_pci_tbl - PCI Device ID Table
31 * Wildcard entries (PCI_ANY_ID) should come last
32 * Last entry must be all 0s
34 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
35 * Class, Class Mask, private data (not used) }
37 static DEFINE_PCI_DEVICE_TABLE(atl1c_pci_tbl
) = {
38 {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC
, PCI_DEVICE_ID_ATTANSIC_L1C
)},
39 {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC
, PCI_DEVICE_ID_ATTANSIC_L2C
)},
40 {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC
, PCI_DEVICE_ID_ATHEROS_L2C_B
)},
41 {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC
, PCI_DEVICE_ID_ATHEROS_L2C_B2
)},
42 {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC
, PCI_DEVICE_ID_ATHEROS_L1D
)},
43 {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC
, PCI_DEVICE_ID_ATHEROS_L1D_2_0
)},
44 /* required last entry */
47 MODULE_DEVICE_TABLE(pci
, atl1c_pci_tbl
);
49 MODULE_AUTHOR("Jie Yang");
50 MODULE_AUTHOR("Qualcomm Atheros Inc., <nic-devel@qualcomm.com>");
51 MODULE_DESCRIPTION("Qualcom Atheros 100/1000M Ethernet Network Driver");
52 MODULE_LICENSE("GPL");
53 MODULE_VERSION(ATL1C_DRV_VERSION
);
55 static int atl1c_stop_mac(struct atl1c_hw
*hw
);
56 static void atl1c_disable_l0s_l1(struct atl1c_hw
*hw
);
57 static void atl1c_set_aspm(struct atl1c_hw
*hw
, u16 link_speed
);
58 static void atl1c_start_mac(struct atl1c_adapter
*adapter
);
59 static void atl1c_clean_rx_irq(struct atl1c_adapter
*adapter
,
60 int *work_done
, int work_to_do
);
61 static int atl1c_up(struct atl1c_adapter
*adapter
);
62 static void atl1c_down(struct atl1c_adapter
*adapter
);
63 static int atl1c_reset_mac(struct atl1c_hw
*hw
);
64 static void atl1c_reset_dma_ring(struct atl1c_adapter
*adapter
);
65 static int atl1c_configure(struct atl1c_adapter
*adapter
);
66 static int atl1c_alloc_rx_buffer(struct atl1c_adapter
*adapter
);
68 static const u16 atl1c_pay_load_size
[] = {
69 128, 256, 512, 1024, 2048, 4096,
73 static const u32 atl1c_default_msg
= NETIF_MSG_DRV
| NETIF_MSG_PROBE
|
74 NETIF_MSG_LINK
| NETIF_MSG_TIMER
| NETIF_MSG_IFDOWN
| NETIF_MSG_IFUP
;
75 static void atl1c_pcie_patch(struct atl1c_hw
*hw
)
79 /* pclk sel could switch to 25M */
80 AT_READ_REG(hw
, REG_MASTER_CTRL
, &mst_data
);
81 mst_data
&= ~MASTER_CTRL_CLK_SEL_DIS
;
82 AT_WRITE_REG(hw
, REG_MASTER_CTRL
, mst_data
);
84 /* WoL/PCIE related settings */
85 if (hw
->nic_type
== athr_l1c
|| hw
->nic_type
== athr_l2c
) {
86 AT_READ_REG(hw
, REG_PCIE_PHYMISC
, &data
);
87 data
|= PCIE_PHYMISC_FORCE_RCV_DET
;
88 AT_WRITE_REG(hw
, REG_PCIE_PHYMISC
, data
);
89 } else { /* new dev set bit5 of MASTER */
90 if (!(mst_data
& MASTER_CTRL_WAKEN_25M
))
91 AT_WRITE_REG(hw
, REG_MASTER_CTRL
,
92 mst_data
| MASTER_CTRL_WAKEN_25M
);
94 /* aspm/PCIE setting only for l2cb 1.0 */
95 if (hw
->nic_type
== athr_l2c_b
&& hw
->revision_id
== L2CB_V10
) {
96 AT_READ_REG(hw
, REG_PCIE_PHYMISC2
, &data
);
97 data
= FIELD_SETX(data
, PCIE_PHYMISC2_CDR_BW
,
98 L2CB1_PCIE_PHYMISC2_CDR_BW
);
99 data
= FIELD_SETX(data
, PCIE_PHYMISC2_L0S_TH
,
100 L2CB1_PCIE_PHYMISC2_L0S_TH
);
101 AT_WRITE_REG(hw
, REG_PCIE_PHYMISC2
, data
);
102 /* extend L1 sync timer */
103 AT_READ_REG(hw
, REG_LINK_CTRL
, &data
);
104 data
|= LINK_CTRL_EXT_SYNC
;
105 AT_WRITE_REG(hw
, REG_LINK_CTRL
, data
);
107 /* l2cb 1.x & l1d 1.x */
108 if (hw
->nic_type
== athr_l2c_b
|| hw
->nic_type
== athr_l1d
) {
109 AT_READ_REG(hw
, REG_PM_CTRL
, &data
);
110 data
|= PM_CTRL_L0S_BUFSRX_EN
;
111 AT_WRITE_REG(hw
, REG_PM_CTRL
, data
);
112 /* clear vendor msg */
113 AT_READ_REG(hw
, REG_DMA_DBG
, &data
);
114 AT_WRITE_REG(hw
, REG_DMA_DBG
, data
& ~DMA_DBG_VENDOR_MSG
);
118 /* FIXME: no need any more ? */
120 * atl1c_init_pcie - init PCIE module
122 static void atl1c_reset_pcie(struct atl1c_hw
*hw
, u32 flag
)
126 struct pci_dev
*pdev
= hw
->adapter
->pdev
;
129 AT_READ_REG(hw
, PCI_COMMAND
, &pci_cmd
);
130 pci_cmd
&= ~PCI_COMMAND_INTX_DISABLE
;
131 pci_cmd
|= (PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
|
133 AT_WRITE_REG(hw
, PCI_COMMAND
, pci_cmd
);
136 * Clear any PowerSaveing Settings
138 pci_enable_wake(pdev
, PCI_D3hot
, 0);
139 pci_enable_wake(pdev
, PCI_D3cold
, 0);
140 /* wol sts read-clear */
141 AT_READ_REG(hw
, REG_WOL_CTRL
, &data
);
142 AT_WRITE_REG(hw
, REG_WOL_CTRL
, 0);
145 * Mask some pcie error bits
147 pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_ERR
);
148 pci_read_config_dword(pdev
, pos
+ PCI_ERR_UNCOR_SEVER
, &data
);
149 data
&= ~(PCI_ERR_UNC_DLP
| PCI_ERR_UNC_FCP
);
150 pci_write_config_dword(pdev
, pos
+ PCI_ERR_UNCOR_SEVER
, data
);
151 /* clear error status */
152 pci_write_config_word(pdev
, pci_pcie_cap(pdev
) + PCI_EXP_DEVSTA
,
153 PCI_EXP_DEVSTA_NFED
|
158 AT_READ_REG(hw
, REG_LTSSM_ID_CTRL
, &data
);
159 data
&= ~LTSSM_ID_EN_WRO
;
160 AT_WRITE_REG(hw
, REG_LTSSM_ID_CTRL
, data
);
162 atl1c_pcie_patch(hw
);
163 if (flag
& ATL1C_PCIE_L0S_L1_DISABLE
)
164 atl1c_disable_l0s_l1(hw
);
170 * atl1c_irq_enable - Enable default interrupt generation settings
171 * @adapter: board private structure
173 static inline void atl1c_irq_enable(struct atl1c_adapter
*adapter
)
175 if (likely(atomic_dec_and_test(&adapter
->irq_sem
))) {
176 AT_WRITE_REG(&adapter
->hw
, REG_ISR
, 0x7FFFFFFF);
177 AT_WRITE_REG(&adapter
->hw
, REG_IMR
, adapter
->hw
.intr_mask
);
178 AT_WRITE_FLUSH(&adapter
->hw
);
183 * atl1c_irq_disable - Mask off interrupt generation on the NIC
184 * @adapter: board private structure
186 static inline void atl1c_irq_disable(struct atl1c_adapter
*adapter
)
188 atomic_inc(&adapter
->irq_sem
);
189 AT_WRITE_REG(&adapter
->hw
, REG_IMR
, 0);
190 AT_WRITE_REG(&adapter
->hw
, REG_ISR
, ISR_DIS_INT
);
191 AT_WRITE_FLUSH(&adapter
->hw
);
192 synchronize_irq(adapter
->pdev
->irq
);
196 * atl1c_irq_reset - reset interrupt confiure on the NIC
197 * @adapter: board private structure
199 static inline void atl1c_irq_reset(struct atl1c_adapter
*adapter
)
201 atomic_set(&adapter
->irq_sem
, 1);
202 atl1c_irq_enable(adapter
);
206 * atl1c_wait_until_idle - wait up to AT_HW_MAX_IDLE_DELAY reads
207 * of the idle status register until the device is actually idle
209 static u32
atl1c_wait_until_idle(struct atl1c_hw
*hw
, u32 modu_ctrl
)
214 for (timeout
= 0; timeout
< AT_HW_MAX_IDLE_DELAY
; timeout
++) {
215 AT_READ_REG(hw
, REG_IDLE_STATUS
, &data
);
216 if ((data
& modu_ctrl
) == 0)
224 * atl1c_phy_config - Timer Call-back
225 * @data: pointer to netdev cast into an unsigned long
227 static void atl1c_phy_config(unsigned long data
)
229 struct atl1c_adapter
*adapter
= (struct atl1c_adapter
*) data
;
230 struct atl1c_hw
*hw
= &adapter
->hw
;
233 spin_lock_irqsave(&adapter
->mdio_lock
, flags
);
234 atl1c_restart_autoneg(hw
);
235 spin_unlock_irqrestore(&adapter
->mdio_lock
, flags
);
238 void atl1c_reinit_locked(struct atl1c_adapter
*adapter
)
240 WARN_ON(in_interrupt());
243 clear_bit(__AT_RESETTING
, &adapter
->flags
);
246 static void atl1c_check_link_status(struct atl1c_adapter
*adapter
)
248 struct atl1c_hw
*hw
= &adapter
->hw
;
249 struct net_device
*netdev
= adapter
->netdev
;
250 struct pci_dev
*pdev
= adapter
->pdev
;
253 u16 speed
, duplex
, phy_data
;
255 spin_lock_irqsave(&adapter
->mdio_lock
, flags
);
256 /* MII_BMSR must read twise */
257 atl1c_read_phy_reg(hw
, MII_BMSR
, &phy_data
);
258 atl1c_read_phy_reg(hw
, MII_BMSR
, &phy_data
);
259 spin_unlock_irqrestore(&adapter
->mdio_lock
, flags
);
261 if ((phy_data
& BMSR_LSTATUS
) == 0) {
263 netif_carrier_off(netdev
);
264 netif_stop_queue(netdev
);
265 hw
->hibernate
= true;
266 if (atl1c_reset_mac(hw
) != 0)
267 if (netif_msg_hw(adapter
))
268 dev_warn(&pdev
->dev
, "reset mac failed\n");
269 atl1c_set_aspm(hw
, SPEED_0
);
270 atl1c_post_phy_linkchg(hw
, SPEED_0
);
271 atl1c_reset_dma_ring(adapter
);
272 atl1c_configure(adapter
);
275 hw
->hibernate
= false;
276 spin_lock_irqsave(&adapter
->mdio_lock
, flags
);
277 err
= atl1c_get_speed_and_duplex(hw
, &speed
, &duplex
);
278 spin_unlock_irqrestore(&adapter
->mdio_lock
, flags
);
281 /* link result is our setting */
282 if (adapter
->link_speed
!= speed
||
283 adapter
->link_duplex
!= duplex
) {
284 adapter
->link_speed
= speed
;
285 adapter
->link_duplex
= duplex
;
286 atl1c_set_aspm(hw
, speed
);
287 atl1c_post_phy_linkchg(hw
, speed
);
288 atl1c_start_mac(adapter
);
289 if (netif_msg_link(adapter
))
291 "%s: %s NIC Link is Up<%d Mbps %s>\n",
292 atl1c_driver_name
, netdev
->name
,
294 adapter
->link_duplex
== FULL_DUPLEX
?
295 "Full Duplex" : "Half Duplex");
297 if (!netif_carrier_ok(netdev
))
298 netif_carrier_on(netdev
);
302 static void atl1c_link_chg_event(struct atl1c_adapter
*adapter
)
304 struct net_device
*netdev
= adapter
->netdev
;
305 struct pci_dev
*pdev
= adapter
->pdev
;
309 spin_lock(&adapter
->mdio_lock
);
310 atl1c_read_phy_reg(&adapter
->hw
, MII_BMSR
, &phy_data
);
311 atl1c_read_phy_reg(&adapter
->hw
, MII_BMSR
, &phy_data
);
312 spin_unlock(&adapter
->mdio_lock
);
313 link_up
= phy_data
& BMSR_LSTATUS
;
314 /* notify upper layer link down ASAP */
316 if (netif_carrier_ok(netdev
)) {
317 /* old link state: Up */
318 netif_carrier_off(netdev
);
319 if (netif_msg_link(adapter
))
321 "%s: %s NIC Link is Down\n",
322 atl1c_driver_name
, netdev
->name
);
323 adapter
->link_speed
= SPEED_0
;
327 set_bit(ATL1C_WORK_EVENT_LINK_CHANGE
, &adapter
->work_event
);
328 schedule_work(&adapter
->common_task
);
331 static void atl1c_common_task(struct work_struct
*work
)
333 struct atl1c_adapter
*adapter
;
334 struct net_device
*netdev
;
336 adapter
= container_of(work
, struct atl1c_adapter
, common_task
);
337 netdev
= adapter
->netdev
;
339 if (test_bit(__AT_DOWN
, &adapter
->flags
))
342 if (test_and_clear_bit(ATL1C_WORK_EVENT_RESET
, &adapter
->work_event
)) {
343 netif_device_detach(netdev
);
346 netif_device_attach(netdev
);
349 if (test_and_clear_bit(ATL1C_WORK_EVENT_LINK_CHANGE
,
350 &adapter
->work_event
)) {
351 atl1c_irq_disable(adapter
);
352 atl1c_check_link_status(adapter
);
353 atl1c_irq_enable(adapter
);
358 static void atl1c_del_timer(struct atl1c_adapter
*adapter
)
360 del_timer_sync(&adapter
->phy_config_timer
);
365 * atl1c_tx_timeout - Respond to a Tx Hang
366 * @netdev: network interface device structure
368 static void atl1c_tx_timeout(struct net_device
*netdev
)
370 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
372 /* Do the reset outside of interrupt context */
373 set_bit(ATL1C_WORK_EVENT_RESET
, &adapter
->work_event
);
374 schedule_work(&adapter
->common_task
);
378 * atl1c_set_multi - Multicast and Promiscuous mode set
379 * @netdev: network interface device structure
381 * The set_multi entry point is called whenever the multicast address
382 * list or the network interface flags are updated. This routine is
383 * responsible for configuring the hardware for proper multicast,
384 * promiscuous mode, and all-multi behavior.
386 static void atl1c_set_multi(struct net_device
*netdev
)
388 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
389 struct atl1c_hw
*hw
= &adapter
->hw
;
390 struct netdev_hw_addr
*ha
;
394 /* Check for Promiscuous and All Multicast modes */
395 AT_READ_REG(hw
, REG_MAC_CTRL
, &mac_ctrl_data
);
397 if (netdev
->flags
& IFF_PROMISC
) {
398 mac_ctrl_data
|= MAC_CTRL_PROMIS_EN
;
399 } else if (netdev
->flags
& IFF_ALLMULTI
) {
400 mac_ctrl_data
|= MAC_CTRL_MC_ALL_EN
;
401 mac_ctrl_data
&= ~MAC_CTRL_PROMIS_EN
;
403 mac_ctrl_data
&= ~(MAC_CTRL_PROMIS_EN
| MAC_CTRL_MC_ALL_EN
);
406 AT_WRITE_REG(hw
, REG_MAC_CTRL
, mac_ctrl_data
);
408 /* clear the old settings from the multicast hash table */
409 AT_WRITE_REG(hw
, REG_RX_HASH_TABLE
, 0);
410 AT_WRITE_REG_ARRAY(hw
, REG_RX_HASH_TABLE
, 1, 0);
412 /* comoute mc addresses' hash value ,and put it into hash table */
413 netdev_for_each_mc_addr(ha
, netdev
) {
414 hash_value
= atl1c_hash_mc_addr(hw
, ha
->addr
);
415 atl1c_hash_set(hw
, hash_value
);
419 static void __atl1c_vlan_mode(netdev_features_t features
, u32
*mac_ctrl_data
)
421 if (features
& NETIF_F_HW_VLAN_RX
) {
422 /* enable VLAN tag insert/strip */
423 *mac_ctrl_data
|= MAC_CTRL_RMV_VLAN
;
425 /* disable VLAN tag insert/strip */
426 *mac_ctrl_data
&= ~MAC_CTRL_RMV_VLAN
;
430 static void atl1c_vlan_mode(struct net_device
*netdev
,
431 netdev_features_t features
)
433 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
434 struct pci_dev
*pdev
= adapter
->pdev
;
435 u32 mac_ctrl_data
= 0;
437 if (netif_msg_pktdata(adapter
))
438 dev_dbg(&pdev
->dev
, "atl1c_vlan_mode\n");
440 atl1c_irq_disable(adapter
);
441 AT_READ_REG(&adapter
->hw
, REG_MAC_CTRL
, &mac_ctrl_data
);
442 __atl1c_vlan_mode(features
, &mac_ctrl_data
);
443 AT_WRITE_REG(&adapter
->hw
, REG_MAC_CTRL
, mac_ctrl_data
);
444 atl1c_irq_enable(adapter
);
447 static void atl1c_restore_vlan(struct atl1c_adapter
*adapter
)
449 struct pci_dev
*pdev
= adapter
->pdev
;
451 if (netif_msg_pktdata(adapter
))
452 dev_dbg(&pdev
->dev
, "atl1c_restore_vlan\n");
453 atl1c_vlan_mode(adapter
->netdev
, adapter
->netdev
->features
);
457 * atl1c_set_mac - Change the Ethernet Address of the NIC
458 * @netdev: network interface device structure
459 * @p: pointer to an address structure
461 * Returns 0 on success, negative on failure
463 static int atl1c_set_mac_addr(struct net_device
*netdev
, void *p
)
465 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
466 struct sockaddr
*addr
= p
;
468 if (!is_valid_ether_addr(addr
->sa_data
))
469 return -EADDRNOTAVAIL
;
471 if (netif_running(netdev
))
474 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
475 memcpy(adapter
->hw
.mac_addr
, addr
->sa_data
, netdev
->addr_len
);
476 netdev
->addr_assign_type
&= ~NET_ADDR_RANDOM
;
478 atl1c_hw_set_mac_addr(&adapter
->hw
, adapter
->hw
.mac_addr
);
483 static void atl1c_set_rxbufsize(struct atl1c_adapter
*adapter
,
484 struct net_device
*dev
)
488 adapter
->rx_buffer_len
= mtu
> AT_RX_BUF_SIZE
?
489 roundup(mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
, 8) : AT_RX_BUF_SIZE
;
492 static netdev_features_t
atl1c_fix_features(struct net_device
*netdev
,
493 netdev_features_t features
)
496 * Since there is no support for separate rx/tx vlan accel
497 * enable/disable make sure tx flag is always in same state as rx.
499 if (features
& NETIF_F_HW_VLAN_RX
)
500 features
|= NETIF_F_HW_VLAN_TX
;
502 features
&= ~NETIF_F_HW_VLAN_TX
;
504 if (netdev
->mtu
> MAX_TSO_FRAME_SIZE
)
505 features
&= ~(NETIF_F_TSO
| NETIF_F_TSO6
);
510 static int atl1c_set_features(struct net_device
*netdev
,
511 netdev_features_t features
)
513 netdev_features_t changed
= netdev
->features
^ features
;
515 if (changed
& NETIF_F_HW_VLAN_RX
)
516 atl1c_vlan_mode(netdev
, features
);
522 * atl1c_change_mtu - Change the Maximum Transfer Unit
523 * @netdev: network interface device structure
524 * @new_mtu: new value for maximum frame size
526 * Returns 0 on success, negative on failure
528 static int atl1c_change_mtu(struct net_device
*netdev
, int new_mtu
)
530 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
531 struct atl1c_hw
*hw
= &adapter
->hw
;
532 int old_mtu
= netdev
->mtu
;
533 int max_frame
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
535 /* Fast Ethernet controller doesn't support jumbo packet */
536 if (((hw
->nic_type
== athr_l2c
||
537 hw
->nic_type
== athr_l2c_b
||
538 hw
->nic_type
== athr_l2c_b2
) && new_mtu
> ETH_DATA_LEN
) ||
539 max_frame
< ETH_ZLEN
+ ETH_FCS_LEN
||
540 max_frame
> MAX_JUMBO_FRAME_SIZE
) {
541 if (netif_msg_link(adapter
))
542 dev_warn(&adapter
->pdev
->dev
, "invalid MTU setting\n");
546 if (old_mtu
!= new_mtu
&& netif_running(netdev
)) {
547 while (test_and_set_bit(__AT_RESETTING
, &adapter
->flags
))
549 netdev
->mtu
= new_mtu
;
550 adapter
->hw
.max_frame_size
= new_mtu
;
551 atl1c_set_rxbufsize(adapter
, netdev
);
553 netdev_update_features(netdev
);
555 clear_bit(__AT_RESETTING
, &adapter
->flags
);
561 * caller should hold mdio_lock
563 static int atl1c_mdio_read(struct net_device
*netdev
, int phy_id
, int reg_num
)
565 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
568 atl1c_read_phy_reg(&adapter
->hw
, reg_num
, &result
);
572 static void atl1c_mdio_write(struct net_device
*netdev
, int phy_id
,
573 int reg_num
, int val
)
575 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
577 atl1c_write_phy_reg(&adapter
->hw
, reg_num
, val
);
586 static int atl1c_mii_ioctl(struct net_device
*netdev
,
587 struct ifreq
*ifr
, int cmd
)
589 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
590 struct pci_dev
*pdev
= adapter
->pdev
;
591 struct mii_ioctl_data
*data
= if_mii(ifr
);
595 if (!netif_running(netdev
))
598 spin_lock_irqsave(&adapter
->mdio_lock
, flags
);
605 if (atl1c_read_phy_reg(&adapter
->hw
, data
->reg_num
& 0x1F,
613 if (data
->reg_num
& ~(0x1F)) {
618 dev_dbg(&pdev
->dev
, "<atl1c_mii_ioctl> write %x %x",
619 data
->reg_num
, data
->val_in
);
620 if (atl1c_write_phy_reg(&adapter
->hw
,
621 data
->reg_num
, data
->val_in
)) {
628 retval
= -EOPNOTSUPP
;
632 spin_unlock_irqrestore(&adapter
->mdio_lock
, flags
);
642 static int atl1c_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
648 return atl1c_mii_ioctl(netdev
, ifr
, cmd
);
655 * atl1c_alloc_queues - Allocate memory for all rings
656 * @adapter: board private structure to initialize
659 static int __devinit
atl1c_alloc_queues(struct atl1c_adapter
*adapter
)
664 static void atl1c_set_mac_type(struct atl1c_hw
*hw
)
666 switch (hw
->device_id
) {
667 case PCI_DEVICE_ID_ATTANSIC_L2C
:
668 hw
->nic_type
= athr_l2c
;
670 case PCI_DEVICE_ID_ATTANSIC_L1C
:
671 hw
->nic_type
= athr_l1c
;
673 case PCI_DEVICE_ID_ATHEROS_L2C_B
:
674 hw
->nic_type
= athr_l2c_b
;
676 case PCI_DEVICE_ID_ATHEROS_L2C_B2
:
677 hw
->nic_type
= athr_l2c_b2
;
679 case PCI_DEVICE_ID_ATHEROS_L1D
:
680 hw
->nic_type
= athr_l1d
;
682 case PCI_DEVICE_ID_ATHEROS_L1D_2_0
:
683 hw
->nic_type
= athr_l1d_2
;
690 static int atl1c_setup_mac_funcs(struct atl1c_hw
*hw
)
694 atl1c_set_mac_type(hw
);
695 AT_READ_REG(hw
, REG_LINK_CTRL
, &link_ctrl_data
);
697 hw
->ctrl_flags
= ATL1C_INTR_MODRT_ENABLE
|
698 ATL1C_TXQ_MODE_ENHANCE
;
699 hw
->ctrl_flags
|= ATL1C_ASPM_L0S_SUPPORT
|
700 ATL1C_ASPM_L1_SUPPORT
;
701 hw
->ctrl_flags
|= ATL1C_ASPM_CTRL_MON
;
703 if (hw
->nic_type
== athr_l1c
||
704 hw
->nic_type
== athr_l1d
||
705 hw
->nic_type
== athr_l1d_2
)
706 hw
->link_cap_flags
|= ATL1C_LINK_CAP_1000M
;
710 struct atl1c_platform_patch
{
716 #define ATL1C_LINK_PATCH 0x1
718 static const struct atl1c_platform_patch plats
[] __devinitdata
= {
719 {0x2060, 0xC1, 0x1019, 0x8152, 0x1},
720 {0x2060, 0xC1, 0x1019, 0x2060, 0x1},
721 {0x2060, 0xC1, 0x1019, 0xE000, 0x1},
722 {0x2062, 0xC0, 0x1019, 0x8152, 0x1},
723 {0x2062, 0xC0, 0x1019, 0x2062, 0x1},
724 {0x2062, 0xC0, 0x1458, 0xE000, 0x1},
725 {0x2062, 0xC1, 0x1019, 0x8152, 0x1},
726 {0x2062, 0xC1, 0x1019, 0x2062, 0x1},
727 {0x2062, 0xC1, 0x1458, 0xE000, 0x1},
728 {0x2062, 0xC1, 0x1565, 0x2802, 0x1},
729 {0x2062, 0xC1, 0x1565, 0x2801, 0x1},
730 {0x1073, 0xC0, 0x1019, 0x8151, 0x1},
731 {0x1073, 0xC0, 0x1019, 0x1073, 0x1},
732 {0x1073, 0xC0, 0x1458, 0xE000, 0x1},
733 {0x1083, 0xC0, 0x1458, 0xE000, 0x1},
734 {0x1083, 0xC0, 0x1019, 0x8151, 0x1},
735 {0x1083, 0xC0, 0x1019, 0x1083, 0x1},
736 {0x1083, 0xC0, 0x1462, 0x7680, 0x1},
737 {0x1083, 0xC0, 0x1565, 0x2803, 0x1},
741 static void __devinit
atl1c_patch_assign(struct atl1c_hw
*hw
)
745 hw
->msi_lnkpatch
= false;
747 while (plats
[i
].pci_did
!= 0) {
748 if (plats
[i
].pci_did
== hw
->device_id
&&
749 plats
[i
].pci_revid
== hw
->revision_id
&&
750 plats
[i
].subsystem_vid
== hw
->subsystem_vendor_id
&&
751 plats
[i
].subsystem_did
== hw
->subsystem_id
) {
752 if (plats
[i
].patch_flag
& ATL1C_LINK_PATCH
)
753 hw
->msi_lnkpatch
= true;
759 * atl1c_sw_init - Initialize general software structures (struct atl1c_adapter)
760 * @adapter: board private structure to initialize
762 * atl1c_sw_init initializes the Adapter private data structure.
763 * Fields are initialized based on PCI device information and
764 * OS network device settings (MTU size).
766 static int __devinit
atl1c_sw_init(struct atl1c_adapter
*adapter
)
768 struct atl1c_hw
*hw
= &adapter
->hw
;
769 struct pci_dev
*pdev
= adapter
->pdev
;
774 device_set_wakeup_enable(&pdev
->dev
, false);
775 adapter
->link_speed
= SPEED_0
;
776 adapter
->link_duplex
= FULL_DUPLEX
;
777 adapter
->tpd_ring
[0].count
= 1024;
778 adapter
->rfd_ring
.count
= 512;
780 hw
->vendor_id
= pdev
->vendor
;
781 hw
->device_id
= pdev
->device
;
782 hw
->subsystem_vendor_id
= pdev
->subsystem_vendor
;
783 hw
->subsystem_id
= pdev
->subsystem_device
;
784 AT_READ_REG(hw
, PCI_CLASS_REVISION
, &revision
);
785 hw
->revision_id
= revision
& 0xFF;
786 /* before link up, we assume hibernate is true */
787 hw
->hibernate
= true;
788 hw
->media_type
= MEDIA_TYPE_AUTO_SENSOR
;
789 if (atl1c_setup_mac_funcs(hw
) != 0) {
790 dev_err(&pdev
->dev
, "set mac function pointers failed\n");
793 atl1c_patch_assign(hw
);
795 hw
->intr_mask
= IMR_NORMAL_MASK
;
796 hw
->phy_configured
= false;
797 hw
->preamble_len
= 7;
798 hw
->max_frame_size
= adapter
->netdev
->mtu
;
799 hw
->autoneg_advertised
= ADVERTISED_Autoneg
;
800 hw
->indirect_tab
= 0xE4E4E4E4;
803 hw
->ict
= 50000; /* 100ms */
804 hw
->smb_timer
= 200000; /* 400ms */
810 hw
->dma_order
= atl1c_dma_ord_out
;
811 hw
->dmar_block
= atl1c_dma_req_1024
;
813 if (atl1c_alloc_queues(adapter
)) {
814 dev_err(&pdev
->dev
, "Unable to allocate memory for queues\n");
818 atl1c_set_rxbufsize(adapter
, adapter
->netdev
);
819 atomic_set(&adapter
->irq_sem
, 1);
820 spin_lock_init(&adapter
->mdio_lock
);
821 spin_lock_init(&adapter
->tx_lock
);
822 set_bit(__AT_DOWN
, &adapter
->flags
);
827 static inline void atl1c_clean_buffer(struct pci_dev
*pdev
,
828 struct atl1c_buffer
*buffer_info
, int in_irq
)
831 if (buffer_info
->flags
& ATL1C_BUFFER_FREE
)
833 if (buffer_info
->dma
) {
834 if (buffer_info
->flags
& ATL1C_PCIMAP_FROMDEVICE
)
835 pci_driection
= PCI_DMA_FROMDEVICE
;
837 pci_driection
= PCI_DMA_TODEVICE
;
839 if (buffer_info
->flags
& ATL1C_PCIMAP_SINGLE
)
840 pci_unmap_single(pdev
, buffer_info
->dma
,
841 buffer_info
->length
, pci_driection
);
842 else if (buffer_info
->flags
& ATL1C_PCIMAP_PAGE
)
843 pci_unmap_page(pdev
, buffer_info
->dma
,
844 buffer_info
->length
, pci_driection
);
846 if (buffer_info
->skb
) {
848 dev_kfree_skb_irq(buffer_info
->skb
);
850 dev_kfree_skb(buffer_info
->skb
);
852 buffer_info
->dma
= 0;
853 buffer_info
->skb
= NULL
;
854 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_FREE
);
857 * atl1c_clean_tx_ring - Free Tx-skb
858 * @adapter: board private structure
860 static void atl1c_clean_tx_ring(struct atl1c_adapter
*adapter
,
861 enum atl1c_trans_queue type
)
863 struct atl1c_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
[type
];
864 struct atl1c_buffer
*buffer_info
;
865 struct pci_dev
*pdev
= adapter
->pdev
;
866 u16 index
, ring_count
;
868 ring_count
= tpd_ring
->count
;
869 for (index
= 0; index
< ring_count
; index
++) {
870 buffer_info
= &tpd_ring
->buffer_info
[index
];
871 atl1c_clean_buffer(pdev
, buffer_info
, 0);
874 /* Zero out Tx-buffers */
875 memset(tpd_ring
->desc
, 0, sizeof(struct atl1c_tpd_desc
) *
877 atomic_set(&tpd_ring
->next_to_clean
, 0);
878 tpd_ring
->next_to_use
= 0;
882 * atl1c_clean_rx_ring - Free rx-reservation skbs
883 * @adapter: board private structure
885 static void atl1c_clean_rx_ring(struct atl1c_adapter
*adapter
)
887 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
888 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
889 struct atl1c_buffer
*buffer_info
;
890 struct pci_dev
*pdev
= adapter
->pdev
;
893 for (j
= 0; j
< rfd_ring
->count
; j
++) {
894 buffer_info
= &rfd_ring
->buffer_info
[j
];
895 atl1c_clean_buffer(pdev
, buffer_info
, 0);
897 /* zero out the descriptor ring */
898 memset(rfd_ring
->desc
, 0, rfd_ring
->size
);
899 rfd_ring
->next_to_clean
= 0;
900 rfd_ring
->next_to_use
= 0;
901 rrd_ring
->next_to_use
= 0;
902 rrd_ring
->next_to_clean
= 0;
906 * Read / Write Ptr Initialize:
908 static void atl1c_init_ring_ptrs(struct atl1c_adapter
*adapter
)
910 struct atl1c_tpd_ring
*tpd_ring
= adapter
->tpd_ring
;
911 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
912 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
913 struct atl1c_buffer
*buffer_info
;
916 for (i
= 0; i
< AT_MAX_TRANSMIT_QUEUE
; i
++) {
917 tpd_ring
[i
].next_to_use
= 0;
918 atomic_set(&tpd_ring
[i
].next_to_clean
, 0);
919 buffer_info
= tpd_ring
[i
].buffer_info
;
920 for (j
= 0; j
< tpd_ring
->count
; j
++)
921 ATL1C_SET_BUFFER_STATE(&buffer_info
[i
],
924 rfd_ring
->next_to_use
= 0;
925 rfd_ring
->next_to_clean
= 0;
926 rrd_ring
->next_to_use
= 0;
927 rrd_ring
->next_to_clean
= 0;
928 for (j
= 0; j
< rfd_ring
->count
; j
++) {
929 buffer_info
= &rfd_ring
->buffer_info
[j
];
930 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_FREE
);
935 * atl1c_free_ring_resources - Free Tx / RX descriptor Resources
936 * @adapter: board private structure
938 * Free all transmit software resources
940 static void atl1c_free_ring_resources(struct atl1c_adapter
*adapter
)
942 struct pci_dev
*pdev
= adapter
->pdev
;
944 pci_free_consistent(pdev
, adapter
->ring_header
.size
,
945 adapter
->ring_header
.desc
,
946 adapter
->ring_header
.dma
);
947 adapter
->ring_header
.desc
= NULL
;
949 /* Note: just free tdp_ring.buffer_info,
950 * it contain rfd_ring.buffer_info, do not double free */
951 if (adapter
->tpd_ring
[0].buffer_info
) {
952 kfree(adapter
->tpd_ring
[0].buffer_info
);
953 adapter
->tpd_ring
[0].buffer_info
= NULL
;
958 * atl1c_setup_mem_resources - allocate Tx / RX descriptor resources
959 * @adapter: board private structure
961 * Return 0 on success, negative on failure
963 static int atl1c_setup_ring_resources(struct atl1c_adapter
*adapter
)
965 struct pci_dev
*pdev
= adapter
->pdev
;
966 struct atl1c_tpd_ring
*tpd_ring
= adapter
->tpd_ring
;
967 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
968 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
969 struct atl1c_ring_header
*ring_header
= &adapter
->ring_header
;
973 int rx_desc_count
= 0;
976 rrd_ring
->count
= rfd_ring
->count
;
977 for (i
= 1; i
< AT_MAX_TRANSMIT_QUEUE
; i
++)
978 tpd_ring
[i
].count
= tpd_ring
[0].count
;
980 /* 2 tpd queue, one high priority queue,
981 * another normal priority queue */
982 size
= sizeof(struct atl1c_buffer
) * (tpd_ring
->count
* 2 +
984 tpd_ring
->buffer_info
= kzalloc(size
, GFP_KERNEL
);
985 if (unlikely(!tpd_ring
->buffer_info
)) {
986 dev_err(&pdev
->dev
, "kzalloc failed, size = %d\n",
990 for (i
= 0; i
< AT_MAX_TRANSMIT_QUEUE
; i
++) {
991 tpd_ring
[i
].buffer_info
=
992 (struct atl1c_buffer
*) (tpd_ring
->buffer_info
+ count
);
993 count
+= tpd_ring
[i
].count
;
996 rfd_ring
->buffer_info
=
997 (struct atl1c_buffer
*) (tpd_ring
->buffer_info
+ count
);
998 count
+= rfd_ring
->count
;
999 rx_desc_count
+= rfd_ring
->count
;
1002 * real ring DMA buffer
1003 * each ring/block may need up to 8 bytes for alignment, hence the
1004 * additional bytes tacked onto the end.
1006 ring_header
->size
= size
=
1007 sizeof(struct atl1c_tpd_desc
) * tpd_ring
->count
* 2 +
1008 sizeof(struct atl1c_rx_free_desc
) * rx_desc_count
+
1009 sizeof(struct atl1c_recv_ret_status
) * rx_desc_count
+
1012 ring_header
->desc
= pci_alloc_consistent(pdev
, ring_header
->size
,
1014 if (unlikely(!ring_header
->desc
)) {
1015 dev_err(&pdev
->dev
, "pci_alloc_consistend failed\n");
1018 memset(ring_header
->desc
, 0, ring_header
->size
);
1021 tpd_ring
[0].dma
= roundup(ring_header
->dma
, 8);
1022 offset
= tpd_ring
[0].dma
- ring_header
->dma
;
1023 for (i
= 0; i
< AT_MAX_TRANSMIT_QUEUE
; i
++) {
1024 tpd_ring
[i
].dma
= ring_header
->dma
+ offset
;
1025 tpd_ring
[i
].desc
= (u8
*) ring_header
->desc
+ offset
;
1027 sizeof(struct atl1c_tpd_desc
) * tpd_ring
[i
].count
;
1028 offset
+= roundup(tpd_ring
[i
].size
, 8);
1031 rfd_ring
->dma
= ring_header
->dma
+ offset
;
1032 rfd_ring
->desc
= (u8
*) ring_header
->desc
+ offset
;
1033 rfd_ring
->size
= sizeof(struct atl1c_rx_free_desc
) * rfd_ring
->count
;
1034 offset
+= roundup(rfd_ring
->size
, 8);
1037 rrd_ring
->dma
= ring_header
->dma
+ offset
;
1038 rrd_ring
->desc
= (u8
*) ring_header
->desc
+ offset
;
1039 rrd_ring
->size
= sizeof(struct atl1c_recv_ret_status
) *
1041 offset
+= roundup(rrd_ring
->size
, 8);
1046 kfree(tpd_ring
->buffer_info
);
1050 static void atl1c_configure_des_ring(struct atl1c_adapter
*adapter
)
1052 struct atl1c_hw
*hw
= &adapter
->hw
;
1053 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1054 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1055 struct atl1c_tpd_ring
*tpd_ring
= (struct atl1c_tpd_ring
*)
1059 AT_WRITE_REG(hw
, REG_TX_BASE_ADDR_HI
,
1060 (u32
)((tpd_ring
[atl1c_trans_normal
].dma
&
1061 AT_DMA_HI_ADDR_MASK
) >> 32));
1062 /* just enable normal priority TX queue */
1063 AT_WRITE_REG(hw
, REG_TPD_PRI0_ADDR_LO
,
1064 (u32
)(tpd_ring
[atl1c_trans_normal
].dma
&
1065 AT_DMA_LO_ADDR_MASK
));
1066 AT_WRITE_REG(hw
, REG_TPD_PRI1_ADDR_LO
,
1067 (u32
)(tpd_ring
[atl1c_trans_high
].dma
&
1068 AT_DMA_LO_ADDR_MASK
));
1069 AT_WRITE_REG(hw
, REG_TPD_RING_SIZE
,
1070 (u32
)(tpd_ring
[0].count
& TPD_RING_SIZE_MASK
));
1074 AT_WRITE_REG(hw
, REG_RX_BASE_ADDR_HI
,
1075 (u32
)((rfd_ring
->dma
& AT_DMA_HI_ADDR_MASK
) >> 32));
1076 AT_WRITE_REG(hw
, REG_RFD0_HEAD_ADDR_LO
,
1077 (u32
)(rfd_ring
->dma
& AT_DMA_LO_ADDR_MASK
));
1079 AT_WRITE_REG(hw
, REG_RFD_RING_SIZE
,
1080 rfd_ring
->count
& RFD_RING_SIZE_MASK
);
1081 AT_WRITE_REG(hw
, REG_RX_BUF_SIZE
,
1082 adapter
->rx_buffer_len
& RX_BUF_SIZE_MASK
);
1085 AT_WRITE_REG(hw
, REG_RRD0_HEAD_ADDR_LO
,
1086 (u32
)(rrd_ring
->dma
& AT_DMA_LO_ADDR_MASK
));
1087 AT_WRITE_REG(hw
, REG_RRD_RING_SIZE
,
1088 (rrd_ring
->count
& RRD_RING_SIZE_MASK
));
1090 if (hw
->nic_type
== athr_l2c_b
) {
1091 AT_WRITE_REG(hw
, REG_SRAM_RXF_LEN
, 0x02a0L
);
1092 AT_WRITE_REG(hw
, REG_SRAM_TXF_LEN
, 0x0100L
);
1093 AT_WRITE_REG(hw
, REG_SRAM_RXF_ADDR
, 0x029f0000L
);
1094 AT_WRITE_REG(hw
, REG_SRAM_RFD0_INFO
, 0x02bf02a0L
);
1095 AT_WRITE_REG(hw
, REG_SRAM_TXF_ADDR
, 0x03bf02c0L
);
1096 AT_WRITE_REG(hw
, REG_SRAM_TRD_ADDR
, 0x03df03c0L
);
1097 AT_WRITE_REG(hw
, REG_TXF_WATER_MARK
, 0); /* TX watermark, to enter l1 state.*/
1098 AT_WRITE_REG(hw
, REG_RXD_DMA_CTRL
, 0); /* RXD threshold.*/
1100 /* Load all of base address above */
1101 AT_WRITE_REG(hw
, REG_LOAD_PTR
, 1);
1104 static void atl1c_configure_tx(struct atl1c_adapter
*adapter
)
1106 struct atl1c_hw
*hw
= &adapter
->hw
;
1108 u16 tx_offload_thresh
;
1111 tx_offload_thresh
= MAX_TSO_FRAME_SIZE
;
1112 AT_WRITE_REG(hw
, REG_TX_TSO_OFFLOAD_THRESH
,
1113 (tx_offload_thresh
>> 3) & TX_TSO_OFFLOAD_THRESH_MASK
);
1114 max_pay_load
= pcie_get_readrq(adapter
->pdev
) >> 8;
1115 hw
->dmar_block
= min_t(u32
, max_pay_load
, hw
->dmar_block
);
1117 * if BIOS had changed the dam-read-max-length to an invalid value,
1118 * restore it to default value
1120 if (hw
->dmar_block
< DEVICE_CTRL_MAXRRS_MIN
) {
1121 pcie_set_readrq(adapter
->pdev
, 128 << DEVICE_CTRL_MAXRRS_MIN
);
1122 hw
->dmar_block
= DEVICE_CTRL_MAXRRS_MIN
;
1125 hw
->nic_type
== athr_l2c_b
|| hw
->nic_type
== athr_l2c_b2
?
1126 L2CB_TXQ_CFGV
: L1C_TXQ_CFGV
;
1128 AT_WRITE_REG(hw
, REG_TXQ_CTRL
, txq_ctrl_data
);
1131 static void atl1c_configure_rx(struct atl1c_adapter
*adapter
)
1133 struct atl1c_hw
*hw
= &adapter
->hw
;
1136 rxq_ctrl_data
= (hw
->rfd_burst
& RXQ_RFD_BURST_NUM_MASK
) <<
1137 RXQ_RFD_BURST_NUM_SHIFT
;
1139 if (hw
->ctrl_flags
& ATL1C_RX_IPV6_CHKSUM
)
1140 rxq_ctrl_data
|= IPV6_CHKSUM_CTRL_EN
;
1142 /* aspm for gigabit */
1143 if (hw
->nic_type
!= athr_l1d_2
&& (hw
->device_id
& 1) != 0)
1144 rxq_ctrl_data
= FIELD_SETX(rxq_ctrl_data
, ASPM_THRUPUT_LIMIT
,
1145 ASPM_THRUPUT_LIMIT_100M
);
1147 AT_WRITE_REG(hw
, REG_RXQ_CTRL
, rxq_ctrl_data
);
1150 static void atl1c_configure_dma(struct atl1c_adapter
*adapter
)
1152 struct atl1c_hw
*hw
= &adapter
->hw
;
1155 dma_ctrl_data
= FIELDX(DMA_CTRL_RORDER_MODE
, DMA_CTRL_RORDER_MODE_OUT
) |
1156 DMA_CTRL_RREQ_PRI_DATA
|
1157 FIELDX(DMA_CTRL_RREQ_BLEN
, hw
->dmar_block
) |
1158 FIELDX(DMA_CTRL_WDLY_CNT
, DMA_CTRL_WDLY_CNT_DEF
) |
1159 FIELDX(DMA_CTRL_RDLY_CNT
, DMA_CTRL_RDLY_CNT_DEF
);
1161 AT_WRITE_REG(hw
, REG_DMA_CTRL
, dma_ctrl_data
);
1165 * Stop the mac, transmit and receive units
1166 * hw - Struct containing variables accessed by shared code
1167 * return : 0 or idle status (if error)
1169 static int atl1c_stop_mac(struct atl1c_hw
*hw
)
1173 AT_READ_REG(hw
, REG_RXQ_CTRL
, &data
);
1174 data
&= ~RXQ_CTRL_EN
;
1175 AT_WRITE_REG(hw
, REG_RXQ_CTRL
, data
);
1177 AT_READ_REG(hw
, REG_TXQ_CTRL
, &data
);
1178 data
&= ~TXQ_CTRL_EN
;
1179 AT_WRITE_REG(hw
, REG_TXQ_CTRL
, data
);
1181 atl1c_wait_until_idle(hw
, IDLE_STATUS_RXQ_BUSY
| IDLE_STATUS_TXQ_BUSY
);
1183 AT_READ_REG(hw
, REG_MAC_CTRL
, &data
);
1184 data
&= ~(MAC_CTRL_TX_EN
| MAC_CTRL_RX_EN
);
1185 AT_WRITE_REG(hw
, REG_MAC_CTRL
, data
);
1187 return (int)atl1c_wait_until_idle(hw
,
1188 IDLE_STATUS_TXMAC_BUSY
| IDLE_STATUS_RXMAC_BUSY
);
1191 static void atl1c_start_mac(struct atl1c_adapter
*adapter
)
1193 struct atl1c_hw
*hw
= &adapter
->hw
;
1196 hw
->mac_duplex
= adapter
->link_duplex
== FULL_DUPLEX
? true : false;
1197 hw
->mac_speed
= adapter
->link_speed
== SPEED_1000
?
1198 atl1c_mac_speed_1000
: atl1c_mac_speed_10_100
;
1200 AT_READ_REG(hw
, REG_TXQ_CTRL
, &txq
);
1201 AT_READ_REG(hw
, REG_RXQ_CTRL
, &rxq
);
1202 AT_READ_REG(hw
, REG_MAC_CTRL
, &mac
);
1206 mac
|= MAC_CTRL_TX_EN
| MAC_CTRL_TX_FLOW
|
1207 MAC_CTRL_RX_EN
| MAC_CTRL_RX_FLOW
|
1208 MAC_CTRL_ADD_CRC
| MAC_CTRL_PAD
|
1209 MAC_CTRL_BC_EN
| MAC_CTRL_SINGLE_PAUSE_EN
|
1210 MAC_CTRL_HASH_ALG_CRC32
;
1212 mac
|= MAC_CTRL_DUPLX
;
1214 mac
&= ~MAC_CTRL_DUPLX
;
1215 mac
= FIELD_SETX(mac
, MAC_CTRL_SPEED
, hw
->mac_speed
);
1216 mac
= FIELD_SETX(mac
, MAC_CTRL_PRMLEN
, hw
->preamble_len
);
1218 AT_WRITE_REG(hw
, REG_TXQ_CTRL
, txq
);
1219 AT_WRITE_REG(hw
, REG_RXQ_CTRL
, rxq
);
1220 AT_WRITE_REG(hw
, REG_MAC_CTRL
, mac
);
1224 * Reset the transmit and receive units; mask and clear all interrupts.
1225 * hw - Struct containing variables accessed by shared code
1226 * return : 0 or idle status (if error)
1228 static int atl1c_reset_mac(struct atl1c_hw
*hw
)
1230 struct atl1c_adapter
*adapter
= (struct atl1c_adapter
*)hw
->adapter
;
1231 struct pci_dev
*pdev
= adapter
->pdev
;
1236 * Issue Soft Reset to the MAC. This will reset the chip's
1237 * transmit, receive, DMA. It will not effect
1238 * the current PCI configuration. The global reset bit is self-
1239 * clearing, and should clear within a microsecond.
1241 AT_READ_REG(hw
, REG_MASTER_CTRL
, &ctrl_data
);
1242 ctrl_data
|= MASTER_CTRL_OOB_DIS
;
1243 AT_WRITE_REG(hw
, REG_MASTER_CTRL
, ctrl_data
| MASTER_CTRL_SOFT_RST
);
1247 /* Wait at least 10ms for All module to be Idle */
1249 if (atl1c_wait_until_idle(hw
, IDLE_STATUS_MASK
)) {
1251 "MAC state machine can't be idle since"
1252 " disabled for 10ms second\n");
1255 AT_WRITE_REG(hw
, REG_MASTER_CTRL
, ctrl_data
);
1257 /* driver control speed/duplex */
1258 AT_READ_REG(hw
, REG_MAC_CTRL
, &ctrl_data
);
1259 AT_WRITE_REG(hw
, REG_MAC_CTRL
, ctrl_data
| MAC_CTRL_SPEED_MODE_SW
);
1261 /* clk switch setting */
1262 AT_READ_REG(hw
, REG_SERDES
, &ctrl_data
);
1263 switch (hw
->nic_type
) {
1265 ctrl_data
&= ~(SERDES_PHY_CLK_SLOWDOWN
|
1266 SERDES_MAC_CLK_SLOWDOWN
);
1267 AT_WRITE_REG(hw
, REG_SERDES
, ctrl_data
);
1271 ctrl_data
|= SERDES_PHY_CLK_SLOWDOWN
| SERDES_MAC_CLK_SLOWDOWN
;
1272 AT_WRITE_REG(hw
, REG_SERDES
, ctrl_data
);
1281 static void atl1c_disable_l0s_l1(struct atl1c_hw
*hw
)
1283 u16 ctrl_flags
= hw
->ctrl_flags
;
1285 hw
->ctrl_flags
&= ~(ATL1C_ASPM_L0S_SUPPORT
| ATL1C_ASPM_L1_SUPPORT
);
1286 atl1c_set_aspm(hw
, SPEED_0
);
1287 hw
->ctrl_flags
= ctrl_flags
;
1292 * Enable/disable L0s/L1 depend on link state.
1294 static void atl1c_set_aspm(struct atl1c_hw
*hw
, u16 link_speed
)
1299 AT_READ_REG(hw
, REG_PM_CTRL
, &pm_ctrl_data
);
1300 pm_ctrl_data
&= ~(PM_CTRL_ASPM_L1_EN
|
1301 PM_CTRL_ASPM_L0S_EN
|
1302 PM_CTRL_MAC_ASPM_CHK
);
1304 if (hw
->nic_type
== athr_l2c_b2
|| hw
->nic_type
== athr_l1d_2
) {
1305 pm_ctrl_data
&= ~PMCTRL_TXL1_AFTER_L0S
;
1307 link_speed
== SPEED_1000
|| link_speed
== SPEED_100
?
1308 L1D_PMCTRL_L1_ENTRY_TM_16US
: 1;
1309 pm_ctrl_data
= FIELD_SETX(pm_ctrl_data
,
1310 L1D_PMCTRL_L1_ENTRY_TM
, link_l1_timer
);
1312 link_l1_timer
= hw
->nic_type
== athr_l2c_b
?
1313 L2CB1_PM_CTRL_L1_ENTRY_TM
: L1C_PM_CTRL_L1_ENTRY_TM
;
1314 if (link_speed
!= SPEED_1000
&& link_speed
!= SPEED_100
)
1316 pm_ctrl_data
= FIELD_SETX(pm_ctrl_data
,
1317 PM_CTRL_L1_ENTRY_TIMER
, link_l1_timer
);
1321 if ((hw
->ctrl_flags
& ATL1C_ASPM_L0S_SUPPORT
) && link_speed
!= SPEED_0
)
1322 pm_ctrl_data
|= PM_CTRL_ASPM_L0S_EN
| PM_CTRL_MAC_ASPM_CHK
;
1323 if (hw
->ctrl_flags
& ATL1C_ASPM_L1_SUPPORT
)
1324 pm_ctrl_data
|= PM_CTRL_ASPM_L1_EN
| PM_CTRL_MAC_ASPM_CHK
;
1326 /* l2cb & l1d & l2cb2 & l1d2 */
1327 if (hw
->nic_type
== athr_l2c_b
|| hw
->nic_type
== athr_l1d
||
1328 hw
->nic_type
== athr_l2c_b2
|| hw
->nic_type
== athr_l1d_2
) {
1329 pm_ctrl_data
= FIELD_SETX(pm_ctrl_data
,
1330 PM_CTRL_PM_REQ_TIMER
, PM_CTRL_PM_REQ_TO_DEF
);
1331 pm_ctrl_data
|= PM_CTRL_RCVR_WT_TIMER
|
1332 PM_CTRL_SERDES_PD_EX_L1
|
1334 pm_ctrl_data
&= ~(PM_CTRL_SERDES_L1_EN
|
1335 PM_CTRL_SERDES_PLL_L1_EN
|
1336 PM_CTRL_SERDES_BUFS_RX_L1_EN
|
1339 /* disable l0s if link down or l2cb */
1340 if (link_speed
== SPEED_0
|| hw
->nic_type
== athr_l2c_b
)
1341 pm_ctrl_data
&= ~PM_CTRL_ASPM_L0S_EN
;
1344 FIELD_SETX(pm_ctrl_data
, PM_CTRL_L1_ENTRY_TIMER
, 0);
1345 if (link_speed
!= SPEED_0
) {
1346 pm_ctrl_data
|= PM_CTRL_SERDES_L1_EN
|
1347 PM_CTRL_SERDES_PLL_L1_EN
|
1348 PM_CTRL_SERDES_BUFS_RX_L1_EN
;
1349 pm_ctrl_data
&= ~(PM_CTRL_SERDES_PD_EX_L1
|
1350 PM_CTRL_CLK_SWH_L1
|
1351 PM_CTRL_ASPM_L0S_EN
|
1352 PM_CTRL_ASPM_L1_EN
);
1353 } else { /* link down */
1354 pm_ctrl_data
|= PM_CTRL_CLK_SWH_L1
;
1355 pm_ctrl_data
&= ~(PM_CTRL_SERDES_L1_EN
|
1356 PM_CTRL_SERDES_PLL_L1_EN
|
1357 PM_CTRL_SERDES_BUFS_RX_L1_EN
|
1358 PM_CTRL_ASPM_L0S_EN
);
1361 AT_WRITE_REG(hw
, REG_PM_CTRL
, pm_ctrl_data
);
1367 * atl1c_configure - Configure Transmit&Receive Unit after Reset
1368 * @adapter: board private structure
1370 * Configure the Tx /Rx unit of the MAC after a reset.
1372 static int atl1c_configure_mac(struct atl1c_adapter
*adapter
)
1374 struct atl1c_hw
*hw
= &adapter
->hw
;
1375 u32 master_ctrl_data
= 0;
1376 u32 intr_modrt_data
;
1379 AT_READ_REG(hw
, REG_MASTER_CTRL
, &master_ctrl_data
);
1380 master_ctrl_data
&= ~(MASTER_CTRL_TX_ITIMER_EN
|
1381 MASTER_CTRL_RX_ITIMER_EN
|
1382 MASTER_CTRL_INT_RDCLR
);
1383 /* clear interrupt status */
1384 AT_WRITE_REG(hw
, REG_ISR
, 0xFFFFFFFF);
1385 /* Clear any WOL status */
1386 AT_WRITE_REG(hw
, REG_WOL_CTRL
, 0);
1387 /* set Interrupt Clear Timer
1388 * HW will enable self to assert interrupt event to system after
1389 * waiting x-time for software to notify it accept interrupt.
1392 data
= CLK_GATING_EN_ALL
;
1393 if (hw
->ctrl_flags
& ATL1C_CLK_GATING_EN
) {
1394 if (hw
->nic_type
== athr_l2c_b
)
1395 data
&= ~CLK_GATING_RXMAC_EN
;
1398 AT_WRITE_REG(hw
, REG_CLK_GATING_CTRL
, data
);
1400 AT_WRITE_REG(hw
, REG_INT_RETRIG_TIMER
,
1401 hw
->ict
& INT_RETRIG_TIMER_MASK
);
1403 atl1c_configure_des_ring(adapter
);
1405 if (hw
->ctrl_flags
& ATL1C_INTR_MODRT_ENABLE
) {
1406 intr_modrt_data
= (hw
->tx_imt
& IRQ_MODRT_TIMER_MASK
) <<
1407 IRQ_MODRT_TX_TIMER_SHIFT
;
1408 intr_modrt_data
|= (hw
->rx_imt
& IRQ_MODRT_TIMER_MASK
) <<
1409 IRQ_MODRT_RX_TIMER_SHIFT
;
1410 AT_WRITE_REG(hw
, REG_IRQ_MODRT_TIMER_INIT
, intr_modrt_data
);
1412 MASTER_CTRL_TX_ITIMER_EN
| MASTER_CTRL_RX_ITIMER_EN
;
1415 if (hw
->ctrl_flags
& ATL1C_INTR_CLEAR_ON_READ
)
1416 master_ctrl_data
|= MASTER_CTRL_INT_RDCLR
;
1418 master_ctrl_data
|= MASTER_CTRL_SA_TIMER_EN
;
1419 AT_WRITE_REG(hw
, REG_MASTER_CTRL
, master_ctrl_data
);
1421 AT_WRITE_REG(hw
, REG_SMB_STAT_TIMER
,
1422 hw
->smb_timer
& SMB_STAT_TIMER_MASK
);
1425 AT_WRITE_REG(hw
, REG_MTU
, hw
->max_frame_size
+ ETH_HLEN
+
1426 VLAN_HLEN
+ ETH_FCS_LEN
);
1428 atl1c_configure_tx(adapter
);
1429 atl1c_configure_rx(adapter
);
1430 atl1c_configure_dma(adapter
);
1435 static int atl1c_configure(struct atl1c_adapter
*adapter
)
1437 struct net_device
*netdev
= adapter
->netdev
;
1440 atl1c_init_ring_ptrs(adapter
);
1441 atl1c_set_multi(netdev
);
1442 atl1c_restore_vlan(adapter
);
1444 num
= atl1c_alloc_rx_buffer(adapter
);
1445 if (unlikely(num
== 0))
1448 if (atl1c_configure_mac(adapter
))
1454 static void atl1c_update_hw_stats(struct atl1c_adapter
*adapter
)
1456 u16 hw_reg_addr
= 0;
1457 unsigned long *stats_item
= NULL
;
1460 /* update rx status */
1461 hw_reg_addr
= REG_MAC_RX_STATUS_BIN
;
1462 stats_item
= &adapter
->hw_stats
.rx_ok
;
1463 while (hw_reg_addr
<= REG_MAC_RX_STATUS_END
) {
1464 AT_READ_REG(&adapter
->hw
, hw_reg_addr
, &data
);
1465 *stats_item
+= data
;
1469 /* update tx status */
1470 hw_reg_addr
= REG_MAC_TX_STATUS_BIN
;
1471 stats_item
= &adapter
->hw_stats
.tx_ok
;
1472 while (hw_reg_addr
<= REG_MAC_TX_STATUS_END
) {
1473 AT_READ_REG(&adapter
->hw
, hw_reg_addr
, &data
);
1474 *stats_item
+= data
;
1481 * atl1c_get_stats - Get System Network Statistics
1482 * @netdev: network interface device structure
1484 * Returns the address of the device statistics structure.
1485 * The statistics are actually updated from the timer callback.
1487 static struct net_device_stats
*atl1c_get_stats(struct net_device
*netdev
)
1489 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
1490 struct atl1c_hw_stats
*hw_stats
= &adapter
->hw_stats
;
1491 struct net_device_stats
*net_stats
= &netdev
->stats
;
1493 atl1c_update_hw_stats(adapter
);
1494 net_stats
->rx_packets
= hw_stats
->rx_ok
;
1495 net_stats
->tx_packets
= hw_stats
->tx_ok
;
1496 net_stats
->rx_bytes
= hw_stats
->rx_byte_cnt
;
1497 net_stats
->tx_bytes
= hw_stats
->tx_byte_cnt
;
1498 net_stats
->multicast
= hw_stats
->rx_mcast
;
1499 net_stats
->collisions
= hw_stats
->tx_1_col
+
1500 hw_stats
->tx_2_col
* 2 +
1501 hw_stats
->tx_late_col
+ hw_stats
->tx_abort_col
;
1502 net_stats
->rx_errors
= hw_stats
->rx_frag
+ hw_stats
->rx_fcs_err
+
1503 hw_stats
->rx_len_err
+ hw_stats
->rx_sz_ov
+
1504 hw_stats
->rx_rrd_ov
+ hw_stats
->rx_align_err
;
1505 net_stats
->rx_fifo_errors
= hw_stats
->rx_rxf_ov
;
1506 net_stats
->rx_length_errors
= hw_stats
->rx_len_err
;
1507 net_stats
->rx_crc_errors
= hw_stats
->rx_fcs_err
;
1508 net_stats
->rx_frame_errors
= hw_stats
->rx_align_err
;
1509 net_stats
->rx_over_errors
= hw_stats
->rx_rrd_ov
+ hw_stats
->rx_rxf_ov
;
1511 net_stats
->rx_missed_errors
= hw_stats
->rx_rrd_ov
+ hw_stats
->rx_rxf_ov
;
1513 net_stats
->tx_errors
= hw_stats
->tx_late_col
+ hw_stats
->tx_abort_col
+
1514 hw_stats
->tx_underrun
+ hw_stats
->tx_trunc
;
1515 net_stats
->tx_fifo_errors
= hw_stats
->tx_underrun
;
1516 net_stats
->tx_aborted_errors
= hw_stats
->tx_abort_col
;
1517 net_stats
->tx_window_errors
= hw_stats
->tx_late_col
;
1522 static inline void atl1c_clear_phy_int(struct atl1c_adapter
*adapter
)
1526 spin_lock(&adapter
->mdio_lock
);
1527 atl1c_read_phy_reg(&adapter
->hw
, MII_ISR
, &phy_data
);
1528 spin_unlock(&adapter
->mdio_lock
);
1531 static bool atl1c_clean_tx_irq(struct atl1c_adapter
*adapter
,
1532 enum atl1c_trans_queue type
)
1534 struct atl1c_tpd_ring
*tpd_ring
= (struct atl1c_tpd_ring
*)
1535 &adapter
->tpd_ring
[type
];
1536 struct atl1c_buffer
*buffer_info
;
1537 struct pci_dev
*pdev
= adapter
->pdev
;
1538 u16 next_to_clean
= atomic_read(&tpd_ring
->next_to_clean
);
1539 u16 hw_next_to_clean
;
1542 reg
= type
== atl1c_trans_high
? REG_TPD_PRI1_CIDX
: REG_TPD_PRI0_CIDX
;
1544 AT_READ_REGW(&adapter
->hw
, reg
, &hw_next_to_clean
);
1546 while (next_to_clean
!= hw_next_to_clean
) {
1547 buffer_info
= &tpd_ring
->buffer_info
[next_to_clean
];
1548 atl1c_clean_buffer(pdev
, buffer_info
, 1);
1549 if (++next_to_clean
== tpd_ring
->count
)
1551 atomic_set(&tpd_ring
->next_to_clean
, next_to_clean
);
1554 if (netif_queue_stopped(adapter
->netdev
) &&
1555 netif_carrier_ok(adapter
->netdev
)) {
1556 netif_wake_queue(adapter
->netdev
);
1563 * atl1c_intr - Interrupt Handler
1564 * @irq: interrupt number
1565 * @data: pointer to a network interface device structure
1566 * @pt_regs: CPU registers structure
1568 static irqreturn_t
atl1c_intr(int irq
, void *data
)
1570 struct net_device
*netdev
= data
;
1571 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
1572 struct pci_dev
*pdev
= adapter
->pdev
;
1573 struct atl1c_hw
*hw
= &adapter
->hw
;
1574 int max_ints
= AT_MAX_INT_WORK
;
1575 int handled
= IRQ_NONE
;
1580 AT_READ_REG(hw
, REG_ISR
, ®_data
);
1581 status
= reg_data
& hw
->intr_mask
;
1583 if (status
== 0 || (status
& ISR_DIS_INT
) != 0) {
1584 if (max_ints
!= AT_MAX_INT_WORK
)
1585 handled
= IRQ_HANDLED
;
1589 if (status
& ISR_GPHY
)
1590 atl1c_clear_phy_int(adapter
);
1592 AT_WRITE_REG(hw
, REG_ISR
, status
| ISR_DIS_INT
);
1593 if (status
& ISR_RX_PKT
) {
1594 if (likely(napi_schedule_prep(&adapter
->napi
))) {
1595 hw
->intr_mask
&= ~ISR_RX_PKT
;
1596 AT_WRITE_REG(hw
, REG_IMR
, hw
->intr_mask
);
1597 __napi_schedule(&adapter
->napi
);
1600 if (status
& ISR_TX_PKT
)
1601 atl1c_clean_tx_irq(adapter
, atl1c_trans_normal
);
1603 handled
= IRQ_HANDLED
;
1604 /* check if PCIE PHY Link down */
1605 if (status
& ISR_ERROR
) {
1606 if (netif_msg_hw(adapter
))
1608 "atl1c hardware error (status = 0x%x)\n",
1609 status
& ISR_ERROR
);
1611 set_bit(ATL1C_WORK_EVENT_RESET
, &adapter
->work_event
);
1612 schedule_work(&adapter
->common_task
);
1616 if (status
& ISR_OVER
)
1617 if (netif_msg_intr(adapter
))
1618 dev_warn(&pdev
->dev
,
1619 "TX/RX overflow (status = 0x%x)\n",
1623 if (status
& (ISR_GPHY
| ISR_MANUAL
)) {
1624 netdev
->stats
.tx_carrier_errors
++;
1625 atl1c_link_chg_event(adapter
);
1629 } while (--max_ints
> 0);
1630 /* re-enable Interrupt*/
1631 AT_WRITE_REG(&adapter
->hw
, REG_ISR
, 0);
1635 static inline void atl1c_rx_checksum(struct atl1c_adapter
*adapter
,
1636 struct sk_buff
*skb
, struct atl1c_recv_ret_status
*prrs
)
1639 * The pid field in RRS in not correct sometimes, so we
1640 * cannot figure out if the packet is fragmented or not,
1641 * so we tell the KERNEL CHECKSUM_NONE
1643 skb_checksum_none_assert(skb
);
1646 static int atl1c_alloc_rx_buffer(struct atl1c_adapter
*adapter
)
1648 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1649 struct pci_dev
*pdev
= adapter
->pdev
;
1650 struct atl1c_buffer
*buffer_info
, *next_info
;
1651 struct sk_buff
*skb
;
1652 void *vir_addr
= NULL
;
1654 u16 rfd_next_to_use
, next_next
;
1655 struct atl1c_rx_free_desc
*rfd_desc
;
1657 next_next
= rfd_next_to_use
= rfd_ring
->next_to_use
;
1658 if (++next_next
== rfd_ring
->count
)
1660 buffer_info
= &rfd_ring
->buffer_info
[rfd_next_to_use
];
1661 next_info
= &rfd_ring
->buffer_info
[next_next
];
1663 while (next_info
->flags
& ATL1C_BUFFER_FREE
) {
1664 rfd_desc
= ATL1C_RFD_DESC(rfd_ring
, rfd_next_to_use
);
1666 skb
= netdev_alloc_skb(adapter
->netdev
, adapter
->rx_buffer_len
);
1667 if (unlikely(!skb
)) {
1668 if (netif_msg_rx_err(adapter
))
1669 dev_warn(&pdev
->dev
, "alloc rx buffer failed\n");
1674 * Make buffer alignment 2 beyond a 16 byte boundary
1675 * this will result in a 16 byte aligned IP header after
1676 * the 14 byte MAC header is removed
1678 vir_addr
= skb
->data
;
1679 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_BUSY
);
1680 buffer_info
->skb
= skb
;
1681 buffer_info
->length
= adapter
->rx_buffer_len
;
1682 buffer_info
->dma
= pci_map_single(pdev
, vir_addr
,
1683 buffer_info
->length
,
1684 PCI_DMA_FROMDEVICE
);
1685 ATL1C_SET_PCIMAP_TYPE(buffer_info
, ATL1C_PCIMAP_SINGLE
,
1686 ATL1C_PCIMAP_FROMDEVICE
);
1687 rfd_desc
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
1688 rfd_next_to_use
= next_next
;
1689 if (++next_next
== rfd_ring
->count
)
1691 buffer_info
= &rfd_ring
->buffer_info
[rfd_next_to_use
];
1692 next_info
= &rfd_ring
->buffer_info
[next_next
];
1697 /* TODO: update mailbox here */
1699 rfd_ring
->next_to_use
= rfd_next_to_use
;
1700 AT_WRITE_REG(&adapter
->hw
, REG_MB_RFD0_PROD_IDX
,
1701 rfd_ring
->next_to_use
& MB_RFDX_PROD_IDX_MASK
);
1707 static void atl1c_clean_rrd(struct atl1c_rrd_ring
*rrd_ring
,
1708 struct atl1c_recv_ret_status
*rrs
, u16 num
)
1711 /* the relationship between rrd and rfd is one map one */
1712 for (i
= 0; i
< num
; i
++, rrs
= ATL1C_RRD_DESC(rrd_ring
,
1713 rrd_ring
->next_to_clean
)) {
1714 rrs
->word3
&= ~RRS_RXD_UPDATED
;
1715 if (++rrd_ring
->next_to_clean
== rrd_ring
->count
)
1716 rrd_ring
->next_to_clean
= 0;
1720 static void atl1c_clean_rfd(struct atl1c_rfd_ring
*rfd_ring
,
1721 struct atl1c_recv_ret_status
*rrs
, u16 num
)
1725 struct atl1c_buffer
*buffer_info
= rfd_ring
->buffer_info
;
1727 rfd_index
= (rrs
->word0
>> RRS_RX_RFD_INDEX_SHIFT
) &
1728 RRS_RX_RFD_INDEX_MASK
;
1729 for (i
= 0; i
< num
; i
++) {
1730 buffer_info
[rfd_index
].skb
= NULL
;
1731 ATL1C_SET_BUFFER_STATE(&buffer_info
[rfd_index
],
1733 if (++rfd_index
== rfd_ring
->count
)
1736 rfd_ring
->next_to_clean
= rfd_index
;
1739 static void atl1c_clean_rx_irq(struct atl1c_adapter
*adapter
,
1740 int *work_done
, int work_to_do
)
1742 u16 rfd_num
, rfd_index
;
1745 struct pci_dev
*pdev
= adapter
->pdev
;
1746 struct net_device
*netdev
= adapter
->netdev
;
1747 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1748 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1749 struct sk_buff
*skb
;
1750 struct atl1c_recv_ret_status
*rrs
;
1751 struct atl1c_buffer
*buffer_info
;
1754 if (*work_done
>= work_to_do
)
1756 rrs
= ATL1C_RRD_DESC(rrd_ring
, rrd_ring
->next_to_clean
);
1757 if (likely(RRS_RXD_IS_VALID(rrs
->word3
))) {
1758 rfd_num
= (rrs
->word0
>> RRS_RX_RFD_CNT_SHIFT
) &
1759 RRS_RX_RFD_CNT_MASK
;
1760 if (unlikely(rfd_num
!= 1))
1761 /* TODO support mul rfd*/
1762 if (netif_msg_rx_err(adapter
))
1763 dev_warn(&pdev
->dev
,
1764 "Multi rfd not support yet!\n");
1770 atl1c_clean_rrd(rrd_ring
, rrs
, rfd_num
);
1771 if (rrs
->word3
& (RRS_RX_ERR_SUM
| RRS_802_3_LEN_ERR
)) {
1772 atl1c_clean_rfd(rfd_ring
, rrs
, rfd_num
);
1773 if (netif_msg_rx_err(adapter
))
1774 dev_warn(&pdev
->dev
,
1775 "wrong packet! rrs word3 is %x\n",
1780 length
= le16_to_cpu((rrs
->word3
>> RRS_PKT_SIZE_SHIFT
) &
1783 if (likely(rfd_num
== 1)) {
1784 rfd_index
= (rrs
->word0
>> RRS_RX_RFD_INDEX_SHIFT
) &
1785 RRS_RX_RFD_INDEX_MASK
;
1786 buffer_info
= &rfd_ring
->buffer_info
[rfd_index
];
1787 pci_unmap_single(pdev
, buffer_info
->dma
,
1788 buffer_info
->length
, PCI_DMA_FROMDEVICE
);
1789 skb
= buffer_info
->skb
;
1792 if (netif_msg_rx_err(adapter
))
1793 dev_warn(&pdev
->dev
,
1794 "Multi rfd not support yet!\n");
1797 atl1c_clean_rfd(rfd_ring
, rrs
, rfd_num
);
1798 skb_put(skb
, length
- ETH_FCS_LEN
);
1799 skb
->protocol
= eth_type_trans(skb
, netdev
);
1800 atl1c_rx_checksum(adapter
, skb
, rrs
);
1801 if (rrs
->word3
& RRS_VLAN_INS
) {
1804 AT_TAG_TO_VLAN(rrs
->vlan_tag
, vlan
);
1805 vlan
= le16_to_cpu(vlan
);
1806 __vlan_hwaccel_put_tag(skb
, vlan
);
1808 netif_receive_skb(skb
);
1814 atl1c_alloc_rx_buffer(adapter
);
1818 * atl1c_clean - NAPI Rx polling callback
1819 * @adapter: board private structure
1821 static int atl1c_clean(struct napi_struct
*napi
, int budget
)
1823 struct atl1c_adapter
*adapter
=
1824 container_of(napi
, struct atl1c_adapter
, napi
);
1827 /* Keep link state information with original netdev */
1828 if (!netif_carrier_ok(adapter
->netdev
))
1830 /* just enable one RXQ */
1831 atl1c_clean_rx_irq(adapter
, &work_done
, budget
);
1833 if (work_done
< budget
) {
1835 napi_complete(napi
);
1836 adapter
->hw
.intr_mask
|= ISR_RX_PKT
;
1837 AT_WRITE_REG(&adapter
->hw
, REG_IMR
, adapter
->hw
.intr_mask
);
1842 #ifdef CONFIG_NET_POLL_CONTROLLER
1845 * Polling 'interrupt' - used by things like netconsole to send skbs
1846 * without having to re-enable interrupts. It's not called while
1847 * the interrupt routine is executing.
1849 static void atl1c_netpoll(struct net_device
*netdev
)
1851 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
1853 disable_irq(adapter
->pdev
->irq
);
1854 atl1c_intr(adapter
->pdev
->irq
, netdev
);
1855 enable_irq(adapter
->pdev
->irq
);
1859 static inline u16
atl1c_tpd_avail(struct atl1c_adapter
*adapter
, enum atl1c_trans_queue type
)
1861 struct atl1c_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
[type
];
1862 u16 next_to_use
= 0;
1863 u16 next_to_clean
= 0;
1865 next_to_clean
= atomic_read(&tpd_ring
->next_to_clean
);
1866 next_to_use
= tpd_ring
->next_to_use
;
1868 return (u16
)(next_to_clean
> next_to_use
) ?
1869 (next_to_clean
- next_to_use
- 1) :
1870 (tpd_ring
->count
+ next_to_clean
- next_to_use
- 1);
1874 * get next usable tpd
1875 * Note: should call atl1c_tdp_avail to make sure
1876 * there is enough tpd to use
1878 static struct atl1c_tpd_desc
*atl1c_get_tpd(struct atl1c_adapter
*adapter
,
1879 enum atl1c_trans_queue type
)
1881 struct atl1c_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
[type
];
1882 struct atl1c_tpd_desc
*tpd_desc
;
1883 u16 next_to_use
= 0;
1885 next_to_use
= tpd_ring
->next_to_use
;
1886 if (++tpd_ring
->next_to_use
== tpd_ring
->count
)
1887 tpd_ring
->next_to_use
= 0;
1888 tpd_desc
= ATL1C_TPD_DESC(tpd_ring
, next_to_use
);
1889 memset(tpd_desc
, 0, sizeof(struct atl1c_tpd_desc
));
1893 static struct atl1c_buffer
*
1894 atl1c_get_tx_buffer(struct atl1c_adapter
*adapter
, struct atl1c_tpd_desc
*tpd
)
1896 struct atl1c_tpd_ring
*tpd_ring
= adapter
->tpd_ring
;
1898 return &tpd_ring
->buffer_info
[tpd
-
1899 (struct atl1c_tpd_desc
*)tpd_ring
->desc
];
1902 /* Calculate the transmit packet descript needed*/
1903 static u16
atl1c_cal_tpd_req(const struct sk_buff
*skb
)
1906 u16 proto_hdr_len
= 0;
1908 tpd_req
= skb_shinfo(skb
)->nr_frags
+ 1;
1910 if (skb_is_gso(skb
)) {
1911 proto_hdr_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
1912 if (proto_hdr_len
< skb_headlen(skb
))
1914 if (skb_shinfo(skb
)->gso_type
& SKB_GSO_TCPV6
)
1920 static int atl1c_tso_csum(struct atl1c_adapter
*adapter
,
1921 struct sk_buff
*skb
,
1922 struct atl1c_tpd_desc
**tpd
,
1923 enum atl1c_trans_queue type
)
1925 struct pci_dev
*pdev
= adapter
->pdev
;
1928 unsigned short offload_type
;
1931 if (skb_is_gso(skb
)) {
1932 if (skb_header_cloned(skb
)) {
1933 err
= pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
);
1937 offload_type
= skb_shinfo(skb
)->gso_type
;
1939 if (offload_type
& SKB_GSO_TCPV4
) {
1940 real_len
= (((unsigned char *)ip_hdr(skb
) - skb
->data
)
1941 + ntohs(ip_hdr(skb
)->tot_len
));
1943 if (real_len
< skb
->len
)
1944 pskb_trim(skb
, real_len
);
1946 hdr_len
= (skb_transport_offset(skb
) + tcp_hdrlen(skb
));
1947 if (unlikely(skb
->len
== hdr_len
)) {
1948 /* only xsum need */
1949 if (netif_msg_tx_queued(adapter
))
1950 dev_warn(&pdev
->dev
,
1951 "IPV4 tso with zero data??\n");
1954 ip_hdr(skb
)->check
= 0;
1955 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(
1959 (*tpd
)->word1
|= 1 << TPD_IPV4_PACKET_SHIFT
;
1963 if (offload_type
& SKB_GSO_TCPV6
) {
1964 struct atl1c_tpd_ext_desc
*etpd
=
1965 *(struct atl1c_tpd_ext_desc
**)(tpd
);
1967 memset(etpd
, 0, sizeof(struct atl1c_tpd_ext_desc
));
1968 *tpd
= atl1c_get_tpd(adapter
, type
);
1969 ipv6_hdr(skb
)->payload_len
= 0;
1970 /* check payload == 0 byte ? */
1971 hdr_len
= (skb_transport_offset(skb
) + tcp_hdrlen(skb
));
1972 if (unlikely(skb
->len
== hdr_len
)) {
1973 /* only xsum need */
1974 if (netif_msg_tx_queued(adapter
))
1975 dev_warn(&pdev
->dev
,
1976 "IPV6 tso with zero data??\n");
1979 tcp_hdr(skb
)->check
= ~csum_ipv6_magic(
1980 &ipv6_hdr(skb
)->saddr
,
1981 &ipv6_hdr(skb
)->daddr
,
1983 etpd
->word1
|= 1 << TPD_LSO_EN_SHIFT
;
1984 etpd
->word1
|= 1 << TPD_LSO_VER_SHIFT
;
1985 etpd
->pkt_len
= cpu_to_le32(skb
->len
);
1986 (*tpd
)->word1
|= 1 << TPD_LSO_VER_SHIFT
;
1989 (*tpd
)->word1
|= 1 << TPD_LSO_EN_SHIFT
;
1990 (*tpd
)->word1
|= (skb_transport_offset(skb
) & TPD_TCPHDR_OFFSET_MASK
) <<
1991 TPD_TCPHDR_OFFSET_SHIFT
;
1992 (*tpd
)->word1
|= (skb_shinfo(skb
)->gso_size
& TPD_MSS_MASK
) <<
1998 if (likely(skb
->ip_summed
== CHECKSUM_PARTIAL
)) {
2000 cso
= skb_checksum_start_offset(skb
);
2002 if (unlikely(cso
& 0x1)) {
2003 if (netif_msg_tx_err(adapter
))
2004 dev_err(&adapter
->pdev
->dev
,
2005 "payload offset should not an event number\n");
2008 css
= cso
+ skb
->csum_offset
;
2010 (*tpd
)->word1
|= ((cso
>> 1) & TPD_PLOADOFFSET_MASK
) <<
2011 TPD_PLOADOFFSET_SHIFT
;
2012 (*tpd
)->word1
|= ((css
>> 1) & TPD_CCSUM_OFFSET_MASK
) <<
2013 TPD_CCSUM_OFFSET_SHIFT
;
2014 (*tpd
)->word1
|= 1 << TPD_CCSUM_EN_SHIFT
;
2020 static void atl1c_tx_map(struct atl1c_adapter
*adapter
,
2021 struct sk_buff
*skb
, struct atl1c_tpd_desc
*tpd
,
2022 enum atl1c_trans_queue type
)
2024 struct atl1c_tpd_desc
*use_tpd
= NULL
;
2025 struct atl1c_buffer
*buffer_info
= NULL
;
2026 u16 buf_len
= skb_headlen(skb
);
2034 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2035 tso
= (tpd
->word1
>> TPD_LSO_EN_SHIFT
) & TPD_LSO_EN_MASK
;
2038 map_len
= hdr_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
2041 buffer_info
= atl1c_get_tx_buffer(adapter
, use_tpd
);
2042 buffer_info
->length
= map_len
;
2043 buffer_info
->dma
= pci_map_single(adapter
->pdev
,
2044 skb
->data
, hdr_len
, PCI_DMA_TODEVICE
);
2045 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_BUSY
);
2046 ATL1C_SET_PCIMAP_TYPE(buffer_info
, ATL1C_PCIMAP_SINGLE
,
2047 ATL1C_PCIMAP_TODEVICE
);
2048 mapped_len
+= map_len
;
2049 use_tpd
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
2050 use_tpd
->buffer_len
= cpu_to_le16(buffer_info
->length
);
2053 if (mapped_len
< buf_len
) {
2054 /* mapped_len == 0, means we should use the first tpd,
2055 which is given by caller */
2056 if (mapped_len
== 0)
2059 use_tpd
= atl1c_get_tpd(adapter
, type
);
2060 memcpy(use_tpd
, tpd
, sizeof(struct atl1c_tpd_desc
));
2062 buffer_info
= atl1c_get_tx_buffer(adapter
, use_tpd
);
2063 buffer_info
->length
= buf_len
- mapped_len
;
2065 pci_map_single(adapter
->pdev
, skb
->data
+ mapped_len
,
2066 buffer_info
->length
, PCI_DMA_TODEVICE
);
2067 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_BUSY
);
2068 ATL1C_SET_PCIMAP_TYPE(buffer_info
, ATL1C_PCIMAP_SINGLE
,
2069 ATL1C_PCIMAP_TODEVICE
);
2070 use_tpd
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
2071 use_tpd
->buffer_len
= cpu_to_le16(buffer_info
->length
);
2074 for (f
= 0; f
< nr_frags
; f
++) {
2075 struct skb_frag_struct
*frag
;
2077 frag
= &skb_shinfo(skb
)->frags
[f
];
2079 use_tpd
= atl1c_get_tpd(adapter
, type
);
2080 memcpy(use_tpd
, tpd
, sizeof(struct atl1c_tpd_desc
));
2082 buffer_info
= atl1c_get_tx_buffer(adapter
, use_tpd
);
2083 buffer_info
->length
= skb_frag_size(frag
);
2084 buffer_info
->dma
= skb_frag_dma_map(&adapter
->pdev
->dev
,
2086 buffer_info
->length
,
2088 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_BUSY
);
2089 ATL1C_SET_PCIMAP_TYPE(buffer_info
, ATL1C_PCIMAP_PAGE
,
2090 ATL1C_PCIMAP_TODEVICE
);
2091 use_tpd
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
2092 use_tpd
->buffer_len
= cpu_to_le16(buffer_info
->length
);
2096 use_tpd
->word1
|= 1 << TPD_EOP_SHIFT
;
2097 /* The last buffer info contain the skb address,
2098 so it will be free after unmap */
2099 buffer_info
->skb
= skb
;
2102 static void atl1c_tx_queue(struct atl1c_adapter
*adapter
, struct sk_buff
*skb
,
2103 struct atl1c_tpd_desc
*tpd
, enum atl1c_trans_queue type
)
2105 struct atl1c_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
[type
];
2108 reg
= type
== atl1c_trans_high
? REG_TPD_PRI1_PIDX
: REG_TPD_PRI0_PIDX
;
2109 AT_WRITE_REGW(&adapter
->hw
, reg
, tpd_ring
->next_to_use
);
2112 static netdev_tx_t
atl1c_xmit_frame(struct sk_buff
*skb
,
2113 struct net_device
*netdev
)
2115 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2116 unsigned long flags
;
2118 struct atl1c_tpd_desc
*tpd
;
2119 enum atl1c_trans_queue type
= atl1c_trans_normal
;
2121 if (test_bit(__AT_DOWN
, &adapter
->flags
)) {
2122 dev_kfree_skb_any(skb
);
2123 return NETDEV_TX_OK
;
2126 tpd_req
= atl1c_cal_tpd_req(skb
);
2127 if (!spin_trylock_irqsave(&adapter
->tx_lock
, flags
)) {
2128 if (netif_msg_pktdata(adapter
))
2129 dev_info(&adapter
->pdev
->dev
, "tx locked\n");
2130 return NETDEV_TX_LOCKED
;
2133 if (atl1c_tpd_avail(adapter
, type
) < tpd_req
) {
2134 /* no enough descriptor, just stop queue */
2135 netif_stop_queue(netdev
);
2136 spin_unlock_irqrestore(&adapter
->tx_lock
, flags
);
2137 return NETDEV_TX_BUSY
;
2140 tpd
= atl1c_get_tpd(adapter
, type
);
2142 /* do TSO and check sum */
2143 if (atl1c_tso_csum(adapter
, skb
, &tpd
, type
) != 0) {
2144 spin_unlock_irqrestore(&adapter
->tx_lock
, flags
);
2145 dev_kfree_skb_any(skb
);
2146 return NETDEV_TX_OK
;
2149 if (unlikely(vlan_tx_tag_present(skb
))) {
2150 u16 vlan
= vlan_tx_tag_get(skb
);
2153 vlan
= cpu_to_le16(vlan
);
2154 AT_VLAN_TO_TAG(vlan
, tag
);
2155 tpd
->word1
|= 1 << TPD_INS_VTAG_SHIFT
;
2156 tpd
->vlan_tag
= tag
;
2159 if (skb_network_offset(skb
) != ETH_HLEN
)
2160 tpd
->word1
|= 1 << TPD_ETH_TYPE_SHIFT
; /* Ethernet frame */
2162 atl1c_tx_map(adapter
, skb
, tpd
, type
);
2163 atl1c_tx_queue(adapter
, skb
, tpd
, type
);
2165 spin_unlock_irqrestore(&adapter
->tx_lock
, flags
);
2166 return NETDEV_TX_OK
;
2169 static void atl1c_free_irq(struct atl1c_adapter
*adapter
)
2171 struct net_device
*netdev
= adapter
->netdev
;
2173 free_irq(adapter
->pdev
->irq
, netdev
);
2175 if (adapter
->have_msi
)
2176 pci_disable_msi(adapter
->pdev
);
2179 static int atl1c_request_irq(struct atl1c_adapter
*adapter
)
2181 struct pci_dev
*pdev
= adapter
->pdev
;
2182 struct net_device
*netdev
= adapter
->netdev
;
2186 adapter
->have_msi
= true;
2187 err
= pci_enable_msi(adapter
->pdev
);
2189 if (netif_msg_ifup(adapter
))
2191 "Unable to allocate MSI interrupt Error: %d\n",
2193 adapter
->have_msi
= false;
2196 if (!adapter
->have_msi
)
2197 flags
|= IRQF_SHARED
;
2198 err
= request_irq(adapter
->pdev
->irq
, atl1c_intr
, flags
,
2199 netdev
->name
, netdev
);
2201 if (netif_msg_ifup(adapter
))
2203 "Unable to allocate interrupt Error: %d\n",
2205 if (adapter
->have_msi
)
2206 pci_disable_msi(adapter
->pdev
);
2209 if (netif_msg_ifup(adapter
))
2210 dev_dbg(&pdev
->dev
, "atl1c_request_irq OK\n");
2215 static void atl1c_reset_dma_ring(struct atl1c_adapter
*adapter
)
2217 /* release tx-pending skbs and reset tx/rx ring index */
2218 atl1c_clean_tx_ring(adapter
, atl1c_trans_normal
);
2219 atl1c_clean_tx_ring(adapter
, atl1c_trans_high
);
2220 atl1c_clean_rx_ring(adapter
);
2223 static int atl1c_up(struct atl1c_adapter
*adapter
)
2225 struct net_device
*netdev
= adapter
->netdev
;
2228 netif_carrier_off(netdev
);
2230 err
= atl1c_configure(adapter
);
2234 err
= atl1c_request_irq(adapter
);
2238 atl1c_check_link_status(adapter
);
2239 clear_bit(__AT_DOWN
, &adapter
->flags
);
2240 napi_enable(&adapter
->napi
);
2241 atl1c_irq_enable(adapter
);
2242 netif_start_queue(netdev
);
2246 atl1c_clean_rx_ring(adapter
);
2250 static void atl1c_down(struct atl1c_adapter
*adapter
)
2252 struct net_device
*netdev
= adapter
->netdev
;
2254 atl1c_del_timer(adapter
);
2255 adapter
->work_event
= 0; /* clear all event */
2256 /* signal that we're down so the interrupt handler does not
2257 * reschedule our watchdog timer */
2258 set_bit(__AT_DOWN
, &adapter
->flags
);
2259 netif_carrier_off(netdev
);
2260 napi_disable(&adapter
->napi
);
2261 atl1c_irq_disable(adapter
);
2262 atl1c_free_irq(adapter
);
2263 /* disable ASPM if device inactive */
2264 atl1c_disable_l0s_l1(&adapter
->hw
);
2265 /* reset MAC to disable all RX/TX */
2266 atl1c_reset_mac(&adapter
->hw
);
2269 adapter
->link_speed
= SPEED_0
;
2270 adapter
->link_duplex
= -1;
2271 atl1c_reset_dma_ring(adapter
);
2275 * atl1c_open - Called when a network interface is made active
2276 * @netdev: network interface device structure
2278 * Returns 0 on success, negative value on failure
2280 * The open entry point is called when a network interface is made
2281 * active by the system (IFF_UP). At this point all resources needed
2282 * for transmit and receive operations are allocated, the interrupt
2283 * handler is registered with the OS, the watchdog timer is started,
2284 * and the stack is notified that the interface is ready.
2286 static int atl1c_open(struct net_device
*netdev
)
2288 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2291 /* disallow open during test */
2292 if (test_bit(__AT_TESTING
, &adapter
->flags
))
2295 /* allocate rx/tx dma buffer & descriptors */
2296 err
= atl1c_setup_ring_resources(adapter
);
2300 err
= atl1c_up(adapter
);
2307 atl1c_free_irq(adapter
);
2308 atl1c_free_ring_resources(adapter
);
2309 atl1c_reset_mac(&adapter
->hw
);
2314 * atl1c_close - Disables a network interface
2315 * @netdev: network interface device structure
2317 * Returns 0, this is not allowed to fail
2319 * The close entry point is called when an interface is de-activated
2320 * by the OS. The hardware is still under the drivers control, but
2321 * needs to be disabled. A global MAC reset is issued to stop the
2322 * hardware, and all transmit and receive resources are freed.
2324 static int atl1c_close(struct net_device
*netdev
)
2326 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2328 WARN_ON(test_bit(__AT_RESETTING
, &adapter
->flags
));
2329 set_bit(__AT_DOWN
, &adapter
->flags
);
2330 cancel_work_sync(&adapter
->common_task
);
2331 atl1c_down(adapter
);
2332 atl1c_free_ring_resources(adapter
);
2336 static int atl1c_suspend(struct device
*dev
)
2338 struct pci_dev
*pdev
= to_pci_dev(dev
);
2339 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2340 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2341 struct atl1c_hw
*hw
= &adapter
->hw
;
2342 u32 wufc
= adapter
->wol
;
2344 atl1c_disable_l0s_l1(hw
);
2345 if (netif_running(netdev
)) {
2346 WARN_ON(test_bit(__AT_RESETTING
, &adapter
->flags
));
2347 atl1c_down(adapter
);
2349 netif_device_detach(netdev
);
2352 if (atl1c_phy_to_ps_link(hw
) != 0)
2353 dev_dbg(&pdev
->dev
, "phy power saving failed");
2355 atl1c_power_saving(hw
, wufc
);
2360 #ifdef CONFIG_PM_SLEEP
2361 static int atl1c_resume(struct device
*dev
)
2363 struct pci_dev
*pdev
= to_pci_dev(dev
);
2364 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2365 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2367 AT_WRITE_REG(&adapter
->hw
, REG_WOL_CTRL
, 0);
2368 atl1c_reset_pcie(&adapter
->hw
, ATL1C_PCIE_L0S_L1_DISABLE
);
2370 atl1c_phy_reset(&adapter
->hw
);
2371 atl1c_reset_mac(&adapter
->hw
);
2372 atl1c_phy_init(&adapter
->hw
);
2375 AT_READ_REG(&adapter
->hw
, REG_PM_CTRLSTAT
, &pm_data
);
2376 pm_data
&= ~PM_CTRLSTAT_PME_EN
;
2377 AT_WRITE_REG(&adapter
->hw
, REG_PM_CTRLSTAT
, pm_data
);
2380 netif_device_attach(netdev
);
2381 if (netif_running(netdev
))
2388 static void atl1c_shutdown(struct pci_dev
*pdev
)
2390 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2391 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2393 atl1c_suspend(&pdev
->dev
);
2394 pci_wake_from_d3(pdev
, adapter
->wol
);
2395 pci_set_power_state(pdev
, PCI_D3hot
);
2398 static const struct net_device_ops atl1c_netdev_ops
= {
2399 .ndo_open
= atl1c_open
,
2400 .ndo_stop
= atl1c_close
,
2401 .ndo_validate_addr
= eth_validate_addr
,
2402 .ndo_start_xmit
= atl1c_xmit_frame
,
2403 .ndo_set_mac_address
= atl1c_set_mac_addr
,
2404 .ndo_set_rx_mode
= atl1c_set_multi
,
2405 .ndo_change_mtu
= atl1c_change_mtu
,
2406 .ndo_fix_features
= atl1c_fix_features
,
2407 .ndo_set_features
= atl1c_set_features
,
2408 .ndo_do_ioctl
= atl1c_ioctl
,
2409 .ndo_tx_timeout
= atl1c_tx_timeout
,
2410 .ndo_get_stats
= atl1c_get_stats
,
2411 #ifdef CONFIG_NET_POLL_CONTROLLER
2412 .ndo_poll_controller
= atl1c_netpoll
,
2416 static int atl1c_init_netdev(struct net_device
*netdev
, struct pci_dev
*pdev
)
2418 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
2419 pci_set_drvdata(pdev
, netdev
);
2421 netdev
->netdev_ops
= &atl1c_netdev_ops
;
2422 netdev
->watchdog_timeo
= AT_TX_WATCHDOG
;
2423 atl1c_set_ethtool_ops(netdev
);
2425 /* TODO: add when ready */
2426 netdev
->hw_features
= NETIF_F_SG
|
2428 NETIF_F_HW_VLAN_RX
|
2431 netdev
->features
= netdev
->hw_features
|
2437 * atl1c_probe - Device Initialization Routine
2438 * @pdev: PCI device information struct
2439 * @ent: entry in atl1c_pci_tbl
2441 * Returns 0 on success, negative on failure
2443 * atl1c_probe initializes an adapter identified by a pci_dev structure.
2444 * The OS initialization, configuring of the adapter private structure,
2445 * and a hardware reset occur.
2447 static int __devinit
atl1c_probe(struct pci_dev
*pdev
,
2448 const struct pci_device_id
*ent
)
2450 struct net_device
*netdev
;
2451 struct atl1c_adapter
*adapter
;
2452 static int cards_found
;
2456 /* enable device (incl. PCI PM wakeup and hotplug setup) */
2457 err
= pci_enable_device_mem(pdev
);
2459 dev_err(&pdev
->dev
, "cannot enable PCI device\n");
2464 * The atl1c chip can DMA to 64-bit addresses, but it uses a single
2465 * shared register for the high 32 bits, so only a single, aligned,
2466 * 4 GB physical address range can be used at a time.
2468 * Supporting 64-bit DMA on this hardware is more trouble than it's
2469 * worth. It is far easier to limit to 32-bit DMA than update
2470 * various kernel subsystems to support the mechanics required by a
2471 * fixed-high-32-bit system.
2473 if ((pci_set_dma_mask(pdev
, DMA_BIT_MASK(32)) != 0) ||
2474 (pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32)) != 0)) {
2475 dev_err(&pdev
->dev
, "No usable DMA configuration,aborting\n");
2479 err
= pci_request_regions(pdev
, atl1c_driver_name
);
2481 dev_err(&pdev
->dev
, "cannot obtain PCI resources\n");
2485 pci_set_master(pdev
);
2487 netdev
= alloc_etherdev(sizeof(struct atl1c_adapter
));
2488 if (netdev
== NULL
) {
2490 goto err_alloc_etherdev
;
2493 err
= atl1c_init_netdev(netdev
, pdev
);
2495 dev_err(&pdev
->dev
, "init netdevice failed\n");
2496 goto err_init_netdev
;
2498 adapter
= netdev_priv(netdev
);
2499 adapter
->bd_number
= cards_found
;
2500 adapter
->netdev
= netdev
;
2501 adapter
->pdev
= pdev
;
2502 adapter
->hw
.adapter
= adapter
;
2503 adapter
->msg_enable
= netif_msg_init(-1, atl1c_default_msg
);
2504 adapter
->hw
.hw_addr
= ioremap(pci_resource_start(pdev
, 0), pci_resource_len(pdev
, 0));
2505 if (!adapter
->hw
.hw_addr
) {
2507 dev_err(&pdev
->dev
, "cannot map device registers\n");
2512 adapter
->mii
.dev
= netdev
;
2513 adapter
->mii
.mdio_read
= atl1c_mdio_read
;
2514 adapter
->mii
.mdio_write
= atl1c_mdio_write
;
2515 adapter
->mii
.phy_id_mask
= 0x1f;
2516 adapter
->mii
.reg_num_mask
= MDIO_CTRL_REG_MASK
;
2517 netif_napi_add(netdev
, &adapter
->napi
, atl1c_clean
, 64);
2518 setup_timer(&adapter
->phy_config_timer
, atl1c_phy_config
,
2519 (unsigned long)adapter
);
2520 /* setup the private structure */
2521 err
= atl1c_sw_init(adapter
);
2523 dev_err(&pdev
->dev
, "net device private data init failed\n");
2526 atl1c_reset_pcie(&adapter
->hw
, ATL1C_PCIE_L0S_L1_DISABLE
);
2528 /* Init GPHY as early as possible due to power saving issue */
2529 atl1c_phy_reset(&adapter
->hw
);
2531 err
= atl1c_reset_mac(&adapter
->hw
);
2537 /* reset the controller to
2538 * put the device in a known good starting state */
2539 err
= atl1c_phy_init(&adapter
->hw
);
2544 if (atl1c_read_mac_addr(&adapter
->hw
)) {
2545 /* got a random MAC address, set NET_ADDR_RANDOM to netdev */
2546 netdev
->addr_assign_type
|= NET_ADDR_RANDOM
;
2548 memcpy(netdev
->dev_addr
, adapter
->hw
.mac_addr
, netdev
->addr_len
);
2549 memcpy(netdev
->perm_addr
, adapter
->hw
.mac_addr
, netdev
->addr_len
);
2550 if (netif_msg_probe(adapter
))
2551 dev_dbg(&pdev
->dev
, "mac address : %pM\n",
2552 adapter
->hw
.mac_addr
);
2554 atl1c_hw_set_mac_addr(&adapter
->hw
, adapter
->hw
.mac_addr
);
2555 INIT_WORK(&adapter
->common_task
, atl1c_common_task
);
2556 adapter
->work_event
= 0;
2557 err
= register_netdev(netdev
);
2559 dev_err(&pdev
->dev
, "register netdevice failed\n");
2563 if (netif_msg_probe(adapter
))
2564 dev_info(&pdev
->dev
, "version %s\n", ATL1C_DRV_VERSION
);
2571 iounmap(adapter
->hw
.hw_addr
);
2574 free_netdev(netdev
);
2576 pci_release_regions(pdev
);
2579 pci_disable_device(pdev
);
2584 * atl1c_remove - Device Removal Routine
2585 * @pdev: PCI device information struct
2587 * atl1c_remove is called by the PCI subsystem to alert the driver
2588 * that it should release a PCI device. The could be caused by a
2589 * Hot-Plug event, or because the driver is going to be removed from
2592 static void __devexit
atl1c_remove(struct pci_dev
*pdev
)
2594 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2595 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2597 unregister_netdev(netdev
);
2598 /* restore permanent address */
2599 atl1c_hw_set_mac_addr(&adapter
->hw
, adapter
->hw
.perm_mac_addr
);
2600 atl1c_phy_disable(&adapter
->hw
);
2602 iounmap(adapter
->hw
.hw_addr
);
2604 pci_release_regions(pdev
);
2605 pci_disable_device(pdev
);
2606 free_netdev(netdev
);
2610 * atl1c_io_error_detected - called when PCI error is detected
2611 * @pdev: Pointer to PCI device
2612 * @state: The current pci connection state
2614 * This function is called after a PCI bus error affecting
2615 * this device has been detected.
2617 static pci_ers_result_t
atl1c_io_error_detected(struct pci_dev
*pdev
,
2618 pci_channel_state_t state
)
2620 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2621 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2623 netif_device_detach(netdev
);
2625 if (state
== pci_channel_io_perm_failure
)
2626 return PCI_ERS_RESULT_DISCONNECT
;
2628 if (netif_running(netdev
))
2629 atl1c_down(adapter
);
2631 pci_disable_device(pdev
);
2633 /* Request a slot slot reset. */
2634 return PCI_ERS_RESULT_NEED_RESET
;
2638 * atl1c_io_slot_reset - called after the pci bus has been reset.
2639 * @pdev: Pointer to PCI device
2641 * Restart the card from scratch, as if from a cold-boot. Implementation
2642 * resembles the first-half of the e1000_resume routine.
2644 static pci_ers_result_t
atl1c_io_slot_reset(struct pci_dev
*pdev
)
2646 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2647 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2649 if (pci_enable_device(pdev
)) {
2650 if (netif_msg_hw(adapter
))
2652 "Cannot re-enable PCI device after reset\n");
2653 return PCI_ERS_RESULT_DISCONNECT
;
2655 pci_set_master(pdev
);
2657 pci_enable_wake(pdev
, PCI_D3hot
, 0);
2658 pci_enable_wake(pdev
, PCI_D3cold
, 0);
2660 atl1c_reset_mac(&adapter
->hw
);
2662 return PCI_ERS_RESULT_RECOVERED
;
2666 * atl1c_io_resume - called when traffic can start flowing again.
2667 * @pdev: Pointer to PCI device
2669 * This callback is called when the error recovery driver tells us that
2670 * its OK to resume normal operation. Implementation resembles the
2671 * second-half of the atl1c_resume routine.
2673 static void atl1c_io_resume(struct pci_dev
*pdev
)
2675 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2676 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2678 if (netif_running(netdev
)) {
2679 if (atl1c_up(adapter
)) {
2680 if (netif_msg_hw(adapter
))
2682 "Cannot bring device back up after reset\n");
2687 netif_device_attach(netdev
);
2690 static struct pci_error_handlers atl1c_err_handler
= {
2691 .error_detected
= atl1c_io_error_detected
,
2692 .slot_reset
= atl1c_io_slot_reset
,
2693 .resume
= atl1c_io_resume
,
2696 static SIMPLE_DEV_PM_OPS(atl1c_pm_ops
, atl1c_suspend
, atl1c_resume
);
2698 static struct pci_driver atl1c_driver
= {
2699 .name
= atl1c_driver_name
,
2700 .id_table
= atl1c_pci_tbl
,
2701 .probe
= atl1c_probe
,
2702 .remove
= __devexit_p(atl1c_remove
),
2703 .shutdown
= atl1c_shutdown
,
2704 .err_handler
= &atl1c_err_handler
,
2705 .driver
.pm
= &atl1c_pm_ops
,
2709 * atl1c_init_module - Driver Registration Routine
2711 * atl1c_init_module is the first routine called when the driver is
2712 * loaded. All it does is register with the PCI subsystem.
2714 static int __init
atl1c_init_module(void)
2716 return pci_register_driver(&atl1c_driver
);
2720 * atl1c_exit_module - Driver Exit Cleanup Routine
2722 * atl1c_exit_module is called just before the driver is removed
2725 static void __exit
atl1c_exit_module(void)
2727 pci_unregister_driver(&atl1c_driver
);
2730 module_init(atl1c_init_module
);
2731 module_exit(atl1c_exit_module
);