1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* D-Link DL2000-based Gigabit Ethernet Adapter Linux driver */
4 Copyright (c) 2001, 2002 by D-Link Corporation
6 Created 03-May-2001, base on Linux' sundance.c.
11 #include <linux/dma-mapping.h>
13 #define dw32(reg, val) iowrite32(val, ioaddr + (reg))
14 #define dw16(reg, val) iowrite16(val, ioaddr + (reg))
15 #define dw8(reg, val) iowrite8(val, ioaddr + (reg))
16 #define dr32(reg) ioread32(ioaddr + (reg))
17 #define dr16(reg) ioread16(ioaddr + (reg))
18 #define dr8(reg) ioread8(ioaddr + (reg))
21 static int mtu[MAX_UNITS];
22 static int vlan[MAX_UNITS];
23 static int jumbo[MAX_UNITS];
24 static char *media[MAX_UNITS];
25 static int tx_flow=-1;
26 static int rx_flow=-1;
27 static int copy_thresh;
28 static int rx_coalesce=10; /* Rx frame count each interrupt */
29 static int rx_timeout=200; /* Rx DMA wait time in 640ns increments */
30 static int tx_coalesce=16; /* HW xmit count each TxDMAComplete */
33 MODULE_AUTHOR ("Edward Peng");
34 MODULE_DESCRIPTION ("D-Link DL2000-based Gigabit Ethernet Adapter");
35 MODULE_LICENSE("GPL");
36 module_param_array(mtu, int, NULL, 0);
37 module_param_array(media, charp, NULL, 0);
38 module_param_array(vlan, int, NULL, 0);
39 module_param_array(jumbo, int, NULL, 0);
40 module_param(tx_flow, int, 0);
41 module_param(rx_flow, int, 0);
42 module_param(copy_thresh, int, 0);
43 module_param(rx_coalesce, int, 0); /* Rx frame count each interrupt */
44 module_param(rx_timeout, int, 0); /* Rx DMA wait time in 64ns increments */
45 module_param(tx_coalesce, int, 0); /* HW xmit count each TxDMAComplete */
48 /* Enable the default interrupts */
49 #define DEFAULT_INTR (RxDMAComplete | HostError | IntRequested | TxDMAComplete| \
50 UpdateStats | LinkEvent)
52 static void dl2k_enable_int(struct netdev_private *np)
54 void __iomem *ioaddr = np->ioaddr;
56 dw16(IntEnable, DEFAULT_INTR);
59 static const int max_intrloop = 50;
60 static const int multicast_filter_limit = 0x40;
62 static int rio_open (struct net_device *dev);
63 static void rio_timer (struct timer_list *t);
64 static void rio_tx_timeout (struct net_device *dev, unsigned int txqueue);
65 static netdev_tx_t start_xmit (struct sk_buff *skb, struct net_device *dev);
66 static irqreturn_t rio_interrupt (int irq, void *dev_instance);
67 static void rio_free_tx (struct net_device *dev, int irq);
68 static void tx_error (struct net_device *dev, int tx_status);
69 static int receive_packet (struct net_device *dev);
70 static void rio_error (struct net_device *dev, int int_status);
71 static void set_multicast (struct net_device *dev);
72 static struct net_device_stats *get_stats (struct net_device *dev);
73 static int clear_stats (struct net_device *dev);
74 static int rio_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
75 static int rio_close (struct net_device *dev);
76 static int find_miiphy (struct net_device *dev);
77 static int parse_eeprom (struct net_device *dev);
78 static int read_eeprom (struct netdev_private *, int eep_addr);
79 static int mii_wait_link (struct net_device *dev, int wait);
80 static int mii_set_media (struct net_device *dev);
81 static int mii_get_media (struct net_device *dev);
82 static int mii_set_media_pcs (struct net_device *dev);
83 static int mii_get_media_pcs (struct net_device *dev);
84 static int mii_read (struct net_device *dev, int phy_addr, int reg_num);
85 static int mii_write (struct net_device *dev, int phy_addr, int reg_num,
88 static const struct ethtool_ops ethtool_ops;
90 static const struct net_device_ops netdev_ops = {
92 .ndo_start_xmit = start_xmit,
93 .ndo_stop = rio_close,
94 .ndo_get_stats = get_stats,
95 .ndo_validate_addr = eth_validate_addr,
96 .ndo_set_mac_address = eth_mac_addr,
97 .ndo_set_rx_mode = set_multicast,
98 .ndo_eth_ioctl = rio_ioctl,
99 .ndo_tx_timeout = rio_tx_timeout,
103 rio_probe1 (struct pci_dev *pdev, const struct pci_device_id *ent)
105 struct net_device *dev;
106 struct netdev_private *np;
108 int chip_idx = ent->driver_data;
110 void __iomem *ioaddr;
114 err = pci_enable_device (pdev);
119 err = pci_request_regions (pdev, "dl2k");
121 goto err_out_disable;
123 pci_set_master (pdev);
127 dev = alloc_etherdev (sizeof (*np));
130 SET_NETDEV_DEV(dev, &pdev->dev);
132 np = netdev_priv(dev);
134 /* IO registers range. */
135 ioaddr = pci_iomap(pdev, 0, 0);
138 np->eeprom_addr = ioaddr;
141 /* MM registers range. */
142 ioaddr = pci_iomap(pdev, 1, 0);
144 goto err_out_iounmap;
147 np->chip_id = chip_idx;
149 spin_lock_init (&np->tx_lock);
150 spin_lock_init (&np->rx_lock);
152 /* Parse manual configuration */
155 if (card_idx < MAX_UNITS) {
156 if (media[card_idx] != NULL) {
158 if (strcmp (media[card_idx], "auto") == 0 ||
159 strcmp (media[card_idx], "autosense") == 0 ||
160 strcmp (media[card_idx], "0") == 0 ) {
162 } else if (strcmp (media[card_idx], "100mbps_fd") == 0 ||
163 strcmp (media[card_idx], "4") == 0) {
166 } else if (strcmp (media[card_idx], "100mbps_hd") == 0 ||
167 strcmp (media[card_idx], "3") == 0) {
170 } else if (strcmp (media[card_idx], "10mbps_fd") == 0 ||
171 strcmp (media[card_idx], "2") == 0) {
174 } else if (strcmp (media[card_idx], "10mbps_hd") == 0 ||
175 strcmp (media[card_idx], "1") == 0) {
178 } else if (strcmp (media[card_idx], "1000mbps_fd") == 0 ||
179 strcmp (media[card_idx], "6") == 0) {
182 } else if (strcmp (media[card_idx], "1000mbps_hd") == 0 ||
183 strcmp (media[card_idx], "5") == 0) {
190 if (jumbo[card_idx] != 0) {
192 dev->mtu = MAX_JUMBO;
195 if (mtu[card_idx] > 0 && mtu[card_idx] < PACKET_SIZE)
196 dev->mtu = mtu[card_idx];
198 np->vlan = (vlan[card_idx] > 0 && vlan[card_idx] < 4096) ?
200 if (rx_coalesce > 0 && rx_timeout > 0) {
201 np->rx_coalesce = rx_coalesce;
202 np->rx_timeout = rx_timeout;
205 np->tx_flow = (tx_flow == 0) ? 0 : 1;
206 np->rx_flow = (rx_flow == 0) ? 0 : 1;
210 else if (tx_coalesce > TX_RING_SIZE-1)
211 tx_coalesce = TX_RING_SIZE - 1;
213 dev->netdev_ops = &netdev_ops;
214 dev->watchdog_timeo = TX_TIMEOUT;
215 dev->ethtool_ops = ðtool_ops;
217 dev->features = NETIF_F_IP_CSUM;
219 /* MTU range: 68 - 1536 or 8000 */
220 dev->min_mtu = ETH_MIN_MTU;
221 dev->max_mtu = np->jumbo ? MAX_JUMBO : PACKET_SIZE;
223 pci_set_drvdata (pdev, dev);
225 ring_space = dma_alloc_coherent(&pdev->dev, TX_TOTAL_SIZE, &ring_dma,
228 goto err_out_iounmap;
229 np->tx_ring = ring_space;
230 np->tx_ring_dma = ring_dma;
232 ring_space = dma_alloc_coherent(&pdev->dev, RX_TOTAL_SIZE, &ring_dma,
235 goto err_out_unmap_tx;
236 np->rx_ring = ring_space;
237 np->rx_ring_dma = ring_dma;
239 /* Parse eeprom data */
242 /* Find PHY address */
243 err = find_miiphy (dev);
245 goto err_out_unmap_rx;
248 np->phy_media = (dr16(ASICCtrl) & PhyMedia) ? 1 : 0;
250 /* Set media and reset PHY */
252 /* default Auto-Negotiation for fiber deivices */
253 if (np->an_enable == 2) {
257 /* Auto-Negotiation is mandatory for 1000BASE-T,
258 IEEE 802.3ab Annex 28D page 14 */
259 if (np->speed == 1000)
263 err = register_netdev (dev);
265 goto err_out_unmap_rx;
269 printk (KERN_INFO "%s: %s, %pM, IRQ %d\n",
270 dev->name, np->name, dev->dev_addr, irq);
272 printk(KERN_INFO "tx_coalesce:\t%d packets\n",
276 "rx_coalesce:\t%d packets\n"
277 "rx_timeout: \t%d ns\n",
278 np->rx_coalesce, np->rx_timeout*640);
280 printk(KERN_INFO "vlan(id):\t%d\n", np->vlan);
284 dma_free_coherent(&pdev->dev, RX_TOTAL_SIZE, np->rx_ring,
287 dma_free_coherent(&pdev->dev, TX_TOTAL_SIZE, np->tx_ring,
291 pci_iounmap(pdev, np->ioaddr);
293 pci_iounmap(pdev, np->eeprom_addr);
297 pci_release_regions (pdev);
299 pci_disable_device (pdev);
304 find_miiphy (struct net_device *dev)
306 struct netdev_private *np = netdev_priv(dev);
307 int i, phy_found = 0;
311 for (i = 31; i >= 0; i--) {
312 int mii_status = mii_read (dev, i, 1);
313 if (mii_status != 0xffff && mii_status != 0x0000) {
319 printk (KERN_ERR "%s: No MII PHY found!\n", dev->name);
326 parse_eeprom (struct net_device *dev)
328 struct netdev_private *np = netdev_priv(dev);
329 void __iomem *ioaddr = np->ioaddr;
334 PSROM_t psrom = (PSROM_t) sromdata;
338 for (i = 0; i < 128; i++)
339 ((__le16 *) sromdata)[i] = cpu_to_le16(read_eeprom(np, i));
341 if (np->pdev->vendor == PCI_VENDOR_ID_DLINK) { /* D-Link Only */
343 crc = ~ether_crc_le (256 - 4, sromdata);
344 if (psrom->crc != cpu_to_le32(crc)) {
345 printk (KERN_ERR "%s: EEPROM data CRC error.\n",
351 /* Set MAC address */
352 eth_hw_addr_set(dev, psrom->mac_addr);
354 if (np->chip_id == CHIP_IP1000A) {
355 np->led_mode = psrom->led_mode;
359 if (np->pdev->vendor != PCI_VENDOR_ID_DLINK) {
363 /* Parse Software Information Block */
365 psib = (u8 *) sromdata;
369 if ((cid == 0 && next == 0) || (cid == 0xff && next == 0xff)) {
370 printk (KERN_ERR "Cell data error\n");
374 case 0: /* Format version */
376 case 1: /* End of cell */
378 case 2: /* Duplex Polarity */
379 np->duplex_polarity = psib[i];
380 dw8(PhyCtrl, dr8(PhyCtrl) | psib[i]);
382 case 3: /* Wake Polarity */
383 np->wake_polarity = psib[i];
385 case 9: /* Adapter description */
386 j = (next - i > 255) ? 255 : next - i;
387 memcpy (np->name, &(psib[i]), j);
393 case 8: /* Reversed */
395 default: /* Unknown cell */
404 static void rio_set_led_mode(struct net_device *dev)
406 struct netdev_private *np = netdev_priv(dev);
407 void __iomem *ioaddr = np->ioaddr;
410 if (np->chip_id != CHIP_IP1000A)
413 mode = dr32(ASICCtrl);
414 mode &= ~(IPG_AC_LED_MODE_BIT_1 | IPG_AC_LED_MODE | IPG_AC_LED_SPEED);
416 if (np->led_mode & 0x01)
417 mode |= IPG_AC_LED_MODE;
418 if (np->led_mode & 0x02)
419 mode |= IPG_AC_LED_MODE_BIT_1;
420 if (np->led_mode & 0x08)
421 mode |= IPG_AC_LED_SPEED;
423 dw32(ASICCtrl, mode);
426 static inline dma_addr_t desc_to_dma(struct netdev_desc *desc)
428 return le64_to_cpu(desc->fraginfo) & DMA_BIT_MASK(48);
431 static void free_list(struct net_device *dev)
433 struct netdev_private *np = netdev_priv(dev);
437 /* Free all the skbuffs in the queue. */
438 for (i = 0; i < RX_RING_SIZE; i++) {
439 skb = np->rx_skbuff[i];
441 dma_unmap_single(&np->pdev->dev,
442 desc_to_dma(&np->rx_ring[i]),
443 skb->len, DMA_FROM_DEVICE);
445 np->rx_skbuff[i] = NULL;
447 np->rx_ring[i].status = 0;
448 np->rx_ring[i].fraginfo = 0;
450 for (i = 0; i < TX_RING_SIZE; i++) {
451 skb = np->tx_skbuff[i];
453 dma_unmap_single(&np->pdev->dev,
454 desc_to_dma(&np->tx_ring[i]),
455 skb->len, DMA_TO_DEVICE);
457 np->tx_skbuff[i] = NULL;
462 static void rio_reset_ring(struct netdev_private *np)
471 for (i = 0; i < TX_RING_SIZE; i++)
472 np->tx_ring[i].status = cpu_to_le64(TFDDone);
474 for (i = 0; i < RX_RING_SIZE; i++)
475 np->rx_ring[i].status = 0;
478 /* allocate and initialize Tx and Rx descriptors */
479 static int alloc_list(struct net_device *dev)
481 struct netdev_private *np = netdev_priv(dev);
485 np->rx_buf_sz = (dev->mtu <= 1500 ? PACKET_SIZE : dev->mtu + 32);
487 /* Initialize Tx descriptors, TFDListPtr leaves in start_xmit(). */
488 for (i = 0; i < TX_RING_SIZE; i++) {
489 np->tx_skbuff[i] = NULL;
490 np->tx_ring[i].next_desc = cpu_to_le64(np->tx_ring_dma +
491 ((i + 1) % TX_RING_SIZE) *
492 sizeof(struct netdev_desc));
495 /* Initialize Rx descriptors & allocate buffers */
496 for (i = 0; i < RX_RING_SIZE; i++) {
497 /* Allocated fixed size of skbuff */
500 skb = netdev_alloc_skb_ip_align(dev, np->rx_buf_sz);
501 np->rx_skbuff[i] = skb;
507 np->rx_ring[i].next_desc = cpu_to_le64(np->rx_ring_dma +
508 ((i + 1) % RX_RING_SIZE) *
509 sizeof(struct netdev_desc));
510 /* Rubicon now supports 40 bits of addressing space. */
511 np->rx_ring[i].fraginfo =
512 cpu_to_le64(dma_map_single(&np->pdev->dev, skb->data,
513 np->rx_buf_sz, DMA_FROM_DEVICE));
514 np->rx_ring[i].fraginfo |= cpu_to_le64((u64)np->rx_buf_sz << 48);
520 static void rio_hw_init(struct net_device *dev)
522 struct netdev_private *np = netdev_priv(dev);
523 void __iomem *ioaddr = np->ioaddr;
527 /* Reset all logic functions */
529 GlobalReset | DMAReset | FIFOReset | NetworkReset | HostReset);
532 rio_set_led_mode(dev);
534 /* DebugCtrl bit 4, 5, 9 must set */
535 dw32(DebugCtrl, dr32(DebugCtrl) | 0x0230);
537 if (np->chip_id == CHIP_IP1000A &&
538 (np->pdev->revision == 0x40 || np->pdev->revision == 0x41)) {
539 /* PHY magic taken from ipg driver, undocumented registers */
540 mii_write(dev, np->phy_addr, 31, 0x0001);
541 mii_write(dev, np->phy_addr, 27, 0x01e0);
542 mii_write(dev, np->phy_addr, 31, 0x0002);
543 mii_write(dev, np->phy_addr, 27, 0xeb8e);
544 mii_write(dev, np->phy_addr, 31, 0x0000);
545 mii_write(dev, np->phy_addr, 30, 0x005e);
546 /* advertise 1000BASE-T half & full duplex, prefer MASTER */
547 mii_write(dev, np->phy_addr, MII_CTRL1000, 0x0700);
551 mii_set_media_pcs(dev);
557 dw16(MaxFrameSize, MAX_JUMBO+14);
560 dw32(RFDListPtr0, np->rx_ring_dma);
561 dw32(RFDListPtr1, 0);
563 /* Set station address */
564 /* 16 or 32-bit access is required by TC9020 datasheet but 8-bit works
565 * too. However, it doesn't work on IP1000A so we use 16-bit access.
567 for (i = 0; i < 3; i++)
568 dw16(StationAddr0 + 2 * i,
569 cpu_to_le16(((const u16 *)dev->dev_addr)[i]));
573 dw32(RxDMAIntCtrl, np->rx_coalesce | np->rx_timeout << 16);
575 /* Set RIO to poll every N*320nsec. */
576 dw8(RxDMAPollPeriod, 0x20);
577 dw8(TxDMAPollPeriod, 0xff);
578 dw8(RxDMABurstThresh, 0x30);
579 dw8(RxDMAUrgentThresh, 0x30);
580 dw32(RmonStatMask, 0x0007ffff);
581 /* clear statistics */
586 /* priority field in RxDMAIntCtrl */
587 dw32(RxDMAIntCtrl, dr32(RxDMAIntCtrl) | 0x7 << 10);
589 dw16(VLANId, np->vlan);
590 /* Length/Type should be 0x8100 */
591 dw32(VLANTag, 0x8100 << 16 | np->vlan);
592 /* Enable AutoVLANuntagging, but disable AutoVLANtagging.
593 VLAN information tagged by TFC' VID, CFI fields. */
594 dw32(MACCtrl, dr32(MACCtrl) | AutoVLANuntagging);
598 dw32(MACCtrl, dr32(MACCtrl) | StatsEnable | RxEnable | TxEnable);
601 macctrl |= (np->vlan) ? AutoVLANuntagging : 0;
602 macctrl |= (np->full_duplex) ? DuplexSelect : 0;
603 macctrl |= (np->tx_flow) ? TxFlowControlEnable : 0;
604 macctrl |= (np->rx_flow) ? RxFlowControlEnable : 0;
605 dw16(MACCtrl, macctrl);
608 static void rio_hw_stop(struct net_device *dev)
610 struct netdev_private *np = netdev_priv(dev);
611 void __iomem *ioaddr = np->ioaddr;
613 /* Disable interrupts */
616 /* Stop Tx and Rx logics */
617 dw32(MACCtrl, TxDisable | RxDisable | StatsDisable);
620 static int rio_open(struct net_device *dev)
622 struct netdev_private *np = netdev_priv(dev);
623 const int irq = np->pdev->irq;
632 i = request_irq(irq, rio_interrupt, IRQF_SHARED, dev->name, dev);
639 timer_setup(&np->timer, rio_timer, 0);
640 np->timer.expires = jiffies + 1 * HZ;
641 add_timer(&np->timer);
643 netif_start_queue (dev);
650 rio_timer (struct timer_list *t)
652 struct netdev_private *np = from_timer(np, t, timer);
653 struct net_device *dev = pci_get_drvdata(np->pdev);
655 int next_tick = 1*HZ;
658 spin_lock_irqsave(&np->rx_lock, flags);
659 /* Recover rx ring exhausted error */
660 if (np->cur_rx - np->old_rx >= RX_RING_SIZE) {
661 printk(KERN_INFO "Try to recover rx ring exhausted...\n");
662 /* Re-allocate skbuffs to fill the descriptor ring */
663 for (; np->cur_rx - np->old_rx > 0; np->old_rx++) {
665 entry = np->old_rx % RX_RING_SIZE;
666 /* Dropped packets don't need to re-allocate */
667 if (np->rx_skbuff[entry] == NULL) {
668 skb = netdev_alloc_skb_ip_align(dev,
671 np->rx_ring[entry].fraginfo = 0;
673 "%s: Still unable to re-allocate Rx skbuff.#%d\n",
677 np->rx_skbuff[entry] = skb;
678 np->rx_ring[entry].fraginfo =
679 cpu_to_le64 (dma_map_single(&np->pdev->dev, skb->data,
680 np->rx_buf_sz, DMA_FROM_DEVICE));
682 np->rx_ring[entry].fraginfo |=
683 cpu_to_le64((u64)np->rx_buf_sz << 48);
684 np->rx_ring[entry].status = 0;
687 spin_unlock_irqrestore (&np->rx_lock, flags);
688 np->timer.expires = jiffies + next_tick;
689 add_timer(&np->timer);
693 rio_tx_timeout (struct net_device *dev, unsigned int txqueue)
695 struct netdev_private *np = netdev_priv(dev);
696 void __iomem *ioaddr = np->ioaddr;
698 printk (KERN_INFO "%s: Tx timed out (%4.4x), is buffer full?\n",
699 dev->name, dr32(TxStatus));
702 netif_trans_update(dev); /* prevent tx timeout */
706 start_xmit (struct sk_buff *skb, struct net_device *dev)
708 struct netdev_private *np = netdev_priv(dev);
709 void __iomem *ioaddr = np->ioaddr;
710 struct netdev_desc *txdesc;
712 u64 tfc_vlan_tag = 0;
714 if (np->link_status == 0) { /* Link Down */
718 entry = np->cur_tx % TX_RING_SIZE;
719 np->tx_skbuff[entry] = skb;
720 txdesc = &np->tx_ring[entry];
723 if (skb->ip_summed == CHECKSUM_PARTIAL) {
725 cpu_to_le64 (TCPChecksumEnable | UDPChecksumEnable |
730 tfc_vlan_tag = VLANTagInsert |
731 ((u64)np->vlan << 32) |
732 ((u64)skb->priority << 45);
734 txdesc->fraginfo = cpu_to_le64 (dma_map_single(&np->pdev->dev, skb->data,
735 skb->len, DMA_TO_DEVICE));
736 txdesc->fraginfo |= cpu_to_le64((u64)skb->len << 48);
738 /* DL2K bug: DMA fails to get next descriptor ptr in 10Mbps mode
739 * Work around: Always use 1 descriptor in 10Mbps mode */
740 if (entry % np->tx_coalesce == 0 || np->speed == 10)
741 txdesc->status = cpu_to_le64 (entry | tfc_vlan_tag |
744 (1 << FragCountShift));
746 txdesc->status = cpu_to_le64 (entry | tfc_vlan_tag |
748 (1 << FragCountShift));
751 dw32(DMACtrl, dr32(DMACtrl) | 0x00001000);
753 dw32(CountDown, 10000);
754 np->cur_tx = (np->cur_tx + 1) % TX_RING_SIZE;
755 if ((np->cur_tx - np->old_tx + TX_RING_SIZE) % TX_RING_SIZE
756 < TX_QUEUE_LEN - 1 && np->speed != 10) {
758 } else if (!netif_queue_stopped(dev)) {
759 netif_stop_queue (dev);
762 /* The first TFDListPtr */
763 if (!dr32(TFDListPtr0)) {
764 dw32(TFDListPtr0, np->tx_ring_dma +
765 entry * sizeof (struct netdev_desc));
766 dw32(TFDListPtr1, 0);
773 rio_interrupt (int irq, void *dev_instance)
775 struct net_device *dev = dev_instance;
776 struct netdev_private *np = netdev_priv(dev);
777 void __iomem *ioaddr = np->ioaddr;
779 int cnt = max_intrloop;
783 int_status = dr16(IntStatus);
784 dw16(IntStatus, int_status);
785 int_status &= DEFAULT_INTR;
786 if (int_status == 0 || --cnt < 0)
789 /* Processing received packets */
790 if (int_status & RxDMAComplete)
791 receive_packet (dev);
792 /* TxDMAComplete interrupt */
793 if ((int_status & (TxDMAComplete|IntRequested))) {
795 tx_status = dr32(TxStatus);
796 if (tx_status & 0x01)
797 tx_error (dev, tx_status);
798 /* Free used tx skbuffs */
799 rio_free_tx (dev, 1);
802 /* Handle uncommon events */
804 (HostError | LinkEvent | UpdateStats))
805 rio_error (dev, int_status);
807 if (np->cur_tx != np->old_tx)
808 dw32(CountDown, 100);
809 return IRQ_RETVAL(handled);
813 rio_free_tx (struct net_device *dev, int irq)
815 struct netdev_private *np = netdev_priv(dev);
816 int entry = np->old_tx % TX_RING_SIZE;
817 unsigned long flag = 0;
820 spin_lock(&np->tx_lock);
822 spin_lock_irqsave(&np->tx_lock, flag);
824 /* Free used tx skbuffs */
825 while (entry != np->cur_tx) {
828 if (!(np->tx_ring[entry].status & cpu_to_le64(TFDDone)))
830 skb = np->tx_skbuff[entry];
831 dma_unmap_single(&np->pdev->dev,
832 desc_to_dma(&np->tx_ring[entry]), skb->len,
835 dev_consume_skb_irq(skb);
839 np->tx_skbuff[entry] = NULL;
840 entry = (entry + 1) % TX_RING_SIZE;
843 spin_unlock(&np->tx_lock);
845 spin_unlock_irqrestore(&np->tx_lock, flag);
848 /* If the ring is no longer full, clear tx_full and
849 call netif_wake_queue() */
851 if (netif_queue_stopped(dev) &&
852 ((np->cur_tx - np->old_tx + TX_RING_SIZE) % TX_RING_SIZE
853 < TX_QUEUE_LEN - 1 || np->speed == 10)) {
854 netif_wake_queue (dev);
859 tx_error (struct net_device *dev, int tx_status)
861 struct netdev_private *np = netdev_priv(dev);
862 void __iomem *ioaddr = np->ioaddr;
866 frame_id = (tx_status & 0xffff0000);
867 printk (KERN_ERR "%s: Transmit error, TxStatus %4.4x, FrameId %d.\n",
868 dev->name, tx_status, frame_id);
869 dev->stats.tx_errors++;
870 /* Ttransmit Underrun */
871 if (tx_status & 0x10) {
872 dev->stats.tx_fifo_errors++;
873 dw16(TxStartThresh, dr16(TxStartThresh) + 0x10);
874 /* Transmit Underrun need to set TxReset, DMARest, FIFOReset */
876 TxReset | DMAReset | FIFOReset | NetworkReset);
877 /* Wait for ResetBusy bit clear */
878 for (i = 50; i > 0; i--) {
879 if (!(dr16(ASICCtrl + 2) & ResetBusy))
883 rio_set_led_mode(dev);
884 rio_free_tx (dev, 1);
885 /* Reset TFDListPtr */
886 dw32(TFDListPtr0, np->tx_ring_dma +
887 np->old_tx * sizeof (struct netdev_desc));
888 dw32(TFDListPtr1, 0);
890 /* Let TxStartThresh stay default value */
893 if (tx_status & 0x04) {
894 dev->stats.tx_fifo_errors++;
895 /* TxReset and clear FIFO */
896 dw16(ASICCtrl + 2, TxReset | FIFOReset);
897 /* Wait reset done */
898 for (i = 50; i > 0; i--) {
899 if (!(dr16(ASICCtrl + 2) & ResetBusy))
903 rio_set_led_mode(dev);
904 /* Let TxStartThresh stay default value */
906 /* Maximum Collisions */
907 if (tx_status & 0x08)
908 dev->stats.collisions++;
910 dw32(MACCtrl, dr16(MACCtrl) | TxEnable);
914 receive_packet (struct net_device *dev)
916 struct netdev_private *np = netdev_priv(dev);
917 int entry = np->cur_rx % RX_RING_SIZE;
920 /* If RFDDone, FrameStart and FrameEnd set, there is a new packet in. */
922 struct netdev_desc *desc = &np->rx_ring[entry];
926 if (!(desc->status & cpu_to_le64(RFDDone)) ||
927 !(desc->status & cpu_to_le64(FrameStart)) ||
928 !(desc->status & cpu_to_le64(FrameEnd)))
931 /* Chip omits the CRC. */
932 frame_status = le64_to_cpu(desc->status);
933 pkt_len = frame_status & 0xffff;
936 /* Update rx error statistics, drop packet. */
937 if (frame_status & RFS_Errors) {
938 dev->stats.rx_errors++;
939 if (frame_status & (RxRuntFrame | RxLengthError))
940 dev->stats.rx_length_errors++;
941 if (frame_status & RxFCSError)
942 dev->stats.rx_crc_errors++;
943 if (frame_status & RxAlignmentError && np->speed != 1000)
944 dev->stats.rx_frame_errors++;
945 if (frame_status & RxFIFOOverrun)
946 dev->stats.rx_fifo_errors++;
950 /* Small skbuffs for short packets */
951 if (pkt_len > copy_thresh) {
952 dma_unmap_single(&np->pdev->dev,
956 skb_put (skb = np->rx_skbuff[entry], pkt_len);
957 np->rx_skbuff[entry] = NULL;
958 } else if ((skb = netdev_alloc_skb_ip_align(dev, pkt_len))) {
959 dma_sync_single_for_cpu(&np->pdev->dev,
963 skb_copy_to_linear_data (skb,
964 np->rx_skbuff[entry]->data,
966 skb_put (skb, pkt_len);
967 dma_sync_single_for_device(&np->pdev->dev,
972 skb->protocol = eth_type_trans (skb, dev);
974 /* Checksum done by hw, but csum value unavailable. */
975 if (np->pdev->pci_rev_id >= 0x0c &&
976 !(frame_status & (TCPError | UDPError | IPError))) {
977 skb->ip_summed = CHECKSUM_UNNECESSARY;
982 entry = (entry + 1) % RX_RING_SIZE;
984 spin_lock(&np->rx_lock);
986 /* Re-allocate skbuffs to fill the descriptor ring */
988 while (entry != np->cur_rx) {
990 /* Dropped packets don't need to re-allocate */
991 if (np->rx_skbuff[entry] == NULL) {
992 skb = netdev_alloc_skb_ip_align(dev, np->rx_buf_sz);
994 np->rx_ring[entry].fraginfo = 0;
996 "%s: receive_packet: "
997 "Unable to re-allocate Rx skbuff.#%d\n",
1001 np->rx_skbuff[entry] = skb;
1002 np->rx_ring[entry].fraginfo =
1003 cpu_to_le64(dma_map_single(&np->pdev->dev, skb->data,
1004 np->rx_buf_sz, DMA_FROM_DEVICE));
1006 np->rx_ring[entry].fraginfo |=
1007 cpu_to_le64((u64)np->rx_buf_sz << 48);
1008 np->rx_ring[entry].status = 0;
1009 entry = (entry + 1) % RX_RING_SIZE;
1012 spin_unlock(&np->rx_lock);
1017 rio_error (struct net_device *dev, int int_status)
1019 struct netdev_private *np = netdev_priv(dev);
1020 void __iomem *ioaddr = np->ioaddr;
1023 /* Link change event */
1024 if (int_status & LinkEvent) {
1025 if (mii_wait_link (dev, 10) == 0) {
1026 printk (KERN_INFO "%s: Link up\n", dev->name);
1028 mii_get_media_pcs (dev);
1030 mii_get_media (dev);
1031 if (np->speed == 1000)
1032 np->tx_coalesce = tx_coalesce;
1034 np->tx_coalesce = 1;
1036 macctrl |= (np->vlan) ? AutoVLANuntagging : 0;
1037 macctrl |= (np->full_duplex) ? DuplexSelect : 0;
1038 macctrl |= (np->tx_flow) ?
1039 TxFlowControlEnable : 0;
1040 macctrl |= (np->rx_flow) ?
1041 RxFlowControlEnable : 0;
1042 dw16(MACCtrl, macctrl);
1043 np->link_status = 1;
1044 netif_carrier_on(dev);
1046 printk (KERN_INFO "%s: Link off\n", dev->name);
1047 np->link_status = 0;
1048 netif_carrier_off(dev);
1052 /* UpdateStats statistics registers */
1053 if (int_status & UpdateStats) {
1057 /* PCI Error, a catastronphic error related to the bus interface
1058 occurs, set GlobalReset and HostReset to reset. */
1059 if (int_status & HostError) {
1060 printk (KERN_ERR "%s: HostError! IntStatus %4.4x.\n",
1061 dev->name, int_status);
1062 dw16(ASICCtrl + 2, GlobalReset | HostReset);
1064 rio_set_led_mode(dev);
1068 static struct net_device_stats *
1069 get_stats (struct net_device *dev)
1071 struct netdev_private *np = netdev_priv(dev);
1072 void __iomem *ioaddr = np->ioaddr;
1076 unsigned int stat_reg;
1078 /* All statistics registers need to be acknowledged,
1079 else statistic overflow could cause problems */
1081 dev->stats.rx_packets += dr32(FramesRcvOk);
1082 dev->stats.tx_packets += dr32(FramesXmtOk);
1083 dev->stats.rx_bytes += dr32(OctetRcvOk);
1084 dev->stats.tx_bytes += dr32(OctetXmtOk);
1086 dev->stats.multicast = dr32(McstFramesRcvdOk);
1087 dev->stats.collisions += dr32(SingleColFrames)
1088 + dr32(MultiColFrames);
1090 /* detailed tx errors */
1091 stat_reg = dr16(FramesAbortXSColls);
1092 dev->stats.tx_aborted_errors += stat_reg;
1093 dev->stats.tx_errors += stat_reg;
1095 stat_reg = dr16(CarrierSenseErrors);
1096 dev->stats.tx_carrier_errors += stat_reg;
1097 dev->stats.tx_errors += stat_reg;
1099 /* Clear all other statistic register. */
1100 dr32(McstOctetXmtOk);
1101 dr16(BcstFramesXmtdOk);
1102 dr32(McstFramesXmtdOk);
1103 dr16(BcstFramesRcvdOk);
1104 dr16(MacControlFramesRcvd);
1105 dr16(FrameTooLongErrors);
1106 dr16(InRangeLengthErrors);
1107 dr16(FramesCheckSeqErrors);
1108 dr16(FramesLostRxErrors);
1109 dr32(McstOctetXmtOk);
1110 dr32(BcstOctetXmtOk);
1111 dr32(McstFramesXmtdOk);
1112 dr32(FramesWDeferredXmt);
1113 dr32(LateCollisions);
1114 dr16(BcstFramesXmtdOk);
1115 dr16(MacControlFramesXmtd);
1116 dr16(FramesWEXDeferal);
1119 for (i = 0x100; i <= 0x150; i += 4)
1122 dr16(TxJumboFrames);
1123 dr16(RxJumboFrames);
1124 dr16(TCPCheckSumErrors);
1125 dr16(UDPCheckSumErrors);
1126 dr16(IPCheckSumErrors);
1131 clear_stats (struct net_device *dev)
1133 struct netdev_private *np = netdev_priv(dev);
1134 void __iomem *ioaddr = np->ioaddr;
1139 /* All statistics registers need to be acknowledged,
1140 else statistic overflow could cause problems */
1146 dr32(McstFramesRcvdOk);
1147 dr32(SingleColFrames);
1148 dr32(MultiColFrames);
1149 dr32(LateCollisions);
1150 /* detailed rx errors */
1151 dr16(FrameTooLongErrors);
1152 dr16(InRangeLengthErrors);
1153 dr16(FramesCheckSeqErrors);
1154 dr16(FramesLostRxErrors);
1156 /* detailed tx errors */
1157 dr16(FramesAbortXSColls);
1158 dr16(CarrierSenseErrors);
1160 /* Clear all other statistic register. */
1161 dr32(McstOctetXmtOk);
1162 dr16(BcstFramesXmtdOk);
1163 dr32(McstFramesXmtdOk);
1164 dr16(BcstFramesRcvdOk);
1165 dr16(MacControlFramesRcvd);
1166 dr32(McstOctetXmtOk);
1167 dr32(BcstOctetXmtOk);
1168 dr32(McstFramesXmtdOk);
1169 dr32(FramesWDeferredXmt);
1170 dr16(BcstFramesXmtdOk);
1171 dr16(MacControlFramesXmtd);
1172 dr16(FramesWEXDeferal);
1174 for (i = 0x100; i <= 0x150; i += 4)
1177 dr16(TxJumboFrames);
1178 dr16(RxJumboFrames);
1179 dr16(TCPCheckSumErrors);
1180 dr16(UDPCheckSumErrors);
1181 dr16(IPCheckSumErrors);
1186 set_multicast (struct net_device *dev)
1188 struct netdev_private *np = netdev_priv(dev);
1189 void __iomem *ioaddr = np->ioaddr;
1193 hash_table[0] = hash_table[1] = 0;
1194 /* RxFlowcontrol DA: 01-80-C2-00-00-01. Hash index=0x39 */
1195 hash_table[1] |= 0x02000000;
1196 if (dev->flags & IFF_PROMISC) {
1197 /* Receive all frames promiscuously. */
1198 rx_mode = ReceiveAllFrames;
1199 } else if ((dev->flags & IFF_ALLMULTI) ||
1200 (netdev_mc_count(dev) > multicast_filter_limit)) {
1201 /* Receive broadcast and multicast frames */
1202 rx_mode = ReceiveBroadcast | ReceiveMulticast | ReceiveUnicast;
1203 } else if (!netdev_mc_empty(dev)) {
1204 struct netdev_hw_addr *ha;
1205 /* Receive broadcast frames and multicast frames filtering
1208 ReceiveBroadcast | ReceiveMulticastHash | ReceiveUnicast;
1209 netdev_for_each_mc_addr(ha, dev) {
1211 int crc = ether_crc_le(ETH_ALEN, ha->addr);
1212 /* The inverted high significant 6 bits of CRC are
1213 used as an index to hashtable */
1214 for (bit = 0; bit < 6; bit++)
1215 if (crc & (1 << (31 - bit)))
1216 index |= (1 << bit);
1217 hash_table[index / 32] |= (1 << (index % 32));
1220 rx_mode = ReceiveBroadcast | ReceiveUnicast;
1223 /* ReceiveVLANMatch field in ReceiveMode */
1224 rx_mode |= ReceiveVLANMatch;
1227 dw32(HashTable0, hash_table[0]);
1228 dw32(HashTable1, hash_table[1]);
1229 dw16(ReceiveMode, rx_mode);
1232 static void rio_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1234 struct netdev_private *np = netdev_priv(dev);
1236 strscpy(info->driver, "dl2k", sizeof(info->driver));
1237 strscpy(info->bus_info, pci_name(np->pdev), sizeof(info->bus_info));
1240 static int rio_get_link_ksettings(struct net_device *dev,
1241 struct ethtool_link_ksettings *cmd)
1243 struct netdev_private *np = netdev_priv(dev);
1244 u32 supported, advertising;
1246 if (np->phy_media) {
1248 supported = SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1249 advertising = ADVERTISED_Autoneg | ADVERTISED_FIBRE;
1250 cmd->base.port = PORT_FIBRE;
1253 supported = SUPPORTED_10baseT_Half |
1254 SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Half
1255 | SUPPORTED_100baseT_Full | SUPPORTED_1000baseT_Full |
1256 SUPPORTED_Autoneg | SUPPORTED_MII;
1257 advertising = ADVERTISED_10baseT_Half |
1258 ADVERTISED_10baseT_Full | ADVERTISED_100baseT_Half |
1259 ADVERTISED_100baseT_Full | ADVERTISED_1000baseT_Full |
1260 ADVERTISED_Autoneg | ADVERTISED_MII;
1261 cmd->base.port = PORT_MII;
1263 if (np->link_status) {
1264 cmd->base.speed = np->speed;
1265 cmd->base.duplex = np->full_duplex ? DUPLEX_FULL : DUPLEX_HALF;
1267 cmd->base.speed = SPEED_UNKNOWN;
1268 cmd->base.duplex = DUPLEX_UNKNOWN;
1271 cmd->base.autoneg = AUTONEG_ENABLE;
1273 cmd->base.autoneg = AUTONEG_DISABLE;
1275 cmd->base.phy_address = np->phy_addr;
1277 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
1279 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
1285 static int rio_set_link_ksettings(struct net_device *dev,
1286 const struct ethtool_link_ksettings *cmd)
1288 struct netdev_private *np = netdev_priv(dev);
1289 u32 speed = cmd->base.speed;
1290 u8 duplex = cmd->base.duplex;
1292 netif_carrier_off(dev);
1293 if (cmd->base.autoneg == AUTONEG_ENABLE) {
1294 if (np->an_enable) {
1303 if (np->speed == 1000) {
1305 duplex = DUPLEX_FULL;
1306 printk("Warning!! Can't disable Auto negotiation in 1000Mbps, change to Manual 100Mbps, Full duplex.\n");
1311 np->full_duplex = (duplex == DUPLEX_FULL);
1315 np->full_duplex = (duplex == DUPLEX_FULL);
1317 case SPEED_1000: /* not supported */
1326 static u32 rio_get_link(struct net_device *dev)
1328 struct netdev_private *np = netdev_priv(dev);
1329 return np->link_status;
1332 static const struct ethtool_ops ethtool_ops = {
1333 .get_drvinfo = rio_get_drvinfo,
1334 .get_link = rio_get_link,
1335 .get_link_ksettings = rio_get_link_ksettings,
1336 .set_link_ksettings = rio_set_link_ksettings,
1340 rio_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
1343 struct netdev_private *np = netdev_priv(dev);
1344 struct mii_ioctl_data *miidata = if_mii(rq);
1346 phy_addr = np->phy_addr;
1349 miidata->phy_id = phy_addr;
1352 miidata->val_out = mii_read (dev, phy_addr, miidata->reg_num);
1355 if (!capable(CAP_NET_ADMIN))
1357 mii_write (dev, phy_addr, miidata->reg_num, miidata->val_in);
1365 #define EEP_READ 0x0200
1366 #define EEP_BUSY 0x8000
1367 /* Read the EEPROM word */
1368 /* We use I/O instruction to read/write eeprom to avoid fail on some machines */
1369 static int read_eeprom(struct netdev_private *np, int eep_addr)
1371 void __iomem *ioaddr = np->eeprom_addr;
1374 dw16(EepromCtrl, EEP_READ | (eep_addr & 0xff));
1376 if (!(dr16(EepromCtrl) & EEP_BUSY))
1377 return dr16(EepromData);
1382 enum phy_ctrl_bits {
1383 MII_READ = 0x00, MII_CLK = 0x01, MII_DATA1 = 0x02, MII_WRITE = 0x04,
1387 #define mii_delay() dr8(PhyCtrl)
1389 mii_sendbit (struct net_device *dev, u32 data)
1391 struct netdev_private *np = netdev_priv(dev);
1392 void __iomem *ioaddr = np->ioaddr;
1394 data = ((data) ? MII_DATA1 : 0) | (dr8(PhyCtrl) & 0xf8) | MII_WRITE;
1397 dw8(PhyCtrl, data | MII_CLK);
1402 mii_getbit (struct net_device *dev)
1404 struct netdev_private *np = netdev_priv(dev);
1405 void __iomem *ioaddr = np->ioaddr;
1408 data = (dr8(PhyCtrl) & 0xf8) | MII_READ;
1411 dw8(PhyCtrl, data | MII_CLK);
1413 return (dr8(PhyCtrl) >> 1) & 1;
1417 mii_send_bits (struct net_device *dev, u32 data, int len)
1421 for (i = len - 1; i >= 0; i--) {
1422 mii_sendbit (dev, data & (1 << i));
1427 mii_read (struct net_device *dev, int phy_addr, int reg_num)
1434 mii_send_bits (dev, 0xffffffff, 32);
1435 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1436 /* ST,OP = 0110'b for read operation */
1437 cmd = (0x06 << 10 | phy_addr << 5 | reg_num);
1438 mii_send_bits (dev, cmd, 14);
1440 if (mii_getbit (dev))
1443 for (i = 0; i < 16; i++) {
1444 retval |= mii_getbit (dev);
1449 return (retval >> 1) & 0xffff;
1455 mii_write (struct net_device *dev, int phy_addr, int reg_num, u16 data)
1460 mii_send_bits (dev, 0xffffffff, 32);
1461 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1462 /* ST,OP,AAAAA,RRRRR,TA = 0101xxxxxxxxxx10'b = 0x5002 for write */
1463 cmd = (0x5002 << 16) | (phy_addr << 23) | (reg_num << 18) | data;
1464 mii_send_bits (dev, cmd, 32);
1470 mii_wait_link (struct net_device *dev, int wait)
1474 struct netdev_private *np;
1476 np = netdev_priv(dev);
1477 phy_addr = np->phy_addr;
1480 bmsr = mii_read (dev, phy_addr, MII_BMSR);
1481 if (bmsr & BMSR_LSTATUS)
1484 } while (--wait > 0);
1488 mii_get_media (struct net_device *dev)
1495 struct netdev_private *np;
1497 np = netdev_priv(dev);
1498 phy_addr = np->phy_addr;
1500 bmsr = mii_read (dev, phy_addr, MII_BMSR);
1501 if (np->an_enable) {
1502 if (!(bmsr & BMSR_ANEGCOMPLETE)) {
1503 /* Auto-Negotiation not completed */
1506 negotiate = mii_read (dev, phy_addr, MII_ADVERTISE) &
1507 mii_read (dev, phy_addr, MII_LPA);
1508 mscr = mii_read (dev, phy_addr, MII_CTRL1000);
1509 mssr = mii_read (dev, phy_addr, MII_STAT1000);
1510 if (mscr & ADVERTISE_1000FULL && mssr & LPA_1000FULL) {
1512 np->full_duplex = 1;
1513 printk (KERN_INFO "Auto 1000 Mbps, Full duplex\n");
1514 } else if (mscr & ADVERTISE_1000HALF && mssr & LPA_1000HALF) {
1516 np->full_duplex = 0;
1517 printk (KERN_INFO "Auto 1000 Mbps, Half duplex\n");
1518 } else if (negotiate & ADVERTISE_100FULL) {
1520 np->full_duplex = 1;
1521 printk (KERN_INFO "Auto 100 Mbps, Full duplex\n");
1522 } else if (negotiate & ADVERTISE_100HALF) {
1524 np->full_duplex = 0;
1525 printk (KERN_INFO "Auto 100 Mbps, Half duplex\n");
1526 } else if (negotiate & ADVERTISE_10FULL) {
1528 np->full_duplex = 1;
1529 printk (KERN_INFO "Auto 10 Mbps, Full duplex\n");
1530 } else if (negotiate & ADVERTISE_10HALF) {
1532 np->full_duplex = 0;
1533 printk (KERN_INFO "Auto 10 Mbps, Half duplex\n");
1535 if (negotiate & ADVERTISE_PAUSE_CAP) {
1538 } else if (negotiate & ADVERTISE_PAUSE_ASYM) {
1542 /* else tx_flow, rx_flow = user select */
1544 __u16 bmcr = mii_read (dev, phy_addr, MII_BMCR);
1545 switch (bmcr & (BMCR_SPEED100 | BMCR_SPEED1000)) {
1546 case BMCR_SPEED1000:
1547 printk (KERN_INFO "Operating at 1000 Mbps, ");
1550 printk (KERN_INFO "Operating at 100 Mbps, ");
1553 printk (KERN_INFO "Operating at 10 Mbps, ");
1555 if (bmcr & BMCR_FULLDPLX) {
1556 printk (KERN_CONT "Full duplex\n");
1558 printk (KERN_CONT "Half duplex\n");
1562 printk(KERN_INFO "Enable Tx Flow Control\n");
1564 printk(KERN_INFO "Disable Tx Flow Control\n");
1566 printk(KERN_INFO "Enable Rx Flow Control\n");
1568 printk(KERN_INFO "Disable Rx Flow Control\n");
1574 mii_set_media (struct net_device *dev)
1581 struct netdev_private *np;
1582 np = netdev_priv(dev);
1583 phy_addr = np->phy_addr;
1585 /* Does user set speed? */
1586 if (np->an_enable) {
1587 /* Advertise capabilities */
1588 bmsr = mii_read (dev, phy_addr, MII_BMSR);
1589 anar = mii_read (dev, phy_addr, MII_ADVERTISE) &
1590 ~(ADVERTISE_100FULL | ADVERTISE_10FULL |
1591 ADVERTISE_100HALF | ADVERTISE_10HALF |
1592 ADVERTISE_100BASE4);
1593 if (bmsr & BMSR_100FULL)
1594 anar |= ADVERTISE_100FULL;
1595 if (bmsr & BMSR_100HALF)
1596 anar |= ADVERTISE_100HALF;
1597 if (bmsr & BMSR_100BASE4)
1598 anar |= ADVERTISE_100BASE4;
1599 if (bmsr & BMSR_10FULL)
1600 anar |= ADVERTISE_10FULL;
1601 if (bmsr & BMSR_10HALF)
1602 anar |= ADVERTISE_10HALF;
1603 anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1604 mii_write (dev, phy_addr, MII_ADVERTISE, anar);
1606 /* Enable Auto crossover */
1607 pscr = mii_read (dev, phy_addr, MII_PHY_SCR);
1608 pscr |= 3 << 5; /* 11'b */
1609 mii_write (dev, phy_addr, MII_PHY_SCR, pscr);
1611 /* Soft reset PHY */
1612 mii_write (dev, phy_addr, MII_BMCR, BMCR_RESET);
1613 bmcr = BMCR_ANENABLE | BMCR_ANRESTART | BMCR_RESET;
1614 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1617 /* Force speed setting */
1618 /* 1) Disable Auto crossover */
1619 pscr = mii_read (dev, phy_addr, MII_PHY_SCR);
1621 mii_write (dev, phy_addr, MII_PHY_SCR, pscr);
1624 bmcr = mii_read (dev, phy_addr, MII_BMCR);
1626 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1629 bmcr = 0x1940; /* must be 0x1940 */
1630 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1631 mdelay (100); /* wait a certain time */
1633 /* 4) Advertise nothing */
1634 mii_write (dev, phy_addr, MII_ADVERTISE, 0);
1636 /* 5) Set media and Power Up */
1638 if (np->speed == 100) {
1639 bmcr |= BMCR_SPEED100;
1640 printk (KERN_INFO "Manual 100 Mbps, ");
1641 } else if (np->speed == 10) {
1642 printk (KERN_INFO "Manual 10 Mbps, ");
1644 if (np->full_duplex) {
1645 bmcr |= BMCR_FULLDPLX;
1646 printk (KERN_CONT "Full duplex\n");
1648 printk (KERN_CONT "Half duplex\n");
1651 /* Set 1000BaseT Master/Slave setting */
1652 mscr = mii_read (dev, phy_addr, MII_CTRL1000);
1653 mscr |= MII_MSCR_CFG_ENABLE;
1654 mscr &= ~MII_MSCR_CFG_VALUE = 0;
1656 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1663 mii_get_media_pcs (struct net_device *dev)
1668 struct netdev_private *np;
1670 np = netdev_priv(dev);
1671 phy_addr = np->phy_addr;
1673 bmsr = mii_read (dev, phy_addr, PCS_BMSR);
1674 if (np->an_enable) {
1675 if (!(bmsr & BMSR_ANEGCOMPLETE)) {
1676 /* Auto-Negotiation not completed */
1679 negotiate = mii_read (dev, phy_addr, PCS_ANAR) &
1680 mii_read (dev, phy_addr, PCS_ANLPAR);
1682 if (negotiate & PCS_ANAR_FULL_DUPLEX) {
1683 printk (KERN_INFO "Auto 1000 Mbps, Full duplex\n");
1684 np->full_duplex = 1;
1686 printk (KERN_INFO "Auto 1000 Mbps, half duplex\n");
1687 np->full_duplex = 0;
1689 if (negotiate & PCS_ANAR_PAUSE) {
1692 } else if (negotiate & PCS_ANAR_ASYMMETRIC) {
1696 /* else tx_flow, rx_flow = user select */
1698 __u16 bmcr = mii_read (dev, phy_addr, PCS_BMCR);
1699 printk (KERN_INFO "Operating at 1000 Mbps, ");
1700 if (bmcr & BMCR_FULLDPLX) {
1701 printk (KERN_CONT "Full duplex\n");
1703 printk (KERN_CONT "Half duplex\n");
1707 printk(KERN_INFO "Enable Tx Flow Control\n");
1709 printk(KERN_INFO "Disable Tx Flow Control\n");
1711 printk(KERN_INFO "Enable Rx Flow Control\n");
1713 printk(KERN_INFO "Disable Rx Flow Control\n");
1719 mii_set_media_pcs (struct net_device *dev)
1725 struct netdev_private *np;
1726 np = netdev_priv(dev);
1727 phy_addr = np->phy_addr;
1729 /* Auto-Negotiation? */
1730 if (np->an_enable) {
1731 /* Advertise capabilities */
1732 esr = mii_read (dev, phy_addr, PCS_ESR);
1733 anar = mii_read (dev, phy_addr, MII_ADVERTISE) &
1734 ~PCS_ANAR_HALF_DUPLEX &
1735 ~PCS_ANAR_FULL_DUPLEX;
1736 if (esr & (MII_ESR_1000BT_HD | MII_ESR_1000BX_HD))
1737 anar |= PCS_ANAR_HALF_DUPLEX;
1738 if (esr & (MII_ESR_1000BT_FD | MII_ESR_1000BX_FD))
1739 anar |= PCS_ANAR_FULL_DUPLEX;
1740 anar |= PCS_ANAR_PAUSE | PCS_ANAR_ASYMMETRIC;
1741 mii_write (dev, phy_addr, MII_ADVERTISE, anar);
1743 /* Soft reset PHY */
1744 mii_write (dev, phy_addr, MII_BMCR, BMCR_RESET);
1745 bmcr = BMCR_ANENABLE | BMCR_ANRESTART | BMCR_RESET;
1746 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1749 /* Force speed setting */
1752 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1754 if (np->full_duplex) {
1755 bmcr = BMCR_FULLDPLX;
1756 printk (KERN_INFO "Manual full duplex\n");
1759 printk (KERN_INFO "Manual half duplex\n");
1761 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1764 /* Advertise nothing */
1765 mii_write (dev, phy_addr, MII_ADVERTISE, 0);
1772 rio_close (struct net_device *dev)
1774 struct netdev_private *np = netdev_priv(dev);
1775 struct pci_dev *pdev = np->pdev;
1777 netif_stop_queue (dev);
1781 free_irq(pdev->irq, dev);
1782 del_timer_sync (&np->timer);
1790 rio_remove1 (struct pci_dev *pdev)
1792 struct net_device *dev = pci_get_drvdata (pdev);
1795 struct netdev_private *np = netdev_priv(dev);
1797 unregister_netdev (dev);
1798 dma_free_coherent(&pdev->dev, RX_TOTAL_SIZE, np->rx_ring,
1800 dma_free_coherent(&pdev->dev, TX_TOTAL_SIZE, np->tx_ring,
1803 pci_iounmap(pdev, np->ioaddr);
1805 pci_iounmap(pdev, np->eeprom_addr);
1807 pci_release_regions (pdev);
1808 pci_disable_device (pdev);
1812 #ifdef CONFIG_PM_SLEEP
1813 static int rio_suspend(struct device *device)
1815 struct net_device *dev = dev_get_drvdata(device);
1816 struct netdev_private *np = netdev_priv(dev);
1818 if (!netif_running(dev))
1821 netif_device_detach(dev);
1822 del_timer_sync(&np->timer);
1828 static int rio_resume(struct device *device)
1830 struct net_device *dev = dev_get_drvdata(device);
1831 struct netdev_private *np = netdev_priv(dev);
1833 if (!netif_running(dev))
1838 np->timer.expires = jiffies + 1 * HZ;
1839 add_timer(&np->timer);
1840 netif_device_attach(dev);
1841 dl2k_enable_int(np);
1846 static SIMPLE_DEV_PM_OPS(rio_pm_ops, rio_suspend, rio_resume);
1847 #define RIO_PM_OPS (&rio_pm_ops)
1851 #define RIO_PM_OPS NULL
1853 #endif /* CONFIG_PM_SLEEP */
1855 static struct pci_driver rio_driver = {
1857 .id_table = rio_pci_tbl,
1858 .probe = rio_probe1,
1859 .remove = rio_remove1,
1860 .driver.pm = RIO_PM_OPS,
1863 module_pci_driver(rio_driver);
1865 /* Read Documentation/networking/device_drivers/ethernet/dlink/dl2k.rst. */