2 * Ethernet driver for the Atmel AT91RM9200 (Thunder)
4 * Copyright (C) 2003 SAN People (Pty) Ltd
6 * Based on an earlier Atmel EMAC macrocell driver by Atmel and Lineo Inc.
7 * Initial version by Rick Bronson 01/11/2003
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
18 #include <linux/netdevice.h>
19 #include <linux/etherdevice.h>
20 #include <linux/skbuff.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/ethtool.h>
23 #include <linux/platform_data/macb.h>
24 #include <linux/platform_device.h>
25 #include <linux/clk.h>
26 #include <linux/gfp.h>
27 #include <linux/phy.h>
30 #include <linux/of_device.h>
31 #include <linux/of_net.h>
36 #define MAX_RBUFF_SZ 0x600
37 /* max number of receive buffers */
38 #define MAX_RX_DESCR 9
40 /* Initialize and start the Receiver and Transmit subsystems */
41 static int at91ether_start(struct net_device
*dev
)
43 struct macb
*lp
= netdev_priv(dev
);
48 lp
->rx_ring
= dma_alloc_coherent(&lp
->pdev
->dev
,
50 sizeof(struct macb_dma_desc
)),
51 &lp
->rx_ring_dma
, GFP_KERNEL
);
55 lp
->rx_buffers
= dma_alloc_coherent(&lp
->pdev
->dev
,
56 MAX_RX_DESCR
* MAX_RBUFF_SZ
,
57 &lp
->rx_buffers_dma
, GFP_KERNEL
);
58 if (!lp
->rx_buffers
) {
59 dma_free_coherent(&lp
->pdev
->dev
,
60 MAX_RX_DESCR
* sizeof(struct macb_dma_desc
),
61 lp
->rx_ring
, lp
->rx_ring_dma
);
66 addr
= lp
->rx_buffers_dma
;
67 for (i
= 0; i
< MAX_RX_DESCR
; i
++) {
68 lp
->rx_ring
[i
].addr
= addr
;
69 lp
->rx_ring
[i
].ctrl
= 0;
73 /* Set the Wrap bit on the last descriptor */
74 lp
->rx_ring
[MAX_RX_DESCR
- 1].addr
|= MACB_BIT(RX_WRAP
);
76 /* Reset buffer index */
79 /* Program address of descriptor list in Rx Buffer Queue register */
80 macb_writel(lp
, RBQP
, lp
->rx_ring_dma
);
82 /* Enable Receive and Transmit */
83 ctl
= macb_readl(lp
, NCR
);
84 macb_writel(lp
, NCR
, ctl
| MACB_BIT(RE
) | MACB_BIT(TE
));
89 /* Open the ethernet interface */
90 static int at91ether_open(struct net_device
*dev
)
92 struct macb
*lp
= netdev_priv(dev
);
96 /* Clear internal statistics */
97 ctl
= macb_readl(lp
, NCR
);
98 macb_writel(lp
, NCR
, ctl
| MACB_BIT(CLRSTAT
));
102 ret
= at91ether_start(dev
);
106 /* Enable MAC interrupts */
107 macb_writel(lp
, IER
, MACB_BIT(RCOMP
) |
115 /* schedule a link state check */
116 phy_start(lp
->phy_dev
);
118 netif_start_queue(dev
);
123 /* Close the interface */
124 static int at91ether_close(struct net_device
*dev
)
126 struct macb
*lp
= netdev_priv(dev
);
129 /* Disable Receiver and Transmitter */
130 ctl
= macb_readl(lp
, NCR
);
131 macb_writel(lp
, NCR
, ctl
& ~(MACB_BIT(TE
) | MACB_BIT(RE
)));
133 /* Disable MAC interrupts */
134 macb_writel(lp
, IDR
, MACB_BIT(RCOMP
) |
142 netif_stop_queue(dev
);
144 dma_free_coherent(&lp
->pdev
->dev
,
145 MAX_RX_DESCR
* sizeof(struct macb_dma_desc
),
146 lp
->rx_ring
, lp
->rx_ring_dma
);
149 dma_free_coherent(&lp
->pdev
->dev
,
150 MAX_RX_DESCR
* MAX_RBUFF_SZ
,
151 lp
->rx_buffers
, lp
->rx_buffers_dma
);
152 lp
->rx_buffers
= NULL
;
157 /* Transmit packet */
158 static int at91ether_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
160 struct macb
*lp
= netdev_priv(dev
);
162 if (macb_readl(lp
, TSR
) & MACB_BIT(RM9200_BNQ
)) {
163 netif_stop_queue(dev
);
165 /* Store packet information (to free when Tx completed) */
167 lp
->skb_length
= skb
->len
;
168 lp
->skb_physaddr
= dma_map_single(NULL
, skb
->data
, skb
->len
,
171 /* Set address of the data in the Transmit Address register */
172 macb_writel(lp
, TAR
, lp
->skb_physaddr
);
173 /* Set length of the packet in the Transmit Control register */
174 macb_writel(lp
, TCR
, skb
->len
);
177 netdev_err(dev
, "%s called, but device is busy!\n", __func__
);
178 return NETDEV_TX_BUSY
;
184 /* Extract received frame from buffer descriptors and sent to upper layers.
185 * (Called from interrupt context)
187 static void at91ether_rx(struct net_device
*dev
)
189 struct macb
*lp
= netdev_priv(dev
);
190 unsigned char *p_recv
;
194 while (lp
->rx_ring
[lp
->rx_tail
].addr
& MACB_BIT(RX_USED
)) {
195 p_recv
= lp
->rx_buffers
+ lp
->rx_tail
* MAX_RBUFF_SZ
;
196 pktlen
= MACB_BF(RX_FRMLEN
, lp
->rx_ring
[lp
->rx_tail
].ctrl
);
197 skb
= netdev_alloc_skb(dev
, pktlen
+ 2);
200 memcpy(skb_put(skb
, pktlen
), p_recv
, pktlen
);
202 skb
->protocol
= eth_type_trans(skb
, dev
);
203 lp
->stats
.rx_packets
++;
204 lp
->stats
.rx_bytes
+= pktlen
;
207 lp
->stats
.rx_dropped
++;
210 if (lp
->rx_ring
[lp
->rx_tail
].ctrl
& MACB_BIT(RX_MHASH_MATCH
))
211 lp
->stats
.multicast
++;
213 /* reset ownership bit */
214 lp
->rx_ring
[lp
->rx_tail
].addr
&= ~MACB_BIT(RX_USED
);
216 /* wrap after last buffer */
217 if (lp
->rx_tail
== MAX_RX_DESCR
- 1)
224 /* MAC interrupt handler */
225 static irqreturn_t
at91ether_interrupt(int irq
, void *dev_id
)
227 struct net_device
*dev
= dev_id
;
228 struct macb
*lp
= netdev_priv(dev
);
231 /* MAC Interrupt Status register indicates what interrupts are pending.
232 * It is automatically cleared once read.
234 intstatus
= macb_readl(lp
, ISR
);
236 /* Receive complete */
237 if (intstatus
& MACB_BIT(RCOMP
))
240 /* Transmit complete */
241 if (intstatus
& MACB_BIT(TCOMP
)) {
242 /* The TCOM bit is set even if the transmission failed */
243 if (intstatus
& (MACB_BIT(ISR_TUND
) | MACB_BIT(ISR_RLE
)))
244 lp
->stats
.tx_errors
++;
247 dev_kfree_skb_irq(lp
->skb
);
249 dma_unmap_single(NULL
, lp
->skb_physaddr
, lp
->skb_length
, DMA_TO_DEVICE
);
250 lp
->stats
.tx_packets
++;
251 lp
->stats
.tx_bytes
+= lp
->skb_length
;
253 netif_wake_queue(dev
);
256 /* Work-around for EMAC Errata section 41.3.1 */
257 if (intstatus
& MACB_BIT(RXUBR
)) {
258 ctl
= macb_readl(lp
, NCR
);
259 macb_writel(lp
, NCR
, ctl
& ~MACB_BIT(RE
));
260 macb_writel(lp
, NCR
, ctl
| MACB_BIT(RE
));
263 if (intstatus
& MACB_BIT(ISR_ROVR
))
264 netdev_err(dev
, "ROVR error\n");
269 #ifdef CONFIG_NET_POLL_CONTROLLER
270 static void at91ether_poll_controller(struct net_device
*dev
)
274 local_irq_save(flags
);
275 at91ether_interrupt(dev
->irq
, dev
);
276 local_irq_restore(flags
);
280 static const struct net_device_ops at91ether_netdev_ops
= {
281 .ndo_open
= at91ether_open
,
282 .ndo_stop
= at91ether_close
,
283 .ndo_start_xmit
= at91ether_start_xmit
,
284 .ndo_get_stats
= macb_get_stats
,
285 .ndo_set_rx_mode
= macb_set_rx_mode
,
286 .ndo_set_mac_address
= eth_mac_addr
,
287 .ndo_do_ioctl
= macb_ioctl
,
288 .ndo_validate_addr
= eth_validate_addr
,
289 .ndo_change_mtu
= eth_change_mtu
,
290 #ifdef CONFIG_NET_POLL_CONTROLLER
291 .ndo_poll_controller
= at91ether_poll_controller
,
295 #if defined(CONFIG_OF)
296 static const struct of_device_id at91ether_dt_ids
[] = {
297 { .compatible
= "cdns,at91rm9200-emac" },
298 { .compatible
= "cdns,emac" },
301 MODULE_DEVICE_TABLE(of
, at91ether_dt_ids
);
304 /* Detect MAC & PHY and perform ethernet interface initialization */
305 static int __init
at91ether_probe(struct platform_device
*pdev
)
307 struct macb_platform_data
*board_data
= dev_get_platdata(&pdev
->dev
);
308 struct resource
*regs
;
309 struct net_device
*dev
;
310 struct phy_device
*phydev
;
316 regs
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
320 dev
= alloc_etherdev(sizeof(struct macb
));
324 lp
= netdev_priv(dev
);
327 spin_lock_init(&lp
->lock
);
329 /* physical base address */
330 dev
->base_addr
= regs
->start
;
331 lp
->regs
= devm_ioremap(&pdev
->dev
, regs
->start
, resource_size(regs
));
338 lp
->pclk
= devm_clk_get(&pdev
->dev
, "ether_clk");
339 if (IS_ERR(lp
->pclk
)) {
340 res
= PTR_ERR(lp
->pclk
);
343 clk_enable(lp
->pclk
);
345 /* Install the interrupt handler */
346 dev
->irq
= platform_get_irq(pdev
, 0);
347 res
= devm_request_irq(&pdev
->dev
, dev
->irq
, at91ether_interrupt
, 0, dev
->name
, dev
);
349 goto err_disable_clock
;
352 dev
->netdev_ops
= &at91ether_netdev_ops
;
353 dev
->ethtool_ops
= &macb_ethtool_ops
;
354 platform_set_drvdata(pdev
, dev
);
355 SET_NETDEV_DEV(dev
, &pdev
->dev
);
357 mac
= of_get_mac_address(pdev
->dev
.of_node
);
359 memcpy(lp
->dev
->dev_addr
, mac
, ETH_ALEN
);
363 res
= of_get_phy_mode(pdev
->dev
.of_node
);
365 if (board_data
&& board_data
->is_rmii
)
366 lp
->phy_interface
= PHY_INTERFACE_MODE_RMII
;
368 lp
->phy_interface
= PHY_INTERFACE_MODE_MII
;
370 lp
->phy_interface
= res
;
373 macb_writel(lp
, NCR
, 0);
375 reg
= MACB_BF(CLK
, MACB_CLK_DIV32
) | MACB_BIT(BIG
);
376 if (lp
->phy_interface
== PHY_INTERFACE_MODE_RMII
)
377 reg
|= MACB_BIT(RM9200_RMII
);
379 macb_writel(lp
, NCFGR
, reg
);
381 /* Register the network interface */
382 res
= register_netdev(dev
);
384 goto err_disable_clock
;
386 res
= macb_mii_init(lp
);
388 goto err_out_unregister_netdev
;
390 /* will be enabled in open() */
391 netif_carrier_off(dev
);
393 phydev
= lp
->phy_dev
;
394 netdev_info(dev
, "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
395 phydev
->drv
->name
, dev_name(&phydev
->dev
),
398 /* Display ethernet banner */
399 netdev_info(dev
, "AT91 ethernet at 0x%08lx int=%d (%pM)\n",
400 dev
->base_addr
, dev
->irq
, dev
->dev_addr
);
404 err_out_unregister_netdev
:
405 unregister_netdev(dev
);
407 clk_disable(lp
->pclk
);
413 static int at91ether_remove(struct platform_device
*pdev
)
415 struct net_device
*dev
= platform_get_drvdata(pdev
);
416 struct macb
*lp
= netdev_priv(dev
);
419 phy_disconnect(lp
->phy_dev
);
421 mdiobus_unregister(lp
->mii_bus
);
422 kfree(lp
->mii_bus
->irq
);
423 mdiobus_free(lp
->mii_bus
);
424 unregister_netdev(dev
);
425 clk_disable(lp
->pclk
);
432 static int at91ether_suspend(struct platform_device
*pdev
, pm_message_t mesg
)
434 struct net_device
*net_dev
= platform_get_drvdata(pdev
);
435 struct macb
*lp
= netdev_priv(net_dev
);
437 if (netif_running(net_dev
)) {
438 netif_stop_queue(net_dev
);
439 netif_device_detach(net_dev
);
441 clk_disable(lp
->pclk
);
446 static int at91ether_resume(struct platform_device
*pdev
)
448 struct net_device
*net_dev
= platform_get_drvdata(pdev
);
449 struct macb
*lp
= netdev_priv(net_dev
);
451 if (netif_running(net_dev
)) {
452 clk_enable(lp
->pclk
);
454 netif_device_attach(net_dev
);
455 netif_start_queue(net_dev
);
460 #define at91ether_suspend NULL
461 #define at91ether_resume NULL
464 static struct platform_driver at91ether_driver
= {
465 .remove
= at91ether_remove
,
466 .suspend
= at91ether_suspend
,
467 .resume
= at91ether_resume
,
469 .name
= "at91_ether",
470 .owner
= THIS_MODULE
,
471 .of_match_table
= of_match_ptr(at91ether_dt_ids
),
475 module_platform_driver_probe(at91ether_driver
, at91ether_probe
);
477 MODULE_LICENSE("GPL");
478 MODULE_DESCRIPTION("AT91RM9200 EMAC Ethernet driver");
479 MODULE_AUTHOR("Andrew Victor");
480 MODULE_ALIAS("platform:at91_ether");