2 * Combined Ethernet driver for Motorola MPC8xx and MPC82xx.
4 * Copyright (c) 2003 Intracom S.A.
5 * by Pantelis Antoniou <panto@intracom.gr>
7 * 2005 (c) MontaVista Software, Inc.
8 * Vitaly Bordug <vbordug@ru.mvista.com>
10 * Heavily based on original FEC driver by Dan Malek <dan@embeddededge.com>
11 * and modifications by Joakim Tjernlund <joakim.tjernlund@lumentis.se>
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/types.h>
21 #include <linux/string.h>
22 #include <linux/ptrace.h>
23 #include <linux/errno.h>
24 #include <linux/ioport.h>
25 #include <linux/slab.h>
26 #include <linux/interrupt.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/netdevice.h>
30 #include <linux/etherdevice.h>
31 #include <linux/skbuff.h>
32 #include <linux/spinlock.h>
33 #include <linux/mii.h>
34 #include <linux/ethtool.h>
35 #include <linux/bitops.h>
37 #include <linux/platform_device.h>
38 #include <linux/phy.h>
40 #include <linux/vmalloc.h>
41 #include <asm/pgtable.h>
43 #include <asm/uaccess.h>
45 #ifdef CONFIG_PPC_CPM_NEW_BINDING
46 #include <asm/of_platform.h>
51 /*************************************************/
53 #ifndef CONFIG_PPC_CPM_NEW_BINDING
54 static char version[] __devinitdata =
55 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")" "\n";
58 MODULE_AUTHOR("Pantelis Antoniou <panto@intracom.gr>");
59 MODULE_DESCRIPTION("Freescale Ethernet Driver");
60 MODULE_LICENSE("GPL");
61 MODULE_VERSION(DRV_MODULE_VERSION);
63 static int fs_enet_debug = -1; /* -1 == use FS_ENET_DEF_MSG_ENABLE as value */
64 module_param(fs_enet_debug, int, 0);
65 MODULE_PARM_DESC(fs_enet_debug,
66 "Freescale bitmapped debugging message enable value");
68 #ifdef CONFIG_NET_POLL_CONTROLLER
69 static void fs_enet_netpoll(struct net_device *dev);
72 static void fs_set_multicast_list(struct net_device *dev)
74 struct fs_enet_private *fep = netdev_priv(dev);
76 (*fep->ops->set_multicast_list)(dev);
79 static void skb_align(struct sk_buff *skb, int align)
81 int off = ((unsigned long)skb->data) & (align - 1);
84 skb_reserve(skb, align - off);
87 /* NAPI receive function */
88 static int fs_enet_rx_napi(struct napi_struct *napi, int budget)
90 struct fs_enet_private *fep = container_of(napi, struct fs_enet_private, napi);
91 struct net_device *dev = fep->ndev;
92 const struct fs_platform_info *fpi = fep->fpi;
94 struct sk_buff *skb, *skbn, *skbt;
100 * First, grab all of the stats for the incoming packet.
101 * These get messed up if we get called due to a busy condition.
105 /* clear RX status bits for napi*/
106 (*fep->ops->napi_clear_rx_event)(dev);
108 while (((sc = CBDR_SC(bdp)) & BD_ENET_RX_EMPTY) == 0) {
109 curidx = bdp - fep->rx_bd_base;
112 * Since we have allocated space to hold a complete frame,
113 * the last indicator should be set.
115 if ((sc & BD_ENET_RX_LAST) == 0)
116 printk(KERN_WARNING DRV_MODULE_NAME
117 ": %s rcv is not +last\n",
123 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_CL |
124 BD_ENET_RX_NO | BD_ENET_RX_CR | BD_ENET_RX_OV)) {
125 fep->stats.rx_errors++;
126 /* Frame too long or too short. */
127 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH))
128 fep->stats.rx_length_errors++;
129 /* Frame alignment */
130 if (sc & (BD_ENET_RX_NO | BD_ENET_RX_CL))
131 fep->stats.rx_frame_errors++;
133 if (sc & BD_ENET_RX_CR)
134 fep->stats.rx_crc_errors++;
136 if (sc & BD_ENET_RX_OV)
137 fep->stats.rx_crc_errors++;
139 skb = fep->rx_skbuff[curidx];
141 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
142 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
148 skb = fep->rx_skbuff[curidx];
150 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
151 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
155 * Process the incoming frame.
157 fep->stats.rx_packets++;
158 pkt_len = CBDR_DATLEN(bdp) - 4; /* remove CRC */
159 fep->stats.rx_bytes += pkt_len + 4;
161 if (pkt_len <= fpi->rx_copybreak) {
162 /* +2 to make IP header L1 cache aligned */
163 skbn = dev_alloc_skb(pkt_len + 2);
165 skb_reserve(skbn, 2); /* align IP header */
166 skb_copy_from_linear_data(skb,
167 skbn->data, pkt_len);
174 skbn = dev_alloc_skb(ENET_RX_FRSIZE);
177 skb_align(skbn, ENET_RX_ALIGN);
181 skb_put(skb, pkt_len); /* Make room */
182 skb->protocol = eth_type_trans(skb, dev);
184 netif_receive_skb(skb);
186 printk(KERN_WARNING DRV_MODULE_NAME
187 ": %s Memory squeeze, dropping packet.\n",
189 fep->stats.rx_dropped++;
194 fep->rx_skbuff[curidx] = skbn;
195 CBDW_BUFADDR(bdp, dma_map_single(fep->dev, skbn->data,
196 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
199 CBDW_SC(bdp, (sc & ~BD_ENET_RX_STATS) | BD_ENET_RX_EMPTY);
202 * Update BD pointer to next entry.
204 if ((sc & BD_ENET_RX_WRAP) == 0)
207 bdp = fep->rx_bd_base;
209 (*fep->ops->rx_bd_done)(dev);
211 if (received >= budget)
217 if (received < budget) {
219 netif_rx_complete(dev, napi);
220 (*fep->ops->napi_enable_rx)(dev);
225 /* non NAPI receive function */
226 static int fs_enet_rx_non_napi(struct net_device *dev)
228 struct fs_enet_private *fep = netdev_priv(dev);
229 const struct fs_platform_info *fpi = fep->fpi;
231 struct sk_buff *skb, *skbn, *skbt;
236 * First, grab all of the stats for the incoming packet.
237 * These get messed up if we get called due to a busy condition.
241 while (((sc = CBDR_SC(bdp)) & BD_ENET_RX_EMPTY) == 0) {
243 curidx = bdp - fep->rx_bd_base;
246 * Since we have allocated space to hold a complete frame,
247 * the last indicator should be set.
249 if ((sc & BD_ENET_RX_LAST) == 0)
250 printk(KERN_WARNING DRV_MODULE_NAME
251 ": %s rcv is not +last\n",
257 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH | BD_ENET_RX_CL |
258 BD_ENET_RX_NO | BD_ENET_RX_CR | BD_ENET_RX_OV)) {
259 fep->stats.rx_errors++;
260 /* Frame too long or too short. */
261 if (sc & (BD_ENET_RX_LG | BD_ENET_RX_SH))
262 fep->stats.rx_length_errors++;
263 /* Frame alignment */
264 if (sc & (BD_ENET_RX_NO | BD_ENET_RX_CL))
265 fep->stats.rx_frame_errors++;
267 if (sc & BD_ENET_RX_CR)
268 fep->stats.rx_crc_errors++;
270 if (sc & BD_ENET_RX_OV)
271 fep->stats.rx_crc_errors++;
273 skb = fep->rx_skbuff[curidx];
275 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
276 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
283 skb = fep->rx_skbuff[curidx];
285 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
286 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
290 * Process the incoming frame.
292 fep->stats.rx_packets++;
293 pkt_len = CBDR_DATLEN(bdp) - 4; /* remove CRC */
294 fep->stats.rx_bytes += pkt_len + 4;
296 if (pkt_len <= fpi->rx_copybreak) {
297 /* +2 to make IP header L1 cache aligned */
298 skbn = dev_alloc_skb(pkt_len + 2);
300 skb_reserve(skbn, 2); /* align IP header */
301 skb_copy_from_linear_data(skb,
302 skbn->data, pkt_len);
309 skbn = dev_alloc_skb(ENET_RX_FRSIZE);
312 skb_align(skbn, ENET_RX_ALIGN);
316 skb_put(skb, pkt_len); /* Make room */
317 skb->protocol = eth_type_trans(skb, dev);
321 printk(KERN_WARNING DRV_MODULE_NAME
322 ": %s Memory squeeze, dropping packet.\n",
324 fep->stats.rx_dropped++;
329 fep->rx_skbuff[curidx] = skbn;
330 CBDW_BUFADDR(bdp, dma_map_single(fep->dev, skbn->data,
331 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
334 CBDW_SC(bdp, (sc & ~BD_ENET_RX_STATS) | BD_ENET_RX_EMPTY);
337 * Update BD pointer to next entry.
339 if ((sc & BD_ENET_RX_WRAP) == 0)
342 bdp = fep->rx_bd_base;
344 (*fep->ops->rx_bd_done)(dev);
352 static void fs_enet_tx(struct net_device *dev)
354 struct fs_enet_private *fep = netdev_priv(dev);
357 int dirtyidx, do_wake, do_restart;
360 spin_lock(&fep->tx_lock);
363 do_wake = do_restart = 0;
364 while (((sc = CBDR_SC(bdp)) & BD_ENET_TX_READY) == 0) {
365 dirtyidx = bdp - fep->tx_bd_base;
367 if (fep->tx_free == fep->tx_ring)
370 skb = fep->tx_skbuff[dirtyidx];
375 if (sc & (BD_ENET_TX_HB | BD_ENET_TX_LC |
376 BD_ENET_TX_RL | BD_ENET_TX_UN | BD_ENET_TX_CSL)) {
378 if (sc & BD_ENET_TX_HB) /* No heartbeat */
379 fep->stats.tx_heartbeat_errors++;
380 if (sc & BD_ENET_TX_LC) /* Late collision */
381 fep->stats.tx_window_errors++;
382 if (sc & BD_ENET_TX_RL) /* Retrans limit */
383 fep->stats.tx_aborted_errors++;
384 if (sc & BD_ENET_TX_UN) /* Underrun */
385 fep->stats.tx_fifo_errors++;
386 if (sc & BD_ENET_TX_CSL) /* Carrier lost */
387 fep->stats.tx_carrier_errors++;
389 if (sc & (BD_ENET_TX_LC | BD_ENET_TX_RL | BD_ENET_TX_UN)) {
390 fep->stats.tx_errors++;
394 fep->stats.tx_packets++;
396 if (sc & BD_ENET_TX_READY)
397 printk(KERN_WARNING DRV_MODULE_NAME
398 ": %s HEY! Enet xmit interrupt and TX_READY.\n",
402 * Deferred means some collisions occurred during transmit,
403 * but we eventually sent the packet OK.
405 if (sc & BD_ENET_TX_DEF)
406 fep->stats.collisions++;
409 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
410 skb->len, DMA_TO_DEVICE);
413 * Free the sk buffer associated with this last transmit.
415 dev_kfree_skb_irq(skb);
416 fep->tx_skbuff[dirtyidx] = NULL;
419 * Update pointer to next buffer descriptor to be transmitted.
421 if ((sc & BD_ENET_TX_WRAP) == 0)
424 bdp = fep->tx_bd_base;
427 * Since we have freed up a buffer, the ring is no longer
437 (*fep->ops->tx_restart)(dev);
439 spin_unlock(&fep->tx_lock);
442 netif_wake_queue(dev);
446 * The interrupt handler.
447 * This is called from the MPC core interrupt.
450 fs_enet_interrupt(int irq, void *dev_id)
452 struct net_device *dev = dev_id;
453 struct fs_enet_private *fep;
454 const struct fs_platform_info *fpi;
460 fep = netdev_priv(dev);
464 while ((int_events = (*fep->ops->get_int_events)(dev)) != 0) {
467 int_clr_events = int_events;
469 int_clr_events &= ~fep->ev_napi_rx;
471 (*fep->ops->clear_int_events)(dev, int_clr_events);
473 if (int_events & fep->ev_err)
474 (*fep->ops->ev_error)(dev, int_events);
476 if (int_events & fep->ev_rx) {
478 fs_enet_rx_non_napi(dev);
480 napi_ok = napi_schedule_prep(&fep->napi);
482 (*fep->ops->napi_disable_rx)(dev);
483 (*fep->ops->clear_int_events)(dev, fep->ev_napi_rx);
485 /* NOTE: it is possible for FCCs in NAPI mode */
486 /* to submit a spurious interrupt while in poll */
488 __netif_rx_schedule(dev, &fep->napi);
492 if (int_events & fep->ev_tx)
497 return IRQ_RETVAL(handled);
500 void fs_init_bds(struct net_device *dev)
502 struct fs_enet_private *fep = netdev_priv(dev);
509 fep->dirty_tx = fep->cur_tx = fep->tx_bd_base;
510 fep->tx_free = fep->tx_ring;
511 fep->cur_rx = fep->rx_bd_base;
514 * Initialize the receive buffer descriptors.
516 for (i = 0, bdp = fep->rx_bd_base; i < fep->rx_ring; i++, bdp++) {
517 skb = dev_alloc_skb(ENET_RX_FRSIZE);
519 printk(KERN_WARNING DRV_MODULE_NAME
520 ": %s Memory squeeze, unable to allocate skb\n",
524 skb_align(skb, ENET_RX_ALIGN);
525 fep->rx_skbuff[i] = skb;
527 dma_map_single(fep->dev, skb->data,
528 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
530 CBDW_DATLEN(bdp, 0); /* zero */
531 CBDW_SC(bdp, BD_ENET_RX_EMPTY |
532 ((i < fep->rx_ring - 1) ? 0 : BD_SC_WRAP));
535 * if we failed, fillup remainder
537 for (; i < fep->rx_ring; i++, bdp++) {
538 fep->rx_skbuff[i] = NULL;
539 CBDW_SC(bdp, (i < fep->rx_ring - 1) ? 0 : BD_SC_WRAP);
543 * ...and the same for transmit.
545 for (i = 0, bdp = fep->tx_bd_base; i < fep->tx_ring; i++, bdp++) {
546 fep->tx_skbuff[i] = NULL;
547 CBDW_BUFADDR(bdp, 0);
549 CBDW_SC(bdp, (i < fep->tx_ring - 1) ? 0 : BD_SC_WRAP);
553 void fs_cleanup_bds(struct net_device *dev)
555 struct fs_enet_private *fep = netdev_priv(dev);
561 * Reset SKB transmit buffers.
563 for (i = 0, bdp = fep->tx_bd_base; i < fep->tx_ring; i++, bdp++) {
564 if ((skb = fep->tx_skbuff[i]) == NULL)
568 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
569 skb->len, DMA_TO_DEVICE);
571 fep->tx_skbuff[i] = NULL;
576 * Reset SKB receive buffers
578 for (i = 0, bdp = fep->rx_bd_base; i < fep->rx_ring; i++, bdp++) {
579 if ((skb = fep->rx_skbuff[i]) == NULL)
583 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp),
584 L1_CACHE_ALIGN(PKT_MAXBUF_SIZE),
587 fep->rx_skbuff[i] = NULL;
593 /**********************************************************************************/
595 static int fs_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
597 struct fs_enet_private *fep = netdev_priv(dev);
603 spin_lock_irqsave(&fep->tx_lock, flags);
606 * Fill in a Tx ring entry
610 if (!fep->tx_free || (CBDR_SC(bdp) & BD_ENET_TX_READY)) {
611 netif_stop_queue(dev);
612 spin_unlock_irqrestore(&fep->tx_lock, flags);
615 * Ooops. All transmit buffers are full. Bail out.
616 * This should not happen, since the tx queue should be stopped.
618 printk(KERN_WARNING DRV_MODULE_NAME
619 ": %s tx queue full!.\n", dev->name);
620 return NETDEV_TX_BUSY;
623 curidx = bdp - fep->tx_bd_base;
625 * Clear all of the status flags.
627 CBDC_SC(bdp, BD_ENET_TX_STATS);
632 fep->tx_skbuff[curidx] = skb;
634 fep->stats.tx_bytes += skb->len;
637 * Push the data cache so the CPM does not get stale memory data.
639 CBDW_BUFADDR(bdp, dma_map_single(fep->dev,
640 skb->data, skb->len, DMA_TO_DEVICE));
641 CBDW_DATLEN(bdp, skb->len);
643 dev->trans_start = jiffies;
646 * If this was the last BD in the ring, start at the beginning again.
648 if ((CBDR_SC(bdp) & BD_ENET_TX_WRAP) == 0)
651 fep->cur_tx = fep->tx_bd_base;
654 netif_stop_queue(dev);
656 /* Trigger transmission start */
657 sc = BD_ENET_TX_READY | BD_ENET_TX_INTR |
658 BD_ENET_TX_LAST | BD_ENET_TX_TC;
660 /* note that while FEC does not have this bit
661 * it marks it as available for software use
662 * yay for hw reuse :) */
664 sc |= BD_ENET_TX_PAD;
667 (*fep->ops->tx_kickstart)(dev);
669 spin_unlock_irqrestore(&fep->tx_lock, flags);
674 static int fs_request_irq(struct net_device *dev, int irq, const char *name,
677 struct fs_enet_private *fep = netdev_priv(dev);
679 (*fep->ops->pre_request_irq)(dev, irq);
680 return request_irq(irq, irqf, IRQF_SHARED, name, dev);
683 static void fs_free_irq(struct net_device *dev, int irq)
685 struct fs_enet_private *fep = netdev_priv(dev);
688 (*fep->ops->post_free_irq)(dev, irq);
691 static void fs_timeout(struct net_device *dev)
693 struct fs_enet_private *fep = netdev_priv(dev);
697 fep->stats.tx_errors++;
699 spin_lock_irqsave(&fep->lock, flags);
701 if (dev->flags & IFF_UP) {
702 phy_stop(fep->phydev);
703 (*fep->ops->stop)(dev);
704 (*fep->ops->restart)(dev);
705 phy_start(fep->phydev);
708 phy_start(fep->phydev);
709 wake = fep->tx_free && !(CBDR_SC(fep->cur_tx) & BD_ENET_TX_READY);
710 spin_unlock_irqrestore(&fep->lock, flags);
713 netif_wake_queue(dev);
716 /*-----------------------------------------------------------------------------
717 * generic link-change handler - should be sufficient for most cases
718 *-----------------------------------------------------------------------------*/
719 static void generic_adjust_link(struct net_device *dev)
721 struct fs_enet_private *fep = netdev_priv(dev);
722 struct phy_device *phydev = fep->phydev;
726 /* adjust to duplex mode */
727 if (phydev->duplex != fep->oldduplex) {
729 fep->oldduplex = phydev->duplex;
732 if (phydev->speed != fep->oldspeed) {
734 fep->oldspeed = phydev->speed;
741 netif_carrier_on(dev);
742 netif_start_queue(dev);
746 fep->ops->restart(dev);
747 } else if (fep->oldlink) {
752 netif_carrier_off(dev);
753 netif_stop_queue(dev);
756 if (new_state && netif_msg_link(fep))
757 phy_print_status(phydev);
761 static void fs_adjust_link(struct net_device *dev)
763 struct fs_enet_private *fep = netdev_priv(dev);
766 spin_lock_irqsave(&fep->lock, flags);
768 if(fep->ops->adjust_link)
769 fep->ops->adjust_link(dev);
771 generic_adjust_link(dev);
773 spin_unlock_irqrestore(&fep->lock, flags);
776 static int fs_init_phy(struct net_device *dev)
778 struct fs_enet_private *fep = netdev_priv(dev);
779 struct phy_device *phydev;
785 phydev = phy_connect(dev, fep->fpi->bus_id, &fs_adjust_link, 0,
786 PHY_INTERFACE_MODE_MII);
788 printk("No phy bus ID specified in BSP code\n");
791 if (IS_ERR(phydev)) {
792 printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
793 return PTR_ERR(phydev);
796 fep->phydev = phydev;
801 static int fs_enet_open(struct net_device *dev)
803 struct fs_enet_private *fep = netdev_priv(dev);
807 if (fep->fpi->use_napi)
808 napi_enable(&fep->napi);
810 /* Install our interrupt handler. */
811 r = fs_request_irq(dev, fep->interrupt, "fs_enet-mac", fs_enet_interrupt);
813 printk(KERN_ERR DRV_MODULE_NAME
814 ": %s Could not allocate FS_ENET IRQ!", dev->name);
815 if (fep->fpi->use_napi)
816 napi_disable(&fep->napi);
820 err = fs_init_phy(dev);
822 if (fep->fpi->use_napi)
823 napi_disable(&fep->napi);
826 phy_start(fep->phydev);
831 static int fs_enet_close(struct net_device *dev)
833 struct fs_enet_private *fep = netdev_priv(dev);
836 netif_stop_queue(dev);
837 netif_carrier_off(dev);
838 napi_disable(&fep->napi);
839 phy_stop(fep->phydev);
841 spin_lock_irqsave(&fep->lock, flags);
842 spin_lock(&fep->tx_lock);
843 (*fep->ops->stop)(dev);
844 spin_unlock(&fep->tx_lock);
845 spin_unlock_irqrestore(&fep->lock, flags);
847 /* release any irqs */
848 phy_disconnect(fep->phydev);
850 fs_free_irq(dev, fep->interrupt);
855 static struct net_device_stats *fs_enet_get_stats(struct net_device *dev)
857 struct fs_enet_private *fep = netdev_priv(dev);
861 /*************************************************************************/
863 static void fs_get_drvinfo(struct net_device *dev,
864 struct ethtool_drvinfo *info)
866 strcpy(info->driver, DRV_MODULE_NAME);
867 strcpy(info->version, DRV_MODULE_VERSION);
870 static int fs_get_regs_len(struct net_device *dev)
872 struct fs_enet_private *fep = netdev_priv(dev);
874 return (*fep->ops->get_regs_len)(dev);
877 static void fs_get_regs(struct net_device *dev, struct ethtool_regs *regs,
880 struct fs_enet_private *fep = netdev_priv(dev);
886 spin_lock_irqsave(&fep->lock, flags);
887 r = (*fep->ops->get_regs)(dev, p, &len);
888 spin_unlock_irqrestore(&fep->lock, flags);
894 static int fs_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
896 struct fs_enet_private *fep = netdev_priv(dev);
901 return phy_ethtool_gset(fep->phydev, cmd);
904 static int fs_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
906 struct fs_enet_private *fep = netdev_priv(dev);
911 return phy_ethtool_sset(fep->phydev, cmd);
914 static int fs_nway_reset(struct net_device *dev)
919 static u32 fs_get_msglevel(struct net_device *dev)
921 struct fs_enet_private *fep = netdev_priv(dev);
922 return fep->msg_enable;
925 static void fs_set_msglevel(struct net_device *dev, u32 value)
927 struct fs_enet_private *fep = netdev_priv(dev);
928 fep->msg_enable = value;
931 static const struct ethtool_ops fs_ethtool_ops = {
932 .get_drvinfo = fs_get_drvinfo,
933 .get_regs_len = fs_get_regs_len,
934 .get_settings = fs_get_settings,
935 .set_settings = fs_set_settings,
936 .nway_reset = fs_nway_reset,
937 .get_link = ethtool_op_get_link,
938 .get_msglevel = fs_get_msglevel,
939 .set_msglevel = fs_set_msglevel,
940 .set_tx_csum = ethtool_op_set_tx_csum, /* local! */
941 .set_sg = ethtool_op_set_sg,
942 .get_regs = fs_get_regs,
945 static int fs_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
947 struct fs_enet_private *fep = netdev_priv(dev);
948 struct mii_ioctl_data *mii = (struct mii_ioctl_data *)&rq->ifr_data;
950 if (!netif_running(dev))
953 return phy_mii_ioctl(fep->phydev, mii, cmd);
956 extern int fs_mii_connect(struct net_device *dev);
957 extern void fs_mii_disconnect(struct net_device *dev);
959 #ifndef CONFIG_PPC_CPM_NEW_BINDING
960 static struct net_device *fs_init_instance(struct device *dev,
961 struct fs_platform_info *fpi)
963 struct net_device *ndev = NULL;
964 struct fs_enet_private *fep = NULL;
965 int privsize, i, r, err = 0, registered = 0;
967 fpi->fs_no = fs_get_id(fpi);
969 if ((unsigned int)fpi->fs_no >= FS_MAX_INDEX)
970 return ERR_PTR(-EINVAL);
972 privsize = sizeof(*fep) + (sizeof(struct sk_buff **) *
973 (fpi->rx_ring + fpi->tx_ring));
975 ndev = alloc_etherdev(privsize);
981 fep = netdev_priv(ndev);
984 dev_set_drvdata(dev, ndev);
986 if (fpi->init_ioports)
987 fpi->init_ioports((struct fs_platform_info *)fpi);
989 #ifdef CONFIG_FS_ENET_HAS_FEC
990 if (fs_get_fec_index(fpi->fs_no) >= 0)
991 fep->ops = &fs_fec_ops;
994 #ifdef CONFIG_FS_ENET_HAS_SCC
995 if (fs_get_scc_index(fpi->fs_no) >=0)
996 fep->ops = &fs_scc_ops;
999 #ifdef CONFIG_FS_ENET_HAS_FCC
1000 if (fs_get_fcc_index(fpi->fs_no) >= 0)
1001 fep->ops = &fs_fcc_ops;
1004 if (fep->ops == NULL) {
1005 printk(KERN_ERR DRV_MODULE_NAME
1006 ": %s No matching ops found (%d).\n",
1007 ndev->name, fpi->fs_no);
1012 r = (*fep->ops->setup_data)(ndev);
1014 printk(KERN_ERR DRV_MODULE_NAME
1015 ": %s setup_data failed\n",
1021 /* point rx_skbuff, tx_skbuff */
1022 fep->rx_skbuff = (struct sk_buff **)&fep[1];
1023 fep->tx_skbuff = fep->rx_skbuff + fpi->rx_ring;
1026 spin_lock_init(&fep->lock);
1027 spin_lock_init(&fep->tx_lock);
1030 * Set the Ethernet address.
1032 for (i = 0; i < 6; i++)
1033 ndev->dev_addr[i] = fpi->macaddr[i];
1035 r = (*fep->ops->allocate_bd)(ndev);
1037 if (fep->ring_base == NULL) {
1038 printk(KERN_ERR DRV_MODULE_NAME
1039 ": %s buffer descriptor alloc failed (%d).\n", ndev->name, r);
1045 * Set receive and transmit descriptor base.
1047 fep->rx_bd_base = fep->ring_base;
1048 fep->tx_bd_base = fep->rx_bd_base + fpi->rx_ring;
1050 /* initialize ring size variables */
1051 fep->tx_ring = fpi->tx_ring;
1052 fep->rx_ring = fpi->rx_ring;
1055 * The FEC Ethernet specific entries in the device structure.
1057 ndev->open = fs_enet_open;
1058 ndev->hard_start_xmit = fs_enet_start_xmit;
1059 ndev->tx_timeout = fs_timeout;
1060 ndev->watchdog_timeo = 2 * HZ;
1061 ndev->stop = fs_enet_close;
1062 ndev->get_stats = fs_enet_get_stats;
1063 ndev->set_multicast_list = fs_set_multicast_list;
1065 #ifdef CONFIG_NET_POLL_CONTROLLER
1066 ndev->poll_controller = fs_enet_netpoll;
1069 netif_napi_add(ndev, &fep->napi,
1070 fs_enet_rx_napi, fpi->napi_weight);
1072 ndev->ethtool_ops = &fs_ethtool_ops;
1073 ndev->do_ioctl = fs_ioctl;
1075 init_timer(&fep->phy_timer_list);
1077 netif_carrier_off(ndev);
1079 err = register_netdev(ndev);
1081 printk(KERN_ERR DRV_MODULE_NAME
1082 ": %s register_netdev failed.\n", ndev->name);
1093 unregister_netdev(ndev);
1096 (*fep->ops->free_bd)(ndev);
1097 (*fep->ops->cleanup_data)(ndev);
1103 dev_set_drvdata(dev, NULL);
1105 return ERR_PTR(err);
1108 static int fs_cleanup_instance(struct net_device *ndev)
1110 struct fs_enet_private *fep;
1111 const struct fs_platform_info *fpi;
1117 fep = netdev_priv(ndev);
1123 unregister_netdev(ndev);
1125 dma_free_coherent(fep->dev, (fpi->tx_ring + fpi->rx_ring) * sizeof(cbd_t),
1126 (void __force *)fep->ring_base, fep->ring_mem_addr);
1129 (*fep->ops->cleanup_data)(ndev);
1133 dev_set_drvdata(dev, NULL);
1143 /**************************************************************************************/
1145 /* handy pointer to the immap */
1146 void __iomem *fs_enet_immap = NULL;
1148 static int setup_immap(void)
1151 fs_enet_immap = ioremap(IMAP_ADDR, 0x4000);
1152 WARN_ON(!fs_enet_immap);
1153 #elif defined(CONFIG_CPM2)
1154 fs_enet_immap = cpm2_immr;
1160 static void cleanup_immap(void)
1162 #if defined(CONFIG_CPM1)
1163 iounmap(fs_enet_immap);
1167 /**************************************************************************************/
1169 #ifdef CONFIG_PPC_CPM_NEW_BINDING
1170 static int __devinit find_phy(struct device_node *np,
1171 struct fs_platform_info *fpi)
1173 struct device_node *phynode, *mdionode;
1174 struct resource res;
1178 data = of_get_property(np, "fixed-link", NULL);
1180 snprintf(fpi->bus_id, 16, PHY_ID_FMT, 0, *data);
1184 data = of_get_property(np, "phy-handle", &len);
1185 if (!data || len != 4)
1188 phynode = of_find_node_by_phandle(*data);
1192 mdionode = of_get_parent(phynode);
1196 ret = of_address_to_resource(mdionode, 0, &res);
1200 data = of_get_property(phynode, "reg", &len);
1201 if (!data || len != 4)
1204 snprintf(fpi->bus_id, 16, PHY_ID_FMT, res.start, *data);
1207 of_node_put(mdionode);
1209 of_node_put(phynode);
1213 #ifdef CONFIG_FS_ENET_HAS_FEC
1214 #define IS_FEC(match) ((match)->data == &fs_fec_ops)
1216 #define IS_FEC(match) 0
1219 static int __devinit fs_enet_probe(struct of_device *ofdev,
1220 const struct of_device_id *match)
1222 struct net_device *ndev;
1223 struct fs_enet_private *fep;
1224 struct fs_platform_info *fpi;
1227 int privsize, len, ret = -ENODEV;
1229 fpi = kzalloc(sizeof(*fpi), GFP_KERNEL);
1233 if (!IS_FEC(match)) {
1234 data = of_get_property(ofdev->node, "fsl,cpm-command", &len);
1235 if (!data || len != 4)
1238 fpi->cp_command = *data;
1243 fpi->rx_copybreak = 240;
1245 fpi->napi_weight = 17;
1247 ret = find_phy(ofdev->node, fpi);
1251 privsize = sizeof(*fep) +
1252 sizeof(struct sk_buff **) *
1253 (fpi->rx_ring + fpi->tx_ring);
1255 ndev = alloc_etherdev(privsize);
1261 dev_set_drvdata(&ofdev->dev, ndev);
1263 fep = netdev_priv(ndev);
1264 fep->dev = &ofdev->dev;
1267 fep->ops = match->data;
1269 ret = fep->ops->setup_data(ndev);
1273 fep->rx_skbuff = (struct sk_buff **)&fep[1];
1274 fep->tx_skbuff = fep->rx_skbuff + fpi->rx_ring;
1276 spin_lock_init(&fep->lock);
1277 spin_lock_init(&fep->tx_lock);
1279 mac_addr = of_get_mac_address(ofdev->node);
1281 memcpy(ndev->dev_addr, mac_addr, 6);
1283 ret = fep->ops->allocate_bd(ndev);
1285 goto out_cleanup_data;
1287 fep->rx_bd_base = fep->ring_base;
1288 fep->tx_bd_base = fep->rx_bd_base + fpi->rx_ring;
1290 fep->tx_ring = fpi->tx_ring;
1291 fep->rx_ring = fpi->rx_ring;
1293 ndev->open = fs_enet_open;
1294 ndev->hard_start_xmit = fs_enet_start_xmit;
1295 ndev->tx_timeout = fs_timeout;
1296 ndev->watchdog_timeo = 2 * HZ;
1297 ndev->stop = fs_enet_close;
1298 ndev->get_stats = fs_enet_get_stats;
1299 ndev->set_multicast_list = fs_set_multicast_list;
1302 netif_napi_add(ndev, &fep->napi, fs_enet_rx_napi,
1305 ndev->ethtool_ops = &fs_ethtool_ops;
1306 ndev->do_ioctl = fs_ioctl;
1308 init_timer(&fep->phy_timer_list);
1310 netif_carrier_off(ndev);
1312 ret = register_netdev(ndev);
1316 printk(KERN_INFO "%s: fs_enet: %02x:%02x:%02x:%02x:%02x:%02x\n",
1318 ndev->dev_addr[0], ndev->dev_addr[1], ndev->dev_addr[2],
1319 ndev->dev_addr[3], ndev->dev_addr[4], ndev->dev_addr[5]);
1324 fep->ops->free_bd(ndev);
1326 fep->ops->cleanup_data(ndev);
1329 dev_set_drvdata(&ofdev->dev, NULL);
1335 static int fs_enet_remove(struct of_device *ofdev)
1337 struct net_device *ndev = dev_get_drvdata(&ofdev->dev);
1338 struct fs_enet_private *fep = netdev_priv(ndev);
1340 unregister_netdev(ndev);
1342 fep->ops->free_bd(ndev);
1343 fep->ops->cleanup_data(ndev);
1344 dev_set_drvdata(fep->dev, NULL);
1350 static struct of_device_id fs_enet_match[] = {
1351 #ifdef CONFIG_FS_ENET_HAS_SCC
1353 .compatible = "fsl,cpm1-scc-enet",
1354 .data = (void *)&fs_scc_ops,
1357 #ifdef CONFIG_FS_ENET_HAS_FCC
1359 .compatible = "fsl,cpm2-fcc-enet",
1360 .data = (void *)&fs_fcc_ops,
1363 #ifdef CONFIG_FS_ENET_HAS_FEC
1365 .compatible = "fsl,pq1-fec-enet",
1366 .data = (void *)&fs_fec_ops,
1372 static struct of_platform_driver fs_enet_driver = {
1374 .match_table = fs_enet_match,
1375 .probe = fs_enet_probe,
1376 .remove = fs_enet_remove,
1379 static int __init fs_init(void)
1381 int r = setup_immap();
1385 r = of_register_platform_driver(&fs_enet_driver);
1396 static void __exit fs_cleanup(void)
1398 of_unregister_platform_driver(&fs_enet_driver);
1402 static int __devinit fs_enet_probe(struct device *dev)
1404 struct net_device *ndev;
1406 /* no fixup - no device */
1407 if (dev->platform_data == NULL) {
1408 printk(KERN_INFO "fs_enet: "
1409 "probe called with no platform data; "
1410 "remove unused devices\n");
1414 ndev = fs_init_instance(dev, dev->platform_data);
1416 return PTR_ERR(ndev);
1420 static int fs_enet_remove(struct device *dev)
1422 return fs_cleanup_instance(dev_get_drvdata(dev));
1425 static struct device_driver fs_enet_fec_driver = {
1426 .name = "fsl-cpm-fec",
1427 .bus = &platform_bus_type,
1428 .probe = fs_enet_probe,
1429 .remove = fs_enet_remove,
1431 /* .suspend = fs_enet_suspend, TODO */
1432 /* .resume = fs_enet_resume, TODO */
1436 static struct device_driver fs_enet_scc_driver = {
1437 .name = "fsl-cpm-scc",
1438 .bus = &platform_bus_type,
1439 .probe = fs_enet_probe,
1440 .remove = fs_enet_remove,
1442 /* .suspend = fs_enet_suspend, TODO */
1443 /* .resume = fs_enet_resume, TODO */
1447 static struct device_driver fs_enet_fcc_driver = {
1448 .name = "fsl-cpm-fcc",
1449 .bus = &platform_bus_type,
1450 .probe = fs_enet_probe,
1451 .remove = fs_enet_remove,
1453 /* .suspend = fs_enet_suspend, TODO */
1454 /* .resume = fs_enet_resume, TODO */
1458 static int __init fs_init(void)
1469 #ifdef CONFIG_FS_ENET_HAS_FCC
1470 /* let's insert mii stuff */
1471 r = fs_enet_mdio_bb_init();
1474 printk(KERN_ERR DRV_MODULE_NAME
1475 "BB PHY init failed.\n");
1478 r = driver_register(&fs_enet_fcc_driver);
1483 #ifdef CONFIG_FS_ENET_HAS_FEC
1484 r = fs_enet_mdio_fec_init();
1486 printk(KERN_ERR DRV_MODULE_NAME
1487 "FEC PHY init failed.\n");
1491 r = driver_register(&fs_enet_fec_driver);
1496 #ifdef CONFIG_FS_ENET_HAS_SCC
1497 r = driver_register(&fs_enet_scc_driver);
1508 static void __exit fs_cleanup(void)
1510 driver_unregister(&fs_enet_fec_driver);
1511 driver_unregister(&fs_enet_fcc_driver);
1512 driver_unregister(&fs_enet_scc_driver);
1517 #ifdef CONFIG_NET_POLL_CONTROLLER
1518 static void fs_enet_netpoll(struct net_device *dev)
1520 disable_irq(dev->irq);
1521 fs_enet_interrupt(dev->irq, dev, NULL);
1522 enable_irq(dev->irq);
1526 /**************************************************************************************/
1528 module_init(fs_init);
1529 module_exit(fs_cleanup);