blob: 12486e13b85b56586d73dbdd7366ad3d2bff90fa [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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 SET_NETDEV_DEV(dev, &pdev->dev);
120
121#ifdef MEM_MAPPING
122 ioaddr = pci_resource_start (pdev, 1);
123 ioaddr = (long) ioremap (ioaddr, RIO_IO_SIZE);
124 if (!ioaddr) {
125 err = -ENOMEM;
126 goto err_out_dev;
127 }
128#else
129 ioaddr = pci_resource_start (pdev, 0);
130#endif
131 dev->base_addr = ioaddr;
132 dev->irq = irq;
133 np = netdev_priv(dev);
134 np->chip_id = chip_idx;
135 np->pdev = pdev;
136 spin_lock_init (&np->tx_lock);
137 spin_lock_init (&np->rx_lock);
138
139 /* Parse manual configuration */
140 np->an_enable = 1;
141 np->tx_coalesce = 1;
142 if (card_idx < MAX_UNITS) {
143 if (media[card_idx] != NULL) {
144 np->an_enable = 0;
145 if (strcmp (media[card_idx], "auto") == 0 ||
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400146 strcmp (media[card_idx], "autosense") == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 strcmp (media[card_idx], "0") == 0 ) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400148 np->an_enable = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 } else if (strcmp (media[card_idx], "100mbps_fd") == 0 ||
150 strcmp (media[card_idx], "4") == 0) {
151 np->speed = 100;
152 np->full_duplex = 1;
153 } else if (strcmp (media[card_idx], "100mbps_hd") == 0
154 || strcmp (media[card_idx], "3") == 0) {
155 np->speed = 100;
156 np->full_duplex = 0;
157 } else if (strcmp (media[card_idx], "10mbps_fd") == 0 ||
158 strcmp (media[card_idx], "2") == 0) {
159 np->speed = 10;
160 np->full_duplex = 1;
161 } else if (strcmp (media[card_idx], "10mbps_hd") == 0 ||
162 strcmp (media[card_idx], "1") == 0) {
163 np->speed = 10;
164 np->full_duplex = 0;
165 } else if (strcmp (media[card_idx], "1000mbps_fd") == 0 ||
166 strcmp (media[card_idx], "6") == 0) {
167 np->speed=1000;
168 np->full_duplex=1;
169 } else if (strcmp (media[card_idx], "1000mbps_hd") == 0 ||
170 strcmp (media[card_idx], "5") == 0) {
171 np->speed = 1000;
172 np->full_duplex = 0;
173 } else {
174 np->an_enable = 1;
175 }
176 }
177 if (jumbo[card_idx] != 0) {
178 np->jumbo = 1;
179 dev->mtu = MAX_JUMBO;
180 } else {
181 np->jumbo = 0;
182 if (mtu[card_idx] > 0 && mtu[card_idx] < PACKET_SIZE)
183 dev->mtu = mtu[card_idx];
184 }
185 np->vlan = (vlan[card_idx] > 0 && vlan[card_idx] < 4096) ?
186 vlan[card_idx] : 0;
187 if (rx_coalesce > 0 && rx_timeout > 0) {
188 np->rx_coalesce = rx_coalesce;
189 np->rx_timeout = rx_timeout;
190 np->coalesce = 1;
191 }
192 np->tx_flow = (tx_flow == 0) ? 0 : 1;
193 np->rx_flow = (rx_flow == 0) ? 0 : 1;
194
195 if (tx_coalesce < 1)
196 tx_coalesce = 1;
197 else if (tx_coalesce > TX_RING_SIZE-1)
198 tx_coalesce = TX_RING_SIZE - 1;
199 }
200 dev->open = &rio_open;
201 dev->hard_start_xmit = &start_xmit;
202 dev->stop = &rio_close;
203 dev->get_stats = &get_stats;
204 dev->set_multicast_list = &set_multicast;
205 dev->do_ioctl = &rio_ioctl;
206 dev->tx_timeout = &rio_tx_timeout;
207 dev->watchdog_timeo = TX_TIMEOUT;
208 dev->change_mtu = &change_mtu;
209 SET_ETHTOOL_OPS(dev, &ethtool_ops);
210#if 0
211 dev->features = NETIF_F_IP_CSUM;
212#endif
213 pci_set_drvdata (pdev, dev);
214
215 ring_space = pci_alloc_consistent (pdev, TX_TOTAL_SIZE, &ring_dma);
216 if (!ring_space)
217 goto err_out_iounmap;
218 np->tx_ring = (struct netdev_desc *) ring_space;
219 np->tx_ring_dma = ring_dma;
220
221 ring_space = pci_alloc_consistent (pdev, RX_TOTAL_SIZE, &ring_dma);
222 if (!ring_space)
223 goto err_out_unmap_tx;
224 np->rx_ring = (struct netdev_desc *) ring_space;
225 np->rx_ring_dma = ring_dma;
226
227 /* Parse eeprom data */
228 parse_eeprom (dev);
229
230 /* Find PHY address */
231 err = find_miiphy (dev);
232 if (err)
233 goto err_out_unmap_rx;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* Fiber device? */
236 np->phy_media = (readw(ioaddr + ASICCtrl) & PhyMedia) ? 1 : 0;
237 np->link_status = 0;
238 /* Set media and reset PHY */
239 if (np->phy_media) {
240 /* default Auto-Negotiation for fiber deivices */
241 if (np->an_enable == 2) {
242 np->an_enable = 1;
243 }
244 mii_set_media_pcs (dev);
245 } else {
246 /* Auto-Negotiation is mandatory for 1000BASE-T,
247 IEEE 802.3ab Annex 28D page 14 */
248 if (np->speed == 1000)
249 np->an_enable = 1;
250 mii_set_media (dev);
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 err = register_netdev (dev);
254 if (err)
255 goto err_out_unmap_rx;
256
257 card_idx++;
258
259 printk (KERN_INFO "%s: %s, %02x:%02x:%02x:%02x:%02x:%02x, IRQ %d\n",
260 dev->name, np->name,
261 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
262 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5], irq);
263 if (tx_coalesce > 1)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400264 printk(KERN_INFO "tx_coalesce:\t%d packets\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 tx_coalesce);
266 if (np->coalesce)
267 printk(KERN_INFO "rx_coalesce:\t%d packets\n"
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400268 KERN_INFO "rx_timeout: \t%d ns\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 np->rx_coalesce, np->rx_timeout*640);
270 if (np->vlan)
271 printk(KERN_INFO "vlan(id):\t%d\n", np->vlan);
272 return 0;
273
274 err_out_unmap_rx:
275 pci_free_consistent (pdev, RX_TOTAL_SIZE, np->rx_ring, np->rx_ring_dma);
276 err_out_unmap_tx:
277 pci_free_consistent (pdev, TX_TOTAL_SIZE, np->tx_ring, np->tx_ring_dma);
278 err_out_iounmap:
279#ifdef MEM_MAPPING
280 iounmap ((void *) ioaddr);
281
282 err_out_dev:
283#endif
284 free_netdev (dev);
285
286 err_out_res:
287 pci_release_regions (pdev);
288
289 err_out_disable:
290 pci_disable_device (pdev);
291 return err;
292}
293
294int
295find_miiphy (struct net_device *dev)
296{
297 int i, phy_found = 0;
298 struct netdev_private *np;
299 long ioaddr;
300 np = netdev_priv(dev);
301 ioaddr = dev->base_addr;
302 np->phy_addr = 1;
303
304 for (i = 31; i >= 0; i--) {
305 int mii_status = mii_read (dev, i, 1);
306 if (mii_status != 0xffff && mii_status != 0x0000) {
307 np->phy_addr = i;
308 phy_found++;
309 }
310 }
311 if (!phy_found) {
312 printk (KERN_ERR "%s: No MII PHY found!\n", dev->name);
313 return -ENODEV;
314 }
315 return 0;
316}
317
318int
319parse_eeprom (struct net_device *dev)
320{
321 int i, j;
322 long ioaddr = dev->base_addr;
323 u8 sromdata[256];
324 u8 *psib;
325 u32 crc;
326 PSROM_t psrom = (PSROM_t) sromdata;
327 struct netdev_private *np = netdev_priv(dev);
328
329 int cid, next;
330
331#ifdef MEM_MAPPING
332 ioaddr = pci_resource_start (np->pdev, 0);
333#endif
334 /* Read eeprom */
335 for (i = 0; i < 128; i++) {
336 ((u16 *) sromdata)[i] = le16_to_cpu (read_eeprom (ioaddr, i));
337 }
338#ifdef MEM_MAPPING
339 ioaddr = dev->base_addr;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400340#endif
Komurodf950822007-08-13 09:45:41 +0900341 if (np->pdev->vendor == PCI_VENDOR_ID_DLINK) { /* D-Link Only */
342 /* Check CRC */
343 crc = ~ether_crc_le (256 - 4, sromdata);
344 if (psrom->crc != crc) {
345 printk (KERN_ERR "%s: EEPROM data CRC error.\n",
346 dev->name);
347 return -1;
348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
351 /* Set MAC address */
352 for (i = 0; i < 6; i++)
353 dev->dev_addr[i] = psrom->mac_addr[i];
354
Komurodf950822007-08-13 09:45:41 +0900355 if (np->pdev->vendor != PCI_VENDOR_ID_DLINK) {
356 return 0;
357 }
358
Adrian Bunk47bdd712006-06-30 18:25:18 +0200359 /* Parse Software Information Block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 i = 0x30;
361 psib = (u8 *) sromdata;
362 do {
363 cid = psib[i++];
364 next = psib[i++];
365 if ((cid == 0 && next == 0) || (cid == 0xff && next == 0xff)) {
366 printk (KERN_ERR "Cell data error\n");
367 return -1;
368 }
369 switch (cid) {
370 case 0: /* Format version */
371 break;
372 case 1: /* End of cell */
373 return 0;
374 case 2: /* Duplex Polarity */
375 np->duplex_polarity = psib[i];
376 writeb (readb (ioaddr + PhyCtrl) | psib[i],
377 ioaddr + PhyCtrl);
378 break;
379 case 3: /* Wake Polarity */
380 np->wake_polarity = psib[i];
381 break;
382 case 9: /* Adapter description */
383 j = (next - i > 255) ? 255 : next - i;
384 memcpy (np->name, &(psib[i]), j);
385 break;
386 case 4:
387 case 5:
388 case 6:
389 case 7:
390 case 8: /* Reversed */
391 break;
392 default: /* Unknown cell */
393 return -1;
394 }
395 i = next;
396 } while (1);
397
398 return 0;
399}
400
401static int
402rio_open (struct net_device *dev)
403{
404 struct netdev_private *np = netdev_priv(dev);
405 long ioaddr = dev->base_addr;
406 int i;
407 u16 macctrl;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400408
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700409 i = request_irq (dev->irq, &rio_interrupt, IRQF_SHARED, dev->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (i)
411 return i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* Reset all logic functions */
414 writew (GlobalReset | DMAReset | FIFOReset | NetworkReset | HostReset,
415 ioaddr + ASICCtrl + 2);
416 mdelay(10);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /* DebugCtrl bit 4, 5, 9 must set */
419 writel (readl (ioaddr + DebugCtrl) | 0x0230, ioaddr + DebugCtrl);
420
421 /* Jumbo frame */
422 if (np->jumbo != 0)
423 writew (MAX_JUMBO+14, ioaddr + MaxFrameSize);
424
425 alloc_list (dev);
426
427 /* Get station address */
428 for (i = 0; i < 6; i++)
429 writeb (dev->dev_addr[i], ioaddr + StationAddr0 + i);
430
431 set_multicast (dev);
432 if (np->coalesce) {
433 writel (np->rx_coalesce | np->rx_timeout << 16,
434 ioaddr + RxDMAIntCtrl);
435 }
436 /* Set RIO to poll every N*320nsec. */
437 writeb (0x20, ioaddr + RxDMAPollPeriod);
438 writeb (0xff, ioaddr + TxDMAPollPeriod);
439 writeb (0x30, ioaddr + RxDMABurstThresh);
440 writeb (0x30, ioaddr + RxDMAUrgentThresh);
441 writel (0x0007ffff, ioaddr + RmonStatMask);
442 /* clear statistics */
443 clear_stats (dev);
444
445 /* VLAN supported */
446 if (np->vlan) {
447 /* priority field in RxDMAIntCtrl */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400448 writel (readl(ioaddr + RxDMAIntCtrl) | 0x7 << 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ioaddr + RxDMAIntCtrl);
450 /* VLANId */
451 writew (np->vlan, ioaddr + VLANId);
452 /* Length/Type should be 0x8100 */
453 writel (0x8100 << 16 | np->vlan, ioaddr + VLANTag);
454 /* Enable AutoVLANuntagging, but disable AutoVLANtagging.
455 VLAN information tagged by TFC' VID, CFI fields. */
456 writel (readl (ioaddr + MACCtrl) | AutoVLANuntagging,
457 ioaddr + MACCtrl);
458 }
459
460 init_timer (&np->timer);
461 np->timer.expires = jiffies + 1*HZ;
462 np->timer.data = (unsigned long) dev;
463 np->timer.function = &rio_timer;
464 add_timer (&np->timer);
465
466 /* Start Tx/Rx */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400467 writel (readl (ioaddr + MACCtrl) | StatsEnable | RxEnable | TxEnable,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 ioaddr + MACCtrl);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 macctrl = 0;
471 macctrl |= (np->vlan) ? AutoVLANuntagging : 0;
472 macctrl |= (np->full_duplex) ? DuplexSelect : 0;
473 macctrl |= (np->tx_flow) ? TxFlowControlEnable : 0;
474 macctrl |= (np->rx_flow) ? RxFlowControlEnable : 0;
475 writew(macctrl, ioaddr + MACCtrl);
476
477 netif_start_queue (dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /* Enable default interrupts */
480 EnableInt ();
481 return 0;
482}
483
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400484static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485rio_timer (unsigned long data)
486{
487 struct net_device *dev = (struct net_device *)data;
488 struct netdev_private *np = netdev_priv(dev);
489 unsigned int entry;
490 int next_tick = 1*HZ;
491 unsigned long flags;
492
493 spin_lock_irqsave(&np->rx_lock, flags);
494 /* Recover rx ring exhausted error */
495 if (np->cur_rx - np->old_rx >= RX_RING_SIZE) {
496 printk(KERN_INFO "Try to recover rx ring exhausted...\n");
497 /* Re-allocate skbuffs to fill the descriptor ring */
498 for (; np->cur_rx - np->old_rx > 0; np->old_rx++) {
499 struct sk_buff *skb;
500 entry = np->old_rx % RX_RING_SIZE;
501 /* Dropped packets don't need to re-allocate */
502 if (np->rx_skbuff[entry] == NULL) {
503 skb = dev_alloc_skb (np->rx_buf_sz);
504 if (skb == NULL) {
505 np->rx_ring[entry].fraginfo = 0;
506 printk (KERN_INFO
507 "%s: Still unable to re-allocate Rx skbuff.#%d\n",
508 dev->name, entry);
509 break;
510 }
511 np->rx_skbuff[entry] = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* 16 byte align the IP header */
513 skb_reserve (skb, 2);
514 np->rx_ring[entry].fraginfo =
515 cpu_to_le64 (pci_map_single
David S. Miller689be432005-06-28 15:25:31 -0700516 (np->pdev, skb->data, np->rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 PCI_DMA_FROMDEVICE));
518 }
519 np->rx_ring[entry].fraginfo |=
520 cpu_to_le64 (np->rx_buf_sz) << 48;
521 np->rx_ring[entry].status = 0;
522 } /* end for */
523 } /* end if */
524 spin_unlock_irqrestore (&np->rx_lock, flags);
525 np->timer.expires = jiffies + next_tick;
526 add_timer(&np->timer);
527}
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529static void
530rio_tx_timeout (struct net_device *dev)
531{
532 long ioaddr = dev->base_addr;
533
534 printk (KERN_INFO "%s: Tx timed out (%4.4x), is buffer full?\n",
535 dev->name, readl (ioaddr + TxStatus));
536 rio_free_tx(dev, 0);
537 dev->if_port = 0;
538 dev->trans_start = jiffies;
539}
540
541 /* allocate and initialize Tx and Rx descriptors */
542static void
543alloc_list (struct net_device *dev)
544{
545 struct netdev_private *np = netdev_priv(dev);
546 int i;
547
548 np->cur_rx = np->cur_tx = 0;
549 np->old_rx = np->old_tx = 0;
550 np->rx_buf_sz = (dev->mtu <= 1500 ? PACKET_SIZE : dev->mtu + 32);
551
552 /* Initialize Tx descriptors, TFDListPtr leaves in start_xmit(). */
553 for (i = 0; i < TX_RING_SIZE; i++) {
554 np->tx_skbuff[i] = NULL;
555 np->tx_ring[i].status = cpu_to_le64 (TFDDone);
556 np->tx_ring[i].next_desc = cpu_to_le64 (np->tx_ring_dma +
557 ((i+1)%TX_RING_SIZE) *
558 sizeof (struct netdev_desc));
559 }
560
561 /* Initialize Rx descriptors */
562 for (i = 0; i < RX_RING_SIZE; i++) {
563 np->rx_ring[i].next_desc = cpu_to_le64 (np->rx_ring_dma +
564 ((i + 1) % RX_RING_SIZE) *
565 sizeof (struct netdev_desc));
566 np->rx_ring[i].status = 0;
567 np->rx_ring[i].fraginfo = 0;
568 np->rx_skbuff[i] = NULL;
569 }
570
571 /* Allocate the rx buffers */
572 for (i = 0; i < RX_RING_SIZE; i++) {
573 /* Allocated fixed size of skbuff */
574 struct sk_buff *skb = dev_alloc_skb (np->rx_buf_sz);
575 np->rx_skbuff[i] = skb;
576 if (skb == NULL) {
577 printk (KERN_ERR
578 "%s: alloc_list: allocate Rx buffer error! ",
579 dev->name);
580 break;
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 skb_reserve (skb, 2); /* 16 byte align the IP header. */
583 /* Rubicon now supports 40 bits of addressing space. */
584 np->rx_ring[i].fraginfo =
585 cpu_to_le64 ( pci_map_single (
David S. Miller689be432005-06-28 15:25:31 -0700586 np->pdev, skb->data, np->rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 PCI_DMA_FROMDEVICE));
588 np->rx_ring[i].fraginfo |= cpu_to_le64 (np->rx_buf_sz) << 48;
589 }
590
591 /* Set RFDListPtr */
592 writel (cpu_to_le32 (np->rx_ring_dma), dev->base_addr + RFDListPtr0);
593 writel (0, dev->base_addr + RFDListPtr1);
594
595 return;
596}
597
598static int
599start_xmit (struct sk_buff *skb, struct net_device *dev)
600{
601 struct netdev_private *np = netdev_priv(dev);
602 struct netdev_desc *txdesc;
603 unsigned entry;
604 u32 ioaddr;
605 u64 tfc_vlan_tag = 0;
606
607 if (np->link_status == 0) { /* Link Down */
608 dev_kfree_skb(skb);
609 return 0;
610 }
611 ioaddr = dev->base_addr;
612 entry = np->cur_tx % TX_RING_SIZE;
613 np->tx_skbuff[entry] = skb;
614 txdesc = &np->tx_ring[entry];
615
616#if 0
Patrick McHardy84fa7932006-08-29 16:44:56 -0700617 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 txdesc->status |=
619 cpu_to_le64 (TCPChecksumEnable | UDPChecksumEnable |
620 IPChecksumEnable);
621 }
622#endif
623 if (np->vlan) {
624 tfc_vlan_tag =
625 cpu_to_le64 (VLANTagInsert) |
626 (cpu_to_le64 (np->vlan) << 32) |
627 (cpu_to_le64 (skb->priority) << 45);
628 }
629 txdesc->fraginfo = cpu_to_le64 (pci_map_single (np->pdev, skb->data,
630 skb->len,
631 PCI_DMA_TODEVICE));
632 txdesc->fraginfo |= cpu_to_le64 (skb->len) << 48;
633
634 /* DL2K bug: DMA fails to get next descriptor ptr in 10Mbps mode
635 * Work around: Always use 1 descriptor in 10Mbps mode */
636 if (entry % np->tx_coalesce == 0 || np->speed == 10)
637 txdesc->status = cpu_to_le64 (entry | tfc_vlan_tag |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400638 WordAlignDisable |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 TxDMAIndicate |
640 (1 << FragCountShift));
641 else
642 txdesc->status = cpu_to_le64 (entry | tfc_vlan_tag |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400643 WordAlignDisable |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 (1 << FragCountShift));
645
646 /* TxDMAPollNow */
647 writel (readl (ioaddr + DMACtrl) | 0x00001000, ioaddr + DMACtrl);
648 /* Schedule ISR */
649 writel(10000, ioaddr + CountDown);
650 np->cur_tx = (np->cur_tx + 1) % TX_RING_SIZE;
651 if ((np->cur_tx - np->old_tx + TX_RING_SIZE) % TX_RING_SIZE
652 < TX_QUEUE_LEN - 1 && np->speed != 10) {
653 /* do nothing */
654 } else if (!netif_queue_stopped(dev)) {
655 netif_stop_queue (dev);
656 }
657
658 /* The first TFDListPtr */
659 if (readl (dev->base_addr + TFDListPtr0) == 0) {
660 writel (np->tx_ring_dma + entry * sizeof (struct netdev_desc),
661 dev->base_addr + TFDListPtr0);
662 writel (0, dev->base_addr + TFDListPtr1);
663 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /* NETDEV WATCHDOG timer */
666 dev->trans_start = jiffies;
667 return 0;
668}
669
670static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100671rio_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 struct net_device *dev = dev_instance;
674 struct netdev_private *np;
675 unsigned int_status;
676 long ioaddr;
677 int cnt = max_intrloop;
678 int handled = 0;
679
680 ioaddr = dev->base_addr;
681 np = netdev_priv(dev);
682 while (1) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400683 int_status = readw (ioaddr + IntStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 writew (int_status, ioaddr + IntStatus);
685 int_status &= DEFAULT_INTR;
686 if (int_status == 0 || --cnt < 0)
687 break;
688 handled = 1;
689 /* Processing received packets */
690 if (int_status & RxDMAComplete)
691 receive_packet (dev);
692 /* TxDMAComplete interrupt */
693 if ((int_status & (TxDMAComplete|IntRequested))) {
694 int tx_status;
695 tx_status = readl (ioaddr + TxStatus);
696 if (tx_status & 0x01)
697 tx_error (dev, tx_status);
698 /* Free used tx skbuffs */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400699 rio_free_tx (dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
702 /* Handle uncommon events */
703 if (int_status &
704 (HostError | LinkEvent | UpdateStats))
705 rio_error (dev, int_status);
706 }
707 if (np->cur_tx != np->old_tx)
708 writel (100, ioaddr + CountDown);
709 return IRQ_RETVAL(handled);
710}
711
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400712static void
713rio_free_tx (struct net_device *dev, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 struct netdev_private *np = netdev_priv(dev);
716 int entry = np->old_tx % TX_RING_SIZE;
717 int tx_use = 0;
718 unsigned long flag = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (irq)
721 spin_lock(&np->tx_lock);
722 else
723 spin_lock_irqsave(&np->tx_lock, flag);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /* Free used tx skbuffs */
726 while (entry != np->cur_tx) {
727 struct sk_buff *skb;
728
729 if (!(np->tx_ring[entry].status & TFDDone))
730 break;
731 skb = np->tx_skbuff[entry];
732 pci_unmap_single (np->pdev,
Francois Romieu4c1b4622006-05-10 12:48:57 -0700733 np->tx_ring[entry].fraginfo & DMA_48BIT_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 skb->len, PCI_DMA_TODEVICE);
735 if (irq)
736 dev_kfree_skb_irq (skb);
737 else
738 dev_kfree_skb (skb);
739
740 np->tx_skbuff[entry] = NULL;
741 entry = (entry + 1) % TX_RING_SIZE;
742 tx_use++;
743 }
744 if (irq)
745 spin_unlock(&np->tx_lock);
746 else
747 spin_unlock_irqrestore(&np->tx_lock, flag);
748 np->old_tx = entry;
749
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400750 /* If the ring is no longer full, clear tx_full and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 call netif_wake_queue() */
752
753 if (netif_queue_stopped(dev) &&
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400754 ((np->cur_tx - np->old_tx + TX_RING_SIZE) % TX_RING_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 < TX_QUEUE_LEN - 1 || np->speed == 10)) {
756 netif_wake_queue (dev);
757 }
758}
759
760static void
761tx_error (struct net_device *dev, int tx_status)
762{
763 struct netdev_private *np;
764 long ioaddr = dev->base_addr;
765 int frame_id;
766 int i;
767
768 np = netdev_priv(dev);
769
770 frame_id = (tx_status & 0xffff0000);
771 printk (KERN_ERR "%s: Transmit error, TxStatus %4.4x, FrameId %d.\n",
772 dev->name, tx_status, frame_id);
773 np->stats.tx_errors++;
774 /* Ttransmit Underrun */
775 if (tx_status & 0x10) {
776 np->stats.tx_fifo_errors++;
777 writew (readw (ioaddr + TxStartThresh) + 0x10,
778 ioaddr + TxStartThresh);
779 /* Transmit Underrun need to set TxReset, DMARest, FIFOReset */
780 writew (TxReset | DMAReset | FIFOReset | NetworkReset,
781 ioaddr + ASICCtrl + 2);
782 /* Wait for ResetBusy bit clear */
783 for (i = 50; i > 0; i--) {
784 if ((readw (ioaddr + ASICCtrl + 2) & ResetBusy) == 0)
785 break;
786 mdelay (1);
787 }
788 rio_free_tx (dev, 1);
789 /* Reset TFDListPtr */
790 writel (np->tx_ring_dma +
791 np->old_tx * sizeof (struct netdev_desc),
792 dev->base_addr + TFDListPtr0);
793 writel (0, dev->base_addr + TFDListPtr1);
794
795 /* Let TxStartThresh stay default value */
796 }
797 /* Late Collision */
798 if (tx_status & 0x04) {
799 np->stats.tx_fifo_errors++;
800 /* TxReset and clear FIFO */
801 writew (TxReset | FIFOReset, ioaddr + ASICCtrl + 2);
802 /* Wait reset done */
803 for (i = 50; i > 0; i--) {
804 if ((readw (ioaddr + ASICCtrl + 2) & ResetBusy) == 0)
805 break;
806 mdelay (1);
807 }
808 /* Let TxStartThresh stay default value */
809 }
810 /* Maximum Collisions */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400811#ifdef ETHER_STATS
812 if (tx_status & 0x08)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 np->stats.collisions16++;
814#else
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400815 if (tx_status & 0x08)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 np->stats.collisions++;
817#endif
818 /* Restart the Tx */
819 writel (readw (dev->base_addr + MACCtrl) | TxEnable, ioaddr + MACCtrl);
820}
821
822static int
823receive_packet (struct net_device *dev)
824{
825 struct netdev_private *np = netdev_priv(dev);
826 int entry = np->cur_rx % RX_RING_SIZE;
827 int cnt = 30;
828
829 /* If RFDDone, FrameStart and FrameEnd set, there is a new packet in. */
830 while (1) {
831 struct netdev_desc *desc = &np->rx_ring[entry];
832 int pkt_len;
833 u64 frame_status;
834
835 if (!(desc->status & RFDDone) ||
836 !(desc->status & FrameStart) || !(desc->status & FrameEnd))
837 break;
838
839 /* Chip omits the CRC. */
840 pkt_len = le64_to_cpu (desc->status & 0xffff);
841 frame_status = le64_to_cpu (desc->status);
842 if (--cnt < 0)
843 break;
844 /* Update rx error statistics, drop packet. */
845 if (frame_status & RFS_Errors) {
846 np->stats.rx_errors++;
847 if (frame_status & (RxRuntFrame | RxLengthError))
848 np->stats.rx_length_errors++;
849 if (frame_status & RxFCSError)
850 np->stats.rx_crc_errors++;
851 if (frame_status & RxAlignmentError && np->speed != 1000)
852 np->stats.rx_frame_errors++;
853 if (frame_status & RxFIFOOverrun)
854 np->stats.rx_fifo_errors++;
855 } else {
856 struct sk_buff *skb;
857
858 /* Small skbuffs for short packets */
859 if (pkt_len > copy_thresh) {
Jon Mason9ee09d92006-03-10 15:12:10 -0600860 pci_unmap_single (np->pdev,
Francois Romieu4c1b4622006-05-10 12:48:57 -0700861 desc->fraginfo & DMA_48BIT_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 np->rx_buf_sz,
863 PCI_DMA_FROMDEVICE);
864 skb_put (skb = np->rx_skbuff[entry], pkt_len);
865 np->rx_skbuff[entry] = NULL;
866 } else if ((skb = dev_alloc_skb (pkt_len + 2)) != NULL) {
867 pci_dma_sync_single_for_cpu(np->pdev,
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400868 desc->fraginfo &
Francois Romieu4c1b4622006-05-10 12:48:57 -0700869 DMA_48BIT_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 np->rx_buf_sz,
871 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /* 16 byte align the IP header */
873 skb_reserve (skb, 2);
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700874 skb_copy_to_linear_data (skb,
David S. Miller689be432005-06-28 15:25:31 -0700875 np->rx_skbuff[entry]->data,
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700876 pkt_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 skb_put (skb, pkt_len);
878 pci_dma_sync_single_for_device(np->pdev,
Jon Mason9ee09d92006-03-10 15:12:10 -0600879 desc->fraginfo &
Francois Romieu4c1b4622006-05-10 12:48:57 -0700880 DMA_48BIT_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 np->rx_buf_sz,
882 PCI_DMA_FROMDEVICE);
883 }
884 skb->protocol = eth_type_trans (skb, dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400885#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /* Checksum done by hw, but csum value unavailable. */
Auke Kok44c10132007-06-08 15:46:36 -0700887 if (np->pdev->pci_rev_id >= 0x0c &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 !(frame_status & (TCPError | UDPError | IPError))) {
889 skb->ip_summed = CHECKSUM_UNNECESSARY;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891#endif
892 netif_rx (skb);
893 dev->last_rx = jiffies;
894 }
895 entry = (entry + 1) % RX_RING_SIZE;
896 }
897 spin_lock(&np->rx_lock);
898 np->cur_rx = entry;
899 /* Re-allocate skbuffs to fill the descriptor ring */
900 entry = np->old_rx;
901 while (entry != np->cur_rx) {
902 struct sk_buff *skb;
903 /* Dropped packets don't need to re-allocate */
904 if (np->rx_skbuff[entry] == NULL) {
905 skb = dev_alloc_skb (np->rx_buf_sz);
906 if (skb == NULL) {
907 np->rx_ring[entry].fraginfo = 0;
908 printk (KERN_INFO
909 "%s: receive_packet: "
910 "Unable to re-allocate Rx skbuff.#%d\n",
911 dev->name, entry);
912 break;
913 }
914 np->rx_skbuff[entry] = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 /* 16 byte align the IP header */
916 skb_reserve (skb, 2);
917 np->rx_ring[entry].fraginfo =
918 cpu_to_le64 (pci_map_single
David S. Miller689be432005-06-28 15:25:31 -0700919 (np->pdev, skb->data, np->rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 PCI_DMA_FROMDEVICE));
921 }
922 np->rx_ring[entry].fraginfo |=
923 cpu_to_le64 (np->rx_buf_sz) << 48;
924 np->rx_ring[entry].status = 0;
925 entry = (entry + 1) % RX_RING_SIZE;
926 }
927 np->old_rx = entry;
928 spin_unlock(&np->rx_lock);
929 return 0;
930}
931
932static void
933rio_error (struct net_device *dev, int int_status)
934{
935 long ioaddr = dev->base_addr;
936 struct netdev_private *np = netdev_priv(dev);
937 u16 macctrl;
938
939 /* Link change event */
940 if (int_status & LinkEvent) {
941 if (mii_wait_link (dev, 10) == 0) {
942 printk (KERN_INFO "%s: Link up\n", dev->name);
943 if (np->phy_media)
944 mii_get_media_pcs (dev);
945 else
946 mii_get_media (dev);
947 if (np->speed == 1000)
948 np->tx_coalesce = tx_coalesce;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400949 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 np->tx_coalesce = 1;
951 macctrl = 0;
952 macctrl |= (np->vlan) ? AutoVLANuntagging : 0;
953 macctrl |= (np->full_duplex) ? DuplexSelect : 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400954 macctrl |= (np->tx_flow) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 TxFlowControlEnable : 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400956 macctrl |= (np->rx_flow) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 RxFlowControlEnable : 0;
958 writew(macctrl, ioaddr + MACCtrl);
959 np->link_status = 1;
960 netif_carrier_on(dev);
961 } else {
962 printk (KERN_INFO "%s: Link off\n", dev->name);
963 np->link_status = 0;
964 netif_carrier_off(dev);
965 }
966 }
967
968 /* UpdateStats statistics registers */
969 if (int_status & UpdateStats) {
970 get_stats (dev);
971 }
972
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400973 /* PCI Error, a catastronphic error related to the bus interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 occurs, set GlobalReset and HostReset to reset. */
975 if (int_status & HostError) {
976 printk (KERN_ERR "%s: HostError! IntStatus %4.4x.\n",
977 dev->name, int_status);
978 writew (GlobalReset | HostReset, ioaddr + ASICCtrl + 2);
979 mdelay (500);
980 }
981}
982
983static struct net_device_stats *
984get_stats (struct net_device *dev)
985{
986 long ioaddr = dev->base_addr;
987 struct netdev_private *np = netdev_priv(dev);
988#ifdef MEM_MAPPING
989 int i;
990#endif
991 unsigned int stat_reg;
992
993 /* All statistics registers need to be acknowledged,
994 else statistic overflow could cause problems */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 np->stats.rx_packets += readl (ioaddr + FramesRcvOk);
997 np->stats.tx_packets += readl (ioaddr + FramesXmtOk);
998 np->stats.rx_bytes += readl (ioaddr + OctetRcvOk);
999 np->stats.tx_bytes += readl (ioaddr + OctetXmtOk);
1000
1001 np->stats.multicast = readl (ioaddr + McstFramesRcvdOk);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001002 np->stats.collisions += readl (ioaddr + SingleColFrames)
1003 + readl (ioaddr + MultiColFrames);
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /* detailed tx errors */
1006 stat_reg = readw (ioaddr + FramesAbortXSColls);
1007 np->stats.tx_aborted_errors += stat_reg;
1008 np->stats.tx_errors += stat_reg;
1009
1010 stat_reg = readw (ioaddr + CarrierSenseErrors);
1011 np->stats.tx_carrier_errors += stat_reg;
1012 np->stats.tx_errors += stat_reg;
1013
1014 /* Clear all other statistic register. */
1015 readl (ioaddr + McstOctetXmtOk);
1016 readw (ioaddr + BcstFramesXmtdOk);
1017 readl (ioaddr + McstFramesXmtdOk);
1018 readw (ioaddr + BcstFramesRcvdOk);
1019 readw (ioaddr + MacControlFramesRcvd);
1020 readw (ioaddr + FrameTooLongErrors);
1021 readw (ioaddr + InRangeLengthErrors);
1022 readw (ioaddr + FramesCheckSeqErrors);
1023 readw (ioaddr + FramesLostRxErrors);
1024 readl (ioaddr + McstOctetXmtOk);
1025 readl (ioaddr + BcstOctetXmtOk);
1026 readl (ioaddr + McstFramesXmtdOk);
1027 readl (ioaddr + FramesWDeferredXmt);
1028 readl (ioaddr + LateCollisions);
1029 readw (ioaddr + BcstFramesXmtdOk);
1030 readw (ioaddr + MacControlFramesXmtd);
1031 readw (ioaddr + FramesWEXDeferal);
1032
1033#ifdef MEM_MAPPING
1034 for (i = 0x100; i <= 0x150; i += 4)
1035 readl (ioaddr + i);
1036#endif
1037 readw (ioaddr + TxJumboFrames);
1038 readw (ioaddr + RxJumboFrames);
1039 readw (ioaddr + TCPCheckSumErrors);
1040 readw (ioaddr + UDPCheckSumErrors);
1041 readw (ioaddr + IPCheckSumErrors);
1042 return &np->stats;
1043}
1044
1045static int
1046clear_stats (struct net_device *dev)
1047{
1048 long ioaddr = dev->base_addr;
1049#ifdef MEM_MAPPING
1050 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001051#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 /* All statistics registers need to be acknowledged,
1054 else statistic overflow could cause problems */
1055 readl (ioaddr + FramesRcvOk);
1056 readl (ioaddr + FramesXmtOk);
1057 readl (ioaddr + OctetRcvOk);
1058 readl (ioaddr + OctetXmtOk);
1059
1060 readl (ioaddr + McstFramesRcvdOk);
1061 readl (ioaddr + SingleColFrames);
1062 readl (ioaddr + MultiColFrames);
1063 readl (ioaddr + LateCollisions);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001064 /* detailed rx errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 readw (ioaddr + FrameTooLongErrors);
1066 readw (ioaddr + InRangeLengthErrors);
1067 readw (ioaddr + FramesCheckSeqErrors);
1068 readw (ioaddr + FramesLostRxErrors);
1069
1070 /* detailed tx errors */
1071 readw (ioaddr + FramesAbortXSColls);
1072 readw (ioaddr + CarrierSenseErrors);
1073
1074 /* Clear all other statistic register. */
1075 readl (ioaddr + McstOctetXmtOk);
1076 readw (ioaddr + BcstFramesXmtdOk);
1077 readl (ioaddr + McstFramesXmtdOk);
1078 readw (ioaddr + BcstFramesRcvdOk);
1079 readw (ioaddr + MacControlFramesRcvd);
1080 readl (ioaddr + McstOctetXmtOk);
1081 readl (ioaddr + BcstOctetXmtOk);
1082 readl (ioaddr + McstFramesXmtdOk);
1083 readl (ioaddr + FramesWDeferredXmt);
1084 readw (ioaddr + BcstFramesXmtdOk);
1085 readw (ioaddr + MacControlFramesXmtd);
1086 readw (ioaddr + FramesWEXDeferal);
1087#ifdef MEM_MAPPING
1088 for (i = 0x100; i <= 0x150; i += 4)
1089 readl (ioaddr + i);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001090#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 readw (ioaddr + TxJumboFrames);
1092 readw (ioaddr + RxJumboFrames);
1093 readw (ioaddr + TCPCheckSumErrors);
1094 readw (ioaddr + UDPCheckSumErrors);
1095 readw (ioaddr + IPCheckSumErrors);
1096 return 0;
1097}
1098
1099
1100int
1101change_mtu (struct net_device *dev, int new_mtu)
1102{
1103 struct netdev_private *np = netdev_priv(dev);
1104 int max = (np->jumbo) ? MAX_JUMBO : 1536;
1105
1106 if ((new_mtu < 68) || (new_mtu > max)) {
1107 return -EINVAL;
1108 }
1109
1110 dev->mtu = new_mtu;
1111
1112 return 0;
1113}
1114
1115static void
1116set_multicast (struct net_device *dev)
1117{
1118 long ioaddr = dev->base_addr;
1119 u32 hash_table[2];
1120 u16 rx_mode = 0;
1121 struct netdev_private *np = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 hash_table[0] = hash_table[1] = 0;
1124 /* RxFlowcontrol DA: 01-80-C2-00-00-01. Hash index=0x39 */
1125 hash_table[1] |= cpu_to_le32(0x02000000);
1126 if (dev->flags & IFF_PROMISC) {
1127 /* Receive all frames promiscuously. */
1128 rx_mode = ReceiveAllFrames;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001129 } else if ((dev->flags & IFF_ALLMULTI) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 (dev->mc_count > multicast_filter_limit)) {
1131 /* Receive broadcast and multicast frames */
1132 rx_mode = ReceiveBroadcast | ReceiveMulticast | ReceiveUnicast;
1133 } else if (dev->mc_count > 0) {
1134 int i;
1135 struct dev_mc_list *mclist;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001136 /* Receive broadcast frames and multicast frames filtering
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 by Hashtable */
1138 rx_mode =
1139 ReceiveBroadcast | ReceiveMulticastHash | ReceiveUnicast;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001140 for (i=0, mclist = dev->mc_list; mclist && i < dev->mc_count;
1141 i++, mclist=mclist->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 {
1143 int bit, index = 0;
1144 int crc = ether_crc_le (ETH_ALEN, mclist->dmi_addr);
1145 /* The inverted high significant 6 bits of CRC are
1146 used as an index to hashtable */
1147 for (bit = 0; bit < 6; bit++)
1148 if (crc & (1 << (31 - bit)))
1149 index |= (1 << bit);
1150 hash_table[index / 32] |= (1 << (index % 32));
1151 }
1152 } else {
1153 rx_mode = ReceiveBroadcast | ReceiveUnicast;
1154 }
1155 if (np->vlan) {
1156 /* ReceiveVLANMatch field in ReceiveMode */
1157 rx_mode |= ReceiveVLANMatch;
1158 }
1159
1160 writel (hash_table[0], ioaddr + HashTable0);
1161 writel (hash_table[1], ioaddr + HashTable1);
1162 writew (rx_mode, ioaddr + ReceiveMode);
1163}
1164
1165static void rio_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1166{
1167 struct netdev_private *np = netdev_priv(dev);
1168 strcpy(info->driver, "dl2k");
1169 strcpy(info->version, DRV_VERSION);
1170 strcpy(info->bus_info, pci_name(np->pdev));
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001171}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173static int rio_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1174{
1175 struct netdev_private *np = netdev_priv(dev);
1176 if (np->phy_media) {
1177 /* fiber device */
1178 cmd->supported = SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1179 cmd->advertising= ADVERTISED_Autoneg | ADVERTISED_FIBRE;
1180 cmd->port = PORT_FIBRE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001181 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 } else {
1183 /* copper device */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001184 cmd->supported = SUPPORTED_10baseT_Half |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Half
1186 | SUPPORTED_100baseT_Full | SUPPORTED_1000baseT_Full |
1187 SUPPORTED_Autoneg | SUPPORTED_MII;
1188 cmd->advertising = ADVERTISED_10baseT_Half |
1189 ADVERTISED_10baseT_Full | ADVERTISED_100baseT_Half |
1190 ADVERTISED_100baseT_Full | ADVERTISED_1000baseT_Full|
1191 ADVERTISED_Autoneg | ADVERTISED_MII;
1192 cmd->port = PORT_MII;
1193 cmd->transceiver = XCVR_INTERNAL;
1194 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001195 if ( np->link_status ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 cmd->speed = np->speed;
1197 cmd->duplex = np->full_duplex ? DUPLEX_FULL : DUPLEX_HALF;
1198 } else {
1199 cmd->speed = -1;
1200 cmd->duplex = -1;
1201 }
1202 if ( np->an_enable)
1203 cmd->autoneg = AUTONEG_ENABLE;
1204 else
1205 cmd->autoneg = AUTONEG_DISABLE;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 cmd->phy_address = np->phy_addr;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
1211static int rio_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1212{
1213 struct netdev_private *np = netdev_priv(dev);
1214 netif_carrier_off(dev);
1215 if (cmd->autoneg == AUTONEG_ENABLE) {
1216 if (np->an_enable)
1217 return 0;
1218 else {
1219 np->an_enable = 1;
1220 mii_set_media(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001221 return 0;
1222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 } else {
1224 np->an_enable = 0;
1225 if (np->speed == 1000) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001226 cmd->speed = SPEED_100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 cmd->duplex = DUPLEX_FULL;
1228 printk("Warning!! Can't disable Auto negotiation in 1000Mbps, change to Manual 100Mbps, Full duplex.\n");
1229 }
1230 switch(cmd->speed + cmd->duplex) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 case SPEED_10 + DUPLEX_HALF:
1233 np->speed = 10;
1234 np->full_duplex = 0;
1235 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 case SPEED_10 + DUPLEX_FULL:
1238 np->speed = 10;
1239 np->full_duplex = 1;
1240 break;
1241 case SPEED_100 + DUPLEX_HALF:
1242 np->speed = 100;
1243 np->full_duplex = 0;
1244 break;
1245 case SPEED_100 + DUPLEX_FULL:
1246 np->speed = 100;
1247 np->full_duplex = 1;
1248 break;
1249 case SPEED_1000 + DUPLEX_HALF:/* not supported */
1250 case SPEED_1000 + DUPLEX_FULL:/* not supported */
1251 default:
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001252 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254 mii_set_media(dev);
1255 }
1256 return 0;
1257}
1258
1259static u32 rio_get_link(struct net_device *dev)
1260{
1261 struct netdev_private *np = netdev_priv(dev);
1262 return np->link_status;
1263}
1264
Jeff Garzik7282d492006-09-13 14:30:00 -04001265static const struct ethtool_ops ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 .get_drvinfo = rio_get_drvinfo,
1267 .get_settings = rio_get_settings,
1268 .set_settings = rio_set_settings,
1269 .get_link = rio_get_link,
1270};
1271
1272static int
1273rio_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
1274{
1275 int phy_addr;
1276 struct netdev_private *np = netdev_priv(dev);
1277 struct mii_data *miidata = (struct mii_data *) &rq->ifr_ifru;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 struct netdev_desc *desc;
1280 int i;
1281
1282 phy_addr = np->phy_addr;
1283 switch (cmd) {
1284 case SIOCDEVPRIVATE:
1285 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 case SIOCDEVPRIVATE + 1:
1288 miidata->out_value = mii_read (dev, phy_addr, miidata->reg_num);
1289 break;
1290 case SIOCDEVPRIVATE + 2:
1291 mii_write (dev, phy_addr, miidata->reg_num, miidata->in_value);
1292 break;
1293 case SIOCDEVPRIVATE + 3:
1294 break;
1295 case SIOCDEVPRIVATE + 4:
1296 break;
1297 case SIOCDEVPRIVATE + 5:
1298 netif_stop_queue (dev);
1299 break;
1300 case SIOCDEVPRIVATE + 6:
1301 netif_wake_queue (dev);
1302 break;
1303 case SIOCDEVPRIVATE + 7:
1304 printk
1305 ("tx_full=%x cur_tx=%lx old_tx=%lx cur_rx=%lx old_rx=%lx\n",
1306 netif_queue_stopped(dev), np->cur_tx, np->old_tx, np->cur_rx,
1307 np->old_rx);
1308 break;
1309 case SIOCDEVPRIVATE + 8:
1310 printk("TX ring:\n");
1311 for (i = 0; i < TX_RING_SIZE; i++) {
1312 desc = &np->tx_ring[i];
1313 printk
1314 ("%02x:cur:%08x next:%08x status:%08x frag1:%08x frag0:%08x",
1315 i,
1316 (u32) (np->tx_ring_dma + i * sizeof (*desc)),
1317 (u32) desc->next_desc,
1318 (u32) desc->status, (u32) (desc->fraginfo >> 32),
1319 (u32) desc->fraginfo);
1320 printk ("\n");
1321 }
1322 printk ("\n");
1323 break;
1324
1325 default:
1326 return -EOPNOTSUPP;
1327 }
1328 return 0;
1329}
1330
1331#define EEP_READ 0x0200
1332#define EEP_BUSY 0x8000
1333/* Read the EEPROM word */
1334/* We use I/O instruction to read/write eeprom to avoid fail on some machines */
1335int
1336read_eeprom (long ioaddr, int eep_addr)
1337{
1338 int i = 1000;
1339 outw (EEP_READ | (eep_addr & 0xff), ioaddr + EepromCtrl);
1340 while (i-- > 0) {
1341 if (!(inw (ioaddr + EepromCtrl) & EEP_BUSY)) {
1342 return inw (ioaddr + EepromData);
1343 }
1344 }
1345 return 0;
1346}
1347
1348enum phy_ctrl_bits {
1349 MII_READ = 0x00, MII_CLK = 0x01, MII_DATA1 = 0x02, MII_WRITE = 0x04,
1350 MII_DUPLEX = 0x08,
1351};
1352
1353#define mii_delay() readb(ioaddr)
1354static void
1355mii_sendbit (struct net_device *dev, u32 data)
1356{
1357 long ioaddr = dev->base_addr + PhyCtrl;
1358 data = (data) ? MII_DATA1 : 0;
1359 data |= MII_WRITE;
1360 data |= (readb (ioaddr) & 0xf8) | MII_WRITE;
1361 writeb (data, ioaddr);
1362 mii_delay ();
1363 writeb (data | MII_CLK, ioaddr);
1364 mii_delay ();
1365}
1366
1367static int
1368mii_getbit (struct net_device *dev)
1369{
1370 long ioaddr = dev->base_addr + PhyCtrl;
1371 u8 data;
1372
1373 data = (readb (ioaddr) & 0xf8) | MII_READ;
1374 writeb (data, ioaddr);
1375 mii_delay ();
1376 writeb (data | MII_CLK, ioaddr);
1377 mii_delay ();
1378 return ((readb (ioaddr) >> 1) & 1);
1379}
1380
1381static void
1382mii_send_bits (struct net_device *dev, u32 data, int len)
1383{
1384 int i;
1385 for (i = len - 1; i >= 0; i--) {
1386 mii_sendbit (dev, data & (1 << i));
1387 }
1388}
1389
1390static int
1391mii_read (struct net_device *dev, int phy_addr, int reg_num)
1392{
1393 u32 cmd;
1394 int i;
1395 u32 retval = 0;
1396
1397 /* Preamble */
1398 mii_send_bits (dev, 0xffffffff, 32);
1399 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1400 /* ST,OP = 0110'b for read operation */
1401 cmd = (0x06 << 10 | phy_addr << 5 | reg_num);
1402 mii_send_bits (dev, cmd, 14);
1403 /* Turnaround */
1404 if (mii_getbit (dev))
1405 goto err_out;
1406 /* Read data */
1407 for (i = 0; i < 16; i++) {
1408 retval |= mii_getbit (dev);
1409 retval <<= 1;
1410 }
1411 /* End cycle */
1412 mii_getbit (dev);
1413 return (retval >> 1) & 0xffff;
1414
1415 err_out:
1416 return 0;
1417}
1418static int
1419mii_write (struct net_device *dev, int phy_addr, int reg_num, u16 data)
1420{
1421 u32 cmd;
1422
1423 /* Preamble */
1424 mii_send_bits (dev, 0xffffffff, 32);
1425 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1426 /* ST,OP,AAAAA,RRRRR,TA = 0101xxxxxxxxxx10'b = 0x5002 for write */
1427 cmd = (0x5002 << 16) | (phy_addr << 23) | (reg_num << 18) | data;
1428 mii_send_bits (dev, cmd, 32);
1429 /* End cycle */
1430 mii_getbit (dev);
1431 return 0;
1432}
1433static int
1434mii_wait_link (struct net_device *dev, int wait)
1435{
1436 BMSR_t bmsr;
1437 int phy_addr;
1438 struct netdev_private *np;
1439
1440 np = netdev_priv(dev);
1441 phy_addr = np->phy_addr;
1442
1443 do {
1444 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1445 if (bmsr.bits.link_status)
1446 return 0;
1447 mdelay (1);
1448 } while (--wait > 0);
1449 return -1;
1450}
1451static int
1452mii_get_media (struct net_device *dev)
1453{
1454 ANAR_t negotiate;
1455 BMSR_t bmsr;
1456 BMCR_t bmcr;
1457 MSCR_t mscr;
1458 MSSR_t mssr;
1459 int phy_addr;
1460 struct netdev_private *np;
1461
1462 np = netdev_priv(dev);
1463 phy_addr = np->phy_addr;
1464
1465 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1466 if (np->an_enable) {
1467 if (!bmsr.bits.an_complete) {
1468 /* Auto-Negotiation not completed */
1469 return -1;
1470 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001471 negotiate.image = mii_read (dev, phy_addr, MII_ANAR) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 mii_read (dev, phy_addr, MII_ANLPAR);
1473 mscr.image = mii_read (dev, phy_addr, MII_MSCR);
1474 mssr.image = mii_read (dev, phy_addr, MII_MSSR);
1475 if (mscr.bits.media_1000BT_FD & mssr.bits.lp_1000BT_FD) {
1476 np->speed = 1000;
1477 np->full_duplex = 1;
1478 printk (KERN_INFO "Auto 1000 Mbps, Full duplex\n");
1479 } else if (mscr.bits.media_1000BT_HD & mssr.bits.lp_1000BT_HD) {
1480 np->speed = 1000;
1481 np->full_duplex = 0;
1482 printk (KERN_INFO "Auto 1000 Mbps, Half duplex\n");
1483 } else if (negotiate.bits.media_100BX_FD) {
1484 np->speed = 100;
1485 np->full_duplex = 1;
1486 printk (KERN_INFO "Auto 100 Mbps, Full duplex\n");
1487 } else if (negotiate.bits.media_100BX_HD) {
1488 np->speed = 100;
1489 np->full_duplex = 0;
1490 printk (KERN_INFO "Auto 100 Mbps, Half duplex\n");
1491 } else if (negotiate.bits.media_10BT_FD) {
1492 np->speed = 10;
1493 np->full_duplex = 1;
1494 printk (KERN_INFO "Auto 10 Mbps, Full duplex\n");
1495 } else if (negotiate.bits.media_10BT_HD) {
1496 np->speed = 10;
1497 np->full_duplex = 0;
1498 printk (KERN_INFO "Auto 10 Mbps, Half duplex\n");
1499 }
1500 if (negotiate.bits.pause) {
1501 np->tx_flow &= 1;
1502 np->rx_flow &= 1;
1503 } else if (negotiate.bits.asymmetric) {
1504 np->tx_flow = 0;
1505 np->rx_flow &= 1;
1506 }
1507 /* else tx_flow, rx_flow = user select */
1508 } else {
1509 bmcr.image = mii_read (dev, phy_addr, MII_BMCR);
1510 if (bmcr.bits.speed100 == 1 && bmcr.bits.speed1000 == 0) {
1511 printk (KERN_INFO "Operating at 100 Mbps, ");
1512 } else if (bmcr.bits.speed100 == 0 && bmcr.bits.speed1000 == 0) {
1513 printk (KERN_INFO "Operating at 10 Mbps, ");
1514 } else if (bmcr.bits.speed100 == 0 && bmcr.bits.speed1000 == 1) {
1515 printk (KERN_INFO "Operating at 1000 Mbps, ");
1516 }
1517 if (bmcr.bits.duplex_mode) {
1518 printk ("Full duplex\n");
1519 } else {
1520 printk ("Half duplex\n");
1521 }
1522 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001523 if (np->tx_flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 printk(KERN_INFO "Enable Tx Flow Control\n");
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001525 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 printk(KERN_INFO "Disable Tx Flow Control\n");
1527 if (np->rx_flow)
1528 printk(KERN_INFO "Enable Rx Flow Control\n");
1529 else
1530 printk(KERN_INFO "Disable Rx Flow Control\n");
1531
1532 return 0;
1533}
1534
1535static int
1536mii_set_media (struct net_device *dev)
1537{
1538 PHY_SCR_t pscr;
1539 BMCR_t bmcr;
1540 BMSR_t bmsr;
1541 ANAR_t anar;
1542 int phy_addr;
1543 struct netdev_private *np;
1544 np = netdev_priv(dev);
1545 phy_addr = np->phy_addr;
1546
1547 /* Does user set speed? */
1548 if (np->an_enable) {
1549 /* Advertise capabilities */
1550 bmsr.image = mii_read (dev, phy_addr, MII_BMSR);
1551 anar.image = mii_read (dev, phy_addr, MII_ANAR);
1552 anar.bits.media_100BX_FD = bmsr.bits.media_100BX_FD;
1553 anar.bits.media_100BX_HD = bmsr.bits.media_100BX_HD;
1554 anar.bits.media_100BT4 = bmsr.bits.media_100BT4;
1555 anar.bits.media_10BT_FD = bmsr.bits.media_10BT_FD;
1556 anar.bits.media_10BT_HD = bmsr.bits.media_10BT_HD;
1557 anar.bits.pause = 1;
1558 anar.bits.asymmetric = 1;
1559 mii_write (dev, phy_addr, MII_ANAR, anar.image);
1560
1561 /* Enable Auto crossover */
1562 pscr.image = mii_read (dev, phy_addr, MII_PHY_SCR);
1563 pscr.bits.mdi_crossover_mode = 3; /* 11'b */
1564 mii_write (dev, phy_addr, MII_PHY_SCR, pscr.image);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 /* Soft reset PHY */
1567 mii_write (dev, phy_addr, MII_BMCR, MII_BMCR_RESET);
1568 bmcr.image = 0;
1569 bmcr.bits.an_enable = 1;
1570 bmcr.bits.restart_an = 1;
1571 bmcr.bits.reset = 1;
1572 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1573 mdelay(1);
1574 } else {
1575 /* Force speed setting */
1576 /* 1) Disable Auto crossover */
1577 pscr.image = mii_read (dev, phy_addr, MII_PHY_SCR);
1578 pscr.bits.mdi_crossover_mode = 0;
1579 mii_write (dev, phy_addr, MII_PHY_SCR, pscr.image);
1580
1581 /* 2) PHY Reset */
1582 bmcr.image = mii_read (dev, phy_addr, MII_BMCR);
1583 bmcr.bits.reset = 1;
1584 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1585
1586 /* 3) Power Down */
1587 bmcr.image = 0x1940; /* must be 0x1940 */
1588 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1589 mdelay (100); /* wait a certain time */
1590
1591 /* 4) Advertise nothing */
1592 mii_write (dev, phy_addr, MII_ANAR, 0);
1593
1594 /* 5) Set media and Power Up */
1595 bmcr.image = 0;
1596 bmcr.bits.power_down = 1;
1597 if (np->speed == 100) {
1598 bmcr.bits.speed100 = 1;
1599 bmcr.bits.speed1000 = 0;
1600 printk (KERN_INFO "Manual 100 Mbps, ");
1601 } else if (np->speed == 10) {
1602 bmcr.bits.speed100 = 0;
1603 bmcr.bits.speed1000 = 0;
1604 printk (KERN_INFO "Manual 10 Mbps, ");
1605 }
1606 if (np->full_duplex) {
1607 bmcr.bits.duplex_mode = 1;
1608 printk ("Full duplex\n");
1609 } else {
1610 bmcr.bits.duplex_mode = 0;
1611 printk ("Half duplex\n");
1612 }
1613#if 0
1614 /* Set 1000BaseT Master/Slave setting */
1615 mscr.image = mii_read (dev, phy_addr, MII_MSCR);
1616 mscr.bits.cfg_enable = 1;
1617 mscr.bits.cfg_value = 0;
1618#endif
1619 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1620 mdelay(10);
1621 }
1622 return 0;
1623}
1624
1625static int
1626mii_get_media_pcs (struct net_device *dev)
1627{
1628 ANAR_PCS_t negotiate;
1629 BMSR_t bmsr;
1630 BMCR_t bmcr;
1631 int phy_addr;
1632 struct netdev_private *np;
1633
1634 np = netdev_priv(dev);
1635 phy_addr = np->phy_addr;
1636
1637 bmsr.image = mii_read (dev, phy_addr, PCS_BMSR);
1638 if (np->an_enable) {
1639 if (!bmsr.bits.an_complete) {
1640 /* Auto-Negotiation not completed */
1641 return -1;
1642 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001643 negotiate.image = mii_read (dev, phy_addr, PCS_ANAR) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 mii_read (dev, phy_addr, PCS_ANLPAR);
1645 np->speed = 1000;
1646 if (negotiate.bits.full_duplex) {
1647 printk (KERN_INFO "Auto 1000 Mbps, Full duplex\n");
1648 np->full_duplex = 1;
1649 } else {
1650 printk (KERN_INFO "Auto 1000 Mbps, half duplex\n");
1651 np->full_duplex = 0;
1652 }
1653 if (negotiate.bits.pause) {
1654 np->tx_flow &= 1;
1655 np->rx_flow &= 1;
1656 } else if (negotiate.bits.asymmetric) {
1657 np->tx_flow = 0;
1658 np->rx_flow &= 1;
1659 }
1660 /* else tx_flow, rx_flow = user select */
1661 } else {
1662 bmcr.image = mii_read (dev, phy_addr, PCS_BMCR);
1663 printk (KERN_INFO "Operating at 1000 Mbps, ");
1664 if (bmcr.bits.duplex_mode) {
1665 printk ("Full duplex\n");
1666 } else {
1667 printk ("Half duplex\n");
1668 }
1669 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001670 if (np->tx_flow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 printk(KERN_INFO "Enable Tx Flow Control\n");
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001672 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 printk(KERN_INFO "Disable Tx Flow Control\n");
1674 if (np->rx_flow)
1675 printk(KERN_INFO "Enable Rx Flow Control\n");
1676 else
1677 printk(KERN_INFO "Disable Rx Flow Control\n");
1678
1679 return 0;
1680}
1681
1682static int
1683mii_set_media_pcs (struct net_device *dev)
1684{
1685 BMCR_t bmcr;
1686 ESR_t esr;
1687 ANAR_PCS_t anar;
1688 int phy_addr;
1689 struct netdev_private *np;
1690 np = netdev_priv(dev);
1691 phy_addr = np->phy_addr;
1692
1693 /* Auto-Negotiation? */
1694 if (np->an_enable) {
1695 /* Advertise capabilities */
1696 esr.image = mii_read (dev, phy_addr, PCS_ESR);
1697 anar.image = mii_read (dev, phy_addr, MII_ANAR);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001698 anar.bits.half_duplex =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 esr.bits.media_1000BT_HD | esr.bits.media_1000BX_HD;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001700 anar.bits.full_duplex =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 esr.bits.media_1000BT_FD | esr.bits.media_1000BX_FD;
1702 anar.bits.pause = 1;
1703 anar.bits.asymmetric = 1;
1704 mii_write (dev, phy_addr, MII_ANAR, anar.image);
1705
1706 /* Soft reset PHY */
1707 mii_write (dev, phy_addr, MII_BMCR, MII_BMCR_RESET);
1708 bmcr.image = 0;
1709 bmcr.bits.an_enable = 1;
1710 bmcr.bits.restart_an = 1;
1711 bmcr.bits.reset = 1;
1712 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1713 mdelay(1);
1714 } else {
1715 /* Force speed setting */
1716 /* PHY Reset */
1717 bmcr.image = 0;
1718 bmcr.bits.reset = 1;
1719 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1720 mdelay(10);
1721 bmcr.image = 0;
1722 bmcr.bits.an_enable = 0;
1723 if (np->full_duplex) {
1724 bmcr.bits.duplex_mode = 1;
1725 printk (KERN_INFO "Manual full duplex\n");
1726 } else {
1727 bmcr.bits.duplex_mode = 0;
1728 printk (KERN_INFO "Manual half duplex\n");
1729 }
1730 mii_write (dev, phy_addr, MII_BMCR, bmcr.image);
1731 mdelay(10);
1732
1733 /* Advertise nothing */
1734 mii_write (dev, phy_addr, MII_ANAR, 0);
1735 }
1736 return 0;
1737}
1738
1739
1740static int
1741rio_close (struct net_device *dev)
1742{
1743 long ioaddr = dev->base_addr;
1744 struct netdev_private *np = netdev_priv(dev);
1745 struct sk_buff *skb;
1746 int i;
1747
1748 netif_stop_queue (dev);
1749
1750 /* Disable interrupts */
1751 writew (0, ioaddr + IntEnable);
1752
1753 /* Stop Tx and Rx logics */
1754 writel (TxDisable | RxDisable | StatsDisable, ioaddr + MACCtrl);
1755 synchronize_irq (dev->irq);
1756 free_irq (dev->irq, dev);
1757 del_timer_sync (&np->timer);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 /* Free all the skbuffs in the queue. */
1760 for (i = 0; i < RX_RING_SIZE; i++) {
1761 np->rx_ring[i].status = 0;
1762 np->rx_ring[i].fraginfo = 0;
1763 skb = np->rx_skbuff[i];
1764 if (skb) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001765 pci_unmap_single(np->pdev,
Francois Romieu4c1b4622006-05-10 12:48:57 -07001766 np->rx_ring[i].fraginfo & DMA_48BIT_MASK,
Jon Mason9ee09d92006-03-10 15:12:10 -06001767 skb->len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 dev_kfree_skb (skb);
1769 np->rx_skbuff[i] = NULL;
1770 }
1771 }
1772 for (i = 0; i < TX_RING_SIZE; i++) {
1773 skb = np->tx_skbuff[i];
1774 if (skb) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001775 pci_unmap_single(np->pdev,
Francois Romieu4c1b4622006-05-10 12:48:57 -07001776 np->tx_ring[i].fraginfo & DMA_48BIT_MASK,
Jon Mason9ee09d92006-03-10 15:12:10 -06001777 skb->len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 dev_kfree_skb (skb);
1779 np->tx_skbuff[i] = NULL;
1780 }
1781 }
1782
1783 return 0;
1784}
1785
1786static void __devexit
1787rio_remove1 (struct pci_dev *pdev)
1788{
1789 struct net_device *dev = pci_get_drvdata (pdev);
1790
1791 if (dev) {
1792 struct netdev_private *np = netdev_priv(dev);
1793
1794 unregister_netdev (dev);
1795 pci_free_consistent (pdev, RX_TOTAL_SIZE, np->rx_ring,
1796 np->rx_ring_dma);
1797 pci_free_consistent (pdev, TX_TOTAL_SIZE, np->tx_ring,
1798 np->tx_ring_dma);
1799#ifdef MEM_MAPPING
1800 iounmap ((char *) (dev->base_addr));
1801#endif
1802 free_netdev (dev);
1803 pci_release_regions (pdev);
1804 pci_disable_device (pdev);
1805 }
1806 pci_set_drvdata (pdev, NULL);
1807}
1808
1809static struct pci_driver rio_driver = {
1810 .name = "dl2k",
1811 .id_table = rio_pci_tbl,
1812 .probe = rio_probe1,
1813 .remove = __devexit_p(rio_remove1),
1814};
1815
1816static int __init
1817rio_init (void)
1818{
Jeff Garzik29917622006-08-19 17:48:59 -04001819 return pci_register_driver(&rio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820}
1821
1822static void __exit
1823rio_exit (void)
1824{
1825 pci_unregister_driver (&rio_driver);
1826}
1827
1828module_init (rio_init);
1829module_exit (rio_exit);
1830
1831/*
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001832
1833Compile command:
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835gcc -D__KERNEL__ -DMODULE -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -c dl2k.c
1836
1837Read Documentation/networking/dl2k.txt for details.
1838
1839*/
1840