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
));
95 strlcpy(info
->version
, priv
->drv_version
, sizeof(info
->version
));
98 static const struct ethtool_ops arc_emac_ethtool_ops
= {
99 .get_drvinfo
= arc_emac_get_drvinfo
,
100 .get_link
= ethtool_op_get_link
,
101 .get_link_ksettings
= phy_ethtool_get_link_ksettings
,
102 .set_link_ksettings
= phy_ethtool_set_link_ksettings
,
105 #define FIRST_OR_LAST_MASK (FIRST_MASK | LAST_MASK)
108 * arc_emac_tx_clean - clears processed by EMAC Tx BDs.
109 * @ndev: Pointer to the network device.
111 static void arc_emac_tx_clean(struct net_device
*ndev
)
113 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
114 struct net_device_stats
*stats
= &ndev
->stats
;
117 for (i
= 0; i
< TX_BD_NUM
; i
++) {
118 unsigned int *txbd_dirty
= &priv
->txbd_dirty
;
119 struct arc_emac_bd
*txbd
= &priv
->txbd
[*txbd_dirty
];
120 struct buffer_state
*tx_buff
= &priv
->tx_buff
[*txbd_dirty
];
121 struct sk_buff
*skb
= tx_buff
->skb
;
122 unsigned int info
= le32_to_cpu(txbd
->info
);
124 if ((info
& FOR_EMAC
) || !txbd
->data
|| !skb
)
127 if (unlikely(info
& (DROP
| DEFR
| LTCL
| UFLO
))) {
132 stats
->tx_carrier_errors
++;
138 stats
->tx_fifo_errors
++;
139 } else if (likely(info
& FIRST_OR_LAST_MASK
)) {
141 stats
->tx_bytes
+= skb
->len
;
144 dma_unmap_single(&ndev
->dev
, dma_unmap_addr(tx_buff
, addr
),
145 dma_unmap_len(tx_buff
, len
), DMA_TO_DEVICE
);
147 /* return the sk_buff to system */
148 dev_consume_skb_irq(skb
);
154 *txbd_dirty
= (*txbd_dirty
+ 1) % TX_BD_NUM
;
157 /* Ensure that txbd_dirty is visible to tx() before checking
162 if (netif_queue_stopped(ndev
) && arc_emac_tx_avail(priv
))
163 netif_wake_queue(ndev
);
167 * arc_emac_rx - processing of Rx packets.
168 * @ndev: Pointer to the network device.
169 * @budget: How many BDs to process on 1 call.
171 * returns: Number of processed BDs
173 * Iterate through Rx BDs and deliver received packages to upper layer.
175 static int arc_emac_rx(struct net_device
*ndev
, int budget
)
177 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
178 unsigned int work_done
;
180 for (work_done
= 0; work_done
< budget
; work_done
++) {
181 unsigned int *last_rx_bd
= &priv
->last_rx_bd
;
182 struct net_device_stats
*stats
= &ndev
->stats
;
183 struct buffer_state
*rx_buff
= &priv
->rx_buff
[*last_rx_bd
];
184 struct arc_emac_bd
*rxbd
= &priv
->rxbd
[*last_rx_bd
];
185 unsigned int pktlen
, info
= le32_to_cpu(rxbd
->info
);
189 if (unlikely((info
& OWN_MASK
) == FOR_EMAC
))
192 /* Make a note that we saw a packet at this BD.
193 * So next time, driver starts from this + 1
195 *last_rx_bd
= (*last_rx_bd
+ 1) % RX_BD_NUM
;
197 if (unlikely((info
& FIRST_OR_LAST_MASK
) !=
198 FIRST_OR_LAST_MASK
)) {
199 /* We pre-allocate buffers of MTU size so incoming
200 * packets won't be split/chained.
203 netdev_err(ndev
, "incomplete packet received\n");
205 /* Return ownership to EMAC */
206 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
208 stats
->rx_length_errors
++;
212 /* Prepare the BD for next cycle. netif_receive_skb()
213 * only if new skb was allocated and mapped to avoid holes
216 skb
= netdev_alloc_skb_ip_align(ndev
, EMAC_BUFFER_SIZE
);
217 if (unlikely(!skb
)) {
219 netdev_err(ndev
, "cannot allocate skb\n");
220 /* Return ownership to EMAC */
221 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
227 addr
= dma_map_single(&ndev
->dev
, (void *)skb
->data
,
228 EMAC_BUFFER_SIZE
, DMA_FROM_DEVICE
);
229 if (dma_mapping_error(&ndev
->dev
, addr
)) {
231 netdev_err(ndev
, "cannot map dma buffer\n");
233 /* Return ownership to EMAC */
234 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
240 /* unmap previosly mapped skb */
241 dma_unmap_single(&ndev
->dev
, dma_unmap_addr(rx_buff
, addr
),
242 dma_unmap_len(rx_buff
, len
), DMA_FROM_DEVICE
);
244 pktlen
= info
& LEN_MASK
;
246 stats
->rx_bytes
+= pktlen
;
247 skb_put(rx_buff
->skb
, pktlen
);
248 rx_buff
->skb
->dev
= ndev
;
249 rx_buff
->skb
->protocol
= eth_type_trans(rx_buff
->skb
, ndev
);
251 netif_receive_skb(rx_buff
->skb
);
254 dma_unmap_addr_set(rx_buff
, addr
, addr
);
255 dma_unmap_len_set(rx_buff
, len
, EMAC_BUFFER_SIZE
);
257 rxbd
->data
= cpu_to_le32(addr
);
259 /* Make sure pointer to data buffer is set */
262 /* Return ownership to EMAC */
263 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
270 * arc_emac_rx_miss_handle - handle R_MISS register
271 * @ndev: Pointer to the net_device structure.
273 static void arc_emac_rx_miss_handle(struct net_device
*ndev
)
275 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
276 struct net_device_stats
*stats
= &ndev
->stats
;
279 miss
= arc_reg_get(priv
, R_MISS
);
281 stats
->rx_errors
+= miss
;
282 stats
->rx_missed_errors
+= miss
;
283 priv
->rx_missed_errors
+= miss
;
288 * arc_emac_rx_stall_check - check RX stall
289 * @ndev: Pointer to the net_device structure.
290 * @budget: How many BDs requested to process on 1 call.
291 * @work_done: How many BDs processed
293 * Under certain conditions EMAC stop reception of incoming packets and
294 * continuously increment R_MISS register instead of saving data into
295 * provided buffer. This function detect that condition and restart
298 static void arc_emac_rx_stall_check(struct net_device
*ndev
,
299 int budget
, unsigned int work_done
)
301 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
302 struct arc_emac_bd
*rxbd
;
305 priv
->rx_missed_errors
= 0;
307 if (priv
->rx_missed_errors
&& budget
) {
308 rxbd
= &priv
->rxbd
[priv
->last_rx_bd
];
309 if (le32_to_cpu(rxbd
->info
) & FOR_EMAC
) {
310 arc_emac_restart(ndev
);
311 priv
->rx_missed_errors
= 0;
317 * arc_emac_poll - NAPI poll handler.
318 * @napi: Pointer to napi_struct structure.
319 * @budget: How many BDs to process on 1 call.
321 * returns: Number of processed BDs
323 static int arc_emac_poll(struct napi_struct
*napi
, int budget
)
325 struct net_device
*ndev
= napi
->dev
;
326 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
327 unsigned int work_done
;
329 arc_emac_tx_clean(ndev
);
330 arc_emac_rx_miss_handle(ndev
);
332 work_done
= arc_emac_rx(ndev
, budget
);
333 if (work_done
< budget
) {
334 napi_complete_done(napi
, work_done
);
335 arc_reg_or(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
);
338 arc_emac_rx_stall_check(ndev
, budget
, work_done
);
344 * arc_emac_intr - Global interrupt handler for EMAC.
346 * @dev_instance: device instance.
348 * returns: IRQ_HANDLED for all cases.
350 * ARC EMAC has only 1 interrupt line, and depending on bits raised in
351 * STATUS register we may tell what is a reason for interrupt to fire.
353 static irqreturn_t
arc_emac_intr(int irq
, void *dev_instance
)
355 struct net_device
*ndev
= dev_instance
;
356 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
357 struct net_device_stats
*stats
= &ndev
->stats
;
360 status
= arc_reg_get(priv
, R_STATUS
);
361 status
&= ~MDIO_MASK
;
363 /* Reset all flags except "MDIO complete" */
364 arc_reg_set(priv
, R_STATUS
, status
);
366 if (status
& (RXINT_MASK
| TXINT_MASK
)) {
367 if (likely(napi_schedule_prep(&priv
->napi
))) {
368 arc_reg_clr(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
);
369 __napi_schedule(&priv
->napi
);
373 if (status
& ERR_MASK
) {
374 /* MSER/RXCR/RXFR/RXFL interrupt fires on corresponding
375 * 8-bit error counter overrun.
378 if (status
& MSER_MASK
) {
379 stats
->rx_missed_errors
+= 0x100;
380 stats
->rx_errors
+= 0x100;
381 priv
->rx_missed_errors
+= 0x100;
382 napi_schedule(&priv
->napi
);
385 if (status
& RXCR_MASK
) {
386 stats
->rx_crc_errors
+= 0x100;
387 stats
->rx_errors
+= 0x100;
390 if (status
& RXFR_MASK
) {
391 stats
->rx_frame_errors
+= 0x100;
392 stats
->rx_errors
+= 0x100;
395 if (status
& RXFL_MASK
) {
396 stats
->rx_over_errors
+= 0x100;
397 stats
->rx_errors
+= 0x100;
404 #ifdef CONFIG_NET_POLL_CONTROLLER
405 static void arc_emac_poll_controller(struct net_device
*dev
)
407 disable_irq(dev
->irq
);
408 arc_emac_intr(dev
->irq
, dev
);
409 enable_irq(dev
->irq
);
414 * arc_emac_open - Open the network device.
415 * @ndev: Pointer to the network device.
417 * returns: 0, on success or non-zero error value on failure.
419 * This function sets the MAC address, requests and enables an IRQ
420 * for the EMAC device and starts the Tx queue.
421 * It also connects to the phy device.
423 static int arc_emac_open(struct net_device
*ndev
)
425 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
426 struct phy_device
*phy_dev
= ndev
->phydev
;
429 phy_dev
->autoneg
= AUTONEG_ENABLE
;
432 linkmode_and(phy_dev
->advertising
, phy_dev
->advertising
,
435 priv
->last_rx_bd
= 0;
437 /* Allocate and set buffers for Rx BD's */
438 for (i
= 0; i
< RX_BD_NUM
; i
++) {
440 unsigned int *last_rx_bd
= &priv
->last_rx_bd
;
441 struct arc_emac_bd
*rxbd
= &priv
->rxbd
[*last_rx_bd
];
442 struct buffer_state
*rx_buff
= &priv
->rx_buff
[*last_rx_bd
];
444 rx_buff
->skb
= netdev_alloc_skb_ip_align(ndev
,
446 if (unlikely(!rx_buff
->skb
))
449 addr
= dma_map_single(&ndev
->dev
, (void *)rx_buff
->skb
->data
,
450 EMAC_BUFFER_SIZE
, DMA_FROM_DEVICE
);
451 if (dma_mapping_error(&ndev
->dev
, addr
)) {
452 netdev_err(ndev
, "cannot dma map\n");
453 dev_kfree_skb(rx_buff
->skb
);
456 dma_unmap_addr_set(rx_buff
, addr
, addr
);
457 dma_unmap_len_set(rx_buff
, len
, EMAC_BUFFER_SIZE
);
459 rxbd
->data
= cpu_to_le32(addr
);
461 /* Make sure pointer to data buffer is set */
464 /* Return ownership to EMAC */
465 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
467 *last_rx_bd
= (*last_rx_bd
+ 1) % RX_BD_NUM
;
471 priv
->txbd_dirty
= 0;
474 memset(priv
->txbd
, 0, TX_RING_SZ
);
476 /* Initialize logical address filter */
477 arc_reg_set(priv
, R_LAFL
, 0);
478 arc_reg_set(priv
, R_LAFH
, 0);
480 /* Set BD ring pointers for device side */
481 arc_reg_set(priv
, R_RX_RING
, (unsigned int)priv
->rxbd_dma
);
482 arc_reg_set(priv
, R_TX_RING
, (unsigned int)priv
->txbd_dma
);
484 /* Enable interrupts */
485 arc_reg_set(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
| ERR_MASK
);
488 arc_reg_set(priv
, R_CTRL
,
489 (RX_BD_NUM
<< 24) | /* RX BD table length */
490 (TX_BD_NUM
<< 16) | /* TX BD table length */
491 TXRN_MASK
| RXRN_MASK
);
493 napi_enable(&priv
->napi
);
496 arc_reg_or(priv
, R_CTRL
, EN_MASK
);
498 phy_start(ndev
->phydev
);
500 netif_start_queue(ndev
);
506 * arc_emac_set_rx_mode - Change the receive filtering mode.
507 * @ndev: Pointer to the network device.
509 * This function enables/disables promiscuous or all-multicast mode
510 * and updates the multicast filtering list of the network device.
512 static void arc_emac_set_rx_mode(struct net_device
*ndev
)
514 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
516 if (ndev
->flags
& IFF_PROMISC
) {
517 arc_reg_or(priv
, R_CTRL
, PROM_MASK
);
519 arc_reg_clr(priv
, R_CTRL
, PROM_MASK
);
521 if (ndev
->flags
& IFF_ALLMULTI
) {
522 arc_reg_set(priv
, R_LAFL
, ~0);
523 arc_reg_set(priv
, R_LAFH
, ~0);
524 } else if (ndev
->flags
& IFF_MULTICAST
) {
525 struct netdev_hw_addr
*ha
;
526 unsigned int filter
[2] = { 0, 0 };
529 netdev_for_each_mc_addr(ha
, ndev
) {
530 bit
= ether_crc_le(ETH_ALEN
, ha
->addr
) >> 26;
531 filter
[bit
>> 5] |= 1 << (bit
& 31);
534 arc_reg_set(priv
, R_LAFL
, filter
[0]);
535 arc_reg_set(priv
, R_LAFH
, filter
[1]);
537 arc_reg_set(priv
, R_LAFL
, 0);
538 arc_reg_set(priv
, R_LAFH
, 0);
544 * arc_free_tx_queue - free skb from tx queue
545 * @ndev: Pointer to the network device.
547 * This function must be called while EMAC disable
549 static void arc_free_tx_queue(struct net_device
*ndev
)
551 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
554 for (i
= 0; i
< TX_BD_NUM
; i
++) {
555 struct arc_emac_bd
*txbd
= &priv
->txbd
[i
];
556 struct buffer_state
*tx_buff
= &priv
->tx_buff
[i
];
559 dma_unmap_single(&ndev
->dev
,
560 dma_unmap_addr(tx_buff
, addr
),
561 dma_unmap_len(tx_buff
, len
),
564 /* return the sk_buff to system */
565 dev_kfree_skb_irq(tx_buff
->skb
);
575 * arc_free_rx_queue - free skb from rx queue
576 * @ndev: Pointer to the network device.
578 * This function must be called while EMAC disable
580 static void arc_free_rx_queue(struct net_device
*ndev
)
582 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
585 for (i
= 0; i
< RX_BD_NUM
; i
++) {
586 struct arc_emac_bd
*rxbd
= &priv
->rxbd
[i
];
587 struct buffer_state
*rx_buff
= &priv
->rx_buff
[i
];
590 dma_unmap_single(&ndev
->dev
,
591 dma_unmap_addr(rx_buff
, addr
),
592 dma_unmap_len(rx_buff
, len
),
595 /* return the sk_buff to system */
596 dev_kfree_skb_irq(rx_buff
->skb
);
606 * arc_emac_stop - Close the network device.
607 * @ndev: Pointer to the network device.
609 * This function stops the Tx queue, disables interrupts and frees the IRQ for
611 * It also disconnects the PHY device associated with the EMAC device.
613 static int arc_emac_stop(struct net_device
*ndev
)
615 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
617 napi_disable(&priv
->napi
);
618 netif_stop_queue(ndev
);
620 phy_stop(ndev
->phydev
);
622 /* Disable interrupts */
623 arc_reg_clr(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
| ERR_MASK
);
626 arc_reg_clr(priv
, R_CTRL
, EN_MASK
);
628 /* Return the sk_buff to system */
629 arc_free_tx_queue(ndev
);
630 arc_free_rx_queue(ndev
);
636 * arc_emac_stats - Get system network statistics.
637 * @ndev: Pointer to net_device structure.
639 * Returns the address of the device statistics structure.
640 * Statistics are updated in interrupt handler.
642 static struct net_device_stats
*arc_emac_stats(struct net_device
*ndev
)
644 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
645 struct net_device_stats
*stats
= &ndev
->stats
;
646 unsigned long miss
, rxerr
;
647 u8 rxcrc
, rxfram
, rxoflow
;
649 rxerr
= arc_reg_get(priv
, R_RXERR
);
650 miss
= arc_reg_get(priv
, R_MISS
);
654 rxoflow
= rxerr
>> 16;
656 stats
->rx_errors
+= miss
;
657 stats
->rx_errors
+= rxcrc
+ rxfram
+ rxoflow
;
659 stats
->rx_over_errors
+= rxoflow
;
660 stats
->rx_frame_errors
+= rxfram
;
661 stats
->rx_crc_errors
+= rxcrc
;
662 stats
->rx_missed_errors
+= miss
;
668 * arc_emac_tx - Starts the data transmission.
669 * @skb: sk_buff pointer that contains data to be Transmitted.
670 * @ndev: Pointer to net_device structure.
672 * returns: NETDEV_TX_OK, on success
673 * NETDEV_TX_BUSY, if any of the descriptors are not free.
675 * This function is invoked from upper layers to initiate transmission.
677 static int arc_emac_tx(struct sk_buff
*skb
, struct net_device
*ndev
)
679 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
680 unsigned int len
, *txbd_curr
= &priv
->txbd_curr
;
681 struct net_device_stats
*stats
= &ndev
->stats
;
682 __le32
*info
= &priv
->txbd
[*txbd_curr
].info
;
685 if (skb_padto(skb
, ETH_ZLEN
))
688 len
= max_t(unsigned int, ETH_ZLEN
, skb
->len
);
690 if (unlikely(!arc_emac_tx_avail(priv
))) {
691 netif_stop_queue(ndev
);
692 netdev_err(ndev
, "BUG! Tx Ring full when queue awake!\n");
693 return NETDEV_TX_BUSY
;
696 addr
= dma_map_single(&ndev
->dev
, (void *)skb
->data
, len
,
699 if (unlikely(dma_mapping_error(&ndev
->dev
, addr
))) {
702 dev_kfree_skb_any(skb
);
705 dma_unmap_addr_set(&priv
->tx_buff
[*txbd_curr
], addr
, addr
);
706 dma_unmap_len_set(&priv
->tx_buff
[*txbd_curr
], len
, len
);
708 priv
->txbd
[*txbd_curr
].data
= cpu_to_le32(addr
);
710 /* Make sure pointer to data buffer is set */
713 skb_tx_timestamp(skb
);
715 *info
= cpu_to_le32(FOR_EMAC
| FIRST_OR_LAST_MASK
| len
);
717 /* Make sure info word is set */
720 priv
->tx_buff
[*txbd_curr
].skb
= skb
;
722 /* Increment index to point to the next BD */
723 *txbd_curr
= (*txbd_curr
+ 1) % TX_BD_NUM
;
725 /* Ensure that tx_clean() sees the new txbd_curr before
726 * checking the queue status. This prevents an unneeded wake
727 * of the queue in tx_clean().
731 if (!arc_emac_tx_avail(priv
)) {
732 netif_stop_queue(ndev
);
733 /* Refresh tx_dirty */
735 if (arc_emac_tx_avail(priv
))
736 netif_start_queue(ndev
);
739 arc_reg_set(priv
, R_STATUS
, TXPL_MASK
);
744 static void arc_emac_set_address_internal(struct net_device
*ndev
)
746 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
747 unsigned int addr_low
, addr_hi
;
749 addr_low
= le32_to_cpu(*(__le32
*)&ndev
->dev_addr
[0]);
750 addr_hi
= le16_to_cpu(*(__le16
*)&ndev
->dev_addr
[4]);
752 arc_reg_set(priv
, R_ADDRL
, addr_low
);
753 arc_reg_set(priv
, R_ADDRH
, addr_hi
);
757 * arc_emac_set_address - Set the MAC address for this device.
758 * @ndev: Pointer to net_device structure.
759 * @p: 6 byte Address to be written as MAC address.
761 * This function copies the HW address from the sockaddr structure to the
762 * net_device structure and updates the address in HW.
764 * returns: -EBUSY if the net device is busy or 0 if the address is set
767 static int arc_emac_set_address(struct net_device
*ndev
, void *p
)
769 struct sockaddr
*addr
= p
;
771 if (netif_running(ndev
))
774 if (!is_valid_ether_addr(addr
->sa_data
))
775 return -EADDRNOTAVAIL
;
777 memcpy(ndev
->dev_addr
, addr
->sa_data
, ndev
->addr_len
);
779 arc_emac_set_address_internal(ndev
);
784 static int arc_emac_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
786 if (!netif_running(dev
))
792 return phy_mii_ioctl(dev
->phydev
, rq
, cmd
);
797 * arc_emac_restart - Restart EMAC
798 * @ndev: Pointer to net_device structure.
800 * This function do hardware reset of EMAC in order to restore
801 * network packets reception.
803 static void arc_emac_restart(struct net_device
*ndev
)
805 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
806 struct net_device_stats
*stats
= &ndev
->stats
;
810 netdev_warn(ndev
, "restarting stalled EMAC\n");
812 netif_stop_queue(ndev
);
814 /* Disable interrupts */
815 arc_reg_clr(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
| ERR_MASK
);
818 arc_reg_clr(priv
, R_CTRL
, EN_MASK
);
820 /* Return the sk_buff to system */
821 arc_free_tx_queue(ndev
);
825 priv
->txbd_dirty
= 0;
826 memset(priv
->txbd
, 0, TX_RING_SZ
);
828 for (i
= 0; i
< RX_BD_NUM
; i
++) {
829 struct arc_emac_bd
*rxbd
= &priv
->rxbd
[i
];
830 unsigned int info
= le32_to_cpu(rxbd
->info
);
832 if (!(info
& FOR_EMAC
)) {
836 /* Return ownership to EMAC */
837 rxbd
->info
= cpu_to_le32(FOR_EMAC
| EMAC_BUFFER_SIZE
);
839 priv
->last_rx_bd
= 0;
841 /* Make sure info is visible to EMAC before enable */
844 /* Enable interrupts */
845 arc_reg_set(priv
, R_ENABLE
, RXINT_MASK
| TXINT_MASK
| ERR_MASK
);
848 arc_reg_or(priv
, R_CTRL
, EN_MASK
);
850 netif_start_queue(ndev
);
853 static const struct net_device_ops arc_emac_netdev_ops
= {
854 .ndo_open
= arc_emac_open
,
855 .ndo_stop
= arc_emac_stop
,
856 .ndo_start_xmit
= arc_emac_tx
,
857 .ndo_set_mac_address
= arc_emac_set_address
,
858 .ndo_get_stats
= arc_emac_stats
,
859 .ndo_set_rx_mode
= arc_emac_set_rx_mode
,
860 .ndo_do_ioctl
= arc_emac_ioctl
,
861 #ifdef CONFIG_NET_POLL_CONTROLLER
862 .ndo_poll_controller
= arc_emac_poll_controller
,
866 int arc_emac_probe(struct net_device
*ndev
, int interface
)
868 struct device
*dev
= ndev
->dev
.parent
;
869 struct resource res_regs
;
870 struct device_node
*phy_node
;
871 struct phy_device
*phydev
= NULL
;
872 struct arc_emac_priv
*priv
;
873 const char *mac_addr
;
874 unsigned int id
, clock_frequency
, irq
;
877 /* Get PHY from device tree */
878 phy_node
= of_parse_phandle(dev
->of_node
, "phy", 0);
880 dev_err(dev
, "failed to retrieve phy description from device tree\n");
884 /* Get EMAC registers base address from device tree */
885 err
= of_address_to_resource(dev
->of_node
, 0, &res_regs
);
887 dev_err(dev
, "failed to retrieve registers base from device tree\n");
892 /* Get IRQ from device tree */
893 irq
= irq_of_parse_and_map(dev
->of_node
, 0);
895 dev_err(dev
, "failed to retrieve <irq> value from device tree\n");
900 ndev
->netdev_ops
= &arc_emac_netdev_ops
;
901 ndev
->ethtool_ops
= &arc_emac_ethtool_ops
;
902 ndev
->watchdog_timeo
= TX_TIMEOUT
;
904 priv
= netdev_priv(ndev
);
907 priv
->regs
= devm_ioremap_resource(dev
, &res_regs
);
908 if (IS_ERR(priv
->regs
)) {
909 err
= PTR_ERR(priv
->regs
);
913 dev_dbg(dev
, "Registers base address is 0x%p\n", priv
->regs
);
916 err
= clk_prepare_enable(priv
->clk
);
918 dev_err(dev
, "failed to enable clock\n");
922 clock_frequency
= clk_get_rate(priv
->clk
);
924 /* Get CPU clock frequency from device tree */
925 if (of_property_read_u32(dev
->of_node
, "clock-frequency",
927 dev_err(dev
, "failed to retrieve <clock-frequency> from device tree\n");
933 id
= arc_reg_get(priv
, R_ID
);
935 /* Check for EMAC revision 5 or 7, magic number */
936 if (!(id
== 0x0005fd02 || id
== 0x0007fd02)) {
937 dev_err(dev
, "ARC EMAC not detected, id=0x%x\n", id
);
941 dev_info(dev
, "ARC EMAC detected with id: 0x%x\n", id
);
943 /* Set poll rate so that it polls every 1 ms */
944 arc_reg_set(priv
, R_POLLRATE
, clock_frequency
/ 1000000);
947 dev_info(dev
, "IRQ is %d\n", ndev
->irq
);
949 /* Register interrupt handler for device */
950 err
= devm_request_irq(dev
, ndev
->irq
, arc_emac_intr
, 0,
953 dev_err(dev
, "could not allocate IRQ\n");
957 /* Get MAC address from device tree */
958 mac_addr
= of_get_mac_address(dev
->of_node
);
960 if (!IS_ERR(mac_addr
))
961 ether_addr_copy(ndev
->dev_addr
, mac_addr
);
963 eth_hw_addr_random(ndev
);
965 arc_emac_set_address_internal(ndev
);
966 dev_info(dev
, "MAC address is now %pM\n", ndev
->dev_addr
);
968 /* Do 1 allocation instead of 2 separate ones for Rx and Tx BD rings */
969 priv
->rxbd
= dmam_alloc_coherent(dev
, RX_RING_SZ
+ TX_RING_SZ
,
970 &priv
->rxbd_dma
, GFP_KERNEL
);
973 dev_err(dev
, "failed to allocate data buffers\n");
978 priv
->txbd
= priv
->rxbd
+ RX_BD_NUM
;
980 priv
->txbd_dma
= priv
->rxbd_dma
+ RX_RING_SZ
;
981 dev_dbg(dev
, "EMAC Device addr: Rx Ring [0x%x], Tx Ring[%x]\n",
982 (unsigned int)priv
->rxbd_dma
, (unsigned int)priv
->txbd_dma
);
984 err
= arc_mdio_probe(priv
);
986 dev_err(dev
, "failed to probe MII bus\n");
990 phydev
= of_phy_connect(ndev
, phy_node
, arc_emac_adjust_link
, 0,
993 dev_err(dev
, "of_phy_connect() failed\n");
998 dev_info(dev
, "connected to %s phy with id 0x%x\n",
999 phydev
->drv
->name
, phydev
->phy_id
);
1001 netif_napi_add(ndev
, &priv
->napi
, arc_emac_poll
, ARC_EMAC_NAPI_WEIGHT
);
1003 err
= register_netdev(ndev
);
1005 dev_err(dev
, "failed to register network device\n");
1009 of_node_put(phy_node
);
1013 netif_napi_del(&priv
->napi
);
1014 phy_disconnect(phydev
);
1016 arc_mdio_remove(priv
);
1019 clk_disable_unprepare(priv
->clk
);
1021 of_node_put(phy_node
);
1025 EXPORT_SYMBOL_GPL(arc_emac_probe
);
1027 int arc_emac_remove(struct net_device
*ndev
)
1029 struct arc_emac_priv
*priv
= netdev_priv(ndev
);
1031 phy_disconnect(ndev
->phydev
);
1032 arc_mdio_remove(priv
);
1033 unregister_netdev(ndev
);
1034 netif_napi_del(&priv
->napi
);
1036 if (!IS_ERR(priv
->clk
))
1037 clk_disable_unprepare(priv
->clk
);
1041 EXPORT_SYMBOL_GPL(arc_emac_remove
);
1043 MODULE_AUTHOR("Alexey Brodkin <abrodkin@synopsys.com>");
1044 MODULE_DESCRIPTION("ARC EMAC driver");
1045 MODULE_LICENSE("GPL");