Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2004-2013 Synopsys, Inc. (www.synopsys.com)
4 *
5 * Driver for the ARC EMAC 10100 (hardware revision 5)
6 *
7 * Contributors:
8 * Amit Bhor
9 * Sameer Dhavale
10 * Vineet Gupta
11 */
12
13#include <linux/crc32.h>
14#include <linux/etherdevice.h>
15#include <linux/interrupt.h>
16#include <linux/io.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>
23
24#include "emac.h"
25
26static void arc_emac_restart(struct net_device *ndev);
27
28/**
29 * arc_emac_tx_avail - Return the number of available slots in the tx ring.
30 * @priv: Pointer to ARC EMAC private data structure.
31 *
32 * returns: the number of slots available for transmission in tx the ring.
33 */
34static inline int arc_emac_tx_avail(struct arc_emac_priv *priv)
35{
36 return (priv->txbd_dirty + TX_BD_NUM - priv->txbd_curr - 1) % TX_BD_NUM;
37}
38
39/**
40 * arc_emac_adjust_link - Adjust the PHY link duplex.
41 * @ndev: Pointer to the net_device structure.
42 *
43 * This function is called to change the duplex setting after auto negotiation
44 * is done by the PHY.
45 */
46static void arc_emac_adjust_link(struct net_device *ndev)
47{
48 struct arc_emac_priv *priv = netdev_priv(ndev);
49 struct phy_device *phy_dev = ndev->phydev;
50 unsigned int reg, state_changed = 0;
51
52 if (priv->link != phy_dev->link) {
53 priv->link = phy_dev->link;
54 state_changed = 1;
55 }
56
57 if (priv->speed != phy_dev->speed) {
58 priv->speed = phy_dev->speed;
59 state_changed = 1;
60 if (priv->set_mac_speed)
61 priv->set_mac_speed(priv, priv->speed);
62 }
63
64 if (priv->duplex != phy_dev->duplex) {
65 reg = arc_reg_get(priv, R_CTRL);
66
67 if (phy_dev->duplex == DUPLEX_FULL)
68 reg |= ENFL_MASK;
69 else
70 reg &= ~ENFL_MASK;
71
72 arc_reg_set(priv, R_CTRL, reg);
73 priv->duplex = phy_dev->duplex;
74 state_changed = 1;
75 }
76
77 if (state_changed)
78 phy_print_status(phy_dev);
79}
80
81/**
82 * arc_emac_get_drvinfo - Get EMAC driver information.
83 * @ndev: Pointer to net_device structure.
84 * @info: Pointer to ethtool_drvinfo structure.
85 *
86 * This implements ethtool command for getting the driver information.
87 * Issue "ethtool -i ethX" under linux prompt to execute this function.
88 */
89static void arc_emac_get_drvinfo(struct net_device *ndev,
90 struct ethtool_drvinfo *info)
91{
92 struct arc_emac_priv *priv = netdev_priv(ndev);
93
94 strlcpy(info->driver, priv->drv_name, sizeof(info->driver));
95 strlcpy(info->version, priv->drv_version, sizeof(info->version));
96}
97
98static 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,
103};
104
105#define FIRST_OR_LAST_MASK (FIRST_MASK | LAST_MASK)
106
107/**
108 * arc_emac_tx_clean - clears processed by EMAC Tx BDs.
109 * @ndev: Pointer to the network device.
110 */
111static void arc_emac_tx_clean(struct net_device *ndev)
112{
113 struct arc_emac_priv *priv = netdev_priv(ndev);
114 struct net_device_stats *stats = &ndev->stats;
115 unsigned int i;
116
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);
123
124 if ((info & FOR_EMAC) || !txbd->data || !skb)
125 break;
126
127 if (unlikely(info & (DROP | DEFR | LTCL | UFLO))) {
128 stats->tx_errors++;
129 stats->tx_dropped++;
130
131 if (info & DEFR)
132 stats->tx_carrier_errors++;
133
134 if (info & LTCL)
135 stats->collisions++;
136
137 if (info & UFLO)
138 stats->tx_fifo_errors++;
139 } else if (likely(info & FIRST_OR_LAST_MASK)) {
140 stats->tx_packets++;
141 stats->tx_bytes += skb->len;
142 }
143
144 dma_unmap_single(&ndev->dev, dma_unmap_addr(tx_buff, addr),
145 dma_unmap_len(tx_buff, len), DMA_TO_DEVICE);
146
147 /* return the sk_buff to system */
148 dev_consume_skb_irq(skb);
149
150 txbd->data = 0;
151 txbd->info = 0;
152 tx_buff->skb = NULL;
153
154 *txbd_dirty = (*txbd_dirty + 1) % TX_BD_NUM;
155 }
156
157 /* Ensure that txbd_dirty is visible to tx() before checking
158 * for queue stopped.
159 */
160 smp_mb();
161
162 if (netif_queue_stopped(ndev) && arc_emac_tx_avail(priv))
163 netif_wake_queue(ndev);
164}
165
166/**
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.
170 *
171 * returns: Number of processed BDs
172 *
173 * Iterate through Rx BDs and deliver received packages to upper layer.
174 */
175static int arc_emac_rx(struct net_device *ndev, int budget)
176{
177 struct arc_emac_priv *priv = netdev_priv(ndev);
178 unsigned int work_done;
179
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);
186 struct sk_buff *skb;
187 dma_addr_t addr;
188
189 if (unlikely((info & OWN_MASK) == FOR_EMAC))
190 break;
191
192 /* Make a note that we saw a packet at this BD.
193 * So next time, driver starts from this + 1
194 */
195 *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
196
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.
201 */
202 if (net_ratelimit())
203 netdev_err(ndev, "incomplete packet received\n");
204
205 /* Return ownership to EMAC */
206 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
207 stats->rx_errors++;
208 stats->rx_length_errors++;
209 continue;
210 }
211
212 /* Prepare the BD for next cycle. netif_receive_skb()
213 * only if new skb was allocated and mapped to avoid holes
214 * in the RX fifo.
215 */
216 skb = netdev_alloc_skb_ip_align(ndev, EMAC_BUFFER_SIZE);
217 if (unlikely(!skb)) {
218 if (net_ratelimit())
219 netdev_err(ndev, "cannot allocate skb\n");
220 /* Return ownership to EMAC */
221 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
222 stats->rx_errors++;
223 stats->rx_dropped++;
224 continue;
225 }
226
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)) {
230 if (net_ratelimit())
231 netdev_err(ndev, "cannot map dma buffer\n");
232 dev_kfree_skb(skb);
233 /* Return ownership to EMAC */
234 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
235 stats->rx_errors++;
236 stats->rx_dropped++;
237 continue;
238 }
239
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);
243
244 pktlen = info & LEN_MASK;
245 stats->rx_packets++;
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);
250
251 netif_receive_skb(rx_buff->skb);
252
253 rx_buff->skb = skb;
254 dma_unmap_addr_set(rx_buff, addr, addr);
255 dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
256
257 rxbd->data = cpu_to_le32(addr);
258
259 /* Make sure pointer to data buffer is set */
260 wmb();
261
262 /* Return ownership to EMAC */
263 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
264 }
265
266 return work_done;
267}
268
269/**
270 * arc_emac_rx_miss_handle - handle R_MISS register
271 * @ndev: Pointer to the net_device structure.
272 */
273static void arc_emac_rx_miss_handle(struct net_device *ndev)
274{
275 struct arc_emac_priv *priv = netdev_priv(ndev);
276 struct net_device_stats *stats = &ndev->stats;
277 unsigned int miss;
278
279 miss = arc_reg_get(priv, R_MISS);
280 if (miss) {
281 stats->rx_errors += miss;
282 stats->rx_missed_errors += miss;
283 priv->rx_missed_errors += miss;
284 }
285}
286
287/**
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
292 *
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
296 * EMAC.
297 */
298static void arc_emac_rx_stall_check(struct net_device *ndev,
299 int budget, unsigned int work_done)
300{
301 struct arc_emac_priv *priv = netdev_priv(ndev);
302 struct arc_emac_bd *rxbd;
303
304 if (work_done)
305 priv->rx_missed_errors = 0;
306
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;
312 }
313 }
314}
315
316/**
317 * arc_emac_poll - NAPI poll handler.
318 * @napi: Pointer to napi_struct structure.
319 * @budget: How many BDs to process on 1 call.
320 *
321 * returns: Number of processed BDs
322 */
323static int arc_emac_poll(struct napi_struct *napi, int budget)
324{
325 struct net_device *ndev = napi->dev;
326 struct arc_emac_priv *priv = netdev_priv(ndev);
327 unsigned int work_done;
328
329 arc_emac_tx_clean(ndev);
330 arc_emac_rx_miss_handle(ndev);
331
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);
336 }
337
338 arc_emac_rx_stall_check(ndev, budget, work_done);
339
340 return work_done;
341}
342
343/**
344 * arc_emac_intr - Global interrupt handler for EMAC.
345 * @irq: irq number.
346 * @dev_instance: device instance.
347 *
348 * returns: IRQ_HANDLED for all cases.
349 *
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.
352 */
353static irqreturn_t arc_emac_intr(int irq, void *dev_instance)
354{
355 struct net_device *ndev = dev_instance;
356 struct arc_emac_priv *priv = netdev_priv(ndev);
357 struct net_device_stats *stats = &ndev->stats;
358 unsigned int status;
359
360 status = arc_reg_get(priv, R_STATUS);
361 status &= ~MDIO_MASK;
362
363 /* Reset all flags except "MDIO complete" */
364 arc_reg_set(priv, R_STATUS, status);
365
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);
370 }
371 }
372
373 if (status & ERR_MASK) {
374 /* MSER/RXCR/RXFR/RXFL interrupt fires on corresponding
375 * 8-bit error counter overrun.
376 */
377
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);
383 }
384
385 if (status & RXCR_MASK) {
386 stats->rx_crc_errors += 0x100;
387 stats->rx_errors += 0x100;
388 }
389
390 if (status & RXFR_MASK) {
391 stats->rx_frame_errors += 0x100;
392 stats->rx_errors += 0x100;
393 }
394
395 if (status & RXFL_MASK) {
396 stats->rx_over_errors += 0x100;
397 stats->rx_errors += 0x100;
398 }
399 }
400
401 return IRQ_HANDLED;
402}
403
404#ifdef CONFIG_NET_POLL_CONTROLLER
405static void arc_emac_poll_controller(struct net_device *dev)
406{
407 disable_irq(dev->irq);
408 arc_emac_intr(dev->irq, dev);
409 enable_irq(dev->irq);
410}
411#endif
412
413/**
414 * arc_emac_open - Open the network device.
415 * @ndev: Pointer to the network device.
416 *
417 * returns: 0, on success or non-zero error value on failure.
418 *
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.
422 */
423static int arc_emac_open(struct net_device *ndev)
424{
425 struct arc_emac_priv *priv = netdev_priv(ndev);
426 struct phy_device *phy_dev = ndev->phydev;
427 int i;
428
429 phy_dev->autoneg = AUTONEG_ENABLE;
430 phy_dev->speed = 0;
431 phy_dev->duplex = 0;
432 linkmode_and(phy_dev->advertising, phy_dev->advertising,
433 phy_dev->supported);
434
435 priv->last_rx_bd = 0;
436
437 /* Allocate and set buffers for Rx BD's */
438 for (i = 0; i < RX_BD_NUM; i++) {
439 dma_addr_t addr;
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];
443
444 rx_buff->skb = netdev_alloc_skb_ip_align(ndev,
445 EMAC_BUFFER_SIZE);
446 if (unlikely(!rx_buff->skb))
447 return -ENOMEM;
448
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);
454 return -ENOMEM;
455 }
456 dma_unmap_addr_set(rx_buff, addr, addr);
457 dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
458
459 rxbd->data = cpu_to_le32(addr);
460
461 /* Make sure pointer to data buffer is set */
462 wmb();
463
464 /* Return ownership to EMAC */
465 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
466
467 *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
468 }
469
470 priv->txbd_curr = 0;
471 priv->txbd_dirty = 0;
472
473 /* Clean Tx BD's */
474 memset(priv->txbd, 0, TX_RING_SZ);
475
476 /* Initialize logical address filter */
477 arc_reg_set(priv, R_LAFL, 0);
478 arc_reg_set(priv, R_LAFH, 0);
479
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);
483
484 /* Enable interrupts */
485 arc_reg_set(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
486
487 /* Set CONTROL */
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);
492
493 napi_enable(&priv->napi);
494
495 /* Enable EMAC */
496 arc_reg_or(priv, R_CTRL, EN_MASK);
497
498 phy_start(ndev->phydev);
499
500 netif_start_queue(ndev);
501
502 return 0;
503}
504
505/**
506 * arc_emac_set_rx_mode - Change the receive filtering mode.
507 * @ndev: Pointer to the network device.
508 *
509 * This function enables/disables promiscuous or all-multicast mode
510 * and updates the multicast filtering list of the network device.
511 */
512static void arc_emac_set_rx_mode(struct net_device *ndev)
513{
514 struct arc_emac_priv *priv = netdev_priv(ndev);
515
516 if (ndev->flags & IFF_PROMISC) {
517 arc_reg_or(priv, R_CTRL, PROM_MASK);
518 } else {
519 arc_reg_clr(priv, R_CTRL, PROM_MASK);
520
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 };
527 int bit;
528
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);
532 }
533
534 arc_reg_set(priv, R_LAFL, filter[0]);
535 arc_reg_set(priv, R_LAFH, filter[1]);
536 } else {
537 arc_reg_set(priv, R_LAFL, 0);
538 arc_reg_set(priv, R_LAFH, 0);
539 }
540 }
541}
542
543/**
544 * arc_free_tx_queue - free skb from tx queue
545 * @ndev: Pointer to the network device.
546 *
547 * This function must be called while EMAC disable
548 */
549static void arc_free_tx_queue(struct net_device *ndev)
550{
551 struct arc_emac_priv *priv = netdev_priv(ndev);
552 unsigned int i;
553
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];
557
558 if (tx_buff->skb) {
559 dma_unmap_single(&ndev->dev,
560 dma_unmap_addr(tx_buff, addr),
561 dma_unmap_len(tx_buff, len),
562 DMA_TO_DEVICE);
563
564 /* return the sk_buff to system */
565 dev_kfree_skb_irq(tx_buff->skb);
566 }
567
568 txbd->info = 0;
569 txbd->data = 0;
570 tx_buff->skb = NULL;
571 }
572}
573
574/**
575 * arc_free_rx_queue - free skb from rx queue
576 * @ndev: Pointer to the network device.
577 *
578 * This function must be called while EMAC disable
579 */
580static void arc_free_rx_queue(struct net_device *ndev)
581{
582 struct arc_emac_priv *priv = netdev_priv(ndev);
583 unsigned int i;
584
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];
588
589 if (rx_buff->skb) {
590 dma_unmap_single(&ndev->dev,
591 dma_unmap_addr(rx_buff, addr),
592 dma_unmap_len(rx_buff, len),
593 DMA_FROM_DEVICE);
594
595 /* return the sk_buff to system */
596 dev_kfree_skb_irq(rx_buff->skb);
597 }
598
599 rxbd->info = 0;
600 rxbd->data = 0;
601 rx_buff->skb = NULL;
602 }
603}
604
605/**
606 * arc_emac_stop - Close the network device.
607 * @ndev: Pointer to the network device.
608 *
609 * This function stops the Tx queue, disables interrupts and frees the IRQ for
610 * the EMAC device.
611 * It also disconnects the PHY device associated with the EMAC device.
612 */
613static int arc_emac_stop(struct net_device *ndev)
614{
615 struct arc_emac_priv *priv = netdev_priv(ndev);
616
617 napi_disable(&priv->napi);
618 netif_stop_queue(ndev);
619
620 phy_stop(ndev->phydev);
621
622 /* Disable interrupts */
623 arc_reg_clr(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
624
625 /* Disable EMAC */
626 arc_reg_clr(priv, R_CTRL, EN_MASK);
627
628 /* Return the sk_buff to system */
629 arc_free_tx_queue(ndev);
630 arc_free_rx_queue(ndev);
631
632 return 0;
633}
634
635/**
636 * arc_emac_stats - Get system network statistics.
637 * @ndev: Pointer to net_device structure.
638 *
639 * Returns the address of the device statistics structure.
640 * Statistics are updated in interrupt handler.
641 */
642static struct net_device_stats *arc_emac_stats(struct net_device *ndev)
643{
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;
648
649 rxerr = arc_reg_get(priv, R_RXERR);
650 miss = arc_reg_get(priv, R_MISS);
651
652 rxcrc = rxerr;
653 rxfram = rxerr >> 8;
654 rxoflow = rxerr >> 16;
655
656 stats->rx_errors += miss;
657 stats->rx_errors += rxcrc + rxfram + rxoflow;
658
659 stats->rx_over_errors += rxoflow;
660 stats->rx_frame_errors += rxfram;
661 stats->rx_crc_errors += rxcrc;
662 stats->rx_missed_errors += miss;
663
664 return stats;
665}
666
667/**
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.
671 *
672 * returns: NETDEV_TX_OK, on success
673 * NETDEV_TX_BUSY, if any of the descriptors are not free.
674 *
675 * This function is invoked from upper layers to initiate transmission.
676 */
677static int arc_emac_tx(struct sk_buff *skb, struct net_device *ndev)
678{
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;
683 dma_addr_t addr;
684
685 if (skb_padto(skb, ETH_ZLEN))
686 return NETDEV_TX_OK;
687
688 len = max_t(unsigned int, ETH_ZLEN, skb->len);
689
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;
694 }
695
696 addr = dma_map_single(&ndev->dev, (void *)skb->data, len,
697 DMA_TO_DEVICE);
698
699 if (unlikely(dma_mapping_error(&ndev->dev, addr))) {
700 stats->tx_dropped++;
701 stats->tx_errors++;
702 dev_kfree_skb_any(skb);
703 return NETDEV_TX_OK;
704 }
705 dma_unmap_addr_set(&priv->tx_buff[*txbd_curr], addr, addr);
706 dma_unmap_len_set(&priv->tx_buff[*txbd_curr], len, len);
707
708 priv->txbd[*txbd_curr].data = cpu_to_le32(addr);
709
710 /* Make sure pointer to data buffer is set */
711 wmb();
712
713 skb_tx_timestamp(skb);
714
715 *info = cpu_to_le32(FOR_EMAC | FIRST_OR_LAST_MASK | len);
716
717 /* Make sure info word is set */
718 wmb();
719
720 priv->tx_buff[*txbd_curr].skb = skb;
721
722 /* Increment index to point to the next BD */
723 *txbd_curr = (*txbd_curr + 1) % TX_BD_NUM;
724
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().
728 */
729 smp_mb();
730
731 if (!arc_emac_tx_avail(priv)) {
732 netif_stop_queue(ndev);
733 /* Refresh tx_dirty */
734 smp_mb();
735 if (arc_emac_tx_avail(priv))
736 netif_start_queue(ndev);
737 }
738
739 arc_reg_set(priv, R_STATUS, TXPL_MASK);
740
741 return NETDEV_TX_OK;
742}
743
744static void arc_emac_set_address_internal(struct net_device *ndev)
745{
746 struct arc_emac_priv *priv = netdev_priv(ndev);
747 unsigned int addr_low, addr_hi;
748
749 addr_low = le32_to_cpu(*(__le32 *)&ndev->dev_addr[0]);
750 addr_hi = le16_to_cpu(*(__le16 *)&ndev->dev_addr[4]);
751
752 arc_reg_set(priv, R_ADDRL, addr_low);
753 arc_reg_set(priv, R_ADDRH, addr_hi);
754}
755
756/**
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.
760 *
761 * This function copies the HW address from the sockaddr structure to the
762 * net_device structure and updates the address in HW.
763 *
764 * returns: -EBUSY if the net device is busy or 0 if the address is set
765 * successfully.
766 */
767static int arc_emac_set_address(struct net_device *ndev, void *p)
768{
769 struct sockaddr *addr = p;
770
771 if (netif_running(ndev))
772 return -EBUSY;
773
774 if (!is_valid_ether_addr(addr->sa_data))
775 return -EADDRNOTAVAIL;
776
777 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
778
779 arc_emac_set_address_internal(ndev);
780
781 return 0;
782}
783
784static int arc_emac_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
785{
786 if (!netif_running(dev))
787 return -EINVAL;
788
789 if (!dev->phydev)
790 return -ENODEV;
791
792 return phy_mii_ioctl(dev->phydev, rq, cmd);
793}
794
795
796/**
797 * arc_emac_restart - Restart EMAC
798 * @ndev: Pointer to net_device structure.
799 *
800 * This function do hardware reset of EMAC in order to restore
801 * network packets reception.
802 */
803static void arc_emac_restart(struct net_device *ndev)
804{
805 struct arc_emac_priv *priv = netdev_priv(ndev);
806 struct net_device_stats *stats = &ndev->stats;
807 int i;
808
809 if (net_ratelimit())
810 netdev_warn(ndev, "restarting stalled EMAC\n");
811
812 netif_stop_queue(ndev);
813
814 /* Disable interrupts */
815 arc_reg_clr(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
816
817 /* Disable EMAC */
818 arc_reg_clr(priv, R_CTRL, EN_MASK);
819
820 /* Return the sk_buff to system */
821 arc_free_tx_queue(ndev);
822
823 /* Clean Tx BD's */
824 priv->txbd_curr = 0;
825 priv->txbd_dirty = 0;
826 memset(priv->txbd, 0, TX_RING_SZ);
827
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);
831
832 if (!(info & FOR_EMAC)) {
833 stats->rx_errors++;
834 stats->rx_dropped++;
835 }
836 /* Return ownership to EMAC */
837 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
838 }
839 priv->last_rx_bd = 0;
840
841 /* Make sure info is visible to EMAC before enable */
842 wmb();
843
844 /* Enable interrupts */
845 arc_reg_set(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
846
847 /* Enable EMAC */
848 arc_reg_or(priv, R_CTRL, EN_MASK);
849
850 netif_start_queue(ndev);
851}
852
853static 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,
863#endif
864};
865
866int arc_emac_probe(struct net_device *ndev, int interface)
867{
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;
875 int err;
876
877 /* Get PHY from device tree */
878 phy_node = of_parse_phandle(dev->of_node, "phy", 0);
879 if (!phy_node) {
880 dev_err(dev, "failed to retrieve phy description from device tree\n");
881 return -ENODEV;
882 }
883
884 /* Get EMAC registers base address from device tree */
885 err = of_address_to_resource(dev->of_node, 0, &res_regs);
886 if (err) {
887 dev_err(dev, "failed to retrieve registers base from device tree\n");
888 err = -ENODEV;
889 goto out_put_node;
890 }
891
892 /* Get IRQ from device tree */
893 irq = irq_of_parse_and_map(dev->of_node, 0);
894 if (!irq) {
895 dev_err(dev, "failed to retrieve <irq> value from device tree\n");
896 err = -ENODEV;
897 goto out_put_node;
898 }
899
900 ndev->netdev_ops = &arc_emac_netdev_ops;
901 ndev->ethtool_ops = &arc_emac_ethtool_ops;
902 ndev->watchdog_timeo = TX_TIMEOUT;
903
904 priv = netdev_priv(ndev);
905 priv->dev = dev;
906
907 priv->regs = devm_ioremap_resource(dev, &res_regs);
908 if (IS_ERR(priv->regs)) {
909 err = PTR_ERR(priv->regs);
910 goto out_put_node;
911 }
912
913 dev_dbg(dev, "Registers base address is 0x%p\n", priv->regs);
914
915 if (priv->clk) {
916 err = clk_prepare_enable(priv->clk);
917 if (err) {
918 dev_err(dev, "failed to enable clock\n");
919 goto out_put_node;
920 }
921
922 clock_frequency = clk_get_rate(priv->clk);
923 } else {
924 /* Get CPU clock frequency from device tree */
925 if (of_property_read_u32(dev->of_node, "clock-frequency",
926 &clock_frequency)) {
927 dev_err(dev, "failed to retrieve <clock-frequency> from device tree\n");
928 err = -EINVAL;
929 goto out_put_node;
930 }
931 }
932
933 id = arc_reg_get(priv, R_ID);
934
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);
938 err = -ENODEV;
939 goto out_clken;
940 }
941 dev_info(dev, "ARC EMAC detected with id: 0x%x\n", id);
942
943 /* Set poll rate so that it polls every 1 ms */
944 arc_reg_set(priv, R_POLLRATE, clock_frequency / 1000000);
945
946 ndev->irq = irq;
947 dev_info(dev, "IRQ is %d\n", ndev->irq);
948
949 /* Register interrupt handler for device */
950 err = devm_request_irq(dev, ndev->irq, arc_emac_intr, 0,
951 ndev->name, ndev);
952 if (err) {
953 dev_err(dev, "could not allocate IRQ\n");
954 goto out_clken;
955 }
956
957 /* Get MAC address from device tree */
958 mac_addr = of_get_mac_address(dev->of_node);
959
960 if (!IS_ERR(mac_addr))
961 ether_addr_copy(ndev->dev_addr, mac_addr);
962 else
963 eth_hw_addr_random(ndev);
964
965 arc_emac_set_address_internal(ndev);
966 dev_info(dev, "MAC address is now %pM\n", ndev->dev_addr);
967
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);
971
972 if (!priv->rxbd) {
973 dev_err(dev, "failed to allocate data buffers\n");
974 err = -ENOMEM;
975 goto out_clken;
976 }
977
978 priv->txbd = priv->rxbd + RX_BD_NUM;
979
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);
983
984 err = arc_mdio_probe(priv);
985 if (err) {
986 dev_err(dev, "failed to probe MII bus\n");
987 goto out_clken;
988 }
989
990 phydev = of_phy_connect(ndev, phy_node, arc_emac_adjust_link, 0,
991 interface);
992 if (!phydev) {
993 dev_err(dev, "of_phy_connect() failed\n");
994 err = -ENODEV;
995 goto out_mdio;
996 }
997
998 dev_info(dev, "connected to %s phy with id 0x%x\n",
999 phydev->drv->name, phydev->phy_id);
1000
1001 netif_napi_add(ndev, &priv->napi, arc_emac_poll, ARC_EMAC_NAPI_WEIGHT);
1002
1003 err = register_netdev(ndev);
1004 if (err) {
1005 dev_err(dev, "failed to register network device\n");
1006 goto out_netif_api;
1007 }
1008
1009 of_node_put(phy_node);
1010 return 0;
1011
1012out_netif_api:
1013 netif_napi_del(&priv->napi);
1014 phy_disconnect(phydev);
1015out_mdio:
1016 arc_mdio_remove(priv);
1017out_clken:
1018 if (priv->clk)
1019 clk_disable_unprepare(priv->clk);
1020out_put_node:
1021 of_node_put(phy_node);
1022
1023 return err;
1024}
1025EXPORT_SYMBOL_GPL(arc_emac_probe);
1026
1027int arc_emac_remove(struct net_device *ndev)
1028{
1029 struct arc_emac_priv *priv = netdev_priv(ndev);
1030
1031 phy_disconnect(ndev->phydev);
1032 arc_mdio_remove(priv);
1033 unregister_netdev(ndev);
1034 netif_napi_del(&priv->napi);
1035
1036 if (!IS_ERR(priv->clk))
1037 clk_disable_unprepare(priv->clk);
1038
1039 return 0;
1040}
1041EXPORT_SYMBOL_GPL(arc_emac_remove);
1042
1043MODULE_AUTHOR("Alexey Brodkin <abrodkin@synopsys.com>");
1044MODULE_DESCRIPTION("ARC EMAC driver");
1045MODULE_LICENSE("GPL");
1/*
2 * Copyright (C) 2004-2013 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Driver for the ARC EMAC 10100 (hardware revision 5)
9 *
10 * Contributors:
11 * Amit Bhor
12 * Sameer Dhavale
13 * Vineet Gupta
14 */
15
16#include <linux/etherdevice.h>
17#include <linux/interrupt.h>
18#include <linux/io.h>
19#include <linux/module.h>
20#include <linux/of_address.h>
21#include <linux/of_irq.h>
22#include <linux/of_mdio.h>
23#include <linux/of_net.h>
24#include <linux/of_platform.h>
25
26#include "emac.h"
27
28#define DRV_NAME "arc_emac"
29#define DRV_VERSION "1.0"
30
31/**
32 * arc_emac_adjust_link - Adjust the PHY link duplex.
33 * @ndev: Pointer to the net_device structure.
34 *
35 * This function is called to change the duplex setting after auto negotiation
36 * is done by the PHY.
37 */
38static void arc_emac_adjust_link(struct net_device *ndev)
39{
40 struct arc_emac_priv *priv = netdev_priv(ndev);
41 struct phy_device *phy_dev = priv->phy_dev;
42 unsigned int reg, state_changed = 0;
43
44 if (priv->link != phy_dev->link) {
45 priv->link = phy_dev->link;
46 state_changed = 1;
47 }
48
49 if (priv->speed != phy_dev->speed) {
50 priv->speed = phy_dev->speed;
51 state_changed = 1;
52 }
53
54 if (priv->duplex != phy_dev->duplex) {
55 reg = arc_reg_get(priv, R_CTRL);
56
57 if (DUPLEX_FULL == phy_dev->duplex)
58 reg |= ENFL_MASK;
59 else
60 reg &= ~ENFL_MASK;
61
62 arc_reg_set(priv, R_CTRL, reg);
63 priv->duplex = phy_dev->duplex;
64 state_changed = 1;
65 }
66
67 if (state_changed)
68 phy_print_status(phy_dev);
69}
70
71/**
72 * arc_emac_get_settings - Get PHY settings.
73 * @ndev: Pointer to net_device structure.
74 * @cmd: Pointer to ethtool_cmd structure.
75 *
76 * This implements ethtool command for getting PHY settings. If PHY could
77 * not be found, the function returns -ENODEV. This function calls the
78 * relevant PHY ethtool API to get the PHY settings.
79 * Issue "ethtool ethX" under linux prompt to execute this function.
80 */
81static int arc_emac_get_settings(struct net_device *ndev,
82 struct ethtool_cmd *cmd)
83{
84 struct arc_emac_priv *priv = netdev_priv(ndev);
85
86 return phy_ethtool_gset(priv->phy_dev, cmd);
87}
88
89/**
90 * arc_emac_set_settings - Set PHY settings as passed in the argument.
91 * @ndev: Pointer to net_device structure.
92 * @cmd: Pointer to ethtool_cmd structure.
93 *
94 * This implements ethtool command for setting various PHY settings. If PHY
95 * could not be found, the function returns -ENODEV. This function calls the
96 * relevant PHY ethtool API to set the PHY.
97 * Issue e.g. "ethtool -s ethX speed 1000" under linux prompt to execute this
98 * function.
99 */
100static int arc_emac_set_settings(struct net_device *ndev,
101 struct ethtool_cmd *cmd)
102{
103 struct arc_emac_priv *priv = netdev_priv(ndev);
104
105 if (!capable(CAP_NET_ADMIN))
106 return -EPERM;
107
108 return phy_ethtool_sset(priv->phy_dev, cmd);
109}
110
111/**
112 * arc_emac_get_drvinfo - Get EMAC driver information.
113 * @ndev: Pointer to net_device structure.
114 * @info: Pointer to ethtool_drvinfo structure.
115 *
116 * This implements ethtool command for getting the driver information.
117 * Issue "ethtool -i ethX" under linux prompt to execute this function.
118 */
119static void arc_emac_get_drvinfo(struct net_device *ndev,
120 struct ethtool_drvinfo *info)
121{
122 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
123 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
124}
125
126static const struct ethtool_ops arc_emac_ethtool_ops = {
127 .get_settings = arc_emac_get_settings,
128 .set_settings = arc_emac_set_settings,
129 .get_drvinfo = arc_emac_get_drvinfo,
130 .get_link = ethtool_op_get_link,
131};
132
133#define FIRST_OR_LAST_MASK (FIRST_MASK | LAST_MASK)
134
135/**
136 * arc_emac_tx_clean - clears processed by EMAC Tx BDs.
137 * @ndev: Pointer to the network device.
138 */
139static void arc_emac_tx_clean(struct net_device *ndev)
140{
141 struct arc_emac_priv *priv = netdev_priv(ndev);
142 struct net_device_stats *stats = &priv->stats;
143 unsigned int i;
144
145 for (i = 0; i < TX_BD_NUM; i++) {
146 unsigned int *txbd_dirty = &priv->txbd_dirty;
147 struct arc_emac_bd *txbd = &priv->txbd[*txbd_dirty];
148 struct buffer_state *tx_buff = &priv->tx_buff[*txbd_dirty];
149 struct sk_buff *skb = tx_buff->skb;
150 unsigned int info = le32_to_cpu(txbd->info);
151
152 if ((info & FOR_EMAC) || !txbd->data)
153 break;
154
155 if (unlikely(info & (DROP | DEFR | LTCL | UFLO))) {
156 stats->tx_errors++;
157 stats->tx_dropped++;
158
159 if (info & DEFR)
160 stats->tx_carrier_errors++;
161
162 if (info & LTCL)
163 stats->collisions++;
164
165 if (info & UFLO)
166 stats->tx_fifo_errors++;
167 } else if (likely(info & FIRST_OR_LAST_MASK)) {
168 stats->tx_packets++;
169 stats->tx_bytes += skb->len;
170 }
171
172 dma_unmap_single(&ndev->dev, dma_unmap_addr(tx_buff, addr),
173 dma_unmap_len(tx_buff, len), DMA_TO_DEVICE);
174
175 /* return the sk_buff to system */
176 dev_kfree_skb_irq(skb);
177
178 txbd->data = 0;
179 txbd->info = 0;
180
181 *txbd_dirty = (*txbd_dirty + 1) % TX_BD_NUM;
182
183 if (netif_queue_stopped(ndev))
184 netif_wake_queue(ndev);
185 }
186}
187
188/**
189 * arc_emac_rx - processing of Rx packets.
190 * @ndev: Pointer to the network device.
191 * @budget: How many BDs to process on 1 call.
192 *
193 * returns: Number of processed BDs
194 *
195 * Iterate through Rx BDs and deliver received packages to upper layer.
196 */
197static int arc_emac_rx(struct net_device *ndev, int budget)
198{
199 struct arc_emac_priv *priv = netdev_priv(ndev);
200 unsigned int work_done;
201
202 for (work_done = 0; work_done < budget; work_done++) {
203 unsigned int *last_rx_bd = &priv->last_rx_bd;
204 struct net_device_stats *stats = &priv->stats;
205 struct buffer_state *rx_buff = &priv->rx_buff[*last_rx_bd];
206 struct arc_emac_bd *rxbd = &priv->rxbd[*last_rx_bd];
207 unsigned int pktlen, info = le32_to_cpu(rxbd->info);
208 struct sk_buff *skb;
209 dma_addr_t addr;
210
211 if (unlikely((info & OWN_MASK) == FOR_EMAC))
212 break;
213
214 /* Make a note that we saw a packet at this BD.
215 * So next time, driver starts from this + 1
216 */
217 *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
218
219 if (unlikely((info & FIRST_OR_LAST_MASK) !=
220 FIRST_OR_LAST_MASK)) {
221 /* We pre-allocate buffers of MTU size so incoming
222 * packets won't be split/chained.
223 */
224 if (net_ratelimit())
225 netdev_err(ndev, "incomplete packet received\n");
226
227 /* Return ownership to EMAC */
228 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
229 stats->rx_errors++;
230 stats->rx_length_errors++;
231 continue;
232 }
233
234 pktlen = info & LEN_MASK;
235 stats->rx_packets++;
236 stats->rx_bytes += pktlen;
237 skb = rx_buff->skb;
238 skb_put(skb, pktlen);
239 skb->dev = ndev;
240 skb->protocol = eth_type_trans(skb, ndev);
241
242 dma_unmap_single(&ndev->dev, dma_unmap_addr(rx_buff, addr),
243 dma_unmap_len(rx_buff, len), DMA_FROM_DEVICE);
244
245 /* Prepare the BD for next cycle */
246 rx_buff->skb = netdev_alloc_skb_ip_align(ndev,
247 EMAC_BUFFER_SIZE);
248 if (unlikely(!rx_buff->skb)) {
249 stats->rx_errors++;
250 /* Because receive_skb is below, increment rx_dropped */
251 stats->rx_dropped++;
252 continue;
253 }
254
255 /* receive_skb only if new skb was allocated to avoid holes */
256 netif_receive_skb(skb);
257
258 addr = dma_map_single(&ndev->dev, (void *)rx_buff->skb->data,
259 EMAC_BUFFER_SIZE, DMA_FROM_DEVICE);
260 if (dma_mapping_error(&ndev->dev, addr)) {
261 if (net_ratelimit())
262 netdev_err(ndev, "cannot dma map\n");
263 dev_kfree_skb(rx_buff->skb);
264 stats->rx_errors++;
265 continue;
266 }
267 dma_unmap_addr_set(rx_buff, addr, addr);
268 dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
269
270 rxbd->data = cpu_to_le32(addr);
271
272 /* Make sure pointer to data buffer is set */
273 wmb();
274
275 /* Return ownership to EMAC */
276 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
277 }
278
279 return work_done;
280}
281
282/**
283 * arc_emac_poll - NAPI poll handler.
284 * @napi: Pointer to napi_struct structure.
285 * @budget: How many BDs to process on 1 call.
286 *
287 * returns: Number of processed BDs
288 */
289static int arc_emac_poll(struct napi_struct *napi, int budget)
290{
291 struct net_device *ndev = napi->dev;
292 struct arc_emac_priv *priv = netdev_priv(ndev);
293 unsigned int work_done;
294
295 arc_emac_tx_clean(ndev);
296
297 work_done = arc_emac_rx(ndev, budget);
298 if (work_done < budget) {
299 napi_complete(napi);
300 arc_reg_or(priv, R_ENABLE, RXINT_MASK);
301 }
302
303 return work_done;
304}
305
306/**
307 * arc_emac_intr - Global interrupt handler for EMAC.
308 * @irq: irq number.
309 * @dev_instance: device instance.
310 *
311 * returns: IRQ_HANDLED for all cases.
312 *
313 * ARC EMAC has only 1 interrupt line, and depending on bits raised in
314 * STATUS register we may tell what is a reason for interrupt to fire.
315 */
316static irqreturn_t arc_emac_intr(int irq, void *dev_instance)
317{
318 struct net_device *ndev = dev_instance;
319 struct arc_emac_priv *priv = netdev_priv(ndev);
320 struct net_device_stats *stats = &priv->stats;
321 unsigned int status;
322
323 status = arc_reg_get(priv, R_STATUS);
324 status &= ~MDIO_MASK;
325
326 /* Reset all flags except "MDIO complete" */
327 arc_reg_set(priv, R_STATUS, status);
328
329 if (status & RXINT_MASK) {
330 if (likely(napi_schedule_prep(&priv->napi))) {
331 arc_reg_clr(priv, R_ENABLE, RXINT_MASK);
332 __napi_schedule(&priv->napi);
333 }
334 }
335
336 if (status & ERR_MASK) {
337 /* MSER/RXCR/RXFR/RXFL interrupt fires on corresponding
338 * 8-bit error counter overrun.
339 */
340
341 if (status & MSER_MASK) {
342 stats->rx_missed_errors += 0x100;
343 stats->rx_errors += 0x100;
344 }
345
346 if (status & RXCR_MASK) {
347 stats->rx_crc_errors += 0x100;
348 stats->rx_errors += 0x100;
349 }
350
351 if (status & RXFR_MASK) {
352 stats->rx_frame_errors += 0x100;
353 stats->rx_errors += 0x100;
354 }
355
356 if (status & RXFL_MASK) {
357 stats->rx_over_errors += 0x100;
358 stats->rx_errors += 0x100;
359 }
360 }
361
362 return IRQ_HANDLED;
363}
364
365/**
366 * arc_emac_open - Open the network device.
367 * @ndev: Pointer to the network device.
368 *
369 * returns: 0, on success or non-zero error value on failure.
370 *
371 * This function sets the MAC address, requests and enables an IRQ
372 * for the EMAC device and starts the Tx queue.
373 * It also connects to the phy device.
374 */
375static int arc_emac_open(struct net_device *ndev)
376{
377 struct arc_emac_priv *priv = netdev_priv(ndev);
378 struct phy_device *phy_dev = priv->phy_dev;
379 int i;
380
381 phy_dev->autoneg = AUTONEG_ENABLE;
382 phy_dev->speed = 0;
383 phy_dev->duplex = 0;
384 phy_dev->advertising &= phy_dev->supported;
385
386 priv->last_rx_bd = 0;
387
388 /* Allocate and set buffers for Rx BD's */
389 for (i = 0; i < RX_BD_NUM; i++) {
390 dma_addr_t addr;
391 unsigned int *last_rx_bd = &priv->last_rx_bd;
392 struct arc_emac_bd *rxbd = &priv->rxbd[*last_rx_bd];
393 struct buffer_state *rx_buff = &priv->rx_buff[*last_rx_bd];
394
395 rx_buff->skb = netdev_alloc_skb_ip_align(ndev,
396 EMAC_BUFFER_SIZE);
397 if (unlikely(!rx_buff->skb))
398 return -ENOMEM;
399
400 addr = dma_map_single(&ndev->dev, (void *)rx_buff->skb->data,
401 EMAC_BUFFER_SIZE, DMA_FROM_DEVICE);
402 if (dma_mapping_error(&ndev->dev, addr)) {
403 netdev_err(ndev, "cannot dma map\n");
404 dev_kfree_skb(rx_buff->skb);
405 return -ENOMEM;
406 }
407 dma_unmap_addr_set(rx_buff, addr, addr);
408 dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
409
410 rxbd->data = cpu_to_le32(addr);
411
412 /* Make sure pointer to data buffer is set */
413 wmb();
414
415 /* Return ownership to EMAC */
416 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
417
418 *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
419 }
420
421 /* Clean Tx BD's */
422 memset(priv->txbd, 0, TX_RING_SZ);
423
424 /* Initialize logical address filter */
425 arc_reg_set(priv, R_LAFL, 0);
426 arc_reg_set(priv, R_LAFH, 0);
427
428 /* Set BD ring pointers for device side */
429 arc_reg_set(priv, R_RX_RING, (unsigned int)priv->rxbd_dma);
430 arc_reg_set(priv, R_TX_RING, (unsigned int)priv->txbd_dma);
431
432 /* Enable interrupts */
433 arc_reg_set(priv, R_ENABLE, RXINT_MASK | ERR_MASK);
434
435 /* Set CONTROL */
436 arc_reg_set(priv, R_CTRL,
437 (RX_BD_NUM << 24) | /* RX BD table length */
438 (TX_BD_NUM << 16) | /* TX BD table length */
439 TXRN_MASK | RXRN_MASK);
440
441 napi_enable(&priv->napi);
442
443 /* Enable EMAC */
444 arc_reg_or(priv, R_CTRL, EN_MASK);
445
446 phy_start_aneg(priv->phy_dev);
447
448 netif_start_queue(ndev);
449
450 return 0;
451}
452
453/**
454 * arc_emac_stop - Close the network device.
455 * @ndev: Pointer to the network device.
456 *
457 * This function stops the Tx queue, disables interrupts and frees the IRQ for
458 * the EMAC device.
459 * It also disconnects the PHY device associated with the EMAC device.
460 */
461static int arc_emac_stop(struct net_device *ndev)
462{
463 struct arc_emac_priv *priv = netdev_priv(ndev);
464
465 napi_disable(&priv->napi);
466 netif_stop_queue(ndev);
467
468 /* Disable interrupts */
469 arc_reg_clr(priv, R_ENABLE, RXINT_MASK | ERR_MASK);
470
471 /* Disable EMAC */
472 arc_reg_clr(priv, R_CTRL, EN_MASK);
473
474 return 0;
475}
476
477/**
478 * arc_emac_stats - Get system network statistics.
479 * @ndev: Pointer to net_device structure.
480 *
481 * Returns the address of the device statistics structure.
482 * Statistics are updated in interrupt handler.
483 */
484static struct net_device_stats *arc_emac_stats(struct net_device *ndev)
485{
486 struct arc_emac_priv *priv = netdev_priv(ndev);
487 struct net_device_stats *stats = &priv->stats;
488 unsigned long miss, rxerr;
489 u8 rxcrc, rxfram, rxoflow;
490
491 rxerr = arc_reg_get(priv, R_RXERR);
492 miss = arc_reg_get(priv, R_MISS);
493
494 rxcrc = rxerr;
495 rxfram = rxerr >> 8;
496 rxoflow = rxerr >> 16;
497
498 stats->rx_errors += miss;
499 stats->rx_errors += rxcrc + rxfram + rxoflow;
500
501 stats->rx_over_errors += rxoflow;
502 stats->rx_frame_errors += rxfram;
503 stats->rx_crc_errors += rxcrc;
504 stats->rx_missed_errors += miss;
505
506 return stats;
507}
508
509/**
510 * arc_emac_tx - Starts the data transmission.
511 * @skb: sk_buff pointer that contains data to be Transmitted.
512 * @ndev: Pointer to net_device structure.
513 *
514 * returns: NETDEV_TX_OK, on success
515 * NETDEV_TX_BUSY, if any of the descriptors are not free.
516 *
517 * This function is invoked from upper layers to initiate transmission.
518 */
519static int arc_emac_tx(struct sk_buff *skb, struct net_device *ndev)
520{
521 struct arc_emac_priv *priv = netdev_priv(ndev);
522 unsigned int len, *txbd_curr = &priv->txbd_curr;
523 struct net_device_stats *stats = &priv->stats;
524 __le32 *info = &priv->txbd[*txbd_curr].info;
525 dma_addr_t addr;
526
527 if (skb_padto(skb, ETH_ZLEN))
528 return NETDEV_TX_OK;
529
530 len = max_t(unsigned int, ETH_ZLEN, skb->len);
531
532 /* EMAC still holds this buffer in its possession.
533 * CPU must not modify this buffer descriptor
534 */
535 if (unlikely((le32_to_cpu(*info) & OWN_MASK) == FOR_EMAC)) {
536 netif_stop_queue(ndev);
537 return NETDEV_TX_BUSY;
538 }
539
540 addr = dma_map_single(&ndev->dev, (void *)skb->data, len,
541 DMA_TO_DEVICE);
542
543 if (unlikely(dma_mapping_error(&ndev->dev, addr))) {
544 stats->tx_dropped++;
545 stats->tx_errors++;
546 dev_kfree_skb(skb);
547 return NETDEV_TX_OK;
548 }
549 dma_unmap_addr_set(&priv->tx_buff[*txbd_curr], addr, addr);
550 dma_unmap_len_set(&priv->tx_buff[*txbd_curr], len, len);
551
552 priv->tx_buff[*txbd_curr].skb = skb;
553 priv->txbd[*txbd_curr].data = cpu_to_le32(addr);
554
555 /* Make sure pointer to data buffer is set */
556 wmb();
557
558 skb_tx_timestamp(skb);
559
560 *info = cpu_to_le32(FOR_EMAC | FIRST_OR_LAST_MASK | len);
561
562 /* Increment index to point to the next BD */
563 *txbd_curr = (*txbd_curr + 1) % TX_BD_NUM;
564
565 /* Get "info" of the next BD */
566 info = &priv->txbd[*txbd_curr].info;
567
568 /* Check if if Tx BD ring is full - next BD is still owned by EMAC */
569 if (unlikely((le32_to_cpu(*info) & OWN_MASK) == FOR_EMAC))
570 netif_stop_queue(ndev);
571
572 arc_reg_set(priv, R_STATUS, TXPL_MASK);
573
574 return NETDEV_TX_OK;
575}
576
577static void arc_emac_set_address_internal(struct net_device *ndev)
578{
579 struct arc_emac_priv *priv = netdev_priv(ndev);
580 unsigned int addr_low, addr_hi;
581
582 addr_low = le32_to_cpu(*(__le32 *) &ndev->dev_addr[0]);
583 addr_hi = le16_to_cpu(*(__le16 *) &ndev->dev_addr[4]);
584
585 arc_reg_set(priv, R_ADDRL, addr_low);
586 arc_reg_set(priv, R_ADDRH, addr_hi);
587}
588
589/**
590 * arc_emac_set_address - Set the MAC address for this device.
591 * @ndev: Pointer to net_device structure.
592 * @p: 6 byte Address to be written as MAC address.
593 *
594 * This function copies the HW address from the sockaddr structure to the
595 * net_device structure and updates the address in HW.
596 *
597 * returns: -EBUSY if the net device is busy or 0 if the address is set
598 * successfully.
599 */
600static int arc_emac_set_address(struct net_device *ndev, void *p)
601{
602 struct sockaddr *addr = p;
603
604 if (netif_running(ndev))
605 return -EBUSY;
606
607 if (!is_valid_ether_addr(addr->sa_data))
608 return -EADDRNOTAVAIL;
609
610 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
611
612 arc_emac_set_address_internal(ndev);
613
614 return 0;
615}
616
617static const struct net_device_ops arc_emac_netdev_ops = {
618 .ndo_open = arc_emac_open,
619 .ndo_stop = arc_emac_stop,
620 .ndo_start_xmit = arc_emac_tx,
621 .ndo_set_mac_address = arc_emac_set_address,
622 .ndo_get_stats = arc_emac_stats,
623};
624
625static int arc_emac_probe(struct platform_device *pdev)
626{
627 struct resource res_regs;
628 struct device_node *phy_node;
629 struct arc_emac_priv *priv;
630 struct net_device *ndev;
631 const char *mac_addr;
632 unsigned int id, clock_frequency, irq;
633 int err;
634
635 if (!pdev->dev.of_node)
636 return -ENODEV;
637
638 /* Get PHY from device tree */
639 phy_node = of_parse_phandle(pdev->dev.of_node, "phy", 0);
640 if (!phy_node) {
641 dev_err(&pdev->dev, "failed to retrieve phy description from device tree\n");
642 return -ENODEV;
643 }
644
645 /* Get EMAC registers base address from device tree */
646 err = of_address_to_resource(pdev->dev.of_node, 0, &res_regs);
647 if (err) {
648 dev_err(&pdev->dev, "failed to retrieve registers base from device tree\n");
649 return -ENODEV;
650 }
651
652 /* Get IRQ from device tree */
653 irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
654 if (!irq) {
655 dev_err(&pdev->dev, "failed to retrieve <irq> value from device tree\n");
656 return -ENODEV;
657 }
658
659 ndev = alloc_etherdev(sizeof(struct arc_emac_priv));
660 if (!ndev)
661 return -ENOMEM;
662
663 platform_set_drvdata(pdev, ndev);
664 SET_NETDEV_DEV(ndev, &pdev->dev);
665
666 ndev->netdev_ops = &arc_emac_netdev_ops;
667 ndev->ethtool_ops = &arc_emac_ethtool_ops;
668 ndev->watchdog_timeo = TX_TIMEOUT;
669 /* FIXME :: no multicast support yet */
670 ndev->flags &= ~IFF_MULTICAST;
671
672 priv = netdev_priv(ndev);
673 priv->dev = &pdev->dev;
674 priv->ndev = ndev;
675
676 priv->regs = devm_ioremap_resource(&pdev->dev, &res_regs);
677 if (IS_ERR(priv->regs)) {
678 err = PTR_ERR(priv->regs);
679 goto out_netdev;
680 }
681 dev_dbg(&pdev->dev, "Registers base address is 0x%p\n", priv->regs);
682
683 priv->clk = of_clk_get(pdev->dev.of_node, 0);
684 if (IS_ERR(priv->clk)) {
685 /* Get CPU clock frequency from device tree */
686 if (of_property_read_u32(pdev->dev.of_node, "clock-frequency",
687 &clock_frequency)) {
688 dev_err(&pdev->dev, "failed to retrieve <clock-frequency> from device tree\n");
689 err = -EINVAL;
690 goto out_netdev;
691 }
692 } else {
693 err = clk_prepare_enable(priv->clk);
694 if (err) {
695 dev_err(&pdev->dev, "failed to enable clock\n");
696 goto out_clkget;
697 }
698
699 clock_frequency = clk_get_rate(priv->clk);
700 }
701
702 id = arc_reg_get(priv, R_ID);
703
704 /* Check for EMAC revision 5 or 7, magic number */
705 if (!(id == 0x0005fd02 || id == 0x0007fd02)) {
706 dev_err(&pdev->dev, "ARC EMAC not detected, id=0x%x\n", id);
707 err = -ENODEV;
708 goto out_clken;
709 }
710 dev_info(&pdev->dev, "ARC EMAC detected with id: 0x%x\n", id);
711
712 /* Set poll rate so that it polls every 1 ms */
713 arc_reg_set(priv, R_POLLRATE, clock_frequency / 1000000);
714
715 ndev->irq = irq;
716 dev_info(&pdev->dev, "IRQ is %d\n", ndev->irq);
717
718 /* Register interrupt handler for device */
719 err = devm_request_irq(&pdev->dev, ndev->irq, arc_emac_intr, 0,
720 ndev->name, ndev);
721 if (err) {
722 dev_err(&pdev->dev, "could not allocate IRQ\n");
723 goto out_clken;
724 }
725
726 /* Get MAC address from device tree */
727 mac_addr = of_get_mac_address(pdev->dev.of_node);
728
729 if (mac_addr)
730 memcpy(ndev->dev_addr, mac_addr, ETH_ALEN);
731 else
732 eth_hw_addr_random(ndev);
733
734 arc_emac_set_address_internal(ndev);
735 dev_info(&pdev->dev, "MAC address is now %pM\n", ndev->dev_addr);
736
737 /* Do 1 allocation instead of 2 separate ones for Rx and Tx BD rings */
738 priv->rxbd = dmam_alloc_coherent(&pdev->dev, RX_RING_SZ + TX_RING_SZ,
739 &priv->rxbd_dma, GFP_KERNEL);
740
741 if (!priv->rxbd) {
742 dev_err(&pdev->dev, "failed to allocate data buffers\n");
743 err = -ENOMEM;
744 goto out_clken;
745 }
746
747 priv->txbd = priv->rxbd + RX_BD_NUM;
748
749 priv->txbd_dma = priv->rxbd_dma + RX_RING_SZ;
750 dev_dbg(&pdev->dev, "EMAC Device addr: Rx Ring [0x%x], Tx Ring[%x]\n",
751 (unsigned int)priv->rxbd_dma, (unsigned int)priv->txbd_dma);
752
753 err = arc_mdio_probe(pdev, priv);
754 if (err) {
755 dev_err(&pdev->dev, "failed to probe MII bus\n");
756 goto out_clken;
757 }
758
759 priv->phy_dev = of_phy_connect(ndev, phy_node, arc_emac_adjust_link, 0,
760 PHY_INTERFACE_MODE_MII);
761 if (!priv->phy_dev) {
762 dev_err(&pdev->dev, "of_phy_connect() failed\n");
763 err = -ENODEV;
764 goto out_mdio;
765 }
766
767 dev_info(&pdev->dev, "connected to %s phy with id 0x%x\n",
768 priv->phy_dev->drv->name, priv->phy_dev->phy_id);
769
770 netif_napi_add(ndev, &priv->napi, arc_emac_poll, ARC_EMAC_NAPI_WEIGHT);
771
772 err = register_netdev(ndev);
773 if (err) {
774 dev_err(&pdev->dev, "failed to register network device\n");
775 goto out_netif_api;
776 }
777
778 return 0;
779
780out_netif_api:
781 netif_napi_del(&priv->napi);
782 phy_disconnect(priv->phy_dev);
783 priv->phy_dev = NULL;
784out_mdio:
785 arc_mdio_remove(priv);
786out_clken:
787 if (!IS_ERR(priv->clk))
788 clk_disable_unprepare(priv->clk);
789out_clkget:
790 if (!IS_ERR(priv->clk))
791 clk_put(priv->clk);
792out_netdev:
793 free_netdev(ndev);
794 return err;
795}
796
797static int arc_emac_remove(struct platform_device *pdev)
798{
799 struct net_device *ndev = platform_get_drvdata(pdev);
800 struct arc_emac_priv *priv = netdev_priv(ndev);
801
802 phy_disconnect(priv->phy_dev);
803 priv->phy_dev = NULL;
804 arc_mdio_remove(priv);
805 unregister_netdev(ndev);
806 netif_napi_del(&priv->napi);
807
808 if (!IS_ERR(priv->clk)) {
809 clk_disable_unprepare(priv->clk);
810 clk_put(priv->clk);
811 }
812
813 free_netdev(ndev);
814
815 return 0;
816}
817
818static const struct of_device_id arc_emac_dt_ids[] = {
819 { .compatible = "snps,arc-emac" },
820 { /* Sentinel */ }
821};
822MODULE_DEVICE_TABLE(of, arc_emac_dt_ids);
823
824static struct platform_driver arc_emac_driver = {
825 .probe = arc_emac_probe,
826 .remove = arc_emac_remove,
827 .driver = {
828 .name = DRV_NAME,
829 .owner = THIS_MODULE,
830 .of_match_table = arc_emac_dt_ids,
831 },
832};
833
834module_platform_driver(arc_emac_driver);
835
836MODULE_AUTHOR("Alexey Brodkin <abrodkin@synopsys.com>");
837MODULE_DESCRIPTION("ARC EMAC driver");
838MODULE_LICENSE("GPL");