stmmac: add memory barriers at appropriate places
[deliverable/linux.git] / drivers / net / 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
5 Copyright (C) 2007-2009 STMicroelectronics Ltd
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
31#include <linux/module.h>
32#include <linux/init.h>
33#include <linux/kernel.h>
34#include <linux/interrupt.h>
47dd7a54
GC
35#include <linux/etherdevice.h>
36#include <linux/platform_device.h>
37#include <linux/ip.h>
38#include <linux/tcp.h>
39#include <linux/skbuff.h>
40#include <linux/ethtool.h>
41#include <linux/if_ether.h>
42#include <linux/crc32.h>
43#include <linux/mii.h>
44#include <linux/phy.h>
45#include <linux/if_vlan.h>
46#include <linux/dma-mapping.h>
5a0e3ad6 47#include <linux/slab.h>
70c71606 48#include <linux/prefetch.h>
47dd7a54
GC
49#include "stmmac.h"
50
51#define STMMAC_RESOURCE_NAME "stmmaceth"
52#define PHY_RESOURCE_NAME "stmmacphy"
53
54#undef STMMAC_DEBUG
55/*#define STMMAC_DEBUG*/
56#ifdef STMMAC_DEBUG
57#define DBG(nlevel, klevel, fmt, args...) \
58 ((void)(netif_msg_##nlevel(priv) && \
59 printk(KERN_##klevel fmt, ## args)))
60#else
61#define DBG(nlevel, klevel, fmt, args...) do { } while (0)
62#endif
63
64#undef STMMAC_RX_DEBUG
65/*#define STMMAC_RX_DEBUG*/
66#ifdef STMMAC_RX_DEBUG
67#define RX_DBG(fmt, args...) printk(fmt, ## args)
68#else
69#define RX_DBG(fmt, args...) do { } while (0)
70#endif
71
72#undef STMMAC_XMIT_DEBUG
73/*#define STMMAC_XMIT_DEBUG*/
74#ifdef STMMAC_TX_DEBUG
75#define TX_DBG(fmt, args...) printk(fmt, ## args)
76#else
77#define TX_DBG(fmt, args...) do { } while (0)
78#endif
79
80#define STMMAC_ALIGN(x) L1_CACHE_ALIGN(x)
81#define JUMBO_LEN 9000
82
83/* Module parameters */
84#define TX_TIMEO 5000 /* default 5 seconds */
85static int watchdog = TX_TIMEO;
86module_param(watchdog, int, S_IRUGO | S_IWUSR);
87MODULE_PARM_DESC(watchdog, "Transmit timeout in milliseconds");
88
89static int debug = -1; /* -1: default, 0: no output, 16: all */
90module_param(debug, int, S_IRUGO | S_IWUSR);
91MODULE_PARM_DESC(debug, "Message Level (0: no output, 16: all)");
92
93static int phyaddr = -1;
94module_param(phyaddr, int, S_IRUGO);
95MODULE_PARM_DESC(phyaddr, "Physical device address");
96
97#define DMA_TX_SIZE 256
98static int dma_txsize = DMA_TX_SIZE;
99module_param(dma_txsize, int, S_IRUGO | S_IWUSR);
100MODULE_PARM_DESC(dma_txsize, "Number of descriptors in the TX list");
101
102#define DMA_RX_SIZE 256
103static int dma_rxsize = DMA_RX_SIZE;
104module_param(dma_rxsize, int, S_IRUGO | S_IWUSR);
105MODULE_PARM_DESC(dma_rxsize, "Number of descriptors in the RX list");
106
107static int flow_ctrl = FLOW_OFF;
108module_param(flow_ctrl, int, S_IRUGO | S_IWUSR);
109MODULE_PARM_DESC(flow_ctrl, "Flow control ability [on/off]");
110
111static int pause = PAUSE_TIME;
112module_param(pause, int, S_IRUGO | S_IWUSR);
113MODULE_PARM_DESC(pause, "Flow Control Pause Time");
114
115#define TC_DEFAULT 64
116static int tc = TC_DEFAULT;
117module_param(tc, int, S_IRUGO | S_IWUSR);
118MODULE_PARM_DESC(tc, "DMA threshold control value");
119
47dd7a54
GC
120/* Pay attention to tune this parameter; take care of both
121 * hardware capability and network stabitily/performance impact.
122 * Many tests showed that ~4ms latency seems to be good enough. */
123#ifdef CONFIG_STMMAC_TIMER
124#define DEFAULT_PERIODIC_RATE 256
125static int tmrate = DEFAULT_PERIODIC_RATE;
126module_param(tmrate, int, S_IRUGO | S_IWUSR);
127MODULE_PARM_DESC(tmrate, "External timer freq. (default: 256Hz)");
128#endif
129
130#define DMA_BUFFER_SIZE BUF_SIZE_2KiB
131static int buf_sz = DMA_BUFFER_SIZE;
132module_param(buf_sz, int, S_IRUGO | S_IWUSR);
133MODULE_PARM_DESC(buf_sz, "DMA buffer size");
134
47dd7a54
GC
135static const u32 default_msg_level = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
136 NETIF_MSG_LINK | NETIF_MSG_IFUP |
137 NETIF_MSG_IFDOWN | NETIF_MSG_TIMER);
138
139static irqreturn_t stmmac_interrupt(int irq, void *dev_id);
47dd7a54
GC
140
141/**
142 * stmmac_verify_args - verify the driver parameters.
143 * Description: it verifies if some wrong parameter is passed to the driver.
144 * Note that wrong parameters are replaced with the default values.
145 */
146static void stmmac_verify_args(void)
147{
148 if (unlikely(watchdog < 0))
149 watchdog = TX_TIMEO;
150 if (unlikely(dma_rxsize < 0))
151 dma_rxsize = DMA_RX_SIZE;
152 if (unlikely(dma_txsize < 0))
153 dma_txsize = DMA_TX_SIZE;
154 if (unlikely((buf_sz < DMA_BUFFER_SIZE) || (buf_sz > BUF_SIZE_16KiB)))
155 buf_sz = DMA_BUFFER_SIZE;
156 if (unlikely(flow_ctrl > 1))
157 flow_ctrl = FLOW_AUTO;
158 else if (likely(flow_ctrl < 0))
159 flow_ctrl = FLOW_OFF;
160 if (unlikely((pause < 0) || (pause > 0xffff)))
161 pause = PAUSE_TIME;
47dd7a54
GC
162}
163
164#if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG)
165static void print_pkt(unsigned char *buf, int len)
166{
167 int j;
168 pr_info("len = %d byte, buf addr: 0x%p", len, buf);
169 for (j = 0; j < len; j++) {
170 if ((j % 16) == 0)
171 pr_info("\n %03x:", j);
172 pr_info(" %02x", buf[j]);
173 }
174 pr_info("\n");
47dd7a54
GC
175}
176#endif
177
178/* minimum number of free TX descriptors required to wake up TX process */
179#define STMMAC_TX_THRESH(x) (x->dma_tx_size/4)
180
181static inline u32 stmmac_tx_avail(struct stmmac_priv *priv)
182{
183 return priv->dirty_tx + priv->dma_tx_size - priv->cur_tx - 1;
184}
185
9dfeb4d9
GC
186/* On some ST platforms, some HW system configuraton registers have to be
187 * set according to the link speed negotiated.
188 */
189static inline void stmmac_hw_fix_mac_speed(struct stmmac_priv *priv)
190{
191 struct phy_device *phydev = priv->phydev;
192
193 if (likely(priv->plat->fix_mac_speed))
194 priv->plat->fix_mac_speed(priv->plat->bsp_priv,
195 phydev->speed);
196}
197
47dd7a54
GC
198/**
199 * stmmac_adjust_link
200 * @dev: net device structure
201 * Description: it adjusts the link parameters.
202 */
203static void stmmac_adjust_link(struct net_device *dev)
204{
205 struct stmmac_priv *priv = netdev_priv(dev);
206 struct phy_device *phydev = priv->phydev;
47dd7a54
GC
207 unsigned long flags;
208 int new_state = 0;
209 unsigned int fc = priv->flow_ctrl, pause_time = priv->pause;
210
211 if (phydev == NULL)
212 return;
213
214 DBG(probe, DEBUG, "stmmac_adjust_link: called. address %d link %d\n",
215 phydev->addr, phydev->link);
216
217 spin_lock_irqsave(&priv->lock, flags);
218 if (phydev->link) {
ad01b7d4 219 u32 ctrl = readl(priv->ioaddr + MAC_CTRL_REG);
47dd7a54
GC
220
221 /* Now we make sure that we can be in full duplex mode.
222 * If not, we operate in half-duplex mode. */
223 if (phydev->duplex != priv->oldduplex) {
224 new_state = 1;
225 if (!(phydev->duplex))
db98a0b0 226 ctrl &= ~priv->hw->link.duplex;
47dd7a54 227 else
db98a0b0 228 ctrl |= priv->hw->link.duplex;
47dd7a54
GC
229 priv->oldduplex = phydev->duplex;
230 }
231 /* Flow Control operation */
232 if (phydev->pause)
ad01b7d4 233 priv->hw->mac->flow_ctrl(priv->ioaddr, phydev->duplex,
db98a0b0 234 fc, pause_time);
47dd7a54
GC
235
236 if (phydev->speed != priv->speed) {
237 new_state = 1;
238 switch (phydev->speed) {
239 case 1000:
9dfeb4d9 240 if (likely(priv->plat->has_gmac))
db98a0b0 241 ctrl &= ~priv->hw->link.port;
9dfeb4d9 242 stmmac_hw_fix_mac_speed(priv);
47dd7a54
GC
243 break;
244 case 100:
245 case 10:
9dfeb4d9 246 if (priv->plat->has_gmac) {
db98a0b0 247 ctrl |= priv->hw->link.port;
47dd7a54 248 if (phydev->speed == SPEED_100) {
db98a0b0 249 ctrl |= priv->hw->link.speed;
47dd7a54 250 } else {
db98a0b0 251 ctrl &= ~(priv->hw->link.speed);
47dd7a54
GC
252 }
253 } else {
db98a0b0 254 ctrl &= ~priv->hw->link.port;
47dd7a54 255 }
9dfeb4d9 256 stmmac_hw_fix_mac_speed(priv);
47dd7a54
GC
257 break;
258 default:
259 if (netif_msg_link(priv))
260 pr_warning("%s: Speed (%d) is not 10"
261 " or 100!\n", dev->name, phydev->speed);
262 break;
263 }
264
265 priv->speed = phydev->speed;
266 }
267
ad01b7d4 268 writel(ctrl, priv->ioaddr + MAC_CTRL_REG);
47dd7a54
GC
269
270 if (!priv->oldlink) {
271 new_state = 1;
272 priv->oldlink = 1;
273 }
274 } else if (priv->oldlink) {
275 new_state = 1;
276 priv->oldlink = 0;
277 priv->speed = 0;
278 priv->oldduplex = -1;
279 }
280
281 if (new_state && netif_msg_link(priv))
282 phy_print_status(phydev);
283
284 spin_unlock_irqrestore(&priv->lock, flags);
285
286 DBG(probe, DEBUG, "stmmac_adjust_link: exiting\n");
287}
288
289/**
290 * stmmac_init_phy - PHY initialization
291 * @dev: net device structure
292 * Description: it initializes the driver's PHY state, and attaches the PHY
293 * to the mac driver.
294 * Return value:
295 * 0 on success
296 */
297static int stmmac_init_phy(struct net_device *dev)
298{
299 struct stmmac_priv *priv = netdev_priv(dev);
300 struct phy_device *phydev;
109cdd66
GC
301 char phy_id[MII_BUS_ID_SIZE + 3];
302 char bus_id[MII_BUS_ID_SIZE];
47dd7a54
GC
303
304 priv->oldlink = 0;
305 priv->speed = 0;
306 priv->oldduplex = -1;
307
308 if (priv->phy_addr == -1) {
309 /* We don't have a PHY, so do nothing */
310 return 0;
311 }
312
9dfeb4d9 313 snprintf(bus_id, MII_BUS_ID_SIZE, "%x", priv->plat->bus_id);
109cdd66
GC
314 snprintf(phy_id, MII_BUS_ID_SIZE + 3, PHY_ID_FMT, bus_id,
315 priv->phy_addr);
47dd7a54
GC
316 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id);
317
318 phydev = phy_connect(dev, phy_id, &stmmac_adjust_link, 0,
319 priv->phy_interface);
320
321 if (IS_ERR(phydev)) {
322 pr_err("%s: Could not attach to PHY\n", dev->name);
323 return PTR_ERR(phydev);
324 }
325
326 /*
327 * Broken HW is sometimes missing the pull-up resistor on the
328 * MDIO line, which results in reads to non-existent devices returning
329 * 0 rather than 0xffff. Catch this here and treat 0 as a non-existent
330 * device as well.
331 * Note: phydev->phy_id is the result of reading the UID PHY registers.
332 */
333 if (phydev->phy_id == 0) {
334 phy_disconnect(phydev);
335 return -ENODEV;
336 }
337 pr_debug("stmmac_init_phy: %s: attached to PHY (UID 0x%x)"
338 " Link = %d\n", dev->name, phydev->phy_id, phydev->link);
339
340 priv->phydev = phydev;
341
342 return 0;
343}
344
19449bfc 345static inline void stmmac_enable_mac(void __iomem *ioaddr)
47dd7a54
GC
346{
347 u32 value = readl(ioaddr + MAC_CTRL_REG);
47dd7a54 348
19449bfc 349 value |= MAC_RNABLE_RX | MAC_ENABLE_TX;
47dd7a54
GC
350 writel(value, ioaddr + MAC_CTRL_REG);
351}
352
19449bfc 353static inline void stmmac_disable_mac(void __iomem *ioaddr)
47dd7a54
GC
354{
355 u32 value = readl(ioaddr + MAC_CTRL_REG);
47dd7a54 356
19449bfc 357 value &= ~(MAC_ENABLE_TX | MAC_RNABLE_RX);
47dd7a54
GC
358 writel(value, ioaddr + MAC_CTRL_REG);
359}
360
361/**
362 * display_ring
363 * @p: pointer to the ring.
364 * @size: size of the ring.
365 * Description: display all the descriptors within the ring.
366 */
367static void display_ring(struct dma_desc *p, int size)
368{
369 struct tmp_s {
370 u64 a;
371 unsigned int b;
372 unsigned int c;
373 };
374 int i;
375 for (i = 0; i < size; i++) {
376 struct tmp_s *x = (struct tmp_s *)(p + i);
377 pr_info("\t%d [0x%x]: DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
378 i, (unsigned int)virt_to_phys(&p[i]),
379 (unsigned int)(x->a), (unsigned int)((x->a) >> 32),
380 x->b, x->c);
381 pr_info("\n");
382 }
383}
384
385/**
386 * init_dma_desc_rings - init the RX/TX descriptor rings
387 * @dev: net device structure
388 * Description: this function initializes the DMA RX/TX descriptors
389 * and allocates the socket buffers.
390 */
391static void init_dma_desc_rings(struct net_device *dev)
392{
393 int i;
394 struct stmmac_priv *priv = netdev_priv(dev);
395 struct sk_buff *skb;
396 unsigned int txsize = priv->dma_tx_size;
397 unsigned int rxsize = priv->dma_rx_size;
398 unsigned int bfsize = priv->dma_buf_sz;
73cfe264 399 int buff2_needed = 0, dis_ic = 0;
47dd7a54 400
47dd7a54
GC
401 /* Set the Buffer size according to the MTU;
402 * indeed, in case of jumbo we need to bump-up the buffer sizes.
403 */
404 if (unlikely(dev->mtu >= BUF_SIZE_8KiB))
405 bfsize = BUF_SIZE_16KiB;
406 else if (unlikely(dev->mtu >= BUF_SIZE_4KiB))
407 bfsize = BUF_SIZE_8KiB;
408 else if (unlikely(dev->mtu >= BUF_SIZE_2KiB))
409 bfsize = BUF_SIZE_4KiB;
410 else if (unlikely(dev->mtu >= DMA_BUFFER_SIZE))
411 bfsize = BUF_SIZE_2KiB;
412 else
413 bfsize = DMA_BUFFER_SIZE;
414
73cfe264
GC
415#ifdef CONFIG_STMMAC_TIMER
416 /* Disable interrupts on completion for the reception if timer is on */
417 if (likely(priv->tm->enable))
418 dis_ic = 1;
419#endif
47dd7a54
GC
420 /* If the MTU exceeds 8k so use the second buffer in the chain */
421 if (bfsize >= BUF_SIZE_8KiB)
422 buff2_needed = 1;
423
424 DBG(probe, INFO, "stmmac: txsize %d, rxsize %d, bfsize %d\n",
425 txsize, rxsize, bfsize);
426
427 priv->rx_skbuff_dma = kmalloc(rxsize * sizeof(dma_addr_t), GFP_KERNEL);
428 priv->rx_skbuff =
429 kmalloc(sizeof(struct sk_buff *) * rxsize, GFP_KERNEL);
430 priv->dma_rx =
431 (struct dma_desc *)dma_alloc_coherent(priv->device,
432 rxsize *
433 sizeof(struct dma_desc),
434 &priv->dma_rx_phy,
435 GFP_KERNEL);
436 priv->tx_skbuff = kmalloc(sizeof(struct sk_buff *) * txsize,
437 GFP_KERNEL);
438 priv->dma_tx =
439 (struct dma_desc *)dma_alloc_coherent(priv->device,
440 txsize *
441 sizeof(struct dma_desc),
442 &priv->dma_tx_phy,
443 GFP_KERNEL);
444
445 if ((priv->dma_rx == NULL) || (priv->dma_tx == NULL)) {
446 pr_err("%s:ERROR allocating the DMA Tx/Rx desc\n", __func__);
447 return;
448 }
449
450 DBG(probe, INFO, "stmmac (%s) DMA desc rings: virt addr (Rx %p, "
451 "Tx %p)\n\tDMA phy addr (Rx 0x%08x, Tx 0x%08x)\n",
452 dev->name, priv->dma_rx, priv->dma_tx,
453 (unsigned int)priv->dma_rx_phy, (unsigned int)priv->dma_tx_phy);
454
455 /* RX INITIALIZATION */
456 DBG(probe, INFO, "stmmac: SKB addresses:\n"
457 "skb\t\tskb data\tdma data\n");
458
459 for (i = 0; i < rxsize; i++) {
460 struct dma_desc *p = priv->dma_rx + i;
461
462 skb = netdev_alloc_skb_ip_align(dev, bfsize);
463 if (unlikely(skb == NULL)) {
464 pr_err("%s: Rx init fails; skb is NULL\n", __func__);
465 break;
466 }
467 priv->rx_skbuff[i] = skb;
468 priv->rx_skbuff_dma[i] = dma_map_single(priv->device, skb->data,
469 bfsize, DMA_FROM_DEVICE);
470
471 p->des2 = priv->rx_skbuff_dma[i];
472 if (unlikely(buff2_needed))
473 p->des3 = p->des2 + BUF_SIZE_8KiB;
474 DBG(probe, INFO, "[%p]\t[%p]\t[%x]\n", priv->rx_skbuff[i],
475 priv->rx_skbuff[i]->data, priv->rx_skbuff_dma[i]);
476 }
477 priv->cur_rx = 0;
478 priv->dirty_rx = (unsigned int)(i - rxsize);
479 priv->dma_buf_sz = bfsize;
480 buf_sz = bfsize;
481
482 /* TX INITIALIZATION */
483 for (i = 0; i < txsize; i++) {
484 priv->tx_skbuff[i] = NULL;
485 priv->dma_tx[i].des2 = 0;
486 }
487 priv->dirty_tx = 0;
488 priv->cur_tx = 0;
489
490 /* Clear the Rx/Tx descriptors */
db98a0b0
GC
491 priv->hw->desc->init_rx_desc(priv->dma_rx, rxsize, dis_ic);
492 priv->hw->desc->init_tx_desc(priv->dma_tx, txsize);
47dd7a54
GC
493
494 if (netif_msg_hw(priv)) {
495 pr_info("RX descriptor ring:\n");
496 display_ring(priv->dma_rx, rxsize);
497 pr_info("TX descriptor ring:\n");
498 display_ring(priv->dma_tx, txsize);
499 }
47dd7a54
GC
500}
501
502static void dma_free_rx_skbufs(struct stmmac_priv *priv)
503{
504 int i;
505
506 for (i = 0; i < priv->dma_rx_size; i++) {
507 if (priv->rx_skbuff[i]) {
508 dma_unmap_single(priv->device, priv->rx_skbuff_dma[i],
509 priv->dma_buf_sz, DMA_FROM_DEVICE);
510 dev_kfree_skb_any(priv->rx_skbuff[i]);
511 }
512 priv->rx_skbuff[i] = NULL;
513 }
47dd7a54
GC
514}
515
516static void dma_free_tx_skbufs(struct stmmac_priv *priv)
517{
518 int i;
519
520 for (i = 0; i < priv->dma_tx_size; i++) {
521 if (priv->tx_skbuff[i] != NULL) {
522 struct dma_desc *p = priv->dma_tx + i;
523 if (p->des2)
524 dma_unmap_single(priv->device, p->des2,
db98a0b0
GC
525 priv->hw->desc->get_tx_len(p),
526 DMA_TO_DEVICE);
47dd7a54
GC
527 dev_kfree_skb_any(priv->tx_skbuff[i]);
528 priv->tx_skbuff[i] = NULL;
529 }
530 }
47dd7a54
GC
531}
532
533static void free_dma_desc_resources(struct stmmac_priv *priv)
534{
535 /* Release the DMA TX/RX socket buffers */
536 dma_free_rx_skbufs(priv);
537 dma_free_tx_skbufs(priv);
538
539 /* Free the region of consistent memory previously allocated for
540 * the DMA */
541 dma_free_coherent(priv->device,
542 priv->dma_tx_size * sizeof(struct dma_desc),
543 priv->dma_tx, priv->dma_tx_phy);
544 dma_free_coherent(priv->device,
545 priv->dma_rx_size * sizeof(struct dma_desc),
546 priv->dma_rx, priv->dma_rx_phy);
547 kfree(priv->rx_skbuff_dma);
548 kfree(priv->rx_skbuff);
549 kfree(priv->tx_skbuff);
47dd7a54
GC
550}
551
47dd7a54
GC
552/**
553 * stmmac_dma_operation_mode - HW DMA operation mode
554 * @priv : pointer to the private device structure.
555 * Description: it sets the DMA operation mode: tx/rx DMA thresholds
ebbb293f 556 * or Store-And-Forward capability.
47dd7a54
GC
557 */
558static void stmmac_dma_operation_mode(struct stmmac_priv *priv)
559{
9dfeb4d9 560 if (likely((priv->plat->tx_coe) && (!priv->no_csum_insertion))) {
ebbb293f
GC
561 /* In case of GMAC, SF mode has to be enabled
562 * to perform the TX COE. This depends on:
563 * 1) TX COE if actually supported
564 * 2) There is no bugged Jumbo frame support
565 * that needs to not insert csum in the TDES.
566 */
567 priv->hw->dma->dma_mode(priv->ioaddr,
568 SF_DMA_MODE, SF_DMA_MODE);
569 tc = SF_DMA_MODE;
570 } else
571 priv->hw->dma->dma_mode(priv->ioaddr, tc, SF_DMA_MODE);
47dd7a54
GC
572}
573
47dd7a54
GC
574/**
575 * stmmac_tx:
576 * @priv: private driver structure
577 * Description: it reclaims resources after transmission completes.
578 */
579static void stmmac_tx(struct stmmac_priv *priv)
580{
581 unsigned int txsize = priv->dma_tx_size;
47dd7a54
GC
582
583 while (priv->dirty_tx != priv->cur_tx) {
584 int last;
585 unsigned int entry = priv->dirty_tx % txsize;
586 struct sk_buff *skb = priv->tx_skbuff[entry];
587 struct dma_desc *p = priv->dma_tx + entry;
588
589 /* Check if the descriptor is owned by the DMA. */
db98a0b0 590 if (priv->hw->desc->get_tx_owner(p))
47dd7a54
GC
591 break;
592
593 /* Verify tx error by looking at the last segment */
db98a0b0 594 last = priv->hw->desc->get_tx_ls(p);
47dd7a54
GC
595 if (likely(last)) {
596 int tx_error =
db98a0b0
GC
597 priv->hw->desc->tx_status(&priv->dev->stats,
598 &priv->xstats, p,
ad01b7d4 599 priv->ioaddr);
47dd7a54
GC
600 if (likely(tx_error == 0)) {
601 priv->dev->stats.tx_packets++;
602 priv->xstats.tx_pkt_n++;
603 } else
604 priv->dev->stats.tx_errors++;
605 }
606 TX_DBG("%s: curr %d, dirty %d\n", __func__,
607 priv->cur_tx, priv->dirty_tx);
608
609 if (likely(p->des2))
610 dma_unmap_single(priv->device, p->des2,
db98a0b0 611 priv->hw->desc->get_tx_len(p),
47dd7a54
GC
612 DMA_TO_DEVICE);
613 if (unlikely(p->des3))
614 p->des3 = 0;
615
616 if (likely(skb != NULL)) {
617 /*
618 * If there's room in the queue (limit it to size)
619 * we add this skb back into the pool,
620 * if it's the right size.
621 */
622 if ((skb_queue_len(&priv->rx_recycle) <
623 priv->dma_rx_size) &&
624 skb_recycle_check(skb, priv->dma_buf_sz))
625 __skb_queue_head(&priv->rx_recycle, skb);
626 else
627 dev_kfree_skb(skb);
628
629 priv->tx_skbuff[entry] = NULL;
630 }
631
db98a0b0 632 priv->hw->desc->release_tx_desc(p);
47dd7a54
GC
633
634 entry = (++priv->dirty_tx) % txsize;
635 }
636 if (unlikely(netif_queue_stopped(priv->dev) &&
637 stmmac_tx_avail(priv) > STMMAC_TX_THRESH(priv))) {
638 netif_tx_lock(priv->dev);
639 if (netif_queue_stopped(priv->dev) &&
640 stmmac_tx_avail(priv) > STMMAC_TX_THRESH(priv)) {
641 TX_DBG("%s: restart transmit\n", __func__);
642 netif_wake_queue(priv->dev);
643 }
644 netif_tx_unlock(priv->dev);
645 }
47dd7a54
GC
646}
647
648static inline void stmmac_enable_irq(struct stmmac_priv *priv)
649{
73cfe264
GC
650#ifdef CONFIG_STMMAC_TIMER
651 if (likely(priv->tm->enable))
652 priv->tm->timer_start(tmrate);
653 else
47dd7a54 654#endif
ad01b7d4 655 priv->hw->dma->enable_dma_irq(priv->ioaddr);
47dd7a54
GC
656}
657
658static inline void stmmac_disable_irq(struct stmmac_priv *priv)
659{
73cfe264
GC
660#ifdef CONFIG_STMMAC_TIMER
661 if (likely(priv->tm->enable))
662 priv->tm->timer_stop();
663 else
47dd7a54 664#endif
ad01b7d4 665 priv->hw->dma->disable_dma_irq(priv->ioaddr);
47dd7a54
GC
666}
667
668static int stmmac_has_work(struct stmmac_priv *priv)
669{
670 unsigned int has_work = 0;
671 int rxret, tx_work = 0;
672
db98a0b0 673 rxret = priv->hw->desc->get_rx_owner(priv->dma_rx +
47dd7a54
GC
674 (priv->cur_rx % priv->dma_rx_size));
675
676 if (priv->dirty_tx != priv->cur_tx)
677 tx_work = 1;
678
679 if (likely(!rxret || tx_work))
680 has_work = 1;
681
682 return has_work;
683}
684
685static inline void _stmmac_schedule(struct stmmac_priv *priv)
686{
687 if (likely(stmmac_has_work(priv))) {
688 stmmac_disable_irq(priv);
689 napi_schedule(&priv->napi);
690 }
691}
692
693#ifdef CONFIG_STMMAC_TIMER
694void stmmac_schedule(struct net_device *dev)
695{
696 struct stmmac_priv *priv = netdev_priv(dev);
697
698 priv->xstats.sched_timer_n++;
699
700 _stmmac_schedule(priv);
47dd7a54
GC
701}
702
703static void stmmac_no_timer_started(unsigned int x)
704{;
705};
706
707static void stmmac_no_timer_stopped(void)
708{;
709};
710#endif
711
712/**
713 * stmmac_tx_err:
714 * @priv: pointer to the private device structure
715 * Description: it cleans the descriptors and restarts the transmission
716 * in case of errors.
717 */
718static void stmmac_tx_err(struct stmmac_priv *priv)
719{
ad01b7d4 720
47dd7a54
GC
721 netif_stop_queue(priv->dev);
722
ad01b7d4 723 priv->hw->dma->stop_tx(priv->ioaddr);
47dd7a54 724 dma_free_tx_skbufs(priv);
db98a0b0 725 priv->hw->desc->init_tx_desc(priv->dma_tx, priv->dma_tx_size);
47dd7a54
GC
726 priv->dirty_tx = 0;
727 priv->cur_tx = 0;
ad01b7d4 728 priv->hw->dma->start_tx(priv->ioaddr);
47dd7a54
GC
729
730 priv->dev->stats.tx_errors++;
731 netif_wake_queue(priv->dev);
47dd7a54
GC
732}
733
47dd7a54 734
aec7ff27
GC
735static void stmmac_dma_interrupt(struct stmmac_priv *priv)
736{
aec7ff27
GC
737 int status;
738
ad01b7d4 739 status = priv->hw->dma->dma_interrupt(priv->ioaddr, &priv->xstats);
aec7ff27
GC
740 if (likely(status == handle_tx_rx))
741 _stmmac_schedule(priv);
742
743 else if (unlikely(status == tx_hard_error_bump_tc)) {
744 /* Try to bump up the dma threshold on this failure */
745 if (unlikely(tc != SF_DMA_MODE) && (tc <= 256)) {
746 tc += 64;
ad01b7d4 747 priv->hw->dma->dma_mode(priv->ioaddr, tc, SF_DMA_MODE);
aec7ff27 748 priv->xstats.threshold = tc;
47dd7a54 749 }
aec7ff27
GC
750 } else if (unlikely(status == tx_hard_error))
751 stmmac_tx_err(priv);
47dd7a54
GC
752}
753
754/**
755 * stmmac_open - open entry point of the driver
756 * @dev : pointer to the device structure.
757 * Description:
758 * This function is the open entry point of the driver.
759 * Return value:
760 * 0 on success and an appropriate (-)ve integer as defined in errno.h
761 * file on failure.
762 */
763static int stmmac_open(struct net_device *dev)
764{
765 struct stmmac_priv *priv = netdev_priv(dev);
47dd7a54
GC
766 int ret;
767
768 /* Check that the MAC address is valid. If its not, refuse
769 * to bring the device up. The user must specify an
770 * address using the following linux command:
771 * ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx */
772 if (!is_valid_ether_addr(dev->dev_addr)) {
773 random_ether_addr(dev->dev_addr);
774 pr_warning("%s: generated random MAC address %pM\n", dev->name,
775 dev->dev_addr);
776 }
777
778 stmmac_verify_args();
779
47dd7a54 780#ifdef CONFIG_STMMAC_TIMER
73cfe264 781 priv->tm = kzalloc(sizeof(struct stmmac_timer *), GFP_KERNEL);
47dd7a54 782 if (unlikely(priv->tm == NULL)) {
2381a55c 783 pr_err("%s: ERROR: timer memory alloc failed\n", __func__);
47dd7a54
GC
784 return -ENOMEM;
785 }
786 priv->tm->freq = tmrate;
787
73cfe264
GC
788 /* Test if the external timer can be actually used.
789 * In case of failure continue without timer. */
47dd7a54 790 if (unlikely((stmmac_open_ext_timer(dev, priv->tm)) < 0)) {
73cfe264 791 pr_warning("stmmaceth: cannot attach the external timer.\n");
47dd7a54
GC
792 priv->tm->freq = 0;
793 priv->tm->timer_start = stmmac_no_timer_started;
794 priv->tm->timer_stop = stmmac_no_timer_stopped;
73cfe264
GC
795 } else
796 priv->tm->enable = 1;
47dd7a54 797#endif
f66ffe28
GC
798 ret = stmmac_init_phy(dev);
799 if (unlikely(ret)) {
800 pr_err("%s: Cannot attach to PHY (error: %d)\n", __func__, ret);
801 goto open_error;
802 }
47dd7a54
GC
803
804 /* Create and initialize the TX/RX descriptors chains. */
805 priv->dma_tx_size = STMMAC_ALIGN(dma_txsize);
806 priv->dma_rx_size = STMMAC_ALIGN(dma_rxsize);
807 priv->dma_buf_sz = STMMAC_ALIGN(buf_sz);
808 init_dma_desc_rings(dev);
809
810 /* DMA initialization and SW reset */
f66ffe28
GC
811 ret = priv->hw->dma->init(priv->ioaddr, priv->plat->pbl,
812 priv->dma_tx_phy, priv->dma_rx_phy);
813 if (ret < 0) {
47dd7a54 814 pr_err("%s: DMA initialization failed\n", __func__);
f66ffe28 815 goto open_error;
47dd7a54
GC
816 }
817
818 /* Copy the MAC addr into the HW */
ad01b7d4 819 priv->hw->mac->set_umac_addr(priv->ioaddr, dev->dev_addr, 0);
ca5f12c1 820 /* If required, perform hw setup of the bus. */
9dfeb4d9
GC
821 if (priv->plat->bus_setup)
822 priv->plat->bus_setup(priv->ioaddr);
47dd7a54 823 /* Initialize the MAC Core */
ad01b7d4 824 priv->hw->mac->core_init(priv->ioaddr);
47dd7a54 825
ebbb293f
GC
826 priv->rx_coe = priv->hw->mac->rx_coe(priv->ioaddr);
827 if (priv->rx_coe)
828 pr_info("stmmac: Rx Checksum Offload Engine supported\n");
9dfeb4d9 829 if (priv->plat->tx_coe)
ebbb293f 830 pr_info("\tTX Checksum insertion supported\n");
5e982f3b 831 netdev_update_features(dev);
ebbb293f 832
47dd7a54 833 /* Initialise the MMC (if present) to disable all interrupts. */
ad01b7d4
GC
834 writel(0xffffffff, priv->ioaddr + MMC_HIGH_INTR_MASK);
835 writel(0xffffffff, priv->ioaddr + MMC_LOW_INTR_MASK);
47dd7a54 836
f66ffe28
GC
837 /* Request the IRQ lines */
838 ret = request_irq(dev->irq, stmmac_interrupt,
839 IRQF_SHARED, dev->name, dev);
840 if (unlikely(ret < 0)) {
841 pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
842 __func__, dev->irq, ret);
843 goto open_error;
844 }
845
47dd7a54 846 /* Enable the MAC Rx/Tx */
19449bfc 847 stmmac_enable_mac(priv->ioaddr);
47dd7a54
GC
848
849 /* Set the HW DMA mode and the COE */
850 stmmac_dma_operation_mode(priv);
851
852 /* Extra statistics */
853 memset(&priv->xstats, 0, sizeof(struct stmmac_extra_stats));
854 priv->xstats.threshold = tc;
855
856 /* Start the ball rolling... */
857 DBG(probe, DEBUG, "%s: DMA RX/TX processes started...\n", dev->name);
ad01b7d4
GC
858 priv->hw->dma->start_tx(priv->ioaddr);
859 priv->hw->dma->start_rx(priv->ioaddr);
47dd7a54
GC
860
861#ifdef CONFIG_STMMAC_TIMER
862 priv->tm->timer_start(tmrate);
863#endif
864 /* Dump DMA/MAC registers */
865 if (netif_msg_hw(priv)) {
ad01b7d4
GC
866 priv->hw->mac->dump_regs(priv->ioaddr);
867 priv->hw->dma->dump_regs(priv->ioaddr);
47dd7a54
GC
868 }
869
870 if (priv->phydev)
871 phy_start(priv->phydev);
872
873 napi_enable(&priv->napi);
874 skb_queue_head_init(&priv->rx_recycle);
875 netif_start_queue(dev);
f66ffe28 876
47dd7a54 877 return 0;
f66ffe28
GC
878
879open_error:
880#ifdef CONFIG_STMMAC_TIMER
881 kfree(priv->tm);
882#endif
883 if (priv->phydev)
884 phy_disconnect(priv->phydev);
885
886 return ret;
47dd7a54
GC
887}
888
889/**
890 * stmmac_release - close entry point of the driver
891 * @dev : device pointer.
892 * Description:
893 * This is the stop entry point of the driver.
894 */
895static int stmmac_release(struct net_device *dev)
896{
897 struct stmmac_priv *priv = netdev_priv(dev);
898
899 /* Stop and disconnect the PHY */
900 if (priv->phydev) {
901 phy_stop(priv->phydev);
902 phy_disconnect(priv->phydev);
903 priv->phydev = NULL;
904 }
905
906 netif_stop_queue(dev);
907
908#ifdef CONFIG_STMMAC_TIMER
909 /* Stop and release the timer */
910 stmmac_close_ext_timer();
911 if (priv->tm != NULL)
912 kfree(priv->tm);
913#endif
914 napi_disable(&priv->napi);
915 skb_queue_purge(&priv->rx_recycle);
916
917 /* Free the IRQ lines */
918 free_irq(dev->irq, dev);
919
920 /* Stop TX/RX DMA and clear the descriptors */
ad01b7d4
GC
921 priv->hw->dma->stop_tx(priv->ioaddr);
922 priv->hw->dma->stop_rx(priv->ioaddr);
47dd7a54
GC
923
924 /* Release and free the Rx/Tx resources */
925 free_dma_desc_resources(priv);
926
19449bfc 927 /* Disable the MAC Rx/Tx */
928 stmmac_disable_mac(priv->ioaddr);
47dd7a54
GC
929
930 netif_carrier_off(dev);
931
932 return 0;
933}
934
47dd7a54
GC
935static unsigned int stmmac_handle_jumbo_frames(struct sk_buff *skb,
936 struct net_device *dev,
937 int csum_insertion)
938{
939 struct stmmac_priv *priv = netdev_priv(dev);
940 unsigned int nopaged_len = skb_headlen(skb);
941 unsigned int txsize = priv->dma_tx_size;
942 unsigned int entry = priv->cur_tx % txsize;
943 struct dma_desc *desc = priv->dma_tx + entry;
944
945 if (nopaged_len > BUF_SIZE_8KiB) {
946
947 int buf2_size = nopaged_len - BUF_SIZE_8KiB;
948
949 desc->des2 = dma_map_single(priv->device, skb->data,
950 BUF_SIZE_8KiB, DMA_TO_DEVICE);
951 desc->des3 = desc->des2 + BUF_SIZE_4KiB;
db98a0b0
GC
952 priv->hw->desc->prepare_tx_desc(desc, 1, BUF_SIZE_8KiB,
953 csum_insertion);
47dd7a54
GC
954
955 entry = (++priv->cur_tx) % txsize;
956 desc = priv->dma_tx + entry;
957
958 desc->des2 = dma_map_single(priv->device,
959 skb->data + BUF_SIZE_8KiB,
960 buf2_size, DMA_TO_DEVICE);
961 desc->des3 = desc->des2 + BUF_SIZE_4KiB;
db98a0b0
GC
962 priv->hw->desc->prepare_tx_desc(desc, 0, buf2_size,
963 csum_insertion);
964 priv->hw->desc->set_tx_owner(desc);
47dd7a54
GC
965 priv->tx_skbuff[entry] = NULL;
966 } else {
967 desc->des2 = dma_map_single(priv->device, skb->data,
968 nopaged_len, DMA_TO_DEVICE);
969 desc->des3 = desc->des2 + BUF_SIZE_4KiB;
db98a0b0
GC
970 priv->hw->desc->prepare_tx_desc(desc, 1, nopaged_len,
971 csum_insertion);
47dd7a54
GC
972 }
973 return entry;
974}
975
976/**
977 * stmmac_xmit:
978 * @skb : the socket buffer
979 * @dev : device pointer
980 * Description : Tx entry point of the driver.
981 */
982static netdev_tx_t stmmac_xmit(struct sk_buff *skb, struct net_device *dev)
983{
984 struct stmmac_priv *priv = netdev_priv(dev);
985 unsigned int txsize = priv->dma_tx_size;
986 unsigned int entry;
987 int i, csum_insertion = 0;
988 int nfrags = skb_shinfo(skb)->nr_frags;
989 struct dma_desc *desc, *first;
990
991 if (unlikely(stmmac_tx_avail(priv) < nfrags + 1)) {
992 if (!netif_queue_stopped(dev)) {
993 netif_stop_queue(dev);
994 /* This is a hard error, log it. */
995 pr_err("%s: BUG! Tx Ring full when queue awake\n",
996 __func__);
997 }
998 return NETDEV_TX_BUSY;
999 }
1000
1001 entry = priv->cur_tx % txsize;
1002
1003#ifdef STMMAC_XMIT_DEBUG
1004 if ((skb->len > ETH_FRAME_LEN) || nfrags)
1005 pr_info("stmmac xmit:\n"
1006 "\tskb addr %p - len: %d - nopaged_len: %d\n"
1007 "\tn_frags: %d - ip_summed: %d - %s gso\n",
1008 skb, skb->len, skb_headlen(skb), nfrags, skb->ip_summed,
1009 !skb_is_gso(skb) ? "isn't" : "is");
1010#endif
1011
5e982f3b 1012 csum_insertion = (skb->ip_summed == CHECKSUM_PARTIAL);
47dd7a54
GC
1013
1014 desc = priv->dma_tx + entry;
1015 first = desc;
1016
1017#ifdef STMMAC_XMIT_DEBUG
1018 if ((nfrags > 0) || (skb->len > ETH_FRAME_LEN))
1019 pr_debug("stmmac xmit: skb len: %d, nopaged_len: %d,\n"
1020 "\t\tn_frags: %d, ip_summed: %d\n",
1021 skb->len, skb_headlen(skb), nfrags, skb->ip_summed);
1022#endif
1023 priv->tx_skbuff[entry] = skb;
1024 if (unlikely(skb->len >= BUF_SIZE_4KiB)) {
1025 entry = stmmac_handle_jumbo_frames(skb, dev, csum_insertion);
1026 desc = priv->dma_tx + entry;
1027 } else {
1028 unsigned int nopaged_len = skb_headlen(skb);
1029 desc->des2 = dma_map_single(priv->device, skb->data,
1030 nopaged_len, DMA_TO_DEVICE);
db98a0b0
GC
1031 priv->hw->desc->prepare_tx_desc(desc, 1, nopaged_len,
1032 csum_insertion);
47dd7a54
GC
1033 }
1034
1035 for (i = 0; i < nfrags; i++) {
1036 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1037 int len = frag->size;
1038
1039 entry = (++priv->cur_tx) % txsize;
1040 desc = priv->dma_tx + entry;
1041
1042 TX_DBG("\t[entry %d] segment len: %d\n", entry, len);
1043 desc->des2 = dma_map_page(priv->device, frag->page,
1044 frag->page_offset,
1045 len, DMA_TO_DEVICE);
1046 priv->tx_skbuff[entry] = NULL;
db98a0b0 1047 priv->hw->desc->prepare_tx_desc(desc, 0, len, csum_insertion);
eb0dc4bb 1048 wmb();
db98a0b0 1049 priv->hw->desc->set_tx_owner(desc);
47dd7a54
GC
1050 }
1051
1052 /* Interrupt on completition only for the latest segment */
db98a0b0 1053 priv->hw->desc->close_tx_desc(desc);
73cfe264 1054
47dd7a54 1055#ifdef CONFIG_STMMAC_TIMER
73cfe264
GC
1056 /* Clean IC while using timer */
1057 if (likely(priv->tm->enable))
db98a0b0 1058 priv->hw->desc->clear_tx_ic(desc);
47dd7a54 1059#endif
eb0dc4bb
SH
1060
1061 wmb();
1062
47dd7a54 1063 /* To avoid raise condition */
db98a0b0 1064 priv->hw->desc->set_tx_owner(first);
47dd7a54
GC
1065
1066 priv->cur_tx++;
1067
1068#ifdef STMMAC_XMIT_DEBUG
1069 if (netif_msg_pktdata(priv)) {
1070 pr_info("stmmac xmit: current=%d, dirty=%d, entry=%d, "
1071 "first=%p, nfrags=%d\n",
1072 (priv->cur_tx % txsize), (priv->dirty_tx % txsize),
1073 entry, first, nfrags);
1074 display_ring(priv->dma_tx, txsize);
1075 pr_info(">>> frame to be transmitted: ");
1076 print_pkt(skb->data, skb->len);
1077 }
1078#endif
1079 if (unlikely(stmmac_tx_avail(priv) <= (MAX_SKB_FRAGS + 1))) {
1080 TX_DBG("%s: stop transmitted packets\n", __func__);
1081 netif_stop_queue(dev);
1082 }
1083
1084 dev->stats.tx_bytes += skb->len;
1085
3e82ce12
RC
1086 skb_tx_timestamp(skb);
1087
52f64fae
RC
1088 priv->hw->dma->enable_dma_transmission(priv->ioaddr);
1089
47dd7a54
GC
1090 return NETDEV_TX_OK;
1091}
1092
1093static inline void stmmac_rx_refill(struct stmmac_priv *priv)
1094{
1095 unsigned int rxsize = priv->dma_rx_size;
1096 int bfsize = priv->dma_buf_sz;
1097 struct dma_desc *p = priv->dma_rx;
1098
1099 for (; priv->cur_rx - priv->dirty_rx > 0; priv->dirty_rx++) {
1100 unsigned int entry = priv->dirty_rx % rxsize;
1101 if (likely(priv->rx_skbuff[entry] == NULL)) {
1102 struct sk_buff *skb;
1103
1104 skb = __skb_dequeue(&priv->rx_recycle);
1105 if (skb == NULL)
1106 skb = netdev_alloc_skb_ip_align(priv->dev,
1107 bfsize);
1108
1109 if (unlikely(skb == NULL))
1110 break;
1111
1112 priv->rx_skbuff[entry] = skb;
1113 priv->rx_skbuff_dma[entry] =
1114 dma_map_single(priv->device, skb->data, bfsize,
1115 DMA_FROM_DEVICE);
1116
1117 (p + entry)->des2 = priv->rx_skbuff_dma[entry];
9dfeb4d9 1118 if (unlikely(priv->plat->has_gmac)) {
47dd7a54
GC
1119 if (bfsize >= BUF_SIZE_8KiB)
1120 (p + entry)->des3 =
1121 (p + entry)->des2 + BUF_SIZE_8KiB;
1122 }
1123 RX_DBG(KERN_INFO "\trefill entry #%d\n", entry);
1124 }
eb0dc4bb 1125 wmb();
db98a0b0 1126 priv->hw->desc->set_rx_owner(p + entry);
47dd7a54 1127 }
47dd7a54
GC
1128}
1129
1130static int stmmac_rx(struct stmmac_priv *priv, int limit)
1131{
1132 unsigned int rxsize = priv->dma_rx_size;
1133 unsigned int entry = priv->cur_rx % rxsize;
1134 unsigned int next_entry;
1135 unsigned int count = 0;
1136 struct dma_desc *p = priv->dma_rx + entry;
1137 struct dma_desc *p_next;
1138
1139#ifdef STMMAC_RX_DEBUG
1140 if (netif_msg_hw(priv)) {
1141 pr_debug(">>> stmmac_rx: descriptor ring:\n");
1142 display_ring(priv->dma_rx, rxsize);
1143 }
1144#endif
1145 count = 0;
db98a0b0 1146 while (!priv->hw->desc->get_rx_owner(p)) {
47dd7a54
GC
1147 int status;
1148
1149 if (count >= limit)
1150 break;
1151
1152 count++;
1153
1154 next_entry = (++priv->cur_rx) % rxsize;
1155 p_next = priv->dma_rx + next_entry;
1156 prefetch(p_next);
1157
1158 /* read the status of the incoming frame */
db98a0b0
GC
1159 status = (priv->hw->desc->rx_status(&priv->dev->stats,
1160 &priv->xstats, p));
47dd7a54
GC
1161 if (unlikely(status == discard_frame))
1162 priv->dev->stats.rx_errors++;
1163 else {
1164 struct sk_buff *skb;
3eeb2997 1165 int frame_len;
47dd7a54 1166
3eeb2997
GC
1167 frame_len = priv->hw->desc->get_rx_frame_len(p);
1168 /* ACS is set; GMAC core strips PAD/FCS for IEEE 802.3
1169 * Type frames (LLC/LLC-SNAP) */
1170 if (unlikely(status != llc_snap))
1171 frame_len -= ETH_FCS_LEN;
47dd7a54
GC
1172#ifdef STMMAC_RX_DEBUG
1173 if (frame_len > ETH_FRAME_LEN)
1174 pr_debug("\tRX frame size %d, COE status: %d\n",
1175 frame_len, status);
1176
1177 if (netif_msg_hw(priv))
1178 pr_debug("\tdesc: %p [entry %d] buff=0x%x\n",
1179 p, entry, p->des2);
1180#endif
1181 skb = priv->rx_skbuff[entry];
1182 if (unlikely(!skb)) {
1183 pr_err("%s: Inconsistent Rx descriptor chain\n",
1184 priv->dev->name);
1185 priv->dev->stats.rx_dropped++;
1186 break;
1187 }
1188 prefetch(skb->data - NET_IP_ALIGN);
1189 priv->rx_skbuff[entry] = NULL;
1190
1191 skb_put(skb, frame_len);
1192 dma_unmap_single(priv->device,
1193 priv->rx_skbuff_dma[entry],
1194 priv->dma_buf_sz, DMA_FROM_DEVICE);
1195#ifdef STMMAC_RX_DEBUG
1196 if (netif_msg_pktdata(priv)) {
1197 pr_info(" frame received (%dbytes)", frame_len);
1198 print_pkt(skb->data, frame_len);
1199 }
1200#endif
1201 skb->protocol = eth_type_trans(skb, priv->dev);
1202
1203 if (unlikely(status == csum_none)) {
1204 /* always for the old mac 10/100 */
bc8acf2c 1205 skb_checksum_none_assert(skb);
47dd7a54
GC
1206 netif_receive_skb(skb);
1207 } else {
1208 skb->ip_summed = CHECKSUM_UNNECESSARY;
1209 napi_gro_receive(&priv->napi, skb);
1210 }
1211
1212 priv->dev->stats.rx_packets++;
1213 priv->dev->stats.rx_bytes += frame_len;
47dd7a54
GC
1214 }
1215 entry = next_entry;
1216 p = p_next; /* use prefetched values */
1217 }
1218
1219 stmmac_rx_refill(priv);
1220
1221 priv->xstats.rx_pkt_n += count;
1222
1223 return count;
1224}
1225
1226/**
1227 * stmmac_poll - stmmac poll method (NAPI)
1228 * @napi : pointer to the napi structure.
1229 * @budget : maximum number of packets that the current CPU can receive from
1230 * all interfaces.
1231 * Description :
1232 * This function implements the the reception process.
1233 * Also it runs the TX completion thread
1234 */
1235static int stmmac_poll(struct napi_struct *napi, int budget)
1236{
1237 struct stmmac_priv *priv = container_of(napi, struct stmmac_priv, napi);
1238 int work_done = 0;
1239
1240 priv->xstats.poll_n++;
1241 stmmac_tx(priv);
1242 work_done = stmmac_rx(priv, budget);
1243
1244 if (work_done < budget) {
1245 napi_complete(napi);
1246 stmmac_enable_irq(priv);
1247 }
1248 return work_done;
1249}
1250
1251/**
1252 * stmmac_tx_timeout
1253 * @dev : Pointer to net device structure
1254 * Description: this function is called when a packet transmission fails to
1255 * complete within a reasonable tmrate. The driver will mark the error in the
1256 * netdev structure and arrange for the device to be reset to a sane state
1257 * in order to transmit a new packet.
1258 */
1259static void stmmac_tx_timeout(struct net_device *dev)
1260{
1261 struct stmmac_priv *priv = netdev_priv(dev);
1262
1263 /* Clear Tx resources and restart transmitting again */
1264 stmmac_tx_err(priv);
47dd7a54
GC
1265}
1266
1267/* Configuration changes (passed on by ifconfig) */
1268static int stmmac_config(struct net_device *dev, struct ifmap *map)
1269{
1270 if (dev->flags & IFF_UP) /* can't act on a running interface */
1271 return -EBUSY;
1272
1273 /* Don't allow changing the I/O address */
1274 if (map->base_addr != dev->base_addr) {
1275 pr_warning("%s: can't change I/O address\n", dev->name);
1276 return -EOPNOTSUPP;
1277 }
1278
1279 /* Don't allow changing the IRQ */
1280 if (map->irq != dev->irq) {
1281 pr_warning("%s: can't change IRQ number %d\n",
1282 dev->name, dev->irq);
1283 return -EOPNOTSUPP;
1284 }
1285
1286 /* ignore other fields */
1287 return 0;
1288}
1289
1290/**
1291 * stmmac_multicast_list - entry point for multicast addressing
1292 * @dev : pointer to the device structure
1293 * Description:
1294 * This function is a driver entry point which gets called by the kernel
1295 * whenever multicast addresses must be enabled/disabled.
1296 * Return value:
1297 * void.
1298 */
1299static void stmmac_multicast_list(struct net_device *dev)
1300{
1301 struct stmmac_priv *priv = netdev_priv(dev);
1302
1303 spin_lock(&priv->lock);
db98a0b0 1304 priv->hw->mac->set_filter(dev);
47dd7a54 1305 spin_unlock(&priv->lock);
47dd7a54
GC
1306}
1307
1308/**
1309 * stmmac_change_mtu - entry point to change MTU size for the device.
1310 * @dev : device pointer.
1311 * @new_mtu : the new MTU size for the device.
1312 * Description: the Maximum Transfer Unit (MTU) is used by the network layer
1313 * to drive packet transmission. Ethernet has an MTU of 1500 octets
1314 * (ETH_DATA_LEN). This value can be changed with ifconfig.
1315 * Return value:
1316 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1317 * file on failure.
1318 */
1319static int stmmac_change_mtu(struct net_device *dev, int new_mtu)
1320{
1321 struct stmmac_priv *priv = netdev_priv(dev);
1322 int max_mtu;
1323
1324 if (netif_running(dev)) {
1325 pr_err("%s: must be stopped to change its MTU\n", dev->name);
1326 return -EBUSY;
1327 }
1328
9dfeb4d9 1329 if (priv->plat->has_gmac)
47dd7a54
GC
1330 max_mtu = JUMBO_LEN;
1331 else
1332 max_mtu = ETH_DATA_LEN;
1333
1334 if ((new_mtu < 46) || (new_mtu > max_mtu)) {
1335 pr_err("%s: invalid MTU, max MTU is: %d\n", dev->name, max_mtu);
1336 return -EINVAL;
1337 }
1338
5e982f3b
MM
1339 dev->mtu = new_mtu;
1340 netdev_update_features(dev);
1341
1342 return 0;
1343}
1344
1345static u32 stmmac_fix_features(struct net_device *dev, u32 features)
1346{
1347 struct stmmac_priv *priv = netdev_priv(dev);
1348
1349 if (!priv->rx_coe)
1350 features &= ~NETIF_F_RXCSUM;
1351 if (!priv->plat->tx_coe)
1352 features &= ~NETIF_F_ALL_CSUM;
1353
ebbb293f
GC
1354 /* Some GMAC devices have a bugged Jumbo frame support that
1355 * needs to have the Tx COE disabled for oversized frames
1356 * (due to limited buffer sizes). In this case we disable
1357 * the TX csum insertionin the TDES and not use SF. */
5e982f3b
MM
1358 if (priv->plat->bugged_jumbo && (dev->mtu > ETH_DATA_LEN))
1359 features &= ~NETIF_F_ALL_CSUM;
ebbb293f 1360
5e982f3b 1361 return features;
47dd7a54
GC
1362}
1363
1364static irqreturn_t stmmac_interrupt(int irq, void *dev_id)
1365{
1366 struct net_device *dev = (struct net_device *)dev_id;
1367 struct stmmac_priv *priv = netdev_priv(dev);
1368
1369 if (unlikely(!dev)) {
1370 pr_err("%s: invalid dev pointer\n", __func__);
1371 return IRQ_NONE;
1372 }
1373
9dfeb4d9 1374 if (priv->plat->has_gmac)
47dd7a54 1375 /* To handle GMAC own interrupts */
ad01b7d4 1376 priv->hw->mac->host_irq_status((void __iomem *) dev->base_addr);
aec7ff27
GC
1377
1378 stmmac_dma_interrupt(priv);
47dd7a54
GC
1379
1380 return IRQ_HANDLED;
1381}
1382
1383#ifdef CONFIG_NET_POLL_CONTROLLER
1384/* Polling receive - used by NETCONSOLE and other diagnostic tools
1385 * to allow network I/O with interrupts disabled. */
1386static void stmmac_poll_controller(struct net_device *dev)
1387{
1388 disable_irq(dev->irq);
1389 stmmac_interrupt(dev->irq, dev);
1390 enable_irq(dev->irq);
1391}
1392#endif
1393
1394/**
1395 * stmmac_ioctl - Entry point for the Ioctl
1396 * @dev: Device pointer.
1397 * @rq: An IOCTL specefic structure, that can contain a pointer to
1398 * a proprietary structure used to pass information to the driver.
1399 * @cmd: IOCTL command
1400 * Description:
1401 * Currently there are no special functionality supported in IOCTL, just the
1402 * phy_mii_ioctl(...) can be invoked.
1403 */
1404static int stmmac_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1405{
1406 struct stmmac_priv *priv = netdev_priv(dev);
28b04113 1407 int ret;
47dd7a54
GC
1408
1409 if (!netif_running(dev))
1410 return -EINVAL;
1411
28b04113
RC
1412 if (!priv->phydev)
1413 return -EINVAL;
1414
1415 spin_lock(&priv->lock);
1416 ret = phy_mii_ioctl(priv->phydev, rq, cmd);
1417 spin_unlock(&priv->lock);
1418
47dd7a54
GC
1419 return ret;
1420}
1421
1422#ifdef STMMAC_VLAN_TAG_USED
1423static void stmmac_vlan_rx_register(struct net_device *dev,
1424 struct vlan_group *grp)
1425{
1426 struct stmmac_priv *priv = netdev_priv(dev);
1427
1428 DBG(probe, INFO, "%s: Setting vlgrp to %p\n", dev->name, grp);
1429
1430 spin_lock(&priv->lock);
1431 priv->vlgrp = grp;
1432 spin_unlock(&priv->lock);
47dd7a54
GC
1433}
1434#endif
1435
1436static const struct net_device_ops stmmac_netdev_ops = {
1437 .ndo_open = stmmac_open,
1438 .ndo_start_xmit = stmmac_xmit,
1439 .ndo_stop = stmmac_release,
1440 .ndo_change_mtu = stmmac_change_mtu,
5e982f3b 1441 .ndo_fix_features = stmmac_fix_features,
47dd7a54
GC
1442 .ndo_set_multicast_list = stmmac_multicast_list,
1443 .ndo_tx_timeout = stmmac_tx_timeout,
1444 .ndo_do_ioctl = stmmac_ioctl,
1445 .ndo_set_config = stmmac_config,
1446#ifdef STMMAC_VLAN_TAG_USED
1447 .ndo_vlan_rx_register = stmmac_vlan_rx_register,
1448#endif
1449#ifdef CONFIG_NET_POLL_CONTROLLER
1450 .ndo_poll_controller = stmmac_poll_controller,
1451#endif
1452 .ndo_set_mac_address = eth_mac_addr,
1453};
1454
1455/**
1456 * stmmac_probe - Initialization of the adapter .
1457 * @dev : device pointer
1458 * Description: The function initializes the network device structure for
1459 * the STMMAC driver. It also calls the low level routines
1460 * in order to init the HW (i.e. the DMA engine)
1461 */
1462static int stmmac_probe(struct net_device *dev)
1463{
1464 int ret = 0;
1465 struct stmmac_priv *priv = netdev_priv(dev);
1466
1467 ether_setup(dev);
1468
1469 dev->netdev_ops = &stmmac_netdev_ops;
1470 stmmac_set_ethtool_ops(dev);
1471
5e982f3b
MM
1472 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
1473 dev->features |= dev->hw_features | NETIF_F_HIGHDMA;
47dd7a54
GC
1474 dev->watchdog_timeo = msecs_to_jiffies(watchdog);
1475#ifdef STMMAC_VLAN_TAG_USED
1476 /* Both mac100 and gmac support receive VLAN tag detection */
1477 dev->features |= NETIF_F_HW_VLAN_RX;
1478#endif
1479 priv->msg_enable = netif_msg_init(debug, default_msg_level);
1480
47dd7a54
GC
1481 if (flow_ctrl)
1482 priv->flow_ctrl = FLOW_AUTO; /* RX/TX pause on */
1483
1484 priv->pause = pause;
1485 netif_napi_add(dev, &priv->napi, stmmac_poll, 64);
1486
1487 /* Get the MAC address */
ad01b7d4
GC
1488 priv->hw->mac->get_umac_addr((void __iomem *) dev->base_addr,
1489 dev->dev_addr, 0);
47dd7a54
GC
1490
1491 if (!is_valid_ether_addr(dev->dev_addr))
1492 pr_warning("\tno valid MAC address;"
1493 "please, use ifconfig or nwhwconfig!\n");
1494
f8e96161
VL
1495 spin_lock_init(&priv->lock);
1496
47dd7a54
GC
1497 ret = register_netdev(dev);
1498 if (ret) {
1499 pr_err("%s: ERROR %i registering the device\n",
1500 __func__, ret);
1501 return -ENODEV;
1502 }
1503
1504 DBG(probe, DEBUG, "%s: Scatter/Gather: %s - HW checksums: %s\n",
1505 dev->name, (dev->features & NETIF_F_SG) ? "on" : "off",
79032644 1506 (dev->features & NETIF_F_IP_CSUM) ? "on" : "off");
47dd7a54 1507
47dd7a54
GC
1508 return ret;
1509}
1510
1511/**
1512 * stmmac_mac_device_setup
1513 * @dev : device pointer
1514 * Description: select and initialise the mac device (mac100 or Gmac).
1515 */
1516static int stmmac_mac_device_setup(struct net_device *dev)
1517{
1518 struct stmmac_priv *priv = netdev_priv(dev);
47dd7a54
GC
1519
1520 struct mac_device_info *device;
1521
9dfeb4d9 1522 if (priv->plat->has_gmac)
ad01b7d4 1523 device = dwmac1000_setup(priv->ioaddr);
3d90c508 1524 else
ad01b7d4 1525 device = dwmac100_setup(priv->ioaddr);
3d90c508 1526
1ff21906
DC
1527 if (!device)
1528 return -ENOMEM;
1529
9dfeb4d9 1530 if (priv->plat->enh_desc) {
3d90c508
GC
1531 device->desc = &enh_desc_ops;
1532 pr_info("\tEnhanced descriptor structure\n");
1533 } else
56b106ae 1534 device->desc = &ndesc_ops;
47dd7a54 1535
db98a0b0 1536 priv->hw = device;
47dd7a54 1537
539c9aa5 1538 if (device_can_wakeup(priv->device)) {
543876c9 1539 priv->wolopts = WAKE_MAGIC; /* Magic Frame as default */
539c9aa5
GC
1540 enable_irq_wake(dev->irq);
1541 }
47dd7a54
GC
1542
1543 return 0;
1544}
1545
1546static int stmmacphy_dvr_probe(struct platform_device *pdev)
1547{
ee7946a7 1548 struct plat_stmmacphy_data *plat_dat = pdev->dev.platform_data;
47dd7a54
GC
1549
1550 pr_debug("stmmacphy_dvr_probe: added phy for bus %d\n",
1551 plat_dat->bus_id);
1552
1553 return 0;
1554}
1555
1556static int stmmacphy_dvr_remove(struct platform_device *pdev)
1557{
1558 return 0;
1559}
1560
1561static struct platform_driver stmmacphy_driver = {
1562 .driver = {
1563 .name = PHY_RESOURCE_NAME,
1564 },
1565 .probe = stmmacphy_dvr_probe,
1566 .remove = stmmacphy_dvr_remove,
1567};
1568
1569/**
1570 * stmmac_associate_phy
1571 * @dev: pointer to device structure
1572 * @data: points to the private structure.
1573 * Description: Scans through all the PHYs we have registered and checks if
1574 * any are associated with our MAC. If so, then just fill in
1575 * the blanks in our local context structure
1576 */
1577static int stmmac_associate_phy(struct device *dev, void *data)
1578{
1579 struct stmmac_priv *priv = (struct stmmac_priv *)data;
ee7946a7 1580 struct plat_stmmacphy_data *plat_dat = dev->platform_data;
47dd7a54
GC
1581
1582 DBG(probe, DEBUG, "%s: checking phy for bus %d\n", __func__,
1583 plat_dat->bus_id);
1584
1585 /* Check that this phy is for the MAC being initialised */
9dfeb4d9 1586 if (priv->plat->bus_id != plat_dat->bus_id)
47dd7a54
GC
1587 return 0;
1588
1589 /* OK, this PHY is connected to the MAC.
1590 Go ahead and get the parameters */
1591 DBG(probe, DEBUG, "%s: OK. Found PHY config\n", __func__);
1592 priv->phy_irq =
1593 platform_get_irq_byname(to_platform_device(dev), "phyirq");
1594 DBG(probe, DEBUG, "%s: PHY irq on bus %d is %d\n", __func__,
1595 plat_dat->bus_id, priv->phy_irq);
1596
1597 /* Override with kernel parameters if supplied XXX CRS XXX
1598 * this needs to have multiple instances */
1599 if ((phyaddr >= 0) && (phyaddr <= 31))
1600 plat_dat->phy_addr = phyaddr;
1601
1602 priv->phy_addr = plat_dat->phy_addr;
1603 priv->phy_mask = plat_dat->phy_mask;
1604 priv->phy_interface = plat_dat->interface;
1605 priv->phy_reset = plat_dat->phy_reset;
1606
1607 DBG(probe, DEBUG, "%s: exiting\n", __func__);
1608 return 1; /* forces exit of driver_for_each_device() */
1609}
1610
1611/**
1612 * stmmac_dvr_probe
1613 * @pdev: platform device pointer
1614 * Description: the driver is initialized through platform_device.
1615 */
1616static int stmmac_dvr_probe(struct platform_device *pdev)
1617{
1618 int ret = 0;
1619 struct resource *res;
ad01b7d4 1620 void __iomem *addr = NULL;
47dd7a54 1621 struct net_device *ndev = NULL;
293bb1c4 1622 struct stmmac_priv *priv = NULL;
47dd7a54
GC
1623 struct plat_stmmacenet_data *plat_dat;
1624
1625 pr_info("STMMAC driver:\n\tplatform registration... ");
1626 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
34a52f36
DC
1627 if (!res)
1628 return -ENODEV;
ebbb293f 1629 pr_info("\tdone!\n");
47dd7a54 1630
b6222682 1631 if (!request_mem_region(res->start, resource_size(res),
47dd7a54
GC
1632 pdev->name)) {
1633 pr_err("%s: ERROR: memory allocation failed"
1634 "cannot get the I/O addr 0x%x\n",
1635 __func__, (unsigned int)res->start);
34a52f36 1636 return -EBUSY;
47dd7a54
GC
1637 }
1638
7c5365bc 1639 addr = ioremap(res->start, resource_size(res));
47dd7a54 1640 if (!addr) {
7c5365bc 1641 pr_err("%s: ERROR: memory mapping failed\n", __func__);
47dd7a54 1642 ret = -ENOMEM;
34a52f36 1643 goto out_release_region;
47dd7a54
GC
1644 }
1645
1646 ndev = alloc_etherdev(sizeof(struct stmmac_priv));
1647 if (!ndev) {
1648 pr_err("%s: ERROR: allocating the device\n", __func__);
1649 ret = -ENOMEM;
34a52f36 1650 goto out_unmap;
47dd7a54
GC
1651 }
1652
1653 SET_NETDEV_DEV(ndev, &pdev->dev);
1654
1655 /* Get the MAC information */
1656 ndev->irq = platform_get_irq_byname(pdev, "macirq");
1657 if (ndev->irq == -ENXIO) {
1658 pr_err("%s: ERROR: MAC IRQ configuration "
1659 "information not found\n", __func__);
34a52f36
DC
1660 ret = -ENXIO;
1661 goto out_free_ndev;
47dd7a54
GC
1662 }
1663
1664 priv = netdev_priv(ndev);
1665 priv->device = &(pdev->dev);
1666 priv->dev = ndev;
ee7946a7 1667 plat_dat = pdev->dev.platform_data;
9dfeb4d9
GC
1668
1669 priv->plat = plat_dat;
1670
ad01b7d4 1671 priv->ioaddr = addr;
47dd7a54 1672
543876c9
GC
1673 /* PMT module is not integrated in all the MAC devices. */
1674 if (plat_dat->pmt) {
1675 pr_info("\tPMT module supported\n");
1676 device_set_wakeup_capable(&pdev->dev, 1);
1677 }
1678
47dd7a54
GC
1679 platform_set_drvdata(pdev, ndev);
1680
1681 /* Set the I/O base addr */
1682 ndev->base_addr = (unsigned long)addr;
1683
293bb1c4
GC
1684 /* Custom initialisation */
1685 if (priv->plat->init) {
1686 ret = priv->plat->init(pdev);
1687 if (unlikely(ret))
34a52f36 1688 goto out_free_ndev;
293bb1c4 1689 }
ee7946a7 1690
47dd7a54
GC
1691 /* MAC HW revice detection */
1692 ret = stmmac_mac_device_setup(ndev);
1693 if (ret < 0)
34a52f36 1694 goto out_plat_exit;
47dd7a54
GC
1695
1696 /* Network Device Registration */
1697 ret = stmmac_probe(ndev);
1698 if (ret < 0)
34a52f36 1699 goto out_plat_exit;
47dd7a54
GC
1700
1701 /* associate a PHY - it is provided by another platform bus */
1702 if (!driver_for_each_device
1703 (&(stmmacphy_driver.driver), NULL, (void *)priv,
1704 stmmac_associate_phy)) {
1705 pr_err("No PHY device is associated with this MAC!\n");
1706 ret = -ENODEV;
34a52f36 1707 goto out_unregister;
47dd7a54
GC
1708 }
1709
47dd7a54 1710 pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n"
1f0f6388
DM
1711 "\tIO base addr: 0x%p)\n", ndev->name, pdev->name,
1712 pdev->id, ndev->irq, addr);
47dd7a54
GC
1713
1714 /* MDIO bus Registration */
9dfeb4d9 1715 pr_debug("\tMDIO bus (id: %d)...", priv->plat->bus_id);
47dd7a54
GC
1716 ret = stmmac_mdio_register(ndev);
1717 if (ret < 0)
34a52f36 1718 goto out_unregister;
47dd7a54 1719 pr_debug("registered!\n");
34a52f36 1720 return 0;
47dd7a54 1721
34a52f36
DC
1722out_unregister:
1723 unregister_netdev(ndev);
1724out_plat_exit:
1725 if (priv->plat->exit)
1726 priv->plat->exit(pdev);
1727out_free_ndev:
1728 free_netdev(ndev);
1729 platform_set_drvdata(pdev, NULL);
1730out_unmap:
1731 iounmap(addr);
1732out_release_region:
1733 release_mem_region(res->start, resource_size(res));
47dd7a54
GC
1734
1735 return ret;
1736}
1737
1738/**
1739 * stmmac_dvr_remove
1740 * @pdev: platform device pointer
1741 * Description: this function resets the TX/RX processes, disables the MAC RX/TX
1742 * changes the link status, releases the DMA descriptor rings,
1743 * unregisters the MDIO bus and unmaps the allocated memory.
1744 */
1745static int stmmac_dvr_remove(struct platform_device *pdev)
1746{
1747 struct net_device *ndev = platform_get_drvdata(pdev);
aec7ff27 1748 struct stmmac_priv *priv = netdev_priv(ndev);
47dd7a54
GC
1749 struct resource *res;
1750
1751 pr_info("%s:\n\tremoving driver", __func__);
1752
ad01b7d4
GC
1753 priv->hw->dma->stop_rx(priv->ioaddr);
1754 priv->hw->dma->stop_tx(priv->ioaddr);
47dd7a54 1755
19449bfc 1756 stmmac_disable_mac(priv->ioaddr);
47dd7a54
GC
1757
1758 netif_carrier_off(ndev);
1759
1760 stmmac_mdio_unregister(ndev);
1761
293bb1c4
GC
1762 if (priv->plat->exit)
1763 priv->plat->exit(pdev);
1764
47dd7a54
GC
1765 platform_set_drvdata(pdev, NULL);
1766 unregister_netdev(ndev);
1767
ad01b7d4 1768 iounmap((void *)priv->ioaddr);
47dd7a54 1769 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
7c5365bc 1770 release_mem_region(res->start, resource_size(res));
47dd7a54
GC
1771
1772 free_netdev(ndev);
1773
1774 return 0;
1775}
1776
1777#ifdef CONFIG_PM
874bd42d 1778static int stmmac_suspend(struct device *dev)
47dd7a54 1779{
874bd42d
GC
1780 struct net_device *ndev = dev_get_drvdata(dev);
1781 struct stmmac_priv *priv = netdev_priv(ndev);
47dd7a54
GC
1782 int dis_ic = 0;
1783
874bd42d 1784 if (!ndev || !netif_running(ndev))
47dd7a54
GC
1785 return 0;
1786
1787 spin_lock(&priv->lock);
1788
874bd42d
GC
1789 netif_device_detach(ndev);
1790 netif_stop_queue(ndev);
1791 if (priv->phydev)
1792 phy_stop(priv->phydev);
47dd7a54
GC
1793
1794#ifdef CONFIG_STMMAC_TIMER
874bd42d
GC
1795 priv->tm->timer_stop();
1796 if (likely(priv->tm->enable))
1797 dis_ic = 1;
47dd7a54 1798#endif
874bd42d
GC
1799 napi_disable(&priv->napi);
1800
1801 /* Stop TX/RX DMA */
1802 priv->hw->dma->stop_tx(priv->ioaddr);
1803 priv->hw->dma->stop_rx(priv->ioaddr);
1804 /* Clear the Rx/Tx descriptors */
1805 priv->hw->desc->init_rx_desc(priv->dma_rx, priv->dma_rx_size,
1806 dis_ic);
1807 priv->hw->desc->init_tx_desc(priv->dma_tx, priv->dma_tx_size);
1808
1809 /* Enable Power down mode by programming the PMT regs */
1810 if (device_may_wakeup(priv->device))
1811 priv->hw->mac->pmt(priv->ioaddr, priv->wolopts);
1812 else
1813 stmmac_disable_mac(priv->ioaddr);
47dd7a54
GC
1814
1815 spin_unlock(&priv->lock);
1816 return 0;
1817}
1818
874bd42d 1819static int stmmac_resume(struct device *dev)
47dd7a54 1820{
874bd42d
GC
1821 struct net_device *ndev = dev_get_drvdata(dev);
1822 struct stmmac_priv *priv = netdev_priv(ndev);
47dd7a54 1823
874bd42d 1824 if (!netif_running(ndev))
47dd7a54
GC
1825 return 0;
1826
c4433be6
GC
1827 spin_lock(&priv->lock);
1828
47dd7a54
GC
1829 /* Power Down bit, into the PM register, is cleared
1830 * automatically as soon as a magic packet or a Wake-up frame
1831 * is received. Anyway, it's better to manually clear
1832 * this bit because it can generate problems while resuming
1833 * from another devices (e.g. serial console). */
874bd42d 1834 if (device_may_wakeup(priv->device))
543876c9 1835 priv->hw->mac->pmt(priv->ioaddr, 0);
47dd7a54 1836
874bd42d 1837 netif_device_attach(ndev);
47dd7a54
GC
1838
1839 /* Enable the MAC and DMA */
19449bfc 1840 stmmac_enable_mac(priv->ioaddr);
ad01b7d4
GC
1841 priv->hw->dma->start_tx(priv->ioaddr);
1842 priv->hw->dma->start_rx(priv->ioaddr);
47dd7a54
GC
1843
1844#ifdef CONFIG_STMMAC_TIMER
874bd42d
GC
1845 if (likely(priv->tm->enable))
1846 priv->tm->timer_start(tmrate);
47dd7a54
GC
1847#endif
1848 napi_enable(&priv->napi);
1849
1850 if (priv->phydev)
1851 phy_start(priv->phydev);
1852
874bd42d 1853 netif_start_queue(ndev);
47dd7a54 1854
47dd7a54
GC
1855 spin_unlock(&priv->lock);
1856 return 0;
1857}
47dd7a54 1858
874bd42d
GC
1859static int stmmac_freeze(struct device *dev)
1860{
1861 struct net_device *ndev = dev_get_drvdata(dev);
1862
1863 if (!ndev || !netif_running(ndev))
1864 return 0;
1865
1866 return stmmac_release(ndev);
1867}
1868
1869static int stmmac_restore(struct device *dev)
1870{
1871 struct net_device *ndev = dev_get_drvdata(dev);
1872
1873 if (!ndev || !netif_running(ndev))
1874 return 0;
1875
1876 return stmmac_open(ndev);
1877}
1878
1879static const struct dev_pm_ops stmmac_pm_ops = {
47dd7a54
GC
1880 .suspend = stmmac_suspend,
1881 .resume = stmmac_resume,
874bd42d
GC
1882 .freeze = stmmac_freeze,
1883 .thaw = stmmac_restore,
1884 .restore = stmmac_restore,
1885};
1886#else
1887static const struct dev_pm_ops stmmac_pm_ops;
1888#endif /* CONFIG_PM */
47dd7a54 1889
874bd42d
GC
1890static struct platform_driver stmmac_driver = {
1891 .probe = stmmac_dvr_probe,
1892 .remove = stmmac_dvr_remove,
1893 .driver = {
1894 .name = STMMAC_RESOURCE_NAME,
1895 .owner = THIS_MODULE,
1896 .pm = &stmmac_pm_ops,
1897 },
47dd7a54
GC
1898};
1899
1900/**
1901 * stmmac_init_module - Entry point for the driver
1902 * Description: This function is the entry point for the driver.
1903 */
1904static int __init stmmac_init_module(void)
1905{
1906 int ret;
1907
1908 if (platform_driver_register(&stmmacphy_driver)) {
1909 pr_err("No PHY devices registered!\n");
1910 return -ENODEV;
1911 }
1912
1913 ret = platform_driver_register(&stmmac_driver);
1914 return ret;
1915}
1916
1917/**
1918 * stmmac_cleanup_module - Cleanup routine for the driver
1919 * Description: This function is the cleanup routine for the driver.
1920 */
1921static void __exit stmmac_cleanup_module(void)
1922{
1923 platform_driver_unregister(&stmmacphy_driver);
1924 platform_driver_unregister(&stmmac_driver);
1925}
1926
1927#ifndef MODULE
1928static int __init stmmac_cmdline_opt(char *str)
1929{
1930 char *opt;
1931
1932 if (!str || !*str)
1933 return -EINVAL;
1934 while ((opt = strsep(&str, ",")) != NULL) {
1935 if (!strncmp(opt, "debug:", 6))
1936 strict_strtoul(opt + 6, 0, (unsigned long *)&debug);
1937 else if (!strncmp(opt, "phyaddr:", 8))
1938 strict_strtoul(opt + 8, 0, (unsigned long *)&phyaddr);
1939 else if (!strncmp(opt, "dma_txsize:", 11))
1940 strict_strtoul(opt + 11, 0,
1941 (unsigned long *)&dma_txsize);
1942 else if (!strncmp(opt, "dma_rxsize:", 11))
1943 strict_strtoul(opt + 11, 0,
1944 (unsigned long *)&dma_rxsize);
1945 else if (!strncmp(opt, "buf_sz:", 7))
1946 strict_strtoul(opt + 7, 0, (unsigned long *)&buf_sz);
1947 else if (!strncmp(opt, "tc:", 3))
1948 strict_strtoul(opt + 3, 0, (unsigned long *)&tc);
47dd7a54
GC
1949 else if (!strncmp(opt, "watchdog:", 9))
1950 strict_strtoul(opt + 9, 0, (unsigned long *)&watchdog);
1951 else if (!strncmp(opt, "flow_ctrl:", 10))
1952 strict_strtoul(opt + 10, 0,
1953 (unsigned long *)&flow_ctrl);
1954 else if (!strncmp(opt, "pause:", 6))
1955 strict_strtoul(opt + 6, 0, (unsigned long *)&pause);
1956#ifdef CONFIG_STMMAC_TIMER
1957 else if (!strncmp(opt, "tmrate:", 7))
1958 strict_strtoul(opt + 7, 0, (unsigned long *)&tmrate);
1959#endif
1960 }
1961 return 0;
1962}
1963
1964__setup("stmmaceth=", stmmac_cmdline_opt);
1965#endif
1966
1967module_init(stmmac_init_module);
1968module_exit(stmmac_cleanup_module);
1969
1970MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet driver");
1971MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
1972MODULE_LICENSE("GPL");
This page took 0.483886 seconds and 5 git commands to generate.