Merge branch 'x86-debug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / drivers / net / ethernet / stmicro / stmmac / stmmac_main.c
CommitLineData
47dd7a54
GC
1/*******************************************************************************
2 This is the driver for the ST MAC 10/100/1000 on-chip Ethernet controllers.
3 ST Ethernet IPs are built around a Synopsys IP Core.
4
286a8372 5 Copyright(C) 2007-2011 STMicroelectronics Ltd
47dd7a54
GC
6
7 This program is free software; you can redistribute it and/or modify it
8 under the terms and conditions of the GNU General Public License,
9 version 2, as published by the Free Software Foundation.
10
11 This program is distributed in the hope it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
15
16 You should have received a copy of the GNU General Public License along with
17 this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19
20 The full GNU General Public License is included in this distribution in
21 the file called "COPYING".
22
23 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
24
25 Documentation available at:
26 http://www.stlinux.com
27 Support available at:
28 https://bugzilla.stlinux.com/
29*******************************************************************************/
30
47dd7a54
GC
31#include <linux/kernel.h>
32#include <linux/interrupt.h>
47dd7a54
GC
33#include <linux/ip.h>
34#include <linux/tcp.h>
35#include <linux/skbuff.h>
36#include <linux/ethtool.h>
37#include <linux/if_ether.h>
38#include <linux/crc32.h>
39#include <linux/mii.h>
01789349 40#include <linux/if.h>
47dd7a54
GC
41#include <linux/if_vlan.h>
42#include <linux/dma-mapping.h>
5a0e3ad6 43#include <linux/slab.h>
70c71606 44#include <linux/prefetch.h>
7ac29055
GC
45#ifdef CONFIG_STMMAC_DEBUG_FS
46#include <linux/debugfs.h>
47#include <linux/seq_file.h>
48#endif
286a8372 49#include "stmmac.h"
47dd7a54 50
47dd7a54
GC
51#undef STMMAC_DEBUG
52/*#define STMMAC_DEBUG*/
53#ifdef STMMAC_DEBUG
54#define DBG(nlevel, klevel, fmt, args...) \
55 ((void)(netif_msg_##nlevel(priv) && \
56 printk(KERN_##klevel fmt, ## args)))
57#else
58#define DBG(nlevel, klevel, fmt, args...) do { } while (0)
59#endif
60
61#undef STMMAC_RX_DEBUG
62/*#define STMMAC_RX_DEBUG*/
63#ifdef STMMAC_RX_DEBUG
64#define RX_DBG(fmt, args...) printk(fmt, ## args)
65#else
66#define RX_DBG(fmt, args...) do { } while (0)
67#endif
68
69#undef STMMAC_XMIT_DEBUG
70/*#define STMMAC_XMIT_DEBUG*/
71#ifdef STMMAC_TX_DEBUG
72#define TX_DBG(fmt, args...) printk(fmt, ## args)
73#else
74#define TX_DBG(fmt, args...) do { } while (0)
75#endif
76
77#define STMMAC_ALIGN(x) L1_CACHE_ALIGN(x)
78#define JUMBO_LEN 9000
79
80/* Module parameters */
81#define TX_TIMEO 5000 /* default 5 seconds */
82static int watchdog = TX_TIMEO;
83module_param(watchdog, int, S_IRUGO | S_IWUSR);
84MODULE_PARM_DESC(watchdog, "Transmit timeout in milliseconds");
85
86static int debug = -1; /* -1: default, 0: no output, 16: all */
87module_param(debug, int, S_IRUGO | S_IWUSR);
88MODULE_PARM_DESC(debug, "Message Level (0: no output, 16: all)");
89
bfab27a1 90int phyaddr = -1;
47dd7a54
GC
91module_param(phyaddr, int, S_IRUGO);
92MODULE_PARM_DESC(phyaddr, "Physical device address");
93
94#define DMA_TX_SIZE 256
95static int dma_txsize = DMA_TX_SIZE;
96module_param(dma_txsize, int, S_IRUGO | S_IWUSR);
97MODULE_PARM_DESC(dma_txsize, "Number of descriptors in the TX list");
98
99#define DMA_RX_SIZE 256
100static int dma_rxsize = DMA_RX_SIZE;
101module_param(dma_rxsize, int, S_IRUGO | S_IWUSR);
102MODULE_PARM_DESC(dma_rxsize, "Number of descriptors in the RX list");
103
104static int flow_ctrl = FLOW_OFF;
105module_param(flow_ctrl, int, S_IRUGO | S_IWUSR);
106MODULE_PARM_DESC(flow_ctrl, "Flow control ability [on/off]");
107
108static int pause = PAUSE_TIME;
109module_param(pause, int, S_IRUGO | S_IWUSR);
110MODULE_PARM_DESC(pause, "Flow Control Pause Time");
111
112#define TC_DEFAULT 64
113static int tc = TC_DEFAULT;
114module_param(tc, int, S_IRUGO | S_IWUSR);
115MODULE_PARM_DESC(tc, "DMA threshold control value");
116
47dd7a54
GC
117/* Pay attention to tune this parameter; take care of both
118 * hardware capability and network stabitily/performance impact.
119 * Many tests showed that ~4ms latency seems to be good enough. */
120#ifdef CONFIG_STMMAC_TIMER
121#define DEFAULT_PERIODIC_RATE 256
122static int tmrate = DEFAULT_PERIODIC_RATE;
123module_param(tmrate, int, S_IRUGO | S_IWUSR);
124MODULE_PARM_DESC(tmrate, "External timer freq. (default: 256Hz)");
125#endif
126
127#define DMA_BUFFER_SIZE BUF_SIZE_2KiB
128static int buf_sz = DMA_BUFFER_SIZE;
129module_param(buf_sz, int, S_IRUGO | S_IWUSR);
130MODULE_PARM_DESC(buf_sz, "DMA buffer size");
131
47dd7a54
GC
132static const u32 default_msg_level = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
133 NETIF_MSG_LINK | NETIF_MSG_IFUP |
134 NETIF_MSG_IFDOWN | NETIF_MSG_TIMER);
135
136static irqreturn_t stmmac_interrupt(int irq, void *dev_id);
47dd7a54 137
bfab27a1
GC
138#ifdef CONFIG_STMMAC_DEBUG_FS
139static int stmmac_init_fs(struct net_device *dev);
140static void stmmac_exit_fs(void);
141#endif
142
47dd7a54
GC
143/**
144 * stmmac_verify_args - verify the driver parameters.
145 * Description: it verifies if some wrong parameter is passed to the driver.
146 * Note that wrong parameters are replaced with the default values.
147 */
148static void stmmac_verify_args(void)
149{
150 if (unlikely(watchdog < 0))
151 watchdog = TX_TIMEO;
152 if (unlikely(dma_rxsize < 0))
153 dma_rxsize = DMA_RX_SIZE;
154 if (unlikely(dma_txsize < 0))
155 dma_txsize = DMA_TX_SIZE;
156 if (unlikely((buf_sz < DMA_BUFFER_SIZE) || (buf_sz > BUF_SIZE_16KiB)))
157 buf_sz = DMA_BUFFER_SIZE;
158 if (unlikely(flow_ctrl > 1))
159 flow_ctrl = FLOW_AUTO;
160 else if (likely(flow_ctrl < 0))
161 flow_ctrl = FLOW_OFF;
162 if (unlikely((pause < 0) || (pause > 0xffff)))
163 pause = PAUSE_TIME;
47dd7a54
GC
164}
165
cd7201f4
GC
166static void stmmac_clk_csr_set(struct stmmac_priv *priv)
167{
168#ifdef CONFIG_HAVE_CLK
169 u32 clk_rate;
170
31ea38ee
GC
171 if (IS_ERR(priv->stmmac_clk))
172 return;
173
cd7201f4
GC
174 clk_rate = clk_get_rate(priv->stmmac_clk);
175
176 /* Platform provided default clk_csr would be assumed valid
177 * for all other cases except for the below mentioned ones. */
178 if (!(priv->clk_csr & MAC_CSR_H_FRQ_MASK)) {
179 if (clk_rate < CSR_F_35M)
180 priv->clk_csr = STMMAC_CSR_20_35M;
181 else if ((clk_rate >= CSR_F_35M) && (clk_rate < CSR_F_60M))
182 priv->clk_csr = STMMAC_CSR_35_60M;
183 else if ((clk_rate >= CSR_F_60M) && (clk_rate < CSR_F_100M))
184 priv->clk_csr = STMMAC_CSR_60_100M;
185 else if ((clk_rate >= CSR_F_100M) && (clk_rate < CSR_F_150M))
186 priv->clk_csr = STMMAC_CSR_100_150M;
187 else if ((clk_rate >= CSR_F_150M) && (clk_rate < CSR_F_250M))
188 priv->clk_csr = STMMAC_CSR_150_250M;
189 else if ((clk_rate >= CSR_F_250M) && (clk_rate < CSR_F_300M))
190 priv->clk_csr = STMMAC_CSR_250_300M;
191 } /* For values higher than the IEEE 802.3 specified frequency
192 * we can not estimate the proper divider as it is not known
193 * the frequency of clk_csr_i. So we do not change the default
194 * divider. */
195#endif
196}
197
47dd7a54
GC
198#if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG)
199static void print_pkt(unsigned char *buf, int len)
200{
201 int j;
202 pr_info("len = %d byte, buf addr: 0x%p", len, buf);
203 for (j = 0; j < len; j++) {
204 if ((j % 16) == 0)
205 pr_info("\n %03x:", j);
206 pr_info(" %02x", buf[j]);
207 }
208 pr_info("\n");
47dd7a54
GC
209}
210#endif
211
212/* minimum number of free TX descriptors required to wake up TX process */
213#define STMMAC_TX_THRESH(x) (x->dma_tx_size/4)
214
215static inline u32 stmmac_tx_avail(struct stmmac_priv *priv)
216{
217 return priv->dirty_tx + priv->dma_tx_size - priv->cur_tx - 1;
218}
219
9dfeb4d9
GC
220/* On some ST platforms, some HW system configuraton registers have to be
221 * set according to the link speed negotiated.
222 */
223static inline void stmmac_hw_fix_mac_speed(struct stmmac_priv *priv)
224{
225 struct phy_device *phydev = priv->phydev;
226
227 if (likely(priv->plat->fix_mac_speed))
228 priv->plat->fix_mac_speed(priv->plat->bsp_priv,
229 phydev->speed);
230}
231
47dd7a54
GC
232/**
233 * stmmac_adjust_link
234 * @dev: net device structure
235 * Description: it adjusts the link parameters.
236 */
237static void stmmac_adjust_link(struct net_device *dev)
238{
239 struct stmmac_priv *priv = netdev_priv(dev);
240 struct phy_device *phydev = priv->phydev;
47dd7a54
GC
241 unsigned long flags;
242 int new_state = 0;
243 unsigned int fc = priv->flow_ctrl, pause_time = priv->pause;
244
245 if (phydev == NULL)
246 return;
247
248 DBG(probe, DEBUG, "stmmac_adjust_link: called. address %d link %d\n",
249 phydev->addr, phydev->link);
250
251 spin_lock_irqsave(&priv->lock, flags);
252 if (phydev->link) {
ad01b7d4 253 u32 ctrl = readl(priv->ioaddr + MAC_CTRL_REG);
47dd7a54
GC
254
255 /* Now we make sure that we can be in full duplex mode.
256 * If not, we operate in half-duplex mode. */
257 if (phydev->duplex != priv->oldduplex) {
258 new_state = 1;
259 if (!(phydev->duplex))
db98a0b0 260 ctrl &= ~priv->hw->link.duplex;
47dd7a54 261 else
db98a0b0 262 ctrl |= priv->hw->link.duplex;
47dd7a54
GC
263 priv->oldduplex = phydev->duplex;
264 }
265 /* Flow Control operation */
266 if (phydev->pause)
ad01b7d4 267 priv->hw->mac->flow_ctrl(priv->ioaddr, phydev->duplex,
db98a0b0 268 fc, pause_time);
47dd7a54
GC
269
270 if (phydev->speed != priv->speed) {
271 new_state = 1;
272 switch (phydev->speed) {
273 case 1000:
9dfeb4d9 274 if (likely(priv->plat->has_gmac))
db98a0b0 275 ctrl &= ~priv->hw->link.port;
cf3f047b 276 stmmac_hw_fix_mac_speed(priv);
47dd7a54
GC
277 break;
278 case 100:
279 case 10:
9dfeb4d9 280 if (priv->plat->has_gmac) {
db98a0b0 281 ctrl |= priv->hw->link.port;
47dd7a54 282 if (phydev->speed == SPEED_100) {
db98a0b0 283 ctrl |= priv->hw->link.speed;
47dd7a54 284 } else {
db98a0b0 285 ctrl &= ~(priv->hw->link.speed);
47dd7a54
GC
286 }
287 } else {
db98a0b0 288 ctrl &= ~priv->hw->link.port;
47dd7a54 289 }
9dfeb4d9 290 stmmac_hw_fix_mac_speed(priv);
47dd7a54
GC
291 break;
292 default:
293 if (netif_msg_link(priv))
294 pr_warning("%s: Speed (%d) is not 10"
295 " or 100!\n", dev->name, phydev->speed);
296 break;
297 }
298
299 priv->speed = phydev->speed;
300 }
301
ad01b7d4 302 writel(ctrl, priv->ioaddr + MAC_CTRL_REG);
47dd7a54
GC
303
304 if (!priv->oldlink) {
305 new_state = 1;
306 priv->oldlink = 1;
307 }
308 } else if (priv->oldlink) {
309 new_state = 1;
310 priv->oldlink = 0;
311 priv->speed = 0;
312 priv->oldduplex = -1;
313 }
314
315 if (new_state && netif_msg_link(priv))
316 phy_print_status(phydev);
317
318 spin_unlock_irqrestore(&priv->lock, flags);
319
320 DBG(probe, DEBUG, "stmmac_adjust_link: exiting\n");
321}
322
323/**
324 * stmmac_init_phy - PHY initialization
325 * @dev: net device structure
326 * Description: it initializes the driver's PHY state, and attaches the PHY
327 * to the mac driver.
328 * Return value:
329 * 0 on success
330 */
331static int stmmac_init_phy(struct net_device *dev)
332{
333 struct stmmac_priv *priv = netdev_priv(dev);
334 struct phy_device *phydev;
109cdd66
GC
335 char phy_id[MII_BUS_ID_SIZE + 3];
336 char bus_id[MII_BUS_ID_SIZE];
79ee1dc3 337 int interface = priv->plat->interface;
47dd7a54
GC
338 priv->oldlink = 0;
339 priv->speed = 0;
340 priv->oldduplex = -1;
341
f142af2e
SK
342 if (priv->plat->phy_bus_name)
343 snprintf(bus_id, MII_BUS_ID_SIZE, "%s-%x",
344 priv->plat->phy_bus_name, priv->plat->bus_id);
345 else
346 snprintf(bus_id, MII_BUS_ID_SIZE, "stmmac-%x",
347 priv->plat->bus_id);
348
109cdd66 349 snprintf(phy_id, MII_BUS_ID_SIZE + 3, PHY_ID_FMT, bus_id,
36bcfe7d 350 priv->plat->phy_addr);
47dd7a54
GC
351 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id);
352
79ee1dc3 353 phydev = phy_connect(dev, phy_id, &stmmac_adjust_link, 0, interface);
47dd7a54
GC
354
355 if (IS_ERR(phydev)) {
356 pr_err("%s: Could not attach to PHY\n", dev->name);
357 return PTR_ERR(phydev);
358 }
359
79ee1dc3 360 /* Stop Advertising 1000BASE Capability if interface is not GMII */
c5b9b4e4
SK
361 if ((interface == PHY_INTERFACE_MODE_MII) ||
362 (interface == PHY_INTERFACE_MODE_RMII))
363 phydev->advertising &= ~(SUPPORTED_1000baseT_Half |
364 SUPPORTED_1000baseT_Full);
79ee1dc3 365
47dd7a54
GC
366 /*
367 * Broken HW is sometimes missing the pull-up resistor on the
368 * MDIO line, which results in reads to non-existent devices returning
369 * 0 rather than 0xffff. Catch this here and treat 0 as a non-existent
370 * device as well.
371 * Note: phydev->phy_id is the result of reading the UID PHY registers.
372 */
373 if (phydev->phy_id == 0) {
374 phy_disconnect(phydev);
375 return -ENODEV;
376 }
377 pr_debug("stmmac_init_phy: %s: attached to PHY (UID 0x%x)"
36bcfe7d 378 " Link = %d\n", dev->name, phydev->phy_id, phydev->link);
47dd7a54
GC
379
380 priv->phydev = phydev;
381
382 return 0;
383}
384
47dd7a54
GC
385/**
386 * display_ring
387 * @p: pointer to the ring.
388 * @size: size of the ring.
389 * Description: display all the descriptors within the ring.
390 */
391static void display_ring(struct dma_desc *p, int size)
392{
393 struct tmp_s {
394 u64 a;
395 unsigned int b;
396 unsigned int c;
397 };
398 int i;
399 for (i = 0; i < size; i++) {
400 struct tmp_s *x = (struct tmp_s *)(p + i);
401 pr_info("\t%d [0x%x]: DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
402 i, (unsigned int)virt_to_phys(&p[i]),
403 (unsigned int)(x->a), (unsigned int)((x->a) >> 32),
404 x->b, x->c);
405 pr_info("\n");
406 }
407}
408
286a8372
GC
409static int stmmac_set_bfsize(int mtu, int bufsize)
410{
411 int ret = bufsize;
412
413 if (mtu >= BUF_SIZE_4KiB)
414 ret = BUF_SIZE_8KiB;
415 else if (mtu >= BUF_SIZE_2KiB)
416 ret = BUF_SIZE_4KiB;
417 else if (mtu >= DMA_BUFFER_SIZE)
418 ret = BUF_SIZE_2KiB;
419 else
420 ret = DMA_BUFFER_SIZE;
421
422 return ret;
423}
424
47dd7a54
GC
425/**
426 * init_dma_desc_rings - init the RX/TX descriptor rings
427 * @dev: net device structure
428 * Description: this function initializes the DMA RX/TX descriptors
286a8372
GC
429 * and allocates the socket buffers. It suppors the chained and ring
430 * modes.
47dd7a54
GC
431 */
432static void init_dma_desc_rings(struct net_device *dev)
433{
434 int i;
435 struct stmmac_priv *priv = netdev_priv(dev);
436 struct sk_buff *skb;
437 unsigned int txsize = priv->dma_tx_size;
438 unsigned int rxsize = priv->dma_rx_size;
286a8372
GC
439 unsigned int bfsize;
440 int dis_ic = 0;
441 int des3_as_data_buf = 0;
47dd7a54 442
286a8372
GC
443 /* Set the max buffer size according to the DESC mode
444 * and the MTU. Note that RING mode allows 16KiB bsize. */
445 bfsize = priv->hw->ring->set_16kib_bfsize(dev->mtu);
446
447 if (bfsize == BUF_SIZE_16KiB)
448 des3_as_data_buf = 1;
47dd7a54 449 else
286a8372 450 bfsize = stmmac_set_bfsize(dev->mtu, priv->dma_buf_sz);
47dd7a54 451
73cfe264
GC
452#ifdef CONFIG_STMMAC_TIMER
453 /* Disable interrupts on completion for the reception if timer is on */
454 if (likely(priv->tm->enable))
455 dis_ic = 1;
456#endif
47dd7a54
GC
457
458 DBG(probe, INFO, "stmmac: txsize %d, rxsize %d, bfsize %d\n",
459 txsize, rxsize, bfsize);
460
461 priv->rx_skbuff_dma = kmalloc(rxsize * sizeof(dma_addr_t), GFP_KERNEL);
462 priv->rx_skbuff =
463 kmalloc(sizeof(struct sk_buff *) * rxsize, GFP_KERNEL);
464 priv->dma_rx =
465 (struct dma_desc *)dma_alloc_coherent(priv->device,
466 rxsize *
467 sizeof(struct dma_desc),
468 &priv->dma_rx_phy,
469 GFP_KERNEL);
470 priv->tx_skbuff = kmalloc(sizeof(struct sk_buff *) * txsize,
471 GFP_KERNEL);
472 priv->dma_tx =
473 (struct dma_desc *)dma_alloc_coherent(priv->device,
474 txsize *
475 sizeof(struct dma_desc),
476 &priv->dma_tx_phy,
477 GFP_KERNEL);
478
479 if ((priv->dma_rx == NULL) || (priv->dma_tx == NULL)) {
480 pr_err("%s:ERROR allocating the DMA Tx/Rx desc\n", __func__);
481 return;
482 }
483
286a8372 484 DBG(probe, INFO, "stmmac (%s) DMA desc: virt addr (Rx %p, "
47dd7a54
GC
485 "Tx %p)\n\tDMA phy addr (Rx 0x%08x, Tx 0x%08x)\n",
486 dev->name, priv->dma_rx, priv->dma_tx,
487 (unsigned int)priv->dma_rx_phy, (unsigned int)priv->dma_tx_phy);
488
489 /* RX INITIALIZATION */
490 DBG(probe, INFO, "stmmac: SKB addresses:\n"
491 "skb\t\tskb data\tdma data\n");
492
493 for (i = 0; i < rxsize; i++) {
494 struct dma_desc *p = priv->dma_rx + i;
495
45db81e1
GC
496 skb = __netdev_alloc_skb(dev, bfsize + NET_IP_ALIGN,
497 GFP_KERNEL);
47dd7a54
GC
498 if (unlikely(skb == NULL)) {
499 pr_err("%s: Rx init fails; skb is NULL\n", __func__);
500 break;
501 }
45db81e1 502 skb_reserve(skb, NET_IP_ALIGN);
47dd7a54
GC
503 priv->rx_skbuff[i] = skb;
504 priv->rx_skbuff_dma[i] = dma_map_single(priv->device, skb->data,
505 bfsize, DMA_FROM_DEVICE);
506
507 p->des2 = priv->rx_skbuff_dma[i];
286a8372
GC
508
509 priv->hw->ring->init_desc3(des3_as_data_buf, p);
510
47dd7a54
GC
511 DBG(probe, INFO, "[%p]\t[%p]\t[%x]\n", priv->rx_skbuff[i],
512 priv->rx_skbuff[i]->data, priv->rx_skbuff_dma[i]);
513 }
514 priv->cur_rx = 0;
515 priv->dirty_rx = (unsigned int)(i - rxsize);
516 priv->dma_buf_sz = bfsize;
517 buf_sz = bfsize;
518
519 /* TX INITIALIZATION */
520 for (i = 0; i < txsize; i++) {
521 priv->tx_skbuff[i] = NULL;
522 priv->dma_tx[i].des2 = 0;
523 }
286a8372
GC
524
525 /* In case of Chained mode this sets the des3 to the next
526 * element in the chain */
527 priv->hw->ring->init_dma_chain(priv->dma_rx, priv->dma_rx_phy, rxsize);
528 priv->hw->ring->init_dma_chain(priv->dma_tx, priv->dma_tx_phy, txsize);
529
47dd7a54
GC
530 priv->dirty_tx = 0;
531 priv->cur_tx = 0;
532
533 /* Clear the Rx/Tx descriptors */
db98a0b0
GC
534 priv->hw->desc->init_rx_desc(priv->dma_rx, rxsize, dis_ic);
535 priv->hw->desc->init_tx_desc(priv->dma_tx, txsize);
47dd7a54
GC
536
537 if (netif_msg_hw(priv)) {
538 pr_info("RX descriptor ring:\n");
539 display_ring(priv->dma_rx, rxsize);
540 pr_info("TX descriptor ring:\n");
541 display_ring(priv->dma_tx, txsize);
542 }
47dd7a54
GC
543}
544
545static void dma_free_rx_skbufs(struct stmmac_priv *priv)
546{
547 int i;
548
549 for (i = 0; i < priv->dma_rx_size; i++) {
550 if (priv->rx_skbuff[i]) {
551 dma_unmap_single(priv->device, priv->rx_skbuff_dma[i],
552 priv->dma_buf_sz, DMA_FROM_DEVICE);
553 dev_kfree_skb_any(priv->rx_skbuff[i]);
554 }
555 priv->rx_skbuff[i] = NULL;
556 }
47dd7a54
GC
557}
558
559static void dma_free_tx_skbufs(struct stmmac_priv *priv)
560{
561 int i;
562
563 for (i = 0; i < priv->dma_tx_size; i++) {
564 if (priv->tx_skbuff[i] != NULL) {
565 struct dma_desc *p = priv->dma_tx + i;
566 if (p->des2)
567 dma_unmap_single(priv->device, p->des2,
db98a0b0
GC
568 priv->hw->desc->get_tx_len(p),
569 DMA_TO_DEVICE);
47dd7a54
GC
570 dev_kfree_skb_any(priv->tx_skbuff[i]);
571 priv->tx_skbuff[i] = NULL;
572 }
573 }
47dd7a54
GC
574}
575
576static void free_dma_desc_resources(struct stmmac_priv *priv)
577{
578 /* Release the DMA TX/RX socket buffers */
579 dma_free_rx_skbufs(priv);
580 dma_free_tx_skbufs(priv);
581
582 /* Free the region of consistent memory previously allocated for
583 * the DMA */
584 dma_free_coherent(priv->device,
585 priv->dma_tx_size * sizeof(struct dma_desc),
586 priv->dma_tx, priv->dma_tx_phy);
587 dma_free_coherent(priv->device,
588 priv->dma_rx_size * sizeof(struct dma_desc),
589 priv->dma_rx, priv->dma_rx_phy);
590 kfree(priv->rx_skbuff_dma);
591 kfree(priv->rx_skbuff);
592 kfree(priv->tx_skbuff);
47dd7a54
GC
593}
594
47dd7a54
GC
595/**
596 * stmmac_dma_operation_mode - HW DMA operation mode
597 * @priv : pointer to the private device structure.
598 * Description: it sets the DMA operation mode: tx/rx DMA thresholds
ebbb293f 599 * or Store-And-Forward capability.
47dd7a54
GC
600 */
601static void stmmac_dma_operation_mode(struct stmmac_priv *priv)
602{
61b8013a
SK
603 if (likely(priv->plat->force_sf_dma_mode ||
604 ((priv->plat->tx_coe) && (!priv->no_csum_insertion)))) {
605 /*
606 * In case of GMAC, SF mode can be enabled
607 * to perform the TX COE in HW. This depends on:
ebbb293f
GC
608 * 1) TX COE if actually supported
609 * 2) There is no bugged Jumbo frame support
610 * that needs to not insert csum in the TDES.
611 */
612 priv->hw->dma->dma_mode(priv->ioaddr,
613 SF_DMA_MODE, SF_DMA_MODE);
614 tc = SF_DMA_MODE;
615 } else
616 priv->hw->dma->dma_mode(priv->ioaddr, tc, SF_DMA_MODE);
47dd7a54
GC
617}
618
47dd7a54
GC
619/**
620 * stmmac_tx:
621 * @priv: private driver structure
622 * Description: it reclaims resources after transmission completes.
623 */
624static void stmmac_tx(struct stmmac_priv *priv)
625{
626 unsigned int txsize = priv->dma_tx_size;
47dd7a54 627
a9097a96
GC
628 spin_lock(&priv->tx_lock);
629
47dd7a54
GC
630 while (priv->dirty_tx != priv->cur_tx) {
631 int last;
632 unsigned int entry = priv->dirty_tx % txsize;
633 struct sk_buff *skb = priv->tx_skbuff[entry];
634 struct dma_desc *p = priv->dma_tx + entry;
635
636 /* Check if the descriptor is owned by the DMA. */
db98a0b0 637 if (priv->hw->desc->get_tx_owner(p))
47dd7a54
GC
638 break;
639
640 /* Verify tx error by looking at the last segment */
db98a0b0 641 last = priv->hw->desc->get_tx_ls(p);
47dd7a54
GC
642 if (likely(last)) {
643 int tx_error =
db98a0b0
GC
644 priv->hw->desc->tx_status(&priv->dev->stats,
645 &priv->xstats, p,
ad01b7d4 646 priv->ioaddr);
47dd7a54
GC
647 if (likely(tx_error == 0)) {
648 priv->dev->stats.tx_packets++;
649 priv->xstats.tx_pkt_n++;
650 } else
651 priv->dev->stats.tx_errors++;
652 }
653 TX_DBG("%s: curr %d, dirty %d\n", __func__,
654 priv->cur_tx, priv->dirty_tx);
655
656 if (likely(p->des2))
657 dma_unmap_single(priv->device, p->des2,
db98a0b0 658 priv->hw->desc->get_tx_len(p),
47dd7a54 659 DMA_TO_DEVICE);
286a8372 660 priv->hw->ring->clean_desc3(p);
47dd7a54
GC
661
662 if (likely(skb != NULL)) {
663 /*
664 * If there's room in the queue (limit it to size)
665 * we add this skb back into the pool,
666 * if it's the right size.
667 */
668 if ((skb_queue_len(&priv->rx_recycle) <
669 priv->dma_rx_size) &&
670 skb_recycle_check(skb, priv->dma_buf_sz))
671 __skb_queue_head(&priv->rx_recycle, skb);
672 else
673 dev_kfree_skb(skb);
674
675 priv->tx_skbuff[entry] = NULL;
676 }
677
db98a0b0 678 priv->hw->desc->release_tx_desc(p);
47dd7a54
GC
679
680 entry = (++priv->dirty_tx) % txsize;
681 }
682 if (unlikely(netif_queue_stopped(priv->dev) &&
683 stmmac_tx_avail(priv) > STMMAC_TX_THRESH(priv))) {
684 netif_tx_lock(priv->dev);
685 if (netif_queue_stopped(priv->dev) &&
686 stmmac_tx_avail(priv) > STMMAC_TX_THRESH(priv)) {
687 TX_DBG("%s: restart transmit\n", __func__);
688 netif_wake_queue(priv->dev);
689 }
690 netif_tx_unlock(priv->dev);
691 }
a9097a96 692 spin_unlock(&priv->tx_lock);
47dd7a54
GC
693}
694
695static inline void stmmac_enable_irq(struct stmmac_priv *priv)
696{
73cfe264
GC
697#ifdef CONFIG_STMMAC_TIMER
698 if (likely(priv->tm->enable))
699 priv->tm->timer_start(tmrate);
700 else
47dd7a54 701#endif
ad01b7d4 702 priv->hw->dma->enable_dma_irq(priv->ioaddr);
47dd7a54
GC
703}
704
705static inline void stmmac_disable_irq(struct stmmac_priv *priv)
706{
73cfe264
GC
707#ifdef CONFIG_STMMAC_TIMER
708 if (likely(priv->tm->enable))
709 priv->tm->timer_stop();
710 else
47dd7a54 711#endif
ad01b7d4 712 priv->hw->dma->disable_dma_irq(priv->ioaddr);
47dd7a54
GC
713}
714
715static int stmmac_has_work(struct stmmac_priv *priv)
716{
717 unsigned int has_work = 0;
718 int rxret, tx_work = 0;
719
db98a0b0 720 rxret = priv->hw->desc->get_rx_owner(priv->dma_rx +
47dd7a54
GC
721 (priv->cur_rx % priv->dma_rx_size));
722
723 if (priv->dirty_tx != priv->cur_tx)
724 tx_work = 1;
725
726 if (likely(!rxret || tx_work))
727 has_work = 1;
728
729 return has_work;
730}
731
732static inline void _stmmac_schedule(struct stmmac_priv *priv)
733{
734 if (likely(stmmac_has_work(priv))) {
735 stmmac_disable_irq(priv);
736 napi_schedule(&priv->napi);
737 }
738}
739
740#ifdef CONFIG_STMMAC_TIMER
741void stmmac_schedule(struct net_device *dev)
742{
743 struct stmmac_priv *priv = netdev_priv(dev);
744
745 priv->xstats.sched_timer_n++;
746
747 _stmmac_schedule(priv);
47dd7a54
GC
748}
749
750static void stmmac_no_timer_started(unsigned int x)
751{;
752};
753
754static void stmmac_no_timer_stopped(void)
755{;
756};
757#endif
758
759/**
760 * stmmac_tx_err:
761 * @priv: pointer to the private device structure
762 * Description: it cleans the descriptors and restarts the transmission
763 * in case of errors.
764 */
765static void stmmac_tx_err(struct stmmac_priv *priv)
766{
767 netif_stop_queue(priv->dev);
768
ad01b7d4 769 priv->hw->dma->stop_tx(priv->ioaddr);
47dd7a54 770 dma_free_tx_skbufs(priv);
db98a0b0 771 priv->hw->desc->init_tx_desc(priv->dma_tx, priv->dma_tx_size);
47dd7a54
GC
772 priv->dirty_tx = 0;
773 priv->cur_tx = 0;
ad01b7d4 774 priv->hw->dma->start_tx(priv->ioaddr);
47dd7a54
GC
775
776 priv->dev->stats.tx_errors++;
777 netif_wake_queue(priv->dev);
47dd7a54
GC
778}
779
47dd7a54 780
aec7ff27
GC
781static void stmmac_dma_interrupt(struct stmmac_priv *priv)
782{
aec7ff27
GC
783 int status;
784
ad01b7d4 785 status = priv->hw->dma->dma_interrupt(priv->ioaddr, &priv->xstats);
aec7ff27
GC
786 if (likely(status == handle_tx_rx))
787 _stmmac_schedule(priv);
788
789 else if (unlikely(status == tx_hard_error_bump_tc)) {
790 /* Try to bump up the dma threshold on this failure */
791 if (unlikely(tc != SF_DMA_MODE) && (tc <= 256)) {
792 tc += 64;
ad01b7d4 793 priv->hw->dma->dma_mode(priv->ioaddr, tc, SF_DMA_MODE);
aec7ff27 794 priv->xstats.threshold = tc;
47dd7a54 795 }
aec7ff27
GC
796 } else if (unlikely(status == tx_hard_error))
797 stmmac_tx_err(priv);
47dd7a54
GC
798}
799
1c901a46
GC
800static void stmmac_mmc_setup(struct stmmac_priv *priv)
801{
802 unsigned int mode = MMC_CNTRL_RESET_ON_READ | MMC_CNTRL_COUNTER_RESET |
803 MMC_CNTRL_PRESET | MMC_CNTRL_FULL_HALF_PRESET;
804
4f795b25
GC
805 /* Mask MMC irq, counters are managed in SW and registers
806 * are cleared on each READ eventually. */
1c901a46 807 dwmac_mmc_intr_all_mask(priv->ioaddr);
4f795b25
GC
808
809 if (priv->dma_cap.rmon) {
810 dwmac_mmc_ctrl(priv->ioaddr, mode);
811 memset(&priv->mmc, 0, sizeof(struct stmmac_counters));
812 } else
aae54cff 813 pr_info(" No MAC Management Counters available\n");
1c901a46
GC
814}
815
f0b9d786
GC
816static u32 stmmac_get_synopsys_id(struct stmmac_priv *priv)
817{
818 u32 hwid = priv->hw->synopsys_uid;
819
820 /* Only check valid Synopsys Id because old MAC chips
821 * have no HW registers where get the ID */
822 if (likely(hwid)) {
823 u32 uid = ((hwid & 0x0000ff00) >> 8);
824 u32 synid = (hwid & 0x000000ff);
825
cf3f047b 826 pr_info("stmmac - user ID: 0x%x, Synopsys ID: 0x%x\n",
f0b9d786
GC
827 uid, synid);
828
829 return synid;
830 }
831 return 0;
832}
e7434821 833
19e30c14
GC
834/**
835 * stmmac_selec_desc_mode
ff3dd78c
GC
836 * @priv : private structure
837 * Description: select the Enhanced/Alternate or Normal descriptors
838 */
19e30c14
GC
839static void stmmac_selec_desc_mode(struct stmmac_priv *priv)
840{
841 if (priv->plat->enh_desc) {
842 pr_info(" Enhanced/Alternate descriptors\n");
843 priv->hw->desc = &enh_desc_ops;
844 } else {
845 pr_info(" Normal descriptors\n");
846 priv->hw->desc = &ndesc_ops;
847 }
848}
849
850/**
851 * stmmac_get_hw_features
852 * @priv : private device pointer
853 * Description:
854 * new GMAC chip generations have a new register to indicate the
855 * presence of the optional feature/functions.
856 * This can be also used to override the value passed through the
857 * platform and necessary for old MAC10/100 and GMAC chips.
e7434821
GC
858 */
859static int stmmac_get_hw_features(struct stmmac_priv *priv)
860{
5e6efe88 861 u32 hw_cap = 0;
3c20f72f 862
5e6efe88
GC
863 if (priv->hw->dma->get_hw_feature) {
864 hw_cap = priv->hw->dma->get_hw_feature(priv->ioaddr);
e7434821 865
1db123fb
RK
866 priv->dma_cap.mbps_10_100 = (hw_cap & DMA_HW_FEAT_MIISEL);
867 priv->dma_cap.mbps_1000 = (hw_cap & DMA_HW_FEAT_GMIISEL) >> 1;
868 priv->dma_cap.half_duplex = (hw_cap & DMA_HW_FEAT_HDSEL) >> 2;
869 priv->dma_cap.hash_filter = (hw_cap & DMA_HW_FEAT_HASHSEL) >> 4;
870 priv->dma_cap.multi_addr =
871 (hw_cap & DMA_HW_FEAT_ADDMACADRSEL) >> 5;
872 priv->dma_cap.pcs = (hw_cap & DMA_HW_FEAT_PCSSEL) >> 6;
873 priv->dma_cap.sma_mdio = (hw_cap & DMA_HW_FEAT_SMASEL) >> 8;
874 priv->dma_cap.pmt_remote_wake_up =
875 (hw_cap & DMA_HW_FEAT_RWKSEL) >> 9;
876 priv->dma_cap.pmt_magic_frame =
877 (hw_cap & DMA_HW_FEAT_MGKSEL) >> 10;
19e30c14 878 /* MMC */
1db123fb 879 priv->dma_cap.rmon = (hw_cap & DMA_HW_FEAT_MMCSEL) >> 11;
e7434821 880 /* IEEE 1588-2002*/
1db123fb
RK
881 priv->dma_cap.time_stamp =
882 (hw_cap & DMA_HW_FEAT_TSVER1SEL) >> 12;
e7434821 883 /* IEEE 1588-2008*/
1db123fb
RK
884 priv->dma_cap.atime_stamp =
885 (hw_cap & DMA_HW_FEAT_TSVER2SEL) >> 13;
e7434821 886 /* 802.3az - Energy-Efficient Ethernet (EEE) */
1db123fb
RK
887 priv->dma_cap.eee = (hw_cap & DMA_HW_FEAT_EEESEL) >> 14;
888 priv->dma_cap.av = (hw_cap & DMA_HW_FEAT_AVSEL) >> 15;
e7434821 889 /* TX and RX csum */
1db123fb
RK
890 priv->dma_cap.tx_coe = (hw_cap & DMA_HW_FEAT_TXCOESEL) >> 16;
891 priv->dma_cap.rx_coe_type1 =
892 (hw_cap & DMA_HW_FEAT_RXTYP1COE) >> 17;
893 priv->dma_cap.rx_coe_type2 =
894 (hw_cap & DMA_HW_FEAT_RXTYP2COE) >> 18;
895 priv->dma_cap.rxfifo_over_2048 =
896 (hw_cap & DMA_HW_FEAT_RXFIFOSIZE) >> 19;
e7434821 897 /* TX and RX number of channels */
1db123fb
RK
898 priv->dma_cap.number_rx_channel =
899 (hw_cap & DMA_HW_FEAT_RXCHCNT) >> 20;
900 priv->dma_cap.number_tx_channel =
901 (hw_cap & DMA_HW_FEAT_TXCHCNT) >> 22;
e7434821 902 /* Alternate (enhanced) DESC mode*/
1db123fb
RK
903 priv->dma_cap.enh_desc =
904 (hw_cap & DMA_HW_FEAT_ENHDESSEL) >> 24;
e7434821 905
19e30c14 906 }
e7434821
GC
907
908 return hw_cap;
909}
910
bfab27a1
GC
911static void stmmac_check_ether_addr(struct stmmac_priv *priv)
912{
913 /* verify if the MAC address is valid, in case of failures it
914 * generates a random MAC address */
915 if (!is_valid_ether_addr(priv->dev->dev_addr)) {
916 priv->hw->mac->get_umac_addr((void __iomem *)
917 priv->dev->base_addr,
918 priv->dev->dev_addr, 0);
919 if (!is_valid_ether_addr(priv->dev->dev_addr))
f2cedb63 920 eth_hw_addr_random(priv->dev);
bfab27a1
GC
921 }
922 pr_warning("%s: device MAC address %pM\n", priv->dev->name,
923 priv->dev->dev_addr);
924}
925
0f1f88a8
GC
926static int stmmac_init_dma_engine(struct stmmac_priv *priv)
927{
928 int pbl = DEFAULT_DMA_PBL, fixed_burst = 0, burst_len = 0;
b9cde0a8 929 int mixed_burst = 0;
0f1f88a8
GC
930
931 /* Some DMA parameters can be passed from the platform;
932 * in case of these are not passed we keep a default
933 * (good for all the chips) and init the DMA! */
934 if (priv->plat->dma_cfg) {
935 pbl = priv->plat->dma_cfg->pbl;
936 fixed_burst = priv->plat->dma_cfg->fixed_burst;
b9cde0a8 937 mixed_burst = priv->plat->dma_cfg->mixed_burst;
0f1f88a8
GC
938 burst_len = priv->plat->dma_cfg->burst_len;
939 }
940
b9cde0a8 941 return priv->hw->dma->init(priv->ioaddr, pbl, fixed_burst, mixed_burst,
0f1f88a8
GC
942 burst_len, priv->dma_tx_phy,
943 priv->dma_rx_phy);
944}
945
47dd7a54
GC
946/**
947 * stmmac_open - open entry point of the driver
948 * @dev : pointer to the device structure.
949 * Description:
950 * This function is the open entry point of the driver.
951 * Return value:
952 * 0 on success and an appropriate (-)ve integer as defined in errno.h
953 * file on failure.
954 */
955static int stmmac_open(struct net_device *dev)
956{
957 struct stmmac_priv *priv = netdev_priv(dev);
47dd7a54
GC
958 int ret;
959
47dd7a54 960#ifdef CONFIG_STMMAC_TIMER
73cfe264 961 priv->tm = kzalloc(sizeof(struct stmmac_timer *), GFP_KERNEL);
4bfcbd7a
FV
962 if (unlikely(priv->tm == NULL))
963 return -ENOMEM;
e404decb 964
47dd7a54
GC
965 priv->tm->freq = tmrate;
966
73cfe264
GC
967 /* Test if the external timer can be actually used.
968 * In case of failure continue without timer. */
47dd7a54 969 if (unlikely((stmmac_open_ext_timer(dev, priv->tm)) < 0)) {
73cfe264 970 pr_warning("stmmaceth: cannot attach the external timer.\n");
47dd7a54
GC
971 priv->tm->freq = 0;
972 priv->tm->timer_start = stmmac_no_timer_started;
973 priv->tm->timer_stop = stmmac_no_timer_stopped;
73cfe264
GC
974 } else
975 priv->tm->enable = 1;
47dd7a54 976#endif
4bfcbd7a
FV
977 stmmac_clk_enable(priv);
978
979 stmmac_check_ether_addr(priv);
980
f66ffe28
GC
981 ret = stmmac_init_phy(dev);
982 if (unlikely(ret)) {
983 pr_err("%s: Cannot attach to PHY (error: %d)\n", __func__, ret);
984 goto open_error;
985 }
47dd7a54
GC
986
987 /* Create and initialize the TX/RX descriptors chains. */
988 priv->dma_tx_size = STMMAC_ALIGN(dma_txsize);
989 priv->dma_rx_size = STMMAC_ALIGN(dma_rxsize);
990 priv->dma_buf_sz = STMMAC_ALIGN(buf_sz);
991 init_dma_desc_rings(dev);
992
993 /* DMA initialization and SW reset */
0f1f88a8 994 ret = stmmac_init_dma_engine(priv);
f66ffe28 995 if (ret < 0) {
47dd7a54 996 pr_err("%s: DMA initialization failed\n", __func__);
f66ffe28 997 goto open_error;
47dd7a54
GC
998 }
999
1000 /* Copy the MAC addr into the HW */
ad01b7d4 1001 priv->hw->mac->set_umac_addr(priv->ioaddr, dev->dev_addr, 0);
cf3f047b 1002
ca5f12c1 1003 /* If required, perform hw setup of the bus. */
9dfeb4d9
GC
1004 if (priv->plat->bus_setup)
1005 priv->plat->bus_setup(priv->ioaddr);
cf3f047b 1006
47dd7a54 1007 /* Initialize the MAC Core */
ad01b7d4 1008 priv->hw->mac->core_init(priv->ioaddr);
47dd7a54 1009
f66ffe28
GC
1010 /* Request the IRQ lines */
1011 ret = request_irq(dev->irq, stmmac_interrupt,
1012 IRQF_SHARED, dev->name, dev);
1013 if (unlikely(ret < 0)) {
1014 pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
1015 __func__, dev->irq, ret);
1016 goto open_error;
1017 }
1018
7a13f8f5
FV
1019 /* Request the Wake IRQ in case of another line is used for WoL */
1020 if (priv->wol_irq != dev->irq) {
1021 ret = request_irq(priv->wol_irq, stmmac_interrupt,
1022 IRQF_SHARED, dev->name, dev);
1023 if (unlikely(ret < 0)) {
1024 pr_err("%s: ERROR: allocating the ext WoL IRQ %d "
1025 "(error: %d)\n", __func__, priv->wol_irq, ret);
1026 goto open_error_wolirq;
1027 }
1028 }
1029
47dd7a54 1030 /* Enable the MAC Rx/Tx */
bfab27a1 1031 stmmac_set_mac(priv->ioaddr, true);
47dd7a54
GC
1032
1033 /* Set the HW DMA mode and the COE */
1034 stmmac_dma_operation_mode(priv);
1035
1036 /* Extra statistics */
1037 memset(&priv->xstats, 0, sizeof(struct stmmac_extra_stats));
1038 priv->xstats.threshold = tc;
1039
4f795b25 1040 stmmac_mmc_setup(priv);
1c901a46 1041
bfab27a1
GC
1042#ifdef CONFIG_STMMAC_DEBUG_FS
1043 ret = stmmac_init_fs(dev);
1044 if (ret < 0)
cf3f047b 1045 pr_warning("%s: failed debugFS registration\n", __func__);
bfab27a1 1046#endif
47dd7a54
GC
1047 /* Start the ball rolling... */
1048 DBG(probe, DEBUG, "%s: DMA RX/TX processes started...\n", dev->name);
ad01b7d4
GC
1049 priv->hw->dma->start_tx(priv->ioaddr);
1050 priv->hw->dma->start_rx(priv->ioaddr);
47dd7a54
GC
1051
1052#ifdef CONFIG_STMMAC_TIMER
1053 priv->tm->timer_start(tmrate);
1054#endif
cf3f047b 1055
47dd7a54
GC
1056 /* Dump DMA/MAC registers */
1057 if (netif_msg_hw(priv)) {
ad01b7d4
GC
1058 priv->hw->mac->dump_regs(priv->ioaddr);
1059 priv->hw->dma->dump_regs(priv->ioaddr);
47dd7a54
GC
1060 }
1061
1062 if (priv->phydev)
1063 phy_start(priv->phydev);
1064
1065 napi_enable(&priv->napi);
1066 skb_queue_head_init(&priv->rx_recycle);
1067 netif_start_queue(dev);
f66ffe28 1068
47dd7a54 1069 return 0;
f66ffe28 1070
7a13f8f5
FV
1071open_error_wolirq:
1072 free_irq(dev->irq, dev);
1073
f66ffe28
GC
1074open_error:
1075#ifdef CONFIG_STMMAC_TIMER
1076 kfree(priv->tm);
1077#endif
1078 if (priv->phydev)
1079 phy_disconnect(priv->phydev);
1080
ba1377ff 1081 stmmac_clk_disable(priv);
4bfcbd7a 1082
f66ffe28 1083 return ret;
47dd7a54
GC
1084}
1085
1086/**
1087 * stmmac_release - close entry point of the driver
1088 * @dev : device pointer.
1089 * Description:
1090 * This is the stop entry point of the driver.
1091 */
1092static int stmmac_release(struct net_device *dev)
1093{
1094 struct stmmac_priv *priv = netdev_priv(dev);
1095
1096 /* Stop and disconnect the PHY */
1097 if (priv->phydev) {
1098 phy_stop(priv->phydev);
1099 phy_disconnect(priv->phydev);
1100 priv->phydev = NULL;
1101 }
1102
1103 netif_stop_queue(dev);
1104
1105#ifdef CONFIG_STMMAC_TIMER
1106 /* Stop and release the timer */
1107 stmmac_close_ext_timer();
1108 if (priv->tm != NULL)
1109 kfree(priv->tm);
1110#endif
1111 napi_disable(&priv->napi);
1112 skb_queue_purge(&priv->rx_recycle);
1113
1114 /* Free the IRQ lines */
1115 free_irq(dev->irq, dev);
7a13f8f5
FV
1116 if (priv->wol_irq != dev->irq)
1117 free_irq(priv->wol_irq, dev);
47dd7a54
GC
1118
1119 /* Stop TX/RX DMA and clear the descriptors */
ad01b7d4
GC
1120 priv->hw->dma->stop_tx(priv->ioaddr);
1121 priv->hw->dma->stop_rx(priv->ioaddr);
47dd7a54
GC
1122
1123 /* Release and free the Rx/Tx resources */
1124 free_dma_desc_resources(priv);
1125
19449bfc 1126 /* Disable the MAC Rx/Tx */
bfab27a1 1127 stmmac_set_mac(priv->ioaddr, false);
47dd7a54
GC
1128
1129 netif_carrier_off(dev);
1130
bfab27a1
GC
1131#ifdef CONFIG_STMMAC_DEBUG_FS
1132 stmmac_exit_fs();
1133#endif
ba1377ff 1134 stmmac_clk_disable(priv);
bfab27a1 1135
47dd7a54
GC
1136 return 0;
1137}
1138
47dd7a54
GC
1139/**
1140 * stmmac_xmit:
1141 * @skb : the socket buffer
1142 * @dev : device pointer
1143 * Description : Tx entry point of the driver.
1144 */
1145static netdev_tx_t stmmac_xmit(struct sk_buff *skb, struct net_device *dev)
1146{
1147 struct stmmac_priv *priv = netdev_priv(dev);
1148 unsigned int txsize = priv->dma_tx_size;
1149 unsigned int entry;
1150 int i, csum_insertion = 0;
1151 int nfrags = skb_shinfo(skb)->nr_frags;
1152 struct dma_desc *desc, *first;
286a8372 1153 unsigned int nopaged_len = skb_headlen(skb);
47dd7a54
GC
1154
1155 if (unlikely(stmmac_tx_avail(priv) < nfrags + 1)) {
1156 if (!netif_queue_stopped(dev)) {
1157 netif_stop_queue(dev);
1158 /* This is a hard error, log it. */
1159 pr_err("%s: BUG! Tx Ring full when queue awake\n",
1160 __func__);
1161 }
1162 return NETDEV_TX_BUSY;
1163 }
1164
a9097a96
GC
1165 spin_lock(&priv->tx_lock);
1166
47dd7a54
GC
1167 entry = priv->cur_tx % txsize;
1168
1169#ifdef STMMAC_XMIT_DEBUG
1170 if ((skb->len > ETH_FRAME_LEN) || nfrags)
1171 pr_info("stmmac xmit:\n"
1172 "\tskb addr %p - len: %d - nopaged_len: %d\n"
1173 "\tn_frags: %d - ip_summed: %d - %s gso\n",
286a8372 1174 skb, skb->len, nopaged_len, nfrags, skb->ip_summed,
47dd7a54
GC
1175 !skb_is_gso(skb) ? "isn't" : "is");
1176#endif
1177
5e982f3b 1178 csum_insertion = (skb->ip_summed == CHECKSUM_PARTIAL);
47dd7a54
GC
1179
1180 desc = priv->dma_tx + entry;
1181 first = desc;
1182
1183#ifdef STMMAC_XMIT_DEBUG
1184 if ((nfrags > 0) || (skb->len > ETH_FRAME_LEN))
1185 pr_debug("stmmac xmit: skb len: %d, nopaged_len: %d,\n"
1186 "\t\tn_frags: %d, ip_summed: %d\n",
286a8372 1187 skb->len, nopaged_len, nfrags, skb->ip_summed);
47dd7a54
GC
1188#endif
1189 priv->tx_skbuff[entry] = skb;
286a8372
GC
1190
1191 if (priv->hw->ring->is_jumbo_frm(skb->len, priv->plat->enh_desc)) {
1192 entry = priv->hw->ring->jumbo_frm(priv, skb, csum_insertion);
47dd7a54
GC
1193 desc = priv->dma_tx + entry;
1194 } else {
47dd7a54
GC
1195 desc->des2 = dma_map_single(priv->device, skb->data,
1196 nopaged_len, DMA_TO_DEVICE);
db98a0b0
GC
1197 priv->hw->desc->prepare_tx_desc(desc, 1, nopaged_len,
1198 csum_insertion);
47dd7a54
GC
1199 }
1200
1201 for (i = 0; i < nfrags; i++) {
9e903e08
ED
1202 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1203 int len = skb_frag_size(frag);
47dd7a54
GC
1204
1205 entry = (++priv->cur_tx) % txsize;
1206 desc = priv->dma_tx + entry;
1207
1208 TX_DBG("\t[entry %d] segment len: %d\n", entry, len);
f722380d
IC
1209 desc->des2 = skb_frag_dma_map(priv->device, frag, 0, len,
1210 DMA_TO_DEVICE);
47dd7a54 1211 priv->tx_skbuff[entry] = NULL;
db98a0b0 1212 priv->hw->desc->prepare_tx_desc(desc, 0, len, csum_insertion);
eb0dc4bb 1213 wmb();
db98a0b0 1214 priv->hw->desc->set_tx_owner(desc);
8e839891 1215 wmb();
47dd7a54
GC
1216 }
1217
1218 /* Interrupt on completition only for the latest segment */
db98a0b0 1219 priv->hw->desc->close_tx_desc(desc);
73cfe264 1220
47dd7a54 1221#ifdef CONFIG_STMMAC_TIMER
73cfe264
GC
1222 /* Clean IC while using timer */
1223 if (likely(priv->tm->enable))
db98a0b0 1224 priv->hw->desc->clear_tx_ic(desc);
47dd7a54 1225#endif
eb0dc4bb
SH
1226
1227 wmb();
1228
47dd7a54 1229 /* To avoid raise condition */
db98a0b0 1230 priv->hw->desc->set_tx_owner(first);
8e839891 1231 wmb();
47dd7a54
GC
1232
1233 priv->cur_tx++;
1234
1235#ifdef STMMAC_XMIT_DEBUG
1236 if (netif_msg_pktdata(priv)) {
1237 pr_info("stmmac xmit: current=%d, dirty=%d, entry=%d, "
1238 "first=%p, nfrags=%d\n",
1239 (priv->cur_tx % txsize), (priv->dirty_tx % txsize),
1240 entry, first, nfrags);
1241 display_ring(priv->dma_tx, txsize);
1242 pr_info(">>> frame to be transmitted: ");
1243 print_pkt(skb->data, skb->len);
1244 }
1245#endif
1246 if (unlikely(stmmac_tx_avail(priv) <= (MAX_SKB_FRAGS + 1))) {
1247 TX_DBG("%s: stop transmitted packets\n", __func__);
1248 netif_stop_queue(dev);
1249 }
1250
1251 dev->stats.tx_bytes += skb->len;
1252
3e82ce12
RC
1253 skb_tx_timestamp(skb);
1254
52f64fae
RC
1255 priv->hw->dma->enable_dma_transmission(priv->ioaddr);
1256
a9097a96
GC
1257 spin_unlock(&priv->tx_lock);
1258
47dd7a54
GC
1259 return NETDEV_TX_OK;
1260}
1261
1262static inline void stmmac_rx_refill(struct stmmac_priv *priv)
1263{
1264 unsigned int rxsize = priv->dma_rx_size;
1265 int bfsize = priv->dma_buf_sz;
1266 struct dma_desc *p = priv->dma_rx;
1267
1268 for (; priv->cur_rx - priv->dirty_rx > 0; priv->dirty_rx++) {
1269 unsigned int entry = priv->dirty_rx % rxsize;
1270 if (likely(priv->rx_skbuff[entry] == NULL)) {
1271 struct sk_buff *skb;
1272
1273 skb = __skb_dequeue(&priv->rx_recycle);
1274 if (skb == NULL)
1275 skb = netdev_alloc_skb_ip_align(priv->dev,
1276 bfsize);
1277
1278 if (unlikely(skb == NULL))
1279 break;
1280
1281 priv->rx_skbuff[entry] = skb;
1282 priv->rx_skbuff_dma[entry] =
1283 dma_map_single(priv->device, skb->data, bfsize,
1284 DMA_FROM_DEVICE);
1285
1286 (p + entry)->des2 = priv->rx_skbuff_dma[entry];
286a8372
GC
1287
1288 if (unlikely(priv->plat->has_gmac))
1289 priv->hw->ring->refill_desc3(bfsize, p + entry);
1290
47dd7a54
GC
1291 RX_DBG(KERN_INFO "\trefill entry #%d\n", entry);
1292 }
eb0dc4bb 1293 wmb();
db98a0b0 1294 priv->hw->desc->set_rx_owner(p + entry);
8e839891 1295 wmb();
47dd7a54 1296 }
47dd7a54
GC
1297}
1298
1299static int stmmac_rx(struct stmmac_priv *priv, int limit)
1300{
1301 unsigned int rxsize = priv->dma_rx_size;
1302 unsigned int entry = priv->cur_rx % rxsize;
1303 unsigned int next_entry;
1304 unsigned int count = 0;
1305 struct dma_desc *p = priv->dma_rx + entry;
1306 struct dma_desc *p_next;
1307
1308#ifdef STMMAC_RX_DEBUG
1309 if (netif_msg_hw(priv)) {
1310 pr_debug(">>> stmmac_rx: descriptor ring:\n");
1311 display_ring(priv->dma_rx, rxsize);
1312 }
1313#endif
1314 count = 0;
db98a0b0 1315 while (!priv->hw->desc->get_rx_owner(p)) {
47dd7a54
GC
1316 int status;
1317
1318 if (count >= limit)
1319 break;
1320
1321 count++;
1322
1323 next_entry = (++priv->cur_rx) % rxsize;
1324 p_next = priv->dma_rx + next_entry;
1325 prefetch(p_next);
1326
1327 /* read the status of the incoming frame */
db98a0b0
GC
1328 status = (priv->hw->desc->rx_status(&priv->dev->stats,
1329 &priv->xstats, p));
47dd7a54
GC
1330 if (unlikely(status == discard_frame))
1331 priv->dev->stats.rx_errors++;
1332 else {
1333 struct sk_buff *skb;
3eeb2997 1334 int frame_len;
47dd7a54 1335
38912bdb
DS
1336 frame_len = priv->hw->desc->get_rx_frame_len(p,
1337 priv->plat->rx_coe);
3eeb2997
GC
1338 /* ACS is set; GMAC core strips PAD/FCS for IEEE 802.3
1339 * Type frames (LLC/LLC-SNAP) */
1340 if (unlikely(status != llc_snap))
1341 frame_len -= ETH_FCS_LEN;
47dd7a54
GC
1342#ifdef STMMAC_RX_DEBUG
1343 if (frame_len > ETH_FRAME_LEN)
1344 pr_debug("\tRX frame size %d, COE status: %d\n",
1345 frame_len, status);
1346
1347 if (netif_msg_hw(priv))
1348 pr_debug("\tdesc: %p [entry %d] buff=0x%x\n",
1349 p, entry, p->des2);
1350#endif
1351 skb = priv->rx_skbuff[entry];
1352 if (unlikely(!skb)) {
1353 pr_err("%s: Inconsistent Rx descriptor chain\n",
1354 priv->dev->name);
1355 priv->dev->stats.rx_dropped++;
1356 break;
1357 }
1358 prefetch(skb->data - NET_IP_ALIGN);
1359 priv->rx_skbuff[entry] = NULL;
1360
1361 skb_put(skb, frame_len);
1362 dma_unmap_single(priv->device,
1363 priv->rx_skbuff_dma[entry],
1364 priv->dma_buf_sz, DMA_FROM_DEVICE);
1365#ifdef STMMAC_RX_DEBUG
1366 if (netif_msg_pktdata(priv)) {
1367 pr_info(" frame received (%dbytes)", frame_len);
1368 print_pkt(skb->data, frame_len);
1369 }
1370#endif
1371 skb->protocol = eth_type_trans(skb, priv->dev);
1372
38912bdb 1373 if (unlikely(!priv->plat->rx_coe)) {
3c20f72f 1374 /* No RX COE for old mac10/100 devices */
bc8acf2c 1375 skb_checksum_none_assert(skb);
47dd7a54
GC
1376 netif_receive_skb(skb);
1377 } else {
1378 skb->ip_summed = CHECKSUM_UNNECESSARY;
1379 napi_gro_receive(&priv->napi, skb);
1380 }
1381
1382 priv->dev->stats.rx_packets++;
1383 priv->dev->stats.rx_bytes += frame_len;
47dd7a54
GC
1384 }
1385 entry = next_entry;
1386 p = p_next; /* use prefetched values */
1387 }
1388
1389 stmmac_rx_refill(priv);
1390
1391 priv->xstats.rx_pkt_n += count;
1392
1393 return count;
1394}
1395
1396/**
1397 * stmmac_poll - stmmac poll method (NAPI)
1398 * @napi : pointer to the napi structure.
1399 * @budget : maximum number of packets that the current CPU can receive from
1400 * all interfaces.
1401 * Description :
1402 * This function implements the the reception process.
1403 * Also it runs the TX completion thread
1404 */
1405static int stmmac_poll(struct napi_struct *napi, int budget)
1406{
1407 struct stmmac_priv *priv = container_of(napi, struct stmmac_priv, napi);
1408 int work_done = 0;
1409
1410 priv->xstats.poll_n++;
1411 stmmac_tx(priv);
1412 work_done = stmmac_rx(priv, budget);
1413
1414 if (work_done < budget) {
1415 napi_complete(napi);
1416 stmmac_enable_irq(priv);
1417 }
1418 return work_done;
1419}
1420
1421/**
1422 * stmmac_tx_timeout
1423 * @dev : Pointer to net device structure
1424 * Description: this function is called when a packet transmission fails to
1425 * complete within a reasonable tmrate. The driver will mark the error in the
1426 * netdev structure and arrange for the device to be reset to a sane state
1427 * in order to transmit a new packet.
1428 */
1429static void stmmac_tx_timeout(struct net_device *dev)
1430{
1431 struct stmmac_priv *priv = netdev_priv(dev);
1432
1433 /* Clear Tx resources and restart transmitting again */
1434 stmmac_tx_err(priv);
47dd7a54
GC
1435}
1436
1437/* Configuration changes (passed on by ifconfig) */
1438static int stmmac_config(struct net_device *dev, struct ifmap *map)
1439{
1440 if (dev->flags & IFF_UP) /* can't act on a running interface */
1441 return -EBUSY;
1442
1443 /* Don't allow changing the I/O address */
1444 if (map->base_addr != dev->base_addr) {
1445 pr_warning("%s: can't change I/O address\n", dev->name);
1446 return -EOPNOTSUPP;
1447 }
1448
1449 /* Don't allow changing the IRQ */
1450 if (map->irq != dev->irq) {
1451 pr_warning("%s: can't change IRQ number %d\n",
1452 dev->name, dev->irq);
1453 return -EOPNOTSUPP;
1454 }
1455
1456 /* ignore other fields */
1457 return 0;
1458}
1459
1460/**
01789349 1461 * stmmac_set_rx_mode - entry point for multicast addressing
47dd7a54
GC
1462 * @dev : pointer to the device structure
1463 * Description:
1464 * This function is a driver entry point which gets called by the kernel
1465 * whenever multicast addresses must be enabled/disabled.
1466 * Return value:
1467 * void.
1468 */
01789349 1469static void stmmac_set_rx_mode(struct net_device *dev)
47dd7a54
GC
1470{
1471 struct stmmac_priv *priv = netdev_priv(dev);
1472
1473 spin_lock(&priv->lock);
cffb13f4 1474 priv->hw->mac->set_filter(dev, priv->synopsys_id);
47dd7a54 1475 spin_unlock(&priv->lock);
47dd7a54
GC
1476}
1477
1478/**
1479 * stmmac_change_mtu - entry point to change MTU size for the device.
1480 * @dev : device pointer.
1481 * @new_mtu : the new MTU size for the device.
1482 * Description: the Maximum Transfer Unit (MTU) is used by the network layer
1483 * to drive packet transmission. Ethernet has an MTU of 1500 octets
1484 * (ETH_DATA_LEN). This value can be changed with ifconfig.
1485 * Return value:
1486 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1487 * file on failure.
1488 */
1489static int stmmac_change_mtu(struct net_device *dev, int new_mtu)
1490{
1491 struct stmmac_priv *priv = netdev_priv(dev);
1492 int max_mtu;
1493
1494 if (netif_running(dev)) {
1495 pr_err("%s: must be stopped to change its MTU\n", dev->name);
1496 return -EBUSY;
1497 }
1498
48febf7e 1499 if (priv->plat->enh_desc)
47dd7a54
GC
1500 max_mtu = JUMBO_LEN;
1501 else
45db81e1 1502 max_mtu = SKB_MAX_HEAD(NET_SKB_PAD + NET_IP_ALIGN);
47dd7a54
GC
1503
1504 if ((new_mtu < 46) || (new_mtu > max_mtu)) {
1505 pr_err("%s: invalid MTU, max MTU is: %d\n", dev->name, max_mtu);
1506 return -EINVAL;
1507 }
1508
5e982f3b
MM
1509 dev->mtu = new_mtu;
1510 netdev_update_features(dev);
1511
1512 return 0;
1513}
1514
c8f44aff
MM
1515static netdev_features_t stmmac_fix_features(struct net_device *dev,
1516 netdev_features_t features)
5e982f3b
MM
1517{
1518 struct stmmac_priv *priv = netdev_priv(dev);
1519
38912bdb 1520 if (priv->plat->rx_coe == STMMAC_RX_COE_NONE)
5e982f3b 1521 features &= ~NETIF_F_RXCSUM;
38912bdb
DS
1522 else if (priv->plat->rx_coe == STMMAC_RX_COE_TYPE1)
1523 features &= ~NETIF_F_IPV6_CSUM;
5e982f3b
MM
1524 if (!priv->plat->tx_coe)
1525 features &= ~NETIF_F_ALL_CSUM;
1526
ebbb293f
GC
1527 /* Some GMAC devices have a bugged Jumbo frame support that
1528 * needs to have the Tx COE disabled for oversized frames
1529 * (due to limited buffer sizes). In this case we disable
1530 * the TX csum insertionin the TDES and not use SF. */
5e982f3b
MM
1531 if (priv->plat->bugged_jumbo && (dev->mtu > ETH_DATA_LEN))
1532 features &= ~NETIF_F_ALL_CSUM;
ebbb293f 1533
5e982f3b 1534 return features;
47dd7a54
GC
1535}
1536
1537static irqreturn_t stmmac_interrupt(int irq, void *dev_id)
1538{
1539 struct net_device *dev = (struct net_device *)dev_id;
1540 struct stmmac_priv *priv = netdev_priv(dev);
1541
1542 if (unlikely(!dev)) {
1543 pr_err("%s: invalid dev pointer\n", __func__);
1544 return IRQ_NONE;
1545 }
1546
9dfeb4d9 1547 if (priv->plat->has_gmac)
47dd7a54 1548 /* To handle GMAC own interrupts */
ad01b7d4 1549 priv->hw->mac->host_irq_status((void __iomem *) dev->base_addr);
aec7ff27
GC
1550
1551 stmmac_dma_interrupt(priv);
47dd7a54
GC
1552
1553 return IRQ_HANDLED;
1554}
1555
1556#ifdef CONFIG_NET_POLL_CONTROLLER
1557/* Polling receive - used by NETCONSOLE and other diagnostic tools
1558 * to allow network I/O with interrupts disabled. */
1559static void stmmac_poll_controller(struct net_device *dev)
1560{
1561 disable_irq(dev->irq);
1562 stmmac_interrupt(dev->irq, dev);
1563 enable_irq(dev->irq);
1564}
1565#endif
1566
1567/**
1568 * stmmac_ioctl - Entry point for the Ioctl
1569 * @dev: Device pointer.
1570 * @rq: An IOCTL specefic structure, that can contain a pointer to
1571 * a proprietary structure used to pass information to the driver.
1572 * @cmd: IOCTL command
1573 * Description:
1574 * Currently there are no special functionality supported in IOCTL, just the
1575 * phy_mii_ioctl(...) can be invoked.
1576 */
1577static int stmmac_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1578{
1579 struct stmmac_priv *priv = netdev_priv(dev);
28b04113 1580 int ret;
47dd7a54
GC
1581
1582 if (!netif_running(dev))
1583 return -EINVAL;
1584
28b04113
RC
1585 if (!priv->phydev)
1586 return -EINVAL;
1587
28b04113 1588 ret = phy_mii_ioctl(priv->phydev, rq, cmd);
28b04113 1589
47dd7a54
GC
1590 return ret;
1591}
1592
7ac29055
GC
1593#ifdef CONFIG_STMMAC_DEBUG_FS
1594static struct dentry *stmmac_fs_dir;
1595static struct dentry *stmmac_rings_status;
e7434821 1596static struct dentry *stmmac_dma_cap;
7ac29055
GC
1597
1598static int stmmac_sysfs_ring_read(struct seq_file *seq, void *v)
1599{
1600 struct tmp_s {
1601 u64 a;
1602 unsigned int b;
1603 unsigned int c;
1604 };
1605 int i;
1606 struct net_device *dev = seq->private;
1607 struct stmmac_priv *priv = netdev_priv(dev);
1608
1609 seq_printf(seq, "=======================\n");
1610 seq_printf(seq, " RX descriptor ring\n");
1611 seq_printf(seq, "=======================\n");
1612
1613 for (i = 0; i < priv->dma_rx_size; i++) {
1614 struct tmp_s *x = (struct tmp_s *)(priv->dma_rx + i);
1615 seq_printf(seq, "[%d] DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
1616 i, (unsigned int)(x->a),
1617 (unsigned int)((x->a) >> 32), x->b, x->c);
1618 seq_printf(seq, "\n");
1619 }
1620
1621 seq_printf(seq, "\n");
1622 seq_printf(seq, "=======================\n");
1623 seq_printf(seq, " TX descriptor ring\n");
1624 seq_printf(seq, "=======================\n");
1625
1626 for (i = 0; i < priv->dma_tx_size; i++) {
1627 struct tmp_s *x = (struct tmp_s *)(priv->dma_tx + i);
1628 seq_printf(seq, "[%d] DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
1629 i, (unsigned int)(x->a),
1630 (unsigned int)((x->a) >> 32), x->b, x->c);
1631 seq_printf(seq, "\n");
1632 }
1633
1634 return 0;
1635}
1636
1637static int stmmac_sysfs_ring_open(struct inode *inode, struct file *file)
1638{
1639 return single_open(file, stmmac_sysfs_ring_read, inode->i_private);
1640}
1641
1642static const struct file_operations stmmac_rings_status_fops = {
1643 .owner = THIS_MODULE,
1644 .open = stmmac_sysfs_ring_open,
1645 .read = seq_read,
1646 .llseek = seq_lseek,
74863948 1647 .release = single_release,
7ac29055
GC
1648};
1649
e7434821
GC
1650static int stmmac_sysfs_dma_cap_read(struct seq_file *seq, void *v)
1651{
1652 struct net_device *dev = seq->private;
1653 struct stmmac_priv *priv = netdev_priv(dev);
1654
19e30c14 1655 if (!priv->hw_cap_support) {
e7434821
GC
1656 seq_printf(seq, "DMA HW features not supported\n");
1657 return 0;
1658 }
1659
1660 seq_printf(seq, "==============================\n");
1661 seq_printf(seq, "\tDMA HW features\n");
1662 seq_printf(seq, "==============================\n");
1663
1664 seq_printf(seq, "\t10/100 Mbps %s\n",
1665 (priv->dma_cap.mbps_10_100) ? "Y" : "N");
1666 seq_printf(seq, "\t1000 Mbps %s\n",
1667 (priv->dma_cap.mbps_1000) ? "Y" : "N");
1668 seq_printf(seq, "\tHalf duple %s\n",
1669 (priv->dma_cap.half_duplex) ? "Y" : "N");
1670 seq_printf(seq, "\tHash Filter: %s\n",
1671 (priv->dma_cap.hash_filter) ? "Y" : "N");
1672 seq_printf(seq, "\tMultiple MAC address registers: %s\n",
1673 (priv->dma_cap.multi_addr) ? "Y" : "N");
1674 seq_printf(seq, "\tPCS (TBI/SGMII/RTBI PHY interfatces): %s\n",
1675 (priv->dma_cap.pcs) ? "Y" : "N");
1676 seq_printf(seq, "\tSMA (MDIO) Interface: %s\n",
1677 (priv->dma_cap.sma_mdio) ? "Y" : "N");
1678 seq_printf(seq, "\tPMT Remote wake up: %s\n",
1679 (priv->dma_cap.pmt_remote_wake_up) ? "Y" : "N");
1680 seq_printf(seq, "\tPMT Magic Frame: %s\n",
1681 (priv->dma_cap.pmt_magic_frame) ? "Y" : "N");
1682 seq_printf(seq, "\tRMON module: %s\n",
1683 (priv->dma_cap.rmon) ? "Y" : "N");
1684 seq_printf(seq, "\tIEEE 1588-2002 Time Stamp: %s\n",
1685 (priv->dma_cap.time_stamp) ? "Y" : "N");
1686 seq_printf(seq, "\tIEEE 1588-2008 Advanced Time Stamp:%s\n",
1687 (priv->dma_cap.atime_stamp) ? "Y" : "N");
1688 seq_printf(seq, "\t802.3az - Energy-Efficient Ethernet (EEE) %s\n",
1689 (priv->dma_cap.eee) ? "Y" : "N");
1690 seq_printf(seq, "\tAV features: %s\n", (priv->dma_cap.av) ? "Y" : "N");
1691 seq_printf(seq, "\tChecksum Offload in TX: %s\n",
1692 (priv->dma_cap.tx_coe) ? "Y" : "N");
1693 seq_printf(seq, "\tIP Checksum Offload (type1) in RX: %s\n",
1694 (priv->dma_cap.rx_coe_type1) ? "Y" : "N");
1695 seq_printf(seq, "\tIP Checksum Offload (type2) in RX: %s\n",
1696 (priv->dma_cap.rx_coe_type2) ? "Y" : "N");
1697 seq_printf(seq, "\tRXFIFO > 2048bytes: %s\n",
1698 (priv->dma_cap.rxfifo_over_2048) ? "Y" : "N");
1699 seq_printf(seq, "\tNumber of Additional RX channel: %d\n",
1700 priv->dma_cap.number_rx_channel);
1701 seq_printf(seq, "\tNumber of Additional TX channel: %d\n",
1702 priv->dma_cap.number_tx_channel);
1703 seq_printf(seq, "\tEnhanced descriptors: %s\n",
1704 (priv->dma_cap.enh_desc) ? "Y" : "N");
1705
1706 return 0;
1707}
1708
1709static int stmmac_sysfs_dma_cap_open(struct inode *inode, struct file *file)
1710{
1711 return single_open(file, stmmac_sysfs_dma_cap_read, inode->i_private);
1712}
1713
1714static const struct file_operations stmmac_dma_cap_fops = {
1715 .owner = THIS_MODULE,
1716 .open = stmmac_sysfs_dma_cap_open,
1717 .read = seq_read,
1718 .llseek = seq_lseek,
74863948 1719 .release = single_release,
e7434821
GC
1720};
1721
7ac29055
GC
1722static int stmmac_init_fs(struct net_device *dev)
1723{
1724 /* Create debugfs entries */
1725 stmmac_fs_dir = debugfs_create_dir(STMMAC_RESOURCE_NAME, NULL);
1726
1727 if (!stmmac_fs_dir || IS_ERR(stmmac_fs_dir)) {
1728 pr_err("ERROR %s, debugfs create directory failed\n",
1729 STMMAC_RESOURCE_NAME);
1730
1731 return -ENOMEM;
1732 }
1733
1734 /* Entry to report DMA RX/TX rings */
1735 stmmac_rings_status = debugfs_create_file("descriptors_status",
1736 S_IRUGO, stmmac_fs_dir, dev,
1737 &stmmac_rings_status_fops);
1738
1739 if (!stmmac_rings_status || IS_ERR(stmmac_rings_status)) {
1740 pr_info("ERROR creating stmmac ring debugfs file\n");
1741 debugfs_remove(stmmac_fs_dir);
1742
1743 return -ENOMEM;
1744 }
1745
e7434821
GC
1746 /* Entry to report the DMA HW features */
1747 stmmac_dma_cap = debugfs_create_file("dma_cap", S_IRUGO, stmmac_fs_dir,
1748 dev, &stmmac_dma_cap_fops);
1749
1750 if (!stmmac_dma_cap || IS_ERR(stmmac_dma_cap)) {
1751 pr_info("ERROR creating stmmac MMC debugfs file\n");
1752 debugfs_remove(stmmac_rings_status);
1753 debugfs_remove(stmmac_fs_dir);
1754
1755 return -ENOMEM;
1756 }
1757
7ac29055
GC
1758 return 0;
1759}
1760
1761static void stmmac_exit_fs(void)
1762{
1763 debugfs_remove(stmmac_rings_status);
e7434821 1764 debugfs_remove(stmmac_dma_cap);
7ac29055
GC
1765 debugfs_remove(stmmac_fs_dir);
1766}
1767#endif /* CONFIG_STMMAC_DEBUG_FS */
1768
47dd7a54
GC
1769static const struct net_device_ops stmmac_netdev_ops = {
1770 .ndo_open = stmmac_open,
1771 .ndo_start_xmit = stmmac_xmit,
1772 .ndo_stop = stmmac_release,
1773 .ndo_change_mtu = stmmac_change_mtu,
5e982f3b 1774 .ndo_fix_features = stmmac_fix_features,
01789349 1775 .ndo_set_rx_mode = stmmac_set_rx_mode,
47dd7a54
GC
1776 .ndo_tx_timeout = stmmac_tx_timeout,
1777 .ndo_do_ioctl = stmmac_ioctl,
1778 .ndo_set_config = stmmac_config,
47dd7a54
GC
1779#ifdef CONFIG_NET_POLL_CONTROLLER
1780 .ndo_poll_controller = stmmac_poll_controller,
1781#endif
1782 .ndo_set_mac_address = eth_mac_addr,
1783};
1784
cf3f047b
GC
1785/**
1786 * stmmac_hw_init - Init the MAC device
1787 * @priv : pointer to the private device structure.
1788 * Description: this function detects which MAC device
1789 * (GMAC/MAC10-100) has to attached, checks the HW capability
1790 * (if supported) and sets the driver's features (for example
1791 * to use the ring or chaine mode or support the normal/enh
1792 * descriptor structure).
1793 */
1794static int stmmac_hw_init(struct stmmac_priv *priv)
1795{
1796 int ret = 0;
1797 struct mac_device_info *mac;
1798
1799 /* Identify the MAC HW device */
03f2eecd
MKB
1800 if (priv->plat->has_gmac) {
1801 priv->dev->priv_flags |= IFF_UNICAST_FLT;
cf3f047b 1802 mac = dwmac1000_setup(priv->ioaddr);
03f2eecd 1803 } else {
cf3f047b 1804 mac = dwmac100_setup(priv->ioaddr);
03f2eecd 1805 }
cf3f047b
GC
1806 if (!mac)
1807 return -ENOMEM;
1808
1809 priv->hw = mac;
1810
1811 /* To use the chained or ring mode */
1812 priv->hw->ring = &ring_mode_ops;
1813
1814 /* Get and dump the chip ID */
cffb13f4 1815 priv->synopsys_id = stmmac_get_synopsys_id(priv);
cf3f047b
GC
1816
1817 /* Get the HW capability (new GMAC newer than 3.50a) */
1818 priv->hw_cap_support = stmmac_get_hw_features(priv);
1819 if (priv->hw_cap_support) {
1820 pr_info(" DMA HW capability register supported");
1821
1822 /* We can override some gmac/dma configuration fields: e.g.
1823 * enh_desc, tx_coe (e.g. that are passed through the
1824 * platform) with the values from the HW capability
1825 * register (if supported).
1826 */
1827 priv->plat->enh_desc = priv->dma_cap.enh_desc;
cf3f047b 1828 priv->plat->pmt = priv->dma_cap.pmt_remote_wake_up;
38912bdb
DS
1829
1830 priv->plat->tx_coe = priv->dma_cap.tx_coe;
1831
1832 if (priv->dma_cap.rx_coe_type2)
1833 priv->plat->rx_coe = STMMAC_RX_COE_TYPE2;
1834 else if (priv->dma_cap.rx_coe_type1)
1835 priv->plat->rx_coe = STMMAC_RX_COE_TYPE1;
1836
cf3f047b
GC
1837 } else
1838 pr_info(" No HW DMA feature register supported");
1839
1840 /* Select the enhnaced/normal descriptor structures */
1841 stmmac_selec_desc_mode(priv);
1842
38912bdb
DS
1843 /* Enable the IPC (Checksum Offload) and check if the feature has been
1844 * enabled during the core configuration. */
1845 ret = priv->hw->mac->rx_ipc(priv->ioaddr);
1846 if (!ret) {
1847 pr_warning(" RX IPC Checksum Offload not configured.\n");
1848 priv->plat->rx_coe = STMMAC_RX_COE_NONE;
1849 }
1850
1851 if (priv->plat->rx_coe)
1852 pr_info(" RX Checksum Offload Engine supported (type %d)\n",
1853 priv->plat->rx_coe);
cf3f047b
GC
1854 if (priv->plat->tx_coe)
1855 pr_info(" TX Checksum insertion supported\n");
1856
1857 if (priv->plat->pmt) {
1858 pr_info(" Wake-Up On Lan supported\n");
1859 device_set_wakeup_capable(priv->device, 1);
1860 }
1861
1862 return ret;
1863}
1864
47dd7a54 1865/**
bfab27a1
GC
1866 * stmmac_dvr_probe
1867 * @device: device pointer
ff3dd78c
GC
1868 * @plat_dat: platform data pointer
1869 * @addr: iobase memory address
bfab27a1
GC
1870 * Description: this is the main probe function used to
1871 * call the alloc_etherdev, allocate the priv structure.
47dd7a54 1872 */
bfab27a1 1873struct stmmac_priv *stmmac_dvr_probe(struct device *device,
cf3f047b
GC
1874 struct plat_stmmacenet_data *plat_dat,
1875 void __iomem *addr)
47dd7a54
GC
1876{
1877 int ret = 0;
bfab27a1
GC
1878 struct net_device *ndev = NULL;
1879 struct stmmac_priv *priv;
47dd7a54 1880
bfab27a1 1881 ndev = alloc_etherdev(sizeof(struct stmmac_priv));
41de8d4c 1882 if (!ndev)
bfab27a1 1883 return NULL;
bfab27a1
GC
1884
1885 SET_NETDEV_DEV(ndev, device);
1886
1887 priv = netdev_priv(ndev);
1888 priv->device = device;
1889 priv->dev = ndev;
47dd7a54 1890
bfab27a1 1891 ether_setup(ndev);
47dd7a54 1892
bfab27a1 1893 stmmac_set_ethtool_ops(ndev);
cf3f047b
GC
1894 priv->pause = pause;
1895 priv->plat = plat_dat;
1896 priv->ioaddr = addr;
1897 priv->dev->base_addr = (unsigned long)addr;
1898
1899 /* Verify driver arguments */
1900 stmmac_verify_args();
bfab27a1 1901
cf3f047b
GC
1902 /* Override with kernel parameters if supplied XXX CRS XXX
1903 * this needs to have multiple instances */
1904 if ((phyaddr >= 0) && (phyaddr <= 31))
1905 priv->plat->phy_addr = phyaddr;
1906
1907 /* Init MAC and get the capabilities */
1908 stmmac_hw_init(priv);
1909
1910 ndev->netdev_ops = &stmmac_netdev_ops;
bfab27a1 1911
cf3f047b
GC
1912 ndev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
1913 NETIF_F_RXCSUM;
bfab27a1
GC
1914 ndev->features |= ndev->hw_features | NETIF_F_HIGHDMA;
1915 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
47dd7a54
GC
1916#ifdef STMMAC_VLAN_TAG_USED
1917 /* Both mac100 and gmac support receive VLAN tag detection */
bfab27a1 1918 ndev->features |= NETIF_F_HW_VLAN_RX;
47dd7a54
GC
1919#endif
1920 priv->msg_enable = netif_msg_init(debug, default_msg_level);
1921
47dd7a54
GC
1922 if (flow_ctrl)
1923 priv->flow_ctrl = FLOW_AUTO; /* RX/TX pause on */
1924
bfab27a1 1925 netif_napi_add(ndev, &priv->napi, stmmac_poll, 64);
47dd7a54 1926
f8e96161 1927 spin_lock_init(&priv->lock);
a9097a96 1928 spin_lock_init(&priv->tx_lock);
f8e96161 1929
bfab27a1 1930 ret = register_netdev(ndev);
47dd7a54 1931 if (ret) {
cf3f047b 1932 pr_err("%s: ERROR %i registering the device\n", __func__, ret);
bfab27a1 1933 goto error;
47dd7a54
GC
1934 }
1935
ba1377ff 1936 if (stmmac_clk_get(priv))
31ea38ee 1937 pr_warning("%s: warning: cannot get CSR clock\n", __func__);
ba1377ff 1938
cd7201f4
GC
1939 /* If a specific clk_csr value is passed from the platform
1940 * this means that the CSR Clock Range selection cannot be
1941 * changed at run-time and it is fixed. Viceversa the driver'll try to
1942 * set the MDC clock dynamically according to the csr actual
1943 * clock input.
1944 */
1945 if (!priv->plat->clk_csr)
1946 stmmac_clk_csr_set(priv);
1947 else
1948 priv->clk_csr = priv->plat->clk_csr;
1949
4bfcbd7a
FV
1950 /* MDIO bus Registration */
1951 ret = stmmac_mdio_register(ndev);
1952 if (ret < 0) {
1953 pr_debug("%s: MDIO bus (id: %d) registration failed",
1954 __func__, priv->plat->bus_id);
1955 goto error;
1956 }
1957
bfab27a1 1958 return priv;
47dd7a54 1959
bfab27a1
GC
1960error:
1961 netif_napi_del(&priv->napi);
47dd7a54 1962
34a52f36 1963 unregister_netdev(ndev);
34a52f36 1964 free_netdev(ndev);
47dd7a54 1965
bfab27a1 1966 return NULL;
47dd7a54
GC
1967}
1968
1969/**
1970 * stmmac_dvr_remove
bfab27a1 1971 * @ndev: net device pointer
47dd7a54 1972 * Description: this function resets the TX/RX processes, disables the MAC RX/TX
bfab27a1 1973 * changes the link status, releases the DMA descriptor rings.
47dd7a54 1974 */
bfab27a1 1975int stmmac_dvr_remove(struct net_device *ndev)
47dd7a54 1976{
aec7ff27 1977 struct stmmac_priv *priv = netdev_priv(ndev);
47dd7a54
GC
1978
1979 pr_info("%s:\n\tremoving driver", __func__);
1980
ad01b7d4
GC
1981 priv->hw->dma->stop_rx(priv->ioaddr);
1982 priv->hw->dma->stop_tx(priv->ioaddr);
47dd7a54 1983
bfab27a1 1984 stmmac_set_mac(priv->ioaddr, false);
4bfcbd7a 1985 stmmac_mdio_unregister(ndev);
47dd7a54 1986 netif_carrier_off(ndev);
47dd7a54 1987 unregister_netdev(ndev);
47dd7a54
GC
1988 free_netdev(ndev);
1989
1990 return 0;
1991}
1992
1993#ifdef CONFIG_PM
bfab27a1 1994int stmmac_suspend(struct net_device *ndev)
47dd7a54 1995{
874bd42d 1996 struct stmmac_priv *priv = netdev_priv(ndev);
47dd7a54 1997 int dis_ic = 0;
f8c5a875 1998 unsigned long flags;
47dd7a54 1999
874bd42d 2000 if (!ndev || !netif_running(ndev))
47dd7a54
GC
2001 return 0;
2002
102463b1
FV
2003 if (priv->phydev)
2004 phy_stop(priv->phydev);
2005
f8c5a875 2006 spin_lock_irqsave(&priv->lock, flags);
47dd7a54 2007
874bd42d
GC
2008 netif_device_detach(ndev);
2009 netif_stop_queue(ndev);
47dd7a54
GC
2010
2011#ifdef CONFIG_STMMAC_TIMER
874bd42d
GC
2012 priv->tm->timer_stop();
2013 if (likely(priv->tm->enable))
2014 dis_ic = 1;
47dd7a54 2015#endif
874bd42d
GC
2016 napi_disable(&priv->napi);
2017
2018 /* Stop TX/RX DMA */
2019 priv->hw->dma->stop_tx(priv->ioaddr);
2020 priv->hw->dma->stop_rx(priv->ioaddr);
2021 /* Clear the Rx/Tx descriptors */
2022 priv->hw->desc->init_rx_desc(priv->dma_rx, priv->dma_rx_size,
2023 dis_ic);
2024 priv->hw->desc->init_tx_desc(priv->dma_tx, priv->dma_tx_size);
2025
2026 /* Enable Power down mode by programming the PMT regs */
2027 if (device_may_wakeup(priv->device))
2028 priv->hw->mac->pmt(priv->ioaddr, priv->wolopts);
ba1377ff 2029 else {
bfab27a1 2030 stmmac_set_mac(priv->ioaddr, false);
ba1377ff
GC
2031 /* Disable clock in case of PWM is off */
2032 stmmac_clk_disable(priv);
2033 }
f8c5a875 2034 spin_unlock_irqrestore(&priv->lock, flags);
47dd7a54
GC
2035 return 0;
2036}
2037
bfab27a1 2038int stmmac_resume(struct net_device *ndev)
47dd7a54 2039{
874bd42d 2040 struct stmmac_priv *priv = netdev_priv(ndev);
f8c5a875 2041 unsigned long flags;
47dd7a54 2042
874bd42d 2043 if (!netif_running(ndev))
47dd7a54
GC
2044 return 0;
2045
f8c5a875 2046 spin_lock_irqsave(&priv->lock, flags);
c4433be6 2047
47dd7a54
GC
2048 /* Power Down bit, into the PM register, is cleared
2049 * automatically as soon as a magic packet or a Wake-up frame
2050 * is received. Anyway, it's better to manually clear
2051 * this bit because it can generate problems while resuming
2052 * from another devices (e.g. serial console). */
874bd42d 2053 if (device_may_wakeup(priv->device))
543876c9 2054 priv->hw->mac->pmt(priv->ioaddr, 0);
ba1377ff
GC
2055 else
2056 /* enable the clk prevously disabled */
2057 stmmac_clk_enable(priv);
47dd7a54 2058
874bd42d 2059 netif_device_attach(ndev);
47dd7a54
GC
2060
2061 /* Enable the MAC and DMA */
bfab27a1 2062 stmmac_set_mac(priv->ioaddr, true);
ad01b7d4
GC
2063 priv->hw->dma->start_tx(priv->ioaddr);
2064 priv->hw->dma->start_rx(priv->ioaddr);
47dd7a54
GC
2065
2066#ifdef CONFIG_STMMAC_TIMER
874bd42d
GC
2067 if (likely(priv->tm->enable))
2068 priv->tm->timer_start(tmrate);
47dd7a54
GC
2069#endif
2070 napi_enable(&priv->napi);
2071
874bd42d 2072 netif_start_queue(ndev);
47dd7a54 2073
f8c5a875 2074 spin_unlock_irqrestore(&priv->lock, flags);
102463b1
FV
2075
2076 if (priv->phydev)
2077 phy_start(priv->phydev);
2078
47dd7a54
GC
2079 return 0;
2080}
47dd7a54 2081
bfab27a1 2082int stmmac_freeze(struct net_device *ndev)
874bd42d 2083{
874bd42d
GC
2084 if (!ndev || !netif_running(ndev))
2085 return 0;
2086
2087 return stmmac_release(ndev);
2088}
2089
bfab27a1 2090int stmmac_restore(struct net_device *ndev)
874bd42d 2091{
874bd42d
GC
2092 if (!ndev || !netif_running(ndev))
2093 return 0;
2094
2095 return stmmac_open(ndev);
2096}
874bd42d 2097#endif /* CONFIG_PM */
47dd7a54 2098
33d5e332
GC
2099/* Driver can be configured w/ and w/ both PCI and Platf drivers
2100 * depending on the configuration selected.
2101 */
ba27ec66
GC
2102static int __init stmmac_init(void)
2103{
33d5e332
GC
2104 int err_plt = 0;
2105 int err_pci = 0;
ba27ec66 2106
33d5e332
GC
2107 err_plt = stmmac_register_platform();
2108 err_pci = stmmac_register_pci();
ba27ec66 2109
33d5e332
GC
2110 if ((err_pci) && (err_plt)) {
2111 pr_err("stmmac: driver registration failed\n");
2112 return -EINVAL;
ba27ec66
GC
2113 }
2114
33d5e332 2115 return 0;
ba27ec66
GC
2116}
2117
2118static void __exit stmmac_exit(void)
2119{
33d5e332
GC
2120 stmmac_unregister_platform();
2121 stmmac_unregister_pci();
ba27ec66
GC
2122}
2123
2124module_init(stmmac_init);
2125module_exit(stmmac_exit);
2126
47dd7a54
GC
2127#ifndef MODULE
2128static int __init stmmac_cmdline_opt(char *str)
2129{
2130 char *opt;
2131
2132 if (!str || !*str)
2133 return -EINVAL;
2134 while ((opt = strsep(&str, ",")) != NULL) {
f3240e28
GC
2135 if (!strncmp(opt, "debug:", 6)) {
2136 if (strict_strtoul(opt + 6, 0, (unsigned long *)&debug))
2137 goto err;
2138 } else if (!strncmp(opt, "phyaddr:", 8)) {
2139 if (strict_strtoul(opt + 8, 0,
2140 (unsigned long *)&phyaddr))
2141 goto err;
2142 } else if (!strncmp(opt, "dma_txsize:", 11)) {
2143 if (strict_strtoul(opt + 11, 0,
2144 (unsigned long *)&dma_txsize))
2145 goto err;
2146 } else if (!strncmp(opt, "dma_rxsize:", 11)) {
2147 if (strict_strtoul(opt + 11, 0,
2148 (unsigned long *)&dma_rxsize))
2149 goto err;
2150 } else if (!strncmp(opt, "buf_sz:", 7)) {
2151 if (strict_strtoul(opt + 7, 0,
2152 (unsigned long *)&buf_sz))
2153 goto err;
2154 } else if (!strncmp(opt, "tc:", 3)) {
2155 if (strict_strtoul(opt + 3, 0, (unsigned long *)&tc))
2156 goto err;
2157 } else if (!strncmp(opt, "watchdog:", 9)) {
2158 if (strict_strtoul(opt + 9, 0,
2159 (unsigned long *)&watchdog))
2160 goto err;
2161 } else if (!strncmp(opt, "flow_ctrl:", 10)) {
2162 if (strict_strtoul(opt + 10, 0,
2163 (unsigned long *)&flow_ctrl))
2164 goto err;
2165 } else if (!strncmp(opt, "pause:", 6)) {
2166 if (strict_strtoul(opt + 6, 0, (unsigned long *)&pause))
2167 goto err;
47dd7a54 2168#ifdef CONFIG_STMMAC_TIMER
f3240e28
GC
2169 } else if (!strncmp(opt, "tmrate:", 7)) {
2170 if (strict_strtoul(opt + 7, 0,
2171 (unsigned long *)&tmrate))
2172 goto err;
47dd7a54 2173#endif
f3240e28 2174 }
47dd7a54
GC
2175 }
2176 return 0;
f3240e28
GC
2177
2178err:
2179 pr_err("%s: ERROR broken module parameter conversion", __func__);
2180 return -EINVAL;
47dd7a54
GC
2181}
2182
2183__setup("stmmaceth=", stmmac_cmdline_opt);
2184#endif
6fc0d0f2
GC
2185
2186MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet device driver");
2187MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
2188MODULE_LICENSE("GPL");
This page took 0.456129 seconds and 5 git commands to generate.