1 /* D-Link DL2000-based Gigabit Ethernet Adapter Linux driver */
3 Copyright (c) 2001, 2002 by D-Link Corporation
4 Written by Edward Peng.<edward_peng@dlink.com.tw>
5 Created 03-May-2001, base on Linux' sundance.c.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
13 #define DRV_NAME "DL2000/TC902x-based linux driver"
14 #define DRV_VERSION "v1.19"
15 #define DRV_RELDATE "2007/08/12"
17 #include <linux/dma-mapping.h>
19 static char version
[] __devinitdata
=
20 KERN_INFO DRV_NAME
" " DRV_VERSION
" " DRV_RELDATE
"\n";
22 static int mtu
[MAX_UNITS
];
23 static int vlan
[MAX_UNITS
];
24 static int jumbo
[MAX_UNITS
];
25 static char *media
[MAX_UNITS
];
26 static int tx_flow
=-1;
27 static int rx_flow
=-1;
28 static int copy_thresh
;
29 static int rx_coalesce
=10; /* Rx frame count each interrupt */
30 static int rx_timeout
=200; /* Rx DMA wait time in 640ns increments */
31 static int tx_coalesce
=16; /* HW xmit count each TxDMAComplete */
34 MODULE_AUTHOR ("Edward Peng");
35 MODULE_DESCRIPTION ("D-Link DL2000-based Gigabit Ethernet Adapter");
36 MODULE_LICENSE("GPL");
37 module_param_array(mtu
, int, NULL
, 0);
38 module_param_array(media
, charp
, NULL
, 0);
39 module_param_array(vlan
, int, NULL
, 0);
40 module_param_array(jumbo
, int, NULL
, 0);
41 module_param(tx_flow
, int, 0);
42 module_param(rx_flow
, int, 0);
43 module_param(copy_thresh
, int, 0);
44 module_param(rx_coalesce
, int, 0); /* Rx frame count each interrupt */
45 module_param(rx_timeout
, int, 0); /* Rx DMA wait time in 64ns increments */
46 module_param(tx_coalesce
, int, 0); /* HW xmit count each TxDMAComplete */
49 /* Enable the default interrupts */
50 #define DEFAULT_INTR (RxDMAComplete | HostError | IntRequested | TxDMAComplete| \
51 UpdateStats | LinkEvent)
53 writew(DEFAULT_INTR, ioaddr + IntEnable)
55 static const int max_intrloop
= 50;
56 static const int multicast_filter_limit
= 0x40;
58 static int rio_open (struct net_device
*dev
);
59 static void rio_timer (unsigned long data
);
60 static void rio_tx_timeout (struct net_device
*dev
);
61 static void alloc_list (struct net_device
*dev
);
62 static netdev_tx_t
start_xmit (struct sk_buff
*skb
, struct net_device
*dev
);
63 static irqreturn_t
rio_interrupt (int irq
, void *dev_instance
);
64 static void rio_free_tx (struct net_device
*dev
, int irq
);
65 static void tx_error (struct net_device
*dev
, int tx_status
);
66 static int receive_packet (struct net_device
*dev
);
67 static void rio_error (struct net_device
*dev
, int int_status
);
68 static int change_mtu (struct net_device
*dev
, int new_mtu
);
69 static void set_multicast (struct net_device
*dev
);
70 static struct net_device_stats
*get_stats (struct net_device
*dev
);
71 static int clear_stats (struct net_device
*dev
);
72 static int rio_ioctl (struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
73 static int rio_close (struct net_device
*dev
);
74 static int find_miiphy (struct net_device
*dev
);
75 static int parse_eeprom (struct net_device
*dev
);
76 static int read_eeprom (long ioaddr
, int eep_addr
);
77 static int mii_wait_link (struct net_device
*dev
, int wait
);
78 static int mii_set_media (struct net_device
*dev
);
79 static int mii_get_media (struct net_device
*dev
);
80 static int mii_set_media_pcs (struct net_device
*dev
);
81 static int mii_get_media_pcs (struct net_device
*dev
);
82 static int mii_read (struct net_device
*dev
, int phy_addr
, int reg_num
);
83 static int mii_write (struct net_device
*dev
, int phy_addr
, int reg_num
,
86 static const struct ethtool_ops ethtool_ops
;
88 static const struct net_device_ops netdev_ops
= {
90 .ndo_start_xmit
= start_xmit
,
91 .ndo_stop
= rio_close
,
92 .ndo_get_stats
= get_stats
,
93 .ndo_validate_addr
= eth_validate_addr
,
94 .ndo_set_mac_address
= eth_mac_addr
,
95 .ndo_set_rx_mode
= set_multicast
,
96 .ndo_do_ioctl
= rio_ioctl
,
97 .ndo_tx_timeout
= rio_tx_timeout
,
98 .ndo_change_mtu
= change_mtu
,
102 rio_probe1 (struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
104 struct net_device
*dev
;
105 struct netdev_private
*np
;
107 int chip_idx
= ent
->driver_data
;
110 static int version_printed
;
114 if (!version_printed
++)
115 printk ("%s", version
);
117 err
= pci_enable_device (pdev
);
122 err
= pci_request_regions (pdev
, "dl2k");
124 goto err_out_disable
;
126 pci_set_master (pdev
);
127 dev
= alloc_etherdev (sizeof (*np
));
132 SET_NETDEV_DEV(dev
, &pdev
->dev
);
135 ioaddr
= pci_resource_start (pdev
, 1);
136 ioaddr
= (long) ioremap (ioaddr
, RIO_IO_SIZE
);
142 ioaddr
= pci_resource_start (pdev
, 0);
144 dev
->base_addr
= ioaddr
;
146 np
= netdev_priv(dev
);
147 np
->chip_id
= chip_idx
;
149 spin_lock_init (&np
->tx_lock
);
150 spin_lock_init (&np
->rx_lock
);
152 /* Parse manual configuration */
155 if (card_idx
< MAX_UNITS
) {
156 if (media
[card_idx
] != NULL
) {
158 if (strcmp (media
[card_idx
], "auto") == 0 ||
159 strcmp (media
[card_idx
], "autosense") == 0 ||
160 strcmp (media
[card_idx
], "0") == 0 ) {
162 } else if (strcmp (media
[card_idx
], "100mbps_fd") == 0 ||
163 strcmp (media
[card_idx
], "4") == 0) {
166 } else if (strcmp (media
[card_idx
], "100mbps_hd") == 0 ||
167 strcmp (media
[card_idx
], "3") == 0) {
170 } else if (strcmp (media
[card_idx
], "10mbps_fd") == 0 ||
171 strcmp (media
[card_idx
], "2") == 0) {
174 } else if (strcmp (media
[card_idx
], "10mbps_hd") == 0 ||
175 strcmp (media
[card_idx
], "1") == 0) {
178 } else if (strcmp (media
[card_idx
], "1000mbps_fd") == 0 ||
179 strcmp (media
[card_idx
], "6") == 0) {
182 } else if (strcmp (media
[card_idx
], "1000mbps_hd") == 0 ||
183 strcmp (media
[card_idx
], "5") == 0) {
190 if (jumbo
[card_idx
] != 0) {
192 dev
->mtu
= MAX_JUMBO
;
195 if (mtu
[card_idx
] > 0 && mtu
[card_idx
] < PACKET_SIZE
)
196 dev
->mtu
= mtu
[card_idx
];
198 np
->vlan
= (vlan
[card_idx
] > 0 && vlan
[card_idx
] < 4096) ?
200 if (rx_coalesce
> 0 && rx_timeout
> 0) {
201 np
->rx_coalesce
= rx_coalesce
;
202 np
->rx_timeout
= rx_timeout
;
205 np
->tx_flow
= (tx_flow
== 0) ? 0 : 1;
206 np
->rx_flow
= (rx_flow
== 0) ? 0 : 1;
210 else if (tx_coalesce
> TX_RING_SIZE
-1)
211 tx_coalesce
= TX_RING_SIZE
- 1;
213 dev
->netdev_ops
= &netdev_ops
;
214 dev
->watchdog_timeo
= TX_TIMEOUT
;
215 SET_ETHTOOL_OPS(dev
, ðtool_ops
);
217 dev
->features
= NETIF_F_IP_CSUM
;
219 pci_set_drvdata (pdev
, dev
);
221 ring_space
= pci_alloc_consistent (pdev
, TX_TOTAL_SIZE
, &ring_dma
);
223 goto err_out_iounmap
;
224 np
->tx_ring
= ring_space
;
225 np
->tx_ring_dma
= ring_dma
;
227 ring_space
= pci_alloc_consistent (pdev
, RX_TOTAL_SIZE
, &ring_dma
);
229 goto err_out_unmap_tx
;
230 np
->rx_ring
= ring_space
;
231 np
->rx_ring_dma
= ring_dma
;
233 /* Parse eeprom data */
236 /* Find PHY address */
237 err
= find_miiphy (dev
);
239 goto err_out_unmap_rx
;
242 np
->phy_media
= (readw(ioaddr
+ ASICCtrl
) & PhyMedia
) ? 1 : 0;
244 /* Set media and reset PHY */
246 /* default Auto-Negotiation for fiber deivices */
247 if (np
->an_enable
== 2) {
250 mii_set_media_pcs (dev
);
252 /* Auto-Negotiation is mandatory for 1000BASE-T,
253 IEEE 802.3ab Annex 28D page 14 */
254 if (np
->speed
== 1000)
259 err
= register_netdev (dev
);
261 goto err_out_unmap_rx
;
265 printk (KERN_INFO
"%s: %s, %pM, IRQ %d\n",
266 dev
->name
, np
->name
, dev
->dev_addr
, irq
);
268 printk(KERN_INFO
"tx_coalesce:\t%d packets\n",
272 "rx_coalesce:\t%d packets\n"
273 "rx_timeout: \t%d ns\n",
274 np
->rx_coalesce
, np
->rx_timeout
*640);
276 printk(KERN_INFO
"vlan(id):\t%d\n", np
->vlan
);
280 pci_free_consistent (pdev
, RX_TOTAL_SIZE
, np
->rx_ring
, np
->rx_ring_dma
);
282 pci_free_consistent (pdev
, TX_TOTAL_SIZE
, np
->tx_ring
, np
->tx_ring_dma
);
285 iounmap ((void *) ioaddr
);
292 pci_release_regions (pdev
);
295 pci_disable_device (pdev
);
300 find_miiphy (struct net_device
*dev
)
302 int i
, phy_found
= 0;
303 struct netdev_private
*np
;
305 np
= netdev_priv(dev
);
306 ioaddr
= dev
->base_addr
;
309 for (i
= 31; i
>= 0; i
--) {
310 int mii_status
= mii_read (dev
, i
, 1);
311 if (mii_status
!= 0xffff && mii_status
!= 0x0000) {
317 printk (KERN_ERR
"%s: No MII PHY found!\n", dev
->name
);
324 parse_eeprom (struct net_device
*dev
)
327 long ioaddr
= dev
->base_addr
;
331 PSROM_t psrom
= (PSROM_t
) sromdata
;
332 struct netdev_private
*np
= netdev_priv(dev
);
337 ioaddr
= pci_resource_start (np
->pdev
, 0);
340 for (i
= 0; i
< 128; i
++) {
341 ((__le16
*) sromdata
)[i
] = cpu_to_le16(read_eeprom (ioaddr
, i
));
344 ioaddr
= dev
->base_addr
;
346 if (np
->pdev
->vendor
== PCI_VENDOR_ID_DLINK
) { /* D-Link Only */
348 crc
= ~ether_crc_le (256 - 4, sromdata
);
349 if (psrom
->crc
!= cpu_to_le32(crc
)) {
350 printk (KERN_ERR
"%s: EEPROM data CRC error.\n",
356 /* Set MAC address */
357 for (i
= 0; i
< 6; i
++)
358 dev
->dev_addr
[i
] = psrom
->mac_addr
[i
];
360 if (np
->pdev
->vendor
!= PCI_VENDOR_ID_DLINK
) {
364 /* Parse Software Information Block */
366 psib
= (u8
*) sromdata
;
370 if ((cid
== 0 && next
== 0) || (cid
== 0xff && next
== 0xff)) {
371 printk (KERN_ERR
"Cell data error\n");
375 case 0: /* Format version */
377 case 1: /* End of cell */
379 case 2: /* Duplex Polarity */
380 np
->duplex_polarity
= psib
[i
];
381 writeb (readb (ioaddr
+ PhyCtrl
) | psib
[i
],
384 case 3: /* Wake Polarity */
385 np
->wake_polarity
= psib
[i
];
387 case 9: /* Adapter description */
388 j
= (next
- i
> 255) ? 255 : next
- i
;
389 memcpy (np
->name
, &(psib
[i
]), j
);
395 case 8: /* Reversed */
397 default: /* Unknown cell */
407 rio_open (struct net_device
*dev
)
409 struct netdev_private
*np
= netdev_priv(dev
);
410 long ioaddr
= dev
->base_addr
;
414 i
= request_irq (dev
->irq
, rio_interrupt
, IRQF_SHARED
, dev
->name
, dev
);
418 /* Reset all logic functions */
419 writew (GlobalReset
| DMAReset
| FIFOReset
| NetworkReset
| HostReset
,
420 ioaddr
+ ASICCtrl
+ 2);
423 /* DebugCtrl bit 4, 5, 9 must set */
424 writel (readl (ioaddr
+ DebugCtrl
) | 0x0230, ioaddr
+ DebugCtrl
);
428 writew (MAX_JUMBO
+14, ioaddr
+ MaxFrameSize
);
432 /* Get station address */
433 for (i
= 0; i
< 6; i
++)
434 writeb (dev
->dev_addr
[i
], ioaddr
+ StationAddr0
+ i
);
438 writel (np
->rx_coalesce
| np
->rx_timeout
<< 16,
439 ioaddr
+ RxDMAIntCtrl
);
441 /* Set RIO to poll every N*320nsec. */
442 writeb (0x20, ioaddr
+ RxDMAPollPeriod
);
443 writeb (0xff, ioaddr
+ TxDMAPollPeriod
);
444 writeb (0x30, ioaddr
+ RxDMABurstThresh
);
445 writeb (0x30, ioaddr
+ RxDMAUrgentThresh
);
446 writel (0x0007ffff, ioaddr
+ RmonStatMask
);
447 /* clear statistics */
452 /* priority field in RxDMAIntCtrl */
453 writel (readl(ioaddr
+ RxDMAIntCtrl
) | 0x7 << 10,
454 ioaddr
+ RxDMAIntCtrl
);
456 writew (np
->vlan
, ioaddr
+ VLANId
);
457 /* Length/Type should be 0x8100 */
458 writel (0x8100 << 16 | np
->vlan
, ioaddr
+ VLANTag
);
459 /* Enable AutoVLANuntagging, but disable AutoVLANtagging.
460 VLAN information tagged by TFC' VID, CFI fields. */
461 writel (readl (ioaddr
+ MACCtrl
) | AutoVLANuntagging
,
465 init_timer (&np
->timer
);
466 np
->timer
.expires
= jiffies
+ 1*HZ
;
467 np
->timer
.data
= (unsigned long) dev
;
468 np
->timer
.function
= rio_timer
;
469 add_timer (&np
->timer
);
472 writel (readl (ioaddr
+ MACCtrl
) | StatsEnable
| RxEnable
| TxEnable
,
476 macctrl
|= (np
->vlan
) ? AutoVLANuntagging
: 0;
477 macctrl
|= (np
->full_duplex
) ? DuplexSelect
: 0;
478 macctrl
|= (np
->tx_flow
) ? TxFlowControlEnable
: 0;
479 macctrl
|= (np
->rx_flow
) ? RxFlowControlEnable
: 0;
480 writew(macctrl
, ioaddr
+ MACCtrl
);
482 netif_start_queue (dev
);
484 /* Enable default interrupts */
490 rio_timer (unsigned long data
)
492 struct net_device
*dev
= (struct net_device
*)data
;
493 struct netdev_private
*np
= netdev_priv(dev
);
495 int next_tick
= 1*HZ
;
498 spin_lock_irqsave(&np
->rx_lock
, flags
);
499 /* Recover rx ring exhausted error */
500 if (np
->cur_rx
- np
->old_rx
>= RX_RING_SIZE
) {
501 printk(KERN_INFO
"Try to recover rx ring exhausted...\n");
502 /* Re-allocate skbuffs to fill the descriptor ring */
503 for (; np
->cur_rx
- np
->old_rx
> 0; np
->old_rx
++) {
505 entry
= np
->old_rx
% RX_RING_SIZE
;
506 /* Dropped packets don't need to re-allocate */
507 if (np
->rx_skbuff
[entry
] == NULL
) {
508 skb
= netdev_alloc_skb_ip_align(dev
,
511 np
->rx_ring
[entry
].fraginfo
= 0;
513 "%s: Still unable to re-allocate Rx skbuff.#%d\n",
517 np
->rx_skbuff
[entry
] = skb
;
518 np
->rx_ring
[entry
].fraginfo
=
519 cpu_to_le64 (pci_map_single
520 (np
->pdev
, skb
->data
, np
->rx_buf_sz
,
521 PCI_DMA_FROMDEVICE
));
523 np
->rx_ring
[entry
].fraginfo
|=
524 cpu_to_le64((u64
)np
->rx_buf_sz
<< 48);
525 np
->rx_ring
[entry
].status
= 0;
528 spin_unlock_irqrestore (&np
->rx_lock
, flags
);
529 np
->timer
.expires
= jiffies
+ next_tick
;
530 add_timer(&np
->timer
);
534 rio_tx_timeout (struct net_device
*dev
)
536 long ioaddr
= dev
->base_addr
;
538 printk (KERN_INFO
"%s: Tx timed out (%4.4x), is buffer full?\n",
539 dev
->name
, readl (ioaddr
+ TxStatus
));
542 dev
->trans_start
= jiffies
; /* prevent tx timeout */
545 /* allocate and initialize Tx and Rx descriptors */
547 alloc_list (struct net_device
*dev
)
549 struct netdev_private
*np
= netdev_priv(dev
);
552 np
->cur_rx
= np
->cur_tx
= 0;
553 np
->old_rx
= np
->old_tx
= 0;
554 np
->rx_buf_sz
= (dev
->mtu
<= 1500 ? PACKET_SIZE
: dev
->mtu
+ 32);
556 /* Initialize Tx descriptors, TFDListPtr leaves in start_xmit(). */
557 for (i
= 0; i
< TX_RING_SIZE
; i
++) {
558 np
->tx_skbuff
[i
] = NULL
;
559 np
->tx_ring
[i
].status
= cpu_to_le64 (TFDDone
);
560 np
->tx_ring
[i
].next_desc
= cpu_to_le64 (np
->tx_ring_dma
+
561 ((i
+1)%TX_RING_SIZE
) *
562 sizeof (struct netdev_desc
));
565 /* Initialize Rx descriptors */
566 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
567 np
->rx_ring
[i
].next_desc
= cpu_to_le64 (np
->rx_ring_dma
+
568 ((i
+ 1) % RX_RING_SIZE
) *
569 sizeof (struct netdev_desc
));
570 np
->rx_ring
[i
].status
= 0;
571 np
->rx_ring
[i
].fraginfo
= 0;
572 np
->rx_skbuff
[i
] = NULL
;
575 /* Allocate the rx buffers */
576 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
577 /* Allocated fixed size of skbuff */
580 skb
= netdev_alloc_skb_ip_align(dev
, np
->rx_buf_sz
);
581 np
->rx_skbuff
[i
] = skb
;
584 "%s: alloc_list: allocate Rx buffer error! ",
588 /* Rubicon now supports 40 bits of addressing space. */
589 np
->rx_ring
[i
].fraginfo
=
590 cpu_to_le64 ( pci_map_single (
591 np
->pdev
, skb
->data
, np
->rx_buf_sz
,
592 PCI_DMA_FROMDEVICE
));
593 np
->rx_ring
[i
].fraginfo
|= cpu_to_le64((u64
)np
->rx_buf_sz
<< 48);
597 writel (np
->rx_ring_dma
, dev
->base_addr
+ RFDListPtr0
);
598 writel (0, dev
->base_addr
+ RFDListPtr1
);
602 start_xmit (struct sk_buff
*skb
, struct net_device
*dev
)
604 struct netdev_private
*np
= netdev_priv(dev
);
605 struct netdev_desc
*txdesc
;
608 u64 tfc_vlan_tag
= 0;
610 if (np
->link_status
== 0) { /* Link Down */
614 ioaddr
= dev
->base_addr
;
615 entry
= np
->cur_tx
% TX_RING_SIZE
;
616 np
->tx_skbuff
[entry
] = skb
;
617 txdesc
= &np
->tx_ring
[entry
];
620 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
622 cpu_to_le64 (TCPChecksumEnable
| UDPChecksumEnable
|
627 tfc_vlan_tag
= VLANTagInsert
|
628 ((u64
)np
->vlan
<< 32) |
629 ((u64
)skb
->priority
<< 45);
631 txdesc
->fraginfo
= cpu_to_le64 (pci_map_single (np
->pdev
, skb
->data
,
634 txdesc
->fraginfo
|= cpu_to_le64((u64
)skb
->len
<< 48);
636 /* DL2K bug: DMA fails to get next descriptor ptr in 10Mbps mode
637 * Work around: Always use 1 descriptor in 10Mbps mode */
638 if (entry
% np
->tx_coalesce
== 0 || np
->speed
== 10)
639 txdesc
->status
= cpu_to_le64 (entry
| tfc_vlan_tag
|
642 (1 << FragCountShift
));
644 txdesc
->status
= cpu_to_le64 (entry
| tfc_vlan_tag
|
646 (1 << FragCountShift
));
649 writel (readl (ioaddr
+ DMACtrl
) | 0x00001000, ioaddr
+ DMACtrl
);
651 writel(10000, ioaddr
+ CountDown
);
652 np
->cur_tx
= (np
->cur_tx
+ 1) % TX_RING_SIZE
;
653 if ((np
->cur_tx
- np
->old_tx
+ TX_RING_SIZE
) % TX_RING_SIZE
654 < TX_QUEUE_LEN
- 1 && np
->speed
!= 10) {
656 } else if (!netif_queue_stopped(dev
)) {
657 netif_stop_queue (dev
);
660 /* The first TFDListPtr */
661 if (readl (dev
->base_addr
+ TFDListPtr0
) == 0) {
662 writel (np
->tx_ring_dma
+ entry
* sizeof (struct netdev_desc
),
663 dev
->base_addr
+ TFDListPtr0
);
664 writel (0, dev
->base_addr
+ TFDListPtr1
);
671 rio_interrupt (int irq
, void *dev_instance
)
673 struct net_device
*dev
= dev_instance
;
674 struct netdev_private
*np
;
677 int cnt
= max_intrloop
;
680 ioaddr
= dev
->base_addr
;
681 np
= netdev_priv(dev
);
683 int_status
= readw (ioaddr
+ IntStatus
);
684 writew (int_status
, ioaddr
+ IntStatus
);
685 int_status
&= DEFAULT_INTR
;
686 if (int_status
== 0 || --cnt
< 0)
689 /* Processing received packets */
690 if (int_status
& RxDMAComplete
)
691 receive_packet (dev
);
692 /* TxDMAComplete interrupt */
693 if ((int_status
& (TxDMAComplete
|IntRequested
))) {
695 tx_status
= readl (ioaddr
+ TxStatus
);
696 if (tx_status
& 0x01)
697 tx_error (dev
, tx_status
);
698 /* Free used tx skbuffs */
699 rio_free_tx (dev
, 1);
702 /* Handle uncommon events */
704 (HostError
| LinkEvent
| UpdateStats
))
705 rio_error (dev
, int_status
);
707 if (np
->cur_tx
!= np
->old_tx
)
708 writel (100, ioaddr
+ CountDown
);
709 return IRQ_RETVAL(handled
);
712 static inline dma_addr_t
desc_to_dma(struct netdev_desc
*desc
)
714 return le64_to_cpu(desc
->fraginfo
) & DMA_BIT_MASK(48);
718 rio_free_tx (struct net_device
*dev
, int irq
)
720 struct netdev_private
*np
= netdev_priv(dev
);
721 int entry
= np
->old_tx
% TX_RING_SIZE
;
723 unsigned long flag
= 0;
726 spin_lock(&np
->tx_lock
);
728 spin_lock_irqsave(&np
->tx_lock
, flag
);
730 /* Free used tx skbuffs */
731 while (entry
!= np
->cur_tx
) {
734 if (!(np
->tx_ring
[entry
].status
& cpu_to_le64(TFDDone
)))
736 skb
= np
->tx_skbuff
[entry
];
737 pci_unmap_single (np
->pdev
,
738 desc_to_dma(&np
->tx_ring
[entry
]),
739 skb
->len
, PCI_DMA_TODEVICE
);
741 dev_kfree_skb_irq (skb
);
745 np
->tx_skbuff
[entry
] = NULL
;
746 entry
= (entry
+ 1) % TX_RING_SIZE
;
750 spin_unlock(&np
->tx_lock
);
752 spin_unlock_irqrestore(&np
->tx_lock
, flag
);
755 /* If the ring is no longer full, clear tx_full and
756 call netif_wake_queue() */
758 if (netif_queue_stopped(dev
) &&
759 ((np
->cur_tx
- np
->old_tx
+ TX_RING_SIZE
) % TX_RING_SIZE
760 < TX_QUEUE_LEN
- 1 || np
->speed
== 10)) {
761 netif_wake_queue (dev
);
766 tx_error (struct net_device
*dev
, int tx_status
)
768 struct netdev_private
*np
;
769 long ioaddr
= dev
->base_addr
;
773 np
= netdev_priv(dev
);
775 frame_id
= (tx_status
& 0xffff0000);
776 printk (KERN_ERR
"%s: Transmit error, TxStatus %4.4x, FrameId %d.\n",
777 dev
->name
, tx_status
, frame_id
);
778 np
->stats
.tx_errors
++;
779 /* Ttransmit Underrun */
780 if (tx_status
& 0x10) {
781 np
->stats
.tx_fifo_errors
++;
782 writew (readw (ioaddr
+ TxStartThresh
) + 0x10,
783 ioaddr
+ TxStartThresh
);
784 /* Transmit Underrun need to set TxReset, DMARest, FIFOReset */
785 writew (TxReset
| DMAReset
| FIFOReset
| NetworkReset
,
786 ioaddr
+ ASICCtrl
+ 2);
787 /* Wait for ResetBusy bit clear */
788 for (i
= 50; i
> 0; i
--) {
789 if ((readw (ioaddr
+ ASICCtrl
+ 2) & ResetBusy
) == 0)
793 rio_free_tx (dev
, 1);
794 /* Reset TFDListPtr */
795 writel (np
->tx_ring_dma
+
796 np
->old_tx
* sizeof (struct netdev_desc
),
797 dev
->base_addr
+ TFDListPtr0
);
798 writel (0, dev
->base_addr
+ TFDListPtr1
);
800 /* Let TxStartThresh stay default value */
803 if (tx_status
& 0x04) {
804 np
->stats
.tx_fifo_errors
++;
805 /* TxReset and clear FIFO */
806 writew (TxReset
| FIFOReset
, ioaddr
+ ASICCtrl
+ 2);
807 /* Wait reset done */
808 for (i
= 50; i
> 0; i
--) {
809 if ((readw (ioaddr
+ ASICCtrl
+ 2) & ResetBusy
) == 0)
813 /* Let TxStartThresh stay default value */
815 /* Maximum Collisions */
817 if (tx_status
& 0x08)
818 np
->stats
.collisions16
++;
820 if (tx_status
& 0x08)
821 np
->stats
.collisions
++;
824 writel (readw (dev
->base_addr
+ MACCtrl
) | TxEnable
, ioaddr
+ MACCtrl
);
828 receive_packet (struct net_device
*dev
)
830 struct netdev_private
*np
= netdev_priv(dev
);
831 int entry
= np
->cur_rx
% RX_RING_SIZE
;
834 /* If RFDDone, FrameStart and FrameEnd set, there is a new packet in. */
836 struct netdev_desc
*desc
= &np
->rx_ring
[entry
];
840 if (!(desc
->status
& cpu_to_le64(RFDDone
)) ||
841 !(desc
->status
& cpu_to_le64(FrameStart
)) ||
842 !(desc
->status
& cpu_to_le64(FrameEnd
)))
845 /* Chip omits the CRC. */
846 frame_status
= le64_to_cpu(desc
->status
);
847 pkt_len
= frame_status
& 0xffff;
850 /* Update rx error statistics, drop packet. */
851 if (frame_status
& RFS_Errors
) {
852 np
->stats
.rx_errors
++;
853 if (frame_status
& (RxRuntFrame
| RxLengthError
))
854 np
->stats
.rx_length_errors
++;
855 if (frame_status
& RxFCSError
)
856 np
->stats
.rx_crc_errors
++;
857 if (frame_status
& RxAlignmentError
&& np
->speed
!= 1000)
858 np
->stats
.rx_frame_errors
++;
859 if (frame_status
& RxFIFOOverrun
)
860 np
->stats
.rx_fifo_errors
++;
864 /* Small skbuffs for short packets */
865 if (pkt_len
> copy_thresh
) {
866 pci_unmap_single (np
->pdev
,
870 skb_put (skb
= np
->rx_skbuff
[entry
], pkt_len
);
871 np
->rx_skbuff
[entry
] = NULL
;
872 } else if ((skb
= netdev_alloc_skb_ip_align(dev
, pkt_len
))) {
873 pci_dma_sync_single_for_cpu(np
->pdev
,
877 skb_copy_to_linear_data (skb
,
878 np
->rx_skbuff
[entry
]->data
,
880 skb_put (skb
, pkt_len
);
881 pci_dma_sync_single_for_device(np
->pdev
,
886 skb
->protocol
= eth_type_trans (skb
, dev
);
888 /* Checksum done by hw, but csum value unavailable. */
889 if (np
->pdev
->pci_rev_id
>= 0x0c &&
890 !(frame_status
& (TCPError
| UDPError
| IPError
))) {
891 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
896 entry
= (entry
+ 1) % RX_RING_SIZE
;
898 spin_lock(&np
->rx_lock
);
900 /* Re-allocate skbuffs to fill the descriptor ring */
902 while (entry
!= np
->cur_rx
) {
904 /* Dropped packets don't need to re-allocate */
905 if (np
->rx_skbuff
[entry
] == NULL
) {
906 skb
= netdev_alloc_skb_ip_align(dev
, np
->rx_buf_sz
);
908 np
->rx_ring
[entry
].fraginfo
= 0;
910 "%s: receive_packet: "
911 "Unable to re-allocate Rx skbuff.#%d\n",
915 np
->rx_skbuff
[entry
] = skb
;
916 np
->rx_ring
[entry
].fraginfo
=
917 cpu_to_le64 (pci_map_single
918 (np
->pdev
, skb
->data
, np
->rx_buf_sz
,
919 PCI_DMA_FROMDEVICE
));
921 np
->rx_ring
[entry
].fraginfo
|=
922 cpu_to_le64((u64
)np
->rx_buf_sz
<< 48);
923 np
->rx_ring
[entry
].status
= 0;
924 entry
= (entry
+ 1) % RX_RING_SIZE
;
927 spin_unlock(&np
->rx_lock
);
932 rio_error (struct net_device
*dev
, int int_status
)
934 long ioaddr
= dev
->base_addr
;
935 struct netdev_private
*np
= netdev_priv(dev
);
938 /* Link change event */
939 if (int_status
& LinkEvent
) {
940 if (mii_wait_link (dev
, 10) == 0) {
941 printk (KERN_INFO
"%s: Link up\n", dev
->name
);
943 mii_get_media_pcs (dev
);
946 if (np
->speed
== 1000)
947 np
->tx_coalesce
= tx_coalesce
;
951 macctrl
|= (np
->vlan
) ? AutoVLANuntagging
: 0;
952 macctrl
|= (np
->full_duplex
) ? DuplexSelect
: 0;
953 macctrl
|= (np
->tx_flow
) ?
954 TxFlowControlEnable
: 0;
955 macctrl
|= (np
->rx_flow
) ?
956 RxFlowControlEnable
: 0;
957 writew(macctrl
, ioaddr
+ MACCtrl
);
959 netif_carrier_on(dev
);
961 printk (KERN_INFO
"%s: Link off\n", dev
->name
);
963 netif_carrier_off(dev
);
967 /* UpdateStats statistics registers */
968 if (int_status
& UpdateStats
) {
972 /* PCI Error, a catastronphic error related to the bus interface
973 occurs, set GlobalReset and HostReset to reset. */
974 if (int_status
& HostError
) {
975 printk (KERN_ERR
"%s: HostError! IntStatus %4.4x.\n",
976 dev
->name
, int_status
);
977 writew (GlobalReset
| HostReset
, ioaddr
+ ASICCtrl
+ 2);
982 static struct net_device_stats
*
983 get_stats (struct net_device
*dev
)
985 long ioaddr
= dev
->base_addr
;
986 struct netdev_private
*np
= netdev_priv(dev
);
990 unsigned int stat_reg
;
992 /* All statistics registers need to be acknowledged,
993 else statistic overflow could cause problems */
995 np
->stats
.rx_packets
+= readl (ioaddr
+ FramesRcvOk
);
996 np
->stats
.tx_packets
+= readl (ioaddr
+ FramesXmtOk
);
997 np
->stats
.rx_bytes
+= readl (ioaddr
+ OctetRcvOk
);
998 np
->stats
.tx_bytes
+= readl (ioaddr
+ OctetXmtOk
);
1000 np
->stats
.multicast
= readl (ioaddr
+ McstFramesRcvdOk
);
1001 np
->stats
.collisions
+= readl (ioaddr
+ SingleColFrames
)
1002 + readl (ioaddr
+ MultiColFrames
);
1004 /* detailed tx errors */
1005 stat_reg
= readw (ioaddr
+ FramesAbortXSColls
);
1006 np
->stats
.tx_aborted_errors
+= stat_reg
;
1007 np
->stats
.tx_errors
+= stat_reg
;
1009 stat_reg
= readw (ioaddr
+ CarrierSenseErrors
);
1010 np
->stats
.tx_carrier_errors
+= stat_reg
;
1011 np
->stats
.tx_errors
+= stat_reg
;
1013 /* Clear all other statistic register. */
1014 readl (ioaddr
+ McstOctetXmtOk
);
1015 readw (ioaddr
+ BcstFramesXmtdOk
);
1016 readl (ioaddr
+ McstFramesXmtdOk
);
1017 readw (ioaddr
+ BcstFramesRcvdOk
);
1018 readw (ioaddr
+ MacControlFramesRcvd
);
1019 readw (ioaddr
+ FrameTooLongErrors
);
1020 readw (ioaddr
+ InRangeLengthErrors
);
1021 readw (ioaddr
+ FramesCheckSeqErrors
);
1022 readw (ioaddr
+ FramesLostRxErrors
);
1023 readl (ioaddr
+ McstOctetXmtOk
);
1024 readl (ioaddr
+ BcstOctetXmtOk
);
1025 readl (ioaddr
+ McstFramesXmtdOk
);
1026 readl (ioaddr
+ FramesWDeferredXmt
);
1027 readl (ioaddr
+ LateCollisions
);
1028 readw (ioaddr
+ BcstFramesXmtdOk
);
1029 readw (ioaddr
+ MacControlFramesXmtd
);
1030 readw (ioaddr
+ FramesWEXDeferal
);
1033 for (i
= 0x100; i
<= 0x150; i
+= 4)
1036 readw (ioaddr
+ TxJumboFrames
);
1037 readw (ioaddr
+ RxJumboFrames
);
1038 readw (ioaddr
+ TCPCheckSumErrors
);
1039 readw (ioaddr
+ UDPCheckSumErrors
);
1040 readw (ioaddr
+ IPCheckSumErrors
);
1045 clear_stats (struct net_device
*dev
)
1047 long ioaddr
= dev
->base_addr
;
1052 /* All statistics registers need to be acknowledged,
1053 else statistic overflow could cause problems */
1054 readl (ioaddr
+ FramesRcvOk
);
1055 readl (ioaddr
+ FramesXmtOk
);
1056 readl (ioaddr
+ OctetRcvOk
);
1057 readl (ioaddr
+ OctetXmtOk
);
1059 readl (ioaddr
+ McstFramesRcvdOk
);
1060 readl (ioaddr
+ SingleColFrames
);
1061 readl (ioaddr
+ MultiColFrames
);
1062 readl (ioaddr
+ LateCollisions
);
1063 /* detailed rx errors */
1064 readw (ioaddr
+ FrameTooLongErrors
);
1065 readw (ioaddr
+ InRangeLengthErrors
);
1066 readw (ioaddr
+ FramesCheckSeqErrors
);
1067 readw (ioaddr
+ FramesLostRxErrors
);
1069 /* detailed tx errors */
1070 readw (ioaddr
+ FramesAbortXSColls
);
1071 readw (ioaddr
+ CarrierSenseErrors
);
1073 /* Clear all other statistic register. */
1074 readl (ioaddr
+ McstOctetXmtOk
);
1075 readw (ioaddr
+ BcstFramesXmtdOk
);
1076 readl (ioaddr
+ McstFramesXmtdOk
);
1077 readw (ioaddr
+ BcstFramesRcvdOk
);
1078 readw (ioaddr
+ MacControlFramesRcvd
);
1079 readl (ioaddr
+ McstOctetXmtOk
);
1080 readl (ioaddr
+ BcstOctetXmtOk
);
1081 readl (ioaddr
+ McstFramesXmtdOk
);
1082 readl (ioaddr
+ FramesWDeferredXmt
);
1083 readw (ioaddr
+ BcstFramesXmtdOk
);
1084 readw (ioaddr
+ MacControlFramesXmtd
);
1085 readw (ioaddr
+ FramesWEXDeferal
);
1087 for (i
= 0x100; i
<= 0x150; i
+= 4)
1090 readw (ioaddr
+ TxJumboFrames
);
1091 readw (ioaddr
+ RxJumboFrames
);
1092 readw (ioaddr
+ TCPCheckSumErrors
);
1093 readw (ioaddr
+ UDPCheckSumErrors
);
1094 readw (ioaddr
+ IPCheckSumErrors
);
1100 change_mtu (struct net_device
*dev
, int new_mtu
)
1102 struct netdev_private
*np
= netdev_priv(dev
);
1103 int max
= (np
->jumbo
) ? MAX_JUMBO
: 1536;
1105 if ((new_mtu
< 68) || (new_mtu
> max
)) {
1115 set_multicast (struct net_device
*dev
)
1117 long ioaddr
= dev
->base_addr
;
1120 struct netdev_private
*np
= netdev_priv(dev
);
1122 hash_table
[0] = hash_table
[1] = 0;
1123 /* RxFlowcontrol DA: 01-80-C2-00-00-01. Hash index=0x39 */
1124 hash_table
[1] |= 0x02000000;
1125 if (dev
->flags
& IFF_PROMISC
) {
1126 /* Receive all frames promiscuously. */
1127 rx_mode
= ReceiveAllFrames
;
1128 } else if ((dev
->flags
& IFF_ALLMULTI
) ||
1129 (netdev_mc_count(dev
) > multicast_filter_limit
)) {
1130 /* Receive broadcast and multicast frames */
1131 rx_mode
= ReceiveBroadcast
| ReceiveMulticast
| ReceiveUnicast
;
1132 } else if (!netdev_mc_empty(dev
)) {
1133 struct netdev_hw_addr
*ha
;
1134 /* Receive broadcast frames and multicast frames filtering
1137 ReceiveBroadcast
| ReceiveMulticastHash
| ReceiveUnicast
;
1138 netdev_for_each_mc_addr(ha
, dev
) {
1140 int crc
= ether_crc_le(ETH_ALEN
, ha
->addr
);
1141 /* The inverted high significant 6 bits of CRC are
1142 used as an index to hashtable */
1143 for (bit
= 0; bit
< 6; bit
++)
1144 if (crc
& (1 << (31 - bit
)))
1145 index
|= (1 << bit
);
1146 hash_table
[index
/ 32] |= (1 << (index
% 32));
1149 rx_mode
= ReceiveBroadcast
| ReceiveUnicast
;
1152 /* ReceiveVLANMatch field in ReceiveMode */
1153 rx_mode
|= ReceiveVLANMatch
;
1156 writel (hash_table
[0], ioaddr
+ HashTable0
);
1157 writel (hash_table
[1], ioaddr
+ HashTable1
);
1158 writew (rx_mode
, ioaddr
+ ReceiveMode
);
1161 static void rio_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
1163 struct netdev_private
*np
= netdev_priv(dev
);
1164 strcpy(info
->driver
, "dl2k");
1165 strcpy(info
->version
, DRV_VERSION
);
1166 strcpy(info
->bus_info
, pci_name(np
->pdev
));
1169 static int rio_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1171 struct netdev_private
*np
= netdev_priv(dev
);
1172 if (np
->phy_media
) {
1174 cmd
->supported
= SUPPORTED_Autoneg
| SUPPORTED_FIBRE
;
1175 cmd
->advertising
= ADVERTISED_Autoneg
| ADVERTISED_FIBRE
;
1176 cmd
->port
= PORT_FIBRE
;
1177 cmd
->transceiver
= XCVR_INTERNAL
;
1180 cmd
->supported
= SUPPORTED_10baseT_Half
|
1181 SUPPORTED_10baseT_Full
| SUPPORTED_100baseT_Half
1182 | SUPPORTED_100baseT_Full
| SUPPORTED_1000baseT_Full
|
1183 SUPPORTED_Autoneg
| SUPPORTED_MII
;
1184 cmd
->advertising
= ADVERTISED_10baseT_Half
|
1185 ADVERTISED_10baseT_Full
| ADVERTISED_100baseT_Half
|
1186 ADVERTISED_100baseT_Full
| ADVERTISED_1000baseT_Full
|
1187 ADVERTISED_Autoneg
| ADVERTISED_MII
;
1188 cmd
->port
= PORT_MII
;
1189 cmd
->transceiver
= XCVR_INTERNAL
;
1191 if ( np
->link_status
) {
1192 ethtool_cmd_speed_set(cmd
, np
->speed
);
1193 cmd
->duplex
= np
->full_duplex
? DUPLEX_FULL
: DUPLEX_HALF
;
1195 ethtool_cmd_speed_set(cmd
, -1);
1199 cmd
->autoneg
= AUTONEG_ENABLE
;
1201 cmd
->autoneg
= AUTONEG_DISABLE
;
1203 cmd
->phy_address
= np
->phy_addr
;
1207 static int rio_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1209 struct netdev_private
*np
= netdev_priv(dev
);
1210 netif_carrier_off(dev
);
1211 if (cmd
->autoneg
== AUTONEG_ENABLE
) {
1221 if (np
->speed
== 1000) {
1222 ethtool_cmd_speed_set(cmd
, SPEED_100
);
1223 cmd
->duplex
= DUPLEX_FULL
;
1224 printk("Warning!! Can't disable Auto negotiation in 1000Mbps, change to Manual 100Mbps, Full duplex.\n");
1226 switch (ethtool_cmd_speed(cmd
)) {
1229 np
->full_duplex
= (cmd
->duplex
== DUPLEX_FULL
);
1233 np
->full_duplex
= (cmd
->duplex
== DUPLEX_FULL
);
1235 case SPEED_1000
: /* not supported */
1244 static u32
rio_get_link(struct net_device
*dev
)
1246 struct netdev_private
*np
= netdev_priv(dev
);
1247 return np
->link_status
;
1250 static const struct ethtool_ops ethtool_ops
= {
1251 .get_drvinfo
= rio_get_drvinfo
,
1252 .get_settings
= rio_get_settings
,
1253 .set_settings
= rio_set_settings
,
1254 .get_link
= rio_get_link
,
1258 rio_ioctl (struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1261 struct netdev_private
*np
= netdev_priv(dev
);
1262 struct mii_ioctl_data
*miidata
= if_mii(rq
);
1264 phy_addr
= np
->phy_addr
;
1267 miidata
->phy_id
= phy_addr
;
1270 miidata
->val_out
= mii_read (dev
, phy_addr
, miidata
->reg_num
);
1273 if (!capable(CAP_NET_ADMIN
))
1275 mii_write (dev
, phy_addr
, miidata
->reg_num
, miidata
->val_in
);
1283 #define EEP_READ 0x0200
1284 #define EEP_BUSY 0x8000
1285 /* Read the EEPROM word */
1286 /* We use I/O instruction to read/write eeprom to avoid fail on some machines */
1288 read_eeprom (long ioaddr
, int eep_addr
)
1291 outw (EEP_READ
| (eep_addr
& 0xff), ioaddr
+ EepromCtrl
);
1293 if (!(inw (ioaddr
+ EepromCtrl
) & EEP_BUSY
)) {
1294 return inw (ioaddr
+ EepromData
);
1300 enum phy_ctrl_bits
{
1301 MII_READ
= 0x00, MII_CLK
= 0x01, MII_DATA1
= 0x02, MII_WRITE
= 0x04,
1305 #define mii_delay() readb(ioaddr)
1307 mii_sendbit (struct net_device
*dev
, u32 data
)
1309 long ioaddr
= dev
->base_addr
+ PhyCtrl
;
1310 data
= (data
) ? MII_DATA1
: 0;
1312 data
|= (readb (ioaddr
) & 0xf8) | MII_WRITE
;
1313 writeb (data
, ioaddr
);
1315 writeb (data
| MII_CLK
, ioaddr
);
1320 mii_getbit (struct net_device
*dev
)
1322 long ioaddr
= dev
->base_addr
+ PhyCtrl
;
1325 data
= (readb (ioaddr
) & 0xf8) | MII_READ
;
1326 writeb (data
, ioaddr
);
1328 writeb (data
| MII_CLK
, ioaddr
);
1330 return ((readb (ioaddr
) >> 1) & 1);
1334 mii_send_bits (struct net_device
*dev
, u32 data
, int len
)
1337 for (i
= len
- 1; i
>= 0; i
--) {
1338 mii_sendbit (dev
, data
& (1 << i
));
1343 mii_read (struct net_device
*dev
, int phy_addr
, int reg_num
)
1350 mii_send_bits (dev
, 0xffffffff, 32);
1351 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1352 /* ST,OP = 0110'b for read operation */
1353 cmd
= (0x06 << 10 | phy_addr
<< 5 | reg_num
);
1354 mii_send_bits (dev
, cmd
, 14);
1356 if (mii_getbit (dev
))
1359 for (i
= 0; i
< 16; i
++) {
1360 retval
|= mii_getbit (dev
);
1365 return (retval
>> 1) & 0xffff;
1371 mii_write (struct net_device
*dev
, int phy_addr
, int reg_num
, u16 data
)
1376 mii_send_bits (dev
, 0xffffffff, 32);
1377 /* ST(2), OP(2), ADDR(5), REG#(5), TA(2), Data(16) total 32 bits */
1378 /* ST,OP,AAAAA,RRRRR,TA = 0101xxxxxxxxxx10'b = 0x5002 for write */
1379 cmd
= (0x5002 << 16) | (phy_addr
<< 23) | (reg_num
<< 18) | data
;
1380 mii_send_bits (dev
, cmd
, 32);
1386 mii_wait_link (struct net_device
*dev
, int wait
)
1390 struct netdev_private
*np
;
1392 np
= netdev_priv(dev
);
1393 phy_addr
= np
->phy_addr
;
1396 bmsr
= mii_read (dev
, phy_addr
, MII_BMSR
);
1397 if (bmsr
& BMSR_LSTATUS
)
1400 } while (--wait
> 0);
1404 mii_get_media (struct net_device
*dev
)
1411 struct netdev_private
*np
;
1413 np
= netdev_priv(dev
);
1414 phy_addr
= np
->phy_addr
;
1416 bmsr
= mii_read (dev
, phy_addr
, MII_BMSR
);
1417 if (np
->an_enable
) {
1418 if (!(bmsr
& BMSR_ANEGCOMPLETE
)) {
1419 /* Auto-Negotiation not completed */
1422 negotiate
= mii_read (dev
, phy_addr
, MII_ADVERTISE
) &
1423 mii_read (dev
, phy_addr
, MII_LPA
);
1424 mscr
= mii_read (dev
, phy_addr
, MII_CTRL1000
);
1425 mssr
= mii_read (dev
, phy_addr
, MII_STAT1000
);
1426 if (mscr
& ADVERTISE_1000FULL
&& mssr
& LPA_1000FULL
) {
1428 np
->full_duplex
= 1;
1429 printk (KERN_INFO
"Auto 1000 Mbps, Full duplex\n");
1430 } else if (mscr
& ADVERTISE_1000HALF
&& mssr
& LPA_1000HALF
) {
1432 np
->full_duplex
= 0;
1433 printk (KERN_INFO
"Auto 1000 Mbps, Half duplex\n");
1434 } else if (negotiate
& ADVERTISE_100FULL
) {
1436 np
->full_duplex
= 1;
1437 printk (KERN_INFO
"Auto 100 Mbps, Full duplex\n");
1438 } else if (negotiate
& ADVERTISE_100HALF
) {
1440 np
->full_duplex
= 0;
1441 printk (KERN_INFO
"Auto 100 Mbps, Half duplex\n");
1442 } else if (negotiate
& ADVERTISE_10FULL
) {
1444 np
->full_duplex
= 1;
1445 printk (KERN_INFO
"Auto 10 Mbps, Full duplex\n");
1446 } else if (negotiate
& ADVERTISE_10HALF
) {
1448 np
->full_duplex
= 0;
1449 printk (KERN_INFO
"Auto 10 Mbps, Half duplex\n");
1451 if (negotiate
& ADVERTISE_PAUSE_CAP
) {
1454 } else if (negotiate
& ADVERTISE_PAUSE_ASYM
) {
1458 /* else tx_flow, rx_flow = user select */
1460 __u16 bmcr
= mii_read (dev
, phy_addr
, MII_BMCR
);
1461 switch (bmcr
& (BMCR_SPEED100
| BMCR_SPEED1000
)) {
1462 case BMCR_SPEED1000
:
1463 printk (KERN_INFO
"Operating at 1000 Mbps, ");
1466 printk (KERN_INFO
"Operating at 100 Mbps, ");
1469 printk (KERN_INFO
"Operating at 10 Mbps, ");
1471 if (bmcr
& BMCR_FULLDPLX
) {
1472 printk (KERN_CONT
"Full duplex\n");
1474 printk (KERN_CONT
"Half duplex\n");
1478 printk(KERN_INFO
"Enable Tx Flow Control\n");
1480 printk(KERN_INFO
"Disable Tx Flow Control\n");
1482 printk(KERN_INFO
"Enable Rx Flow Control\n");
1484 printk(KERN_INFO
"Disable Rx Flow Control\n");
1490 mii_set_media (struct net_device
*dev
)
1497 struct netdev_private
*np
;
1498 np
= netdev_priv(dev
);
1499 phy_addr
= np
->phy_addr
;
1501 /* Does user set speed? */
1502 if (np
->an_enable
) {
1503 /* Advertise capabilities */
1504 bmsr
= mii_read (dev
, phy_addr
, MII_BMSR
);
1505 anar
= mii_read (dev
, phy_addr
, MII_ADVERTISE
) &
1506 ~(ADVERTISE_100FULL
| ADVERTISE_10FULL
|
1507 ADVERTISE_100HALF
| ADVERTISE_10HALF
|
1508 ADVERTISE_100BASE4
);
1509 if (bmsr
& BMSR_100FULL
)
1510 anar
|= ADVERTISE_100FULL
;
1511 if (bmsr
& BMSR_100HALF
)
1512 anar
|= ADVERTISE_100HALF
;
1513 if (bmsr
& BMSR_100BASE4
)
1514 anar
|= ADVERTISE_100BASE4
;
1515 if (bmsr
& BMSR_10FULL
)
1516 anar
|= ADVERTISE_10FULL
;
1517 if (bmsr
& BMSR_10HALF
)
1518 anar
|= ADVERTISE_10HALF
;
1519 anar
|= ADVERTISE_PAUSE_CAP
| ADVERTISE_PAUSE_ASYM
;
1520 mii_write (dev
, phy_addr
, MII_ADVERTISE
, anar
);
1522 /* Enable Auto crossover */
1523 pscr
= mii_read (dev
, phy_addr
, MII_PHY_SCR
);
1524 pscr
|= 3 << 5; /* 11'b */
1525 mii_write (dev
, phy_addr
, MII_PHY_SCR
, pscr
);
1527 /* Soft reset PHY */
1528 mii_write (dev
, phy_addr
, MII_BMCR
, BMCR_RESET
);
1529 bmcr
= BMCR_ANENABLE
| BMCR_ANRESTART
| BMCR_RESET
;
1530 mii_write (dev
, phy_addr
, MII_BMCR
, bmcr
);
1533 /* Force speed setting */
1534 /* 1) Disable Auto crossover */
1535 pscr
= mii_read (dev
, phy_addr
, MII_PHY_SCR
);
1537 mii_write (dev
, phy_addr
, MII_PHY_SCR
, pscr
);
1540 bmcr
= mii_read (dev
, phy_addr
, MII_BMCR
);
1542 mii_write (dev
, phy_addr
, MII_BMCR
, bmcr
);
1545 bmcr
= 0x1940; /* must be 0x1940 */
1546 mii_write (dev
, phy_addr
, MII_BMCR
, bmcr
);
1547 mdelay (100); /* wait a certain time */
1549 /* 4) Advertise nothing */
1550 mii_write (dev
, phy_addr
, MII_ADVERTISE
, 0);
1552 /* 5) Set media and Power Up */
1554 if (np
->speed
== 100) {
1555 bmcr
|= BMCR_SPEED100
;
1556 printk (KERN_INFO
"Manual 100 Mbps, ");
1557 } else if (np
->speed
== 10) {
1558 printk (KERN_INFO
"Manual 10 Mbps, ");
1560 if (np
->full_duplex
) {
1561 bmcr
|= BMCR_FULLDPLX
;
1562 printk (KERN_CONT
"Full duplex\n");
1564 printk (KERN_CONT
"Half duplex\n");
1567 /* Set 1000BaseT Master/Slave setting */
1568 mscr
= mii_read (dev
, phy_addr
, MII_CTRL1000
);
1569 mscr
|= MII_MSCR_CFG_ENABLE
;
1570 mscr
&= ~MII_MSCR_CFG_VALUE
= 0;
1572 mii_write (dev
, phy_addr
, MII_BMCR
, bmcr
);
1579 mii_get_media_pcs (struct net_device
*dev
)
1584 struct netdev_private
*np
;
1586 np
= netdev_priv(dev
);
1587 phy_addr
= np
->phy_addr
;
1589 bmsr
= mii_read (dev
, phy_addr
, PCS_BMSR
);
1590 if (np
->an_enable
) {
1591 if (!(bmsr
& BMSR_ANEGCOMPLETE
)) {
1592 /* Auto-Negotiation not completed */
1595 negotiate
= mii_read (dev
, phy_addr
, PCS_ANAR
) &
1596 mii_read (dev
, phy_addr
, PCS_ANLPAR
);
1598 if (negotiate
& PCS_ANAR_FULL_DUPLEX
) {
1599 printk (KERN_INFO
"Auto 1000 Mbps, Full duplex\n");
1600 np
->full_duplex
= 1;
1602 printk (KERN_INFO
"Auto 1000 Mbps, half duplex\n");
1603 np
->full_duplex
= 0;
1605 if (negotiate
& PCS_ANAR_PAUSE
) {
1608 } else if (negotiate
& PCS_ANAR_ASYMMETRIC
) {
1612 /* else tx_flow, rx_flow = user select */
1614 __u16 bmcr
= mii_read (dev
, phy_addr
, PCS_BMCR
);
1615 printk (KERN_INFO
"Operating at 1000 Mbps, ");
1616 if (bmcr
& BMCR_FULLDPLX
) {
1617 printk (KERN_CONT
"Full duplex\n");
1619 printk (KERN_CONT
"Half duplex\n");
1623 printk(KERN_INFO
"Enable Tx Flow Control\n");
1625 printk(KERN_INFO
"Disable Tx Flow Control\n");
1627 printk(KERN_INFO
"Enable Rx Flow Control\n");
1629 printk(KERN_INFO
"Disable Rx Flow Control\n");
1635 mii_set_media_pcs (struct net_device
*dev
)
1641 struct netdev_private
*np
;
1642 np
= netdev_priv(dev
);
1643 phy_addr
= np
->phy_addr
;
1645 /* Auto-Negotiation? */
1646 if (np
->an_enable
) {
1647 /* Advertise capabilities */
1648 esr
= mii_read (dev
, phy_addr
, PCS_ESR
);
1649 anar
= mii_read (dev
, phy_addr
, MII_ADVERTISE
) &
1650 ~PCS_ANAR_HALF_DUPLEX
&
1651 ~PCS_ANAR_FULL_DUPLEX
;
1652 if (esr
& (MII_ESR_1000BT_HD
| MII_ESR_1000BX_HD
))
1653 anar
|= PCS_ANAR_HALF_DUPLEX
;
1654 if (esr
& (MII_ESR_1000BT_FD
| MII_ESR_1000BX_FD
))
1655 anar
|= PCS_ANAR_FULL_DUPLEX
;
1656 anar
|= PCS_ANAR_PAUSE
| PCS_ANAR_ASYMMETRIC
;
1657 mii_write (dev
, phy_addr
, MII_ADVERTISE
, anar
);
1659 /* Soft reset PHY */
1660 mii_write (dev
, phy_addr
, MII_BMCR
, BMCR_RESET
);
1661 bmcr
= BMCR_ANENABLE
| BMCR_ANRESTART
| BMCR_RESET
;
1662 mii_write (dev
, phy_addr
, MII_BMCR
, bmcr
);
1665 /* Force speed setting */
1668 mii_write (dev
, phy_addr
, MII_BMCR
, bmcr
);
1670 if (np
->full_duplex
) {
1671 bmcr
= BMCR_FULLDPLX
;
1672 printk (KERN_INFO
"Manual full duplex\n");
1675 printk (KERN_INFO
"Manual half duplex\n");
1677 mii_write (dev
, phy_addr
, MII_BMCR
, bmcr
);
1680 /* Advertise nothing */
1681 mii_write (dev
, phy_addr
, MII_ADVERTISE
, 0);
1688 rio_close (struct net_device
*dev
)
1690 long ioaddr
= dev
->base_addr
;
1691 struct netdev_private
*np
= netdev_priv(dev
);
1692 struct sk_buff
*skb
;
1695 netif_stop_queue (dev
);
1697 /* Disable interrupts */
1698 writew (0, ioaddr
+ IntEnable
);
1700 /* Stop Tx and Rx logics */
1701 writel (TxDisable
| RxDisable
| StatsDisable
, ioaddr
+ MACCtrl
);
1703 free_irq (dev
->irq
, dev
);
1704 del_timer_sync (&np
->timer
);
1706 /* Free all the skbuffs in the queue. */
1707 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
1708 skb
= np
->rx_skbuff
[i
];
1710 pci_unmap_single(np
->pdev
,
1711 desc_to_dma(&np
->rx_ring
[i
]),
1712 skb
->len
, PCI_DMA_FROMDEVICE
);
1713 dev_kfree_skb (skb
);
1714 np
->rx_skbuff
[i
] = NULL
;
1716 np
->rx_ring
[i
].status
= 0;
1717 np
->rx_ring
[i
].fraginfo
= 0;
1719 for (i
= 0; i
< TX_RING_SIZE
; i
++) {
1720 skb
= np
->tx_skbuff
[i
];
1722 pci_unmap_single(np
->pdev
,
1723 desc_to_dma(&np
->tx_ring
[i
]),
1724 skb
->len
, PCI_DMA_TODEVICE
);
1725 dev_kfree_skb (skb
);
1726 np
->tx_skbuff
[i
] = NULL
;
1733 static void __devexit
1734 rio_remove1 (struct pci_dev
*pdev
)
1736 struct net_device
*dev
= pci_get_drvdata (pdev
);
1739 struct netdev_private
*np
= netdev_priv(dev
);
1741 unregister_netdev (dev
);
1742 pci_free_consistent (pdev
, RX_TOTAL_SIZE
, np
->rx_ring
,
1744 pci_free_consistent (pdev
, TX_TOTAL_SIZE
, np
->tx_ring
,
1747 iounmap ((char *) (dev
->base_addr
));
1750 pci_release_regions (pdev
);
1751 pci_disable_device (pdev
);
1753 pci_set_drvdata (pdev
, NULL
);
1756 static struct pci_driver rio_driver
= {
1758 .id_table
= rio_pci_tbl
,
1759 .probe
= rio_probe1
,
1760 .remove
= __devexit_p(rio_remove1
),
1766 return pci_register_driver(&rio_driver
);
1772 pci_unregister_driver (&rio_driver
);
1775 module_init (rio_init
);
1776 module_exit (rio_exit
);
1782 gcc -D__KERNEL__ -DMODULE -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -c dl2k.c
1784 Read Documentation/networking/dl2k.txt for details.