drivers/char/Kconfig: don't mess it up for everyone else
[linux-2.6.32.60-moxart.git] / drivers / net / dl2k.c
blobc2f9313ce067136fa593bb251f2c65331b681d41
1 /* D-Link DL2000-based Gigabit Ethernet Adapter Linux driver */
2 /*
3 Copyright (c) 2001, 2002 by D-Link Corporation
4 Written by Edward Peng.<edward_peng@dlink.com.tw>
5 Created 03-May-2001, base on Linux' sundance.c.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
13 #define DRV_NAME "DL2000/TC902x-based linux driver"
14 #define DRV_VERSION "v1.19"
15 #define DRV_RELDATE "2007/08/12"
16 #include "dl2k.h"
17 #include <linux/dma-mapping.h>
19 static char version[] __devinitdata =
20 KERN_INFO DRV_NAME " " DRV_VERSION " " DRV_RELDATE "\n";
21 #define MAX_UNITS 8
22 static int mtu[MAX_UNITS];
23 static int vlan[MAX_UNITS];
24 static int jumbo[MAX_UNITS];
25 static char *media[MAX_UNITS];
26 static int tx_flow=-1;
27 static int rx_flow=-1;
28 static int copy_thresh;
29 static int rx_coalesce=10; /* Rx frame count each interrupt */
30 static int rx_timeout=200; /* Rx DMA wait time in 640ns increments */
31 static int tx_coalesce=16; /* HW xmit count each TxDMAComplete */
34 MODULE_AUTHOR ("Edward Peng");
35 MODULE_DESCRIPTION ("D-Link DL2000-based Gigabit Ethernet Adapter");
36 MODULE_LICENSE("GPL");
37 module_param_array(mtu, int, NULL, 0);
38 module_param_array(media, charp, NULL, 0);
39 module_param_array(vlan, int, NULL, 0);
40 module_param_array(jumbo, int, NULL, 0);
41 module_param(tx_flow, int, 0);
42 module_param(rx_flow, int, 0);
43 module_param(copy_thresh, int, 0);
44 module_param(rx_coalesce, int, 0); /* Rx frame count each interrupt */
45 module_param(rx_timeout, int, 0); /* Rx DMA wait time in 64ns increments */
46 module_param(tx_coalesce, int, 0); /* HW xmit count each TxDMAComplete */
49 /* Enable the default interrupts */
50 #define DEFAULT_INTR (RxDMAComplete | HostError | IntRequested | TxDMAComplete| \
51 UpdateStats | LinkEvent)
52 #define EnableInt() \
53 writew(DEFAULT_INTR, ioaddr + IntEnable)
55 static const int max_intrloop = 50;
56 static const int multicast_filter_limit = 0x40;
58 static int rio_open (struct net_device *dev);
59 static void rio_timer (unsigned long data);
60 static void rio_tx_timeout (struct net_device *dev);
61 static void alloc_list (struct net_device *dev);
62 static netdev_tx_t start_xmit (struct sk_buff *skb, struct net_device *dev);
63 static irqreturn_t rio_interrupt (int irq, void *dev_instance);
64 static void rio_free_tx (struct net_device *dev, int irq);
65 static void tx_error (struct net_device *dev, int tx_status);
66 static int receive_packet (struct net_device *dev);
67 static void rio_error (struct net_device *dev, int int_status);
68 static int change_mtu (struct net_device *dev, int new_mtu);
69 static void set_multicast (struct net_device *dev);
70 static struct net_device_stats *get_stats (struct net_device *dev);
71 static int clear_stats (struct net_device *dev);
72 static int rio_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
73 static int rio_close (struct net_device *dev);
74 static int find_miiphy (struct net_device *dev);
75 static int parse_eeprom (struct net_device *dev);
76 static int read_eeprom (long ioaddr, int eep_addr);
77 static int mii_wait_link (struct net_device *dev, int wait);
78 static int mii_set_media (struct net_device *dev);
79 static int mii_get_media (struct net_device *dev);
80 static int mii_set_media_pcs (struct net_device *dev);
81 static int mii_get_media_pcs (struct net_device *dev);
82 static int mii_read (struct net_device *dev, int phy_addr, int reg_num);
83 static int mii_write (struct net_device *dev, int phy_addr, int reg_num,
84 u16 data);
86 static const struct ethtool_ops ethtool_ops;
88 static const struct net_device_ops netdev_ops = {
89 .ndo_open = rio_open,
90 .ndo_start_xmit = start_xmit,
91 .ndo_stop = rio_close,
92 .ndo_get_stats = get_stats,
93 .ndo_validate_addr = eth_validate_addr,
94 .ndo_set_mac_address = eth_mac_addr,
95 .ndo_set_multicast_list = set_multicast,
96 .ndo_do_ioctl = rio_ioctl,
97 .ndo_tx_timeout = rio_tx_timeout,
98 .ndo_change_mtu = change_mtu,
101 static int __devinit
102 rio_probe1 (struct pci_dev *pdev, const struct pci_device_id *ent)
104 struct net_device *dev;
105 struct netdev_private *np;
106 static int card_idx;
107 int chip_idx = ent->driver_data;
108 int err, irq;
109 long ioaddr;
110 static int version_printed;
111 void *ring_space;
112 dma_addr_t ring_dma;
114 if (!version_printed++)
115 printk ("%s", version);
117 err = pci_enable_device (pdev);
118 if (err)
119 return err;
121 irq = pdev->irq;
122 err = pci_request_regions (pdev, "dl2k");
123 if (err)
124 goto err_out_disable;
126 pci_set_master (pdev);
127 dev = alloc_etherdev (sizeof (*np));
128 if (!dev) {
129 err = -ENOMEM;
130 goto err_out_res;
132 SET_NETDEV_DEV(dev, &pdev->dev);
134 #ifdef MEM_MAPPING
135 ioaddr = pci_resource_start (pdev, 1);
136 ioaddr = (long) ioremap (ioaddr, RIO_IO_SIZE);
137 if (!ioaddr) {
138 err = -ENOMEM;
139 goto err_out_dev;
141 #else
142 ioaddr = pci_resource_start (pdev, 0);
143 #endif
144 dev->base_addr = ioaddr;
145 dev->irq = irq;
146 np = netdev_priv(dev);
147 np->chip_id = chip_idx;
148 np->pdev = pdev;
149 spin_lock_init (&np->tx_lock);
150 spin_lock_init (&np->rx_lock);
152 /* Parse manual configuration */
153 np->an_enable = 1;
154 np->tx_coalesce = 1;
155 if (card_idx < MAX_UNITS) {
156 if (media[card_idx] != NULL) {
157 np->an_enable = 0;
158 if (strcmp (media[card_idx], "auto") == 0 ||
159 strcmp (media[card_idx], "autosense") == 0 ||
160 strcmp (media[card_idx], "0") == 0 ) {
161 np->an_enable = 2;
162 } else if (strcmp (media[card_idx], "100mbps_fd") == 0 ||
163 strcmp (media[card_idx], "4") == 0) {
164 np->speed = 100;
165 np->full_duplex = 1;
166 } else if (strcmp (media[card_idx], "100mbps_hd") == 0
167 || strcmp (media[card_idx], "3") == 0) {
168 np->speed = 100;
169 np->full_duplex = 0;
170 } else if (strcmp (media[card_idx], "10mbps_fd") == 0 ||
171 strcmp (media[card_idx], "2") == 0) {
172 np->speed = 10;
173 np->full_duplex = 1;
174 } else if (strcmp (media[card_idx], "10mbps_hd") == 0 ||
175 strcmp (media[card_idx], "1") == 0) {
176 np->speed = 10;
177 np->full_duplex = 0;
178 } else if (strcmp (media[card_idx], "1000mbps_fd") == 0 ||
179 strcmp (media[card_idx], "6") == 0) {
180 np->speed=1000;
181 np->full_duplex=1;
182 } else if (strcmp (media[card_idx], "1000mbps_hd") == 0 ||
183 strcmp (media[card_idx], "5") == 0) {
184 np->speed = 1000;
185 np->full_duplex = 0;
186 } else {
187 np->an_enable = 1;
190 if (jumbo[card_idx] != 0) {
191 np->jumbo = 1;
192 dev->mtu = MAX_JUMBO;
193 } else {
194 np->jumbo = 0;
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) ?
199 vlan[card_idx] : 0;
200 if (rx_coalesce > 0 && rx_timeout > 0) {
201 np->rx_coalesce = rx_coalesce;
202 np->rx_timeout = rx_timeout;
203 np->coalesce = 1;
205 np->tx_flow = (tx_flow == 0) ? 0 : 1;
206 np->rx_flow = (rx_flow == 0) ? 0 : 1;
208 if (tx_coalesce < 1)
209 tx_coalesce = 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 SET_ETHTOOL_OPS(dev, &ethtool_ops);
216 #if 0
217 dev->features = NETIF_F_IP_CSUM;
218 #endif
219 pci_set_drvdata (pdev, dev);
221 ring_space = pci_alloc_consistent (pdev, TX_TOTAL_SIZE, &ring_dma);
222 if (!ring_space)
223 goto err_out_iounmap;
224 np->tx_ring = (struct netdev_desc *) ring_space;
225 np->tx_ring_dma = ring_dma;
227 ring_space = pci_alloc_consistent (pdev, RX_TOTAL_SIZE, &ring_dma);
228 if (!ring_space)
229 goto err_out_unmap_tx;
230 np->rx_ring = (struct netdev_desc *) ring_space;
231 np->rx_ring_dma = ring_dma;
233 /* Parse eeprom data */
234 parse_eeprom (dev);
236 /* Find PHY address */
237 err = find_miiphy (dev);
238 if (err)
239 goto err_out_unmap_rx;
241 /* Fiber device? */
242 np->phy_media = (readw(ioaddr + ASICCtrl) & PhyMedia) ? 1 : 0;
243 np->link_status = 0;
244 /* Set media and reset PHY */
245 if (np->phy_media) {
246 /* default Auto-Negotiation for fiber deivices */
247 if (np->an_enable == 2) {
248 np->an_enable = 1;
250 mii_set_media_pcs (dev);
251 } else {
252 /* Auto-Negotiation is mandatory for 1000BASE-T,
253 IEEE 802.3ab Annex 28D page 14 */
254 if (np->speed == 1000)
255 np->an_enable = 1;
256 mii_set_media (dev);
259 err = register_netdev (dev);
260 if (err)
261 goto err_out_unmap_rx;
263 card_idx++;
265 printk (KERN_INFO "%s: %s, %pM, IRQ %d\n",
266 dev->name, np->name, dev->dev_addr, irq);
267 if (tx_coalesce > 1)
268 printk(KERN_INFO "tx_coalesce:\t%d packets\n",
269 tx_coalesce);
270 if (np->coalesce)
271 printk(KERN_INFO
272 "rx_coalesce:\t%d packets\n"
273 "rx_timeout: \t%d ns\n",
274 np->rx_coalesce, np->rx_timeout*640);
275 if (np->vlan)
276 printk(KERN_INFO "vlan(id):\t%d\n", np->vlan);
277 return 0;
279 err_out_unmap_rx:
280 pci_free_consistent (pdev, RX_TOTAL_SIZE, np->rx_ring, np->rx_ring_dma);
281 err_out_unmap_tx:
282 pci_free_consistent (pdev, TX_TOTAL_SIZE, np->tx_ring, np->tx_ring_dma);
283 err_out_iounmap:
284 #ifdef MEM_MAPPING
285 iounmap ((void *) ioaddr);
287 err_out_dev:
288 #endif
289 free_netdev (dev);
291 err_out_res:
292 pci_release_regions (pdev);
294 err_out_disable:
295 pci_disable_device (pdev);
296 return err;
299 static int
300 find_miiphy (struct net_device *dev)
302 int i, phy_found = 0;
303 struct netdev_private *np;
304 long ioaddr;
305 np = netdev_priv(dev);
306 ioaddr = dev->base_addr;
307 np->phy_addr = 1;
309 for (i = 31; i >= 0; i--) {
310 int mii_status = mii_read (dev, i, 1);
311 if (mii_status != 0xffff && mii_status != 0x0000) {
312 np->phy_addr = i;
313 phy_found++;
316 if (!phy_found) {
317 printk (KERN_ERR "%s: No MII PHY found!\n", dev->name);
318 return -ENODEV;
320 return 0;
323 static int
324 parse_eeprom (struct net_device *dev)
326 int i, j;
327 long ioaddr = dev->base_addr;
328 u8 sromdata[256];
329 u8 *psib;
330 u32 crc;
331 PSROM_t psrom = (PSROM_t) sromdata;
332 struct netdev_private *np = netdev_priv(dev);
334 int cid, next;
336 #ifdef MEM_MAPPING
337 ioaddr = pci_resource_start (np->pdev, 0);
338 #endif
339 /* Read eeprom */
340 for (i = 0; i < 128; i++) {
341 ((__le16 *) sromdata)[i] = cpu_to_le16(read_eeprom (ioaddr, i));
343 #ifdef MEM_MAPPING
344 ioaddr = dev->base_addr;
345 #endif
346 if (np->pdev->vendor == PCI_VENDOR_ID_DLINK) { /* D-Link Only */
347 /* Check CRC */
348 crc = ~ether_crc_le (256 - 4, sromdata);
349 if (psrom->crc != crc) {
350 printk (KERN_ERR "%s: EEPROM data CRC error.\n",
351 dev->name);
352 return -1;
356 /* Set MAC address */
357 for (i = 0; i < 6; i++)
358 dev->dev_addr[i] = psrom->mac_addr[i];
360 if (np->pdev->vendor != PCI_VENDOR_ID_DLINK) {
361 return 0;
364 /* Parse Software Information Block */
365 i = 0x30;
366 psib = (u8 *) sromdata;
367 do {
368 cid = psib[i++];
369 next = psib[i++];
370 if ((cid == 0 && next == 0) || (cid == 0xff && next == 0xff)) {
371 printk (KERN_ERR "Cell data error\n");
372 return -1;
374 switch (cid) {
375 case 0: /* Format version */
376 break;
377 case 1: /* End of cell */
378 return 0;
379 case 2: /* Duplex Polarity */
380 np->duplex_polarity = psib[i];
381 writeb (readb (ioaddr + PhyCtrl) | psib[i],
382 ioaddr + PhyCtrl);
383 break;
384 case 3: /* Wake Polarity */
385 np->wake_polarity = psib[i];
386 break;
387 case 9: /* Adapter description */
388 j = (next - i > 255) ? 255 : next - i;
389 memcpy (np->name, &(psib[i]), j);
390 break;
391 case 4:
392 case 5:
393 case 6:
394 case 7:
395 case 8: /* Reversed */
396 break;
397 default: /* Unknown cell */
398 return -1;
400 i = next;
401 } while (1);
403 return 0;
406 static int
407 rio_open (struct net_device *dev)
409 struct netdev_private *np = netdev_priv(dev);
410 long ioaddr = dev->base_addr;
411 int i;
412 u16 macctrl;
414 i = request_irq (dev->irq, &rio_interrupt, IRQF_SHARED, dev->name, dev);
415 if (i)
416 return i;
418 /* Reset all logic functions */
419 writew (GlobalReset | DMAReset | FIFOReset | NetworkReset | HostReset,
420 ioaddr + ASICCtrl + 2);
421 mdelay(10);
423 /* DebugCtrl bit 4, 5, 9 must set */
424 writel (readl (ioaddr + DebugCtrl) | 0x0230, ioaddr + DebugCtrl);
426 /* Jumbo frame */
427 if (np->jumbo != 0)
428 writew (MAX_JUMBO+14, ioaddr + MaxFrameSize);
430 alloc_list (dev);
432 /* Get station address */
433 for (i = 0; i < 6; i++)
434 writeb (dev->dev_addr[i], ioaddr + StationAddr0 + i);
436 set_multicast (dev);
437 if (np->coalesce) {
438 writel (np->rx_coalesce | np->rx_timeout << 16,
439 ioaddr + RxDMAIntCtrl);
441 /* Set RIO to poll every N*320nsec. */
442 writeb (0x20, ioaddr + RxDMAPollPeriod);
443 writeb (0xff, ioaddr + TxDMAPollPeriod);
444 writeb (0x30, ioaddr + RxDMABurstThresh);
445 writeb (0x30, ioaddr + RxDMAUrgentThresh);
446 writel (0x0007ffff, ioaddr + RmonStatMask);
447 /* clear statistics */
448 clear_stats (dev);
450 /* VLAN supported */
451 if (np->vlan) {
452 /* priority field in RxDMAIntCtrl */
453 writel (readl(ioaddr + RxDMAIntCtrl) | 0x7 << 10,
454 ioaddr + RxDMAIntCtrl);
455 /* VLANId */
456 writew (np->vlan, ioaddr + VLANId);
457 /* Length/Type should be 0x8100 */
458 writel (0x8100 << 16 | np->vlan, ioaddr + VLANTag);
459 /* Enable AutoVLANuntagging, but disable AutoVLANtagging.
460 VLAN information tagged by TFC' VID, CFI fields. */
461 writel (readl (ioaddr + MACCtrl) | AutoVLANuntagging,
462 ioaddr + MACCtrl);
465 init_timer (&np->timer);
466 np->timer.expires = jiffies + 1*HZ;
467 np->timer.data = (unsigned long) dev;
468 np->timer.function = &rio_timer;
469 add_timer (&np->timer);
471 /* Start Tx/Rx */
472 writel (readl (ioaddr + MACCtrl) | StatsEnable | RxEnable | TxEnable,
473 ioaddr + MACCtrl);
475 macctrl = 0;
476 macctrl |= (np->vlan) ? AutoVLANuntagging : 0;
477 macctrl |= (np->full_duplex) ? DuplexSelect : 0;
478 macctrl |= (np->tx_flow) ? TxFlowControlEnable : 0;
479 macctrl |= (np->rx_flow) ? RxFlowControlEnable : 0;
480 writew(macctrl, ioaddr + MACCtrl);
482 netif_start_queue (dev);
484 /* Enable default interrupts */
485 EnableInt ();
486 return 0;
489 static void
490 rio_timer (unsigned long data)
492 struct net_device *dev = (struct net_device *)data;
493 struct netdev_private *np = netdev_priv(dev);
494 unsigned int entry;
495 int next_tick = 1*HZ;
496 unsigned long flags;
498 spin_lock_irqsave(&np->rx_lock, flags);
499 /* Recover rx ring exhausted error */
500 if (np->cur_rx - np->old_rx >= RX_RING_SIZE) {
501 printk(KERN_INFO "Try to recover rx ring exhausted...\n");
502 /* Re-allocate skbuffs to fill the descriptor ring */
503 for (; np->cur_rx - np->old_rx > 0; np->old_rx++) {
504 struct sk_buff *skb;
505 entry = np->old_rx % RX_RING_SIZE;
506 /* Dropped packets don't need to re-allocate */
507 if (np->rx_skbuff[entry] == NULL) {
508 skb = netdev_alloc_skb (dev, np->rx_buf_sz);
509 if (skb == NULL) {
510 np->rx_ring[entry].fraginfo = 0;
511 printk (KERN_INFO
512 "%s: Still unable to re-allocate Rx skbuff.#%d\n",
513 dev->name, entry);
514 break;
516 np->rx_skbuff[entry] = skb;
517 /* 16 byte align the IP header */
518 skb_reserve (skb, 2);
519 np->rx_ring[entry].fraginfo =
520 cpu_to_le64 (pci_map_single
521 (np->pdev, skb->data, np->rx_buf_sz,
522 PCI_DMA_FROMDEVICE));
524 np->rx_ring[entry].fraginfo |=
525 cpu_to_le64((u64)np->rx_buf_sz << 48);
526 np->rx_ring[entry].status = 0;
527 } /* end for */
528 } /* end if */
529 spin_unlock_irqrestore (&np->rx_lock, flags);
530 np->timer.expires = jiffies + next_tick;
531 add_timer(&np->timer);
534 static void
535 rio_tx_timeout (struct net_device *dev)
537 long ioaddr = dev->base_addr;
539 printk (KERN_INFO "%s: Tx timed out (%4.4x), is buffer full?\n",
540 dev->name, readl (ioaddr + TxStatus));
541 rio_free_tx(dev, 0);
542 dev->if_port = 0;
543 dev->trans_start = jiffies; /* prevent tx timeout */
546 /* allocate and initialize Tx and Rx descriptors */
547 static void
548 alloc_list (struct net_device *dev)
550 struct netdev_private *np = netdev_priv(dev);
551 int i;
553 np->cur_rx = np->cur_tx = 0;
554 np->old_rx = np->old_tx = 0;
555 np->rx_buf_sz = (dev->mtu <= 1500 ? PACKET_SIZE : dev->mtu + 32);
557 /* Initialize Tx descriptors, TFDListPtr leaves in start_xmit(). */
558 for (i = 0; i < TX_RING_SIZE; i++) {
559 np->tx_skbuff[i] = NULL;
560 np->tx_ring[i].status = cpu_to_le64 (TFDDone);
561 np->tx_ring[i].next_desc = cpu_to_le64 (np->tx_ring_dma +
562 ((i+1)%TX_RING_SIZE) *
563 sizeof (struct netdev_desc));
566 /* Initialize Rx descriptors */
567 for (i = 0; i < RX_RING_SIZE; i++) {
568 np->rx_ring[i].next_desc = cpu_to_le64 (np->rx_ring_dma +
569 ((i + 1) % RX_RING_SIZE) *
570 sizeof (struct netdev_desc));
571 np->rx_ring[i].status = 0;
572 np->rx_ring[i].fraginfo = 0;
573 np->rx_skbuff[i] = NULL;
576 /* Allocate the rx buffers */
577 for (i = 0; i < RX_RING_SIZE; i++) {
578 /* Allocated fixed size of skbuff */
579 struct sk_buff *skb = netdev_alloc_skb (dev, np->rx_buf_sz);
580 np->rx_skbuff[i] = skb;
581 if (skb == NULL) {
582 printk (KERN_ERR
583 "%s: alloc_list: allocate Rx buffer error! ",
584 dev->name);
585 break;
587 skb_reserve (skb, 2); /* 16 byte align the IP header. */
588 /* Rubicon now supports 40 bits of addressing space. */
589 np->rx_ring[i].fraginfo =
590 cpu_to_le64 ( pci_map_single (
591 np->pdev, skb->data, np->rx_buf_sz,
592 PCI_DMA_FROMDEVICE));
593 np->rx_ring[i].fraginfo |= cpu_to_le64((u64)np->rx_buf_sz << 48);
596 /* Set RFDListPtr */
597 writel (np->rx_ring_dma, dev->base_addr + RFDListPtr0);
598 writel (0, dev->base_addr + RFDListPtr1);
600 return;
603 static netdev_tx_t
604 start_xmit (struct sk_buff *skb, struct net_device *dev)
606 struct netdev_private *np = netdev_priv(dev);
607 struct netdev_desc *txdesc;
608 unsigned entry;
609 u32 ioaddr;
610 u64 tfc_vlan_tag = 0;
612 if (np->link_status == 0) { /* Link Down */
613 dev_kfree_skb(skb);
614 return NETDEV_TX_OK;
616 ioaddr = dev->base_addr;
617 entry = np->cur_tx % TX_RING_SIZE;
618 np->tx_skbuff[entry] = skb;
619 txdesc = &np->tx_ring[entry];
621 #if 0
622 if (skb->ip_summed == CHECKSUM_PARTIAL) {
623 txdesc->status |=
624 cpu_to_le64 (TCPChecksumEnable | UDPChecksumEnable |
625 IPChecksumEnable);
627 #endif
628 if (np->vlan) {
629 tfc_vlan_tag = VLANTagInsert |
630 ((u64)np->vlan << 32) |
631 ((u64)skb->priority << 45);
633 txdesc->fraginfo = cpu_to_le64 (pci_map_single (np->pdev, skb->data,
634 skb->len,
635 PCI_DMA_TODEVICE));
636 txdesc->fraginfo |= cpu_to_le64((u64)skb->len << 48);
638 /* DL2K bug: DMA fails to get next descriptor ptr in 10Mbps mode
639 * Work around: Always use 1 descriptor in 10Mbps mode */
640 if (entry % np->tx_coalesce == 0 || np->speed == 10)
641 txdesc->status = cpu_to_le64 (entry | tfc_vlan_tag |
642 WordAlignDisable |
643 TxDMAIndicate |
644 (1 << FragCountShift));
645 else
646 txdesc->status = cpu_to_le64 (entry | tfc_vlan_tag |
647 WordAlignDisable |
648 (1 << FragCountShift));
650 /* TxDMAPollNow */
651 writel (readl (ioaddr + DMACtrl) | 0x00001000, ioaddr + DMACtrl);
652 /* Schedule ISR */
653 writel(10000, ioaddr + CountDown);
654 np->cur_tx = (np->cur_tx + 1) % TX_RING_SIZE;
655 if ((np->cur_tx - np->old_tx + TX_RING_SIZE) % TX_RING_SIZE
656 < TX_QUEUE_LEN - 1 && np->speed != 10) {
657 /* do nothing */
658 } else if (!netif_queue_stopped(dev)) {
659 netif_stop_queue (dev);
662 /* The first TFDListPtr */
663 if (readl (dev->base_addr + TFDListPtr0) == 0) {
664 writel (np->tx_ring_dma + entry * sizeof (struct netdev_desc),
665 dev->base_addr + TFDListPtr0);
666 writel (0, dev->base_addr + TFDListPtr1);
669 return NETDEV_TX_OK;
672 static irqreturn_t
673 rio_interrupt (int irq, void *dev_instance)
675 struct net_device *dev = dev_instance;
676 struct netdev_private *np;
677 unsigned int_status;
678 long ioaddr;
679 int cnt = max_intrloop;
680 int handled = 0;
682 ioaddr = dev->base_addr;
683 np = netdev_priv(dev);
684 while (1) {
685 int_status = readw (ioaddr + IntStatus);
686 writew (int_status, ioaddr + IntStatus);
687 int_status &= DEFAULT_INTR;
688 if (int_status == 0 || --cnt < 0)
689 break;
690 handled = 1;
691 /* Processing received packets */
692 if (int_status & RxDMAComplete)
693 receive_packet (dev);
694 /* TxDMAComplete interrupt */
695 if ((int_status & (TxDMAComplete|IntRequested))) {
696 int tx_status;
697 tx_status = readl (ioaddr + TxStatus);
698 if (tx_status & 0x01)
699 tx_error (dev, tx_status);
700 /* Free used tx skbuffs */
701 rio_free_tx (dev, 1);
704 /* Handle uncommon events */
705 if (int_status &
706 (HostError | LinkEvent | UpdateStats))
707 rio_error (dev, int_status);
709 if (np->cur_tx != np->old_tx)
710 writel (100, ioaddr + CountDown);
711 return IRQ_RETVAL(handled);
714 static inline dma_addr_t desc_to_dma(struct netdev_desc *desc)
716 return le64_to_cpu(desc->fraginfo) & DMA_BIT_MASK(48);
719 static void
720 rio_free_tx (struct net_device *dev, int irq)
722 struct netdev_private *np = netdev_priv(dev);
723 int entry = np->old_tx % TX_RING_SIZE;
724 int tx_use = 0;
725 unsigned long flag = 0;
727 if (irq)
728 spin_lock(&np->tx_lock);
729 else
730 spin_lock_irqsave(&np->tx_lock, flag);
732 /* Free used tx skbuffs */
733 while (entry != np->cur_tx) {
734 struct sk_buff *skb;
736 if (!(np->tx_ring[entry].status & cpu_to_le64(TFDDone)))
737 break;
738 skb = np->tx_skbuff[entry];
739 pci_unmap_single (np->pdev,
740 desc_to_dma(&np->tx_ring[entry]),
741 skb->len, PCI_DMA_TODEVICE);
742 if (irq)
743 dev_kfree_skb_irq (skb);
744 else
745 dev_kfree_skb (skb);
747 np->tx_skbuff[entry] = NULL;
748 entry = (entry + 1) % TX_RING_SIZE;
749 tx_use++;
751 if (irq)
752 spin_unlock(&np->tx_lock);
753 else
754 spin_unlock_irqrestore(&np->tx_lock, flag);
755 np->old_tx = entry;
757 /* If the ring is no longer full, clear tx_full and
758 call netif_wake_queue() */
760 if (netif_queue_stopped(dev) &&
761 ((np->cur_tx - np->old_tx + TX_RING_SIZE) % TX_RING_SIZE
762 < TX_QUEUE_LEN - 1 || np->speed == 10)) {
763 netif_wake_queue (dev);
767 static void
768 tx_error (struct net_device *dev, int tx_status)
770 struct netdev_private *np;
771 long ioaddr = dev->base_addr;
772 int frame_id;
773 int i;
775 np = netdev_priv(dev);
777 frame_id = (tx_status & 0xffff0000);
778 printk (KERN_ERR "%s: Transmit error, TxStatus %4.4x, FrameId %d.\n",
779 dev->name, tx_status, frame_id);
780 np->stats.tx_errors++;
781 /* Ttransmit Underrun */
782 if (tx_status & 0x10) {
783 np->stats.tx_fifo_errors++;
784 writew (readw (ioaddr + TxStartThresh) + 0x10,
785 ioaddr + TxStartThresh);
786 /* Transmit Underrun need to set TxReset, DMARest, FIFOReset */
787 writew (TxReset | DMAReset | FIFOReset | NetworkReset,
788 ioaddr + ASICCtrl + 2);
789 /* Wait for ResetBusy bit clear */
790 for (i = 50; i > 0; i--) {
791 if ((readw (ioaddr + ASICCtrl + 2) & ResetBusy) == 0)
792 break;
793 mdelay (1);
795 rio_free_tx (dev, 1);
796 /* Reset TFDListPtr */
797 writel (np->tx_ring_dma +
798 np->old_tx * sizeof (struct netdev_desc),
799 dev->base_addr + TFDListPtr0);
800 writel (0, dev->base_addr + TFDListPtr1);
802 /* Let TxStartThresh stay default value */
804 /* Late Collision */
805 if (tx_status & 0x04) {
806 np->stats.tx_fifo_errors++;
807 /* TxReset and clear FIFO */
808 writew (TxReset | FIFOReset, ioaddr + ASICCtrl + 2);
809 /* Wait reset done */
810 for (i = 50; i > 0; i--) {
811 if ((readw (ioaddr + ASICCtrl + 2) & ResetBusy) == 0)
812 break;
813 mdelay (1);
815 /* Let TxStartThresh stay default value */
817 /* Maximum Collisions */
818 #ifdef ETHER_STATS
819 if (tx_status & 0x08)
820 np->stats.collisions16++;
821 #else
822 if (tx_status & 0x08)
823 np->stats.collisions++;
824 #endif
825 /* Restart the Tx */
826 writel (readw (dev->base_addr + MACCtrl) | TxEnable, ioaddr + MACCtrl);
829 static int
830 receive_packet (struct net_device *dev)
832 struct netdev_private *np = netdev_priv(dev);
833 int entry = np->cur_rx % RX_RING_SIZE;
834 int cnt = 30;
836 /* If RFDDone, FrameStart and FrameEnd set, there is a new packet in. */
837 while (1) {
838 struct netdev_desc *desc = &np->rx_ring[entry];
839 int pkt_len;
840 u64 frame_status;
842 if (!(desc->status & cpu_to_le64(RFDDone)) ||
843 !(desc->status & cpu_to_le64(FrameStart)) ||
844 !(desc->status & cpu_to_le64(FrameEnd)))
845 break;
847 /* Chip omits the CRC. */
848 frame_status = le64_to_cpu(desc->status);
849 pkt_len = frame_status & 0xffff;
850 if (--cnt < 0)
851 break;
852 /* Update rx error statistics, drop packet. */
853 if (frame_status & RFS_Errors) {
854 np->stats.rx_errors++;
855 if (frame_status & (RxRuntFrame | RxLengthError))
856 np->stats.rx_length_errors++;
857 if (frame_status & RxFCSError)
858 np->stats.rx_crc_errors++;
859 if (frame_status & RxAlignmentError && np->speed != 1000)
860 np->stats.rx_frame_errors++;
861 if (frame_status & RxFIFOOverrun)
862 np->stats.rx_fifo_errors++;
863 } else {
864 struct sk_buff *skb;
866 /* Small skbuffs for short packets */
867 if (pkt_len > copy_thresh) {
868 pci_unmap_single (np->pdev,
869 desc_to_dma(desc),
870 np->rx_buf_sz,
871 PCI_DMA_FROMDEVICE);
872 skb_put (skb = np->rx_skbuff[entry], pkt_len);
873 np->rx_skbuff[entry] = NULL;
874 } else if ((skb = netdev_alloc_skb(dev, pkt_len + 2))) {
875 pci_dma_sync_single_for_cpu(np->pdev,
876 desc_to_dma(desc),
877 np->rx_buf_sz,
878 PCI_DMA_FROMDEVICE);
879 /* 16 byte align the IP header */
880 skb_reserve (skb, 2);
881 skb_copy_to_linear_data (skb,
882 np->rx_skbuff[entry]->data,
883 pkt_len);
884 skb_put (skb, pkt_len);
885 pci_dma_sync_single_for_device(np->pdev,
886 desc_to_dma(desc),
887 np->rx_buf_sz,
888 PCI_DMA_FROMDEVICE);
890 skb->protocol = eth_type_trans (skb, dev);
891 #if 0
892 /* Checksum done by hw, but csum value unavailable. */
893 if (np->pdev->pci_rev_id >= 0x0c &&
894 !(frame_status & (TCPError | UDPError | IPError))) {
895 skb->ip_summed = CHECKSUM_UNNECESSARY;
897 #endif
898 netif_rx (skb);
900 entry = (entry + 1) % RX_RING_SIZE;
902 spin_lock(&np->rx_lock);
903 np->cur_rx = entry;
904 /* Re-allocate skbuffs to fill the descriptor ring */
905 entry = np->old_rx;
906 while (entry != np->cur_rx) {
907 struct sk_buff *skb;
908 /* Dropped packets don't need to re-allocate */
909 if (np->rx_skbuff[entry] == NULL) {
910 skb = netdev_alloc_skb(dev, np->rx_buf_sz);
911 if (skb == NULL) {
912 np->rx_ring[entry].fraginfo = 0;
913 printk (KERN_INFO
914 "%s: receive_packet: "
915 "Unable to re-allocate Rx skbuff.#%d\n",
916 dev->name, entry);
917 break;
919 np->rx_skbuff[entry] = skb;
920 /* 16 byte align the IP header */
921 skb_reserve (skb, 2);
922 np->rx_ring[entry].fraginfo =
923 cpu_to_le64 (pci_map_single
924 (np->pdev, skb->data, np->rx_buf_sz,
925 PCI_DMA_FROMDEVICE));
927 np->rx_ring[entry].fraginfo |=
928 cpu_to_le64((u64)np->rx_buf_sz << 48);
929 np->rx_ring[entry].status = 0;
930 entry = (entry + 1) % RX_RING_SIZE;
932 np->old_rx = entry;
933 spin_unlock(&np->rx_lock);
934 return 0;
937 static void
938 rio_error (struct net_device *dev, int int_status)
940 long ioaddr = dev->base_addr;
941 struct netdev_private *np = netdev_priv(dev);
942 u16 macctrl;
944 /* Link change event */
945 if (int_status & LinkEvent) {
946 if (mii_wait_link (dev, 10) == 0) {
947 printk (KERN_INFO "%s: Link up\n", dev->name);
948 if (np->phy_media)
949 mii_get_media_pcs (dev);
950 else
951 mii_get_media (dev);
952 if (np->speed == 1000)
953 np->tx_coalesce = tx_coalesce;
954 else
955 np->tx_coalesce = 1;
956 macctrl = 0;
957 macctrl |= (np->vlan) ? AutoVLANuntagging : 0;
958 macctrl |= (np->full_duplex) ? DuplexSelect : 0;
959 macctrl |= (np->tx_flow) ?
960 TxFlowControlEnable : 0;
961 macctrl |= (np->rx_flow) ?
962 RxFlowControlEnable : 0;
963 writew(macctrl, ioaddr + MACCtrl);
964 np->link_status = 1;
965 netif_carrier_on(dev);
966 } else {
967 printk (KERN_INFO "%s: Link off\n", dev->name);
968 np->link_status = 0;
969 netif_carrier_off(dev);
973 /* UpdateStats statistics registers */
974 if (int_status & UpdateStats) {
975 get_stats (dev);
978 /* PCI Error, a catastronphic error related to the bus interface
979 occurs, set GlobalReset and HostReset to reset. */
980 if (int_status & HostError) {
981 printk (KERN_ERR "%s: HostError! IntStatus %4.4x.\n",
982 dev->name, int_status);
983 writew (GlobalReset | HostReset, ioaddr + ASICCtrl + 2);
984 mdelay (500);
988 static struct net_device_stats *
989 get_stats (struct net_device *dev)
991 long ioaddr = dev->base_addr;
992 struct netdev_private *np = netdev_priv(dev);
993 #ifdef MEM_MAPPING
994 int i;
995 #endif
996 unsigned int stat_reg;
998 /* All statistics registers need to be acknowledged,
999 else statistic overflow could cause problems */
1001 np->stats.rx_packets += readl (ioaddr + FramesRcvOk);
1002 np->stats.tx_packets += readl (ioaddr + FramesXmtOk);
1003 np->stats.rx_bytes += readl (ioaddr + OctetRcvOk);
1004 np->stats.tx_bytes += readl (ioaddr + OctetXmtOk);
1006 np->stats.multicast = readl (ioaddr + McstFramesRcvdOk);
1007 np->stats.collisions += readl (ioaddr + SingleColFrames)
1008 + readl (ioaddr + MultiColFrames);
1010 /* detailed tx errors */
1011 stat_reg = readw (ioaddr + FramesAbortXSColls);
1012 np->stats.tx_aborted_errors += stat_reg;
1013 np->stats.tx_errors += stat_reg;
1015 stat_reg = readw (ioaddr + CarrierSenseErrors);
1016 np->stats.tx_carrier_errors += stat_reg;
1017 np->stats.tx_errors += stat_reg;
1019 /* Clear all other statistic register. */
1020 readl (ioaddr + McstOctetXmtOk);
1021 readw (ioaddr + BcstFramesXmtdOk);
1022 readl (ioaddr + McstFramesXmtdOk);
1023 readw (ioaddr + BcstFramesRcvdOk);
1024 readw (ioaddr + MacControlFramesRcvd);
1025 readw (ioaddr + FrameTooLongErrors);
1026 readw (ioaddr + InRangeLengthErrors);
1027 readw (ioaddr + FramesCheckSeqErrors);
1028 readw (ioaddr + FramesLostRxErrors);
1029 readl (ioaddr + McstOctetXmtOk);
1030 readl (ioaddr + BcstOctetXmtOk);
1031 readl (ioaddr + McstFramesXmtdOk);
1032 readl (ioaddr + FramesWDeferredXmt);
1033 readl (ioaddr + LateCollisions);
1034 readw (ioaddr + BcstFramesXmtdOk);
1035 readw (ioaddr + MacControlFramesXmtd);
1036 readw (ioaddr + FramesWEXDeferal);
1038 #ifdef MEM_MAPPING
1039 for (i = 0x100; i <= 0x150; i += 4)
1040 readl (ioaddr + i);
1041 #endif
1042 readw (ioaddr + TxJumboFrames);
1043 readw (ioaddr + RxJumboFrames);
1044 readw (ioaddr + TCPCheckSumErrors);
1045 readw (ioaddr + UDPCheckSumErrors);
1046 readw (ioaddr + IPCheckSumErrors);
1047 return &np->stats;
1050 static int
1051 clear_stats (struct net_device *dev)
1053 long ioaddr = dev->base_addr;
1054 #ifdef MEM_MAPPING
1055 int i;
1056 #endif
1058 /* All statistics registers need to be acknowledged,
1059 else statistic overflow could cause problems */
1060 readl (ioaddr + FramesRcvOk);
1061 readl (ioaddr + FramesXmtOk);
1062 readl (ioaddr + OctetRcvOk);
1063 readl (ioaddr + OctetXmtOk);
1065 readl (ioaddr + McstFramesRcvdOk);
1066 readl (ioaddr + SingleColFrames);
1067 readl (ioaddr + MultiColFrames);
1068 readl (ioaddr + LateCollisions);
1069 /* detailed rx errors */
1070 readw (ioaddr + FrameTooLongErrors);
1071 readw (ioaddr + InRangeLengthErrors);
1072 readw (ioaddr + FramesCheckSeqErrors);
1073 readw (ioaddr + FramesLostRxErrors);
1075 /* detailed tx errors */
1076 readw (ioaddr + FramesAbortXSColls);
1077 readw (ioaddr + CarrierSenseErrors);
1079 /* Clear all other statistic register. */
1080 readl (ioaddr + McstOctetXmtOk);
1081 readw (ioaddr + BcstFramesXmtdOk);
1082 readl (ioaddr + McstFramesXmtdOk);
1083 readw (ioaddr + BcstFramesRcvdOk);
1084 readw (ioaddr + MacControlFramesRcvd);
1085 readl (ioaddr + McstOctetXmtOk);
1086 readl (ioaddr + BcstOctetXmtOk);
1087 readl (ioaddr + McstFramesXmtdOk);
1088 readl (ioaddr + FramesWDeferredXmt);
1089 readw (ioaddr + BcstFramesXmtdOk);
1090 readw (ioaddr + MacControlFramesXmtd);
1091 readw (ioaddr + FramesWEXDeferal);
1092 #ifdef MEM_MAPPING
1093 for (i = 0x100; i <= 0x150; i += 4)
1094 readl (ioaddr + i);
1095 #endif
1096 readw (ioaddr + TxJumboFrames);
1097 readw (ioaddr + RxJumboFrames);
1098 readw (ioaddr + TCPCheckSumErrors);
1099 readw (ioaddr + UDPCheckSumErrors);
1100 readw (ioaddr + IPCheckSumErrors);
1101 return 0;
1105 static int
1106 change_mtu (struct net_device *dev, int new_mtu)
1108 struct netdev_private *np = netdev_priv(dev);
1109 int max = (np->jumbo) ? MAX_JUMBO : 1536;
1111 if ((new_mtu < 68) || (new_mtu > max)) {
1112 return -EINVAL;
1115 dev->mtu = new_mtu;
1117 return 0;
1120 static void
1121 set_multicast (struct net_device *dev)
1123 long ioaddr = dev->base_addr;
1124 u32 hash_table[2];
1125 u16 rx_mode = 0;
1126 struct netdev_private *np = netdev_priv(dev);
1128 hash_table[0] = hash_table[1] = 0;
1129 /* RxFlowcontrol DA: 01-80-C2-00-00-01. Hash index=0x39 */
1130 hash_table[1] |= 0x02000000;
1131 if (dev->flags & IFF_PROMISC) {
1132 /* Receive all frames promiscuously. */
1133 rx_mode = ReceiveAllFrames;
1134 } else if ((dev->flags & IFF_ALLMULTI) ||
1135 (dev->mc_count > multicast_filter_limit)) {
1136 /* Receive broadcast and multicast frames */
1137 rx_mode = ReceiveBroadcast | ReceiveMulticast | ReceiveUnicast;
1138 } else if (dev->mc_count > 0) {
1139 int i;
1140 struct dev_mc_list *mclist;
1141 /* Receive broadcast frames and multicast frames filtering
1142 by Hashtable */
1143 rx_mode =
1144 ReceiveBroadcast | ReceiveMulticastHash | ReceiveUnicast;
1145 for (i=0, mclist = dev->mc_list; mclist && i < dev->mc_count;
1146 i++, mclist=mclist->next)
1148 int bit, index = 0;
1149 int crc = ether_crc_le (ETH_ALEN, mclist->dmi_addr);
1150 /* The inverted high significant 6 bits of CRC are
1151 used as an index to hashtable */
1152 for (bit = 0; bit < 6; bit++)
1153 if (crc & (1 << (31 - bit)))
1154 index |= (1 << bit);
1155 hash_table[index / 32] |= (1 << (index % 32));
1157 } else {
1158 rx_mode = ReceiveBroadcast | ReceiveUnicast;
1160 if (np->vlan) {
1161 /* ReceiveVLANMatch field in ReceiveMode */
1162 rx_mode |= ReceiveVLANMatch;
1165 writel (hash_table[0], ioaddr + HashTable0);
1166 writel (hash_table[1], ioaddr + HashTable1);
1167 writew (rx_mode, ioaddr + ReceiveMode);
1170 static void rio_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1172 struct netdev_private *np = netdev_priv(dev);
1173 strcpy(info->driver, "dl2k");
1174 strcpy(info->version, DRV_VERSION);
1175 strcpy(info->bus_info, pci_name(np->pdev));
1178 static int rio_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1180 struct netdev_private *np = netdev_priv(dev);
1181 if (np->phy_media) {
1182 /* fiber device */
1183 cmd->supported = SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1184 cmd->advertising= ADVERTISED_Autoneg | ADVERTISED_FIBRE;
1185 cmd->port = PORT_FIBRE;
1186 cmd->transceiver = XCVR_INTERNAL;
1187 } else {
1188 /* copper device */
1189 cmd->supported = SUPPORTED_10baseT_Half |
1190 SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Half
1191 | SUPPORTED_100baseT_Full | SUPPORTED_1000baseT_Full |
1192 SUPPORTED_Autoneg | SUPPORTED_MII;
1193 cmd->advertising = ADVERTISED_10baseT_Half |
1194 ADVERTISED_10baseT_Full | ADVERTISED_100baseT_Half |
1195 ADVERTISED_100baseT_Full | ADVERTISED_1000baseT_Full|
1196 ADVERTISED_Autoneg | ADVERTISED_MII;
1197 cmd->port = PORT_MII;
1198 cmd->transceiver = XCVR_INTERNAL;
1200 if ( np->link_status ) {
1201 cmd->speed = np->speed;
1202 cmd->duplex = np->full_duplex ? DUPLEX_FULL : DUPLEX_HALF;
1203 } else {
1204 cmd->speed = -1;
1205 cmd->duplex = -1;
1207 if ( np->an_enable)
1208 cmd->autoneg = AUTONEG_ENABLE;
1209 else
1210 cmd->autoneg = AUTONEG_DISABLE;
1212 cmd->phy_address = np->phy_addr;
1213 return 0;
1216 static int rio_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1218 struct netdev_private *np = netdev_priv(dev);
1219 netif_carrier_off(dev);
1220 if (cmd->autoneg == AUTONEG_ENABLE) {
1221 if (np->an_enable)
1222 return 0;
1223 else {
1224 np->an_enable = 1;
1225 mii_set_media(dev);
1226 return 0;
1228 } else {
1229 np->an_enable = 0;
1230 if (np->speed == 1000) {
1231 cmd->speed = SPEED_100;
1232 cmd->duplex = DUPLEX_FULL;
1233 printk("Warning!! Can't disable Auto negotiation in 1000Mbps, change to Manual 100Mbps, Full duplex.\n");
1235 switch(cmd->speed + cmd->duplex) {
1237 case SPEED_10 + DUPLEX_HALF:
1238 np->speed = 10;
1239 np->full_duplex = 0;
1240 break;
1242 case SPEED_10 + DUPLEX_FULL:
1243 np->speed = 10;
1244 np->full_duplex = 1;
1245 break;
1246 case SPEED_100 + DUPLEX_HALF:
1247 np->speed = 100;
1248 np->full_duplex = 0;
1249 break;
1250 case SPEED_100 + DUPLEX_FULL:
1251 np->speed = 100;
1252 np->full_duplex = 1;
1253 break;
1254 case SPEED_1000 + DUPLEX_HALF:/* not supported */
1255 case SPEED_1000 + DUPLEX_FULL:/* not supported */
1256 default:
1257 return -EINVAL;
1259 mii_set_media(dev);
1261 return 0;
1264 static u32 rio_get_link(struct net_device *dev)
1266 struct netdev_private *np = netdev_priv(dev);
1267 return np->link_status;
1270 static const struct ethtool_ops ethtool_ops = {
1271 .get_drvinfo = rio_get_drvinfo,
1272 .get_settings = rio_get_settings,
1273 .set_settings = rio_set_settings,
1274 .get_link = rio_get_link,
1277 static int
1278 rio_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
1280 int phy_addr;
1281 struct netdev_private *np = netdev_priv(dev);
1282 struct mii_ioctl_data *miidata = if_mii(rq);
1284 phy_addr = np->phy_addr;
1285 switch (cmd) {
1286 case SIOCGMIIPHY:
1287 miidata->phy_id = phy_addr;
1288 break;
1289 case SIOCGMIIREG:
1290 miidata->val_out = mii_read (dev, phy_addr, miidata->reg_num);
1291 break;
1292 case SIOCSMIIREG:
1293 if (!capable(CAP_NET_ADMIN))
1294 return -EPERM;
1295 mii_write (dev, phy_addr, miidata->reg_num, miidata->val_in);
1296 break;
1297 default:
1298 return -EOPNOTSUPP;
1300 return 0;
1303 #define EEP_READ 0x0200
1304 #define EEP_BUSY 0x8000
1305 /* Read the EEPROM word */
1306 /* We use I/O instruction to read/write eeprom to avoid fail on some machines */
1307 static int
1308 read_eeprom (long ioaddr, int eep_addr)
1310 int i = 1000;
1311 outw (EEP_READ | (eep_addr & 0xff), ioaddr + EepromCtrl);
1312 while (i-- > 0) {
1313 if (!(inw (ioaddr + EepromCtrl) & EEP_BUSY)) {
1314 return inw (ioaddr + EepromData);
1317 return 0;
1320 enum phy_ctrl_bits {
1321 MII_READ = 0x00, MII_CLK = 0x01, MII_DATA1 = 0x02, MII_WRITE = 0x04,
1322 MII_DUPLEX = 0x08,
1325 #define mii_delay() readb(ioaddr)
1326 static void
1327 mii_sendbit (struct net_device *dev, u32 data)
1329 long ioaddr = dev->base_addr + PhyCtrl;
1330 data = (data) ? MII_DATA1 : 0;
1331 data |= MII_WRITE;
1332 data |= (readb (ioaddr) & 0xf8) | MII_WRITE;
1333 writeb (data, ioaddr);
1334 mii_delay ();
1335 writeb (data | MII_CLK, ioaddr);
1336 mii_delay ();
1339 static int
1340 mii_getbit (struct net_device *dev)
1342 long ioaddr = dev->base_addr + PhyCtrl;
1343 u8 data;
1345 data = (readb (ioaddr) & 0xf8) | MII_READ;
1346 writeb (data, ioaddr);
1347 mii_delay ();
1348 writeb (data | MII_CLK, ioaddr);
1349 mii_delay ();
1350 return ((readb (ioaddr) >> 1) & 1);
1353 static void
1354 mii_send_bits (struct net_device *dev, u32 data, int len)
1356 int i;
1357 for (i = len - 1; i >= 0; i--) {
1358 mii_sendbit (dev, data & (1 << i));
1362 static int
1363 mii_read (struct net_device *dev, int phy_addr, int reg_num)
1365 u32 cmd;
1366 int i;
1367 u32 retval = 0;
1369 /* Preamble */
1370 mii_send_bits (dev, 0xffffffff, 32);
1371 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1372 /* ST,OP = 0110'b for read operation */
1373 cmd = (0x06 << 10 | phy_addr << 5 | reg_num);
1374 mii_send_bits (dev, cmd, 14);
1375 /* Turnaround */
1376 if (mii_getbit (dev))
1377 goto err_out;
1378 /* Read data */
1379 for (i = 0; i < 16; i++) {
1380 retval |= mii_getbit (dev);
1381 retval <<= 1;
1383 /* End cycle */
1384 mii_getbit (dev);
1385 return (retval >> 1) & 0xffff;
1387 err_out:
1388 return 0;
1390 static int
1391 mii_write (struct net_device *dev, int phy_addr, int reg_num, u16 data)
1393 u32 cmd;
1395 /* Preamble */
1396 mii_send_bits (dev, 0xffffffff, 32);
1397 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1398 /* ST,OP,AAAAA,RRRRR,TA = 0101xxxxxxxxxx10'b = 0x5002 for write */
1399 cmd = (0x5002 << 16) | (phy_addr << 23) | (reg_num << 18) | data;
1400 mii_send_bits (dev, cmd, 32);
1401 /* End cycle */
1402 mii_getbit (dev);
1403 return 0;
1405 static int
1406 mii_wait_link (struct net_device *dev, int wait)
1408 __u16 bmsr;
1409 int phy_addr;
1410 struct netdev_private *np;
1412 np = netdev_priv(dev);
1413 phy_addr = np->phy_addr;
1415 do {
1416 bmsr = mii_read (dev, phy_addr, MII_BMSR);
1417 if (bmsr & BMSR_LSTATUS)
1418 return 0;
1419 mdelay (1);
1420 } while (--wait > 0);
1421 return -1;
1423 static int
1424 mii_get_media (struct net_device *dev)
1426 __u16 negotiate;
1427 __u16 bmsr;
1428 __u16 mscr;
1429 __u16 mssr;
1430 int phy_addr;
1431 struct netdev_private *np;
1433 np = netdev_priv(dev);
1434 phy_addr = np->phy_addr;
1436 bmsr = mii_read (dev, phy_addr, MII_BMSR);
1437 if (np->an_enable) {
1438 if (!(bmsr & BMSR_ANEGCOMPLETE)) {
1439 /* Auto-Negotiation not completed */
1440 return -1;
1442 negotiate = mii_read (dev, phy_addr, MII_ADVERTISE) &
1443 mii_read (dev, phy_addr, MII_LPA);
1444 mscr = mii_read (dev, phy_addr, MII_CTRL1000);
1445 mssr = mii_read (dev, phy_addr, MII_STAT1000);
1446 if (mscr & ADVERTISE_1000FULL && mssr & LPA_1000FULL) {
1447 np->speed = 1000;
1448 np->full_duplex = 1;
1449 printk (KERN_INFO "Auto 1000 Mbps, Full duplex\n");
1450 } else if (mscr & ADVERTISE_1000HALF && mssr & LPA_1000HALF) {
1451 np->speed = 1000;
1452 np->full_duplex = 0;
1453 printk (KERN_INFO "Auto 1000 Mbps, Half duplex\n");
1454 } else if (negotiate & ADVERTISE_100FULL) {
1455 np->speed = 100;
1456 np->full_duplex = 1;
1457 printk (KERN_INFO "Auto 100 Mbps, Full duplex\n");
1458 } else if (negotiate & ADVERTISE_100HALF) {
1459 np->speed = 100;
1460 np->full_duplex = 0;
1461 printk (KERN_INFO "Auto 100 Mbps, Half duplex\n");
1462 } else if (negotiate & ADVERTISE_10FULL) {
1463 np->speed = 10;
1464 np->full_duplex = 1;
1465 printk (KERN_INFO "Auto 10 Mbps, Full duplex\n");
1466 } else if (negotiate & ADVERTISE_10HALF) {
1467 np->speed = 10;
1468 np->full_duplex = 0;
1469 printk (KERN_INFO "Auto 10 Mbps, Half duplex\n");
1471 if (negotiate & ADVERTISE_PAUSE_CAP) {
1472 np->tx_flow &= 1;
1473 np->rx_flow &= 1;
1474 } else if (negotiate & ADVERTISE_PAUSE_ASYM) {
1475 np->tx_flow = 0;
1476 np->rx_flow &= 1;
1478 /* else tx_flow, rx_flow = user select */
1479 } else {
1480 __u16 bmcr = mii_read (dev, phy_addr, MII_BMCR);
1481 switch (bmcr & (BMCR_SPEED100 | BMCR_SPEED1000)) {
1482 case BMCR_SPEED1000:
1483 printk (KERN_INFO "Operating at 1000 Mbps, ");
1484 break;
1485 case BMCR_SPEED100:
1486 printk (KERN_INFO "Operating at 100 Mbps, ");
1487 break;
1488 case 0:
1489 printk (KERN_INFO "Operating at 10 Mbps, ");
1491 if (bmcr & BMCR_FULLDPLX) {
1492 printk (KERN_CONT "Full duplex\n");
1493 } else {
1494 printk (KERN_CONT "Half duplex\n");
1497 if (np->tx_flow)
1498 printk(KERN_INFO "Enable Tx Flow Control\n");
1499 else
1500 printk(KERN_INFO "Disable Tx Flow Control\n");
1501 if (np->rx_flow)
1502 printk(KERN_INFO "Enable Rx Flow Control\n");
1503 else
1504 printk(KERN_INFO "Disable Rx Flow Control\n");
1506 return 0;
1509 static int
1510 mii_set_media (struct net_device *dev)
1512 __u16 pscr;
1513 __u16 bmcr;
1514 __u16 bmsr;
1515 __u16 anar;
1516 int phy_addr;
1517 struct netdev_private *np;
1518 np = netdev_priv(dev);
1519 phy_addr = np->phy_addr;
1521 /* Does user set speed? */
1522 if (np->an_enable) {
1523 /* Advertise capabilities */
1524 bmsr = mii_read (dev, phy_addr, MII_BMSR);
1525 anar = mii_read (dev, phy_addr, MII_ADVERTISE) &
1526 ~(ADVERTISE_100FULL | ADVERTISE_10FULL |
1527 ADVERTISE_100HALF | ADVERTISE_10HALF |
1528 ADVERTISE_100BASE4);
1529 if (bmsr & BMSR_100FULL)
1530 anar |= ADVERTISE_100FULL;
1531 if (bmsr & BMSR_100HALF)
1532 anar |= ADVERTISE_100HALF;
1533 if (bmsr & BMSR_100BASE4)
1534 anar |= ADVERTISE_100BASE4;
1535 if (bmsr & BMSR_10FULL)
1536 anar |= ADVERTISE_10FULL;
1537 if (bmsr & BMSR_10HALF)
1538 anar |= ADVERTISE_10HALF;
1539 anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1540 mii_write (dev, phy_addr, MII_ADVERTISE, anar);
1542 /* Enable Auto crossover */
1543 pscr = mii_read (dev, phy_addr, MII_PHY_SCR);
1544 pscr |= 3 << 5; /* 11'b */
1545 mii_write (dev, phy_addr, MII_PHY_SCR, pscr);
1547 /* Soft reset PHY */
1548 mii_write (dev, phy_addr, MII_BMCR, BMCR_RESET);
1549 bmcr = BMCR_ANENABLE | BMCR_ANRESTART | BMCR_RESET;
1550 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1551 mdelay(1);
1552 } else {
1553 /* Force speed setting */
1554 /* 1) Disable Auto crossover */
1555 pscr = mii_read (dev, phy_addr, MII_PHY_SCR);
1556 pscr &= ~(3 << 5);
1557 mii_write (dev, phy_addr, MII_PHY_SCR, pscr);
1559 /* 2) PHY Reset */
1560 bmcr = mii_read (dev, phy_addr, MII_BMCR);
1561 bmcr |= BMCR_RESET;
1562 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1564 /* 3) Power Down */
1565 bmcr = 0x1940; /* must be 0x1940 */
1566 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1567 mdelay (100); /* wait a certain time */
1569 /* 4) Advertise nothing */
1570 mii_write (dev, phy_addr, MII_ADVERTISE, 0);
1572 /* 5) Set media and Power Up */
1573 bmcr = BMCR_PDOWN;
1574 if (np->speed == 100) {
1575 bmcr |= BMCR_SPEED100;
1576 printk (KERN_INFO "Manual 100 Mbps, ");
1577 } else if (np->speed == 10) {
1578 printk (KERN_INFO "Manual 10 Mbps, ");
1580 if (np->full_duplex) {
1581 bmcr |= BMCR_FULLDPLX;
1582 printk (KERN_CONT "Full duplex\n");
1583 } else {
1584 printk (KERN_CONT "Half duplex\n");
1586 #if 0
1587 /* Set 1000BaseT Master/Slave setting */
1588 mscr = mii_read (dev, phy_addr, MII_CTRL1000);
1589 mscr |= MII_MSCR_CFG_ENABLE;
1590 mscr &= ~MII_MSCR_CFG_VALUE = 0;
1591 #endif
1592 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1593 mdelay(10);
1595 return 0;
1598 static int
1599 mii_get_media_pcs (struct net_device *dev)
1601 __u16 negotiate;
1602 __u16 bmsr;
1603 int phy_addr;
1604 struct netdev_private *np;
1606 np = netdev_priv(dev);
1607 phy_addr = np->phy_addr;
1609 bmsr = mii_read (dev, phy_addr, PCS_BMSR);
1610 if (np->an_enable) {
1611 if (!(bmsr & BMSR_ANEGCOMPLETE)) {
1612 /* Auto-Negotiation not completed */
1613 return -1;
1615 negotiate = mii_read (dev, phy_addr, PCS_ANAR) &
1616 mii_read (dev, phy_addr, PCS_ANLPAR);
1617 np->speed = 1000;
1618 if (negotiate & PCS_ANAR_FULL_DUPLEX) {
1619 printk (KERN_INFO "Auto 1000 Mbps, Full duplex\n");
1620 np->full_duplex = 1;
1621 } else {
1622 printk (KERN_INFO "Auto 1000 Mbps, half duplex\n");
1623 np->full_duplex = 0;
1625 if (negotiate & PCS_ANAR_PAUSE) {
1626 np->tx_flow &= 1;
1627 np->rx_flow &= 1;
1628 } else if (negotiate & PCS_ANAR_ASYMMETRIC) {
1629 np->tx_flow = 0;
1630 np->rx_flow &= 1;
1632 /* else tx_flow, rx_flow = user select */
1633 } else {
1634 __u16 bmcr = mii_read (dev, phy_addr, PCS_BMCR);
1635 printk (KERN_INFO "Operating at 1000 Mbps, ");
1636 if (bmcr & BMCR_FULLDPLX) {
1637 printk (KERN_CONT "Full duplex\n");
1638 } else {
1639 printk (KERN_CONT "Half duplex\n");
1642 if (np->tx_flow)
1643 printk(KERN_INFO "Enable Tx Flow Control\n");
1644 else
1645 printk(KERN_INFO "Disable Tx Flow Control\n");
1646 if (np->rx_flow)
1647 printk(KERN_INFO "Enable Rx Flow Control\n");
1648 else
1649 printk(KERN_INFO "Disable Rx Flow Control\n");
1651 return 0;
1654 static int
1655 mii_set_media_pcs (struct net_device *dev)
1657 __u16 bmcr;
1658 __u16 esr;
1659 __u16 anar;
1660 int phy_addr;
1661 struct netdev_private *np;
1662 np = netdev_priv(dev);
1663 phy_addr = np->phy_addr;
1665 /* Auto-Negotiation? */
1666 if (np->an_enable) {
1667 /* Advertise capabilities */
1668 esr = mii_read (dev, phy_addr, PCS_ESR);
1669 anar = mii_read (dev, phy_addr, MII_ADVERTISE) &
1670 ~PCS_ANAR_HALF_DUPLEX &
1671 ~PCS_ANAR_FULL_DUPLEX;
1672 if (esr & (MII_ESR_1000BT_HD | MII_ESR_1000BX_HD))
1673 anar |= PCS_ANAR_HALF_DUPLEX;
1674 if (esr & (MII_ESR_1000BT_FD | MII_ESR_1000BX_FD))
1675 anar |= PCS_ANAR_FULL_DUPLEX;
1676 anar |= PCS_ANAR_PAUSE | PCS_ANAR_ASYMMETRIC;
1677 mii_write (dev, phy_addr, MII_ADVERTISE, anar);
1679 /* Soft reset PHY */
1680 mii_write (dev, phy_addr, MII_BMCR, BMCR_RESET);
1681 bmcr = BMCR_ANENABLE | BMCR_ANRESTART | BMCR_RESET;
1682 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1683 mdelay(1);
1684 } else {
1685 /* Force speed setting */
1686 /* PHY Reset */
1687 bmcr = BMCR_RESET;
1688 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1689 mdelay(10);
1690 if (np->full_duplex) {
1691 bmcr = BMCR_FULLDPLX;
1692 printk (KERN_INFO "Manual full duplex\n");
1693 } else {
1694 bmcr = 0;
1695 printk (KERN_INFO "Manual half duplex\n");
1697 mii_write (dev, phy_addr, MII_BMCR, bmcr);
1698 mdelay(10);
1700 /* Advertise nothing */
1701 mii_write (dev, phy_addr, MII_ADVERTISE, 0);
1703 return 0;
1707 static int
1708 rio_close (struct net_device *dev)
1710 long ioaddr = dev->base_addr;
1711 struct netdev_private *np = netdev_priv(dev);
1712 struct sk_buff *skb;
1713 int i;
1715 netif_stop_queue (dev);
1717 /* Disable interrupts */
1718 writew (0, ioaddr + IntEnable);
1720 /* Stop Tx and Rx logics */
1721 writel (TxDisable | RxDisable | StatsDisable, ioaddr + MACCtrl);
1723 free_irq (dev->irq, dev);
1724 del_timer_sync (&np->timer);
1726 /* Free all the skbuffs in the queue. */
1727 for (i = 0; i < RX_RING_SIZE; i++) {
1728 np->rx_ring[i].status = 0;
1729 np->rx_ring[i].fraginfo = 0;
1730 skb = np->rx_skbuff[i];
1731 if (skb) {
1732 pci_unmap_single(np->pdev,
1733 desc_to_dma(&np->rx_ring[i]),
1734 skb->len, PCI_DMA_FROMDEVICE);
1735 dev_kfree_skb (skb);
1736 np->rx_skbuff[i] = NULL;
1739 for (i = 0; i < TX_RING_SIZE; i++) {
1740 skb = np->tx_skbuff[i];
1741 if (skb) {
1742 pci_unmap_single(np->pdev,
1743 desc_to_dma(&np->tx_ring[i]),
1744 skb->len, PCI_DMA_TODEVICE);
1745 dev_kfree_skb (skb);
1746 np->tx_skbuff[i] = NULL;
1750 return 0;
1753 static void __devexit
1754 rio_remove1 (struct pci_dev *pdev)
1756 struct net_device *dev = pci_get_drvdata (pdev);
1758 if (dev) {
1759 struct netdev_private *np = netdev_priv(dev);
1761 unregister_netdev (dev);
1762 pci_free_consistent (pdev, RX_TOTAL_SIZE, np->rx_ring,
1763 np->rx_ring_dma);
1764 pci_free_consistent (pdev, TX_TOTAL_SIZE, np->tx_ring,
1765 np->tx_ring_dma);
1766 #ifdef MEM_MAPPING
1767 iounmap ((char *) (dev->base_addr));
1768 #endif
1769 free_netdev (dev);
1770 pci_release_regions (pdev);
1771 pci_disable_device (pdev);
1773 pci_set_drvdata (pdev, NULL);
1776 static struct pci_driver rio_driver = {
1777 .name = "dl2k",
1778 .id_table = rio_pci_tbl,
1779 .probe = rio_probe1,
1780 .remove = __devexit_p(rio_remove1),
1783 static int __init
1784 rio_init (void)
1786 return pci_register_driver(&rio_driver);
1789 static void __exit
1790 rio_exit (void)
1792 pci_unregister_driver (&rio_driver);
1795 module_init (rio_init);
1796 module_exit (rio_exit);
1800 Compile command:
1802 gcc -D__KERNEL__ -DMODULE -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -c dl2k.c
1804 Read Documentation/networking/dl2k.txt for details.