qib_driver.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. /*
  2. * Copyright (c) 2006, 2007, 2008, 2009 QLogic Corporation. All rights reserved.
  3. * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
  4. *
  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:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * - Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  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.
  23. *
  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
  31. * SOFTWARE.
  32. */
  33. #include <linux/spinlock.h>
  34. #include <linux/pci.h>
  35. #include <linux/io.h>
  36. #include <linux/delay.h>
  37. #include <linux/netdevice.h>
  38. #include <linux/vmalloc.h>
  39. #include "qib.h"
  40. /*
  41. * The size has to be longer than this string, so we can append
  42. * board/chip information to it in the init code.
  43. */
  44. const char ib_qib_version[] = QIB_IDSTR "\n";
  45. DEFINE_SPINLOCK(qib_devs_lock);
  46. LIST_HEAD(qib_dev_list);
  47. DEFINE_MUTEX(qib_mutex); /* general driver use */
  48. unsigned qib_ibmtu;
  49. module_param_named(ibmtu, qib_ibmtu, uint, S_IRUGO);
  50. MODULE_PARM_DESC(ibmtu, "Set max IB MTU (0=2KB, 1=256, 2=512, ... 5=4096");
  51. unsigned qib_compat_ddr_negotiate = 1;
  52. module_param_named(compat_ddr_negotiate, qib_compat_ddr_negotiate, uint,
  53. S_IWUSR | S_IRUGO);
  54. MODULE_PARM_DESC(compat_ddr_negotiate,
  55. "Attempt pre-IBTA 1.2 DDR speed negotiation");
  56. MODULE_LICENSE("Dual BSD/GPL");
  57. MODULE_AUTHOR("QLogic <support@qlogic.com>");
  58. MODULE_DESCRIPTION("QLogic IB driver");
  59. /*
  60. * QIB_PIO_MAXIBHDR is the max IB header size allowed for in our
  61. * PIO send buffers. This is well beyond anything currently
  62. * defined in the InfiniBand spec.
  63. */
  64. #define QIB_PIO_MAXIBHDR 128
  65. /*
  66. * QIB_MAX_PKT_RCV is the max # if packets processed per receive interrupt.
  67. */
  68. #define QIB_MAX_PKT_RECV 64
  69. struct qlogic_ib_stats qib_stats;
  70. const char *qib_get_unit_name(int unit)
  71. {
  72. static char iname[16];
  73. snprintf(iname, sizeof iname, "infinipath%u", unit);
  74. return iname;
  75. }
  76. /*
  77. * Return count of units with at least one port ACTIVE.
  78. */
  79. int qib_count_active_units(void)
  80. {
  81. struct qib_devdata *dd;
  82. struct qib_pportdata *ppd;
  83. unsigned long flags;
  84. int pidx, nunits_active = 0;
  85. spin_lock_irqsave(&qib_devs_lock, flags);
  86. list_for_each_entry(dd, &qib_dev_list, list) {
  87. if (!(dd->flags & QIB_PRESENT) || !dd->kregbase)
  88. continue;
  89. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  90. ppd = dd->pport + pidx;
  91. if (ppd->lid && (ppd->lflags & (QIBL_LINKINIT |
  92. QIBL_LINKARMED | QIBL_LINKACTIVE))) {
  93. nunits_active++;
  94. break;
  95. }
  96. }
  97. }
  98. spin_unlock_irqrestore(&qib_devs_lock, flags);
  99. return nunits_active;
  100. }
  101. /*
  102. * Return count of all units, optionally return in arguments
  103. * the number of usable (present) units, and the number of
  104. * ports that are up.
  105. */
  106. int qib_count_units(int *npresentp, int *nupp)
  107. {
  108. int nunits = 0, npresent = 0, nup = 0;
  109. struct qib_devdata *dd;
  110. unsigned long flags;
  111. int pidx;
  112. struct qib_pportdata *ppd;
  113. spin_lock_irqsave(&qib_devs_lock, flags);
  114. list_for_each_entry(dd, &qib_dev_list, list) {
  115. nunits++;
  116. if ((dd->flags & QIB_PRESENT) && dd->kregbase)
  117. npresent++;
  118. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  119. ppd = dd->pport + pidx;
  120. if (ppd->lid && (ppd->lflags & (QIBL_LINKINIT |
  121. QIBL_LINKARMED | QIBL_LINKACTIVE)))
  122. nup++;
  123. }
  124. }
  125. spin_unlock_irqrestore(&qib_devs_lock, flags);
  126. if (npresentp)
  127. *npresentp = npresent;
  128. if (nupp)
  129. *nupp = nup;
  130. return nunits;
  131. }
  132. /**
  133. * qib_wait_linkstate - wait for an IB link state change to occur
  134. * @dd: the qlogic_ib device
  135. * @state: the state to wait for
  136. * @msecs: the number of milliseconds to wait
  137. *
  138. * wait up to msecs milliseconds for IB link state change to occur for
  139. * now, take the easy polling route. Currently used only by
  140. * qib_set_linkstate. Returns 0 if state reached, otherwise
  141. * -ETIMEDOUT state can have multiple states set, for any of several
  142. * transitions.
  143. */
  144. int qib_wait_linkstate(struct qib_pportdata *ppd, u32 state, int msecs)
  145. {
  146. int ret;
  147. unsigned long flags;
  148. spin_lock_irqsave(&ppd->lflags_lock, flags);
  149. if (ppd->state_wanted) {
  150. spin_unlock_irqrestore(&ppd->lflags_lock, flags);
  151. ret = -EBUSY;
  152. goto bail;
  153. }
  154. ppd->state_wanted = state;
  155. spin_unlock_irqrestore(&ppd->lflags_lock, flags);
  156. wait_event_interruptible_timeout(ppd->state_wait,
  157. (ppd->lflags & state),
  158. msecs_to_jiffies(msecs));
  159. spin_lock_irqsave(&ppd->lflags_lock, flags);
  160. ppd->state_wanted = 0;
  161. spin_unlock_irqrestore(&ppd->lflags_lock, flags);
  162. if (!(ppd->lflags & state))
  163. ret = -ETIMEDOUT;
  164. else
  165. ret = 0;
  166. bail:
  167. return ret;
  168. }
  169. int qib_set_linkstate(struct qib_pportdata *ppd, u8 newstate)
  170. {
  171. u32 lstate;
  172. int ret;
  173. struct qib_devdata *dd = ppd->dd;
  174. unsigned long flags;
  175. switch (newstate) {
  176. case QIB_IB_LINKDOWN_ONLY:
  177. dd->f_set_ib_cfg(ppd, QIB_IB_CFG_LSTATE,
  178. IB_LINKCMD_DOWN | IB_LINKINITCMD_NOP);
  179. /* don't wait */
  180. ret = 0;
  181. goto bail;
  182. case QIB_IB_LINKDOWN:
  183. dd->f_set_ib_cfg(ppd, QIB_IB_CFG_LSTATE,
  184. IB_LINKCMD_DOWN | IB_LINKINITCMD_POLL);
  185. /* don't wait */
  186. ret = 0;
  187. goto bail;
  188. case QIB_IB_LINKDOWN_SLEEP:
  189. dd->f_set_ib_cfg(ppd, QIB_IB_CFG_LSTATE,
  190. IB_LINKCMD_DOWN | IB_LINKINITCMD_SLEEP);
  191. /* don't wait */
  192. ret = 0;
  193. goto bail;
  194. case QIB_IB_LINKDOWN_DISABLE:
  195. dd->f_set_ib_cfg(ppd, QIB_IB_CFG_LSTATE,
  196. IB_LINKCMD_DOWN | IB_LINKINITCMD_DISABLE);
  197. /* don't wait */
  198. ret = 0;
  199. goto bail;
  200. case QIB_IB_LINKARM:
  201. if (ppd->lflags & QIBL_LINKARMED) {
  202. ret = 0;
  203. goto bail;
  204. }
  205. if (!(ppd->lflags & (QIBL_LINKINIT | QIBL_LINKACTIVE))) {
  206. ret = -EINVAL;
  207. goto bail;
  208. }
  209. /*
  210. * Since the port can be ACTIVE when we ask for ARMED,
  211. * clear QIBL_LINKV so we can wait for a transition.
  212. * If the link isn't ARMED, then something else happened
  213. * and there is no point waiting for ARMED.
  214. */
  215. spin_lock_irqsave(&ppd->lflags_lock, flags);
  216. ppd->lflags &= ~QIBL_LINKV;
  217. spin_unlock_irqrestore(&ppd->lflags_lock, flags);
  218. dd->f_set_ib_cfg(ppd, QIB_IB_CFG_LSTATE,
  219. IB_LINKCMD_ARMED | IB_LINKINITCMD_NOP);
  220. lstate = QIBL_LINKV;
  221. break;
  222. case QIB_IB_LINKACTIVE:
  223. if (ppd->lflags & QIBL_LINKACTIVE) {
  224. ret = 0;
  225. goto bail;
  226. }
  227. if (!(ppd->lflags & QIBL_LINKARMED)) {
  228. ret = -EINVAL;
  229. goto bail;
  230. }
  231. dd->f_set_ib_cfg(ppd, QIB_IB_CFG_LSTATE,
  232. IB_LINKCMD_ACTIVE | IB_LINKINITCMD_NOP);
  233. lstate = QIBL_LINKACTIVE;
  234. break;
  235. default:
  236. ret = -EINVAL;
  237. goto bail;
  238. }
  239. ret = qib_wait_linkstate(ppd, lstate, 10);
  240. bail:
  241. return ret;
  242. }
  243. /*
  244. * Get address of eager buffer from it's index (allocated in chunks, not
  245. * contiguous).
  246. */
  247. static inline void *qib_get_egrbuf(const struct qib_ctxtdata *rcd, u32 etail)
  248. {
  249. const u32 chunk = etail / rcd->rcvegrbufs_perchunk;
  250. const u32 idx = etail % rcd->rcvegrbufs_perchunk;
  251. return rcd->rcvegrbuf[chunk] + idx * rcd->dd->rcvegrbufsize;
  252. }
  253. /*
  254. * Returns 1 if error was a CRC, else 0.
  255. * Needed for some chip's synthesized error counters.
  256. */
  257. static u32 qib_rcv_hdrerr(struct qib_ctxtdata *rcd, struct qib_pportdata *ppd,
  258. u32 ctxt, u32 eflags, u32 l, u32 etail,
  259. __le32 *rhf_addr, struct qib_message_header *rhdr)
  260. {
  261. u32 ret = 0;
  262. if (eflags & (QLOGIC_IB_RHF_H_ICRCERR | QLOGIC_IB_RHF_H_VCRCERR))
  263. ret = 1;
  264. else if (eflags == QLOGIC_IB_RHF_H_TIDERR) {
  265. /* For TIDERR and RC QPs premptively schedule a NAK */
  266. struct qib_ib_header *hdr = (struct qib_ib_header *) rhdr;
  267. struct qib_other_headers *ohdr = NULL;
  268. struct qib_ibport *ibp = &ppd->ibport_data;
  269. struct qib_qp *qp = NULL;
  270. u32 tlen = qib_hdrget_length_in_bytes(rhf_addr);
  271. u16 lid = be16_to_cpu(hdr->lrh[1]);
  272. int lnh = be16_to_cpu(hdr->lrh[0]) & 3;
  273. u32 qp_num;
  274. u32 opcode;
  275. u32 psn;
  276. int diff;
  277. unsigned long flags;
  278. /* Sanity check packet */
  279. if (tlen < 24)
  280. goto drop;
  281. if (lid < QIB_MULTICAST_LID_BASE) {
  282. lid &= ~((1 << ppd->lmc) - 1);
  283. if (unlikely(lid != ppd->lid))
  284. goto drop;
  285. }
  286. /* Check for GRH */
  287. if (lnh == QIB_LRH_BTH)
  288. ohdr = &hdr->u.oth;
  289. else if (lnh == QIB_LRH_GRH) {
  290. u32 vtf;
  291. ohdr = &hdr->u.l.oth;
  292. if (hdr->u.l.grh.next_hdr != IB_GRH_NEXT_HDR)
  293. goto drop;
  294. vtf = be32_to_cpu(hdr->u.l.grh.version_tclass_flow);
  295. if ((vtf >> IB_GRH_VERSION_SHIFT) != IB_GRH_VERSION)
  296. goto drop;
  297. } else
  298. goto drop;
  299. /* Get opcode and PSN from packet */
  300. opcode = be32_to_cpu(ohdr->bth[0]);
  301. opcode >>= 24;
  302. psn = be32_to_cpu(ohdr->bth[2]);
  303. /* Get the destination QP number. */
  304. qp_num = be32_to_cpu(ohdr->bth[1]) & QIB_QPN_MASK;
  305. if (qp_num != QIB_MULTICAST_QPN) {
  306. int ruc_res;
  307. qp = qib_lookup_qpn(ibp, qp_num);
  308. if (!qp)
  309. goto drop;
  310. /*
  311. * Handle only RC QPs - for other QP types drop error
  312. * packet.
  313. */
  314. spin_lock(&qp->r_lock);
  315. /* Check for valid receive state. */
  316. if (!(ib_qib_state_ops[qp->state] &
  317. QIB_PROCESS_RECV_OK)) {
  318. ibp->n_pkt_drops++;
  319. goto unlock;
  320. }
  321. switch (qp->ibqp.qp_type) {
  322. case IB_QPT_RC:
  323. spin_lock_irqsave(&qp->s_lock, flags);
  324. ruc_res =
  325. qib_ruc_check_hdr(
  326. ibp, hdr,
  327. lnh == QIB_LRH_GRH,
  328. qp,
  329. be32_to_cpu(ohdr->bth[0]));
  330. if (ruc_res) {
  331. spin_unlock_irqrestore(&qp->s_lock,
  332. flags);
  333. goto unlock;
  334. }
  335. spin_unlock_irqrestore(&qp->s_lock, flags);
  336. /* Only deal with RDMA Writes for now */
  337. if (opcode <
  338. IB_OPCODE_RC_RDMA_READ_RESPONSE_FIRST) {
  339. diff = qib_cmp24(psn, qp->r_psn);
  340. if (!qp->r_nak_state && diff >= 0) {
  341. ibp->n_rc_seqnak++;
  342. qp->r_nak_state =
  343. IB_NAK_PSN_ERROR;
  344. /* Use the expected PSN. */
  345. qp->r_ack_psn = qp->r_psn;
  346. /*
  347. * Wait to send the sequence
  348. * NAK until all packets
  349. * in the receive queue have
  350. * been processed.
  351. * Otherwise, we end up
  352. * propagating congestion.
  353. */
  354. if (list_empty(&qp->rspwait)) {
  355. qp->r_flags |=
  356. QIB_R_RSP_NAK;
  357. atomic_inc(
  358. &qp->refcount);
  359. list_add_tail(
  360. &qp->rspwait,
  361. &rcd->qp_wait_list);
  362. }
  363. } /* Out of sequence NAK */
  364. } /* QP Request NAKs */
  365. break;
  366. case IB_QPT_SMI:
  367. case IB_QPT_GSI:
  368. case IB_QPT_UD:
  369. case IB_QPT_UC:
  370. default:
  371. /* For now don't handle any other QP types */
  372. break;
  373. }
  374. unlock:
  375. spin_unlock(&qp->r_lock);
  376. /*
  377. * Notify qib_destroy_qp() if it is waiting
  378. * for us to finish.
  379. */
  380. if (atomic_dec_and_test(&qp->refcount))
  381. wake_up(&qp->wait);
  382. } /* Unicast QP */
  383. } /* Valid packet with TIDErr */
  384. drop:
  385. return ret;
  386. }
  387. /*
  388. * qib_kreceive - receive a packet
  389. * @rcd: the qlogic_ib context
  390. * @llic: gets count of good packets needed to clear lli,
  391. * (used with chips that need need to track crcs for lli)
  392. *
  393. * called from interrupt handler for errors or receive interrupt
  394. * Returns number of CRC error packets, needed by some chips for
  395. * local link integrity tracking. crcs are adjusted down by following
  396. * good packets, if any, and count of good packets is also tracked.
  397. */
  398. u32 qib_kreceive(struct qib_ctxtdata *rcd, u32 *llic, u32 *npkts)
  399. {
  400. struct qib_devdata *dd = rcd->dd;
  401. struct qib_pportdata *ppd = rcd->ppd;
  402. __le32 *rhf_addr;
  403. void *ebuf;
  404. const u32 rsize = dd->rcvhdrentsize; /* words */
  405. const u32 maxcnt = dd->rcvhdrcnt * rsize; /* words */
  406. u32 etail = -1, l, hdrqtail;
  407. struct qib_message_header *hdr;
  408. u32 eflags, etype, tlen, i = 0, updegr = 0, crcs = 0;
  409. int last;
  410. u64 lval;
  411. struct qib_qp *qp, *nqp;
  412. l = rcd->head;
  413. rhf_addr = (__le32 *) rcd->rcvhdrq + l + dd->rhf_offset;
  414. if (dd->flags & QIB_NODMA_RTAIL) {
  415. u32 seq = qib_hdrget_seq(rhf_addr);
  416. if (seq != rcd->seq_cnt)
  417. goto bail;
  418. hdrqtail = 0;
  419. } else {
  420. hdrqtail = qib_get_rcvhdrtail(rcd);
  421. if (l == hdrqtail)
  422. goto bail;
  423. smp_rmb(); /* prevent speculative reads of dma'ed hdrq */
  424. }
  425. for (last = 0, i = 1; !last; i += !last) {
  426. hdr = dd->f_get_msgheader(dd, rhf_addr);
  427. eflags = qib_hdrget_err_flags(rhf_addr);
  428. etype = qib_hdrget_rcv_type(rhf_addr);
  429. /* total length */
  430. tlen = qib_hdrget_length_in_bytes(rhf_addr);
  431. ebuf = NULL;
  432. if ((dd->flags & QIB_NODMA_RTAIL) ?
  433. qib_hdrget_use_egr_buf(rhf_addr) :
  434. (etype != RCVHQ_RCV_TYPE_EXPECTED)) {
  435. etail = qib_hdrget_index(rhf_addr);
  436. updegr = 1;
  437. if (tlen > sizeof(*hdr) ||
  438. etype >= RCVHQ_RCV_TYPE_NON_KD)
  439. ebuf = qib_get_egrbuf(rcd, etail);
  440. }
  441. if (!eflags) {
  442. u16 lrh_len = be16_to_cpu(hdr->lrh[2]) << 2;
  443. if (lrh_len != tlen) {
  444. qib_stats.sps_lenerrs++;
  445. goto move_along;
  446. }
  447. }
  448. if (etype == RCVHQ_RCV_TYPE_NON_KD && !eflags &&
  449. ebuf == NULL &&
  450. tlen > (dd->rcvhdrentsize - 2 + 1 -
  451. qib_hdrget_offset(rhf_addr)) << 2) {
  452. goto move_along;
  453. }
  454. /*
  455. * Both tiderr and qibhdrerr are set for all plain IB
  456. * packets; only qibhdrerr should be set.
  457. */
  458. if (unlikely(eflags))
  459. crcs += qib_rcv_hdrerr(rcd, ppd, rcd->ctxt, eflags, l,
  460. etail, rhf_addr, hdr);
  461. else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
  462. qib_ib_rcv(rcd, hdr, ebuf, tlen);
  463. if (crcs)
  464. crcs--;
  465. else if (llic && *llic)
  466. --*llic;
  467. }
  468. move_along:
  469. l += rsize;
  470. if (l >= maxcnt)
  471. l = 0;
  472. if (i == QIB_MAX_PKT_RECV)
  473. last = 1;
  474. rhf_addr = (__le32 *) rcd->rcvhdrq + l + dd->rhf_offset;
  475. if (dd->flags & QIB_NODMA_RTAIL) {
  476. u32 seq = qib_hdrget_seq(rhf_addr);
  477. if (++rcd->seq_cnt > 13)
  478. rcd->seq_cnt = 1;
  479. if (seq != rcd->seq_cnt)
  480. last = 1;
  481. } else if (l == hdrqtail)
  482. last = 1;
  483. /*
  484. * Update head regs etc., every 16 packets, if not last pkt,
  485. * to help prevent rcvhdrq overflows, when many packets
  486. * are processed and queue is nearly full.
  487. * Don't request an interrupt for intermediate updates.
  488. */
  489. lval = l;
  490. if (!last && !(i & 0xf)) {
  491. dd->f_update_usrhead(rcd, lval, updegr, etail, i);
  492. updegr = 0;
  493. }
  494. }
  495. rcd->head = l;
  496. rcd->pkt_count += i;
  497. /*
  498. * Iterate over all QPs waiting to respond.
  499. * The list won't change since the IRQ is only run on one CPU.
  500. */
  501. list_for_each_entry_safe(qp, nqp, &rcd->qp_wait_list, rspwait) {
  502. list_del_init(&qp->rspwait);
  503. if (qp->r_flags & QIB_R_RSP_NAK) {
  504. qp->r_flags &= ~QIB_R_RSP_NAK;
  505. qib_send_rc_ack(qp);
  506. }
  507. if (qp->r_flags & QIB_R_RSP_SEND) {
  508. unsigned long flags;
  509. qp->r_flags &= ~QIB_R_RSP_SEND;
  510. spin_lock_irqsave(&qp->s_lock, flags);
  511. if (ib_qib_state_ops[qp->state] &
  512. QIB_PROCESS_OR_FLUSH_SEND)
  513. qib_schedule_send(qp);
  514. spin_unlock_irqrestore(&qp->s_lock, flags);
  515. }
  516. if (atomic_dec_and_test(&qp->refcount))
  517. wake_up(&qp->wait);
  518. }
  519. bail:
  520. /* Report number of packets consumed */
  521. if (npkts)
  522. *npkts = i;
  523. /*
  524. * Always write head at end, and setup rcv interrupt, even
  525. * if no packets were processed.
  526. */
  527. lval = (u64)rcd->head | dd->rhdrhead_intr_off;
  528. dd->f_update_usrhead(rcd, lval, updegr, etail, i);
  529. return crcs;
  530. }
  531. /**
  532. * qib_set_mtu - set the MTU
  533. * @ppd: the perport data
  534. * @arg: the new MTU
  535. *
  536. * We can handle "any" incoming size, the issue here is whether we
  537. * need to restrict our outgoing size. For now, we don't do any
  538. * sanity checking on this, and we don't deal with what happens to
  539. * programs that are already running when the size changes.
  540. * NOTE: changing the MTU will usually cause the IBC to go back to
  541. * link INIT state...
  542. */
  543. int qib_set_mtu(struct qib_pportdata *ppd, u16 arg)
  544. {
  545. u32 piosize;
  546. int ret, chk;
  547. if (arg != 256 && arg != 512 && arg != 1024 && arg != 2048 &&
  548. arg != 4096) {
  549. ret = -EINVAL;
  550. goto bail;
  551. }
  552. chk = ib_mtu_enum_to_int(qib_ibmtu);
  553. if (chk > 0 && arg > chk) {
  554. ret = -EINVAL;
  555. goto bail;
  556. }
  557. piosize = ppd->ibmaxlen;
  558. ppd->ibmtu = arg;
  559. if (arg >= (piosize - QIB_PIO_MAXIBHDR)) {
  560. /* Only if it's not the initial value (or reset to it) */
  561. if (piosize != ppd->init_ibmaxlen) {
  562. if (arg > piosize && arg <= ppd->init_ibmaxlen)
  563. piosize = ppd->init_ibmaxlen - 2 * sizeof(u32);
  564. ppd->ibmaxlen = piosize;
  565. }
  566. } else if ((arg + QIB_PIO_MAXIBHDR) != ppd->ibmaxlen) {
  567. piosize = arg + QIB_PIO_MAXIBHDR - 2 * sizeof(u32);
  568. ppd->ibmaxlen = piosize;
  569. }
  570. ppd->dd->f_set_ib_cfg(ppd, QIB_IB_CFG_MTU, 0);
  571. ret = 0;
  572. bail:
  573. return ret;
  574. }
  575. int qib_set_lid(struct qib_pportdata *ppd, u32 lid, u8 lmc)
  576. {
  577. struct qib_devdata *dd = ppd->dd;
  578. ppd->lid = lid;
  579. ppd->lmc = lmc;
  580. dd->f_set_ib_cfg(ppd, QIB_IB_CFG_LIDLMC,
  581. lid | (~((1U << lmc) - 1)) << 16);
  582. qib_devinfo(dd->pcidev, "IB%u:%u got a lid: 0x%x\n",
  583. dd->unit, ppd->port, lid);
  584. return 0;
  585. }
  586. /*
  587. * Following deal with the "obviously simple" task of overriding the state
  588. * of the LEDS, which normally indicate link physical and logical status.
  589. * The complications arise in dealing with different hardware mappings
  590. * and the board-dependent routine being called from interrupts.
  591. * and then there's the requirement to _flash_ them.
  592. */
  593. #define LED_OVER_FREQ_SHIFT 8
  594. #define LED_OVER_FREQ_MASK (0xFF<<LED_OVER_FREQ_SHIFT)
  595. /* Below is "non-zero" to force override, but both actual LEDs are off */
  596. #define LED_OVER_BOTH_OFF (8)
  597. static void qib_run_led_override(unsigned long opaque)
  598. {
  599. struct qib_pportdata *ppd = (struct qib_pportdata *)opaque;
  600. struct qib_devdata *dd = ppd->dd;
  601. int timeoff;
  602. int ph_idx;
  603. if (!(dd->flags & QIB_INITTED))
  604. return;
  605. ph_idx = ppd->led_override_phase++ & 1;
  606. ppd->led_override = ppd->led_override_vals[ph_idx];
  607. timeoff = ppd->led_override_timeoff;
  608. dd->f_setextled(ppd, 1);
  609. /*
  610. * don't re-fire the timer if user asked for it to be off; we let
  611. * it fire one more time after they turn it off to simplify
  612. */
  613. if (ppd->led_override_vals[0] || ppd->led_override_vals[1])
  614. mod_timer(&ppd->led_override_timer, jiffies + timeoff);
  615. }
  616. void qib_set_led_override(struct qib_pportdata *ppd, unsigned int val)
  617. {
  618. struct qib_devdata *dd = ppd->dd;
  619. int timeoff, freq;
  620. if (!(dd->flags & QIB_INITTED))
  621. return;
  622. /* First check if we are blinking. If not, use 1HZ polling */
  623. timeoff = HZ;
  624. freq = (val & LED_OVER_FREQ_MASK) >> LED_OVER_FREQ_SHIFT;
  625. if (freq) {
  626. /* For blink, set each phase from one nybble of val */
  627. ppd->led_override_vals[0] = val & 0xF;
  628. ppd->led_override_vals[1] = (val >> 4) & 0xF;
  629. timeoff = (HZ << 4)/freq;
  630. } else {
  631. /* Non-blink set both phases the same. */
  632. ppd->led_override_vals[0] = val & 0xF;
  633. ppd->led_override_vals[1] = val & 0xF;
  634. }
  635. ppd->led_override_timeoff = timeoff;
  636. /*
  637. * If the timer has not already been started, do so. Use a "quick"
  638. * timeout so the function will be called soon, to look at our request.
  639. */
  640. if (atomic_inc_return(&ppd->led_override_timer_active) == 1) {
  641. /* Need to start timer */
  642. init_timer(&ppd->led_override_timer);
  643. ppd->led_override_timer.function = qib_run_led_override;
  644. ppd->led_override_timer.data = (unsigned long) ppd;
  645. ppd->led_override_timer.expires = jiffies + 1;
  646. add_timer(&ppd->led_override_timer);
  647. } else {
  648. if (ppd->led_override_vals[0] || ppd->led_override_vals[1])
  649. mod_timer(&ppd->led_override_timer, jiffies + 1);
  650. atomic_dec(&ppd->led_override_timer_active);
  651. }
  652. }
  653. /**
  654. * qib_reset_device - reset the chip if possible
  655. * @unit: the device to reset
  656. *
  657. * Whether or not reset is successful, we attempt to re-initialize the chip
  658. * (that is, much like a driver unload/reload). We clear the INITTED flag
  659. * so that the various entry points will fail until we reinitialize. For
  660. * now, we only allow this if no user contexts are open that use chip resources
  661. */
  662. int qib_reset_device(int unit)
  663. {
  664. int ret, i;
  665. struct qib_devdata *dd = qib_lookup(unit);
  666. struct qib_pportdata *ppd;
  667. unsigned long flags;
  668. int pidx;
  669. if (!dd) {
  670. ret = -ENODEV;
  671. goto bail;
  672. }
  673. qib_devinfo(dd->pcidev, "Reset on unit %u requested\n", unit);
  674. if (!dd->kregbase || !(dd->flags & QIB_PRESENT)) {
  675. qib_devinfo(dd->pcidev, "Invalid unit number %u or "
  676. "not initialized or not present\n", unit);
  677. ret = -ENXIO;
  678. goto bail;
  679. }
  680. spin_lock_irqsave(&dd->uctxt_lock, flags);
  681. if (dd->rcd)
  682. for (i = dd->first_user_ctxt; i < dd->cfgctxts; i++) {
  683. if (!dd->rcd[i] || !dd->rcd[i]->cnt)
  684. continue;
  685. spin_unlock_irqrestore(&dd->uctxt_lock, flags);
  686. ret = -EBUSY;
  687. goto bail;
  688. }
  689. spin_unlock_irqrestore(&dd->uctxt_lock, flags);
  690. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  691. ppd = dd->pport + pidx;
  692. if (atomic_read(&ppd->led_override_timer_active)) {
  693. /* Need to stop LED timer, _then_ shut off LEDs */
  694. del_timer_sync(&ppd->led_override_timer);
  695. atomic_set(&ppd->led_override_timer_active, 0);
  696. }
  697. /* Shut off LEDs after we are sure timer is not running */
  698. ppd->led_override = LED_OVER_BOTH_OFF;
  699. dd->f_setextled(ppd, 0);
  700. if (dd->flags & QIB_HAS_SEND_DMA)
  701. qib_teardown_sdma(ppd);
  702. }
  703. ret = dd->f_reset(dd);
  704. if (ret == 1)
  705. ret = qib_init(dd, 1);
  706. else
  707. ret = -EAGAIN;
  708. if (ret)
  709. qib_dev_err(dd, "Reinitialize unit %u after "
  710. "reset failed with %d\n", unit, ret);
  711. else
  712. qib_devinfo(dd->pcidev, "Reinitialized unit %u after "
  713. "resetting\n", unit);
  714. bail:
  715. return ret;
  716. }