blob: ca21a1888ffa329894392c1c538316fd08e988a3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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.
6
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.
11*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Komurodf950822007-08-13 09:45:41 +090013#define DRV_NAME "DL2000/TC902x-based linux driver"
14#define DRV_VERSION "v1.19"
15#define DRV_RELDATE "2007/08/12"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "dl2k.h"
Andrew Mortonc4694c72006-05-15 09:44:43 -070017#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19static char version[] __devinitdata =
Jeff Garzik6aa20a22006-09-13 13:24:59 -040020 KERN_INFO DRV_NAME " " DRV_VERSION " " DRV_RELDATE "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define MAX_UNITS 8
22static int mtu[MAX_UNITS];
23static int vlan[MAX_UNITS];
24static int jumbo[MAX_UNITS];
25static char *media[MAX_UNITS];
26static int tx_flow=-1;
27static int rx_flow=-1;
28static int copy_thresh;
29static int rx_coalesce=10; /* Rx frame count each interrupt */
30static int rx_timeout=200; /* Rx DMA wait time in 640ns increments */
31static int tx_coalesce=16; /* HW xmit count each TxDMAComplete */
32
33
34MODULE_AUTHOR ("Edward Peng");
35MODULE_DESCRIPTION ("D-Link DL2000-based Gigabit Ethernet Adapter");
36MODULE_LICENSE("GPL");
37module_param_array(mtu, int, NULL, 0);
38module_param_array(media, charp, NULL, 0);
39module_param_array(vlan, int, NULL, 0);
40module_param_array(jumbo, int, NULL, 0);
41module_param(tx_flow, int, 0);
42module_param(rx_flow, int, 0);
43module_param(copy_thresh, int, 0);
44module_param(rx_coalesce, int, 0); /* Rx frame count each interrupt */
45module_param(rx_timeout, int, 0); /* Rx DMA wait time in 64ns increments */
46module_param(tx_coalesce, int, 0); /* HW xmit count each TxDMAComplete */
47
48
49/* Enable the default interrupts */
50#define DEFAULT_INTR (RxDMAComplete | HostError | IntRequested | TxDMAComplete| \
51 UpdateStats | LinkEvent)
52#define EnableInt() \
53writew(DEFAULT_INTR, ioaddr + IntEnable)
54
Arjan van de Venf71e1302006-03-03 21:33:57 -050055static const int max_intrloop = 50;
56static const int multicast_filter_limit = 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58static int rio_open (struct net_device *dev);
59static void rio_timer (unsigned long data);
60static void rio_tx_timeout (struct net_device *dev);
61static void alloc_list (struct net_device *dev);
62static int start_xmit (struct sk_buff *skb, struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +010063static irqreturn_t rio_interrupt (int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void rio_free_tx (struct net_device *dev, int irq);
65static void tx_error (struct net_device *dev, int tx_status);
66static int receive_packet (struct net_device *dev);
67static void rio_error (struct net_device *dev, int int_status);
68static int change_mtu (struct net_device *dev, int new_mtu);
69static void set_multicast (struct net_device *dev);
70static struct net_device_stats *get_stats (struct net_device *dev);
71static int clear_stats (struct net_device *dev);
72static int rio_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
73static int rio_close (struct net_device *dev);
74static int find_miiphy (struct net_device *dev);
75static int parse_eeprom (struct net_device *dev);
76static int read_eeprom (long ioaddr, int eep_addr);
77static int mii_wait_link (struct net_device *dev, int wait);
78static int mii_set_media (struct net_device *dev);
79static int mii_get_media (struct net_device *dev);
80static int mii_set_media_pcs (struct net_device *dev);
81static int mii_get_media_pcs (struct net_device *dev);
82static int mii_read (struct net_device *dev, int phy_addr, int reg_num);
83static int mii_write (struct net_device *dev, int phy_addr, int reg_num,
84 u16 data);
85
Jeff Garzik7282d492006-09-13 14:30:00 -040086static const struct ethtool_ops ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88static int __devinit
89rio_probe1 (struct pci_dev *pdev, const struct pci_device_id *ent)
90{
91 struct net_device *dev;
92 struct netdev_private *np;
93 static int card_idx;
94 int chip_idx = ent->driver_data;
95 int err, irq;
96 long ioaddr;
97 static int version_printed;
98 void *ring_space;
99 dma_addr_t ring_dma;
100
101 if (!version_printed++)
102 printk ("%s", version);
103
104 err = pci_enable_device (pdev);
105 if (err)
106 return err;
107
108 irq = pdev->irq;
109 err = pci_request_regions (pdev, "dl2k");
110 if (err)
111 goto err_out_disable;
112
113 pci_set_master (pdev);
114 dev = alloc_etherdev (sizeof (*np));
115 if (!dev) {
116 err = -ENOMEM;
117 goto err_out_res;
118 }
119 SET_MODULE_OWNER (dev);
120 SET_NETDEV_DEV(dev, &pdev->dev);
121
122#ifdef MEM_MAPPING
123 ioaddr = pci_resource_start (pdev, 1);
124 ioaddr = (long) ioremap (ioaddr, RIO_IO_SIZE);
125 if (!ioaddr) {
126 err = -ENOMEM;
127 goto err_out_dev;
128 }
129#else
130 ioaddr = pci_resource_start (pdev, 0);
131#endif
132 dev->base_addr = ioaddr;
133 dev->irq = irq;
134 np = netdev_priv(dev);
135 np->chip_id = chip_idx;
136 np->pdev = pdev;
137 spin_lock_init (&np->tx_lock);
138 spin_lock_init (&np->rx_lock);
139
140 /* Parse manual configuration */
141 np->an_enable = 1;
142 np->tx_coalesce = 1;
143 if (card_idx < MAX_UNITS) {
144 if (media[card_idx] != NULL) {
145 np->an_enable = 0;
146 if (strcmp (media[card_idx], "auto") == 0 ||
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400147 strcmp (media[card_idx], "autosense") == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 strcmp (media[card_idx], "0") == 0 ) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400149 np->an_enable = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 } else if (strcmp (media[card_idx], "100mbps_fd") == 0 ||
151 strcmp (media[card_idx], "4") == 0) {
152 np->speed = 100;
153 np->full_duplex = 1;
154 } else if (strcmp (media[card_idx], "100mbps_hd") == 0
155 || strcmp (media[card_idx], "3") == 0) {
156 np->speed = 100;
157 np->full_duplex = 0;
158 } else if (strcmp (media[card_idx], "10mbps_fd") == 0 ||
159 strcmp (media[card_idx], "2") == 0) {
160 np->speed = 10;
161 np->full_duplex = 1;
162 } else if (strcmp (media[card_idx], "10mbps_hd") == 0 ||
163 strcmp (media[card_idx], "1") == 0) {
164 np->speed = 10;
165 np->full_duplex = 0;
166 } else if (strcmp (media[card_idx], "1000mbps_fd") == 0 ||
167 strcmp (media[card_idx], "6") == 0) {
168 np->speed=1000;
169 np->full_duplex=1;
170 } else if (strcmp (media[card_idx], "1000mbps_hd") == 0 ||
171 strcmp (media[card_idx], "5") == 0) {
172 np->speed = 1000;
173 np->full_duplex = 0;
174 } else {
175 np->an_enable = 1;
176 }
177 }
178 if (jumbo[card_idx] != 0) {
179 np->jumbo = 1;
180 dev->mtu = MAX_JUMBO;
181 } else {
182 np->jumbo = 0;
183 if (mtu[card_idx] > 0 && mtu[card_idx] < PACKET_SIZE)
184 dev->mtu = mtu[card_idx];
185 }
186 np->vlan = (vlan[card_idx] > 0 && vlan[card_idx] < 4096) ?
187 vlan[card_idx] : 0;
188 if (rx_coalesce > 0 && rx_timeout > 0) {
189 np->rx_coalesce = rx_coalesce;
190 np->rx_timeout = rx_timeout;
191 np->coalesce = 1;
192 }
193 np->tx_flow = (tx_flow == 0) ? 0 : 1;
194 np->rx_flow = (rx_flow == 0) ? 0 : 1;
195
196 if (tx_coalesce < 1)
197 tx_coalesce = 1;
198 else if (tx_coalesce > TX_RING_SIZE-1)
199 tx_coalesce = TX_RING_SIZE - 1;
200 }
201 dev->open = &rio_open;
202 dev->hard_start_xmit = &start_xmit;
203 dev->stop = &rio_close;
204 dev->get_stats = &get_stats;
205 dev->set_multicast_list = &set_multicast;
206 dev->do_ioctl = &rio_ioctl;
207 dev->tx_timeout = &rio_tx_timeout;
208 dev->watchdog_timeo = TX_TIMEOUT;
209 dev->change_mtu = &change_mtu;
210 SET_ETHTOOL_OPS(dev, &ethtool_ops);
211#if 0
212 dev->features = NETIF_F_IP_CSUM;
213#endif
214 pci_set_drvdata (pdev, dev);
215
216 ring_space = pci_alloc_consistent (pdev, TX_TOTAL_SIZE, &ring_dma);
217 if (!ring_space)
218 goto err_out_iounmap;
219 np->tx_ring = (struct netdev_desc *) ring_space;
220 np->tx_ring_dma = ring_dma;
221
222 ring_space = pci_alloc_consistent (pdev, RX_TOTAL_SIZE, &ring_dma);
223 if (!ring_space)
224 goto err_out_unmap_tx;
225 np->rx_ring = (struct netdev_desc *) ring_space;
226 np->rx_ring_dma = ring_dma;
227
228 /* Parse eeprom data */
229 parse_eeprom (dev);
230
231 /* Find PHY address */
232 err = find_miiphy (dev);
233 if (err)
234 goto err_out_unmap_rx;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* Fiber device? */
237 np->phy_media = (readw(ioaddr + ASICCtrl) & PhyMedia) ? 1 : 0;
238 np->link_status = 0;
239 /* Set media and reset PHY */
240 if (np->phy_media) {
241 /* default Auto-Negotiation for fiber deivices */
242 if (np->an_enable == 2) {
243 np->an_enable = 1;
244 }
245 mii_set_media_pcs (dev);
246 } else {
247 /* Auto-Negotiation is mandatory for 1000BASE-T,
248 IEEE 802.3ab Annex 28D page 14 */
249 if (np->speed == 1000)
250 np->an_enable = 1;
251 mii_set_media (dev);
252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 err = register_netdev (dev);
255 if (err)
256 goto err_out_unmap_rx;
257
258 card_idx++;
259
260 printk (KERN_INFO "%s: %s, %02x:%02x:%02x:%02x:%02x:%02x, IRQ %d\n",
261 dev->name, np->name,
262 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
263 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5], irq);
264 if (tx_coalesce > 1)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400265 printk(KERN_INFO "tx_coalesce:\t%d packets\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 tx_coalesce);
267 if (np->coalesce)
268 printk(KERN_INFO "rx_coalesce:\t%d packets\n"
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400269 KERN_INFO "rx_timeout: \t%d ns\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 np->rx_coalesce, np->rx_timeout*640);
271 if (np->vlan)
272 printk(KERN_INFO "vlan(id):\t%d\n", np->vlan);
273 return 0;
274
275 err_out_unmap_rx:
276 pci_free_consistent (pdev, RX_TOTAL_SIZE, np->rx_ring, np->rx_ring_dma);
277 err_out_unmap_tx:
278 pci_free_consistent (pdev, TX_TOTAL_SIZE, np->tx_ring, np->tx_ring_dma);
279 err_out_iounmap:
280#ifdef MEM_MAPPING
281 iounmap ((void *) ioaddr);
282
283 err_out_dev:
284#endif
285 free_netdev (dev);
286
287 err_out_res:
288 pci_release_regions (pdev);
289
290 err_out_disable:
291 pci_disable_device (pdev);
292 return err;
293}
294
295int
296find_miiphy (struct net_device *dev)
297{
298 int i, phy_found = 0;
299 struct netdev_private *np;
300 long ioaddr;
301 np = netdev_priv(dev);
302 ioaddr = dev->base_addr;
303 np->phy_addr = 1;
304
305 for (i = 31; i >= 0; i--) {
306 int mii_status = mii_read (dev, i, 1);
307 if (mii_status != 0xffff && mii_status != 0x0000) {
308 np->phy_addr = i;
309 phy_found++;
310 }
311 }
312 if (!phy_found) {
313 printk (KERN_ERR "%s: No MII PHY found!\n", dev->name);
314 return -ENODEV;
315 }
316 return 0;
317}
318
319int
320parse_eeprom (struct net_device *dev)
321{
322 int i, j;
323 long ioaddr = dev->base_addr;
324 u8 sromdata[256];
325 u8 *psib;
326 u32 crc;
327 PSROM_t psrom = (PSROM_t) sromdata;
328 struct netdev_private *np = netdev_priv(dev);
329
330 int cid, next;
331
332#ifdef MEM_MAPPING
333 ioaddr = pci_resource_start (np->pdev, 0);
334#endif
335 /* Read eeprom */
336 for (i = 0; i < 128; i++) {
337 ((u16 *) sromdata)[i] = le16_to_cpu (read_eeprom (ioaddr, i));
338 }
339#ifdef MEM_MAPPING
340 ioaddr = dev->base_addr;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400341#endif
Komurodf950822007-08-13 09:45:41 +0900342 if (np->pdev->vendor == PCI_VENDOR_ID_DLINK) { /* D-Link Only */
343 /* Check CRC */
344 crc = ~ether_crc_le (256 - 4, sromdata);
345 if (psrom->crc != crc) {
346 printk (KERN_ERR "%s: EEPROM data CRC error.\n",
347 dev->name);
348 return -1;
349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
352 /* Set MAC address */
353 for (i = 0; i < 6; i++)
354 dev->dev_addr[i] = psrom->mac_addr[i];
355
Komurodf950822007-08-13 09:45:41 +0900356 if (np->pdev->vendor != PCI_VENDOR_ID_DLINK) {
357 return 0;
358 }
359
Adrian Bunk47bdd712006-06-30 18:25:18 +0200360 /* Parse Software Information Block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 i = 0x30;
362 psib = (u8 *) sromdata;
363 do {
364 cid = psib[i++];
365 next = psib[i++];
366 if ((cid == 0 && next == 0) || (cid == 0xff && next == 0xff)) {
367 printk (KERN_ERR "Cell data error\n");
368 return -1;
369 }
370 switch (cid) {
371 case 0: /* Format version */
372 break;
373 case 1: /* End of cell */
374 return 0;
375 case 2: /* Duplex Polarity */
376 np->duplex_polarity = psib[i];
377 writeb (readb (ioaddr + PhyCtrl) | psib[i],
378 ioaddr + PhyCtrl);
379 break;
380 case 3: /* Wake Polarity */
381 np->wake_polarity = psib[i];
382 break;
383 case 9: /* Adapter description */
384 j = (next - i > 255) ? 255 : next - i;
385 memcpy (np->name, &(psib[i]), j);
386 break;
387 case 4:
388 case 5:
389 case 6:
390 case 7:
391 case 8: /* Reversed */
392 break;
393 default: /* Unknown cell */
394 return -1;
395 }
396 i = next;
397 } while (1);
398
399 return 0;
400}
401
402static int
403rio_open (struct net_device *dev)
404{
405 struct netdev_private *np = netdev_priv(dev);
406 long ioaddr = dev->base_addr;
407 int i;
408 u16 macctrl;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400409
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700410 i = request_irq (dev->irq, &rio_interrupt, IRQF_SHARED, dev->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (i)
412 return i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /* Reset all logic functions */
415 writew (GlobalReset | DMAReset | FIFOReset | NetworkReset | HostReset,
416 ioaddr + ASICCtrl + 2);
417 mdelay(10);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /* DebugCtrl bit 4, 5, 9 must set */
420 writel (readl (ioaddr + DebugCtrl) | 0x0230, ioaddr + DebugCtrl);
421
422 /* Jumbo frame */
423 if (np->jumbo != 0)
424 writew (MAX_JUMBO+14, ioaddr + MaxFrameSize);
425
426 alloc_list (dev);
427
428 /* Get station address */
429 for (i = 0; i < 6; i++)
430 writeb (dev->dev_addr[i], ioaddr + StationAddr0 + i);
431
432 set_multicast (dev);
433 if (np->coalesce) {
434 writel (np->rx_coalesce | np->rx_timeout << 16,
435 ioaddr + RxDMAIntCtrl);
436 }
437 /* Set RIO to poll every N*320nsec. */
438 writeb (0x20, ioaddr + RxDMAPollPeriod);
439 writeb (0xff, ioaddr + TxDMAPollPeriod);
440 writeb (0x30, ioaddr + RxDMABurstThresh);
441 writeb (0x30, ioaddr + RxDMAUrgentThresh);
442 writel (0x0007ffff, ioaddr + RmonStatMask);
443 /* clear statistics */
444 clear_stats (dev);
445
446 /* VLAN supported */
447 if (np->vlan) {
448 /* priority field in RxDMAIntCtrl */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400449 writel (readl(ioaddr + RxDMAIntCtrl) | 0x7 << 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 ioaddr + RxDMAIntCtrl);
451 /* VLANId */
452 writew (np->vlan, ioaddr + VLANId);
453 /* Length/Type should be 0x8100 */
454 writel (0x8100 << 16 | np->vlan, ioaddr + VLANTag);
455 /* Enable AutoVLANuntagging, but disable AutoVLANtagging.
456 VLAN information tagged by TFC' VID, CFI fields. */
457 writel (readl (ioaddr + MACCtrl) | AutoVLANuntagging,
458 ioaddr + MACCtrl);
459 }
460
461 init_timer (&np->timer);
462 np->timer.expires = jiffies + 1*HZ;
463 np->timer.data = (unsigned long) dev;
464 np->timer.function = &rio_timer;
465 add_timer (&np->timer);
466
467 /* Start Tx/Rx */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400468 writel (readl (ioaddr + MACCtrl) | StatsEnable | RxEnable | TxEnable,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 ioaddr + MACCtrl);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 macctrl = 0;
472 macctrl |= (np->vlan) ? AutoVLANuntagging : 0;
473 macctrl |= (np->full_duplex) ? DuplexSelect : 0;
474 macctrl |= (np->tx_flow) ? TxFlowControlEnable : 0;
475 macctrl |= (np->rx_flow) ? RxFlowControlEnable : 0;
476 writew(macctrl, ioaddr + MACCtrl);
477
478 netif_start_queue (dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 /* Enable default interrupts */
481 EnableInt ();
482 return 0;
483}
484
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400485static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486rio_timer (unsigned long data)
487{
488 struct net_device *dev = (struct net_device *)data;
489 struct netdev_private *np = netdev_priv(dev);
490 unsigned int entry;
491 int next_tick = 1*HZ;
492 unsigned long flags;
493
494 spin_lock_irqsave(&np->rx_lock, flags);
495 /* Recover rx ring exhausted error */
496 if (np->cur_rx - np->old_rx >= RX_RING_SIZE) {
497 printk(KERN_INFO "Try to recover rx ring exhausted...\n");
498 /* Re-allocate skbuffs to fill the descriptor ring */
499 for (; np->cur_rx - np->old_rx > 0; np->old_rx++) {
500 struct sk_buff *skb;
501 entry = np->old_rx % RX_RING_SIZE;
502 /* Dropped packets don't need to re-allocate */
503 if (np->rx_skbuff[entry] == NULL) {
504 skb = dev_alloc_skb (np->rx_buf_sz);
505 if (skb == NULL) {
506 np->rx_ring[entry].fraginfo = 0;
507 printk (KERN_INFO
508 "%s: Still unable to re-allocate Rx skbuff.#%d\n",
509 dev->name, entry);
510 break;
511 }
512 np->rx_skbuff[entry] = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* 16 byte align the IP header */
514 skb_reserve (skb, 2);
515 np->rx_ring[entry].fraginfo =
516 cpu_to_le64 (pci_map_single
David S. Miller689be432005-06-28 15:25:31 -0700517 (np->pdev, skb->data, np->rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 PCI_DMA_FROMDEVICE));
519 }
520 np->rx_ring[entry].fraginfo |=
521 cpu_to_le64 (np->rx_buf_sz) << 48;
522 np->rx_ring[entry].status = 0;
523 } /* end for */
524 } /* end if */
525 spin_unlock_irqrestore (&np->rx_lock, flags);
526 np->timer.expires = jiffies + next_tick;
527 add_timer(&np->timer);
528}
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530static void
531rio_tx_timeout (struct net_device *dev)
532{
533 long ioaddr = dev->base_addr;
534
535 printk (KERN_INFO "%s: Tx timed out (%4.4x), is buffer full?\n",
536 dev->name, readl (ioaddr + TxStatus));
537 rio_free_tx(dev, 0);
538 dev->if_port = 0;
539 dev->trans_start = jiffies;
540}
541
542 /* allocate and initialize Tx and Rx descriptors */
543static void
544alloc_list (struct net_device *dev)
545{
546 struct netdev_private *np = netdev_priv(dev);
547 int i;
548
549 np->cur_rx = np->cur_tx = 0;
550 np->old_rx = np->old_tx = 0;
551 np->rx_buf_sz = (dev->mtu <= 1500 ? PACKET_SIZE : dev->mtu + 32);
552
553 /* Initialize Tx descriptors, TFDListPtr leaves in start_xmit(). */
554 for (i = 0; i < TX_RING_SIZE; i++) {
555 np->tx_skbuff[i] = NULL;
556 np->tx_ring[i].status = cpu_to_le64 (TFDDone);
557 np->tx_ring[i].next_desc = cpu_to_le64 (np->tx_ring_dma +
558 ((i+1)%TX_RING_SIZE) *
559 sizeof (struct netdev_desc));
560 }
561
562 /* Initialize Rx descriptors */
563 for (i = 0; i < RX_RING_SIZE; i++) {
564 np->rx_ring[i].next_desc = cpu_to_le64 (np->rx_ring_dma +
565 ((i + 1) % RX_RING_SIZE) *
566 sizeof (struct netdev_desc));
567 np->rx_ring[i].status = 0;
568 np->rx_ring[i].fraginfo = 0;
569 np->rx_skbuff[i] = NULL;
570 }
571
572 /* Allocate the rx buffers */
573 for (i = 0; i < RX_RING_SIZE; i++) {
574 /* Allocated fixed size of skbuff */
575 struct sk_buff *skb = dev_alloc_skb (np->rx_buf_sz);
576 np->rx_skbuff[i] = skb;
577 if (skb == NULL) {
578 printk (KERN_ERR
579 "%s: alloc_list: allocate Rx buffer error! ",
580 dev->name);
581 break;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 skb_reserve (skb, 2); /* 16 byte align the IP header. */
584 /* Rubicon now supports 40 bits of addressing space. */
585 np->rx_ring[i].fraginfo =
586 cpu_to_le64 ( pci_map_single (
David S. Miller689be432005-06-28 15:25:31 -0700587 np->pdev, skb->data, np->rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 PCI_DMA_FROMDEVICE));
589 np->rx_ring[i].fraginfo |= cpu_to_le64 (np->rx_buf_sz) << 48;
590 }
591
592 /* Set RFDListPtr */
593 writel (cpu_to_le32 (np->rx_ring_dma), dev->base_addr + RFDListPtr0);
594 writel (0, dev->base_addr + RFDListPtr1);
595
596 return;
597}
598
599static int
600start_xmit (struct sk_buff *skb, struct net_device *dev)
601{
602 struct netdev_private *np = netdev_priv(dev);
603 struct netdev_desc *txdesc;
604 unsigned entry;
605 u32 ioaddr;
606 u64 tfc_vlan_tag = 0;
607
608 if (np->link_status == 0) { /* Link Down */
609 dev_kfree_skb(skb);
610 return 0;
611 }
612 ioaddr = dev->base_addr;
613 entry = np->cur_tx % TX_RING_SIZE;
614 np->tx_skbuff[entry] = skb;
615 txdesc = &np->tx_ring[entry];
616
617#if 0
Patrick McHardy84fa7932006-08-29 16:44:56 -0700618 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 txdesc->status |=
620 cpu_to_le64 (TCPChecksumEnable | UDPChecksumEnable |
621 IPChecksumEnable);
622 }
623#endif
624 if (np->vlan) {
625 tfc_vlan_tag =
626 cpu_to_le64 (VLANTagInsert) |
627 (cpu_to_le64 (np->vlan) << 32) |
628 (cpu_to_le64 (skb->priority) << 45);
629 }
630 txdesc->fraginfo = cpu_to_le64 (pci_map_single (np->pdev, skb->data,
631 skb->len,
632 PCI_DMA_TODEVICE));
633 txdesc->fraginfo |= cpu_to_le64 (skb->len) << 48;
634
635 /* DL2K bug: DMA fails to get next descriptor ptr in 10Mbps mode
636 * Work around: Always use 1 descriptor in 10Mbps mode */
637 if (entry % np->tx_coalesce == 0 || np->speed == 10)
638 txdesc->status = cpu_to_le64 (entry | tfc_vlan_tag |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400639 WordAlignDisable |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 TxDMAIndicate |
641 (1 << FragCountShift));
642 else
643 txdesc->status = cpu_to_le64 (entry | tfc_vlan_tag |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400644 WordAlignDisable |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 (1 << FragCountShift));
646
647 /* TxDMAPollNow */
648 writel (readl (ioaddr + DMACtrl) | 0x00001000, ioaddr + DMACtrl);
649 /* Schedule ISR */
650 writel(10000, ioaddr + CountDown);
651 np->cur_tx = (np->cur_tx + 1) % TX_RING_SIZE;
652 if ((np->cur_tx - np->old_tx + TX_RING_SIZE) % TX_RING_SIZE
653 < TX_QUEUE_LEN - 1 && np->speed != 10) {
654 /* do nothing */
655 } else if (!netif_queue_stopped(dev)) {
656 netif_stop_queue (dev);
657 }
658
659 /* The first TFDListPtr */
660 if (readl (dev->base_addr + TFDListPtr0) == 0) {
661 writel (np->tx_ring_dma + entry * sizeof (struct netdev_desc),
662 dev->base_addr + TFDListPtr0);
663 writel (0, dev->base_addr + TFDListPtr1);
664 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* NETDEV WATCHDOG timer */
667 dev->trans_start = jiffies;
668 return 0;
669}
670
671static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100672rio_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 struct net_device *dev = dev_instance;
675 struct netdev_private *np;
676 unsigned int_status;
677 long ioaddr;
678 int cnt = max_intrloop;
679 int handled = 0;
680
681 ioaddr = dev->base_addr;
682 np = netdev_priv(dev);
683 while (1) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400684 int_status = readw (ioaddr + IntStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 writew (int_status, ioaddr + IntStatus);
686 int_status &= DEFAULT_INTR;
687 if (int_status == 0 || --cnt < 0)
688 break;
689 handled = 1;
690 /* Processing received packets */
691 if (int_status & RxDMAComplete)
692 receive_packet (dev);
693 /* TxDMAComplete interrupt */
694 if ((int_status & (TxDMAComplete|IntRequested))) {
695 int tx_status;
696 tx_status = readl (ioaddr + TxStatus);
697 if (tx_status & 0x01)
698 tx_error (dev, tx_status);
699 /* Free used tx skbuffs */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400700 rio_free_tx (dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
703 /* Handle uncommon events */
704 if (int_status &
705 (HostError | LinkEvent | UpdateStats))
706 rio_error (dev, int_status);
707 }
708 if (np->cur_tx != np->old_tx)
709 writel (100, ioaddr + CountDown);
710 return IRQ_RETVAL(handled);
711}
712
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400713static void
714rio_free_tx (struct net_device *dev, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct netdev_private *np = netdev_priv(dev);
717 int entry = np->old_tx % TX_RING_SIZE;
718 int tx_use = 0;
719 unsigned long flag = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (irq)
722 spin_lock(&np->tx_lock);
723 else
724 spin_lock_irqsave(&np->tx_lock, flag);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /* Free used tx skbuffs */
727 while (entry != np->cur_tx) {
728 struct sk_buff *skb;
729
730 if (!(np->tx_ring[entry].status & TFDDone))
731 break;
732 skb = np->tx_skbuff[entry];
733 pci_unmap_single (np->pdev,
Francois Romieu4c1b4622006-05-10 12:48:57 -0700734 np->tx_ring[entry].fraginfo & DMA_48BIT_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 skb->len, PCI_DMA_TODEVICE);
736 if (irq)
737 dev_kfree_skb_irq (skb);
738 else
739 dev_kfree_skb (skb);
740
741 np->tx_skbuff[entry] = NULL;
742 entry = (entry + 1) % TX_RING_SIZE;
743 tx_use++;
744 }
745 if (irq)
746 spin_unlock(&np->tx_lock);
747 else
748 spin_unlock_irqrestore(&np->tx_lock, flag);
749 np->old_tx = entry;
750
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400751 /* If the ring is no longer full, clear tx_full and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 call netif_wake_queue() */
753
754 if (netif_queue_stopped(dev) &&
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400755 ((np->cur_tx - np->old_tx + TX_RING_SIZE) % TX_RING_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 < TX_QUEUE_LEN - 1 || np->speed == 10)) {
757 netif_wake_queue (dev);
758 }
759}
760
761static void
762tx_error (struct net_device *dev, int tx_status)
763{
764 struct netdev_private *np;
765 long ioaddr = dev->base_addr;
766 int frame_id;
767 int i;
768
769 np = netdev_priv(dev);
770
771 frame_id = (tx_status & 0xffff0000);
772 printk (KERN_ERR "%s: Transmit error, TxStatus %4.4x, FrameId %d.\n",
773 dev->name, tx_status, frame_id);
774 np->stats.tx_errors++;
775 /* Ttransmit Underrun */
776 if (tx_status & 0x10) {
777 np->stats.tx_fifo_errors++;
778 writew (readw (ioaddr + TxStartThresh) + 0x10,
779 ioaddr + TxStartThresh);
780 /* Transmit Underrun need to set TxReset, DMARest, FIFOReset */
781 writew (TxReset | DMAReset | FIFOReset | NetworkReset,
782 ioaddr + ASICCtrl + 2);
783 /* Wait for ResetBusy bit clear */
784 for (i = 50; i > 0; i--) {
785 if ((readw (ioaddr + ASICCtrl + 2) & ResetBusy) == 0)
786 break;
787 mdelay (1);
788 }
789 rio_free_tx (dev, 1);
790 /* Reset TFDListPtr */
791 writel (np->tx_ring_dma +
792 np->old_tx * sizeof (struct netdev_desc),
793 dev->base_addr + TFDListPtr0);
794 writel (0, dev->base_addr + TFDListPtr1);
795
796 /* Let TxStartThresh stay default value */
797 }
798 /* Late Collision */
799 if (tx_status & 0x04) {
800 np->stats.tx_fifo_errors++;
801 /* TxReset and clear FIFO */
802 writew (TxReset | FIFOReset, ioaddr + ASICCtrl + 2);
803 /* Wait reset done */
804 for (i = 50; i > 0; i--) {
805 if ((readw (ioaddr + ASICCtrl + 2) & ResetBusy) == 0)
806 break;
807 mdelay (1);
808 }
809 /* Let TxStartThresh stay default value */
810 }
811 /* Maximum Collisions */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400812#ifdef ETHER_STATS
813 if (tx_status & 0x08)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 np->stats.collisions16++;
815#else
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400816 if (tx_status & 0x08)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 np->stats.collisions++;
818#endif
819 /* Restart the Tx */
820 writel (readw (dev->base_addr + MACCtrl) | TxEnable, ioaddr + MACCtrl);
821}
822
823static int
824receive_packet (struct net_device *dev)
825{
826 struct netdev_private *np = netdev_priv(dev);
827 int entry = np->cur_rx % RX_RING_SIZE;
828 int cnt = 30;
829
830 /* If RFDDone, FrameStart and FrameEnd set, there is a new packet in. */
831 while (1) {
832 struct netdev_desc *desc = &np->rx_ring[entry];
833 int pkt_len;
834 u64 frame_status;
835
836 if (!(desc->status & RFDDone) ||
837 !(desc->status & FrameStart) || !(desc->status & FrameEnd))
838 break;
839
840 /* Chip omits the CRC. */
841 pkt_len = le64_to_cpu (desc->status & 0xffff);
842 frame_status = le64_to_cpu (desc->status);
843 if (--cnt < 0)
844 break;
845 /* Update rx error statistics, drop packet. */
846 if (frame_status & RFS_Errors) {
847 np->stats.rx_errors++;
848 if (frame_status & (RxRuntFrame | RxLengthError))
849 np->stats.rx_length_errors++;
850 if (frame_status & RxFCSError)
851 np->stats.rx_crc_errors++;
852 if (frame_status & RxAlignmentError && np->speed != 1000)
853 np->stats.rx_frame_errors++;
854 if (frame_status & RxFIFOOverrun)
855 np->stats.rx_fifo_errors++;
856 } else {
857 struct sk_buff *skb;
858
859 /* Small skbuffs for short packets */
860 if (pkt_len > copy_thresh) {
Jon Mason9ee09d92006-03-10 15:12:10 -0600861 pci_unmap_single (np->pdev,
Francois Romieu4c1b4622006-05-10 12:48:57 -0700862 desc->fraginfo & DMA_48BIT_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 np->rx_buf_sz,
864 PCI_DMA_FROMDEVICE);
865 skb_put (skb = np->rx_skbuff[entry], pkt_len);
866 np->rx_skbuff[entry] = NULL;
867 } else if ((skb = dev_alloc_skb (pkt_len + 2)) != NULL) {
868 pci_dma_sync_single_for_cpu(np->pdev,
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400869 desc->fraginfo &
Francois Romieu4c1b4622006-05-10 12:48:57 -0700870 DMA_48BIT_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 np->rx_buf_sz,
872 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* 16 byte align the IP header */
874 skb_reserve (skb, 2);
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700875 skb_copy_to_linear_data (skb,
David S. Miller689be432005-06-28 15:25:31 -0700876 np->rx_skbuff[entry]->data,
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700877 pkt_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 skb_put (skb, pkt_len);
879 pci_dma_sync_single_for_device(np->pdev,
Jon Mason9ee09d92006-03-10 15:12:10 -0600880 desc->fraginfo &
Francois Romieu4c1b4622006-05-10 12:48:57 -0700881 DMA_48BIT_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 np->rx_buf_sz,
883 PCI_DMA_FROMDEVICE);
884 }
885 skb->protocol = eth_type_trans (skb, dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400886#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /* Checksum done by hw, but csum value unavailable. */
Auke Kok44c10132007-06-08 15:46:36 -0700888 if (np->pdev->pci_rev_id >= 0x0c &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 !(frame_status & (TCPError | UDPError | IPError))) {
890 skb->ip_summed = CHECKSUM_UNNECESSARY;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892#endif
893 netif_rx (skb);
894 dev->last_rx = jiffies;
895 }
896 entry = (entry + 1) % RX_RING_SIZE;
897 }
898 spin_lock(&np->rx_lock);
899 np->cur_rx = entry;
900 /* Re-allocate skbuffs to fill the descriptor ring */
901 entry = np->old_rx;
902 while (entry != np->cur_rx) {
903 struct sk_buff *skb;
904 /* Dropped packets don't need to re-allocate */
905 if (np->rx_skbuff[entry] == NULL) {
906 skb = dev_alloc_skb (np->rx_buf_sz);
907 if (skb == NULL) {
908 np->rx_ring[entry].fraginfo = 0;
909 printk (KERN_INFO
910 "%s: receive_packet: "
911 "Unable to re-allocate Rx skbuff.#%d\n",
912 dev->name, entry);
913 break;
914 }
915 np->rx_skbuff[entry] = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* 16 byte align the IP header */
917 skb_reserve (skb, 2);
918 np->rx_ring[entry].fraginfo =
919 cpu_to_le64 (pci_map_single
David S. Miller689be432005-06-28 15:25:31 -0700920 (np->pdev, skb->data, np->rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 PCI_DMA_FROMDEVICE));
922 }
923 np->rx_ring[entry].fraginfo |=
924 cpu_to_le64 (np->rx_buf_sz) << 48;
925 np->rx_ring[entry].status = 0;
926 entry = (entry + 1) % RX_RING_SIZE;
927 }
928 np->old_rx = entry;
929 spin_unlock(&np->rx_lock);
930 return 0;
931}
932
933static void
934rio_error (struct net_device *dev, int int_status)
935{
936 long ioaddr = dev->base_addr;
937 struct netdev_private *np = netdev_priv(dev);
938 u16 macctrl;
939
940 /* Link change event */
941 if (int_status & LinkEvent) {
942 if (mii_wait_link (dev, 10) == 0) {
943 printk (KERN_INFO "%s: Link up\n", dev->name);
944 if (np->phy_media)
945 mii_get_media_pcs (dev);
946 else
947 mii_get_media (dev);
948 if (np->speed == 1000)
949 np->tx_coalesce = tx_coalesce;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400950 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 np->tx_coalesce = 1;
952 macctrl = 0;
953 macctrl |= (np->vlan) ? AutoVLANuntagging : 0;
954 macctrl |= (np->full_duplex) ? DuplexSelect : 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400955 macctrl |= (np->tx_flow) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 TxFlowControlEnable : 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400957 macctrl |= (np->rx_flow) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 RxFlowControlEnable : 0;
959 writew(macctrl, ioaddr + MACCtrl);
960 np->link_status = 1;
961 netif_carrier_on(dev);
962 } else {
963 printk (KERN_INFO "%s: Link off\n", dev->name);
964 np->link_status = 0;
965 netif_carrier_off(dev);
966 }
967 }
968
969 /* UpdateStats statistics registers */
970 if (int_status & UpdateStats) {
971 get_stats (dev);
972 }
973
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400974 /* PCI Error, a catastronphic error related to the bus interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 occurs, set GlobalReset and HostReset to reset. */
976 if (int_status & HostError) {
977 printk (KERN_ERR "%s: HostError! IntStatus %4.4x.\n",
978 dev->name, int_status);
979 writew (GlobalReset | HostReset, ioaddr + ASICCtrl + 2);
980 mdelay (500);
981 }
982}
983
984static struct net_device_stats *
985get_stats (struct net_device *dev)
986{
987 long ioaddr = dev->base_addr;
988 struct netdev_private *np = netdev_priv(dev);
989#ifdef MEM_MAPPING
990 int i;
991#endif
992 unsigned int stat_reg;
993
994 /* All statistics registers need to be acknowledged,
995 else statistic overflow could cause problems */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 np->stats.rx_packets += readl (ioaddr + FramesRcvOk);
998 np->stats.tx_packets += readl (ioaddr + FramesXmtOk);
999 np->stats.rx_bytes += readl (ioaddr + OctetRcvOk);
1000 np->stats.tx_bytes += readl (ioaddr + OctetXmtOk);
1001
1002 np->stats.multicast = readl (ioaddr + McstFramesRcvdOk);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001003 np->stats.collisions += readl (ioaddr + SingleColFrames)
1004 + readl (ioaddr + MultiColFrames);
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 /* detailed tx errors */
1007 stat_reg = readw (ioaddr + FramesAbortXSColls);
1008 np->stats.tx_aborted_errors += stat_reg;
1009 np->stats.tx_errors += stat_reg;
1010
1011 stat_reg = readw (ioaddr + CarrierSenseErrors);
1012 np->stats.tx_carrier_errors += stat_reg;
1013 np->stats.tx_errors += stat_reg;
1014
1015 /* Clear all other statistic register. */
1016 readl (ioaddr + McstOctetXmtOk);
1017 readw (ioaddr + BcstFramesXmtdOk);
1018 readl (ioaddr + McstFramesXmtdOk);
1019 readw (ioaddr + BcstFramesRcvdOk);
1020 readw (ioaddr + MacControlFramesRcvd);
1021 readw (ioaddr + FrameTooLongErrors);
1022 readw (ioaddr + InRangeLengthErrors);
1023 readw (ioaddr + FramesCheckSeqErrors);
1024 readw (ioaddr + FramesLostRxErrors);
1025 readl (ioaddr + McstOctetXmtOk);
1026 readl (ioaddr + BcstOctetXmtOk);
1027 readl (ioaddr + McstFramesXmtdOk);
1028 readl (ioaddr + FramesWDeferredXmt);
1029 readl (ioaddr + LateCollisions);
1030 readw (ioaddr + BcstFramesXmtdOk);
1031 readw (ioaddr + MacControlFramesXmtd);
1032 readw (ioaddr + FramesWEXDeferal);
1033
1034#ifdef MEM_MAPPING
1035 for (i = 0x100; i <= 0x150; i += 4)
1036 readl (ioaddr + i);
1037#endif
1038 readw (ioaddr + TxJumboFrames);
1039 readw (ioaddr + RxJumboFrames);
1040 readw (ioaddr + TCPCheckSumErrors);
1041 readw (ioaddr + UDPCheckSumErrors);
1042 readw (ioaddr + IPCheckSumErrors);
1043 return &np->stats;
1044}
1045
1046static int
1047clear_stats (struct net_device *dev)
1048{
1049 long ioaddr = dev->base_addr;
1050#ifdef MEM_MAPPING
1051 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001052#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 /* All statistics registers need to be acknowledged,
1055 else statistic overflow could cause problems */
1056 readl (ioaddr + FramesRcvOk);
1057 readl (ioaddr + FramesXmtOk);
1058 readl (ioaddr + OctetRcvOk);
1059 readl (ioaddr + OctetXmtOk);
1060
1061 readl (ioaddr + McstFramesRcvdOk);
1062 readl (ioaddr + SingleColFrames);
1063 readl (ioaddr + MultiColFrames);
1064 readl (ioaddr + LateCollisions);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001065 /* detailed rx errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 readw (ioaddr + FrameTooLongErrors);
1067 readw (ioaddr + InRangeLengthErrors);
1068 readw (ioaddr + FramesCheckSeqErrors);
1069 readw (ioaddr + FramesLostRxErrors);
1070
1071 /* detailed tx errors */
1072 readw (ioaddr + FramesAbortXSColls);
1073 readw (ioaddr + CarrierSenseErrors);
1074
1075 /* Clear all other statistic register. */
1076 readl (ioaddr + McstOctetXmtOk);
1077 readw (ioaddr + BcstFramesXmtdOk);
1078 readl (ioaddr + McstFramesXmtdOk);
1079 readw (ioaddr + BcstFramesRcvdOk);
1080 readw (ioaddr + MacControlFramesRcvd);
1081 readl (ioaddr + McstOctetXmtOk);
1082 readl (ioaddr + BcstOctetXmtOk);
1083 readl (ioaddr + McstFramesXmtdOk);
1084 readl (ioaddr + FramesWDeferredXmt);
1085 readw (ioaddr + BcstFramesXmtdOk);
1086 readw (ioaddr + MacControlFramesXmtd);
1087 readw (ioaddr + FramesWEXDeferal);
1088#ifdef MEM_MAPPING
1089 for (i = 0x100; i <= 0x150; i += 4)
1090 readl (ioaddr + i);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001091#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 readw (ioaddr + TxJumboFrames);
1093 readw (ioaddr + RxJumboFrames);
1094 readw (ioaddr + TCPCheckSumErrors);
1095 readw (ioaddr + UDPCheckSumErrors);
1096 readw (ioaddr + IPCheckSumErrors);
1097 return 0;
1098}
1099
1100
1101int
1102change_mtu (struct net_device *dev, int new_mtu)
1103{
1104 struct netdev_private *np = netdev_priv(dev);
1105 int max = (np->jumbo) ? MAX_JUMBO : 1536;
1106
1107 if ((new_mtu < 68) || (new_mtu > max)) {
1108 return -EINVAL;
1109 }
1110
1111 dev->mtu = new_mtu;
1112
1113 return 0;
1114}
1115
1116static void
1117set_multicast (struct net_device *dev)
1118{
1119 long ioaddr = dev->base_addr;
1120 u32 hash_table[2];
1121 u16 rx_mode = 0;
1122 struct netdev_private *np = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 hash_table[0] = hash_table[1] = 0;
1125 /* RxFlowcontrol DA: 01-80-C2-00-00-01. Hash index=0x39 */
1126 hash_table[1] |= cpu_to_le32(0x02000000);
1127 if (dev->flags & IFF_PROMISC) {
1128 /* Receive all frames promiscuously. */
1129 rx_mode = ReceiveAllFrames;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001130 } else if ((dev->flags & IFF_ALLMULTI) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 (dev->mc_count > multicast_filter_limit)) {
1132 /* Receive broadcast and multicast frames */
1133 rx_mode = ReceiveBroadcast | ReceiveMulticast | ReceiveUnicast;
1134 } else if (dev->mc_count > 0) {
1135 int i;
1136 struct dev_mc_list *mclist;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001137 /* Receive broadcast frames and multicast frames filtering
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 by Hashtable */
1139 rx_mode =
1140 ReceiveBroadcast | ReceiveMulticastHash | ReceiveUnicast;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001141 for (i=0, mclist = dev->mc_list; mclist && i < dev->mc_count;
1142 i++, mclist=mclist->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 {
1144 int bit, index = 0;
1145 int crc = ether_crc_le (ETH_ALEN, mclist->dmi_addr);
1146 /* The inverted high significant 6 bits of CRC are
1147 used as an index to hashtable */
1148 for (bit = 0; bit < 6; bit++)
1149 if (crc & (1 << (31 - bit)))
1150 index |= (1 << bit);
1151 hash_table[index / 32] |= (1 << (index % 32));
1152 }
1153 } else {
1154 rx_mode = ReceiveBroadcast | ReceiveUnicast;
1155 }
1156 if (np->vlan) {
1157 /* ReceiveVLANMatch field in ReceiveMode */
1158 rx_mode |= ReceiveVLANMatch;
1159 }
1160
1161 writel (hash_table[0], ioaddr + HashTable0);
1162 writel (hash_table[1], ioaddr + HashTable1);
1163 writew (rx_mode, ioaddr + ReceiveMode);
1164}
1165
1166static void rio_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1167{
1168 struct netdev_private *np = netdev_priv(dev);
1169 strcpy(info->driver, "dl2k");
1170 strcpy(info->version, DRV_VERSION);
1171 strcpy(info->bus_info, pci_name(np->pdev));
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001172}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174static int rio_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1175{
1176 struct netdev_private *np = netdev_priv(dev);
1177 if (np->phy_media) {
1178 /* fiber device */
1179 cmd->supported = SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1180 cmd->advertising= ADVERTISED_Autoneg | ADVERTISED_FIBRE;
1181 cmd->port = PORT_FIBRE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001182 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 } else {
1184 /* copper device */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001185 cmd->supported = SUPPORTED_10baseT_Half |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Half
1187 | SUPPORTED_100baseT_Full | SUPPORTED_1000baseT_Full |
1188 SUPPORTED_Autoneg | SUPPORTED_MII;
1189 cmd->advertising = ADVERTISED_10baseT_Half |
1190 ADVERTISED_10baseT_Full | ADVERTISED_100baseT_Half |
1191 ADVERTISED_100baseT_Full | ADVERTISED_1000baseT_Full|
1192 ADVERTISED_Autoneg | ADVERTISED_MII;
1193 cmd->port = PORT_MII;
1194 cmd->transceiver = XCVR_INTERNAL;
1195 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001196 if ( np->link_status ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 cmd->speed = np->speed;
1198 cmd->duplex = np->full_duplex ? DUPLEX_FULL : DUPLEX_HALF;
1199 } else {
1200 cmd->speed = -1;
1201 cmd->duplex = -1;
1202 }
1203 if ( np->an_enable)
1204 cmd->autoneg = AUTONEG_ENABLE;
1205 else
1206 cmd->autoneg = AUTONEG_DISABLE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 cmd->phy_address = np->phy_addr;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
1212static int rio_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1213{
1214 struct netdev_private *np = netdev_priv(dev);
1215 netif_carrier_off(dev);
1216 if (cmd->autoneg == AUTONEG_ENABLE) {
1217 if (np->an_enable)
1218 return 0;
1219 else {
1220 np->an_enable = 1;
1221 mii_set_media(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001222 return 0;
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 } else {
1225 np->an_enable = 0;
1226 if (np->speed == 1000) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001227 cmd->speed = SPEED_100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 cmd->duplex = DUPLEX_FULL;
1229 printk("Warning!! Can't disable Auto negotiation in 1000Mbps, change to Manual 100Mbps, Full duplex.\n");
1230 }
1231 switch(cmd->speed + cmd->duplex) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 case SPEED_10 + DUPLEX_HALF:
1234 np->speed = 10;
1235 np->full_duplex = 0;
1236 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 case SPEED_10 + DUPLEX_FULL:
1239 np->speed = 10;
1240 np->full_duplex = 1;
1241 break;
1242 case SPEED_100 + DUPLEX_HALF:
1243 np->speed = 100;
1244 np->full_duplex = 0;
1245 break;
1246 case SPEED_100 + DUPLEX_FULL:
1247 np->speed = 100;
1248 np->full_duplex = 1;
1249 break;
1250 case SPEED_1000 + DUPLEX_HALF:/* not supported */
1251 case SPEED_1000 + DUPLEX_FULL:/* not supported */
1252 default:
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001253 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255 mii_set_media(dev);
1256 }
1257 return 0;
1258}
1259
1260static u32 rio_get_link(struct net_device *dev)
1261{
1262 struct netdev_private *np = netdev_priv(dev);
1263 return np->link_status;
1264}
1265
Jeff Garzik7282d492006-09-13 14:30:00 -04001266static const struct ethtool_ops ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 .get_drvinfo = rio_get_drvinfo,
1268 .get_settings = rio_get_settings,
1269 .set_settings = rio_set_settings,
1270 .get_link = rio_get_link,
1271};
1272
1273static int
1274rio_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
1275{
1276 int phy_addr;
1277 struct netdev_private *np = netdev_priv(dev);
1278 struct mii_data *miidata = (struct mii_data *) &rq->ifr_ifru;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 struct netdev_desc *desc;
1281 int i;
1282
1283 phy_addr = np->phy_addr;
1284 switch (cmd) {
1285 case SIOCDEVPRIVATE:
1286 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 case SIOCDEVPRIVATE + 1:
1289 miidata->out_value = mii_read (dev, phy_addr, miidata->reg_num);
1290 break;
1291 case SIOCDEVPRIVATE + 2:
1292 mii_write (dev, phy_addr, miidata->reg_num, miidata->in_value);
1293 break;
1294 case SIOCDEVPRIVATE + 3:
1295 break;
1296 case SIOCDEVPRIVATE + 4:
1297 break;
1298 case SIOCDEVPRIVATE + 5:
1299 netif_stop_queue (dev);
1300 break;
1301 case SIOCDEVPRIVATE + 6:
1302 netif_wake_queue (dev);
1303 break;
1304 case SIOCDEVPRIVATE + 7:
1305 printk
1306 ("tx_full=%x cur_tx=%lx old_tx=%lx cur_rx=%lx old_rx=%lx\n",
1307 netif_queue_stopped(dev), np->cur_tx, np->old_tx, np->cur_rx,
1308 np->old_rx);
1309 break;
1310 case SIOCDEVPRIVATE + 8:
1311 printk("TX ring:\n");
1312 for (i = 0; i < TX_RING_SIZE; i++) {
1313 desc = &np->tx_ring[i];
1314 printk
1315 ("%02x:cur:%08x next:%08x status:%08x frag1:%08x frag0:%08x",
1316 i,
1317 (u32) (np->tx_ring_dma + i * sizeof (*desc)),
1318 (u32) desc->next_desc,
1319 (u32) desc->status, (u32) (desc->fraginfo >> 32),
1320 (u32) desc->fraginfo);
1321 printk ("\n");
1322 }
1323 printk ("\n");
1324 break;
1325
1326 default:
1327 return -EOPNOTSUPP;
1328 }
1329 return 0;
1330}
1331
1332#define EEP_READ 0x0200
1333#define EEP_BUSY 0x8000
1334/* Read the EEPROM word */
1335/* We use I/O instruction to read/write eeprom to avoid fail on some machines */
1336int
1337read_eeprom (long ioaddr, int eep_addr)
1338{
1339 int i = 1000;
1340 outw (EEP_READ | (eep_addr & 0xff), ioaddr + EepromCtrl);
1341 while (i-- > 0) {
1342 if (!(inw (ioaddr + EepromCtrl) & EEP_BUSY)) {
1343 return inw (ioaddr + EepromData);
1344 }
1345 }
1346 return 0;
1347}
1348
1349enum phy_ctrl_bits {
1350 MII_READ = 0x00, MII_CLK = 0x01, MII_DATA1 = 0x02, MII_WRITE = 0x04,
1351 MII_DUPLEX = 0x08,
1352};
1353
1354#define mii_delay() readb(ioaddr)
1355static void
1356mii_sendbit (struct net_device *dev, u32 data)
1357{
1358 long ioaddr = dev->base_addr + PhyCtrl;
1359 data = (data) ? MII_DATA1 : 0;
1360 data |= MII_WRITE;
1361 data |= (readb (ioaddr) & 0xf8) | MII_WRITE;
1362 writeb (data, ioaddr);
1363 mii_delay ();
1364 writeb (data | MII_CLK, ioaddr);
1365 mii_delay ();
1366}
1367
1368static int
1369mii_getbit (struct net_device *dev)
1370{
1371 long ioaddr = dev->base_addr + PhyCtrl;
1372 u8 data;
1373
1374 data = (readb (ioaddr) & 0xf8) | MII_READ;
1375 writeb (data, ioaddr);
1376 mii_delay ();
1377 writeb (data | MII_CLK, ioaddr);
1378 mii_delay ();
1379 return ((readb (ioaddr) >> 1) & 1);
1380}
1381
1382static void
1383mii_send_bits (struct net_device *dev, u32 data, int len)
1384{
1385 int i;
1386 for (i = len - 1; i >= 0; i--) {
1387 mii_sendbit (dev, data & (1 << i));
1388 }
1389}
1390
1391static int
1392mii_read (struct net_device *dev, int phy_addr, int reg_num)
1393{
1394 u32 cmd;
1395 int i;
1396 u32 retval = 0;
1397
1398 /* Preamble */
1399 mii_send_bits (dev, 0xffffffff, 32);
1400 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1401 /* ST,OP = 0110'b for read operation */
1402 cmd = (0x06 << 10 | phy_addr << 5 | reg_num);
1403 mii_send_bits (dev, cmd, 14);
1404 /* Turnaround */
1405 if (mii_getbit (dev))
1406 goto err_out;
1407 /* Read data */
1408 for (i = 0; i < 16; i++) {
1409 retval |= mii_getbit (dev);
1410 retval <<= 1;
1411 }
1412 /* End cycle */
1413 mii_getbit (dev);
1414 return (retval >> 1) & 0xffff;
1415
1416 err_out:
1417 return 0;
1418}
1419static int
1420mii_write (struct net_device *dev, int phy_addr, int reg_num, u16 data)
1421{
1422 u32 cmd;
1423
1424 /* Preamble */
1425 mii_send_bits (dev, 0xffffffff, 32);
1426 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1427 /* ST,OP,AAAAA,RRRRR,TA = 0101xxxxxxxxxx10'b = 0x5002 for write */
1428 cmd = (0x5002 << 16) | (phy_addr << 23) | (reg_num << 18) | data;
1429 mii_send_bits (dev, cmd, 32);
1430 /* End cycle */
1431 mii_getbit (dev);
1432 return 0;
1433}
1434static int
1435mii_wait_link (struct net_device *dev, int wait)
1436{
1437 BMSR_t bmsr;
1438 int phy_addr;
1439 struct netdev_private *np;
1440
1441 np = netdev_priv(dev);
1442 phy_addr = np->phy_addr;
1443
1444 do {
1445 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1446 if (bmsr.bits.link_status)
1447 return 0;
1448 mdelay (1);
1449 } while (--wait > 0);
1450 return -1;
1451}
1452static int
1453mii_get_media (struct net_device *dev)
1454{
1455 ANAR_t negotiate;
1456 BMSR_t bmsr;
1457 BMCR_t bmcr;
1458 MSCR_t mscr;
1459 MSSR_t mssr;
1460 int phy_addr;
1461 struct netdev_private *np;
1462
1463 np = netdev_priv(dev);
1464 phy_addr = np->phy_addr;
1465
1466 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1467 if (np->an_enable) {
1468 if (!bmsr.bits.an_complete) {
1469 /* Auto-Negotiation not completed */
1470 return -1;
1471 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001472 negotiate.image = mii_read (dev, phy_addr, MII_ANAR) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 mii_read (dev, phy_addr, MII_ANLPAR);
1474 mscr.image = mii_read (dev, phy_addr, MII_MSCR);
1475 mssr.image = mii_read (dev, phy_addr, MII_MSSR);
1476 if (mscr.bits.media_1000BT_FD & mssr.bits.lp_1000BT_FD) {
1477 np->speed = 1000;
1478 np->full_duplex = 1;
1479 printk (KERN_INFO "Auto 1000 Mbps, Full duplex\n");
1480 } else if (mscr.bits.media_1000BT_HD & mssr.bits.lp_1000BT_HD) {
1481 np->speed = 1000;
1482 np->full_duplex = 0;
1483 printk (KERN_INFO "Auto 1000 Mbps, Half duplex\n");
1484 } else if (negotiate.bits.media_100BX_FD) {
1485 np->speed = 100;
1486 np->full_duplex = 1;
1487 printk (KERN_INFO "Auto 100 Mbps, Full duplex\n");
1488 } else if (negotiate.bits.media_100BX_HD) {
1489 np->speed = 100;
1490 np->full_duplex = 0;
1491 printk (KERN_INFO "Auto 100 Mbps, Half duplex\n");
1492 } else if (negotiate.bits.media_10BT_FD) {
1493 np->speed = 10;
1494 np->full_duplex = 1;
1495 printk (KERN_INFO "Auto 10 Mbps, Full duplex\n");
1496 } else if (negotiate.bits.media_10BT_HD) {
1497 np->speed = 10;
1498 np->full_duplex = 0;
1499 printk (KERN_INFO "Auto 10 Mbps, Half duplex\n");
1500 }
1501 if (negotiate.bits.pause) {
1502 np->tx_flow &= 1;
1503 np->rx_flow &= 1;
1504 } else if (negotiate.bits.asymmetric) {
1505 np->tx_flow = 0;
1506 np->rx_flow &= 1;
1507 }
1508 /* else tx_flow, rx_flow = user select */
1509 } else {
1510 bmcr.image = mii_read (dev, phy_addr, MII_BMCR);
1511 if (bmcr.bits.speed100 == 1 && bmcr.bits.speed1000 == 0) {
1512 printk (KERN_INFO "Operating at 100 Mbps, ");
1513 } else if (bmcr.bits.speed100 == 0 && bmcr.bits.speed1000 == 0) {
1514 printk (KERN_INFO "Operating at 10 Mbps, ");
1515 } else if (bmcr.bits.speed100 == 0 && bmcr.bits.speed1000 == 1) {
1516 printk (KERN_INFO "Operating at 1000 Mbps, ");
1517 }
1518 if (bmcr.bits.duplex_mode) {
1519 printk ("Full duplex\n");
1520 } else {
1521 printk ("Half duplex\n");
1522 }
1523 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001524 if (np->tx_flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 printk(KERN_INFO "Enable Tx Flow Control\n");
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001526 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 printk(KERN_INFO "Disable Tx Flow Control\n");
1528 if (np->rx_flow)
1529 printk(KERN_INFO "Enable Rx Flow Control\n");
1530 else
1531 printk(KERN_INFO "Disable Rx Flow Control\n");
1532
1533 return 0;
1534}
1535
1536static int
1537mii_set_media (struct net_device *dev)
1538{
1539 PHY_SCR_t pscr;
1540 BMCR_t bmcr;
1541 BMSR_t bmsr;
1542 ANAR_t anar;
1543 int phy_addr;
1544 struct netdev_private *np;
1545 np = netdev_priv(dev);
1546 phy_addr = np->phy_addr;
1547
1548 /* Does user set speed? */
1549 if (np->an_enable) {
1550 /* Advertise capabilities */
1551 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1552 anar.image = mii_read (dev, phy_addr, MII_ANAR);
1553 anar.bits.media_100BX_FD = bmsr.bits.media_100BX_FD;
1554 anar.bits.media_100BX_HD = bmsr.bits.media_100BX_HD;
1555 anar.bits.media_100BT4 = bmsr.bits.media_100BT4;
1556 anar.bits.media_10BT_FD = bmsr.bits.media_10BT_FD;
1557 anar.bits.media_10BT_HD = bmsr.bits.media_10BT_HD;
1558 anar.bits.pause = 1;
1559 anar.bits.asymmetric = 1;
1560 mii_write (dev, phy_addr, MII_ANAR, anar.image);
1561
1562 /* Enable Auto crossover */
1563 pscr.image = mii_read (dev, phy_addr, MII_PHY_SCR);
1564 pscr.bits.mdi_crossover_mode = 3; /* 11'b */
1565 mii_write (dev, phy_addr, MII_PHY_SCR, pscr.image);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 /* Soft reset PHY */
1568 mii_write (dev, phy_addr, MII_BMCR, MII_BMCR_RESET);
1569 bmcr.image = 0;
1570 bmcr.bits.an_enable = 1;
1571 bmcr.bits.restart_an = 1;
1572 bmcr.bits.reset = 1;
1573 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1574 mdelay(1);
1575 } else {
1576 /* Force speed setting */
1577 /* 1) Disable Auto crossover */
1578 pscr.image = mii_read (dev, phy_addr, MII_PHY_SCR);
1579 pscr.bits.mdi_crossover_mode = 0;
1580 mii_write (dev, phy_addr, MII_PHY_SCR, pscr.image);
1581
1582 /* 2) PHY Reset */
1583 bmcr.image = mii_read (dev, phy_addr, MII_BMCR);
1584 bmcr.bits.reset = 1;
1585 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1586
1587 /* 3) Power Down */
1588 bmcr.image = 0x1940; /* must be 0x1940 */
1589 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1590 mdelay (100); /* wait a certain time */
1591
1592 /* 4) Advertise nothing */
1593 mii_write (dev, phy_addr, MII_ANAR, 0);
1594
1595 /* 5) Set media and Power Up */
1596 bmcr.image = 0;
1597 bmcr.bits.power_down = 1;
1598 if (np->speed == 100) {
1599 bmcr.bits.speed100 = 1;
1600 bmcr.bits.speed1000 = 0;
1601 printk (KERN_INFO "Manual 100 Mbps, ");
1602 } else if (np->speed == 10) {
1603 bmcr.bits.speed100 = 0;
1604 bmcr.bits.speed1000 = 0;
1605 printk (KERN_INFO "Manual 10 Mbps, ");
1606 }
1607 if (np->full_duplex) {
1608 bmcr.bits.duplex_mode = 1;
1609 printk ("Full duplex\n");
1610 } else {
1611 bmcr.bits.duplex_mode = 0;
1612 printk ("Half duplex\n");
1613 }
1614#if 0
1615 /* Set 1000BaseT Master/Slave setting */
1616 mscr.image = mii_read (dev, phy_addr, MII_MSCR);
1617 mscr.bits.cfg_enable = 1;
1618 mscr.bits.cfg_value = 0;
1619#endif
1620 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1621 mdelay(10);
1622 }
1623 return 0;
1624}
1625
1626static int
1627mii_get_media_pcs (struct net_device *dev)
1628{
1629 ANAR_PCS_t negotiate;
1630 BMSR_t bmsr;
1631 BMCR_t bmcr;
1632 int phy_addr;
1633 struct netdev_private *np;
1634
1635 np = netdev_priv(dev);
1636 phy_addr = np->phy_addr;
1637
1638 bmsr.image = mii_read (dev, phy_addr, PCS_BMSR);
1639 if (np->an_enable) {
1640 if (!bmsr.bits.an_complete) {
1641 /* Auto-Negotiation not completed */
1642 return -1;
1643 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001644 negotiate.image = mii_read (dev, phy_addr, PCS_ANAR) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 mii_read (dev, phy_addr, PCS_ANLPAR);
1646 np->speed = 1000;
1647 if (negotiate.bits.full_duplex) {
1648 printk (KERN_INFO "Auto 1000 Mbps, Full duplex\n");
1649 np->full_duplex = 1;
1650 } else {
1651 printk (KERN_INFO "Auto 1000 Mbps, half duplex\n");
1652 np->full_duplex = 0;
1653 }
1654 if (negotiate.bits.pause) {
1655 np->tx_flow &= 1;
1656 np->rx_flow &= 1;
1657 } else if (negotiate.bits.asymmetric) {
1658 np->tx_flow = 0;
1659 np->rx_flow &= 1;
1660 }
1661 /* else tx_flow, rx_flow = user select */
1662 } else {
1663 bmcr.image = mii_read (dev, phy_addr, PCS_BMCR);
1664 printk (KERN_INFO "Operating at 1000 Mbps, ");
1665 if (bmcr.bits.duplex_mode) {
1666 printk ("Full duplex\n");
1667 } else {
1668 printk ("Half duplex\n");
1669 }
1670 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001671 if (np->tx_flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 printk(KERN_INFO "Enable Tx Flow Control\n");
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001673 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 printk(KERN_INFO "Disable Tx Flow Control\n");
1675 if (np->rx_flow)
1676 printk(KERN_INFO "Enable Rx Flow Control\n");
1677 else
1678 printk(KERN_INFO "Disable Rx Flow Control\n");
1679
1680 return 0;
1681}
1682
1683static int
1684mii_set_media_pcs (struct net_device *dev)
1685{
1686 BMCR_t bmcr;
1687 ESR_t esr;
1688 ANAR_PCS_t anar;
1689 int phy_addr;
1690 struct netdev_private *np;
1691 np = netdev_priv(dev);
1692 phy_addr = np->phy_addr;
1693
1694 /* Auto-Negotiation? */
1695 if (np->an_enable) {
1696 /* Advertise capabilities */
1697 esr.image = mii_read (dev, phy_addr, PCS_ESR);
1698 anar.image = mii_read (dev, phy_addr, MII_ANAR);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001699 anar.bits.half_duplex =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 esr.bits.media_1000BT_HD | esr.bits.media_1000BX_HD;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001701 anar.bits.full_duplex =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 esr.bits.media_1000BT_FD | esr.bits.media_1000BX_FD;
1703 anar.bits.pause = 1;
1704 anar.bits.asymmetric = 1;
1705 mii_write (dev, phy_addr, MII_ANAR, anar.image);
1706
1707 /* Soft reset PHY */
1708 mii_write (dev, phy_addr, MII_BMCR, MII_BMCR_RESET);
1709 bmcr.image = 0;
1710 bmcr.bits.an_enable = 1;
1711 bmcr.bits.restart_an = 1;
1712 bmcr.bits.reset = 1;
1713 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1714 mdelay(1);
1715 } else {
1716 /* Force speed setting */
1717 /* PHY Reset */
1718 bmcr.image = 0;
1719 bmcr.bits.reset = 1;
1720 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1721 mdelay(10);
1722 bmcr.image = 0;
1723 bmcr.bits.an_enable = 0;
1724 if (np->full_duplex) {
1725 bmcr.bits.duplex_mode = 1;
1726 printk (KERN_INFO "Manual full duplex\n");
1727 } else {
1728 bmcr.bits.duplex_mode = 0;
1729 printk (KERN_INFO "Manual half duplex\n");
1730 }
1731 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1732 mdelay(10);
1733
1734 /* Advertise nothing */
1735 mii_write (dev, phy_addr, MII_ANAR, 0);
1736 }
1737 return 0;
1738}
1739
1740
1741static int
1742rio_close (struct net_device *dev)
1743{
1744 long ioaddr = dev->base_addr;
1745 struct netdev_private *np = netdev_priv(dev);
1746 struct sk_buff *skb;
1747 int i;
1748
1749 netif_stop_queue (dev);
1750
1751 /* Disable interrupts */
1752 writew (0, ioaddr + IntEnable);
1753
1754 /* Stop Tx and Rx logics */
1755 writel (TxDisable | RxDisable | StatsDisable, ioaddr + MACCtrl);
1756 synchronize_irq (dev->irq);
1757 free_irq (dev->irq, dev);
1758 del_timer_sync (&np->timer);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 /* Free all the skbuffs in the queue. */
1761 for (i = 0; i < RX_RING_SIZE; i++) {
1762 np->rx_ring[i].status = 0;
1763 np->rx_ring[i].fraginfo = 0;
1764 skb = np->rx_skbuff[i];
1765 if (skb) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001766 pci_unmap_single(np->pdev,
Francois Romieu4c1b4622006-05-10 12:48:57 -07001767 np->rx_ring[i].fraginfo & DMA_48BIT_MASK,
Jon Mason9ee09d92006-03-10 15:12:10 -06001768 skb->len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 dev_kfree_skb (skb);
1770 np->rx_skbuff[i] = NULL;
1771 }
1772 }
1773 for (i = 0; i < TX_RING_SIZE; i++) {
1774 skb = np->tx_skbuff[i];
1775 if (skb) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001776 pci_unmap_single(np->pdev,
Francois Romieu4c1b4622006-05-10 12:48:57 -07001777 np->tx_ring[i].fraginfo & DMA_48BIT_MASK,
Jon Mason9ee09d92006-03-10 15:12:10 -06001778 skb->len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 dev_kfree_skb (skb);
1780 np->tx_skbuff[i] = NULL;
1781 }
1782 }
1783
1784 return 0;
1785}
1786
1787static void __devexit
1788rio_remove1 (struct pci_dev *pdev)
1789{
1790 struct net_device *dev = pci_get_drvdata (pdev);
1791
1792 if (dev) {
1793 struct netdev_private *np = netdev_priv(dev);
1794
1795 unregister_netdev (dev);
1796 pci_free_consistent (pdev, RX_TOTAL_SIZE, np->rx_ring,
1797 np->rx_ring_dma);
1798 pci_free_consistent (pdev, TX_TOTAL_SIZE, np->tx_ring,
1799 np->tx_ring_dma);
1800#ifdef MEM_MAPPING
1801 iounmap ((char *) (dev->base_addr));
1802#endif
1803 free_netdev (dev);
1804 pci_release_regions (pdev);
1805 pci_disable_device (pdev);
1806 }
1807 pci_set_drvdata (pdev, NULL);
1808}
1809
1810static struct pci_driver rio_driver = {
1811 .name = "dl2k",
1812 .id_table = rio_pci_tbl,
1813 .probe = rio_probe1,
1814 .remove = __devexit_p(rio_remove1),
1815};
1816
1817static int __init
1818rio_init (void)
1819{
Jeff Garzik29917622006-08-19 17:48:59 -04001820 return pci_register_driver(&rio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
1823static void __exit
1824rio_exit (void)
1825{
1826 pci_unregister_driver (&rio_driver);
1827}
1828
1829module_init (rio_init);
1830module_exit (rio_exit);
1831
1832/*
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001833
1834Compile command:
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836gcc -D__KERNEL__ -DMODULE -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -c dl2k.c
1837
1838Read Documentation/networking/dl2k.txt for details.
1839
1840*/
1841