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>
48 #include <linux/prefetch.h>
51 #define STMMAC_RESOURCE_NAME "stmmaceth"
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 /* Pay attention to tune this parameter; take care of both
120 * hardware capability and network stabitily/performance impact.
121 * Many tests showed that ~4ms latency seems to be good enough. */
122 #ifdef CONFIG_STMMAC_TIMER
123 #define DEFAULT_PERIODIC_RATE 256
124 static int tmrate
= DEFAULT_PERIODIC_RATE
;
125 module_param(tmrate
, int, S_IRUGO
| S_IWUSR
);
126 MODULE_PARM_DESC(tmrate
, "External timer freq. (default: 256Hz)");
129 #define DMA_BUFFER_SIZE BUF_SIZE_2KiB
130 static int buf_sz
= DMA_BUFFER_SIZE
;
131 module_param(buf_sz
, int, S_IRUGO
| S_IWUSR
);
132 MODULE_PARM_DESC(buf_sz
, "DMA buffer size");
134 static const u32 default_msg_level
= (NETIF_MSG_DRV
| NETIF_MSG_PROBE
|
135 NETIF_MSG_LINK
| NETIF_MSG_IFUP
|
136 NETIF_MSG_IFDOWN
| NETIF_MSG_TIMER
);
138 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
);
141 * stmmac_verify_args - verify the driver parameters.
142 * Description: it verifies if some wrong parameter is passed to the driver.
143 * Note that wrong parameters are replaced with the default values.
145 static void stmmac_verify_args(void)
147 if (unlikely(watchdog
< 0))
149 if (unlikely(dma_rxsize
< 0))
150 dma_rxsize
= DMA_RX_SIZE
;
151 if (unlikely(dma_txsize
< 0))
152 dma_txsize
= DMA_TX_SIZE
;
153 if (unlikely((buf_sz
< DMA_BUFFER_SIZE
) || (buf_sz
> BUF_SIZE_16KiB
)))
154 buf_sz
= DMA_BUFFER_SIZE
;
155 if (unlikely(flow_ctrl
> 1))
156 flow_ctrl
= FLOW_AUTO
;
157 else if (likely(flow_ctrl
< 0))
158 flow_ctrl
= FLOW_OFF
;
159 if (unlikely((pause
< 0) || (pause
> 0xffff)))
163 #if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG)
164 static void print_pkt(unsigned char *buf
, int len
)
167 pr_info("len = %d byte, buf addr: 0x%p", len
, buf
);
168 for (j
= 0; j
< len
; j
++) {
170 pr_info("\n %03x:", j
);
171 pr_info(" %02x", buf
[j
]);
177 /* minimum number of free TX descriptors required to wake up TX process */
178 #define STMMAC_TX_THRESH(x) (x->dma_tx_size/4)
180 static inline u32
stmmac_tx_avail(struct stmmac_priv
*priv
)
182 return priv
->dirty_tx
+ priv
->dma_tx_size
- priv
->cur_tx
- 1;
185 /* On some ST platforms, some HW system configuraton registers have to be
186 * set according to the link speed negotiated.
188 static inline void stmmac_hw_fix_mac_speed(struct stmmac_priv
*priv
)
190 struct phy_device
*phydev
= priv
->phydev
;
192 if (likely(priv
->plat
->fix_mac_speed
))
193 priv
->plat
->fix_mac_speed(priv
->plat
->bsp_priv
,
199 * @dev: net device structure
200 * Description: it adjusts the link parameters.
202 static void stmmac_adjust_link(struct net_device
*dev
)
204 struct stmmac_priv
*priv
= netdev_priv(dev
);
205 struct phy_device
*phydev
= priv
->phydev
;
208 unsigned int fc
= priv
->flow_ctrl
, pause_time
= priv
->pause
;
213 DBG(probe
, DEBUG
, "stmmac_adjust_link: called. address %d link %d\n",
214 phydev
->addr
, phydev
->link
);
216 spin_lock_irqsave(&priv
->lock
, flags
);
218 u32 ctrl
= readl(priv
->ioaddr
+ MAC_CTRL_REG
);
220 /* Now we make sure that we can be in full duplex mode.
221 * If not, we operate in half-duplex mode. */
222 if (phydev
->duplex
!= priv
->oldduplex
) {
224 if (!(phydev
->duplex
))
225 ctrl
&= ~priv
->hw
->link
.duplex
;
227 ctrl
|= priv
->hw
->link
.duplex
;
228 priv
->oldduplex
= phydev
->duplex
;
230 /* Flow Control operation */
232 priv
->hw
->mac
->flow_ctrl(priv
->ioaddr
, phydev
->duplex
,
235 if (phydev
->speed
!= priv
->speed
) {
237 switch (phydev
->speed
) {
239 if (likely(priv
->plat
->has_gmac
))
240 ctrl
&= ~priv
->hw
->link
.port
;
241 stmmac_hw_fix_mac_speed(priv
);
245 if (priv
->plat
->has_gmac
) {
246 ctrl
|= priv
->hw
->link
.port
;
247 if (phydev
->speed
== SPEED_100
) {
248 ctrl
|= priv
->hw
->link
.speed
;
250 ctrl
&= ~(priv
->hw
->link
.speed
);
253 ctrl
&= ~priv
->hw
->link
.port
;
255 stmmac_hw_fix_mac_speed(priv
);
258 if (netif_msg_link(priv
))
259 pr_warning("%s: Speed (%d) is not 10"
260 " or 100!\n", dev
->name
, phydev
->speed
);
264 priv
->speed
= phydev
->speed
;
267 writel(ctrl
, priv
->ioaddr
+ MAC_CTRL_REG
);
269 if (!priv
->oldlink
) {
273 } else if (priv
->oldlink
) {
277 priv
->oldduplex
= -1;
280 if (new_state
&& netif_msg_link(priv
))
281 phy_print_status(phydev
);
283 spin_unlock_irqrestore(&priv
->lock
, flags
);
285 DBG(probe
, DEBUG
, "stmmac_adjust_link: exiting\n");
289 * stmmac_init_phy - PHY initialization
290 * @dev: net device structure
291 * Description: it initializes the driver's PHY state, and attaches the PHY
296 static int stmmac_init_phy(struct net_device
*dev
)
298 struct stmmac_priv
*priv
= netdev_priv(dev
);
299 struct phy_device
*phydev
;
300 char phy_id
[MII_BUS_ID_SIZE
+ 3];
301 char bus_id
[MII_BUS_ID_SIZE
];
305 priv
->oldduplex
= -1;
307 snprintf(bus_id
, MII_BUS_ID_SIZE
, "%x", priv
->plat
->bus_id
);
308 snprintf(phy_id
, MII_BUS_ID_SIZE
+ 3, PHY_ID_FMT
, bus_id
,
309 priv
->plat
->phy_addr
);
310 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id
);
312 phydev
= phy_connect(dev
, phy_id
, &stmmac_adjust_link
, 0,
313 priv
->plat
->interface
);
315 if (IS_ERR(phydev
)) {
316 pr_err("%s: Could not attach to PHY\n", dev
->name
);
317 return PTR_ERR(phydev
);
321 * Broken HW is sometimes missing the pull-up resistor on the
322 * MDIO line, which results in reads to non-existent devices returning
323 * 0 rather than 0xffff. Catch this here and treat 0 as a non-existent
325 * Note: phydev->phy_id is the result of reading the UID PHY registers.
327 if (phydev
->phy_id
== 0) {
328 phy_disconnect(phydev
);
331 pr_debug("stmmac_init_phy: %s: attached to PHY (UID 0x%x)"
332 " Link = %d\n", dev
->name
, phydev
->phy_id
, phydev
->link
);
334 priv
->phydev
= phydev
;
339 static inline void stmmac_enable_mac(void __iomem
*ioaddr
)
341 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
343 value
|= MAC_RNABLE_RX
| MAC_ENABLE_TX
;
344 writel(value
, ioaddr
+ MAC_CTRL_REG
);
347 static inline void stmmac_disable_mac(void __iomem
*ioaddr
)
349 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
351 value
&= ~(MAC_ENABLE_TX
| MAC_RNABLE_RX
);
352 writel(value
, ioaddr
+ MAC_CTRL_REG
);
357 * @p: pointer to the ring.
358 * @size: size of the ring.
359 * Description: display all the descriptors within the ring.
361 static void display_ring(struct dma_desc
*p
, int size
)
369 for (i
= 0; i
< size
; i
++) {
370 struct tmp_s
*x
= (struct tmp_s
*)(p
+ i
);
371 pr_info("\t%d [0x%x]: DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
372 i
, (unsigned int)virt_to_phys(&p
[i
]),
373 (unsigned int)(x
->a
), (unsigned int)((x
->a
) >> 32),
380 * init_dma_desc_rings - init the RX/TX descriptor rings
381 * @dev: net device structure
382 * Description: this function initializes the DMA RX/TX descriptors
383 * and allocates the socket buffers.
385 static void init_dma_desc_rings(struct net_device
*dev
)
388 struct stmmac_priv
*priv
= netdev_priv(dev
);
390 unsigned int txsize
= priv
->dma_tx_size
;
391 unsigned int rxsize
= priv
->dma_rx_size
;
392 unsigned int bfsize
= priv
->dma_buf_sz
;
393 int buff2_needed
= 0, dis_ic
= 0;
395 /* Set the Buffer size according to the MTU;
396 * indeed, in case of jumbo we need to bump-up the buffer sizes.
398 if (unlikely(dev
->mtu
>= BUF_SIZE_8KiB
))
399 bfsize
= BUF_SIZE_16KiB
;
400 else if (unlikely(dev
->mtu
>= BUF_SIZE_4KiB
))
401 bfsize
= BUF_SIZE_8KiB
;
402 else if (unlikely(dev
->mtu
>= BUF_SIZE_2KiB
))
403 bfsize
= BUF_SIZE_4KiB
;
404 else if (unlikely(dev
->mtu
>= DMA_BUFFER_SIZE
))
405 bfsize
= BUF_SIZE_2KiB
;
407 bfsize
= DMA_BUFFER_SIZE
;
409 #ifdef CONFIG_STMMAC_TIMER
410 /* Disable interrupts on completion for the reception if timer is on */
411 if (likely(priv
->tm
->enable
))
414 /* If the MTU exceeds 8k so use the second buffer in the chain */
415 if (bfsize
>= BUF_SIZE_8KiB
)
418 DBG(probe
, INFO
, "stmmac: txsize %d, rxsize %d, bfsize %d\n",
419 txsize
, rxsize
, bfsize
);
421 priv
->rx_skbuff_dma
= kmalloc(rxsize
* sizeof(dma_addr_t
), GFP_KERNEL
);
423 kmalloc(sizeof(struct sk_buff
*) * rxsize
, GFP_KERNEL
);
425 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
427 sizeof(struct dma_desc
),
430 priv
->tx_skbuff
= kmalloc(sizeof(struct sk_buff
*) * txsize
,
433 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
435 sizeof(struct dma_desc
),
439 if ((priv
->dma_rx
== NULL
) || (priv
->dma_tx
== NULL
)) {
440 pr_err("%s:ERROR allocating the DMA Tx/Rx desc\n", __func__
);
444 DBG(probe
, INFO
, "stmmac (%s) DMA desc rings: virt addr (Rx %p, "
445 "Tx %p)\n\tDMA phy addr (Rx 0x%08x, Tx 0x%08x)\n",
446 dev
->name
, priv
->dma_rx
, priv
->dma_tx
,
447 (unsigned int)priv
->dma_rx_phy
, (unsigned int)priv
->dma_tx_phy
);
449 /* RX INITIALIZATION */
450 DBG(probe
, INFO
, "stmmac: SKB addresses:\n"
451 "skb\t\tskb data\tdma data\n");
453 for (i
= 0; i
< rxsize
; i
++) {
454 struct dma_desc
*p
= priv
->dma_rx
+ i
;
456 skb
= netdev_alloc_skb_ip_align(dev
, bfsize
);
457 if (unlikely(skb
== NULL
)) {
458 pr_err("%s: Rx init fails; skb is NULL\n", __func__
);
461 priv
->rx_skbuff
[i
] = skb
;
462 priv
->rx_skbuff_dma
[i
] = dma_map_single(priv
->device
, skb
->data
,
463 bfsize
, DMA_FROM_DEVICE
);
465 p
->des2
= priv
->rx_skbuff_dma
[i
];
466 if (unlikely(buff2_needed
))
467 p
->des3
= p
->des2
+ BUF_SIZE_8KiB
;
468 DBG(probe
, INFO
, "[%p]\t[%p]\t[%x]\n", priv
->rx_skbuff
[i
],
469 priv
->rx_skbuff
[i
]->data
, priv
->rx_skbuff_dma
[i
]);
472 priv
->dirty_rx
= (unsigned int)(i
- rxsize
);
473 priv
->dma_buf_sz
= bfsize
;
476 /* TX INITIALIZATION */
477 for (i
= 0; i
< txsize
; i
++) {
478 priv
->tx_skbuff
[i
] = NULL
;
479 priv
->dma_tx
[i
].des2
= 0;
484 /* Clear the Rx/Tx descriptors */
485 priv
->hw
->desc
->init_rx_desc(priv
->dma_rx
, rxsize
, dis_ic
);
486 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, txsize
);
488 if (netif_msg_hw(priv
)) {
489 pr_info("RX descriptor ring:\n");
490 display_ring(priv
->dma_rx
, rxsize
);
491 pr_info("TX descriptor ring:\n");
492 display_ring(priv
->dma_tx
, txsize
);
496 static void dma_free_rx_skbufs(struct stmmac_priv
*priv
)
500 for (i
= 0; i
< priv
->dma_rx_size
; i
++) {
501 if (priv
->rx_skbuff
[i
]) {
502 dma_unmap_single(priv
->device
, priv
->rx_skbuff_dma
[i
],
503 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
504 dev_kfree_skb_any(priv
->rx_skbuff
[i
]);
506 priv
->rx_skbuff
[i
] = NULL
;
510 static void dma_free_tx_skbufs(struct stmmac_priv
*priv
)
514 for (i
= 0; i
< priv
->dma_tx_size
; i
++) {
515 if (priv
->tx_skbuff
[i
] != NULL
) {
516 struct dma_desc
*p
= priv
->dma_tx
+ i
;
518 dma_unmap_single(priv
->device
, p
->des2
,
519 priv
->hw
->desc
->get_tx_len(p
),
521 dev_kfree_skb_any(priv
->tx_skbuff
[i
]);
522 priv
->tx_skbuff
[i
] = NULL
;
527 static void free_dma_desc_resources(struct stmmac_priv
*priv
)
529 /* Release the DMA TX/RX socket buffers */
530 dma_free_rx_skbufs(priv
);
531 dma_free_tx_skbufs(priv
);
533 /* Free the region of consistent memory previously allocated for
535 dma_free_coherent(priv
->device
,
536 priv
->dma_tx_size
* sizeof(struct dma_desc
),
537 priv
->dma_tx
, priv
->dma_tx_phy
);
538 dma_free_coherent(priv
->device
,
539 priv
->dma_rx_size
* sizeof(struct dma_desc
),
540 priv
->dma_rx
, priv
->dma_rx_phy
);
541 kfree(priv
->rx_skbuff_dma
);
542 kfree(priv
->rx_skbuff
);
543 kfree(priv
->tx_skbuff
);
547 * stmmac_dma_operation_mode - HW DMA operation mode
548 * @priv : pointer to the private device structure.
549 * Description: it sets the DMA operation mode: tx/rx DMA thresholds
550 * or Store-And-Forward capability.
552 static void stmmac_dma_operation_mode(struct stmmac_priv
*priv
)
554 if (likely(priv
->plat
->force_sf_dma_mode
||
555 ((priv
->plat
->tx_coe
) && (!priv
->no_csum_insertion
)))) {
557 * In case of GMAC, SF mode can be enabled
558 * to perform the TX COE in HW. This depends on:
559 * 1) TX COE if actually supported
560 * 2) There is no bugged Jumbo frame support
561 * that needs to not insert csum in the TDES.
563 priv
->hw
->dma
->dma_mode(priv
->ioaddr
,
564 SF_DMA_MODE
, SF_DMA_MODE
);
567 priv
->hw
->dma
->dma_mode(priv
->ioaddr
, tc
, SF_DMA_MODE
);
572 * @priv: private driver structure
573 * Description: it reclaims resources after transmission completes.
575 static void stmmac_tx(struct stmmac_priv
*priv
)
577 unsigned int txsize
= priv
->dma_tx_size
;
579 while (priv
->dirty_tx
!= priv
->cur_tx
) {
581 unsigned int entry
= priv
->dirty_tx
% txsize
;
582 struct sk_buff
*skb
= priv
->tx_skbuff
[entry
];
583 struct dma_desc
*p
= priv
->dma_tx
+ entry
;
585 /* Check if the descriptor is owned by the DMA. */
586 if (priv
->hw
->desc
->get_tx_owner(p
))
589 /* Verify tx error by looking at the last segment */
590 last
= priv
->hw
->desc
->get_tx_ls(p
);
593 priv
->hw
->desc
->tx_status(&priv
->dev
->stats
,
596 if (likely(tx_error
== 0)) {
597 priv
->dev
->stats
.tx_packets
++;
598 priv
->xstats
.tx_pkt_n
++;
600 priv
->dev
->stats
.tx_errors
++;
602 TX_DBG("%s: curr %d, dirty %d\n", __func__
,
603 priv
->cur_tx
, priv
->dirty_tx
);
606 dma_unmap_single(priv
->device
, p
->des2
,
607 priv
->hw
->desc
->get_tx_len(p
),
609 if (unlikely(p
->des3
))
612 if (likely(skb
!= NULL
)) {
614 * If there's room in the queue (limit it to size)
615 * we add this skb back into the pool,
616 * if it's the right size.
618 if ((skb_queue_len(&priv
->rx_recycle
) <
619 priv
->dma_rx_size
) &&
620 skb_recycle_check(skb
, priv
->dma_buf_sz
))
621 __skb_queue_head(&priv
->rx_recycle
, skb
);
625 priv
->tx_skbuff
[entry
] = NULL
;
628 priv
->hw
->desc
->release_tx_desc(p
);
630 entry
= (++priv
->dirty_tx
) % txsize
;
632 if (unlikely(netif_queue_stopped(priv
->dev
) &&
633 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
))) {
634 netif_tx_lock(priv
->dev
);
635 if (netif_queue_stopped(priv
->dev
) &&
636 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
)) {
637 TX_DBG("%s: restart transmit\n", __func__
);
638 netif_wake_queue(priv
->dev
);
640 netif_tx_unlock(priv
->dev
);
644 static inline void stmmac_enable_irq(struct stmmac_priv
*priv
)
646 #ifdef CONFIG_STMMAC_TIMER
647 if (likely(priv
->tm
->enable
))
648 priv
->tm
->timer_start(tmrate
);
651 priv
->hw
->dma
->enable_dma_irq(priv
->ioaddr
);
654 static inline void stmmac_disable_irq(struct stmmac_priv
*priv
)
656 #ifdef CONFIG_STMMAC_TIMER
657 if (likely(priv
->tm
->enable
))
658 priv
->tm
->timer_stop();
661 priv
->hw
->dma
->disable_dma_irq(priv
->ioaddr
);
664 static int stmmac_has_work(struct stmmac_priv
*priv
)
666 unsigned int has_work
= 0;
667 int rxret
, tx_work
= 0;
669 rxret
= priv
->hw
->desc
->get_rx_owner(priv
->dma_rx
+
670 (priv
->cur_rx
% priv
->dma_rx_size
));
672 if (priv
->dirty_tx
!= priv
->cur_tx
)
675 if (likely(!rxret
|| tx_work
))
681 static inline void _stmmac_schedule(struct stmmac_priv
*priv
)
683 if (likely(stmmac_has_work(priv
))) {
684 stmmac_disable_irq(priv
);
685 napi_schedule(&priv
->napi
);
689 #ifdef CONFIG_STMMAC_TIMER
690 void stmmac_schedule(struct net_device
*dev
)
692 struct stmmac_priv
*priv
= netdev_priv(dev
);
694 priv
->xstats
.sched_timer_n
++;
696 _stmmac_schedule(priv
);
699 static void stmmac_no_timer_started(unsigned int x
)
703 static void stmmac_no_timer_stopped(void)
710 * @priv: pointer to the private device structure
711 * Description: it cleans the descriptors and restarts the transmission
714 static void stmmac_tx_err(struct stmmac_priv
*priv
)
717 netif_stop_queue(priv
->dev
);
719 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
720 dma_free_tx_skbufs(priv
);
721 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
724 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
726 priv
->dev
->stats
.tx_errors
++;
727 netif_wake_queue(priv
->dev
);
731 static void stmmac_dma_interrupt(struct stmmac_priv
*priv
)
735 status
= priv
->hw
->dma
->dma_interrupt(priv
->ioaddr
, &priv
->xstats
);
736 if (likely(status
== handle_tx_rx
))
737 _stmmac_schedule(priv
);
739 else if (unlikely(status
== tx_hard_error_bump_tc
)) {
740 /* Try to bump up the dma threshold on this failure */
741 if (unlikely(tc
!= SF_DMA_MODE
) && (tc
<= 256)) {
743 priv
->hw
->dma
->dma_mode(priv
->ioaddr
, tc
, SF_DMA_MODE
);
744 priv
->xstats
.threshold
= tc
;
746 } else if (unlikely(status
== tx_hard_error
))
751 * stmmac_open - open entry point of the driver
752 * @dev : pointer to the device structure.
754 * This function is the open entry point of the driver.
756 * 0 on success and an appropriate (-)ve integer as defined in errno.h
759 static int stmmac_open(struct net_device
*dev
)
761 struct stmmac_priv
*priv
= netdev_priv(dev
);
764 /* Check that the MAC address is valid. If its not, refuse
765 * to bring the device up. The user must specify an
766 * address using the following linux command:
767 * ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx */
768 if (!is_valid_ether_addr(dev
->dev_addr
)) {
769 random_ether_addr(dev
->dev_addr
);
770 pr_warning("%s: generated random MAC address %pM\n", dev
->name
,
774 stmmac_verify_args();
776 #ifdef CONFIG_STMMAC_TIMER
777 priv
->tm
= kzalloc(sizeof(struct stmmac_timer
*), GFP_KERNEL
);
778 if (unlikely(priv
->tm
== NULL
)) {
779 pr_err("%s: ERROR: timer memory alloc failed\n", __func__
);
782 priv
->tm
->freq
= tmrate
;
784 /* Test if the external timer can be actually used.
785 * In case of failure continue without timer. */
786 if (unlikely((stmmac_open_ext_timer(dev
, priv
->tm
)) < 0)) {
787 pr_warning("stmmaceth: cannot attach the external timer.\n");
789 priv
->tm
->timer_start
= stmmac_no_timer_started
;
790 priv
->tm
->timer_stop
= stmmac_no_timer_stopped
;
792 priv
->tm
->enable
= 1;
794 ret
= stmmac_init_phy(dev
);
796 pr_err("%s: Cannot attach to PHY (error: %d)\n", __func__
, ret
);
800 /* Create and initialize the TX/RX descriptors chains. */
801 priv
->dma_tx_size
= STMMAC_ALIGN(dma_txsize
);
802 priv
->dma_rx_size
= STMMAC_ALIGN(dma_rxsize
);
803 priv
->dma_buf_sz
= STMMAC_ALIGN(buf_sz
);
804 init_dma_desc_rings(dev
);
806 /* DMA initialization and SW reset */
807 ret
= priv
->hw
->dma
->init(priv
->ioaddr
, priv
->plat
->pbl
,
808 priv
->dma_tx_phy
, priv
->dma_rx_phy
);
810 pr_err("%s: DMA initialization failed\n", __func__
);
814 /* Copy the MAC addr into the HW */
815 priv
->hw
->mac
->set_umac_addr(priv
->ioaddr
, dev
->dev_addr
, 0);
816 /* If required, perform hw setup of the bus. */
817 if (priv
->plat
->bus_setup
)
818 priv
->plat
->bus_setup(priv
->ioaddr
);
819 /* Initialize the MAC Core */
820 priv
->hw
->mac
->core_init(priv
->ioaddr
);
822 priv
->rx_coe
= priv
->hw
->mac
->rx_coe(priv
->ioaddr
);
824 pr_info("stmmac: Rx Checksum Offload Engine supported\n");
825 if (priv
->plat
->tx_coe
)
826 pr_info("\tTX Checksum insertion supported\n");
827 netdev_update_features(dev
);
829 /* Initialise the MMC (if present) to disable all interrupts. */
830 writel(0xffffffff, priv
->ioaddr
+ MMC_HIGH_INTR_MASK
);
831 writel(0xffffffff, priv
->ioaddr
+ MMC_LOW_INTR_MASK
);
833 /* Request the IRQ lines */
834 ret
= request_irq(dev
->irq
, stmmac_interrupt
,
835 IRQF_SHARED
, dev
->name
, dev
);
836 if (unlikely(ret
< 0)) {
837 pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
838 __func__
, dev
->irq
, ret
);
842 /* Enable the MAC Rx/Tx */
843 stmmac_enable_mac(priv
->ioaddr
);
845 /* Set the HW DMA mode and the COE */
846 stmmac_dma_operation_mode(priv
);
848 /* Extra statistics */
849 memset(&priv
->xstats
, 0, sizeof(struct stmmac_extra_stats
));
850 priv
->xstats
.threshold
= tc
;
852 /* Start the ball rolling... */
853 DBG(probe
, DEBUG
, "%s: DMA RX/TX processes started...\n", dev
->name
);
854 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
855 priv
->hw
->dma
->start_rx(priv
->ioaddr
);
857 #ifdef CONFIG_STMMAC_TIMER
858 priv
->tm
->timer_start(tmrate
);
860 /* Dump DMA/MAC registers */
861 if (netif_msg_hw(priv
)) {
862 priv
->hw
->mac
->dump_regs(priv
->ioaddr
);
863 priv
->hw
->dma
->dump_regs(priv
->ioaddr
);
867 phy_start(priv
->phydev
);
869 napi_enable(&priv
->napi
);
870 skb_queue_head_init(&priv
->rx_recycle
);
871 netif_start_queue(dev
);
876 #ifdef CONFIG_STMMAC_TIMER
880 phy_disconnect(priv
->phydev
);
886 * stmmac_release - close entry point of the driver
887 * @dev : device pointer.
889 * This is the stop entry point of the driver.
891 static int stmmac_release(struct net_device
*dev
)
893 struct stmmac_priv
*priv
= netdev_priv(dev
);
895 /* Stop and disconnect the PHY */
897 phy_stop(priv
->phydev
);
898 phy_disconnect(priv
->phydev
);
902 netif_stop_queue(dev
);
904 #ifdef CONFIG_STMMAC_TIMER
905 /* Stop and release the timer */
906 stmmac_close_ext_timer();
907 if (priv
->tm
!= NULL
)
910 napi_disable(&priv
->napi
);
911 skb_queue_purge(&priv
->rx_recycle
);
913 /* Free the IRQ lines */
914 free_irq(dev
->irq
, dev
);
916 /* Stop TX/RX DMA and clear the descriptors */
917 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
918 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
920 /* Release and free the Rx/Tx resources */
921 free_dma_desc_resources(priv
);
923 /* Disable the MAC Rx/Tx */
924 stmmac_disable_mac(priv
->ioaddr
);
926 netif_carrier_off(dev
);
931 static unsigned int stmmac_handle_jumbo_frames(struct sk_buff
*skb
,
932 struct net_device
*dev
,
935 struct stmmac_priv
*priv
= netdev_priv(dev
);
936 unsigned int nopaged_len
= skb_headlen(skb
);
937 unsigned int txsize
= priv
->dma_tx_size
;
938 unsigned int entry
= priv
->cur_tx
% txsize
;
939 struct dma_desc
*desc
= priv
->dma_tx
+ entry
;
941 if (nopaged_len
> BUF_SIZE_8KiB
) {
943 int buf2_size
= nopaged_len
- BUF_SIZE_8KiB
;
945 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
946 BUF_SIZE_8KiB
, DMA_TO_DEVICE
);
947 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
948 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, BUF_SIZE_8KiB
,
951 entry
= (++priv
->cur_tx
) % txsize
;
952 desc
= priv
->dma_tx
+ entry
;
954 desc
->des2
= dma_map_single(priv
->device
,
955 skb
->data
+ BUF_SIZE_8KiB
,
956 buf2_size
, DMA_TO_DEVICE
);
957 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
958 priv
->hw
->desc
->prepare_tx_desc(desc
, 0, buf2_size
,
960 priv
->hw
->desc
->set_tx_owner(desc
);
961 priv
->tx_skbuff
[entry
] = NULL
;
963 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
964 nopaged_len
, DMA_TO_DEVICE
);
965 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
966 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, nopaged_len
,
974 * @skb : the socket buffer
975 * @dev : device pointer
976 * Description : Tx entry point of the driver.
978 static netdev_tx_t
stmmac_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
980 struct stmmac_priv
*priv
= netdev_priv(dev
);
981 unsigned int txsize
= priv
->dma_tx_size
;
983 int i
, csum_insertion
= 0;
984 int nfrags
= skb_shinfo(skb
)->nr_frags
;
985 struct dma_desc
*desc
, *first
;
987 if (unlikely(stmmac_tx_avail(priv
) < nfrags
+ 1)) {
988 if (!netif_queue_stopped(dev
)) {
989 netif_stop_queue(dev
);
990 /* This is a hard error, log it. */
991 pr_err("%s: BUG! Tx Ring full when queue awake\n",
994 return NETDEV_TX_BUSY
;
997 entry
= priv
->cur_tx
% txsize
;
999 #ifdef STMMAC_XMIT_DEBUG
1000 if ((skb
->len
> ETH_FRAME_LEN
) || nfrags
)
1001 pr_info("stmmac xmit:\n"
1002 "\tskb addr %p - len: %d - nopaged_len: %d\n"
1003 "\tn_frags: %d - ip_summed: %d - %s gso\n",
1004 skb
, skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
,
1005 !skb_is_gso(skb
) ? "isn't" : "is");
1008 csum_insertion
= (skb
->ip_summed
== CHECKSUM_PARTIAL
);
1010 desc
= priv
->dma_tx
+ entry
;
1013 #ifdef STMMAC_XMIT_DEBUG
1014 if ((nfrags
> 0) || (skb
->len
> ETH_FRAME_LEN
))
1015 pr_debug("stmmac xmit: skb len: %d, nopaged_len: %d,\n"
1016 "\t\tn_frags: %d, ip_summed: %d\n",
1017 skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
);
1019 priv
->tx_skbuff
[entry
] = skb
;
1020 if (unlikely(skb
->len
>= BUF_SIZE_4KiB
)) {
1021 entry
= stmmac_handle_jumbo_frames(skb
, dev
, csum_insertion
);
1022 desc
= priv
->dma_tx
+ entry
;
1024 unsigned int nopaged_len
= skb_headlen(skb
);
1025 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1026 nopaged_len
, DMA_TO_DEVICE
);
1027 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, nopaged_len
,
1031 for (i
= 0; i
< nfrags
; i
++) {
1032 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
1033 int len
= frag
->size
;
1035 entry
= (++priv
->cur_tx
) % txsize
;
1036 desc
= priv
->dma_tx
+ entry
;
1038 TX_DBG("\t[entry %d] segment len: %d\n", entry
, len
);
1039 desc
->des2
= dma_map_page(priv
->device
, frag
->page
,
1041 len
, DMA_TO_DEVICE
);
1042 priv
->tx_skbuff
[entry
] = NULL
;
1043 priv
->hw
->desc
->prepare_tx_desc(desc
, 0, len
, csum_insertion
);
1045 priv
->hw
->desc
->set_tx_owner(desc
);
1048 /* Interrupt on completition only for the latest segment */
1049 priv
->hw
->desc
->close_tx_desc(desc
);
1051 #ifdef CONFIG_STMMAC_TIMER
1052 /* Clean IC while using timer */
1053 if (likely(priv
->tm
->enable
))
1054 priv
->hw
->desc
->clear_tx_ic(desc
);
1059 /* To avoid raise condition */
1060 priv
->hw
->desc
->set_tx_owner(first
);
1064 #ifdef STMMAC_XMIT_DEBUG
1065 if (netif_msg_pktdata(priv
)) {
1066 pr_info("stmmac xmit: current=%d, dirty=%d, entry=%d, "
1067 "first=%p, nfrags=%d\n",
1068 (priv
->cur_tx
% txsize
), (priv
->dirty_tx
% txsize
),
1069 entry
, first
, nfrags
);
1070 display_ring(priv
->dma_tx
, txsize
);
1071 pr_info(">>> frame to be transmitted: ");
1072 print_pkt(skb
->data
, skb
->len
);
1075 if (unlikely(stmmac_tx_avail(priv
) <= (MAX_SKB_FRAGS
+ 1))) {
1076 TX_DBG("%s: stop transmitted packets\n", __func__
);
1077 netif_stop_queue(dev
);
1080 dev
->stats
.tx_bytes
+= skb
->len
;
1082 skb_tx_timestamp(skb
);
1084 priv
->hw
->dma
->enable_dma_transmission(priv
->ioaddr
);
1086 return NETDEV_TX_OK
;
1089 static inline void stmmac_rx_refill(struct stmmac_priv
*priv
)
1091 unsigned int rxsize
= priv
->dma_rx_size
;
1092 int bfsize
= priv
->dma_buf_sz
;
1093 struct dma_desc
*p
= priv
->dma_rx
;
1095 for (; priv
->cur_rx
- priv
->dirty_rx
> 0; priv
->dirty_rx
++) {
1096 unsigned int entry
= priv
->dirty_rx
% rxsize
;
1097 if (likely(priv
->rx_skbuff
[entry
] == NULL
)) {
1098 struct sk_buff
*skb
;
1100 skb
= __skb_dequeue(&priv
->rx_recycle
);
1102 skb
= netdev_alloc_skb_ip_align(priv
->dev
,
1105 if (unlikely(skb
== NULL
))
1108 priv
->rx_skbuff
[entry
] = skb
;
1109 priv
->rx_skbuff_dma
[entry
] =
1110 dma_map_single(priv
->device
, skb
->data
, bfsize
,
1113 (p
+ entry
)->des2
= priv
->rx_skbuff_dma
[entry
];
1114 if (unlikely(priv
->plat
->has_gmac
)) {
1115 if (bfsize
>= BUF_SIZE_8KiB
)
1117 (p
+ entry
)->des2
+ BUF_SIZE_8KiB
;
1119 RX_DBG(KERN_INFO
"\trefill entry #%d\n", entry
);
1122 priv
->hw
->desc
->set_rx_owner(p
+ entry
);
1126 static int stmmac_rx(struct stmmac_priv
*priv
, int limit
)
1128 unsigned int rxsize
= priv
->dma_rx_size
;
1129 unsigned int entry
= priv
->cur_rx
% rxsize
;
1130 unsigned int next_entry
;
1131 unsigned int count
= 0;
1132 struct dma_desc
*p
= priv
->dma_rx
+ entry
;
1133 struct dma_desc
*p_next
;
1135 #ifdef STMMAC_RX_DEBUG
1136 if (netif_msg_hw(priv
)) {
1137 pr_debug(">>> stmmac_rx: descriptor ring:\n");
1138 display_ring(priv
->dma_rx
, rxsize
);
1142 while (!priv
->hw
->desc
->get_rx_owner(p
)) {
1150 next_entry
= (++priv
->cur_rx
) % rxsize
;
1151 p_next
= priv
->dma_rx
+ next_entry
;
1154 /* read the status of the incoming frame */
1155 status
= (priv
->hw
->desc
->rx_status(&priv
->dev
->stats
,
1157 if (unlikely(status
== discard_frame
))
1158 priv
->dev
->stats
.rx_errors
++;
1160 struct sk_buff
*skb
;
1163 frame_len
= priv
->hw
->desc
->get_rx_frame_len(p
);
1164 /* ACS is set; GMAC core strips PAD/FCS for IEEE 802.3
1165 * Type frames (LLC/LLC-SNAP) */
1166 if (unlikely(status
!= llc_snap
))
1167 frame_len
-= ETH_FCS_LEN
;
1168 #ifdef STMMAC_RX_DEBUG
1169 if (frame_len
> ETH_FRAME_LEN
)
1170 pr_debug("\tRX frame size %d, COE status: %d\n",
1173 if (netif_msg_hw(priv
))
1174 pr_debug("\tdesc: %p [entry %d] buff=0x%x\n",
1177 skb
= priv
->rx_skbuff
[entry
];
1178 if (unlikely(!skb
)) {
1179 pr_err("%s: Inconsistent Rx descriptor chain\n",
1181 priv
->dev
->stats
.rx_dropped
++;
1184 prefetch(skb
->data
- NET_IP_ALIGN
);
1185 priv
->rx_skbuff
[entry
] = NULL
;
1187 skb_put(skb
, frame_len
);
1188 dma_unmap_single(priv
->device
,
1189 priv
->rx_skbuff_dma
[entry
],
1190 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
1191 #ifdef STMMAC_RX_DEBUG
1192 if (netif_msg_pktdata(priv
)) {
1193 pr_info(" frame received (%dbytes)", frame_len
);
1194 print_pkt(skb
->data
, frame_len
);
1197 skb
->protocol
= eth_type_trans(skb
, priv
->dev
);
1199 if (unlikely(status
== csum_none
)) {
1200 /* always for the old mac 10/100 */
1201 skb_checksum_none_assert(skb
);
1202 netif_receive_skb(skb
);
1204 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1205 napi_gro_receive(&priv
->napi
, skb
);
1208 priv
->dev
->stats
.rx_packets
++;
1209 priv
->dev
->stats
.rx_bytes
+= frame_len
;
1212 p
= p_next
; /* use prefetched values */
1215 stmmac_rx_refill(priv
);
1217 priv
->xstats
.rx_pkt_n
+= count
;
1223 * stmmac_poll - stmmac poll method (NAPI)
1224 * @napi : pointer to the napi structure.
1225 * @budget : maximum number of packets that the current CPU can receive from
1228 * This function implements the the reception process.
1229 * Also it runs the TX completion thread
1231 static int stmmac_poll(struct napi_struct
*napi
, int budget
)
1233 struct stmmac_priv
*priv
= container_of(napi
, struct stmmac_priv
, napi
);
1236 priv
->xstats
.poll_n
++;
1238 work_done
= stmmac_rx(priv
, budget
);
1240 if (work_done
< budget
) {
1241 napi_complete(napi
);
1242 stmmac_enable_irq(priv
);
1249 * @dev : Pointer to net device structure
1250 * Description: this function is called when a packet transmission fails to
1251 * complete within a reasonable tmrate. The driver will mark the error in the
1252 * netdev structure and arrange for the device to be reset to a sane state
1253 * in order to transmit a new packet.
1255 static void stmmac_tx_timeout(struct net_device
*dev
)
1257 struct stmmac_priv
*priv
= netdev_priv(dev
);
1259 /* Clear Tx resources and restart transmitting again */
1260 stmmac_tx_err(priv
);
1263 /* Configuration changes (passed on by ifconfig) */
1264 static int stmmac_config(struct net_device
*dev
, struct ifmap
*map
)
1266 if (dev
->flags
& IFF_UP
) /* can't act on a running interface */
1269 /* Don't allow changing the I/O address */
1270 if (map
->base_addr
!= dev
->base_addr
) {
1271 pr_warning("%s: can't change I/O address\n", dev
->name
);
1275 /* Don't allow changing the IRQ */
1276 if (map
->irq
!= dev
->irq
) {
1277 pr_warning("%s: can't change IRQ number %d\n",
1278 dev
->name
, dev
->irq
);
1282 /* ignore other fields */
1287 * stmmac_multicast_list - entry point for multicast addressing
1288 * @dev : pointer to the device structure
1290 * This function is a driver entry point which gets called by the kernel
1291 * whenever multicast addresses must be enabled/disabled.
1295 static void stmmac_multicast_list(struct net_device
*dev
)
1297 struct stmmac_priv
*priv
= netdev_priv(dev
);
1299 spin_lock(&priv
->lock
);
1300 priv
->hw
->mac
->set_filter(dev
);
1301 spin_unlock(&priv
->lock
);
1305 * stmmac_change_mtu - entry point to change MTU size for the device.
1306 * @dev : device pointer.
1307 * @new_mtu : the new MTU size for the device.
1308 * Description: the Maximum Transfer Unit (MTU) is used by the network layer
1309 * to drive packet transmission. Ethernet has an MTU of 1500 octets
1310 * (ETH_DATA_LEN). This value can be changed with ifconfig.
1312 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1315 static int stmmac_change_mtu(struct net_device
*dev
, int new_mtu
)
1317 struct stmmac_priv
*priv
= netdev_priv(dev
);
1320 if (netif_running(dev
)) {
1321 pr_err("%s: must be stopped to change its MTU\n", dev
->name
);
1325 if (priv
->plat
->has_gmac
)
1326 max_mtu
= JUMBO_LEN
;
1328 max_mtu
= ETH_DATA_LEN
;
1330 if ((new_mtu
< 46) || (new_mtu
> max_mtu
)) {
1331 pr_err("%s: invalid MTU, max MTU is: %d\n", dev
->name
, max_mtu
);
1336 netdev_update_features(dev
);
1341 static u32
stmmac_fix_features(struct net_device
*dev
, u32 features
)
1343 struct stmmac_priv
*priv
= netdev_priv(dev
);
1346 features
&= ~NETIF_F_RXCSUM
;
1347 if (!priv
->plat
->tx_coe
)
1348 features
&= ~NETIF_F_ALL_CSUM
;
1350 /* Some GMAC devices have a bugged Jumbo frame support that
1351 * needs to have the Tx COE disabled for oversized frames
1352 * (due to limited buffer sizes). In this case we disable
1353 * the TX csum insertionin the TDES and not use SF. */
1354 if (priv
->plat
->bugged_jumbo
&& (dev
->mtu
> ETH_DATA_LEN
))
1355 features
&= ~NETIF_F_ALL_CSUM
;
1360 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
)
1362 struct net_device
*dev
= (struct net_device
*)dev_id
;
1363 struct stmmac_priv
*priv
= netdev_priv(dev
);
1365 if (unlikely(!dev
)) {
1366 pr_err("%s: invalid dev pointer\n", __func__
);
1370 if (priv
->plat
->has_gmac
)
1371 /* To handle GMAC own interrupts */
1372 priv
->hw
->mac
->host_irq_status((void __iomem
*) dev
->base_addr
);
1374 stmmac_dma_interrupt(priv
);
1379 #ifdef CONFIG_NET_POLL_CONTROLLER
1380 /* Polling receive - used by NETCONSOLE and other diagnostic tools
1381 * to allow network I/O with interrupts disabled. */
1382 static void stmmac_poll_controller(struct net_device
*dev
)
1384 disable_irq(dev
->irq
);
1385 stmmac_interrupt(dev
->irq
, dev
);
1386 enable_irq(dev
->irq
);
1391 * stmmac_ioctl - Entry point for the Ioctl
1392 * @dev: Device pointer.
1393 * @rq: An IOCTL specefic structure, that can contain a pointer to
1394 * a proprietary structure used to pass information to the driver.
1395 * @cmd: IOCTL command
1397 * Currently there are no special functionality supported in IOCTL, just the
1398 * phy_mii_ioctl(...) can be invoked.
1400 static int stmmac_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1402 struct stmmac_priv
*priv
= netdev_priv(dev
);
1405 if (!netif_running(dev
))
1411 spin_lock(&priv
->lock
);
1412 ret
= phy_mii_ioctl(priv
->phydev
, rq
, cmd
);
1413 spin_unlock(&priv
->lock
);
1418 static const struct net_device_ops stmmac_netdev_ops
= {
1419 .ndo_open
= stmmac_open
,
1420 .ndo_start_xmit
= stmmac_xmit
,
1421 .ndo_stop
= stmmac_release
,
1422 .ndo_change_mtu
= stmmac_change_mtu
,
1423 .ndo_fix_features
= stmmac_fix_features
,
1424 .ndo_set_multicast_list
= stmmac_multicast_list
,
1425 .ndo_tx_timeout
= stmmac_tx_timeout
,
1426 .ndo_do_ioctl
= stmmac_ioctl
,
1427 .ndo_set_config
= stmmac_config
,
1428 #ifdef CONFIG_NET_POLL_CONTROLLER
1429 .ndo_poll_controller
= stmmac_poll_controller
,
1431 .ndo_set_mac_address
= eth_mac_addr
,
1435 * stmmac_probe - Initialization of the adapter .
1436 * @dev : device pointer
1437 * Description: The function initializes the network device structure for
1438 * the STMMAC driver. It also calls the low level routines
1439 * in order to init the HW (i.e. the DMA engine)
1441 static int stmmac_probe(struct net_device
*dev
)
1444 struct stmmac_priv
*priv
= netdev_priv(dev
);
1448 dev
->netdev_ops
= &stmmac_netdev_ops
;
1449 stmmac_set_ethtool_ops(dev
);
1451 dev
->hw_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_IPV6_CSUM
;
1452 dev
->features
|= dev
->hw_features
| NETIF_F_HIGHDMA
;
1453 dev
->watchdog_timeo
= msecs_to_jiffies(watchdog
);
1454 #ifdef STMMAC_VLAN_TAG_USED
1455 /* Both mac100 and gmac support receive VLAN tag detection */
1456 dev
->features
|= NETIF_F_HW_VLAN_RX
;
1458 priv
->msg_enable
= netif_msg_init(debug
, default_msg_level
);
1461 priv
->flow_ctrl
= FLOW_AUTO
; /* RX/TX pause on */
1463 priv
->pause
= pause
;
1464 netif_napi_add(dev
, &priv
->napi
, stmmac_poll
, 64);
1466 /* Get the MAC address */
1467 priv
->hw
->mac
->get_umac_addr((void __iomem
*) dev
->base_addr
,
1470 if (!is_valid_ether_addr(dev
->dev_addr
))
1471 pr_warning("\tno valid MAC address;"
1472 "please, use ifconfig or nwhwconfig!\n");
1474 spin_lock_init(&priv
->lock
);
1476 ret
= register_netdev(dev
);
1478 pr_err("%s: ERROR %i registering the device\n",
1483 DBG(probe
, DEBUG
, "%s: Scatter/Gather: %s - HW checksums: %s\n",
1484 dev
->name
, (dev
->features
& NETIF_F_SG
) ? "on" : "off",
1485 (dev
->features
& NETIF_F_IP_CSUM
) ? "on" : "off");
1491 * stmmac_mac_device_setup
1492 * @dev : device pointer
1493 * Description: select and initialise the mac device (mac100 or Gmac).
1495 static int stmmac_mac_device_setup(struct net_device
*dev
)
1497 struct stmmac_priv
*priv
= netdev_priv(dev
);
1499 struct mac_device_info
*device
;
1501 if (priv
->plat
->has_gmac
)
1502 device
= dwmac1000_setup(priv
->ioaddr
);
1504 device
= dwmac100_setup(priv
->ioaddr
);
1509 if (priv
->plat
->enh_desc
) {
1510 device
->desc
= &enh_desc_ops
;
1511 pr_info("\tEnhanced descriptor structure\n");
1513 device
->desc
= &ndesc_ops
;
1517 if (device_can_wakeup(priv
->device
)) {
1518 priv
->wolopts
= WAKE_MAGIC
; /* Magic Frame as default */
1519 enable_irq_wake(dev
->irq
);
1527 * @pdev: platform device pointer
1528 * Description: the driver is initialized through platform_device.
1530 static int stmmac_dvr_probe(struct platform_device
*pdev
)
1533 struct resource
*res
;
1534 void __iomem
*addr
= NULL
;
1535 struct net_device
*ndev
= NULL
;
1536 struct stmmac_priv
*priv
= NULL
;
1537 struct plat_stmmacenet_data
*plat_dat
;
1539 pr_info("STMMAC driver:\n\tplatform registration... ");
1540 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1543 pr_info("\tdone!\n");
1545 if (!request_mem_region(res
->start
, resource_size(res
),
1547 pr_err("%s: ERROR: memory allocation failed"
1548 "cannot get the I/O addr 0x%x\n",
1549 __func__
, (unsigned int)res
->start
);
1553 addr
= ioremap(res
->start
, resource_size(res
));
1555 pr_err("%s: ERROR: memory mapping failed\n", __func__
);
1557 goto out_release_region
;
1560 ndev
= alloc_etherdev(sizeof(struct stmmac_priv
));
1562 pr_err("%s: ERROR: allocating the device\n", __func__
);
1567 SET_NETDEV_DEV(ndev
, &pdev
->dev
);
1569 /* Get the MAC information */
1570 ndev
->irq
= platform_get_irq_byname(pdev
, "macirq");
1571 if (ndev
->irq
== -ENXIO
) {
1572 pr_err("%s: ERROR: MAC IRQ configuration "
1573 "information not found\n", __func__
);
1578 priv
= netdev_priv(ndev
);
1579 priv
->device
= &(pdev
->dev
);
1581 plat_dat
= pdev
->dev
.platform_data
;
1583 priv
->plat
= plat_dat
;
1585 priv
->ioaddr
= addr
;
1587 /* PMT module is not integrated in all the MAC devices. */
1588 if (plat_dat
->pmt
) {
1589 pr_info("\tPMT module supported\n");
1590 device_set_wakeup_capable(&pdev
->dev
, 1);
1593 platform_set_drvdata(pdev
, ndev
);
1595 /* Set the I/O base addr */
1596 ndev
->base_addr
= (unsigned long)addr
;
1598 /* Custom initialisation */
1599 if (priv
->plat
->init
) {
1600 ret
= priv
->plat
->init(pdev
);
1605 /* MAC HW revice detection */
1606 ret
= stmmac_mac_device_setup(ndev
);
1610 /* Network Device Registration */
1611 ret
= stmmac_probe(ndev
);
1615 /* Override with kernel parameters if supplied XXX CRS XXX
1616 * this needs to have multiple instances */
1617 if ((phyaddr
>= 0) && (phyaddr
<= 31))
1618 priv
->plat
->phy_addr
= phyaddr
;
1620 pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n"
1621 "\tIO base addr: 0x%p)\n", ndev
->name
, pdev
->name
,
1622 pdev
->id
, ndev
->irq
, addr
);
1624 /* MDIO bus Registration */
1625 pr_debug("\tMDIO bus (id: %d)...", priv
->plat
->bus_id
);
1626 ret
= stmmac_mdio_register(ndev
);
1628 goto out_unregister
;
1629 pr_debug("registered!\n");
1633 unregister_netdev(ndev
);
1635 if (priv
->plat
->exit
)
1636 priv
->plat
->exit(pdev
);
1639 platform_set_drvdata(pdev
, NULL
);
1643 release_mem_region(res
->start
, resource_size(res
));
1650 * @pdev: platform device pointer
1651 * Description: this function resets the TX/RX processes, disables the MAC RX/TX
1652 * changes the link status, releases the DMA descriptor rings,
1653 * unregisters the MDIO bus and unmaps the allocated memory.
1655 static int stmmac_dvr_remove(struct platform_device
*pdev
)
1657 struct net_device
*ndev
= platform_get_drvdata(pdev
);
1658 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1659 struct resource
*res
;
1661 pr_info("%s:\n\tremoving driver", __func__
);
1663 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
1664 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
1666 stmmac_disable_mac(priv
->ioaddr
);
1668 netif_carrier_off(ndev
);
1670 stmmac_mdio_unregister(ndev
);
1672 if (priv
->plat
->exit
)
1673 priv
->plat
->exit(pdev
);
1675 platform_set_drvdata(pdev
, NULL
);
1676 unregister_netdev(ndev
);
1678 iounmap((void *)priv
->ioaddr
);
1679 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1680 release_mem_region(res
->start
, resource_size(res
));
1688 static int stmmac_suspend(struct device
*dev
)
1690 struct net_device
*ndev
= dev_get_drvdata(dev
);
1691 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1694 if (!ndev
|| !netif_running(ndev
))
1697 spin_lock(&priv
->lock
);
1699 netif_device_detach(ndev
);
1700 netif_stop_queue(ndev
);
1702 phy_stop(priv
->phydev
);
1704 #ifdef CONFIG_STMMAC_TIMER
1705 priv
->tm
->timer_stop();
1706 if (likely(priv
->tm
->enable
))
1709 napi_disable(&priv
->napi
);
1711 /* Stop TX/RX DMA */
1712 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
1713 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
1714 /* Clear the Rx/Tx descriptors */
1715 priv
->hw
->desc
->init_rx_desc(priv
->dma_rx
, priv
->dma_rx_size
,
1717 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
1719 /* Enable Power down mode by programming the PMT regs */
1720 if (device_may_wakeup(priv
->device
))
1721 priv
->hw
->mac
->pmt(priv
->ioaddr
, priv
->wolopts
);
1723 stmmac_disable_mac(priv
->ioaddr
);
1725 spin_unlock(&priv
->lock
);
1729 static int stmmac_resume(struct device
*dev
)
1731 struct net_device
*ndev
= dev_get_drvdata(dev
);
1732 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1734 if (!netif_running(ndev
))
1737 spin_lock(&priv
->lock
);
1739 /* Power Down bit, into the PM register, is cleared
1740 * automatically as soon as a magic packet or a Wake-up frame
1741 * is received. Anyway, it's better to manually clear
1742 * this bit because it can generate problems while resuming
1743 * from another devices (e.g. serial console). */
1744 if (device_may_wakeup(priv
->device
))
1745 priv
->hw
->mac
->pmt(priv
->ioaddr
, 0);
1747 netif_device_attach(ndev
);
1749 /* Enable the MAC and DMA */
1750 stmmac_enable_mac(priv
->ioaddr
);
1751 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
1752 priv
->hw
->dma
->start_rx(priv
->ioaddr
);
1754 #ifdef CONFIG_STMMAC_TIMER
1755 if (likely(priv
->tm
->enable
))
1756 priv
->tm
->timer_start(tmrate
);
1758 napi_enable(&priv
->napi
);
1761 phy_start(priv
->phydev
);
1763 netif_start_queue(ndev
);
1765 spin_unlock(&priv
->lock
);
1769 static int stmmac_freeze(struct device
*dev
)
1771 struct net_device
*ndev
= dev_get_drvdata(dev
);
1773 if (!ndev
|| !netif_running(ndev
))
1776 return stmmac_release(ndev
);
1779 static int stmmac_restore(struct device
*dev
)
1781 struct net_device
*ndev
= dev_get_drvdata(dev
);
1783 if (!ndev
|| !netif_running(ndev
))
1786 return stmmac_open(ndev
);
1789 static const struct dev_pm_ops stmmac_pm_ops
= {
1790 .suspend
= stmmac_suspend
,
1791 .resume
= stmmac_resume
,
1792 .freeze
= stmmac_freeze
,
1793 .thaw
= stmmac_restore
,
1794 .restore
= stmmac_restore
,
1797 static const struct dev_pm_ops stmmac_pm_ops
;
1798 #endif /* CONFIG_PM */
1800 static struct platform_driver stmmac_driver
= {
1801 .probe
= stmmac_dvr_probe
,
1802 .remove
= stmmac_dvr_remove
,
1804 .name
= STMMAC_RESOURCE_NAME
,
1805 .owner
= THIS_MODULE
,
1806 .pm
= &stmmac_pm_ops
,
1811 * stmmac_init_module - Entry point for the driver
1812 * Description: This function is the entry point for the driver.
1814 static int __init
stmmac_init_module(void)
1818 ret
= platform_driver_register(&stmmac_driver
);
1823 * stmmac_cleanup_module - Cleanup routine for the driver
1824 * Description: This function is the cleanup routine for the driver.
1826 static void __exit
stmmac_cleanup_module(void)
1828 platform_driver_unregister(&stmmac_driver
);
1832 static int __init
stmmac_cmdline_opt(char *str
)
1838 while ((opt
= strsep(&str
, ",")) != NULL
) {
1839 if (!strncmp(opt
, "debug:", 6)) {
1840 if (strict_strtoul(opt
+ 6, 0, (unsigned long *)&debug
))
1842 } else if (!strncmp(opt
, "phyaddr:", 8)) {
1843 if (strict_strtoul(opt
+ 8, 0,
1844 (unsigned long *)&phyaddr
))
1846 } else if (!strncmp(opt
, "dma_txsize:", 11)) {
1847 if (strict_strtoul(opt
+ 11, 0,
1848 (unsigned long *)&dma_txsize
))
1850 } else if (!strncmp(opt
, "dma_rxsize:", 11)) {
1851 if (strict_strtoul(opt
+ 11, 0,
1852 (unsigned long *)&dma_rxsize
))
1854 } else if (!strncmp(opt
, "buf_sz:", 7)) {
1855 if (strict_strtoul(opt
+ 7, 0,
1856 (unsigned long *)&buf_sz
))
1858 } else if (!strncmp(opt
, "tc:", 3)) {
1859 if (strict_strtoul(opt
+ 3, 0, (unsigned long *)&tc
))
1861 } else if (!strncmp(opt
, "watchdog:", 9)) {
1862 if (strict_strtoul(opt
+ 9, 0,
1863 (unsigned long *)&watchdog
))
1865 } else if (!strncmp(opt
, "flow_ctrl:", 10)) {
1866 if (strict_strtoul(opt
+ 10, 0,
1867 (unsigned long *)&flow_ctrl
))
1869 } else if (!strncmp(opt
, "pause:", 6)) {
1870 if (strict_strtoul(opt
+ 6, 0, (unsigned long *)&pause
))
1872 #ifdef CONFIG_STMMAC_TIMER
1873 } else if (!strncmp(opt
, "tmrate:", 7)) {
1874 if (strict_strtoul(opt
+ 7, 0,
1875 (unsigned long *)&tmrate
))
1883 pr_err("%s: ERROR broken module parameter conversion", __func__
);
1887 __setup("stmmaceth=", stmmac_cmdline_opt
);
1890 module_init(stmmac_init_module
);
1891 module_exit(stmmac_cleanup_module
);
1893 MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet driver");
1894 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
1895 MODULE_LICENSE("GPL");