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 hw
->hibernate
= true;
265 if (atl1c_reset_mac(hw
) != 0)
266 if (netif_msg_hw(adapter
))
267 dev_warn(&pdev
->dev
, "reset mac failed\n");
268 atl1c_set_aspm(hw
, SPEED_0
);
269 atl1c_post_phy_linkchg(hw
, SPEED_0
);
270 atl1c_reset_dma_ring(adapter
);
271 atl1c_configure(adapter
);
274 hw
->hibernate
= false;
275 spin_lock_irqsave(&adapter
->mdio_lock
, flags
);
276 err
= atl1c_get_speed_and_duplex(hw
, &speed
, &duplex
);
277 spin_unlock_irqrestore(&adapter
->mdio_lock
, flags
);
280 /* link result is our setting */
281 if (adapter
->link_speed
!= speed
||
282 adapter
->link_duplex
!= duplex
) {
283 adapter
->link_speed
= speed
;
284 adapter
->link_duplex
= duplex
;
285 atl1c_set_aspm(hw
, speed
);
286 atl1c_post_phy_linkchg(hw
, speed
);
287 atl1c_start_mac(adapter
);
288 if (netif_msg_link(adapter
))
290 "%s: %s NIC Link is Up<%d Mbps %s>\n",
291 atl1c_driver_name
, netdev
->name
,
293 adapter
->link_duplex
== FULL_DUPLEX
?
294 "Full Duplex" : "Half Duplex");
296 if (!netif_carrier_ok(netdev
))
297 netif_carrier_on(netdev
);
301 static void atl1c_link_chg_event(struct atl1c_adapter
*adapter
)
303 struct net_device
*netdev
= adapter
->netdev
;
304 struct pci_dev
*pdev
= adapter
->pdev
;
308 spin_lock(&adapter
->mdio_lock
);
309 atl1c_read_phy_reg(&adapter
->hw
, MII_BMSR
, &phy_data
);
310 atl1c_read_phy_reg(&adapter
->hw
, MII_BMSR
, &phy_data
);
311 spin_unlock(&adapter
->mdio_lock
);
312 link_up
= phy_data
& BMSR_LSTATUS
;
313 /* notify upper layer link down ASAP */
315 if (netif_carrier_ok(netdev
)) {
316 /* old link state: Up */
317 netif_carrier_off(netdev
);
318 if (netif_msg_link(adapter
))
320 "%s: %s NIC Link is Down\n",
321 atl1c_driver_name
, netdev
->name
);
322 adapter
->link_speed
= SPEED_0
;
326 set_bit(ATL1C_WORK_EVENT_LINK_CHANGE
, &adapter
->work_event
);
327 schedule_work(&adapter
->common_task
);
330 static void atl1c_common_task(struct work_struct
*work
)
332 struct atl1c_adapter
*adapter
;
333 struct net_device
*netdev
;
335 adapter
= container_of(work
, struct atl1c_adapter
, common_task
);
336 netdev
= adapter
->netdev
;
338 if (test_bit(__AT_DOWN
, &adapter
->flags
))
341 if (test_and_clear_bit(ATL1C_WORK_EVENT_RESET
, &adapter
->work_event
)) {
342 netif_device_detach(netdev
);
345 netif_device_attach(netdev
);
348 if (test_and_clear_bit(ATL1C_WORK_EVENT_LINK_CHANGE
,
349 &adapter
->work_event
)) {
350 atl1c_irq_disable(adapter
);
351 atl1c_check_link_status(adapter
);
352 atl1c_irq_enable(adapter
);
357 static void atl1c_del_timer(struct atl1c_adapter
*adapter
)
359 del_timer_sync(&adapter
->phy_config_timer
);
364 * atl1c_tx_timeout - Respond to a Tx Hang
365 * @netdev: network interface device structure
367 static void atl1c_tx_timeout(struct net_device
*netdev
)
369 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
371 /* Do the reset outside of interrupt context */
372 set_bit(ATL1C_WORK_EVENT_RESET
, &adapter
->work_event
);
373 schedule_work(&adapter
->common_task
);
377 * atl1c_set_multi - Multicast and Promiscuous mode set
378 * @netdev: network interface device structure
380 * The set_multi entry point is called whenever the multicast address
381 * list or the network interface flags are updated. This routine is
382 * responsible for configuring the hardware for proper multicast,
383 * promiscuous mode, and all-multi behavior.
385 static void atl1c_set_multi(struct net_device
*netdev
)
387 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
388 struct atl1c_hw
*hw
= &adapter
->hw
;
389 struct netdev_hw_addr
*ha
;
393 /* Check for Promiscuous and All Multicast modes */
394 AT_READ_REG(hw
, REG_MAC_CTRL
, &mac_ctrl_data
);
396 if (netdev
->flags
& IFF_PROMISC
) {
397 mac_ctrl_data
|= MAC_CTRL_PROMIS_EN
;
398 } else if (netdev
->flags
& IFF_ALLMULTI
) {
399 mac_ctrl_data
|= MAC_CTRL_MC_ALL_EN
;
400 mac_ctrl_data
&= ~MAC_CTRL_PROMIS_EN
;
402 mac_ctrl_data
&= ~(MAC_CTRL_PROMIS_EN
| MAC_CTRL_MC_ALL_EN
);
405 AT_WRITE_REG(hw
, REG_MAC_CTRL
, mac_ctrl_data
);
407 /* clear the old settings from the multicast hash table */
408 AT_WRITE_REG(hw
, REG_RX_HASH_TABLE
, 0);
409 AT_WRITE_REG_ARRAY(hw
, REG_RX_HASH_TABLE
, 1, 0);
411 /* comoute mc addresses' hash value ,and put it into hash table */
412 netdev_for_each_mc_addr(ha
, netdev
) {
413 hash_value
= atl1c_hash_mc_addr(hw
, ha
->addr
);
414 atl1c_hash_set(hw
, hash_value
);
418 static void __atl1c_vlan_mode(netdev_features_t features
, u32
*mac_ctrl_data
)
420 if (features
& NETIF_F_HW_VLAN_RX
) {
421 /* enable VLAN tag insert/strip */
422 *mac_ctrl_data
|= MAC_CTRL_RMV_VLAN
;
424 /* disable VLAN tag insert/strip */
425 *mac_ctrl_data
&= ~MAC_CTRL_RMV_VLAN
;
429 static void atl1c_vlan_mode(struct net_device
*netdev
,
430 netdev_features_t features
)
432 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
433 struct pci_dev
*pdev
= adapter
->pdev
;
434 u32 mac_ctrl_data
= 0;
436 if (netif_msg_pktdata(adapter
))
437 dev_dbg(&pdev
->dev
, "atl1c_vlan_mode\n");
439 atl1c_irq_disable(adapter
);
440 AT_READ_REG(&adapter
->hw
, REG_MAC_CTRL
, &mac_ctrl_data
);
441 __atl1c_vlan_mode(features
, &mac_ctrl_data
);
442 AT_WRITE_REG(&adapter
->hw
, REG_MAC_CTRL
, mac_ctrl_data
);
443 atl1c_irq_enable(adapter
);
446 static void atl1c_restore_vlan(struct atl1c_adapter
*adapter
)
448 struct pci_dev
*pdev
= adapter
->pdev
;
450 if (netif_msg_pktdata(adapter
))
451 dev_dbg(&pdev
->dev
, "atl1c_restore_vlan\n");
452 atl1c_vlan_mode(adapter
->netdev
, adapter
->netdev
->features
);
456 * atl1c_set_mac - Change the Ethernet Address of the NIC
457 * @netdev: network interface device structure
458 * @p: pointer to an address structure
460 * Returns 0 on success, negative on failure
462 static int atl1c_set_mac_addr(struct net_device
*netdev
, void *p
)
464 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
465 struct sockaddr
*addr
= p
;
467 if (!is_valid_ether_addr(addr
->sa_data
))
468 return -EADDRNOTAVAIL
;
470 if (netif_running(netdev
))
473 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
474 memcpy(adapter
->hw
.mac_addr
, addr
->sa_data
, netdev
->addr_len
);
475 netdev
->addr_assign_type
&= ~NET_ADDR_RANDOM
;
477 atl1c_hw_set_mac_addr(&adapter
->hw
, adapter
->hw
.mac_addr
);
482 static void atl1c_set_rxbufsize(struct atl1c_adapter
*adapter
,
483 struct net_device
*dev
)
487 adapter
->rx_buffer_len
= mtu
> AT_RX_BUF_SIZE
?
488 roundup(mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
, 8) : AT_RX_BUF_SIZE
;
491 static netdev_features_t
atl1c_fix_features(struct net_device
*netdev
,
492 netdev_features_t features
)
495 * Since there is no support for separate rx/tx vlan accel
496 * enable/disable make sure tx flag is always in same state as rx.
498 if (features
& NETIF_F_HW_VLAN_RX
)
499 features
|= NETIF_F_HW_VLAN_TX
;
501 features
&= ~NETIF_F_HW_VLAN_TX
;
503 if (netdev
->mtu
> MAX_TSO_FRAME_SIZE
)
504 features
&= ~(NETIF_F_TSO
| NETIF_F_TSO6
);
509 static int atl1c_set_features(struct net_device
*netdev
,
510 netdev_features_t features
)
512 netdev_features_t changed
= netdev
->features
^ features
;
514 if (changed
& NETIF_F_HW_VLAN_RX
)
515 atl1c_vlan_mode(netdev
, features
);
521 * atl1c_change_mtu - Change the Maximum Transfer Unit
522 * @netdev: network interface device structure
523 * @new_mtu: new value for maximum frame size
525 * Returns 0 on success, negative on failure
527 static int atl1c_change_mtu(struct net_device
*netdev
, int new_mtu
)
529 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
530 struct atl1c_hw
*hw
= &adapter
->hw
;
531 int old_mtu
= netdev
->mtu
;
532 int max_frame
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
534 /* Fast Ethernet controller doesn't support jumbo packet */
535 if (((hw
->nic_type
== athr_l2c
||
536 hw
->nic_type
== athr_l2c_b
||
537 hw
->nic_type
== athr_l2c_b2
) && new_mtu
> ETH_DATA_LEN
) ||
538 max_frame
< ETH_ZLEN
+ ETH_FCS_LEN
||
539 max_frame
> MAX_JUMBO_FRAME_SIZE
) {
540 if (netif_msg_link(adapter
))
541 dev_warn(&adapter
->pdev
->dev
, "invalid MTU setting\n");
545 if (old_mtu
!= new_mtu
&& netif_running(netdev
)) {
546 while (test_and_set_bit(__AT_RESETTING
, &adapter
->flags
))
548 netdev
->mtu
= new_mtu
;
549 adapter
->hw
.max_frame_size
= new_mtu
;
550 atl1c_set_rxbufsize(adapter
, netdev
);
552 netdev_update_features(netdev
);
554 clear_bit(__AT_RESETTING
, &adapter
->flags
);
560 * caller should hold mdio_lock
562 static int atl1c_mdio_read(struct net_device
*netdev
, int phy_id
, int reg_num
)
564 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
567 atl1c_read_phy_reg(&adapter
->hw
, reg_num
, &result
);
571 static void atl1c_mdio_write(struct net_device
*netdev
, int phy_id
,
572 int reg_num
, int val
)
574 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
576 atl1c_write_phy_reg(&adapter
->hw
, reg_num
, val
);
579 static int atl1c_mii_ioctl(struct net_device
*netdev
,
580 struct ifreq
*ifr
, int cmd
)
582 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
583 struct pci_dev
*pdev
= adapter
->pdev
;
584 struct mii_ioctl_data
*data
= if_mii(ifr
);
588 if (!netif_running(netdev
))
591 spin_lock_irqsave(&adapter
->mdio_lock
, flags
);
598 if (atl1c_read_phy_reg(&adapter
->hw
, data
->reg_num
& 0x1F,
606 if (data
->reg_num
& ~(0x1F)) {
611 dev_dbg(&pdev
->dev
, "<atl1c_mii_ioctl> write %x %x",
612 data
->reg_num
, data
->val_in
);
613 if (atl1c_write_phy_reg(&adapter
->hw
,
614 data
->reg_num
, data
->val_in
)) {
621 retval
= -EOPNOTSUPP
;
625 spin_unlock_irqrestore(&adapter
->mdio_lock
, flags
);
629 static int atl1c_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
635 return atl1c_mii_ioctl(netdev
, ifr
, cmd
);
642 * atl1c_alloc_queues - Allocate memory for all rings
643 * @adapter: board private structure to initialize
646 static int __devinit
atl1c_alloc_queues(struct atl1c_adapter
*adapter
)
651 static void atl1c_set_mac_type(struct atl1c_hw
*hw
)
653 switch (hw
->device_id
) {
654 case PCI_DEVICE_ID_ATTANSIC_L2C
:
655 hw
->nic_type
= athr_l2c
;
657 case PCI_DEVICE_ID_ATTANSIC_L1C
:
658 hw
->nic_type
= athr_l1c
;
660 case PCI_DEVICE_ID_ATHEROS_L2C_B
:
661 hw
->nic_type
= athr_l2c_b
;
663 case PCI_DEVICE_ID_ATHEROS_L2C_B2
:
664 hw
->nic_type
= athr_l2c_b2
;
666 case PCI_DEVICE_ID_ATHEROS_L1D
:
667 hw
->nic_type
= athr_l1d
;
669 case PCI_DEVICE_ID_ATHEROS_L1D_2_0
:
670 hw
->nic_type
= athr_l1d_2
;
677 static int atl1c_setup_mac_funcs(struct atl1c_hw
*hw
)
681 atl1c_set_mac_type(hw
);
682 AT_READ_REG(hw
, REG_LINK_CTRL
, &link_ctrl_data
);
684 hw
->ctrl_flags
= ATL1C_INTR_MODRT_ENABLE
|
685 ATL1C_TXQ_MODE_ENHANCE
;
686 hw
->ctrl_flags
|= ATL1C_ASPM_L0S_SUPPORT
|
687 ATL1C_ASPM_L1_SUPPORT
;
688 hw
->ctrl_flags
|= ATL1C_ASPM_CTRL_MON
;
690 if (hw
->nic_type
== athr_l1c
||
691 hw
->nic_type
== athr_l1d
||
692 hw
->nic_type
== athr_l1d_2
)
693 hw
->link_cap_flags
|= ATL1C_LINK_CAP_1000M
;
697 struct atl1c_platform_patch
{
703 #define ATL1C_LINK_PATCH 0x1
705 static const struct atl1c_platform_patch plats
[] __devinitdata
= {
706 {0x2060, 0xC1, 0x1019, 0x8152, 0x1},
707 {0x2060, 0xC1, 0x1019, 0x2060, 0x1},
708 {0x2060, 0xC1, 0x1019, 0xE000, 0x1},
709 {0x2062, 0xC0, 0x1019, 0x8152, 0x1},
710 {0x2062, 0xC0, 0x1019, 0x2062, 0x1},
711 {0x2062, 0xC0, 0x1458, 0xE000, 0x1},
712 {0x2062, 0xC1, 0x1019, 0x8152, 0x1},
713 {0x2062, 0xC1, 0x1019, 0x2062, 0x1},
714 {0x2062, 0xC1, 0x1458, 0xE000, 0x1},
715 {0x2062, 0xC1, 0x1565, 0x2802, 0x1},
716 {0x2062, 0xC1, 0x1565, 0x2801, 0x1},
717 {0x1073, 0xC0, 0x1019, 0x8151, 0x1},
718 {0x1073, 0xC0, 0x1019, 0x1073, 0x1},
719 {0x1073, 0xC0, 0x1458, 0xE000, 0x1},
720 {0x1083, 0xC0, 0x1458, 0xE000, 0x1},
721 {0x1083, 0xC0, 0x1019, 0x8151, 0x1},
722 {0x1083, 0xC0, 0x1019, 0x1083, 0x1},
723 {0x1083, 0xC0, 0x1462, 0x7680, 0x1},
724 {0x1083, 0xC0, 0x1565, 0x2803, 0x1},
728 static void __devinit
atl1c_patch_assign(struct atl1c_hw
*hw
)
730 struct pci_dev
*pdev
= hw
->adapter
->pdev
;
734 hw
->msi_lnkpatch
= false;
736 while (plats
[i
].pci_did
!= 0) {
737 if (plats
[i
].pci_did
== hw
->device_id
&&
738 plats
[i
].pci_revid
== hw
->revision_id
&&
739 plats
[i
].subsystem_vid
== hw
->subsystem_vendor_id
&&
740 plats
[i
].subsystem_did
== hw
->subsystem_id
) {
741 if (plats
[i
].patch_flag
& ATL1C_LINK_PATCH
)
742 hw
->msi_lnkpatch
= true;
747 if (hw
->device_id
== PCI_DEVICE_ID_ATHEROS_L2C_B2
&&
748 hw
->revision_id
== L2CB_V21
) {
749 /* config acess mode */
750 pci_write_config_dword(pdev
, REG_PCIE_IND_ACC_ADDR
,
751 REG_PCIE_DEV_MISC_CTRL
);
752 pci_read_config_dword(pdev
, REG_PCIE_IND_ACC_DATA
, &misc_ctrl
);
754 pci_write_config_dword(pdev
, REG_PCIE_IND_ACC_ADDR
,
755 REG_PCIE_DEV_MISC_CTRL
);
756 pci_write_config_dword(pdev
, REG_PCIE_IND_ACC_DATA
, misc_ctrl
);
760 * atl1c_sw_init - Initialize general software structures (struct atl1c_adapter)
761 * @adapter: board private structure to initialize
763 * atl1c_sw_init initializes the Adapter private data structure.
764 * Fields are initialized based on PCI device information and
765 * OS network device settings (MTU size).
767 static int __devinit
atl1c_sw_init(struct atl1c_adapter
*adapter
)
769 struct atl1c_hw
*hw
= &adapter
->hw
;
770 struct pci_dev
*pdev
= adapter
->pdev
;
775 device_set_wakeup_enable(&pdev
->dev
, false);
776 adapter
->link_speed
= SPEED_0
;
777 adapter
->link_duplex
= FULL_DUPLEX
;
778 adapter
->tpd_ring
[0].count
= 1024;
779 adapter
->rfd_ring
.count
= 512;
781 hw
->vendor_id
= pdev
->vendor
;
782 hw
->device_id
= pdev
->device
;
783 hw
->subsystem_vendor_id
= pdev
->subsystem_vendor
;
784 hw
->subsystem_id
= pdev
->subsystem_device
;
785 pci_read_config_dword(pdev
, PCI_CLASS_REVISION
, &revision
);
786 hw
->revision_id
= revision
& 0xFF;
787 /* before link up, we assume hibernate is true */
788 hw
->hibernate
= true;
789 hw
->media_type
= MEDIA_TYPE_AUTO_SENSOR
;
790 if (atl1c_setup_mac_funcs(hw
) != 0) {
791 dev_err(&pdev
->dev
, "set mac function pointers failed\n");
794 atl1c_patch_assign(hw
);
796 hw
->intr_mask
= IMR_NORMAL_MASK
;
797 hw
->phy_configured
= false;
798 hw
->preamble_len
= 7;
799 hw
->max_frame_size
= adapter
->netdev
->mtu
;
800 hw
->autoneg_advertised
= ADVERTISED_Autoneg
;
801 hw
->indirect_tab
= 0xE4E4E4E4;
804 hw
->ict
= 50000; /* 100ms */
805 hw
->smb_timer
= 200000; /* 400ms */
811 hw
->dma_order
= atl1c_dma_ord_out
;
812 hw
->dmar_block
= atl1c_dma_req_1024
;
814 if (atl1c_alloc_queues(adapter
)) {
815 dev_err(&pdev
->dev
, "Unable to allocate memory for queues\n");
819 atl1c_set_rxbufsize(adapter
, adapter
->netdev
);
820 atomic_set(&adapter
->irq_sem
, 1);
821 spin_lock_init(&adapter
->mdio_lock
);
822 spin_lock_init(&adapter
->tx_lock
);
823 set_bit(__AT_DOWN
, &adapter
->flags
);
828 static inline void atl1c_clean_buffer(struct pci_dev
*pdev
,
829 struct atl1c_buffer
*buffer_info
, int in_irq
)
832 if (buffer_info
->flags
& ATL1C_BUFFER_FREE
)
834 if (buffer_info
->dma
) {
835 if (buffer_info
->flags
& ATL1C_PCIMAP_FROMDEVICE
)
836 pci_driection
= PCI_DMA_FROMDEVICE
;
838 pci_driection
= PCI_DMA_TODEVICE
;
840 if (buffer_info
->flags
& ATL1C_PCIMAP_SINGLE
)
841 pci_unmap_single(pdev
, buffer_info
->dma
,
842 buffer_info
->length
, pci_driection
);
843 else if (buffer_info
->flags
& ATL1C_PCIMAP_PAGE
)
844 pci_unmap_page(pdev
, buffer_info
->dma
,
845 buffer_info
->length
, pci_driection
);
847 if (buffer_info
->skb
) {
849 dev_kfree_skb_irq(buffer_info
->skb
);
851 dev_kfree_skb(buffer_info
->skb
);
853 buffer_info
->dma
= 0;
854 buffer_info
->skb
= NULL
;
855 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_FREE
);
858 * atl1c_clean_tx_ring - Free Tx-skb
859 * @adapter: board private structure
861 static void atl1c_clean_tx_ring(struct atl1c_adapter
*adapter
,
862 enum atl1c_trans_queue type
)
864 struct atl1c_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
[type
];
865 struct atl1c_buffer
*buffer_info
;
866 struct pci_dev
*pdev
= adapter
->pdev
;
867 u16 index
, ring_count
;
869 ring_count
= tpd_ring
->count
;
870 for (index
= 0; index
< ring_count
; index
++) {
871 buffer_info
= &tpd_ring
->buffer_info
[index
];
872 atl1c_clean_buffer(pdev
, buffer_info
, 0);
875 /* Zero out Tx-buffers */
876 memset(tpd_ring
->desc
, 0, sizeof(struct atl1c_tpd_desc
) *
878 atomic_set(&tpd_ring
->next_to_clean
, 0);
879 tpd_ring
->next_to_use
= 0;
883 * atl1c_clean_rx_ring - Free rx-reservation skbs
884 * @adapter: board private structure
886 static void atl1c_clean_rx_ring(struct atl1c_adapter
*adapter
)
888 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
889 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
890 struct atl1c_buffer
*buffer_info
;
891 struct pci_dev
*pdev
= adapter
->pdev
;
894 for (j
= 0; j
< rfd_ring
->count
; j
++) {
895 buffer_info
= &rfd_ring
->buffer_info
[j
];
896 atl1c_clean_buffer(pdev
, buffer_info
, 0);
898 /* zero out the descriptor ring */
899 memset(rfd_ring
->desc
, 0, rfd_ring
->size
);
900 rfd_ring
->next_to_clean
= 0;
901 rfd_ring
->next_to_use
= 0;
902 rrd_ring
->next_to_use
= 0;
903 rrd_ring
->next_to_clean
= 0;
907 * Read / Write Ptr Initialize:
909 static void atl1c_init_ring_ptrs(struct atl1c_adapter
*adapter
)
911 struct atl1c_tpd_ring
*tpd_ring
= adapter
->tpd_ring
;
912 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
913 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
914 struct atl1c_buffer
*buffer_info
;
917 for (i
= 0; i
< AT_MAX_TRANSMIT_QUEUE
; i
++) {
918 tpd_ring
[i
].next_to_use
= 0;
919 atomic_set(&tpd_ring
[i
].next_to_clean
, 0);
920 buffer_info
= tpd_ring
[i
].buffer_info
;
921 for (j
= 0; j
< tpd_ring
->count
; j
++)
922 ATL1C_SET_BUFFER_STATE(&buffer_info
[i
],
925 rfd_ring
->next_to_use
= 0;
926 rfd_ring
->next_to_clean
= 0;
927 rrd_ring
->next_to_use
= 0;
928 rrd_ring
->next_to_clean
= 0;
929 for (j
= 0; j
< rfd_ring
->count
; j
++) {
930 buffer_info
= &rfd_ring
->buffer_info
[j
];
931 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_FREE
);
936 * atl1c_free_ring_resources - Free Tx / RX descriptor Resources
937 * @adapter: board private structure
939 * Free all transmit software resources
941 static void atl1c_free_ring_resources(struct atl1c_adapter
*adapter
)
943 struct pci_dev
*pdev
= adapter
->pdev
;
945 pci_free_consistent(pdev
, adapter
->ring_header
.size
,
946 adapter
->ring_header
.desc
,
947 adapter
->ring_header
.dma
);
948 adapter
->ring_header
.desc
= NULL
;
950 /* Note: just free tdp_ring.buffer_info,
951 * it contain rfd_ring.buffer_info, do not double free */
952 if (adapter
->tpd_ring
[0].buffer_info
) {
953 kfree(adapter
->tpd_ring
[0].buffer_info
);
954 adapter
->tpd_ring
[0].buffer_info
= NULL
;
959 * atl1c_setup_mem_resources - allocate Tx / RX descriptor resources
960 * @adapter: board private structure
962 * Return 0 on success, negative on failure
964 static int atl1c_setup_ring_resources(struct atl1c_adapter
*adapter
)
966 struct pci_dev
*pdev
= adapter
->pdev
;
967 struct atl1c_tpd_ring
*tpd_ring
= adapter
->tpd_ring
;
968 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
969 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
970 struct atl1c_ring_header
*ring_header
= &adapter
->ring_header
;
974 int rx_desc_count
= 0;
977 rrd_ring
->count
= rfd_ring
->count
;
978 for (i
= 1; i
< AT_MAX_TRANSMIT_QUEUE
; i
++)
979 tpd_ring
[i
].count
= tpd_ring
[0].count
;
981 /* 2 tpd queue, one high priority queue,
982 * another normal priority queue */
983 size
= sizeof(struct atl1c_buffer
) * (tpd_ring
->count
* 2 +
985 tpd_ring
->buffer_info
= kzalloc(size
, GFP_KERNEL
);
986 if (unlikely(!tpd_ring
->buffer_info
)) {
987 dev_err(&pdev
->dev
, "kzalloc failed, size = %d\n",
991 for (i
= 0; i
< AT_MAX_TRANSMIT_QUEUE
; i
++) {
992 tpd_ring
[i
].buffer_info
=
993 (tpd_ring
->buffer_info
+ count
);
994 count
+= tpd_ring
[i
].count
;
997 rfd_ring
->buffer_info
=
998 (tpd_ring
->buffer_info
+ count
);
999 count
+= rfd_ring
->count
;
1000 rx_desc_count
+= rfd_ring
->count
;
1003 * real ring DMA buffer
1004 * each ring/block may need up to 8 bytes for alignment, hence the
1005 * additional bytes tacked onto the end.
1007 ring_header
->size
= size
=
1008 sizeof(struct atl1c_tpd_desc
) * tpd_ring
->count
* 2 +
1009 sizeof(struct atl1c_rx_free_desc
) * rx_desc_count
+
1010 sizeof(struct atl1c_recv_ret_status
) * rx_desc_count
+
1013 ring_header
->desc
= pci_alloc_consistent(pdev
, ring_header
->size
,
1015 if (unlikely(!ring_header
->desc
)) {
1016 dev_err(&pdev
->dev
, "pci_alloc_consistend failed\n");
1019 memset(ring_header
->desc
, 0, ring_header
->size
);
1022 tpd_ring
[0].dma
= roundup(ring_header
->dma
, 8);
1023 offset
= tpd_ring
[0].dma
- ring_header
->dma
;
1024 for (i
= 0; i
< AT_MAX_TRANSMIT_QUEUE
; i
++) {
1025 tpd_ring
[i
].dma
= ring_header
->dma
+ offset
;
1026 tpd_ring
[i
].desc
= (u8
*) ring_header
->desc
+ offset
;
1028 sizeof(struct atl1c_tpd_desc
) * tpd_ring
[i
].count
;
1029 offset
+= roundup(tpd_ring
[i
].size
, 8);
1032 rfd_ring
->dma
= ring_header
->dma
+ offset
;
1033 rfd_ring
->desc
= (u8
*) ring_header
->desc
+ offset
;
1034 rfd_ring
->size
= sizeof(struct atl1c_rx_free_desc
) * rfd_ring
->count
;
1035 offset
+= roundup(rfd_ring
->size
, 8);
1038 rrd_ring
->dma
= ring_header
->dma
+ offset
;
1039 rrd_ring
->desc
= (u8
*) ring_header
->desc
+ offset
;
1040 rrd_ring
->size
= sizeof(struct atl1c_recv_ret_status
) *
1042 offset
+= roundup(rrd_ring
->size
, 8);
1047 kfree(tpd_ring
->buffer_info
);
1051 static void atl1c_configure_des_ring(struct atl1c_adapter
*adapter
)
1053 struct atl1c_hw
*hw
= &adapter
->hw
;
1054 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1055 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1056 struct atl1c_tpd_ring
*tpd_ring
= (struct atl1c_tpd_ring
*)
1060 AT_WRITE_REG(hw
, REG_TX_BASE_ADDR_HI
,
1061 (u32
)((tpd_ring
[atl1c_trans_normal
].dma
&
1062 AT_DMA_HI_ADDR_MASK
) >> 32));
1063 /* just enable normal priority TX queue */
1064 AT_WRITE_REG(hw
, REG_TPD_PRI0_ADDR_LO
,
1065 (u32
)(tpd_ring
[atl1c_trans_normal
].dma
&
1066 AT_DMA_LO_ADDR_MASK
));
1067 AT_WRITE_REG(hw
, REG_TPD_PRI1_ADDR_LO
,
1068 (u32
)(tpd_ring
[atl1c_trans_high
].dma
&
1069 AT_DMA_LO_ADDR_MASK
));
1070 AT_WRITE_REG(hw
, REG_TPD_RING_SIZE
,
1071 (u32
)(tpd_ring
[0].count
& TPD_RING_SIZE_MASK
));
1075 AT_WRITE_REG(hw
, REG_RX_BASE_ADDR_HI
,
1076 (u32
)((rfd_ring
->dma
& AT_DMA_HI_ADDR_MASK
) >> 32));
1077 AT_WRITE_REG(hw
, REG_RFD0_HEAD_ADDR_LO
,
1078 (u32
)(rfd_ring
->dma
& AT_DMA_LO_ADDR_MASK
));
1080 AT_WRITE_REG(hw
, REG_RFD_RING_SIZE
,
1081 rfd_ring
->count
& RFD_RING_SIZE_MASK
);
1082 AT_WRITE_REG(hw
, REG_RX_BUF_SIZE
,
1083 adapter
->rx_buffer_len
& RX_BUF_SIZE_MASK
);
1086 AT_WRITE_REG(hw
, REG_RRD0_HEAD_ADDR_LO
,
1087 (u32
)(rrd_ring
->dma
& AT_DMA_LO_ADDR_MASK
));
1088 AT_WRITE_REG(hw
, REG_RRD_RING_SIZE
,
1089 (rrd_ring
->count
& RRD_RING_SIZE_MASK
));
1091 if (hw
->nic_type
== athr_l2c_b
) {
1092 AT_WRITE_REG(hw
, REG_SRAM_RXF_LEN
, 0x02a0L
);
1093 AT_WRITE_REG(hw
, REG_SRAM_TXF_LEN
, 0x0100L
);
1094 AT_WRITE_REG(hw
, REG_SRAM_RXF_ADDR
, 0x029f0000L
);
1095 AT_WRITE_REG(hw
, REG_SRAM_RFD0_INFO
, 0x02bf02a0L
);
1096 AT_WRITE_REG(hw
, REG_SRAM_TXF_ADDR
, 0x03bf02c0L
);
1097 AT_WRITE_REG(hw
, REG_SRAM_TRD_ADDR
, 0x03df03c0L
);
1098 AT_WRITE_REG(hw
, REG_TXF_WATER_MARK
, 0); /* TX watermark, to enter l1 state.*/
1099 AT_WRITE_REG(hw
, REG_RXD_DMA_CTRL
, 0); /* RXD threshold.*/
1101 /* Load all of base address above */
1102 AT_WRITE_REG(hw
, REG_LOAD_PTR
, 1);
1105 static void atl1c_configure_tx(struct atl1c_adapter
*adapter
)
1107 struct atl1c_hw
*hw
= &adapter
->hw
;
1109 u16 tx_offload_thresh
;
1112 tx_offload_thresh
= MAX_TSO_FRAME_SIZE
;
1113 AT_WRITE_REG(hw
, REG_TX_TSO_OFFLOAD_THRESH
,
1114 (tx_offload_thresh
>> 3) & TX_TSO_OFFLOAD_THRESH_MASK
);
1115 max_pay_load
= pcie_get_readrq(adapter
->pdev
) >> 8;
1116 hw
->dmar_block
= min_t(u32
, max_pay_load
, hw
->dmar_block
);
1118 * if BIOS had changed the dam-read-max-length to an invalid value,
1119 * restore it to default value
1121 if (hw
->dmar_block
< DEVICE_CTRL_MAXRRS_MIN
) {
1122 pcie_set_readrq(adapter
->pdev
, 128 << DEVICE_CTRL_MAXRRS_MIN
);
1123 hw
->dmar_block
= DEVICE_CTRL_MAXRRS_MIN
;
1126 hw
->nic_type
== athr_l2c_b
|| hw
->nic_type
== athr_l2c_b2
?
1127 L2CB_TXQ_CFGV
: L1C_TXQ_CFGV
;
1129 AT_WRITE_REG(hw
, REG_TXQ_CTRL
, txq_ctrl_data
);
1132 static void atl1c_configure_rx(struct atl1c_adapter
*adapter
)
1134 struct atl1c_hw
*hw
= &adapter
->hw
;
1137 rxq_ctrl_data
= (hw
->rfd_burst
& RXQ_RFD_BURST_NUM_MASK
) <<
1138 RXQ_RFD_BURST_NUM_SHIFT
;
1140 if (hw
->ctrl_flags
& ATL1C_RX_IPV6_CHKSUM
)
1141 rxq_ctrl_data
|= IPV6_CHKSUM_CTRL_EN
;
1143 /* aspm for gigabit */
1144 if (hw
->nic_type
!= athr_l1d_2
&& (hw
->device_id
& 1) != 0)
1145 rxq_ctrl_data
= FIELD_SETX(rxq_ctrl_data
, ASPM_THRUPUT_LIMIT
,
1146 ASPM_THRUPUT_LIMIT_100M
);
1148 AT_WRITE_REG(hw
, REG_RXQ_CTRL
, rxq_ctrl_data
);
1151 static void atl1c_configure_dma(struct atl1c_adapter
*adapter
)
1153 struct atl1c_hw
*hw
= &adapter
->hw
;
1156 dma_ctrl_data
= FIELDX(DMA_CTRL_RORDER_MODE
, DMA_CTRL_RORDER_MODE_OUT
) |
1157 DMA_CTRL_RREQ_PRI_DATA
|
1158 FIELDX(DMA_CTRL_RREQ_BLEN
, hw
->dmar_block
) |
1159 FIELDX(DMA_CTRL_WDLY_CNT
, DMA_CTRL_WDLY_CNT_DEF
) |
1160 FIELDX(DMA_CTRL_RDLY_CNT
, DMA_CTRL_RDLY_CNT_DEF
);
1162 AT_WRITE_REG(hw
, REG_DMA_CTRL
, dma_ctrl_data
);
1166 * Stop the mac, transmit and receive units
1167 * hw - Struct containing variables accessed by shared code
1168 * return : 0 or idle status (if error)
1170 static int atl1c_stop_mac(struct atl1c_hw
*hw
)
1174 AT_READ_REG(hw
, REG_RXQ_CTRL
, &data
);
1175 data
&= ~RXQ_CTRL_EN
;
1176 AT_WRITE_REG(hw
, REG_RXQ_CTRL
, data
);
1178 AT_READ_REG(hw
, REG_TXQ_CTRL
, &data
);
1179 data
&= ~TXQ_CTRL_EN
;
1180 AT_WRITE_REG(hw
, REG_TXQ_CTRL
, data
);
1182 atl1c_wait_until_idle(hw
, IDLE_STATUS_RXQ_BUSY
| IDLE_STATUS_TXQ_BUSY
);
1184 AT_READ_REG(hw
, REG_MAC_CTRL
, &data
);
1185 data
&= ~(MAC_CTRL_TX_EN
| MAC_CTRL_RX_EN
);
1186 AT_WRITE_REG(hw
, REG_MAC_CTRL
, data
);
1188 return (int)atl1c_wait_until_idle(hw
,
1189 IDLE_STATUS_TXMAC_BUSY
| IDLE_STATUS_RXMAC_BUSY
);
1192 static void atl1c_start_mac(struct atl1c_adapter
*adapter
)
1194 struct atl1c_hw
*hw
= &adapter
->hw
;
1197 hw
->mac_duplex
= adapter
->link_duplex
== FULL_DUPLEX
? true : false;
1198 hw
->mac_speed
= adapter
->link_speed
== SPEED_1000
?
1199 atl1c_mac_speed_1000
: atl1c_mac_speed_10_100
;
1201 AT_READ_REG(hw
, REG_TXQ_CTRL
, &txq
);
1202 AT_READ_REG(hw
, REG_RXQ_CTRL
, &rxq
);
1203 AT_READ_REG(hw
, REG_MAC_CTRL
, &mac
);
1207 mac
|= MAC_CTRL_TX_EN
| MAC_CTRL_TX_FLOW
|
1208 MAC_CTRL_RX_EN
| MAC_CTRL_RX_FLOW
|
1209 MAC_CTRL_ADD_CRC
| MAC_CTRL_PAD
|
1210 MAC_CTRL_BC_EN
| MAC_CTRL_SINGLE_PAUSE_EN
|
1211 MAC_CTRL_HASH_ALG_CRC32
;
1213 mac
|= MAC_CTRL_DUPLX
;
1215 mac
&= ~MAC_CTRL_DUPLX
;
1216 mac
= FIELD_SETX(mac
, MAC_CTRL_SPEED
, hw
->mac_speed
);
1217 mac
= FIELD_SETX(mac
, MAC_CTRL_PRMLEN
, hw
->preamble_len
);
1219 AT_WRITE_REG(hw
, REG_TXQ_CTRL
, txq
);
1220 AT_WRITE_REG(hw
, REG_RXQ_CTRL
, rxq
);
1221 AT_WRITE_REG(hw
, REG_MAC_CTRL
, mac
);
1225 * Reset the transmit and receive units; mask and clear all interrupts.
1226 * hw - Struct containing variables accessed by shared code
1227 * return : 0 or idle status (if error)
1229 static int atl1c_reset_mac(struct atl1c_hw
*hw
)
1231 struct atl1c_adapter
*adapter
= hw
->adapter
;
1232 struct pci_dev
*pdev
= adapter
->pdev
;
1237 * Issue Soft Reset to the MAC. This will reset the chip's
1238 * transmit, receive, DMA. It will not effect
1239 * the current PCI configuration. The global reset bit is self-
1240 * clearing, and should clear within a microsecond.
1242 AT_READ_REG(hw
, REG_MASTER_CTRL
, &ctrl_data
);
1243 ctrl_data
|= MASTER_CTRL_OOB_DIS
;
1244 AT_WRITE_REG(hw
, REG_MASTER_CTRL
, ctrl_data
| MASTER_CTRL_SOFT_RST
);
1248 /* Wait at least 10ms for All module to be Idle */
1250 if (atl1c_wait_until_idle(hw
, IDLE_STATUS_MASK
)) {
1252 "MAC state machine can't be idle since"
1253 " disabled for 10ms second\n");
1256 AT_WRITE_REG(hw
, REG_MASTER_CTRL
, ctrl_data
);
1258 /* driver control speed/duplex */
1259 AT_READ_REG(hw
, REG_MAC_CTRL
, &ctrl_data
);
1260 AT_WRITE_REG(hw
, REG_MAC_CTRL
, ctrl_data
| MAC_CTRL_SPEED_MODE_SW
);
1262 /* clk switch setting */
1263 AT_READ_REG(hw
, REG_SERDES
, &ctrl_data
);
1264 switch (hw
->nic_type
) {
1266 ctrl_data
&= ~(SERDES_PHY_CLK_SLOWDOWN
|
1267 SERDES_MAC_CLK_SLOWDOWN
);
1268 AT_WRITE_REG(hw
, REG_SERDES
, ctrl_data
);
1272 ctrl_data
|= SERDES_PHY_CLK_SLOWDOWN
| SERDES_MAC_CLK_SLOWDOWN
;
1273 AT_WRITE_REG(hw
, REG_SERDES
, ctrl_data
);
1282 static void atl1c_disable_l0s_l1(struct atl1c_hw
*hw
)
1284 u16 ctrl_flags
= hw
->ctrl_flags
;
1286 hw
->ctrl_flags
&= ~(ATL1C_ASPM_L0S_SUPPORT
| ATL1C_ASPM_L1_SUPPORT
);
1287 atl1c_set_aspm(hw
, SPEED_0
);
1288 hw
->ctrl_flags
= ctrl_flags
;
1293 * Enable/disable L0s/L1 depend on link state.
1295 static void atl1c_set_aspm(struct atl1c_hw
*hw
, u16 link_speed
)
1300 AT_READ_REG(hw
, REG_PM_CTRL
, &pm_ctrl_data
);
1301 pm_ctrl_data
&= ~(PM_CTRL_ASPM_L1_EN
|
1302 PM_CTRL_ASPM_L0S_EN
|
1303 PM_CTRL_MAC_ASPM_CHK
);
1305 if (hw
->nic_type
== athr_l2c_b2
|| hw
->nic_type
== athr_l1d_2
) {
1306 pm_ctrl_data
&= ~PMCTRL_TXL1_AFTER_L0S
;
1308 link_speed
== SPEED_1000
|| link_speed
== SPEED_100
?
1309 L1D_PMCTRL_L1_ENTRY_TM_16US
: 1;
1310 pm_ctrl_data
= FIELD_SETX(pm_ctrl_data
,
1311 L1D_PMCTRL_L1_ENTRY_TM
, link_l1_timer
);
1313 link_l1_timer
= hw
->nic_type
== athr_l2c_b
?
1314 L2CB1_PM_CTRL_L1_ENTRY_TM
: L1C_PM_CTRL_L1_ENTRY_TM
;
1315 if (link_speed
!= SPEED_1000
&& link_speed
!= SPEED_100
)
1317 pm_ctrl_data
= FIELD_SETX(pm_ctrl_data
,
1318 PM_CTRL_L1_ENTRY_TIMER
, link_l1_timer
);
1322 if ((hw
->ctrl_flags
& ATL1C_ASPM_L0S_SUPPORT
) && link_speed
!= SPEED_0
)
1323 pm_ctrl_data
|= PM_CTRL_ASPM_L0S_EN
| PM_CTRL_MAC_ASPM_CHK
;
1324 if (hw
->ctrl_flags
& ATL1C_ASPM_L1_SUPPORT
)
1325 pm_ctrl_data
|= PM_CTRL_ASPM_L1_EN
| PM_CTRL_MAC_ASPM_CHK
;
1327 /* l2cb & l1d & l2cb2 & l1d2 */
1328 if (hw
->nic_type
== athr_l2c_b
|| hw
->nic_type
== athr_l1d
||
1329 hw
->nic_type
== athr_l2c_b2
|| hw
->nic_type
== athr_l1d_2
) {
1330 pm_ctrl_data
= FIELD_SETX(pm_ctrl_data
,
1331 PM_CTRL_PM_REQ_TIMER
, PM_CTRL_PM_REQ_TO_DEF
);
1332 pm_ctrl_data
|= PM_CTRL_RCVR_WT_TIMER
|
1333 PM_CTRL_SERDES_PD_EX_L1
|
1335 pm_ctrl_data
&= ~(PM_CTRL_SERDES_L1_EN
|
1336 PM_CTRL_SERDES_PLL_L1_EN
|
1337 PM_CTRL_SERDES_BUFS_RX_L1_EN
|
1340 /* disable l0s if link down or l2cb */
1341 if (link_speed
== SPEED_0
|| hw
->nic_type
== athr_l2c_b
)
1342 pm_ctrl_data
&= ~PM_CTRL_ASPM_L0S_EN
;
1345 FIELD_SETX(pm_ctrl_data
, PM_CTRL_L1_ENTRY_TIMER
, 0);
1346 if (link_speed
!= SPEED_0
) {
1347 pm_ctrl_data
|= PM_CTRL_SERDES_L1_EN
|
1348 PM_CTRL_SERDES_PLL_L1_EN
|
1349 PM_CTRL_SERDES_BUFS_RX_L1_EN
;
1350 pm_ctrl_data
&= ~(PM_CTRL_SERDES_PD_EX_L1
|
1351 PM_CTRL_CLK_SWH_L1
|
1352 PM_CTRL_ASPM_L0S_EN
|
1353 PM_CTRL_ASPM_L1_EN
);
1354 } else { /* link down */
1355 pm_ctrl_data
|= PM_CTRL_CLK_SWH_L1
;
1356 pm_ctrl_data
&= ~(PM_CTRL_SERDES_L1_EN
|
1357 PM_CTRL_SERDES_PLL_L1_EN
|
1358 PM_CTRL_SERDES_BUFS_RX_L1_EN
|
1359 PM_CTRL_ASPM_L0S_EN
);
1362 AT_WRITE_REG(hw
, REG_PM_CTRL
, pm_ctrl_data
);
1368 * atl1c_configure - Configure Transmit&Receive Unit after Reset
1369 * @adapter: board private structure
1371 * Configure the Tx /Rx unit of the MAC after a reset.
1373 static int atl1c_configure_mac(struct atl1c_adapter
*adapter
)
1375 struct atl1c_hw
*hw
= &adapter
->hw
;
1376 u32 master_ctrl_data
= 0;
1377 u32 intr_modrt_data
;
1380 AT_READ_REG(hw
, REG_MASTER_CTRL
, &master_ctrl_data
);
1381 master_ctrl_data
&= ~(MASTER_CTRL_TX_ITIMER_EN
|
1382 MASTER_CTRL_RX_ITIMER_EN
|
1383 MASTER_CTRL_INT_RDCLR
);
1384 /* clear interrupt status */
1385 AT_WRITE_REG(hw
, REG_ISR
, 0xFFFFFFFF);
1386 /* Clear any WOL status */
1387 AT_WRITE_REG(hw
, REG_WOL_CTRL
, 0);
1388 /* set Interrupt Clear Timer
1389 * HW will enable self to assert interrupt event to system after
1390 * waiting x-time for software to notify it accept interrupt.
1393 data
= CLK_GATING_EN_ALL
;
1394 if (hw
->ctrl_flags
& ATL1C_CLK_GATING_EN
) {
1395 if (hw
->nic_type
== athr_l2c_b
)
1396 data
&= ~CLK_GATING_RXMAC_EN
;
1399 AT_WRITE_REG(hw
, REG_CLK_GATING_CTRL
, data
);
1401 AT_WRITE_REG(hw
, REG_INT_RETRIG_TIMER
,
1402 hw
->ict
& INT_RETRIG_TIMER_MASK
);
1404 atl1c_configure_des_ring(adapter
);
1406 if (hw
->ctrl_flags
& ATL1C_INTR_MODRT_ENABLE
) {
1407 intr_modrt_data
= (hw
->tx_imt
& IRQ_MODRT_TIMER_MASK
) <<
1408 IRQ_MODRT_TX_TIMER_SHIFT
;
1409 intr_modrt_data
|= (hw
->rx_imt
& IRQ_MODRT_TIMER_MASK
) <<
1410 IRQ_MODRT_RX_TIMER_SHIFT
;
1411 AT_WRITE_REG(hw
, REG_IRQ_MODRT_TIMER_INIT
, intr_modrt_data
);
1413 MASTER_CTRL_TX_ITIMER_EN
| MASTER_CTRL_RX_ITIMER_EN
;
1416 if (hw
->ctrl_flags
& ATL1C_INTR_CLEAR_ON_READ
)
1417 master_ctrl_data
|= MASTER_CTRL_INT_RDCLR
;
1419 master_ctrl_data
|= MASTER_CTRL_SA_TIMER_EN
;
1420 AT_WRITE_REG(hw
, REG_MASTER_CTRL
, master_ctrl_data
);
1422 AT_WRITE_REG(hw
, REG_SMB_STAT_TIMER
,
1423 hw
->smb_timer
& SMB_STAT_TIMER_MASK
);
1426 AT_WRITE_REG(hw
, REG_MTU
, hw
->max_frame_size
+ ETH_HLEN
+
1427 VLAN_HLEN
+ ETH_FCS_LEN
);
1429 atl1c_configure_tx(adapter
);
1430 atl1c_configure_rx(adapter
);
1431 atl1c_configure_dma(adapter
);
1436 static int atl1c_configure(struct atl1c_adapter
*adapter
)
1438 struct net_device
*netdev
= adapter
->netdev
;
1441 atl1c_init_ring_ptrs(adapter
);
1442 atl1c_set_multi(netdev
);
1443 atl1c_restore_vlan(adapter
);
1445 num
= atl1c_alloc_rx_buffer(adapter
);
1446 if (unlikely(num
== 0))
1449 if (atl1c_configure_mac(adapter
))
1455 static void atl1c_update_hw_stats(struct atl1c_adapter
*adapter
)
1457 u16 hw_reg_addr
= 0;
1458 unsigned long *stats_item
= NULL
;
1461 /* update rx status */
1462 hw_reg_addr
= REG_MAC_RX_STATUS_BIN
;
1463 stats_item
= &adapter
->hw_stats
.rx_ok
;
1464 while (hw_reg_addr
<= REG_MAC_RX_STATUS_END
) {
1465 AT_READ_REG(&adapter
->hw
, hw_reg_addr
, &data
);
1466 *stats_item
+= data
;
1470 /* update tx status */
1471 hw_reg_addr
= REG_MAC_TX_STATUS_BIN
;
1472 stats_item
= &adapter
->hw_stats
.tx_ok
;
1473 while (hw_reg_addr
<= REG_MAC_TX_STATUS_END
) {
1474 AT_READ_REG(&adapter
->hw
, hw_reg_addr
, &data
);
1475 *stats_item
+= data
;
1482 * atl1c_get_stats - Get System Network Statistics
1483 * @netdev: network interface device structure
1485 * Returns the address of the device statistics structure.
1486 * The statistics are actually updated from the timer callback.
1488 static struct net_device_stats
*atl1c_get_stats(struct net_device
*netdev
)
1490 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
1491 struct atl1c_hw_stats
*hw_stats
= &adapter
->hw_stats
;
1492 struct net_device_stats
*net_stats
= &netdev
->stats
;
1494 atl1c_update_hw_stats(adapter
);
1495 net_stats
->rx_packets
= hw_stats
->rx_ok
;
1496 net_stats
->tx_packets
= hw_stats
->tx_ok
;
1497 net_stats
->rx_bytes
= hw_stats
->rx_byte_cnt
;
1498 net_stats
->tx_bytes
= hw_stats
->tx_byte_cnt
;
1499 net_stats
->multicast
= hw_stats
->rx_mcast
;
1500 net_stats
->collisions
= hw_stats
->tx_1_col
+
1501 hw_stats
->tx_2_col
* 2 +
1502 hw_stats
->tx_late_col
+ hw_stats
->tx_abort_col
;
1503 net_stats
->rx_errors
= hw_stats
->rx_frag
+ hw_stats
->rx_fcs_err
+
1504 hw_stats
->rx_len_err
+ hw_stats
->rx_sz_ov
+
1505 hw_stats
->rx_rrd_ov
+ hw_stats
->rx_align_err
;
1506 net_stats
->rx_fifo_errors
= hw_stats
->rx_rxf_ov
;
1507 net_stats
->rx_length_errors
= hw_stats
->rx_len_err
;
1508 net_stats
->rx_crc_errors
= hw_stats
->rx_fcs_err
;
1509 net_stats
->rx_frame_errors
= hw_stats
->rx_align_err
;
1510 net_stats
->rx_over_errors
= hw_stats
->rx_rrd_ov
+ hw_stats
->rx_rxf_ov
;
1512 net_stats
->rx_missed_errors
= hw_stats
->rx_rrd_ov
+ hw_stats
->rx_rxf_ov
;
1514 net_stats
->tx_errors
= hw_stats
->tx_late_col
+ hw_stats
->tx_abort_col
+
1515 hw_stats
->tx_underrun
+ hw_stats
->tx_trunc
;
1516 net_stats
->tx_fifo_errors
= hw_stats
->tx_underrun
;
1517 net_stats
->tx_aborted_errors
= hw_stats
->tx_abort_col
;
1518 net_stats
->tx_window_errors
= hw_stats
->tx_late_col
;
1523 static inline void atl1c_clear_phy_int(struct atl1c_adapter
*adapter
)
1527 spin_lock(&adapter
->mdio_lock
);
1528 atl1c_read_phy_reg(&adapter
->hw
, MII_ISR
, &phy_data
);
1529 spin_unlock(&adapter
->mdio_lock
);
1532 static bool atl1c_clean_tx_irq(struct atl1c_adapter
*adapter
,
1533 enum atl1c_trans_queue type
)
1535 struct atl1c_tpd_ring
*tpd_ring
= &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
1567 static irqreturn_t
atl1c_intr(int irq
, void *data
)
1569 struct net_device
*netdev
= data
;
1570 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
1571 struct pci_dev
*pdev
= adapter
->pdev
;
1572 struct atl1c_hw
*hw
= &adapter
->hw
;
1573 int max_ints
= AT_MAX_INT_WORK
;
1574 int handled
= IRQ_NONE
;
1579 AT_READ_REG(hw
, REG_ISR
, ®_data
);
1580 status
= reg_data
& hw
->intr_mask
;
1582 if (status
== 0 || (status
& ISR_DIS_INT
) != 0) {
1583 if (max_ints
!= AT_MAX_INT_WORK
)
1584 handled
= IRQ_HANDLED
;
1588 if (status
& ISR_GPHY
)
1589 atl1c_clear_phy_int(adapter
);
1591 AT_WRITE_REG(hw
, REG_ISR
, status
| ISR_DIS_INT
);
1592 if (status
& ISR_RX_PKT
) {
1593 if (likely(napi_schedule_prep(&adapter
->napi
))) {
1594 hw
->intr_mask
&= ~ISR_RX_PKT
;
1595 AT_WRITE_REG(hw
, REG_IMR
, hw
->intr_mask
);
1596 __napi_schedule(&adapter
->napi
);
1599 if (status
& ISR_TX_PKT
)
1600 atl1c_clean_tx_irq(adapter
, atl1c_trans_normal
);
1602 handled
= IRQ_HANDLED
;
1603 /* check if PCIE PHY Link down */
1604 if (status
& ISR_ERROR
) {
1605 if (netif_msg_hw(adapter
))
1607 "atl1c hardware error (status = 0x%x)\n",
1608 status
& ISR_ERROR
);
1610 set_bit(ATL1C_WORK_EVENT_RESET
, &adapter
->work_event
);
1611 schedule_work(&adapter
->common_task
);
1615 if (status
& ISR_OVER
)
1616 if (netif_msg_intr(adapter
))
1617 dev_warn(&pdev
->dev
,
1618 "TX/RX overflow (status = 0x%x)\n",
1622 if (status
& (ISR_GPHY
| ISR_MANUAL
)) {
1623 netdev
->stats
.tx_carrier_errors
++;
1624 atl1c_link_chg_event(adapter
);
1628 } while (--max_ints
> 0);
1629 /* re-enable Interrupt*/
1630 AT_WRITE_REG(&adapter
->hw
, REG_ISR
, 0);
1634 static inline void atl1c_rx_checksum(struct atl1c_adapter
*adapter
,
1635 struct sk_buff
*skb
, struct atl1c_recv_ret_status
*prrs
)
1638 * The pid field in RRS in not correct sometimes, so we
1639 * cannot figure out if the packet is fragmented or not,
1640 * so we tell the KERNEL CHECKSUM_NONE
1642 skb_checksum_none_assert(skb
);
1645 static int atl1c_alloc_rx_buffer(struct atl1c_adapter
*adapter
)
1647 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1648 struct pci_dev
*pdev
= adapter
->pdev
;
1649 struct atl1c_buffer
*buffer_info
, *next_info
;
1650 struct sk_buff
*skb
;
1651 void *vir_addr
= NULL
;
1653 u16 rfd_next_to_use
, next_next
;
1654 struct atl1c_rx_free_desc
*rfd_desc
;
1656 next_next
= rfd_next_to_use
= rfd_ring
->next_to_use
;
1657 if (++next_next
== rfd_ring
->count
)
1659 buffer_info
= &rfd_ring
->buffer_info
[rfd_next_to_use
];
1660 next_info
= &rfd_ring
->buffer_info
[next_next
];
1662 while (next_info
->flags
& ATL1C_BUFFER_FREE
) {
1663 rfd_desc
= ATL1C_RFD_DESC(rfd_ring
, rfd_next_to_use
);
1665 skb
= netdev_alloc_skb(adapter
->netdev
, adapter
->rx_buffer_len
);
1666 if (unlikely(!skb
)) {
1667 if (netif_msg_rx_err(adapter
))
1668 dev_warn(&pdev
->dev
, "alloc rx buffer failed\n");
1673 * Make buffer alignment 2 beyond a 16 byte boundary
1674 * this will result in a 16 byte aligned IP header after
1675 * the 14 byte MAC header is removed
1677 vir_addr
= skb
->data
;
1678 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_BUSY
);
1679 buffer_info
->skb
= skb
;
1680 buffer_info
->length
= adapter
->rx_buffer_len
;
1681 buffer_info
->dma
= pci_map_single(pdev
, vir_addr
,
1682 buffer_info
->length
,
1683 PCI_DMA_FROMDEVICE
);
1684 ATL1C_SET_PCIMAP_TYPE(buffer_info
, ATL1C_PCIMAP_SINGLE
,
1685 ATL1C_PCIMAP_FROMDEVICE
);
1686 rfd_desc
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
1687 rfd_next_to_use
= next_next
;
1688 if (++next_next
== rfd_ring
->count
)
1690 buffer_info
= &rfd_ring
->buffer_info
[rfd_next_to_use
];
1691 next_info
= &rfd_ring
->buffer_info
[next_next
];
1696 /* TODO: update mailbox here */
1698 rfd_ring
->next_to_use
= rfd_next_to_use
;
1699 AT_WRITE_REG(&adapter
->hw
, REG_MB_RFD0_PROD_IDX
,
1700 rfd_ring
->next_to_use
& MB_RFDX_PROD_IDX_MASK
);
1706 static void atl1c_clean_rrd(struct atl1c_rrd_ring
*rrd_ring
,
1707 struct atl1c_recv_ret_status
*rrs
, u16 num
)
1710 /* the relationship between rrd and rfd is one map one */
1711 for (i
= 0; i
< num
; i
++, rrs
= ATL1C_RRD_DESC(rrd_ring
,
1712 rrd_ring
->next_to_clean
)) {
1713 rrs
->word3
&= ~RRS_RXD_UPDATED
;
1714 if (++rrd_ring
->next_to_clean
== rrd_ring
->count
)
1715 rrd_ring
->next_to_clean
= 0;
1719 static void atl1c_clean_rfd(struct atl1c_rfd_ring
*rfd_ring
,
1720 struct atl1c_recv_ret_status
*rrs
, u16 num
)
1724 struct atl1c_buffer
*buffer_info
= rfd_ring
->buffer_info
;
1726 rfd_index
= (rrs
->word0
>> RRS_RX_RFD_INDEX_SHIFT
) &
1727 RRS_RX_RFD_INDEX_MASK
;
1728 for (i
= 0; i
< num
; i
++) {
1729 buffer_info
[rfd_index
].skb
= NULL
;
1730 ATL1C_SET_BUFFER_STATE(&buffer_info
[rfd_index
],
1732 if (++rfd_index
== rfd_ring
->count
)
1735 rfd_ring
->next_to_clean
= rfd_index
;
1738 static void atl1c_clean_rx_irq(struct atl1c_adapter
*adapter
,
1739 int *work_done
, int work_to_do
)
1741 u16 rfd_num
, rfd_index
;
1744 struct pci_dev
*pdev
= adapter
->pdev
;
1745 struct net_device
*netdev
= adapter
->netdev
;
1746 struct atl1c_rfd_ring
*rfd_ring
= &adapter
->rfd_ring
;
1747 struct atl1c_rrd_ring
*rrd_ring
= &adapter
->rrd_ring
;
1748 struct sk_buff
*skb
;
1749 struct atl1c_recv_ret_status
*rrs
;
1750 struct atl1c_buffer
*buffer_info
;
1753 if (*work_done
>= work_to_do
)
1755 rrs
= ATL1C_RRD_DESC(rrd_ring
, rrd_ring
->next_to_clean
);
1756 if (likely(RRS_RXD_IS_VALID(rrs
->word3
))) {
1757 rfd_num
= (rrs
->word0
>> RRS_RX_RFD_CNT_SHIFT
) &
1758 RRS_RX_RFD_CNT_MASK
;
1759 if (unlikely(rfd_num
!= 1))
1760 /* TODO support mul rfd*/
1761 if (netif_msg_rx_err(adapter
))
1762 dev_warn(&pdev
->dev
,
1763 "Multi rfd not support yet!\n");
1769 atl1c_clean_rrd(rrd_ring
, rrs
, rfd_num
);
1770 if (rrs
->word3
& (RRS_RX_ERR_SUM
| RRS_802_3_LEN_ERR
)) {
1771 atl1c_clean_rfd(rfd_ring
, rrs
, rfd_num
);
1772 if (netif_msg_rx_err(adapter
))
1773 dev_warn(&pdev
->dev
,
1774 "wrong packet! rrs word3 is %x\n",
1779 length
= le16_to_cpu((rrs
->word3
>> RRS_PKT_SIZE_SHIFT
) &
1782 if (likely(rfd_num
== 1)) {
1783 rfd_index
= (rrs
->word0
>> RRS_RX_RFD_INDEX_SHIFT
) &
1784 RRS_RX_RFD_INDEX_MASK
;
1785 buffer_info
= &rfd_ring
->buffer_info
[rfd_index
];
1786 pci_unmap_single(pdev
, buffer_info
->dma
,
1787 buffer_info
->length
, PCI_DMA_FROMDEVICE
);
1788 skb
= buffer_info
->skb
;
1791 if (netif_msg_rx_err(adapter
))
1792 dev_warn(&pdev
->dev
,
1793 "Multi rfd not support yet!\n");
1796 atl1c_clean_rfd(rfd_ring
, rrs
, rfd_num
);
1797 skb_put(skb
, length
- ETH_FCS_LEN
);
1798 skb
->protocol
= eth_type_trans(skb
, netdev
);
1799 atl1c_rx_checksum(adapter
, skb
, rrs
);
1800 if (rrs
->word3
& RRS_VLAN_INS
) {
1803 AT_TAG_TO_VLAN(rrs
->vlan_tag
, vlan
);
1804 vlan
= le16_to_cpu(vlan
);
1805 __vlan_hwaccel_put_tag(skb
, vlan
);
1807 netif_receive_skb(skb
);
1813 atl1c_alloc_rx_buffer(adapter
);
1817 * atl1c_clean - NAPI Rx polling callback
1819 static int atl1c_clean(struct napi_struct
*napi
, int budget
)
1821 struct atl1c_adapter
*adapter
=
1822 container_of(napi
, struct atl1c_adapter
, napi
);
1825 /* Keep link state information with original netdev */
1826 if (!netif_carrier_ok(adapter
->netdev
))
1828 /* just enable one RXQ */
1829 atl1c_clean_rx_irq(adapter
, &work_done
, budget
);
1831 if (work_done
< budget
) {
1833 napi_complete(napi
);
1834 adapter
->hw
.intr_mask
|= ISR_RX_PKT
;
1835 AT_WRITE_REG(&adapter
->hw
, REG_IMR
, adapter
->hw
.intr_mask
);
1840 #ifdef CONFIG_NET_POLL_CONTROLLER
1843 * Polling 'interrupt' - used by things like netconsole to send skbs
1844 * without having to re-enable interrupts. It's not called while
1845 * the interrupt routine is executing.
1847 static void atl1c_netpoll(struct net_device
*netdev
)
1849 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
1851 disable_irq(adapter
->pdev
->irq
);
1852 atl1c_intr(adapter
->pdev
->irq
, netdev
);
1853 enable_irq(adapter
->pdev
->irq
);
1857 static inline u16
atl1c_tpd_avail(struct atl1c_adapter
*adapter
, enum atl1c_trans_queue type
)
1859 struct atl1c_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
[type
];
1860 u16 next_to_use
= 0;
1861 u16 next_to_clean
= 0;
1863 next_to_clean
= atomic_read(&tpd_ring
->next_to_clean
);
1864 next_to_use
= tpd_ring
->next_to_use
;
1866 return (u16
)(next_to_clean
> next_to_use
) ?
1867 (next_to_clean
- next_to_use
- 1) :
1868 (tpd_ring
->count
+ next_to_clean
- next_to_use
- 1);
1872 * get next usable tpd
1873 * Note: should call atl1c_tdp_avail to make sure
1874 * there is enough tpd to use
1876 static struct atl1c_tpd_desc
*atl1c_get_tpd(struct atl1c_adapter
*adapter
,
1877 enum atl1c_trans_queue type
)
1879 struct atl1c_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
[type
];
1880 struct atl1c_tpd_desc
*tpd_desc
;
1881 u16 next_to_use
= 0;
1883 next_to_use
= tpd_ring
->next_to_use
;
1884 if (++tpd_ring
->next_to_use
== tpd_ring
->count
)
1885 tpd_ring
->next_to_use
= 0;
1886 tpd_desc
= ATL1C_TPD_DESC(tpd_ring
, next_to_use
);
1887 memset(tpd_desc
, 0, sizeof(struct atl1c_tpd_desc
));
1891 static struct atl1c_buffer
*
1892 atl1c_get_tx_buffer(struct atl1c_adapter
*adapter
, struct atl1c_tpd_desc
*tpd
)
1894 struct atl1c_tpd_ring
*tpd_ring
= adapter
->tpd_ring
;
1896 return &tpd_ring
->buffer_info
[tpd
-
1897 (struct atl1c_tpd_desc
*)tpd_ring
->desc
];
1900 /* Calculate the transmit packet descript needed*/
1901 static u16
atl1c_cal_tpd_req(const struct sk_buff
*skb
)
1904 u16 proto_hdr_len
= 0;
1906 tpd_req
= skb_shinfo(skb
)->nr_frags
+ 1;
1908 if (skb_is_gso(skb
)) {
1909 proto_hdr_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
1910 if (proto_hdr_len
< skb_headlen(skb
))
1912 if (skb_shinfo(skb
)->gso_type
& SKB_GSO_TCPV6
)
1918 static int atl1c_tso_csum(struct atl1c_adapter
*adapter
,
1919 struct sk_buff
*skb
,
1920 struct atl1c_tpd_desc
**tpd
,
1921 enum atl1c_trans_queue type
)
1923 struct pci_dev
*pdev
= adapter
->pdev
;
1926 unsigned short offload_type
;
1929 if (skb_is_gso(skb
)) {
1930 if (skb_header_cloned(skb
)) {
1931 err
= pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
);
1935 offload_type
= skb_shinfo(skb
)->gso_type
;
1937 if (offload_type
& SKB_GSO_TCPV4
) {
1938 real_len
= (((unsigned char *)ip_hdr(skb
) - skb
->data
)
1939 + ntohs(ip_hdr(skb
)->tot_len
));
1941 if (real_len
< skb
->len
)
1942 pskb_trim(skb
, real_len
);
1944 hdr_len
= (skb_transport_offset(skb
) + tcp_hdrlen(skb
));
1945 if (unlikely(skb
->len
== hdr_len
)) {
1946 /* only xsum need */
1947 if (netif_msg_tx_queued(adapter
))
1948 dev_warn(&pdev
->dev
,
1949 "IPV4 tso with zero data??\n");
1952 ip_hdr(skb
)->check
= 0;
1953 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(
1957 (*tpd
)->word1
|= 1 << TPD_IPV4_PACKET_SHIFT
;
1961 if (offload_type
& SKB_GSO_TCPV6
) {
1962 struct atl1c_tpd_ext_desc
*etpd
=
1963 *(struct atl1c_tpd_ext_desc
**)(tpd
);
1965 memset(etpd
, 0, sizeof(struct atl1c_tpd_ext_desc
));
1966 *tpd
= atl1c_get_tpd(adapter
, type
);
1967 ipv6_hdr(skb
)->payload_len
= 0;
1968 /* check payload == 0 byte ? */
1969 hdr_len
= (skb_transport_offset(skb
) + tcp_hdrlen(skb
));
1970 if (unlikely(skb
->len
== hdr_len
)) {
1971 /* only xsum need */
1972 if (netif_msg_tx_queued(adapter
))
1973 dev_warn(&pdev
->dev
,
1974 "IPV6 tso with zero data??\n");
1977 tcp_hdr(skb
)->check
= ~csum_ipv6_magic(
1978 &ipv6_hdr(skb
)->saddr
,
1979 &ipv6_hdr(skb
)->daddr
,
1981 etpd
->word1
|= 1 << TPD_LSO_EN_SHIFT
;
1982 etpd
->word1
|= 1 << TPD_LSO_VER_SHIFT
;
1983 etpd
->pkt_len
= cpu_to_le32(skb
->len
);
1984 (*tpd
)->word1
|= 1 << TPD_LSO_VER_SHIFT
;
1987 (*tpd
)->word1
|= 1 << TPD_LSO_EN_SHIFT
;
1988 (*tpd
)->word1
|= (skb_transport_offset(skb
) & TPD_TCPHDR_OFFSET_MASK
) <<
1989 TPD_TCPHDR_OFFSET_SHIFT
;
1990 (*tpd
)->word1
|= (skb_shinfo(skb
)->gso_size
& TPD_MSS_MASK
) <<
1996 if (likely(skb
->ip_summed
== CHECKSUM_PARTIAL
)) {
1998 cso
= skb_checksum_start_offset(skb
);
2000 if (unlikely(cso
& 0x1)) {
2001 if (netif_msg_tx_err(adapter
))
2002 dev_err(&adapter
->pdev
->dev
,
2003 "payload offset should not an event number\n");
2006 css
= cso
+ skb
->csum_offset
;
2008 (*tpd
)->word1
|= ((cso
>> 1) & TPD_PLOADOFFSET_MASK
) <<
2009 TPD_PLOADOFFSET_SHIFT
;
2010 (*tpd
)->word1
|= ((css
>> 1) & TPD_CCSUM_OFFSET_MASK
) <<
2011 TPD_CCSUM_OFFSET_SHIFT
;
2012 (*tpd
)->word1
|= 1 << TPD_CCSUM_EN_SHIFT
;
2018 static void atl1c_tx_map(struct atl1c_adapter
*adapter
,
2019 struct sk_buff
*skb
, struct atl1c_tpd_desc
*tpd
,
2020 enum atl1c_trans_queue type
)
2022 struct atl1c_tpd_desc
*use_tpd
= NULL
;
2023 struct atl1c_buffer
*buffer_info
= NULL
;
2024 u16 buf_len
= skb_headlen(skb
);
2032 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2033 tso
= (tpd
->word1
>> TPD_LSO_EN_SHIFT
) & TPD_LSO_EN_MASK
;
2036 map_len
= hdr_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
2039 buffer_info
= atl1c_get_tx_buffer(adapter
, use_tpd
);
2040 buffer_info
->length
= map_len
;
2041 buffer_info
->dma
= pci_map_single(adapter
->pdev
,
2042 skb
->data
, hdr_len
, PCI_DMA_TODEVICE
);
2043 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_BUSY
);
2044 ATL1C_SET_PCIMAP_TYPE(buffer_info
, ATL1C_PCIMAP_SINGLE
,
2045 ATL1C_PCIMAP_TODEVICE
);
2046 mapped_len
+= map_len
;
2047 use_tpd
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
2048 use_tpd
->buffer_len
= cpu_to_le16(buffer_info
->length
);
2051 if (mapped_len
< buf_len
) {
2052 /* mapped_len == 0, means we should use the first tpd,
2053 which is given by caller */
2054 if (mapped_len
== 0)
2057 use_tpd
= atl1c_get_tpd(adapter
, type
);
2058 memcpy(use_tpd
, tpd
, sizeof(struct atl1c_tpd_desc
));
2060 buffer_info
= atl1c_get_tx_buffer(adapter
, use_tpd
);
2061 buffer_info
->length
= buf_len
- mapped_len
;
2063 pci_map_single(adapter
->pdev
, skb
->data
+ mapped_len
,
2064 buffer_info
->length
, PCI_DMA_TODEVICE
);
2065 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_BUSY
);
2066 ATL1C_SET_PCIMAP_TYPE(buffer_info
, ATL1C_PCIMAP_SINGLE
,
2067 ATL1C_PCIMAP_TODEVICE
);
2068 use_tpd
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
2069 use_tpd
->buffer_len
= cpu_to_le16(buffer_info
->length
);
2072 for (f
= 0; f
< nr_frags
; f
++) {
2073 struct skb_frag_struct
*frag
;
2075 frag
= &skb_shinfo(skb
)->frags
[f
];
2077 use_tpd
= atl1c_get_tpd(adapter
, type
);
2078 memcpy(use_tpd
, tpd
, sizeof(struct atl1c_tpd_desc
));
2080 buffer_info
= atl1c_get_tx_buffer(adapter
, use_tpd
);
2081 buffer_info
->length
= skb_frag_size(frag
);
2082 buffer_info
->dma
= skb_frag_dma_map(&adapter
->pdev
->dev
,
2084 buffer_info
->length
,
2086 ATL1C_SET_BUFFER_STATE(buffer_info
, ATL1C_BUFFER_BUSY
);
2087 ATL1C_SET_PCIMAP_TYPE(buffer_info
, ATL1C_PCIMAP_PAGE
,
2088 ATL1C_PCIMAP_TODEVICE
);
2089 use_tpd
->buffer_addr
= cpu_to_le64(buffer_info
->dma
);
2090 use_tpd
->buffer_len
= cpu_to_le16(buffer_info
->length
);
2094 use_tpd
->word1
|= 1 << TPD_EOP_SHIFT
;
2095 /* The last buffer info contain the skb address,
2096 so it will be free after unmap */
2097 buffer_info
->skb
= skb
;
2100 static void atl1c_tx_queue(struct atl1c_adapter
*adapter
, struct sk_buff
*skb
,
2101 struct atl1c_tpd_desc
*tpd
, enum atl1c_trans_queue type
)
2103 struct atl1c_tpd_ring
*tpd_ring
= &adapter
->tpd_ring
[type
];
2106 reg
= type
== atl1c_trans_high
? REG_TPD_PRI1_PIDX
: REG_TPD_PRI0_PIDX
;
2107 AT_WRITE_REGW(&adapter
->hw
, reg
, tpd_ring
->next_to_use
);
2110 static netdev_tx_t
atl1c_xmit_frame(struct sk_buff
*skb
,
2111 struct net_device
*netdev
)
2113 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2114 unsigned long flags
;
2116 struct atl1c_tpd_desc
*tpd
;
2117 enum atl1c_trans_queue type
= atl1c_trans_normal
;
2119 if (test_bit(__AT_DOWN
, &adapter
->flags
)) {
2120 dev_kfree_skb_any(skb
);
2121 return NETDEV_TX_OK
;
2124 tpd_req
= atl1c_cal_tpd_req(skb
);
2125 if (!spin_trylock_irqsave(&adapter
->tx_lock
, flags
)) {
2126 if (netif_msg_pktdata(adapter
))
2127 dev_info(&adapter
->pdev
->dev
, "tx locked\n");
2128 return NETDEV_TX_LOCKED
;
2131 if (atl1c_tpd_avail(adapter
, type
) < tpd_req
) {
2132 /* no enough descriptor, just stop queue */
2133 netif_stop_queue(netdev
);
2134 spin_unlock_irqrestore(&adapter
->tx_lock
, flags
);
2135 return NETDEV_TX_BUSY
;
2138 tpd
= atl1c_get_tpd(adapter
, type
);
2140 /* do TSO and check sum */
2141 if (atl1c_tso_csum(adapter
, skb
, &tpd
, type
) != 0) {
2142 spin_unlock_irqrestore(&adapter
->tx_lock
, flags
);
2143 dev_kfree_skb_any(skb
);
2144 return NETDEV_TX_OK
;
2147 if (unlikely(vlan_tx_tag_present(skb
))) {
2148 u16 vlan
= vlan_tx_tag_get(skb
);
2151 vlan
= cpu_to_le16(vlan
);
2152 AT_VLAN_TO_TAG(vlan
, tag
);
2153 tpd
->word1
|= 1 << TPD_INS_VTAG_SHIFT
;
2154 tpd
->vlan_tag
= tag
;
2157 if (skb_network_offset(skb
) != ETH_HLEN
)
2158 tpd
->word1
|= 1 << TPD_ETH_TYPE_SHIFT
; /* Ethernet frame */
2160 atl1c_tx_map(adapter
, skb
, tpd
, type
);
2161 atl1c_tx_queue(adapter
, skb
, tpd
, type
);
2163 spin_unlock_irqrestore(&adapter
->tx_lock
, flags
);
2164 return NETDEV_TX_OK
;
2167 static void atl1c_free_irq(struct atl1c_adapter
*adapter
)
2169 struct net_device
*netdev
= adapter
->netdev
;
2171 free_irq(adapter
->pdev
->irq
, netdev
);
2173 if (adapter
->have_msi
)
2174 pci_disable_msi(adapter
->pdev
);
2177 static int atl1c_request_irq(struct atl1c_adapter
*adapter
)
2179 struct pci_dev
*pdev
= adapter
->pdev
;
2180 struct net_device
*netdev
= adapter
->netdev
;
2184 adapter
->have_msi
= true;
2185 err
= pci_enable_msi(adapter
->pdev
);
2187 if (netif_msg_ifup(adapter
))
2189 "Unable to allocate MSI interrupt Error: %d\n",
2191 adapter
->have_msi
= false;
2194 if (!adapter
->have_msi
)
2195 flags
|= IRQF_SHARED
;
2196 err
= request_irq(adapter
->pdev
->irq
, atl1c_intr
, flags
,
2197 netdev
->name
, netdev
);
2199 if (netif_msg_ifup(adapter
))
2201 "Unable to allocate interrupt Error: %d\n",
2203 if (adapter
->have_msi
)
2204 pci_disable_msi(adapter
->pdev
);
2207 if (netif_msg_ifup(adapter
))
2208 dev_dbg(&pdev
->dev
, "atl1c_request_irq OK\n");
2213 static void atl1c_reset_dma_ring(struct atl1c_adapter
*adapter
)
2215 /* release tx-pending skbs and reset tx/rx ring index */
2216 atl1c_clean_tx_ring(adapter
, atl1c_trans_normal
);
2217 atl1c_clean_tx_ring(adapter
, atl1c_trans_high
);
2218 atl1c_clean_rx_ring(adapter
);
2221 static int atl1c_up(struct atl1c_adapter
*adapter
)
2223 struct net_device
*netdev
= adapter
->netdev
;
2226 netif_carrier_off(netdev
);
2228 err
= atl1c_configure(adapter
);
2232 err
= atl1c_request_irq(adapter
);
2236 atl1c_check_link_status(adapter
);
2237 clear_bit(__AT_DOWN
, &adapter
->flags
);
2238 napi_enable(&adapter
->napi
);
2239 atl1c_irq_enable(adapter
);
2240 netif_start_queue(netdev
);
2244 atl1c_clean_rx_ring(adapter
);
2248 static void atl1c_down(struct atl1c_adapter
*adapter
)
2250 struct net_device
*netdev
= adapter
->netdev
;
2252 atl1c_del_timer(adapter
);
2253 adapter
->work_event
= 0; /* clear all event */
2254 /* signal that we're down so the interrupt handler does not
2255 * reschedule our watchdog timer */
2256 set_bit(__AT_DOWN
, &adapter
->flags
);
2257 netif_carrier_off(netdev
);
2258 napi_disable(&adapter
->napi
);
2259 atl1c_irq_disable(adapter
);
2260 atl1c_free_irq(adapter
);
2261 /* disable ASPM if device inactive */
2262 atl1c_disable_l0s_l1(&adapter
->hw
);
2263 /* reset MAC to disable all RX/TX */
2264 atl1c_reset_mac(&adapter
->hw
);
2267 adapter
->link_speed
= SPEED_0
;
2268 adapter
->link_duplex
= -1;
2269 atl1c_reset_dma_ring(adapter
);
2273 * atl1c_open - Called when a network interface is made active
2274 * @netdev: network interface device structure
2276 * Returns 0 on success, negative value on failure
2278 * The open entry point is called when a network interface is made
2279 * active by the system (IFF_UP). At this point all resources needed
2280 * for transmit and receive operations are allocated, the interrupt
2281 * handler is registered with the OS, the watchdog timer is started,
2282 * and the stack is notified that the interface is ready.
2284 static int atl1c_open(struct net_device
*netdev
)
2286 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2289 /* disallow open during test */
2290 if (test_bit(__AT_TESTING
, &adapter
->flags
))
2293 /* allocate rx/tx dma buffer & descriptors */
2294 err
= atl1c_setup_ring_resources(adapter
);
2298 err
= atl1c_up(adapter
);
2305 atl1c_free_irq(adapter
);
2306 atl1c_free_ring_resources(adapter
);
2307 atl1c_reset_mac(&adapter
->hw
);
2312 * atl1c_close - Disables a network interface
2313 * @netdev: network interface device structure
2315 * Returns 0, this is not allowed to fail
2317 * The close entry point is called when an interface is de-activated
2318 * by the OS. The hardware is still under the drivers control, but
2319 * needs to be disabled. A global MAC reset is issued to stop the
2320 * hardware, and all transmit and receive resources are freed.
2322 static int atl1c_close(struct net_device
*netdev
)
2324 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2326 WARN_ON(test_bit(__AT_RESETTING
, &adapter
->flags
));
2327 set_bit(__AT_DOWN
, &adapter
->flags
);
2328 cancel_work_sync(&adapter
->common_task
);
2329 atl1c_down(adapter
);
2330 atl1c_free_ring_resources(adapter
);
2334 static int atl1c_suspend(struct device
*dev
)
2336 struct pci_dev
*pdev
= to_pci_dev(dev
);
2337 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2338 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2339 struct atl1c_hw
*hw
= &adapter
->hw
;
2340 u32 wufc
= adapter
->wol
;
2342 atl1c_disable_l0s_l1(hw
);
2343 if (netif_running(netdev
)) {
2344 WARN_ON(test_bit(__AT_RESETTING
, &adapter
->flags
));
2345 atl1c_down(adapter
);
2347 netif_device_detach(netdev
);
2350 if (atl1c_phy_to_ps_link(hw
) != 0)
2351 dev_dbg(&pdev
->dev
, "phy power saving failed");
2353 atl1c_power_saving(hw
, wufc
);
2358 #ifdef CONFIG_PM_SLEEP
2359 static int atl1c_resume(struct device
*dev
)
2361 struct pci_dev
*pdev
= to_pci_dev(dev
);
2362 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2363 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2365 AT_WRITE_REG(&adapter
->hw
, REG_WOL_CTRL
, 0);
2366 atl1c_reset_pcie(&adapter
->hw
, ATL1C_PCIE_L0S_L1_DISABLE
);
2368 atl1c_phy_reset(&adapter
->hw
);
2369 atl1c_reset_mac(&adapter
->hw
);
2370 atl1c_phy_init(&adapter
->hw
);
2373 AT_READ_REG(&adapter
->hw
, REG_PM_CTRLSTAT
, &pm_data
);
2374 pm_data
&= ~PM_CTRLSTAT_PME_EN
;
2375 AT_WRITE_REG(&adapter
->hw
, REG_PM_CTRLSTAT
, pm_data
);
2378 netif_device_attach(netdev
);
2379 if (netif_running(netdev
))
2386 static void atl1c_shutdown(struct pci_dev
*pdev
)
2388 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2389 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2391 atl1c_suspend(&pdev
->dev
);
2392 pci_wake_from_d3(pdev
, adapter
->wol
);
2393 pci_set_power_state(pdev
, PCI_D3hot
);
2396 static const struct net_device_ops atl1c_netdev_ops
= {
2397 .ndo_open
= atl1c_open
,
2398 .ndo_stop
= atl1c_close
,
2399 .ndo_validate_addr
= eth_validate_addr
,
2400 .ndo_start_xmit
= atl1c_xmit_frame
,
2401 .ndo_set_mac_address
= atl1c_set_mac_addr
,
2402 .ndo_set_rx_mode
= atl1c_set_multi
,
2403 .ndo_change_mtu
= atl1c_change_mtu
,
2404 .ndo_fix_features
= atl1c_fix_features
,
2405 .ndo_set_features
= atl1c_set_features
,
2406 .ndo_do_ioctl
= atl1c_ioctl
,
2407 .ndo_tx_timeout
= atl1c_tx_timeout
,
2408 .ndo_get_stats
= atl1c_get_stats
,
2409 #ifdef CONFIG_NET_POLL_CONTROLLER
2410 .ndo_poll_controller
= atl1c_netpoll
,
2414 static int atl1c_init_netdev(struct net_device
*netdev
, struct pci_dev
*pdev
)
2416 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
2417 pci_set_drvdata(pdev
, netdev
);
2419 netdev
->netdev_ops
= &atl1c_netdev_ops
;
2420 netdev
->watchdog_timeo
= AT_TX_WATCHDOG
;
2421 atl1c_set_ethtool_ops(netdev
);
2423 /* TODO: add when ready */
2424 netdev
->hw_features
= NETIF_F_SG
|
2426 NETIF_F_HW_VLAN_RX
|
2429 netdev
->features
= netdev
->hw_features
|
2435 * atl1c_probe - Device Initialization Routine
2436 * @pdev: PCI device information struct
2437 * @ent: entry in atl1c_pci_tbl
2439 * Returns 0 on success, negative on failure
2441 * atl1c_probe initializes an adapter identified by a pci_dev structure.
2442 * The OS initialization, configuring of the adapter private structure,
2443 * and a hardware reset occur.
2445 static int __devinit
atl1c_probe(struct pci_dev
*pdev
,
2446 const struct pci_device_id
*ent
)
2448 struct net_device
*netdev
;
2449 struct atl1c_adapter
*adapter
;
2450 static int cards_found
;
2454 /* enable device (incl. PCI PM wakeup and hotplug setup) */
2455 err
= pci_enable_device_mem(pdev
);
2457 dev_err(&pdev
->dev
, "cannot enable PCI device\n");
2462 * The atl1c chip can DMA to 64-bit addresses, but it uses a single
2463 * shared register for the high 32 bits, so only a single, aligned,
2464 * 4 GB physical address range can be used at a time.
2466 * Supporting 64-bit DMA on this hardware is more trouble than it's
2467 * worth. It is far easier to limit to 32-bit DMA than update
2468 * various kernel subsystems to support the mechanics required by a
2469 * fixed-high-32-bit system.
2471 if ((pci_set_dma_mask(pdev
, DMA_BIT_MASK(32)) != 0) ||
2472 (pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32)) != 0)) {
2473 dev_err(&pdev
->dev
, "No usable DMA configuration,aborting\n");
2477 err
= pci_request_regions(pdev
, atl1c_driver_name
);
2479 dev_err(&pdev
->dev
, "cannot obtain PCI resources\n");
2483 pci_set_master(pdev
);
2485 netdev
= alloc_etherdev(sizeof(struct atl1c_adapter
));
2486 if (netdev
== NULL
) {
2488 goto err_alloc_etherdev
;
2491 err
= atl1c_init_netdev(netdev
, pdev
);
2493 dev_err(&pdev
->dev
, "init netdevice failed\n");
2494 goto err_init_netdev
;
2496 adapter
= netdev_priv(netdev
);
2497 adapter
->bd_number
= cards_found
;
2498 adapter
->netdev
= netdev
;
2499 adapter
->pdev
= pdev
;
2500 adapter
->hw
.adapter
= adapter
;
2501 adapter
->msg_enable
= netif_msg_init(-1, atl1c_default_msg
);
2502 adapter
->hw
.hw_addr
= ioremap(pci_resource_start(pdev
, 0), pci_resource_len(pdev
, 0));
2503 if (!adapter
->hw
.hw_addr
) {
2505 dev_err(&pdev
->dev
, "cannot map device registers\n");
2510 adapter
->mii
.dev
= netdev
;
2511 adapter
->mii
.mdio_read
= atl1c_mdio_read
;
2512 adapter
->mii
.mdio_write
= atl1c_mdio_write
;
2513 adapter
->mii
.phy_id_mask
= 0x1f;
2514 adapter
->mii
.reg_num_mask
= MDIO_CTRL_REG_MASK
;
2515 netif_napi_add(netdev
, &adapter
->napi
, atl1c_clean
, 64);
2516 setup_timer(&adapter
->phy_config_timer
, atl1c_phy_config
,
2517 (unsigned long)adapter
);
2518 /* setup the private structure */
2519 err
= atl1c_sw_init(adapter
);
2521 dev_err(&pdev
->dev
, "net device private data init failed\n");
2524 atl1c_reset_pcie(&adapter
->hw
, ATL1C_PCIE_L0S_L1_DISABLE
);
2526 /* Init GPHY as early as possible due to power saving issue */
2527 atl1c_phy_reset(&adapter
->hw
);
2529 err
= atl1c_reset_mac(&adapter
->hw
);
2535 /* reset the controller to
2536 * put the device in a known good starting state */
2537 err
= atl1c_phy_init(&adapter
->hw
);
2542 if (atl1c_read_mac_addr(&adapter
->hw
)) {
2543 /* got a random MAC address, set NET_ADDR_RANDOM to netdev */
2544 netdev
->addr_assign_type
|= NET_ADDR_RANDOM
;
2546 memcpy(netdev
->dev_addr
, adapter
->hw
.mac_addr
, netdev
->addr_len
);
2547 memcpy(netdev
->perm_addr
, adapter
->hw
.mac_addr
, netdev
->addr_len
);
2548 if (netif_msg_probe(adapter
))
2549 dev_dbg(&pdev
->dev
, "mac address : %pM\n",
2550 adapter
->hw
.mac_addr
);
2552 atl1c_hw_set_mac_addr(&adapter
->hw
, adapter
->hw
.mac_addr
);
2553 INIT_WORK(&adapter
->common_task
, atl1c_common_task
);
2554 adapter
->work_event
= 0;
2555 err
= register_netdev(netdev
);
2557 dev_err(&pdev
->dev
, "register netdevice failed\n");
2561 if (netif_msg_probe(adapter
))
2562 dev_info(&pdev
->dev
, "version %s\n", ATL1C_DRV_VERSION
);
2569 iounmap(adapter
->hw
.hw_addr
);
2572 free_netdev(netdev
);
2574 pci_release_regions(pdev
);
2577 pci_disable_device(pdev
);
2582 * atl1c_remove - Device Removal Routine
2583 * @pdev: PCI device information struct
2585 * atl1c_remove is called by the PCI subsystem to alert the driver
2586 * that it should release a PCI device. The could be caused by a
2587 * Hot-Plug event, or because the driver is going to be removed from
2590 static void __devexit
atl1c_remove(struct pci_dev
*pdev
)
2592 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2593 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2595 unregister_netdev(netdev
);
2596 /* restore permanent address */
2597 atl1c_hw_set_mac_addr(&adapter
->hw
, adapter
->hw
.perm_mac_addr
);
2598 atl1c_phy_disable(&adapter
->hw
);
2600 iounmap(adapter
->hw
.hw_addr
);
2602 pci_release_regions(pdev
);
2603 pci_disable_device(pdev
);
2604 free_netdev(netdev
);
2608 * atl1c_io_error_detected - called when PCI error is detected
2609 * @pdev: Pointer to PCI device
2610 * @state: The current pci connection state
2612 * This function is called after a PCI bus error affecting
2613 * this device has been detected.
2615 static pci_ers_result_t
atl1c_io_error_detected(struct pci_dev
*pdev
,
2616 pci_channel_state_t state
)
2618 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2619 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2621 netif_device_detach(netdev
);
2623 if (state
== pci_channel_io_perm_failure
)
2624 return PCI_ERS_RESULT_DISCONNECT
;
2626 if (netif_running(netdev
))
2627 atl1c_down(adapter
);
2629 pci_disable_device(pdev
);
2631 /* Request a slot slot reset. */
2632 return PCI_ERS_RESULT_NEED_RESET
;
2636 * atl1c_io_slot_reset - called after the pci bus has been reset.
2637 * @pdev: Pointer to PCI device
2639 * Restart the card from scratch, as if from a cold-boot. Implementation
2640 * resembles the first-half of the e1000_resume routine.
2642 static pci_ers_result_t
atl1c_io_slot_reset(struct pci_dev
*pdev
)
2644 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2645 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2647 if (pci_enable_device(pdev
)) {
2648 if (netif_msg_hw(adapter
))
2650 "Cannot re-enable PCI device after reset\n");
2651 return PCI_ERS_RESULT_DISCONNECT
;
2653 pci_set_master(pdev
);
2655 pci_enable_wake(pdev
, PCI_D3hot
, 0);
2656 pci_enable_wake(pdev
, PCI_D3cold
, 0);
2658 atl1c_reset_mac(&adapter
->hw
);
2660 return PCI_ERS_RESULT_RECOVERED
;
2664 * atl1c_io_resume - called when traffic can start flowing again.
2665 * @pdev: Pointer to PCI device
2667 * This callback is called when the error recovery driver tells us that
2668 * its OK to resume normal operation. Implementation resembles the
2669 * second-half of the atl1c_resume routine.
2671 static void atl1c_io_resume(struct pci_dev
*pdev
)
2673 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2674 struct atl1c_adapter
*adapter
= netdev_priv(netdev
);
2676 if (netif_running(netdev
)) {
2677 if (atl1c_up(adapter
)) {
2678 if (netif_msg_hw(adapter
))
2680 "Cannot bring device back up after reset\n");
2685 netif_device_attach(netdev
);
2688 static struct pci_error_handlers atl1c_err_handler
= {
2689 .error_detected
= atl1c_io_error_detected
,
2690 .slot_reset
= atl1c_io_slot_reset
,
2691 .resume
= atl1c_io_resume
,
2694 static SIMPLE_DEV_PM_OPS(atl1c_pm_ops
, atl1c_suspend
, atl1c_resume
);
2696 static struct pci_driver atl1c_driver
= {
2697 .name
= atl1c_driver_name
,
2698 .id_table
= atl1c_pci_tbl
,
2699 .probe
= atl1c_probe
,
2700 .remove
= __devexit_p(atl1c_remove
),
2701 .shutdown
= atl1c_shutdown
,
2702 .err_handler
= &atl1c_err_handler
,
2703 .driver
.pm
= &atl1c_pm_ops
,
2707 * atl1c_init_module - Driver Registration Routine
2709 * atl1c_init_module is the first routine called when the driver is
2710 * loaded. All it does is register with the PCI subsystem.
2712 static int __init
atl1c_init_module(void)
2714 return pci_register_driver(&atl1c_driver
);
2718 * atl1c_exit_module - Driver Exit Cleanup Routine
2720 * atl1c_exit_module is called just before the driver is removed
2723 static void __exit
atl1c_exit_module(void)
2725 pci_unregister_driver(&atl1c_driver
);
2728 module_init(atl1c_init_module
);
2729 module_exit(atl1c_exit_module
);