2 * Copyright (c) 2007, 2008 QLogic Corporation. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <linux/spinlock.h>
35 #include "ipath_kernel.h"
36 #include "ipath_verbs.h"
37 #include "ipath_common.h"
39 #define SDMA_DESCQ_SZ PAGE_SIZE /* 256 entries per 4KB page */
41 static void vl15_watchdog_enq(struct ipath_devdata *dd)
43 /* ipath_sdma_lock must already be held */
44 if (atomic_inc_return(&dd->ipath_sdma_vl15_count) == 1) {
45 unsigned long interval = (HZ + 19) / 20;
46 dd->ipath_sdma_vl15_timer.expires = jiffies + interval;
47 add_timer(&dd->ipath_sdma_vl15_timer);
51 static void vl15_watchdog_deq(struct ipath_devdata *dd)
53 /* ipath_sdma_lock must already be held */
54 if (atomic_dec_return(&dd->ipath_sdma_vl15_count) != 0) {
55 unsigned long interval = (HZ + 19) / 20;
56 mod_timer(&dd->ipath_sdma_vl15_timer, jiffies + interval);
58 del_timer(&dd->ipath_sdma_vl15_timer);
62 static void vl15_watchdog_timeout(unsigned long opaque)
64 struct ipath_devdata *dd = (struct ipath_devdata *)opaque;
66 if (atomic_read(&dd->ipath_sdma_vl15_count) != 0) {
67 ipath_dbg("vl15 watchdog timeout - clearing\n");
68 ipath_cancel_sends(dd, 1);
71 ipath_dbg("vl15 watchdog timeout - "
72 "condition already cleared\n");
76 static void unmap_desc(struct ipath_devdata *dd, unsigned head)
78 __le64 *descqp = &dd->ipath_sdma_descq[head].qw[0];
83 desc[0] = le64_to_cpu(descqp[0]);
84 desc[1] = le64_to_cpu(descqp[1]);
86 addr = (desc[1] << 32) | (desc[0] >> 32);
87 len = (desc[0] >> 14) & (0x7ffULL << 2);
88 dma_unmap_single(&dd->pcidev->dev, addr, len, DMA_TO_DEVICE);
92 * ipath_sdma_lock should be locked before calling this.
94 int ipath_sdma_make_progress(struct ipath_devdata *dd)
96 struct list_head *lp = NULL;
97 struct ipath_sdma_txreq *txp = NULL;
102 if (!list_empty(&dd->ipath_sdma_activelist)) {
103 lp = dd->ipath_sdma_activelist.next;
104 txp = list_entry(lp, struct ipath_sdma_txreq, list);
105 start_idx = txp->start_idx;
109 * Read the SDMA head register in order to know that the
110 * interrupt clear has been written to the chip.
111 * Otherwise, we may not get an interrupt for the last
112 * descriptor in the queue.
114 dmahead = (u16)ipath_read_kreg32(dd, dd->ipath_kregs->kr_senddmahead);
115 /* sanity check return value for error handling (chip reset, etc.) */
116 if (dmahead >= dd->ipath_sdma_descq_cnt)
119 while (dd->ipath_sdma_descq_head != dmahead) {
120 if (txp && txp->flags & IPATH_SDMA_TXREQ_F_FREEDESC &&
121 dd->ipath_sdma_descq_head == start_idx) {
122 unmap_desc(dd, dd->ipath_sdma_descq_head);
124 if (start_idx == dd->ipath_sdma_descq_cnt)
128 /* increment free count and head */
129 dd->ipath_sdma_descq_removed++;
130 if (++dd->ipath_sdma_descq_head == dd->ipath_sdma_descq_cnt)
131 dd->ipath_sdma_descq_head = 0;
133 if (txp && txp->next_descq_idx == dd->ipath_sdma_descq_head) {
134 /* move to notify list */
135 if (txp->flags & IPATH_SDMA_TXREQ_F_VL15)
136 vl15_watchdog_deq(dd);
137 list_move_tail(lp, &dd->ipath_sdma_notifylist);
138 if (!list_empty(&dd->ipath_sdma_activelist)) {
139 lp = dd->ipath_sdma_activelist.next;
140 txp = list_entry(lp, struct ipath_sdma_txreq,
142 start_idx = txp->start_idx;
152 tasklet_hi_schedule(&dd->ipath_sdma_notify_task);
158 static void ipath_sdma_notify(struct ipath_devdata *dd, struct list_head *list)
160 struct ipath_sdma_txreq *txp, *txp_next;
162 list_for_each_entry_safe(txp, txp_next, list, list) {
163 list_del_init(&txp->list);
166 (*txp->callback)(txp->callback_cookie,
167 txp->callback_status);
171 static void sdma_notify_taskbody(struct ipath_devdata *dd)
174 struct list_head list;
176 INIT_LIST_HEAD(&list);
178 spin_lock_irqsave(&dd->ipath_sdma_lock, flags);
180 list_splice_init(&dd->ipath_sdma_notifylist, &list);
182 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
184 ipath_sdma_notify(dd, &list);
187 * The IB verbs layer needs to see the callback before getting
188 * the call to ipath_ib_piobufavail() because the callback
189 * handles releasing resources the next send will need.
190 * Otherwise, we could do these calls in
191 * ipath_sdma_make_progress().
193 ipath_ib_piobufavail(dd->verbs_dev);
196 static void sdma_notify_task(unsigned long opaque)
198 struct ipath_devdata *dd = (struct ipath_devdata *)opaque;
200 if (!test_bit(IPATH_SDMA_SHUTDOWN, &dd->ipath_sdma_status))
201 sdma_notify_taskbody(dd);
204 static void dump_sdma_state(struct ipath_devdata *dd)
208 reg = ipath_read_kreg64(dd, dd->ipath_kregs->kr_senddmastatus);
209 ipath_cdbg(VERBOSE, "kr_senddmastatus: 0x%016lx\n", reg);
211 reg = ipath_read_kreg64(dd, dd->ipath_kregs->kr_sendctrl);
212 ipath_cdbg(VERBOSE, "kr_sendctrl: 0x%016lx\n", reg);
214 reg = ipath_read_kreg64(dd, dd->ipath_kregs->kr_senddmabufmask0);
215 ipath_cdbg(VERBOSE, "kr_senddmabufmask0: 0x%016lx\n", reg);
217 reg = ipath_read_kreg64(dd, dd->ipath_kregs->kr_senddmabufmask1);
218 ipath_cdbg(VERBOSE, "kr_senddmabufmask1: 0x%016lx\n", reg);
220 reg = ipath_read_kreg64(dd, dd->ipath_kregs->kr_senddmabufmask2);
221 ipath_cdbg(VERBOSE, "kr_senddmabufmask2: 0x%016lx\n", reg);
223 reg = ipath_read_kreg64(dd, dd->ipath_kregs->kr_senddmatail);
224 ipath_cdbg(VERBOSE, "kr_senddmatail: 0x%016lx\n", reg);
226 reg = ipath_read_kreg64(dd, dd->ipath_kregs->kr_senddmahead);
227 ipath_cdbg(VERBOSE, "kr_senddmahead: 0x%016lx\n", reg);
230 static void sdma_abort_task(unsigned long opaque)
232 struct ipath_devdata *dd = (struct ipath_devdata *) opaque;
236 if (test_bit(IPATH_SDMA_SHUTDOWN, &dd->ipath_sdma_status))
239 spin_lock_irqsave(&dd->ipath_sdma_lock, flags);
241 status = dd->ipath_sdma_status & IPATH_SDMA_ABORT_MASK;
244 if (status == IPATH_SDMA_ABORT_NONE)
247 /* ipath_sdma_abort() is done, waiting for interrupt */
248 if (status == IPATH_SDMA_ABORT_DISARMED) {
249 if (jiffies < dd->ipath_sdma_abort_intr_timeout)
250 goto resched_noprint;
251 /* give up, intr got lost somewhere */
252 ipath_dbg("give up waiting for SDMADISABLED intr\n");
253 __set_bit(IPATH_SDMA_DISABLED, &dd->ipath_sdma_status);
254 status = IPATH_SDMA_ABORT_ABORTED;
257 /* everything is stopped, time to clean up and restart */
258 if (status == IPATH_SDMA_ABORT_ABORTED) {
259 struct ipath_sdma_txreq *txp, *txpnext;
263 hwstatus = ipath_read_kreg64(dd,
264 dd->ipath_kregs->kr_senddmastatus);
266 if (/* ScoreBoardDrainInProg */
267 test_bit(63, &hwstatus) ||
269 test_bit(62, &hwstatus) ||
270 /* InternalSDmaEnable */
271 test_bit(61, &hwstatus) ||
273 !test_bit(30, &hwstatus)) {
274 if (dd->ipath_sdma_reset_wait > 0) {
275 /* not done shutting down sdma */
276 --dd->ipath_sdma_reset_wait;
279 ipath_cdbg(VERBOSE, "gave up waiting for quiescent "
280 "status after SDMA reset, continuing\n");
284 /* dequeue all "sent" requests */
285 list_for_each_entry_safe(txp, txpnext,
286 &dd->ipath_sdma_activelist, list) {
287 txp->callback_status = IPATH_SDMA_TXREQ_S_ABORTED;
288 if (txp->flags & IPATH_SDMA_TXREQ_F_VL15)
289 vl15_watchdog_deq(dd);
290 list_move_tail(&txp->list, &dd->ipath_sdma_notifylist);
294 tasklet_hi_schedule(&dd->ipath_sdma_notify_task);
296 /* reset our notion of head and tail */
297 dd->ipath_sdma_descq_tail = 0;
298 dd->ipath_sdma_descq_head = 0;
299 dd->ipath_sdma_head_dma[0] = 0;
300 dd->ipath_sdma_generation = 0;
301 dd->ipath_sdma_descq_removed = dd->ipath_sdma_descq_added;
303 /* Reset SendDmaLenGen */
304 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmalengen,
305 (u64) dd->ipath_sdma_descq_cnt | (1ULL << 18));
307 /* done with sdma state for a bit */
308 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
311 * Don't restart sdma here (with the exception
312 * below). Wait until link is up to ACTIVE. VL15 MADs
313 * used to bring the link up use PIO, and multiple link
314 * transitions otherwise cause the sdma engine to be
315 * stopped and started multiple times.
316 * The disable is done here, including the shadow,
317 * so the state is kept consistent.
318 * See ipath_restart_sdma() for the actual starting
321 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
322 dd->ipath_sendctrl &= ~INFINIPATH_S_SDMAENABLE;
323 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
325 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
326 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
328 /* make sure I see next message */
329 dd->ipath_sdma_abort_jiffies = 0;
332 * Not everything that takes SDMA offline is a link
333 * status change. If the link was up, restart SDMA.
335 if (dd->ipath_flags & IPATH_LINKACTIVE)
336 ipath_restart_sdma(dd);
343 * for now, keep spinning
344 * JAG - this is bad to just have default be a loop without
347 if (jiffies > dd->ipath_sdma_abort_jiffies) {
348 ipath_dbg("looping with status 0x%08lx\n",
349 dd->ipath_sdma_status);
350 dd->ipath_sdma_abort_jiffies = jiffies + 5 * HZ;
353 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
354 if (!test_bit(IPATH_SDMA_SHUTDOWN, &dd->ipath_sdma_status))
355 tasklet_hi_schedule(&dd->ipath_sdma_abort_task);
359 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
365 * This is called from interrupt context.
367 void ipath_sdma_intr(struct ipath_devdata *dd)
371 spin_lock_irqsave(&dd->ipath_sdma_lock, flags);
373 (void) ipath_sdma_make_progress(dd);
375 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
378 static int alloc_sdma(struct ipath_devdata *dd)
382 /* Allocate memory for SendDMA descriptor FIFO */
383 dd->ipath_sdma_descq = dma_alloc_coherent(&dd->pcidev->dev,
384 SDMA_DESCQ_SZ, &dd->ipath_sdma_descq_phys, GFP_KERNEL);
386 if (!dd->ipath_sdma_descq) {
387 ipath_dev_err(dd, "failed to allocate SendDMA descriptor "
393 dd->ipath_sdma_descq_cnt =
394 SDMA_DESCQ_SZ / sizeof(struct ipath_sdma_desc);
396 /* Allocate memory for DMA of head register to memory */
397 dd->ipath_sdma_head_dma = dma_alloc_coherent(&dd->pcidev->dev,
398 PAGE_SIZE, &dd->ipath_sdma_head_phys, GFP_KERNEL);
399 if (!dd->ipath_sdma_head_dma) {
400 ipath_dev_err(dd, "failed to allocate SendDMA head memory\n");
404 dd->ipath_sdma_head_dma[0] = 0;
406 init_timer(&dd->ipath_sdma_vl15_timer);
407 dd->ipath_sdma_vl15_timer.function = vl15_watchdog_timeout;
408 dd->ipath_sdma_vl15_timer.data = (unsigned long)dd;
409 atomic_set(&dd->ipath_sdma_vl15_count, 0);
414 dma_free_coherent(&dd->pcidev->dev, SDMA_DESCQ_SZ,
415 (void *)dd->ipath_sdma_descq, dd->ipath_sdma_descq_phys);
416 dd->ipath_sdma_descq = NULL;
417 dd->ipath_sdma_descq_phys = 0;
422 int setup_sdma(struct ipath_devdata *dd)
427 u64 senddmabufmask[3] = { 0 };
430 ret = alloc_sdma(dd);
434 if (!dd->ipath_sdma_descq) {
435 ipath_dev_err(dd, "SendDMA memory not allocated\n");
440 * Set initial status as if we had been up, then gone down.
441 * This lets initial start on transition to ACTIVE be the
442 * same as restart after link flap.
444 dd->ipath_sdma_status = IPATH_SDMA_ABORT_ABORTED;
445 dd->ipath_sdma_abort_jiffies = 0;
446 dd->ipath_sdma_generation = 0;
447 dd->ipath_sdma_descq_tail = 0;
448 dd->ipath_sdma_descq_head = 0;
449 dd->ipath_sdma_descq_removed = 0;
450 dd->ipath_sdma_descq_added = 0;
452 /* Set SendDmaBase */
453 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmabase,
454 dd->ipath_sdma_descq_phys);
455 /* Set SendDmaLenGen */
456 tmp64 = dd->ipath_sdma_descq_cnt;
457 tmp64 |= 1<<18; /* enable generation checking */
458 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmalengen, tmp64);
459 /* Set SendDmaTail */
460 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmatail,
461 dd->ipath_sdma_descq_tail);
462 /* Set SendDmaHeadAddr */
463 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmaheadaddr,
464 dd->ipath_sdma_head_phys);
467 * Reserve all the former "kernel" piobufs, using high number range
468 * so we get as many 4K buffers as possible
470 n = dd->ipath_piobcnt2k + dd->ipath_piobcnt4k;
471 i = dd->ipath_lastport_piobuf + dd->ipath_pioreserved;
472 ipath_chg_pioavailkernel(dd, i, n - i , 0);
474 unsigned word = i / 64;
475 unsigned bit = i & 63;
477 senddmabufmask[word] |= 1ULL << bit;
479 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmabufmask0,
481 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmabufmask1,
483 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmabufmask2,
486 INIT_LIST_HEAD(&dd->ipath_sdma_activelist);
487 INIT_LIST_HEAD(&dd->ipath_sdma_notifylist);
489 tasklet_init(&dd->ipath_sdma_notify_task, sdma_notify_task,
491 tasklet_init(&dd->ipath_sdma_abort_task, sdma_abort_task,
495 * No use to turn on SDMA here, as link is probably not ACTIVE
496 * Just mark it RUNNING and enable the interrupt, and let the
497 * ipath_restart_sdma() on link transition to ACTIVE actually
500 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
501 dd->ipath_sendctrl |= INFINIPATH_S_SDMAINTENABLE;
502 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, dd->ipath_sendctrl);
503 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
504 __set_bit(IPATH_SDMA_RUNNING, &dd->ipath_sdma_status);
505 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
511 void teardown_sdma(struct ipath_devdata *dd)
513 struct ipath_sdma_txreq *txp, *txpnext;
515 dma_addr_t sdma_head_phys = 0;
516 dma_addr_t sdma_descq_phys = 0;
517 void *sdma_descq = NULL;
518 void *sdma_head_dma = NULL;
520 spin_lock_irqsave(&dd->ipath_sdma_lock, flags);
521 __clear_bit(IPATH_SDMA_RUNNING, &dd->ipath_sdma_status);
522 __set_bit(IPATH_SDMA_ABORTING, &dd->ipath_sdma_status);
523 __set_bit(IPATH_SDMA_SHUTDOWN, &dd->ipath_sdma_status);
524 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
526 tasklet_kill(&dd->ipath_sdma_abort_task);
527 tasklet_kill(&dd->ipath_sdma_notify_task);
530 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
531 dd->ipath_sendctrl &= ~INFINIPATH_S_SDMAENABLE;
532 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
534 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
535 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
537 spin_lock_irqsave(&dd->ipath_sdma_lock, flags);
538 /* dequeue all "sent" requests */
539 list_for_each_entry_safe(txp, txpnext, &dd->ipath_sdma_activelist,
541 txp->callback_status = IPATH_SDMA_TXREQ_S_SHUTDOWN;
542 if (txp->flags & IPATH_SDMA_TXREQ_F_VL15)
543 vl15_watchdog_deq(dd);
544 list_move_tail(&txp->list, &dd->ipath_sdma_notifylist);
546 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
548 sdma_notify_taskbody(dd);
550 del_timer_sync(&dd->ipath_sdma_vl15_timer);
552 spin_lock_irqsave(&dd->ipath_sdma_lock, flags);
554 dd->ipath_sdma_abort_jiffies = 0;
556 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmabase, 0);
557 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmalengen, 0);
558 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmatail, 0);
559 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmaheadaddr, 0);
560 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmabufmask0, 0);
561 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmabufmask1, 0);
562 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmabufmask2, 0);
564 if (dd->ipath_sdma_head_dma) {
565 sdma_head_dma = (void *) dd->ipath_sdma_head_dma;
566 sdma_head_phys = dd->ipath_sdma_head_phys;
567 dd->ipath_sdma_head_dma = NULL;
568 dd->ipath_sdma_head_phys = 0;
571 if (dd->ipath_sdma_descq) {
572 sdma_descq = dd->ipath_sdma_descq;
573 sdma_descq_phys = dd->ipath_sdma_descq_phys;
574 dd->ipath_sdma_descq = NULL;
575 dd->ipath_sdma_descq_phys = 0;
578 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
581 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
582 sdma_head_dma, sdma_head_phys);
585 dma_free_coherent(&dd->pcidev->dev, SDMA_DESCQ_SZ,
586 sdma_descq, sdma_descq_phys);
590 * [Re]start SDMA, if we use it, and it's not already OK.
591 * This is called on transition to link ACTIVE, either the first or
594 void ipath_restart_sdma(struct ipath_devdata *dd)
599 if (!(dd->ipath_flags & IPATH_HAS_SEND_DMA))
603 * First, make sure we should, which is to say,
604 * check that we are "RUNNING" (not in teardown)
607 spin_lock_irqsave(&dd->ipath_sdma_lock, flags);
608 if (!test_bit(IPATH_SDMA_RUNNING, &dd->ipath_sdma_status)
609 || test_bit(IPATH_SDMA_SHUTDOWN, &dd->ipath_sdma_status))
612 __clear_bit(IPATH_SDMA_DISABLED, &dd->ipath_sdma_status);
613 __clear_bit(IPATH_SDMA_DISARMED, &dd->ipath_sdma_status);
614 __clear_bit(IPATH_SDMA_ABORTING, &dd->ipath_sdma_status);
616 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);
618 ipath_dbg("invalid attempt to restart SDMA, status 0x%08lx\n",
619 dd->ipath_sdma_status);
622 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
624 * First clear, just to be safe. Enable is only done
625 * in chip on 0->1 transition
627 dd->ipath_sendctrl &= ~INFINIPATH_S_SDMAENABLE;
628 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, dd->ipath_sendctrl);
629 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
630 dd->ipath_sendctrl |= INFINIPATH_S_SDMAENABLE;
631 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, dd->ipath_sendctrl);
632 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
633 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
635 /* notify upper layers */
636 ipath_ib_piobufavail(dd->verbs_dev);
642 static inline void make_sdma_desc(struct ipath_devdata *dd,
643 u64 *sdmadesc, u64 addr, u64 dwlen, u64 dwoffset)
646 /* SDmaPhyAddr[47:32] */
647 sdmadesc[1] = addr >> 32;
648 /* SDmaPhyAddr[31:0] */
649 sdmadesc[0] = (addr & 0xfffffffcULL) << 32;
650 /* SDmaGeneration[1:0] */
651 sdmadesc[0] |= (dd->ipath_sdma_generation & 3ULL) << 30;
652 /* SDmaDwordCount[10:0] */
653 sdmadesc[0] |= (dwlen & 0x7ffULL) << 16;
654 /* SDmaBufOffset[12:2] */
655 sdmadesc[0] |= dwoffset & 0x7ffULL;
659 * This function queues one IB packet onto the send DMA queue per call.
660 * The caller is responsible for checking:
661 * 1) The number of send DMA descriptor entries is less than the size of
662 * the descriptor queue.
663 * 2) The IB SGE addresses and lengths are 32-bit aligned
664 * (except possibly the last SGE's length)
665 * 3) The SGE addresses are suitable for passing to dma_map_single().
667 int ipath_sdma_verbs_send(struct ipath_devdata *dd,
668 struct ipath_sge_state *ss, u32 dwords,
669 struct ipath_verbs_txreq *tx)
673 struct ipath_sge *sge;
681 if ((tx->map_len + (dwords<<2)) > dd->ipath_ibmaxlen) {
682 ipath_dbg("packet size %X > ibmax %X, fail\n",
683 tx->map_len + (dwords<<2), dd->ipath_ibmaxlen);
688 spin_lock_irqsave(&dd->ipath_sdma_lock, flags);
691 if (unlikely(test_bit(IPATH_SDMA_ABORTING, &dd->ipath_sdma_status))) {
696 if (tx->txreq.sg_count > ipath_sdma_descq_freecnt(dd)) {
697 if (ipath_sdma_make_progress(dd))
703 addr = dma_map_single(&dd->pcidev->dev, tx->txreq.map_addr,
704 tx->map_len, DMA_TO_DEVICE);
705 if (dma_mapping_error(addr)) {
710 dwoffset = tx->map_len >> 2;
711 make_sdma_desc(dd, sdmadesc, (u64) addr, dwoffset, 0);
714 sdmadesc[0] |= 1ULL << 12;
715 if (tx->txreq.flags & IPATH_SDMA_TXREQ_F_USELARGEBUF)
716 sdmadesc[0] |= 1ULL << 14; /* SDmaUseLargeBuf */
718 /* write to the descq */
719 tail = dd->ipath_sdma_descq_tail;
720 descqp = &dd->ipath_sdma_descq[tail].qw[0];
721 *descqp++ = cpu_to_le64(sdmadesc[0]);
722 *descqp++ = cpu_to_le64(sdmadesc[1]);
724 if (tx->txreq.flags & IPATH_SDMA_TXREQ_F_FREEDESC)
725 tx->txreq.start_idx = tail;
727 /* increment the tail */
728 if (++tail == dd->ipath_sdma_descq_cnt) {
730 descqp = &dd->ipath_sdma_descq[0].qw[0];
731 ++dd->ipath_sdma_generation;
740 if (len > sge->length)
742 if (len > sge->sge_length)
743 len = sge->sge_length;
746 addr = dma_map_single(&dd->pcidev->dev, sge->vaddr, dw << 2,
748 make_sdma_desc(dd, sdmadesc, (u64) addr, dw, dwoffset);
749 /* SDmaUseLargeBuf has to be set in every descriptor */
750 if (tx->txreq.flags & IPATH_SDMA_TXREQ_F_USELARGEBUF)
751 sdmadesc[0] |= 1ULL << 14;
752 /* write to the descq */
753 *descqp++ = cpu_to_le64(sdmadesc[0]);
754 *descqp++ = cpu_to_le64(sdmadesc[1]);
756 /* increment the tail */
757 if (++tail == dd->ipath_sdma_descq_cnt) {
759 descqp = &dd->ipath_sdma_descq[0].qw[0];
760 ++dd->ipath_sdma_generation;
764 sge->sge_length -= len;
765 if (sge->sge_length == 0) {
767 *sge = *ss->sg_list++;
768 } else if (sge->length == 0 && sge->mr != NULL) {
769 if (++sge->n >= IPATH_SEGSZ) {
770 if (++sge->m >= sge->mr->mapsz)
775 sge->mr->map[sge->m]->segs[sge->n].vaddr;
777 sge->mr->map[sge->m]->segs[sge->n].length;
785 descqp = &dd->ipath_sdma_descq[dd->ipath_sdma_descq_cnt].qw[0];
788 descqp[0] |= __constant_cpu_to_le64(1ULL << 11);
789 if (tx->txreq.flags & IPATH_SDMA_TXREQ_F_INTREQ) {
791 descqp[0] |= __constant_cpu_to_le64(1ULL << 15);
794 /* Commit writes to memory and advance the tail on the chip */
796 ipath_write_kreg(dd, dd->ipath_kregs->kr_senddmatail, tail);
798 tx->txreq.next_descq_idx = tail;
799 tx->txreq.callback_status = IPATH_SDMA_TXREQ_S_OK;
800 dd->ipath_sdma_descq_tail = tail;
801 dd->ipath_sdma_descq_added += tx->txreq.sg_count;
802 list_add_tail(&tx->txreq.list, &dd->ipath_sdma_activelist);
803 if (tx->txreq.flags & IPATH_SDMA_TXREQ_F_VL15)
804 vl15_watchdog_enq(dd);
807 spin_unlock_irqrestore(&dd->ipath_sdma_lock, flags);