2 * Copyright (c) 2005 Ammasso, Inc. All rights reserved.
3 * Copyright (c) 2005 Open Grid Computing, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <linux/module.h>
34 #include <linux/moduleparam.h>
35 #include <linux/pci.h>
36 #include <linux/netdevice.h>
37 #include <linux/etherdevice.h>
38 #include <linux/inetdevice.h>
39 #include <linux/delay.h>
40 #include <linux/ethtool.h>
41 #include <linux/mii.h>
42 #include <linux/if_vlan.h>
43 #include <linux/crc32.h>
46 #include <linux/tcp.h>
47 #include <linux/init.h>
48 #include <linux/dma-mapping.h>
52 #include <asm/byteorder.h>
54 #include <rdma/ib_smi.h>
56 #include "c2_provider.h"
58 MODULE_AUTHOR("Tom Tucker <tom@opengridcomputing.com>");
59 MODULE_DESCRIPTION("Ammasso AMSO1100 Low-level iWARP Driver");
60 MODULE_LICENSE("Dual BSD/GPL");
61 MODULE_VERSION(DRV_VERSION
);
63 static const u32 default_msg
= NETIF_MSG_DRV
| NETIF_MSG_PROBE
| NETIF_MSG_LINK
64 | NETIF_MSG_IFUP
| NETIF_MSG_IFDOWN
;
66 static int debug
= -1; /* defaults above */
67 module_param(debug
, int, 0);
68 MODULE_PARM_DESC(debug
, "Debug level (0=none,...,16=all)");
70 static int c2_up(struct net_device
*netdev
);
71 static int c2_down(struct net_device
*netdev
);
72 static int c2_xmit_frame(struct sk_buff
*skb
, struct net_device
*netdev
);
73 static void c2_tx_interrupt(struct net_device
*netdev
);
74 static void c2_rx_interrupt(struct net_device
*netdev
);
75 static irqreturn_t
c2_interrupt(int irq
, void *dev_id
);
76 static void c2_tx_timeout(struct net_device
*netdev
);
77 static int c2_change_mtu(struct net_device
*netdev
, int new_mtu
);
78 static void c2_reset(struct c2_port
*c2_port
);
80 static struct pci_device_id c2_pci_table
[] = {
81 { PCI_DEVICE(0x18b8, 0xb001) },
85 MODULE_DEVICE_TABLE(pci
, c2_pci_table
);
87 static void c2_print_macaddr(struct net_device
*netdev
)
89 pr_debug("%s: MAC %pM, IRQ %u\n", netdev
->name
, netdev
->dev_addr
, netdev
->irq
);
92 static void c2_set_rxbufsize(struct c2_port
*c2_port
)
94 struct net_device
*netdev
= c2_port
->netdev
;
96 if (netdev
->mtu
> RX_BUF_SIZE
)
97 c2_port
->rx_buf_size
=
98 netdev
->mtu
+ ETH_HLEN
+ sizeof(struct c2_rxp_hdr
) +
101 c2_port
->rx_buf_size
= sizeof(struct c2_rxp_hdr
) + RX_BUF_SIZE
;
105 * Allocate TX ring elements and chain them together.
106 * One-to-one association of adapter descriptors with ring elements.
108 static int c2_tx_ring_alloc(struct c2_ring
*tx_ring
, void *vaddr
,
109 dma_addr_t base
, void __iomem
* mmio_txp_ring
)
111 struct c2_tx_desc
*tx_desc
;
112 struct c2_txp_desc __iomem
*txp_desc
;
113 struct c2_element
*elem
;
116 tx_ring
->start
= kmalloc(sizeof(*elem
) * tx_ring
->count
, GFP_KERNEL
);
120 elem
= tx_ring
->start
;
122 txp_desc
= mmio_txp_ring
;
123 for (i
= 0; i
< tx_ring
->count
; i
++, elem
++, tx_desc
++, txp_desc
++) {
127 /* Set TXP_HTXD_UNINIT */
128 __raw_writeq((__force u64
) cpu_to_be64(0x1122334455667788ULL
),
129 (void __iomem
*) txp_desc
+ C2_TXP_ADDR
);
130 __raw_writew(0, (void __iomem
*) txp_desc
+ C2_TXP_LEN
);
131 __raw_writew((__force u16
) cpu_to_be16(TXP_HTXD_UNINIT
),
132 (void __iomem
*) txp_desc
+ C2_TXP_FLAGS
);
135 elem
->ht_desc
= tx_desc
;
136 elem
->hw_desc
= txp_desc
;
138 if (i
== tx_ring
->count
- 1) {
139 elem
->next
= tx_ring
->start
;
140 tx_desc
->next_offset
= base
;
142 elem
->next
= elem
+ 1;
143 tx_desc
->next_offset
=
144 base
+ (i
+ 1) * sizeof(*tx_desc
);
148 tx_ring
->to_use
= tx_ring
->to_clean
= tx_ring
->start
;
154 * Allocate RX ring elements and chain them together.
155 * One-to-one association of adapter descriptors with ring elements.
157 static int c2_rx_ring_alloc(struct c2_ring
*rx_ring
, void *vaddr
,
158 dma_addr_t base
, void __iomem
* mmio_rxp_ring
)
160 struct c2_rx_desc
*rx_desc
;
161 struct c2_rxp_desc __iomem
*rxp_desc
;
162 struct c2_element
*elem
;
165 rx_ring
->start
= kmalloc(sizeof(*elem
) * rx_ring
->count
, GFP_KERNEL
);
169 elem
= rx_ring
->start
;
171 rxp_desc
= mmio_rxp_ring
;
172 for (i
= 0; i
< rx_ring
->count
; i
++, elem
++, rx_desc
++, rxp_desc
++) {
176 /* Set RXP_HRXD_UNINIT */
177 __raw_writew((__force u16
) cpu_to_be16(RXP_HRXD_OK
),
178 (void __iomem
*) rxp_desc
+ C2_RXP_STATUS
);
179 __raw_writew(0, (void __iomem
*) rxp_desc
+ C2_RXP_COUNT
);
180 __raw_writew(0, (void __iomem
*) rxp_desc
+ C2_RXP_LEN
);
181 __raw_writeq((__force u64
) cpu_to_be64(0x99aabbccddeeffULL
),
182 (void __iomem
*) rxp_desc
+ C2_RXP_ADDR
);
183 __raw_writew((__force u16
) cpu_to_be16(RXP_HRXD_UNINIT
),
184 (void __iomem
*) rxp_desc
+ C2_RXP_FLAGS
);
187 elem
->ht_desc
= rx_desc
;
188 elem
->hw_desc
= rxp_desc
;
190 if (i
== rx_ring
->count
- 1) {
191 elem
->next
= rx_ring
->start
;
192 rx_desc
->next_offset
= base
;
194 elem
->next
= elem
+ 1;
195 rx_desc
->next_offset
=
196 base
+ (i
+ 1) * sizeof(*rx_desc
);
200 rx_ring
->to_use
= rx_ring
->to_clean
= rx_ring
->start
;
205 /* Setup buffer for receiving */
206 static inline int c2_rx_alloc(struct c2_port
*c2_port
, struct c2_element
*elem
)
208 struct c2_dev
*c2dev
= c2_port
->c2dev
;
209 struct c2_rx_desc
*rx_desc
= elem
->ht_desc
;
213 struct c2_rxp_hdr
*rxp_hdr
;
215 skb
= dev_alloc_skb(c2_port
->rx_buf_size
);
216 if (unlikely(!skb
)) {
217 pr_debug("%s: out of memory for receive\n",
218 c2_port
->netdev
->name
);
222 /* Zero out the rxp hdr in the sk_buff */
223 memset(skb
->data
, 0, sizeof(*rxp_hdr
));
225 skb
->dev
= c2_port
->netdev
;
227 maplen
= c2_port
->rx_buf_size
;
229 pci_map_single(c2dev
->pcidev
, skb
->data
, maplen
,
232 /* Set the sk_buff RXP_header to RXP_HRXD_READY */
233 rxp_hdr
= (struct c2_rxp_hdr
*) skb
->data
;
234 rxp_hdr
->flags
= RXP_HRXD_READY
;
236 __raw_writew(0, elem
->hw_desc
+ C2_RXP_STATUS
);
237 __raw_writew((__force u16
) cpu_to_be16((u16
) maplen
- sizeof(*rxp_hdr
)),
238 elem
->hw_desc
+ C2_RXP_LEN
);
239 __raw_writeq((__force u64
) cpu_to_be64(mapaddr
), elem
->hw_desc
+ C2_RXP_ADDR
);
240 __raw_writew((__force u16
) cpu_to_be16(RXP_HRXD_READY
),
241 elem
->hw_desc
+ C2_RXP_FLAGS
);
244 elem
->mapaddr
= mapaddr
;
245 elem
->maplen
= maplen
;
246 rx_desc
->len
= maplen
;
252 * Allocate buffers for the Rx ring
253 * For receive: rx_ring.to_clean is next received frame
255 static int c2_rx_fill(struct c2_port
*c2_port
)
257 struct c2_ring
*rx_ring
= &c2_port
->rx_ring
;
258 struct c2_element
*elem
;
261 elem
= rx_ring
->start
;
263 if (c2_rx_alloc(c2_port
, elem
)) {
267 } while ((elem
= elem
->next
) != rx_ring
->start
);
269 rx_ring
->to_clean
= rx_ring
->start
;
273 /* Free all buffers in RX ring, assumes receiver stopped */
274 static void c2_rx_clean(struct c2_port
*c2_port
)
276 struct c2_dev
*c2dev
= c2_port
->c2dev
;
277 struct c2_ring
*rx_ring
= &c2_port
->rx_ring
;
278 struct c2_element
*elem
;
279 struct c2_rx_desc
*rx_desc
;
281 elem
= rx_ring
->start
;
283 rx_desc
= elem
->ht_desc
;
286 __raw_writew(0, elem
->hw_desc
+ C2_RXP_STATUS
);
287 __raw_writew(0, elem
->hw_desc
+ C2_RXP_COUNT
);
288 __raw_writew(0, elem
->hw_desc
+ C2_RXP_LEN
);
289 __raw_writeq((__force u64
) cpu_to_be64(0x99aabbccddeeffULL
),
290 elem
->hw_desc
+ C2_RXP_ADDR
);
291 __raw_writew((__force u16
) cpu_to_be16(RXP_HRXD_UNINIT
),
292 elem
->hw_desc
+ C2_RXP_FLAGS
);
295 pci_unmap_single(c2dev
->pcidev
, elem
->mapaddr
,
296 elem
->maplen
, PCI_DMA_FROMDEVICE
);
297 dev_kfree_skb(elem
->skb
);
300 } while ((elem
= elem
->next
) != rx_ring
->start
);
303 static inline int c2_tx_free(struct c2_dev
*c2dev
, struct c2_element
*elem
)
305 struct c2_tx_desc
*tx_desc
= elem
->ht_desc
;
309 pci_unmap_single(c2dev
->pcidev
, elem
->mapaddr
, elem
->maplen
,
313 dev_kfree_skb_any(elem
->skb
);
320 /* Free all buffers in TX ring, assumes transmitter stopped */
321 static void c2_tx_clean(struct c2_port
*c2_port
)
323 struct c2_ring
*tx_ring
= &c2_port
->tx_ring
;
324 struct c2_element
*elem
;
325 struct c2_txp_desc txp_htxd
;
329 spin_lock_irqsave(&c2_port
->tx_lock
, flags
);
331 elem
= tx_ring
->start
;
337 readw(elem
->hw_desc
+ C2_TXP_FLAGS
);
339 if (txp_htxd
.flags
== TXP_HTXD_READY
) {
342 elem
->hw_desc
+ C2_TXP_LEN
);
344 elem
->hw_desc
+ C2_TXP_ADDR
);
345 __raw_writew((__force u16
) cpu_to_be16(TXP_HTXD_DONE
),
346 elem
->hw_desc
+ C2_TXP_FLAGS
);
347 c2_port
->netdev
->stats
.tx_dropped
++;
351 elem
->hw_desc
+ C2_TXP_LEN
);
352 __raw_writeq((__force u64
) cpu_to_be64(0x1122334455667788ULL
),
353 elem
->hw_desc
+ C2_TXP_ADDR
);
354 __raw_writew((__force u16
) cpu_to_be16(TXP_HTXD_UNINIT
),
355 elem
->hw_desc
+ C2_TXP_FLAGS
);
358 c2_tx_free(c2_port
->c2dev
, elem
);
360 } while ((elem
= elem
->next
) != tx_ring
->start
);
363 c2_port
->tx_avail
= c2_port
->tx_ring
.count
- 1;
364 c2_port
->c2dev
->cur_tx
= tx_ring
->to_use
- tx_ring
->start
;
366 if (c2_port
->tx_avail
> MAX_SKB_FRAGS
+ 1)
367 netif_wake_queue(c2_port
->netdev
);
369 spin_unlock_irqrestore(&c2_port
->tx_lock
, flags
);
373 * Process transmit descriptors marked 'DONE' by the firmware,
374 * freeing up their unneeded sk_buffs.
376 static void c2_tx_interrupt(struct net_device
*netdev
)
378 struct c2_port
*c2_port
= netdev_priv(netdev
);
379 struct c2_dev
*c2dev
= c2_port
->c2dev
;
380 struct c2_ring
*tx_ring
= &c2_port
->tx_ring
;
381 struct c2_element
*elem
;
382 struct c2_txp_desc txp_htxd
;
384 spin_lock(&c2_port
->tx_lock
);
386 for (elem
= tx_ring
->to_clean
; elem
!= tx_ring
->to_use
;
389 be16_to_cpu((__force __be16
) readw(elem
->hw_desc
+ C2_TXP_FLAGS
));
391 if (txp_htxd
.flags
!= TXP_HTXD_DONE
)
394 if (netif_msg_tx_done(c2_port
)) {
395 /* PCI reads are expensive in fast path */
397 be16_to_cpu((__force __be16
) readw(elem
->hw_desc
+ C2_TXP_LEN
));
398 pr_debug("%s: tx done slot %3Zu status 0x%x len "
400 netdev
->name
, elem
- tx_ring
->start
,
401 txp_htxd
.flags
, txp_htxd
.len
);
404 c2_tx_free(c2dev
, elem
);
405 ++(c2_port
->tx_avail
);
408 tx_ring
->to_clean
= elem
;
410 if (netif_queue_stopped(netdev
)
411 && c2_port
->tx_avail
> MAX_SKB_FRAGS
+ 1)
412 netif_wake_queue(netdev
);
414 spin_unlock(&c2_port
->tx_lock
);
417 static void c2_rx_error(struct c2_port
*c2_port
, struct c2_element
*elem
)
419 struct c2_rx_desc
*rx_desc
= elem
->ht_desc
;
420 struct c2_rxp_hdr
*rxp_hdr
= (struct c2_rxp_hdr
*) elem
->skb
->data
;
422 if (rxp_hdr
->status
!= RXP_HRXD_OK
||
423 rxp_hdr
->len
> (rx_desc
->len
- sizeof(*rxp_hdr
))) {
424 pr_debug("BAD RXP_HRXD\n");
425 pr_debug(" rx_desc : %p\n", rx_desc
);
426 pr_debug(" index : %Zu\n",
427 elem
- c2_port
->rx_ring
.start
);
428 pr_debug(" len : %u\n", rx_desc
->len
);
429 pr_debug(" rxp_hdr : %p [PA %p]\n", rxp_hdr
,
430 (void *) __pa((unsigned long) rxp_hdr
));
431 pr_debug(" flags : 0x%x\n", rxp_hdr
->flags
);
432 pr_debug(" status: 0x%x\n", rxp_hdr
->status
);
433 pr_debug(" len : %u\n", rxp_hdr
->len
);
434 pr_debug(" rsvd : 0x%x\n", rxp_hdr
->rsvd
);
437 /* Setup the skb for reuse since we're dropping this pkt */
438 elem
->skb
->data
= elem
->skb
->head
;
439 skb_reset_tail_pointer(elem
->skb
);
441 /* Zero out the rxp hdr in the sk_buff */
442 memset(elem
->skb
->data
, 0, sizeof(*rxp_hdr
));
444 /* Write the descriptor to the adapter's rx ring */
445 __raw_writew(0, elem
->hw_desc
+ C2_RXP_STATUS
);
446 __raw_writew(0, elem
->hw_desc
+ C2_RXP_COUNT
);
447 __raw_writew((__force u16
) cpu_to_be16((u16
) elem
->maplen
- sizeof(*rxp_hdr
)),
448 elem
->hw_desc
+ C2_RXP_LEN
);
449 __raw_writeq((__force u64
) cpu_to_be64(elem
->mapaddr
),
450 elem
->hw_desc
+ C2_RXP_ADDR
);
451 __raw_writew((__force u16
) cpu_to_be16(RXP_HRXD_READY
),
452 elem
->hw_desc
+ C2_RXP_FLAGS
);
454 pr_debug("packet dropped\n");
455 c2_port
->netdev
->stats
.rx_dropped
++;
458 static void c2_rx_interrupt(struct net_device
*netdev
)
460 struct c2_port
*c2_port
= netdev_priv(netdev
);
461 struct c2_dev
*c2dev
= c2_port
->c2dev
;
462 struct c2_ring
*rx_ring
= &c2_port
->rx_ring
;
463 struct c2_element
*elem
;
464 struct c2_rx_desc
*rx_desc
;
465 struct c2_rxp_hdr
*rxp_hdr
;
471 spin_lock_irqsave(&c2dev
->lock
, flags
);
473 /* Begin where we left off */
474 rx_ring
->to_clean
= rx_ring
->start
+ c2dev
->cur_rx
;
476 for (elem
= rx_ring
->to_clean
; elem
->next
!= rx_ring
->to_clean
;
478 rx_desc
= elem
->ht_desc
;
479 mapaddr
= elem
->mapaddr
;
480 maplen
= elem
->maplen
;
482 rxp_hdr
= (struct c2_rxp_hdr
*) skb
->data
;
484 if (rxp_hdr
->flags
!= RXP_HRXD_DONE
)
486 buflen
= rxp_hdr
->len
;
488 /* Sanity check the RXP header */
489 if (rxp_hdr
->status
!= RXP_HRXD_OK
||
490 buflen
> (rx_desc
->len
- sizeof(*rxp_hdr
))) {
491 c2_rx_error(c2_port
, elem
);
496 * Allocate and map a new skb for replenishing the host
499 if (c2_rx_alloc(c2_port
, elem
)) {
500 c2_rx_error(c2_port
, elem
);
504 /* Unmap the old skb */
505 pci_unmap_single(c2dev
->pcidev
, mapaddr
, maplen
,
511 * Skip past the leading 8 bytes comprising of the
512 * "struct c2_rxp_hdr", prepended by the adapter
513 * to the usual Ethernet header ("struct ethhdr"),
514 * to the start of the raw Ethernet packet.
516 * Fix up the various fields in the sk_buff before
517 * passing it up to netif_rx(). The transfer size
518 * (in bytes) specified by the adapter len field of
519 * the "struct rxp_hdr_t" does NOT include the
520 * "sizeof(struct c2_rxp_hdr)".
522 skb
->data
+= sizeof(*rxp_hdr
);
523 skb_set_tail_pointer(skb
, buflen
);
525 skb
->protocol
= eth_type_trans(skb
, netdev
);
529 netdev
->stats
.rx_packets
++;
530 netdev
->stats
.rx_bytes
+= buflen
;
533 /* Save where we left off */
534 rx_ring
->to_clean
= elem
;
535 c2dev
->cur_rx
= elem
- rx_ring
->start
;
536 C2_SET_CUR_RX(c2dev
, c2dev
->cur_rx
);
538 spin_unlock_irqrestore(&c2dev
->lock
, flags
);
542 * Handle netisr0 TX & RX interrupts.
544 static irqreturn_t
c2_interrupt(int irq
, void *dev_id
)
546 unsigned int netisr0
, dmaisr
;
548 struct c2_dev
*c2dev
= (struct c2_dev
*) dev_id
;
550 /* Process CCILNET interrupts */
551 netisr0
= readl(c2dev
->regs
+ C2_NISR0
);
555 * There is an issue with the firmware that always
556 * provides the status of RX for both TX & RX
557 * interrupts. So process both queues here.
559 c2_rx_interrupt(c2dev
->netdev
);
560 c2_tx_interrupt(c2dev
->netdev
);
562 /* Clear the interrupt */
563 writel(netisr0
, c2dev
->regs
+ C2_NISR0
);
567 /* Process RNIC interrupts */
568 dmaisr
= readl(c2dev
->regs
+ C2_DISR
);
570 writel(dmaisr
, c2dev
->regs
+ C2_DISR
);
571 c2_rnic_interrupt(c2dev
);
582 static int c2_up(struct net_device
*netdev
)
584 struct c2_port
*c2_port
= netdev_priv(netdev
);
585 struct c2_dev
*c2dev
= c2_port
->c2dev
;
586 struct c2_element
*elem
;
587 struct c2_rxp_hdr
*rxp_hdr
;
588 struct in_device
*in_dev
;
589 size_t rx_size
, tx_size
;
591 unsigned int netimr0
;
593 if (netif_msg_ifup(c2_port
))
594 pr_debug("%s: enabling interface\n", netdev
->name
);
596 /* Set the Rx buffer size based on MTU */
597 c2_set_rxbufsize(c2_port
);
599 /* Allocate DMA'able memory for Tx/Rx host descriptor rings */
600 rx_size
= c2_port
->rx_ring
.count
* sizeof(struct c2_rx_desc
);
601 tx_size
= c2_port
->tx_ring
.count
* sizeof(struct c2_tx_desc
);
603 c2_port
->mem_size
= tx_size
+ rx_size
;
604 c2_port
->mem
= pci_alloc_consistent(c2dev
->pcidev
, c2_port
->mem_size
,
606 if (c2_port
->mem
== NULL
) {
607 pr_debug("Unable to allocate memory for "
608 "host descriptor rings\n");
612 memset(c2_port
->mem
, 0, c2_port
->mem_size
);
614 /* Create the Rx host descriptor ring */
616 c2_rx_ring_alloc(&c2_port
->rx_ring
, c2_port
->mem
, c2_port
->dma
,
617 c2dev
->mmio_rxp_ring
))) {
618 pr_debug("Unable to create RX ring\n");
622 /* Allocate Rx buffers for the host descriptor ring */
623 if (c2_rx_fill(c2_port
)) {
624 pr_debug("Unable to fill RX ring\n");
628 /* Create the Tx host descriptor ring */
629 if ((ret
= c2_tx_ring_alloc(&c2_port
->tx_ring
, c2_port
->mem
+ rx_size
,
630 c2_port
->dma
+ rx_size
,
631 c2dev
->mmio_txp_ring
))) {
632 pr_debug("Unable to create TX ring\n");
636 /* Set the TX pointer to where we left off */
637 c2_port
->tx_avail
= c2_port
->tx_ring
.count
- 1;
638 c2_port
->tx_ring
.to_use
= c2_port
->tx_ring
.to_clean
=
639 c2_port
->tx_ring
.start
+ c2dev
->cur_tx
;
641 /* missing: Initialize MAC */
643 BUG_ON(c2_port
->tx_ring
.to_use
!= c2_port
->tx_ring
.to_clean
);
645 /* Reset the adapter, ensures the driver is in sync with the RXP */
648 /* Reset the READY bit in the sk_buff RXP headers & adapter HRXDQ */
649 for (i
= 0, elem
= c2_port
->rx_ring
.start
; i
< c2_port
->rx_ring
.count
;
651 rxp_hdr
= (struct c2_rxp_hdr
*) elem
->skb
->data
;
653 __raw_writew((__force u16
) cpu_to_be16(RXP_HRXD_READY
),
654 elem
->hw_desc
+ C2_RXP_FLAGS
);
657 /* Enable network packets */
658 netif_start_queue(netdev
);
661 writel(0, c2dev
->regs
+ C2_IDIS
);
662 netimr0
= readl(c2dev
->regs
+ C2_NIMR0
);
663 netimr0
&= ~(C2_PCI_HTX_INT
| C2_PCI_HRX_INT
);
664 writel(netimr0
, c2dev
->regs
+ C2_NIMR0
);
666 /* Tell the stack to ignore arp requests for ipaddrs bound to
667 * other interfaces. This is needed to prevent the host stack
668 * from responding to arp requests to the ipaddr bound on the
671 in_dev
= in_dev_get(netdev
);
672 IN_DEV_CONF_SET(in_dev
, ARP_IGNORE
, 1);
678 c2_rx_clean(c2_port
);
679 kfree(c2_port
->rx_ring
.start
);
682 pci_free_consistent(c2dev
->pcidev
, c2_port
->mem_size
, c2_port
->mem
,
688 static int c2_down(struct net_device
*netdev
)
690 struct c2_port
*c2_port
= netdev_priv(netdev
);
691 struct c2_dev
*c2dev
= c2_port
->c2dev
;
693 if (netif_msg_ifdown(c2_port
))
694 pr_debug("%s: disabling interface\n",
697 /* Wait for all the queued packets to get sent */
698 c2_tx_interrupt(netdev
);
700 /* Disable network packets */
701 netif_stop_queue(netdev
);
703 /* Disable IRQs by clearing the interrupt mask */
704 writel(1, c2dev
->regs
+ C2_IDIS
);
705 writel(0, c2dev
->regs
+ C2_NIMR0
);
707 /* missing: Stop transmitter */
709 /* missing: Stop receiver */
711 /* Reset the adapter, ensures the driver is in sync with the RXP */
714 /* missing: Turn off LEDs here */
716 /* Free all buffers in the host descriptor rings */
717 c2_tx_clean(c2_port
);
718 c2_rx_clean(c2_port
);
720 /* Free the host descriptor rings */
721 kfree(c2_port
->rx_ring
.start
);
722 kfree(c2_port
->tx_ring
.start
);
723 pci_free_consistent(c2dev
->pcidev
, c2_port
->mem_size
, c2_port
->mem
,
729 static void c2_reset(struct c2_port
*c2_port
)
731 struct c2_dev
*c2dev
= c2_port
->c2dev
;
732 unsigned int cur_rx
= c2dev
->cur_rx
;
734 /* Tell the hardware to quiesce */
735 C2_SET_CUR_RX(c2dev
, cur_rx
| C2_PCI_HRX_QUI
);
738 * The hardware will reset the C2_PCI_HRX_QUI bit once
739 * the RXP is quiesced. Wait 2 seconds for this.
743 cur_rx
= C2_GET_CUR_RX(c2dev
);
745 if (cur_rx
& C2_PCI_HRX_QUI
)
746 pr_debug("c2_reset: failed to quiesce the hardware!\n");
748 cur_rx
&= ~C2_PCI_HRX_QUI
;
750 c2dev
->cur_rx
= cur_rx
;
752 pr_debug("Current RX: %u\n", c2dev
->cur_rx
);
755 static int c2_xmit_frame(struct sk_buff
*skb
, struct net_device
*netdev
)
757 struct c2_port
*c2_port
= netdev_priv(netdev
);
758 struct c2_dev
*c2dev
= c2_port
->c2dev
;
759 struct c2_ring
*tx_ring
= &c2_port
->tx_ring
;
760 struct c2_element
*elem
;
766 spin_lock_irqsave(&c2_port
->tx_lock
, flags
);
768 if (unlikely(c2_port
->tx_avail
< (skb_shinfo(skb
)->nr_frags
+ 1))) {
769 netif_stop_queue(netdev
);
770 spin_unlock_irqrestore(&c2_port
->tx_lock
, flags
);
772 pr_debug("%s: Tx ring full when queue awake!\n",
774 return NETDEV_TX_BUSY
;
777 maplen
= skb_headlen(skb
);
779 pci_map_single(c2dev
->pcidev
, skb
->data
, maplen
, PCI_DMA_TODEVICE
);
781 elem
= tx_ring
->to_use
;
783 elem
->mapaddr
= mapaddr
;
784 elem
->maplen
= maplen
;
786 /* Tell HW to xmit */
787 __raw_writeq((__force u64
) cpu_to_be64(mapaddr
),
788 elem
->hw_desc
+ C2_TXP_ADDR
);
789 __raw_writew((__force u16
) cpu_to_be16(maplen
),
790 elem
->hw_desc
+ C2_TXP_LEN
);
791 __raw_writew((__force u16
) cpu_to_be16(TXP_HTXD_READY
),
792 elem
->hw_desc
+ C2_TXP_FLAGS
);
794 netdev
->stats
.tx_packets
++;
795 netdev
->stats
.tx_bytes
+= maplen
;
797 /* Loop thru additional data fragments and queue them */
798 if (skb_shinfo(skb
)->nr_frags
) {
799 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
800 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
803 pci_map_page(c2dev
->pcidev
, frag
->page
,
804 frag
->page_offset
, maplen
,
809 elem
->mapaddr
= mapaddr
;
810 elem
->maplen
= maplen
;
812 /* Tell HW to xmit */
813 __raw_writeq((__force u64
) cpu_to_be64(mapaddr
),
814 elem
->hw_desc
+ C2_TXP_ADDR
);
815 __raw_writew((__force u16
) cpu_to_be16(maplen
),
816 elem
->hw_desc
+ C2_TXP_LEN
);
817 __raw_writew((__force u16
) cpu_to_be16(TXP_HTXD_READY
),
818 elem
->hw_desc
+ C2_TXP_FLAGS
);
820 netdev
->stats
.tx_packets
++;
821 netdev
->stats
.tx_bytes
+= maplen
;
825 tx_ring
->to_use
= elem
->next
;
826 c2_port
->tx_avail
-= (skb_shinfo(skb
)->nr_frags
+ 1);
828 if (c2_port
->tx_avail
<= MAX_SKB_FRAGS
+ 1) {
829 netif_stop_queue(netdev
);
830 if (netif_msg_tx_queued(c2_port
))
831 pr_debug("%s: transmit queue full\n",
835 spin_unlock_irqrestore(&c2_port
->tx_lock
, flags
);
837 netdev
->trans_start
= jiffies
;
842 static void c2_tx_timeout(struct net_device
*netdev
)
844 struct c2_port
*c2_port
= netdev_priv(netdev
);
846 if (netif_msg_timer(c2_port
))
847 pr_debug("%s: tx timeout\n", netdev
->name
);
849 c2_tx_clean(c2_port
);
852 static int c2_change_mtu(struct net_device
*netdev
, int new_mtu
)
856 if (new_mtu
< ETH_ZLEN
|| new_mtu
> ETH_JUMBO_MTU
)
859 netdev
->mtu
= new_mtu
;
861 if (netif_running(netdev
)) {
870 static const struct net_device_ops c2_netdev
= {
873 .ndo_start_xmit
= c2_xmit_frame
,
874 .ndo_tx_timeout
= c2_tx_timeout
,
875 .ndo_change_mtu
= c2_change_mtu
,
876 .ndo_set_mac_address
= eth_mac_addr
,
877 .ndo_validate_addr
= eth_validate_addr
,
880 /* Initialize network device */
881 static struct net_device
*c2_devinit(struct c2_dev
*c2dev
,
882 void __iomem
* mmio_addr
)
884 struct c2_port
*c2_port
= NULL
;
885 struct net_device
*netdev
= alloc_etherdev(sizeof(*c2_port
));
888 pr_debug("c2_port etherdev alloc failed");
892 SET_NETDEV_DEV(netdev
, &c2dev
->pcidev
->dev
);
894 netdev
->netdev_ops
= &c2_netdev
;
895 netdev
->watchdog_timeo
= C2_TX_TIMEOUT
;
896 netdev
->irq
= c2dev
->pcidev
->irq
;
898 c2_port
= netdev_priv(netdev
);
899 c2_port
->netdev
= netdev
;
900 c2_port
->c2dev
= c2dev
;
901 c2_port
->msg_enable
= netif_msg_init(debug
, default_msg
);
902 c2_port
->tx_ring
.count
= C2_NUM_TX_DESC
;
903 c2_port
->rx_ring
.count
= C2_NUM_RX_DESC
;
905 spin_lock_init(&c2_port
->tx_lock
);
907 /* Copy our 48-bit ethernet hardware address */
908 memcpy_fromio(netdev
->dev_addr
, mmio_addr
+ C2_REGS_ENADDR
, 6);
910 /* Validate the MAC address */
911 if (!is_valid_ether_addr(netdev
->dev_addr
)) {
912 pr_debug("Invalid MAC Address\n");
913 c2_print_macaddr(netdev
);
918 c2dev
->netdev
= netdev
;
923 static int __devinit
c2_probe(struct pci_dev
*pcidev
,
924 const struct pci_device_id
*ent
)
927 unsigned long reg0_start
, reg0_flags
, reg0_len
;
928 unsigned long reg2_start
, reg2_flags
, reg2_len
;
929 unsigned long reg4_start
, reg4_flags
, reg4_len
;
930 unsigned kva_map_size
;
931 struct net_device
*netdev
= NULL
;
932 struct c2_dev
*c2dev
= NULL
;
933 void __iomem
*mmio_regs
= NULL
;
935 printk(KERN_INFO PFX
"AMSO1100 Gigabit Ethernet driver v%s loaded\n",
938 /* Enable PCI device */
939 ret
= pci_enable_device(pcidev
);
941 printk(KERN_ERR PFX
"%s: Unable to enable PCI device\n",
946 reg0_start
= pci_resource_start(pcidev
, BAR_0
);
947 reg0_len
= pci_resource_len(pcidev
, BAR_0
);
948 reg0_flags
= pci_resource_flags(pcidev
, BAR_0
);
950 reg2_start
= pci_resource_start(pcidev
, BAR_2
);
951 reg2_len
= pci_resource_len(pcidev
, BAR_2
);
952 reg2_flags
= pci_resource_flags(pcidev
, BAR_2
);
954 reg4_start
= pci_resource_start(pcidev
, BAR_4
);
955 reg4_len
= pci_resource_len(pcidev
, BAR_4
);
956 reg4_flags
= pci_resource_flags(pcidev
, BAR_4
);
958 pr_debug("BAR0 size = 0x%lX bytes\n", reg0_len
);
959 pr_debug("BAR2 size = 0x%lX bytes\n", reg2_len
);
960 pr_debug("BAR4 size = 0x%lX bytes\n", reg4_len
);
962 /* Make sure PCI base addr are MMIO */
963 if (!(reg0_flags
& IORESOURCE_MEM
) ||
964 !(reg2_flags
& IORESOURCE_MEM
) || !(reg4_flags
& IORESOURCE_MEM
)) {
965 printk(KERN_ERR PFX
"PCI regions not an MMIO resource\n");
970 /* Check for weird/broken PCI region reporting */
971 if ((reg0_len
< C2_REG0_SIZE
) ||
972 (reg2_len
< C2_REG2_SIZE
) || (reg4_len
< C2_REG4_SIZE
)) {
973 printk(KERN_ERR PFX
"Invalid PCI region sizes\n");
978 /* Reserve PCI I/O and memory resources */
979 ret
= pci_request_regions(pcidev
, DRV_NAME
);
981 printk(KERN_ERR PFX
"%s: Unable to request regions\n",
986 if ((sizeof(dma_addr_t
) > 4)) {
987 ret
= pci_set_dma_mask(pcidev
, DMA_BIT_MASK(64));
989 printk(KERN_ERR PFX
"64b DMA configuration failed\n");
993 ret
= pci_set_dma_mask(pcidev
, DMA_BIT_MASK(32));
995 printk(KERN_ERR PFX
"32b DMA configuration failed\n");
1000 /* Enables bus-mastering on the device */
1001 pci_set_master(pcidev
);
1003 /* Remap the adapter PCI registers in BAR4 */
1004 mmio_regs
= ioremap_nocache(reg4_start
+ C2_PCI_REGS_OFFSET
,
1005 sizeof(struct c2_adapter_pci_regs
));
1008 "Unable to remap adapter PCI registers in BAR4\n");
1013 /* Validate PCI regs magic */
1014 for (i
= 0; i
< sizeof(c2_magic
); i
++) {
1015 if (c2_magic
[i
] != readb(mmio_regs
+ C2_REGS_MAGIC
+ i
)) {
1016 printk(KERN_ERR PFX
"Downlevel Firmware boot loader "
1017 "[%d/%Zd: got 0x%x, exp 0x%x]. Use the cc_flash "
1018 "utility to update your boot loader\n",
1019 i
+ 1, sizeof(c2_magic
),
1020 readb(mmio_regs
+ C2_REGS_MAGIC
+ i
),
1022 printk(KERN_ERR PFX
"Adapter not claimed\n");
1029 /* Validate the adapter version */
1030 if (be32_to_cpu((__force __be32
) readl(mmio_regs
+ C2_REGS_VERS
)) != C2_VERSION
) {
1031 printk(KERN_ERR PFX
"Version mismatch "
1032 "[fw=%u, c2=%u], Adapter not claimed\n",
1033 be32_to_cpu((__force __be32
) readl(mmio_regs
+ C2_REGS_VERS
)),
1040 /* Validate the adapter IVN */
1041 if (be32_to_cpu((__force __be32
) readl(mmio_regs
+ C2_REGS_IVN
)) != C2_IVN
) {
1042 printk(KERN_ERR PFX
"Downlevel FIrmware level. You should be using "
1043 "the OpenIB device support kit. "
1044 "[fw=0x%x, c2=0x%x], Adapter not claimed\n",
1045 be32_to_cpu((__force __be32
) readl(mmio_regs
+ C2_REGS_IVN
)),
1052 /* Allocate hardware structure */
1053 c2dev
= (struct c2_dev
*) ib_alloc_device(sizeof(*c2dev
));
1055 printk(KERN_ERR PFX
"%s: Unable to alloc hardware struct\n",
1062 memset(c2dev
, 0, sizeof(*c2dev
));
1063 spin_lock_init(&c2dev
->lock
);
1064 c2dev
->pcidev
= pcidev
;
1067 /* Get the last RX index */
1069 (be32_to_cpu((__force __be32
) readl(mmio_regs
+ C2_REGS_HRX_CUR
)) -
1070 0xffffc000) / sizeof(struct c2_rxp_desc
);
1072 /* Request an interrupt line for the driver */
1073 ret
= request_irq(pcidev
->irq
, c2_interrupt
, IRQF_SHARED
, DRV_NAME
, c2dev
);
1075 printk(KERN_ERR PFX
"%s: requested IRQ %u is busy\n",
1076 pci_name(pcidev
), pcidev
->irq
);
1081 /* Set driver specific data */
1082 pci_set_drvdata(pcidev
, c2dev
);
1084 /* Initialize network device */
1085 if ((netdev
= c2_devinit(c2dev
, mmio_regs
)) == NULL
) {
1090 /* Save off the actual size prior to unmapping mmio_regs */
1091 kva_map_size
= be32_to_cpu((__force __be32
) readl(mmio_regs
+ C2_REGS_PCI_WINSIZE
));
1093 /* Unmap the adapter PCI registers in BAR4 */
1096 /* Register network device */
1097 ret
= register_netdev(netdev
);
1099 printk(KERN_ERR PFX
"Unable to register netdev, ret = %d\n",
1104 /* Disable network packets */
1105 netif_stop_queue(netdev
);
1107 /* Remap the adapter HRXDQ PA space to kernel VA space */
1108 c2dev
->mmio_rxp_ring
= ioremap_nocache(reg4_start
+ C2_RXP_HRXDQ_OFFSET
,
1110 if (!c2dev
->mmio_rxp_ring
) {
1111 printk(KERN_ERR PFX
"Unable to remap MMIO HRXDQ region\n");
1116 /* Remap the adapter HTXDQ PA space to kernel VA space */
1117 c2dev
->mmio_txp_ring
= ioremap_nocache(reg4_start
+ C2_TXP_HTXDQ_OFFSET
,
1119 if (!c2dev
->mmio_txp_ring
) {
1120 printk(KERN_ERR PFX
"Unable to remap MMIO HTXDQ region\n");
1125 /* Save off the current RX index in the last 4 bytes of the TXP Ring */
1126 C2_SET_CUR_RX(c2dev
, c2dev
->cur_rx
);
1128 /* Remap the PCI registers in adapter BAR0 to kernel VA space */
1129 c2dev
->regs
= ioremap_nocache(reg0_start
, reg0_len
);
1131 printk(KERN_ERR PFX
"Unable to remap BAR0\n");
1136 /* Remap the PCI registers in adapter BAR4 to kernel VA space */
1137 c2dev
->pa
= reg4_start
+ C2_PCI_REGS_OFFSET
;
1138 c2dev
->kva
= ioremap_nocache(reg4_start
+ C2_PCI_REGS_OFFSET
,
1141 printk(KERN_ERR PFX
"Unable to remap BAR4\n");
1146 /* Print out the MAC address */
1147 c2_print_macaddr(netdev
);
1149 ret
= c2_rnic_init(c2dev
);
1151 printk(KERN_ERR PFX
"c2_rnic_init failed: %d\n", ret
);
1155 if (c2_register_device(c2dev
))
1161 iounmap(c2dev
->kva
);
1164 iounmap(c2dev
->regs
);
1167 iounmap(c2dev
->mmio_txp_ring
);
1170 iounmap(c2dev
->mmio_rxp_ring
);
1173 unregister_netdev(netdev
);
1176 free_netdev(netdev
);
1179 free_irq(pcidev
->irq
, c2dev
);
1182 ib_dealloc_device(&c2dev
->ibdev
);
1185 pci_release_regions(pcidev
);
1188 pci_disable_device(pcidev
);
1194 static void __devexit
c2_remove(struct pci_dev
*pcidev
)
1196 struct c2_dev
*c2dev
= pci_get_drvdata(pcidev
);
1197 struct net_device
*netdev
= c2dev
->netdev
;
1199 /* Unregister with OpenIB */
1200 c2_unregister_device(c2dev
);
1202 /* Clean up the RNIC resources */
1203 c2_rnic_term(c2dev
);
1205 /* Remove network device from the kernel */
1206 unregister_netdev(netdev
);
1208 /* Free network device */
1209 free_netdev(netdev
);
1211 /* Free the interrupt line */
1212 free_irq(pcidev
->irq
, c2dev
);
1214 /* missing: Turn LEDs off here */
1216 /* Unmap adapter PA space */
1217 iounmap(c2dev
->kva
);
1218 iounmap(c2dev
->regs
);
1219 iounmap(c2dev
->mmio_txp_ring
);
1220 iounmap(c2dev
->mmio_rxp_ring
);
1222 /* Free the hardware structure */
1223 ib_dealloc_device(&c2dev
->ibdev
);
1225 /* Release reserved PCI I/O and memory resources */
1226 pci_release_regions(pcidev
);
1228 /* Disable PCI device */
1229 pci_disable_device(pcidev
);
1231 /* Clear driver specific data */
1232 pci_set_drvdata(pcidev
, NULL
);
1235 static struct pci_driver c2_pci_driver
= {
1237 .id_table
= c2_pci_table
,
1239 .remove
= __devexit_p(c2_remove
),
1242 static int __init
c2_init_module(void)
1244 return pci_register_driver(&c2_pci_driver
);
1247 static void __exit
c2_exit_module(void)
1249 pci_unregister_driver(&c2_pci_driver
);
1252 module_init(c2_init_module
);
1253 module_exit(c2_exit_module
);