2 * linux/drivers/message/fusion/mptlan.c
3 * IP Over Fibre Channel device driver.
4 * For use with LSI Fibre Channel PCI chip/adapters
5 * running LSI Fusion MPT (Message Passing Technology) firmware.
7 * Copyright (c) 2000-2008 LSI Corporation
8 * (mailto:DL-MPTFusionLinux@lsi.com)
11 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; version 2 of the License.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
23 THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
24 CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
25 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
26 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
27 solely responsible for determining the appropriateness of using and
28 distributing the Program and assumes all risks associated with its
29 exercise of rights under this Agreement, including but not limited to
30 the risks and costs of program errors, damage to or loss of data,
31 programs or equipment, and unavailability or interruption of operations.
33 DISCLAIMER OF LIABILITY
34 NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
35 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
37 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
38 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
39 USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
40 HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
42 You should have received a copy of the GNU General Public License
43 along with this program; if not, write to the Free Software
44 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
47 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
49 * Define statements used for debugging
51 //#define MPT_LAN_IO_DEBUG
53 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
56 #include <linux/init.h>
57 #include <linux/module.h>
59 #include <linux/sched.h>
60 #include <linux/slab.h>
62 #define my_VERSION MPT_LINUX_VERSION_COMMON
63 #define MYNAM "mptlan"
65 MODULE_LICENSE("GPL");
66 MODULE_VERSION(my_VERSION);
68 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
70 * MPT LAN message sizes without variable part.
72 #define MPT_LAN_RECEIVE_POST_REQUEST_SIZE \
73 (sizeof(LANReceivePostRequest_t) - sizeof(SGE_MPI_UNION))
76 * Fusion MPT LAN private structures
79 struct BufferControl {
87 u8 pnum; /* Port number in the IOC. This is not a Unix network port! */
89 atomic_t buckets_out; /* number of unused buckets on IOC */
90 int bucketthresh; /* Send more when this many left */
92 int *mpt_txfidx; /* Free Tx Context list */
94 spinlock_t txfidx_lock;
96 int *mpt_rxfidx; /* Free Rx Context list */
98 spinlock_t rxfidx_lock;
100 struct BufferControl *RcvCtl; /* Receive BufferControl structs */
101 struct BufferControl *SendCtl; /* Send BufferControl structs */
103 int max_buckets_out; /* Max buckets to send to IOC */
104 int tx_max_out; /* IOC's Tx queue len */
109 struct delayed_work post_buckets_task;
110 struct net_device *dev;
111 unsigned long post_buckets_active;
114 struct mpt_lan_ohdr {
121 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
126 static int lan_reply (MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf,
127 MPT_FRAME_HDR *reply);
128 static int mpt_lan_open(struct net_device *dev);
129 static int mpt_lan_reset(struct net_device *dev);
130 static int mpt_lan_close(struct net_device *dev);
131 static void mpt_lan_post_receive_buckets(struct mpt_lan_priv *priv);
132 static void mpt_lan_wake_post_buckets_task(struct net_device *dev,
134 static int mpt_lan_receive_post_turbo(struct net_device *dev, u32 tmsg);
135 static int mpt_lan_receive_post_reply(struct net_device *dev,
136 LANReceivePostReply_t *pRecvRep);
137 static int mpt_lan_send_turbo(struct net_device *dev, u32 tmsg);
138 static int mpt_lan_send_reply(struct net_device *dev,
139 LANSendReply_t *pSendRep);
140 static int mpt_lan_ioc_reset(MPT_ADAPTER *ioc, int reset_phase);
141 static int mpt_lan_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply);
142 static unsigned short mpt_lan_type_trans(struct sk_buff *skb,
143 struct net_device *dev);
145 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
147 * Fusion MPT LAN private data
149 static u8 LanCtx = MPT_MAX_PROTOCOL_DRIVERS;
151 static u32 max_buckets_out = 127;
152 static u32 tx_max_out_p = 127 - 16;
154 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
156 * lan_reply - Handle all data sent from the hardware.
157 * @ioc: Pointer to MPT_ADAPTER structure
158 * @mf: Pointer to original MPT request frame (NULL if TurboReply)
159 * @reply: Pointer to MPT reply frame
161 * Returns 1 indicating original alloc'd request frame ptr
162 * should be freed, or 0 if it shouldn't.
165 lan_reply (MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *reply)
167 struct net_device *dev = ioc->netdev;
168 int FreeReqFrame = 0;
170 dioprintk((KERN_INFO MYNAM ": %s/%s: Got reply.\n",
171 IOC_AND_NETDEV_NAMES_s_s(dev)));
173 // dioprintk((KERN_INFO MYNAM "@lan_reply: mf = %p, reply = %p\n",
177 u32 tmsg = CAST_PTR_TO_U32(reply);
179 dioprintk((KERN_INFO MYNAM ": %s/%s: @lan_reply, tmsg %08x\n",
180 IOC_AND_NETDEV_NAMES_s_s(dev),
183 switch (GET_LAN_FORM(tmsg)) {
185 // NOTE! (Optimization) First case here is now caught in
186 // mptbase.c::mpt_interrupt() routine and callcack here
187 // is now skipped for this case!
189 case LAN_REPLY_FORM_MESSAGE_CONTEXT:
190 // dioprintk((KERN_INFO MYNAM "/lan_reply: "
191 // "MessageContext turbo reply received\n"));
196 case LAN_REPLY_FORM_SEND_SINGLE:
197 // dioprintk((MYNAM "/lan_reply: "
198 // "calling mpt_lan_send_reply (turbo)\n"));
200 // Potential BUG here?
201 // FreeReqFrame = mpt_lan_send_turbo(dev, tmsg);
202 // If/when mpt_lan_send_turbo would return 1 here,
203 // calling routine (mptbase.c|mpt_interrupt)
204 // would Oops because mf has already been set
205 // to NULL. So after return from this func,
206 // mpt_interrupt() will attempt to put (NULL) mf ptr
207 // item back onto its adapter FreeQ - Oops!:-(
208 // It's Ok, since mpt_lan_send_turbo() *currently*
209 // always returns 0, but..., just in case:
211 (void) mpt_lan_send_turbo(dev, tmsg);
216 case LAN_REPLY_FORM_RECEIVE_SINGLE:
217 // dioprintk((KERN_INFO MYNAM "@lan_reply: "
218 // "rcv-Turbo = %08x\n", tmsg));
219 mpt_lan_receive_post_turbo(dev, tmsg);
223 printk (KERN_ERR MYNAM "/lan_reply: Got a turbo reply "
224 "that I don't know what to do with\n");
226 /* CHECKME! Hmmm... FreeReqFrame is 0 here; is that right? */
234 // msg = (u32 *) reply;
235 // dioprintk((KERN_INFO MYNAM "@lan_reply: msg = %08x %08x %08x %08x\n",
236 // le32_to_cpu(msg[0]), le32_to_cpu(msg[1]),
237 // le32_to_cpu(msg[2]), le32_to_cpu(msg[3])));
238 // dioprintk((KERN_INFO MYNAM "@lan_reply: Function = %02xh\n",
239 // reply->u.hdr.Function));
241 switch (reply->u.hdr.Function) {
243 case MPI_FUNCTION_LAN_SEND:
245 LANSendReply_t *pSendRep;
247 pSendRep = (LANSendReply_t *) reply;
248 FreeReqFrame = mpt_lan_send_reply(dev, pSendRep);
252 case MPI_FUNCTION_LAN_RECEIVE:
254 LANReceivePostReply_t *pRecvRep;
256 pRecvRep = (LANReceivePostReply_t *) reply;
257 if (pRecvRep->NumberOfContexts) {
258 mpt_lan_receive_post_reply(dev, pRecvRep);
259 if (!(pRecvRep->MsgFlags & MPI_MSGFLAGS_CONTINUATION_REPLY))
262 dioprintk((KERN_INFO MYNAM "@lan_reply: zero context "
263 "ReceivePostReply received.\n"));
267 case MPI_FUNCTION_LAN_RESET:
268 /* Just a default reply. Might want to check it to
269 * make sure that everything went ok.
274 case MPI_FUNCTION_EVENT_NOTIFICATION:
275 case MPI_FUNCTION_EVENT_ACK:
276 /* _EVENT_NOTIFICATION should NOT come down this path any more.
277 * Should be routed to mpt_lan_event_process(), but just in case...
283 printk (KERN_ERR MYNAM "/lan_reply: Got a non-turbo "
284 "reply that I don't know what to do with\n");
286 /* CHECKME! Hmmm... FreeReqFrame is 0 here; is that right? */
295 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
297 mpt_lan_ioc_reset(MPT_ADAPTER *ioc, int reset_phase)
299 struct net_device *dev = ioc->netdev;
300 struct mpt_lan_priv *priv;
305 priv = netdev_priv(dev);
307 dlprintk((KERN_INFO MYNAM ": IOC %s_reset routed to LAN driver!\n",
308 reset_phase==MPT_IOC_SETUP_RESET ? "setup" : (
309 reset_phase==MPT_IOC_PRE_RESET ? "pre" : "post")));
311 if (priv->mpt_rxfidx == NULL)
314 if (reset_phase == MPT_IOC_SETUP_RESET) {
316 } else if (reset_phase == MPT_IOC_PRE_RESET) {
320 netif_stop_queue(dev);
322 dlprintk ((KERN_INFO "mptlan/ioc_reset: called netif_stop_queue for %s.\n", dev->name));
324 atomic_set(&priv->buckets_out, 0);
326 /* Reset Rx Free Tail index and re-populate the queue. */
327 spin_lock_irqsave(&priv->rxfidx_lock, flags);
328 priv->mpt_rxfidx_tail = -1;
329 for (i = 0; i < priv->max_buckets_out; i++)
330 priv->mpt_rxfidx[++priv->mpt_rxfidx_tail] = i;
331 spin_unlock_irqrestore(&priv->rxfidx_lock, flags);
333 mpt_lan_post_receive_buckets(priv);
334 netif_wake_queue(dev);
340 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
342 mpt_lan_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply)
344 dlprintk((KERN_INFO MYNAM ": MPT event routed to LAN driver!\n"));
346 switch (le32_to_cpu(pEvReply->Event)) {
347 case MPI_EVENT_NONE: /* 00 */
348 case MPI_EVENT_LOG_DATA: /* 01 */
349 case MPI_EVENT_STATE_CHANGE: /* 02 */
350 case MPI_EVENT_UNIT_ATTENTION: /* 03 */
351 case MPI_EVENT_IOC_BUS_RESET: /* 04 */
352 case MPI_EVENT_EXT_BUS_RESET: /* 05 */
353 case MPI_EVENT_RESCAN: /* 06 */
354 /* Ok, do we need to do anything here? As far as
355 I can tell, this is when a new device gets added
357 case MPI_EVENT_LINK_STATUS_CHANGE: /* 07 */
358 case MPI_EVENT_LOOP_STATE_CHANGE: /* 08 */
359 case MPI_EVENT_LOGOUT: /* 09 */
360 case MPI_EVENT_EVENT_CHANGE: /* 0A */
366 * NOTE: pEvent->AckRequired handling now done in mptbase.c;
367 * Do NOT do it here now!
373 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
375 mpt_lan_open(struct net_device *dev)
377 struct mpt_lan_priv *priv = netdev_priv(dev);
380 if (mpt_lan_reset(dev) != 0) {
381 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
383 printk (KERN_WARNING MYNAM "/lan_open: lan_reset failed.");
386 printk ("The ioc is active. Perhaps it needs to be"
389 printk ("The ioc in inactive, most likely in the "
390 "process of being reset. Please try again in "
394 priv->mpt_txfidx = kmalloc_array(priv->tx_max_out, sizeof(int),
396 if (priv->mpt_txfidx == NULL)
398 priv->mpt_txfidx_tail = -1;
400 priv->SendCtl = kcalloc(priv->tx_max_out, sizeof(struct BufferControl),
402 if (priv->SendCtl == NULL)
404 for (i = 0; i < priv->tx_max_out; i++)
405 priv->mpt_txfidx[++priv->mpt_txfidx_tail] = i;
407 dlprintk((KERN_INFO MYNAM "@lo: Finished initializing SendCtl\n"));
409 priv->mpt_rxfidx = kmalloc_array(priv->max_buckets_out, sizeof(int),
411 if (priv->mpt_rxfidx == NULL)
413 priv->mpt_rxfidx_tail = -1;
415 priv->RcvCtl = kcalloc(priv->max_buckets_out,
416 sizeof(struct BufferControl),
418 if (priv->RcvCtl == NULL)
420 for (i = 0; i < priv->max_buckets_out; i++)
421 priv->mpt_rxfidx[++priv->mpt_rxfidx_tail] = i;
423 /**/ dlprintk((KERN_INFO MYNAM "/lo: txfidx contains - "));
424 /**/ for (i = 0; i < priv->tx_max_out; i++)
425 /**/ dlprintk((" %xh", priv->mpt_txfidx[i]));
426 /**/ dlprintk(("\n"));
428 dlprintk((KERN_INFO MYNAM "/lo: Finished initializing RcvCtl\n"));
430 mpt_lan_post_receive_buckets(priv);
431 printk(KERN_INFO MYNAM ": %s/%s: interface up & active\n",
432 IOC_AND_NETDEV_NAMES_s_s(dev));
434 if (mpt_event_register(LanCtx, mpt_lan_event_process) != 0) {
435 printk (KERN_WARNING MYNAM "/lo: Unable to register for Event"
436 " Notifications. This is a bad thing! We're not going "
437 "to go ahead, but I'd be leery of system stability at "
441 netif_start_queue(dev);
442 dlprintk((KERN_INFO MYNAM "/lo: Done.\n"));
446 kfree(priv->mpt_rxfidx);
447 priv->mpt_rxfidx = NULL;
449 kfree(priv->SendCtl);
450 priv->SendCtl = NULL;
452 kfree(priv->mpt_txfidx);
453 priv->mpt_txfidx = NULL;
457 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
458 /* Send a LanReset message to the FW. This should result in the FW returning
459 any buckets it still has. */
461 mpt_lan_reset(struct net_device *dev)
464 LANResetRequest_t *pResetReq;
465 struct mpt_lan_priv *priv = netdev_priv(dev);
467 mf = mpt_get_msg_frame(LanCtx, priv->mpt_dev);
470 /* dlprintk((KERN_ERR MYNAM "/reset: Evil funkiness abounds! "
471 "Unable to allocate a request frame.\n"));
476 pResetReq = (LANResetRequest_t *) mf;
478 pResetReq->Function = MPI_FUNCTION_LAN_RESET;
479 pResetReq->ChainOffset = 0;
480 pResetReq->Reserved = 0;
481 pResetReq->PortNumber = priv->pnum;
482 pResetReq->MsgFlags = 0;
483 pResetReq->Reserved2 = 0;
485 mpt_put_msg_frame(LanCtx, priv->mpt_dev, mf);
490 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
492 mpt_lan_close(struct net_device *dev)
494 struct mpt_lan_priv *priv = netdev_priv(dev);
495 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
496 unsigned long timeout;
499 dlprintk((KERN_INFO MYNAM ": mpt_lan_close called\n"));
501 mpt_event_deregister(LanCtx);
503 dlprintk((KERN_INFO MYNAM ":lan_close: Posted %d buckets "
504 "since driver was loaded, %d still out\n",
505 priv->total_posted,atomic_read(&priv->buckets_out)));
507 netif_stop_queue(dev);
511 timeout = jiffies + 2 * HZ;
512 while (atomic_read(&priv->buckets_out) && time_before(jiffies, timeout))
513 schedule_timeout_interruptible(1);
515 for (i = 0; i < priv->max_buckets_out; i++) {
516 if (priv->RcvCtl[i].skb != NULL) {
517 /**/ dlprintk((KERN_INFO MYNAM "/lan_close: bucket %05x "
518 /**/ "is still out\n", i));
519 pci_unmap_single(mpt_dev->pcidev, priv->RcvCtl[i].dma,
522 dev_kfree_skb(priv->RcvCtl[i].skb);
527 kfree(priv->mpt_rxfidx);
529 for (i = 0; i < priv->tx_max_out; i++) {
530 if (priv->SendCtl[i].skb != NULL) {
531 pci_unmap_single(mpt_dev->pcidev, priv->SendCtl[i].dma,
532 priv->SendCtl[i].len,
534 dev_kfree_skb(priv->SendCtl[i].skb);
538 kfree(priv->SendCtl);
539 kfree(priv->mpt_txfidx);
541 atomic_set(&priv->buckets_out, 0);
543 printk(KERN_INFO MYNAM ": %s/%s: interface down & inactive\n",
544 IOC_AND_NETDEV_NAMES_s_s(dev));
549 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
550 /* Tx timeout handler. */
552 mpt_lan_tx_timeout(struct net_device *dev, unsigned int txqueue)
554 struct mpt_lan_priv *priv = netdev_priv(dev);
555 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
557 if (mpt_dev->active) {
558 dlprintk (("mptlan/tx_timeout: calling netif_wake_queue for %s.\n", dev->name));
559 netif_wake_queue(dev);
563 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
566 mpt_lan_send_turbo(struct net_device *dev, u32 tmsg)
568 struct mpt_lan_priv *priv = netdev_priv(dev);
569 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
570 struct sk_buff *sent;
574 ctx = GET_LAN_BUFFER_CONTEXT(tmsg);
575 sent = priv->SendCtl[ctx].skb;
577 dev->stats.tx_packets++;
578 dev->stats.tx_bytes += sent->len;
580 dioprintk((KERN_INFO MYNAM ": %s/%s: @%s, skb %p sent.\n",
581 IOC_AND_NETDEV_NAMES_s_s(dev),
584 priv->SendCtl[ctx].skb = NULL;
585 pci_unmap_single(mpt_dev->pcidev, priv->SendCtl[ctx].dma,
586 priv->SendCtl[ctx].len, PCI_DMA_TODEVICE);
587 dev_kfree_skb_irq(sent);
589 spin_lock_irqsave(&priv->txfidx_lock, flags);
590 priv->mpt_txfidx[++priv->mpt_txfidx_tail] = ctx;
591 spin_unlock_irqrestore(&priv->txfidx_lock, flags);
593 netif_wake_queue(dev);
597 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
599 mpt_lan_send_reply(struct net_device *dev, LANSendReply_t *pSendRep)
601 struct mpt_lan_priv *priv = netdev_priv(dev);
602 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
603 struct sk_buff *sent;
605 int FreeReqFrame = 0;
610 count = pSendRep->NumberOfContexts;
612 dioprintk((KERN_INFO MYNAM ": send_reply: IOCStatus: %04x\n",
613 le16_to_cpu(pSendRep->IOCStatus)));
615 /* Add check for Loginfo Flag in IOCStatus */
617 switch (le16_to_cpu(pSendRep->IOCStatus) & MPI_IOCSTATUS_MASK) {
618 case MPI_IOCSTATUS_SUCCESS:
619 dev->stats.tx_packets += count;
622 case MPI_IOCSTATUS_LAN_CANCELED:
623 case MPI_IOCSTATUS_LAN_TRANSMIT_ABORTED:
626 case MPI_IOCSTATUS_INVALID_SGL:
627 dev->stats.tx_errors += count;
628 printk (KERN_ERR MYNAM ": %s/%s: ERROR - Invalid SGL sent to IOC!\n",
629 IOC_AND_NETDEV_NAMES_s_s(dev));
633 dev->stats.tx_errors += count;
637 pContext = &pSendRep->BufferContext;
639 spin_lock_irqsave(&priv->txfidx_lock, flags);
641 ctx = GET_LAN_BUFFER_CONTEXT(le32_to_cpu(*pContext));
643 sent = priv->SendCtl[ctx].skb;
644 dev->stats.tx_bytes += sent->len;
646 dioprintk((KERN_INFO MYNAM ": %s/%s: @%s, skb %p sent.\n",
647 IOC_AND_NETDEV_NAMES_s_s(dev),
650 priv->SendCtl[ctx].skb = NULL;
651 pci_unmap_single(mpt_dev->pcidev, priv->SendCtl[ctx].dma,
652 priv->SendCtl[ctx].len, PCI_DMA_TODEVICE);
653 dev_kfree_skb_irq(sent);
655 priv->mpt_txfidx[++priv->mpt_txfidx_tail] = ctx;
660 spin_unlock_irqrestore(&priv->txfidx_lock, flags);
663 if (!(pSendRep->MsgFlags & MPI_MSGFLAGS_CONTINUATION_REPLY))
666 netif_wake_queue(dev);
670 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
672 mpt_lan_sdu_send (struct sk_buff *skb, struct net_device *dev)
674 struct mpt_lan_priv *priv = netdev_priv(dev);
675 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
677 LANSendRequest_t *pSendReq;
678 SGETransaction32_t *pTrans;
679 SGESimple64_t *pSimple;
680 const unsigned char *mac;
684 u16 cur_naa = 0x1000;
686 dioprintk((KERN_INFO MYNAM ": %s called, skb_addr = %p\n",
689 spin_lock_irqsave(&priv->txfidx_lock, flags);
690 if (priv->mpt_txfidx_tail < 0) {
691 netif_stop_queue(dev);
692 spin_unlock_irqrestore(&priv->txfidx_lock, flags);
694 printk (KERN_ERR "%s: no tx context available: %u\n",
695 __func__, priv->mpt_txfidx_tail);
696 return NETDEV_TX_BUSY;
699 mf = mpt_get_msg_frame(LanCtx, mpt_dev);
701 netif_stop_queue(dev);
702 spin_unlock_irqrestore(&priv->txfidx_lock, flags);
704 printk (KERN_ERR "%s: Unable to alloc request frame\n",
706 return NETDEV_TX_BUSY;
709 ctx = priv->mpt_txfidx[priv->mpt_txfidx_tail--];
710 spin_unlock_irqrestore(&priv->txfidx_lock, flags);
712 // dioprintk((KERN_INFO MYNAM ": %s/%s: Creating new msg frame (send).\n",
713 // IOC_AND_NETDEV_NAMES_s_s(dev)));
715 pSendReq = (LANSendRequest_t *) mf;
717 /* Set the mac.raw pointer, since this apparently isn't getting
718 * done before we get the skb. Pull the data pointer past the mac data.
720 skb_reset_mac_header(skb);
723 dma = pci_map_single(mpt_dev->pcidev, skb->data, skb->len,
726 priv->SendCtl[ctx].skb = skb;
727 priv->SendCtl[ctx].dma = dma;
728 priv->SendCtl[ctx].len = skb->len;
731 pSendReq->Reserved = 0;
732 pSendReq->Function = MPI_FUNCTION_LAN_SEND;
733 pSendReq->ChainOffset = 0;
734 pSendReq->Reserved2 = 0;
735 pSendReq->MsgFlags = 0;
736 pSendReq->PortNumber = priv->pnum;
738 /* Transaction Context Element */
739 pTrans = (SGETransaction32_t *) pSendReq->SG_List;
741 /* No Flags, 8 bytes of Details, 32bit Context (bloody turbo replies) */
742 pTrans->ContextSize = sizeof(u32);
743 pTrans->DetailsLength = 2 * sizeof(u32);
745 pTrans->TransactionContext = cpu_to_le32(ctx);
747 // dioprintk((KERN_INFO MYNAM ": %s/%s: BC = %08x, skb = %p, buff = %p\n",
748 // IOC_AND_NETDEV_NAMES_s_s(dev),
749 // ctx, skb, skb->data));
751 mac = skb_mac_header(skb);
753 pTrans->TransactionDetails[0] = cpu_to_le32((cur_naa << 16) |
756 pTrans->TransactionDetails[1] = cpu_to_le32((mac[2] << 24) |
761 pSimple = (SGESimple64_t *) &pTrans->TransactionDetails[2];
763 /* If we ever decide to send more than one Simple SGE per LANSend, then
764 we will need to make sure that LAST_ELEMENT only gets set on the
765 last one. Otherwise, bad voodoo and evil funkiness will commence. */
766 pSimple->FlagsLength = cpu_to_le32(
767 ((MPI_SGE_FLAGS_LAST_ELEMENT |
768 MPI_SGE_FLAGS_END_OF_BUFFER |
769 MPI_SGE_FLAGS_SIMPLE_ELEMENT |
770 MPI_SGE_FLAGS_SYSTEM_ADDRESS |
771 MPI_SGE_FLAGS_HOST_TO_IOC |
772 MPI_SGE_FLAGS_64_BIT_ADDRESSING |
773 MPI_SGE_FLAGS_END_OF_LIST) << MPI_SGE_FLAGS_SHIFT) |
775 pSimple->Address.Low = cpu_to_le32((u32) dma);
776 if (sizeof(dma_addr_t) > sizeof(u32))
777 pSimple->Address.High = cpu_to_le32((u32) ((u64) dma >> 32));
779 pSimple->Address.High = 0;
781 mpt_put_msg_frame (LanCtx, mpt_dev, mf);
782 netif_trans_update(dev);
784 dioprintk((KERN_INFO MYNAM ": %s/%s: Sending packet. FlagsLength = %08x.\n",
785 IOC_AND_NETDEV_NAMES_s_s(dev),
786 le32_to_cpu(pSimple->FlagsLength)));
791 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
793 mpt_lan_wake_post_buckets_task(struct net_device *dev, int priority)
795 * @priority: 0 = put it on the timer queue, 1 = put it on the immediate queue
798 struct mpt_lan_priv *priv = netdev_priv(dev);
800 if (test_and_set_bit(0, &priv->post_buckets_active) == 0) {
802 schedule_delayed_work(&priv->post_buckets_task, 0);
804 schedule_delayed_work(&priv->post_buckets_task, 1);
805 dioprintk((KERN_INFO MYNAM ": post_buckets queued on "
808 dioprintk((KERN_INFO MYNAM ": %s/%s: Queued post_buckets task.\n",
809 IOC_AND_NETDEV_NAMES_s_s(dev) ));
813 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
815 mpt_lan_receive_skb(struct net_device *dev, struct sk_buff *skb)
817 struct mpt_lan_priv *priv = netdev_priv(dev);
819 skb->protocol = mpt_lan_type_trans(skb, dev);
821 dioprintk((KERN_INFO MYNAM ": %s/%s: Incoming packet (%d bytes) "
822 "delivered to upper level.\n",
823 IOC_AND_NETDEV_NAMES_s_s(dev), skb->len));
825 dev->stats.rx_bytes += skb->len;
826 dev->stats.rx_packets++;
831 dioprintk((MYNAM "/receive_skb: %d buckets remaining\n",
832 atomic_read(&priv->buckets_out)));
834 if (atomic_read(&priv->buckets_out) < priv->bucketthresh)
835 mpt_lan_wake_post_buckets_task(dev, 1);
837 dioprintk((KERN_INFO MYNAM "/receive_post_reply: %d buckets "
838 "remaining, %d received back since sod\n",
839 atomic_read(&priv->buckets_out), priv->total_received));
844 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
847 mpt_lan_receive_post_turbo(struct net_device *dev, u32 tmsg)
849 struct mpt_lan_priv *priv = netdev_priv(dev);
850 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
851 struct sk_buff *skb, *old_skb;
855 ctx = GET_LAN_BUCKET_CONTEXT(tmsg);
856 skb = priv->RcvCtl[ctx].skb;
858 len = GET_LAN_PACKET_LENGTH(tmsg);
860 if (len < MPT_LAN_RX_COPYBREAK) {
863 skb = (struct sk_buff *)dev_alloc_skb(len);
865 printk (KERN_ERR MYNAM ": %s/%s: ERROR - Can't allocate skb! (%s@%d)\n",
866 IOC_AND_NETDEV_NAMES_s_s(dev),
871 pci_dma_sync_single_for_cpu(mpt_dev->pcidev, priv->RcvCtl[ctx].dma,
872 priv->RcvCtl[ctx].len, PCI_DMA_FROMDEVICE);
874 skb_copy_from_linear_data(old_skb, skb_put(skb, len), len);
876 pci_dma_sync_single_for_device(mpt_dev->pcidev, priv->RcvCtl[ctx].dma,
877 priv->RcvCtl[ctx].len, PCI_DMA_FROMDEVICE);
883 priv->RcvCtl[ctx].skb = NULL;
885 pci_unmap_single(mpt_dev->pcidev, priv->RcvCtl[ctx].dma,
886 priv->RcvCtl[ctx].len, PCI_DMA_FROMDEVICE);
889 spin_lock_irqsave(&priv->rxfidx_lock, flags);
890 priv->mpt_rxfidx[++priv->mpt_rxfidx_tail] = ctx;
891 spin_unlock_irqrestore(&priv->rxfidx_lock, flags);
893 atomic_dec(&priv->buckets_out);
894 priv->total_received++;
896 return mpt_lan_receive_skb(dev, skb);
899 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
901 mpt_lan_receive_post_free(struct net_device *dev,
902 LANReceivePostReply_t *pRecvRep)
904 struct mpt_lan_priv *priv = netdev_priv(dev);
905 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
912 count = pRecvRep->NumberOfContexts;
914 /**/ dlprintk((KERN_INFO MYNAM "/receive_post_reply: "
915 "IOC returned %d buckets, freeing them...\n", count));
917 spin_lock_irqsave(&priv->rxfidx_lock, flags);
918 for (i = 0; i < count; i++) {
919 ctx = le32_to_cpu(pRecvRep->BucketContext[i]);
921 skb = priv->RcvCtl[ctx].skb;
923 // dlprintk((KERN_INFO MYNAM ": %s: dev_name = %s\n",
924 // IOC_AND_NETDEV_NAMES_s_s(dev)));
925 // dlprintk((KERN_INFO MYNAM "@rpr[2], priv = %p, buckets_out addr = %p",
926 // priv, &(priv->buckets_out)));
927 // dlprintk((KERN_INFO MYNAM "@rpr[2] TC + 3\n"));
929 priv->RcvCtl[ctx].skb = NULL;
930 pci_unmap_single(mpt_dev->pcidev, priv->RcvCtl[ctx].dma,
931 priv->RcvCtl[ctx].len, PCI_DMA_FROMDEVICE);
932 dev_kfree_skb_any(skb);
934 priv->mpt_rxfidx[++priv->mpt_rxfidx_tail] = ctx;
936 spin_unlock_irqrestore(&priv->rxfidx_lock, flags);
938 atomic_sub(count, &priv->buckets_out);
940 // for (i = 0; i < priv->max_buckets_out; i++)
941 // if (priv->RcvCtl[i].skb != NULL)
942 // dlprintk((KERN_INFO MYNAM "@rpr: bucket %03x "
943 // "is still out\n", i));
945 /* dlprintk((KERN_INFO MYNAM "/receive_post_reply: freed %d buckets\n",
948 /**/ dlprintk((KERN_INFO MYNAM "@receive_post_reply: %d buckets "
949 /**/ "remaining, %d received back since sod.\n",
950 /**/ atomic_read(&priv->buckets_out), priv->total_received));
954 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
956 mpt_lan_receive_post_reply(struct net_device *dev,
957 LANReceivePostReply_t *pRecvRep)
959 struct mpt_lan_priv *priv = netdev_priv(dev);
960 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
961 struct sk_buff *skb, *old_skb;
963 u32 len, ctx, offset;
964 u32 remaining = le32_to_cpu(pRecvRep->BucketsRemaining);
968 dioprintk((KERN_INFO MYNAM ": mpt_lan_receive_post_reply called\n"));
969 dioprintk((KERN_INFO MYNAM ": receive_post_reply: IOCStatus: %04x\n",
970 le16_to_cpu(pRecvRep->IOCStatus)));
972 if ((le16_to_cpu(pRecvRep->IOCStatus) & MPI_IOCSTATUS_MASK) ==
973 MPI_IOCSTATUS_LAN_CANCELED)
974 return mpt_lan_receive_post_free(dev, pRecvRep);
976 len = le32_to_cpu(pRecvRep->PacketLength);
978 printk (KERN_ERR MYNAM ": %s/%s: ERROR - Got a non-TURBO "
979 "ReceivePostReply w/ PacketLength zero!\n",
980 IOC_AND_NETDEV_NAMES_s_s(dev));
981 printk (KERN_ERR MYNAM ": MsgFlags = %02x, IOCStatus = %04x\n",
982 pRecvRep->MsgFlags, le16_to_cpu(pRecvRep->IOCStatus));
986 ctx = le32_to_cpu(pRecvRep->BucketContext[0]);
987 count = pRecvRep->NumberOfContexts;
988 skb = priv->RcvCtl[ctx].skb;
990 offset = le32_to_cpu(pRecvRep->PacketOffset);
991 // if (offset != 0) {
992 // printk (KERN_INFO MYNAM ": %s/%s: Got a ReceivePostReply "
993 // "w/ PacketOffset %u\n",
994 // IOC_AND_NETDEV_NAMES_s_s(dev),
998 dioprintk((KERN_INFO MYNAM ": %s/%s: @rpr, offset = %d, len = %d\n",
999 IOC_AND_NETDEV_NAMES_s_s(dev),
1005 // dioprintk((KERN_INFO MYNAM ": %s/%s: Multiple buckets returned "
1006 // "for single packet, concatenating...\n",
1007 // IOC_AND_NETDEV_NAMES_s_s(dev)));
1009 skb = (struct sk_buff *)dev_alloc_skb(len);
1011 printk (KERN_ERR MYNAM ": %s/%s: ERROR - Can't allocate skb! (%s@%d)\n",
1012 IOC_AND_NETDEV_NAMES_s_s(dev),
1013 __FILE__, __LINE__);
1017 spin_lock_irqsave(&priv->rxfidx_lock, flags);
1018 for (i = 0; i < count; i++) {
1020 ctx = le32_to_cpu(pRecvRep->BucketContext[i]);
1021 old_skb = priv->RcvCtl[ctx].skb;
1023 l = priv->RcvCtl[ctx].len;
1027 // dioprintk((KERN_INFO MYNAM ": %s/%s: Buckets = %d, len = %u\n",
1028 // IOC_AND_NETDEV_NAMES_s_s(dev),
1031 pci_dma_sync_single_for_cpu(mpt_dev->pcidev,
1032 priv->RcvCtl[ctx].dma,
1033 priv->RcvCtl[ctx].len,
1034 PCI_DMA_FROMDEVICE);
1035 skb_copy_from_linear_data(old_skb, skb_put(skb, l), l);
1037 pci_dma_sync_single_for_device(mpt_dev->pcidev,
1038 priv->RcvCtl[ctx].dma,
1039 priv->RcvCtl[ctx].len,
1040 PCI_DMA_FROMDEVICE);
1042 priv->mpt_rxfidx[++priv->mpt_rxfidx_tail] = ctx;
1045 spin_unlock_irqrestore(&priv->rxfidx_lock, flags);
1047 } else if (len < MPT_LAN_RX_COPYBREAK) {
1051 skb = (struct sk_buff *)dev_alloc_skb(len);
1053 printk (KERN_ERR MYNAM ": %s/%s: ERROR - Can't allocate skb! (%s@%d)\n",
1054 IOC_AND_NETDEV_NAMES_s_s(dev),
1055 __FILE__, __LINE__);
1059 pci_dma_sync_single_for_cpu(mpt_dev->pcidev,
1060 priv->RcvCtl[ctx].dma,
1061 priv->RcvCtl[ctx].len,
1062 PCI_DMA_FROMDEVICE);
1064 skb_copy_from_linear_data(old_skb, skb_put(skb, len), len);
1066 pci_dma_sync_single_for_device(mpt_dev->pcidev,
1067 priv->RcvCtl[ctx].dma,
1068 priv->RcvCtl[ctx].len,
1069 PCI_DMA_FROMDEVICE);
1071 spin_lock_irqsave(&priv->rxfidx_lock, flags);
1072 priv->mpt_rxfidx[++priv->mpt_rxfidx_tail] = ctx;
1073 spin_unlock_irqrestore(&priv->rxfidx_lock, flags);
1076 spin_lock_irqsave(&priv->rxfidx_lock, flags);
1078 priv->RcvCtl[ctx].skb = NULL;
1080 pci_unmap_single(mpt_dev->pcidev, priv->RcvCtl[ctx].dma,
1081 priv->RcvCtl[ctx].len, PCI_DMA_FROMDEVICE);
1082 priv->RcvCtl[ctx].dma = 0;
1084 priv->mpt_rxfidx[++priv->mpt_rxfidx_tail] = ctx;
1085 spin_unlock_irqrestore(&priv->rxfidx_lock, flags);
1090 atomic_sub(count, &priv->buckets_out);
1091 priv->total_received += count;
1093 if (priv->mpt_rxfidx_tail >= MPT_LAN_MAX_BUCKETS_OUT) {
1094 printk (KERN_ERR MYNAM ": %s/%s: Yoohoo! mpt_rxfidx_tail = %d, "
1095 "MPT_LAN_MAX_BUCKETS_OUT = %d\n",
1096 IOC_AND_NETDEV_NAMES_s_s(dev),
1097 priv->mpt_rxfidx_tail,
1098 MPT_LAN_MAX_BUCKETS_OUT);
1104 printk (KERN_WARNING MYNAM ": %s/%s: WARNING - IOC out of buckets! "
1105 "(priv->buckets_out = %d)\n",
1106 IOC_AND_NETDEV_NAMES_s_s(dev),
1107 atomic_read(&priv->buckets_out));
1108 else if (remaining < 10)
1109 printk (KERN_INFO MYNAM ": %s/%s: IOC says %d buckets left. "
1110 "(priv->buckets_out = %d)\n",
1111 IOC_AND_NETDEV_NAMES_s_s(dev),
1112 remaining, atomic_read(&priv->buckets_out));
1114 if ((remaining < priv->bucketthresh) &&
1115 ((atomic_read(&priv->buckets_out) - remaining) >
1116 MPT_LAN_BUCKETS_REMAIN_MISMATCH_THRESH)) {
1118 printk (KERN_WARNING MYNAM " Mismatch between driver's "
1119 "buckets_out count and fw's BucketsRemaining "
1120 "count has crossed the threshold, issuing a "
1121 "LanReset to clear the fw's hashtable. You may "
1122 "want to check your /var/log/messages for \"CRC "
1123 "error\" event notifications.\n");
1126 mpt_lan_wake_post_buckets_task(dev, 0);
1129 return mpt_lan_receive_skb(dev, skb);
1132 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1133 /* Simple SGE's only at the moment */
1136 mpt_lan_post_receive_buckets(struct mpt_lan_priv *priv)
1138 struct net_device *dev = priv->dev;
1139 MPT_ADAPTER *mpt_dev = priv->mpt_dev;
1141 LANReceivePostRequest_t *pRecvReq;
1142 SGETransaction32_t *pTrans;
1143 SGESimple64_t *pSimple;
1144 struct sk_buff *skb;
1146 u32 curr, buckets, count, max;
1147 u32 len = (dev->mtu + dev->hard_header_len + 4);
1148 unsigned long flags;
1151 curr = atomic_read(&priv->buckets_out);
1152 buckets = (priv->max_buckets_out - curr);
1154 dioprintk((KERN_INFO MYNAM ": %s/%s: @%s, Start_buckets = %u, buckets_out = %u\n",
1155 IOC_AND_NETDEV_NAMES_s_s(dev),
1156 __func__, buckets, curr));
1158 max = (mpt_dev->req_sz - MPT_LAN_RECEIVE_POST_REQUEST_SIZE) /
1159 (sizeof(SGETransaction32_t) + sizeof(SGESimple64_t));
1162 mf = mpt_get_msg_frame(LanCtx, mpt_dev);
1164 printk (KERN_ERR "%s: Unable to alloc request frame\n",
1166 dioprintk((KERN_ERR "%s: %u buckets remaining\n",
1167 __func__, buckets));
1170 pRecvReq = (LANReceivePostRequest_t *) mf;
1172 i = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
1173 mpt_dev->RequestNB[i] = 0;
1178 pRecvReq->Function = MPI_FUNCTION_LAN_RECEIVE;
1179 pRecvReq->ChainOffset = 0;
1180 pRecvReq->MsgFlags = 0;
1181 pRecvReq->PortNumber = priv->pnum;
1183 pTrans = (SGETransaction32_t *) pRecvReq->SG_List;
1186 for (i = 0; i < count; i++) {
1189 spin_lock_irqsave(&priv->rxfidx_lock, flags);
1190 if (priv->mpt_rxfidx_tail < 0) {
1191 printk (KERN_ERR "%s: Can't alloc context\n",
1193 spin_unlock_irqrestore(&priv->rxfidx_lock,
1198 ctx = priv->mpt_rxfidx[priv->mpt_rxfidx_tail--];
1200 skb = priv->RcvCtl[ctx].skb;
1201 if (skb && (priv->RcvCtl[ctx].len != len)) {
1202 pci_unmap_single(mpt_dev->pcidev,
1203 priv->RcvCtl[ctx].dma,
1204 priv->RcvCtl[ctx].len,
1205 PCI_DMA_FROMDEVICE);
1206 dev_kfree_skb(priv->RcvCtl[ctx].skb);
1207 skb = priv->RcvCtl[ctx].skb = NULL;
1211 skb = dev_alloc_skb(len);
1213 printk (KERN_WARNING
1214 MYNAM "/%s: Can't alloc skb\n",
1216 priv->mpt_rxfidx[++priv->mpt_rxfidx_tail] = ctx;
1217 spin_unlock_irqrestore(&priv->rxfidx_lock, flags);
1221 dma = pci_map_single(mpt_dev->pcidev, skb->data,
1222 len, PCI_DMA_FROMDEVICE);
1224 priv->RcvCtl[ctx].skb = skb;
1225 priv->RcvCtl[ctx].dma = dma;
1226 priv->RcvCtl[ctx].len = len;
1229 spin_unlock_irqrestore(&priv->rxfidx_lock, flags);
1231 pTrans->ContextSize = sizeof(u32);
1232 pTrans->DetailsLength = 0;
1234 pTrans->TransactionContext = cpu_to_le32(ctx);
1236 pSimple = (SGESimple64_t *) pTrans->TransactionDetails;
1238 pSimple->FlagsLength = cpu_to_le32(
1239 ((MPI_SGE_FLAGS_END_OF_BUFFER |
1240 MPI_SGE_FLAGS_SIMPLE_ELEMENT |
1241 MPI_SGE_FLAGS_64_BIT_ADDRESSING) << MPI_SGE_FLAGS_SHIFT) | len);
1242 pSimple->Address.Low = cpu_to_le32((u32) priv->RcvCtl[ctx].dma);
1243 if (sizeof(dma_addr_t) > sizeof(u32))
1244 pSimple->Address.High = cpu_to_le32((u32) ((u64) priv->RcvCtl[ctx].dma >> 32));
1246 pSimple->Address.High = 0;
1248 pTrans = (SGETransaction32_t *) (pSimple + 1);
1251 if (pSimple == NULL) {
1252 /**/ printk (KERN_WARNING MYNAM "/%s: No buckets posted\n",
1254 mpt_free_msg_frame(mpt_dev, mf);
1258 pSimple->FlagsLength |= cpu_to_le32(MPI_SGE_FLAGS_END_OF_LIST << MPI_SGE_FLAGS_SHIFT);
1260 pRecvReq->BucketCount = cpu_to_le32(i);
1262 /* printk(KERN_INFO MYNAM ": posting buckets\n ");
1263 * for (i = 0; i < j + 2; i ++)
1264 * printk (" %08x", le32_to_cpu(msg[i]));
1268 mpt_put_msg_frame(LanCtx, mpt_dev, mf);
1270 priv->total_posted += i;
1272 atomic_add(i, &priv->buckets_out);
1276 dioprintk((KERN_INFO MYNAM "/%s: End_buckets = %u, priv->buckets_out = %u\n",
1277 __func__, buckets, atomic_read(&priv->buckets_out)));
1278 dioprintk((KERN_INFO MYNAM "/%s: Posted %u buckets and received %u back\n",
1279 __func__, priv->total_posted, priv->total_received));
1281 clear_bit(0, &priv->post_buckets_active);
1285 mpt_lan_post_receive_buckets_work(struct work_struct *work)
1287 mpt_lan_post_receive_buckets(container_of(work, struct mpt_lan_priv,
1288 post_buckets_task.work));
1291 static const struct net_device_ops mpt_netdev_ops = {
1292 .ndo_open = mpt_lan_open,
1293 .ndo_stop = mpt_lan_close,
1294 .ndo_start_xmit = mpt_lan_sdu_send,
1295 .ndo_tx_timeout = mpt_lan_tx_timeout,
1298 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1299 static struct net_device *
1300 mpt_register_lan_device (MPT_ADAPTER *mpt_dev, int pnum)
1302 struct net_device *dev;
1303 struct mpt_lan_priv *priv;
1304 u8 HWaddr[FC_ALEN], *a;
1306 dev = alloc_fcdev(sizeof(struct mpt_lan_priv));
1310 dev->mtu = MPT_LAN_MTU;
1312 priv = netdev_priv(dev);
1315 priv->mpt_dev = mpt_dev;
1318 INIT_DELAYED_WORK(&priv->post_buckets_task,
1319 mpt_lan_post_receive_buckets_work);
1320 priv->post_buckets_active = 0;
1322 dlprintk((KERN_INFO MYNAM "@%d: bucketlen = %d\n",
1323 __LINE__, dev->mtu + dev->hard_header_len + 4));
1325 atomic_set(&priv->buckets_out, 0);
1326 priv->total_posted = 0;
1327 priv->total_received = 0;
1328 priv->max_buckets_out = max_buckets_out;
1329 if (mpt_dev->pfacts[0].MaxLanBuckets < max_buckets_out)
1330 priv->max_buckets_out = mpt_dev->pfacts[0].MaxLanBuckets;
1332 dlprintk((KERN_INFO MYNAM "@%d: MaxLanBuckets=%d, max_buckets_out/priv=%d/%d\n",
1334 mpt_dev->pfacts[0].MaxLanBuckets,
1336 priv->max_buckets_out));
1338 priv->bucketthresh = priv->max_buckets_out * 2 / 3;
1339 spin_lock_init(&priv->txfidx_lock);
1340 spin_lock_init(&priv->rxfidx_lock);
1342 /* Grab pre-fetched LANPage1 stuff. :-) */
1343 a = (u8 *) &mpt_dev->lan_cnfg_page1.HardwareAddressLow;
1352 dev->addr_len = FC_ALEN;
1353 dev_addr_set(dev, HWaddr);
1354 memset(dev->broadcast, 0xff, FC_ALEN);
1356 /* The Tx queue is 127 deep on the 909.
1357 * Give ourselves some breathing room.
1359 priv->tx_max_out = (tx_max_out_p <= MPT_TX_MAX_OUT_LIM) ?
1360 tx_max_out_p : MPT_TX_MAX_OUT_LIM;
1362 dev->netdev_ops = &mpt_netdev_ops;
1363 dev->watchdog_timeo = MPT_LAN_TX_TIMEOUT;
1365 /* MTU range: 96 - 65280 */
1366 dev->min_mtu = MPT_LAN_MIN_MTU;
1367 dev->max_mtu = MPT_LAN_MAX_MTU;
1369 dlprintk((KERN_INFO MYNAM ": Finished registering dev "
1370 "and setting initial values\n"));
1372 if (register_netdev(dev) != 0) {
1380 mptlan_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1382 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1383 struct net_device *dev;
1386 for (i = 0; i < ioc->facts.NumberOfPorts; i++) {
1387 printk(KERN_INFO MYNAM ": %s: PortNum=%x, "
1388 "ProtocolFlags=%02Xh (%c%c%c%c)\n",
1389 ioc->name, ioc->pfacts[i].PortNumber,
1390 ioc->pfacts[i].ProtocolFlags,
1391 MPT_PROTOCOL_FLAGS_c_c_c_c(
1392 ioc->pfacts[i].ProtocolFlags));
1394 if (!(ioc->pfacts[i].ProtocolFlags &
1395 MPI_PORTFACTS_PROTOCOL_LAN)) {
1396 printk(KERN_INFO MYNAM ": %s: Hmmm... LAN protocol "
1397 "seems to be disabled on this adapter port!\n",
1402 dev = mpt_register_lan_device(ioc, i);
1404 printk(KERN_ERR MYNAM ": %s: Unable to register "
1405 "port%d as a LAN device\n", ioc->name,
1406 ioc->pfacts[i].PortNumber);
1410 printk(KERN_INFO MYNAM ": %s: Fusion MPT LAN device "
1411 "registered as '%s'\n", ioc->name, dev->name);
1412 printk(KERN_INFO MYNAM ": %s/%s: "
1414 IOC_AND_NETDEV_NAMES_s_s(dev),
1426 mptlan_remove(struct pci_dev *pdev)
1428 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1429 struct net_device *dev = ioc->netdev;
1432 unregister_netdev(dev);
1437 static struct mpt_pci_driver mptlan_driver = {
1438 .probe = mptlan_probe,
1439 .remove = mptlan_remove,
1442 static int __init mpt_lan_init (void)
1444 show_mptmod_ver(LANAME, LANVER);
1446 LanCtx = mpt_register(lan_reply, MPTLAN_DRIVER,
1449 printk (KERN_ERR MYNAM ": Failed to register with MPT base driver\n");
1453 dlprintk((KERN_INFO MYNAM ": assigned context of %d\n", LanCtx));
1455 if (mpt_reset_register(LanCtx, mpt_lan_ioc_reset)) {
1456 printk(KERN_ERR MYNAM ": Eieee! unable to register a reset "
1457 "handler with mptbase! The world is at an end! "
1458 "Everything is fading to black! Goodbye.\n");
1462 dlprintk((KERN_INFO MYNAM ": Registered for IOC reset notifications\n"));
1464 mpt_device_driver_register(&mptlan_driver, MPTLAN_DRIVER);
1468 static void __exit mpt_lan_exit(void)
1470 mpt_device_driver_deregister(MPTLAN_DRIVER);
1471 mpt_reset_deregister(LanCtx);
1474 mpt_deregister(LanCtx);
1475 LanCtx = MPT_MAX_PROTOCOL_DRIVERS;
1479 module_init(mpt_lan_init);
1480 module_exit(mpt_lan_exit);
1482 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1483 static unsigned short
1484 mpt_lan_type_trans(struct sk_buff *skb, struct net_device *dev)
1486 struct mpt_lan_ohdr *fch = (struct mpt_lan_ohdr *)skb->data;
1487 struct fcllc *fcllc;
1489 skb_reset_mac_header(skb);
1490 skb_pull(skb, sizeof(struct mpt_lan_ohdr));
1492 if (fch->dtype == htons(0xffff)) {
1493 u32 *p = (u32 *) fch;
1500 printk (KERN_WARNING MYNAM ": %s: WARNING - Broadcast swap F/W bug detected!\n",
1501 NETDEV_PTR_TO_IOC_NAME_s(dev));
1502 printk (KERN_WARNING MYNAM ": Please update sender @ MAC_addr = %pM\n",
1506 if (*fch->daddr & 1) {
1507 if (!memcmp(fch->daddr, dev->broadcast, FC_ALEN)) {
1508 skb->pkt_type = PACKET_BROADCAST;
1510 skb->pkt_type = PACKET_MULTICAST;
1513 if (memcmp(fch->daddr, dev->dev_addr, FC_ALEN)) {
1514 skb->pkt_type = PACKET_OTHERHOST;
1516 skb->pkt_type = PACKET_HOST;
1520 fcllc = (struct fcllc *)skb->data;
1522 /* Strip the SNAP header from ARP packets since we don't
1523 * pass them through to the 802.2/SNAP layers.
1525 if (fcllc->dsap == EXTENDED_SAP &&
1526 (fcllc->ethertype == htons(ETH_P_IP) ||
1527 fcllc->ethertype == htons(ETH_P_ARP))) {
1528 skb_pull(skb, sizeof(struct fcllc));
1529 return fcllc->ethertype;
1532 return htons(ETH_P_802_2);
1535 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/