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.
5 Copyright (C) 2007-2009 STMicroelectronics Ltd
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.
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
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.
20 The full GNU General Public License is included in this distribution in
21 the file called "COPYING".
23 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
25 Documentation available at:
26 http://www.stlinux.com
28 https://bugzilla.stlinux.com/
29 *******************************************************************************/
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/kernel.h>
34 #include <linux/interrupt.h>
35 #include <linux/etherdevice.h>
36 #include <linux/platform_device.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>
47 #include <linux/slab.h>
50 #define STMMAC_RESOURCE_NAME "stmmaceth"
51 #define PHY_RESOURCE_NAME "stmmacphy"
54 /*#define STMMAC_DEBUG*/
56 #define DBG(nlevel, klevel, fmt, args...) \
57 ((void)(netif_msg_##nlevel(priv) && \
58 printk(KERN_##klevel fmt, ## args)))
60 #define DBG(nlevel, klevel, fmt, args...) do { } while (0)
63 #undef STMMAC_RX_DEBUG
64 /*#define STMMAC_RX_DEBUG*/
65 #ifdef STMMAC_RX_DEBUG
66 #define RX_DBG(fmt, args...) printk(fmt, ## args)
68 #define RX_DBG(fmt, args...) do { } while (0)
71 #undef STMMAC_XMIT_DEBUG
72 /*#define STMMAC_XMIT_DEBUG*/
73 #ifdef STMMAC_TX_DEBUG
74 #define TX_DBG(fmt, args...) printk(fmt, ## args)
76 #define TX_DBG(fmt, args...) do { } while (0)
79 #define STMMAC_ALIGN(x) L1_CACHE_ALIGN(x)
80 #define JUMBO_LEN 9000
82 /* Module parameters */
83 #define TX_TIMEO 5000 /* default 5 seconds */
84 static int watchdog
= TX_TIMEO
;
85 module_param(watchdog
, int, S_IRUGO
| S_IWUSR
);
86 MODULE_PARM_DESC(watchdog
, "Transmit timeout in milliseconds");
88 static int debug
= -1; /* -1: default, 0: no output, 16: all */
89 module_param(debug
, int, S_IRUGO
| S_IWUSR
);
90 MODULE_PARM_DESC(debug
, "Message Level (0: no output, 16: all)");
92 static int phyaddr
= -1;
93 module_param(phyaddr
, int, S_IRUGO
);
94 MODULE_PARM_DESC(phyaddr
, "Physical device address");
96 #define DMA_TX_SIZE 256
97 static int dma_txsize
= DMA_TX_SIZE
;
98 module_param(dma_txsize
, int, S_IRUGO
| S_IWUSR
);
99 MODULE_PARM_DESC(dma_txsize
, "Number of descriptors in the TX list");
101 #define DMA_RX_SIZE 256
102 static int dma_rxsize
= DMA_RX_SIZE
;
103 module_param(dma_rxsize
, int, S_IRUGO
| S_IWUSR
);
104 MODULE_PARM_DESC(dma_rxsize
, "Number of descriptors in the RX list");
106 static int flow_ctrl
= FLOW_OFF
;
107 module_param(flow_ctrl
, int, S_IRUGO
| S_IWUSR
);
108 MODULE_PARM_DESC(flow_ctrl
, "Flow control ability [on/off]");
110 static int pause
= PAUSE_TIME
;
111 module_param(pause
, int, S_IRUGO
| S_IWUSR
);
112 MODULE_PARM_DESC(pause
, "Flow Control Pause Time");
114 #define TC_DEFAULT 64
115 static int tc
= TC_DEFAULT
;
116 module_param(tc
, int, S_IRUGO
| S_IWUSR
);
117 MODULE_PARM_DESC(tc
, "DMA threshold control value");
119 #define RX_NO_COALESCE 1 /* Always interrupt on completion */
120 #define TX_NO_COALESCE -1 /* No moderation by default */
122 /* Pay attention to tune this parameter; take care of both
123 * hardware capability and network stabitily/performance impact.
124 * Many tests showed that ~4ms latency seems to be good enough. */
125 #ifdef CONFIG_STMMAC_TIMER
126 #define DEFAULT_PERIODIC_RATE 256
127 static int tmrate
= DEFAULT_PERIODIC_RATE
;
128 module_param(tmrate
, int, S_IRUGO
| S_IWUSR
);
129 MODULE_PARM_DESC(tmrate
, "External timer freq. (default: 256Hz)");
132 #define DMA_BUFFER_SIZE BUF_SIZE_2KiB
133 static int buf_sz
= DMA_BUFFER_SIZE
;
134 module_param(buf_sz
, int, S_IRUGO
| S_IWUSR
);
135 MODULE_PARM_DESC(buf_sz
, "DMA buffer size");
137 /* In case of Giga ETH, we can enable/disable the COE for the
138 * transmit HW checksum computation.
139 * Note that, if tx csum is off in HW, SG will be still supported. */
140 static int tx_coe
= HW_CSUM
;
141 module_param(tx_coe
, int, S_IRUGO
| S_IWUSR
);
142 MODULE_PARM_DESC(tx_coe
, "GMAC COE type 2 [on/off]");
144 static const u32 default_msg_level
= (NETIF_MSG_DRV
| NETIF_MSG_PROBE
|
145 NETIF_MSG_LINK
| NETIF_MSG_IFUP
|
146 NETIF_MSG_IFDOWN
| NETIF_MSG_TIMER
);
148 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
);
149 static netdev_tx_t
stmmac_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
152 * stmmac_verify_args - verify the driver parameters.
153 * Description: it verifies if some wrong parameter is passed to the driver.
154 * Note that wrong parameters are replaced with the default values.
156 static void stmmac_verify_args(void)
158 if (unlikely(watchdog
< 0))
160 if (unlikely(dma_rxsize
< 0))
161 dma_rxsize
= DMA_RX_SIZE
;
162 if (unlikely(dma_txsize
< 0))
163 dma_txsize
= DMA_TX_SIZE
;
164 if (unlikely((buf_sz
< DMA_BUFFER_SIZE
) || (buf_sz
> BUF_SIZE_16KiB
)))
165 buf_sz
= DMA_BUFFER_SIZE
;
166 if (unlikely(flow_ctrl
> 1))
167 flow_ctrl
= FLOW_AUTO
;
168 else if (likely(flow_ctrl
< 0))
169 flow_ctrl
= FLOW_OFF
;
170 if (unlikely((pause
< 0) || (pause
> 0xffff)))
176 #if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG)
177 static void print_pkt(unsigned char *buf
, int len
)
180 pr_info("len = %d byte, buf addr: 0x%p", len
, buf
);
181 for (j
= 0; j
< len
; j
++) {
183 pr_info("\n %03x:", j
);
184 pr_info(" %02x", buf
[j
]);
191 /* minimum number of free TX descriptors required to wake up TX process */
192 #define STMMAC_TX_THRESH(x) (x->dma_tx_size/4)
194 static inline u32
stmmac_tx_avail(struct stmmac_priv
*priv
)
196 return priv
->dirty_tx
+ priv
->dma_tx_size
- priv
->cur_tx
- 1;
201 * @dev: net device structure
202 * Description: it adjusts the link parameters.
204 static void stmmac_adjust_link(struct net_device
*dev
)
206 struct stmmac_priv
*priv
= netdev_priv(dev
);
207 struct phy_device
*phydev
= priv
->phydev
;
208 unsigned long ioaddr
= dev
->base_addr
;
211 unsigned int fc
= priv
->flow_ctrl
, pause_time
= priv
->pause
;
216 DBG(probe
, DEBUG
, "stmmac_adjust_link: called. address %d link %d\n",
217 phydev
->addr
, phydev
->link
);
219 spin_lock_irqsave(&priv
->lock
, flags
);
221 u32 ctrl
= readl(ioaddr
+ MAC_CTRL_REG
);
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
) {
227 if (!(phydev
->duplex
))
228 ctrl
&= ~priv
->hw
->link
.duplex
;
230 ctrl
|= priv
->hw
->link
.duplex
;
231 priv
->oldduplex
= phydev
->duplex
;
233 /* Flow Control operation */
235 priv
->hw
->mac
->flow_ctrl(ioaddr
, phydev
->duplex
,
238 if (phydev
->speed
!= priv
->speed
) {
240 switch (phydev
->speed
) {
242 if (likely(priv
->is_gmac
))
243 ctrl
&= ~priv
->hw
->link
.port
;
248 ctrl
|= priv
->hw
->link
.port
;
249 if (phydev
->speed
== SPEED_100
) {
250 ctrl
|= priv
->hw
->link
.speed
;
252 ctrl
&= ~(priv
->hw
->link
.speed
);
255 ctrl
&= ~priv
->hw
->link
.port
;
257 if (likely(priv
->fix_mac_speed
))
258 priv
->fix_mac_speed(priv
->bsp_priv
,
262 if (netif_msg_link(priv
))
263 pr_warning("%s: Speed (%d) is not 10"
264 " or 100!\n", dev
->name
, phydev
->speed
);
268 priv
->speed
= phydev
->speed
;
271 writel(ctrl
, ioaddr
+ MAC_CTRL_REG
);
273 if (!priv
->oldlink
) {
277 } else if (priv
->oldlink
) {
281 priv
->oldduplex
= -1;
284 if (new_state
&& netif_msg_link(priv
))
285 phy_print_status(phydev
);
287 spin_unlock_irqrestore(&priv
->lock
, flags
);
289 DBG(probe
, DEBUG
, "stmmac_adjust_link: exiting\n");
293 * stmmac_init_phy - PHY initialization
294 * @dev: net device structure
295 * Description: it initializes the driver's PHY state, and attaches the PHY
300 static int stmmac_init_phy(struct net_device
*dev
)
302 struct stmmac_priv
*priv
= netdev_priv(dev
);
303 struct phy_device
*phydev
;
304 char phy_id
[MII_BUS_ID_SIZE
+ 3];
305 char bus_id
[MII_BUS_ID_SIZE
];
309 priv
->oldduplex
= -1;
311 if (priv
->phy_addr
== -1) {
312 /* We don't have a PHY, so do nothing */
316 snprintf(bus_id
, MII_BUS_ID_SIZE
, "%x", priv
->bus_id
);
317 snprintf(phy_id
, MII_BUS_ID_SIZE
+ 3, PHY_ID_FMT
, bus_id
,
319 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id
);
321 phydev
= phy_connect(dev
, phy_id
, &stmmac_adjust_link
, 0,
322 priv
->phy_interface
);
324 if (IS_ERR(phydev
)) {
325 pr_err("%s: Could not attach to PHY\n", dev
->name
);
326 return PTR_ERR(phydev
);
330 * Broken HW is sometimes missing the pull-up resistor on the
331 * MDIO line, which results in reads to non-existent devices returning
332 * 0 rather than 0xffff. Catch this here and treat 0 as a non-existent
334 * Note: phydev->phy_id is the result of reading the UID PHY registers.
336 if (phydev
->phy_id
== 0) {
337 phy_disconnect(phydev
);
340 pr_debug("stmmac_init_phy: %s: attached to PHY (UID 0x%x)"
341 " Link = %d\n", dev
->name
, phydev
->phy_id
, phydev
->link
);
343 priv
->phydev
= phydev
;
348 static inline void stmmac_mac_enable_rx(unsigned long ioaddr
)
350 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
351 value
|= MAC_RNABLE_RX
;
352 /* Set the RE (receive enable bit into the MAC CTRL register). */
353 writel(value
, ioaddr
+ MAC_CTRL_REG
);
356 static inline void stmmac_mac_enable_tx(unsigned long ioaddr
)
358 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
359 value
|= MAC_ENABLE_TX
;
360 /* Set the TE (transmit enable bit into the MAC CTRL register). */
361 writel(value
, ioaddr
+ MAC_CTRL_REG
);
364 static inline void stmmac_mac_disable_rx(unsigned long ioaddr
)
366 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
367 value
&= ~MAC_RNABLE_RX
;
368 writel(value
, ioaddr
+ MAC_CTRL_REG
);
371 static inline void stmmac_mac_disable_tx(unsigned long ioaddr
)
373 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
374 value
&= ~MAC_ENABLE_TX
;
375 writel(value
, ioaddr
+ MAC_CTRL_REG
);
380 * @p: pointer to the ring.
381 * @size: size of the ring.
382 * Description: display all the descriptors within the ring.
384 static void display_ring(struct dma_desc
*p
, int size
)
392 for (i
= 0; i
< size
; i
++) {
393 struct tmp_s
*x
= (struct tmp_s
*)(p
+ i
);
394 pr_info("\t%d [0x%x]: DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
395 i
, (unsigned int)virt_to_phys(&p
[i
]),
396 (unsigned int)(x
->a
), (unsigned int)((x
->a
) >> 32),
403 * init_dma_desc_rings - init the RX/TX descriptor rings
404 * @dev: net device structure
405 * Description: this function initializes the DMA RX/TX descriptors
406 * and allocates the socket buffers.
408 static void init_dma_desc_rings(struct net_device
*dev
)
411 struct stmmac_priv
*priv
= netdev_priv(dev
);
413 unsigned int txsize
= priv
->dma_tx_size
;
414 unsigned int rxsize
= priv
->dma_rx_size
;
415 unsigned int bfsize
= priv
->dma_buf_sz
;
416 int buff2_needed
= 0, dis_ic
= 0;
418 /* Set the Buffer size according to the MTU;
419 * indeed, in case of jumbo we need to bump-up the buffer sizes.
421 if (unlikely(dev
->mtu
>= BUF_SIZE_8KiB
))
422 bfsize
= BUF_SIZE_16KiB
;
423 else if (unlikely(dev
->mtu
>= BUF_SIZE_4KiB
))
424 bfsize
= BUF_SIZE_8KiB
;
425 else if (unlikely(dev
->mtu
>= BUF_SIZE_2KiB
))
426 bfsize
= BUF_SIZE_4KiB
;
427 else if (unlikely(dev
->mtu
>= DMA_BUFFER_SIZE
))
428 bfsize
= BUF_SIZE_2KiB
;
430 bfsize
= DMA_BUFFER_SIZE
;
432 #ifdef CONFIG_STMMAC_TIMER
433 /* Disable interrupts on completion for the reception if timer is on */
434 if (likely(priv
->tm
->enable
))
437 /* If the MTU exceeds 8k so use the second buffer in the chain */
438 if (bfsize
>= BUF_SIZE_8KiB
)
441 DBG(probe
, INFO
, "stmmac: txsize %d, rxsize %d, bfsize %d\n",
442 txsize
, rxsize
, bfsize
);
444 priv
->rx_skbuff_dma
= kmalloc(rxsize
* sizeof(dma_addr_t
), GFP_KERNEL
);
446 kmalloc(sizeof(struct sk_buff
*) * rxsize
, GFP_KERNEL
);
448 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
450 sizeof(struct dma_desc
),
453 priv
->tx_skbuff
= kmalloc(sizeof(struct sk_buff
*) * txsize
,
456 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
458 sizeof(struct dma_desc
),
462 if ((priv
->dma_rx
== NULL
) || (priv
->dma_tx
== NULL
)) {
463 pr_err("%s:ERROR allocating the DMA Tx/Rx desc\n", __func__
);
467 DBG(probe
, INFO
, "stmmac (%s) DMA desc rings: virt addr (Rx %p, "
468 "Tx %p)\n\tDMA phy addr (Rx 0x%08x, Tx 0x%08x)\n",
469 dev
->name
, priv
->dma_rx
, priv
->dma_tx
,
470 (unsigned int)priv
->dma_rx_phy
, (unsigned int)priv
->dma_tx_phy
);
472 /* RX INITIALIZATION */
473 DBG(probe
, INFO
, "stmmac: SKB addresses:\n"
474 "skb\t\tskb data\tdma data\n");
476 for (i
= 0; i
< rxsize
; i
++) {
477 struct dma_desc
*p
= priv
->dma_rx
+ i
;
479 skb
= netdev_alloc_skb_ip_align(dev
, bfsize
);
480 if (unlikely(skb
== NULL
)) {
481 pr_err("%s: Rx init fails; skb is NULL\n", __func__
);
484 priv
->rx_skbuff
[i
] = skb
;
485 priv
->rx_skbuff_dma
[i
] = dma_map_single(priv
->device
, skb
->data
,
486 bfsize
, DMA_FROM_DEVICE
);
488 p
->des2
= priv
->rx_skbuff_dma
[i
];
489 if (unlikely(buff2_needed
))
490 p
->des3
= p
->des2
+ BUF_SIZE_8KiB
;
491 DBG(probe
, INFO
, "[%p]\t[%p]\t[%x]\n", priv
->rx_skbuff
[i
],
492 priv
->rx_skbuff
[i
]->data
, priv
->rx_skbuff_dma
[i
]);
495 priv
->dirty_rx
= (unsigned int)(i
- rxsize
);
496 priv
->dma_buf_sz
= bfsize
;
499 /* TX INITIALIZATION */
500 for (i
= 0; i
< txsize
; i
++) {
501 priv
->tx_skbuff
[i
] = NULL
;
502 priv
->dma_tx
[i
].des2
= 0;
507 /* Clear the Rx/Tx descriptors */
508 priv
->hw
->desc
->init_rx_desc(priv
->dma_rx
, rxsize
, dis_ic
);
509 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, txsize
);
511 if (netif_msg_hw(priv
)) {
512 pr_info("RX descriptor ring:\n");
513 display_ring(priv
->dma_rx
, rxsize
);
514 pr_info("TX descriptor ring:\n");
515 display_ring(priv
->dma_tx
, txsize
);
520 static void dma_free_rx_skbufs(struct stmmac_priv
*priv
)
524 for (i
= 0; i
< priv
->dma_rx_size
; i
++) {
525 if (priv
->rx_skbuff
[i
]) {
526 dma_unmap_single(priv
->device
, priv
->rx_skbuff_dma
[i
],
527 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
528 dev_kfree_skb_any(priv
->rx_skbuff
[i
]);
530 priv
->rx_skbuff
[i
] = NULL
;
535 static void dma_free_tx_skbufs(struct stmmac_priv
*priv
)
539 for (i
= 0; i
< priv
->dma_tx_size
; i
++) {
540 if (priv
->tx_skbuff
[i
] != NULL
) {
541 struct dma_desc
*p
= priv
->dma_tx
+ i
;
543 dma_unmap_single(priv
->device
, p
->des2
,
544 priv
->hw
->desc
->get_tx_len(p
),
546 dev_kfree_skb_any(priv
->tx_skbuff
[i
]);
547 priv
->tx_skbuff
[i
] = NULL
;
553 static void free_dma_desc_resources(struct stmmac_priv
*priv
)
555 /* Release the DMA TX/RX socket buffers */
556 dma_free_rx_skbufs(priv
);
557 dma_free_tx_skbufs(priv
);
559 /* Free the region of consistent memory previously allocated for
561 dma_free_coherent(priv
->device
,
562 priv
->dma_tx_size
* sizeof(struct dma_desc
),
563 priv
->dma_tx
, priv
->dma_tx_phy
);
564 dma_free_coherent(priv
->device
,
565 priv
->dma_rx_size
* sizeof(struct dma_desc
),
566 priv
->dma_rx
, priv
->dma_rx_phy
);
567 kfree(priv
->rx_skbuff_dma
);
568 kfree(priv
->rx_skbuff
);
569 kfree(priv
->tx_skbuff
);
575 * stmmac_dma_operation_mode - HW DMA operation mode
576 * @priv : pointer to the private device structure.
577 * Description: it sets the DMA operation mode: tx/rx DMA thresholds
578 * or Store-And-Forward capability. It also verifies the COE for the
579 * transmission in case of Giga ETH.
581 static void stmmac_dma_operation_mode(struct stmmac_priv
*priv
)
583 if (!priv
->is_gmac
) {
585 priv
->hw
->dma
->dma_mode(priv
->dev
->base_addr
, tc
, 0);
586 priv
->tx_coe
= NO_HW_CSUM
;
588 if ((priv
->dev
->mtu
<= ETH_DATA_LEN
) && (tx_coe
)) {
589 priv
->hw
->dma
->dma_mode(priv
->dev
->base_addr
,
590 SF_DMA_MODE
, SF_DMA_MODE
);
592 priv
->tx_coe
= HW_CSUM
;
594 /* Checksum computation is performed in software. */
595 priv
->hw
->dma
->dma_mode(priv
->dev
->base_addr
, tc
,
597 priv
->tx_coe
= NO_HW_CSUM
;
600 tx_coe
= priv
->tx_coe
;
607 * @priv: private driver structure
608 * Description: it reclaims resources after transmission completes.
610 static void stmmac_tx(struct stmmac_priv
*priv
)
612 unsigned int txsize
= priv
->dma_tx_size
;
613 unsigned long ioaddr
= priv
->dev
->base_addr
;
615 while (priv
->dirty_tx
!= priv
->cur_tx
) {
617 unsigned int entry
= priv
->dirty_tx
% txsize
;
618 struct sk_buff
*skb
= priv
->tx_skbuff
[entry
];
619 struct dma_desc
*p
= priv
->dma_tx
+ entry
;
621 /* Check if the descriptor is owned by the DMA. */
622 if (priv
->hw
->desc
->get_tx_owner(p
))
625 /* Verify tx error by looking at the last segment */
626 last
= priv
->hw
->desc
->get_tx_ls(p
);
629 priv
->hw
->desc
->tx_status(&priv
->dev
->stats
,
632 if (likely(tx_error
== 0)) {
633 priv
->dev
->stats
.tx_packets
++;
634 priv
->xstats
.tx_pkt_n
++;
636 priv
->dev
->stats
.tx_errors
++;
638 TX_DBG("%s: curr %d, dirty %d\n", __func__
,
639 priv
->cur_tx
, priv
->dirty_tx
);
642 dma_unmap_single(priv
->device
, p
->des2
,
643 priv
->hw
->desc
->get_tx_len(p
),
645 if (unlikely(p
->des3
))
648 if (likely(skb
!= NULL
)) {
650 * If there's room in the queue (limit it to size)
651 * we add this skb back into the pool,
652 * if it's the right size.
654 if ((skb_queue_len(&priv
->rx_recycle
) <
655 priv
->dma_rx_size
) &&
656 skb_recycle_check(skb
, priv
->dma_buf_sz
))
657 __skb_queue_head(&priv
->rx_recycle
, skb
);
661 priv
->tx_skbuff
[entry
] = NULL
;
664 priv
->hw
->desc
->release_tx_desc(p
);
666 entry
= (++priv
->dirty_tx
) % txsize
;
668 if (unlikely(netif_queue_stopped(priv
->dev
) &&
669 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
))) {
670 netif_tx_lock(priv
->dev
);
671 if (netif_queue_stopped(priv
->dev
) &&
672 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
)) {
673 TX_DBG("%s: restart transmit\n", __func__
);
674 netif_wake_queue(priv
->dev
);
676 netif_tx_unlock(priv
->dev
);
681 static inline void stmmac_enable_irq(struct stmmac_priv
*priv
)
683 #ifdef CONFIG_STMMAC_TIMER
684 if (likely(priv
->tm
->enable
))
685 priv
->tm
->timer_start(tmrate
);
688 priv
->hw
->dma
->enable_dma_irq(priv
->dev
->base_addr
);
691 static inline void stmmac_disable_irq(struct stmmac_priv
*priv
)
693 #ifdef CONFIG_STMMAC_TIMER
694 if (likely(priv
->tm
->enable
))
695 priv
->tm
->timer_stop();
698 priv
->hw
->dma
->disable_dma_irq(priv
->dev
->base_addr
);
701 static int stmmac_has_work(struct stmmac_priv
*priv
)
703 unsigned int has_work
= 0;
704 int rxret
, tx_work
= 0;
706 rxret
= priv
->hw
->desc
->get_rx_owner(priv
->dma_rx
+
707 (priv
->cur_rx
% priv
->dma_rx_size
));
709 if (priv
->dirty_tx
!= priv
->cur_tx
)
712 if (likely(!rxret
|| tx_work
))
718 static inline void _stmmac_schedule(struct stmmac_priv
*priv
)
720 if (likely(stmmac_has_work(priv
))) {
721 stmmac_disable_irq(priv
);
722 napi_schedule(&priv
->napi
);
726 #ifdef CONFIG_STMMAC_TIMER
727 void stmmac_schedule(struct net_device
*dev
)
729 struct stmmac_priv
*priv
= netdev_priv(dev
);
731 priv
->xstats
.sched_timer_n
++;
733 _stmmac_schedule(priv
);
738 static void stmmac_no_timer_started(unsigned int x
)
742 static void stmmac_no_timer_stopped(void)
749 * @priv: pointer to the private device structure
750 * Description: it cleans the descriptors and restarts the transmission
753 static void stmmac_tx_err(struct stmmac_priv
*priv
)
755 netif_stop_queue(priv
->dev
);
757 priv
->hw
->dma
->stop_tx(priv
->dev
->base_addr
);
758 dma_free_tx_skbufs(priv
);
759 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
762 priv
->hw
->dma
->start_tx(priv
->dev
->base_addr
);
764 priv
->dev
->stats
.tx_errors
++;
765 netif_wake_queue(priv
->dev
);
771 static void stmmac_dma_interrupt(struct stmmac_priv
*priv
)
773 unsigned long ioaddr
= priv
->dev
->base_addr
;
776 status
= priv
->hw
->dma
->dma_interrupt(priv
->dev
->base_addr
,
778 if (likely(status
== handle_tx_rx
))
779 _stmmac_schedule(priv
);
781 else if (unlikely(status
== tx_hard_error_bump_tc
)) {
782 /* Try to bump up the dma threshold on this failure */
783 if (unlikely(tc
!= SF_DMA_MODE
) && (tc
<= 256)) {
785 priv
->hw
->dma
->dma_mode(ioaddr
, tc
, SF_DMA_MODE
);
786 priv
->xstats
.threshold
= tc
;
789 } else if (unlikely(status
== tx_hard_error
))
796 * stmmac_open - open entry point of the driver
797 * @dev : pointer to the device structure.
799 * This function is the open entry point of the driver.
801 * 0 on success and an appropriate (-)ve integer as defined in errno.h
804 static int stmmac_open(struct net_device
*dev
)
806 struct stmmac_priv
*priv
= netdev_priv(dev
);
807 unsigned long ioaddr
= dev
->base_addr
;
810 /* Check that the MAC address is valid. If its not, refuse
811 * to bring the device up. The user must specify an
812 * address using the following linux command:
813 * ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx */
814 if (!is_valid_ether_addr(dev
->dev_addr
)) {
815 random_ether_addr(dev
->dev_addr
);
816 pr_warning("%s: generated random MAC address %pM\n", dev
->name
,
820 stmmac_verify_args();
822 ret
= stmmac_init_phy(dev
);
824 pr_err("%s: Cannot attach to PHY (error: %d)\n", __func__
, ret
);
828 /* Request the IRQ lines */
829 ret
= request_irq(dev
->irq
, stmmac_interrupt
,
830 IRQF_SHARED
, dev
->name
, dev
);
831 if (unlikely(ret
< 0)) {
832 pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
833 __func__
, dev
->irq
, ret
);
837 #ifdef CONFIG_STMMAC_TIMER
838 priv
->tm
= kzalloc(sizeof(struct stmmac_timer
*), GFP_KERNEL
);
839 if (unlikely(priv
->tm
== NULL
)) {
840 pr_err("%s: ERROR: timer memory alloc failed \n", __func__
);
843 priv
->tm
->freq
= tmrate
;
845 /* Test if the external timer can be actually used.
846 * In case of failure continue without timer. */
847 if (unlikely((stmmac_open_ext_timer(dev
, priv
->tm
)) < 0)) {
848 pr_warning("stmmaceth: cannot attach the external timer.\n");
851 priv
->tm
->timer_start
= stmmac_no_timer_started
;
852 priv
->tm
->timer_stop
= stmmac_no_timer_stopped
;
854 priv
->tm
->enable
= 1;
857 /* Create and initialize the TX/RX descriptors chains. */
858 priv
->dma_tx_size
= STMMAC_ALIGN(dma_txsize
);
859 priv
->dma_rx_size
= STMMAC_ALIGN(dma_rxsize
);
860 priv
->dma_buf_sz
= STMMAC_ALIGN(buf_sz
);
861 init_dma_desc_rings(dev
);
863 /* DMA initialization and SW reset */
864 if (unlikely(priv
->hw
->dma
->init(ioaddr
, priv
->pbl
, priv
->dma_tx_phy
,
865 priv
->dma_rx_phy
) < 0)) {
867 pr_err("%s: DMA initialization failed\n", __func__
);
871 /* Copy the MAC addr into the HW */
872 priv
->hw
->mac
->set_umac_addr(ioaddr
, dev
->dev_addr
, 0);
873 /* If required, perform hw setup of the bus. */
875 priv
->bus_setup(ioaddr
);
876 /* Initialize the MAC Core */
877 priv
->hw
->mac
->core_init(ioaddr
);
881 /* Initialise the MMC (if present) to disable all interrupts. */
882 writel(0xffffffff, ioaddr
+ MMC_HIGH_INTR_MASK
);
883 writel(0xffffffff, ioaddr
+ MMC_LOW_INTR_MASK
);
885 /* Enable the MAC Rx/Tx */
886 stmmac_mac_enable_rx(ioaddr
);
887 stmmac_mac_enable_tx(ioaddr
);
889 /* Set the HW DMA mode and the COE */
890 stmmac_dma_operation_mode(priv
);
892 /* Extra statistics */
893 memset(&priv
->xstats
, 0, sizeof(struct stmmac_extra_stats
));
894 priv
->xstats
.threshold
= tc
;
896 /* Start the ball rolling... */
897 DBG(probe
, DEBUG
, "%s: DMA RX/TX processes started...\n", dev
->name
);
898 priv
->hw
->dma
->start_tx(ioaddr
);
899 priv
->hw
->dma
->start_rx(ioaddr
);
901 #ifdef CONFIG_STMMAC_TIMER
902 priv
->tm
->timer_start(tmrate
);
904 /* Dump DMA/MAC registers */
905 if (netif_msg_hw(priv
)) {
906 priv
->hw
->mac
->dump_regs(ioaddr
);
907 priv
->hw
->dma
->dump_regs(ioaddr
);
911 phy_start(priv
->phydev
);
913 napi_enable(&priv
->napi
);
914 skb_queue_head_init(&priv
->rx_recycle
);
915 netif_start_queue(dev
);
920 * stmmac_release - close entry point of the driver
921 * @dev : device pointer.
923 * This is the stop entry point of the driver.
925 static int stmmac_release(struct net_device
*dev
)
927 struct stmmac_priv
*priv
= netdev_priv(dev
);
929 /* Stop and disconnect the PHY */
931 phy_stop(priv
->phydev
);
932 phy_disconnect(priv
->phydev
);
936 netif_stop_queue(dev
);
938 #ifdef CONFIG_STMMAC_TIMER
939 /* Stop and release the timer */
940 stmmac_close_ext_timer();
941 if (priv
->tm
!= NULL
)
944 napi_disable(&priv
->napi
);
945 skb_queue_purge(&priv
->rx_recycle
);
947 /* Free the IRQ lines */
948 free_irq(dev
->irq
, dev
);
950 /* Stop TX/RX DMA and clear the descriptors */
951 priv
->hw
->dma
->stop_tx(dev
->base_addr
);
952 priv
->hw
->dma
->stop_rx(dev
->base_addr
);
954 /* Release and free the Rx/Tx resources */
955 free_dma_desc_resources(priv
);
957 /* Disable the MAC core */
958 stmmac_mac_disable_tx(dev
->base_addr
);
959 stmmac_mac_disable_rx(dev
->base_addr
);
961 netif_carrier_off(dev
);
967 * To perform emulated hardware segmentation on skb.
969 static int stmmac_sw_tso(struct stmmac_priv
*priv
, struct sk_buff
*skb
)
971 struct sk_buff
*segs
, *curr_skb
;
972 int gso_segs
= skb_shinfo(skb
)->gso_segs
;
974 /* Estimate the number of fragments in the worst case */
975 if (unlikely(stmmac_tx_avail(priv
) < gso_segs
)) {
976 netif_stop_queue(priv
->dev
);
977 TX_DBG(KERN_ERR
"%s: TSO BUG! Tx Ring full when queue awake\n",
979 if (stmmac_tx_avail(priv
) < gso_segs
)
980 return NETDEV_TX_BUSY
;
982 netif_wake_queue(priv
->dev
);
984 TX_DBG("\tstmmac_sw_tso: segmenting: skb %p (len %d)\n",
987 segs
= skb_gso_segment(skb
, priv
->dev
->features
& ~NETIF_F_TSO
);
988 if (unlikely(IS_ERR(segs
)))
994 TX_DBG("\t\tcurrent skb->len: %d, *curr %p,"
995 "*next %p\n", curr_skb
->len
, curr_skb
, segs
);
996 curr_skb
->next
= NULL
;
997 stmmac_xmit(curr_skb
, priv
->dev
);
1003 return NETDEV_TX_OK
;
1006 static unsigned int stmmac_handle_jumbo_frames(struct sk_buff
*skb
,
1007 struct net_device
*dev
,
1010 struct stmmac_priv
*priv
= netdev_priv(dev
);
1011 unsigned int nopaged_len
= skb_headlen(skb
);
1012 unsigned int txsize
= priv
->dma_tx_size
;
1013 unsigned int entry
= priv
->cur_tx
% txsize
;
1014 struct dma_desc
*desc
= priv
->dma_tx
+ entry
;
1016 if (nopaged_len
> BUF_SIZE_8KiB
) {
1018 int buf2_size
= nopaged_len
- BUF_SIZE_8KiB
;
1020 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1021 BUF_SIZE_8KiB
, DMA_TO_DEVICE
);
1022 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
1023 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, BUF_SIZE_8KiB
,
1026 entry
= (++priv
->cur_tx
) % txsize
;
1027 desc
= priv
->dma_tx
+ entry
;
1029 desc
->des2
= dma_map_single(priv
->device
,
1030 skb
->data
+ BUF_SIZE_8KiB
,
1031 buf2_size
, DMA_TO_DEVICE
);
1032 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
1033 priv
->hw
->desc
->prepare_tx_desc(desc
, 0, buf2_size
,
1035 priv
->hw
->desc
->set_tx_owner(desc
);
1036 priv
->tx_skbuff
[entry
] = NULL
;
1038 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1039 nopaged_len
, DMA_TO_DEVICE
);
1040 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
1041 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, nopaged_len
,
1049 * @skb : the socket buffer
1050 * @dev : device pointer
1051 * Description : Tx entry point of the driver.
1053 static netdev_tx_t
stmmac_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1055 struct stmmac_priv
*priv
= netdev_priv(dev
);
1056 unsigned int txsize
= priv
->dma_tx_size
;
1058 int i
, csum_insertion
= 0;
1059 int nfrags
= skb_shinfo(skb
)->nr_frags
;
1060 struct dma_desc
*desc
, *first
;
1062 if (unlikely(stmmac_tx_avail(priv
) < nfrags
+ 1)) {
1063 if (!netif_queue_stopped(dev
)) {
1064 netif_stop_queue(dev
);
1065 /* This is a hard error, log it. */
1066 pr_err("%s: BUG! Tx Ring full when queue awake\n",
1069 return NETDEV_TX_BUSY
;
1072 entry
= priv
->cur_tx
% txsize
;
1074 #ifdef STMMAC_XMIT_DEBUG
1075 if ((skb
->len
> ETH_FRAME_LEN
) || nfrags
)
1076 pr_info("stmmac xmit:\n"
1077 "\tskb addr %p - len: %d - nopaged_len: %d\n"
1078 "\tn_frags: %d - ip_summed: %d - %s gso\n",
1079 skb
, skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
,
1080 !skb_is_gso(skb
) ? "isn't" : "is");
1083 if (unlikely(skb_is_gso(skb
)))
1084 return stmmac_sw_tso(priv
, skb
);
1086 if (likely((skb
->ip_summed
== CHECKSUM_PARTIAL
))) {
1087 if (likely(priv
->tx_coe
== NO_HW_CSUM
))
1088 skb_checksum_help(skb
);
1093 desc
= priv
->dma_tx
+ entry
;
1096 #ifdef STMMAC_XMIT_DEBUG
1097 if ((nfrags
> 0) || (skb
->len
> ETH_FRAME_LEN
))
1098 pr_debug("stmmac xmit: skb len: %d, nopaged_len: %d,\n"
1099 "\t\tn_frags: %d, ip_summed: %d\n",
1100 skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
);
1102 priv
->tx_skbuff
[entry
] = skb
;
1103 if (unlikely(skb
->len
>= BUF_SIZE_4KiB
)) {
1104 entry
= stmmac_handle_jumbo_frames(skb
, dev
, csum_insertion
);
1105 desc
= priv
->dma_tx
+ entry
;
1107 unsigned int nopaged_len
= skb_headlen(skb
);
1108 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1109 nopaged_len
, DMA_TO_DEVICE
);
1110 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, nopaged_len
,
1114 for (i
= 0; i
< nfrags
; i
++) {
1115 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
1116 int len
= frag
->size
;
1118 entry
= (++priv
->cur_tx
) % txsize
;
1119 desc
= priv
->dma_tx
+ entry
;
1121 TX_DBG("\t[entry %d] segment len: %d\n", entry
, len
);
1122 desc
->des2
= dma_map_page(priv
->device
, frag
->page
,
1124 len
, DMA_TO_DEVICE
);
1125 priv
->tx_skbuff
[entry
] = NULL
;
1126 priv
->hw
->desc
->prepare_tx_desc(desc
, 0, len
, csum_insertion
);
1127 priv
->hw
->desc
->set_tx_owner(desc
);
1130 /* Interrupt on completition only for the latest segment */
1131 priv
->hw
->desc
->close_tx_desc(desc
);
1133 #ifdef CONFIG_STMMAC_TIMER
1134 /* Clean IC while using timer */
1135 if (likely(priv
->tm
->enable
))
1136 priv
->hw
->desc
->clear_tx_ic(desc
);
1138 /* To avoid raise condition */
1139 priv
->hw
->desc
->set_tx_owner(first
);
1143 #ifdef STMMAC_XMIT_DEBUG
1144 if (netif_msg_pktdata(priv
)) {
1145 pr_info("stmmac xmit: current=%d, dirty=%d, entry=%d, "
1146 "first=%p, nfrags=%d\n",
1147 (priv
->cur_tx
% txsize
), (priv
->dirty_tx
% txsize
),
1148 entry
, first
, nfrags
);
1149 display_ring(priv
->dma_tx
, txsize
);
1150 pr_info(">>> frame to be transmitted: ");
1151 print_pkt(skb
->data
, skb
->len
);
1154 if (unlikely(stmmac_tx_avail(priv
) <= (MAX_SKB_FRAGS
+ 1))) {
1155 TX_DBG("%s: stop transmitted packets\n", __func__
);
1156 netif_stop_queue(dev
);
1159 dev
->stats
.tx_bytes
+= skb
->len
;
1161 priv
->hw
->dma
->enable_dma_transmission(dev
->base_addr
);
1163 return NETDEV_TX_OK
;
1166 static inline void stmmac_rx_refill(struct stmmac_priv
*priv
)
1168 unsigned int rxsize
= priv
->dma_rx_size
;
1169 int bfsize
= priv
->dma_buf_sz
;
1170 struct dma_desc
*p
= priv
->dma_rx
;
1172 for (; priv
->cur_rx
- priv
->dirty_rx
> 0; priv
->dirty_rx
++) {
1173 unsigned int entry
= priv
->dirty_rx
% rxsize
;
1174 if (likely(priv
->rx_skbuff
[entry
] == NULL
)) {
1175 struct sk_buff
*skb
;
1177 skb
= __skb_dequeue(&priv
->rx_recycle
);
1179 skb
= netdev_alloc_skb_ip_align(priv
->dev
,
1182 if (unlikely(skb
== NULL
))
1185 priv
->rx_skbuff
[entry
] = skb
;
1186 priv
->rx_skbuff_dma
[entry
] =
1187 dma_map_single(priv
->device
, skb
->data
, bfsize
,
1190 (p
+ entry
)->des2
= priv
->rx_skbuff_dma
[entry
];
1191 if (unlikely(priv
->is_gmac
)) {
1192 if (bfsize
>= BUF_SIZE_8KiB
)
1194 (p
+ entry
)->des2
+ BUF_SIZE_8KiB
;
1196 RX_DBG(KERN_INFO
"\trefill entry #%d\n", entry
);
1198 priv
->hw
->desc
->set_rx_owner(p
+ entry
);
1203 static int stmmac_rx(struct stmmac_priv
*priv
, int limit
)
1205 unsigned int rxsize
= priv
->dma_rx_size
;
1206 unsigned int entry
= priv
->cur_rx
% rxsize
;
1207 unsigned int next_entry
;
1208 unsigned int count
= 0;
1209 struct dma_desc
*p
= priv
->dma_rx
+ entry
;
1210 struct dma_desc
*p_next
;
1212 #ifdef STMMAC_RX_DEBUG
1213 if (netif_msg_hw(priv
)) {
1214 pr_debug(">>> stmmac_rx: descriptor ring:\n");
1215 display_ring(priv
->dma_rx
, rxsize
);
1219 while (!priv
->hw
->desc
->get_rx_owner(p
)) {
1227 next_entry
= (++priv
->cur_rx
) % rxsize
;
1228 p_next
= priv
->dma_rx
+ next_entry
;
1231 /* read the status of the incoming frame */
1232 status
= (priv
->hw
->desc
->rx_status(&priv
->dev
->stats
,
1234 if (unlikely(status
== discard_frame
))
1235 priv
->dev
->stats
.rx_errors
++;
1237 struct sk_buff
*skb
;
1238 /* Length should omit the CRC */
1239 int frame_len
= priv
->hw
->desc
->get_rx_frame_len(p
) - 4;
1241 #ifdef STMMAC_RX_DEBUG
1242 if (frame_len
> ETH_FRAME_LEN
)
1243 pr_debug("\tRX frame size %d, COE status: %d\n",
1246 if (netif_msg_hw(priv
))
1247 pr_debug("\tdesc: %p [entry %d] buff=0x%x\n",
1250 skb
= priv
->rx_skbuff
[entry
];
1251 if (unlikely(!skb
)) {
1252 pr_err("%s: Inconsistent Rx descriptor chain\n",
1254 priv
->dev
->stats
.rx_dropped
++;
1257 prefetch(skb
->data
- NET_IP_ALIGN
);
1258 priv
->rx_skbuff
[entry
] = NULL
;
1260 skb_put(skb
, frame_len
);
1261 dma_unmap_single(priv
->device
,
1262 priv
->rx_skbuff_dma
[entry
],
1263 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
1264 #ifdef STMMAC_RX_DEBUG
1265 if (netif_msg_pktdata(priv
)) {
1266 pr_info(" frame received (%dbytes)", frame_len
);
1267 print_pkt(skb
->data
, frame_len
);
1270 skb
->protocol
= eth_type_trans(skb
, priv
->dev
);
1272 if (unlikely(status
== csum_none
)) {
1273 /* always for the old mac 10/100 */
1274 skb
->ip_summed
= CHECKSUM_NONE
;
1275 netif_receive_skb(skb
);
1277 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1278 napi_gro_receive(&priv
->napi
, skb
);
1281 priv
->dev
->stats
.rx_packets
++;
1282 priv
->dev
->stats
.rx_bytes
+= frame_len
;
1283 priv
->dev
->last_rx
= jiffies
;
1286 p
= p_next
; /* use prefetched values */
1289 stmmac_rx_refill(priv
);
1291 priv
->xstats
.rx_pkt_n
+= count
;
1297 * stmmac_poll - stmmac poll method (NAPI)
1298 * @napi : pointer to the napi structure.
1299 * @budget : maximum number of packets that the current CPU can receive from
1302 * This function implements the the reception process.
1303 * Also it runs the TX completion thread
1305 static int stmmac_poll(struct napi_struct
*napi
, int budget
)
1307 struct stmmac_priv
*priv
= container_of(napi
, struct stmmac_priv
, napi
);
1310 priv
->xstats
.poll_n
++;
1312 work_done
= stmmac_rx(priv
, budget
);
1314 if (work_done
< budget
) {
1315 napi_complete(napi
);
1316 stmmac_enable_irq(priv
);
1323 * @dev : Pointer to net device structure
1324 * Description: this function is called when a packet transmission fails to
1325 * complete within a reasonable tmrate. The driver will mark the error in the
1326 * netdev structure and arrange for the device to be reset to a sane state
1327 * in order to transmit a new packet.
1329 static void stmmac_tx_timeout(struct net_device
*dev
)
1331 struct stmmac_priv
*priv
= netdev_priv(dev
);
1333 /* Clear Tx resources and restart transmitting again */
1334 stmmac_tx_err(priv
);
1338 /* Configuration changes (passed on by ifconfig) */
1339 static int stmmac_config(struct net_device
*dev
, struct ifmap
*map
)
1341 if (dev
->flags
& IFF_UP
) /* can't act on a running interface */
1344 /* Don't allow changing the I/O address */
1345 if (map
->base_addr
!= dev
->base_addr
) {
1346 pr_warning("%s: can't change I/O address\n", dev
->name
);
1350 /* Don't allow changing the IRQ */
1351 if (map
->irq
!= dev
->irq
) {
1352 pr_warning("%s: can't change IRQ number %d\n",
1353 dev
->name
, dev
->irq
);
1357 /* ignore other fields */
1362 * stmmac_multicast_list - entry point for multicast addressing
1363 * @dev : pointer to the device structure
1365 * This function is a driver entry point which gets called by the kernel
1366 * whenever multicast addresses must be enabled/disabled.
1370 static void stmmac_multicast_list(struct net_device
*dev
)
1372 struct stmmac_priv
*priv
= netdev_priv(dev
);
1374 spin_lock(&priv
->lock
);
1375 priv
->hw
->mac
->set_filter(dev
);
1376 spin_unlock(&priv
->lock
);
1381 * stmmac_change_mtu - entry point to change MTU size for the device.
1382 * @dev : device pointer.
1383 * @new_mtu : the new MTU size for the device.
1384 * Description: the Maximum Transfer Unit (MTU) is used by the network layer
1385 * to drive packet transmission. Ethernet has an MTU of 1500 octets
1386 * (ETH_DATA_LEN). This value can be changed with ifconfig.
1388 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1391 static int stmmac_change_mtu(struct net_device
*dev
, int new_mtu
)
1393 struct stmmac_priv
*priv
= netdev_priv(dev
);
1396 if (netif_running(dev
)) {
1397 pr_err("%s: must be stopped to change its MTU\n", dev
->name
);
1402 max_mtu
= JUMBO_LEN
;
1404 max_mtu
= ETH_DATA_LEN
;
1406 if ((new_mtu
< 46) || (new_mtu
> max_mtu
)) {
1407 pr_err("%s: invalid MTU, max MTU is: %d\n", dev
->name
, max_mtu
);
1416 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
)
1418 struct net_device
*dev
= (struct net_device
*)dev_id
;
1419 struct stmmac_priv
*priv
= netdev_priv(dev
);
1421 if (unlikely(!dev
)) {
1422 pr_err("%s: invalid dev pointer\n", __func__
);
1426 if (priv
->is_gmac
) {
1427 unsigned long ioaddr
= dev
->base_addr
;
1428 /* To handle GMAC own interrupts */
1429 priv
->hw
->mac
->host_irq_status(ioaddr
);
1432 stmmac_dma_interrupt(priv
);
1437 #ifdef CONFIG_NET_POLL_CONTROLLER
1438 /* Polling receive - used by NETCONSOLE and other diagnostic tools
1439 * to allow network I/O with interrupts disabled. */
1440 static void stmmac_poll_controller(struct net_device
*dev
)
1442 disable_irq(dev
->irq
);
1443 stmmac_interrupt(dev
->irq
, dev
);
1444 enable_irq(dev
->irq
);
1449 * stmmac_ioctl - Entry point for the Ioctl
1450 * @dev: Device pointer.
1451 * @rq: An IOCTL specefic structure, that can contain a pointer to
1452 * a proprietary structure used to pass information to the driver.
1453 * @cmd: IOCTL command
1455 * Currently there are no special functionality supported in IOCTL, just the
1456 * phy_mii_ioctl(...) can be invoked.
1458 static int stmmac_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1460 struct stmmac_priv
*priv
= netdev_priv(dev
);
1461 int ret
= -EOPNOTSUPP
;
1463 if (!netif_running(dev
))
1473 spin_lock(&priv
->lock
);
1474 ret
= phy_mii_ioctl(priv
->phydev
, if_mii(rq
), cmd
);
1475 spin_unlock(&priv
->lock
);
1482 #ifdef STMMAC_VLAN_TAG_USED
1483 static void stmmac_vlan_rx_register(struct net_device
*dev
,
1484 struct vlan_group
*grp
)
1486 struct stmmac_priv
*priv
= netdev_priv(dev
);
1488 DBG(probe
, INFO
, "%s: Setting vlgrp to %p\n", dev
->name
, grp
);
1490 spin_lock(&priv
->lock
);
1492 spin_unlock(&priv
->lock
);
1498 static const struct net_device_ops stmmac_netdev_ops
= {
1499 .ndo_open
= stmmac_open
,
1500 .ndo_start_xmit
= stmmac_xmit
,
1501 .ndo_stop
= stmmac_release
,
1502 .ndo_change_mtu
= stmmac_change_mtu
,
1503 .ndo_set_multicast_list
= stmmac_multicast_list
,
1504 .ndo_tx_timeout
= stmmac_tx_timeout
,
1505 .ndo_do_ioctl
= stmmac_ioctl
,
1506 .ndo_set_config
= stmmac_config
,
1507 #ifdef STMMAC_VLAN_TAG_USED
1508 .ndo_vlan_rx_register
= stmmac_vlan_rx_register
,
1510 #ifdef CONFIG_NET_POLL_CONTROLLER
1511 .ndo_poll_controller
= stmmac_poll_controller
,
1513 .ndo_set_mac_address
= eth_mac_addr
,
1517 * stmmac_probe - Initialization of the adapter .
1518 * @dev : device pointer
1519 * Description: The function initializes the network device structure for
1520 * the STMMAC driver. It also calls the low level routines
1521 * in order to init the HW (i.e. the DMA engine)
1523 static int stmmac_probe(struct net_device
*dev
)
1526 struct stmmac_priv
*priv
= netdev_priv(dev
);
1530 dev
->netdev_ops
= &stmmac_netdev_ops
;
1531 stmmac_set_ethtool_ops(dev
);
1533 dev
->features
|= (NETIF_F_SG
| NETIF_F_HW_CSUM
| NETIF_F_HIGHDMA
);
1534 dev
->watchdog_timeo
= msecs_to_jiffies(watchdog
);
1535 #ifdef STMMAC_VLAN_TAG_USED
1536 /* Both mac100 and gmac support receive VLAN tag detection */
1537 dev
->features
|= NETIF_F_HW_VLAN_RX
;
1539 priv
->msg_enable
= netif_msg_init(debug
, default_msg_level
);
1545 priv
->flow_ctrl
= FLOW_AUTO
; /* RX/TX pause on */
1547 priv
->pause
= pause
;
1548 netif_napi_add(dev
, &priv
->napi
, stmmac_poll
, 64);
1550 /* Get the MAC address */
1551 priv
->hw
->mac
->get_umac_addr(dev
->base_addr
, dev
->dev_addr
, 0);
1553 if (!is_valid_ether_addr(dev
->dev_addr
))
1554 pr_warning("\tno valid MAC address;"
1555 "please, use ifconfig or nwhwconfig!\n");
1557 ret
= register_netdev(dev
);
1559 pr_err("%s: ERROR %i registering the device\n",
1564 DBG(probe
, DEBUG
, "%s: Scatter/Gather: %s - HW checksums: %s\n",
1565 dev
->name
, (dev
->features
& NETIF_F_SG
) ? "on" : "off",
1566 (dev
->features
& NETIF_F_HW_CSUM
) ? "on" : "off");
1568 spin_lock_init(&priv
->lock
);
1574 * stmmac_mac_device_setup
1575 * @dev : device pointer
1576 * Description: select and initialise the mac device (mac100 or Gmac).
1578 static int stmmac_mac_device_setup(struct net_device
*dev
)
1580 struct stmmac_priv
*priv
= netdev_priv(dev
);
1581 unsigned long ioaddr
= dev
->base_addr
;
1583 struct mac_device_info
*device
;
1586 device
= dwmac1000_setup(ioaddr
);
1588 device
= dwmac100_setup(ioaddr
);
1595 priv
->wolenabled
= priv
->hw
->pmt
; /* PMT supported */
1596 if (priv
->wolenabled
== PMT_SUPPORTED
)
1597 priv
->wolopts
= WAKE_MAGIC
; /* Magic Frame */
1602 static int stmmacphy_dvr_probe(struct platform_device
*pdev
)
1604 struct plat_stmmacphy_data
*plat_dat
= pdev
->dev
.platform_data
;
1606 pr_debug("stmmacphy_dvr_probe: added phy for bus %d\n",
1612 static int stmmacphy_dvr_remove(struct platform_device
*pdev
)
1617 static struct platform_driver stmmacphy_driver
= {
1619 .name
= PHY_RESOURCE_NAME
,
1621 .probe
= stmmacphy_dvr_probe
,
1622 .remove
= stmmacphy_dvr_remove
,
1626 * stmmac_associate_phy
1627 * @dev: pointer to device structure
1628 * @data: points to the private structure.
1629 * Description: Scans through all the PHYs we have registered and checks if
1630 * any are associated with our MAC. If so, then just fill in
1631 * the blanks in our local context structure
1633 static int stmmac_associate_phy(struct device
*dev
, void *data
)
1635 struct stmmac_priv
*priv
= (struct stmmac_priv
*)data
;
1636 struct plat_stmmacphy_data
*plat_dat
= dev
->platform_data
;
1638 DBG(probe
, DEBUG
, "%s: checking phy for bus %d\n", __func__
,
1641 /* Check that this phy is for the MAC being initialised */
1642 if (priv
->bus_id
!= plat_dat
->bus_id
)
1645 /* OK, this PHY is connected to the MAC.
1646 Go ahead and get the parameters */
1647 DBG(probe
, DEBUG
, "%s: OK. Found PHY config\n", __func__
);
1649 platform_get_irq_byname(to_platform_device(dev
), "phyirq");
1650 DBG(probe
, DEBUG
, "%s: PHY irq on bus %d is %d\n", __func__
,
1651 plat_dat
->bus_id
, priv
->phy_irq
);
1653 /* Override with kernel parameters if supplied XXX CRS XXX
1654 * this needs to have multiple instances */
1655 if ((phyaddr
>= 0) && (phyaddr
<= 31))
1656 plat_dat
->phy_addr
= phyaddr
;
1658 priv
->phy_addr
= plat_dat
->phy_addr
;
1659 priv
->phy_mask
= plat_dat
->phy_mask
;
1660 priv
->phy_interface
= plat_dat
->interface
;
1661 priv
->phy_reset
= plat_dat
->phy_reset
;
1663 DBG(probe
, DEBUG
, "%s: exiting\n", __func__
);
1664 return 1; /* forces exit of driver_for_each_device() */
1669 * @pdev: platform device pointer
1670 * Description: the driver is initialized through platform_device.
1672 static int stmmac_dvr_probe(struct platform_device
*pdev
)
1675 struct resource
*res
;
1676 unsigned int *addr
= NULL
;
1677 struct net_device
*ndev
= NULL
;
1678 struct stmmac_priv
*priv
;
1679 struct plat_stmmacenet_data
*plat_dat
;
1681 pr_info("STMMAC driver:\n\tplatform registration... ");
1682 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1689 if (!request_mem_region(res
->start
, resource_size(res
),
1691 pr_err("%s: ERROR: memory allocation failed"
1692 "cannot get the I/O addr 0x%x\n",
1693 __func__
, (unsigned int)res
->start
);
1698 addr
= ioremap(res
->start
, resource_size(res
));
1700 pr_err("%s: ERROR: memory mapping failed\n", __func__
);
1705 ndev
= alloc_etherdev(sizeof(struct stmmac_priv
));
1707 pr_err("%s: ERROR: allocating the device\n", __func__
);
1712 SET_NETDEV_DEV(ndev
, &pdev
->dev
);
1714 /* Get the MAC information */
1715 ndev
->irq
= platform_get_irq_byname(pdev
, "macirq");
1716 if (ndev
->irq
== -ENXIO
) {
1717 pr_err("%s: ERROR: MAC IRQ configuration "
1718 "information not found\n", __func__
);
1723 priv
= netdev_priv(ndev
);
1724 priv
->device
= &(pdev
->dev
);
1726 plat_dat
= pdev
->dev
.platform_data
;
1727 priv
->bus_id
= plat_dat
->bus_id
;
1728 priv
->pbl
= plat_dat
->pbl
; /* TLI */
1729 priv
->is_gmac
= plat_dat
->has_gmac
; /* GMAC is on board */
1731 platform_set_drvdata(pdev
, ndev
);
1733 /* Set the I/O base addr */
1734 ndev
->base_addr
= (unsigned long)addr
;
1736 /* Verify embedded resource for the platform */
1737 ret
= stmmac_claim_resource(pdev
);
1741 /* MAC HW revice detection */
1742 ret
= stmmac_mac_device_setup(ndev
);
1746 /* Network Device Registration */
1747 ret
= stmmac_probe(ndev
);
1751 /* associate a PHY - it is provided by another platform bus */
1752 if (!driver_for_each_device
1753 (&(stmmacphy_driver
.driver
), NULL
, (void *)priv
,
1754 stmmac_associate_phy
)) {
1755 pr_err("No PHY device is associated with this MAC!\n");
1760 priv
->fix_mac_speed
= plat_dat
->fix_mac_speed
;
1761 priv
->bus_setup
= plat_dat
->bus_setup
;
1762 priv
->bsp_priv
= plat_dat
->bsp_priv
;
1764 pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n"
1765 "\tIO base addr: 0x%08x)\n", ndev
->name
, pdev
->name
,
1766 pdev
->id
, ndev
->irq
, (unsigned int)addr
);
1768 /* MDIO bus Registration */
1769 pr_debug("\tMDIO bus (id: %d)...", priv
->bus_id
);
1770 ret
= stmmac_mdio_register(ndev
);
1773 pr_debug("registered!\n");
1777 platform_set_drvdata(pdev
, NULL
);
1778 release_mem_region(res
->start
, resource_size(res
));
1788 * @pdev: platform device pointer
1789 * Description: this function resets the TX/RX processes, disables the MAC RX/TX
1790 * changes the link status, releases the DMA descriptor rings,
1791 * unregisters the MDIO bus and unmaps the allocated memory.
1793 static int stmmac_dvr_remove(struct platform_device
*pdev
)
1795 struct net_device
*ndev
= platform_get_drvdata(pdev
);
1796 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1797 struct resource
*res
;
1799 pr_info("%s:\n\tremoving driver", __func__
);
1801 priv
->hw
->dma
->stop_rx(ndev
->base_addr
);
1802 priv
->hw
->dma
->stop_tx(ndev
->base_addr
);
1804 stmmac_mac_disable_rx(ndev
->base_addr
);
1805 stmmac_mac_disable_tx(ndev
->base_addr
);
1807 netif_carrier_off(ndev
);
1809 stmmac_mdio_unregister(ndev
);
1811 platform_set_drvdata(pdev
, NULL
);
1812 unregister_netdev(ndev
);
1814 iounmap((void *)ndev
->base_addr
);
1815 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1816 release_mem_region(res
->start
, resource_size(res
));
1824 static int stmmac_suspend(struct platform_device
*pdev
, pm_message_t state
)
1826 struct net_device
*dev
= platform_get_drvdata(pdev
);
1827 struct stmmac_priv
*priv
= netdev_priv(dev
);
1830 if (!dev
|| !netif_running(dev
))
1833 spin_lock(&priv
->lock
);
1835 if (state
.event
== PM_EVENT_SUSPEND
) {
1836 netif_device_detach(dev
);
1837 netif_stop_queue(dev
);
1839 phy_stop(priv
->phydev
);
1841 #ifdef CONFIG_STMMAC_TIMER
1842 priv
->tm
->timer_stop();
1843 if (likely(priv
->tm
->enable
))
1846 napi_disable(&priv
->napi
);
1848 /* Stop TX/RX DMA */
1849 priv
->hw
->dma
->stop_tx(dev
->base_addr
);
1850 priv
->hw
->dma
->stop_rx(dev
->base_addr
);
1851 /* Clear the Rx/Tx descriptors */
1852 priv
->hw
->desc
->init_rx_desc(priv
->dma_rx
, priv
->dma_rx_size
,
1854 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
1856 stmmac_mac_disable_tx(dev
->base_addr
);
1858 if (device_may_wakeup(&(pdev
->dev
))) {
1859 /* Enable Power down mode by programming the PMT regs */
1860 if (priv
->wolenabled
== PMT_SUPPORTED
)
1861 priv
->hw
->mac
->pmt(dev
->base_addr
,
1864 stmmac_mac_disable_rx(dev
->base_addr
);
1868 /* Although this can appear slightly redundant it actually
1869 * makes fast the standby operation and guarantees the driver
1870 * working if hibernation is on media. */
1871 stmmac_release(dev
);
1874 spin_unlock(&priv
->lock
);
1878 static int stmmac_resume(struct platform_device
*pdev
)
1880 struct net_device
*dev
= platform_get_drvdata(pdev
);
1881 struct stmmac_priv
*priv
= netdev_priv(dev
);
1882 unsigned long ioaddr
= dev
->base_addr
;
1884 if (!netif_running(dev
))
1887 spin_lock(&priv
->lock
);
1889 if (priv
->shutdown
) {
1890 /* Re-open the interface and re-init the MAC/DMA
1896 /* Power Down bit, into the PM register, is cleared
1897 * automatically as soon as a magic packet or a Wake-up frame
1898 * is received. Anyway, it's better to manually clear
1899 * this bit because it can generate problems while resuming
1900 * from another devices (e.g. serial console). */
1901 if (device_may_wakeup(&(pdev
->dev
)))
1902 if (priv
->wolenabled
== PMT_SUPPORTED
)
1903 priv
->hw
->mac
->pmt(dev
->base_addr
, 0);
1905 netif_device_attach(dev
);
1907 /* Enable the MAC and DMA */
1908 stmmac_mac_enable_rx(ioaddr
);
1909 stmmac_mac_enable_tx(ioaddr
);
1910 priv
->hw
->dma
->start_tx(ioaddr
);
1911 priv
->hw
->dma
->start_rx(ioaddr
);
1913 #ifdef CONFIG_STMMAC_TIMER
1914 priv
->tm
->timer_start(tmrate
);
1916 napi_enable(&priv
->napi
);
1919 phy_start(priv
->phydev
);
1921 netif_start_queue(dev
);
1924 spin_unlock(&priv
->lock
);
1929 static struct platform_driver stmmac_driver
= {
1931 .name
= STMMAC_RESOURCE_NAME
,
1933 .probe
= stmmac_dvr_probe
,
1934 .remove
= stmmac_dvr_remove
,
1936 .suspend
= stmmac_suspend
,
1937 .resume
= stmmac_resume
,
1943 * stmmac_init_module - Entry point for the driver
1944 * Description: This function is the entry point for the driver.
1946 static int __init
stmmac_init_module(void)
1950 if (platform_driver_register(&stmmacphy_driver
)) {
1951 pr_err("No PHY devices registered!\n");
1955 ret
= platform_driver_register(&stmmac_driver
);
1960 * stmmac_cleanup_module - Cleanup routine for the driver
1961 * Description: This function is the cleanup routine for the driver.
1963 static void __exit
stmmac_cleanup_module(void)
1965 platform_driver_unregister(&stmmacphy_driver
);
1966 platform_driver_unregister(&stmmac_driver
);
1970 static int __init
stmmac_cmdline_opt(char *str
)
1976 while ((opt
= strsep(&str
, ",")) != NULL
) {
1977 if (!strncmp(opt
, "debug:", 6))
1978 strict_strtoul(opt
+ 6, 0, (unsigned long *)&debug
);
1979 else if (!strncmp(opt
, "phyaddr:", 8))
1980 strict_strtoul(opt
+ 8, 0, (unsigned long *)&phyaddr
);
1981 else if (!strncmp(opt
, "dma_txsize:", 11))
1982 strict_strtoul(opt
+ 11, 0,
1983 (unsigned long *)&dma_txsize
);
1984 else if (!strncmp(opt
, "dma_rxsize:", 11))
1985 strict_strtoul(opt
+ 11, 0,
1986 (unsigned long *)&dma_rxsize
);
1987 else if (!strncmp(opt
, "buf_sz:", 7))
1988 strict_strtoul(opt
+ 7, 0, (unsigned long *)&buf_sz
);
1989 else if (!strncmp(opt
, "tc:", 3))
1990 strict_strtoul(opt
+ 3, 0, (unsigned long *)&tc
);
1991 else if (!strncmp(opt
, "tx_coe:", 7))
1992 strict_strtoul(opt
+ 7, 0, (unsigned long *)&tx_coe
);
1993 else if (!strncmp(opt
, "watchdog:", 9))
1994 strict_strtoul(opt
+ 9, 0, (unsigned long *)&watchdog
);
1995 else if (!strncmp(opt
, "flow_ctrl:", 10))
1996 strict_strtoul(opt
+ 10, 0,
1997 (unsigned long *)&flow_ctrl
);
1998 else if (!strncmp(opt
, "pause:", 6))
1999 strict_strtoul(opt
+ 6, 0, (unsigned long *)&pause
);
2000 #ifdef CONFIG_STMMAC_TIMER
2001 else if (!strncmp(opt
, "tmrate:", 7))
2002 strict_strtoul(opt
+ 7, 0, (unsigned long *)&tmrate
);
2008 __setup("stmmaceth=", stmmac_cmdline_opt
);
2011 module_init(stmmac_init_module
);
2012 module_exit(stmmac_cleanup_module
);
2014 MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet driver");
2015 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
2016 MODULE_LICENSE("GPL");