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