2 * Copyright (c) 2006, 2007, 2008, 2009 QLogic Corporation. All rights reserved.
3 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, 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
34 #include <linux/spinlock.h>
35 #include <linux/pci.h>
37 #include <linux/delay.h>
38 #include <linux/netdevice.h>
39 #include <linux/vmalloc.h>
40 #include <linux/module.h>
41 #include <linux/prefetch.h>
46 * The size has to be longer than this string, so we can append
47 * board/chip information to it in the init code.
49 const char ib_qib_version
[] = QIB_DRIVER_VERSION
"\n";
51 DEFINE_SPINLOCK(qib_devs_lock
);
52 LIST_HEAD(qib_dev_list
);
53 DEFINE_MUTEX(qib_mutex
); /* general driver use */
56 module_param_named(ibmtu
, qib_ibmtu
, uint
, S_IRUGO
);
57 MODULE_PARM_DESC(ibmtu
, "Set max IB MTU (0=2KB, 1=256, 2=512, ... 5=4096");
59 unsigned qib_compat_ddr_negotiate
= 1;
60 module_param_named(compat_ddr_negotiate
, qib_compat_ddr_negotiate
, uint
,
62 MODULE_PARM_DESC(compat_ddr_negotiate
,
63 "Attempt pre-IBTA 1.2 DDR speed negotiation");
65 MODULE_LICENSE("Dual BSD/GPL");
66 MODULE_AUTHOR("QLogic <support@qlogic.com>");
67 MODULE_DESCRIPTION("QLogic IB driver");
68 MODULE_VERSION(QIB_DRIVER_VERSION
);
71 * QIB_PIO_MAXIBHDR is the max IB header size allowed for in our
72 * PIO send buffers. This is well beyond anything currently
73 * defined in the InfiniBand spec.
75 #define QIB_PIO_MAXIBHDR 128
78 * QIB_MAX_PKT_RCV is the max # if packets processed per receive interrupt.
80 #define QIB_MAX_PKT_RECV 64
82 struct qlogic_ib_stats qib_stats
;
84 const char *qib_get_unit_name(int unit
)
86 static char iname
[16];
88 snprintf(iname
, sizeof iname
, "infinipath%u", unit
);
93 * Return count of units with at least one port ACTIVE.
95 int qib_count_active_units(void)
97 struct qib_devdata
*dd
;
98 struct qib_pportdata
*ppd
;
100 int pidx
, nunits_active
= 0;
102 spin_lock_irqsave(&qib_devs_lock
, flags
);
103 list_for_each_entry(dd
, &qib_dev_list
, list
) {
104 if (!(dd
->flags
& QIB_PRESENT
) || !dd
->kregbase
)
106 for (pidx
= 0; pidx
< dd
->num_pports
; ++pidx
) {
107 ppd
= dd
->pport
+ pidx
;
108 if (ppd
->lid
&& (ppd
->lflags
& (QIBL_LINKINIT
|
109 QIBL_LINKARMED
| QIBL_LINKACTIVE
))) {
115 spin_unlock_irqrestore(&qib_devs_lock
, flags
);
116 return nunits_active
;
120 * Return count of all units, optionally return in arguments
121 * the number of usable (present) units, and the number of
124 int qib_count_units(int *npresentp
, int *nupp
)
126 int nunits
= 0, npresent
= 0, nup
= 0;
127 struct qib_devdata
*dd
;
130 struct qib_pportdata
*ppd
;
132 spin_lock_irqsave(&qib_devs_lock
, flags
);
134 list_for_each_entry(dd
, &qib_dev_list
, list
) {
136 if ((dd
->flags
& QIB_PRESENT
) && dd
->kregbase
)
138 for (pidx
= 0; pidx
< dd
->num_pports
; ++pidx
) {
139 ppd
= dd
->pport
+ pidx
;
140 if (ppd
->lid
&& (ppd
->lflags
& (QIBL_LINKINIT
|
141 QIBL_LINKARMED
| QIBL_LINKACTIVE
)))
146 spin_unlock_irqrestore(&qib_devs_lock
, flags
);
149 *npresentp
= npresent
;
157 * qib_wait_linkstate - wait for an IB link state change to occur
158 * @dd: the qlogic_ib device
159 * @state: the state to wait for
160 * @msecs: the number of milliseconds to wait
162 * wait up to msecs milliseconds for IB link state change to occur for
163 * now, take the easy polling route. Currently used only by
164 * qib_set_linkstate. Returns 0 if state reached, otherwise
165 * -ETIMEDOUT state can have multiple states set, for any of several
168 int qib_wait_linkstate(struct qib_pportdata
*ppd
, u32 state
, int msecs
)
173 spin_lock_irqsave(&ppd
->lflags_lock
, flags
);
174 if (ppd
->state_wanted
) {
175 spin_unlock_irqrestore(&ppd
->lflags_lock
, flags
);
179 ppd
->state_wanted
= state
;
180 spin_unlock_irqrestore(&ppd
->lflags_lock
, flags
);
181 wait_event_interruptible_timeout(ppd
->state_wait
,
182 (ppd
->lflags
& state
),
183 msecs_to_jiffies(msecs
));
184 spin_lock_irqsave(&ppd
->lflags_lock
, flags
);
185 ppd
->state_wanted
= 0;
186 spin_unlock_irqrestore(&ppd
->lflags_lock
, flags
);
188 if (!(ppd
->lflags
& state
))
196 int qib_set_linkstate(struct qib_pportdata
*ppd
, u8 newstate
)
200 struct qib_devdata
*dd
= ppd
->dd
;
204 case QIB_IB_LINKDOWN_ONLY
:
205 dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_LSTATE
,
206 IB_LINKCMD_DOWN
| IB_LINKINITCMD_NOP
);
211 case QIB_IB_LINKDOWN
:
212 dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_LSTATE
,
213 IB_LINKCMD_DOWN
| IB_LINKINITCMD_POLL
);
218 case QIB_IB_LINKDOWN_SLEEP
:
219 dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_LSTATE
,
220 IB_LINKCMD_DOWN
| IB_LINKINITCMD_SLEEP
);
225 case QIB_IB_LINKDOWN_DISABLE
:
226 dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_LSTATE
,
227 IB_LINKCMD_DOWN
| IB_LINKINITCMD_DISABLE
);
233 if (ppd
->lflags
& QIBL_LINKARMED
) {
237 if (!(ppd
->lflags
& (QIBL_LINKINIT
| QIBL_LINKACTIVE
))) {
242 * Since the port can be ACTIVE when we ask for ARMED,
243 * clear QIBL_LINKV so we can wait for a transition.
244 * If the link isn't ARMED, then something else happened
245 * and there is no point waiting for ARMED.
247 spin_lock_irqsave(&ppd
->lflags_lock
, flags
);
248 ppd
->lflags
&= ~QIBL_LINKV
;
249 spin_unlock_irqrestore(&ppd
->lflags_lock
, flags
);
250 dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_LSTATE
,
251 IB_LINKCMD_ARMED
| IB_LINKINITCMD_NOP
);
255 case QIB_IB_LINKACTIVE
:
256 if (ppd
->lflags
& QIBL_LINKACTIVE
) {
260 if (!(ppd
->lflags
& QIBL_LINKARMED
)) {
264 dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_LSTATE
,
265 IB_LINKCMD_ACTIVE
| IB_LINKINITCMD_NOP
);
266 lstate
= QIBL_LINKACTIVE
;
273 ret
= qib_wait_linkstate(ppd
, lstate
, 10);
280 * Get address of eager buffer from it's index (allocated in chunks, not
283 static inline void *qib_get_egrbuf(const struct qib_ctxtdata
*rcd
, u32 etail
)
285 const u32 chunk
= etail
>> rcd
->rcvegrbufs_perchunk_shift
;
286 const u32 idx
= etail
& ((u32
)rcd
->rcvegrbufs_perchunk
- 1);
288 return rcd
->rcvegrbuf
[chunk
] + (idx
<< rcd
->dd
->rcvegrbufsize_shift
);
292 * Returns 1 if error was a CRC, else 0.
293 * Needed for some chip's synthesized error counters.
295 static u32
qib_rcv_hdrerr(struct qib_ctxtdata
*rcd
, struct qib_pportdata
*ppd
,
296 u32 ctxt
, u32 eflags
, u32 l
, u32 etail
,
297 __le32
*rhf_addr
, struct qib_message_header
*rhdr
)
301 if (eflags
& (QLOGIC_IB_RHF_H_ICRCERR
| QLOGIC_IB_RHF_H_VCRCERR
))
303 else if (eflags
== QLOGIC_IB_RHF_H_TIDERR
) {
304 /* For TIDERR and RC QPs premptively schedule a NAK */
305 struct qib_ib_header
*hdr
= (struct qib_ib_header
*) rhdr
;
306 struct qib_other_headers
*ohdr
= NULL
;
307 struct qib_ibport
*ibp
= &ppd
->ibport_data
;
308 struct qib_qp
*qp
= NULL
;
309 u32 tlen
= qib_hdrget_length_in_bytes(rhf_addr
);
310 u16 lid
= be16_to_cpu(hdr
->lrh
[1]);
311 int lnh
= be16_to_cpu(hdr
->lrh
[0]) & 3;
317 /* Sanity check packet */
321 if (lid
< QIB_MULTICAST_LID_BASE
) {
322 lid
&= ~((1 << ppd
->lmc
) - 1);
323 if (unlikely(lid
!= ppd
->lid
))
328 if (lnh
== QIB_LRH_BTH
)
330 else if (lnh
== QIB_LRH_GRH
) {
333 ohdr
= &hdr
->u
.l
.oth
;
334 if (hdr
->u
.l
.grh
.next_hdr
!= IB_GRH_NEXT_HDR
)
336 vtf
= be32_to_cpu(hdr
->u
.l
.grh
.version_tclass_flow
);
337 if ((vtf
>> IB_GRH_VERSION_SHIFT
) != IB_GRH_VERSION
)
342 /* Get opcode and PSN from packet */
343 opcode
= be32_to_cpu(ohdr
->bth
[0]);
345 psn
= be32_to_cpu(ohdr
->bth
[2]);
347 /* Get the destination QP number. */
348 qp_num
= be32_to_cpu(ohdr
->bth
[1]) & QIB_QPN_MASK
;
349 if (qp_num
!= QIB_MULTICAST_QPN
) {
351 qp
= qib_lookup_qpn(ibp
, qp_num
);
356 * Handle only RC QPs - for other QP types drop error
359 spin_lock(&qp
->r_lock
);
361 /* Check for valid receive state. */
362 if (!(ib_qib_state_ops
[qp
->state
] &
363 QIB_PROCESS_RECV_OK
)) {
368 switch (qp
->ibqp
.qp_type
) {
375 be32_to_cpu(ohdr
->bth
[0]));
379 /* Only deal with RDMA Writes for now */
381 IB_OPCODE_RC_RDMA_READ_RESPONSE_FIRST
) {
382 diff
= qib_cmp24(psn
, qp
->r_psn
);
383 if (!qp
->r_nak_state
&& diff
>= 0) {
387 /* Use the expected PSN. */
388 qp
->r_ack_psn
= qp
->r_psn
;
390 * Wait to send the sequence
391 * NAK until all packets
392 * in the receive queue have
394 * Otherwise, we end up
395 * propagating congestion.
397 if (list_empty(&qp
->rspwait
)) {
406 } /* Out of sequence NAK */
407 } /* QP Request NAKs */
414 /* For now don't handle any other QP types */
419 spin_unlock(&qp
->r_lock
);
421 * Notify qib_destroy_qp() if it is waiting
424 if (atomic_dec_and_test(&qp
->refcount
))
427 } /* Valid packet with TIDErr */
434 * qib_kreceive - receive a packet
435 * @rcd: the qlogic_ib context
436 * @llic: gets count of good packets needed to clear lli,
437 * (used with chips that need need to track crcs for lli)
439 * called from interrupt handler for errors or receive interrupt
440 * Returns number of CRC error packets, needed by some chips for
441 * local link integrity tracking. crcs are adjusted down by following
442 * good packets, if any, and count of good packets is also tracked.
444 u32
qib_kreceive(struct qib_ctxtdata
*rcd
, u32
*llic
, u32
*npkts
)
446 struct qib_devdata
*dd
= rcd
->dd
;
447 struct qib_pportdata
*ppd
= rcd
->ppd
;
450 const u32 rsize
= dd
->rcvhdrentsize
; /* words */
451 const u32 maxcnt
= dd
->rcvhdrcnt
* rsize
; /* words */
452 u32 etail
= -1, l
, hdrqtail
;
453 struct qib_message_header
*hdr
;
454 u32 eflags
, etype
, tlen
, i
= 0, updegr
= 0, crcs
= 0;
457 struct qib_qp
*qp
, *nqp
;
460 rhf_addr
= (__le32
*) rcd
->rcvhdrq
+ l
+ dd
->rhf_offset
;
461 if (dd
->flags
& QIB_NODMA_RTAIL
) {
462 u32 seq
= qib_hdrget_seq(rhf_addr
);
463 if (seq
!= rcd
->seq_cnt
)
467 hdrqtail
= qib_get_rcvhdrtail(rcd
);
470 smp_rmb(); /* prevent speculative reads of dma'ed hdrq */
473 for (last
= 0, i
= 1; !last
; i
+= !last
) {
474 hdr
= dd
->f_get_msgheader(dd
, rhf_addr
);
475 eflags
= qib_hdrget_err_flags(rhf_addr
);
476 etype
= qib_hdrget_rcv_type(rhf_addr
);
478 tlen
= qib_hdrget_length_in_bytes(rhf_addr
);
480 if ((dd
->flags
& QIB_NODMA_RTAIL
) ?
481 qib_hdrget_use_egr_buf(rhf_addr
) :
482 (etype
!= RCVHQ_RCV_TYPE_EXPECTED
)) {
483 etail
= qib_hdrget_index(rhf_addr
);
485 if (tlen
> sizeof(*hdr
) ||
486 etype
>= RCVHQ_RCV_TYPE_NON_KD
) {
487 ebuf
= qib_get_egrbuf(rcd
, etail
);
488 prefetch_range(ebuf
, tlen
- sizeof(*hdr
));
492 u16 lrh_len
= be16_to_cpu(hdr
->lrh
[2]) << 2;
494 if (lrh_len
!= tlen
) {
495 qib_stats
.sps_lenerrs
++;
499 if (etype
== RCVHQ_RCV_TYPE_NON_KD
&& !eflags
&&
501 tlen
> (dd
->rcvhdrentsize
- 2 + 1 -
502 qib_hdrget_offset(rhf_addr
)) << 2) {
507 * Both tiderr and qibhdrerr are set for all plain IB
508 * packets; only qibhdrerr should be set.
510 if (unlikely(eflags
))
511 crcs
+= qib_rcv_hdrerr(rcd
, ppd
, rcd
->ctxt
, eflags
, l
,
512 etail
, rhf_addr
, hdr
);
513 else if (etype
== RCVHQ_RCV_TYPE_NON_KD
) {
514 qib_ib_rcv(rcd
, hdr
, ebuf
, tlen
);
517 else if (llic
&& *llic
)
524 if (i
== QIB_MAX_PKT_RECV
)
527 rhf_addr
= (__le32
*) rcd
->rcvhdrq
+ l
+ dd
->rhf_offset
;
528 if (dd
->flags
& QIB_NODMA_RTAIL
) {
529 u32 seq
= qib_hdrget_seq(rhf_addr
);
531 if (++rcd
->seq_cnt
> 13)
533 if (seq
!= rcd
->seq_cnt
)
535 } else if (l
== hdrqtail
)
538 * Update head regs etc., every 16 packets, if not last pkt,
539 * to help prevent rcvhdrq overflows, when many packets
540 * are processed and queue is nearly full.
541 * Don't request an interrupt for intermediate updates.
544 if (!last
&& !(i
& 0xf)) {
545 dd
->f_update_usrhead(rcd
, lval
, updegr
, etail
, i
);
550 * Notify qib_destroy_qp() if it is waiting
551 * for lookaside_qp to finish.
553 if (rcd
->lookaside_qp
) {
554 if (atomic_dec_and_test(&rcd
->lookaside_qp
->refcount
))
555 wake_up(&rcd
->lookaside_qp
->wait
);
556 rcd
->lookaside_qp
= NULL
;
563 * Iterate over all QPs waiting to respond.
564 * The list won't change since the IRQ is only run on one CPU.
566 list_for_each_entry_safe(qp
, nqp
, &rcd
->qp_wait_list
, rspwait
) {
567 list_del_init(&qp
->rspwait
);
568 if (qp
->r_flags
& QIB_R_RSP_NAK
) {
569 qp
->r_flags
&= ~QIB_R_RSP_NAK
;
572 if (qp
->r_flags
& QIB_R_RSP_SEND
) {
575 qp
->r_flags
&= ~QIB_R_RSP_SEND
;
576 spin_lock_irqsave(&qp
->s_lock
, flags
);
577 if (ib_qib_state_ops
[qp
->state
] &
578 QIB_PROCESS_OR_FLUSH_SEND
)
579 qib_schedule_send(qp
);
580 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
582 if (atomic_dec_and_test(&qp
->refcount
))
587 /* Report number of packets consumed */
592 * Always write head at end, and setup rcv interrupt, even
593 * if no packets were processed.
595 lval
= (u64
)rcd
->head
| dd
->rhdrhead_intr_off
;
596 dd
->f_update_usrhead(rcd
, lval
, updegr
, etail
, i
);
601 * qib_set_mtu - set the MTU
602 * @ppd: the perport data
605 * We can handle "any" incoming size, the issue here is whether we
606 * need to restrict our outgoing size. For now, we don't do any
607 * sanity checking on this, and we don't deal with what happens to
608 * programs that are already running when the size changes.
609 * NOTE: changing the MTU will usually cause the IBC to go back to
612 int qib_set_mtu(struct qib_pportdata
*ppd
, u16 arg
)
617 if (arg
!= 256 && arg
!= 512 && arg
!= 1024 && arg
!= 2048 &&
622 chk
= ib_mtu_enum_to_int(qib_ibmtu
);
623 if (chk
> 0 && arg
> chk
) {
628 piosize
= ppd
->ibmaxlen
;
631 if (arg
>= (piosize
- QIB_PIO_MAXIBHDR
)) {
632 /* Only if it's not the initial value (or reset to it) */
633 if (piosize
!= ppd
->init_ibmaxlen
) {
634 if (arg
> piosize
&& arg
<= ppd
->init_ibmaxlen
)
635 piosize
= ppd
->init_ibmaxlen
- 2 * sizeof(u32
);
636 ppd
->ibmaxlen
= piosize
;
638 } else if ((arg
+ QIB_PIO_MAXIBHDR
) != ppd
->ibmaxlen
) {
639 piosize
= arg
+ QIB_PIO_MAXIBHDR
- 2 * sizeof(u32
);
640 ppd
->ibmaxlen
= piosize
;
643 ppd
->dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_MTU
, 0);
651 int qib_set_lid(struct qib_pportdata
*ppd
, u32 lid
, u8 lmc
)
653 struct qib_devdata
*dd
= ppd
->dd
;
657 dd
->f_set_ib_cfg(ppd
, QIB_IB_CFG_LIDLMC
,
658 lid
| (~((1U << lmc
) - 1)) << 16);
660 qib_devinfo(dd
->pcidev
, "IB%u:%u got a lid: 0x%x\n",
661 dd
->unit
, ppd
->port
, lid
);
667 * Following deal with the "obviously simple" task of overriding the state
668 * of the LEDS, which normally indicate link physical and logical status.
669 * The complications arise in dealing with different hardware mappings
670 * and the board-dependent routine being called from interrupts.
671 * and then there's the requirement to _flash_ them.
673 #define LED_OVER_FREQ_SHIFT 8
674 #define LED_OVER_FREQ_MASK (0xFF<<LED_OVER_FREQ_SHIFT)
675 /* Below is "non-zero" to force override, but both actual LEDs are off */
676 #define LED_OVER_BOTH_OFF (8)
678 static void qib_run_led_override(unsigned long opaque
)
680 struct qib_pportdata
*ppd
= (struct qib_pportdata
*)opaque
;
681 struct qib_devdata
*dd
= ppd
->dd
;
685 if (!(dd
->flags
& QIB_INITTED
))
688 ph_idx
= ppd
->led_override_phase
++ & 1;
689 ppd
->led_override
= ppd
->led_override_vals
[ph_idx
];
690 timeoff
= ppd
->led_override_timeoff
;
692 dd
->f_setextled(ppd
, 1);
694 * don't re-fire the timer if user asked for it to be off; we let
695 * it fire one more time after they turn it off to simplify
697 if (ppd
->led_override_vals
[0] || ppd
->led_override_vals
[1])
698 mod_timer(&ppd
->led_override_timer
, jiffies
+ timeoff
);
701 void qib_set_led_override(struct qib_pportdata
*ppd
, unsigned int val
)
703 struct qib_devdata
*dd
= ppd
->dd
;
706 if (!(dd
->flags
& QIB_INITTED
))
709 /* First check if we are blinking. If not, use 1HZ polling */
711 freq
= (val
& LED_OVER_FREQ_MASK
) >> LED_OVER_FREQ_SHIFT
;
714 /* For blink, set each phase from one nybble of val */
715 ppd
->led_override_vals
[0] = val
& 0xF;
716 ppd
->led_override_vals
[1] = (val
>> 4) & 0xF;
717 timeoff
= (HZ
<< 4)/freq
;
719 /* Non-blink set both phases the same. */
720 ppd
->led_override_vals
[0] = val
& 0xF;
721 ppd
->led_override_vals
[1] = val
& 0xF;
723 ppd
->led_override_timeoff
= timeoff
;
726 * If the timer has not already been started, do so. Use a "quick"
727 * timeout so the function will be called soon, to look at our request.
729 if (atomic_inc_return(&ppd
->led_override_timer_active
) == 1) {
730 /* Need to start timer */
731 init_timer(&ppd
->led_override_timer
);
732 ppd
->led_override_timer
.function
= qib_run_led_override
;
733 ppd
->led_override_timer
.data
= (unsigned long) ppd
;
734 ppd
->led_override_timer
.expires
= jiffies
+ 1;
735 add_timer(&ppd
->led_override_timer
);
737 if (ppd
->led_override_vals
[0] || ppd
->led_override_vals
[1])
738 mod_timer(&ppd
->led_override_timer
, jiffies
+ 1);
739 atomic_dec(&ppd
->led_override_timer_active
);
744 * qib_reset_device - reset the chip if possible
745 * @unit: the device to reset
747 * Whether or not reset is successful, we attempt to re-initialize the chip
748 * (that is, much like a driver unload/reload). We clear the INITTED flag
749 * so that the various entry points will fail until we reinitialize. For
750 * now, we only allow this if no user contexts are open that use chip resources
752 int qib_reset_device(int unit
)
755 struct qib_devdata
*dd
= qib_lookup(unit
);
756 struct qib_pportdata
*ppd
;
765 qib_devinfo(dd
->pcidev
, "Reset on unit %u requested\n", unit
);
767 if (!dd
->kregbase
|| !(dd
->flags
& QIB_PRESENT
)) {
768 qib_devinfo(dd
->pcidev
,
769 "Invalid unit number %u or not initialized or not present\n",
775 spin_lock_irqsave(&dd
->uctxt_lock
, flags
);
777 for (i
= dd
->first_user_ctxt
; i
< dd
->cfgctxts
; i
++) {
778 if (!dd
->rcd
[i
] || !dd
->rcd
[i
]->cnt
)
780 spin_unlock_irqrestore(&dd
->uctxt_lock
, flags
);
784 spin_unlock_irqrestore(&dd
->uctxt_lock
, flags
);
786 for (pidx
= 0; pidx
< dd
->num_pports
; ++pidx
) {
787 ppd
= dd
->pport
+ pidx
;
788 if (atomic_read(&ppd
->led_override_timer_active
)) {
789 /* Need to stop LED timer, _then_ shut off LEDs */
790 del_timer_sync(&ppd
->led_override_timer
);
791 atomic_set(&ppd
->led_override_timer_active
, 0);
794 /* Shut off LEDs after we are sure timer is not running */
795 ppd
->led_override
= LED_OVER_BOTH_OFF
;
796 dd
->f_setextled(ppd
, 0);
797 if (dd
->flags
& QIB_HAS_SEND_DMA
)
798 qib_teardown_sdma(ppd
);
801 ret
= dd
->f_reset(dd
);
803 ret
= qib_init(dd
, 1);
808 "Reinitialize unit %u after reset failed with %d\n",
811 qib_devinfo(dd
->pcidev
,
812 "Reinitialized unit %u after resetting\n",