mmc: core: Reset HPI enabled state during re-init and in case of errors
[linux/fpc-iii.git] / drivers / net / ethernet / faraday / ftgmac100.c
blob4d673225ed3e4dce78240dca87d55b4e87b45d19
1 /*
2 * Faraday FTGMAC100 Gigabit Ethernet
4 * (C) Copyright 2009-2011 Faraday Technology
5 * Po-Yu Chuang <ratbert@faraday-tech.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24 #include <linux/clk.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/etherdevice.h>
27 #include <linux/ethtool.h>
28 #include <linux/interrupt.h>
29 #include <linux/io.h>
30 #include <linux/module.h>
31 #include <linux/netdevice.h>
32 #include <linux/of.h>
33 #include <linux/phy.h>
34 #include <linux/platform_device.h>
35 #include <linux/property.h>
36 #include <linux/crc32.h>
37 #include <linux/if_vlan.h>
38 #include <linux/of_net.h>
39 #include <net/ip.h>
40 #include <net/ncsi.h>
42 #include "ftgmac100.h"
44 #define DRV_NAME "ftgmac100"
45 #define DRV_VERSION "0.7"
47 /* Arbitrary values, I am not sure the HW has limits */
48 #define MAX_RX_QUEUE_ENTRIES 1024
49 #define MAX_TX_QUEUE_ENTRIES 1024
50 #define MIN_RX_QUEUE_ENTRIES 32
51 #define MIN_TX_QUEUE_ENTRIES 32
53 /* Defaults */
54 #define DEF_RX_QUEUE_ENTRIES 128
55 #define DEF_TX_QUEUE_ENTRIES 128
57 #define MAX_PKT_SIZE 1536
58 #define RX_BUF_SIZE MAX_PKT_SIZE /* must be smaller than 0x3fff */
60 /* Min number of tx ring entries before stopping queue */
61 #define TX_THRESHOLD (MAX_SKB_FRAGS + 1)
63 #define FTGMAC_100MHZ 100000000
64 #define FTGMAC_25MHZ 25000000
66 struct ftgmac100 {
67 /* Registers */
68 struct resource *res;
69 void __iomem *base;
71 /* Rx ring */
72 unsigned int rx_q_entries;
73 struct ftgmac100_rxdes *rxdes;
74 dma_addr_t rxdes_dma;
75 struct sk_buff **rx_skbs;
76 unsigned int rx_pointer;
77 u32 rxdes0_edorr_mask;
79 /* Tx ring */
80 unsigned int tx_q_entries;
81 struct ftgmac100_txdes *txdes;
82 dma_addr_t txdes_dma;
83 struct sk_buff **tx_skbs;
84 unsigned int tx_clean_pointer;
85 unsigned int tx_pointer;
86 u32 txdes0_edotr_mask;
88 /* Used to signal the reset task of ring change request */
89 unsigned int new_rx_q_entries;
90 unsigned int new_tx_q_entries;
92 /* Scratch page to use when rx skb alloc fails */
93 void *rx_scratch;
94 dma_addr_t rx_scratch_dma;
96 /* Component structures */
97 struct net_device *netdev;
98 struct device *dev;
99 struct ncsi_dev *ndev;
100 struct napi_struct napi;
101 struct work_struct reset_task;
102 struct mii_bus *mii_bus;
103 struct clk *clk;
105 /* Link management */
106 int cur_speed;
107 int cur_duplex;
108 bool use_ncsi;
110 /* Multicast filter settings */
111 u32 maht0;
112 u32 maht1;
114 /* Flow control settings */
115 bool tx_pause;
116 bool rx_pause;
117 bool aneg_pause;
119 /* Misc */
120 bool need_mac_restart;
121 bool is_aspeed;
124 static int ftgmac100_reset_mac(struct ftgmac100 *priv, u32 maccr)
126 struct net_device *netdev = priv->netdev;
127 int i;
129 /* NOTE: reset clears all registers */
130 iowrite32(maccr, priv->base + FTGMAC100_OFFSET_MACCR);
131 iowrite32(maccr | FTGMAC100_MACCR_SW_RST,
132 priv->base + FTGMAC100_OFFSET_MACCR);
133 for (i = 0; i < 200; i++) {
134 unsigned int maccr;
136 maccr = ioread32(priv->base + FTGMAC100_OFFSET_MACCR);
137 if (!(maccr & FTGMAC100_MACCR_SW_RST))
138 return 0;
140 udelay(1);
143 netdev_err(netdev, "Hardware reset failed\n");
144 return -EIO;
147 static int ftgmac100_reset_and_config_mac(struct ftgmac100 *priv)
149 u32 maccr = 0;
151 switch (priv->cur_speed) {
152 case SPEED_10:
153 case 0: /* no link */
154 break;
156 case SPEED_100:
157 maccr |= FTGMAC100_MACCR_FAST_MODE;
158 break;
160 case SPEED_1000:
161 maccr |= FTGMAC100_MACCR_GIGA_MODE;
162 break;
163 default:
164 netdev_err(priv->netdev, "Unknown speed %d !\n",
165 priv->cur_speed);
166 break;
169 /* (Re)initialize the queue pointers */
170 priv->rx_pointer = 0;
171 priv->tx_clean_pointer = 0;
172 priv->tx_pointer = 0;
174 /* The doc says reset twice with 10us interval */
175 if (ftgmac100_reset_mac(priv, maccr))
176 return -EIO;
177 usleep_range(10, 1000);
178 return ftgmac100_reset_mac(priv, maccr);
181 static void ftgmac100_write_mac_addr(struct ftgmac100 *priv, const u8 *mac)
183 unsigned int maddr = mac[0] << 8 | mac[1];
184 unsigned int laddr = mac[2] << 24 | mac[3] << 16 | mac[4] << 8 | mac[5];
186 iowrite32(maddr, priv->base + FTGMAC100_OFFSET_MAC_MADR);
187 iowrite32(laddr, priv->base + FTGMAC100_OFFSET_MAC_LADR);
190 static void ftgmac100_initial_mac(struct ftgmac100 *priv)
192 u8 mac[ETH_ALEN];
193 unsigned int m;
194 unsigned int l;
195 void *addr;
197 addr = device_get_mac_address(priv->dev, mac, ETH_ALEN);
198 if (addr) {
199 ether_addr_copy(priv->netdev->dev_addr, mac);
200 dev_info(priv->dev, "Read MAC address %pM from device tree\n",
201 mac);
202 return;
205 m = ioread32(priv->base + FTGMAC100_OFFSET_MAC_MADR);
206 l = ioread32(priv->base + FTGMAC100_OFFSET_MAC_LADR);
208 mac[0] = (m >> 8) & 0xff;
209 mac[1] = m & 0xff;
210 mac[2] = (l >> 24) & 0xff;
211 mac[3] = (l >> 16) & 0xff;
212 mac[4] = (l >> 8) & 0xff;
213 mac[5] = l & 0xff;
215 if (is_valid_ether_addr(mac)) {
216 ether_addr_copy(priv->netdev->dev_addr, mac);
217 dev_info(priv->dev, "Read MAC address %pM from chip\n", mac);
218 } else {
219 eth_hw_addr_random(priv->netdev);
220 dev_info(priv->dev, "Generated random MAC address %pM\n",
221 priv->netdev->dev_addr);
225 static int ftgmac100_set_mac_addr(struct net_device *dev, void *p)
227 int ret;
229 ret = eth_prepare_mac_addr_change(dev, p);
230 if (ret < 0)
231 return ret;
233 eth_commit_mac_addr_change(dev, p);
234 ftgmac100_write_mac_addr(netdev_priv(dev), dev->dev_addr);
236 return 0;
239 static void ftgmac100_config_pause(struct ftgmac100 *priv)
241 u32 fcr = FTGMAC100_FCR_PAUSE_TIME(16);
243 /* Throttle tx queue when receiving pause frames */
244 if (priv->rx_pause)
245 fcr |= FTGMAC100_FCR_FC_EN;
247 /* Enables sending pause frames when the RX queue is past a
248 * certain threshold.
250 if (priv->tx_pause)
251 fcr |= FTGMAC100_FCR_FCTHR_EN;
253 iowrite32(fcr, priv->base + FTGMAC100_OFFSET_FCR);
256 static void ftgmac100_init_hw(struct ftgmac100 *priv)
258 u32 reg, rfifo_sz, tfifo_sz;
260 /* Clear stale interrupts */
261 reg = ioread32(priv->base + FTGMAC100_OFFSET_ISR);
262 iowrite32(reg, priv->base + FTGMAC100_OFFSET_ISR);
264 /* Setup RX ring buffer base */
265 iowrite32(priv->rxdes_dma, priv->base + FTGMAC100_OFFSET_RXR_BADR);
267 /* Setup TX ring buffer base */
268 iowrite32(priv->txdes_dma, priv->base + FTGMAC100_OFFSET_NPTXR_BADR);
270 /* Configure RX buffer size */
271 iowrite32(FTGMAC100_RBSR_SIZE(RX_BUF_SIZE),
272 priv->base + FTGMAC100_OFFSET_RBSR);
274 /* Set RX descriptor autopoll */
275 iowrite32(FTGMAC100_APTC_RXPOLL_CNT(1),
276 priv->base + FTGMAC100_OFFSET_APTC);
278 /* Write MAC address */
279 ftgmac100_write_mac_addr(priv, priv->netdev->dev_addr);
281 /* Write multicast filter */
282 iowrite32(priv->maht0, priv->base + FTGMAC100_OFFSET_MAHT0);
283 iowrite32(priv->maht1, priv->base + FTGMAC100_OFFSET_MAHT1);
285 /* Configure descriptor sizes and increase burst sizes according
286 * to values in Aspeed SDK. The FIFO arbitration is enabled and
287 * the thresholds set based on the recommended values in the
288 * AST2400 specification.
290 iowrite32(FTGMAC100_DBLAC_RXDES_SIZE(2) | /* 2*8 bytes RX descs */
291 FTGMAC100_DBLAC_TXDES_SIZE(2) | /* 2*8 bytes TX descs */
292 FTGMAC100_DBLAC_RXBURST_SIZE(3) | /* 512 bytes max RX bursts */
293 FTGMAC100_DBLAC_TXBURST_SIZE(3) | /* 512 bytes max TX bursts */
294 FTGMAC100_DBLAC_RX_THR_EN | /* Enable fifo threshold arb */
295 FTGMAC100_DBLAC_RXFIFO_HTHR(6) | /* 6/8 of FIFO high threshold */
296 FTGMAC100_DBLAC_RXFIFO_LTHR(2), /* 2/8 of FIFO low threshold */
297 priv->base + FTGMAC100_OFFSET_DBLAC);
299 /* Interrupt mitigation configured for 1 interrupt/packet. HW interrupt
300 * mitigation doesn't seem to provide any benefit with NAPI so leave
301 * it at that.
303 iowrite32(FTGMAC100_ITC_RXINT_THR(1) |
304 FTGMAC100_ITC_TXINT_THR(1),
305 priv->base + FTGMAC100_OFFSET_ITC);
307 /* Configure FIFO sizes in the TPAFCR register */
308 reg = ioread32(priv->base + FTGMAC100_OFFSET_FEAR);
309 rfifo_sz = reg & 0x00000007;
310 tfifo_sz = (reg >> 3) & 0x00000007;
311 reg = ioread32(priv->base + FTGMAC100_OFFSET_TPAFCR);
312 reg &= ~0x3f000000;
313 reg |= (tfifo_sz << 27);
314 reg |= (rfifo_sz << 24);
315 iowrite32(reg, priv->base + FTGMAC100_OFFSET_TPAFCR);
318 static void ftgmac100_start_hw(struct ftgmac100 *priv)
320 u32 maccr = ioread32(priv->base + FTGMAC100_OFFSET_MACCR);
322 /* Keep the original GMAC and FAST bits */
323 maccr &= (FTGMAC100_MACCR_FAST_MODE | FTGMAC100_MACCR_GIGA_MODE);
325 /* Add all the main enable bits */
326 maccr |= FTGMAC100_MACCR_TXDMA_EN |
327 FTGMAC100_MACCR_RXDMA_EN |
328 FTGMAC100_MACCR_TXMAC_EN |
329 FTGMAC100_MACCR_RXMAC_EN |
330 FTGMAC100_MACCR_CRC_APD |
331 FTGMAC100_MACCR_PHY_LINK_LEVEL |
332 FTGMAC100_MACCR_RX_RUNT |
333 FTGMAC100_MACCR_RX_BROADPKT;
335 /* Add other bits as needed */
336 if (priv->cur_duplex == DUPLEX_FULL)
337 maccr |= FTGMAC100_MACCR_FULLDUP;
338 if (priv->netdev->flags & IFF_PROMISC)
339 maccr |= FTGMAC100_MACCR_RX_ALL;
340 if (priv->netdev->flags & IFF_ALLMULTI)
341 maccr |= FTGMAC100_MACCR_RX_MULTIPKT;
342 else if (netdev_mc_count(priv->netdev))
343 maccr |= FTGMAC100_MACCR_HT_MULTI_EN;
345 /* Vlan filtering enabled */
346 if (priv->netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
347 maccr |= FTGMAC100_MACCR_RM_VLAN;
349 /* Hit the HW */
350 iowrite32(maccr, priv->base + FTGMAC100_OFFSET_MACCR);
353 static void ftgmac100_stop_hw(struct ftgmac100 *priv)
355 iowrite32(0, priv->base + FTGMAC100_OFFSET_MACCR);
358 static void ftgmac100_calc_mc_hash(struct ftgmac100 *priv)
360 struct netdev_hw_addr *ha;
362 priv->maht1 = 0;
363 priv->maht0 = 0;
364 netdev_for_each_mc_addr(ha, priv->netdev) {
365 u32 crc_val = ether_crc_le(ETH_ALEN, ha->addr);
367 crc_val = (~(crc_val >> 2)) & 0x3f;
368 if (crc_val >= 32)
369 priv->maht1 |= 1ul << (crc_val - 32);
370 else
371 priv->maht0 |= 1ul << (crc_val);
375 static void ftgmac100_set_rx_mode(struct net_device *netdev)
377 struct ftgmac100 *priv = netdev_priv(netdev);
379 /* Setup the hash filter */
380 ftgmac100_calc_mc_hash(priv);
382 /* Interface down ? that's all there is to do */
383 if (!netif_running(netdev))
384 return;
386 /* Update the HW */
387 iowrite32(priv->maht0, priv->base + FTGMAC100_OFFSET_MAHT0);
388 iowrite32(priv->maht1, priv->base + FTGMAC100_OFFSET_MAHT1);
390 /* Reconfigure MACCR */
391 ftgmac100_start_hw(priv);
394 static int ftgmac100_alloc_rx_buf(struct ftgmac100 *priv, unsigned int entry,
395 struct ftgmac100_rxdes *rxdes, gfp_t gfp)
397 struct net_device *netdev = priv->netdev;
398 struct sk_buff *skb;
399 dma_addr_t map;
400 int err = 0;
402 skb = netdev_alloc_skb_ip_align(netdev, RX_BUF_SIZE);
403 if (unlikely(!skb)) {
404 if (net_ratelimit())
405 netdev_warn(netdev, "failed to allocate rx skb\n");
406 err = -ENOMEM;
407 map = priv->rx_scratch_dma;
408 } else {
409 map = dma_map_single(priv->dev, skb->data, RX_BUF_SIZE,
410 DMA_FROM_DEVICE);
411 if (unlikely(dma_mapping_error(priv->dev, map))) {
412 if (net_ratelimit())
413 netdev_err(netdev, "failed to map rx page\n");
414 dev_kfree_skb_any(skb);
415 map = priv->rx_scratch_dma;
416 skb = NULL;
417 err = -ENOMEM;
421 /* Store skb */
422 priv->rx_skbs[entry] = skb;
424 /* Store DMA address into RX desc */
425 rxdes->rxdes3 = cpu_to_le32(map);
427 /* Ensure the above is ordered vs clearing the OWN bit */
428 dma_wmb();
430 /* Clean status (which resets own bit) */
431 if (entry == (priv->rx_q_entries - 1))
432 rxdes->rxdes0 = cpu_to_le32(priv->rxdes0_edorr_mask);
433 else
434 rxdes->rxdes0 = 0;
436 return err;
439 static unsigned int ftgmac100_next_rx_pointer(struct ftgmac100 *priv,
440 unsigned int pointer)
442 return (pointer + 1) & (priv->rx_q_entries - 1);
445 static void ftgmac100_rx_packet_error(struct ftgmac100 *priv, u32 status)
447 struct net_device *netdev = priv->netdev;
449 if (status & FTGMAC100_RXDES0_RX_ERR)
450 netdev->stats.rx_errors++;
452 if (status & FTGMAC100_RXDES0_CRC_ERR)
453 netdev->stats.rx_crc_errors++;
455 if (status & (FTGMAC100_RXDES0_FTL |
456 FTGMAC100_RXDES0_RUNT |
457 FTGMAC100_RXDES0_RX_ODD_NB))
458 netdev->stats.rx_length_errors++;
461 static bool ftgmac100_rx_packet(struct ftgmac100 *priv, int *processed)
463 struct net_device *netdev = priv->netdev;
464 struct ftgmac100_rxdes *rxdes;
465 struct sk_buff *skb;
466 unsigned int pointer, size;
467 u32 status, csum_vlan;
468 dma_addr_t map;
470 /* Grab next RX descriptor */
471 pointer = priv->rx_pointer;
472 rxdes = &priv->rxdes[pointer];
474 /* Grab descriptor status */
475 status = le32_to_cpu(rxdes->rxdes0);
477 /* Do we have a packet ? */
478 if (!(status & FTGMAC100_RXDES0_RXPKT_RDY))
479 return false;
481 /* Order subsequent reads with the test for the ready bit */
482 dma_rmb();
484 /* We don't cope with fragmented RX packets */
485 if (unlikely(!(status & FTGMAC100_RXDES0_FRS) ||
486 !(status & FTGMAC100_RXDES0_LRS)))
487 goto drop;
489 /* Grab received size and csum vlan field in the descriptor */
490 size = status & FTGMAC100_RXDES0_VDBC;
491 csum_vlan = le32_to_cpu(rxdes->rxdes1);
493 /* Any error (other than csum offload) flagged ? */
494 if (unlikely(status & RXDES0_ANY_ERROR)) {
495 /* Correct for incorrect flagging of runt packets
496 * with vlan tags... Just accept a runt packet that
497 * has been flagged as vlan and whose size is at
498 * least 60 bytes.
500 if ((status & FTGMAC100_RXDES0_RUNT) &&
501 (csum_vlan & FTGMAC100_RXDES1_VLANTAG_AVAIL) &&
502 (size >= 60))
503 status &= ~FTGMAC100_RXDES0_RUNT;
505 /* Any error still in there ? */
506 if (status & RXDES0_ANY_ERROR) {
507 ftgmac100_rx_packet_error(priv, status);
508 goto drop;
512 /* If the packet had no skb (failed to allocate earlier)
513 * then try to allocate one and skip
515 skb = priv->rx_skbs[pointer];
516 if (!unlikely(skb)) {
517 ftgmac100_alloc_rx_buf(priv, pointer, rxdes, GFP_ATOMIC);
518 goto drop;
521 if (unlikely(status & FTGMAC100_RXDES0_MULTICAST))
522 netdev->stats.multicast++;
524 /* If the HW found checksum errors, bounce it to software.
526 * If we didn't, we need to see if the packet was recognized
527 * by HW as one of the supported checksummed protocols before
528 * we accept the HW test results.
530 if (netdev->features & NETIF_F_RXCSUM) {
531 u32 err_bits = FTGMAC100_RXDES1_TCP_CHKSUM_ERR |
532 FTGMAC100_RXDES1_UDP_CHKSUM_ERR |
533 FTGMAC100_RXDES1_IP_CHKSUM_ERR;
534 if ((csum_vlan & err_bits) ||
535 !(csum_vlan & FTGMAC100_RXDES1_PROT_MASK))
536 skb->ip_summed = CHECKSUM_NONE;
537 else
538 skb->ip_summed = CHECKSUM_UNNECESSARY;
541 /* Transfer received size to skb */
542 skb_put(skb, size);
544 /* Extract vlan tag */
545 if ((netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
546 (csum_vlan & FTGMAC100_RXDES1_VLANTAG_AVAIL))
547 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
548 csum_vlan & 0xffff);
550 /* Tear down DMA mapping, do necessary cache management */
551 map = le32_to_cpu(rxdes->rxdes3);
553 #if defined(CONFIG_ARM) && !defined(CONFIG_ARM_DMA_USE_IOMMU)
554 /* When we don't have an iommu, we can save cycles by not
555 * invalidating the cache for the part of the packet that
556 * wasn't received.
558 dma_unmap_single(priv->dev, map, size, DMA_FROM_DEVICE);
559 #else
560 dma_unmap_single(priv->dev, map, RX_BUF_SIZE, DMA_FROM_DEVICE);
561 #endif
564 /* Resplenish rx ring */
565 ftgmac100_alloc_rx_buf(priv, pointer, rxdes, GFP_ATOMIC);
566 priv->rx_pointer = ftgmac100_next_rx_pointer(priv, pointer);
568 skb->protocol = eth_type_trans(skb, netdev);
570 netdev->stats.rx_packets++;
571 netdev->stats.rx_bytes += size;
573 /* push packet to protocol stack */
574 if (skb->ip_summed == CHECKSUM_NONE)
575 netif_receive_skb(skb);
576 else
577 napi_gro_receive(&priv->napi, skb);
579 (*processed)++;
580 return true;
582 drop:
583 /* Clean rxdes0 (which resets own bit) */
584 rxdes->rxdes0 = cpu_to_le32(status & priv->rxdes0_edorr_mask);
585 priv->rx_pointer = ftgmac100_next_rx_pointer(priv, pointer);
586 netdev->stats.rx_dropped++;
587 return true;
590 static u32 ftgmac100_base_tx_ctlstat(struct ftgmac100 *priv,
591 unsigned int index)
593 if (index == (priv->tx_q_entries - 1))
594 return priv->txdes0_edotr_mask;
595 else
596 return 0;
599 static unsigned int ftgmac100_next_tx_pointer(struct ftgmac100 *priv,
600 unsigned int pointer)
602 return (pointer + 1) & (priv->tx_q_entries - 1);
605 static u32 ftgmac100_tx_buf_avail(struct ftgmac100 *priv)
607 /* Returns the number of available slots in the TX queue
609 * This always leaves one free slot so we don't have to
610 * worry about empty vs. full, and this simplifies the
611 * test for ftgmac100_tx_buf_cleanable() below
613 return (priv->tx_clean_pointer - priv->tx_pointer - 1) &
614 (priv->tx_q_entries - 1);
617 static bool ftgmac100_tx_buf_cleanable(struct ftgmac100 *priv)
619 return priv->tx_pointer != priv->tx_clean_pointer;
622 static void ftgmac100_free_tx_packet(struct ftgmac100 *priv,
623 unsigned int pointer,
624 struct sk_buff *skb,
625 struct ftgmac100_txdes *txdes,
626 u32 ctl_stat)
628 dma_addr_t map = le32_to_cpu(txdes->txdes3);
629 size_t len;
631 if (ctl_stat & FTGMAC100_TXDES0_FTS) {
632 len = skb_headlen(skb);
633 dma_unmap_single(priv->dev, map, len, DMA_TO_DEVICE);
634 } else {
635 len = FTGMAC100_TXDES0_TXBUF_SIZE(ctl_stat);
636 dma_unmap_page(priv->dev, map, len, DMA_TO_DEVICE);
639 /* Free SKB on last segment */
640 if (ctl_stat & FTGMAC100_TXDES0_LTS)
641 dev_kfree_skb(skb);
642 priv->tx_skbs[pointer] = NULL;
645 static bool ftgmac100_tx_complete_packet(struct ftgmac100 *priv)
647 struct net_device *netdev = priv->netdev;
648 struct ftgmac100_txdes *txdes;
649 struct sk_buff *skb;
650 unsigned int pointer;
651 u32 ctl_stat;
653 pointer = priv->tx_clean_pointer;
654 txdes = &priv->txdes[pointer];
656 ctl_stat = le32_to_cpu(txdes->txdes0);
657 if (ctl_stat & FTGMAC100_TXDES0_TXDMA_OWN)
658 return false;
660 skb = priv->tx_skbs[pointer];
661 netdev->stats.tx_packets++;
662 netdev->stats.tx_bytes += skb->len;
663 ftgmac100_free_tx_packet(priv, pointer, skb, txdes, ctl_stat);
664 txdes->txdes0 = cpu_to_le32(ctl_stat & priv->txdes0_edotr_mask);
666 priv->tx_clean_pointer = ftgmac100_next_tx_pointer(priv, pointer);
668 return true;
671 static void ftgmac100_tx_complete(struct ftgmac100 *priv)
673 struct net_device *netdev = priv->netdev;
675 /* Process all completed packets */
676 while (ftgmac100_tx_buf_cleanable(priv) &&
677 ftgmac100_tx_complete_packet(priv))
680 /* Restart queue if needed */
681 smp_mb();
682 if (unlikely(netif_queue_stopped(netdev) &&
683 ftgmac100_tx_buf_avail(priv) >= TX_THRESHOLD)) {
684 struct netdev_queue *txq;
686 txq = netdev_get_tx_queue(netdev, 0);
687 __netif_tx_lock(txq, smp_processor_id());
688 if (netif_queue_stopped(netdev) &&
689 ftgmac100_tx_buf_avail(priv) >= TX_THRESHOLD)
690 netif_wake_queue(netdev);
691 __netif_tx_unlock(txq);
695 static bool ftgmac100_prep_tx_csum(struct sk_buff *skb, u32 *csum_vlan)
697 if (skb->protocol == cpu_to_be16(ETH_P_IP)) {
698 u8 ip_proto = ip_hdr(skb)->protocol;
700 *csum_vlan |= FTGMAC100_TXDES1_IP_CHKSUM;
701 switch(ip_proto) {
702 case IPPROTO_TCP:
703 *csum_vlan |= FTGMAC100_TXDES1_TCP_CHKSUM;
704 return true;
705 case IPPROTO_UDP:
706 *csum_vlan |= FTGMAC100_TXDES1_UDP_CHKSUM;
707 return true;
708 case IPPROTO_IP:
709 return true;
712 return skb_checksum_help(skb) == 0;
715 static netdev_tx_t ftgmac100_hard_start_xmit(struct sk_buff *skb,
716 struct net_device *netdev)
718 struct ftgmac100 *priv = netdev_priv(netdev);
719 struct ftgmac100_txdes *txdes, *first;
720 unsigned int pointer, nfrags, len, i, j;
721 u32 f_ctl_stat, ctl_stat, csum_vlan;
722 dma_addr_t map;
724 /* The HW doesn't pad small frames */
725 if (eth_skb_pad(skb)) {
726 netdev->stats.tx_dropped++;
727 return NETDEV_TX_OK;
730 /* Reject oversize packets */
731 if (unlikely(skb->len > MAX_PKT_SIZE)) {
732 if (net_ratelimit())
733 netdev_dbg(netdev, "tx packet too big\n");
734 goto drop;
737 /* Do we have a limit on #fragments ? I yet have to get a reply
738 * from Aspeed. If there's one I haven't hit it.
740 nfrags = skb_shinfo(skb)->nr_frags;
742 /* Get header len */
743 len = skb_headlen(skb);
745 /* Map the packet head */
746 map = dma_map_single(priv->dev, skb->data, len, DMA_TO_DEVICE);
747 if (dma_mapping_error(priv->dev, map)) {
748 if (net_ratelimit())
749 netdev_err(netdev, "map tx packet head failed\n");
750 goto drop;
753 /* Grab the next free tx descriptor */
754 pointer = priv->tx_pointer;
755 txdes = first = &priv->txdes[pointer];
757 /* Setup it up with the packet head. Don't write the head to the
758 * ring just yet
760 priv->tx_skbs[pointer] = skb;
761 f_ctl_stat = ftgmac100_base_tx_ctlstat(priv, pointer);
762 f_ctl_stat |= FTGMAC100_TXDES0_TXDMA_OWN;
763 f_ctl_stat |= FTGMAC100_TXDES0_TXBUF_SIZE(len);
764 f_ctl_stat |= FTGMAC100_TXDES0_FTS;
765 if (nfrags == 0)
766 f_ctl_stat |= FTGMAC100_TXDES0_LTS;
767 txdes->txdes3 = cpu_to_le32(map);
769 /* Setup HW checksumming */
770 csum_vlan = 0;
771 if (skb->ip_summed == CHECKSUM_PARTIAL &&
772 !ftgmac100_prep_tx_csum(skb, &csum_vlan))
773 goto drop;
775 /* Add VLAN tag */
776 if (skb_vlan_tag_present(skb)) {
777 csum_vlan |= FTGMAC100_TXDES1_INS_VLANTAG;
778 csum_vlan |= skb_vlan_tag_get(skb) & 0xffff;
781 txdes->txdes1 = cpu_to_le32(csum_vlan);
783 /* Next descriptor */
784 pointer = ftgmac100_next_tx_pointer(priv, pointer);
786 /* Add the fragments */
787 for (i = 0; i < nfrags; i++) {
788 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
790 len = frag->size;
792 /* Map it */
793 map = skb_frag_dma_map(priv->dev, frag, 0, len,
794 DMA_TO_DEVICE);
795 if (dma_mapping_error(priv->dev, map))
796 goto dma_err;
798 /* Setup descriptor */
799 priv->tx_skbs[pointer] = skb;
800 txdes = &priv->txdes[pointer];
801 ctl_stat = ftgmac100_base_tx_ctlstat(priv, pointer);
802 ctl_stat |= FTGMAC100_TXDES0_TXDMA_OWN;
803 ctl_stat |= FTGMAC100_TXDES0_TXBUF_SIZE(len);
804 if (i == (nfrags - 1))
805 ctl_stat |= FTGMAC100_TXDES0_LTS;
806 txdes->txdes0 = cpu_to_le32(ctl_stat);
807 txdes->txdes1 = 0;
808 txdes->txdes3 = cpu_to_le32(map);
810 /* Next one */
811 pointer = ftgmac100_next_tx_pointer(priv, pointer);
814 /* Order the previous packet and descriptor udpates
815 * before setting the OWN bit on the first descriptor.
817 dma_wmb();
818 first->txdes0 = cpu_to_le32(f_ctl_stat);
820 /* Update next TX pointer */
821 priv->tx_pointer = pointer;
823 /* If there isn't enough room for all the fragments of a new packet
824 * in the TX ring, stop the queue. The sequence below is race free
825 * vs. a concurrent restart in ftgmac100_poll()
827 if (unlikely(ftgmac100_tx_buf_avail(priv) < TX_THRESHOLD)) {
828 netif_stop_queue(netdev);
829 /* Order the queue stop with the test below */
830 smp_mb();
831 if (ftgmac100_tx_buf_avail(priv) >= TX_THRESHOLD)
832 netif_wake_queue(netdev);
835 /* Poke transmitter to read the updated TX descriptors */
836 iowrite32(1, priv->base + FTGMAC100_OFFSET_NPTXPD);
838 return NETDEV_TX_OK;
840 dma_err:
841 if (net_ratelimit())
842 netdev_err(netdev, "map tx fragment failed\n");
844 /* Free head */
845 pointer = priv->tx_pointer;
846 ftgmac100_free_tx_packet(priv, pointer, skb, first, f_ctl_stat);
847 first->txdes0 = cpu_to_le32(f_ctl_stat & priv->txdes0_edotr_mask);
849 /* Then all fragments */
850 for (j = 0; j < i; j++) {
851 pointer = ftgmac100_next_tx_pointer(priv, pointer);
852 txdes = &priv->txdes[pointer];
853 ctl_stat = le32_to_cpu(txdes->txdes0);
854 ftgmac100_free_tx_packet(priv, pointer, skb, txdes, ctl_stat);
855 txdes->txdes0 = cpu_to_le32(ctl_stat & priv->txdes0_edotr_mask);
858 /* This cannot be reached if we successfully mapped the
859 * last fragment, so we know ftgmac100_free_tx_packet()
860 * hasn't freed the skb yet.
862 drop:
863 /* Drop the packet */
864 dev_kfree_skb_any(skb);
865 netdev->stats.tx_dropped++;
867 return NETDEV_TX_OK;
870 static void ftgmac100_free_buffers(struct ftgmac100 *priv)
872 int i;
874 /* Free all RX buffers */
875 for (i = 0; i < priv->rx_q_entries; i++) {
876 struct ftgmac100_rxdes *rxdes = &priv->rxdes[i];
877 struct sk_buff *skb = priv->rx_skbs[i];
878 dma_addr_t map = le32_to_cpu(rxdes->rxdes3);
880 if (!skb)
881 continue;
883 priv->rx_skbs[i] = NULL;
884 dma_unmap_single(priv->dev, map, RX_BUF_SIZE, DMA_FROM_DEVICE);
885 dev_kfree_skb_any(skb);
888 /* Free all TX buffers */
889 for (i = 0; i < priv->tx_q_entries; i++) {
890 struct ftgmac100_txdes *txdes = &priv->txdes[i];
891 struct sk_buff *skb = priv->tx_skbs[i];
893 if (!skb)
894 continue;
895 ftgmac100_free_tx_packet(priv, i, skb, txdes,
896 le32_to_cpu(txdes->txdes0));
900 static void ftgmac100_free_rings(struct ftgmac100 *priv)
902 /* Free skb arrays */
903 kfree(priv->rx_skbs);
904 kfree(priv->tx_skbs);
906 /* Free descriptors */
907 if (priv->rxdes)
908 dma_free_coherent(priv->dev, MAX_RX_QUEUE_ENTRIES *
909 sizeof(struct ftgmac100_rxdes),
910 priv->rxdes, priv->rxdes_dma);
911 priv->rxdes = NULL;
913 if (priv->txdes)
914 dma_free_coherent(priv->dev, MAX_TX_QUEUE_ENTRIES *
915 sizeof(struct ftgmac100_txdes),
916 priv->txdes, priv->txdes_dma);
917 priv->txdes = NULL;
919 /* Free scratch packet buffer */
920 if (priv->rx_scratch)
921 dma_free_coherent(priv->dev, RX_BUF_SIZE,
922 priv->rx_scratch, priv->rx_scratch_dma);
925 static int ftgmac100_alloc_rings(struct ftgmac100 *priv)
927 /* Allocate skb arrays */
928 priv->rx_skbs = kcalloc(MAX_RX_QUEUE_ENTRIES, sizeof(void *),
929 GFP_KERNEL);
930 if (!priv->rx_skbs)
931 return -ENOMEM;
932 priv->tx_skbs = kcalloc(MAX_TX_QUEUE_ENTRIES, sizeof(void *),
933 GFP_KERNEL);
934 if (!priv->tx_skbs)
935 return -ENOMEM;
937 /* Allocate descriptors */
938 priv->rxdes = dma_zalloc_coherent(priv->dev,
939 MAX_RX_QUEUE_ENTRIES *
940 sizeof(struct ftgmac100_rxdes),
941 &priv->rxdes_dma, GFP_KERNEL);
942 if (!priv->rxdes)
943 return -ENOMEM;
944 priv->txdes = dma_zalloc_coherent(priv->dev,
945 MAX_TX_QUEUE_ENTRIES *
946 sizeof(struct ftgmac100_txdes),
947 &priv->txdes_dma, GFP_KERNEL);
948 if (!priv->txdes)
949 return -ENOMEM;
951 /* Allocate scratch packet buffer */
952 priv->rx_scratch = dma_alloc_coherent(priv->dev,
953 RX_BUF_SIZE,
954 &priv->rx_scratch_dma,
955 GFP_KERNEL);
956 if (!priv->rx_scratch)
957 return -ENOMEM;
959 return 0;
962 static void ftgmac100_init_rings(struct ftgmac100 *priv)
964 struct ftgmac100_rxdes *rxdes = NULL;
965 struct ftgmac100_txdes *txdes = NULL;
966 int i;
968 /* Update entries counts */
969 priv->rx_q_entries = priv->new_rx_q_entries;
970 priv->tx_q_entries = priv->new_tx_q_entries;
972 if (WARN_ON(priv->rx_q_entries < MIN_RX_QUEUE_ENTRIES))
973 return;
975 /* Initialize RX ring */
976 for (i = 0; i < priv->rx_q_entries; i++) {
977 rxdes = &priv->rxdes[i];
978 rxdes->rxdes0 = 0;
979 rxdes->rxdes3 = cpu_to_le32(priv->rx_scratch_dma);
981 /* Mark the end of the ring */
982 rxdes->rxdes0 |= cpu_to_le32(priv->rxdes0_edorr_mask);
984 if (WARN_ON(priv->tx_q_entries < MIN_RX_QUEUE_ENTRIES))
985 return;
987 /* Initialize TX ring */
988 for (i = 0; i < priv->tx_q_entries; i++) {
989 txdes = &priv->txdes[i];
990 txdes->txdes0 = 0;
992 txdes->txdes0 |= cpu_to_le32(priv->txdes0_edotr_mask);
995 static int ftgmac100_alloc_rx_buffers(struct ftgmac100 *priv)
997 int i;
999 for (i = 0; i < priv->rx_q_entries; i++) {
1000 struct ftgmac100_rxdes *rxdes = &priv->rxdes[i];
1002 if (ftgmac100_alloc_rx_buf(priv, i, rxdes, GFP_KERNEL))
1003 return -ENOMEM;
1005 return 0;
1008 static void ftgmac100_adjust_link(struct net_device *netdev)
1010 struct ftgmac100 *priv = netdev_priv(netdev);
1011 struct phy_device *phydev = netdev->phydev;
1012 bool tx_pause, rx_pause;
1013 int new_speed;
1015 /* We store "no link" as speed 0 */
1016 if (!phydev->link)
1017 new_speed = 0;
1018 else
1019 new_speed = phydev->speed;
1021 /* Grab pause settings from PHY if configured to do so */
1022 if (priv->aneg_pause) {
1023 rx_pause = tx_pause = phydev->pause;
1024 if (phydev->asym_pause)
1025 tx_pause = !rx_pause;
1026 } else {
1027 rx_pause = priv->rx_pause;
1028 tx_pause = priv->tx_pause;
1031 /* Link hasn't changed, do nothing */
1032 if (phydev->speed == priv->cur_speed &&
1033 phydev->duplex == priv->cur_duplex &&
1034 rx_pause == priv->rx_pause &&
1035 tx_pause == priv->tx_pause)
1036 return;
1038 /* Print status if we have a link or we had one and just lost it,
1039 * don't print otherwise.
1041 if (new_speed || priv->cur_speed)
1042 phy_print_status(phydev);
1044 priv->cur_speed = new_speed;
1045 priv->cur_duplex = phydev->duplex;
1046 priv->rx_pause = rx_pause;
1047 priv->tx_pause = tx_pause;
1049 /* Link is down, do nothing else */
1050 if (!new_speed)
1051 return;
1053 /* Disable all interrupts */
1054 iowrite32(0, priv->base + FTGMAC100_OFFSET_IER);
1056 /* Reset the adapter asynchronously */
1057 schedule_work(&priv->reset_task);
1060 static int ftgmac100_mii_probe(struct ftgmac100 *priv, phy_interface_t intf)
1062 struct net_device *netdev = priv->netdev;
1063 struct phy_device *phydev;
1065 phydev = phy_find_first(priv->mii_bus);
1066 if (!phydev) {
1067 netdev_info(netdev, "%s: no PHY found\n", netdev->name);
1068 return -ENODEV;
1071 phydev = phy_connect(netdev, phydev_name(phydev),
1072 &ftgmac100_adjust_link, intf);
1074 if (IS_ERR(phydev)) {
1075 netdev_err(netdev, "%s: Could not attach to PHY\n", netdev->name);
1076 return PTR_ERR(phydev);
1079 /* Indicate that we support PAUSE frames (see comment in
1080 * Documentation/networking/phy.txt)
1082 phy_support_asym_pause(phydev);
1084 /* Display what we found */
1085 phy_attached_info(phydev);
1087 return 0;
1090 static int ftgmac100_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
1092 struct net_device *netdev = bus->priv;
1093 struct ftgmac100 *priv = netdev_priv(netdev);
1094 unsigned int phycr;
1095 int i;
1097 phycr = ioread32(priv->base + FTGMAC100_OFFSET_PHYCR);
1099 /* preserve MDC cycle threshold */
1100 phycr &= FTGMAC100_PHYCR_MDC_CYCTHR_MASK;
1102 phycr |= FTGMAC100_PHYCR_PHYAD(phy_addr) |
1103 FTGMAC100_PHYCR_REGAD(regnum) |
1104 FTGMAC100_PHYCR_MIIRD;
1106 iowrite32(phycr, priv->base + FTGMAC100_OFFSET_PHYCR);
1108 for (i = 0; i < 10; i++) {
1109 phycr = ioread32(priv->base + FTGMAC100_OFFSET_PHYCR);
1111 if ((phycr & FTGMAC100_PHYCR_MIIRD) == 0) {
1112 int data;
1114 data = ioread32(priv->base + FTGMAC100_OFFSET_PHYDATA);
1115 return FTGMAC100_PHYDATA_MIIRDATA(data);
1118 udelay(100);
1121 netdev_err(netdev, "mdio read timed out\n");
1122 return -EIO;
1125 static int ftgmac100_mdiobus_write(struct mii_bus *bus, int phy_addr,
1126 int regnum, u16 value)
1128 struct net_device *netdev = bus->priv;
1129 struct ftgmac100 *priv = netdev_priv(netdev);
1130 unsigned int phycr;
1131 int data;
1132 int i;
1134 phycr = ioread32(priv->base + FTGMAC100_OFFSET_PHYCR);
1136 /* preserve MDC cycle threshold */
1137 phycr &= FTGMAC100_PHYCR_MDC_CYCTHR_MASK;
1139 phycr |= FTGMAC100_PHYCR_PHYAD(phy_addr) |
1140 FTGMAC100_PHYCR_REGAD(regnum) |
1141 FTGMAC100_PHYCR_MIIWR;
1143 data = FTGMAC100_PHYDATA_MIIWDATA(value);
1145 iowrite32(data, priv->base + FTGMAC100_OFFSET_PHYDATA);
1146 iowrite32(phycr, priv->base + FTGMAC100_OFFSET_PHYCR);
1148 for (i = 0; i < 10; i++) {
1149 phycr = ioread32(priv->base + FTGMAC100_OFFSET_PHYCR);
1151 if ((phycr & FTGMAC100_PHYCR_MIIWR) == 0)
1152 return 0;
1154 udelay(100);
1157 netdev_err(netdev, "mdio write timed out\n");
1158 return -EIO;
1161 static void ftgmac100_get_drvinfo(struct net_device *netdev,
1162 struct ethtool_drvinfo *info)
1164 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
1165 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1166 strlcpy(info->bus_info, dev_name(&netdev->dev), sizeof(info->bus_info));
1169 static void ftgmac100_get_ringparam(struct net_device *netdev,
1170 struct ethtool_ringparam *ering)
1172 struct ftgmac100 *priv = netdev_priv(netdev);
1174 memset(ering, 0, sizeof(*ering));
1175 ering->rx_max_pending = MAX_RX_QUEUE_ENTRIES;
1176 ering->tx_max_pending = MAX_TX_QUEUE_ENTRIES;
1177 ering->rx_pending = priv->rx_q_entries;
1178 ering->tx_pending = priv->tx_q_entries;
1181 static int ftgmac100_set_ringparam(struct net_device *netdev,
1182 struct ethtool_ringparam *ering)
1184 struct ftgmac100 *priv = netdev_priv(netdev);
1186 if (ering->rx_pending > MAX_RX_QUEUE_ENTRIES ||
1187 ering->tx_pending > MAX_TX_QUEUE_ENTRIES ||
1188 ering->rx_pending < MIN_RX_QUEUE_ENTRIES ||
1189 ering->tx_pending < MIN_TX_QUEUE_ENTRIES ||
1190 !is_power_of_2(ering->rx_pending) ||
1191 !is_power_of_2(ering->tx_pending))
1192 return -EINVAL;
1194 priv->new_rx_q_entries = ering->rx_pending;
1195 priv->new_tx_q_entries = ering->tx_pending;
1196 if (netif_running(netdev))
1197 schedule_work(&priv->reset_task);
1199 return 0;
1202 static void ftgmac100_get_pauseparam(struct net_device *netdev,
1203 struct ethtool_pauseparam *pause)
1205 struct ftgmac100 *priv = netdev_priv(netdev);
1207 pause->autoneg = priv->aneg_pause;
1208 pause->tx_pause = priv->tx_pause;
1209 pause->rx_pause = priv->rx_pause;
1212 static int ftgmac100_set_pauseparam(struct net_device *netdev,
1213 struct ethtool_pauseparam *pause)
1215 struct ftgmac100 *priv = netdev_priv(netdev);
1216 struct phy_device *phydev = netdev->phydev;
1218 priv->aneg_pause = pause->autoneg;
1219 priv->tx_pause = pause->tx_pause;
1220 priv->rx_pause = pause->rx_pause;
1222 if (phydev)
1223 phy_set_asym_pause(phydev, pause->rx_pause, pause->tx_pause);
1225 if (netif_running(netdev)) {
1226 if (!(phydev && priv->aneg_pause))
1227 ftgmac100_config_pause(priv);
1230 return 0;
1233 static const struct ethtool_ops ftgmac100_ethtool_ops = {
1234 .get_drvinfo = ftgmac100_get_drvinfo,
1235 .get_link = ethtool_op_get_link,
1236 .get_link_ksettings = phy_ethtool_get_link_ksettings,
1237 .set_link_ksettings = phy_ethtool_set_link_ksettings,
1238 .nway_reset = phy_ethtool_nway_reset,
1239 .get_ringparam = ftgmac100_get_ringparam,
1240 .set_ringparam = ftgmac100_set_ringparam,
1241 .get_pauseparam = ftgmac100_get_pauseparam,
1242 .set_pauseparam = ftgmac100_set_pauseparam,
1245 static irqreturn_t ftgmac100_interrupt(int irq, void *dev_id)
1247 struct net_device *netdev = dev_id;
1248 struct ftgmac100 *priv = netdev_priv(netdev);
1249 unsigned int status, new_mask = FTGMAC100_INT_BAD;
1251 /* Fetch and clear interrupt bits, process abnormal ones */
1252 status = ioread32(priv->base + FTGMAC100_OFFSET_ISR);
1253 iowrite32(status, priv->base + FTGMAC100_OFFSET_ISR);
1254 if (unlikely(status & FTGMAC100_INT_BAD)) {
1256 /* RX buffer unavailable */
1257 if (status & FTGMAC100_INT_NO_RXBUF)
1258 netdev->stats.rx_over_errors++;
1260 /* received packet lost due to RX FIFO full */
1261 if (status & FTGMAC100_INT_RPKT_LOST)
1262 netdev->stats.rx_fifo_errors++;
1264 /* sent packet lost due to excessive TX collision */
1265 if (status & FTGMAC100_INT_XPKT_LOST)
1266 netdev->stats.tx_fifo_errors++;
1268 /* AHB error -> Reset the chip */
1269 if (status & FTGMAC100_INT_AHB_ERR) {
1270 if (net_ratelimit())
1271 netdev_warn(netdev,
1272 "AHB bus error ! Resetting chip.\n");
1273 iowrite32(0, priv->base + FTGMAC100_OFFSET_IER);
1274 schedule_work(&priv->reset_task);
1275 return IRQ_HANDLED;
1278 /* We may need to restart the MAC after such errors, delay
1279 * this until after we have freed some Rx buffers though
1281 priv->need_mac_restart = true;
1283 /* Disable those errors until we restart */
1284 new_mask &= ~status;
1287 /* Only enable "bad" interrupts while NAPI is on */
1288 iowrite32(new_mask, priv->base + FTGMAC100_OFFSET_IER);
1290 /* Schedule NAPI bh */
1291 napi_schedule_irqoff(&priv->napi);
1293 return IRQ_HANDLED;
1296 static bool ftgmac100_check_rx(struct ftgmac100 *priv)
1298 struct ftgmac100_rxdes *rxdes = &priv->rxdes[priv->rx_pointer];
1300 /* Do we have a packet ? */
1301 return !!(rxdes->rxdes0 & cpu_to_le32(FTGMAC100_RXDES0_RXPKT_RDY));
1304 static int ftgmac100_poll(struct napi_struct *napi, int budget)
1306 struct ftgmac100 *priv = container_of(napi, struct ftgmac100, napi);
1307 int work_done = 0;
1308 bool more;
1310 /* Handle TX completions */
1311 if (ftgmac100_tx_buf_cleanable(priv))
1312 ftgmac100_tx_complete(priv);
1314 /* Handle RX packets */
1315 do {
1316 more = ftgmac100_rx_packet(priv, &work_done);
1317 } while (more && work_done < budget);
1320 /* The interrupt is telling us to kick the MAC back to life
1321 * after an RX overflow
1323 if (unlikely(priv->need_mac_restart)) {
1324 ftgmac100_start_hw(priv);
1326 /* Re-enable "bad" interrupts */
1327 iowrite32(FTGMAC100_INT_BAD,
1328 priv->base + FTGMAC100_OFFSET_IER);
1331 /* As long as we are waiting for transmit packets to be
1332 * completed we keep NAPI going
1334 if (ftgmac100_tx_buf_cleanable(priv))
1335 work_done = budget;
1337 if (work_done < budget) {
1338 /* We are about to re-enable all interrupts. However
1339 * the HW has been latching RX/TX packet interrupts while
1340 * they were masked. So we clear them first, then we need
1341 * to re-check if there's something to process
1343 iowrite32(FTGMAC100_INT_RXTX,
1344 priv->base + FTGMAC100_OFFSET_ISR);
1346 /* Push the above (and provides a barrier vs. subsequent
1347 * reads of the descriptor).
1349 ioread32(priv->base + FTGMAC100_OFFSET_ISR);
1351 /* Check RX and TX descriptors for more work to do */
1352 if (ftgmac100_check_rx(priv) ||
1353 ftgmac100_tx_buf_cleanable(priv))
1354 return budget;
1356 /* deschedule NAPI */
1357 napi_complete(napi);
1359 /* enable all interrupts */
1360 iowrite32(FTGMAC100_INT_ALL,
1361 priv->base + FTGMAC100_OFFSET_IER);
1364 return work_done;
1367 static int ftgmac100_init_all(struct ftgmac100 *priv, bool ignore_alloc_err)
1369 int err = 0;
1371 /* Re-init descriptors (adjust queue sizes) */
1372 ftgmac100_init_rings(priv);
1374 /* Realloc rx descriptors */
1375 err = ftgmac100_alloc_rx_buffers(priv);
1376 if (err && !ignore_alloc_err)
1377 return err;
1379 /* Reinit and restart HW */
1380 ftgmac100_init_hw(priv);
1381 ftgmac100_config_pause(priv);
1382 ftgmac100_start_hw(priv);
1384 /* Re-enable the device */
1385 napi_enable(&priv->napi);
1386 netif_start_queue(priv->netdev);
1388 /* Enable all interrupts */
1389 iowrite32(FTGMAC100_INT_ALL, priv->base + FTGMAC100_OFFSET_IER);
1391 return err;
1394 static void ftgmac100_reset_task(struct work_struct *work)
1396 struct ftgmac100 *priv = container_of(work, struct ftgmac100,
1397 reset_task);
1398 struct net_device *netdev = priv->netdev;
1399 int err;
1401 netdev_dbg(netdev, "Resetting NIC...\n");
1403 /* Lock the world */
1404 rtnl_lock();
1405 if (netdev->phydev)
1406 mutex_lock(&netdev->phydev->lock);
1407 if (priv->mii_bus)
1408 mutex_lock(&priv->mii_bus->mdio_lock);
1411 /* Check if the interface is still up */
1412 if (!netif_running(netdev))
1413 goto bail;
1415 /* Stop the network stack */
1416 netif_trans_update(netdev);
1417 napi_disable(&priv->napi);
1418 netif_tx_disable(netdev);
1420 /* Stop and reset the MAC */
1421 ftgmac100_stop_hw(priv);
1422 err = ftgmac100_reset_and_config_mac(priv);
1423 if (err) {
1424 /* Not much we can do ... it might come back... */
1425 netdev_err(netdev, "attempting to continue...\n");
1428 /* Free all rx and tx buffers */
1429 ftgmac100_free_buffers(priv);
1431 /* Setup everything again and restart chip */
1432 ftgmac100_init_all(priv, true);
1434 netdev_dbg(netdev, "Reset done !\n");
1435 bail:
1436 if (priv->mii_bus)
1437 mutex_unlock(&priv->mii_bus->mdio_lock);
1438 if (netdev->phydev)
1439 mutex_unlock(&netdev->phydev->lock);
1440 rtnl_unlock();
1443 static int ftgmac100_open(struct net_device *netdev)
1445 struct ftgmac100 *priv = netdev_priv(netdev);
1446 int err;
1448 /* Allocate ring buffers */
1449 err = ftgmac100_alloc_rings(priv);
1450 if (err) {
1451 netdev_err(netdev, "Failed to allocate descriptors\n");
1452 return err;
1455 /* When using NC-SI we force the speed to 100Mbit/s full duplex,
1457 * Otherwise we leave it set to 0 (no link), the link
1458 * message from the PHY layer will handle setting it up to
1459 * something else if needed.
1461 if (priv->use_ncsi) {
1462 priv->cur_duplex = DUPLEX_FULL;
1463 priv->cur_speed = SPEED_100;
1464 } else {
1465 priv->cur_duplex = 0;
1466 priv->cur_speed = 0;
1469 /* Reset the hardware */
1470 err = ftgmac100_reset_and_config_mac(priv);
1471 if (err)
1472 goto err_hw;
1474 /* Initialize NAPI */
1475 netif_napi_add(netdev, &priv->napi, ftgmac100_poll, 64);
1477 /* Grab our interrupt */
1478 err = request_irq(netdev->irq, ftgmac100_interrupt, 0, netdev->name, netdev);
1479 if (err) {
1480 netdev_err(netdev, "failed to request irq %d\n", netdev->irq);
1481 goto err_irq;
1484 /* Start things up */
1485 err = ftgmac100_init_all(priv, false);
1486 if (err) {
1487 netdev_err(netdev, "Failed to allocate packet buffers\n");
1488 goto err_alloc;
1491 if (netdev->phydev) {
1492 /* If we have a PHY, start polling */
1493 phy_start(netdev->phydev);
1494 } else if (priv->use_ncsi) {
1495 /* If using NC-SI, set our carrier on and start the stack */
1496 netif_carrier_on(netdev);
1498 /* Start the NCSI device */
1499 err = ncsi_start_dev(priv->ndev);
1500 if (err)
1501 goto err_ncsi;
1504 return 0;
1506 err_ncsi:
1507 napi_disable(&priv->napi);
1508 netif_stop_queue(netdev);
1509 err_alloc:
1510 ftgmac100_free_buffers(priv);
1511 free_irq(netdev->irq, netdev);
1512 err_irq:
1513 netif_napi_del(&priv->napi);
1514 err_hw:
1515 iowrite32(0, priv->base + FTGMAC100_OFFSET_IER);
1516 ftgmac100_free_rings(priv);
1517 return err;
1520 static int ftgmac100_stop(struct net_device *netdev)
1522 struct ftgmac100 *priv = netdev_priv(netdev);
1524 /* Note about the reset task: We are called with the rtnl lock
1525 * held, so we are synchronized against the core of the reset
1526 * task. We must not try to synchronously cancel it otherwise
1527 * we can deadlock. But since it will test for netif_running()
1528 * which has already been cleared by the net core, we don't
1529 * anything special to do.
1532 /* disable all interrupts */
1533 iowrite32(0, priv->base + FTGMAC100_OFFSET_IER);
1535 netif_stop_queue(netdev);
1536 napi_disable(&priv->napi);
1537 netif_napi_del(&priv->napi);
1538 if (netdev->phydev)
1539 phy_stop(netdev->phydev);
1540 else if (priv->use_ncsi)
1541 ncsi_stop_dev(priv->ndev);
1543 ftgmac100_stop_hw(priv);
1544 free_irq(netdev->irq, netdev);
1545 ftgmac100_free_buffers(priv);
1546 ftgmac100_free_rings(priv);
1548 return 0;
1551 /* optional */
1552 static int ftgmac100_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1554 if (!netdev->phydev)
1555 return -ENXIO;
1557 return phy_mii_ioctl(netdev->phydev, ifr, cmd);
1560 static void ftgmac100_tx_timeout(struct net_device *netdev)
1562 struct ftgmac100 *priv = netdev_priv(netdev);
1564 /* Disable all interrupts */
1565 iowrite32(0, priv->base + FTGMAC100_OFFSET_IER);
1567 /* Do the reset outside of interrupt context */
1568 schedule_work(&priv->reset_task);
1571 static int ftgmac100_set_features(struct net_device *netdev,
1572 netdev_features_t features)
1574 struct ftgmac100 *priv = netdev_priv(netdev);
1575 netdev_features_t changed = netdev->features ^ features;
1577 if (!netif_running(netdev))
1578 return 0;
1580 /* Update the vlan filtering bit */
1581 if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
1582 u32 maccr;
1584 maccr = ioread32(priv->base + FTGMAC100_OFFSET_MACCR);
1585 if (priv->netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
1586 maccr |= FTGMAC100_MACCR_RM_VLAN;
1587 else
1588 maccr &= ~FTGMAC100_MACCR_RM_VLAN;
1589 iowrite32(maccr, priv->base + FTGMAC100_OFFSET_MACCR);
1592 return 0;
1595 #ifdef CONFIG_NET_POLL_CONTROLLER
1596 static void ftgmac100_poll_controller(struct net_device *netdev)
1598 unsigned long flags;
1600 local_irq_save(flags);
1601 ftgmac100_interrupt(netdev->irq, netdev);
1602 local_irq_restore(flags);
1604 #endif
1606 static const struct net_device_ops ftgmac100_netdev_ops = {
1607 .ndo_open = ftgmac100_open,
1608 .ndo_stop = ftgmac100_stop,
1609 .ndo_start_xmit = ftgmac100_hard_start_xmit,
1610 .ndo_set_mac_address = ftgmac100_set_mac_addr,
1611 .ndo_validate_addr = eth_validate_addr,
1612 .ndo_do_ioctl = ftgmac100_do_ioctl,
1613 .ndo_tx_timeout = ftgmac100_tx_timeout,
1614 .ndo_set_rx_mode = ftgmac100_set_rx_mode,
1615 .ndo_set_features = ftgmac100_set_features,
1616 #ifdef CONFIG_NET_POLL_CONTROLLER
1617 .ndo_poll_controller = ftgmac100_poll_controller,
1618 #endif
1619 .ndo_vlan_rx_add_vid = ncsi_vlan_rx_add_vid,
1620 .ndo_vlan_rx_kill_vid = ncsi_vlan_rx_kill_vid,
1623 static int ftgmac100_setup_mdio(struct net_device *netdev)
1625 struct ftgmac100 *priv = netdev_priv(netdev);
1626 struct platform_device *pdev = to_platform_device(priv->dev);
1627 int phy_intf = PHY_INTERFACE_MODE_RGMII;
1628 struct device_node *np = pdev->dev.of_node;
1629 int i, err = 0;
1630 u32 reg;
1632 /* initialize mdio bus */
1633 priv->mii_bus = mdiobus_alloc();
1634 if (!priv->mii_bus)
1635 return -EIO;
1637 if (priv->is_aspeed) {
1638 /* This driver supports the old MDIO interface */
1639 reg = ioread32(priv->base + FTGMAC100_OFFSET_REVR);
1640 reg &= ~FTGMAC100_REVR_NEW_MDIO_INTERFACE;
1641 iowrite32(reg, priv->base + FTGMAC100_OFFSET_REVR);
1644 /* Get PHY mode from device-tree */
1645 if (np) {
1646 /* Default to RGMII. It's a gigabit part after all */
1647 phy_intf = of_get_phy_mode(np);
1648 if (phy_intf < 0)
1649 phy_intf = PHY_INTERFACE_MODE_RGMII;
1651 /* Aspeed only supports these. I don't know about other IP
1652 * block vendors so I'm going to just let them through for
1653 * now. Note that this is only a warning if for some obscure
1654 * reason the DT really means to lie about it or it's a newer
1655 * part we don't know about.
1657 * On the Aspeed SoC there are additionally straps and SCU
1658 * control bits that could tell us what the interface is
1659 * (or allow us to configure it while the IP block is held
1660 * in reset). For now I chose to keep this driver away from
1661 * those SoC specific bits and assume the device-tree is
1662 * right and the SCU has been configured properly by pinmux
1663 * or the firmware.
1665 if (priv->is_aspeed &&
1666 phy_intf != PHY_INTERFACE_MODE_RMII &&
1667 phy_intf != PHY_INTERFACE_MODE_RGMII &&
1668 phy_intf != PHY_INTERFACE_MODE_RGMII_ID &&
1669 phy_intf != PHY_INTERFACE_MODE_RGMII_RXID &&
1670 phy_intf != PHY_INTERFACE_MODE_RGMII_TXID) {
1671 netdev_warn(netdev,
1672 "Unsupported PHY mode %s !\n",
1673 phy_modes(phy_intf));
1677 priv->mii_bus->name = "ftgmac100_mdio";
1678 snprintf(priv->mii_bus->id, MII_BUS_ID_SIZE, "%s-%d",
1679 pdev->name, pdev->id);
1680 priv->mii_bus->parent = priv->dev;
1681 priv->mii_bus->priv = priv->netdev;
1682 priv->mii_bus->read = ftgmac100_mdiobus_read;
1683 priv->mii_bus->write = ftgmac100_mdiobus_write;
1685 for (i = 0; i < PHY_MAX_ADDR; i++)
1686 priv->mii_bus->irq[i] = PHY_POLL;
1688 err = mdiobus_register(priv->mii_bus);
1689 if (err) {
1690 dev_err(priv->dev, "Cannot register MDIO bus!\n");
1691 goto err_register_mdiobus;
1694 err = ftgmac100_mii_probe(priv, phy_intf);
1695 if (err) {
1696 dev_err(priv->dev, "MII Probe failed!\n");
1697 goto err_mii_probe;
1700 return 0;
1702 err_mii_probe:
1703 mdiobus_unregister(priv->mii_bus);
1704 err_register_mdiobus:
1705 mdiobus_free(priv->mii_bus);
1706 return err;
1709 static void ftgmac100_destroy_mdio(struct net_device *netdev)
1711 struct ftgmac100 *priv = netdev_priv(netdev);
1713 if (!netdev->phydev)
1714 return;
1716 phy_disconnect(netdev->phydev);
1717 mdiobus_unregister(priv->mii_bus);
1718 mdiobus_free(priv->mii_bus);
1721 static void ftgmac100_ncsi_handler(struct ncsi_dev *nd)
1723 if (unlikely(nd->state != ncsi_dev_state_functional))
1724 return;
1726 netdev_dbg(nd->dev, "NCSI interface %s\n",
1727 nd->link_up ? "up" : "down");
1730 static void ftgmac100_setup_clk(struct ftgmac100 *priv)
1732 priv->clk = devm_clk_get(priv->dev, NULL);
1733 if (IS_ERR(priv->clk))
1734 return;
1736 clk_prepare_enable(priv->clk);
1738 /* Aspeed specifies a 100MHz clock is required for up to
1739 * 1000Mbit link speeds. As NCSI is limited to 100Mbit, 25MHz
1740 * is sufficient
1742 clk_set_rate(priv->clk, priv->use_ncsi ? FTGMAC_25MHZ :
1743 FTGMAC_100MHZ);
1746 static int ftgmac100_probe(struct platform_device *pdev)
1748 struct resource *res;
1749 int irq;
1750 struct net_device *netdev;
1751 struct ftgmac100 *priv;
1752 struct device_node *np;
1753 int err = 0;
1755 if (!pdev)
1756 return -ENODEV;
1758 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1759 if (!res)
1760 return -ENXIO;
1762 irq = platform_get_irq(pdev, 0);
1763 if (irq < 0)
1764 return irq;
1766 /* setup net_device */
1767 netdev = alloc_etherdev(sizeof(*priv));
1768 if (!netdev) {
1769 err = -ENOMEM;
1770 goto err_alloc_etherdev;
1773 SET_NETDEV_DEV(netdev, &pdev->dev);
1775 netdev->ethtool_ops = &ftgmac100_ethtool_ops;
1776 netdev->netdev_ops = &ftgmac100_netdev_ops;
1777 netdev->watchdog_timeo = 5 * HZ;
1779 platform_set_drvdata(pdev, netdev);
1781 /* setup private data */
1782 priv = netdev_priv(netdev);
1783 priv->netdev = netdev;
1784 priv->dev = &pdev->dev;
1785 INIT_WORK(&priv->reset_task, ftgmac100_reset_task);
1787 /* map io memory */
1788 priv->res = request_mem_region(res->start, resource_size(res),
1789 dev_name(&pdev->dev));
1790 if (!priv->res) {
1791 dev_err(&pdev->dev, "Could not reserve memory region\n");
1792 err = -ENOMEM;
1793 goto err_req_mem;
1796 priv->base = ioremap(res->start, resource_size(res));
1797 if (!priv->base) {
1798 dev_err(&pdev->dev, "Failed to ioremap ethernet registers\n");
1799 err = -EIO;
1800 goto err_ioremap;
1803 netdev->irq = irq;
1805 /* Enable pause */
1806 priv->tx_pause = true;
1807 priv->rx_pause = true;
1808 priv->aneg_pause = true;
1810 /* MAC address from chip or random one */
1811 ftgmac100_initial_mac(priv);
1813 np = pdev->dev.of_node;
1814 if (np && (of_device_is_compatible(np, "aspeed,ast2400-mac") ||
1815 of_device_is_compatible(np, "aspeed,ast2500-mac"))) {
1816 priv->rxdes0_edorr_mask = BIT(30);
1817 priv->txdes0_edotr_mask = BIT(30);
1818 priv->is_aspeed = true;
1819 } else {
1820 priv->rxdes0_edorr_mask = BIT(15);
1821 priv->txdes0_edotr_mask = BIT(15);
1824 if (np && of_get_property(np, "use-ncsi", NULL)) {
1825 if (!IS_ENABLED(CONFIG_NET_NCSI)) {
1826 dev_err(&pdev->dev, "NCSI stack not enabled\n");
1827 goto err_ncsi_dev;
1830 dev_info(&pdev->dev, "Using NCSI interface\n");
1831 priv->use_ncsi = true;
1832 priv->ndev = ncsi_register_dev(netdev, ftgmac100_ncsi_handler);
1833 if (!priv->ndev)
1834 goto err_ncsi_dev;
1835 } else {
1836 priv->use_ncsi = false;
1837 err = ftgmac100_setup_mdio(netdev);
1838 if (err)
1839 goto err_setup_mdio;
1842 if (priv->is_aspeed)
1843 ftgmac100_setup_clk(priv);
1845 /* Default ring sizes */
1846 priv->rx_q_entries = priv->new_rx_q_entries = DEF_RX_QUEUE_ENTRIES;
1847 priv->tx_q_entries = priv->new_tx_q_entries = DEF_TX_QUEUE_ENTRIES;
1849 /* Base feature set */
1850 netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_HW_CSUM |
1851 NETIF_F_GRO | NETIF_F_SG | NETIF_F_HW_VLAN_CTAG_RX |
1852 NETIF_F_HW_VLAN_CTAG_TX;
1854 if (priv->use_ncsi)
1855 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
1857 /* AST2400 doesn't have working HW checksum generation */
1858 if (np && (of_device_is_compatible(np, "aspeed,ast2400-mac")))
1859 netdev->hw_features &= ~NETIF_F_HW_CSUM;
1860 if (np && of_get_property(np, "no-hw-checksum", NULL))
1861 netdev->hw_features &= ~(NETIF_F_HW_CSUM | NETIF_F_RXCSUM);
1862 netdev->features |= netdev->hw_features;
1864 /* register network device */
1865 err = register_netdev(netdev);
1866 if (err) {
1867 dev_err(&pdev->dev, "Failed to register netdev\n");
1868 goto err_register_netdev;
1871 netdev_info(netdev, "irq %d, mapped at %p\n", netdev->irq, priv->base);
1873 return 0;
1875 err_ncsi_dev:
1876 err_register_netdev:
1877 ftgmac100_destroy_mdio(netdev);
1878 err_setup_mdio:
1879 iounmap(priv->base);
1880 err_ioremap:
1881 release_resource(priv->res);
1882 err_req_mem:
1883 free_netdev(netdev);
1884 err_alloc_etherdev:
1885 return err;
1888 static int ftgmac100_remove(struct platform_device *pdev)
1890 struct net_device *netdev;
1891 struct ftgmac100 *priv;
1893 netdev = platform_get_drvdata(pdev);
1894 priv = netdev_priv(netdev);
1896 unregister_netdev(netdev);
1898 clk_disable_unprepare(priv->clk);
1900 /* There's a small chance the reset task will have been re-queued,
1901 * during stop, make sure it's gone before we free the structure.
1903 cancel_work_sync(&priv->reset_task);
1905 ftgmac100_destroy_mdio(netdev);
1907 iounmap(priv->base);
1908 release_resource(priv->res);
1910 netif_napi_del(&priv->napi);
1911 free_netdev(netdev);
1912 return 0;
1915 static const struct of_device_id ftgmac100_of_match[] = {
1916 { .compatible = "faraday,ftgmac100" },
1919 MODULE_DEVICE_TABLE(of, ftgmac100_of_match);
1921 static struct platform_driver ftgmac100_driver = {
1922 .probe = ftgmac100_probe,
1923 .remove = ftgmac100_remove,
1924 .driver = {
1925 .name = DRV_NAME,
1926 .of_match_table = ftgmac100_of_match,
1929 module_platform_driver(ftgmac100_driver);
1931 MODULE_AUTHOR("Po-Yu Chuang <ratbert@faraday-tech.com>");
1932 MODULE_DESCRIPTION("FTGMAC100 driver");
1933 MODULE_LICENSE("GPL");