1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2004-2013 Synopsys, Inc. (www.synopsys.com)
5 * Driver for the ARC EMAC 10100 (hardware revision 5)
13 #include <linux/crc32.h>
14 #include <linux/etherdevice.h>
15 #include <linux/interrupt.h>
17 #include <linux/module.h>
18 #include <linux/of_address.h>
19 #include <linux/of_irq.h>
20 #include <linux/of_mdio.h>
21 #include <linux/of_net.h>
22 #include <linux/of_platform.h>
26 static void arc_emac_restart(struct net_device
*ndev
);
29 * arc_emac_tx_avail - Return the number of available slots in the tx ring.
30 * @priv: Pointer to ARC EMAC private data structure.
32 * returns: the number of slots available for transmission in tx the ring.
34 static inline int arc_emac_tx_avail(struct arc_emac_priv
*priv
)
36 return (priv
->txbd_dirty
+ TX_BD_NUM
- priv
->txbd_curr
- 1) % TX_BD_NUM
;
40 * arc_emac_adjust_link - Adjust the PHY link duplex.
41 * @ndev: Pointer to the net_device structure.
43 * This function is called to change the duplex setting after auto negotiation
46 static void arc_emac_adjust_link(struct net_device
*ndev
)
48 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
49 struct phy_device
*phy_dev
= ndev
->phydev
;
50 unsigned int reg
, state_changed
= 0;
52 if (priv
->link
!= phy_dev
->link
) {
53 priv
->link
= phy_dev
->link
;
57 if (priv
->speed
!= phy_dev
->speed
) {
58 priv
->speed
= phy_dev
->speed
;
60 if (priv
->set_mac_speed
)
61 priv
->set_mac_speed(priv
, priv
->speed
);
64 if (priv
->duplex
!= phy_dev
->duplex
) {
65 reg
= arc_reg_get(priv
, R_CTRL
);
67 if (phy_dev
->duplex
== DUPLEX_FULL
)
72 arc_reg_set(priv
, R_CTRL
, reg
);
73 priv
->duplex
= phy_dev
->duplex
;
78 phy_print_status(phy_dev
);
82 * arc_emac_get_drvinfo - Get EMAC driver information.
83 * @ndev: Pointer to net_device structure.
84 * @info: Pointer to ethtool_drvinfo structure.
86 * This implements ethtool command for getting the driver information.
87 * Issue "ethtool -i ethX" under linux prompt to execute this function.
89 static void arc_emac_get_drvinfo(struct net_device
*ndev
,
90 struct ethtool_drvinfo
*info
)
92 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
94 strlcpy(info
->driver
, priv
->drv_name
, sizeof(info
->driver
));
97 static const struct ethtool_ops arc_emac_ethtool_ops
= {
98 .get_drvinfo
= arc_emac_get_drvinfo
,
99 .get_link
= ethtool_op_get_link
,
100 .get_link_ksettings
= phy_ethtool_get_link_ksettings
,
101 .set_link_ksettings
= phy_ethtool_set_link_ksettings
,
104 #define FIRST_OR_LAST_MASK (FIRST_MASK | LAST_MASK)
107 * arc_emac_tx_clean - clears processed by EMAC Tx BDs.
108 * @ndev: Pointer to the network device.
110 static void arc_emac_tx_clean(struct net_device
*ndev
)
112 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
113 struct net_device_stats
*stats
= &ndev
->stats
;
116 for (i
= 0; i
< TX_BD_NUM
; i
++) {
117 unsigned int *txbd_dirty
= &priv
->txbd_dirty
;
118 struct arc_emac_bd
*txbd
= &priv
->txbd
[*txbd_dirty
];
119 struct buffer_state
*tx_buff
= &priv
->tx_buff
[*txbd_dirty
];
120 struct sk_buff
*skb
= tx_buff
->skb
;
121 unsigned int info
= le32_to_cpu(txbd
->info
);
123 if ((info
& FOR_EMAC
) || !txbd
->data
|| !skb
)
126 if (unlikely(info
& (DROP
| DEFR
| LTCL
| UFLO
))) {
131 stats
->tx_carrier_errors
++;
137 stats
->tx_fifo_errors
++;
138 } else if (likely(info
& FIRST_OR_LAST_MASK
)) {
140 stats
->tx_bytes
+= skb
->len
;
143 dma_unmap_single(&ndev
->dev
, dma_unmap_addr(tx_buff
, addr
),
144 dma_unmap_len(tx_buff
, len
), DMA_TO_DEVICE
);
146 /* return the sk_buff to system */
147 dev_consume_skb_irq(skb
);
153 *txbd_dirty
= (*txbd_dirty
+ 1) % TX_BD_NUM
;
156 /* Ensure that txbd_dirty is visible to tx() before checking
161 if (netif_queue_stopped(ndev
) && arc_emac_tx_avail(priv
))
162 netif_wake_queue(ndev
);
166 * arc_emac_rx - processing of Rx packets.
167 * @ndev: Pointer to the network device.
168 * @budget: How many BDs to process on 1 call.
170 * returns: Number of processed BDs
172 * Iterate through Rx BDs and deliver received packages to upper layer.
174 static int arc_emac_rx(struct net_device
*ndev
, int budget
)
176 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
177 unsigned int work_done
;
179 for (work_done
= 0; work_done
< budget
; work_done
++) {
180 unsigned int *last_rx_bd
= &priv
->last_rx_bd
;
181 struct net_device_stats
*stats
= &ndev
->stats
;
182 struct buffer_state
*rx_buff
= &priv
->rx_buff
[*last_rx_bd
];
183 struct arc_emac_bd
*rxbd
= &priv
->rxbd
[*last_rx_bd
];
184 unsigned int pktlen
, info
= le32_to_cpu(rxbd
->info
);
188 if (unlikely((info
& OWN_MASK
) == FOR_EMAC
))
191 /* Make a note that we saw a packet at this BD.
192 * So next time, driver starts from this + 1
194 *last_rx_bd
= (*last_rx_bd
+ 1) % RX_BD_NUM
;
196 if (unlikely((info
& FIRST_OR_LAST_MASK
) !=
197 FIRST_OR_LAST_MASK
)) {
198 /* We pre-allocate buffers of MTU size so incoming
199 * packets won't be split/chained.
202 netdev_err(ndev
, "incomplete packet received\n");
204 /* Return ownership to EMAC */
205 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
207 stats
->rx_length_errors
++;
211 /* Prepare the BD for next cycle. netif_receive_skb()
212 * only if new skb was allocated and mapped to avoid holes
215 skb
= netdev_alloc_skb_ip_align(ndev
, EMAC_BUFFER_SIZE
);
216 if (unlikely(!skb
)) {
218 netdev_err(ndev
, "cannot allocate skb\n");
219 /* Return ownership to EMAC */
220 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
226 addr
= dma_map_single(&ndev
->dev
, (void *)skb
->data
,
227 EMAC_BUFFER_SIZE
, DMA_FROM_DEVICE
);
228 if (dma_mapping_error(&ndev
->dev
, addr
)) {
230 netdev_err(ndev
, "cannot map dma buffer\n");
232 /* Return ownership to EMAC */
233 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
239 /* unmap previosly mapped skb */
240 dma_unmap_single(&ndev
->dev
, dma_unmap_addr(rx_buff
, addr
),
241 dma_unmap_len(rx_buff
, len
), DMA_FROM_DEVICE
);
243 pktlen
= info
& LEN_MASK
;
245 stats
->rx_bytes
+= pktlen
;
246 skb_put(rx_buff
->skb
, pktlen
);
247 rx_buff
->skb
->dev
= ndev
;
248 rx_buff
->skb
->protocol
= eth_type_trans(rx_buff
->skb
, ndev
);
250 netif_receive_skb(rx_buff
->skb
);
253 dma_unmap_addr_set(rx_buff
, addr
, addr
);
254 dma_unmap_len_set(rx_buff
, len
, EMAC_BUFFER_SIZE
);
256 rxbd
->data
= cpu_to_le32(addr
);
258 /* Make sure pointer to data buffer is set */
261 /* Return ownership to EMAC */
262 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
269 * arc_emac_rx_miss_handle - handle R_MISS register
270 * @ndev: Pointer to the net_device structure.
272 static void arc_emac_rx_miss_handle(struct net_device
*ndev
)
274 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
275 struct net_device_stats
*stats
= &ndev
->stats
;
278 miss
= arc_reg_get(priv
, R_MISS
);
280 stats
->rx_errors
+= miss
;
281 stats
->rx_missed_errors
+= miss
;
282 priv
->rx_missed_errors
+= miss
;
287 * arc_emac_rx_stall_check - check RX stall
288 * @ndev: Pointer to the net_device structure.
289 * @budget: How many BDs requested to process on 1 call.
290 * @work_done: How many BDs processed
292 * Under certain conditions EMAC stop reception of incoming packets and
293 * continuously increment R_MISS register instead of saving data into
294 * provided buffer. This function detect that condition and restart
297 static void arc_emac_rx_stall_check(struct net_device
*ndev
,
298 int budget
, unsigned int work_done
)
300 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
301 struct arc_emac_bd
*rxbd
;
304 priv
->rx_missed_errors
= 0;
306 if (priv
->rx_missed_errors
&& budget
) {
307 rxbd
= &priv
->rxbd
[priv
->last_rx_bd
];
308 if (le32_to_cpu(rxbd
->info
) & FOR_EMAC
) {
309 arc_emac_restart(ndev
);
310 priv
->rx_missed_errors
= 0;
316 * arc_emac_poll - NAPI poll handler.
317 * @napi: Pointer to napi_struct structure.
318 * @budget: How many BDs to process on 1 call.
320 * returns: Number of processed BDs
322 static int arc_emac_poll(struct napi_struct
*napi
, int budget
)
324 struct net_device
*ndev
= napi
->dev
;
325 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
326 unsigned int work_done
;
328 arc_emac_tx_clean(ndev
);
329 arc_emac_rx_miss_handle(ndev
);
331 work_done
= arc_emac_rx(ndev
, budget
);
332 if (work_done
< budget
) {
333 napi_complete_done(napi
, work_done
);
334 arc_reg_or(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
);
337 arc_emac_rx_stall_check(ndev
, budget
, work_done
);
343 * arc_emac_intr - Global interrupt handler for EMAC.
345 * @dev_instance: device instance.
347 * returns: IRQ_HANDLED for all cases.
349 * ARC EMAC has only 1 interrupt line, and depending on bits raised in
350 * STATUS register we may tell what is a reason for interrupt to fire.
352 static irqreturn_t
arc_emac_intr(int irq
, void *dev_instance
)
354 struct net_device
*ndev
= dev_instance
;
355 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
356 struct net_device_stats
*stats
= &ndev
->stats
;
359 status
= arc_reg_get(priv
, R_STATUS
);
360 status
&= ~MDIO_MASK
;
362 /* Reset all flags except "MDIO complete" */
363 arc_reg_set(priv
, R_STATUS
, status
);
365 if (status
& (RXINT_MASK
| TXINT_MASK
)) {
366 if (likely(napi_schedule_prep(&priv
->napi
))) {
367 arc_reg_clr(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
);
368 __napi_schedule(&priv
->napi
);
372 if (status
& ERR_MASK
) {
373 /* MSER/RXCR/RXFR/RXFL interrupt fires on corresponding
374 * 8-bit error counter overrun.
377 if (status
& MSER_MASK
) {
378 stats
->rx_missed_errors
+= 0x100;
379 stats
->rx_errors
+= 0x100;
380 priv
->rx_missed_errors
+= 0x100;
381 napi_schedule(&priv
->napi
);
384 if (status
& RXCR_MASK
) {
385 stats
->rx_crc_errors
+= 0x100;
386 stats
->rx_errors
+= 0x100;
389 if (status
& RXFR_MASK
) {
390 stats
->rx_frame_errors
+= 0x100;
391 stats
->rx_errors
+= 0x100;
394 if (status
& RXFL_MASK
) {
395 stats
->rx_over_errors
+= 0x100;
396 stats
->rx_errors
+= 0x100;
403 #ifdef CONFIG_NET_POLL_CONTROLLER
404 static void arc_emac_poll_controller(struct net_device
*dev
)
406 disable_irq(dev
->irq
);
407 arc_emac_intr(dev
->irq
, dev
);
408 enable_irq(dev
->irq
);
413 * arc_emac_open - Open the network device.
414 * @ndev: Pointer to the network device.
416 * returns: 0, on success or non-zero error value on failure.
418 * This function sets the MAC address, requests and enables an IRQ
419 * for the EMAC device and starts the Tx queue.
420 * It also connects to the phy device.
422 static int arc_emac_open(struct net_device
*ndev
)
424 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
425 struct phy_device
*phy_dev
= ndev
->phydev
;
428 phy_dev
->autoneg
= AUTONEG_ENABLE
;
431 linkmode_and(phy_dev
->advertising
, phy_dev
->advertising
,
434 priv
->last_rx_bd
= 0;
436 /* Allocate and set buffers for Rx BD's */
437 for (i
= 0; i
< RX_BD_NUM
; i
++) {
439 unsigned int *last_rx_bd
= &priv
->last_rx_bd
;
440 struct arc_emac_bd
*rxbd
= &priv
->rxbd
[*last_rx_bd
];
441 struct buffer_state
*rx_buff
= &priv
->rx_buff
[*last_rx_bd
];
443 rx_buff
->skb
= netdev_alloc_skb_ip_align(ndev
,
445 if (unlikely(!rx_buff
->skb
))
448 addr
= dma_map_single(&ndev
->dev
, (void *)rx_buff
->skb
->data
,
449 EMAC_BUFFER_SIZE
, DMA_FROM_DEVICE
);
450 if (dma_mapping_error(&ndev
->dev
, addr
)) {
451 netdev_err(ndev
, "cannot dma map\n");
452 dev_kfree_skb(rx_buff
->skb
);
455 dma_unmap_addr_set(rx_buff
, addr
, addr
);
456 dma_unmap_len_set(rx_buff
, len
, EMAC_BUFFER_SIZE
);
458 rxbd
->data
= cpu_to_le32(addr
);
460 /* Make sure pointer to data buffer is set */
463 /* Return ownership to EMAC */
464 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
466 *last_rx_bd
= (*last_rx_bd
+ 1) % RX_BD_NUM
;
470 priv
->txbd_dirty
= 0;
473 memset(priv
->txbd
, 0, TX_RING_SZ
);
475 /* Initialize logical address filter */
476 arc_reg_set(priv
, R_LAFL
, 0);
477 arc_reg_set(priv
, R_LAFH
, 0);
479 /* Set BD ring pointers for device side */
480 arc_reg_set(priv
, R_RX_RING
, (unsigned int)priv
->rxbd_dma
);
481 arc_reg_set(priv
, R_TX_RING
, (unsigned int)priv
->txbd_dma
);
483 /* Enable interrupts */
484 arc_reg_set(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
| ERR_MASK
);
487 arc_reg_set(priv
, R_CTRL
,
488 (RX_BD_NUM
<< 24) | /* RX BD table length */
489 (TX_BD_NUM
<< 16) | /* TX BD table length */
490 TXRN_MASK
| RXRN_MASK
);
492 napi_enable(&priv
->napi
);
495 arc_reg_or(priv
, R_CTRL
, EN_MASK
);
497 phy_start(ndev
->phydev
);
499 netif_start_queue(ndev
);
505 * arc_emac_set_rx_mode - Change the receive filtering mode.
506 * @ndev: Pointer to the network device.
508 * This function enables/disables promiscuous or all-multicast mode
509 * and updates the multicast filtering list of the network device.
511 static void arc_emac_set_rx_mode(struct net_device
*ndev
)
513 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
515 if (ndev
->flags
& IFF_PROMISC
) {
516 arc_reg_or(priv
, R_CTRL
, PROM_MASK
);
518 arc_reg_clr(priv
, R_CTRL
, PROM_MASK
);
520 if (ndev
->flags
& IFF_ALLMULTI
) {
521 arc_reg_set(priv
, R_LAFL
, ~0);
522 arc_reg_set(priv
, R_LAFH
, ~0);
523 } else if (ndev
->flags
& IFF_MULTICAST
) {
524 struct netdev_hw_addr
*ha
;
525 unsigned int filter
[2] = { 0, 0 };
528 netdev_for_each_mc_addr(ha
, ndev
) {
529 bit
= ether_crc_le(ETH_ALEN
, ha
->addr
) >> 26;
530 filter
[bit
>> 5] |= 1 << (bit
& 31);
533 arc_reg_set(priv
, R_LAFL
, filter
[0]);
534 arc_reg_set(priv
, R_LAFH
, filter
[1]);
536 arc_reg_set(priv
, R_LAFL
, 0);
537 arc_reg_set(priv
, R_LAFH
, 0);
543 * arc_free_tx_queue - free skb from tx queue
544 * @ndev: Pointer to the network device.
546 * This function must be called while EMAC disable
548 static void arc_free_tx_queue(struct net_device
*ndev
)
550 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
553 for (i
= 0; i
< TX_BD_NUM
; i
++) {
554 struct arc_emac_bd
*txbd
= &priv
->txbd
[i
];
555 struct buffer_state
*tx_buff
= &priv
->tx_buff
[i
];
558 dma_unmap_single(&ndev
->dev
,
559 dma_unmap_addr(tx_buff
, addr
),
560 dma_unmap_len(tx_buff
, len
),
563 /* return the sk_buff to system */
564 dev_kfree_skb_irq(tx_buff
->skb
);
574 * arc_free_rx_queue - free skb from rx queue
575 * @ndev: Pointer to the network device.
577 * This function must be called while EMAC disable
579 static void arc_free_rx_queue(struct net_device
*ndev
)
581 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
584 for (i
= 0; i
< RX_BD_NUM
; i
++) {
585 struct arc_emac_bd
*rxbd
= &priv
->rxbd
[i
];
586 struct buffer_state
*rx_buff
= &priv
->rx_buff
[i
];
589 dma_unmap_single(&ndev
->dev
,
590 dma_unmap_addr(rx_buff
, addr
),
591 dma_unmap_len(rx_buff
, len
),
594 /* return the sk_buff to system */
595 dev_kfree_skb_irq(rx_buff
->skb
);
605 * arc_emac_stop - Close the network device.
606 * @ndev: Pointer to the network device.
608 * This function stops the Tx queue, disables interrupts and frees the IRQ for
610 * It also disconnects the PHY device associated with the EMAC device.
612 static int arc_emac_stop(struct net_device
*ndev
)
614 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
616 napi_disable(&priv
->napi
);
617 netif_stop_queue(ndev
);
619 phy_stop(ndev
->phydev
);
621 /* Disable interrupts */
622 arc_reg_clr(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
| ERR_MASK
);
625 arc_reg_clr(priv
, R_CTRL
, EN_MASK
);
627 /* Return the sk_buff to system */
628 arc_free_tx_queue(ndev
);
629 arc_free_rx_queue(ndev
);
635 * arc_emac_stats - Get system network statistics.
636 * @ndev: Pointer to net_device structure.
638 * Returns the address of the device statistics structure.
639 * Statistics are updated in interrupt handler.
641 static struct net_device_stats
*arc_emac_stats(struct net_device
*ndev
)
643 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
644 struct net_device_stats
*stats
= &ndev
->stats
;
645 unsigned long miss
, rxerr
;
646 u8 rxcrc
, rxfram
, rxoflow
;
648 rxerr
= arc_reg_get(priv
, R_RXERR
);
649 miss
= arc_reg_get(priv
, R_MISS
);
653 rxoflow
= rxerr
>> 16;
655 stats
->rx_errors
+= miss
;
656 stats
->rx_errors
+= rxcrc
+ rxfram
+ rxoflow
;
658 stats
->rx_over_errors
+= rxoflow
;
659 stats
->rx_frame_errors
+= rxfram
;
660 stats
->rx_crc_errors
+= rxcrc
;
661 stats
->rx_missed_errors
+= miss
;
667 * arc_emac_tx - Starts the data transmission.
668 * @skb: sk_buff pointer that contains data to be Transmitted.
669 * @ndev: Pointer to net_device structure.
671 * returns: NETDEV_TX_OK, on success
672 * NETDEV_TX_BUSY, if any of the descriptors are not free.
674 * This function is invoked from upper layers to initiate transmission.
676 static netdev_tx_t
arc_emac_tx(struct sk_buff
*skb
, struct net_device
*ndev
)
678 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
679 unsigned int len
, *txbd_curr
= &priv
->txbd_curr
;
680 struct net_device_stats
*stats
= &ndev
->stats
;
681 __le32
*info
= &priv
->txbd
[*txbd_curr
].info
;
684 if (skb_padto(skb
, ETH_ZLEN
))
687 len
= max_t(unsigned int, ETH_ZLEN
, skb
->len
);
689 if (unlikely(!arc_emac_tx_avail(priv
))) {
690 netif_stop_queue(ndev
);
691 netdev_err(ndev
, "BUG! Tx Ring full when queue awake!\n");
692 return NETDEV_TX_BUSY
;
695 addr
= dma_map_single(&ndev
->dev
, (void *)skb
->data
, len
,
698 if (unlikely(dma_mapping_error(&ndev
->dev
, addr
))) {
701 dev_kfree_skb_any(skb
);
704 dma_unmap_addr_set(&priv
->tx_buff
[*txbd_curr
], addr
, addr
);
705 dma_unmap_len_set(&priv
->tx_buff
[*txbd_curr
], len
, len
);
707 priv
->txbd
[*txbd_curr
].data
= cpu_to_le32(addr
);
709 /* Make sure pointer to data buffer is set */
712 skb_tx_timestamp(skb
);
714 *info
= cpu_to_le32(FOR_EMAC
| FIRST_OR_LAST_MASK
| len
);
716 /* Make sure info word is set */
719 priv
->tx_buff
[*txbd_curr
].skb
= skb
;
721 /* Increment index to point to the next BD */
722 *txbd_curr
= (*txbd_curr
+ 1) % TX_BD_NUM
;
724 /* Ensure that tx_clean() sees the new txbd_curr before
725 * checking the queue status. This prevents an unneeded wake
726 * of the queue in tx_clean().
730 if (!arc_emac_tx_avail(priv
)) {
731 netif_stop_queue(ndev
);
732 /* Refresh tx_dirty */
734 if (arc_emac_tx_avail(priv
))
735 netif_start_queue(ndev
);
738 arc_reg_set(priv
, R_STATUS
, TXPL_MASK
);
743 static void arc_emac_set_address_internal(struct net_device
*ndev
)
745 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
746 unsigned int addr_low
, addr_hi
;
748 addr_low
= le32_to_cpu(*(__le32
*)&ndev
->dev_addr
[0]);
749 addr_hi
= le16_to_cpu(*(__le16
*)&ndev
->dev_addr
[4]);
751 arc_reg_set(priv
, R_ADDRL
, addr_low
);
752 arc_reg_set(priv
, R_ADDRH
, addr_hi
);
756 * arc_emac_set_address - Set the MAC address for this device.
757 * @ndev: Pointer to net_device structure.
758 * @p: 6 byte Address to be written as MAC address.
760 * This function copies the HW address from the sockaddr structure to the
761 * net_device structure and updates the address in HW.
763 * returns: -EBUSY if the net device is busy or 0 if the address is set
766 static int arc_emac_set_address(struct net_device
*ndev
, void *p
)
768 struct sockaddr
*addr
= p
;
770 if (netif_running(ndev
))
773 if (!is_valid_ether_addr(addr
->sa_data
))
774 return -EADDRNOTAVAIL
;
776 memcpy(ndev
->dev_addr
, addr
->sa_data
, ndev
->addr_len
);
778 arc_emac_set_address_internal(ndev
);
784 * arc_emac_restart - Restart EMAC
785 * @ndev: Pointer to net_device structure.
787 * This function do hardware reset of EMAC in order to restore
788 * network packets reception.
790 static void arc_emac_restart(struct net_device
*ndev
)
792 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
793 struct net_device_stats
*stats
= &ndev
->stats
;
797 netdev_warn(ndev
, "restarting stalled EMAC\n");
799 netif_stop_queue(ndev
);
801 /* Disable interrupts */
802 arc_reg_clr(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
| ERR_MASK
);
805 arc_reg_clr(priv
, R_CTRL
, EN_MASK
);
807 /* Return the sk_buff to system */
808 arc_free_tx_queue(ndev
);
812 priv
->txbd_dirty
= 0;
813 memset(priv
->txbd
, 0, TX_RING_SZ
);
815 for (i
= 0; i
< RX_BD_NUM
; i
++) {
816 struct arc_emac_bd
*rxbd
= &priv
->rxbd
[i
];
817 unsigned int info
= le32_to_cpu(rxbd
->info
);
819 if (!(info
& FOR_EMAC
)) {
823 /* Return ownership to EMAC */
824 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
826 priv
->last_rx_bd
= 0;
828 /* Make sure info is visible to EMAC before enable */
831 /* Enable interrupts */
832 arc_reg_set(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
| ERR_MASK
);
835 arc_reg_or(priv
, R_CTRL
, EN_MASK
);
837 netif_start_queue(ndev
);
840 static const struct net_device_ops arc_emac_netdev_ops
= {
841 .ndo_open
= arc_emac_open
,
842 .ndo_stop
= arc_emac_stop
,
843 .ndo_start_xmit
= arc_emac_tx
,
844 .ndo_set_mac_address
= arc_emac_set_address
,
845 .ndo_get_stats
= arc_emac_stats
,
846 .ndo_set_rx_mode
= arc_emac_set_rx_mode
,
847 .ndo_do_ioctl
= phy_do_ioctl_running
,
848 #ifdef CONFIG_NET_POLL_CONTROLLER
849 .ndo_poll_controller
= arc_emac_poll_controller
,
853 int arc_emac_probe(struct net_device
*ndev
, int interface
)
855 struct device
*dev
= ndev
->dev
.parent
;
856 struct resource res_regs
;
857 struct device_node
*phy_node
;
858 struct phy_device
*phydev
= NULL
;
859 struct arc_emac_priv
*priv
;
860 const char *mac_addr
;
861 unsigned int id
, clock_frequency
, irq
;
864 /* Get PHY from device tree */
865 phy_node
= of_parse_phandle(dev
->of_node
, "phy", 0);
867 dev_err(dev
, "failed to retrieve phy description from device tree\n");
871 /* Get EMAC registers base address from device tree */
872 err
= of_address_to_resource(dev
->of_node
, 0, &res_regs
);
874 dev_err(dev
, "failed to retrieve registers base from device tree\n");
879 /* Get IRQ from device tree */
880 irq
= irq_of_parse_and_map(dev
->of_node
, 0);
882 dev_err(dev
, "failed to retrieve <irq> value from device tree\n");
887 ndev
->netdev_ops
= &arc_emac_netdev_ops
;
888 ndev
->ethtool_ops
= &arc_emac_ethtool_ops
;
889 ndev
->watchdog_timeo
= TX_TIMEOUT
;
891 priv
= netdev_priv(ndev
);
894 priv
->regs
= devm_ioremap_resource(dev
, &res_regs
);
895 if (IS_ERR(priv
->regs
)) {
896 err
= PTR_ERR(priv
->regs
);
900 dev_dbg(dev
, "Registers base address is 0x%p\n", priv
->regs
);
903 err
= clk_prepare_enable(priv
->clk
);
905 dev_err(dev
, "failed to enable clock\n");
909 clock_frequency
= clk_get_rate(priv
->clk
);
911 /* Get CPU clock frequency from device tree */
912 if (of_property_read_u32(dev
->of_node
, "clock-frequency",
914 dev_err(dev
, "failed to retrieve <clock-frequency> from device tree\n");
920 id
= arc_reg_get(priv
, R_ID
);
922 /* Check for EMAC revision 5 or 7, magic number */
923 if (!(id
== 0x0005fd02 || id
== 0x0007fd02)) {
924 dev_err(dev
, "ARC EMAC not detected, id=0x%x\n", id
);
928 dev_info(dev
, "ARC EMAC detected with id: 0x%x\n", id
);
930 /* Set poll rate so that it polls every 1 ms */
931 arc_reg_set(priv
, R_POLLRATE
, clock_frequency
/ 1000000);
934 dev_info(dev
, "IRQ is %d\n", ndev
->irq
);
936 /* Register interrupt handler for device */
937 err
= devm_request_irq(dev
, ndev
->irq
, arc_emac_intr
, 0,
940 dev_err(dev
, "could not allocate IRQ\n");
944 /* Get MAC address from device tree */
945 mac_addr
= of_get_mac_address(dev
->of_node
);
947 if (!IS_ERR(mac_addr
))
948 ether_addr_copy(ndev
->dev_addr
, mac_addr
);
950 eth_hw_addr_random(ndev
);
952 arc_emac_set_address_internal(ndev
);
953 dev_info(dev
, "MAC address is now %pM\n", ndev
->dev_addr
);
955 /* Do 1 allocation instead of 2 separate ones for Rx and Tx BD rings */
956 priv
->rxbd
= dmam_alloc_coherent(dev
, RX_RING_SZ
+ TX_RING_SZ
,
957 &priv
->rxbd_dma
, GFP_KERNEL
);
960 dev_err(dev
, "failed to allocate data buffers\n");
965 priv
->txbd
= priv
->rxbd
+ RX_BD_NUM
;
967 priv
->txbd_dma
= priv
->rxbd_dma
+ RX_RING_SZ
;
968 dev_dbg(dev
, "EMAC Device addr: Rx Ring [0x%x], Tx Ring[%x]\n",
969 (unsigned int)priv
->rxbd_dma
, (unsigned int)priv
->txbd_dma
);
971 err
= arc_mdio_probe(priv
);
973 dev_err(dev
, "failed to probe MII bus\n");
977 phydev
= of_phy_connect(ndev
, phy_node
, arc_emac_adjust_link
, 0,
980 dev_err(dev
, "of_phy_connect() failed\n");
985 dev_info(dev
, "connected to %s phy with id 0x%x\n",
986 phydev
->drv
->name
, phydev
->phy_id
);
988 netif_napi_add(ndev
, &priv
->napi
, arc_emac_poll
, ARC_EMAC_NAPI_WEIGHT
);
990 err
= register_netdev(ndev
);
992 dev_err(dev
, "failed to register network device\n");
996 of_node_put(phy_node
);
1000 netif_napi_del(&priv
->napi
);
1001 phy_disconnect(phydev
);
1003 arc_mdio_remove(priv
);
1006 clk_disable_unprepare(priv
->clk
);
1008 of_node_put(phy_node
);
1012 EXPORT_SYMBOL_GPL(arc_emac_probe
);
1014 int arc_emac_remove(struct net_device
*ndev
)
1016 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
1018 phy_disconnect(ndev
->phydev
);
1019 arc_mdio_remove(priv
);
1020 unregister_netdev(ndev
);
1021 netif_napi_del(&priv
->napi
);
1023 if (!IS_ERR(priv
->clk
))
1024 clk_disable_unprepare(priv
->clk
);
1028 EXPORT_SYMBOL_GPL(arc_emac_remove
);
1030 MODULE_AUTHOR("Alexey Brodkin <abrodkin@synopsys.com>");
1031 MODULE_DESCRIPTION("ARC EMAC driver");
1032 MODULE_LICENSE("GPL");