qib_init.c 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  1. /*
  2. * Copyright (c) 2012, 2013 Intel Corporation. All rights reserved.
  3. * Copyright (c) 2006 - 2012 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/pci.h>
  35. #include <linux/netdevice.h>
  36. #include <linux/vmalloc.h>
  37. #include <linux/delay.h>
  38. #include <linux/idr.h>
  39. #include <linux/module.h>
  40. #include <linux/printk.h>
  41. #ifdef CONFIG_INFINIBAND_QIB_DCA
  42. #include <linux/dca.h>
  43. #endif
  44. #include <rdma/rdma_vt.h>
  45. #include "qib.h"
  46. #include "qib_common.h"
  47. #include "qib_mad.h"
  48. #ifdef CONFIG_DEBUG_FS
  49. #include "qib_debugfs.h"
  50. #include "qib_verbs.h"
  51. #endif
  52. #undef pr_fmt
  53. #define pr_fmt(fmt) QIB_DRV_NAME ": " fmt
  54. /*
  55. * min buffers we want to have per context, after driver
  56. */
  57. #define QIB_MIN_USER_CTXT_BUFCNT 7
  58. #define QLOGIC_IB_R_SOFTWARE_MASK 0xFF
  59. #define QLOGIC_IB_R_SOFTWARE_SHIFT 24
  60. #define QLOGIC_IB_R_EMULATOR_MASK (1ULL<<62)
  61. /*
  62. * Number of ctxts we are configured to use (to allow for more pio
  63. * buffers per ctxt, etc.) Zero means use chip value.
  64. */
  65. ushort qib_cfgctxts;
  66. module_param_named(cfgctxts, qib_cfgctxts, ushort, S_IRUGO);
  67. MODULE_PARM_DESC(cfgctxts, "Set max number of contexts to use");
  68. unsigned qib_numa_aware;
  69. module_param_named(numa_aware, qib_numa_aware, uint, S_IRUGO);
  70. MODULE_PARM_DESC(numa_aware,
  71. "0 -> PSM allocation close to HCA, 1 -> PSM allocation local to process");
  72. /*
  73. * If set, do not write to any regs if avoidable, hack to allow
  74. * check for deranged default register values.
  75. */
  76. ushort qib_mini_init;
  77. module_param_named(mini_init, qib_mini_init, ushort, S_IRUGO);
  78. MODULE_PARM_DESC(mini_init, "If set, do minimal diag init");
  79. unsigned qib_n_krcv_queues;
  80. module_param_named(krcvqs, qib_n_krcv_queues, uint, S_IRUGO);
  81. MODULE_PARM_DESC(krcvqs, "number of kernel receive queues per IB port");
  82. unsigned qib_cc_table_size;
  83. module_param_named(cc_table_size, qib_cc_table_size, uint, S_IRUGO);
  84. MODULE_PARM_DESC(cc_table_size, "Congestion control table entries 0 (CCA disabled - default), min = 128, max = 1984");
  85. static void verify_interrupt(struct timer_list *);
  86. static struct idr qib_unit_table;
  87. u32 qib_cpulist_count;
  88. unsigned long *qib_cpulist;
  89. /* set number of contexts we'll actually use */
  90. void qib_set_ctxtcnt(struct qib_devdata *dd)
  91. {
  92. if (!qib_cfgctxts) {
  93. dd->cfgctxts = dd->first_user_ctxt + num_online_cpus();
  94. if (dd->cfgctxts > dd->ctxtcnt)
  95. dd->cfgctxts = dd->ctxtcnt;
  96. } else if (qib_cfgctxts < dd->num_pports)
  97. dd->cfgctxts = dd->ctxtcnt;
  98. else if (qib_cfgctxts <= dd->ctxtcnt)
  99. dd->cfgctxts = qib_cfgctxts;
  100. else
  101. dd->cfgctxts = dd->ctxtcnt;
  102. dd->freectxts = (dd->first_user_ctxt > dd->cfgctxts) ? 0 :
  103. dd->cfgctxts - dd->first_user_ctxt;
  104. }
  105. /*
  106. * Common code for creating the receive context array.
  107. */
  108. int qib_create_ctxts(struct qib_devdata *dd)
  109. {
  110. unsigned i;
  111. int local_node_id = pcibus_to_node(dd->pcidev->bus);
  112. if (local_node_id < 0)
  113. local_node_id = numa_node_id();
  114. dd->assigned_node_id = local_node_id;
  115. /*
  116. * Allocate full ctxtcnt array, rather than just cfgctxts, because
  117. * cleanup iterates across all possible ctxts.
  118. */
  119. dd->rcd = kcalloc(dd->ctxtcnt, sizeof(*dd->rcd), GFP_KERNEL);
  120. if (!dd->rcd)
  121. return -ENOMEM;
  122. /* create (one or more) kctxt */
  123. for (i = 0; i < dd->first_user_ctxt; ++i) {
  124. struct qib_pportdata *ppd;
  125. struct qib_ctxtdata *rcd;
  126. if (dd->skip_kctxt_mask & (1 << i))
  127. continue;
  128. ppd = dd->pport + (i % dd->num_pports);
  129. rcd = qib_create_ctxtdata(ppd, i, dd->assigned_node_id);
  130. if (!rcd) {
  131. qib_dev_err(dd,
  132. "Unable to allocate ctxtdata for Kernel ctxt, failing\n");
  133. kfree(dd->rcd);
  134. dd->rcd = NULL;
  135. return -ENOMEM;
  136. }
  137. rcd->pkeys[0] = QIB_DEFAULT_P_KEY;
  138. rcd->seq_cnt = 1;
  139. }
  140. return 0;
  141. }
  142. /*
  143. * Common code for user and kernel context setup.
  144. */
  145. struct qib_ctxtdata *qib_create_ctxtdata(struct qib_pportdata *ppd, u32 ctxt,
  146. int node_id)
  147. {
  148. struct qib_devdata *dd = ppd->dd;
  149. struct qib_ctxtdata *rcd;
  150. rcd = kzalloc_node(sizeof(*rcd), GFP_KERNEL, node_id);
  151. if (rcd) {
  152. INIT_LIST_HEAD(&rcd->qp_wait_list);
  153. rcd->node_id = node_id;
  154. rcd->ppd = ppd;
  155. rcd->dd = dd;
  156. rcd->cnt = 1;
  157. rcd->ctxt = ctxt;
  158. dd->rcd[ctxt] = rcd;
  159. #ifdef CONFIG_DEBUG_FS
  160. if (ctxt < dd->first_user_ctxt) { /* N/A for PSM contexts */
  161. rcd->opstats = kzalloc_node(sizeof(*rcd->opstats),
  162. GFP_KERNEL, node_id);
  163. if (!rcd->opstats) {
  164. kfree(rcd);
  165. qib_dev_err(dd,
  166. "Unable to allocate per ctxt stats buffer\n");
  167. return NULL;
  168. }
  169. }
  170. #endif
  171. dd->f_init_ctxt(rcd);
  172. /*
  173. * To avoid wasting a lot of memory, we allocate 32KB chunks
  174. * of physically contiguous memory, advance through it until
  175. * used up and then allocate more. Of course, we need
  176. * memory to store those extra pointers, now. 32KB seems to
  177. * be the most that is "safe" under memory pressure
  178. * (creating large files and then copying them over
  179. * NFS while doing lots of MPI jobs). The OOM killer can
  180. * get invoked, even though we say we can sleep and this can
  181. * cause significant system problems....
  182. */
  183. rcd->rcvegrbuf_size = 0x8000;
  184. rcd->rcvegrbufs_perchunk =
  185. rcd->rcvegrbuf_size / dd->rcvegrbufsize;
  186. rcd->rcvegrbuf_chunks = (rcd->rcvegrcnt +
  187. rcd->rcvegrbufs_perchunk - 1) /
  188. rcd->rcvegrbufs_perchunk;
  189. BUG_ON(!is_power_of_2(rcd->rcvegrbufs_perchunk));
  190. rcd->rcvegrbufs_perchunk_shift =
  191. ilog2(rcd->rcvegrbufs_perchunk);
  192. }
  193. return rcd;
  194. }
  195. /*
  196. * Common code for initializing the physical port structure.
  197. */
  198. int qib_init_pportdata(struct qib_pportdata *ppd, struct qib_devdata *dd,
  199. u8 hw_pidx, u8 port)
  200. {
  201. int size;
  202. ppd->dd = dd;
  203. ppd->hw_pidx = hw_pidx;
  204. ppd->port = port; /* IB port number, not index */
  205. spin_lock_init(&ppd->sdma_lock);
  206. spin_lock_init(&ppd->lflags_lock);
  207. spin_lock_init(&ppd->cc_shadow_lock);
  208. init_waitqueue_head(&ppd->state_wait);
  209. timer_setup(&ppd->symerr_clear_timer, qib_clear_symerror_on_linkup, 0);
  210. ppd->qib_wq = NULL;
  211. ppd->ibport_data.pmastats =
  212. alloc_percpu(struct qib_pma_counters);
  213. if (!ppd->ibport_data.pmastats)
  214. return -ENOMEM;
  215. ppd->ibport_data.rvp.rc_acks = alloc_percpu(u64);
  216. ppd->ibport_data.rvp.rc_qacks = alloc_percpu(u64);
  217. ppd->ibport_data.rvp.rc_delayed_comp = alloc_percpu(u64);
  218. if (!(ppd->ibport_data.rvp.rc_acks) ||
  219. !(ppd->ibport_data.rvp.rc_qacks) ||
  220. !(ppd->ibport_data.rvp.rc_delayed_comp))
  221. return -ENOMEM;
  222. if (qib_cc_table_size < IB_CCT_MIN_ENTRIES)
  223. goto bail;
  224. ppd->cc_supported_table_entries = min(max_t(int, qib_cc_table_size,
  225. IB_CCT_MIN_ENTRIES), IB_CCT_ENTRIES*IB_CC_TABLE_CAP_DEFAULT);
  226. ppd->cc_max_table_entries =
  227. ppd->cc_supported_table_entries/IB_CCT_ENTRIES;
  228. size = IB_CC_TABLE_CAP_DEFAULT * sizeof(struct ib_cc_table_entry)
  229. * IB_CCT_ENTRIES;
  230. ppd->ccti_entries = kzalloc(size, GFP_KERNEL);
  231. if (!ppd->ccti_entries)
  232. goto bail;
  233. size = IB_CC_CCS_ENTRIES * sizeof(struct ib_cc_congestion_entry);
  234. ppd->congestion_entries = kzalloc(size, GFP_KERNEL);
  235. if (!ppd->congestion_entries)
  236. goto bail_1;
  237. size = sizeof(struct cc_table_shadow);
  238. ppd->ccti_entries_shadow = kzalloc(size, GFP_KERNEL);
  239. if (!ppd->ccti_entries_shadow)
  240. goto bail_2;
  241. size = sizeof(struct ib_cc_congestion_setting_attr);
  242. ppd->congestion_entries_shadow = kzalloc(size, GFP_KERNEL);
  243. if (!ppd->congestion_entries_shadow)
  244. goto bail_3;
  245. return 0;
  246. bail_3:
  247. kfree(ppd->ccti_entries_shadow);
  248. ppd->ccti_entries_shadow = NULL;
  249. bail_2:
  250. kfree(ppd->congestion_entries);
  251. ppd->congestion_entries = NULL;
  252. bail_1:
  253. kfree(ppd->ccti_entries);
  254. ppd->ccti_entries = NULL;
  255. bail:
  256. /* User is intentionally disabling the congestion control agent */
  257. if (!qib_cc_table_size)
  258. return 0;
  259. if (qib_cc_table_size < IB_CCT_MIN_ENTRIES) {
  260. qib_cc_table_size = 0;
  261. qib_dev_err(dd,
  262. "Congestion Control table size %d less than minimum %d for port %d\n",
  263. qib_cc_table_size, IB_CCT_MIN_ENTRIES, port);
  264. }
  265. qib_dev_err(dd, "Congestion Control Agent disabled for port %d\n",
  266. port);
  267. return 0;
  268. }
  269. static int init_pioavailregs(struct qib_devdata *dd)
  270. {
  271. int ret, pidx;
  272. u64 *status_page;
  273. dd->pioavailregs_dma = dma_alloc_coherent(
  274. &dd->pcidev->dev, PAGE_SIZE, &dd->pioavailregs_phys,
  275. GFP_KERNEL);
  276. if (!dd->pioavailregs_dma) {
  277. qib_dev_err(dd,
  278. "failed to allocate PIOavail reg area in memory\n");
  279. ret = -ENOMEM;
  280. goto done;
  281. }
  282. /*
  283. * We really want L2 cache aligned, but for current CPUs of
  284. * interest, they are the same.
  285. */
  286. status_page = (u64 *)
  287. ((char *) dd->pioavailregs_dma +
  288. ((2 * L1_CACHE_BYTES +
  289. dd->pioavregs * sizeof(u64)) & ~L1_CACHE_BYTES));
  290. /* device status comes first, for backwards compatibility */
  291. dd->devstatusp = status_page;
  292. *status_page++ = 0;
  293. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  294. dd->pport[pidx].statusp = status_page;
  295. *status_page++ = 0;
  296. }
  297. /*
  298. * Setup buffer to hold freeze and other messages, accessible to
  299. * apps, following statusp. This is per-unit, not per port.
  300. */
  301. dd->freezemsg = (char *) status_page;
  302. *dd->freezemsg = 0;
  303. /* length of msg buffer is "whatever is left" */
  304. ret = (char *) status_page - (char *) dd->pioavailregs_dma;
  305. dd->freezelen = PAGE_SIZE - ret;
  306. ret = 0;
  307. done:
  308. return ret;
  309. }
  310. /**
  311. * init_shadow_tids - allocate the shadow TID array
  312. * @dd: the qlogic_ib device
  313. *
  314. * allocate the shadow TID array, so we can qib_munlock previous
  315. * entries. It may make more sense to move the pageshadow to the
  316. * ctxt data structure, so we only allocate memory for ctxts actually
  317. * in use, since we at 8k per ctxt, now.
  318. * We don't want failures here to prevent use of the driver/chip,
  319. * so no return value.
  320. */
  321. static void init_shadow_tids(struct qib_devdata *dd)
  322. {
  323. struct page **pages;
  324. dma_addr_t *addrs;
  325. pages = vzalloc(array_size(sizeof(struct page *),
  326. dd->cfgctxts * dd->rcvtidcnt));
  327. if (!pages)
  328. goto bail;
  329. addrs = vzalloc(array_size(sizeof(dma_addr_t),
  330. dd->cfgctxts * dd->rcvtidcnt));
  331. if (!addrs)
  332. goto bail_free;
  333. dd->pageshadow = pages;
  334. dd->physshadow = addrs;
  335. return;
  336. bail_free:
  337. vfree(pages);
  338. bail:
  339. dd->pageshadow = NULL;
  340. }
  341. /*
  342. * Do initialization for device that is only needed on
  343. * first detect, not on resets.
  344. */
  345. static int loadtime_init(struct qib_devdata *dd)
  346. {
  347. int ret = 0;
  348. if (((dd->revision >> QLOGIC_IB_R_SOFTWARE_SHIFT) &
  349. QLOGIC_IB_R_SOFTWARE_MASK) != QIB_CHIP_SWVERSION) {
  350. qib_dev_err(dd,
  351. "Driver only handles version %d, chip swversion is %d (%llx), failing\n",
  352. QIB_CHIP_SWVERSION,
  353. (int)(dd->revision >>
  354. QLOGIC_IB_R_SOFTWARE_SHIFT) &
  355. QLOGIC_IB_R_SOFTWARE_MASK,
  356. (unsigned long long) dd->revision);
  357. ret = -ENOSYS;
  358. goto done;
  359. }
  360. if (dd->revision & QLOGIC_IB_R_EMULATOR_MASK)
  361. qib_devinfo(dd->pcidev, "%s", dd->boardversion);
  362. spin_lock_init(&dd->pioavail_lock);
  363. spin_lock_init(&dd->sendctrl_lock);
  364. spin_lock_init(&dd->uctxt_lock);
  365. spin_lock_init(&dd->qib_diag_trans_lock);
  366. spin_lock_init(&dd->eep_st_lock);
  367. mutex_init(&dd->eep_lock);
  368. if (qib_mini_init)
  369. goto done;
  370. ret = init_pioavailregs(dd);
  371. init_shadow_tids(dd);
  372. qib_get_eeprom_info(dd);
  373. /* setup time (don't start yet) to verify we got interrupt */
  374. timer_setup(&dd->intrchk_timer, verify_interrupt, 0);
  375. done:
  376. return ret;
  377. }
  378. /**
  379. * init_after_reset - re-initialize after a reset
  380. * @dd: the qlogic_ib device
  381. *
  382. * sanity check at least some of the values after reset, and
  383. * ensure no receive or transmit (explicitly, in case reset
  384. * failed
  385. */
  386. static int init_after_reset(struct qib_devdata *dd)
  387. {
  388. int i;
  389. /*
  390. * Ensure chip does no sends or receives, tail updates, or
  391. * pioavail updates while we re-initialize. This is mostly
  392. * for the driver data structures, not chip registers.
  393. */
  394. for (i = 0; i < dd->num_pports; ++i) {
  395. /*
  396. * ctxt == -1 means "all contexts". Only really safe for
  397. * _dis_abling things, as here.
  398. */
  399. dd->f_rcvctrl(dd->pport + i, QIB_RCVCTRL_CTXT_DIS |
  400. QIB_RCVCTRL_INTRAVAIL_DIS |
  401. QIB_RCVCTRL_TAILUPD_DIS, -1);
  402. /* Redundant across ports for some, but no big deal. */
  403. dd->f_sendctrl(dd->pport + i, QIB_SENDCTRL_SEND_DIS |
  404. QIB_SENDCTRL_AVAIL_DIS);
  405. }
  406. return 0;
  407. }
  408. static void enable_chip(struct qib_devdata *dd)
  409. {
  410. u64 rcvmask;
  411. int i;
  412. /*
  413. * Enable PIO send, and update of PIOavail regs to memory.
  414. */
  415. for (i = 0; i < dd->num_pports; ++i)
  416. dd->f_sendctrl(dd->pport + i, QIB_SENDCTRL_SEND_ENB |
  417. QIB_SENDCTRL_AVAIL_ENB);
  418. /*
  419. * Enable kernel ctxts' receive and receive interrupt.
  420. * Other ctxts done as user opens and inits them.
  421. */
  422. rcvmask = QIB_RCVCTRL_CTXT_ENB | QIB_RCVCTRL_INTRAVAIL_ENB;
  423. rcvmask |= (dd->flags & QIB_NODMA_RTAIL) ?
  424. QIB_RCVCTRL_TAILUPD_DIS : QIB_RCVCTRL_TAILUPD_ENB;
  425. for (i = 0; dd->rcd && i < dd->first_user_ctxt; ++i) {
  426. struct qib_ctxtdata *rcd = dd->rcd[i];
  427. if (rcd)
  428. dd->f_rcvctrl(rcd->ppd, rcvmask, i);
  429. }
  430. }
  431. static void verify_interrupt(struct timer_list *t)
  432. {
  433. struct qib_devdata *dd = from_timer(dd, t, intrchk_timer);
  434. u64 int_counter;
  435. if (!dd)
  436. return; /* being torn down */
  437. /*
  438. * If we don't have a lid or any interrupts, let the user know and
  439. * don't bother checking again.
  440. */
  441. int_counter = qib_int_counter(dd) - dd->z_int_counter;
  442. if (int_counter == 0) {
  443. if (!dd->f_intr_fallback(dd))
  444. dev_err(&dd->pcidev->dev,
  445. "No interrupts detected, not usable.\n");
  446. else /* re-arm the timer to see if fallback works */
  447. mod_timer(&dd->intrchk_timer, jiffies + HZ/2);
  448. }
  449. }
  450. static void init_piobuf_state(struct qib_devdata *dd)
  451. {
  452. int i, pidx;
  453. u32 uctxts;
  454. /*
  455. * Ensure all buffers are free, and fifos empty. Buffers
  456. * are common, so only do once for port 0.
  457. *
  458. * After enable and qib_chg_pioavailkernel so we can safely
  459. * enable pioavail updates and PIOENABLE. After this, packets
  460. * are ready and able to go out.
  461. */
  462. dd->f_sendctrl(dd->pport, QIB_SENDCTRL_DISARM_ALL);
  463. for (pidx = 0; pidx < dd->num_pports; ++pidx)
  464. dd->f_sendctrl(dd->pport + pidx, QIB_SENDCTRL_FLUSH);
  465. /*
  466. * If not all sendbufs are used, add the one to each of the lower
  467. * numbered contexts. pbufsctxt and lastctxt_piobuf are
  468. * calculated in chip-specific code because it may cause some
  469. * chip-specific adjustments to be made.
  470. */
  471. uctxts = dd->cfgctxts - dd->first_user_ctxt;
  472. dd->ctxts_extrabuf = dd->pbufsctxt ?
  473. dd->lastctxt_piobuf - (dd->pbufsctxt * uctxts) : 0;
  474. /*
  475. * Set up the shadow copies of the piobufavail registers,
  476. * which we compare against the chip registers for now, and
  477. * the in memory DMA'ed copies of the registers.
  478. * By now pioavail updates to memory should have occurred, so
  479. * copy them into our working/shadow registers; this is in
  480. * case something went wrong with abort, but mostly to get the
  481. * initial values of the generation bit correct.
  482. */
  483. for (i = 0; i < dd->pioavregs; i++) {
  484. __le64 tmp;
  485. tmp = dd->pioavailregs_dma[i];
  486. /*
  487. * Don't need to worry about pioavailkernel here
  488. * because we will call qib_chg_pioavailkernel() later
  489. * in initialization, to busy out buffers as needed.
  490. */
  491. dd->pioavailshadow[i] = le64_to_cpu(tmp);
  492. }
  493. while (i < ARRAY_SIZE(dd->pioavailshadow))
  494. dd->pioavailshadow[i++] = 0; /* for debugging sanity */
  495. /* after pioavailshadow is setup */
  496. qib_chg_pioavailkernel(dd, 0, dd->piobcnt2k + dd->piobcnt4k,
  497. TXCHK_CHG_TYPE_KERN, NULL);
  498. dd->f_initvl15_bufs(dd);
  499. }
  500. /**
  501. * qib_create_workqueues - create per port workqueues
  502. * @dd: the qlogic_ib device
  503. */
  504. static int qib_create_workqueues(struct qib_devdata *dd)
  505. {
  506. int pidx;
  507. struct qib_pportdata *ppd;
  508. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  509. ppd = dd->pport + pidx;
  510. if (!ppd->qib_wq) {
  511. char wq_name[8]; /* 3 + 2 + 1 + 1 + 1 */
  512. snprintf(wq_name, sizeof(wq_name), "qib%d_%d",
  513. dd->unit, pidx);
  514. ppd->qib_wq = alloc_ordered_workqueue(wq_name,
  515. WQ_MEM_RECLAIM);
  516. if (!ppd->qib_wq)
  517. goto wq_error;
  518. }
  519. }
  520. return 0;
  521. wq_error:
  522. pr_err("create_singlethread_workqueue failed for port %d\n",
  523. pidx + 1);
  524. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  525. ppd = dd->pport + pidx;
  526. if (ppd->qib_wq) {
  527. destroy_workqueue(ppd->qib_wq);
  528. ppd->qib_wq = NULL;
  529. }
  530. }
  531. return -ENOMEM;
  532. }
  533. static void qib_free_pportdata(struct qib_pportdata *ppd)
  534. {
  535. free_percpu(ppd->ibport_data.pmastats);
  536. free_percpu(ppd->ibport_data.rvp.rc_acks);
  537. free_percpu(ppd->ibport_data.rvp.rc_qacks);
  538. free_percpu(ppd->ibport_data.rvp.rc_delayed_comp);
  539. ppd->ibport_data.pmastats = NULL;
  540. }
  541. /**
  542. * qib_init - do the actual initialization sequence on the chip
  543. * @dd: the qlogic_ib device
  544. * @reinit: reinitializing, so don't allocate new memory
  545. *
  546. * Do the actual initialization sequence on the chip. This is done
  547. * both from the init routine called from the PCI infrastructure, and
  548. * when we reset the chip, or detect that it was reset internally,
  549. * or it's administratively re-enabled.
  550. *
  551. * Memory allocation here and in called routines is only done in
  552. * the first case (reinit == 0). We have to be careful, because even
  553. * without memory allocation, we need to re-write all the chip registers
  554. * TIDs, etc. after the reset or enable has completed.
  555. */
  556. int qib_init(struct qib_devdata *dd, int reinit)
  557. {
  558. int ret = 0, pidx, lastfail = 0;
  559. u32 portok = 0;
  560. unsigned i;
  561. struct qib_ctxtdata *rcd;
  562. struct qib_pportdata *ppd;
  563. unsigned long flags;
  564. /* Set linkstate to unknown, so we can watch for a transition. */
  565. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  566. ppd = dd->pport + pidx;
  567. spin_lock_irqsave(&ppd->lflags_lock, flags);
  568. ppd->lflags &= ~(QIBL_LINKACTIVE | QIBL_LINKARMED |
  569. QIBL_LINKDOWN | QIBL_LINKINIT |
  570. QIBL_LINKV);
  571. spin_unlock_irqrestore(&ppd->lflags_lock, flags);
  572. }
  573. if (reinit)
  574. ret = init_after_reset(dd);
  575. else
  576. ret = loadtime_init(dd);
  577. if (ret)
  578. goto done;
  579. /* Bypass most chip-init, to get to device creation */
  580. if (qib_mini_init)
  581. return 0;
  582. ret = dd->f_late_initreg(dd);
  583. if (ret)
  584. goto done;
  585. /* dd->rcd can be NULL if early init failed */
  586. for (i = 0; dd->rcd && i < dd->first_user_ctxt; ++i) {
  587. /*
  588. * Set up the (kernel) rcvhdr queue and egr TIDs. If doing
  589. * re-init, the simplest way to handle this is to free
  590. * existing, and re-allocate.
  591. * Need to re-create rest of ctxt 0 ctxtdata as well.
  592. */
  593. rcd = dd->rcd[i];
  594. if (!rcd)
  595. continue;
  596. lastfail = qib_create_rcvhdrq(dd, rcd);
  597. if (!lastfail)
  598. lastfail = qib_setup_eagerbufs(rcd);
  599. if (lastfail)
  600. qib_dev_err(dd,
  601. "failed to allocate kernel ctxt's rcvhdrq and/or egr bufs\n");
  602. }
  603. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  604. int mtu;
  605. if (lastfail)
  606. ret = lastfail;
  607. ppd = dd->pport + pidx;
  608. mtu = ib_mtu_enum_to_int(qib_ibmtu);
  609. if (mtu == -1) {
  610. mtu = QIB_DEFAULT_MTU;
  611. qib_ibmtu = 0; /* don't leave invalid value */
  612. }
  613. /* set max we can ever have for this driver load */
  614. ppd->init_ibmaxlen = min(mtu > 2048 ?
  615. dd->piosize4k : dd->piosize2k,
  616. dd->rcvegrbufsize +
  617. (dd->rcvhdrentsize << 2));
  618. /*
  619. * Have to initialize ibmaxlen, but this will normally
  620. * change immediately in qib_set_mtu().
  621. */
  622. ppd->ibmaxlen = ppd->init_ibmaxlen;
  623. qib_set_mtu(ppd, mtu);
  624. spin_lock_irqsave(&ppd->lflags_lock, flags);
  625. ppd->lflags |= QIBL_IB_LINK_DISABLED;
  626. spin_unlock_irqrestore(&ppd->lflags_lock, flags);
  627. lastfail = dd->f_bringup_serdes(ppd);
  628. if (lastfail) {
  629. qib_devinfo(dd->pcidev,
  630. "Failed to bringup IB port %u\n", ppd->port);
  631. lastfail = -ENETDOWN;
  632. continue;
  633. }
  634. portok++;
  635. }
  636. if (!portok) {
  637. /* none of the ports initialized */
  638. if (!ret && lastfail)
  639. ret = lastfail;
  640. else if (!ret)
  641. ret = -ENETDOWN;
  642. /* but continue on, so we can debug cause */
  643. }
  644. enable_chip(dd);
  645. init_piobuf_state(dd);
  646. done:
  647. if (!ret) {
  648. /* chip is OK for user apps; mark it as initialized */
  649. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  650. ppd = dd->pport + pidx;
  651. /*
  652. * Set status even if port serdes is not initialized
  653. * so that diags will work.
  654. */
  655. *ppd->statusp |= QIB_STATUS_CHIP_PRESENT |
  656. QIB_STATUS_INITTED;
  657. if (!ppd->link_speed_enabled)
  658. continue;
  659. if (dd->flags & QIB_HAS_SEND_DMA)
  660. ret = qib_setup_sdma(ppd);
  661. timer_setup(&ppd->hol_timer, qib_hol_event, 0);
  662. ppd->hol_state = QIB_HOL_UP;
  663. }
  664. /* now we can enable all interrupts from the chip */
  665. dd->f_set_intr_state(dd, 1);
  666. /*
  667. * Setup to verify we get an interrupt, and fallback
  668. * to an alternate if necessary and possible.
  669. */
  670. mod_timer(&dd->intrchk_timer, jiffies + HZ/2);
  671. /* start stats retrieval timer */
  672. mod_timer(&dd->stats_timer, jiffies + HZ * ACTIVITY_TIMER);
  673. }
  674. /* if ret is non-zero, we probably should do some cleanup here... */
  675. return ret;
  676. }
  677. /*
  678. * These next two routines are placeholders in case we don't have per-arch
  679. * code for controlling write combining. If explicit control of write
  680. * combining is not available, performance will probably be awful.
  681. */
  682. int __attribute__((weak)) qib_enable_wc(struct qib_devdata *dd)
  683. {
  684. return -EOPNOTSUPP;
  685. }
  686. void __attribute__((weak)) qib_disable_wc(struct qib_devdata *dd)
  687. {
  688. }
  689. static inline struct qib_devdata *__qib_lookup(int unit)
  690. {
  691. return idr_find(&qib_unit_table, unit);
  692. }
  693. struct qib_devdata *qib_lookup(int unit)
  694. {
  695. struct qib_devdata *dd;
  696. unsigned long flags;
  697. spin_lock_irqsave(&qib_devs_lock, flags);
  698. dd = __qib_lookup(unit);
  699. spin_unlock_irqrestore(&qib_devs_lock, flags);
  700. return dd;
  701. }
  702. /*
  703. * Stop the timers during unit shutdown, or after an error late
  704. * in initialization.
  705. */
  706. static void qib_stop_timers(struct qib_devdata *dd)
  707. {
  708. struct qib_pportdata *ppd;
  709. int pidx;
  710. if (dd->stats_timer.function)
  711. del_timer_sync(&dd->stats_timer);
  712. if (dd->intrchk_timer.function)
  713. del_timer_sync(&dd->intrchk_timer);
  714. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  715. ppd = dd->pport + pidx;
  716. if (ppd->hol_timer.function)
  717. del_timer_sync(&ppd->hol_timer);
  718. if (ppd->led_override_timer.function) {
  719. del_timer_sync(&ppd->led_override_timer);
  720. atomic_set(&ppd->led_override_timer_active, 0);
  721. }
  722. if (ppd->symerr_clear_timer.function)
  723. del_timer_sync(&ppd->symerr_clear_timer);
  724. }
  725. }
  726. /**
  727. * qib_shutdown_device - shut down a device
  728. * @dd: the qlogic_ib device
  729. *
  730. * This is called to make the device quiet when we are about to
  731. * unload the driver, and also when the device is administratively
  732. * disabled. It does not free any data structures.
  733. * Everything it does has to be setup again by qib_init(dd, 1)
  734. */
  735. static void qib_shutdown_device(struct qib_devdata *dd)
  736. {
  737. struct qib_pportdata *ppd;
  738. unsigned pidx;
  739. if (dd->flags & QIB_SHUTDOWN)
  740. return;
  741. dd->flags |= QIB_SHUTDOWN;
  742. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  743. ppd = dd->pport + pidx;
  744. spin_lock_irq(&ppd->lflags_lock);
  745. ppd->lflags &= ~(QIBL_LINKDOWN | QIBL_LINKINIT |
  746. QIBL_LINKARMED | QIBL_LINKACTIVE |
  747. QIBL_LINKV);
  748. spin_unlock_irq(&ppd->lflags_lock);
  749. *ppd->statusp &= ~(QIB_STATUS_IB_CONF | QIB_STATUS_IB_READY);
  750. }
  751. dd->flags &= ~QIB_INITTED;
  752. /* mask interrupts, but not errors */
  753. dd->f_set_intr_state(dd, 0);
  754. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  755. ppd = dd->pport + pidx;
  756. dd->f_rcvctrl(ppd, QIB_RCVCTRL_TAILUPD_DIS |
  757. QIB_RCVCTRL_CTXT_DIS |
  758. QIB_RCVCTRL_INTRAVAIL_DIS |
  759. QIB_RCVCTRL_PKEY_ENB, -1);
  760. /*
  761. * Gracefully stop all sends allowing any in progress to
  762. * trickle out first.
  763. */
  764. dd->f_sendctrl(ppd, QIB_SENDCTRL_CLEAR);
  765. }
  766. /*
  767. * Enough for anything that's going to trickle out to have actually
  768. * done so.
  769. */
  770. udelay(20);
  771. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  772. ppd = dd->pport + pidx;
  773. dd->f_setextled(ppd, 0); /* make sure LEDs are off */
  774. if (dd->flags & QIB_HAS_SEND_DMA)
  775. qib_teardown_sdma(ppd);
  776. dd->f_sendctrl(ppd, QIB_SENDCTRL_AVAIL_DIS |
  777. QIB_SENDCTRL_SEND_DIS);
  778. /*
  779. * Clear SerdesEnable.
  780. * We can't count on interrupts since we are stopping.
  781. */
  782. dd->f_quiet_serdes(ppd);
  783. if (ppd->qib_wq) {
  784. destroy_workqueue(ppd->qib_wq);
  785. ppd->qib_wq = NULL;
  786. }
  787. qib_free_pportdata(ppd);
  788. }
  789. }
  790. /**
  791. * qib_free_ctxtdata - free a context's allocated data
  792. * @dd: the qlogic_ib device
  793. * @rcd: the ctxtdata structure
  794. *
  795. * free up any allocated data for a context
  796. * This should not touch anything that would affect a simultaneous
  797. * re-allocation of context data, because it is called after qib_mutex
  798. * is released (and can be called from reinit as well).
  799. * It should never change any chip state, or global driver state.
  800. */
  801. void qib_free_ctxtdata(struct qib_devdata *dd, struct qib_ctxtdata *rcd)
  802. {
  803. if (!rcd)
  804. return;
  805. if (rcd->rcvhdrq) {
  806. dma_free_coherent(&dd->pcidev->dev, rcd->rcvhdrq_size,
  807. rcd->rcvhdrq, rcd->rcvhdrq_phys);
  808. rcd->rcvhdrq = NULL;
  809. if (rcd->rcvhdrtail_kvaddr) {
  810. dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
  811. rcd->rcvhdrtail_kvaddr,
  812. rcd->rcvhdrqtailaddr_phys);
  813. rcd->rcvhdrtail_kvaddr = NULL;
  814. }
  815. }
  816. if (rcd->rcvegrbuf) {
  817. unsigned e;
  818. for (e = 0; e < rcd->rcvegrbuf_chunks; e++) {
  819. void *base = rcd->rcvegrbuf[e];
  820. size_t size = rcd->rcvegrbuf_size;
  821. dma_free_coherent(&dd->pcidev->dev, size,
  822. base, rcd->rcvegrbuf_phys[e]);
  823. }
  824. kfree(rcd->rcvegrbuf);
  825. rcd->rcvegrbuf = NULL;
  826. kfree(rcd->rcvegrbuf_phys);
  827. rcd->rcvegrbuf_phys = NULL;
  828. rcd->rcvegrbuf_chunks = 0;
  829. }
  830. kfree(rcd->tid_pg_list);
  831. vfree(rcd->user_event_mask);
  832. vfree(rcd->subctxt_uregbase);
  833. vfree(rcd->subctxt_rcvegrbuf);
  834. vfree(rcd->subctxt_rcvhdr_base);
  835. #ifdef CONFIG_DEBUG_FS
  836. kfree(rcd->opstats);
  837. rcd->opstats = NULL;
  838. #endif
  839. kfree(rcd);
  840. }
  841. /*
  842. * Perform a PIO buffer bandwidth write test, to verify proper system
  843. * configuration. Even when all the setup calls work, occasionally
  844. * BIOS or other issues can prevent write combining from working, or
  845. * can cause other bandwidth problems to the chip.
  846. *
  847. * This test simply writes the same buffer over and over again, and
  848. * measures close to the peak bandwidth to the chip (not testing
  849. * data bandwidth to the wire). On chips that use an address-based
  850. * trigger to send packets to the wire, this is easy. On chips that
  851. * use a count to trigger, we want to make sure that the packet doesn't
  852. * go out on the wire, or trigger flow control checks.
  853. */
  854. static void qib_verify_pioperf(struct qib_devdata *dd)
  855. {
  856. u32 pbnum, cnt, lcnt;
  857. u32 __iomem *piobuf;
  858. u32 *addr;
  859. u64 msecs, emsecs;
  860. piobuf = dd->f_getsendbuf(dd->pport, 0ULL, &pbnum);
  861. if (!piobuf) {
  862. qib_devinfo(dd->pcidev,
  863. "No PIObufs for checking perf, skipping\n");
  864. return;
  865. }
  866. /*
  867. * Enough to give us a reasonable test, less than piobuf size, and
  868. * likely multiple of store buffer length.
  869. */
  870. cnt = 1024;
  871. addr = vmalloc(cnt);
  872. if (!addr)
  873. goto done;
  874. preempt_disable(); /* we want reasonably accurate elapsed time */
  875. msecs = 1 + jiffies_to_msecs(jiffies);
  876. for (lcnt = 0; lcnt < 10000U; lcnt++) {
  877. /* wait until we cross msec boundary */
  878. if (jiffies_to_msecs(jiffies) >= msecs)
  879. break;
  880. udelay(1);
  881. }
  882. dd->f_set_armlaunch(dd, 0);
  883. /*
  884. * length 0, no dwords actually sent
  885. */
  886. writeq(0, piobuf);
  887. qib_flush_wc();
  888. /*
  889. * This is only roughly accurate, since even with preempt we
  890. * still take interrupts that could take a while. Running for
  891. * >= 5 msec seems to get us "close enough" to accurate values.
  892. */
  893. msecs = jiffies_to_msecs(jiffies);
  894. for (emsecs = lcnt = 0; emsecs <= 5UL; lcnt++) {
  895. qib_pio_copy(piobuf + 64, addr, cnt >> 2);
  896. emsecs = jiffies_to_msecs(jiffies) - msecs;
  897. }
  898. /* 1 GiB/sec, slightly over IB SDR line rate */
  899. if (lcnt < (emsecs * 1024U))
  900. qib_dev_err(dd,
  901. "Performance problem: bandwidth to PIO buffers is only %u MiB/sec\n",
  902. lcnt / (u32) emsecs);
  903. preempt_enable();
  904. vfree(addr);
  905. done:
  906. /* disarm piobuf, so it's available again */
  907. dd->f_sendctrl(dd->pport, QIB_SENDCTRL_DISARM_BUF(pbnum));
  908. qib_sendbuf_done(dd, pbnum);
  909. dd->f_set_armlaunch(dd, 1);
  910. }
  911. void qib_free_devdata(struct qib_devdata *dd)
  912. {
  913. unsigned long flags;
  914. spin_lock_irqsave(&qib_devs_lock, flags);
  915. idr_remove(&qib_unit_table, dd->unit);
  916. list_del(&dd->list);
  917. spin_unlock_irqrestore(&qib_devs_lock, flags);
  918. #ifdef CONFIG_DEBUG_FS
  919. qib_dbg_ibdev_exit(&dd->verbs_dev);
  920. #endif
  921. free_percpu(dd->int_counter);
  922. rvt_dealloc_device(&dd->verbs_dev.rdi);
  923. }
  924. u64 qib_int_counter(struct qib_devdata *dd)
  925. {
  926. int cpu;
  927. u64 int_counter = 0;
  928. for_each_possible_cpu(cpu)
  929. int_counter += *per_cpu_ptr(dd->int_counter, cpu);
  930. return int_counter;
  931. }
  932. u64 qib_sps_ints(void)
  933. {
  934. unsigned long flags;
  935. struct qib_devdata *dd;
  936. u64 sps_ints = 0;
  937. spin_lock_irqsave(&qib_devs_lock, flags);
  938. list_for_each_entry(dd, &qib_dev_list, list) {
  939. sps_ints += qib_int_counter(dd);
  940. }
  941. spin_unlock_irqrestore(&qib_devs_lock, flags);
  942. return sps_ints;
  943. }
  944. /*
  945. * Allocate our primary per-unit data structure. Must be done via verbs
  946. * allocator, because the verbs cleanup process both does cleanup and
  947. * free of the data structure.
  948. * "extra" is for chip-specific data.
  949. *
  950. * Use the idr mechanism to get a unit number for this unit.
  951. */
  952. struct qib_devdata *qib_alloc_devdata(struct pci_dev *pdev, size_t extra)
  953. {
  954. unsigned long flags;
  955. struct qib_devdata *dd;
  956. int ret, nports;
  957. /* extra is * number of ports */
  958. nports = extra / sizeof(struct qib_pportdata);
  959. dd = (struct qib_devdata *)rvt_alloc_device(sizeof(*dd) + extra,
  960. nports);
  961. if (!dd)
  962. return ERR_PTR(-ENOMEM);
  963. INIT_LIST_HEAD(&dd->list);
  964. idr_preload(GFP_KERNEL);
  965. spin_lock_irqsave(&qib_devs_lock, flags);
  966. ret = idr_alloc(&qib_unit_table, dd, 0, 0, GFP_NOWAIT);
  967. if (ret >= 0) {
  968. dd->unit = ret;
  969. list_add(&dd->list, &qib_dev_list);
  970. }
  971. spin_unlock_irqrestore(&qib_devs_lock, flags);
  972. idr_preload_end();
  973. if (ret < 0) {
  974. qib_early_err(&pdev->dev,
  975. "Could not allocate unit ID: error %d\n", -ret);
  976. goto bail;
  977. }
  978. rvt_set_ibdev_name(&dd->verbs_dev.rdi, "%s%d", "qib", dd->unit);
  979. dd->int_counter = alloc_percpu(u64);
  980. if (!dd->int_counter) {
  981. ret = -ENOMEM;
  982. qib_early_err(&pdev->dev,
  983. "Could not allocate per-cpu int_counter\n");
  984. goto bail;
  985. }
  986. if (!qib_cpulist_count) {
  987. u32 count = num_online_cpus();
  988. qib_cpulist = kcalloc(BITS_TO_LONGS(count), sizeof(long),
  989. GFP_KERNEL);
  990. if (qib_cpulist)
  991. qib_cpulist_count = count;
  992. }
  993. #ifdef CONFIG_DEBUG_FS
  994. qib_dbg_ibdev_init(&dd->verbs_dev);
  995. #endif
  996. return dd;
  997. bail:
  998. if (!list_empty(&dd->list))
  999. list_del_init(&dd->list);
  1000. rvt_dealloc_device(&dd->verbs_dev.rdi);
  1001. return ERR_PTR(ret);
  1002. }
  1003. /*
  1004. * Called from freeze mode handlers, and from PCI error
  1005. * reporting code. Should be paranoid about state of
  1006. * system and data structures.
  1007. */
  1008. void qib_disable_after_error(struct qib_devdata *dd)
  1009. {
  1010. if (dd->flags & QIB_INITTED) {
  1011. u32 pidx;
  1012. dd->flags &= ~QIB_INITTED;
  1013. if (dd->pport)
  1014. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  1015. struct qib_pportdata *ppd;
  1016. ppd = dd->pport + pidx;
  1017. if (dd->flags & QIB_PRESENT) {
  1018. qib_set_linkstate(ppd,
  1019. QIB_IB_LINKDOWN_DISABLE);
  1020. dd->f_setextled(ppd, 0);
  1021. }
  1022. *ppd->statusp &= ~QIB_STATUS_IB_READY;
  1023. }
  1024. }
  1025. /*
  1026. * Mark as having had an error for driver, and also
  1027. * for /sys and status word mapped to user programs.
  1028. * This marks unit as not usable, until reset.
  1029. */
  1030. if (dd->devstatusp)
  1031. *dd->devstatusp |= QIB_STATUS_HWERROR;
  1032. }
  1033. static void qib_remove_one(struct pci_dev *);
  1034. static int qib_init_one(struct pci_dev *, const struct pci_device_id *);
  1035. static void qib_shutdown_one(struct pci_dev *);
  1036. #define DRIVER_LOAD_MSG "Intel " QIB_DRV_NAME " loaded: "
  1037. #define PFX QIB_DRV_NAME ": "
  1038. static const struct pci_device_id qib_pci_tbl[] = {
  1039. { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_QLOGIC_IB_6120) },
  1040. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_IB_7220) },
  1041. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_IB_7322) },
  1042. { 0, }
  1043. };
  1044. MODULE_DEVICE_TABLE(pci, qib_pci_tbl);
  1045. static struct pci_driver qib_driver = {
  1046. .name = QIB_DRV_NAME,
  1047. .probe = qib_init_one,
  1048. .remove = qib_remove_one,
  1049. .shutdown = qib_shutdown_one,
  1050. .id_table = qib_pci_tbl,
  1051. .err_handler = &qib_pci_err_handler,
  1052. };
  1053. #ifdef CONFIG_INFINIBAND_QIB_DCA
  1054. static int qib_notify_dca(struct notifier_block *, unsigned long, void *);
  1055. static struct notifier_block dca_notifier = {
  1056. .notifier_call = qib_notify_dca,
  1057. .next = NULL,
  1058. .priority = 0
  1059. };
  1060. static int qib_notify_dca_device(struct device *device, void *data)
  1061. {
  1062. struct qib_devdata *dd = dev_get_drvdata(device);
  1063. unsigned long event = *(unsigned long *)data;
  1064. return dd->f_notify_dca(dd, event);
  1065. }
  1066. static int qib_notify_dca(struct notifier_block *nb, unsigned long event,
  1067. void *p)
  1068. {
  1069. int rval;
  1070. rval = driver_for_each_device(&qib_driver.driver, NULL,
  1071. &event, qib_notify_dca_device);
  1072. return rval ? NOTIFY_BAD : NOTIFY_DONE;
  1073. }
  1074. #endif
  1075. /*
  1076. * Do all the generic driver unit- and chip-independent memory
  1077. * allocation and initialization.
  1078. */
  1079. static int __init qib_ib_init(void)
  1080. {
  1081. int ret;
  1082. ret = qib_dev_init();
  1083. if (ret)
  1084. goto bail;
  1085. /*
  1086. * These must be called before the driver is registered with
  1087. * the PCI subsystem.
  1088. */
  1089. idr_init(&qib_unit_table);
  1090. #ifdef CONFIG_INFINIBAND_QIB_DCA
  1091. dca_register_notify(&dca_notifier);
  1092. #endif
  1093. #ifdef CONFIG_DEBUG_FS
  1094. qib_dbg_init();
  1095. #endif
  1096. ret = pci_register_driver(&qib_driver);
  1097. if (ret < 0) {
  1098. pr_err("Unable to register driver: error %d\n", -ret);
  1099. goto bail_dev;
  1100. }
  1101. /* not fatal if it doesn't work */
  1102. if (qib_init_qibfs())
  1103. pr_err("Unable to register ipathfs\n");
  1104. goto bail; /* all OK */
  1105. bail_dev:
  1106. #ifdef CONFIG_INFINIBAND_QIB_DCA
  1107. dca_unregister_notify(&dca_notifier);
  1108. #endif
  1109. #ifdef CONFIG_DEBUG_FS
  1110. qib_dbg_exit();
  1111. #endif
  1112. idr_destroy(&qib_unit_table);
  1113. qib_dev_cleanup();
  1114. bail:
  1115. return ret;
  1116. }
  1117. module_init(qib_ib_init);
  1118. /*
  1119. * Do the non-unit driver cleanup, memory free, etc. at unload.
  1120. */
  1121. static void __exit qib_ib_cleanup(void)
  1122. {
  1123. int ret;
  1124. ret = qib_exit_qibfs();
  1125. if (ret)
  1126. pr_err(
  1127. "Unable to cleanup counter filesystem: error %d\n",
  1128. -ret);
  1129. #ifdef CONFIG_INFINIBAND_QIB_DCA
  1130. dca_unregister_notify(&dca_notifier);
  1131. #endif
  1132. pci_unregister_driver(&qib_driver);
  1133. #ifdef CONFIG_DEBUG_FS
  1134. qib_dbg_exit();
  1135. #endif
  1136. qib_cpulist_count = 0;
  1137. kfree(qib_cpulist);
  1138. idr_destroy(&qib_unit_table);
  1139. qib_dev_cleanup();
  1140. }
  1141. module_exit(qib_ib_cleanup);
  1142. /* this can only be called after a successful initialization */
  1143. static void cleanup_device_data(struct qib_devdata *dd)
  1144. {
  1145. int ctxt;
  1146. int pidx;
  1147. struct qib_ctxtdata **tmp;
  1148. unsigned long flags;
  1149. /* users can't do anything more with chip */
  1150. for (pidx = 0; pidx < dd->num_pports; ++pidx) {
  1151. if (dd->pport[pidx].statusp)
  1152. *dd->pport[pidx].statusp &= ~QIB_STATUS_CHIP_PRESENT;
  1153. spin_lock(&dd->pport[pidx].cc_shadow_lock);
  1154. kfree(dd->pport[pidx].congestion_entries);
  1155. dd->pport[pidx].congestion_entries = NULL;
  1156. kfree(dd->pport[pidx].ccti_entries);
  1157. dd->pport[pidx].ccti_entries = NULL;
  1158. kfree(dd->pport[pidx].ccti_entries_shadow);
  1159. dd->pport[pidx].ccti_entries_shadow = NULL;
  1160. kfree(dd->pport[pidx].congestion_entries_shadow);
  1161. dd->pport[pidx].congestion_entries_shadow = NULL;
  1162. spin_unlock(&dd->pport[pidx].cc_shadow_lock);
  1163. }
  1164. qib_disable_wc(dd);
  1165. if (dd->pioavailregs_dma) {
  1166. dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
  1167. (void *) dd->pioavailregs_dma,
  1168. dd->pioavailregs_phys);
  1169. dd->pioavailregs_dma = NULL;
  1170. }
  1171. if (dd->pageshadow) {
  1172. struct page **tmpp = dd->pageshadow;
  1173. dma_addr_t *tmpd = dd->physshadow;
  1174. int i;
  1175. for (ctxt = 0; ctxt < dd->cfgctxts; ctxt++) {
  1176. int ctxt_tidbase = ctxt * dd->rcvtidcnt;
  1177. int maxtid = ctxt_tidbase + dd->rcvtidcnt;
  1178. for (i = ctxt_tidbase; i < maxtid; i++) {
  1179. if (!tmpp[i])
  1180. continue;
  1181. pci_unmap_page(dd->pcidev, tmpd[i],
  1182. PAGE_SIZE, PCI_DMA_FROMDEVICE);
  1183. qib_release_user_pages(&tmpp[i], 1);
  1184. tmpp[i] = NULL;
  1185. }
  1186. }
  1187. dd->pageshadow = NULL;
  1188. vfree(tmpp);
  1189. dd->physshadow = NULL;
  1190. vfree(tmpd);
  1191. }
  1192. /*
  1193. * Free any resources still in use (usually just kernel contexts)
  1194. * at unload; we do for ctxtcnt, because that's what we allocate.
  1195. * We acquire lock to be really paranoid that rcd isn't being
  1196. * accessed from some interrupt-related code (that should not happen,
  1197. * but best to be sure).
  1198. */
  1199. spin_lock_irqsave(&dd->uctxt_lock, flags);
  1200. tmp = dd->rcd;
  1201. dd->rcd = NULL;
  1202. spin_unlock_irqrestore(&dd->uctxt_lock, flags);
  1203. for (ctxt = 0; tmp && ctxt < dd->ctxtcnt; ctxt++) {
  1204. struct qib_ctxtdata *rcd = tmp[ctxt];
  1205. tmp[ctxt] = NULL; /* debugging paranoia */
  1206. qib_free_ctxtdata(dd, rcd);
  1207. }
  1208. kfree(tmp);
  1209. }
  1210. /*
  1211. * Clean up on unit shutdown, or error during unit load after
  1212. * successful initialization.
  1213. */
  1214. static void qib_postinit_cleanup(struct qib_devdata *dd)
  1215. {
  1216. /*
  1217. * Clean up chip-specific stuff.
  1218. * We check for NULL here, because it's outside
  1219. * the kregbase check, and we need to call it
  1220. * after the free_irq. Thus it's possible that
  1221. * the function pointers were never initialized.
  1222. */
  1223. if (dd->f_cleanup)
  1224. dd->f_cleanup(dd);
  1225. qib_pcie_ddcleanup(dd);
  1226. cleanup_device_data(dd);
  1227. qib_free_devdata(dd);
  1228. }
  1229. static int qib_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
  1230. {
  1231. int ret, j, pidx, initfail;
  1232. struct qib_devdata *dd = NULL;
  1233. ret = qib_pcie_init(pdev, ent);
  1234. if (ret)
  1235. goto bail;
  1236. /*
  1237. * Do device-specific initialiation, function table setup, dd
  1238. * allocation, etc.
  1239. */
  1240. switch (ent->device) {
  1241. case PCI_DEVICE_ID_QLOGIC_IB_6120:
  1242. #ifdef CONFIG_PCI_MSI
  1243. dd = qib_init_iba6120_funcs(pdev, ent);
  1244. #else
  1245. qib_early_err(&pdev->dev,
  1246. "Intel PCIE device 0x%x cannot work if CONFIG_PCI_MSI is not enabled\n",
  1247. ent->device);
  1248. dd = ERR_PTR(-ENODEV);
  1249. #endif
  1250. break;
  1251. case PCI_DEVICE_ID_QLOGIC_IB_7220:
  1252. dd = qib_init_iba7220_funcs(pdev, ent);
  1253. break;
  1254. case PCI_DEVICE_ID_QLOGIC_IB_7322:
  1255. dd = qib_init_iba7322_funcs(pdev, ent);
  1256. break;
  1257. default:
  1258. qib_early_err(&pdev->dev,
  1259. "Failing on unknown Intel deviceid 0x%x\n",
  1260. ent->device);
  1261. ret = -ENODEV;
  1262. }
  1263. if (IS_ERR(dd))
  1264. ret = PTR_ERR(dd);
  1265. if (ret)
  1266. goto bail; /* error already printed */
  1267. ret = qib_create_workqueues(dd);
  1268. if (ret)
  1269. goto bail;
  1270. /* do the generic initialization */
  1271. initfail = qib_init(dd, 0);
  1272. ret = qib_register_ib_device(dd);
  1273. /*
  1274. * Now ready for use. this should be cleared whenever we
  1275. * detect a reset, or initiate one. If earlier failure,
  1276. * we still create devices, so diags, etc. can be used
  1277. * to determine cause of problem.
  1278. */
  1279. if (!qib_mini_init && !initfail && !ret)
  1280. dd->flags |= QIB_INITTED;
  1281. j = qib_device_create(dd);
  1282. if (j)
  1283. qib_dev_err(dd, "Failed to create /dev devices: %d\n", -j);
  1284. j = qibfs_add(dd);
  1285. if (j)
  1286. qib_dev_err(dd, "Failed filesystem setup for counters: %d\n",
  1287. -j);
  1288. if (qib_mini_init || initfail || ret) {
  1289. qib_stop_timers(dd);
  1290. flush_workqueue(ib_wq);
  1291. for (pidx = 0; pidx < dd->num_pports; ++pidx)
  1292. dd->f_quiet_serdes(dd->pport + pidx);
  1293. if (qib_mini_init)
  1294. goto bail;
  1295. if (!j) {
  1296. (void) qibfs_remove(dd);
  1297. qib_device_remove(dd);
  1298. }
  1299. if (!ret)
  1300. qib_unregister_ib_device(dd);
  1301. qib_postinit_cleanup(dd);
  1302. if (initfail)
  1303. ret = initfail;
  1304. goto bail;
  1305. }
  1306. ret = qib_enable_wc(dd);
  1307. if (ret) {
  1308. qib_dev_err(dd,
  1309. "Write combining not enabled (err %d): performance may be poor\n",
  1310. -ret);
  1311. ret = 0;
  1312. }
  1313. qib_verify_pioperf(dd);
  1314. bail:
  1315. return ret;
  1316. }
  1317. static void qib_remove_one(struct pci_dev *pdev)
  1318. {
  1319. struct qib_devdata *dd = pci_get_drvdata(pdev);
  1320. int ret;
  1321. /* unregister from IB core */
  1322. qib_unregister_ib_device(dd);
  1323. /*
  1324. * Disable the IB link, disable interrupts on the device,
  1325. * clear dma engines, etc.
  1326. */
  1327. if (!qib_mini_init)
  1328. qib_shutdown_device(dd);
  1329. qib_stop_timers(dd);
  1330. /* wait until all of our (qsfp) queue_work() calls complete */
  1331. flush_workqueue(ib_wq);
  1332. ret = qibfs_remove(dd);
  1333. if (ret)
  1334. qib_dev_err(dd, "Failed counters filesystem cleanup: %d\n",
  1335. -ret);
  1336. qib_device_remove(dd);
  1337. qib_postinit_cleanup(dd);
  1338. }
  1339. static void qib_shutdown_one(struct pci_dev *pdev)
  1340. {
  1341. struct qib_devdata *dd = pci_get_drvdata(pdev);
  1342. qib_shutdown_device(dd);
  1343. }
  1344. /**
  1345. * qib_create_rcvhdrq - create a receive header queue
  1346. * @dd: the qlogic_ib device
  1347. * @rcd: the context data
  1348. *
  1349. * This must be contiguous memory (from an i/o perspective), and must be
  1350. * DMA'able (which means for some systems, it will go through an IOMMU,
  1351. * or be forced into a low address range).
  1352. */
  1353. int qib_create_rcvhdrq(struct qib_devdata *dd, struct qib_ctxtdata *rcd)
  1354. {
  1355. unsigned amt;
  1356. int old_node_id;
  1357. if (!rcd->rcvhdrq) {
  1358. dma_addr_t phys_hdrqtail;
  1359. gfp_t gfp_flags;
  1360. amt = ALIGN(dd->rcvhdrcnt * dd->rcvhdrentsize *
  1361. sizeof(u32), PAGE_SIZE);
  1362. gfp_flags = (rcd->ctxt >= dd->first_user_ctxt) ?
  1363. GFP_USER : GFP_KERNEL;
  1364. old_node_id = dev_to_node(&dd->pcidev->dev);
  1365. set_dev_node(&dd->pcidev->dev, rcd->node_id);
  1366. rcd->rcvhdrq = dma_alloc_coherent(
  1367. &dd->pcidev->dev, amt, &rcd->rcvhdrq_phys,
  1368. gfp_flags | __GFP_COMP);
  1369. set_dev_node(&dd->pcidev->dev, old_node_id);
  1370. if (!rcd->rcvhdrq) {
  1371. qib_dev_err(dd,
  1372. "attempt to allocate %d bytes for ctxt %u rcvhdrq failed\n",
  1373. amt, rcd->ctxt);
  1374. goto bail;
  1375. }
  1376. if (rcd->ctxt >= dd->first_user_ctxt) {
  1377. rcd->user_event_mask = vmalloc_user(PAGE_SIZE);
  1378. if (!rcd->user_event_mask)
  1379. goto bail_free_hdrq;
  1380. }
  1381. if (!(dd->flags & QIB_NODMA_RTAIL)) {
  1382. set_dev_node(&dd->pcidev->dev, rcd->node_id);
  1383. rcd->rcvhdrtail_kvaddr = dma_alloc_coherent(
  1384. &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail,
  1385. gfp_flags);
  1386. set_dev_node(&dd->pcidev->dev, old_node_id);
  1387. if (!rcd->rcvhdrtail_kvaddr)
  1388. goto bail_free;
  1389. rcd->rcvhdrqtailaddr_phys = phys_hdrqtail;
  1390. }
  1391. rcd->rcvhdrq_size = amt;
  1392. }
  1393. /* clear for security and sanity on each use */
  1394. memset(rcd->rcvhdrq, 0, rcd->rcvhdrq_size);
  1395. if (rcd->rcvhdrtail_kvaddr)
  1396. memset(rcd->rcvhdrtail_kvaddr, 0, PAGE_SIZE);
  1397. return 0;
  1398. bail_free:
  1399. qib_dev_err(dd,
  1400. "attempt to allocate 1 page for ctxt %u rcvhdrqtailaddr failed\n",
  1401. rcd->ctxt);
  1402. vfree(rcd->user_event_mask);
  1403. rcd->user_event_mask = NULL;
  1404. bail_free_hdrq:
  1405. dma_free_coherent(&dd->pcidev->dev, amt, rcd->rcvhdrq,
  1406. rcd->rcvhdrq_phys);
  1407. rcd->rcvhdrq = NULL;
  1408. bail:
  1409. return -ENOMEM;
  1410. }
  1411. /**
  1412. * allocate eager buffers, both kernel and user contexts.
  1413. * @rcd: the context we are setting up.
  1414. *
  1415. * Allocate the eager TID buffers and program them into hip.
  1416. * They are no longer completely contiguous, we do multiple allocation
  1417. * calls. Otherwise we get the OOM code involved, by asking for too
  1418. * much per call, with disastrous results on some kernels.
  1419. */
  1420. int qib_setup_eagerbufs(struct qib_ctxtdata *rcd)
  1421. {
  1422. struct qib_devdata *dd = rcd->dd;
  1423. unsigned e, egrcnt, egrperchunk, chunk, egrsize, egroff;
  1424. size_t size;
  1425. gfp_t gfp_flags;
  1426. int old_node_id;
  1427. /*
  1428. * GFP_USER, but without GFP_FS, so buffer cache can be
  1429. * coalesced (we hope); otherwise, even at order 4,
  1430. * heavy filesystem activity makes these fail, and we can
  1431. * use compound pages.
  1432. */
  1433. gfp_flags = __GFP_RECLAIM | __GFP_IO | __GFP_COMP;
  1434. egrcnt = rcd->rcvegrcnt;
  1435. egroff = rcd->rcvegr_tid_base;
  1436. egrsize = dd->rcvegrbufsize;
  1437. chunk = rcd->rcvegrbuf_chunks;
  1438. egrperchunk = rcd->rcvegrbufs_perchunk;
  1439. size = rcd->rcvegrbuf_size;
  1440. if (!rcd->rcvegrbuf) {
  1441. rcd->rcvegrbuf =
  1442. kcalloc_node(chunk, sizeof(rcd->rcvegrbuf[0]),
  1443. GFP_KERNEL, rcd->node_id);
  1444. if (!rcd->rcvegrbuf)
  1445. goto bail;
  1446. }
  1447. if (!rcd->rcvegrbuf_phys) {
  1448. rcd->rcvegrbuf_phys =
  1449. kmalloc_array_node(chunk,
  1450. sizeof(rcd->rcvegrbuf_phys[0]),
  1451. GFP_KERNEL, rcd->node_id);
  1452. if (!rcd->rcvegrbuf_phys)
  1453. goto bail_rcvegrbuf;
  1454. }
  1455. for (e = 0; e < rcd->rcvegrbuf_chunks; e++) {
  1456. if (rcd->rcvegrbuf[e])
  1457. continue;
  1458. old_node_id = dev_to_node(&dd->pcidev->dev);
  1459. set_dev_node(&dd->pcidev->dev, rcd->node_id);
  1460. rcd->rcvegrbuf[e] =
  1461. dma_alloc_coherent(&dd->pcidev->dev, size,
  1462. &rcd->rcvegrbuf_phys[e],
  1463. gfp_flags);
  1464. set_dev_node(&dd->pcidev->dev, old_node_id);
  1465. if (!rcd->rcvegrbuf[e])
  1466. goto bail_rcvegrbuf_phys;
  1467. }
  1468. rcd->rcvegr_phys = rcd->rcvegrbuf_phys[0];
  1469. for (e = chunk = 0; chunk < rcd->rcvegrbuf_chunks; chunk++) {
  1470. dma_addr_t pa = rcd->rcvegrbuf_phys[chunk];
  1471. unsigned i;
  1472. /* clear for security and sanity on each use */
  1473. memset(rcd->rcvegrbuf[chunk], 0, size);
  1474. for (i = 0; e < egrcnt && i < egrperchunk; e++, i++) {
  1475. dd->f_put_tid(dd, e + egroff +
  1476. (u64 __iomem *)
  1477. ((char __iomem *)
  1478. dd->kregbase +
  1479. dd->rcvegrbase),
  1480. RCVHQ_RCV_TYPE_EAGER, pa);
  1481. pa += egrsize;
  1482. }
  1483. cond_resched(); /* don't hog the cpu */
  1484. }
  1485. return 0;
  1486. bail_rcvegrbuf_phys:
  1487. for (e = 0; e < rcd->rcvegrbuf_chunks && rcd->rcvegrbuf[e]; e++)
  1488. dma_free_coherent(&dd->pcidev->dev, size,
  1489. rcd->rcvegrbuf[e], rcd->rcvegrbuf_phys[e]);
  1490. kfree(rcd->rcvegrbuf_phys);
  1491. rcd->rcvegrbuf_phys = NULL;
  1492. bail_rcvegrbuf:
  1493. kfree(rcd->rcvegrbuf);
  1494. rcd->rcvegrbuf = NULL;
  1495. bail:
  1496. return -ENOMEM;
  1497. }
  1498. /*
  1499. * Note: Changes to this routine should be mirrored
  1500. * for the diagnostics routine qib_remap_ioaddr32().
  1501. * There is also related code for VL15 buffers in qib_init_7322_variables().
  1502. * The teardown code that unmaps is in qib_pcie_ddcleanup()
  1503. */
  1504. int init_chip_wc_pat(struct qib_devdata *dd, u32 vl15buflen)
  1505. {
  1506. u64 __iomem *qib_kregbase = NULL;
  1507. void __iomem *qib_piobase = NULL;
  1508. u64 __iomem *qib_userbase = NULL;
  1509. u64 qib_kreglen;
  1510. u64 qib_pio2koffset = dd->piobufbase & 0xffffffff;
  1511. u64 qib_pio4koffset = dd->piobufbase >> 32;
  1512. u64 qib_pio2klen = dd->piobcnt2k * dd->palign;
  1513. u64 qib_pio4klen = dd->piobcnt4k * dd->align4k;
  1514. u64 qib_physaddr = dd->physaddr;
  1515. u64 qib_piolen;
  1516. u64 qib_userlen = 0;
  1517. /*
  1518. * Free the old mapping because the kernel will try to reuse the
  1519. * old mapping and not create a new mapping with the
  1520. * write combining attribute.
  1521. */
  1522. iounmap(dd->kregbase);
  1523. dd->kregbase = NULL;
  1524. /*
  1525. * Assumes chip address space looks like:
  1526. * - kregs + sregs + cregs + uregs (in any order)
  1527. * - piobufs (2K and 4K bufs in either order)
  1528. * or:
  1529. * - kregs + sregs + cregs (in any order)
  1530. * - piobufs (2K and 4K bufs in either order)
  1531. * - uregs
  1532. */
  1533. if (dd->piobcnt4k == 0) {
  1534. qib_kreglen = qib_pio2koffset;
  1535. qib_piolen = qib_pio2klen;
  1536. } else if (qib_pio2koffset < qib_pio4koffset) {
  1537. qib_kreglen = qib_pio2koffset;
  1538. qib_piolen = qib_pio4koffset + qib_pio4klen - qib_kreglen;
  1539. } else {
  1540. qib_kreglen = qib_pio4koffset;
  1541. qib_piolen = qib_pio2koffset + qib_pio2klen - qib_kreglen;
  1542. }
  1543. qib_piolen += vl15buflen;
  1544. /* Map just the configured ports (not all hw ports) */
  1545. if (dd->uregbase > qib_kreglen)
  1546. qib_userlen = dd->ureg_align * dd->cfgctxts;
  1547. /* Sanity checks passed, now create the new mappings */
  1548. qib_kregbase = ioremap_nocache(qib_physaddr, qib_kreglen);
  1549. if (!qib_kregbase)
  1550. goto bail;
  1551. qib_piobase = ioremap_wc(qib_physaddr + qib_kreglen, qib_piolen);
  1552. if (!qib_piobase)
  1553. goto bail_kregbase;
  1554. if (qib_userlen) {
  1555. qib_userbase = ioremap_nocache(qib_physaddr + dd->uregbase,
  1556. qib_userlen);
  1557. if (!qib_userbase)
  1558. goto bail_piobase;
  1559. }
  1560. dd->kregbase = qib_kregbase;
  1561. dd->kregend = (u64 __iomem *)
  1562. ((char __iomem *) qib_kregbase + qib_kreglen);
  1563. dd->piobase = qib_piobase;
  1564. dd->pio2kbase = (void __iomem *)
  1565. (((char __iomem *) dd->piobase) +
  1566. qib_pio2koffset - qib_kreglen);
  1567. if (dd->piobcnt4k)
  1568. dd->pio4kbase = (void __iomem *)
  1569. (((char __iomem *) dd->piobase) +
  1570. qib_pio4koffset - qib_kreglen);
  1571. if (qib_userlen)
  1572. /* ureg will now be accessed relative to dd->userbase */
  1573. dd->userbase = qib_userbase;
  1574. return 0;
  1575. bail_piobase:
  1576. iounmap(qib_piobase);
  1577. bail_kregbase:
  1578. iounmap(qib_kregbase);
  1579. bail:
  1580. return -ENOMEM;
  1581. }