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>
46 #include <linux/if_vlan.h>
47 #include <linux/dma-mapping.h>
48 #include <linux/slab.h>
49 #include <linux/prefetch.h>
52 #define STMMAC_RESOURCE_NAME "stmmaceth"
55 /*#define STMMAC_DEBUG*/
57 #define DBG(nlevel, klevel, fmt, args...) \
58 ((void)(netif_msg_##nlevel(priv) && \
59 printk(KERN_##klevel fmt, ## args)))
61 #define DBG(nlevel, klevel, fmt, args...) do { } while (0)
64 #undef STMMAC_RX_DEBUG
65 /*#define STMMAC_RX_DEBUG*/
66 #ifdef STMMAC_RX_DEBUG
67 #define RX_DBG(fmt, args...) printk(fmt, ## args)
69 #define RX_DBG(fmt, args...) do { } while (0)
72 #undef STMMAC_XMIT_DEBUG
73 /*#define STMMAC_XMIT_DEBUG*/
74 #ifdef STMMAC_TX_DEBUG
75 #define TX_DBG(fmt, args...) printk(fmt, ## args)
77 #define TX_DBG(fmt, args...) do { } while (0)
80 #define STMMAC_ALIGN(x) L1_CACHE_ALIGN(x)
81 #define JUMBO_LEN 9000
83 /* Module parameters */
84 #define TX_TIMEO 5000 /* default 5 seconds */
85 static int watchdog
= TX_TIMEO
;
86 module_param(watchdog
, int, S_IRUGO
| S_IWUSR
);
87 MODULE_PARM_DESC(watchdog
, "Transmit timeout in milliseconds");
89 static int debug
= -1; /* -1: default, 0: no output, 16: all */
90 module_param(debug
, int, S_IRUGO
| S_IWUSR
);
91 MODULE_PARM_DESC(debug
, "Message Level (0: no output, 16: all)");
93 static int phyaddr
= -1;
94 module_param(phyaddr
, int, S_IRUGO
);
95 MODULE_PARM_DESC(phyaddr
, "Physical device address");
97 #define DMA_TX_SIZE 256
98 static int dma_txsize
= DMA_TX_SIZE
;
99 module_param(dma_txsize
, int, S_IRUGO
| S_IWUSR
);
100 MODULE_PARM_DESC(dma_txsize
, "Number of descriptors in the TX list");
102 #define DMA_RX_SIZE 256
103 static int dma_rxsize
= DMA_RX_SIZE
;
104 module_param(dma_rxsize
, int, S_IRUGO
| S_IWUSR
);
105 MODULE_PARM_DESC(dma_rxsize
, "Number of descriptors in the RX list");
107 static int flow_ctrl
= FLOW_OFF
;
108 module_param(flow_ctrl
, int, S_IRUGO
| S_IWUSR
);
109 MODULE_PARM_DESC(flow_ctrl
, "Flow control ability [on/off]");
111 static int pause
= PAUSE_TIME
;
112 module_param(pause
, int, S_IRUGO
| S_IWUSR
);
113 MODULE_PARM_DESC(pause
, "Flow Control Pause Time");
115 #define TC_DEFAULT 64
116 static int tc
= TC_DEFAULT
;
117 module_param(tc
, int, S_IRUGO
| S_IWUSR
);
118 MODULE_PARM_DESC(tc
, "DMA threshold control value");
120 /* Pay attention to tune this parameter; take care of both
121 * hardware capability and network stabitily/performance impact.
122 * Many tests showed that ~4ms latency seems to be good enough. */
123 #ifdef CONFIG_STMMAC_TIMER
124 #define DEFAULT_PERIODIC_RATE 256
125 static int tmrate
= DEFAULT_PERIODIC_RATE
;
126 module_param(tmrate
, int, S_IRUGO
| S_IWUSR
);
127 MODULE_PARM_DESC(tmrate
, "External timer freq. (default: 256Hz)");
130 #define DMA_BUFFER_SIZE BUF_SIZE_2KiB
131 static int buf_sz
= DMA_BUFFER_SIZE
;
132 module_param(buf_sz
, int, S_IRUGO
| S_IWUSR
);
133 MODULE_PARM_DESC(buf_sz
, "DMA buffer size");
135 static const u32 default_msg_level
= (NETIF_MSG_DRV
| NETIF_MSG_PROBE
|
136 NETIF_MSG_LINK
| NETIF_MSG_IFUP
|
137 NETIF_MSG_IFDOWN
| NETIF_MSG_TIMER
);
139 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
);
142 * stmmac_verify_args - verify the driver parameters.
143 * Description: it verifies if some wrong parameter is passed to the driver.
144 * Note that wrong parameters are replaced with the default values.
146 static void stmmac_verify_args(void)
148 if (unlikely(watchdog
< 0))
150 if (unlikely(dma_rxsize
< 0))
151 dma_rxsize
= DMA_RX_SIZE
;
152 if (unlikely(dma_txsize
< 0))
153 dma_txsize
= DMA_TX_SIZE
;
154 if (unlikely((buf_sz
< DMA_BUFFER_SIZE
) || (buf_sz
> BUF_SIZE_16KiB
)))
155 buf_sz
= DMA_BUFFER_SIZE
;
156 if (unlikely(flow_ctrl
> 1))
157 flow_ctrl
= FLOW_AUTO
;
158 else if (likely(flow_ctrl
< 0))
159 flow_ctrl
= FLOW_OFF
;
160 if (unlikely((pause
< 0) || (pause
> 0xffff)))
164 #if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG)
165 static void print_pkt(unsigned char *buf
, int len
)
168 pr_info("len = %d byte, buf addr: 0x%p", len
, buf
);
169 for (j
= 0; j
< len
; j
++) {
171 pr_info("\n %03x:", j
);
172 pr_info(" %02x", buf
[j
]);
178 /* minimum number of free TX descriptors required to wake up TX process */
179 #define STMMAC_TX_THRESH(x) (x->dma_tx_size/4)
181 static inline u32
stmmac_tx_avail(struct stmmac_priv
*priv
)
183 return priv
->dirty_tx
+ priv
->dma_tx_size
- priv
->cur_tx
- 1;
186 /* On some ST platforms, some HW system configuraton registers have to be
187 * set according to the link speed negotiated.
189 static inline void stmmac_hw_fix_mac_speed(struct stmmac_priv
*priv
)
191 struct phy_device
*phydev
= priv
->phydev
;
193 if (likely(priv
->plat
->fix_mac_speed
))
194 priv
->plat
->fix_mac_speed(priv
->plat
->bsp_priv
,
200 * @dev: net device structure
201 * Description: it adjusts the link parameters.
203 static void stmmac_adjust_link(struct net_device
*dev
)
205 struct stmmac_priv
*priv
= netdev_priv(dev
);
206 struct phy_device
*phydev
= priv
->phydev
;
209 unsigned int fc
= priv
->flow_ctrl
, pause_time
= priv
->pause
;
214 DBG(probe
, DEBUG
, "stmmac_adjust_link: called. address %d link %d\n",
215 phydev
->addr
, phydev
->link
);
217 spin_lock_irqsave(&priv
->lock
, flags
);
219 u32 ctrl
= readl(priv
->ioaddr
+ MAC_CTRL_REG
);
221 /* Now we make sure that we can be in full duplex mode.
222 * If not, we operate in half-duplex mode. */
223 if (phydev
->duplex
!= priv
->oldduplex
) {
225 if (!(phydev
->duplex
))
226 ctrl
&= ~priv
->hw
->link
.duplex
;
228 ctrl
|= priv
->hw
->link
.duplex
;
229 priv
->oldduplex
= phydev
->duplex
;
231 /* Flow Control operation */
233 priv
->hw
->mac
->flow_ctrl(priv
->ioaddr
, phydev
->duplex
,
236 if (phydev
->speed
!= priv
->speed
) {
238 switch (phydev
->speed
) {
240 if (likely(priv
->plat
->has_gmac
))
241 ctrl
&= ~priv
->hw
->link
.port
;
242 stmmac_hw_fix_mac_speed(priv
);
246 if (priv
->plat
->has_gmac
) {
247 ctrl
|= priv
->hw
->link
.port
;
248 if (phydev
->speed
== SPEED_100
) {
249 ctrl
|= priv
->hw
->link
.speed
;
251 ctrl
&= ~(priv
->hw
->link
.speed
);
254 ctrl
&= ~priv
->hw
->link
.port
;
256 stmmac_hw_fix_mac_speed(priv
);
259 if (netif_msg_link(priv
))
260 pr_warning("%s: Speed (%d) is not 10"
261 " or 100!\n", dev
->name
, phydev
->speed
);
265 priv
->speed
= phydev
->speed
;
268 writel(ctrl
, priv
->ioaddr
+ MAC_CTRL_REG
);
270 if (!priv
->oldlink
) {
274 } else if (priv
->oldlink
) {
278 priv
->oldduplex
= -1;
281 if (new_state
&& netif_msg_link(priv
))
282 phy_print_status(phydev
);
284 spin_unlock_irqrestore(&priv
->lock
, flags
);
286 DBG(probe
, DEBUG
, "stmmac_adjust_link: exiting\n");
290 * stmmac_init_phy - PHY initialization
291 * @dev: net device structure
292 * Description: it initializes the driver's PHY state, and attaches the PHY
297 static int stmmac_init_phy(struct net_device
*dev
)
299 struct stmmac_priv
*priv
= netdev_priv(dev
);
300 struct phy_device
*phydev
;
301 char phy_id
[MII_BUS_ID_SIZE
+ 3];
302 char bus_id
[MII_BUS_ID_SIZE
];
306 priv
->oldduplex
= -1;
308 snprintf(bus_id
, MII_BUS_ID_SIZE
, "%x", priv
->plat
->bus_id
);
309 snprintf(phy_id
, MII_BUS_ID_SIZE
+ 3, PHY_ID_FMT
, bus_id
,
310 priv
->plat
->phy_addr
);
311 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id
);
313 phydev
= phy_connect(dev
, phy_id
, &stmmac_adjust_link
, 0,
314 priv
->plat
->interface
);
316 if (IS_ERR(phydev
)) {
317 pr_err("%s: Could not attach to PHY\n", dev
->name
);
318 return PTR_ERR(phydev
);
322 * Broken HW is sometimes missing the pull-up resistor on the
323 * MDIO line, which results in reads to non-existent devices returning
324 * 0 rather than 0xffff. Catch this here and treat 0 as a non-existent
326 * Note: phydev->phy_id is the result of reading the UID PHY registers.
328 if (phydev
->phy_id
== 0) {
329 phy_disconnect(phydev
);
332 pr_debug("stmmac_init_phy: %s: attached to PHY (UID 0x%x)"
333 " Link = %d\n", dev
->name
, phydev
->phy_id
, phydev
->link
);
335 priv
->phydev
= phydev
;
340 static inline void stmmac_enable_mac(void __iomem
*ioaddr
)
342 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
344 value
|= MAC_RNABLE_RX
| MAC_ENABLE_TX
;
345 writel(value
, ioaddr
+ MAC_CTRL_REG
);
348 static inline void stmmac_disable_mac(void __iomem
*ioaddr
)
350 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
352 value
&= ~(MAC_ENABLE_TX
| MAC_RNABLE_RX
);
353 writel(value
, ioaddr
+ MAC_CTRL_REG
);
358 * @p: pointer to the ring.
359 * @size: size of the ring.
360 * Description: display all the descriptors within the ring.
362 static void display_ring(struct dma_desc
*p
, int size
)
370 for (i
= 0; i
< size
; i
++) {
371 struct tmp_s
*x
= (struct tmp_s
*)(p
+ i
);
372 pr_info("\t%d [0x%x]: DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
373 i
, (unsigned int)virt_to_phys(&p
[i
]),
374 (unsigned int)(x
->a
), (unsigned int)((x
->a
) >> 32),
381 * init_dma_desc_rings - init the RX/TX descriptor rings
382 * @dev: net device structure
383 * Description: this function initializes the DMA RX/TX descriptors
384 * and allocates the socket buffers.
386 static void init_dma_desc_rings(struct net_device
*dev
)
389 struct stmmac_priv
*priv
= netdev_priv(dev
);
391 unsigned int txsize
= priv
->dma_tx_size
;
392 unsigned int rxsize
= priv
->dma_rx_size
;
393 unsigned int bfsize
= priv
->dma_buf_sz
;
394 int buff2_needed
= 0, dis_ic
= 0;
396 /* Set the Buffer size according to the MTU;
397 * indeed, in case of jumbo we need to bump-up the buffer sizes.
399 if (unlikely(dev
->mtu
>= BUF_SIZE_8KiB
))
400 bfsize
= BUF_SIZE_16KiB
;
401 else if (unlikely(dev
->mtu
>= BUF_SIZE_4KiB
))
402 bfsize
= BUF_SIZE_8KiB
;
403 else if (unlikely(dev
->mtu
>= BUF_SIZE_2KiB
))
404 bfsize
= BUF_SIZE_4KiB
;
405 else if (unlikely(dev
->mtu
>= DMA_BUFFER_SIZE
))
406 bfsize
= BUF_SIZE_2KiB
;
408 bfsize
= DMA_BUFFER_SIZE
;
410 #ifdef CONFIG_STMMAC_TIMER
411 /* Disable interrupts on completion for the reception if timer is on */
412 if (likely(priv
->tm
->enable
))
415 /* If the MTU exceeds 8k so use the second buffer in the chain */
416 if (bfsize
>= BUF_SIZE_8KiB
)
419 DBG(probe
, INFO
, "stmmac: txsize %d, rxsize %d, bfsize %d\n",
420 txsize
, rxsize
, bfsize
);
422 priv
->rx_skbuff_dma
= kmalloc(rxsize
* sizeof(dma_addr_t
), GFP_KERNEL
);
424 kmalloc(sizeof(struct sk_buff
*) * rxsize
, GFP_KERNEL
);
426 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
428 sizeof(struct dma_desc
),
431 priv
->tx_skbuff
= kmalloc(sizeof(struct sk_buff
*) * txsize
,
434 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
436 sizeof(struct dma_desc
),
440 if ((priv
->dma_rx
== NULL
) || (priv
->dma_tx
== NULL
)) {
441 pr_err("%s:ERROR allocating the DMA Tx/Rx desc\n", __func__
);
445 DBG(probe
, INFO
, "stmmac (%s) DMA desc rings: virt addr (Rx %p, "
446 "Tx %p)\n\tDMA phy addr (Rx 0x%08x, Tx 0x%08x)\n",
447 dev
->name
, priv
->dma_rx
, priv
->dma_tx
,
448 (unsigned int)priv
->dma_rx_phy
, (unsigned int)priv
->dma_tx_phy
);
450 /* RX INITIALIZATION */
451 DBG(probe
, INFO
, "stmmac: SKB addresses:\n"
452 "skb\t\tskb data\tdma data\n");
454 for (i
= 0; i
< rxsize
; i
++) {
455 struct dma_desc
*p
= priv
->dma_rx
+ i
;
457 skb
= netdev_alloc_skb_ip_align(dev
, bfsize
);
458 if (unlikely(skb
== NULL
)) {
459 pr_err("%s: Rx init fails; skb is NULL\n", __func__
);
462 priv
->rx_skbuff
[i
] = skb
;
463 priv
->rx_skbuff_dma
[i
] = dma_map_single(priv
->device
, skb
->data
,
464 bfsize
, DMA_FROM_DEVICE
);
466 p
->des2
= priv
->rx_skbuff_dma
[i
];
467 if (unlikely(buff2_needed
))
468 p
->des3
= p
->des2
+ BUF_SIZE_8KiB
;
469 DBG(probe
, INFO
, "[%p]\t[%p]\t[%x]\n", priv
->rx_skbuff
[i
],
470 priv
->rx_skbuff
[i
]->data
, priv
->rx_skbuff_dma
[i
]);
473 priv
->dirty_rx
= (unsigned int)(i
- rxsize
);
474 priv
->dma_buf_sz
= bfsize
;
477 /* TX INITIALIZATION */
478 for (i
= 0; i
< txsize
; i
++) {
479 priv
->tx_skbuff
[i
] = NULL
;
480 priv
->dma_tx
[i
].des2
= 0;
485 /* Clear the Rx/Tx descriptors */
486 priv
->hw
->desc
->init_rx_desc(priv
->dma_rx
, rxsize
, dis_ic
);
487 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, txsize
);
489 if (netif_msg_hw(priv
)) {
490 pr_info("RX descriptor ring:\n");
491 display_ring(priv
->dma_rx
, rxsize
);
492 pr_info("TX descriptor ring:\n");
493 display_ring(priv
->dma_tx
, txsize
);
497 static void dma_free_rx_skbufs(struct stmmac_priv
*priv
)
501 for (i
= 0; i
< priv
->dma_rx_size
; i
++) {
502 if (priv
->rx_skbuff
[i
]) {
503 dma_unmap_single(priv
->device
, priv
->rx_skbuff_dma
[i
],
504 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
505 dev_kfree_skb_any(priv
->rx_skbuff
[i
]);
507 priv
->rx_skbuff
[i
] = NULL
;
511 static void dma_free_tx_skbufs(struct stmmac_priv
*priv
)
515 for (i
= 0; i
< priv
->dma_tx_size
; i
++) {
516 if (priv
->tx_skbuff
[i
] != NULL
) {
517 struct dma_desc
*p
= priv
->dma_tx
+ i
;
519 dma_unmap_single(priv
->device
, p
->des2
,
520 priv
->hw
->desc
->get_tx_len(p
),
522 dev_kfree_skb_any(priv
->tx_skbuff
[i
]);
523 priv
->tx_skbuff
[i
] = NULL
;
528 static void free_dma_desc_resources(struct stmmac_priv
*priv
)
530 /* Release the DMA TX/RX socket buffers */
531 dma_free_rx_skbufs(priv
);
532 dma_free_tx_skbufs(priv
);
534 /* Free the region of consistent memory previously allocated for
536 dma_free_coherent(priv
->device
,
537 priv
->dma_tx_size
* sizeof(struct dma_desc
),
538 priv
->dma_tx
, priv
->dma_tx_phy
);
539 dma_free_coherent(priv
->device
,
540 priv
->dma_rx_size
* sizeof(struct dma_desc
),
541 priv
->dma_rx
, priv
->dma_rx_phy
);
542 kfree(priv
->rx_skbuff_dma
);
543 kfree(priv
->rx_skbuff
);
544 kfree(priv
->tx_skbuff
);
548 * stmmac_dma_operation_mode - HW DMA operation mode
549 * @priv : pointer to the private device structure.
550 * Description: it sets the DMA operation mode: tx/rx DMA thresholds
551 * or Store-And-Forward capability.
553 static void stmmac_dma_operation_mode(struct stmmac_priv
*priv
)
555 if (likely(priv
->plat
->force_sf_dma_mode
||
556 ((priv
->plat
->tx_coe
) && (!priv
->no_csum_insertion
)))) {
558 * In case of GMAC, SF mode can be enabled
559 * to perform the TX COE in HW. This depends on:
560 * 1) TX COE if actually supported
561 * 2) There is no bugged Jumbo frame support
562 * that needs to not insert csum in the TDES.
564 priv
->hw
->dma
->dma_mode(priv
->ioaddr
,
565 SF_DMA_MODE
, SF_DMA_MODE
);
568 priv
->hw
->dma
->dma_mode(priv
->ioaddr
, tc
, SF_DMA_MODE
);
573 * @priv: private driver structure
574 * Description: it reclaims resources after transmission completes.
576 static void stmmac_tx(struct stmmac_priv
*priv
)
578 unsigned int txsize
= priv
->dma_tx_size
;
580 while (priv
->dirty_tx
!= priv
->cur_tx
) {
582 unsigned int entry
= priv
->dirty_tx
% txsize
;
583 struct sk_buff
*skb
= priv
->tx_skbuff
[entry
];
584 struct dma_desc
*p
= priv
->dma_tx
+ entry
;
586 /* Check if the descriptor is owned by the DMA. */
587 if (priv
->hw
->desc
->get_tx_owner(p
))
590 /* Verify tx error by looking at the last segment */
591 last
= priv
->hw
->desc
->get_tx_ls(p
);
594 priv
->hw
->desc
->tx_status(&priv
->dev
->stats
,
597 if (likely(tx_error
== 0)) {
598 priv
->dev
->stats
.tx_packets
++;
599 priv
->xstats
.tx_pkt_n
++;
601 priv
->dev
->stats
.tx_errors
++;
603 TX_DBG("%s: curr %d, dirty %d\n", __func__
,
604 priv
->cur_tx
, priv
->dirty_tx
);
607 dma_unmap_single(priv
->device
, p
->des2
,
608 priv
->hw
->desc
->get_tx_len(p
),
610 if (unlikely(p
->des3
))
613 if (likely(skb
!= NULL
)) {
615 * If there's room in the queue (limit it to size)
616 * we add this skb back into the pool,
617 * if it's the right size.
619 if ((skb_queue_len(&priv
->rx_recycle
) <
620 priv
->dma_rx_size
) &&
621 skb_recycle_check(skb
, priv
->dma_buf_sz
))
622 __skb_queue_head(&priv
->rx_recycle
, skb
);
626 priv
->tx_skbuff
[entry
] = NULL
;
629 priv
->hw
->desc
->release_tx_desc(p
);
631 entry
= (++priv
->dirty_tx
) % txsize
;
633 if (unlikely(netif_queue_stopped(priv
->dev
) &&
634 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
))) {
635 netif_tx_lock(priv
->dev
);
636 if (netif_queue_stopped(priv
->dev
) &&
637 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
)) {
638 TX_DBG("%s: restart transmit\n", __func__
);
639 netif_wake_queue(priv
->dev
);
641 netif_tx_unlock(priv
->dev
);
645 static inline void stmmac_enable_irq(struct stmmac_priv
*priv
)
647 #ifdef CONFIG_STMMAC_TIMER
648 if (likely(priv
->tm
->enable
))
649 priv
->tm
->timer_start(tmrate
);
652 priv
->hw
->dma
->enable_dma_irq(priv
->ioaddr
);
655 static inline void stmmac_disable_irq(struct stmmac_priv
*priv
)
657 #ifdef CONFIG_STMMAC_TIMER
658 if (likely(priv
->tm
->enable
))
659 priv
->tm
->timer_stop();
662 priv
->hw
->dma
->disable_dma_irq(priv
->ioaddr
);
665 static int stmmac_has_work(struct stmmac_priv
*priv
)
667 unsigned int has_work
= 0;
668 int rxret
, tx_work
= 0;
670 rxret
= priv
->hw
->desc
->get_rx_owner(priv
->dma_rx
+
671 (priv
->cur_rx
% priv
->dma_rx_size
));
673 if (priv
->dirty_tx
!= priv
->cur_tx
)
676 if (likely(!rxret
|| tx_work
))
682 static inline void _stmmac_schedule(struct stmmac_priv
*priv
)
684 if (likely(stmmac_has_work(priv
))) {
685 stmmac_disable_irq(priv
);
686 napi_schedule(&priv
->napi
);
690 #ifdef CONFIG_STMMAC_TIMER
691 void stmmac_schedule(struct net_device
*dev
)
693 struct stmmac_priv
*priv
= netdev_priv(dev
);
695 priv
->xstats
.sched_timer_n
++;
697 _stmmac_schedule(priv
);
700 static void stmmac_no_timer_started(unsigned int x
)
704 static void stmmac_no_timer_stopped(void)
711 * @priv: pointer to the private device structure
712 * Description: it cleans the descriptors and restarts the transmission
715 static void stmmac_tx_err(struct stmmac_priv
*priv
)
718 netif_stop_queue(priv
->dev
);
720 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
721 dma_free_tx_skbufs(priv
);
722 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
725 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
727 priv
->dev
->stats
.tx_errors
++;
728 netif_wake_queue(priv
->dev
);
732 static void stmmac_dma_interrupt(struct stmmac_priv
*priv
)
736 status
= priv
->hw
->dma
->dma_interrupt(priv
->ioaddr
, &priv
->xstats
);
737 if (likely(status
== handle_tx_rx
))
738 _stmmac_schedule(priv
);
740 else if (unlikely(status
== tx_hard_error_bump_tc
)) {
741 /* Try to bump up the dma threshold on this failure */
742 if (unlikely(tc
!= SF_DMA_MODE
) && (tc
<= 256)) {
744 priv
->hw
->dma
->dma_mode(priv
->ioaddr
, tc
, SF_DMA_MODE
);
745 priv
->xstats
.threshold
= tc
;
747 } else if (unlikely(status
== tx_hard_error
))
752 * stmmac_open - open entry point of the driver
753 * @dev : pointer to the device structure.
755 * This function is the open entry point of the driver.
757 * 0 on success and an appropriate (-)ve integer as defined in errno.h
760 static int stmmac_open(struct net_device
*dev
)
762 struct stmmac_priv
*priv
= netdev_priv(dev
);
765 /* Check that the MAC address is valid. If its not, refuse
766 * to bring the device up. The user must specify an
767 * address using the following linux command:
768 * ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx */
769 if (!is_valid_ether_addr(dev
->dev_addr
)) {
770 random_ether_addr(dev
->dev_addr
);
771 pr_warning("%s: generated random MAC address %pM\n", dev
->name
,
775 stmmac_verify_args();
777 #ifdef CONFIG_STMMAC_TIMER
778 priv
->tm
= kzalloc(sizeof(struct stmmac_timer
*), GFP_KERNEL
);
779 if (unlikely(priv
->tm
== NULL
)) {
780 pr_err("%s: ERROR: timer memory alloc failed\n", __func__
);
783 priv
->tm
->freq
= tmrate
;
785 /* Test if the external timer can be actually used.
786 * In case of failure continue without timer. */
787 if (unlikely((stmmac_open_ext_timer(dev
, priv
->tm
)) < 0)) {
788 pr_warning("stmmaceth: cannot attach the external timer.\n");
790 priv
->tm
->timer_start
= stmmac_no_timer_started
;
791 priv
->tm
->timer_stop
= stmmac_no_timer_stopped
;
793 priv
->tm
->enable
= 1;
795 ret
= stmmac_init_phy(dev
);
797 pr_err("%s: Cannot attach to PHY (error: %d)\n", __func__
, ret
);
801 /* Create and initialize the TX/RX descriptors chains. */
802 priv
->dma_tx_size
= STMMAC_ALIGN(dma_txsize
);
803 priv
->dma_rx_size
= STMMAC_ALIGN(dma_rxsize
);
804 priv
->dma_buf_sz
= STMMAC_ALIGN(buf_sz
);
805 init_dma_desc_rings(dev
);
807 /* DMA initialization and SW reset */
808 ret
= priv
->hw
->dma
->init(priv
->ioaddr
, priv
->plat
->pbl
,
809 priv
->dma_tx_phy
, priv
->dma_rx_phy
);
811 pr_err("%s: DMA initialization failed\n", __func__
);
815 /* Copy the MAC addr into the HW */
816 priv
->hw
->mac
->set_umac_addr(priv
->ioaddr
, dev
->dev_addr
, 0);
817 /* If required, perform hw setup of the bus. */
818 if (priv
->plat
->bus_setup
)
819 priv
->plat
->bus_setup(priv
->ioaddr
);
820 /* Initialize the MAC Core */
821 priv
->hw
->mac
->core_init(priv
->ioaddr
);
823 priv
->rx_coe
= priv
->hw
->mac
->rx_coe(priv
->ioaddr
);
825 pr_info("stmmac: Rx Checksum Offload Engine supported\n");
826 if (priv
->plat
->tx_coe
)
827 pr_info("\tTX Checksum insertion supported\n");
828 netdev_update_features(dev
);
830 /* Initialise the MMC (if present) to disable all interrupts. */
831 writel(0xffffffff, priv
->ioaddr
+ MMC_HIGH_INTR_MASK
);
832 writel(0xffffffff, priv
->ioaddr
+ MMC_LOW_INTR_MASK
);
834 /* Request the IRQ lines */
835 ret
= request_irq(dev
->irq
, stmmac_interrupt
,
836 IRQF_SHARED
, dev
->name
, dev
);
837 if (unlikely(ret
< 0)) {
838 pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
839 __func__
, dev
->irq
, ret
);
843 /* Enable the MAC Rx/Tx */
844 stmmac_enable_mac(priv
->ioaddr
);
846 /* Set the HW DMA mode and the COE */
847 stmmac_dma_operation_mode(priv
);
849 /* Extra statistics */
850 memset(&priv
->xstats
, 0, sizeof(struct stmmac_extra_stats
));
851 priv
->xstats
.threshold
= tc
;
853 /* Start the ball rolling... */
854 DBG(probe
, DEBUG
, "%s: DMA RX/TX processes started...\n", dev
->name
);
855 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
856 priv
->hw
->dma
->start_rx(priv
->ioaddr
);
858 #ifdef CONFIG_STMMAC_TIMER
859 priv
->tm
->timer_start(tmrate
);
861 /* Dump DMA/MAC registers */
862 if (netif_msg_hw(priv
)) {
863 priv
->hw
->mac
->dump_regs(priv
->ioaddr
);
864 priv
->hw
->dma
->dump_regs(priv
->ioaddr
);
868 phy_start(priv
->phydev
);
870 napi_enable(&priv
->napi
);
871 skb_queue_head_init(&priv
->rx_recycle
);
872 netif_start_queue(dev
);
877 #ifdef CONFIG_STMMAC_TIMER
881 phy_disconnect(priv
->phydev
);
887 * stmmac_release - close entry point of the driver
888 * @dev : device pointer.
890 * This is the stop entry point of the driver.
892 static int stmmac_release(struct net_device
*dev
)
894 struct stmmac_priv
*priv
= netdev_priv(dev
);
896 /* Stop and disconnect the PHY */
898 phy_stop(priv
->phydev
);
899 phy_disconnect(priv
->phydev
);
903 netif_stop_queue(dev
);
905 #ifdef CONFIG_STMMAC_TIMER
906 /* Stop and release the timer */
907 stmmac_close_ext_timer();
908 if (priv
->tm
!= NULL
)
911 napi_disable(&priv
->napi
);
912 skb_queue_purge(&priv
->rx_recycle
);
914 /* Free the IRQ lines */
915 free_irq(dev
->irq
, dev
);
917 /* Stop TX/RX DMA and clear the descriptors */
918 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
919 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
921 /* Release and free the Rx/Tx resources */
922 free_dma_desc_resources(priv
);
924 /* Disable the MAC Rx/Tx */
925 stmmac_disable_mac(priv
->ioaddr
);
927 netif_carrier_off(dev
);
932 static unsigned int stmmac_handle_jumbo_frames(struct sk_buff
*skb
,
933 struct net_device
*dev
,
936 struct stmmac_priv
*priv
= netdev_priv(dev
);
937 unsigned int nopaged_len
= skb_headlen(skb
);
938 unsigned int txsize
= priv
->dma_tx_size
;
939 unsigned int entry
= priv
->cur_tx
% txsize
;
940 struct dma_desc
*desc
= priv
->dma_tx
+ entry
;
942 if (nopaged_len
> BUF_SIZE_8KiB
) {
944 int buf2_size
= nopaged_len
- BUF_SIZE_8KiB
;
946 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
947 BUF_SIZE_8KiB
, DMA_TO_DEVICE
);
948 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
949 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, BUF_SIZE_8KiB
,
952 entry
= (++priv
->cur_tx
) % txsize
;
953 desc
= priv
->dma_tx
+ entry
;
955 desc
->des2
= dma_map_single(priv
->device
,
956 skb
->data
+ BUF_SIZE_8KiB
,
957 buf2_size
, DMA_TO_DEVICE
);
958 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
959 priv
->hw
->desc
->prepare_tx_desc(desc
, 0, buf2_size
,
961 priv
->hw
->desc
->set_tx_owner(desc
);
962 priv
->tx_skbuff
[entry
] = NULL
;
964 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
965 nopaged_len
, DMA_TO_DEVICE
);
966 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
967 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, nopaged_len
,
975 * @skb : the socket buffer
976 * @dev : device pointer
977 * Description : Tx entry point of the driver.
979 static netdev_tx_t
stmmac_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
981 struct stmmac_priv
*priv
= netdev_priv(dev
);
982 unsigned int txsize
= priv
->dma_tx_size
;
984 int i
, csum_insertion
= 0;
985 int nfrags
= skb_shinfo(skb
)->nr_frags
;
986 struct dma_desc
*desc
, *first
;
988 if (unlikely(stmmac_tx_avail(priv
) < nfrags
+ 1)) {
989 if (!netif_queue_stopped(dev
)) {
990 netif_stop_queue(dev
);
991 /* This is a hard error, log it. */
992 pr_err("%s: BUG! Tx Ring full when queue awake\n",
995 return NETDEV_TX_BUSY
;
998 entry
= priv
->cur_tx
% txsize
;
1000 #ifdef STMMAC_XMIT_DEBUG
1001 if ((skb
->len
> ETH_FRAME_LEN
) || nfrags
)
1002 pr_info("stmmac xmit:\n"
1003 "\tskb addr %p - len: %d - nopaged_len: %d\n"
1004 "\tn_frags: %d - ip_summed: %d - %s gso\n",
1005 skb
, skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
,
1006 !skb_is_gso(skb
) ? "isn't" : "is");
1009 csum_insertion
= (skb
->ip_summed
== CHECKSUM_PARTIAL
);
1011 desc
= priv
->dma_tx
+ entry
;
1014 #ifdef STMMAC_XMIT_DEBUG
1015 if ((nfrags
> 0) || (skb
->len
> ETH_FRAME_LEN
))
1016 pr_debug("stmmac xmit: skb len: %d, nopaged_len: %d,\n"
1017 "\t\tn_frags: %d, ip_summed: %d\n",
1018 skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
);
1020 priv
->tx_skbuff
[entry
] = skb
;
1021 if (unlikely(skb
->len
>= BUF_SIZE_4KiB
)) {
1022 entry
= stmmac_handle_jumbo_frames(skb
, dev
, csum_insertion
);
1023 desc
= priv
->dma_tx
+ entry
;
1025 unsigned int nopaged_len
= skb_headlen(skb
);
1026 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1027 nopaged_len
, DMA_TO_DEVICE
);
1028 priv
->hw
->desc
->prepare_tx_desc(desc
, 1, nopaged_len
,
1032 for (i
= 0; i
< nfrags
; i
++) {
1033 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
1034 int len
= frag
->size
;
1036 entry
= (++priv
->cur_tx
) % txsize
;
1037 desc
= priv
->dma_tx
+ entry
;
1039 TX_DBG("\t[entry %d] segment len: %d\n", entry
, len
);
1040 desc
->des2
= dma_map_page(priv
->device
, frag
->page
,
1042 len
, DMA_TO_DEVICE
);
1043 priv
->tx_skbuff
[entry
] = NULL
;
1044 priv
->hw
->desc
->prepare_tx_desc(desc
, 0, len
, csum_insertion
);
1046 priv
->hw
->desc
->set_tx_owner(desc
);
1049 /* Interrupt on completition only for the latest segment */
1050 priv
->hw
->desc
->close_tx_desc(desc
);
1052 #ifdef CONFIG_STMMAC_TIMER
1053 /* Clean IC while using timer */
1054 if (likely(priv
->tm
->enable
))
1055 priv
->hw
->desc
->clear_tx_ic(desc
);
1060 /* To avoid raise condition */
1061 priv
->hw
->desc
->set_tx_owner(first
);
1065 #ifdef STMMAC_XMIT_DEBUG
1066 if (netif_msg_pktdata(priv
)) {
1067 pr_info("stmmac xmit: current=%d, dirty=%d, entry=%d, "
1068 "first=%p, nfrags=%d\n",
1069 (priv
->cur_tx
% txsize
), (priv
->dirty_tx
% txsize
),
1070 entry
, first
, nfrags
);
1071 display_ring(priv
->dma_tx
, txsize
);
1072 pr_info(">>> frame to be transmitted: ");
1073 print_pkt(skb
->data
, skb
->len
);
1076 if (unlikely(stmmac_tx_avail(priv
) <= (MAX_SKB_FRAGS
+ 1))) {
1077 TX_DBG("%s: stop transmitted packets\n", __func__
);
1078 netif_stop_queue(dev
);
1081 dev
->stats
.tx_bytes
+= skb
->len
;
1083 skb_tx_timestamp(skb
);
1085 priv
->hw
->dma
->enable_dma_transmission(priv
->ioaddr
);
1087 return NETDEV_TX_OK
;
1090 static inline void stmmac_rx_refill(struct stmmac_priv
*priv
)
1092 unsigned int rxsize
= priv
->dma_rx_size
;
1093 int bfsize
= priv
->dma_buf_sz
;
1094 struct dma_desc
*p
= priv
->dma_rx
;
1096 for (; priv
->cur_rx
- priv
->dirty_rx
> 0; priv
->dirty_rx
++) {
1097 unsigned int entry
= priv
->dirty_rx
% rxsize
;
1098 if (likely(priv
->rx_skbuff
[entry
] == NULL
)) {
1099 struct sk_buff
*skb
;
1101 skb
= __skb_dequeue(&priv
->rx_recycle
);
1103 skb
= netdev_alloc_skb_ip_align(priv
->dev
,
1106 if (unlikely(skb
== NULL
))
1109 priv
->rx_skbuff
[entry
] = skb
;
1110 priv
->rx_skbuff_dma
[entry
] =
1111 dma_map_single(priv
->device
, skb
->data
, bfsize
,
1114 (p
+ entry
)->des2
= priv
->rx_skbuff_dma
[entry
];
1115 if (unlikely(priv
->plat
->has_gmac
)) {
1116 if (bfsize
>= BUF_SIZE_8KiB
)
1118 (p
+ entry
)->des2
+ BUF_SIZE_8KiB
;
1120 RX_DBG(KERN_INFO
"\trefill entry #%d\n", entry
);
1123 priv
->hw
->desc
->set_rx_owner(p
+ entry
);
1127 static int stmmac_rx(struct stmmac_priv
*priv
, int limit
)
1129 unsigned int rxsize
= priv
->dma_rx_size
;
1130 unsigned int entry
= priv
->cur_rx
% rxsize
;
1131 unsigned int next_entry
;
1132 unsigned int count
= 0;
1133 struct dma_desc
*p
= priv
->dma_rx
+ entry
;
1134 struct dma_desc
*p_next
;
1136 #ifdef STMMAC_RX_DEBUG
1137 if (netif_msg_hw(priv
)) {
1138 pr_debug(">>> stmmac_rx: descriptor ring:\n");
1139 display_ring(priv
->dma_rx
, rxsize
);
1143 while (!priv
->hw
->desc
->get_rx_owner(p
)) {
1151 next_entry
= (++priv
->cur_rx
) % rxsize
;
1152 p_next
= priv
->dma_rx
+ next_entry
;
1155 /* read the status of the incoming frame */
1156 status
= (priv
->hw
->desc
->rx_status(&priv
->dev
->stats
,
1158 if (unlikely(status
== discard_frame
))
1159 priv
->dev
->stats
.rx_errors
++;
1161 struct sk_buff
*skb
;
1164 frame_len
= priv
->hw
->desc
->get_rx_frame_len(p
);
1165 /* ACS is set; GMAC core strips PAD/FCS for IEEE 802.3
1166 * Type frames (LLC/LLC-SNAP) */
1167 if (unlikely(status
!= llc_snap
))
1168 frame_len
-= ETH_FCS_LEN
;
1169 #ifdef STMMAC_RX_DEBUG
1170 if (frame_len
> ETH_FRAME_LEN
)
1171 pr_debug("\tRX frame size %d, COE status: %d\n",
1174 if (netif_msg_hw(priv
))
1175 pr_debug("\tdesc: %p [entry %d] buff=0x%x\n",
1178 skb
= priv
->rx_skbuff
[entry
];
1179 if (unlikely(!skb
)) {
1180 pr_err("%s: Inconsistent Rx descriptor chain\n",
1182 priv
->dev
->stats
.rx_dropped
++;
1185 prefetch(skb
->data
- NET_IP_ALIGN
);
1186 priv
->rx_skbuff
[entry
] = NULL
;
1188 skb_put(skb
, frame_len
);
1189 dma_unmap_single(priv
->device
,
1190 priv
->rx_skbuff_dma
[entry
],
1191 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
1192 #ifdef STMMAC_RX_DEBUG
1193 if (netif_msg_pktdata(priv
)) {
1194 pr_info(" frame received (%dbytes)", frame_len
);
1195 print_pkt(skb
->data
, frame_len
);
1198 skb
->protocol
= eth_type_trans(skb
, priv
->dev
);
1200 if (unlikely(status
== csum_none
)) {
1201 /* always for the old mac 10/100 */
1202 skb_checksum_none_assert(skb
);
1203 netif_receive_skb(skb
);
1205 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1206 napi_gro_receive(&priv
->napi
, skb
);
1209 priv
->dev
->stats
.rx_packets
++;
1210 priv
->dev
->stats
.rx_bytes
+= frame_len
;
1213 p
= p_next
; /* use prefetched values */
1216 stmmac_rx_refill(priv
);
1218 priv
->xstats
.rx_pkt_n
+= count
;
1224 * stmmac_poll - stmmac poll method (NAPI)
1225 * @napi : pointer to the napi structure.
1226 * @budget : maximum number of packets that the current CPU can receive from
1229 * This function implements the the reception process.
1230 * Also it runs the TX completion thread
1232 static int stmmac_poll(struct napi_struct
*napi
, int budget
)
1234 struct stmmac_priv
*priv
= container_of(napi
, struct stmmac_priv
, napi
);
1237 priv
->xstats
.poll_n
++;
1239 work_done
= stmmac_rx(priv
, budget
);
1241 if (work_done
< budget
) {
1242 napi_complete(napi
);
1243 stmmac_enable_irq(priv
);
1250 * @dev : Pointer to net device structure
1251 * Description: this function is called when a packet transmission fails to
1252 * complete within a reasonable tmrate. The driver will mark the error in the
1253 * netdev structure and arrange for the device to be reset to a sane state
1254 * in order to transmit a new packet.
1256 static void stmmac_tx_timeout(struct net_device
*dev
)
1258 struct stmmac_priv
*priv
= netdev_priv(dev
);
1260 /* Clear Tx resources and restart transmitting again */
1261 stmmac_tx_err(priv
);
1264 /* Configuration changes (passed on by ifconfig) */
1265 static int stmmac_config(struct net_device
*dev
, struct ifmap
*map
)
1267 if (dev
->flags
& IFF_UP
) /* can't act on a running interface */
1270 /* Don't allow changing the I/O address */
1271 if (map
->base_addr
!= dev
->base_addr
) {
1272 pr_warning("%s: can't change I/O address\n", dev
->name
);
1276 /* Don't allow changing the IRQ */
1277 if (map
->irq
!= dev
->irq
) {
1278 pr_warning("%s: can't change IRQ number %d\n",
1279 dev
->name
, dev
->irq
);
1283 /* ignore other fields */
1288 * stmmac_set_rx_mode - entry point for multicast addressing
1289 * @dev : pointer to the device structure
1291 * This function is a driver entry point which gets called by the kernel
1292 * whenever multicast addresses must be enabled/disabled.
1296 static void stmmac_set_rx_mode(struct net_device
*dev
)
1298 struct stmmac_priv
*priv
= netdev_priv(dev
);
1300 spin_lock(&priv
->lock
);
1301 priv
->hw
->mac
->set_filter(dev
);
1302 spin_unlock(&priv
->lock
);
1306 * stmmac_change_mtu - entry point to change MTU size for the device.
1307 * @dev : device pointer.
1308 * @new_mtu : the new MTU size for the device.
1309 * Description: the Maximum Transfer Unit (MTU) is used by the network layer
1310 * to drive packet transmission. Ethernet has an MTU of 1500 octets
1311 * (ETH_DATA_LEN). This value can be changed with ifconfig.
1313 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1316 static int stmmac_change_mtu(struct net_device
*dev
, int new_mtu
)
1318 struct stmmac_priv
*priv
= netdev_priv(dev
);
1321 if (netif_running(dev
)) {
1322 pr_err("%s: must be stopped to change its MTU\n", dev
->name
);
1326 if (priv
->plat
->has_gmac
)
1327 max_mtu
= JUMBO_LEN
;
1329 max_mtu
= ETH_DATA_LEN
;
1331 if ((new_mtu
< 46) || (new_mtu
> max_mtu
)) {
1332 pr_err("%s: invalid MTU, max MTU is: %d\n", dev
->name
, max_mtu
);
1337 netdev_update_features(dev
);
1342 static u32
stmmac_fix_features(struct net_device
*dev
, u32 features
)
1344 struct stmmac_priv
*priv
= netdev_priv(dev
);
1347 features
&= ~NETIF_F_RXCSUM
;
1348 if (!priv
->plat
->tx_coe
)
1349 features
&= ~NETIF_F_ALL_CSUM
;
1351 /* Some GMAC devices have a bugged Jumbo frame support that
1352 * needs to have the Tx COE disabled for oversized frames
1353 * (due to limited buffer sizes). In this case we disable
1354 * the TX csum insertionin the TDES and not use SF. */
1355 if (priv
->plat
->bugged_jumbo
&& (dev
->mtu
> ETH_DATA_LEN
))
1356 features
&= ~NETIF_F_ALL_CSUM
;
1361 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
)
1363 struct net_device
*dev
= (struct net_device
*)dev_id
;
1364 struct stmmac_priv
*priv
= netdev_priv(dev
);
1366 if (unlikely(!dev
)) {
1367 pr_err("%s: invalid dev pointer\n", __func__
);
1371 if (priv
->plat
->has_gmac
)
1372 /* To handle GMAC own interrupts */
1373 priv
->hw
->mac
->host_irq_status((void __iomem
*) dev
->base_addr
);
1375 stmmac_dma_interrupt(priv
);
1380 #ifdef CONFIG_NET_POLL_CONTROLLER
1381 /* Polling receive - used by NETCONSOLE and other diagnostic tools
1382 * to allow network I/O with interrupts disabled. */
1383 static void stmmac_poll_controller(struct net_device
*dev
)
1385 disable_irq(dev
->irq
);
1386 stmmac_interrupt(dev
->irq
, dev
);
1387 enable_irq(dev
->irq
);
1392 * stmmac_ioctl - Entry point for the Ioctl
1393 * @dev: Device pointer.
1394 * @rq: An IOCTL specefic structure, that can contain a pointer to
1395 * a proprietary structure used to pass information to the driver.
1396 * @cmd: IOCTL command
1398 * Currently there are no special functionality supported in IOCTL, just the
1399 * phy_mii_ioctl(...) can be invoked.
1401 static int stmmac_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1403 struct stmmac_priv
*priv
= netdev_priv(dev
);
1406 if (!netif_running(dev
))
1412 spin_lock(&priv
->lock
);
1413 ret
= phy_mii_ioctl(priv
->phydev
, rq
, cmd
);
1414 spin_unlock(&priv
->lock
);
1419 static const struct net_device_ops stmmac_netdev_ops
= {
1420 .ndo_open
= stmmac_open
,
1421 .ndo_start_xmit
= stmmac_xmit
,
1422 .ndo_stop
= stmmac_release
,
1423 .ndo_change_mtu
= stmmac_change_mtu
,
1424 .ndo_fix_features
= stmmac_fix_features
,
1425 .ndo_set_rx_mode
= stmmac_set_rx_mode
,
1426 .ndo_tx_timeout
= stmmac_tx_timeout
,
1427 .ndo_do_ioctl
= stmmac_ioctl
,
1428 .ndo_set_config
= stmmac_config
,
1429 #ifdef CONFIG_NET_POLL_CONTROLLER
1430 .ndo_poll_controller
= stmmac_poll_controller
,
1432 .ndo_set_mac_address
= eth_mac_addr
,
1436 * stmmac_probe - Initialization of the adapter .
1437 * @dev : device pointer
1438 * Description: The function initializes the network device structure for
1439 * the STMMAC driver. It also calls the low level routines
1440 * in order to init the HW (i.e. the DMA engine)
1442 static int stmmac_probe(struct net_device
*dev
)
1445 struct stmmac_priv
*priv
= netdev_priv(dev
);
1449 dev
->netdev_ops
= &stmmac_netdev_ops
;
1450 stmmac_set_ethtool_ops(dev
);
1452 dev
->hw_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_IPV6_CSUM
;
1453 dev
->features
|= dev
->hw_features
| NETIF_F_HIGHDMA
;
1454 dev
->watchdog_timeo
= msecs_to_jiffies(watchdog
);
1455 #ifdef STMMAC_VLAN_TAG_USED
1456 /* Both mac100 and gmac support receive VLAN tag detection */
1457 dev
->features
|= NETIF_F_HW_VLAN_RX
;
1459 priv
->msg_enable
= netif_msg_init(debug
, default_msg_level
);
1462 priv
->flow_ctrl
= FLOW_AUTO
; /* RX/TX pause on */
1464 priv
->pause
= pause
;
1465 netif_napi_add(dev
, &priv
->napi
, stmmac_poll
, 64);
1467 /* Get the MAC address */
1468 priv
->hw
->mac
->get_umac_addr((void __iomem
*) dev
->base_addr
,
1471 if (!is_valid_ether_addr(dev
->dev_addr
))
1472 pr_warning("\tno valid MAC address;"
1473 "please, use ifconfig or nwhwconfig!\n");
1475 spin_lock_init(&priv
->lock
);
1477 ret
= register_netdev(dev
);
1479 pr_err("%s: ERROR %i registering the device\n",
1484 DBG(probe
, DEBUG
, "%s: Scatter/Gather: %s - HW checksums: %s\n",
1485 dev
->name
, (dev
->features
& NETIF_F_SG
) ? "on" : "off",
1486 (dev
->features
& NETIF_F_IP_CSUM
) ? "on" : "off");
1492 * stmmac_mac_device_setup
1493 * @dev : device pointer
1494 * Description: select and initialise the mac device (mac100 or Gmac).
1496 static int stmmac_mac_device_setup(struct net_device
*dev
)
1498 struct stmmac_priv
*priv
= netdev_priv(dev
);
1500 struct mac_device_info
*device
;
1502 if (priv
->plat
->has_gmac
) {
1503 dev
->priv_flags
|= IFF_UNICAST_FLT
;
1504 device
= dwmac1000_setup(priv
->ioaddr
);
1506 device
= dwmac100_setup(priv
->ioaddr
);
1512 if (priv
->plat
->enh_desc
) {
1513 device
->desc
= &enh_desc_ops
;
1514 pr_info("\tEnhanced descriptor structure\n");
1516 device
->desc
= &ndesc_ops
;
1520 if (device_can_wakeup(priv
->device
)) {
1521 priv
->wolopts
= WAKE_MAGIC
; /* Magic Frame as default */
1522 enable_irq_wake(dev
->irq
);
1530 * @pdev: platform device pointer
1531 * Description: the driver is initialized through platform_device.
1533 static int stmmac_dvr_probe(struct platform_device
*pdev
)
1536 struct resource
*res
;
1537 void __iomem
*addr
= NULL
;
1538 struct net_device
*ndev
= NULL
;
1539 struct stmmac_priv
*priv
= NULL
;
1540 struct plat_stmmacenet_data
*plat_dat
;
1542 pr_info("STMMAC driver:\n\tplatform registration... ");
1543 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1546 pr_info("\tdone!\n");
1548 if (!request_mem_region(res
->start
, resource_size(res
),
1550 pr_err("%s: ERROR: memory allocation failed"
1551 "cannot get the I/O addr 0x%x\n",
1552 __func__
, (unsigned int)res
->start
);
1556 addr
= ioremap(res
->start
, resource_size(res
));
1558 pr_err("%s: ERROR: memory mapping failed\n", __func__
);
1560 goto out_release_region
;
1563 ndev
= alloc_etherdev(sizeof(struct stmmac_priv
));
1565 pr_err("%s: ERROR: allocating the device\n", __func__
);
1570 SET_NETDEV_DEV(ndev
, &pdev
->dev
);
1572 /* Get the MAC information */
1573 ndev
->irq
= platform_get_irq_byname(pdev
, "macirq");
1574 if (ndev
->irq
== -ENXIO
) {
1575 pr_err("%s: ERROR: MAC IRQ configuration "
1576 "information not found\n", __func__
);
1581 priv
= netdev_priv(ndev
);
1582 priv
->device
= &(pdev
->dev
);
1584 plat_dat
= pdev
->dev
.platform_data
;
1586 priv
->plat
= plat_dat
;
1588 priv
->ioaddr
= addr
;
1590 /* PMT module is not integrated in all the MAC devices. */
1591 if (plat_dat
->pmt
) {
1592 pr_info("\tPMT module supported\n");
1593 device_set_wakeup_capable(&pdev
->dev
, 1);
1596 platform_set_drvdata(pdev
, ndev
);
1598 /* Set the I/O base addr */
1599 ndev
->base_addr
= (unsigned long)addr
;
1601 /* Custom initialisation */
1602 if (priv
->plat
->init
) {
1603 ret
= priv
->plat
->init(pdev
);
1608 /* MAC HW revice detection */
1609 ret
= stmmac_mac_device_setup(ndev
);
1613 /* Network Device Registration */
1614 ret
= stmmac_probe(ndev
);
1618 /* Override with kernel parameters if supplied XXX CRS XXX
1619 * this needs to have multiple instances */
1620 if ((phyaddr
>= 0) && (phyaddr
<= 31))
1621 priv
->plat
->phy_addr
= phyaddr
;
1623 pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n"
1624 "\tIO base addr: 0x%p)\n", ndev
->name
, pdev
->name
,
1625 pdev
->id
, ndev
->irq
, addr
);
1627 /* MDIO bus Registration */
1628 pr_debug("\tMDIO bus (id: %d)...", priv
->plat
->bus_id
);
1629 ret
= stmmac_mdio_register(ndev
);
1631 goto out_unregister
;
1632 pr_debug("registered!\n");
1636 unregister_netdev(ndev
);
1638 if (priv
->plat
->exit
)
1639 priv
->plat
->exit(pdev
);
1642 platform_set_drvdata(pdev
, NULL
);
1646 release_mem_region(res
->start
, resource_size(res
));
1653 * @pdev: platform device pointer
1654 * Description: this function resets the TX/RX processes, disables the MAC RX/TX
1655 * changes the link status, releases the DMA descriptor rings,
1656 * unregisters the MDIO bus and unmaps the allocated memory.
1658 static int stmmac_dvr_remove(struct platform_device
*pdev
)
1660 struct net_device
*ndev
= platform_get_drvdata(pdev
);
1661 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1662 struct resource
*res
;
1664 pr_info("%s:\n\tremoving driver", __func__
);
1666 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
1667 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
1669 stmmac_disable_mac(priv
->ioaddr
);
1671 netif_carrier_off(ndev
);
1673 stmmac_mdio_unregister(ndev
);
1675 if (priv
->plat
->exit
)
1676 priv
->plat
->exit(pdev
);
1678 platform_set_drvdata(pdev
, NULL
);
1679 unregister_netdev(ndev
);
1681 iounmap((void *)priv
->ioaddr
);
1682 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1683 release_mem_region(res
->start
, resource_size(res
));
1691 static int stmmac_suspend(struct device
*dev
)
1693 struct net_device
*ndev
= dev_get_drvdata(dev
);
1694 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1697 if (!ndev
|| !netif_running(ndev
))
1700 spin_lock(&priv
->lock
);
1702 netif_device_detach(ndev
);
1703 netif_stop_queue(ndev
);
1705 phy_stop(priv
->phydev
);
1707 #ifdef CONFIG_STMMAC_TIMER
1708 priv
->tm
->timer_stop();
1709 if (likely(priv
->tm
->enable
))
1712 napi_disable(&priv
->napi
);
1714 /* Stop TX/RX DMA */
1715 priv
->hw
->dma
->stop_tx(priv
->ioaddr
);
1716 priv
->hw
->dma
->stop_rx(priv
->ioaddr
);
1717 /* Clear the Rx/Tx descriptors */
1718 priv
->hw
->desc
->init_rx_desc(priv
->dma_rx
, priv
->dma_rx_size
,
1720 priv
->hw
->desc
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
1722 /* Enable Power down mode by programming the PMT regs */
1723 if (device_may_wakeup(priv
->device
))
1724 priv
->hw
->mac
->pmt(priv
->ioaddr
, priv
->wolopts
);
1726 stmmac_disable_mac(priv
->ioaddr
);
1728 spin_unlock(&priv
->lock
);
1732 static int stmmac_resume(struct device
*dev
)
1734 struct net_device
*ndev
= dev_get_drvdata(dev
);
1735 struct stmmac_priv
*priv
= netdev_priv(ndev
);
1737 if (!netif_running(ndev
))
1740 spin_lock(&priv
->lock
);
1742 /* Power Down bit, into the PM register, is cleared
1743 * automatically as soon as a magic packet or a Wake-up frame
1744 * is received. Anyway, it's better to manually clear
1745 * this bit because it can generate problems while resuming
1746 * from another devices (e.g. serial console). */
1747 if (device_may_wakeup(priv
->device
))
1748 priv
->hw
->mac
->pmt(priv
->ioaddr
, 0);
1750 netif_device_attach(ndev
);
1752 /* Enable the MAC and DMA */
1753 stmmac_enable_mac(priv
->ioaddr
);
1754 priv
->hw
->dma
->start_tx(priv
->ioaddr
);
1755 priv
->hw
->dma
->start_rx(priv
->ioaddr
);
1757 #ifdef CONFIG_STMMAC_TIMER
1758 if (likely(priv
->tm
->enable
))
1759 priv
->tm
->timer_start(tmrate
);
1761 napi_enable(&priv
->napi
);
1764 phy_start(priv
->phydev
);
1766 netif_start_queue(ndev
);
1768 spin_unlock(&priv
->lock
);
1772 static int stmmac_freeze(struct device
*dev
)
1774 struct net_device
*ndev
= dev_get_drvdata(dev
);
1776 if (!ndev
|| !netif_running(ndev
))
1779 return stmmac_release(ndev
);
1782 static int stmmac_restore(struct device
*dev
)
1784 struct net_device
*ndev
= dev_get_drvdata(dev
);
1786 if (!ndev
|| !netif_running(ndev
))
1789 return stmmac_open(ndev
);
1792 static const struct dev_pm_ops stmmac_pm_ops
= {
1793 .suspend
= stmmac_suspend
,
1794 .resume
= stmmac_resume
,
1795 .freeze
= stmmac_freeze
,
1796 .thaw
= stmmac_restore
,
1797 .restore
= stmmac_restore
,
1800 static const struct dev_pm_ops stmmac_pm_ops
;
1801 #endif /* CONFIG_PM */
1803 static struct platform_driver stmmac_driver
= {
1804 .probe
= stmmac_dvr_probe
,
1805 .remove
= stmmac_dvr_remove
,
1807 .name
= STMMAC_RESOURCE_NAME
,
1808 .owner
= THIS_MODULE
,
1809 .pm
= &stmmac_pm_ops
,
1814 * stmmac_init_module - Entry point for the driver
1815 * Description: This function is the entry point for the driver.
1817 static int __init
stmmac_init_module(void)
1821 ret
= platform_driver_register(&stmmac_driver
);
1826 * stmmac_cleanup_module - Cleanup routine for the driver
1827 * Description: This function is the cleanup routine for the driver.
1829 static void __exit
stmmac_cleanup_module(void)
1831 platform_driver_unregister(&stmmac_driver
);
1835 static int __init
stmmac_cmdline_opt(char *str
)
1841 while ((opt
= strsep(&str
, ",")) != NULL
) {
1842 if (!strncmp(opt
, "debug:", 6)) {
1843 if (strict_strtoul(opt
+ 6, 0, (unsigned long *)&debug
))
1845 } else if (!strncmp(opt
, "phyaddr:", 8)) {
1846 if (strict_strtoul(opt
+ 8, 0,
1847 (unsigned long *)&phyaddr
))
1849 } else if (!strncmp(opt
, "dma_txsize:", 11)) {
1850 if (strict_strtoul(opt
+ 11, 0,
1851 (unsigned long *)&dma_txsize
))
1853 } else if (!strncmp(opt
, "dma_rxsize:", 11)) {
1854 if (strict_strtoul(opt
+ 11, 0,
1855 (unsigned long *)&dma_rxsize
))
1857 } else if (!strncmp(opt
, "buf_sz:", 7)) {
1858 if (strict_strtoul(opt
+ 7, 0,
1859 (unsigned long *)&buf_sz
))
1861 } else if (!strncmp(opt
, "tc:", 3)) {
1862 if (strict_strtoul(opt
+ 3, 0, (unsigned long *)&tc
))
1864 } else if (!strncmp(opt
, "watchdog:", 9)) {
1865 if (strict_strtoul(opt
+ 9, 0,
1866 (unsigned long *)&watchdog
))
1868 } else if (!strncmp(opt
, "flow_ctrl:", 10)) {
1869 if (strict_strtoul(opt
+ 10, 0,
1870 (unsigned long *)&flow_ctrl
))
1872 } else if (!strncmp(opt
, "pause:", 6)) {
1873 if (strict_strtoul(opt
+ 6, 0, (unsigned long *)&pause
))
1875 #ifdef CONFIG_STMMAC_TIMER
1876 } else if (!strncmp(opt
, "tmrate:", 7)) {
1877 if (strict_strtoul(opt
+ 7, 0,
1878 (unsigned long *)&tmrate
))
1886 pr_err("%s: ERROR broken module parameter conversion", __func__
);
1890 __setup("stmmaceth=", stmmac_cmdline_opt
);
1893 module_init(stmmac_init_module
);
1894 module_exit(stmmac_cleanup_module
);
1896 MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet driver");
1897 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
1898 MODULE_LICENSE("GPL");