qib_driver.c 21 KB

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