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/netdevice.h>
36 #include <linux/etherdevice.h>
37 #include <linux/platform_device.h>
39 #include <linux/tcp.h>
40 #include <linux/skbuff.h>
41 #include <linux/ethtool.h>
42 #include <linux/if_ether.h>
43 #include <linux/crc32.h>
44 #include <linux/mii.h>
45 #include <linux/phy.h>
46 #include <linux/if_vlan.h>
47 #include <linux/dma-mapping.h>
48 #include <linux/stm/soc.h>
51 #define STMMAC_RESOURCE_NAME "stmmaceth"
52 #define PHY_RESOURCE_NAME "stmmacphy"
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 #define RX_NO_COALESCE 1 /* Always interrupt on completion */
121 #define TX_NO_COALESCE -1 /* No moderation by default */
123 /* Pay attention to tune this parameter; take care of both
124 * hardware capability and network stabitily/performance impact.
125 * Many tests showed that ~4ms latency seems to be good enough. */
126 #ifdef CONFIG_STMMAC_TIMER
127 #define DEFAULT_PERIODIC_RATE 256
128 static int tmrate
= DEFAULT_PERIODIC_RATE
;
129 module_param(tmrate
, int, S_IRUGO
| S_IWUSR
);
130 MODULE_PARM_DESC(tmrate
, "External timer freq. (default: 256Hz)");
133 #define DMA_BUFFER_SIZE BUF_SIZE_2KiB
134 static int buf_sz
= DMA_BUFFER_SIZE
;
135 module_param(buf_sz
, int, S_IRUGO
| S_IWUSR
);
136 MODULE_PARM_DESC(buf_sz
, "DMA buffer size");
138 /* In case of Giga ETH, we can enable/disable the COE for the
139 * transmit HW checksum computation.
140 * Note that, if tx csum is off in HW, SG will be still supported. */
141 static int tx_coe
= HW_CSUM
;
142 module_param(tx_coe
, int, S_IRUGO
| S_IWUSR
);
143 MODULE_PARM_DESC(tx_coe
, "GMAC COE type 2 [on/off]");
145 static const u32 default_msg_level
= (NETIF_MSG_DRV
| NETIF_MSG_PROBE
|
146 NETIF_MSG_LINK
| NETIF_MSG_IFUP
|
147 NETIF_MSG_IFDOWN
| NETIF_MSG_TIMER
);
149 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
);
150 static netdev_tx_t
stmmac_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
153 * stmmac_verify_args - verify the driver parameters.
154 * Description: it verifies if some wrong parameter is passed to the driver.
155 * Note that wrong parameters are replaced with the default values.
157 static void stmmac_verify_args(void)
159 if (unlikely(watchdog
< 0))
161 if (unlikely(dma_rxsize
< 0))
162 dma_rxsize
= DMA_RX_SIZE
;
163 if (unlikely(dma_txsize
< 0))
164 dma_txsize
= DMA_TX_SIZE
;
165 if (unlikely((buf_sz
< DMA_BUFFER_SIZE
) || (buf_sz
> BUF_SIZE_16KiB
)))
166 buf_sz
= DMA_BUFFER_SIZE
;
167 if (unlikely(flow_ctrl
> 1))
168 flow_ctrl
= FLOW_AUTO
;
169 else if (likely(flow_ctrl
< 0))
170 flow_ctrl
= FLOW_OFF
;
171 if (unlikely((pause
< 0) || (pause
> 0xffff)))
177 #if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG)
178 static void print_pkt(unsigned char *buf
, int len
)
181 pr_info("len = %d byte, buf addr: 0x%p", len
, buf
);
182 for (j
= 0; j
< len
; j
++) {
184 pr_info("\n %03x:", j
);
185 pr_info(" %02x", buf
[j
]);
192 /* minimum number of free TX descriptors required to wake up TX process */
193 #define STMMAC_TX_THRESH(x) (x->dma_tx_size/4)
195 static inline u32
stmmac_tx_avail(struct stmmac_priv
*priv
)
197 return priv
->dirty_tx
+ priv
->dma_tx_size
- priv
->cur_tx
- 1;
202 * @dev: net device structure
203 * Description: it adjusts the link parameters.
205 static void stmmac_adjust_link(struct net_device
*dev
)
207 struct stmmac_priv
*priv
= netdev_priv(dev
);
208 struct phy_device
*phydev
= priv
->phydev
;
209 unsigned long ioaddr
= dev
->base_addr
;
212 unsigned int fc
= priv
->flow_ctrl
, pause_time
= priv
->pause
;
217 DBG(probe
, DEBUG
, "stmmac_adjust_link: called. address %d link %d\n",
218 phydev
->addr
, phydev
->link
);
220 spin_lock_irqsave(&priv
->lock
, flags
);
222 u32 ctrl
= readl(ioaddr
+ MAC_CTRL_REG
);
224 /* Now we make sure that we can be in full duplex mode.
225 * If not, we operate in half-duplex mode. */
226 if (phydev
->duplex
!= priv
->oldduplex
) {
228 if (!(phydev
->duplex
))
229 ctrl
&= ~priv
->mac_type
->hw
.link
.duplex
;
231 ctrl
|= priv
->mac_type
->hw
.link
.duplex
;
232 priv
->oldduplex
= phydev
->duplex
;
234 /* Flow Control operation */
236 priv
->mac_type
->ops
->flow_ctrl(ioaddr
, phydev
->duplex
,
239 if (phydev
->speed
!= priv
->speed
) {
241 switch (phydev
->speed
) {
243 if (likely(priv
->is_gmac
))
244 ctrl
&= ~priv
->mac_type
->hw
.link
.port
;
249 ctrl
|= priv
->mac_type
->hw
.link
.port
;
250 if (phydev
->speed
== SPEED_100
) {
252 priv
->mac_type
->hw
.link
.
256 ~(priv
->mac_type
->hw
.
260 ctrl
&= ~priv
->mac_type
->hw
.link
.port
;
262 priv
->fix_mac_speed(priv
->bsp_priv
,
266 if (netif_msg_link(priv
))
267 pr_warning("%s: Speed (%d) is not 10"
268 " or 100!\n", dev
->name
, phydev
->speed
);
272 priv
->speed
= phydev
->speed
;
275 writel(ctrl
, ioaddr
+ MAC_CTRL_REG
);
277 if (!priv
->oldlink
) {
281 } else if (priv
->oldlink
) {
285 priv
->oldduplex
= -1;
288 if (new_state
&& netif_msg_link(priv
))
289 phy_print_status(phydev
);
291 spin_unlock_irqrestore(&priv
->lock
, flags
);
293 DBG(probe
, DEBUG
, "stmmac_adjust_link: exiting\n");
297 * stmmac_init_phy - PHY initialization
298 * @dev: net device structure
299 * Description: it initializes the driver's PHY state, and attaches the PHY
304 static int stmmac_init_phy(struct net_device
*dev
)
306 struct stmmac_priv
*priv
= netdev_priv(dev
);
307 struct phy_device
*phydev
;
308 char phy_id
[BUS_ID_SIZE
]; /* PHY to connect */
309 char bus_id
[BUS_ID_SIZE
];
313 priv
->oldduplex
= -1;
315 if (priv
->phy_addr
== -1) {
316 /* We don't have a PHY, so do nothing */
320 snprintf(bus_id
, MII_BUS_ID_SIZE
, "%x", priv
->bus_id
);
321 snprintf(phy_id
, BUS_ID_SIZE
, PHY_ID_FMT
, bus_id
, priv
->phy_addr
);
322 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id
);
324 phydev
= phy_connect(dev
, phy_id
, &stmmac_adjust_link
, 0,
325 priv
->phy_interface
);
327 if (IS_ERR(phydev
)) {
328 pr_err("%s: Could not attach to PHY\n", dev
->name
);
329 return PTR_ERR(phydev
);
333 * Broken HW is sometimes missing the pull-up resistor on the
334 * MDIO line, which results in reads to non-existent devices returning
335 * 0 rather than 0xffff. Catch this here and treat 0 as a non-existent
337 * Note: phydev->phy_id is the result of reading the UID PHY registers.
339 if (phydev
->phy_id
== 0) {
340 phy_disconnect(phydev
);
343 pr_debug("stmmac_init_phy: %s: attached to PHY (UID 0x%x)"
344 " Link = %d\n", dev
->name
, phydev
->phy_id
, phydev
->link
);
346 priv
->phydev
= phydev
;
351 static inline void stmmac_mac_enable_rx(unsigned long ioaddr
)
353 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
354 value
|= MAC_RNABLE_RX
;
355 /* Set the RE (receive enable bit into the MAC CTRL register). */
356 writel(value
, ioaddr
+ MAC_CTRL_REG
);
359 static inline void stmmac_mac_enable_tx(unsigned long ioaddr
)
361 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
362 value
|= MAC_ENABLE_TX
;
363 /* Set the TE (transmit enable bit into the MAC CTRL register). */
364 writel(value
, ioaddr
+ MAC_CTRL_REG
);
367 static inline void stmmac_mac_disable_rx(unsigned long ioaddr
)
369 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
370 value
&= ~MAC_RNABLE_RX
;
371 writel(value
, ioaddr
+ MAC_CTRL_REG
);
374 static inline void stmmac_mac_disable_tx(unsigned long ioaddr
)
376 u32 value
= readl(ioaddr
+ MAC_CTRL_REG
);
377 value
&= ~MAC_ENABLE_TX
;
378 writel(value
, ioaddr
+ MAC_CTRL_REG
);
383 * @p: pointer to the ring.
384 * @size: size of the ring.
385 * Description: display all the descriptors within the ring.
387 static void display_ring(struct dma_desc
*p
, int size
)
395 for (i
= 0; i
< size
; i
++) {
396 struct tmp_s
*x
= (struct tmp_s
*)(p
+ i
);
397 pr_info("\t%d [0x%x]: DES0=0x%x DES1=0x%x BUF1=0x%x BUF2=0x%x",
398 i
, (unsigned int)virt_to_phys(&p
[i
]),
399 (unsigned int)(x
->a
), (unsigned int)((x
->a
) >> 32),
406 * init_dma_desc_rings - init the RX/TX descriptor rings
407 * @dev: net device structure
408 * Description: this function initializes the DMA RX/TX descriptors
409 * and allocates the socket buffers.
411 static void init_dma_desc_rings(struct net_device
*dev
)
414 struct stmmac_priv
*priv
= netdev_priv(dev
);
416 unsigned int txsize
= priv
->dma_tx_size
;
417 unsigned int rxsize
= priv
->dma_rx_size
;
418 unsigned int bfsize
= priv
->dma_buf_sz
;
419 int buff2_needed
= 0, dis_ic
= 0;
421 /* Set the Buffer size according to the MTU;
422 * indeed, in case of jumbo we need to bump-up the buffer sizes.
424 if (unlikely(dev
->mtu
>= BUF_SIZE_8KiB
))
425 bfsize
= BUF_SIZE_16KiB
;
426 else if (unlikely(dev
->mtu
>= BUF_SIZE_4KiB
))
427 bfsize
= BUF_SIZE_8KiB
;
428 else if (unlikely(dev
->mtu
>= BUF_SIZE_2KiB
))
429 bfsize
= BUF_SIZE_4KiB
;
430 else if (unlikely(dev
->mtu
>= DMA_BUFFER_SIZE
))
431 bfsize
= BUF_SIZE_2KiB
;
433 bfsize
= DMA_BUFFER_SIZE
;
435 #ifdef CONFIG_STMMAC_TIMER
436 /* Disable interrupts on completion for the reception if timer is on */
437 if (likely(priv
->tm
->enable
))
440 /* If the MTU exceeds 8k so use the second buffer in the chain */
441 if (bfsize
>= BUF_SIZE_8KiB
)
444 DBG(probe
, INFO
, "stmmac: txsize %d, rxsize %d, bfsize %d\n",
445 txsize
, rxsize
, bfsize
);
447 priv
->rx_skbuff_dma
= kmalloc(rxsize
* sizeof(dma_addr_t
), GFP_KERNEL
);
449 kmalloc(sizeof(struct sk_buff
*) * rxsize
, GFP_KERNEL
);
451 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
453 sizeof(struct dma_desc
),
456 priv
->tx_skbuff
= kmalloc(sizeof(struct sk_buff
*) * txsize
,
459 (struct dma_desc
*)dma_alloc_coherent(priv
->device
,
461 sizeof(struct dma_desc
),
465 if ((priv
->dma_rx
== NULL
) || (priv
->dma_tx
== NULL
)) {
466 pr_err("%s:ERROR allocating the DMA Tx/Rx desc\n", __func__
);
470 DBG(probe
, INFO
, "stmmac (%s) DMA desc rings: virt addr (Rx %p, "
471 "Tx %p)\n\tDMA phy addr (Rx 0x%08x, Tx 0x%08x)\n",
472 dev
->name
, priv
->dma_rx
, priv
->dma_tx
,
473 (unsigned int)priv
->dma_rx_phy
, (unsigned int)priv
->dma_tx_phy
);
475 /* RX INITIALIZATION */
476 DBG(probe
, INFO
, "stmmac: SKB addresses:\n"
477 "skb\t\tskb data\tdma data\n");
479 for (i
= 0; i
< rxsize
; i
++) {
480 struct dma_desc
*p
= priv
->dma_rx
+ i
;
482 skb
= netdev_alloc_skb_ip_align(dev
, bfsize
);
483 if (unlikely(skb
== NULL
)) {
484 pr_err("%s: Rx init fails; skb is NULL\n", __func__
);
487 priv
->rx_skbuff
[i
] = skb
;
488 priv
->rx_skbuff_dma
[i
] = dma_map_single(priv
->device
, skb
->data
,
489 bfsize
, DMA_FROM_DEVICE
);
491 p
->des2
= priv
->rx_skbuff_dma
[i
];
492 if (unlikely(buff2_needed
))
493 p
->des3
= p
->des2
+ BUF_SIZE_8KiB
;
494 DBG(probe
, INFO
, "[%p]\t[%p]\t[%x]\n", priv
->rx_skbuff
[i
],
495 priv
->rx_skbuff
[i
]->data
, priv
->rx_skbuff_dma
[i
]);
498 priv
->dirty_rx
= (unsigned int)(i
- rxsize
);
499 priv
->dma_buf_sz
= bfsize
;
502 /* TX INITIALIZATION */
503 for (i
= 0; i
< txsize
; i
++) {
504 priv
->tx_skbuff
[i
] = NULL
;
505 priv
->dma_tx
[i
].des2
= 0;
510 /* Clear the Rx/Tx descriptors */
511 priv
->mac_type
->ops
->init_rx_desc(priv
->dma_rx
, rxsize
, dis_ic
);
512 priv
->mac_type
->ops
->init_tx_desc(priv
->dma_tx
, txsize
);
514 if (netif_msg_hw(priv
)) {
515 pr_info("RX descriptor ring:\n");
516 display_ring(priv
->dma_rx
, rxsize
);
517 pr_info("TX descriptor ring:\n");
518 display_ring(priv
->dma_tx
, txsize
);
523 static void dma_free_rx_skbufs(struct stmmac_priv
*priv
)
527 for (i
= 0; i
< priv
->dma_rx_size
; i
++) {
528 if (priv
->rx_skbuff
[i
]) {
529 dma_unmap_single(priv
->device
, priv
->rx_skbuff_dma
[i
],
530 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
531 dev_kfree_skb_any(priv
->rx_skbuff
[i
]);
533 priv
->rx_skbuff
[i
] = NULL
;
538 static void dma_free_tx_skbufs(struct stmmac_priv
*priv
)
542 for (i
= 0; i
< priv
->dma_tx_size
; i
++) {
543 if (priv
->tx_skbuff
[i
] != NULL
) {
544 struct dma_desc
*p
= priv
->dma_tx
+ i
;
546 dma_unmap_single(priv
->device
, p
->des2
,
547 priv
->mac_type
->ops
->get_tx_len(p
),
549 dev_kfree_skb_any(priv
->tx_skbuff
[i
]);
550 priv
->tx_skbuff
[i
] = NULL
;
556 static void free_dma_desc_resources(struct stmmac_priv
*priv
)
558 /* Release the DMA TX/RX socket buffers */
559 dma_free_rx_skbufs(priv
);
560 dma_free_tx_skbufs(priv
);
562 /* Free the region of consistent memory previously allocated for
564 dma_free_coherent(priv
->device
,
565 priv
->dma_tx_size
* sizeof(struct dma_desc
),
566 priv
->dma_tx
, priv
->dma_tx_phy
);
567 dma_free_coherent(priv
->device
,
568 priv
->dma_rx_size
* sizeof(struct dma_desc
),
569 priv
->dma_rx
, priv
->dma_rx_phy
);
570 kfree(priv
->rx_skbuff_dma
);
571 kfree(priv
->rx_skbuff
);
572 kfree(priv
->tx_skbuff
);
578 * stmmac_dma_start_tx
579 * @ioaddr: device I/O address
580 * Description: this function starts the DMA tx process.
582 static void stmmac_dma_start_tx(unsigned long ioaddr
)
584 u32 value
= readl(ioaddr
+ DMA_CONTROL
);
585 value
|= DMA_CONTROL_ST
;
586 writel(value
, ioaddr
+ DMA_CONTROL
);
590 static void stmmac_dma_stop_tx(unsigned long ioaddr
)
592 u32 value
= readl(ioaddr
+ DMA_CONTROL
);
593 value
&= ~DMA_CONTROL_ST
;
594 writel(value
, ioaddr
+ DMA_CONTROL
);
599 * stmmac_dma_start_rx
600 * @ioaddr: device I/O address
601 * Description: this function starts the DMA rx process.
603 static void stmmac_dma_start_rx(unsigned long ioaddr
)
605 u32 value
= readl(ioaddr
+ DMA_CONTROL
);
606 value
|= DMA_CONTROL_SR
;
607 writel(value
, ioaddr
+ DMA_CONTROL
);
612 static void stmmac_dma_stop_rx(unsigned long ioaddr
)
614 u32 value
= readl(ioaddr
+ DMA_CONTROL
);
615 value
&= ~DMA_CONTROL_SR
;
616 writel(value
, ioaddr
+ DMA_CONTROL
);
622 * stmmac_dma_operation_mode - HW DMA operation mode
623 * @priv : pointer to the private device structure.
624 * Description: it sets the DMA operation mode: tx/rx DMA thresholds
625 * or Store-And-Forward capability. It also verifies the COE for the
626 * transmission in case of Giga ETH.
628 static void stmmac_dma_operation_mode(struct stmmac_priv
*priv
)
630 if (!priv
->is_gmac
) {
632 priv
->mac_type
->ops
->dma_mode(priv
->dev
->base_addr
, tc
, 0);
633 priv
->tx_coe
= NO_HW_CSUM
;
635 if ((priv
->dev
->mtu
<= ETH_DATA_LEN
) && (tx_coe
)) {
636 priv
->mac_type
->ops
->dma_mode(priv
->dev
->base_addr
,
637 SF_DMA_MODE
, SF_DMA_MODE
);
639 priv
->tx_coe
= HW_CSUM
;
641 /* Checksum computation is performed in software. */
642 priv
->mac_type
->ops
->dma_mode(priv
->dev
->base_addr
, tc
,
644 priv
->tx_coe
= NO_HW_CSUM
;
647 tx_coe
= priv
->tx_coe
;
654 * show_tx_process_state
655 * @status: tx descriptor status field
656 * Description: it shows the Transmit Process State for CSR5[22:20]
658 static void show_tx_process_state(unsigned int status
)
661 state
= (status
& DMA_STATUS_TS_MASK
) >> DMA_STATUS_TS_SHIFT
;
665 pr_info("- TX (Stopped): Reset or Stop command\n");
668 pr_info("- TX (Running):Fetching the Tx desc\n");
671 pr_info("- TX (Running): Waiting for end of tx\n");
674 pr_info("- TX (Running): Reading the data "
675 "and queuing the data into the Tx buf\n");
678 pr_info("- TX (Suspended): Tx Buff Underflow "
679 "or an unavailable Transmit descriptor\n");
682 pr_info("- TX (Running): Closing Tx descriptor\n");
691 * show_rx_process_state
692 * @status: rx descriptor status field
693 * Description: it shows the Receive Process State for CSR5[19:17]
695 static void show_rx_process_state(unsigned int status
)
698 state
= (status
& DMA_STATUS_RS_MASK
) >> DMA_STATUS_RS_SHIFT
;
702 pr_info("- RX (Stopped): Reset or Stop command\n");
705 pr_info("- RX (Running): Fetching the Rx desc\n");
708 pr_info("- RX (Running):Checking for end of pkt\n");
711 pr_info("- RX (Running): Waiting for Rx pkt\n");
714 pr_info("- RX (Suspended): Unavailable Rx buf\n");
717 pr_info("- RX (Running): Closing Rx descriptor\n");
720 pr_info("- RX(Running): Flushing the current frame"
721 " from the Rx buf\n");
724 pr_info("- RX (Running): Queuing the Rx frame"
725 " from the Rx buf into memory\n");
736 * @priv: private driver structure
737 * Description: it reclaims resources after transmission completes.
739 static void stmmac_tx(struct stmmac_priv
*priv
)
741 unsigned int txsize
= priv
->dma_tx_size
;
742 unsigned long ioaddr
= priv
->dev
->base_addr
;
744 while (priv
->dirty_tx
!= priv
->cur_tx
) {
746 unsigned int entry
= priv
->dirty_tx
% txsize
;
747 struct sk_buff
*skb
= priv
->tx_skbuff
[entry
];
748 struct dma_desc
*p
= priv
->dma_tx
+ entry
;
750 /* Check if the descriptor is owned by the DMA. */
751 if (priv
->mac_type
->ops
->get_tx_owner(p
))
754 /* Verify tx error by looking at the last segment */
755 last
= priv
->mac_type
->ops
->get_tx_ls(p
);
758 priv
->mac_type
->ops
->tx_status(&priv
->dev
->stats
,
761 if (likely(tx_error
== 0)) {
762 priv
->dev
->stats
.tx_packets
++;
763 priv
->xstats
.tx_pkt_n
++;
765 priv
->dev
->stats
.tx_errors
++;
767 TX_DBG("%s: curr %d, dirty %d\n", __func__
,
768 priv
->cur_tx
, priv
->dirty_tx
);
771 dma_unmap_single(priv
->device
, p
->des2
,
772 priv
->mac_type
->ops
->get_tx_len(p
),
774 if (unlikely(p
->des3
))
777 if (likely(skb
!= NULL
)) {
779 * If there's room in the queue (limit it to size)
780 * we add this skb back into the pool,
781 * if it's the right size.
783 if ((skb_queue_len(&priv
->rx_recycle
) <
784 priv
->dma_rx_size
) &&
785 skb_recycle_check(skb
, priv
->dma_buf_sz
))
786 __skb_queue_head(&priv
->rx_recycle
, skb
);
790 priv
->tx_skbuff
[entry
] = NULL
;
793 priv
->mac_type
->ops
->release_tx_desc(p
);
795 entry
= (++priv
->dirty_tx
) % txsize
;
797 if (unlikely(netif_queue_stopped(priv
->dev
) &&
798 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
))) {
799 netif_tx_lock(priv
->dev
);
800 if (netif_queue_stopped(priv
->dev
) &&
801 stmmac_tx_avail(priv
) > STMMAC_TX_THRESH(priv
)) {
802 TX_DBG("%s: restart transmit\n", __func__
);
803 netif_wake_queue(priv
->dev
);
805 netif_tx_unlock(priv
->dev
);
810 static inline void stmmac_enable_irq(struct stmmac_priv
*priv
)
812 #ifdef CONFIG_STMMAC_TIMER
813 if (likely(priv
->tm
->enable
))
814 priv
->tm
->timer_start(tmrate
);
817 writel(DMA_INTR_DEFAULT_MASK
, priv
->dev
->base_addr
+ DMA_INTR_ENA
);
820 static inline void stmmac_disable_irq(struct stmmac_priv
*priv
)
822 #ifdef CONFIG_STMMAC_TIMER
823 if (likely(priv
->tm
->enable
))
824 priv
->tm
->timer_stop();
827 writel(0, priv
->dev
->base_addr
+ DMA_INTR_ENA
);
830 static int stmmac_has_work(struct stmmac_priv
*priv
)
832 unsigned int has_work
= 0;
833 int rxret
, tx_work
= 0;
835 rxret
= priv
->mac_type
->ops
->get_rx_owner(priv
->dma_rx
+
836 (priv
->cur_rx
% priv
->dma_rx_size
));
838 if (priv
->dirty_tx
!= priv
->cur_tx
)
841 if (likely(!rxret
|| tx_work
))
847 static inline void _stmmac_schedule(struct stmmac_priv
*priv
)
849 if (likely(stmmac_has_work(priv
))) {
850 stmmac_disable_irq(priv
);
851 napi_schedule(&priv
->napi
);
855 #ifdef CONFIG_STMMAC_TIMER
856 void stmmac_schedule(struct net_device
*dev
)
858 struct stmmac_priv
*priv
= netdev_priv(dev
);
860 priv
->xstats
.sched_timer_n
++;
862 _stmmac_schedule(priv
);
867 static void stmmac_no_timer_started(unsigned int x
)
871 static void stmmac_no_timer_stopped(void)
878 * @priv: pointer to the private device structure
879 * Description: it cleans the descriptors and restarts the transmission
882 static void stmmac_tx_err(struct stmmac_priv
*priv
)
884 netif_stop_queue(priv
->dev
);
886 stmmac_dma_stop_tx(priv
->dev
->base_addr
);
887 dma_free_tx_skbufs(priv
);
888 priv
->mac_type
->ops
->init_tx_desc(priv
->dma_tx
, priv
->dma_tx_size
);
891 stmmac_dma_start_tx(priv
->dev
->base_addr
);
893 priv
->dev
->stats
.tx_errors
++;
894 netif_wake_queue(priv
->dev
);
900 * stmmac_dma_interrupt - Interrupt handler for the driver
901 * @dev: net device structure
902 * Description: Interrupt handler for the driver (DMA).
904 static void stmmac_dma_interrupt(struct net_device
*dev
)
906 unsigned long ioaddr
= dev
->base_addr
;
907 struct stmmac_priv
*priv
= netdev_priv(dev
);
908 /* read the status register (CSR5) */
909 u32 intr_status
= readl(ioaddr
+ DMA_STATUS
);
911 DBG(intr
, INFO
, "%s: [CSR5: 0x%08x]\n", __func__
, intr_status
);
914 /* It displays the DMA transmit process state (CSR5 register) */
915 if (netif_msg_tx_done(priv
))
916 show_tx_process_state(intr_status
);
917 if (netif_msg_rx_status(priv
))
918 show_rx_process_state(intr_status
);
920 /* ABNORMAL interrupts */
921 if (unlikely(intr_status
& DMA_STATUS_AIS
)) {
922 DBG(intr
, INFO
, "CSR5[15] DMA ABNORMAL IRQ: ");
923 if (unlikely(intr_status
& DMA_STATUS_UNF
)) {
924 DBG(intr
, INFO
, "transmit underflow\n");
925 if (unlikely(tc
!= SF_DMA_MODE
)
927 /* Try to bump up the threshold */
929 priv
->mac_type
->ops
->dma_mode(ioaddr
, tc
,
931 priv
->xstats
.threshold
= tc
;
934 priv
->xstats
.tx_undeflow_irq
++;
936 if (unlikely(intr_status
& DMA_STATUS_TJT
)) {
937 DBG(intr
, INFO
, "transmit jabber\n");
938 priv
->xstats
.tx_jabber_irq
++;
940 if (unlikely(intr_status
& DMA_STATUS_OVF
)) {
941 DBG(intr
, INFO
, "recv overflow\n");
942 priv
->xstats
.rx_overflow_irq
++;
944 if (unlikely(intr_status
& DMA_STATUS_RU
)) {
945 DBG(intr
, INFO
, "receive buffer unavailable\n");
946 priv
->xstats
.rx_buf_unav_irq
++;
948 if (unlikely(intr_status
& DMA_STATUS_RPS
)) {
949 DBG(intr
, INFO
, "receive process stopped\n");
950 priv
->xstats
.rx_process_stopped_irq
++;
952 if (unlikely(intr_status
& DMA_STATUS_RWT
)) {
953 DBG(intr
, INFO
, "receive watchdog\n");
954 priv
->xstats
.rx_watchdog_irq
++;
956 if (unlikely(intr_status
& DMA_STATUS_ETI
)) {
957 DBG(intr
, INFO
, "transmit early interrupt\n");
958 priv
->xstats
.tx_early_irq
++;
960 if (unlikely(intr_status
& DMA_STATUS_TPS
)) {
961 DBG(intr
, INFO
, "transmit process stopped\n");
962 priv
->xstats
.tx_process_stopped_irq
++;
965 if (unlikely(intr_status
& DMA_STATUS_FBI
)) {
966 DBG(intr
, INFO
, "fatal bus error\n");
967 priv
->xstats
.fatal_bus_error_irq
++;
972 /* TX/RX NORMAL interrupts */
973 if (intr_status
& DMA_STATUS_NIS
) {
974 priv
->xstats
.normal_irq_n
++;
975 if (likely((intr_status
& DMA_STATUS_RI
) ||
976 (intr_status
& (DMA_STATUS_TI
))))
977 _stmmac_schedule(priv
);
980 /* Optional hardware blocks, interrupts should be disabled */
981 if (unlikely(intr_status
&
982 (DMA_STATUS_GPI
| DMA_STATUS_GMI
| DMA_STATUS_GLI
)))
983 pr_info("%s: unexpected status %08x\n", __func__
, intr_status
);
985 /* Clear the interrupt by writing a logic 1 to the CSR5[15-0] */
986 writel((intr_status
& 0x1ffff), ioaddr
+ DMA_STATUS
);
988 DBG(intr
, INFO
, "\n\n");
994 * stmmac_open - open entry point of the driver
995 * @dev : pointer to the device structure.
997 * This function is the open entry point of the driver.
999 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1002 static int stmmac_open(struct net_device
*dev
)
1004 struct stmmac_priv
*priv
= netdev_priv(dev
);
1005 unsigned long ioaddr
= dev
->base_addr
;
1008 /* Check that the MAC address is valid. If its not, refuse
1009 * to bring the device up. The user must specify an
1010 * address using the following linux command:
1011 * ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx */
1012 if (!is_valid_ether_addr(dev
->dev_addr
)) {
1013 random_ether_addr(dev
->dev_addr
);
1014 pr_warning("%s: generated random MAC address %pM\n", dev
->name
,
1018 stmmac_verify_args();
1020 ret
= stmmac_init_phy(dev
);
1021 if (unlikely(ret
)) {
1022 pr_err("%s: Cannot attach to PHY (error: %d)\n", __func__
, ret
);
1026 /* Request the IRQ lines */
1027 ret
= request_irq(dev
->irq
, &stmmac_interrupt
,
1028 IRQF_SHARED
, dev
->name
, dev
);
1029 if (unlikely(ret
< 0)) {
1030 pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
1031 __func__
, dev
->irq
, ret
);
1035 #ifdef CONFIG_STMMAC_TIMER
1036 priv
->tm
= kzalloc(sizeof(struct stmmac_timer
*), GFP_KERNEL
);
1037 if (unlikely(priv
->tm
== NULL
)) {
1038 pr_err("%s: ERROR: timer memory alloc failed \n", __func__
);
1041 priv
->tm
->freq
= tmrate
;
1043 /* Test if the external timer can be actually used.
1044 * In case of failure continue without timer. */
1045 if (unlikely((stmmac_open_ext_timer(dev
, priv
->tm
)) < 0)) {
1046 pr_warning("stmmaceth: cannot attach the external timer.\n");
1049 priv
->tm
->timer_start
= stmmac_no_timer_started
;
1050 priv
->tm
->timer_stop
= stmmac_no_timer_stopped
;
1052 priv
->tm
->enable
= 1;
1055 /* Create and initialize the TX/RX descriptors chains. */
1056 priv
->dma_tx_size
= STMMAC_ALIGN(dma_txsize
);
1057 priv
->dma_rx_size
= STMMAC_ALIGN(dma_rxsize
);
1058 priv
->dma_buf_sz
= STMMAC_ALIGN(buf_sz
);
1059 init_dma_desc_rings(dev
);
1061 /* DMA initialization and SW reset */
1062 if (unlikely(priv
->mac_type
->ops
->dma_init(ioaddr
,
1063 priv
->pbl
, priv
->dma_tx_phy
, priv
->dma_rx_phy
) < 0)) {
1065 pr_err("%s: DMA initialization failed\n", __func__
);
1069 /* Copy the MAC addr into the HW */
1070 priv
->mac_type
->ops
->set_umac_addr(ioaddr
, dev
->dev_addr
, 0);
1071 /* Initialize the MAC Core */
1072 priv
->mac_type
->ops
->core_init(ioaddr
);
1076 /* Initialise the MMC (if present) to disable all interrupts. */
1077 writel(0xffffffff, ioaddr
+ MMC_HIGH_INTR_MASK
);
1078 writel(0xffffffff, ioaddr
+ MMC_LOW_INTR_MASK
);
1080 /* Enable the MAC Rx/Tx */
1081 stmmac_mac_enable_rx(ioaddr
);
1082 stmmac_mac_enable_tx(ioaddr
);
1084 /* Set the HW DMA mode and the COE */
1085 stmmac_dma_operation_mode(priv
);
1087 /* Extra statistics */
1088 memset(&priv
->xstats
, 0, sizeof(struct stmmac_extra_stats
));
1089 priv
->xstats
.threshold
= tc
;
1091 /* Start the ball rolling... */
1092 DBG(probe
, DEBUG
, "%s: DMA RX/TX processes started...\n", dev
->name
);
1093 stmmac_dma_start_tx(ioaddr
);
1094 stmmac_dma_start_rx(ioaddr
);
1096 #ifdef CONFIG_STMMAC_TIMER
1097 priv
->tm
->timer_start(tmrate
);
1099 /* Dump DMA/MAC registers */
1100 if (netif_msg_hw(priv
)) {
1101 priv
->mac_type
->ops
->dump_mac_regs(ioaddr
);
1102 priv
->mac_type
->ops
->dump_dma_regs(ioaddr
);
1106 phy_start(priv
->phydev
);
1108 napi_enable(&priv
->napi
);
1109 skb_queue_head_init(&priv
->rx_recycle
);
1110 netif_start_queue(dev
);
1115 * stmmac_release - close entry point of the driver
1116 * @dev : device pointer.
1118 * This is the stop entry point of the driver.
1120 static int stmmac_release(struct net_device
*dev
)
1122 struct stmmac_priv
*priv
= netdev_priv(dev
);
1124 /* Stop and disconnect the PHY */
1126 phy_stop(priv
->phydev
);
1127 phy_disconnect(priv
->phydev
);
1128 priv
->phydev
= NULL
;
1131 netif_stop_queue(dev
);
1133 #ifdef CONFIG_STMMAC_TIMER
1134 /* Stop and release the timer */
1135 stmmac_close_ext_timer();
1136 if (priv
->tm
!= NULL
)
1139 napi_disable(&priv
->napi
);
1140 skb_queue_purge(&priv
->rx_recycle
);
1142 /* Free the IRQ lines */
1143 free_irq(dev
->irq
, dev
);
1145 /* Stop TX/RX DMA and clear the descriptors */
1146 stmmac_dma_stop_tx(dev
->base_addr
);
1147 stmmac_dma_stop_rx(dev
->base_addr
);
1149 /* Release and free the Rx/Tx resources */
1150 free_dma_desc_resources(priv
);
1152 /* Disable the MAC core */
1153 stmmac_mac_disable_tx(dev
->base_addr
);
1154 stmmac_mac_disable_rx(dev
->base_addr
);
1156 netif_carrier_off(dev
);
1162 * To perform emulated hardware segmentation on skb.
1164 static int stmmac_sw_tso(struct stmmac_priv
*priv
, struct sk_buff
*skb
)
1166 struct sk_buff
*segs
, *curr_skb
;
1167 int gso_segs
= skb_shinfo(skb
)->gso_segs
;
1169 /* Estimate the number of fragments in the worst case */
1170 if (unlikely(stmmac_tx_avail(priv
) < gso_segs
)) {
1171 netif_stop_queue(priv
->dev
);
1172 TX_DBG(KERN_ERR
"%s: TSO BUG! Tx Ring full when queue awake\n",
1174 if (stmmac_tx_avail(priv
) < gso_segs
)
1175 return NETDEV_TX_BUSY
;
1177 netif_wake_queue(priv
->dev
);
1179 TX_DBG("\tstmmac_sw_tso: segmenting: skb %p (len %d)\n",
1182 segs
= skb_gso_segment(skb
, priv
->dev
->features
& ~NETIF_F_TSO
);
1183 if (unlikely(IS_ERR(segs
)))
1189 TX_DBG("\t\tcurrent skb->len: %d, *curr %p,"
1190 "*next %p\n", curr_skb
->len
, curr_skb
, segs
);
1191 curr_skb
->next
= NULL
;
1192 stmmac_xmit(curr_skb
, priv
->dev
);
1198 return NETDEV_TX_OK
;
1201 static unsigned int stmmac_handle_jumbo_frames(struct sk_buff
*skb
,
1202 struct net_device
*dev
,
1205 struct stmmac_priv
*priv
= netdev_priv(dev
);
1206 unsigned int nopaged_len
= skb_headlen(skb
);
1207 unsigned int txsize
= priv
->dma_tx_size
;
1208 unsigned int entry
= priv
->cur_tx
% txsize
;
1209 struct dma_desc
*desc
= priv
->dma_tx
+ entry
;
1211 if (nopaged_len
> BUF_SIZE_8KiB
) {
1213 int buf2_size
= nopaged_len
- BUF_SIZE_8KiB
;
1215 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1216 BUF_SIZE_8KiB
, DMA_TO_DEVICE
);
1217 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
1218 priv
->mac_type
->ops
->prepare_tx_desc(desc
, 1, BUF_SIZE_8KiB
,
1221 entry
= (++priv
->cur_tx
) % txsize
;
1222 desc
= priv
->dma_tx
+ entry
;
1224 desc
->des2
= dma_map_single(priv
->device
,
1225 skb
->data
+ BUF_SIZE_8KiB
,
1226 buf2_size
, DMA_TO_DEVICE
);
1227 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
1228 priv
->mac_type
->ops
->prepare_tx_desc(desc
, 0,
1229 buf2_size
, csum_insertion
);
1230 priv
->mac_type
->ops
->set_tx_owner(desc
);
1231 priv
->tx_skbuff
[entry
] = NULL
;
1233 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1234 nopaged_len
, DMA_TO_DEVICE
);
1235 desc
->des3
= desc
->des2
+ BUF_SIZE_4KiB
;
1236 priv
->mac_type
->ops
->prepare_tx_desc(desc
, 1, nopaged_len
,
1244 * @skb : the socket buffer
1245 * @dev : device pointer
1246 * Description : Tx entry point of the driver.
1248 static netdev_tx_t
stmmac_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1250 struct stmmac_priv
*priv
= netdev_priv(dev
);
1251 unsigned int txsize
= priv
->dma_tx_size
;
1253 int i
, csum_insertion
= 0;
1254 int nfrags
= skb_shinfo(skb
)->nr_frags
;
1255 struct dma_desc
*desc
, *first
;
1257 if (unlikely(stmmac_tx_avail(priv
) < nfrags
+ 1)) {
1258 if (!netif_queue_stopped(dev
)) {
1259 netif_stop_queue(dev
);
1260 /* This is a hard error, log it. */
1261 pr_err("%s: BUG! Tx Ring full when queue awake\n",
1264 return NETDEV_TX_BUSY
;
1267 entry
= priv
->cur_tx
% txsize
;
1269 #ifdef STMMAC_XMIT_DEBUG
1270 if ((skb
->len
> ETH_FRAME_LEN
) || nfrags
)
1271 pr_info("stmmac xmit:\n"
1272 "\tskb addr %p - len: %d - nopaged_len: %d\n"
1273 "\tn_frags: %d - ip_summed: %d - %s gso\n",
1274 skb
, skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
,
1275 !skb_is_gso(skb
) ? "isn't" : "is");
1278 if (unlikely(skb_is_gso(skb
)))
1279 return stmmac_sw_tso(priv
, skb
);
1281 if (likely((skb
->ip_summed
== CHECKSUM_PARTIAL
))) {
1282 if (likely(priv
->tx_coe
== NO_HW_CSUM
))
1283 skb_checksum_help(skb
);
1288 desc
= priv
->dma_tx
+ entry
;
1291 #ifdef STMMAC_XMIT_DEBUG
1292 if ((nfrags
> 0) || (skb
->len
> ETH_FRAME_LEN
))
1293 pr_debug("stmmac xmit: skb len: %d, nopaged_len: %d,\n"
1294 "\t\tn_frags: %d, ip_summed: %d\n",
1295 skb
->len
, skb_headlen(skb
), nfrags
, skb
->ip_summed
);
1297 priv
->tx_skbuff
[entry
] = skb
;
1298 if (unlikely(skb
->len
>= BUF_SIZE_4KiB
)) {
1299 entry
= stmmac_handle_jumbo_frames(skb
, dev
, csum_insertion
);
1300 desc
= priv
->dma_tx
+ entry
;
1302 unsigned int nopaged_len
= skb_headlen(skb
);
1303 desc
->des2
= dma_map_single(priv
->device
, skb
->data
,
1304 nopaged_len
, DMA_TO_DEVICE
);
1305 priv
->mac_type
->ops
->prepare_tx_desc(desc
, 1, nopaged_len
,
1309 for (i
= 0; i
< nfrags
; i
++) {
1310 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
1311 int len
= frag
->size
;
1313 entry
= (++priv
->cur_tx
) % txsize
;
1314 desc
= priv
->dma_tx
+ entry
;
1316 TX_DBG("\t[entry %d] segment len: %d\n", entry
, len
);
1317 desc
->des2
= dma_map_page(priv
->device
, frag
->page
,
1319 len
, DMA_TO_DEVICE
);
1320 priv
->tx_skbuff
[entry
] = NULL
;
1321 priv
->mac_type
->ops
->prepare_tx_desc(desc
, 0, len
,
1323 priv
->mac_type
->ops
->set_tx_owner(desc
);
1326 /* Interrupt on completition only for the latest segment */
1327 priv
->mac_type
->ops
->close_tx_desc(desc
);
1329 #ifdef CONFIG_STMMAC_TIMER
1330 /* Clean IC while using timer */
1331 if (likely(priv
->tm
->enable
))
1332 priv
->mac_type
->ops
->clear_tx_ic(desc
);
1334 /* To avoid raise condition */
1335 priv
->mac_type
->ops
->set_tx_owner(first
);
1339 #ifdef STMMAC_XMIT_DEBUG
1340 if (netif_msg_pktdata(priv
)) {
1341 pr_info("stmmac xmit: current=%d, dirty=%d, entry=%d, "
1342 "first=%p, nfrags=%d\n",
1343 (priv
->cur_tx
% txsize
), (priv
->dirty_tx
% txsize
),
1344 entry
, first
, nfrags
);
1345 display_ring(priv
->dma_tx
, txsize
);
1346 pr_info(">>> frame to be transmitted: ");
1347 print_pkt(skb
->data
, skb
->len
);
1350 if (unlikely(stmmac_tx_avail(priv
) <= (MAX_SKB_FRAGS
+ 1))) {
1351 TX_DBG("%s: stop transmitted packets\n", __func__
);
1352 netif_stop_queue(dev
);
1355 dev
->stats
.tx_bytes
+= skb
->len
;
1357 /* CSR1 enables the transmit DMA to check for new descriptor */
1358 writel(1, dev
->base_addr
+ DMA_XMT_POLL_DEMAND
);
1360 return NETDEV_TX_OK
;
1363 static inline void stmmac_rx_refill(struct stmmac_priv
*priv
)
1365 unsigned int rxsize
= priv
->dma_rx_size
;
1366 int bfsize
= priv
->dma_buf_sz
;
1367 struct dma_desc
*p
= priv
->dma_rx
;
1369 for (; priv
->cur_rx
- priv
->dirty_rx
> 0; priv
->dirty_rx
++) {
1370 unsigned int entry
= priv
->dirty_rx
% rxsize
;
1371 if (likely(priv
->rx_skbuff
[entry
] == NULL
)) {
1372 struct sk_buff
*skb
;
1374 skb
= __skb_dequeue(&priv
->rx_recycle
);
1376 skb
= netdev_alloc_skb_ip_align(priv
->dev
,
1379 if (unlikely(skb
== NULL
))
1382 priv
->rx_skbuff
[entry
] = skb
;
1383 priv
->rx_skbuff_dma
[entry
] =
1384 dma_map_single(priv
->device
, skb
->data
, bfsize
,
1387 (p
+ entry
)->des2
= priv
->rx_skbuff_dma
[entry
];
1388 if (unlikely(priv
->is_gmac
)) {
1389 if (bfsize
>= BUF_SIZE_8KiB
)
1391 (p
+ entry
)->des2
+ BUF_SIZE_8KiB
;
1393 RX_DBG(KERN_INFO
"\trefill entry #%d\n", entry
);
1395 priv
->mac_type
->ops
->set_rx_owner(p
+ entry
);
1400 static int stmmac_rx(struct stmmac_priv
*priv
, int limit
)
1402 unsigned int rxsize
= priv
->dma_rx_size
;
1403 unsigned int entry
= priv
->cur_rx
% rxsize
;
1404 unsigned int next_entry
;
1405 unsigned int count
= 0;
1406 struct dma_desc
*p
= priv
->dma_rx
+ entry
;
1407 struct dma_desc
*p_next
;
1409 #ifdef STMMAC_RX_DEBUG
1410 if (netif_msg_hw(priv
)) {
1411 pr_debug(">>> stmmac_rx: descriptor ring:\n");
1412 display_ring(priv
->dma_rx
, rxsize
);
1416 while (!priv
->mac_type
->ops
->get_rx_owner(p
)) {
1424 next_entry
= (++priv
->cur_rx
) % rxsize
;
1425 p_next
= priv
->dma_rx
+ next_entry
;
1428 /* read the status of the incoming frame */
1429 status
= (priv
->mac_type
->ops
->rx_status(&priv
->dev
->stats
,
1431 if (unlikely(status
== discard_frame
))
1432 priv
->dev
->stats
.rx_errors
++;
1434 struct sk_buff
*skb
;
1435 /* Length should omit the CRC */
1437 priv
->mac_type
->ops
->get_rx_frame_len(p
) - 4;
1439 #ifdef STMMAC_RX_DEBUG
1440 if (frame_len
> ETH_FRAME_LEN
)
1441 pr_debug("\tRX frame size %d, COE status: %d\n",
1444 if (netif_msg_hw(priv
))
1445 pr_debug("\tdesc: %p [entry %d] buff=0x%x\n",
1448 skb
= priv
->rx_skbuff
[entry
];
1449 if (unlikely(!skb
)) {
1450 pr_err("%s: Inconsistent Rx descriptor chain\n",
1452 priv
->dev
->stats
.rx_dropped
++;
1455 prefetch(skb
->data
- NET_IP_ALIGN
);
1456 priv
->rx_skbuff
[entry
] = NULL
;
1458 skb_put(skb
, frame_len
);
1459 dma_unmap_single(priv
->device
,
1460 priv
->rx_skbuff_dma
[entry
],
1461 priv
->dma_buf_sz
, DMA_FROM_DEVICE
);
1462 #ifdef STMMAC_RX_DEBUG
1463 if (netif_msg_pktdata(priv
)) {
1464 pr_info(" frame received (%dbytes)", frame_len
);
1465 print_pkt(skb
->data
, frame_len
);
1468 skb
->protocol
= eth_type_trans(skb
, priv
->dev
);
1470 if (unlikely(status
== csum_none
)) {
1471 /* always for the old mac 10/100 */
1472 skb
->ip_summed
= CHECKSUM_NONE
;
1473 netif_receive_skb(skb
);
1475 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1476 napi_gro_receive(&priv
->napi
, skb
);
1479 priv
->dev
->stats
.rx_packets
++;
1480 priv
->dev
->stats
.rx_bytes
+= frame_len
;
1481 priv
->dev
->last_rx
= jiffies
;
1484 p
= p_next
; /* use prefetched values */
1487 stmmac_rx_refill(priv
);
1489 priv
->xstats
.rx_pkt_n
+= count
;
1495 * stmmac_poll - stmmac poll method (NAPI)
1496 * @napi : pointer to the napi structure.
1497 * @budget : maximum number of packets that the current CPU can receive from
1500 * This function implements the the reception process.
1501 * Also it runs the TX completion thread
1503 static int stmmac_poll(struct napi_struct
*napi
, int budget
)
1505 struct stmmac_priv
*priv
= container_of(napi
, struct stmmac_priv
, napi
);
1508 priv
->xstats
.poll_n
++;
1510 work_done
= stmmac_rx(priv
, budget
);
1512 if (work_done
< budget
) {
1513 napi_complete(napi
);
1514 stmmac_enable_irq(priv
);
1521 * @dev : Pointer to net device structure
1522 * Description: this function is called when a packet transmission fails to
1523 * complete within a reasonable tmrate. The driver will mark the error in the
1524 * netdev structure and arrange for the device to be reset to a sane state
1525 * in order to transmit a new packet.
1527 static void stmmac_tx_timeout(struct net_device
*dev
)
1529 struct stmmac_priv
*priv
= netdev_priv(dev
);
1531 /* Clear Tx resources and restart transmitting again */
1532 stmmac_tx_err(priv
);
1536 /* Configuration changes (passed on by ifconfig) */
1537 static int stmmac_config(struct net_device
*dev
, struct ifmap
*map
)
1539 if (dev
->flags
& IFF_UP
) /* can't act on a running interface */
1542 /* Don't allow changing the I/O address */
1543 if (map
->base_addr
!= dev
->base_addr
) {
1544 pr_warning("%s: can't change I/O address\n", dev
->name
);
1548 /* Don't allow changing the IRQ */
1549 if (map
->irq
!= dev
->irq
) {
1550 pr_warning("%s: can't change IRQ number %d\n",
1551 dev
->name
, dev
->irq
);
1555 /* ignore other fields */
1560 * stmmac_multicast_list - entry point for multicast addressing
1561 * @dev : pointer to the device structure
1563 * This function is a driver entry point which gets called by the kernel
1564 * whenever multicast addresses must be enabled/disabled.
1568 static void stmmac_multicast_list(struct net_device
*dev
)
1570 struct stmmac_priv
*priv
= netdev_priv(dev
);
1572 spin_lock(&priv
->lock
);
1573 priv
->mac_type
->ops
->set_filter(dev
);
1574 spin_unlock(&priv
->lock
);
1579 * stmmac_change_mtu - entry point to change MTU size for the device.
1580 * @dev : device pointer.
1581 * @new_mtu : the new MTU size for the device.
1582 * Description: the Maximum Transfer Unit (MTU) is used by the network layer
1583 * to drive packet transmission. Ethernet has an MTU of 1500 octets
1584 * (ETH_DATA_LEN). This value can be changed with ifconfig.
1586 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1589 static int stmmac_change_mtu(struct net_device
*dev
, int new_mtu
)
1591 struct stmmac_priv
*priv
= netdev_priv(dev
);
1594 if (netif_running(dev
)) {
1595 pr_err("%s: must be stopped to change its MTU\n", dev
->name
);
1600 max_mtu
= JUMBO_LEN
;
1602 max_mtu
= ETH_DATA_LEN
;
1604 if ((new_mtu
< 46) || (new_mtu
> max_mtu
)) {
1605 pr_err("%s: invalid MTU, max MTU is: %d\n", dev
->name
, max_mtu
);
1614 static irqreturn_t
stmmac_interrupt(int irq
, void *dev_id
)
1616 struct net_device
*dev
= (struct net_device
*)dev_id
;
1617 struct stmmac_priv
*priv
= netdev_priv(dev
);
1619 if (unlikely(!dev
)) {
1620 pr_err("%s: invalid dev pointer\n", __func__
);
1624 if (priv
->is_gmac
) {
1625 unsigned long ioaddr
= dev
->base_addr
;
1626 /* To handle GMAC own interrupts */
1627 priv
->mac_type
->ops
->host_irq_status(ioaddr
);
1629 stmmac_dma_interrupt(dev
);
1634 #ifdef CONFIG_NET_POLL_CONTROLLER
1635 /* Polling receive - used by NETCONSOLE and other diagnostic tools
1636 * to allow network I/O with interrupts disabled. */
1637 static void stmmac_poll_controller(struct net_device
*dev
)
1639 disable_irq(dev
->irq
);
1640 stmmac_interrupt(dev
->irq
, dev
);
1641 enable_irq(dev
->irq
);
1646 * stmmac_ioctl - Entry point for the Ioctl
1647 * @dev: Device pointer.
1648 * @rq: An IOCTL specefic structure, that can contain a pointer to
1649 * a proprietary structure used to pass information to the driver.
1650 * @cmd: IOCTL command
1652 * Currently there are no special functionality supported in IOCTL, just the
1653 * phy_mii_ioctl(...) can be invoked.
1655 static int stmmac_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1657 struct stmmac_priv
*priv
= netdev_priv(dev
);
1658 int ret
= -EOPNOTSUPP
;
1660 if (!netif_running(dev
))
1670 spin_lock(&priv
->lock
);
1671 ret
= phy_mii_ioctl(priv
->phydev
, if_mii(rq
), cmd
);
1672 spin_unlock(&priv
->lock
);
1679 #ifdef STMMAC_VLAN_TAG_USED
1680 static void stmmac_vlan_rx_register(struct net_device
*dev
,
1681 struct vlan_group
*grp
)
1683 struct stmmac_priv
*priv
= netdev_priv(dev
);
1685 DBG(probe
, INFO
, "%s: Setting vlgrp to %p\n", dev
->name
, grp
);
1687 spin_lock(&priv
->lock
);
1689 spin_unlock(&priv
->lock
);
1695 static const struct net_device_ops stmmac_netdev_ops
= {
1696 .ndo_open
= stmmac_open
,
1697 .ndo_start_xmit
= stmmac_xmit
,
1698 .ndo_stop
= stmmac_release
,
1699 .ndo_change_mtu
= stmmac_change_mtu
,
1700 .ndo_set_multicast_list
= stmmac_multicast_list
,
1701 .ndo_tx_timeout
= stmmac_tx_timeout
,
1702 .ndo_do_ioctl
= stmmac_ioctl
,
1703 .ndo_set_config
= stmmac_config
,
1704 #ifdef STMMAC_VLAN_TAG_USED
1705 .ndo_vlan_rx_register
= stmmac_vlan_rx_register
,
1707 #ifdef CONFIG_NET_POLL_CONTROLLER
1708 .ndo_poll_controller
= stmmac_poll_controller
,
1710 .ndo_set_mac_address
= eth_mac_addr
,
1714 * stmmac_probe - Initialization of the adapter .
1715 * @dev : device pointer
1716 * Description: The function initializes the network device structure for
1717 * the STMMAC driver. It also calls the low level routines
1718 * in order to init the HW (i.e. the DMA engine)
1720 static int stmmac_probe(struct net_device
*dev
)
1723 struct stmmac_priv
*priv
= netdev_priv(dev
);
1727 dev
->netdev_ops
= &stmmac_netdev_ops
;
1728 stmmac_set_ethtool_ops(dev
);
1730 dev
->features
|= (NETIF_F_SG
| NETIF_F_HW_CSUM
| NETIF_F_HIGHDMA
);
1731 dev
->watchdog_timeo
= msecs_to_jiffies(watchdog
);
1732 #ifdef STMMAC_VLAN_TAG_USED
1733 /* Both mac100 and gmac support receive VLAN tag detection */
1734 dev
->features
|= NETIF_F_HW_VLAN_RX
;
1736 priv
->msg_enable
= netif_msg_init(debug
, default_msg_level
);
1742 priv
->flow_ctrl
= FLOW_AUTO
; /* RX/TX pause on */
1744 priv
->pause
= pause
;
1745 netif_napi_add(dev
, &priv
->napi
, stmmac_poll
, 64);
1747 /* Get the MAC address */
1748 priv
->mac_type
->ops
->get_umac_addr(dev
->base_addr
, dev
->dev_addr
, 0);
1750 if (!is_valid_ether_addr(dev
->dev_addr
))
1751 pr_warning("\tno valid MAC address;"
1752 "please, use ifconfig or nwhwconfig!\n");
1754 ret
= register_netdev(dev
);
1756 pr_err("%s: ERROR %i registering the device\n",
1761 DBG(probe
, DEBUG
, "%s: Scatter/Gather: %s - HW checksums: %s\n",
1762 dev
->name
, (dev
->features
& NETIF_F_SG
) ? "on" : "off",
1763 (dev
->features
& NETIF_F_HW_CSUM
) ? "on" : "off");
1765 spin_lock_init(&priv
->lock
);
1771 * stmmac_mac_device_setup
1772 * @dev : device pointer
1773 * Description: select and initialise the mac device (mac100 or Gmac).
1775 static int stmmac_mac_device_setup(struct net_device
*dev
)
1777 struct stmmac_priv
*priv
= netdev_priv(dev
);
1778 unsigned long ioaddr
= dev
->base_addr
;
1780 struct mac_device_info
*device
;
1783 device
= gmac_setup(ioaddr
);
1785 device
= mac100_setup(ioaddr
);
1790 priv
->mac_type
= device
;
1792 priv
->wolenabled
= priv
->mac_type
->hw
.pmt
; /* PMT supported */
1793 if (priv
->wolenabled
== PMT_SUPPORTED
)
1794 priv
->wolopts
= WAKE_MAGIC
; /* Magic Frame */
1799 static int stmmacphy_dvr_probe(struct platform_device
*pdev
)
1801 struct plat_stmmacphy_data
*plat_dat
;
1802 plat_dat
= (struct plat_stmmacphy_data
*)((pdev
->dev
).platform_data
);
1804 pr_debug("stmmacphy_dvr_probe: added phy for bus %d\n",
1810 static int stmmacphy_dvr_remove(struct platform_device
*pdev
)
1815 static struct platform_driver stmmacphy_driver
= {
1817 .name
= PHY_RESOURCE_NAME
,
1819 .probe
= stmmacphy_dvr_probe
,
1820 .remove
= stmmacphy_dvr_remove
,
1824 * stmmac_associate_phy
1825 * @dev: pointer to device structure
1826 * @data: points to the private structure.
1827 * Description: Scans through all the PHYs we have registered and checks if
1828 * any are associated with our MAC. If so, then just fill in
1829 * the blanks in our local context structure
1831 static int stmmac_associate_phy(struct device
*dev
, void *data
)
1833 struct stmmac_priv
*priv
= (struct stmmac_priv
*)data
;
1834 struct plat_stmmacphy_data
*plat_dat
;
1836 plat_dat
= (struct plat_stmmacphy_data
*)(dev
->platform_data
);
1838 DBG(probe
, DEBUG
, "%s: checking phy for bus %d\n", __func__
,
1841 /* Check that this phy is for the MAC being initialised */
1842 if (priv
->bus_id
!= plat_dat
->bus_id
)
1845 /* OK, this PHY is connected to the MAC.
1846 Go ahead and get the parameters */
1847 DBG(probe
, DEBUG
, "%s: OK. Found PHY config\n", __func__
);
1849 platform_get_irq_byname(to_platform_device(dev
), "phyirq");
1850 DBG(probe
, DEBUG
, "%s: PHY irq on bus %d is %d\n", __func__
,
1851 plat_dat
->bus_id
, priv
->phy_irq
);
1853 /* Override with kernel parameters if supplied XXX CRS XXX
1854 * this needs to have multiple instances */
1855 if ((phyaddr
>= 0) && (phyaddr
<= 31))
1856 plat_dat
->phy_addr
= phyaddr
;
1858 priv
->phy_addr
= plat_dat
->phy_addr
;
1859 priv
->phy_mask
= plat_dat
->phy_mask
;
1860 priv
->phy_interface
= plat_dat
->interface
;
1861 priv
->phy_reset
= plat_dat
->phy_reset
;
1863 DBG(probe
, DEBUG
, "%s: exiting\n", __func__
);
1864 return 1; /* forces exit of driver_for_each_device() */
1869 * @pdev: platform device pointer
1870 * Description: the driver is initialized through platform_device.
1872 static int stmmac_dvr_probe(struct platform_device
*pdev
)
1875 struct resource
*res
;
1876 unsigned int *addr
= NULL
;
1877 struct net_device
*ndev
= NULL
;
1878 struct stmmac_priv
*priv
;
1879 struct plat_stmmacenet_data
*plat_dat
;
1881 pr_info("STMMAC driver:\n\tplatform registration... ");
1882 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1889 if (!request_mem_region(res
->start
, (res
->end
- res
->start
),
1891 pr_err("%s: ERROR: memory allocation failed"
1892 "cannot get the I/O addr 0x%x\n",
1893 __func__
, (unsigned int)res
->start
);
1898 addr
= ioremap(res
->start
, (res
->end
- res
->start
));
1900 pr_err("%s: ERROR: memory mapping failed \n", __func__
);
1905 ndev
= alloc_etherdev(sizeof(struct stmmac_priv
));
1907 pr_err("%s: ERROR: allocating the device\n", __func__
);
1912 SET_NETDEV_DEV(ndev
, &pdev
->dev
);
1914 /* Get the MAC information */
1915 ndev
->irq
= platform_get_irq_byname(pdev
, "macirq");
1916 if (ndev
->irq
== -ENXIO
) {
1917 pr_err("%s: ERROR: MAC IRQ configuration "
1918 "information not found\n", __func__
);
1923 priv
= netdev_priv(ndev
);
1924 priv
->device
= &(pdev
->dev
);
1926 plat_dat
= (struct plat_stmmacenet_data
*)((pdev
->dev
).platform_data
);
1927 priv
->bus_id
= plat_dat
->bus_id
;
1928 priv
->pbl
= plat_dat
->pbl
; /* TLI */
1929 priv
->is_gmac
= plat_dat
->has_gmac
; /* GMAC is on board */
1931 platform_set_drvdata(pdev
, ndev
);
1933 /* Set the I/O base addr */
1934 ndev
->base_addr
= (unsigned long)addr
;
1936 /* MAC HW revice detection */
1937 ret
= stmmac_mac_device_setup(ndev
);
1941 /* Network Device Registration */
1942 ret
= stmmac_probe(ndev
);
1946 /* associate a PHY - it is provided by another platform bus */
1947 if (!driver_for_each_device
1948 (&(stmmacphy_driver
.driver
), NULL
, (void *)priv
,
1949 stmmac_associate_phy
)) {
1950 pr_err("No PHY device is associated with this MAC!\n");
1955 priv
->fix_mac_speed
= plat_dat
->fix_mac_speed
;
1956 priv
->bsp_priv
= plat_dat
->bsp_priv
;
1958 pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n"
1959 "\tIO base addr: 0x%08x)\n", ndev
->name
, pdev
->name
,
1960 pdev
->id
, ndev
->irq
, (unsigned int)addr
);
1962 /* MDIO bus Registration */
1963 pr_debug("\tMDIO bus (id: %d)...", priv
->bus_id
);
1964 ret
= stmmac_mdio_register(ndev
);
1967 pr_debug("registered!\n");
1971 platform_set_drvdata(pdev
, NULL
);
1972 release_mem_region(res
->start
, (res
->end
- res
->start
));
1982 * @pdev: platform device pointer
1983 * Description: this function resets the TX/RX processes, disables the MAC RX/TX
1984 * changes the link status, releases the DMA descriptor rings,
1985 * unregisters the MDIO bus and unmaps the allocated memory.
1987 static int stmmac_dvr_remove(struct platform_device
*pdev
)
1989 struct net_device
*ndev
= platform_get_drvdata(pdev
);
1990 struct resource
*res
;
1992 pr_info("%s:\n\tremoving driver", __func__
);
1994 stmmac_dma_stop_rx(ndev
->base_addr
);
1995 stmmac_dma_stop_tx(ndev
->base_addr
);
1997 stmmac_mac_disable_rx(ndev
->base_addr
);
1998 stmmac_mac_disable_tx(ndev
->base_addr
);
2000 netif_carrier_off(ndev
);
2002 stmmac_mdio_unregister(ndev
);
2004 platform_set_drvdata(pdev
, NULL
);
2005 unregister_netdev(ndev
);
2007 iounmap((void *)ndev
->base_addr
);
2008 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2009 release_mem_region(res
->start
, (res
->end
- res
->start
));
2017 static int stmmac_suspend(struct platform_device
*pdev
, pm_message_t state
)
2019 struct net_device
*dev
= platform_get_drvdata(pdev
);
2020 struct stmmac_priv
*priv
= netdev_priv(dev
);
2023 if (!dev
|| !netif_running(dev
))
2026 spin_lock(&priv
->lock
);
2028 if (state
.event
== PM_EVENT_SUSPEND
) {
2029 netif_device_detach(dev
);
2030 netif_stop_queue(dev
);
2032 phy_stop(priv
->phydev
);
2034 #ifdef CONFIG_STMMAC_TIMER
2035 priv
->tm
->timer_stop();
2036 if (likely(priv
->tm
->enable
))
2039 napi_disable(&priv
->napi
);
2041 /* Stop TX/RX DMA */
2042 stmmac_dma_stop_tx(dev
->base_addr
);
2043 stmmac_dma_stop_rx(dev
->base_addr
);
2044 /* Clear the Rx/Tx descriptors */
2045 priv
->mac_type
->ops
->init_rx_desc(priv
->dma_rx
,
2046 priv
->dma_rx_size
, dis_ic
);
2047 priv
->mac_type
->ops
->init_tx_desc(priv
->dma_tx
,
2050 stmmac_mac_disable_tx(dev
->base_addr
);
2052 if (device_may_wakeup(&(pdev
->dev
))) {
2053 /* Enable Power down mode by programming the PMT regs */
2054 if (priv
->wolenabled
== PMT_SUPPORTED
)
2055 priv
->mac_type
->ops
->pmt(dev
->base_addr
,
2058 stmmac_mac_disable_rx(dev
->base_addr
);
2062 /* Although this can appear slightly redundant it actually
2063 * makes fast the standby operation and guarantees the driver
2064 * working if hibernation is on media. */
2065 stmmac_release(dev
);
2068 spin_unlock(&priv
->lock
);
2072 static int stmmac_resume(struct platform_device
*pdev
)
2074 struct net_device
*dev
= platform_get_drvdata(pdev
);
2075 struct stmmac_priv
*priv
= netdev_priv(dev
);
2076 unsigned long ioaddr
= dev
->base_addr
;
2078 if (!netif_running(dev
))
2081 spin_lock(&priv
->lock
);
2083 if (priv
->shutdown
) {
2084 /* Re-open the interface and re-init the MAC/DMA
2090 /* Power Down bit, into the PM register, is cleared
2091 * automatically as soon as a magic packet or a Wake-up frame
2092 * is received. Anyway, it's better to manually clear
2093 * this bit because it can generate problems while resuming
2094 * from another devices (e.g. serial console). */
2095 if (device_may_wakeup(&(pdev
->dev
)))
2096 if (priv
->wolenabled
== PMT_SUPPORTED
)
2097 priv
->mac_type
->ops
->pmt(dev
->base_addr
, 0);
2099 netif_device_attach(dev
);
2101 /* Enable the MAC and DMA */
2102 stmmac_mac_enable_rx(ioaddr
);
2103 stmmac_mac_enable_tx(ioaddr
);
2104 stmmac_dma_start_tx(ioaddr
);
2105 stmmac_dma_start_rx(ioaddr
);
2107 #ifdef CONFIG_STMMAC_TIMER
2108 priv
->tm
->timer_start(tmrate
);
2110 napi_enable(&priv
->napi
);
2113 phy_start(priv
->phydev
);
2115 netif_start_queue(dev
);
2118 spin_unlock(&priv
->lock
);
2123 static struct platform_driver stmmac_driver
= {
2125 .name
= STMMAC_RESOURCE_NAME
,
2127 .probe
= stmmac_dvr_probe
,
2128 .remove
= stmmac_dvr_remove
,
2130 .suspend
= stmmac_suspend
,
2131 .resume
= stmmac_resume
,
2137 * stmmac_init_module - Entry point for the driver
2138 * Description: This function is the entry point for the driver.
2140 static int __init
stmmac_init_module(void)
2144 if (platform_driver_register(&stmmacphy_driver
)) {
2145 pr_err("No PHY devices registered!\n");
2149 ret
= platform_driver_register(&stmmac_driver
);
2154 * stmmac_cleanup_module - Cleanup routine for the driver
2155 * Description: This function is the cleanup routine for the driver.
2157 static void __exit
stmmac_cleanup_module(void)
2159 platform_driver_unregister(&stmmacphy_driver
);
2160 platform_driver_unregister(&stmmac_driver
);
2164 static int __init
stmmac_cmdline_opt(char *str
)
2170 while ((opt
= strsep(&str
, ",")) != NULL
) {
2171 if (!strncmp(opt
, "debug:", 6))
2172 strict_strtoul(opt
+ 6, 0, (unsigned long *)&debug
);
2173 else if (!strncmp(opt
, "phyaddr:", 8))
2174 strict_strtoul(opt
+ 8, 0, (unsigned long *)&phyaddr
);
2175 else if (!strncmp(opt
, "dma_txsize:", 11))
2176 strict_strtoul(opt
+ 11, 0,
2177 (unsigned long *)&dma_txsize
);
2178 else if (!strncmp(opt
, "dma_rxsize:", 11))
2179 strict_strtoul(opt
+ 11, 0,
2180 (unsigned long *)&dma_rxsize
);
2181 else if (!strncmp(opt
, "buf_sz:", 7))
2182 strict_strtoul(opt
+ 7, 0, (unsigned long *)&buf_sz
);
2183 else if (!strncmp(opt
, "tc:", 3))
2184 strict_strtoul(opt
+ 3, 0, (unsigned long *)&tc
);
2185 else if (!strncmp(opt
, "tx_coe:", 7))
2186 strict_strtoul(opt
+ 7, 0, (unsigned long *)&tx_coe
);
2187 else if (!strncmp(opt
, "watchdog:", 9))
2188 strict_strtoul(opt
+ 9, 0, (unsigned long *)&watchdog
);
2189 else if (!strncmp(opt
, "flow_ctrl:", 10))
2190 strict_strtoul(opt
+ 10, 0,
2191 (unsigned long *)&flow_ctrl
);
2192 else if (!strncmp(opt
, "pause:", 6))
2193 strict_strtoul(opt
+ 6, 0, (unsigned long *)&pause
);
2194 #ifdef CONFIG_STMMAC_TIMER
2195 else if (!strncmp(opt
, "tmrate:", 7))
2196 strict_strtoul(opt
+ 7, 0, (unsigned long *)&tmrate
);
2202 __setup("stmmaceth=", stmmac_cmdline_opt
);
2205 module_init(stmmac_init_module
);
2206 module_exit(stmmac_cleanup_module
);
2208 MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet driver");
2209 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
2210 MODULE_LICENSE("GPL");