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 static const u32 default_msg_level
= (NETIF_MSG_DRV
| NETIF_MSG_PROBE
|
138 NETIF_MSG_LINK
| NETIF_MSG_IFUP
|
139 NETIF_MSG_IFDOWN
| NETIF_MSG_TIMER
);
141 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
);
142 static netdev_tx_t
stmmac_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
145 * stmmac_verify_args - verify the driver parameters.
146 * Description: it verifies if some wrong parameter is passed to the driver.
147 * Note that wrong parameters are replaced with the default values.
149 static void stmmac_verify_args(void)
151 if (unlikely(watchdog
< 0))
153 if (unlikely(dma_rxsize
< 0))
154 dma_rxsize
= DMA_RX_SIZE
;
155 if (unlikely(dma_txsize
< 0))
156 dma_txsize
= DMA_TX_SIZE
;
157 if (unlikely((buf_sz
< DMA_BUFFER_SIZE
) || (buf_sz
> BUF_SIZE_16KiB
)))
158 buf_sz
= DMA_BUFFER_SIZE
;
159 if (unlikely(flow_ctrl
> 1))
160 flow_ctrl
= FLOW_AUTO
;
161 else if (likely(flow_ctrl
< 0))
162 flow_ctrl
= FLOW_OFF
;
163 if (unlikely((pause
< 0) || (pause
> 0xffff)))
167 #if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG)
168 static void print_pkt(unsigned char *buf
, int len
)
171 pr_info("len = %d byte, buf addr: 0x%p", len
, buf
);
172 for (j
= 0; j
< len
; j
++) {
174 pr_info("\n %03x:", j
);
175 pr_info(" %02x", buf
[j
]);
181 /* minimum number of free TX descriptors required to wake up TX process */
182 #define STMMAC_TX_THRESH(x) (x->dma_tx_size/4)
184 static inline u32
stmmac_tx_avail(struct stmmac_priv
*priv
)
186 return priv
->dirty_tx
+ priv
->dma_tx_size
- priv
->cur_tx
- 1;
189 /* On some ST platforms, some HW system configuraton registers have to be
190 * set according to the link speed negotiated.
192 static inline void stmmac_hw_fix_mac_speed(struct stmmac_priv
*priv
)
194 struct phy_device
*phydev
= priv
->phydev
;
196 if (likely(priv
->plat
->fix_mac_speed
))
197 priv
->plat
->fix_mac_speed(priv
->plat
->bsp_priv
,
203 * @dev: net device structure
204 * Description: it adjusts the link parameters.
206 static void stmmac_adjust_link(struct net_device
*dev
)
208 struct stmmac_priv
*priv
= netdev_priv(dev
);
209 struct phy_device
*phydev
= priv
->phydev
;
212 unsigned int fc
= priv
->flow_ctrl
, pause_time
= priv
->pause
;
217 DBG(probe
, DEBUG
, "stmmac_adjust_link: called. address %d link %d\n",
218 phydev
->addr
, phydev
->link
);
220 spin_lock_irqsave(&priv
->lock
, flags
);
222 u32 ctrl
= readl(priv
->ioaddr
+ MAC_CTRL_REG
);
224 /* Now we make sure that we can be in full duplex mode.
225 * If not, we operate in half-duplex mode. */
226 if (phydev
->duplex
!= priv
->oldduplex
) {
228 if (!(phydev
->duplex
))
229 ctrl
&= ~priv
->hw
->link
.duplex
;
231 ctrl
|= priv
->hw
->link
.duplex
;
232 priv
->oldduplex
= phydev
->duplex
;
234 /* Flow Control operation */
236 priv
->hw
->mac
->flow_ctrl(priv
->ioaddr
, phydev
->duplex
,
239 if (phydev
->speed
!= priv
->speed
) {
241 switch (phydev
->speed
) {
243 if (likely(priv
->plat
->has_gmac
))
244 ctrl
&= ~priv
->hw
->link
.port
;
245 stmmac_hw_fix_mac_speed(priv
);
249 if (priv
->plat
->has_gmac
) {
250 ctrl
|= priv
->hw
->link
.port
;
251 if (phydev
->speed
== SPEED_100
) {
252 ctrl
|= priv
->hw
->link
.speed
;
254 ctrl
&= ~(priv
->hw
->link
.speed
);
257 ctrl
&= ~priv
->hw
->link
.port
;
259 stmmac_hw_fix_mac_speed(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
, priv
->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
->plat
->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_enable_mac(void __iomem
*ioaddr
)
350 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
352 value
|= MAC_RNABLE_RX
| MAC_ENABLE_TX
;
353 writel(value
, ioaddr
+ MAC_CTRL_REG
);
356 static inline void stmmac_disable_mac(void __iomem
*ioaddr
)
358 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
360 value
&= ~(MAC_ENABLE_TX
| MAC_RNABLE_RX
);
361 writel(value
, ioaddr
+ MAC_CTRL_REG
);
366 * @p: pointer to the ring.
367 * @size: size of the ring.
368 * Description: display all the descriptors within the ring.
370 static void display_ring(struct dma_desc
*p
, int size
)
378 for (i
= 0; i
< size
; i
++) {
379 struct tmp_s
*x
= (struct tmp_s
*)(p
+ i
);
380 pr_info("\t%d [0x%x]: DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
381 i
, (unsigned int)virt_to_phys(&p
[i
]),
382 (unsigned int)(x
->a
), (unsigned int)((x
->a
) >> 32),
389 * init_dma_desc_rings - init the RX/TX descriptor rings
390 * @dev: net device structure
391 * Description: this function initializes the DMA RX/TX descriptors
392 * and allocates the socket buffers.
394 static void init_dma_desc_rings(struct net_device
*dev
)
397 struct stmmac_priv
*priv
= netdev_priv(dev
);
399 unsigned int txsize
= priv
->dma_tx_size
;
400 unsigned int rxsize
= priv
->dma_rx_size
;
401 unsigned int bfsize
= priv
->dma_buf_sz
;
402 int buff2_needed
= 0, dis_ic
= 0;
404 /* Set the Buffer size according to the MTU;
405 * indeed, in case of jumbo we need to bump-up the buffer sizes.
407 if (unlikely(dev
->mtu
>= BUF_SIZE_8KiB
))
408 bfsize
= BUF_SIZE_16KiB
;
409 else if (unlikely(dev
->mtu
>= BUF_SIZE_4KiB
))
410 bfsize
= BUF_SIZE_8KiB
;
411 else if (unlikely(dev
->mtu
>= BUF_SIZE_2KiB
))
412 bfsize
= BUF_SIZE_4KiB
;
413 else if (unlikely(dev
->mtu
>= DMA_BUFFER_SIZE
))
414 bfsize
= BUF_SIZE_2KiB
;
416 bfsize
= DMA_BUFFER_SIZE
;
418 #ifdef CONFIG_STMMAC_TIMER
419 /* Disable interrupts on completion for the reception if timer is on */
420 if (likely(priv
->tm
->enable
))
423 /* If the MTU exceeds 8k so use the second buffer in the chain */
424 if (bfsize
>= BUF_SIZE_8KiB
)
427 DBG(probe
, INFO
, "stmmac: txsize %d, rxsize %d, bfsize %d\n",
428 txsize
, rxsize
, bfsize
);
430 priv
->rx_skbuff_dma
= kmalloc(rxsize
* sizeof(dma_addr_t
), GFP_KERNEL
);
432 kmalloc(sizeof(struct sk_buff
*) * rxsize
, GFP_KERNEL
);
434 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
436 sizeof(struct dma_desc
),
439 priv
->tx_skbuff
= kmalloc(sizeof(struct sk_buff
*) * txsize
,
442 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
444 sizeof(struct dma_desc
),
448 if ((priv
->dma_rx
== NULL
) || (priv
->dma_tx
== NULL
)) {
449 pr_err("%s:ERROR allocating the DMA Tx/Rx desc\n", __func__
);
453 DBG(probe
, INFO
, "stmmac (%s) DMA desc rings: virt addr (Rx %p, "
454 "Tx %p)\n\tDMA phy addr (Rx 0x%08x, Tx 0x%08x)\n",
455 dev
->name
, priv
->dma_rx
, priv
->dma_tx
,
456 (unsigned int)priv
->dma_rx_phy
, (unsigned int)priv
->dma_tx_phy
);
458 /* RX INITIALIZATION */
459 DBG(probe
, INFO
, "stmmac: SKB addresses:\n"
460 "skb\t\tskb data\tdma data\n");
462 for (i
= 0; i
< rxsize
; i
++) {
463 struct dma_desc
*p
= priv
->dma_rx
+ i
;
465 skb
= netdev_alloc_skb_ip_align(dev
, bfsize
);
466 if (unlikely(skb
== NULL
)) {
467 pr_err("%s: Rx init fails; skb is NULL\n", __func__
);
470 priv
->rx_skbuff
[i
] = skb
;
471 priv
->rx_skbuff_dma
[i
] = dma_map_single(priv
->device
, skb
->data
,
472 bfsize
, DMA_FROM_DEVICE
);
474 p
->des2
= priv
->rx_skbuff_dma
[i
];
475 if (unlikely(buff2_needed
))
476 p
->des3
= p
->des2
+ BUF_SIZE_8KiB
;
477 DBG(probe
, INFO
, "[%p]\t[%p]\t[%x]\n", priv
->rx_skbuff
[i
],
478 priv
->rx_skbuff
[i
]->data
, priv
->rx_skbuff_dma
[i
]);
481 priv
->dirty_rx
= (unsigned int)(i
- rxsize
);
482 priv
->dma_buf_sz
= bfsize
;
485 /* TX INITIALIZATION */
486 for (i
= 0; i
< txsize
; i
++) {
487 priv
->tx_skbuff
[i
] = NULL
;
488 priv
->dma_tx
[i
].des2
= 0;
493 /* Clear the Rx/Tx descriptors */
494 priv
->hw
->desc
->init_rx_desc(priv
->dma_rx
, rxsize
, dis_ic
);
495 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, txsize
);
497 if (netif_msg_hw(priv
)) {
498 pr_info("RX descriptor ring:\n");
499 display_ring(priv
->dma_rx
, rxsize
);
500 pr_info("TX descriptor ring:\n");
501 display_ring(priv
->dma_tx
, txsize
);
505 static void dma_free_rx_skbufs(struct stmmac_priv
*priv
)
509 for (i
= 0; i
< priv
->dma_rx_size
; i
++) {
510 if (priv
->rx_skbuff
[i
]) {
511 dma_unmap_single(priv
->device
, priv
->rx_skbuff_dma
[i
],
512 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
513 dev_kfree_skb_any(priv
->rx_skbuff
[i
]);
515 priv
->rx_skbuff
[i
] = NULL
;
519 static void dma_free_tx_skbufs(struct stmmac_priv
*priv
)
523 for (i
= 0; i
< priv
->dma_tx_size
; i
++) {
524 if (priv
->tx_skbuff
[i
] != NULL
) {
525 struct dma_desc
*p
= priv
->dma_tx
+ i
;
527 dma_unmap_single(priv
->device
, p
->des2
,
528 priv
->hw
->desc
->get_tx_len(p
),
530 dev_kfree_skb_any(priv
->tx_skbuff
[i
]);
531 priv
->tx_skbuff
[i
] = NULL
;
536 static void free_dma_desc_resources(struct stmmac_priv
*priv
)
538 /* Release the DMA TX/RX socket buffers */
539 dma_free_rx_skbufs(priv
);
540 dma_free_tx_skbufs(priv
);
542 /* Free the region of consistent memory previously allocated for
544 dma_free_coherent(priv
->device
,
545 priv
->dma_tx_size
* sizeof(struct dma_desc
),
546 priv
->dma_tx
, priv
->dma_tx_phy
);
547 dma_free_coherent(priv
->device
,
548 priv
->dma_rx_size
* sizeof(struct dma_desc
),
549 priv
->dma_rx
, priv
->dma_rx_phy
);
550 kfree(priv
->rx_skbuff_dma
);
551 kfree(priv
->rx_skbuff
);
552 kfree(priv
->tx_skbuff
);
556 * stmmac_dma_operation_mode - HW DMA operation mode
557 * @priv : pointer to the private device structure.
558 * Description: it sets the DMA operation mode: tx/rx DMA thresholds
559 * or Store-And-Forward capability.
561 static void stmmac_dma_operation_mode(struct stmmac_priv
*priv
)
563 if (likely((priv
->plat
->tx_coe
) && (!priv
->no_csum_insertion
))) {
564 /* In case of GMAC, SF mode has to be enabled
565 * to perform the TX COE. This depends on:
566 * 1) TX COE if actually supported
567 * 2) There is no bugged Jumbo frame support
568 * that needs to not insert csum in the TDES.
570 priv
->hw
->dma
->dma_mode(priv
->ioaddr
,
571 SF_DMA_MODE
, SF_DMA_MODE
);
574 priv
->hw
->dma
->dma_mode(priv
->ioaddr
, tc
, SF_DMA_MODE
);
579 * @priv: private driver structure
580 * Description: it reclaims resources after transmission completes.
582 static void stmmac_tx(struct stmmac_priv
*priv
)
584 unsigned int txsize
= priv
->dma_tx_size
;
586 while (priv
->dirty_tx
!= priv
->cur_tx
) {
588 unsigned int entry
= priv
->dirty_tx
% txsize
;
589 struct sk_buff
*skb
= priv
->tx_skbuff
[entry
];
590 struct dma_desc
*p
= priv
->dma_tx
+ entry
;
592 /* Check if the descriptor is owned by the DMA. */
593 if (priv
->hw
->desc
->get_tx_owner(p
))
596 /* Verify tx error by looking at the last segment */
597 last
= priv
->hw
->desc
->get_tx_ls(p
);
600 priv
->hw
->desc
->tx_status(&priv
->dev
->stats
,
603 if (likely(tx_error
== 0)) {
604 priv
->dev
->stats
.tx_packets
++;
605 priv
->xstats
.tx_pkt_n
++;
607 priv
->dev
->stats
.tx_errors
++;
609 TX_DBG("%s: curr %d, dirty %d\n", __func__
,
610 priv
->cur_tx
, priv
->dirty_tx
);
613 dma_unmap_single(priv
->device
, p
->des2
,
614 priv
->hw
->desc
->get_tx_len(p
),
616 if (unlikely(p
->des3
))
619 if (likely(skb
!= NULL
)) {
621 * If there's room in the queue (limit it to size)
622 * we add this skb back into the pool,
623 * if it's the right size.
625 if ((skb_queue_len(&priv
->rx_recycle
) <
626 priv
->dma_rx_size
) &&
627 skb_recycle_check(skb
, priv
->dma_buf_sz
))
628 __skb_queue_head(&priv
->rx_recycle
, skb
);
632 priv
->tx_skbuff
[entry
] = NULL
;
635 priv
->hw
->desc
->release_tx_desc(p
);
637 entry
= (++priv
->dirty_tx
) % txsize
;
639 if (unlikely(netif_queue_stopped(priv
->dev
) &&
640 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
))) {
641 netif_tx_lock(priv
->dev
);
642 if (netif_queue_stopped(priv
->dev
) &&
643 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
)) {
644 TX_DBG("%s: restart transmit\n", __func__
);
645 netif_wake_queue(priv
->dev
);
647 netif_tx_unlock(priv
->dev
);
651 static inline void stmmac_enable_irq(struct stmmac_priv
*priv
)
653 #ifdef CONFIG_STMMAC_TIMER
654 if (likely(priv
->tm
->enable
))
655 priv
->tm
->timer_start(tmrate
);
658 priv
->hw
->dma
->enable_dma_irq(priv
->ioaddr
);
661 static inline void stmmac_disable_irq(struct stmmac_priv
*priv
)
663 #ifdef CONFIG_STMMAC_TIMER
664 if (likely(priv
->tm
->enable
))
665 priv
->tm
->timer_stop();
668 priv
->hw
->dma
->disable_dma_irq(priv
->ioaddr
);
671 static int stmmac_has_work(struct stmmac_priv
*priv
)
673 unsigned int has_work
= 0;
674 int rxret
, tx_work
= 0;
676 rxret
= priv
->hw
->desc
->get_rx_owner(priv
->dma_rx
+
677 (priv
->cur_rx
% priv
->dma_rx_size
));
679 if (priv
->dirty_tx
!= priv
->cur_tx
)
682 if (likely(!rxret
|| tx_work
))
688 static inline void _stmmac_schedule(struct stmmac_priv
*priv
)
690 if (likely(stmmac_has_work(priv
))) {
691 stmmac_disable_irq(priv
);
692 napi_schedule(&priv
->napi
);
696 #ifdef CONFIG_STMMAC_TIMER
697 void stmmac_schedule(struct net_device
*dev
)
699 struct stmmac_priv
*priv
= netdev_priv(dev
);
701 priv
->xstats
.sched_timer_n
++;
703 _stmmac_schedule(priv
);
706 static void stmmac_no_timer_started(unsigned int x
)
710 static void stmmac_no_timer_stopped(void)
717 * @priv: pointer to the private device structure
718 * Description: it cleans the descriptors and restarts the transmission
721 static void stmmac_tx_err(struct stmmac_priv
*priv
)
724 netif_stop_queue(priv
->dev
);
726 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
727 dma_free_tx_skbufs(priv
);
728 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
731 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
733 priv
->dev
->stats
.tx_errors
++;
734 netif_wake_queue(priv
->dev
);
738 static void stmmac_dma_interrupt(struct stmmac_priv
*priv
)
742 status
= priv
->hw
->dma
->dma_interrupt(priv
->ioaddr
, &priv
->xstats
);
743 if (likely(status
== handle_tx_rx
))
744 _stmmac_schedule(priv
);
746 else if (unlikely(status
== tx_hard_error_bump_tc
)) {
747 /* Try to bump up the dma threshold on this failure */
748 if (unlikely(tc
!= SF_DMA_MODE
) && (tc
<= 256)) {
750 priv
->hw
->dma
->dma_mode(priv
->ioaddr
, tc
, SF_DMA_MODE
);
751 priv
->xstats
.threshold
= tc
;
753 } else if (unlikely(status
== tx_hard_error
))
758 * stmmac_open - open entry point of the driver
759 * @dev : pointer to the device structure.
761 * This function is the open entry point of the driver.
763 * 0 on success and an appropriate (-)ve integer as defined in errno.h
766 static int stmmac_open(struct net_device
*dev
)
768 struct stmmac_priv
*priv
= netdev_priv(dev
);
771 /* Check that the MAC address is valid. If its not, refuse
772 * to bring the device up. The user must specify an
773 * address using the following linux command:
774 * ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx */
775 if (!is_valid_ether_addr(dev
->dev_addr
)) {
776 random_ether_addr(dev
->dev_addr
);
777 pr_warning("%s: generated random MAC address %pM\n", dev
->name
,
781 stmmac_verify_args();
783 #ifdef CONFIG_STMMAC_TIMER
784 priv
->tm
= kzalloc(sizeof(struct stmmac_timer
*), GFP_KERNEL
);
785 if (unlikely(priv
->tm
== NULL
)) {
786 pr_err("%s: ERROR: timer memory alloc failed\n", __func__
);
789 priv
->tm
->freq
= tmrate
;
791 /* Test if the external timer can be actually used.
792 * In case of failure continue without timer. */
793 if (unlikely((stmmac_open_ext_timer(dev
, priv
->tm
)) < 0)) {
794 pr_warning("stmmaceth: cannot attach the external timer.\n");
796 priv
->tm
->timer_start
= stmmac_no_timer_started
;
797 priv
->tm
->timer_stop
= stmmac_no_timer_stopped
;
799 priv
->tm
->enable
= 1;
801 ret
= stmmac_init_phy(dev
);
803 pr_err("%s: Cannot attach to PHY (error: %d)\n", __func__
, ret
);
807 /* Create and initialize the TX/RX descriptors chains. */
808 priv
->dma_tx_size
= STMMAC_ALIGN(dma_txsize
);
809 priv
->dma_rx_size
= STMMAC_ALIGN(dma_rxsize
);
810 priv
->dma_buf_sz
= STMMAC_ALIGN(buf_sz
);
811 init_dma_desc_rings(dev
);
813 /* DMA initialization and SW reset */
814 ret
= priv
->hw
->dma
->init(priv
->ioaddr
, priv
->plat
->pbl
,
815 priv
->dma_tx_phy
, priv
->dma_rx_phy
);
817 pr_err("%s: DMA initialization failed\n", __func__
);
821 /* Copy the MAC addr into the HW */
822 priv
->hw
->mac
->set_umac_addr(priv
->ioaddr
, dev
->dev_addr
, 0);
823 /* If required, perform hw setup of the bus. */
824 if (priv
->plat
->bus_setup
)
825 priv
->plat
->bus_setup(priv
->ioaddr
);
826 /* Initialize the MAC Core */
827 priv
->hw
->mac
->core_init(priv
->ioaddr
);
829 priv
->rx_coe
= priv
->hw
->mac
->rx_coe(priv
->ioaddr
);
831 pr_info("stmmac: Rx Checksum Offload Engine supported\n");
832 if (priv
->plat
->tx_coe
)
833 pr_info("\tTX Checksum insertion supported\n");
835 /* Initialise the MMC (if present) to disable all interrupts. */
836 writel(0xffffffff, priv
->ioaddr
+ MMC_HIGH_INTR_MASK
);
837 writel(0xffffffff, priv
->ioaddr
+ MMC_LOW_INTR_MASK
);
839 /* Request the IRQ lines */
840 ret
= request_irq(dev
->irq
, stmmac_interrupt
,
841 IRQF_SHARED
, dev
->name
, dev
);
842 if (unlikely(ret
< 0)) {
843 pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
844 __func__
, dev
->irq
, ret
);
848 /* Enable the MAC Rx/Tx */
849 stmmac_enable_mac(priv
->ioaddr
);
851 /* Set the HW DMA mode and the COE */
852 stmmac_dma_operation_mode(priv
);
854 /* Extra statistics */
855 memset(&priv
->xstats
, 0, sizeof(struct stmmac_extra_stats
));
856 priv
->xstats
.threshold
= tc
;
858 /* Start the ball rolling... */
859 DBG(probe
, DEBUG
, "%s: DMA RX/TX processes started...\n", dev
->name
);
860 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
861 priv
->hw
->dma
->start_rx(priv
->ioaddr
);
863 #ifdef CONFIG_STMMAC_TIMER
864 priv
->tm
->timer_start(tmrate
);
866 /* Dump DMA/MAC registers */
867 if (netif_msg_hw(priv
)) {
868 priv
->hw
->mac
->dump_regs(priv
->ioaddr
);
869 priv
->hw
->dma
->dump_regs(priv
->ioaddr
);
873 phy_start(priv
->phydev
);
875 napi_enable(&priv
->napi
);
876 skb_queue_head_init(&priv
->rx_recycle
);
877 netif_start_queue(dev
);
882 #ifdef CONFIG_STMMAC_TIMER
886 phy_disconnect(priv
->phydev
);
892 * stmmac_release - close entry point of the driver
893 * @dev : device pointer.
895 * This is the stop entry point of the driver.
897 static int stmmac_release(struct net_device
*dev
)
899 struct stmmac_priv
*priv
= netdev_priv(dev
);
901 /* Stop and disconnect the PHY */
903 phy_stop(priv
->phydev
);
904 phy_disconnect(priv
->phydev
);
908 netif_stop_queue(dev
);
910 #ifdef CONFIG_STMMAC_TIMER
911 /* Stop and release the timer */
912 stmmac_close_ext_timer();
913 if (priv
->tm
!= NULL
)
916 napi_disable(&priv
->napi
);
917 skb_queue_purge(&priv
->rx_recycle
);
919 /* Free the IRQ lines */
920 free_irq(dev
->irq
, dev
);
922 /* Stop TX/RX DMA and clear the descriptors */
923 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
924 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
926 /* Release and free the Rx/Tx resources */
927 free_dma_desc_resources(priv
);
929 /* Disable the MAC Rx/Tx */
930 stmmac_disable_mac(priv
->ioaddr
);
932 netif_carrier_off(dev
);
938 * To perform emulated hardware segmentation on skb.
940 static int stmmac_sw_tso(struct stmmac_priv
*priv
, struct sk_buff
*skb
)
942 struct sk_buff
*segs
, *curr_skb
;
943 int gso_segs
= skb_shinfo(skb
)->gso_segs
;
945 /* Estimate the number of fragments in the worst case */
946 if (unlikely(stmmac_tx_avail(priv
) < gso_segs
)) {
947 netif_stop_queue(priv
->dev
);
948 TX_DBG(KERN_ERR
"%s: TSO BUG! Tx Ring full when queue awake\n",
950 if (stmmac_tx_avail(priv
) < gso_segs
)
951 return NETDEV_TX_BUSY
;
953 netif_wake_queue(priv
->dev
);
955 TX_DBG("\tstmmac_sw_tso: segmenting: skb %p (len %d)\n",
958 segs
= skb_gso_segment(skb
, priv
->dev
->features
& ~NETIF_F_TSO
);
965 TX_DBG("\t\tcurrent skb->len: %d, *curr %p,"
966 "*next %p\n", curr_skb
->len
, curr_skb
, segs
);
967 curr_skb
->next
= NULL
;
968 stmmac_xmit(curr_skb
, priv
->dev
);
977 static unsigned int stmmac_handle_jumbo_frames(struct sk_buff
*skb
,
978 struct net_device
*dev
,
981 struct stmmac_priv
*priv
= netdev_priv(dev
);
982 unsigned int nopaged_len
= skb_headlen(skb
);
983 unsigned int txsize
= priv
->dma_tx_size
;
984 unsigned int entry
= priv
->cur_tx
% txsize
;
985 struct dma_desc
*desc
= priv
->dma_tx
+ entry
;
987 if (nopaged_len
> BUF_SIZE_8KiB
) {
989 int buf2_size
= nopaged_len
- BUF_SIZE_8KiB
;
991 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
992 BUF_SIZE_8KiB
, DMA_TO_DEVICE
);
993 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
994 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, BUF_SIZE_8KiB
,
997 entry
= (++priv
->cur_tx
) % txsize
;
998 desc
= priv
->dma_tx
+ entry
;
1000 desc
->des2
= dma_map_single(priv
->device
,
1001 skb
->data
+ BUF_SIZE_8KiB
,
1002 buf2_size
, DMA_TO_DEVICE
);
1003 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
1004 priv
->hw
->desc
->prepare_tx_desc(desc
, 0, buf2_size
,
1006 priv
->hw
->desc
->set_tx_owner(desc
);
1007 priv
->tx_skbuff
[entry
] = NULL
;
1009 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1010 nopaged_len
, DMA_TO_DEVICE
);
1011 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
1012 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, nopaged_len
,
1020 * @skb : the socket buffer
1021 * @dev : device pointer
1022 * Description : Tx entry point of the driver.
1024 static netdev_tx_t
stmmac_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1026 struct stmmac_priv
*priv
= netdev_priv(dev
);
1027 unsigned int txsize
= priv
->dma_tx_size
;
1029 int i
, csum_insertion
= 0;
1030 int nfrags
= skb_shinfo(skb
)->nr_frags
;
1031 struct dma_desc
*desc
, *first
;
1033 if (unlikely(stmmac_tx_avail(priv
) < nfrags
+ 1)) {
1034 if (!netif_queue_stopped(dev
)) {
1035 netif_stop_queue(dev
);
1036 /* This is a hard error, log it. */
1037 pr_err("%s: BUG! Tx Ring full when queue awake\n",
1040 return NETDEV_TX_BUSY
;
1043 entry
= priv
->cur_tx
% txsize
;
1045 #ifdef STMMAC_XMIT_DEBUG
1046 if ((skb
->len
> ETH_FRAME_LEN
) || nfrags
)
1047 pr_info("stmmac xmit:\n"
1048 "\tskb addr %p - len: %d - nopaged_len: %d\n"
1049 "\tn_frags: %d - ip_summed: %d - %s gso\n",
1050 skb
, skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
,
1051 !skb_is_gso(skb
) ? "isn't" : "is");
1054 if (unlikely(skb_is_gso(skb
)))
1055 return stmmac_sw_tso(priv
, skb
);
1057 if (likely((skb
->ip_summed
== CHECKSUM_PARTIAL
))) {
1058 if (unlikely((!priv
->plat
->tx_coe
) ||
1059 (priv
->no_csum_insertion
)))
1060 skb_checksum_help(skb
);
1065 desc
= priv
->dma_tx
+ entry
;
1068 #ifdef STMMAC_XMIT_DEBUG
1069 if ((nfrags
> 0) || (skb
->len
> ETH_FRAME_LEN
))
1070 pr_debug("stmmac xmit: skb len: %d, nopaged_len: %d,\n"
1071 "\t\tn_frags: %d, ip_summed: %d\n",
1072 skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
);
1074 priv
->tx_skbuff
[entry
] = skb
;
1075 if (unlikely(skb
->len
>= BUF_SIZE_4KiB
)) {
1076 entry
= stmmac_handle_jumbo_frames(skb
, dev
, csum_insertion
);
1077 desc
= priv
->dma_tx
+ entry
;
1079 unsigned int nopaged_len
= skb_headlen(skb
);
1080 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1081 nopaged_len
, DMA_TO_DEVICE
);
1082 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, nopaged_len
,
1086 for (i
= 0; i
< nfrags
; i
++) {
1087 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
1088 int len
= frag
->size
;
1090 entry
= (++priv
->cur_tx
) % txsize
;
1091 desc
= priv
->dma_tx
+ entry
;
1093 TX_DBG("\t[entry %d] segment len: %d\n", entry
, len
);
1094 desc
->des2
= dma_map_page(priv
->device
, frag
->page
,
1096 len
, DMA_TO_DEVICE
);
1097 priv
->tx_skbuff
[entry
] = NULL
;
1098 priv
->hw
->desc
->prepare_tx_desc(desc
, 0, len
, csum_insertion
);
1099 priv
->hw
->desc
->set_tx_owner(desc
);
1102 /* Interrupt on completition only for the latest segment */
1103 priv
->hw
->desc
->close_tx_desc(desc
);
1105 #ifdef CONFIG_STMMAC_TIMER
1106 /* Clean IC while using timer */
1107 if (likely(priv
->tm
->enable
))
1108 priv
->hw
->desc
->clear_tx_ic(desc
);
1110 /* To avoid raise condition */
1111 priv
->hw
->desc
->set_tx_owner(first
);
1115 #ifdef STMMAC_XMIT_DEBUG
1116 if (netif_msg_pktdata(priv
)) {
1117 pr_info("stmmac xmit: current=%d, dirty=%d, entry=%d, "
1118 "first=%p, nfrags=%d\n",
1119 (priv
->cur_tx
% txsize
), (priv
->dirty_tx
% txsize
),
1120 entry
, first
, nfrags
);
1121 display_ring(priv
->dma_tx
, txsize
);
1122 pr_info(">>> frame to be transmitted: ");
1123 print_pkt(skb
->data
, skb
->len
);
1126 if (unlikely(stmmac_tx_avail(priv
) <= (MAX_SKB_FRAGS
+ 1))) {
1127 TX_DBG("%s: stop transmitted packets\n", __func__
);
1128 netif_stop_queue(dev
);
1131 dev
->stats
.tx_bytes
+= skb
->len
;
1133 priv
->hw
->dma
->enable_dma_transmission(priv
->ioaddr
);
1135 return NETDEV_TX_OK
;
1138 static inline void stmmac_rx_refill(struct stmmac_priv
*priv
)
1140 unsigned int rxsize
= priv
->dma_rx_size
;
1141 int bfsize
= priv
->dma_buf_sz
;
1142 struct dma_desc
*p
= priv
->dma_rx
;
1144 for (; priv
->cur_rx
- priv
->dirty_rx
> 0; priv
->dirty_rx
++) {
1145 unsigned int entry
= priv
->dirty_rx
% rxsize
;
1146 if (likely(priv
->rx_skbuff
[entry
] == NULL
)) {
1147 struct sk_buff
*skb
;
1149 skb
= __skb_dequeue(&priv
->rx_recycle
);
1151 skb
= netdev_alloc_skb_ip_align(priv
->dev
,
1154 if (unlikely(skb
== NULL
))
1157 priv
->rx_skbuff
[entry
] = skb
;
1158 priv
->rx_skbuff_dma
[entry
] =
1159 dma_map_single(priv
->device
, skb
->data
, bfsize
,
1162 (p
+ entry
)->des2
= priv
->rx_skbuff_dma
[entry
];
1163 if (unlikely(priv
->plat
->has_gmac
)) {
1164 if (bfsize
>= BUF_SIZE_8KiB
)
1166 (p
+ entry
)->des2
+ BUF_SIZE_8KiB
;
1168 RX_DBG(KERN_INFO
"\trefill entry #%d\n", entry
);
1170 priv
->hw
->desc
->set_rx_owner(p
+ entry
);
1174 static int stmmac_rx(struct stmmac_priv
*priv
, int limit
)
1176 unsigned int rxsize
= priv
->dma_rx_size
;
1177 unsigned int entry
= priv
->cur_rx
% rxsize
;
1178 unsigned int next_entry
;
1179 unsigned int count
= 0;
1180 struct dma_desc
*p
= priv
->dma_rx
+ entry
;
1181 struct dma_desc
*p_next
;
1183 #ifdef STMMAC_RX_DEBUG
1184 if (netif_msg_hw(priv
)) {
1185 pr_debug(">>> stmmac_rx: descriptor ring:\n");
1186 display_ring(priv
->dma_rx
, rxsize
);
1190 while (!priv
->hw
->desc
->get_rx_owner(p
)) {
1198 next_entry
= (++priv
->cur_rx
) % rxsize
;
1199 p_next
= priv
->dma_rx
+ next_entry
;
1202 /* read the status of the incoming frame */
1203 status
= (priv
->hw
->desc
->rx_status(&priv
->dev
->stats
,
1205 if (unlikely(status
== discard_frame
))
1206 priv
->dev
->stats
.rx_errors
++;
1208 struct sk_buff
*skb
;
1211 frame_len
= priv
->hw
->desc
->get_rx_frame_len(p
);
1212 /* ACS is set; GMAC core strips PAD/FCS for IEEE 802.3
1213 * Type frames (LLC/LLC-SNAP) */
1214 if (unlikely(status
!= llc_snap
))
1215 frame_len
-= ETH_FCS_LEN
;
1216 #ifdef STMMAC_RX_DEBUG
1217 if (frame_len
> ETH_FRAME_LEN
)
1218 pr_debug("\tRX frame size %d, COE status: %d\n",
1221 if (netif_msg_hw(priv
))
1222 pr_debug("\tdesc: %p [entry %d] buff=0x%x\n",
1225 skb
= priv
->rx_skbuff
[entry
];
1226 if (unlikely(!skb
)) {
1227 pr_err("%s: Inconsistent Rx descriptor chain\n",
1229 priv
->dev
->stats
.rx_dropped
++;
1232 prefetch(skb
->data
- NET_IP_ALIGN
);
1233 priv
->rx_skbuff
[entry
] = NULL
;
1235 skb_put(skb
, frame_len
);
1236 dma_unmap_single(priv
->device
,
1237 priv
->rx_skbuff_dma
[entry
],
1238 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
1239 #ifdef STMMAC_RX_DEBUG
1240 if (netif_msg_pktdata(priv
)) {
1241 pr_info(" frame received (%dbytes)", frame_len
);
1242 print_pkt(skb
->data
, frame_len
);
1245 skb
->protocol
= eth_type_trans(skb
, priv
->dev
);
1247 if (unlikely(status
== csum_none
)) {
1248 /* always for the old mac 10/100 */
1249 skb_checksum_none_assert(skb
);
1250 netif_receive_skb(skb
);
1252 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1253 napi_gro_receive(&priv
->napi
, skb
);
1256 priv
->dev
->stats
.rx_packets
++;
1257 priv
->dev
->stats
.rx_bytes
+= frame_len
;
1260 p
= p_next
; /* use prefetched values */
1263 stmmac_rx_refill(priv
);
1265 priv
->xstats
.rx_pkt_n
+= count
;
1271 * stmmac_poll - stmmac poll method (NAPI)
1272 * @napi : pointer to the napi structure.
1273 * @budget : maximum number of packets that the current CPU can receive from
1276 * This function implements the the reception process.
1277 * Also it runs the TX completion thread
1279 static int stmmac_poll(struct napi_struct
*napi
, int budget
)
1281 struct stmmac_priv
*priv
= container_of(napi
, struct stmmac_priv
, napi
);
1284 priv
->xstats
.poll_n
++;
1286 work_done
= stmmac_rx(priv
, budget
);
1288 if (work_done
< budget
) {
1289 napi_complete(napi
);
1290 stmmac_enable_irq(priv
);
1297 * @dev : Pointer to net device structure
1298 * Description: this function is called when a packet transmission fails to
1299 * complete within a reasonable tmrate. The driver will mark the error in the
1300 * netdev structure and arrange for the device to be reset to a sane state
1301 * in order to transmit a new packet.
1303 static void stmmac_tx_timeout(struct net_device
*dev
)
1305 struct stmmac_priv
*priv
= netdev_priv(dev
);
1307 /* Clear Tx resources and restart transmitting again */
1308 stmmac_tx_err(priv
);
1311 /* Configuration changes (passed on by ifconfig) */
1312 static int stmmac_config(struct net_device
*dev
, struct ifmap
*map
)
1314 if (dev
->flags
& IFF_UP
) /* can't act on a running interface */
1317 /* Don't allow changing the I/O address */
1318 if (map
->base_addr
!= dev
->base_addr
) {
1319 pr_warning("%s: can't change I/O address\n", dev
->name
);
1323 /* Don't allow changing the IRQ */
1324 if (map
->irq
!= dev
->irq
) {
1325 pr_warning("%s: can't change IRQ number %d\n",
1326 dev
->name
, dev
->irq
);
1330 /* ignore other fields */
1335 * stmmac_multicast_list - entry point for multicast addressing
1336 * @dev : pointer to the device structure
1338 * This function is a driver entry point which gets called by the kernel
1339 * whenever multicast addresses must be enabled/disabled.
1343 static void stmmac_multicast_list(struct net_device
*dev
)
1345 struct stmmac_priv
*priv
= netdev_priv(dev
);
1347 spin_lock(&priv
->lock
);
1348 priv
->hw
->mac
->set_filter(dev
);
1349 spin_unlock(&priv
->lock
);
1353 * stmmac_change_mtu - entry point to change MTU size for the device.
1354 * @dev : device pointer.
1355 * @new_mtu : the new MTU size for the device.
1356 * Description: the Maximum Transfer Unit (MTU) is used by the network layer
1357 * to drive packet transmission. Ethernet has an MTU of 1500 octets
1358 * (ETH_DATA_LEN). This value can be changed with ifconfig.
1360 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1363 static int stmmac_change_mtu(struct net_device
*dev
, int new_mtu
)
1365 struct stmmac_priv
*priv
= netdev_priv(dev
);
1368 if (netif_running(dev
)) {
1369 pr_err("%s: must be stopped to change its MTU\n", dev
->name
);
1373 if (priv
->plat
->has_gmac
)
1374 max_mtu
= JUMBO_LEN
;
1376 max_mtu
= ETH_DATA_LEN
;
1378 if ((new_mtu
< 46) || (new_mtu
> max_mtu
)) {
1379 pr_err("%s: invalid MTU, max MTU is: %d\n", dev
->name
, max_mtu
);
1383 /* Some GMAC devices have a bugged Jumbo frame support that
1384 * needs to have the Tx COE disabled for oversized frames
1385 * (due to limited buffer sizes). In this case we disable
1386 * the TX csum insertionin the TDES and not use SF. */
1387 if ((priv
->plat
->bugged_jumbo
) && (priv
->dev
->mtu
> ETH_DATA_LEN
))
1388 priv
->no_csum_insertion
= 1;
1390 priv
->no_csum_insertion
= 0;
1397 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
)
1399 struct net_device
*dev
= (struct net_device
*)dev_id
;
1400 struct stmmac_priv
*priv
= netdev_priv(dev
);
1402 if (unlikely(!dev
)) {
1403 pr_err("%s: invalid dev pointer\n", __func__
);
1407 if (priv
->plat
->has_gmac
)
1408 /* To handle GMAC own interrupts */
1409 priv
->hw
->mac
->host_irq_status((void __iomem
*) dev
->base_addr
);
1411 stmmac_dma_interrupt(priv
);
1416 #ifdef CONFIG_NET_POLL_CONTROLLER
1417 /* Polling receive - used by NETCONSOLE and other diagnostic tools
1418 * to allow network I/O with interrupts disabled. */
1419 static void stmmac_poll_controller(struct net_device
*dev
)
1421 disable_irq(dev
->irq
);
1422 stmmac_interrupt(dev
->irq
, dev
);
1423 enable_irq(dev
->irq
);
1428 * stmmac_ioctl - Entry point for the Ioctl
1429 * @dev: Device pointer.
1430 * @rq: An IOCTL specefic structure, that can contain a pointer to
1431 * a proprietary structure used to pass information to the driver.
1432 * @cmd: IOCTL command
1434 * Currently there are no special functionality supported in IOCTL, just the
1435 * phy_mii_ioctl(...) can be invoked.
1437 static int stmmac_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1439 struct stmmac_priv
*priv
= netdev_priv(dev
);
1442 if (!netif_running(dev
))
1448 spin_lock(&priv
->lock
);
1449 ret
= phy_mii_ioctl(priv
->phydev
, rq
, cmd
);
1450 spin_unlock(&priv
->lock
);
1455 #ifdef STMMAC_VLAN_TAG_USED
1456 static void stmmac_vlan_rx_register(struct net_device
*dev
,
1457 struct vlan_group
*grp
)
1459 struct stmmac_priv
*priv
= netdev_priv(dev
);
1461 DBG(probe
, INFO
, "%s: Setting vlgrp to %p\n", dev
->name
, grp
);
1463 spin_lock(&priv
->lock
);
1465 spin_unlock(&priv
->lock
);
1469 static const struct net_device_ops stmmac_netdev_ops
= {
1470 .ndo_open
= stmmac_open
,
1471 .ndo_start_xmit
= stmmac_xmit
,
1472 .ndo_stop
= stmmac_release
,
1473 .ndo_change_mtu
= stmmac_change_mtu
,
1474 .ndo_set_multicast_list
= stmmac_multicast_list
,
1475 .ndo_tx_timeout
= stmmac_tx_timeout
,
1476 .ndo_do_ioctl
= stmmac_ioctl
,
1477 .ndo_set_config
= stmmac_config
,
1478 #ifdef STMMAC_VLAN_TAG_USED
1479 .ndo_vlan_rx_register
= stmmac_vlan_rx_register
,
1481 #ifdef CONFIG_NET_POLL_CONTROLLER
1482 .ndo_poll_controller
= stmmac_poll_controller
,
1484 .ndo_set_mac_address
= eth_mac_addr
,
1488 * stmmac_probe - Initialization of the adapter .
1489 * @dev : device pointer
1490 * Description: The function initializes the network device structure for
1491 * the STMMAC driver. It also calls the low level routines
1492 * in order to init the HW (i.e. the DMA engine)
1494 static int stmmac_probe(struct net_device
*dev
)
1497 struct stmmac_priv
*priv
= netdev_priv(dev
);
1501 dev
->netdev_ops
= &stmmac_netdev_ops
;
1502 stmmac_set_ethtool_ops(dev
);
1504 dev
->features
|= NETIF_F_SG
| NETIF_F_HIGHDMA
|
1505 NETIF_F_IP_CSUM
| NETIF_F_IPV6_CSUM
;
1506 dev
->watchdog_timeo
= msecs_to_jiffies(watchdog
);
1507 #ifdef STMMAC_VLAN_TAG_USED
1508 /* Both mac100 and gmac support receive VLAN tag detection */
1509 dev
->features
|= NETIF_F_HW_VLAN_RX
;
1511 priv
->msg_enable
= netif_msg_init(debug
, default_msg_level
);
1514 priv
->flow_ctrl
= FLOW_AUTO
; /* RX/TX pause on */
1516 priv
->pause
= pause
;
1517 netif_napi_add(dev
, &priv
->napi
, stmmac_poll
, 64);
1519 /* Get the MAC address */
1520 priv
->hw
->mac
->get_umac_addr((void __iomem
*) dev
->base_addr
,
1523 if (!is_valid_ether_addr(dev
->dev_addr
))
1524 pr_warning("\tno valid MAC address;"
1525 "please, use ifconfig or nwhwconfig!\n");
1527 spin_lock_init(&priv
->lock
);
1529 ret
= register_netdev(dev
);
1531 pr_err("%s: ERROR %i registering the device\n",
1536 DBG(probe
, DEBUG
, "%s: Scatter/Gather: %s - HW checksums: %s\n",
1537 dev
->name
, (dev
->features
& NETIF_F_SG
) ? "on" : "off",
1538 (dev
->features
& NETIF_F_IP_CSUM
) ? "on" : "off");
1544 * stmmac_mac_device_setup
1545 * @dev : device pointer
1546 * Description: select and initialise the mac device (mac100 or Gmac).
1548 static int stmmac_mac_device_setup(struct net_device
*dev
)
1550 struct stmmac_priv
*priv
= netdev_priv(dev
);
1552 struct mac_device_info
*device
;
1554 if (priv
->plat
->has_gmac
)
1555 device
= dwmac1000_setup(priv
->ioaddr
);
1557 device
= dwmac100_setup(priv
->ioaddr
);
1562 if (priv
->plat
->enh_desc
) {
1563 device
->desc
= &enh_desc_ops
;
1564 pr_info("\tEnhanced descriptor structure\n");
1566 device
->desc
= &ndesc_ops
;
1570 if (device_can_wakeup(priv
->device
)) {
1571 priv
->wolopts
= WAKE_MAGIC
; /* Magic Frame as default */
1572 enable_irq_wake(dev
->irq
);
1578 static int stmmacphy_dvr_probe(struct platform_device
*pdev
)
1580 struct plat_stmmacphy_data
*plat_dat
= pdev
->dev
.platform_data
;
1582 pr_debug("stmmacphy_dvr_probe: added phy for bus %d\n",
1588 static int stmmacphy_dvr_remove(struct platform_device
*pdev
)
1593 static struct platform_driver stmmacphy_driver
= {
1595 .name
= PHY_RESOURCE_NAME
,
1597 .probe
= stmmacphy_dvr_probe
,
1598 .remove
= stmmacphy_dvr_remove
,
1602 * stmmac_associate_phy
1603 * @dev: pointer to device structure
1604 * @data: points to the private structure.
1605 * Description: Scans through all the PHYs we have registered and checks if
1606 * any are associated with our MAC. If so, then just fill in
1607 * the blanks in our local context structure
1609 static int stmmac_associate_phy(struct device
*dev
, void *data
)
1611 struct stmmac_priv
*priv
= (struct stmmac_priv
*)data
;
1612 struct plat_stmmacphy_data
*plat_dat
= dev
->platform_data
;
1614 DBG(probe
, DEBUG
, "%s: checking phy for bus %d\n", __func__
,
1617 /* Check that this phy is for the MAC being initialised */
1618 if (priv
->plat
->bus_id
!= plat_dat
->bus_id
)
1621 /* OK, this PHY is connected to the MAC.
1622 Go ahead and get the parameters */
1623 DBG(probe
, DEBUG
, "%s: OK. Found PHY config\n", __func__
);
1625 platform_get_irq_byname(to_platform_device(dev
), "phyirq");
1626 DBG(probe
, DEBUG
, "%s: PHY irq on bus %d is %d\n", __func__
,
1627 plat_dat
->bus_id
, priv
->phy_irq
);
1629 /* Override with kernel parameters if supplied XXX CRS XXX
1630 * this needs to have multiple instances */
1631 if ((phyaddr
>= 0) && (phyaddr
<= 31))
1632 plat_dat
->phy_addr
= phyaddr
;
1634 priv
->phy_addr
= plat_dat
->phy_addr
;
1635 priv
->phy_mask
= plat_dat
->phy_mask
;
1636 priv
->phy_interface
= plat_dat
->interface
;
1637 priv
->phy_reset
= plat_dat
->phy_reset
;
1639 DBG(probe
, DEBUG
, "%s: exiting\n", __func__
);
1640 return 1; /* forces exit of driver_for_each_device() */
1645 * @pdev: platform device pointer
1646 * Description: the driver is initialized through platform_device.
1648 static int stmmac_dvr_probe(struct platform_device
*pdev
)
1651 struct resource
*res
;
1652 void __iomem
*addr
= NULL
;
1653 struct net_device
*ndev
= NULL
;
1654 struct stmmac_priv
*priv
= NULL
;
1655 struct plat_stmmacenet_data
*plat_dat
;
1657 pr_info("STMMAC driver:\n\tplatform registration... ");
1658 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1661 pr_info("\tdone!\n");
1663 if (!request_mem_region(res
->start
, resource_size(res
),
1665 pr_err("%s: ERROR: memory allocation failed"
1666 "cannot get the I/O addr 0x%x\n",
1667 __func__
, (unsigned int)res
->start
);
1671 addr
= ioremap(res
->start
, resource_size(res
));
1673 pr_err("%s: ERROR: memory mapping failed\n", __func__
);
1675 goto out_release_region
;
1678 ndev
= alloc_etherdev(sizeof(struct stmmac_priv
));
1680 pr_err("%s: ERROR: allocating the device\n", __func__
);
1685 SET_NETDEV_DEV(ndev
, &pdev
->dev
);
1687 /* Get the MAC information */
1688 ndev
->irq
= platform_get_irq_byname(pdev
, "macirq");
1689 if (ndev
->irq
== -ENXIO
) {
1690 pr_err("%s: ERROR: MAC IRQ configuration "
1691 "information not found\n", __func__
);
1696 priv
= netdev_priv(ndev
);
1697 priv
->device
= &(pdev
->dev
);
1699 plat_dat
= pdev
->dev
.platform_data
;
1701 priv
->plat
= plat_dat
;
1703 priv
->ioaddr
= addr
;
1705 /* PMT module is not integrated in all the MAC devices. */
1706 if (plat_dat
->pmt
) {
1707 pr_info("\tPMT module supported\n");
1708 device_set_wakeup_capable(&pdev
->dev
, 1);
1711 platform_set_drvdata(pdev
, ndev
);
1713 /* Set the I/O base addr */
1714 ndev
->base_addr
= (unsigned long)addr
;
1716 /* Custom initialisation */
1717 if (priv
->plat
->init
) {
1718 ret
= priv
->plat
->init(pdev
);
1723 /* MAC HW revice detection */
1724 ret
= stmmac_mac_device_setup(ndev
);
1728 /* Network Device Registration */
1729 ret
= stmmac_probe(ndev
);
1733 /* associate a PHY - it is provided by another platform bus */
1734 if (!driver_for_each_device
1735 (&(stmmacphy_driver
.driver
), NULL
, (void *)priv
,
1736 stmmac_associate_phy
)) {
1737 pr_err("No PHY device is associated with this MAC!\n");
1739 goto out_unregister
;
1742 pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n"
1743 "\tIO base addr: 0x%p)\n", ndev
->name
, pdev
->name
,
1744 pdev
->id
, ndev
->irq
, addr
);
1746 /* MDIO bus Registration */
1747 pr_debug("\tMDIO bus (id: %d)...", priv
->plat
->bus_id
);
1748 ret
= stmmac_mdio_register(ndev
);
1750 goto out_unregister
;
1751 pr_debug("registered!\n");
1755 unregister_netdev(ndev
);
1757 if (priv
->plat
->exit
)
1758 priv
->plat
->exit(pdev
);
1761 platform_set_drvdata(pdev
, NULL
);
1765 release_mem_region(res
->start
, resource_size(res
));
1772 * @pdev: platform device pointer
1773 * Description: this function resets the TX/RX processes, disables the MAC RX/TX
1774 * changes the link status, releases the DMA descriptor rings,
1775 * unregisters the MDIO bus and unmaps the allocated memory.
1777 static int stmmac_dvr_remove(struct platform_device
*pdev
)
1779 struct net_device
*ndev
= platform_get_drvdata(pdev
);
1780 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1781 struct resource
*res
;
1783 pr_info("%s:\n\tremoving driver", __func__
);
1785 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
1786 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
1788 stmmac_disable_mac(priv
->ioaddr
);
1790 netif_carrier_off(ndev
);
1792 stmmac_mdio_unregister(ndev
);
1794 if (priv
->plat
->exit
)
1795 priv
->plat
->exit(pdev
);
1797 platform_set_drvdata(pdev
, NULL
);
1798 unregister_netdev(ndev
);
1800 iounmap((void *)priv
->ioaddr
);
1801 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1802 release_mem_region(res
->start
, resource_size(res
));
1810 static int stmmac_suspend(struct device
*dev
)
1812 struct net_device
*ndev
= dev_get_drvdata(dev
);
1813 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1816 if (!ndev
|| !netif_running(ndev
))
1819 spin_lock(&priv
->lock
);
1821 netif_device_detach(ndev
);
1822 netif_stop_queue(ndev
);
1824 phy_stop(priv
->phydev
);
1826 #ifdef CONFIG_STMMAC_TIMER
1827 priv
->tm
->timer_stop();
1828 if (likely(priv
->tm
->enable
))
1831 napi_disable(&priv
->napi
);
1833 /* Stop TX/RX DMA */
1834 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
1835 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
1836 /* Clear the Rx/Tx descriptors */
1837 priv
->hw
->desc
->init_rx_desc(priv
->dma_rx
, priv
->dma_rx_size
,
1839 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
1841 /* Enable Power down mode by programming the PMT regs */
1842 if (device_may_wakeup(priv
->device
))
1843 priv
->hw
->mac
->pmt(priv
->ioaddr
, priv
->wolopts
);
1845 stmmac_disable_mac(priv
->ioaddr
);
1847 spin_unlock(&priv
->lock
);
1851 static int stmmac_resume(struct device
*dev
)
1853 struct net_device
*ndev
= dev_get_drvdata(dev
);
1854 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1856 if (!netif_running(ndev
))
1859 spin_lock(&priv
->lock
);
1861 /* Power Down bit, into the PM register, is cleared
1862 * automatically as soon as a magic packet or a Wake-up frame
1863 * is received. Anyway, it's better to manually clear
1864 * this bit because it can generate problems while resuming
1865 * from another devices (e.g. serial console). */
1866 if (device_may_wakeup(priv
->device
))
1867 priv
->hw
->mac
->pmt(priv
->ioaddr
, 0);
1869 netif_device_attach(ndev
);
1871 /* Enable the MAC and DMA */
1872 stmmac_enable_mac(priv
->ioaddr
);
1873 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
1874 priv
->hw
->dma
->start_rx(priv
->ioaddr
);
1876 #ifdef CONFIG_STMMAC_TIMER
1877 if (likely(priv
->tm
->enable
))
1878 priv
->tm
->timer_start(tmrate
);
1880 napi_enable(&priv
->napi
);
1883 phy_start(priv
->phydev
);
1885 netif_start_queue(ndev
);
1887 spin_unlock(&priv
->lock
);
1891 static int stmmac_freeze(struct device
*dev
)
1893 struct net_device
*ndev
= dev_get_drvdata(dev
);
1895 if (!ndev
|| !netif_running(ndev
))
1898 return stmmac_release(ndev
);
1901 static int stmmac_restore(struct device
*dev
)
1903 struct net_device
*ndev
= dev_get_drvdata(dev
);
1905 if (!ndev
|| !netif_running(ndev
))
1908 return stmmac_open(ndev
);
1911 static const struct dev_pm_ops stmmac_pm_ops
= {
1912 .suspend
= stmmac_suspend
,
1913 .resume
= stmmac_resume
,
1914 .freeze
= stmmac_freeze
,
1915 .thaw
= stmmac_restore
,
1916 .restore
= stmmac_restore
,
1919 static const struct dev_pm_ops stmmac_pm_ops
;
1920 #endif /* CONFIG_PM */
1922 static struct platform_driver stmmac_driver
= {
1923 .probe
= stmmac_dvr_probe
,
1924 .remove
= stmmac_dvr_remove
,
1926 .name
= STMMAC_RESOURCE_NAME
,
1927 .owner
= THIS_MODULE
,
1928 .pm
= &stmmac_pm_ops
,
1933 * stmmac_init_module - Entry point for the driver
1934 * Description: This function is the entry point for the driver.
1936 static int __init
stmmac_init_module(void)
1940 if (platform_driver_register(&stmmacphy_driver
)) {
1941 pr_err("No PHY devices registered!\n");
1945 ret
= platform_driver_register(&stmmac_driver
);
1950 * stmmac_cleanup_module - Cleanup routine for the driver
1951 * Description: This function is the cleanup routine for the driver.
1953 static void __exit
stmmac_cleanup_module(void)
1955 platform_driver_unregister(&stmmacphy_driver
);
1956 platform_driver_unregister(&stmmac_driver
);
1960 static int __init
stmmac_cmdline_opt(char *str
)
1966 while ((opt
= strsep(&str
, ",")) != NULL
) {
1967 if (!strncmp(opt
, "debug:", 6))
1968 strict_strtoul(opt
+ 6, 0, (unsigned long *)&debug
);
1969 else if (!strncmp(opt
, "phyaddr:", 8))
1970 strict_strtoul(opt
+ 8, 0, (unsigned long *)&phyaddr
);
1971 else if (!strncmp(opt
, "dma_txsize:", 11))
1972 strict_strtoul(opt
+ 11, 0,
1973 (unsigned long *)&dma_txsize
);
1974 else if (!strncmp(opt
, "dma_rxsize:", 11))
1975 strict_strtoul(opt
+ 11, 0,
1976 (unsigned long *)&dma_rxsize
);
1977 else if (!strncmp(opt
, "buf_sz:", 7))
1978 strict_strtoul(opt
+ 7, 0, (unsigned long *)&buf_sz
);
1979 else if (!strncmp(opt
, "tc:", 3))
1980 strict_strtoul(opt
+ 3, 0, (unsigned long *)&tc
);
1981 else if (!strncmp(opt
, "watchdog:", 9))
1982 strict_strtoul(opt
+ 9, 0, (unsigned long *)&watchdog
);
1983 else if (!strncmp(opt
, "flow_ctrl:", 10))
1984 strict_strtoul(opt
+ 10, 0,
1985 (unsigned long *)&flow_ctrl
);
1986 else if (!strncmp(opt
, "pause:", 6))
1987 strict_strtoul(opt
+ 6, 0, (unsigned long *)&pause
);
1988 #ifdef CONFIG_STMMAC_TIMER
1989 else if (!strncmp(opt
, "tmrate:", 7))
1990 strict_strtoul(opt
+ 7, 0, (unsigned long *)&tmrate
);
1996 __setup("stmmaceth=", stmmac_cmdline_opt
);
1999 module_init(stmmac_init_module
);
2000 module_exit(stmmac_cleanup_module
);
2002 MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet driver");
2003 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
2004 MODULE_LICENSE("GPL");