blob: a8f5c496c6cf047b8529eba3c42c6959e3706c06 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002/* Advanced Micro Devices Inc. AMD8111E Linux Network Driver
3 * Copyright (C) 2004 Advanced Micro Devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright 2001,2002 Jeff Garzik <jgarzik@mandrakesoft.com> [ 8139cp.c,tg3.c ]
7 * Copyright (C) 2001, 2002 David S. Miller (davem@redhat.com)[ tg3.c]
8 * Copyright 1996-1999 Thomas Bogendoerfer [ pcnet32.c ]
9 * Derived from the lance driver written 1993,1994,1995 by Donald Becker.
10 * Copyright 1993 United States Government as represented by the
11 * Director, National Security Agency.[ pcnet32.c ]
12 * Carsten Langgaard, carstenl@mips.com [ pcnet32.c ]
13 * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
14 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
Jeff Kirsher0ab75ae2013-12-06 06:28:43 -080027 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029Module Name:
30
31 amd8111e.c
32
33Abstract:
Jeff Garzik6aa20a22006-09-13 13:24:59 -040034
35 AMD8111 based 10/100 Ethernet Controller Driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37Environment:
38
39 Kernel Mode
40
41Revision History:
42 3.0.0
43 Initial Revision.
44 3.0.1
45 1. Dynamic interrupt coalescing.
46 2. Removed prev_stats.
47 3. MII support.
48 4. Dynamic IPG support
49 3.0.2 05/29/2003
50 1. Bug fix: Fixed failure to send jumbo packets larger than 4k.
51 2. Bug fix: Fixed VLAN support failure.
52 3. Bug fix: Fixed receive interrupt coalescing bug.
53 4. Dynamic IPG support is disabled by default.
54 3.0.3 06/05/2003
55 1. Bug fix: Fixed failure to close the interface if SMP is enabled.
56 3.0.4 12/09/2003
57 1. Added set_mac_address routine for bonding driver support.
58 2. Tested the driver for bonding support
Jeff Garzik6aa20a22006-09-13 13:24:59 -040059 3. Bug fix: Fixed mismach in actual receive buffer lenth and lenth
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 indicated to the h/w.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040061 4. Modified amd8111e_rx() routine to receive all the received packets
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 in the first interrupt.
63 5. Bug fix: Corrected rx_errors reported in get_stats() function.
64 3.0.5 03/22/2004
Jeff Garzik6aa20a22006-09-13 13:24:59 -040065 1. Added NAPI support
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67*/
68
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <linux/module.h>
71#include <linux/kernel.h>
72#include <linux/types.h>
73#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/delay.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000075#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/ioport.h>
77#include <linux/pci.h>
78#include <linux/netdevice.h>
79#include <linux/etherdevice.h>
80#include <linux/skbuff.h>
81#include <linux/ethtool.h>
82#include <linux/mii.h>
83#include <linux/if_vlan.h>
Jeff Garzik6aa20a22006-09-13 13:24:59 -040084#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <linux/crc32.h>
Tobias Klausercac8c812005-05-16 19:15:11 +020086#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <asm/io.h>
89#include <asm/byteorder.h>
90#include <asm/uaccess.h>
91
92#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
93#define AMD8111E_VLAN_TAG_USED 1
94#else
95#define AMD8111E_VLAN_TAG_USED 0
96#endif
97
98#include "amd8111e.h"
99#define MODULE_NAME "amd8111e"
Francois Romieu6ba33ac2008-07-06 20:55:12 -0700100#define MODULE_VERS "3.0.7"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101MODULE_AUTHOR("Advanced Micro Devices, Inc.");
Francois Romieu6ba33ac2008-07-06 20:55:12 -0700102MODULE_DESCRIPTION ("AMD8111 based 10/100 Ethernet Controller. Driver Version "MODULE_VERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103MODULE_LICENSE("GPL");
104MODULE_DEVICE_TABLE(pci, amd8111e_pci_tbl);
105module_param_array(speed_duplex, int, NULL, 0);
Joe Perches983960b2011-05-02 09:59:29 +0000106MODULE_PARM_DESC(speed_duplex, "Set device speed and duplex modes, 0: Auto Negotiate, 1: 10Mbps Half Duplex, 2: 10Mbps Full Duplex, 3: 100Mbps Half Duplex, 4: 100Mbps Full Duplex");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107module_param_array(coalesce, bool, NULL, 0);
108MODULE_PARM_DESC(coalesce, "Enable or Disable interrupt coalescing, 1: Enable, 0: Disable");
109module_param_array(dynamic_ipg, bool, NULL, 0);
110MODULE_PARM_DESC(dynamic_ipg, "Enable or Disable dynamic IPG, 1: Enable, 0: Disable");
111
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000112static DEFINE_PCI_DEVICE_TABLE(amd8111e_pci_tbl) = {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD8111E_7462,
115 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
116 { 0, }
117
118};
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530119
120/* This function will read the PHY registers. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int amd8111e_read_phy(struct amd8111e_priv* lp, int phy_id, int reg, u32* val)
122{
123 void __iomem *mmio = lp->mmio;
124 unsigned int reg_val;
125 unsigned int repeat= REPEAT_CNT;
126
127 reg_val = readl(mmio + PHY_ACCESS);
128 while (reg_val & PHY_CMD_ACTIVE)
129 reg_val = readl( mmio + PHY_ACCESS );
130
131 writel( PHY_RD_CMD | ((phy_id & 0x1f) << 21) |
132 ((reg & 0x1f) << 16), mmio +PHY_ACCESS);
133 do{
134 reg_val = readl(mmio + PHY_ACCESS);
135 udelay(30); /* It takes 30 us to read/write data */
136 } while (--repeat && (reg_val & PHY_CMD_ACTIVE));
137 if(reg_val & PHY_RD_ERR)
138 goto err_phy_read;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 *val = reg_val & 0xffff;
141 return 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400142err_phy_read:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 *val = 0;
144 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530148/* This function will write into PHY registers. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static int amd8111e_write_phy(struct amd8111e_priv* lp,int phy_id, int reg, u32 val)
150{
Yoann Padioleau632155e2007-06-01 00:46:35 -0700151 unsigned int repeat = REPEAT_CNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 void __iomem *mmio = lp->mmio;
153 unsigned int reg_val;
154
155 reg_val = readl(mmio + PHY_ACCESS);
156 while (reg_val & PHY_CMD_ACTIVE)
157 reg_val = readl( mmio + PHY_ACCESS );
158
159 writel( PHY_WR_CMD | ((phy_id & 0x1f) << 21) |
160 ((reg & 0x1f) << 16)|val, mmio + PHY_ACCESS);
161
162 do{
163 reg_val = readl(mmio + PHY_ACCESS);
164 udelay(30); /* It takes 30 us to read/write the data */
165 } while (--repeat && (reg_val & PHY_CMD_ACTIVE));
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if(reg_val & PHY_RD_ERR)
168 goto err_phy_write;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return 0;
171
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400172err_phy_write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530176
177/* This is the mii register read function provided to the mii interface. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int amd8111e_mdio_read(struct net_device * dev, int phy_id, int reg_num)
179{
180 struct amd8111e_priv* lp = netdev_priv(dev);
181 unsigned int reg_val;
182
183 amd8111e_read_phy(lp,phy_id,reg_num,&reg_val);
184 return reg_val;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530188/* This is the mii register write function provided to the mii interface. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189static void amd8111e_mdio_write(struct net_device * dev, int phy_id, int reg_num, int val)
190{
191 struct amd8111e_priv* lp = netdev_priv(dev);
192
193 amd8111e_write_phy(lp, phy_id, reg_num, val);
194}
195
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530196/* This function will set PHY speed. During initialization sets
197 * the original speed to 100 full
198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static void amd8111e_set_ext_phy(struct net_device *dev)
200{
201 struct amd8111e_priv *lp = netdev_priv(dev);
202 u32 bmcr,advert,tmp;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 /* Determine mii register values to set the speed */
205 advert = amd8111e_mdio_read(dev, lp->ext_phy_addr, MII_ADVERTISE);
206 tmp = advert & ~(ADVERTISE_ALL | ADVERTISE_100BASE4);
207 switch (lp->ext_phy_option){
208
209 default:
210 case SPEED_AUTONEG: /* advertise all values */
211 tmp |= ( ADVERTISE_10HALF|ADVERTISE_10FULL|
212 ADVERTISE_100HALF|ADVERTISE_100FULL) ;
213 break;
214 case SPEED10_HALF:
215 tmp |= ADVERTISE_10HALF;
216 break;
217 case SPEED10_FULL:
218 tmp |= ADVERTISE_10FULL;
219 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400220 case SPEED100_HALF:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 tmp |= ADVERTISE_100HALF;
222 break;
223 case SPEED100_FULL:
224 tmp |= ADVERTISE_100FULL;
225 break;
226 }
227
228 if(advert != tmp)
229 amd8111e_mdio_write(dev, lp->ext_phy_addr, MII_ADVERTISE, tmp);
230 /* Restart auto negotiation */
231 bmcr = amd8111e_mdio_read(dev, lp->ext_phy_addr, MII_BMCR);
232 bmcr |= (BMCR_ANENABLE | BMCR_ANRESTART);
233 amd8111e_mdio_write(dev, lp->ext_phy_addr, MII_BMCR, bmcr);
234
235}
236
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530237/* This function will unmap skb->data space and will free
238 * all transmit and receive skbuffs.
239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static int amd8111e_free_skbs(struct net_device *dev)
241{
242 struct amd8111e_priv *lp = netdev_priv(dev);
243 struct sk_buff* rx_skbuff;
244 int i;
245
246 /* Freeing transmit skbs */
247 for(i = 0; i < NUM_TX_BUFFERS; i++){
248 if(lp->tx_skbuff[i]){
249 pci_unmap_single(lp->pci_dev,lp->tx_dma_addr[i], lp->tx_skbuff[i]->len,PCI_DMA_TODEVICE);
250 dev_kfree_skb (lp->tx_skbuff[i]);
251 lp->tx_skbuff[i] = NULL;
252 lp->tx_dma_addr[i] = 0;
253 }
254 }
255 /* Freeing previously allocated receive buffers */
256 for (i = 0; i < NUM_RX_BUFFERS; i++){
257 rx_skbuff = lp->rx_skbuff[i];
258 if(rx_skbuff != NULL){
259 pci_unmap_single(lp->pci_dev,lp->rx_dma_addr[i],
260 lp->rx_buff_len - 2,PCI_DMA_FROMDEVICE);
261 dev_kfree_skb(lp->rx_skbuff[i]);
262 lp->rx_skbuff[i] = NULL;
263 lp->rx_dma_addr[i] = 0;
264 }
265 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 0;
268}
269
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530270/* This will set the receive buffer length corresponding
271 * to the mtu size of networkinterface.
272 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static inline void amd8111e_set_rx_buff_len(struct net_device* dev)
274{
275 struct amd8111e_priv* lp = netdev_priv(dev);
276 unsigned int mtu = dev->mtu;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (mtu > ETH_DATA_LEN){
279 /* MTU + ethernet header + FCS
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530280 * + optional VLAN tag + skb reserve space 2
281 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 lp->rx_buff_len = mtu + ETH_HLEN + 10;
283 lp->options |= OPTION_JUMBO_ENABLE;
284 } else{
285 lp->rx_buff_len = PKT_BUFF_SZ;
286 lp->options &= ~OPTION_JUMBO_ENABLE;
287 }
288}
289
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530290/* This function will free all the previously allocated buffers,
291 * determine new receive buffer length and will allocate new receive buffers.
292 * This function also allocates and initializes both the transmitter
293 * and receive hardware descriptors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
295static int amd8111e_init_ring(struct net_device *dev)
296{
297 struct amd8111e_priv *lp = netdev_priv(dev);
298 int i;
299
300 lp->rx_idx = lp->tx_idx = 0;
301 lp->tx_complete_idx = 0;
302 lp->tx_ring_idx = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 if(lp->opened)
306 /* Free previously allocated transmit and receive skbs */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400307 amd8111e_free_skbs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 else{
310 /* allocate the tx and rx descriptors */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400311 if((lp->tx_ring = pci_alloc_consistent(lp->pci_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 sizeof(struct amd8111e_tx_dr)*NUM_TX_RING_DR,
313 &lp->tx_ring_dma_addr)) == NULL)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 goto err_no_mem;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400316
317 if((lp->rx_ring = pci_alloc_consistent(lp->pci_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 sizeof(struct amd8111e_rx_dr)*NUM_RX_RING_DR,
319 &lp->rx_ring_dma_addr)) == NULL)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto err_free_tx_ring;
322
323 }
324 /* Set new receive buff size */
325 amd8111e_set_rx_buff_len(dev);
326
327 /* Allocating receive skbs */
328 for (i = 0; i < NUM_RX_BUFFERS; i++) {
329
Pradeep A Dalvi1d266432012-02-05 02:49:09 +0000330 lp->rx_skbuff[i] = netdev_alloc_skb(dev, lp->rx_buff_len);
331 if (!lp->rx_skbuff[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* Release previos allocated skbs */
333 for(--i; i >= 0 ;i--)
334 dev_kfree_skb(lp->rx_skbuff[i]);
335 goto err_free_rx_ring;
336 }
337 skb_reserve(lp->rx_skbuff[i],2);
338 }
339 /* Initilaizing receive descriptors */
340 for (i = 0; i < NUM_RX_BUFFERS; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400341 lp->rx_dma_addr[i] = pci_map_single(lp->pci_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 lp->rx_skbuff[i]->data,lp->rx_buff_len-2, PCI_DMA_FROMDEVICE);
343
344 lp->rx_ring[i].buff_phy_addr = cpu_to_le32(lp->rx_dma_addr[i]);
345 lp->rx_ring[i].buff_count = cpu_to_le16(lp->rx_buff_len-2);
346 wmb();
347 lp->rx_ring[i].rx_flags = cpu_to_le16(OWN_BIT);
348 }
349
350 /* Initializing transmit descriptors */
351 for (i = 0; i < NUM_TX_RING_DR; i++) {
352 lp->tx_ring[i].buff_phy_addr = 0;
353 lp->tx_ring[i].tx_flags = 0;
354 lp->tx_ring[i].buff_count = 0;
355 }
356
357 return 0;
358
359err_free_rx_ring:
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400360
361 pci_free_consistent(lp->pci_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 sizeof(struct amd8111e_rx_dr)*NUM_RX_RING_DR,lp->rx_ring,
363 lp->rx_ring_dma_addr);
364
365err_free_tx_ring:
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 pci_free_consistent(lp->pci_dev,
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400368 sizeof(struct amd8111e_tx_dr)*NUM_TX_RING_DR,lp->tx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 lp->tx_ring_dma_addr);
370
371err_no_mem:
372 return -ENOMEM;
373}
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530374
375/* This function will set the interrupt coalescing according
376 * to the input arguments
377 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static int amd8111e_set_coalesce(struct net_device * dev, enum coal_mode cmod)
379{
380 unsigned int timeout;
381 unsigned int event_count;
382
383 struct amd8111e_priv *lp = netdev_priv(dev);
384 void __iomem *mmio = lp->mmio;
385 struct amd8111e_coalesce_conf * coal_conf = &lp->coal_conf;
386
387
388 switch(cmod)
389 {
390 case RX_INTR_COAL :
391 timeout = coal_conf->rx_timeout;
392 event_count = coal_conf->rx_event_count;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400393 if( timeout > MAX_TIMEOUT ||
394 event_count > MAX_EVENT_COUNT )
Julia Lawall022484c2010-08-05 10:22:20 +0000395 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400397 timeout = timeout * DELAY_TIMER_CONV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 writel(VAL0|STINTEN, mmio+INTEN0);
399 writel((u32)DLY_INT_A_R0|( event_count<< 16 )|timeout,
400 mmio+DLY_INT_A);
401 break;
402
403 case TX_INTR_COAL :
404 timeout = coal_conf->tx_timeout;
405 event_count = coal_conf->tx_event_count;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400406 if( timeout > MAX_TIMEOUT ||
407 event_count > MAX_EVENT_COUNT )
Julia Lawall022484c2010-08-05 10:22:20 +0000408 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400410
411 timeout = timeout * DELAY_TIMER_CONV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 writel(VAL0|STINTEN,mmio+INTEN0);
413 writel((u32)DLY_INT_B_T0|( event_count<< 16 )|timeout,
414 mmio+DLY_INT_B);
415 break;
416
417 case DISABLE_COAL:
418 writel(0,mmio+STVAL);
419 writel(STINTEN, mmio+INTEN0);
420 writel(0, mmio +DLY_INT_B);
421 writel(0, mmio+DLY_INT_A);
422 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400423 case ENABLE_COAL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 /* Start the timer */
425 writel((u32)SOFT_TIMER_FREQ, mmio+STVAL); /* 0.5 sec */
426 writel(VAL0|STINTEN, mmio+INTEN0);
427 break;
428 default:
429 break;
430
431 }
432 return 0;
433
434}
435
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530436/* This function initializes the device registers and starts the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437static int amd8111e_restart(struct net_device *dev)
438{
439 struct amd8111e_priv *lp = netdev_priv(dev);
440 void __iomem *mmio = lp->mmio;
441 int i,reg_val;
442
443 /* stop the chip */
444 writel(RUN, mmio + CMD0);
445
446 if(amd8111e_init_ring(dev))
447 return -ENOMEM;
448
449 /* enable the port manager and set auto negotiation always */
450 writel((u32) VAL1|EN_PMGR, mmio + CMD3 );
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400451 writel((u32)XPHYANE|XPHYRST , mmio + CTRL2);
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 amd8111e_set_ext_phy(dev);
454
455 /* set control registers */
456 reg_val = readl(mmio + CTRL1);
457 reg_val &= ~XMTSP_MASK;
458 writel( reg_val| XMTSP_128 | CACHE_ALIGN, mmio + CTRL1 );
459
460 /* enable interrupt */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400461 writel( APINT5EN | APINT4EN | APINT3EN | APINT2EN | APINT1EN |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 APINT0EN | MIIPDTINTEN | MCCIINTEN | MCCINTEN | MREINTEN |
463 SPNDINTEN | MPINTEN | SINTEN | STINTEN, mmio + INTEN0);
464
465 writel(VAL3 | LCINTEN | VAL1 | TINTEN0 | VAL0 | RINTEN0, mmio + INTEN0);
466
467 /* initialize tx and rx ring base addresses */
468 writel((u32)lp->tx_ring_dma_addr,mmio + XMT_RING_BASE_ADDR0);
469 writel((u32)lp->rx_ring_dma_addr,mmio+ RCV_RING_BASE_ADDR0);
470
471 writew((u32)NUM_TX_RING_DR, mmio + XMT_RING_LEN0);
472 writew((u16)NUM_RX_RING_DR, mmio + RCV_RING_LEN0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /* set default IPG to 96 */
475 writew((u32)DEFAULT_IPG,mmio+IPG);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400476 writew((u32)(DEFAULT_IPG-IFS1_DELTA), mmio + IFS1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if(lp->options & OPTION_JUMBO_ENABLE){
479 writel((u32)VAL2|JUMBO, mmio + CMD3);
480 /* Reset REX_UFLO */
481 writel( REX_UFLO, mmio + CMD2);
482 /* Should not set REX_UFLO for jumbo frames */
483 writel( VAL0 | APAD_XMT|REX_RTRY , mmio + CMD2);
484 }else{
485 writel( VAL0 | APAD_XMT | REX_RTRY|REX_UFLO, mmio + CMD2);
486 writel((u32)JUMBO, mmio + CMD3);
487 }
488
489#if AMD8111E_VLAN_TAG_USED
490 writel((u32) VAL2|VSIZE|VL_TAG_DEL, mmio + CMD3);
491#endif
492 writel( VAL0 | APAD_XMT | REX_RTRY, mmio + CMD2 );
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /* Setting the MAC address to the device */
Joe Perchesc857ff62011-11-16 09:38:05 +0000495 for (i = 0; i < ETH_ALEN; i++)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400496 writeb( dev->dev_addr[i], mmio + PADR + i );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* Enable interrupt coalesce */
499 if(lp->options & OPTION_INTR_COAL_ENABLE){
Varka Bhadramf7afbaa2014-07-14 14:09:06 +0530500 netdev_info(dev, "Interrupt Coalescing Enabled.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 amd8111e_set_coalesce(dev,ENABLE_COAL);
502 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* set RUN bit to start the chip */
505 writel(VAL2 | RDMD0, mmio + CMD0);
506 writel(VAL0 | INTREN | RUN, mmio + CMD0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /* To avoid PCI posting bug */
509 readl(mmio+CMD0);
510 return 0;
511}
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530512
513/* This function clears necessary the device registers. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514static void amd8111e_init_hw_default( struct amd8111e_priv* lp)
515{
516 unsigned int reg_val;
517 unsigned int logic_filter[2] ={0,};
518 void __iomem *mmio = lp->mmio;
519
520
521 /* stop the chip */
522 writel(RUN, mmio + CMD0);
523
524 /* AUTOPOLL0 Register *//*TBD default value is 8100 in FPS */
525 writew( 0x8100 | lp->ext_phy_addr, mmio + AUTOPOLL0);
526
527 /* Clear RCV_RING_BASE_ADDR */
528 writel(0, mmio + RCV_RING_BASE_ADDR0);
529
530 /* Clear XMT_RING_BASE_ADDR */
531 writel(0, mmio + XMT_RING_BASE_ADDR0);
532 writel(0, mmio + XMT_RING_BASE_ADDR1);
533 writel(0, mmio + XMT_RING_BASE_ADDR2);
534 writel(0, mmio + XMT_RING_BASE_ADDR3);
535
536 /* Clear CMD0 */
537 writel(CMD0_CLEAR,mmio + CMD0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /* Clear CMD2 */
540 writel(CMD2_CLEAR, mmio +CMD2);
541
542 /* Clear CMD7 */
543 writel(CMD7_CLEAR , mmio + CMD7);
544
545 /* Clear DLY_INT_A and DLY_INT_B */
546 writel(0x0, mmio + DLY_INT_A);
547 writel(0x0, mmio + DLY_INT_B);
548
549 /* Clear FLOW_CONTROL */
550 writel(0x0, mmio + FLOW_CONTROL);
551
552 /* Clear INT0 write 1 to clear register */
553 reg_val = readl(mmio + INT0);
554 writel(reg_val, mmio + INT0);
555
556 /* Clear STVAL */
557 writel(0x0, mmio + STVAL);
558
559 /* Clear INTEN0 */
560 writel( INTEN0_CLEAR, mmio + INTEN0);
561
562 /* Clear LADRF */
563 writel(0x0 , mmio + LADRF);
564
565 /* Set SRAM_SIZE & SRAM_BOUNDARY registers */
566 writel( 0x80010,mmio + SRAM_SIZE);
567
568 /* Clear RCV_RING0_LEN */
569 writel(0x0, mmio + RCV_RING_LEN0);
570
571 /* Clear XMT_RING0/1/2/3_LEN */
572 writel(0x0, mmio + XMT_RING_LEN0);
573 writel(0x0, mmio + XMT_RING_LEN1);
574 writel(0x0, mmio + XMT_RING_LEN2);
575 writel(0x0, mmio + XMT_RING_LEN3);
576
577 /* Clear XMT_RING_LIMIT */
578 writel(0x0, mmio + XMT_RING_LIMIT);
579
580 /* Clear MIB */
581 writew(MIB_CLEAR, mmio + MIB_ADDR);
582
583 /* Clear LARF */
584 amd8111e_writeq(*(u64*)logic_filter,mmio+LADRF);
585
586 /* SRAM_SIZE register */
587 reg_val = readl(mmio + SRAM_SIZE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if(lp->options & OPTION_JUMBO_ENABLE)
590 writel( VAL2|JUMBO, mmio + CMD3);
591#if AMD8111E_VLAN_TAG_USED
592 writel(VAL2|VSIZE|VL_TAG_DEL, mmio + CMD3 );
593#endif
594 /* Set default value to CTRL1 Register */
595 writel(CTRL1_DEFAULT, mmio + CTRL1);
596
597 /* To avoid PCI posting bug */
598 readl(mmio + CMD2);
599
600}
601
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530602/* This function disables the interrupt and clears all the pending
603 * interrupts in INT0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
605static void amd8111e_disable_interrupt(struct amd8111e_priv* lp)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400606{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 u32 intr0;
608
609 /* Disable interrupt */
610 writel(INTREN, lp->mmio + CMD0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /* Clear INT0 */
613 intr0 = readl(lp->mmio + INT0);
614 writel(intr0, lp->mmio + INT0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /* To avoid PCI posting bug */
617 readl(lp->mmio + INT0);
618
619}
620
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530621/* This function stops the chip. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622static void amd8111e_stop_chip(struct amd8111e_priv* lp)
623{
624 writel(RUN, lp->mmio + CMD0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /* To avoid PCI posting bug */
627 readl(lp->mmio + CMD0);
628}
629
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530630/* This function frees the transmiter and receiver descriptor rings. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631static void amd8111e_free_ring(struct amd8111e_priv* lp)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400632{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* Free transmit and receive descriptor rings */
634 if(lp->rx_ring){
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400635 pci_free_consistent(lp->pci_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 sizeof(struct amd8111e_rx_dr)*NUM_RX_RING_DR,
637 lp->rx_ring, lp->rx_ring_dma_addr);
638 lp->rx_ring = NULL;
639 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if(lp->tx_ring){
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400642 pci_free_consistent(lp->pci_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 sizeof(struct amd8111e_tx_dr)*NUM_TX_RING_DR,
644 lp->tx_ring, lp->tx_ring_dma_addr);
645
646 lp->tx_ring = NULL;
647 }
648
649}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530651/* This function will free all the transmit skbs that are actually
652 * transmitted by the device. It will check the ownership of the
653 * skb before freeing the skb.
654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655static int amd8111e_tx(struct net_device *dev)
656{
657 struct amd8111e_priv* lp = netdev_priv(dev);
658 int tx_index = lp->tx_complete_idx & TX_RING_DR_MOD_MASK;
659 int status;
660 /* Complete all the transmit packet */
661 while (lp->tx_complete_idx != lp->tx_idx){
662 tx_index = lp->tx_complete_idx & TX_RING_DR_MOD_MASK;
663 status = le16_to_cpu(lp->tx_ring[tx_index].tx_flags);
664
665 if(status & OWN_BIT)
666 break; /* It still hasn't been Txed */
667
668 lp->tx_ring[tx_index].buff_phy_addr = 0;
669
670 /* We must free the original skb */
671 if (lp->tx_skbuff[tx_index]) {
672 pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[tx_index],
673 lp->tx_skbuff[tx_index]->len,
674 PCI_DMA_TODEVICE);
675 dev_kfree_skb_irq (lp->tx_skbuff[tx_index]);
676 lp->tx_skbuff[tx_index] = NULL;
677 lp->tx_dma_addr[tx_index] = 0;
678 }
679 lp->tx_complete_idx++;
680 /*COAL update tx coalescing parameters */
681 lp->coal_conf.tx_packets++;
Al Viro05d2fec2007-08-22 21:42:28 -0400682 lp->coal_conf.tx_bytes +=
683 le16_to_cpu(lp->tx_ring[tx_index].buff_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (netif_queue_stopped(dev) &&
686 lp->tx_complete_idx > lp->tx_idx - NUM_TX_BUFFERS +2){
687 /* The ring is no longer full, clear tbusy. */
688 /* lp->tx_full = 0; */
689 netif_wake_queue (dev);
690 }
691 }
692 return 0;
693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/* This function handles the driver receive operation in polling mode */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700696static int amd8111e_rx_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700698 struct amd8111e_priv *lp = container_of(napi, struct amd8111e_priv, napi);
699 struct net_device *dev = lp->amd8111e_net_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 int rx_index = lp->rx_idx & RX_RING_DR_MOD_MASK;
701 void __iomem *mmio = lp->mmio;
702 struct sk_buff *skb,*new_skb;
703 int min_pkt_len, status;
704 unsigned int intr0;
705 int num_rx_pkt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 short pkt_len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400707#if AMD8111E_VLAN_TAG_USED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 short vtag;
709#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700710 int rx_pkt_limit = budget;
Liu Taodfa1b732005-05-12 19:40:38 -0400711 unsigned long flags;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400712
Eric W. Biederman278d5382014-03-14 18:01:11 -0700713 if (rx_pkt_limit <= 0)
714 goto rx_not_empty;
715
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400716 do{
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530717 /* process receive packets until we use the quota.
718 * If we own the next entry, it's a new packet. Send it up.
719 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 while(1) {
721 status = le16_to_cpu(lp->rx_ring[rx_index].rx_flags);
722 if (status & OWN_BIT)
723 break;
724
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530725 /* There is a tricky error noted by John Murphy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 * <murf@perftech.com> to Russ Nelson: Even with
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400727 * full-sized * buffers it's possible for a
728 * jabber packet to use two buffers, with only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 * the last correctly noting the error.
730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if(status & ERR_BIT) {
732 /* reseting flags */
733 lp->rx_ring[rx_index].rx_flags &= RESET_RX_FLAGS;
734 goto err_next_pkt;
735 }
736 /* check for STP and ENP */
737 if(!((status & STP_BIT) && (status & ENP_BIT))){
738 /* reseting flags */
739 lp->rx_ring[rx_index].rx_flags &= RESET_RX_FLAGS;
740 goto err_next_pkt;
741 }
742 pkt_len = le16_to_cpu(lp->rx_ring[rx_index].msg_count) - 4;
743
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400744#if AMD8111E_VLAN_TAG_USED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 vtag = status & TT_MASK;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400746 /*MAC will strip vlan tag*/
Jiri Pirkoc8d9e6d2011-07-20 04:54:11 +0000747 if (vtag != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 min_pkt_len =MIN_PKT_LEN - 4;
749 else
750#endif
751 min_pkt_len =MIN_PKT_LEN;
752
753 if (pkt_len < min_pkt_len) {
754 lp->rx_ring[rx_index].rx_flags &= RESET_RX_FLAGS;
755 lp->drv_rx_errors++;
756 goto err_next_pkt;
757 }
758 if(--rx_pkt_limit < 0)
759 goto rx_not_empty;
Pradeep A Dalvi1d266432012-02-05 02:49:09 +0000760 new_skb = netdev_alloc_skb(dev, lp->rx_buff_len);
761 if (!new_skb) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400762 /* if allocation fail,
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530763 * ignore that pkt and go to next one
764 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 lp->rx_ring[rx_index].rx_flags &= RESET_RX_FLAGS;
766 lp->drv_rx_errors++;
767 goto err_next_pkt;
768 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 skb_reserve(new_skb, 2);
771 skb = lp->rx_skbuff[rx_index];
772 pci_unmap_single(lp->pci_dev,lp->rx_dma_addr[rx_index],
773 lp->rx_buff_len-2, PCI_DMA_FROMDEVICE);
774 skb_put(skb, pkt_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 lp->rx_skbuff[rx_index] = new_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 lp->rx_dma_addr[rx_index] = pci_map_single(lp->pci_dev,
777 new_skb->data,
778 lp->rx_buff_len-2,
779 PCI_DMA_FROMDEVICE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 skb->protocol = eth_type_trans(skb, dev);
782
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400783#if AMD8111E_VLAN_TAG_USED
Jiri Pirkoc8d9e6d2011-07-20 04:54:11 +0000784 if (vtag == TT_VLAN_TAGGED){
785 u16 vlan_tag = le16_to_cpu(lp->rx_ring[rx_index].tag_ctrl_info);
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000786 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
Jiri Pirkoc8d9e6d2011-07-20 04:54:11 +0000787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788#endif
Jiri Pirkoc8d9e6d2011-07-20 04:54:11 +0000789 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*COAL update rx coalescing parameters*/
791 lp->coal_conf.rx_packets++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400792 lp->coal_conf.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 num_rx_pkt++;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400794
795 err_next_pkt:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 lp->rx_ring[rx_index].buff_phy_addr
797 = cpu_to_le32(lp->rx_dma_addr[rx_index]);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400798 lp->rx_ring[rx_index].buff_count =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 cpu_to_le16(lp->rx_buff_len-2);
800 wmb();
801 lp->rx_ring[rx_index].rx_flags |= cpu_to_le16(OWN_BIT);
802 rx_index = (++lp->rx_idx) & RX_RING_DR_MOD_MASK;
803 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400804 /* Check the interrupt status register for more packets in the
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530805 * mean time. Process them since we have not used up our quota.
806 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 intr0 = readl(mmio + INT0);
808 /*Ack receive packets */
809 writel(intr0 & RINT0,mmio + INT0);
810
811 } while(intr0 & RINT0);
812
Chris Friesen48e5eca2008-10-28 15:50:54 -0700813 if (rx_pkt_limit > 0) {
814 /* Receive descriptor is empty now */
815 spin_lock_irqsave(&lp->lock, flags);
Ben Hutchings288379f2009-01-19 16:43:59 -0800816 __napi_complete(napi);
Chris Friesen48e5eca2008-10-28 15:50:54 -0700817 writel(VAL0|RINTEN0, mmio + INTEN0);
818 writel(VAL2 | RDMD0, mmio + CMD0);
819 spin_unlock_irqrestore(&lp->lock, flags);
820 }
Liu Taodfa1b732005-05-12 19:40:38 -0400821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822rx_not_empty:
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700823 return num_rx_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530826/* This function will indicate the link status to the kernel. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827static int amd8111e_link_change(struct net_device* dev)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400828{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 struct amd8111e_priv *lp = netdev_priv(dev);
830 int status0,speed;
831
832 /* read the link change */
833 status0 = readl(lp->mmio + STAT0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if(status0 & LINK_STATS){
836 if(status0 & AUTONEG_COMPLETE)
837 lp->link_config.autoneg = AUTONEG_ENABLE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400838 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 lp->link_config.autoneg = AUTONEG_DISABLE;
840
841 if(status0 & FULL_DPLX)
842 lp->link_config.duplex = DUPLEX_FULL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400843 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 lp->link_config.duplex = DUPLEX_HALF;
845 speed = (status0 & SPEED_MASK) >> 7;
846 if(speed == PHY_SPEED_10)
847 lp->link_config.speed = SPEED_10;
848 else if(speed == PHY_SPEED_100)
849 lp->link_config.speed = SPEED_100;
850
Varka Bhadramf7afbaa2014-07-14 14:09:06 +0530851 netdev_info(dev, "Link is Up. Speed is %s Mbps %s Duplex\n",
852 (lp->link_config.speed == SPEED_100) ?
853 "100" : "10",
854 (lp->link_config.duplex == DUPLEX_FULL) ?
855 "Full" : "Half");
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 netif_carrier_on(dev);
858 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400859 else{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 lp->link_config.speed = SPEED_INVALID;
861 lp->link_config.duplex = DUPLEX_INVALID;
862 lp->link_config.autoneg = AUTONEG_INVALID;
Varka Bhadramf7afbaa2014-07-14 14:09:06 +0530863 netdev_info(dev, "Link is Down.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 netif_carrier_off(dev);
865 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return 0;
868}
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530869
870/* This function reads the mib counters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871static int amd8111e_read_mib(void __iomem *mmio, u8 MIB_COUNTER)
872{
873 unsigned int status;
874 unsigned int data;
875 unsigned int repeat = REPEAT_CNT;
876
877 writew( MIB_RD_CMD | MIB_COUNTER, mmio + MIB_ADDR);
878 do {
879 status = readw(mmio + MIB_ADDR);
880 udelay(2); /* controller takes MAX 2 us to get mib data */
881 }
882 while (--repeat && (status & MIB_CMD_ACTIVE));
883
884 data = readl(mmio + MIB_DATA);
885 return data;
886}
887
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530888/* This function reads the mib registers and returns the hardware statistics.
Eric Dumazetc3227e52010-08-20 03:08:23 +0000889 * It updates previous internal driver statistics with new values.
890 */
891static struct net_device_stats *amd8111e_get_stats(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 struct amd8111e_priv *lp = netdev_priv(dev);
894 void __iomem *mmio = lp->mmio;
895 unsigned long flags;
Eric Dumazetc3227e52010-08-20 03:08:23 +0000896 struct net_device_stats *new_stats = &dev->stats;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400897
Eric Dumazetc3227e52010-08-20 03:08:23 +0000898 if (!lp->opened)
899 return new_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 spin_lock_irqsave (&lp->lock, flags);
901
902 /* stats.rx_packets */
903 new_stats->rx_packets = amd8111e_read_mib(mmio, rcv_broadcast_pkts)+
904 amd8111e_read_mib(mmio, rcv_multicast_pkts)+
905 amd8111e_read_mib(mmio, rcv_unicast_pkts);
906
907 /* stats.tx_packets */
908 new_stats->tx_packets = amd8111e_read_mib(mmio, xmt_packets);
909
910 /*stats.rx_bytes */
911 new_stats->rx_bytes = amd8111e_read_mib(mmio, rcv_octets);
912
913 /* stats.tx_bytes */
914 new_stats->tx_bytes = amd8111e_read_mib(mmio, xmt_octets);
915
916 /* stats.rx_errors */
917 /* hw errors + errors driver reported */
918 new_stats->rx_errors = amd8111e_read_mib(mmio, rcv_undersize_pkts)+
919 amd8111e_read_mib(mmio, rcv_fragments)+
920 amd8111e_read_mib(mmio, rcv_jabbers)+
921 amd8111e_read_mib(mmio, rcv_alignment_errors)+
922 amd8111e_read_mib(mmio, rcv_fcs_errors)+
923 amd8111e_read_mib(mmio, rcv_miss_pkts)+
924 lp->drv_rx_errors;
925
926 /* stats.tx_errors */
927 new_stats->tx_errors = amd8111e_read_mib(mmio, xmt_underrun_pkts);
928
929 /* stats.rx_dropped*/
930 new_stats->rx_dropped = amd8111e_read_mib(mmio, rcv_miss_pkts);
931
932 /* stats.tx_dropped*/
933 new_stats->tx_dropped = amd8111e_read_mib(mmio, xmt_underrun_pkts);
934
935 /* stats.multicast*/
936 new_stats->multicast = amd8111e_read_mib(mmio, rcv_multicast_pkts);
937
938 /* stats.collisions*/
939 new_stats->collisions = amd8111e_read_mib(mmio, xmt_collisions);
940
941 /* stats.rx_length_errors*/
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400942 new_stats->rx_length_errors =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 amd8111e_read_mib(mmio, rcv_undersize_pkts)+
944 amd8111e_read_mib(mmio, rcv_oversize_pkts);
945
946 /* stats.rx_over_errors*/
947 new_stats->rx_over_errors = amd8111e_read_mib(mmio, rcv_miss_pkts);
948
949 /* stats.rx_crc_errors*/
950 new_stats->rx_crc_errors = amd8111e_read_mib(mmio, rcv_fcs_errors);
951
952 /* stats.rx_frame_errors*/
953 new_stats->rx_frame_errors =
954 amd8111e_read_mib(mmio, rcv_alignment_errors);
955
956 /* stats.rx_fifo_errors */
957 new_stats->rx_fifo_errors = amd8111e_read_mib(mmio, rcv_miss_pkts);
958
959 /* stats.rx_missed_errors */
960 new_stats->rx_missed_errors = amd8111e_read_mib(mmio, rcv_miss_pkts);
961
962 /* stats.tx_aborted_errors*/
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400963 new_stats->tx_aborted_errors =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 amd8111e_read_mib(mmio, xmt_excessive_collision);
965
966 /* stats.tx_carrier_errors*/
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400967 new_stats->tx_carrier_errors =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 amd8111e_read_mib(mmio, xmt_loss_carrier);
969
970 /* stats.tx_fifo_errors*/
971 new_stats->tx_fifo_errors = amd8111e_read_mib(mmio, xmt_underrun_pkts);
972
973 /* stats.tx_window_errors*/
974 new_stats->tx_window_errors =
975 amd8111e_read_mib(mmio, xmt_late_collision);
976
977 /* Reset the mibs for collecting new statistics */
978 /* writew(MIB_CLEAR, mmio + MIB_ADDR);*/
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 spin_unlock_irqrestore (&lp->lock, flags);
981
982 return new_stats;
983}
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530984
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200985/* This function recalculate the interrupt coalescing mode on every interrupt
Varka Bhadram13a4fa42014-07-14 14:09:07 +0530986 * according to the datarate and the packet rate.
987 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988static int amd8111e_calc_coalesce(struct net_device *dev)
989{
990 struct amd8111e_priv *lp = netdev_priv(dev);
991 struct amd8111e_coalesce_conf * coal_conf = &lp->coal_conf;
992 int tx_pkt_rate;
993 int rx_pkt_rate;
994 int tx_data_rate;
995 int rx_data_rate;
996 int rx_pkt_size;
997 int tx_pkt_size;
998
999 tx_pkt_rate = coal_conf->tx_packets - coal_conf->tx_prev_packets;
1000 coal_conf->tx_prev_packets = coal_conf->tx_packets;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 tx_data_rate = coal_conf->tx_bytes - coal_conf->tx_prev_bytes;
1003 coal_conf->tx_prev_bytes = coal_conf->tx_bytes;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 rx_pkt_rate = coal_conf->rx_packets - coal_conf->rx_prev_packets;
1006 coal_conf->rx_prev_packets = coal_conf->rx_packets;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 rx_data_rate = coal_conf->rx_bytes - coal_conf->rx_prev_bytes;
1009 coal_conf->rx_prev_bytes = coal_conf->rx_bytes;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if(rx_pkt_rate < 800){
1012 if(coal_conf->rx_coal_type != NO_COALESCE){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 coal_conf->rx_timeout = 0x0;
1015 coal_conf->rx_event_count = 0;
1016 amd8111e_set_coalesce(dev,RX_INTR_COAL);
1017 coal_conf->rx_coal_type = NO_COALESCE;
1018 }
1019 }
1020 else{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 rx_pkt_size = rx_data_rate/rx_pkt_rate;
1023 if (rx_pkt_size < 128){
1024 if(coal_conf->rx_coal_type != NO_COALESCE){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 coal_conf->rx_timeout = 0;
1027 coal_conf->rx_event_count = 0;
1028 amd8111e_set_coalesce(dev,RX_INTR_COAL);
1029 coal_conf->rx_coal_type = NO_COALESCE;
1030 }
1031
1032 }
1033 else if ( (rx_pkt_size >= 128) && (rx_pkt_size < 512) ){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if(coal_conf->rx_coal_type != LOW_COALESCE){
1036 coal_conf->rx_timeout = 1;
1037 coal_conf->rx_event_count = 4;
1038 amd8111e_set_coalesce(dev,RX_INTR_COAL);
1039 coal_conf->rx_coal_type = LOW_COALESCE;
1040 }
1041 }
1042 else if ((rx_pkt_size >= 512) && (rx_pkt_size < 1024)){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if(coal_conf->rx_coal_type != MEDIUM_COALESCE){
1045 coal_conf->rx_timeout = 1;
1046 coal_conf->rx_event_count = 4;
1047 amd8111e_set_coalesce(dev,RX_INTR_COAL);
1048 coal_conf->rx_coal_type = MEDIUM_COALESCE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001049 }
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
1052 else if(rx_pkt_size >= 1024){
1053 if(coal_conf->rx_coal_type != HIGH_COALESCE){
1054 coal_conf->rx_timeout = 2;
1055 coal_conf->rx_event_count = 3;
1056 amd8111e_set_coalesce(dev,RX_INTR_COAL);
1057 coal_conf->rx_coal_type = HIGH_COALESCE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060 }
1061 /* NOW FOR TX INTR COALESC */
1062 if(tx_pkt_rate < 800){
1063 if(coal_conf->tx_coal_type != NO_COALESCE){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 coal_conf->tx_timeout = 0x0;
1066 coal_conf->tx_event_count = 0;
1067 amd8111e_set_coalesce(dev,TX_INTR_COAL);
1068 coal_conf->tx_coal_type = NO_COALESCE;
1069 }
1070 }
1071 else{
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 tx_pkt_size = tx_data_rate/tx_pkt_rate;
1074 if (tx_pkt_size < 128){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if(coal_conf->tx_coal_type != NO_COALESCE){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 coal_conf->tx_timeout = 0;
1079 coal_conf->tx_event_count = 0;
1080 amd8111e_set_coalesce(dev,TX_INTR_COAL);
1081 coal_conf->tx_coal_type = NO_COALESCE;
1082 }
1083
1084 }
1085 else if ( (tx_pkt_size >= 128) && (tx_pkt_size < 512) ){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if(coal_conf->tx_coal_type != LOW_COALESCE){
1088 coal_conf->tx_timeout = 1;
1089 coal_conf->tx_event_count = 2;
1090 amd8111e_set_coalesce(dev,TX_INTR_COAL);
1091 coal_conf->tx_coal_type = LOW_COALESCE;
1092
1093 }
1094 }
1095 else if ((tx_pkt_size >= 512) && (tx_pkt_size < 1024)){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if(coal_conf->tx_coal_type != MEDIUM_COALESCE){
1098 coal_conf->tx_timeout = 2;
1099 coal_conf->tx_event_count = 5;
1100 amd8111e_set_coalesce(dev,TX_INTR_COAL);
1101 coal_conf->tx_coal_type = MEDIUM_COALESCE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001102 }
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
1105 else if(tx_pkt_size >= 1024){
1106 if (tx_pkt_size >= 1024){
1107 if(coal_conf->tx_coal_type != HIGH_COALESCE){
1108 coal_conf->tx_timeout = 4;
1109 coal_conf->tx_event_count = 8;
1110 amd8111e_set_coalesce(dev,TX_INTR_COAL);
1111 coal_conf->tx_coal_type = HIGH_COALESCE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114 }
1115 }
1116 return 0;
1117
1118}
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301119
1120/* This is device interrupt function. It handles transmit,
1121 * receive,link change and hardware timer interrupts.
1122 */
David Howells7d12e782006-10-05 14:55:46 +01001123static irqreturn_t amd8111e_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
1125
1126 struct net_device * dev = (struct net_device *) dev_id;
1127 struct amd8111e_priv *lp = netdev_priv(dev);
1128 void __iomem *mmio = lp->mmio;
Liu Taodfa1b732005-05-12 19:40:38 -04001129 unsigned int intr0, intren0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 unsigned int handled = 1;
1131
Liu Taodfa1b732005-05-12 19:40:38 -04001132 if(unlikely(dev == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return IRQ_NONE;
1134
Liu Taodfa1b732005-05-12 19:40:38 -04001135 spin_lock(&lp->lock);
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 /* disabling interrupt */
1138 writel(INTREN, mmio + CMD0);
1139
1140 /* Read interrupt status */
1141 intr0 = readl(mmio + INT0);
Liu Taodfa1b732005-05-12 19:40:38 -04001142 intren0 = readl(mmio + INTEN0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 /* Process all the INT event until INTR bit is clear. */
1145
1146 if (!(intr0 & INTR)){
1147 handled = 0;
1148 goto err_no_interrupt;
1149 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /* Current driver processes 4 interrupts : RINT,TINT,LCINT,STINT */
1152 writel(intr0, mmio + INT0);
1153
1154 /* Check if Receive Interrupt has occurred. */
Francois Romieu6ba33ac2008-07-06 20:55:12 -07001155 if (intr0 & RINT0) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001156 if (napi_schedule_prep(&lp->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /* Disable receive interupts */
1158 writel(RINTEN0, mmio + INTEN0);
1159 /* Schedule a polling routine */
Ben Hutchings288379f2009-01-19 16:43:59 -08001160 __napi_schedule(&lp->napi);
Francois Romieu6ba33ac2008-07-06 20:55:12 -07001161 } else if (intren0 & RINTEN0) {
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301162 netdev_dbg(dev, "************Driver bug! interrupt while in poll\n");
Liu Taodfa1b732005-05-12 19:40:38 -04001163 /* Fix by disable receive interrupts */
1164 writel(RINTEN0, mmio + INTEN0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166 }
Francois Romieu6ba33ac2008-07-06 20:55:12 -07001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 /* Check if Transmit Interrupt has occurred. */
Francois Romieu6ba33ac2008-07-06 20:55:12 -07001169 if (intr0 & TINT0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 amd8111e_tx(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 /* Check if Link Change Interrupt has occurred. */
1173 if (intr0 & LCINT)
1174 amd8111e_link_change(dev);
1175
1176 /* Check if Hardware Timer Interrupt has occurred. */
1177 if (intr0 & STINT)
1178 amd8111e_calc_coalesce(dev);
1179
1180err_no_interrupt:
1181 writel( VAL0 | INTREN,mmio + CMD0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001182
Liu Taodfa1b732005-05-12 19:40:38 -04001183 spin_unlock(&lp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return IRQ_RETVAL(handled);
1186}
1187
1188#ifdef CONFIG_NET_POLL_CONTROLLER
1189static void amd8111e_poll(struct net_device *dev)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001190{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 unsigned long flags;
Jiri Kosinab7e36bf2007-02-05 16:29:49 -08001192 local_irq_save(flags);
David Howells7d12e782006-10-05 14:55:46 +01001193 amd8111e_interrupt(0, dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001194 local_irq_restore(flags);
1195}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196#endif
1197
1198
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301199/* This function closes the network interface and updates
1200 * the statistics so that most recent statistics will be
1201 * available after the interface is down.
1202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203static int amd8111e_close(struct net_device * dev)
1204{
1205 struct amd8111e_priv *lp = netdev_priv(dev);
1206 netif_stop_queue(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001207
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001208 napi_disable(&lp->napi);
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 spin_lock_irq(&lp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 amd8111e_disable_interrupt(lp);
1213 amd8111e_stop_chip(lp);
Chunbo Luoe83603f2008-10-28 09:51:46 +08001214
1215 /* Free transmit and receive skbs */
1216 amd8111e_free_skbs(lp->amd8111e_net_dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 netif_carrier_off(lp->amd8111e_net_dev);
1219
1220 /* Delete ipg timer */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001221 if(lp->options & OPTION_DYN_IPG_ENABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 del_timer_sync(&lp->ipg_data.ipg_timer);
1223
1224 spin_unlock_irq(&lp->lock);
1225 free_irq(dev->irq, dev);
Chunbo Luoe83603f2008-10-28 09:51:46 +08001226 amd8111e_free_ring(lp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /* Update the statistics before closing */
1229 amd8111e_get_stats(dev);
1230 lp->opened = 0;
1231 return 0;
1232}
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301233
1234/* This function opens new interface.It requests irq for the device,
1235 * initializes the device,buffers and descriptors, and starts the device.
1236 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237static int amd8111e_open(struct net_device * dev )
1238{
1239 struct amd8111e_priv *lp = netdev_priv(dev);
1240
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07001241 if(dev->irq ==0 || request_irq(dev->irq, amd8111e_interrupt, IRQF_SHARED,
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001242 dev->name, dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return -EAGAIN;
1244
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001245 napi_enable(&lp->napi);
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 spin_lock_irq(&lp->lock);
1248
1249 amd8111e_init_hw_default(lp);
1250
1251 if(amd8111e_restart(dev)){
1252 spin_unlock_irq(&lp->lock);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001253 napi_disable(&lp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (dev->irq)
1255 free_irq(dev->irq, dev);
1256 return -ENOMEM;
1257 }
1258 /* Start ipg timer */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001259 if(lp->options & OPTION_DYN_IPG_ENABLE){
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 add_timer(&lp->ipg_data.ipg_timer);
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301261 netdev_info(dev, "Dynamic IPG Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263
1264 lp->opened = 1;
1265
1266 spin_unlock_irq(&lp->lock);
1267
1268 netif_start_queue(dev);
1269
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301272
1273/* This function checks if there is any transmit descriptors
1274 * available to queue more packet.
1275 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276static int amd8111e_tx_queue_avail(struct amd8111e_priv* lp )
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001277{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 int tx_index = lp->tx_idx & TX_BUFF_MOD_MASK;
Al Viroee41a822007-08-22 21:37:46 -04001279 if (lp->tx_skbuff[tx_index])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return -1;
1281 else
1282 return 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301286/* This function will queue the transmit packets to the
1287 * descriptors and will trigger the send operation. It also
1288 * initializes the transmit descriptors with buffer physical address,
1289 * byte count, ownership to hardware etc.
1290 */
Stephen Hemminger613573252009-08-31 19:50:58 +00001291static netdev_tx_t amd8111e_start_xmit(struct sk_buff *skb,
1292 struct net_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
1294 struct amd8111e_priv *lp = netdev_priv(dev);
1295 int tx_index;
1296 unsigned long flags;
1297
1298 spin_lock_irqsave(&lp->lock, flags);
1299
1300 tx_index = lp->tx_idx & TX_RING_DR_MOD_MASK;
1301
1302 lp->tx_ring[tx_index].buff_count = cpu_to_le16(skb->len);
1303
1304 lp->tx_skbuff[tx_index] = skb;
1305 lp->tx_ring[tx_index].tx_flags = 0;
1306
1307#if AMD8111E_VLAN_TAG_USED
Jesse Grosseab6d182010-10-20 13:56:03 +00001308 if (vlan_tx_tag_present(skb)) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001309 lp->tx_ring[tx_index].tag_ctrl_cmd |=
1310 cpu_to_le16(TCC_VLAN_INSERT);
1311 lp->tx_ring[tx_index].tag_ctrl_info =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 cpu_to_le16(vlan_tx_tag_get(skb));
1313
1314 }
1315#endif
1316 lp->tx_dma_addr[tx_index] =
1317 pci_map_single(lp->pci_dev, skb->data, skb->len, PCI_DMA_TODEVICE);
1318 lp->tx_ring[tx_index].buff_phy_addr =
Al Viroee41a822007-08-22 21:37:46 -04001319 cpu_to_le32(lp->tx_dma_addr[tx_index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 /* Set FCS and LTINT bits */
1322 wmb();
1323 lp->tx_ring[tx_index].tx_flags |=
1324 cpu_to_le16(OWN_BIT | STP_BIT | ENP_BIT|ADD_FCS_BIT|LTINT_BIT);
1325
1326 lp->tx_idx++;
1327
1328 /* Trigger an immediate send poll. */
1329 writel( VAL1 | TDMD0, lp->mmio + CMD0);
1330 writel( VAL2 | RDMD0,lp->mmio + CMD0);
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if(amd8111e_tx_queue_avail(lp) < 0){
1333 netif_stop_queue(dev);
1334 }
1335 spin_unlock_irqrestore(&lp->lock, flags);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001336 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301338/* This function returns all the memory mapped registers of the device. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339static void amd8111e_read_regs(struct amd8111e_priv *lp, u32 *buf)
1340{
1341 void __iomem *mmio = lp->mmio;
1342 /* Read only necessary registers */
1343 buf[0] = readl(mmio + XMT_RING_BASE_ADDR0);
1344 buf[1] = readl(mmio + XMT_RING_LEN0);
1345 buf[2] = readl(mmio + RCV_RING_BASE_ADDR0);
1346 buf[3] = readl(mmio + RCV_RING_LEN0);
1347 buf[4] = readl(mmio + CMD0);
1348 buf[5] = readl(mmio + CMD2);
1349 buf[6] = readl(mmio + CMD3);
1350 buf[7] = readl(mmio + CMD7);
1351 buf[8] = readl(mmio + INT0);
1352 buf[9] = readl(mmio + INTEN0);
1353 buf[10] = readl(mmio + LADRF);
1354 buf[11] = readl(mmio + LADRF+4);
1355 buf[12] = readl(mmio + STAT0);
1356}
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301359/* This function sets promiscuos mode, all-multi mode or the multicast address
1360 * list to the device.
1361 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362static void amd8111e_set_multicast_list(struct net_device *dev)
1363{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001364 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 struct amd8111e_priv *lp = netdev_priv(dev);
1366 u32 mc_filter[2] ;
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001367 int bit_num;
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if(dev->flags & IFF_PROMISC){
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 writel( VAL2 | PROM, lp->mmio + CMD2);
1371 return;
1372 }
1373 else
1374 writel( PROM, lp->mmio + CMD2);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001375 if (dev->flags & IFF_ALLMULTI ||
1376 netdev_mc_count(dev) > MAX_FILTER_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /* get all multicast packet */
1378 mc_filter[1] = mc_filter[0] = 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 lp->options |= OPTION_MULTICAST_ENABLE;
1380 amd8111e_writeq(*(u64*)mc_filter,lp->mmio + LADRF);
1381 return;
1382 }
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001383 if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 /* get only own packets */
1385 mc_filter[1] = mc_filter[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 lp->options &= ~OPTION_MULTICAST_ENABLE;
1387 amd8111e_writeq(*(u64*)mc_filter,lp->mmio + LADRF);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001388 /* disable promiscuous mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 writel(PROM, lp->mmio + CMD2);
1390 return;
1391 }
1392 /* load all the multicast addresses in the logic filter */
1393 lp->options |= OPTION_MULTICAST_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001395 netdev_for_each_mc_addr(ha, dev) {
1396 bit_num = (ether_crc_le(ETH_ALEN, ha->addr) >> 26) & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 mc_filter[bit_num >> 5] |= 1 << (bit_num & 31);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 amd8111e_writeq(*(u64*)mc_filter,lp->mmio+ LADRF);
1400
1401 /* To eliminate PCI posting bug */
1402 readl(lp->mmio + CMD2);
1403
1404}
1405
1406static void amd8111e_get_drvinfo(struct net_device* dev, struct ethtool_drvinfo *info)
1407{
1408 struct amd8111e_priv *lp = netdev_priv(dev);
1409 struct pci_dev *pci_dev = lp->pci_dev;
Rick Jones23020ab2011-11-09 09:58:07 +00001410 strlcpy(info->driver, MODULE_NAME, sizeof(info->driver));
1411 strlcpy(info->version, MODULE_VERS, sizeof(info->version));
1412 snprintf(info->fw_version, sizeof(info->fw_version),
1413 "%u", chip_version);
1414 strlcpy(info->bus_info, pci_name(pci_dev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417static int amd8111e_get_regs_len(struct net_device *dev)
1418{
1419 return AMD8111E_REG_DUMP_LEN;
1420}
1421
1422static void amd8111e_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *buf)
1423{
1424 struct amd8111e_priv *lp = netdev_priv(dev);
1425 regs->version = 0;
1426 amd8111e_read_regs(lp, buf);
1427}
1428
1429static int amd8111e_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
1430{
1431 struct amd8111e_priv *lp = netdev_priv(dev);
1432 spin_lock_irq(&lp->lock);
1433 mii_ethtool_gset(&lp->mii_if, ecmd);
1434 spin_unlock_irq(&lp->lock);
1435 return 0;
1436}
1437
1438static int amd8111e_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
1439{
1440 struct amd8111e_priv *lp = netdev_priv(dev);
1441 int res;
1442 spin_lock_irq(&lp->lock);
1443 res = mii_ethtool_sset(&lp->mii_if, ecmd);
1444 spin_unlock_irq(&lp->lock);
1445 return res;
1446}
1447
1448static int amd8111e_nway_reset(struct net_device *dev)
1449{
1450 struct amd8111e_priv *lp = netdev_priv(dev);
1451 return mii_nway_restart(&lp->mii_if);
1452}
1453
1454static u32 amd8111e_get_link(struct net_device *dev)
1455{
1456 struct amd8111e_priv *lp = netdev_priv(dev);
1457 return mii_link_ok(&lp->mii_if);
1458}
1459
1460static void amd8111e_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol_info)
1461{
1462 struct amd8111e_priv *lp = netdev_priv(dev);
1463 wol_info->supported = WAKE_MAGIC|WAKE_PHY;
1464 if (lp->options & OPTION_WOL_ENABLE)
1465 wol_info->wolopts = WAKE_MAGIC;
1466}
1467
1468static int amd8111e_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol_info)
1469{
1470 struct amd8111e_priv *lp = netdev_priv(dev);
1471 if (wol_info->wolopts & ~(WAKE_MAGIC|WAKE_PHY))
1472 return -EINVAL;
1473 spin_lock_irq(&lp->lock);
1474 if (wol_info->wolopts & WAKE_MAGIC)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001475 lp->options |=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 (OPTION_WOL_ENABLE | OPTION_WAKE_MAGIC_ENABLE);
1477 else if(wol_info->wolopts & WAKE_PHY)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001478 lp->options |=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 (OPTION_WOL_ENABLE | OPTION_WAKE_PHY_ENABLE);
1480 else
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001481 lp->options &= ~OPTION_WOL_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 spin_unlock_irq(&lp->lock);
1483 return 0;
1484}
1485
Jeff Garzik7282d492006-09-13 14:30:00 -04001486static const struct ethtool_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 .get_drvinfo = amd8111e_get_drvinfo,
1488 .get_regs_len = amd8111e_get_regs_len,
1489 .get_regs = amd8111e_get_regs,
1490 .get_settings = amd8111e_get_settings,
1491 .set_settings = amd8111e_set_settings,
1492 .nway_reset = amd8111e_nway_reset,
1493 .get_link = amd8111e_get_link,
1494 .get_wol = amd8111e_get_wol,
1495 .set_wol = amd8111e_set_wol,
1496};
1497
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301498/* This function handles all the ethtool ioctls. It gives driver info,
1499 * gets/sets driver speed, gets memory mapped register values, forces
1500 * auto negotiation, sets/gets WOL options for ethtool application.
1501 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502static int amd8111e_ioctl(struct net_device * dev , struct ifreq *ifr, int cmd)
1503{
1504 struct mii_ioctl_data *data = if_mii(ifr);
1505 struct amd8111e_priv *lp = netdev_priv(dev);
1506 int err;
1507 u32 mii_regval;
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 switch(cmd) {
1510 case SIOCGMIIPHY:
1511 data->phy_id = lp->ext_phy_addr;
1512
1513 /* fallthru */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001514 case SIOCGMIIREG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516 spin_lock_irq(&lp->lock);
1517 err = amd8111e_read_phy(lp, data->phy_id,
1518 data->reg_num & PHY_REG_ADDR_MASK, &mii_regval);
1519 spin_unlock_irq(&lp->lock);
1520
1521 data->val_out = mii_regval;
1522 return err;
1523
1524 case SIOCSMIIREG:
1525
1526 spin_lock_irq(&lp->lock);
1527 err = amd8111e_write_phy(lp, data->phy_id,
1528 data->reg_num & PHY_REG_ADDR_MASK, data->val_in);
1529 spin_unlock_irq(&lp->lock);
1530
1531 return err;
1532
1533 default:
1534 /* do nothing */
1535 break;
1536 }
1537 return -EOPNOTSUPP;
1538}
1539static int amd8111e_set_mac_address(struct net_device *dev, void *p)
1540{
1541 struct amd8111e_priv *lp = netdev_priv(dev);
1542 int i;
1543 struct sockaddr *addr = p;
1544
1545 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1546 spin_lock_irq(&lp->lock);
1547 /* Setting the MAC address to the device */
Joe Perchesc857ff62011-11-16 09:38:05 +00001548 for (i = 0; i < ETH_ALEN; i++)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001549 writeb( dev->dev_addr[i], lp->mmio + PADR + i );
1550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 spin_unlock_irq(&lp->lock);
1552
1553 return 0;
1554}
1555
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301556/* This function changes the mtu of the device. It restarts the device to
1557 * initialize the descriptor with new receive buffers.
1558 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559static int amd8111e_change_mtu(struct net_device *dev, int new_mtu)
1560{
1561 struct amd8111e_priv *lp = netdev_priv(dev);
1562 int err;
1563
1564 if ((new_mtu < AMD8111E_MIN_MTU) || (new_mtu > AMD8111E_MAX_MTU))
1565 return -EINVAL;
1566
1567 if (!netif_running(dev)) {
1568 /* new_mtu will be used
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301569 * when device starts netxt time
1570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 dev->mtu = new_mtu;
1572 return 0;
1573 }
1574
1575 spin_lock_irq(&lp->lock);
1576
1577 /* stop the chip */
1578 writel(RUN, lp->mmio + CMD0);
1579
1580 dev->mtu = new_mtu;
1581
1582 err = amd8111e_restart(dev);
1583 spin_unlock_irq(&lp->lock);
1584 if(!err)
1585 netif_start_queue(dev);
1586 return err;
1587}
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589static int amd8111e_enable_magicpkt(struct amd8111e_priv* lp)
1590{
1591 writel( VAL1|MPPLBA, lp->mmio + CMD3);
1592 writel( VAL0|MPEN_SW, lp->mmio + CMD7);
1593
1594 /* To eliminate PCI posting bug */
1595 readl(lp->mmio + CMD7);
1596 return 0;
1597}
1598
1599static int amd8111e_enable_link_change(struct amd8111e_priv* lp)
1600{
1601
1602 /* Adapter is already stoped/suspended/interrupt-disabled */
1603 writel(VAL0|LCMODE_SW,lp->mmio + CMD7);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 /* To eliminate PCI posting bug */
1606 readl(lp->mmio + CMD7);
1607 return 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001608}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Varka Bhadram13a4fa42014-07-14 14:09:07 +05301610/* This function is called when a packet transmission fails to complete
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001611 * within a reasonable period, on the assumption that an interrupt have
1612 * failed or the interface is locked up. This function will reinitialize
1613 * the hardware.
1614 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615static void amd8111e_tx_timeout(struct net_device *dev)
1616{
1617 struct amd8111e_priv* lp = netdev_priv(dev);
1618 int err;
1619
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301620 netdev_err(dev, "transmit timed out, resetting\n");
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 spin_lock_irq(&lp->lock);
1623 err = amd8111e_restart(dev);
1624 spin_unlock_irq(&lp->lock);
1625 if(!err)
1626 netif_wake_queue(dev);
1627}
1628static int amd8111e_suspend(struct pci_dev *pci_dev, pm_message_t state)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001629{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 struct net_device *dev = pci_get_drvdata(pci_dev);
1631 struct amd8111e_priv *lp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (!netif_running(dev))
1634 return 0;
1635
1636 /* disable the interrupt */
1637 spin_lock_irq(&lp->lock);
1638 amd8111e_disable_interrupt(lp);
1639 spin_unlock_irq(&lp->lock);
1640
1641 netif_device_detach(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 /* stop chip */
1644 spin_lock_irq(&lp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001645 if(lp->options & OPTION_DYN_IPG_ENABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 del_timer_sync(&lp->ipg_data.ipg_timer);
1647 amd8111e_stop_chip(lp);
1648 spin_unlock_irq(&lp->lock);
1649
1650 if(lp->options & OPTION_WOL_ENABLE){
1651 /* enable wol */
1652 if(lp->options & OPTION_WAKE_MAGIC_ENABLE)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001653 amd8111e_enable_magicpkt(lp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if(lp->options & OPTION_WAKE_PHY_ENABLE)
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001655 amd8111e_enable_link_change(lp);
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 pci_enable_wake(pci_dev, PCI_D3hot, 1);
1658 pci_enable_wake(pci_dev, PCI_D3cold, 1);
1659
1660 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001661 else{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 pci_enable_wake(pci_dev, PCI_D3hot, 0);
1663 pci_enable_wake(pci_dev, PCI_D3cold, 0);
1664 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 pci_save_state(pci_dev);
1667 pci_set_power_state(pci_dev, PCI_D3hot);
1668
1669 return 0;
1670}
1671static int amd8111e_resume(struct pci_dev *pci_dev)
1672{
1673 struct net_device *dev = pci_get_drvdata(pci_dev);
1674 struct amd8111e_priv *lp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (!netif_running(dev))
1677 return 0;
1678
1679 pci_set_power_state(pci_dev, PCI_D0);
1680 pci_restore_state(pci_dev);
1681
1682 pci_enable_wake(pci_dev, PCI_D3hot, 0);
1683 pci_enable_wake(pci_dev, PCI_D3cold, 0); /* D3 cold */
1684
1685 netif_device_attach(dev);
1686
1687 spin_lock_irq(&lp->lock);
1688 amd8111e_restart(dev);
1689 /* Restart ipg timer */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001690 if(lp->options & OPTION_DYN_IPG_ENABLE)
1691 mod_timer(&lp->ipg_data.ipg_timer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 jiffies + IPG_CONVERGE_JIFFIES);
1693 spin_unlock_irq(&lp->lock);
1694
1695 return 0;
1696}
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698static void amd8111e_config_ipg(struct net_device* dev)
1699{
1700 struct amd8111e_priv *lp = netdev_priv(dev);
1701 struct ipg_info* ipg_data = &lp->ipg_data;
1702 void __iomem *mmio = lp->mmio;
1703 unsigned int prev_col_cnt = ipg_data->col_cnt;
1704 unsigned int total_col_cnt;
1705 unsigned int tmp_ipg;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if(lp->link_config.duplex == DUPLEX_FULL){
1708 ipg_data->ipg = DEFAULT_IPG;
1709 return;
1710 }
1711
1712 if(ipg_data->ipg_state == SSTATE){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if(ipg_data->timer_tick == IPG_STABLE_TIME){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 ipg_data->timer_tick = 0;
1717 ipg_data->ipg = MIN_IPG - IPG_STEP;
1718 ipg_data->current_ipg = MIN_IPG;
1719 ipg_data->diff_col_cnt = 0xFFFFFFFF;
1720 ipg_data->ipg_state = CSTATE;
1721 }
1722 else
1723 ipg_data->timer_tick++;
1724 }
1725
1726 if(ipg_data->ipg_state == CSTATE){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 /* Get the current collision count */
1729
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001730 total_col_cnt = ipg_data->col_cnt =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 amd8111e_read_mib(mmio, xmt_collisions);
1732
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001733 if ((total_col_cnt - prev_col_cnt) <
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 (ipg_data->diff_col_cnt)){
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 ipg_data->diff_col_cnt =
1737 total_col_cnt - prev_col_cnt ;
1738
1739 ipg_data->ipg = ipg_data->current_ipg;
1740 }
1741
1742 ipg_data->current_ipg += IPG_STEP;
1743
1744 if (ipg_data->current_ipg <= MAX_IPG)
1745 tmp_ipg = ipg_data->current_ipg;
1746 else{
1747 tmp_ipg = ipg_data->ipg;
1748 ipg_data->ipg_state = SSTATE;
1749 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001750 writew((u32)tmp_ipg, mmio + IPG);
1751 writew((u32)(tmp_ipg - IFS1_DELTA), mmio + IFS1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
1753 mod_timer(&lp->ipg_data.ipg_timer, jiffies + IPG_CONVERGE_JIFFIES);
1754 return;
1755
1756}
1757
Bill Pemberton0cb05682012-12-03 09:23:54 -05001758static void amd8111e_probe_ext_phy(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
1760 struct amd8111e_priv *lp = netdev_priv(dev);
1761 int i;
1762
1763 for (i = 0x1e; i >= 0; i--) {
1764 u32 id1, id2;
1765
1766 if (amd8111e_read_phy(lp, i, MII_PHYSID1, &id1))
1767 continue;
1768 if (amd8111e_read_phy(lp, i, MII_PHYSID2, &id2))
1769 continue;
1770 lp->ext_phy_id = (id1 << 16) | id2;
1771 lp->ext_phy_addr = i;
1772 return;
1773 }
1774 lp->ext_phy_id = 0;
1775 lp->ext_phy_addr = 1;
1776}
1777
Stephen Hemminger887e53d2009-01-07 18:09:58 -08001778static const struct net_device_ops amd8111e_netdev_ops = {
1779 .ndo_open = amd8111e_open,
1780 .ndo_stop = amd8111e_close,
1781 .ndo_start_xmit = amd8111e_start_xmit,
1782 .ndo_tx_timeout = amd8111e_tx_timeout,
1783 .ndo_get_stats = amd8111e_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001784 .ndo_set_rx_mode = amd8111e_set_multicast_list,
Stephen Hemminger887e53d2009-01-07 18:09:58 -08001785 .ndo_validate_addr = eth_validate_addr,
1786 .ndo_set_mac_address = amd8111e_set_mac_address,
1787 .ndo_do_ioctl = amd8111e_ioctl,
1788 .ndo_change_mtu = amd8111e_change_mtu,
Stephen Hemminger887e53d2009-01-07 18:09:58 -08001789#ifdef CONFIG_NET_POLL_CONTROLLER
1790 .ndo_poll_controller = amd8111e_poll,
1791#endif
1792};
1793
Bill Pemberton0cb05682012-12-03 09:23:54 -05001794static int amd8111e_probe_one(struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 const struct pci_device_id *ent)
1796{
Yijing Wangf9c7da52013-06-18 16:06:37 +08001797 int err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 unsigned long reg_addr,reg_len;
1799 struct amd8111e_priv* lp;
1800 struct net_device* dev;
1801
1802 err = pci_enable_device(pdev);
1803 if(err){
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301804 dev_err(&pdev->dev, "Cannot enable new PCI device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return err;
1806 }
1807
1808 if(!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)){
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301809 dev_err(&pdev->dev, "Cannot find PCI base address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 err = -ENODEV;
1811 goto err_disable_pdev;
1812 }
1813
1814 err = pci_request_regions(pdev, MODULE_NAME);
1815 if(err){
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301816 dev_err(&pdev->dev, "Cannot obtain PCI resources\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 goto err_disable_pdev;
1818 }
1819
1820 pci_set_master(pdev);
1821
1822 /* Find power-management capability. */
Yijing Wangf9c7da52013-06-18 16:06:37 +08001823 if (!pdev->pm_cap) {
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301824 dev_err(&pdev->dev, "No Power Management capability\n");
Peter Senna Tschudin86e506e2012-10-05 12:10:51 +00001825 err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 goto err_free_reg;
1827 }
1828
1829 /* Initialize DMA */
Yang Hongyang284901a2009-04-06 19:01:15 -07001830 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) < 0) {
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301831 dev_err(&pdev->dev, "DMA not supported\n");
Peter Senna Tschudin86e506e2012-10-05 12:10:51 +00001832 err = -ENODEV;
Tobias Klausercac8c812005-05-16 19:15:11 +02001833 goto err_free_reg;
1834 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 reg_addr = pci_resource_start(pdev, 0);
1837 reg_len = pci_resource_len(pdev, 0);
1838
1839 dev = alloc_etherdev(sizeof(struct amd8111e_priv));
1840 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 err = -ENOMEM;
1842 goto err_free_reg;
1843 }
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 SET_NETDEV_DEV(dev, &pdev->dev);
1846
1847#if AMD8111E_VLAN_TAG_USED
Patrick McHardyf6469682013-04-19 02:04:27 +00001848 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX ;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001849#endif
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 lp = netdev_priv(dev);
1852 lp->pci_dev = pdev;
1853 lp->amd8111e_net_dev = dev;
Yijing Wangf9c7da52013-06-18 16:06:37 +08001854 lp->pm_cap = pdev->pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 spin_lock_init(&lp->lock);
1857
Varka Bhadram711fec52014-07-14 14:09:05 +05301858 lp->mmio = devm_ioremap(&pdev->dev, reg_addr, reg_len);
Al Viroee41a822007-08-22 21:37:46 -04001859 if (!lp->mmio) {
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301860 dev_err(&pdev->dev, "Cannot map device registers\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 err = -ENOMEM;
1862 goto err_free_dev;
1863 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 /* Initializing MAC address */
Joe Perchesc857ff62011-11-16 09:38:05 +00001866 for (i = 0; i < ETH_ALEN; i++)
Joe Perches0795af52007-10-03 17:59:30 -07001867 dev->dev_addr[i] = readb(lp->mmio + PADR + i);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 /* Setting user defined parametrs */
1870 lp->ext_phy_option = speed_duplex[card_idx];
1871 if(coalesce[card_idx])
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001872 lp->options |= OPTION_INTR_COAL_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if(dynamic_ipg[card_idx++])
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001874 lp->options |= OPTION_DYN_IPG_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Stephen Hemminger887e53d2009-01-07 18:09:58 -08001876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 /* Initialize driver entry points */
Stephen Hemminger887e53d2009-01-07 18:09:58 -08001878 dev->netdev_ops = &amd8111e_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001879 dev->ethtool_ops = &ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 dev->irq =pdev->irq;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001881 dev->watchdog_timeo = AMD8111E_TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001882 netif_napi_add(dev, &lp->napi, amd8111e_rx_poll, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884#if AMD8111E_VLAN_TAG_USED
Patrick McHardyf6469682013-04-19 02:04:27 +00001885 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001886#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 /* Probe the external PHY */
1888 amd8111e_probe_ext_phy(dev);
1889
1890 /* setting mii default values */
1891 lp->mii_if.dev = dev;
1892 lp->mii_if.mdio_read = amd8111e_mdio_read;
1893 lp->mii_if.mdio_write = amd8111e_mdio_write;
1894 lp->mii_if.phy_id = lp->ext_phy_addr;
1895
1896 /* Set receive buffer length and set jumbo option*/
1897 amd8111e_set_rx_buff_len(dev);
1898
1899
1900 err = register_netdev(dev);
1901 if (err) {
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301902 dev_err(&pdev->dev, "Cannot register net device\n");
Varka Bhadram711fec52014-07-14 14:09:05 +05301903 goto err_free_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
1905
1906 pci_set_drvdata(pdev, dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 /* Initialize software ipg timer */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001909 if(lp->options & OPTION_DYN_IPG_ENABLE){
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 init_timer(&lp->ipg_data.ipg_timer);
1911 lp->ipg_data.ipg_timer.data = (unsigned long) dev;
1912 lp->ipg_data.ipg_timer.function = (void *)&amd8111e_config_ipg;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001913 lp->ipg_data.ipg_timer.expires = jiffies +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 IPG_CONVERGE_JIFFIES;
1915 lp->ipg_data.ipg = DEFAULT_IPG;
1916 lp->ipg_data.ipg_state = CSTATE;
Joe Perches6403eab2011-06-03 11:51:20 +00001917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 /* display driver and device information */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 chip_version = (readl(lp->mmio + CHIPID) & 0xf0000000)>>28;
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301921 dev_info(&pdev->dev, "AMD-8111e Driver Version: %s\n", MODULE_VERS);
1922 dev_info(&pdev->dev, "[ Rev %x ] PCI 10/100BaseT Ethernet %pM\n",
1923 chip_version, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (lp->ext_phy_id)
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301925 dev_info(&pdev->dev, "Found MII PHY ID 0x%08x at address 0x%02x\n",
1926 lp->ext_phy_id, lp->ext_phy_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 else
Varka Bhadramf7afbaa2014-07-14 14:09:06 +05301928 dev_info(&pdev->dev, "Couldn't detect MII PHY, assuming address 0x01\n");
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932err_free_dev:
1933 free_netdev(dev);
1934
1935err_free_reg:
1936 pci_release_regions(pdev);
1937
1938err_disable_pdev:
1939 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return err;
1941
1942}
1943
Varka Bhadram43519e62014-07-14 14:09:04 +05301944static void amd8111e_remove_one(struct pci_dev *pdev)
1945{
1946 struct net_device *dev = pci_get_drvdata(pdev);
1947
1948 if (dev) {
1949 unregister_netdev(dev);
Varka Bhadram43519e62014-07-14 14:09:04 +05301950 free_netdev(dev);
1951 pci_release_regions(pdev);
1952 pci_disable_device(pdev);
1953 }
1954}
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956static struct pci_driver amd8111e_driver = {
1957 .name = MODULE_NAME,
1958 .id_table = amd8111e_pci_tbl,
1959 .probe = amd8111e_probe_one,
Bill Pemberton0cb05682012-12-03 09:23:54 -05001960 .remove = amd8111e_remove_one,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 .suspend = amd8111e_suspend,
1962 .resume = amd8111e_resume
1963};
1964
Peter Hüwea46e6cc2013-05-21 12:58:10 +00001965module_pci_driver(amd8111e_driver);