2 * Driver for BCM963xx builtin Ethernet mac
4 * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <linux/init.h>
21 #include <linux/interrupt.h>
22 #include <linux/module.h>
23 #include <linux/clk.h>
24 #include <linux/etherdevice.h>
25 #include <linux/slab.h>
26 #include <linux/delay.h>
27 #include <linux/ethtool.h>
28 #include <linux/crc32.h>
29 #include <linux/err.h>
30 #include <linux/dma-mapping.h>
31 #include <linux/platform_device.h>
32 #include <linux/if_vlan.h>
34 #include <bcm63xx_dev_enet.h>
35 #include "bcm63xx_enet.h"
37 static char bcm_enet_driver_name[] = "bcm63xx_enet";
38 static char bcm_enet_driver_version[] = "1.0";
40 static int copybreak __read_mostly = 128;
41 module_param(copybreak, int, 0);
42 MODULE_PARM_DESC(copybreak, "Receive copy threshold");
44 /* io memory shared between all devices */
45 static void __iomem *bcm_enet_shared_base;
48 * io helpers to access mac registers
50 static inline u32 enet_readl(struct bcm_enet_priv *priv, u32 off)
52 return bcm_readl(priv->base + off);
55 static inline void enet_writel(struct bcm_enet_priv *priv,
58 bcm_writel(val, priv->base + off);
62 * io helpers to access shared registers
64 static inline u32 enet_dma_readl(struct bcm_enet_priv *priv, u32 off)
66 return bcm_readl(bcm_enet_shared_base + off);
69 static inline void enet_dma_writel(struct bcm_enet_priv *priv,
72 bcm_writel(val, bcm_enet_shared_base + off);
76 * write given data into mii register and wait for transfer to end
77 * with timeout (average measured transfer time is 25us)
79 static int do_mdio_op(struct bcm_enet_priv *priv, unsigned int data)
83 /* make sure mii interrupt status is cleared */
84 enet_writel(priv, ENET_IR_MII, ENET_IR_REG);
86 enet_writel(priv, data, ENET_MIIDATA_REG);
89 /* busy wait on mii interrupt bit, with timeout */
92 if (enet_readl(priv, ENET_IR_REG) & ENET_IR_MII)
95 } while (limit-- > 0);
97 return (limit < 0) ? 1 : 0;
101 * MII internal read callback
103 static int bcm_enet_mdio_read(struct bcm_enet_priv *priv, int mii_id,
108 tmp = regnum << ENET_MIIDATA_REG_SHIFT;
109 tmp |= 0x2 << ENET_MIIDATA_TA_SHIFT;
110 tmp |= mii_id << ENET_MIIDATA_PHYID_SHIFT;
111 tmp |= ENET_MIIDATA_OP_READ_MASK;
113 if (do_mdio_op(priv, tmp))
116 val = enet_readl(priv, ENET_MIIDATA_REG);
122 * MII internal write callback
124 static int bcm_enet_mdio_write(struct bcm_enet_priv *priv, int mii_id,
125 int regnum, u16 value)
129 tmp = (value & 0xffff) << ENET_MIIDATA_DATA_SHIFT;
130 tmp |= 0x2 << ENET_MIIDATA_TA_SHIFT;
131 tmp |= regnum << ENET_MIIDATA_REG_SHIFT;
132 tmp |= mii_id << ENET_MIIDATA_PHYID_SHIFT;
133 tmp |= ENET_MIIDATA_OP_WRITE_MASK;
135 (void)do_mdio_op(priv, tmp);
140 * MII read callback from phylib
142 static int bcm_enet_mdio_read_phylib(struct mii_bus *bus, int mii_id,
145 return bcm_enet_mdio_read(bus->priv, mii_id, regnum);
149 * MII write callback from phylib
151 static int bcm_enet_mdio_write_phylib(struct mii_bus *bus, int mii_id,
152 int regnum, u16 value)
154 return bcm_enet_mdio_write(bus->priv, mii_id, regnum, value);
158 * MII read callback from mii core
160 static int bcm_enet_mdio_read_mii(struct net_device *dev, int mii_id,
163 return bcm_enet_mdio_read(netdev_priv(dev), mii_id, regnum);
167 * MII write callback from mii core
169 static void bcm_enet_mdio_write_mii(struct net_device *dev, int mii_id,
170 int regnum, int value)
172 bcm_enet_mdio_write(netdev_priv(dev), mii_id, regnum, value);
178 static int bcm_enet_refill_rx(struct net_device *dev)
180 struct bcm_enet_priv *priv;
182 priv = netdev_priv(dev);
184 while (priv->rx_desc_count < priv->rx_ring_size) {
185 struct bcm_enet_desc *desc;
191 desc_idx = priv->rx_dirty_desc;
192 desc = &priv->rx_desc_cpu[desc_idx];
194 if (!priv->rx_skb[desc_idx]) {
195 skb = netdev_alloc_skb(dev, priv->rx_skb_size);
198 priv->rx_skb[desc_idx] = skb;
200 p = dma_map_single(&priv->pdev->dev, skb->data,
206 len_stat = priv->rx_skb_size << DMADESC_LENGTH_SHIFT;
207 len_stat |= DMADESC_OWNER_MASK;
208 if (priv->rx_dirty_desc == priv->rx_ring_size - 1) {
209 len_stat |= DMADESC_WRAP_MASK;
210 priv->rx_dirty_desc = 0;
212 priv->rx_dirty_desc++;
215 desc->len_stat = len_stat;
217 priv->rx_desc_count++;
219 /* tell dma engine we allocated one buffer */
220 enet_dma_writel(priv, 1, ENETDMA_BUFALLOC_REG(priv->rx_chan));
223 /* If rx ring is still empty, set a timer to try allocating
224 * again at a later time. */
225 if (priv->rx_desc_count == 0 && netif_running(dev)) {
226 dev_warn(&priv->pdev->dev, "unable to refill rx ring\n");
227 priv->rx_timeout.expires = jiffies + HZ;
228 add_timer(&priv->rx_timeout);
235 * timer callback to defer refill rx queue in case we're OOM
237 static void bcm_enet_refill_rx_timer(unsigned long data)
239 struct net_device *dev;
240 struct bcm_enet_priv *priv;
242 dev = (struct net_device *)data;
243 priv = netdev_priv(dev);
245 spin_lock(&priv->rx_lock);
246 bcm_enet_refill_rx((struct net_device *)data);
247 spin_unlock(&priv->rx_lock);
251 * extract packet from rx queue
253 static int bcm_enet_receive_queue(struct net_device *dev, int budget)
255 struct bcm_enet_priv *priv;
259 priv = netdev_priv(dev);
260 kdev = &priv->pdev->dev;
263 /* don't scan ring further than number of refilled
265 if (budget > priv->rx_desc_count)
266 budget = priv->rx_desc_count;
269 struct bcm_enet_desc *desc;
275 desc_idx = priv->rx_curr_desc;
276 desc = &priv->rx_desc_cpu[desc_idx];
278 /* make sure we actually read the descriptor status at
282 len_stat = desc->len_stat;
284 /* break if dma ownership belongs to hw */
285 if (len_stat & DMADESC_OWNER_MASK)
289 priv->rx_curr_desc++;
290 if (priv->rx_curr_desc == priv->rx_ring_size)
291 priv->rx_curr_desc = 0;
292 priv->rx_desc_count--;
294 /* if the packet does not have start of packet _and_
295 * end of packet flag set, then just recycle it */
296 if ((len_stat & DMADESC_ESOP_MASK) != DMADESC_ESOP_MASK) {
297 dev->stats.rx_dropped++;
301 /* recycle packet if it's marked as bad */
302 if (unlikely(len_stat & DMADESC_ERR_MASK)) {
303 dev->stats.rx_errors++;
305 if (len_stat & DMADESC_OVSIZE_MASK)
306 dev->stats.rx_length_errors++;
307 if (len_stat & DMADESC_CRC_MASK)
308 dev->stats.rx_crc_errors++;
309 if (len_stat & DMADESC_UNDER_MASK)
310 dev->stats.rx_frame_errors++;
311 if (len_stat & DMADESC_OV_MASK)
312 dev->stats.rx_fifo_errors++;
317 skb = priv->rx_skb[desc_idx];
318 len = (len_stat & DMADESC_LENGTH_MASK) >> DMADESC_LENGTH_SHIFT;
319 /* don't include FCS */
322 if (len < copybreak) {
323 struct sk_buff *nskb;
325 nskb = netdev_alloc_skb_ip_align(dev, len);
327 /* forget packet, just rearm desc */
328 dev->stats.rx_dropped++;
332 dma_sync_single_for_cpu(kdev, desc->address,
333 len, DMA_FROM_DEVICE);
334 memcpy(nskb->data, skb->data, len);
335 dma_sync_single_for_device(kdev, desc->address,
336 len, DMA_FROM_DEVICE);
339 dma_unmap_single(&priv->pdev->dev, desc->address,
340 priv->rx_skb_size, DMA_FROM_DEVICE);
341 priv->rx_skb[desc_idx] = NULL;
345 skb->protocol = eth_type_trans(skb, dev);
346 dev->stats.rx_packets++;
347 dev->stats.rx_bytes += len;
348 netif_receive_skb(skb);
350 } while (--budget > 0);
352 if (processed || !priv->rx_desc_count) {
353 bcm_enet_refill_rx(dev);
356 enet_dma_writel(priv, ENETDMA_CHANCFG_EN_MASK,
357 ENETDMA_CHANCFG_REG(priv->rx_chan));
365 * try to or force reclaim of transmitted buffers
367 static int bcm_enet_tx_reclaim(struct net_device *dev, int force)
369 struct bcm_enet_priv *priv;
372 priv = netdev_priv(dev);
375 while (priv->tx_desc_count < priv->tx_ring_size) {
376 struct bcm_enet_desc *desc;
379 /* We run in a bh and fight against start_xmit, which
380 * is called with bh disabled */
381 spin_lock(&priv->tx_lock);
383 desc = &priv->tx_desc_cpu[priv->tx_dirty_desc];
385 if (!force && (desc->len_stat & DMADESC_OWNER_MASK)) {
386 spin_unlock(&priv->tx_lock);
390 /* ensure other field of the descriptor were not read
391 * before we checked ownership */
394 skb = priv->tx_skb[priv->tx_dirty_desc];
395 priv->tx_skb[priv->tx_dirty_desc] = NULL;
396 dma_unmap_single(&priv->pdev->dev, desc->address, skb->len,
399 priv->tx_dirty_desc++;
400 if (priv->tx_dirty_desc == priv->tx_ring_size)
401 priv->tx_dirty_desc = 0;
402 priv->tx_desc_count++;
404 spin_unlock(&priv->tx_lock);
406 if (desc->len_stat & DMADESC_UNDER_MASK)
407 dev->stats.tx_errors++;
413 if (netif_queue_stopped(dev) && released)
414 netif_wake_queue(dev);
420 * poll func, called by network core
422 static int bcm_enet_poll(struct napi_struct *napi, int budget)
424 struct bcm_enet_priv *priv;
425 struct net_device *dev;
426 int tx_work_done, rx_work_done;
428 priv = container_of(napi, struct bcm_enet_priv, napi);
432 enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK,
433 ENETDMA_IR_REG(priv->rx_chan));
434 enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK,
435 ENETDMA_IR_REG(priv->tx_chan));
437 /* reclaim sent skb */
438 tx_work_done = bcm_enet_tx_reclaim(dev, 0);
440 spin_lock(&priv->rx_lock);
441 rx_work_done = bcm_enet_receive_queue(dev, budget);
442 spin_unlock(&priv->rx_lock);
444 if (rx_work_done >= budget || tx_work_done > 0) {
445 /* rx/tx queue is not yet empty/clean */
449 /* no more packet in rx/tx queue, remove device from poll
453 /* restore rx/tx interrupt */
454 enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK,
455 ENETDMA_IRMASK_REG(priv->rx_chan));
456 enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK,
457 ENETDMA_IRMASK_REG(priv->tx_chan));
463 * mac interrupt handler
465 static irqreturn_t bcm_enet_isr_mac(int irq, void *dev_id)
467 struct net_device *dev;
468 struct bcm_enet_priv *priv;
472 priv = netdev_priv(dev);
474 stat = enet_readl(priv, ENET_IR_REG);
475 if (!(stat & ENET_IR_MIB))
478 /* clear & mask interrupt */
479 enet_writel(priv, ENET_IR_MIB, ENET_IR_REG);
480 enet_writel(priv, 0, ENET_IRMASK_REG);
482 /* read mib registers in workqueue */
483 schedule_work(&priv->mib_update_task);
489 * rx/tx dma interrupt handler
491 static irqreturn_t bcm_enet_isr_dma(int irq, void *dev_id)
493 struct net_device *dev;
494 struct bcm_enet_priv *priv;
497 priv = netdev_priv(dev);
499 /* mask rx/tx interrupts */
500 enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->rx_chan));
501 enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->tx_chan));
503 napi_schedule(&priv->napi);
509 * tx request callback
511 static int bcm_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
513 struct bcm_enet_priv *priv;
514 struct bcm_enet_desc *desc;
518 priv = netdev_priv(dev);
520 /* lock against tx reclaim */
521 spin_lock(&priv->tx_lock);
523 /* make sure the tx hw queue is not full, should not happen
524 * since we stop queue before it's the case */
525 if (unlikely(!priv->tx_desc_count)) {
526 netif_stop_queue(dev);
527 dev_err(&priv->pdev->dev, "xmit called with no tx desc "
529 ret = NETDEV_TX_BUSY;
533 /* point to the next available desc */
534 desc = &priv->tx_desc_cpu[priv->tx_curr_desc];
535 priv->tx_skb[priv->tx_curr_desc] = skb;
537 /* fill descriptor */
538 desc->address = dma_map_single(&priv->pdev->dev, skb->data, skb->len,
541 len_stat = (skb->len << DMADESC_LENGTH_SHIFT) & DMADESC_LENGTH_MASK;
542 len_stat |= DMADESC_ESOP_MASK |
546 priv->tx_curr_desc++;
547 if (priv->tx_curr_desc == priv->tx_ring_size) {
548 priv->tx_curr_desc = 0;
549 len_stat |= DMADESC_WRAP_MASK;
551 priv->tx_desc_count--;
553 /* dma might be already polling, make sure we update desc
554 * fields in correct order */
556 desc->len_stat = len_stat;
560 enet_dma_writel(priv, ENETDMA_CHANCFG_EN_MASK,
561 ENETDMA_CHANCFG_REG(priv->tx_chan));
563 /* stop queue if no more desc available */
564 if (!priv->tx_desc_count)
565 netif_stop_queue(dev);
567 dev->stats.tx_bytes += skb->len;
568 dev->stats.tx_packets++;
572 spin_unlock(&priv->tx_lock);
577 * Change the interface's mac address.
579 static int bcm_enet_set_mac_address(struct net_device *dev, void *p)
581 struct bcm_enet_priv *priv;
582 struct sockaddr *addr = p;
585 priv = netdev_priv(dev);
586 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
588 /* use perfect match register 0 to store my mac address */
589 val = (dev->dev_addr[2] << 24) | (dev->dev_addr[3] << 16) |
590 (dev->dev_addr[4] << 8) | dev->dev_addr[5];
591 enet_writel(priv, val, ENET_PML_REG(0));
593 val = (dev->dev_addr[0] << 8 | dev->dev_addr[1]);
594 val |= ENET_PMH_DATAVALID_MASK;
595 enet_writel(priv, val, ENET_PMH_REG(0));
601 * Change rx mode (promiscuous/allmulti) and update multicast list
603 static void bcm_enet_set_multicast_list(struct net_device *dev)
605 struct bcm_enet_priv *priv;
606 struct netdev_hw_addr *ha;
610 priv = netdev_priv(dev);
612 val = enet_readl(priv, ENET_RXCFG_REG);
614 if (dev->flags & IFF_PROMISC)
615 val |= ENET_RXCFG_PROMISC_MASK;
617 val &= ~ENET_RXCFG_PROMISC_MASK;
619 /* only 3 perfect match registers left, first one is used for
621 if ((dev->flags & IFF_ALLMULTI) || netdev_mc_count(dev) > 3)
622 val |= ENET_RXCFG_ALLMCAST_MASK;
624 val &= ~ENET_RXCFG_ALLMCAST_MASK;
626 /* no need to set perfect match registers if we catch all
628 if (val & ENET_RXCFG_ALLMCAST_MASK) {
629 enet_writel(priv, val, ENET_RXCFG_REG);
634 netdev_for_each_mc_addr(ha, dev) {
640 /* update perfect match registers */
642 tmp = (dmi_addr[2] << 24) | (dmi_addr[3] << 16) |
643 (dmi_addr[4] << 8) | dmi_addr[5];
644 enet_writel(priv, tmp, ENET_PML_REG(i + 1));
646 tmp = (dmi_addr[0] << 8 | dmi_addr[1]);
647 tmp |= ENET_PMH_DATAVALID_MASK;
648 enet_writel(priv, tmp, ENET_PMH_REG(i++ + 1));
652 enet_writel(priv, 0, ENET_PML_REG(i + 1));
653 enet_writel(priv, 0, ENET_PMH_REG(i + 1));
656 enet_writel(priv, val, ENET_RXCFG_REG);
660 * set mac duplex parameters
662 static void bcm_enet_set_duplex(struct bcm_enet_priv *priv, int fullduplex)
666 val = enet_readl(priv, ENET_TXCTL_REG);
668 val |= ENET_TXCTL_FD_MASK;
670 val &= ~ENET_TXCTL_FD_MASK;
671 enet_writel(priv, val, ENET_TXCTL_REG);
675 * set mac flow control parameters
677 static void bcm_enet_set_flow(struct bcm_enet_priv *priv, int rx_en, int tx_en)
681 /* rx flow control (pause frame handling) */
682 val = enet_readl(priv, ENET_RXCFG_REG);
684 val |= ENET_RXCFG_ENFLOW_MASK;
686 val &= ~ENET_RXCFG_ENFLOW_MASK;
687 enet_writel(priv, val, ENET_RXCFG_REG);
689 /* tx flow control (pause frame generation) */
690 val = enet_dma_readl(priv, ENETDMA_CFG_REG);
692 val |= ENETDMA_CFG_FLOWCH_MASK(priv->rx_chan);
694 val &= ~ENETDMA_CFG_FLOWCH_MASK(priv->rx_chan);
695 enet_dma_writel(priv, val, ENETDMA_CFG_REG);
699 * link changed callback (from phylib)
701 static void bcm_enet_adjust_phy_link(struct net_device *dev)
703 struct bcm_enet_priv *priv;
704 struct phy_device *phydev;
707 priv = netdev_priv(dev);
708 phydev = priv->phydev;
711 if (priv->old_link != phydev->link) {
713 priv->old_link = phydev->link;
716 /* reflect duplex change in mac configuration */
717 if (phydev->link && phydev->duplex != priv->old_duplex) {
718 bcm_enet_set_duplex(priv,
719 (phydev->duplex == DUPLEX_FULL) ? 1 : 0);
721 priv->old_duplex = phydev->duplex;
724 /* enable flow control if remote advertise it (trust phylib to
725 * check that duplex is full */
726 if (phydev->link && phydev->pause != priv->old_pause) {
727 int rx_pause_en, tx_pause_en;
730 /* pause was advertised by lpa and us */
733 } else if (!priv->pause_auto) {
734 /* pause setting overrided by user */
735 rx_pause_en = priv->pause_rx;
736 tx_pause_en = priv->pause_tx;
742 bcm_enet_set_flow(priv, rx_pause_en, tx_pause_en);
744 priv->old_pause = phydev->pause;
747 if (status_changed) {
748 pr_info("%s: link %s", dev->name, phydev->link ?
751 pr_cont(" - %d/%s - flow control %s", phydev->speed,
752 DUPLEX_FULL == phydev->duplex ? "full" : "half",
753 phydev->pause == 1 ? "rx&tx" : "off");
760 * link changed callback (if phylib is not used)
762 static void bcm_enet_adjust_link(struct net_device *dev)
764 struct bcm_enet_priv *priv;
766 priv = netdev_priv(dev);
767 bcm_enet_set_duplex(priv, priv->force_duplex_full);
768 bcm_enet_set_flow(priv, priv->pause_rx, priv->pause_tx);
769 netif_carrier_on(dev);
771 pr_info("%s: link forced UP - %d/%s - flow control %s/%s\n",
773 priv->force_speed_100 ? 100 : 10,
774 priv->force_duplex_full ? "full" : "half",
775 priv->pause_rx ? "rx" : "off",
776 priv->pause_tx ? "tx" : "off");
780 * open callback, allocate dma rings & buffers and start rx operation
782 static int bcm_enet_open(struct net_device *dev)
784 struct bcm_enet_priv *priv;
785 struct sockaddr addr;
787 struct phy_device *phydev;
790 char phy_id[MII_BUS_ID_SIZE + 3];
794 priv = netdev_priv(dev);
795 kdev = &priv->pdev->dev;
799 snprintf(phy_id, sizeof(phy_id), PHY_ID_FMT,
800 priv->mii_bus->id, priv->phy_id);
802 phydev = phy_connect(dev, phy_id, bcm_enet_adjust_phy_link,
803 PHY_INTERFACE_MODE_MII);
805 if (IS_ERR(phydev)) {
806 dev_err(kdev, "could not attach to PHY\n");
807 return PTR_ERR(phydev);
810 /* mask with MAC supported features */
811 phydev->supported &= (SUPPORTED_10baseT_Half |
812 SUPPORTED_10baseT_Full |
813 SUPPORTED_100baseT_Half |
814 SUPPORTED_100baseT_Full |
818 phydev->advertising = phydev->supported;
820 if (priv->pause_auto && priv->pause_rx && priv->pause_tx)
821 phydev->advertising |= SUPPORTED_Pause;
823 phydev->advertising &= ~SUPPORTED_Pause;
825 dev_info(kdev, "attached PHY at address %d [%s]\n",
826 phydev->addr, phydev->drv->name);
829 priv->old_duplex = -1;
830 priv->old_pause = -1;
831 priv->phydev = phydev;
834 /* mask all interrupts and request them */
835 enet_writel(priv, 0, ENET_IRMASK_REG);
836 enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->rx_chan));
837 enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->tx_chan));
839 ret = request_irq(dev->irq, bcm_enet_isr_mac, 0, dev->name, dev);
841 goto out_phy_disconnect;
843 ret = request_irq(priv->irq_rx, bcm_enet_isr_dma, IRQF_DISABLED,
848 ret = request_irq(priv->irq_tx, bcm_enet_isr_dma,
849 IRQF_DISABLED, dev->name, dev);
853 /* initialize perfect match registers */
854 for (i = 0; i < 4; i++) {
855 enet_writel(priv, 0, ENET_PML_REG(i));
856 enet_writel(priv, 0, ENET_PMH_REG(i));
859 /* write device mac address */
860 memcpy(addr.sa_data, dev->dev_addr, ETH_ALEN);
861 bcm_enet_set_mac_address(dev, &addr);
863 /* allocate rx dma ring */
864 size = priv->rx_ring_size * sizeof(struct bcm_enet_desc);
865 p = dma_alloc_coherent(kdev, size, &priv->rx_desc_dma,
866 GFP_KERNEL | __GFP_ZERO);
872 priv->rx_desc_alloc_size = size;
873 priv->rx_desc_cpu = p;
875 /* allocate tx dma ring */
876 size = priv->tx_ring_size * sizeof(struct bcm_enet_desc);
877 p = dma_alloc_coherent(kdev, size, &priv->tx_desc_dma,
878 GFP_KERNEL | __GFP_ZERO);
881 goto out_free_rx_ring;
884 priv->tx_desc_alloc_size = size;
885 priv->tx_desc_cpu = p;
887 priv->tx_skb = kcalloc(priv->tx_ring_size, sizeof(struct sk_buff *),
891 goto out_free_tx_ring;
894 priv->tx_desc_count = priv->tx_ring_size;
895 priv->tx_dirty_desc = 0;
896 priv->tx_curr_desc = 0;
897 spin_lock_init(&priv->tx_lock);
899 /* init & fill rx ring with skbs */
900 priv->rx_skb = kcalloc(priv->rx_ring_size, sizeof(struct sk_buff *),
904 goto out_free_tx_skb;
907 priv->rx_desc_count = 0;
908 priv->rx_dirty_desc = 0;
909 priv->rx_curr_desc = 0;
911 /* initialize flow control buffer allocation */
912 enet_dma_writel(priv, ENETDMA_BUFALLOC_FORCE_MASK | 0,
913 ENETDMA_BUFALLOC_REG(priv->rx_chan));
915 if (bcm_enet_refill_rx(dev)) {
916 dev_err(kdev, "cannot allocate rx skb queue\n");
921 /* write rx & tx ring addresses */
922 enet_dma_writel(priv, priv->rx_desc_dma,
923 ENETDMA_RSTART_REG(priv->rx_chan));
924 enet_dma_writel(priv, priv->tx_desc_dma,
925 ENETDMA_RSTART_REG(priv->tx_chan));
927 /* clear remaining state ram for rx & tx channel */
928 enet_dma_writel(priv, 0, ENETDMA_SRAM2_REG(priv->rx_chan));
929 enet_dma_writel(priv, 0, ENETDMA_SRAM2_REG(priv->tx_chan));
930 enet_dma_writel(priv, 0, ENETDMA_SRAM3_REG(priv->rx_chan));
931 enet_dma_writel(priv, 0, ENETDMA_SRAM3_REG(priv->tx_chan));
932 enet_dma_writel(priv, 0, ENETDMA_SRAM4_REG(priv->rx_chan));
933 enet_dma_writel(priv, 0, ENETDMA_SRAM4_REG(priv->tx_chan));
935 /* set max rx/tx length */
936 enet_writel(priv, priv->hw_mtu, ENET_RXMAXLEN_REG);
937 enet_writel(priv, priv->hw_mtu, ENET_TXMAXLEN_REG);
939 /* set dma maximum burst len */
940 enet_dma_writel(priv, BCMENET_DMA_MAXBURST,
941 ENETDMA_MAXBURST_REG(priv->rx_chan));
942 enet_dma_writel(priv, BCMENET_DMA_MAXBURST,
943 ENETDMA_MAXBURST_REG(priv->tx_chan));
945 /* set correct transmit fifo watermark */
946 enet_writel(priv, BCMENET_TX_FIFO_TRESH, ENET_TXWMARK_REG);
948 /* set flow control low/high threshold to 1/3 / 2/3 */
949 val = priv->rx_ring_size / 3;
950 enet_dma_writel(priv, val, ENETDMA_FLOWCL_REG(priv->rx_chan));
951 val = (priv->rx_ring_size * 2) / 3;
952 enet_dma_writel(priv, val, ENETDMA_FLOWCH_REG(priv->rx_chan));
954 /* all set, enable mac and interrupts, start dma engine and
955 * kick rx dma channel */
957 val = enet_readl(priv, ENET_CTL_REG);
958 val |= ENET_CTL_ENABLE_MASK;
959 enet_writel(priv, val, ENET_CTL_REG);
960 enet_dma_writel(priv, ENETDMA_CFG_EN_MASK, ENETDMA_CFG_REG);
961 enet_dma_writel(priv, ENETDMA_CHANCFG_EN_MASK,
962 ENETDMA_CHANCFG_REG(priv->rx_chan));
964 /* watch "mib counters about to overflow" interrupt */
965 enet_writel(priv, ENET_IR_MIB, ENET_IR_REG);
966 enet_writel(priv, ENET_IR_MIB, ENET_IRMASK_REG);
968 /* watch "packet transferred" interrupt in rx and tx */
969 enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK,
970 ENETDMA_IR_REG(priv->rx_chan));
971 enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK,
972 ENETDMA_IR_REG(priv->tx_chan));
974 /* make sure we enable napi before rx interrupt */
975 napi_enable(&priv->napi);
977 enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK,
978 ENETDMA_IRMASK_REG(priv->rx_chan));
979 enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK,
980 ENETDMA_IRMASK_REG(priv->tx_chan));
983 phy_start(priv->phydev);
985 bcm_enet_adjust_link(dev);
987 netif_start_queue(dev);
991 for (i = 0; i < priv->rx_ring_size; i++) {
992 struct bcm_enet_desc *desc;
994 if (!priv->rx_skb[i])
997 desc = &priv->rx_desc_cpu[i];
998 dma_unmap_single(kdev, desc->address, priv->rx_skb_size,
1000 kfree_skb(priv->rx_skb[i]);
1002 kfree(priv->rx_skb);
1005 kfree(priv->tx_skb);
1008 dma_free_coherent(kdev, priv->tx_desc_alloc_size,
1009 priv->tx_desc_cpu, priv->tx_desc_dma);
1012 dma_free_coherent(kdev, priv->rx_desc_alloc_size,
1013 priv->rx_desc_cpu, priv->rx_desc_dma);
1016 free_irq(priv->irq_tx, dev);
1019 free_irq(priv->irq_rx, dev);
1022 free_irq(dev->irq, dev);
1025 phy_disconnect(priv->phydev);
1033 static void bcm_enet_disable_mac(struct bcm_enet_priv *priv)
1038 val = enet_readl(priv, ENET_CTL_REG);
1039 val |= ENET_CTL_DISABLE_MASK;
1040 enet_writel(priv, val, ENET_CTL_REG);
1046 val = enet_readl(priv, ENET_CTL_REG);
1047 if (!(val & ENET_CTL_DISABLE_MASK))
1054 * disable dma in given channel
1056 static void bcm_enet_disable_dma(struct bcm_enet_priv *priv, int chan)
1060 enet_dma_writel(priv, 0, ENETDMA_CHANCFG_REG(chan));
1066 val = enet_dma_readl(priv, ENETDMA_CHANCFG_REG(chan));
1067 if (!(val & ENETDMA_CHANCFG_EN_MASK))
1076 static int bcm_enet_stop(struct net_device *dev)
1078 struct bcm_enet_priv *priv;
1079 struct device *kdev;
1082 priv = netdev_priv(dev);
1083 kdev = &priv->pdev->dev;
1085 netif_stop_queue(dev);
1086 napi_disable(&priv->napi);
1088 phy_stop(priv->phydev);
1089 del_timer_sync(&priv->rx_timeout);
1091 /* mask all interrupts */
1092 enet_writel(priv, 0, ENET_IRMASK_REG);
1093 enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->rx_chan));
1094 enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->tx_chan));
1096 /* make sure no mib update is scheduled */
1097 cancel_work_sync(&priv->mib_update_task);
1099 /* disable dma & mac */
1100 bcm_enet_disable_dma(priv, priv->tx_chan);
1101 bcm_enet_disable_dma(priv, priv->rx_chan);
1102 bcm_enet_disable_mac(priv);
1104 /* force reclaim of all tx buffers */
1105 bcm_enet_tx_reclaim(dev, 1);
1107 /* free the rx skb ring */
1108 for (i = 0; i < priv->rx_ring_size; i++) {
1109 struct bcm_enet_desc *desc;
1111 if (!priv->rx_skb[i])
1114 desc = &priv->rx_desc_cpu[i];
1115 dma_unmap_single(kdev, desc->address, priv->rx_skb_size,
1117 kfree_skb(priv->rx_skb[i]);
1120 /* free remaining allocated memory */
1121 kfree(priv->rx_skb);
1122 kfree(priv->tx_skb);
1123 dma_free_coherent(kdev, priv->rx_desc_alloc_size,
1124 priv->rx_desc_cpu, priv->rx_desc_dma);
1125 dma_free_coherent(kdev, priv->tx_desc_alloc_size,
1126 priv->tx_desc_cpu, priv->tx_desc_dma);
1127 free_irq(priv->irq_tx, dev);
1128 free_irq(priv->irq_rx, dev);
1129 free_irq(dev->irq, dev);
1132 if (priv->has_phy) {
1133 phy_disconnect(priv->phydev);
1134 priv->phydev = NULL;
1143 struct bcm_enet_stats {
1144 char stat_string[ETH_GSTRING_LEN];
1150 #define GEN_STAT(m) sizeof(((struct bcm_enet_priv *)0)->m), \
1151 offsetof(struct bcm_enet_priv, m)
1152 #define DEV_STAT(m) sizeof(((struct net_device_stats *)0)->m), \
1153 offsetof(struct net_device_stats, m)
1155 static const struct bcm_enet_stats bcm_enet_gstrings_stats[] = {
1156 { "rx_packets", DEV_STAT(rx_packets), -1 },
1157 { "tx_packets", DEV_STAT(tx_packets), -1 },
1158 { "rx_bytes", DEV_STAT(rx_bytes), -1 },
1159 { "tx_bytes", DEV_STAT(tx_bytes), -1 },
1160 { "rx_errors", DEV_STAT(rx_errors), -1 },
1161 { "tx_errors", DEV_STAT(tx_errors), -1 },
1162 { "rx_dropped", DEV_STAT(rx_dropped), -1 },
1163 { "tx_dropped", DEV_STAT(tx_dropped), -1 },
1165 { "rx_good_octets", GEN_STAT(mib.rx_gd_octets), ETH_MIB_RX_GD_OCTETS},
1166 { "rx_good_pkts", GEN_STAT(mib.rx_gd_pkts), ETH_MIB_RX_GD_PKTS },
1167 { "rx_broadcast", GEN_STAT(mib.rx_brdcast), ETH_MIB_RX_BRDCAST },
1168 { "rx_multicast", GEN_STAT(mib.rx_mult), ETH_MIB_RX_MULT },
1169 { "rx_64_octets", GEN_STAT(mib.rx_64), ETH_MIB_RX_64 },
1170 { "rx_65_127_oct", GEN_STAT(mib.rx_65_127), ETH_MIB_RX_65_127 },
1171 { "rx_128_255_oct", GEN_STAT(mib.rx_128_255), ETH_MIB_RX_128_255 },
1172 { "rx_256_511_oct", GEN_STAT(mib.rx_256_511), ETH_MIB_RX_256_511 },
1173 { "rx_512_1023_oct", GEN_STAT(mib.rx_512_1023), ETH_MIB_RX_512_1023 },
1174 { "rx_1024_max_oct", GEN_STAT(mib.rx_1024_max), ETH_MIB_RX_1024_MAX },
1175 { "rx_jabber", GEN_STAT(mib.rx_jab), ETH_MIB_RX_JAB },
1176 { "rx_oversize", GEN_STAT(mib.rx_ovr), ETH_MIB_RX_OVR },
1177 { "rx_fragment", GEN_STAT(mib.rx_frag), ETH_MIB_RX_FRAG },
1178 { "rx_dropped", GEN_STAT(mib.rx_drop), ETH_MIB_RX_DROP },
1179 { "rx_crc_align", GEN_STAT(mib.rx_crc_align), ETH_MIB_RX_CRC_ALIGN },
1180 { "rx_undersize", GEN_STAT(mib.rx_und), ETH_MIB_RX_UND },
1181 { "rx_crc", GEN_STAT(mib.rx_crc), ETH_MIB_RX_CRC },
1182 { "rx_align", GEN_STAT(mib.rx_align), ETH_MIB_RX_ALIGN },
1183 { "rx_symbol_error", GEN_STAT(mib.rx_sym), ETH_MIB_RX_SYM },
1184 { "rx_pause", GEN_STAT(mib.rx_pause), ETH_MIB_RX_PAUSE },
1185 { "rx_control", GEN_STAT(mib.rx_cntrl), ETH_MIB_RX_CNTRL },
1187 { "tx_good_octets", GEN_STAT(mib.tx_gd_octets), ETH_MIB_TX_GD_OCTETS },
1188 { "tx_good_pkts", GEN_STAT(mib.tx_gd_pkts), ETH_MIB_TX_GD_PKTS },
1189 { "tx_broadcast", GEN_STAT(mib.tx_brdcast), ETH_MIB_TX_BRDCAST },
1190 { "tx_multicast", GEN_STAT(mib.tx_mult), ETH_MIB_TX_MULT },
1191 { "tx_64_oct", GEN_STAT(mib.tx_64), ETH_MIB_TX_64 },
1192 { "tx_65_127_oct", GEN_STAT(mib.tx_65_127), ETH_MIB_TX_65_127 },
1193 { "tx_128_255_oct", GEN_STAT(mib.tx_128_255), ETH_MIB_TX_128_255 },
1194 { "tx_256_511_oct", GEN_STAT(mib.tx_256_511), ETH_MIB_TX_256_511 },
1195 { "tx_512_1023_oct", GEN_STAT(mib.tx_512_1023), ETH_MIB_TX_512_1023},
1196 { "tx_1024_max_oct", GEN_STAT(mib.tx_1024_max), ETH_MIB_TX_1024_MAX },
1197 { "tx_jabber", GEN_STAT(mib.tx_jab), ETH_MIB_TX_JAB },
1198 { "tx_oversize", GEN_STAT(mib.tx_ovr), ETH_MIB_TX_OVR },
1199 { "tx_fragment", GEN_STAT(mib.tx_frag), ETH_MIB_TX_FRAG },
1200 { "tx_underrun", GEN_STAT(mib.tx_underrun), ETH_MIB_TX_UNDERRUN },
1201 { "tx_collisions", GEN_STAT(mib.tx_col), ETH_MIB_TX_COL },
1202 { "tx_single_collision", GEN_STAT(mib.tx_1_col), ETH_MIB_TX_1_COL },
1203 { "tx_multiple_collision", GEN_STAT(mib.tx_m_col), ETH_MIB_TX_M_COL },
1204 { "tx_excess_collision", GEN_STAT(mib.tx_ex_col), ETH_MIB_TX_EX_COL },
1205 { "tx_late_collision", GEN_STAT(mib.tx_late), ETH_MIB_TX_LATE },
1206 { "tx_deferred", GEN_STAT(mib.tx_def), ETH_MIB_TX_DEF },
1207 { "tx_carrier_sense", GEN_STAT(mib.tx_crs), ETH_MIB_TX_CRS },
1208 { "tx_pause", GEN_STAT(mib.tx_pause), ETH_MIB_TX_PAUSE },
1212 #define BCM_ENET_STATS_LEN \
1213 (sizeof(bcm_enet_gstrings_stats) / sizeof(struct bcm_enet_stats))
1215 static const u32 unused_mib_regs[] = {
1216 ETH_MIB_TX_ALL_OCTETS,
1217 ETH_MIB_TX_ALL_PKTS,
1218 ETH_MIB_RX_ALL_OCTETS,
1219 ETH_MIB_RX_ALL_PKTS,
1223 static void bcm_enet_get_drvinfo(struct net_device *netdev,
1224 struct ethtool_drvinfo *drvinfo)
1226 strlcpy(drvinfo->driver, bcm_enet_driver_name, sizeof(drvinfo->driver));
1227 strlcpy(drvinfo->version, bcm_enet_driver_version,
1228 sizeof(drvinfo->version));
1229 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
1230 strlcpy(drvinfo->bus_info, "bcm63xx", sizeof(drvinfo->bus_info));
1231 drvinfo->n_stats = BCM_ENET_STATS_LEN;
1234 static int bcm_enet_get_sset_count(struct net_device *netdev,
1237 switch (string_set) {
1239 return BCM_ENET_STATS_LEN;
1245 static void bcm_enet_get_strings(struct net_device *netdev,
1246 u32 stringset, u8 *data)
1250 switch (stringset) {
1252 for (i = 0; i < BCM_ENET_STATS_LEN; i++) {
1253 memcpy(data + i * ETH_GSTRING_LEN,
1254 bcm_enet_gstrings_stats[i].stat_string,
1261 static void update_mib_counters(struct bcm_enet_priv *priv)
1265 for (i = 0; i < BCM_ENET_STATS_LEN; i++) {
1266 const struct bcm_enet_stats *s;
1270 s = &bcm_enet_gstrings_stats[i];
1271 if (s->mib_reg == -1)
1274 val = enet_readl(priv, ENET_MIB_REG(s->mib_reg));
1275 p = (char *)priv + s->stat_offset;
1277 if (s->sizeof_stat == sizeof(u64))
1283 /* also empty unused mib counters to make sure mib counter
1284 * overflow interrupt is cleared */
1285 for (i = 0; i < ARRAY_SIZE(unused_mib_regs); i++)
1286 (void)enet_readl(priv, ENET_MIB_REG(unused_mib_regs[i]));
1289 static void bcm_enet_update_mib_counters_defer(struct work_struct *t)
1291 struct bcm_enet_priv *priv;
1293 priv = container_of(t, struct bcm_enet_priv, mib_update_task);
1294 mutex_lock(&priv->mib_update_lock);
1295 update_mib_counters(priv);
1296 mutex_unlock(&priv->mib_update_lock);
1298 /* reenable mib interrupt */
1299 if (netif_running(priv->net_dev))
1300 enet_writel(priv, ENET_IR_MIB, ENET_IRMASK_REG);
1303 static void bcm_enet_get_ethtool_stats(struct net_device *netdev,
1304 struct ethtool_stats *stats,
1307 struct bcm_enet_priv *priv;
1310 priv = netdev_priv(netdev);
1312 mutex_lock(&priv->mib_update_lock);
1313 update_mib_counters(priv);
1315 for (i = 0; i < BCM_ENET_STATS_LEN; i++) {
1316 const struct bcm_enet_stats *s;
1319 s = &bcm_enet_gstrings_stats[i];
1320 if (s->mib_reg == -1)
1321 p = (char *)&netdev->stats;
1324 p += s->stat_offset;
1325 data[i] = (s->sizeof_stat == sizeof(u64)) ?
1326 *(u64 *)p : *(u32 *)p;
1328 mutex_unlock(&priv->mib_update_lock);
1331 static int bcm_enet_get_settings(struct net_device *dev,
1332 struct ethtool_cmd *cmd)
1334 struct bcm_enet_priv *priv;
1336 priv = netdev_priv(dev);
1341 if (priv->has_phy) {
1344 return phy_ethtool_gset(priv->phydev, cmd);
1347 ethtool_cmd_speed_set(cmd, ((priv->force_speed_100)
1348 ? SPEED_100 : SPEED_10));
1349 cmd->duplex = (priv->force_duplex_full) ?
1350 DUPLEX_FULL : DUPLEX_HALF;
1351 cmd->supported = ADVERTISED_10baseT_Half |
1352 ADVERTISED_10baseT_Full |
1353 ADVERTISED_100baseT_Half |
1354 ADVERTISED_100baseT_Full;
1355 cmd->advertising = 0;
1356 cmd->port = PORT_MII;
1357 cmd->transceiver = XCVR_EXTERNAL;
1362 static int bcm_enet_set_settings(struct net_device *dev,
1363 struct ethtool_cmd *cmd)
1365 struct bcm_enet_priv *priv;
1367 priv = netdev_priv(dev);
1368 if (priv->has_phy) {
1371 return phy_ethtool_sset(priv->phydev, cmd);
1375 (cmd->speed != SPEED_100 && cmd->speed != SPEED_10) ||
1376 cmd->port != PORT_MII)
1379 priv->force_speed_100 = (cmd->speed == SPEED_100) ? 1 : 0;
1380 priv->force_duplex_full = (cmd->duplex == DUPLEX_FULL) ? 1 : 0;
1382 if (netif_running(dev))
1383 bcm_enet_adjust_link(dev);
1388 static void bcm_enet_get_ringparam(struct net_device *dev,
1389 struct ethtool_ringparam *ering)
1391 struct bcm_enet_priv *priv;
1393 priv = netdev_priv(dev);
1395 /* rx/tx ring is actually only limited by memory */
1396 ering->rx_max_pending = 8192;
1397 ering->tx_max_pending = 8192;
1398 ering->rx_pending = priv->rx_ring_size;
1399 ering->tx_pending = priv->tx_ring_size;
1402 static int bcm_enet_set_ringparam(struct net_device *dev,
1403 struct ethtool_ringparam *ering)
1405 struct bcm_enet_priv *priv;
1408 priv = netdev_priv(dev);
1411 if (netif_running(dev)) {
1416 priv->rx_ring_size = ering->rx_pending;
1417 priv->tx_ring_size = ering->tx_pending;
1422 err = bcm_enet_open(dev);
1426 bcm_enet_set_multicast_list(dev);
1431 static void bcm_enet_get_pauseparam(struct net_device *dev,
1432 struct ethtool_pauseparam *ecmd)
1434 struct bcm_enet_priv *priv;
1436 priv = netdev_priv(dev);
1437 ecmd->autoneg = priv->pause_auto;
1438 ecmd->rx_pause = priv->pause_rx;
1439 ecmd->tx_pause = priv->pause_tx;
1442 static int bcm_enet_set_pauseparam(struct net_device *dev,
1443 struct ethtool_pauseparam *ecmd)
1445 struct bcm_enet_priv *priv;
1447 priv = netdev_priv(dev);
1449 if (priv->has_phy) {
1450 if (ecmd->autoneg && (ecmd->rx_pause != ecmd->tx_pause)) {
1451 /* asymetric pause mode not supported,
1452 * actually possible but integrated PHY has RO
1457 /* no pause autoneg on direct mii connection */
1462 priv->pause_auto = ecmd->autoneg;
1463 priv->pause_rx = ecmd->rx_pause;
1464 priv->pause_tx = ecmd->tx_pause;
1469 static const struct ethtool_ops bcm_enet_ethtool_ops = {
1470 .get_strings = bcm_enet_get_strings,
1471 .get_sset_count = bcm_enet_get_sset_count,
1472 .get_ethtool_stats = bcm_enet_get_ethtool_stats,
1473 .get_settings = bcm_enet_get_settings,
1474 .set_settings = bcm_enet_set_settings,
1475 .get_drvinfo = bcm_enet_get_drvinfo,
1476 .get_link = ethtool_op_get_link,
1477 .get_ringparam = bcm_enet_get_ringparam,
1478 .set_ringparam = bcm_enet_set_ringparam,
1479 .get_pauseparam = bcm_enet_get_pauseparam,
1480 .set_pauseparam = bcm_enet_set_pauseparam,
1483 static int bcm_enet_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1485 struct bcm_enet_priv *priv;
1487 priv = netdev_priv(dev);
1488 if (priv->has_phy) {
1491 return phy_mii_ioctl(priv->phydev, rq, cmd);
1493 struct mii_if_info mii;
1496 mii.mdio_read = bcm_enet_mdio_read_mii;
1497 mii.mdio_write = bcm_enet_mdio_write_mii;
1499 mii.phy_id_mask = 0x3f;
1500 mii.reg_num_mask = 0x1f;
1501 return generic_mii_ioctl(&mii, if_mii(rq), cmd, NULL);
1506 * calculate actual hardware mtu
1508 static int compute_hw_mtu(struct bcm_enet_priv *priv, int mtu)
1514 /* add ethernet header + vlan tag size */
1515 actual_mtu += VLAN_ETH_HLEN;
1517 if (actual_mtu < 64 || actual_mtu > BCMENET_MAX_MTU)
1521 * setup maximum size before we get overflow mark in
1522 * descriptor, note that this will not prevent reception of
1523 * big frames, they will be split into multiple buffers
1526 priv->hw_mtu = actual_mtu;
1529 * align rx buffer size to dma burst len, account FCS since
1532 priv->rx_skb_size = ALIGN(actual_mtu + ETH_FCS_LEN,
1533 BCMENET_DMA_MAXBURST * 4);
1538 * adjust mtu, can't be called while device is running
1540 static int bcm_enet_change_mtu(struct net_device *dev, int new_mtu)
1544 if (netif_running(dev))
1547 ret = compute_hw_mtu(netdev_priv(dev), new_mtu);
1555 * preinit hardware to allow mii operation while device is down
1557 static void bcm_enet_hw_preinit(struct bcm_enet_priv *priv)
1562 /* make sure mac is disabled */
1563 bcm_enet_disable_mac(priv);
1565 /* soft reset mac */
1566 val = ENET_CTL_SRESET_MASK;
1567 enet_writel(priv, val, ENET_CTL_REG);
1572 val = enet_readl(priv, ENET_CTL_REG);
1573 if (!(val & ENET_CTL_SRESET_MASK))
1578 /* select correct mii interface */
1579 val = enet_readl(priv, ENET_CTL_REG);
1580 if (priv->use_external_mii)
1581 val |= ENET_CTL_EPHYSEL_MASK;
1583 val &= ~ENET_CTL_EPHYSEL_MASK;
1584 enet_writel(priv, val, ENET_CTL_REG);
1586 /* turn on mdc clock */
1587 enet_writel(priv, (0x1f << ENET_MIISC_MDCFREQDIV_SHIFT) |
1588 ENET_MIISC_PREAMBLEEN_MASK, ENET_MIISC_REG);
1590 /* set mib counters to self-clear when read */
1591 val = enet_readl(priv, ENET_MIBCTL_REG);
1592 val |= ENET_MIBCTL_RDCLEAR_MASK;
1593 enet_writel(priv, val, ENET_MIBCTL_REG);
1596 static const struct net_device_ops bcm_enet_ops = {
1597 .ndo_open = bcm_enet_open,
1598 .ndo_stop = bcm_enet_stop,
1599 .ndo_start_xmit = bcm_enet_start_xmit,
1600 .ndo_set_mac_address = bcm_enet_set_mac_address,
1601 .ndo_set_rx_mode = bcm_enet_set_multicast_list,
1602 .ndo_do_ioctl = bcm_enet_ioctl,
1603 .ndo_change_mtu = bcm_enet_change_mtu,
1604 #ifdef CONFIG_NET_POLL_CONTROLLER
1605 .ndo_poll_controller = bcm_enet_netpoll,
1610 * allocate netdevice, request register memory and register device.
1612 static int bcm_enet_probe(struct platform_device *pdev)
1614 struct bcm_enet_priv *priv;
1615 struct net_device *dev;
1616 struct bcm63xx_enet_platform_data *pd;
1617 struct resource *res_mem, *res_irq, *res_irq_rx, *res_irq_tx;
1618 struct mii_bus *bus;
1619 const char *clk_name;
1622 /* stop if shared driver failed, assume driver->probe will be
1623 * called in the same order we register devices (correct ?) */
1624 if (!bcm_enet_shared_base)
1627 res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1628 res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1629 res_irq_rx = platform_get_resource(pdev, IORESOURCE_IRQ, 1);
1630 res_irq_tx = platform_get_resource(pdev, IORESOURCE_IRQ, 2);
1631 if (!res_mem || !res_irq || !res_irq_rx || !res_irq_tx)
1635 dev = alloc_etherdev(sizeof(*priv));
1638 priv = netdev_priv(dev);
1640 ret = compute_hw_mtu(priv, dev->mtu);
1644 priv->base = devm_request_and_ioremap(&pdev->dev, res_mem);
1645 if (priv->base == NULL) {
1650 dev->irq = priv->irq = res_irq->start;
1651 priv->irq_rx = res_irq_rx->start;
1652 priv->irq_tx = res_irq_tx->start;
1653 priv->mac_id = pdev->id;
1655 /* get rx & tx dma channel id for this mac */
1656 if (priv->mac_id == 0) {
1666 priv->mac_clk = clk_get(&pdev->dev, clk_name);
1667 if (IS_ERR(priv->mac_clk)) {
1668 ret = PTR_ERR(priv->mac_clk);
1671 clk_prepare_enable(priv->mac_clk);
1673 /* initialize default and fetch platform data */
1674 priv->rx_ring_size = BCMENET_DEF_RX_DESC;
1675 priv->tx_ring_size = BCMENET_DEF_TX_DESC;
1677 pd = pdev->dev.platform_data;
1679 memcpy(dev->dev_addr, pd->mac_addr, ETH_ALEN);
1680 priv->has_phy = pd->has_phy;
1681 priv->phy_id = pd->phy_id;
1682 priv->has_phy_interrupt = pd->has_phy_interrupt;
1683 priv->phy_interrupt = pd->phy_interrupt;
1684 priv->use_external_mii = !pd->use_internal_phy;
1685 priv->pause_auto = pd->pause_auto;
1686 priv->pause_rx = pd->pause_rx;
1687 priv->pause_tx = pd->pause_tx;
1688 priv->force_duplex_full = pd->force_duplex_full;
1689 priv->force_speed_100 = pd->force_speed_100;
1692 if (priv->mac_id == 0 && priv->has_phy && !priv->use_external_mii) {
1693 /* using internal PHY, enable clock */
1694 priv->phy_clk = clk_get(&pdev->dev, "ephy");
1695 if (IS_ERR(priv->phy_clk)) {
1696 ret = PTR_ERR(priv->phy_clk);
1697 priv->phy_clk = NULL;
1698 goto out_put_clk_mac;
1700 clk_prepare_enable(priv->phy_clk);
1703 /* do minimal hardware init to be able to probe mii bus */
1704 bcm_enet_hw_preinit(priv);
1706 /* MII bus registration */
1707 if (priv->has_phy) {
1709 priv->mii_bus = mdiobus_alloc();
1710 if (!priv->mii_bus) {
1715 bus = priv->mii_bus;
1716 bus->name = "bcm63xx_enet MII bus";
1717 bus->parent = &pdev->dev;
1719 bus->read = bcm_enet_mdio_read_phylib;
1720 bus->write = bcm_enet_mdio_write_phylib;
1721 sprintf(bus->id, "%s-%d", pdev->name, priv->mac_id);
1723 /* only probe bus where we think the PHY is, because
1724 * the mdio read operation return 0 instead of 0xffff
1725 * if a slave is not present on hw */
1726 bus->phy_mask = ~(1 << priv->phy_id);
1728 bus->irq = devm_kzalloc(&pdev->dev, sizeof(int) * PHY_MAX_ADDR,
1735 if (priv->has_phy_interrupt)
1736 bus->irq[priv->phy_id] = priv->phy_interrupt;
1738 bus->irq[priv->phy_id] = PHY_POLL;
1740 ret = mdiobus_register(bus);
1742 dev_err(&pdev->dev, "unable to register mdio bus\n");
1747 /* run platform code to initialize PHY device */
1748 if (pd->mii_config &&
1749 pd->mii_config(dev, 1, bcm_enet_mdio_read_mii,
1750 bcm_enet_mdio_write_mii)) {
1751 dev_err(&pdev->dev, "unable to configure mdio bus\n");
1756 spin_lock_init(&priv->rx_lock);
1758 /* init rx timeout (used for oom) */
1759 init_timer(&priv->rx_timeout);
1760 priv->rx_timeout.function = bcm_enet_refill_rx_timer;
1761 priv->rx_timeout.data = (unsigned long)dev;
1763 /* init the mib update lock&work */
1764 mutex_init(&priv->mib_update_lock);
1765 INIT_WORK(&priv->mib_update_task, bcm_enet_update_mib_counters_defer);
1767 /* zero mib counters */
1768 for (i = 0; i < ENET_MIB_REG_COUNT; i++)
1769 enet_writel(priv, 0, ENET_MIB_REG(i));
1771 /* register netdevice */
1772 dev->netdev_ops = &bcm_enet_ops;
1773 netif_napi_add(dev, &priv->napi, bcm_enet_poll, 16);
1775 SET_ETHTOOL_OPS(dev, &bcm_enet_ethtool_ops);
1776 SET_NETDEV_DEV(dev, &pdev->dev);
1778 ret = register_netdev(dev);
1780 goto out_unregister_mdio;
1782 netif_carrier_off(dev);
1783 platform_set_drvdata(pdev, dev);
1785 priv->net_dev = dev;
1789 out_unregister_mdio:
1791 mdiobus_unregister(priv->mii_bus);
1795 mdiobus_free(priv->mii_bus);
1798 /* turn off mdc clock */
1799 enet_writel(priv, 0, ENET_MIISC_REG);
1800 if (priv->phy_clk) {
1801 clk_disable_unprepare(priv->phy_clk);
1802 clk_put(priv->phy_clk);
1806 clk_disable_unprepare(priv->mac_clk);
1807 clk_put(priv->mac_clk);
1815 * exit func, stops hardware and unregisters netdevice
1817 static int bcm_enet_remove(struct platform_device *pdev)
1819 struct bcm_enet_priv *priv;
1820 struct net_device *dev;
1822 /* stop netdevice */
1823 dev = platform_get_drvdata(pdev);
1824 priv = netdev_priv(dev);
1825 unregister_netdev(dev);
1827 /* turn off mdc clock */
1828 enet_writel(priv, 0, ENET_MIISC_REG);
1830 if (priv->has_phy) {
1831 mdiobus_unregister(priv->mii_bus);
1832 mdiobus_free(priv->mii_bus);
1834 struct bcm63xx_enet_platform_data *pd;
1836 pd = pdev->dev.platform_data;
1837 if (pd && pd->mii_config)
1838 pd->mii_config(dev, 0, bcm_enet_mdio_read_mii,
1839 bcm_enet_mdio_write_mii);
1842 /* disable hw block clocks */
1843 if (priv->phy_clk) {
1844 clk_disable_unprepare(priv->phy_clk);
1845 clk_put(priv->phy_clk);
1847 clk_disable_unprepare(priv->mac_clk);
1848 clk_put(priv->mac_clk);
1850 platform_set_drvdata(pdev, NULL);
1855 struct platform_driver bcm63xx_enet_driver = {
1856 .probe = bcm_enet_probe,
1857 .remove = bcm_enet_remove,
1859 .name = "bcm63xx_enet",
1860 .owner = THIS_MODULE,
1865 * reserve & remap memory space shared between all macs
1867 static int bcm_enet_shared_probe(struct platform_device *pdev)
1869 struct resource *res;
1871 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1875 bcm_enet_shared_base = devm_request_and_ioremap(&pdev->dev, res);
1876 if (!bcm_enet_shared_base)
1882 static int bcm_enet_shared_remove(struct platform_device *pdev)
1888 * this "shared" driver is needed because both macs share a single
1891 struct platform_driver bcm63xx_enet_shared_driver = {
1892 .probe = bcm_enet_shared_probe,
1893 .remove = bcm_enet_shared_remove,
1895 .name = "bcm63xx_enet_shared",
1896 .owner = THIS_MODULE,
1903 static int __init bcm_enet_init(void)
1907 ret = platform_driver_register(&bcm63xx_enet_shared_driver);
1911 ret = platform_driver_register(&bcm63xx_enet_driver);
1913 platform_driver_unregister(&bcm63xx_enet_shared_driver);
1918 static void __exit bcm_enet_exit(void)
1920 platform_driver_unregister(&bcm63xx_enet_driver);
1921 platform_driver_unregister(&bcm63xx_enet_shared_driver);
1925 module_init(bcm_enet_init);
1926 module_exit(bcm_enet_exit);
1928 MODULE_DESCRIPTION("BCM63xx internal ethernet mac driver");
1929 MODULE_AUTHOR("Maxime Bizon <mbizon@freebox.fr>");
1930 MODULE_LICENSE("GPL");