ipath_driver.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  1. /*
  2. * Copyright (c) 2006, 2007 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/idr.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 "ipath_kernel.h"
  41. #include "ipath_verbs.h"
  42. #include "ipath_common.h"
  43. static void ipath_update_pio_bufs(struct ipath_devdata *);
  44. const char *ipath_get_unit_name(int unit)
  45. {
  46. static char iname[16];
  47. snprintf(iname, sizeof iname, "infinipath%u", unit);
  48. return iname;
  49. }
  50. #define DRIVER_LOAD_MSG "QLogic " IPATH_DRV_NAME " loaded: "
  51. #define PFX IPATH_DRV_NAME ": "
  52. /*
  53. * The size has to be longer than this string, so we can append
  54. * board/chip information to it in the init code.
  55. */
  56. const char ib_ipath_version[] = IPATH_IDSTR "\n";
  57. static struct idr unit_table;
  58. DEFINE_SPINLOCK(ipath_devs_lock);
  59. LIST_HEAD(ipath_dev_list);
  60. wait_queue_head_t ipath_state_wait;
  61. unsigned ipath_debug = __IPATH_INFO;
  62. module_param_named(debug, ipath_debug, uint, S_IWUSR | S_IRUGO);
  63. MODULE_PARM_DESC(debug, "mask for debug prints");
  64. EXPORT_SYMBOL_GPL(ipath_debug);
  65. MODULE_LICENSE("GPL");
  66. MODULE_AUTHOR("QLogic <support@pathscale.com>");
  67. MODULE_DESCRIPTION("QLogic InfiniPath driver");
  68. const char *ipath_ibcstatus_str[] = {
  69. "Disabled",
  70. "LinkUp",
  71. "PollActive",
  72. "PollQuiet",
  73. "SleepDelay",
  74. "SleepQuiet",
  75. "LState6", /* unused */
  76. "LState7", /* unused */
  77. "CfgDebounce",
  78. "CfgRcvfCfg",
  79. "CfgWaitRmt",
  80. "CfgIdle",
  81. "RecovRetrain",
  82. "LState0xD", /* unused */
  83. "RecovWaitRmt",
  84. "RecovIdle",
  85. };
  86. static void __devexit ipath_remove_one(struct pci_dev *);
  87. static int __devinit ipath_init_one(struct pci_dev *,
  88. const struct pci_device_id *);
  89. /* Only needed for registration, nothing else needs this info */
  90. #define PCI_VENDOR_ID_PATHSCALE 0x1fc1
  91. #define PCI_DEVICE_ID_INFINIPATH_HT 0xd
  92. #define PCI_DEVICE_ID_INFINIPATH_PE800 0x10
  93. /* Number of seconds before our card status check... */
  94. #define STATUS_TIMEOUT 60
  95. static const struct pci_device_id ipath_pci_tbl[] = {
  96. { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_HT) },
  97. { PCI_DEVICE(PCI_VENDOR_ID_PATHSCALE, PCI_DEVICE_ID_INFINIPATH_PE800) },
  98. { 0, }
  99. };
  100. MODULE_DEVICE_TABLE(pci, ipath_pci_tbl);
  101. static struct pci_driver ipath_driver = {
  102. .name = IPATH_DRV_NAME,
  103. .probe = ipath_init_one,
  104. .remove = __devexit_p(ipath_remove_one),
  105. .id_table = ipath_pci_tbl,
  106. .driver = {
  107. .groups = ipath_driver_attr_groups,
  108. },
  109. };
  110. static void ipath_check_status(struct work_struct *work)
  111. {
  112. struct ipath_devdata *dd = container_of(work, struct ipath_devdata,
  113. status_work.work);
  114. /*
  115. * If we don't have any interrupts, let the user know and
  116. * don't bother checking again.
  117. */
  118. if (dd->ipath_int_counter == 0)
  119. dev_err(&dd->pcidev->dev, "No interrupts detected.\n");
  120. }
  121. static inline void read_bars(struct ipath_devdata *dd, struct pci_dev *dev,
  122. u32 *bar0, u32 *bar1)
  123. {
  124. int ret;
  125. ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, bar0);
  126. if (ret)
  127. ipath_dev_err(dd, "failed to read bar0 before enable: "
  128. "error %d\n", -ret);
  129. ret = pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, bar1);
  130. if (ret)
  131. ipath_dev_err(dd, "failed to read bar1 before enable: "
  132. "error %d\n", -ret);
  133. ipath_dbg("Read bar0 %x bar1 %x\n", *bar0, *bar1);
  134. }
  135. static void ipath_free_devdata(struct pci_dev *pdev,
  136. struct ipath_devdata *dd)
  137. {
  138. unsigned long flags;
  139. pci_set_drvdata(pdev, NULL);
  140. if (dd->ipath_unit != -1) {
  141. spin_lock_irqsave(&ipath_devs_lock, flags);
  142. idr_remove(&unit_table, dd->ipath_unit);
  143. list_del(&dd->ipath_list);
  144. spin_unlock_irqrestore(&ipath_devs_lock, flags);
  145. }
  146. vfree(dd);
  147. }
  148. static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev)
  149. {
  150. unsigned long flags;
  151. struct ipath_devdata *dd;
  152. int ret;
  153. if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
  154. dd = ERR_PTR(-ENOMEM);
  155. goto bail;
  156. }
  157. dd = vmalloc(sizeof(*dd));
  158. if (!dd) {
  159. dd = ERR_PTR(-ENOMEM);
  160. goto bail;
  161. }
  162. memset(dd, 0, sizeof(*dd));
  163. dd->ipath_unit = -1;
  164. spin_lock_irqsave(&ipath_devs_lock, flags);
  165. ret = idr_get_new(&unit_table, dd, &dd->ipath_unit);
  166. if (ret < 0) {
  167. printk(KERN_ERR IPATH_DRV_NAME
  168. ": Could not allocate unit ID: error %d\n", -ret);
  169. ipath_free_devdata(pdev, dd);
  170. dd = ERR_PTR(ret);
  171. goto bail_unlock;
  172. }
  173. dd->pcidev = pdev;
  174. pci_set_drvdata(pdev, dd);
  175. INIT_DELAYED_WORK(&dd->status_work, ipath_check_status);
  176. list_add(&dd->ipath_list, &ipath_dev_list);
  177. bail_unlock:
  178. spin_unlock_irqrestore(&ipath_devs_lock, flags);
  179. bail:
  180. return dd;
  181. }
  182. static inline struct ipath_devdata *__ipath_lookup(int unit)
  183. {
  184. return idr_find(&unit_table, unit);
  185. }
  186. struct ipath_devdata *ipath_lookup(int unit)
  187. {
  188. struct ipath_devdata *dd;
  189. unsigned long flags;
  190. spin_lock_irqsave(&ipath_devs_lock, flags);
  191. dd = __ipath_lookup(unit);
  192. spin_unlock_irqrestore(&ipath_devs_lock, flags);
  193. return dd;
  194. }
  195. int ipath_count_units(int *npresentp, int *nupp, u32 *maxportsp)
  196. {
  197. int nunits, npresent, nup;
  198. struct ipath_devdata *dd;
  199. unsigned long flags;
  200. u32 maxports;
  201. nunits = npresent = nup = maxports = 0;
  202. spin_lock_irqsave(&ipath_devs_lock, flags);
  203. list_for_each_entry(dd, &ipath_dev_list, ipath_list) {
  204. nunits++;
  205. if ((dd->ipath_flags & IPATH_PRESENT) && dd->ipath_kregbase)
  206. npresent++;
  207. if (dd->ipath_lid &&
  208. !(dd->ipath_flags & (IPATH_DISABLED | IPATH_LINKDOWN
  209. | IPATH_LINKUNK)))
  210. nup++;
  211. if (dd->ipath_cfgports > maxports)
  212. maxports = dd->ipath_cfgports;
  213. }
  214. spin_unlock_irqrestore(&ipath_devs_lock, flags);
  215. if (npresentp)
  216. *npresentp = npresent;
  217. if (nupp)
  218. *nupp = nup;
  219. if (maxportsp)
  220. *maxportsp = maxports;
  221. return nunits;
  222. }
  223. /*
  224. * These next two routines are placeholders in case we don't have per-arch
  225. * code for controlling write combining. If explicit control of write
  226. * combining is not available, performance will probably be awful.
  227. */
  228. int __attribute__((weak)) ipath_enable_wc(struct ipath_devdata *dd)
  229. {
  230. return -EOPNOTSUPP;
  231. }
  232. void __attribute__((weak)) ipath_disable_wc(struct ipath_devdata *dd)
  233. {
  234. }
  235. /*
  236. * Perform a PIO buffer bandwidth write test, to verify proper system
  237. * configuration. Even when all the setup calls work, occasionally
  238. * BIOS or other issues can prevent write combining from working, or
  239. * can cause other bandwidth problems to the chip.
  240. *
  241. * This test simply writes the same buffer over and over again, and
  242. * measures close to the peak bandwidth to the chip (not testing
  243. * data bandwidth to the wire). On chips that use an address-based
  244. * trigger to send packets to the wire, this is easy. On chips that
  245. * use a count to trigger, we want to make sure that the packet doesn't
  246. * go out on the wire, or trigger flow control checks.
  247. */
  248. static void ipath_verify_pioperf(struct ipath_devdata *dd)
  249. {
  250. u32 pbnum, cnt, lcnt;
  251. u32 __iomem *piobuf;
  252. u32 *addr;
  253. u64 msecs, emsecs;
  254. piobuf = ipath_getpiobuf(dd, &pbnum);
  255. if (!piobuf) {
  256. dev_info(&dd->pcidev->dev,
  257. "No PIObufs for checking perf, skipping\n");
  258. return;
  259. }
  260. /*
  261. * Enough to give us a reasonable test, less than piobuf size, and
  262. * likely multiple of store buffer length.
  263. */
  264. cnt = 1024;
  265. addr = vmalloc(cnt);
  266. if (!addr) {
  267. dev_info(&dd->pcidev->dev,
  268. "Couldn't get memory for checking PIO perf,"
  269. " skipping\n");
  270. goto done;
  271. }
  272. preempt_disable(); /* we want reasonably accurate elapsed time */
  273. msecs = 1 + jiffies_to_msecs(jiffies);
  274. for (lcnt = 0; lcnt < 10000U; lcnt++) {
  275. /* wait until we cross msec boundary */
  276. if (jiffies_to_msecs(jiffies) >= msecs)
  277. break;
  278. udelay(1);
  279. }
  280. ipath_disable_armlaunch(dd);
  281. writeq(0, piobuf); /* length 0, no dwords actually sent */
  282. ipath_flush_wc();
  283. /*
  284. * this is only roughly accurate, since even with preempt we
  285. * still take interrupts that could take a while. Running for
  286. * >= 5 msec seems to get us "close enough" to accurate values
  287. */
  288. msecs = jiffies_to_msecs(jiffies);
  289. for (emsecs = lcnt = 0; emsecs <= 5UL; lcnt++) {
  290. __iowrite32_copy(piobuf + 64, addr, cnt >> 2);
  291. emsecs = jiffies_to_msecs(jiffies) - msecs;
  292. }
  293. /* 1 GiB/sec, slightly over IB SDR line rate */
  294. if (lcnt < (emsecs * 1024U))
  295. ipath_dev_err(dd,
  296. "Performance problem: bandwidth to PIO buffers is "
  297. "only %u MiB/sec\n",
  298. lcnt / (u32) emsecs);
  299. else
  300. ipath_dbg("PIO buffer bandwidth %u MiB/sec is OK\n",
  301. lcnt / (u32) emsecs);
  302. preempt_enable();
  303. vfree(addr);
  304. done:
  305. /* disarm piobuf, so it's available again */
  306. ipath_disarm_piobufs(dd, pbnum, 1);
  307. ipath_enable_armlaunch(dd);
  308. }
  309. static int __devinit ipath_init_one(struct pci_dev *pdev,
  310. const struct pci_device_id *ent)
  311. {
  312. int ret, len, j;
  313. struct ipath_devdata *dd;
  314. unsigned long long addr;
  315. u32 bar0 = 0, bar1 = 0;
  316. dd = ipath_alloc_devdata(pdev);
  317. if (IS_ERR(dd)) {
  318. ret = PTR_ERR(dd);
  319. printk(KERN_ERR IPATH_DRV_NAME
  320. ": Could not allocate devdata: error %d\n", -ret);
  321. goto bail;
  322. }
  323. ipath_cdbg(VERBOSE, "initializing unit #%u\n", dd->ipath_unit);
  324. ret = pci_enable_device(pdev);
  325. if (ret) {
  326. /* This can happen iff:
  327. *
  328. * We did a chip reset, and then failed to reprogram the
  329. * BAR, or the chip reset due to an internal error. We then
  330. * unloaded the driver and reloaded it.
  331. *
  332. * Both reset cases set the BAR back to initial state. For
  333. * the latter case, the AER sticky error bit at offset 0x718
  334. * should be set, but the Linux kernel doesn't yet know
  335. * about that, it appears. If the original BAR was retained
  336. * in the kernel data structures, this may be OK.
  337. */
  338. ipath_dev_err(dd, "enable unit %d failed: error %d\n",
  339. dd->ipath_unit, -ret);
  340. goto bail_devdata;
  341. }
  342. addr = pci_resource_start(pdev, 0);
  343. len = pci_resource_len(pdev, 0);
  344. ipath_cdbg(VERBOSE, "regbase (0) %llx len %d pdev->irq %d, vend %x/%x "
  345. "driver_data %lx\n", addr, len, pdev->irq, ent->vendor,
  346. ent->device, ent->driver_data);
  347. read_bars(dd, pdev, &bar0, &bar1);
  348. if (!bar1 && !(bar0 & ~0xf)) {
  349. if (addr) {
  350. dev_info(&pdev->dev, "BAR is 0 (probable RESET), "
  351. "rewriting as %llx\n", addr);
  352. ret = pci_write_config_dword(
  353. pdev, PCI_BASE_ADDRESS_0, addr);
  354. if (ret) {
  355. ipath_dev_err(dd, "rewrite of BAR0 "
  356. "failed: err %d\n", -ret);
  357. goto bail_disable;
  358. }
  359. ret = pci_write_config_dword(
  360. pdev, PCI_BASE_ADDRESS_1, addr >> 32);
  361. if (ret) {
  362. ipath_dev_err(dd, "rewrite of BAR1 "
  363. "failed: err %d\n", -ret);
  364. goto bail_disable;
  365. }
  366. } else {
  367. ipath_dev_err(dd, "BAR is 0 (probable RESET), "
  368. "not usable until reboot\n");
  369. ret = -ENODEV;
  370. goto bail_disable;
  371. }
  372. }
  373. ret = pci_request_regions(pdev, IPATH_DRV_NAME);
  374. if (ret) {
  375. dev_info(&pdev->dev, "pci_request_regions unit %u fails: "
  376. "err %d\n", dd->ipath_unit, -ret);
  377. goto bail_disable;
  378. }
  379. ret = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
  380. if (ret) {
  381. /*
  382. * if the 64 bit setup fails, try 32 bit. Some systems
  383. * do not setup 64 bit maps on systems with 2GB or less
  384. * memory installed.
  385. */
  386. ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
  387. if (ret) {
  388. dev_info(&pdev->dev,
  389. "Unable to set DMA mask for unit %u: %d\n",
  390. dd->ipath_unit, ret);
  391. goto bail_regions;
  392. }
  393. else {
  394. ipath_dbg("No 64bit DMA mask, used 32 bit mask\n");
  395. ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
  396. if (ret)
  397. dev_info(&pdev->dev,
  398. "Unable to set DMA consistent mask "
  399. "for unit %u: %d\n",
  400. dd->ipath_unit, ret);
  401. }
  402. }
  403. else {
  404. ret = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
  405. if (ret)
  406. dev_info(&pdev->dev,
  407. "Unable to set DMA consistent mask "
  408. "for unit %u: %d\n",
  409. dd->ipath_unit, ret);
  410. }
  411. pci_set_master(pdev);
  412. /*
  413. * Save BARs to rewrite after device reset. Save all 64 bits of
  414. * BAR, just in case.
  415. */
  416. dd->ipath_pcibar0 = addr;
  417. dd->ipath_pcibar1 = addr >> 32;
  418. dd->ipath_deviceid = ent->device; /* save for later use */
  419. dd->ipath_vendorid = ent->vendor;
  420. /* setup the chip-specific functions, as early as possible. */
  421. switch (ent->device) {
  422. case PCI_DEVICE_ID_INFINIPATH_HT:
  423. #ifdef CONFIG_HT_IRQ
  424. ipath_init_iba6110_funcs(dd);
  425. break;
  426. #else
  427. ipath_dev_err(dd, "QLogic HT device 0x%x cannot work if "
  428. "CONFIG_HT_IRQ is not enabled\n", ent->device);
  429. return -ENODEV;
  430. #endif
  431. case PCI_DEVICE_ID_INFINIPATH_PE800:
  432. #ifdef CONFIG_PCI_MSI
  433. ipath_init_iba6120_funcs(dd);
  434. break;
  435. #else
  436. ipath_dev_err(dd, "QLogic PCIE device 0x%x cannot work if "
  437. "CONFIG_PCI_MSI is not enabled\n", ent->device);
  438. return -ENODEV;
  439. #endif
  440. default:
  441. ipath_dev_err(dd, "Found unknown QLogic deviceid 0x%x, "
  442. "failing\n", ent->device);
  443. return -ENODEV;
  444. }
  445. for (j = 0; j < 6; j++) {
  446. if (!pdev->resource[j].start)
  447. continue;
  448. ipath_cdbg(VERBOSE, "BAR %d start %llx, end %llx, len %llx\n",
  449. j, (unsigned long long)pdev->resource[j].start,
  450. (unsigned long long)pdev->resource[j].end,
  451. (unsigned long long)pci_resource_len(pdev, j));
  452. }
  453. if (!addr) {
  454. ipath_dev_err(dd, "No valid address in BAR 0!\n");
  455. ret = -ENODEV;
  456. goto bail_regions;
  457. }
  458. dd->ipath_pcirev = pdev->revision;
  459. #if defined(__powerpc__)
  460. /* There isn't a generic way to specify writethrough mappings */
  461. dd->ipath_kregbase = __ioremap(addr, len,
  462. (_PAGE_NO_CACHE|_PAGE_WRITETHRU));
  463. #else
  464. dd->ipath_kregbase = ioremap_nocache(addr, len);
  465. #endif
  466. if (!dd->ipath_kregbase) {
  467. ipath_dbg("Unable to map io addr %llx to kvirt, failing\n",
  468. addr);
  469. ret = -ENOMEM;
  470. goto bail_iounmap;
  471. }
  472. dd->ipath_kregend = (u64 __iomem *)
  473. ((void __iomem *)dd->ipath_kregbase + len);
  474. dd->ipath_physaddr = addr; /* used for io_remap, etc. */
  475. /* for user mmap */
  476. ipath_cdbg(VERBOSE, "mapped io addr %llx to kregbase %p\n",
  477. addr, dd->ipath_kregbase);
  478. /*
  479. * clear ipath_flags here instead of in ipath_init_chip as it is set
  480. * by ipath_setup_htconfig.
  481. */
  482. dd->ipath_flags = 0;
  483. dd->ipath_lli_counter = 0;
  484. dd->ipath_lli_errors = 0;
  485. if (dd->ipath_f_bus(dd, pdev))
  486. ipath_dev_err(dd, "Failed to setup config space; "
  487. "continuing anyway\n");
  488. /*
  489. * set up our interrupt handler; IRQF_SHARED probably not needed,
  490. * since MSI interrupts shouldn't be shared but won't hurt for now.
  491. * check 0 irq after we return from chip-specific bus setup, since
  492. * that can affect this due to setup
  493. */
  494. if (!dd->ipath_irq)
  495. ipath_dev_err(dd, "irq is 0, BIOS error? Interrupts won't "
  496. "work\n");
  497. else {
  498. ret = request_irq(dd->ipath_irq, ipath_intr, IRQF_SHARED,
  499. IPATH_DRV_NAME, dd);
  500. if (ret) {
  501. ipath_dev_err(dd, "Couldn't setup irq handler, "
  502. "irq=%d: %d\n", dd->ipath_irq, ret);
  503. goto bail_iounmap;
  504. }
  505. }
  506. ret = ipath_init_chip(dd, 0); /* do the chip-specific init */
  507. if (ret)
  508. goto bail_irqsetup;
  509. ret = ipath_enable_wc(dd);
  510. if (ret) {
  511. ipath_dev_err(dd, "Write combining not enabled "
  512. "(err %d): performance may be poor\n",
  513. -ret);
  514. ret = 0;
  515. }
  516. ipath_verify_pioperf(dd);
  517. ipath_device_create_group(&pdev->dev, dd);
  518. ipathfs_add_device(dd);
  519. ipath_user_add(dd);
  520. ipath_diag_add(dd);
  521. ipath_register_ib_device(dd);
  522. /* Check that card status in STATUS_TIMEOUT seconds. */
  523. schedule_delayed_work(&dd->status_work, HZ * STATUS_TIMEOUT);
  524. goto bail;
  525. bail_irqsetup:
  526. if (pdev->irq) free_irq(pdev->irq, dd);
  527. bail_iounmap:
  528. iounmap((volatile void __iomem *) dd->ipath_kregbase);
  529. bail_regions:
  530. pci_release_regions(pdev);
  531. bail_disable:
  532. pci_disable_device(pdev);
  533. bail_devdata:
  534. ipath_free_devdata(pdev, dd);
  535. bail:
  536. return ret;
  537. }
  538. static void __devexit cleanup_device(struct ipath_devdata *dd)
  539. {
  540. int port;
  541. if (*dd->ipath_statusp & IPATH_STATUS_CHIP_PRESENT) {
  542. /* can't do anything more with chip; needs re-init */
  543. *dd->ipath_statusp &= ~IPATH_STATUS_CHIP_PRESENT;
  544. if (dd->ipath_kregbase) {
  545. /*
  546. * if we haven't already cleaned up before these are
  547. * to ensure any register reads/writes "fail" until
  548. * re-init
  549. */
  550. dd->ipath_kregbase = NULL;
  551. dd->ipath_uregbase = 0;
  552. dd->ipath_sregbase = 0;
  553. dd->ipath_cregbase = 0;
  554. dd->ipath_kregsize = 0;
  555. }
  556. ipath_disable_wc(dd);
  557. }
  558. if (dd->ipath_pioavailregs_dma) {
  559. dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
  560. (void *) dd->ipath_pioavailregs_dma,
  561. dd->ipath_pioavailregs_phys);
  562. dd->ipath_pioavailregs_dma = NULL;
  563. }
  564. if (dd->ipath_dummy_hdrq) {
  565. dma_free_coherent(&dd->pcidev->dev,
  566. dd->ipath_pd[0]->port_rcvhdrq_size,
  567. dd->ipath_dummy_hdrq, dd->ipath_dummy_hdrq_phys);
  568. dd->ipath_dummy_hdrq = NULL;
  569. }
  570. if (dd->ipath_pageshadow) {
  571. struct page **tmpp = dd->ipath_pageshadow;
  572. dma_addr_t *tmpd = dd->ipath_physshadow;
  573. int i, cnt = 0;
  574. ipath_cdbg(VERBOSE, "Unlocking any expTID pages still "
  575. "locked\n");
  576. for (port = 0; port < dd->ipath_cfgports; port++) {
  577. int port_tidbase = port * dd->ipath_rcvtidcnt;
  578. int maxtid = port_tidbase + dd->ipath_rcvtidcnt;
  579. for (i = port_tidbase; i < maxtid; i++) {
  580. if (!tmpp[i])
  581. continue;
  582. pci_unmap_page(dd->pcidev, tmpd[i],
  583. PAGE_SIZE, PCI_DMA_FROMDEVICE);
  584. ipath_release_user_pages(&tmpp[i], 1);
  585. tmpp[i] = NULL;
  586. cnt++;
  587. }
  588. }
  589. if (cnt) {
  590. ipath_stats.sps_pageunlocks += cnt;
  591. ipath_cdbg(VERBOSE, "There were still %u expTID "
  592. "entries locked\n", cnt);
  593. }
  594. if (ipath_stats.sps_pagelocks ||
  595. ipath_stats.sps_pageunlocks)
  596. ipath_cdbg(VERBOSE, "%llu pages locked, %llu "
  597. "unlocked via ipath_m{un}lock\n",
  598. (unsigned long long)
  599. ipath_stats.sps_pagelocks,
  600. (unsigned long long)
  601. ipath_stats.sps_pageunlocks);
  602. ipath_cdbg(VERBOSE, "Free shadow page tid array at %p\n",
  603. dd->ipath_pageshadow);
  604. tmpp = dd->ipath_pageshadow;
  605. dd->ipath_pageshadow = NULL;
  606. vfree(tmpp);
  607. }
  608. /*
  609. * free any resources still in use (usually just kernel ports)
  610. * at unload; we do for portcnt, not cfgports, because cfgports
  611. * could have changed while we were loaded.
  612. */
  613. for (port = 0; port < dd->ipath_portcnt; port++) {
  614. struct ipath_portdata *pd = dd->ipath_pd[port];
  615. dd->ipath_pd[port] = NULL;
  616. ipath_free_pddata(dd, pd);
  617. }
  618. kfree(dd->ipath_pd);
  619. /*
  620. * debuggability, in case some cleanup path tries to use it
  621. * after this
  622. */
  623. dd->ipath_pd = NULL;
  624. }
  625. static void __devexit ipath_remove_one(struct pci_dev *pdev)
  626. {
  627. struct ipath_devdata *dd = pci_get_drvdata(pdev);
  628. ipath_cdbg(VERBOSE, "removing, pdev=%p, dd=%p\n", pdev, dd);
  629. /*
  630. * disable the IB link early, to be sure no new packets arrive, which
  631. * complicates the shutdown process
  632. */
  633. ipath_shutdown_device(dd);
  634. cancel_delayed_work(&dd->status_work);
  635. flush_scheduled_work();
  636. if (dd->verbs_dev)
  637. ipath_unregister_ib_device(dd->verbs_dev);
  638. ipath_diag_remove(dd);
  639. ipath_user_remove(dd);
  640. ipathfs_remove_device(dd);
  641. ipath_device_remove_group(&pdev->dev, dd);
  642. ipath_cdbg(VERBOSE, "Releasing pci memory regions, dd %p, "
  643. "unit %u\n", dd, (u32) dd->ipath_unit);
  644. cleanup_device(dd);
  645. /*
  646. * turn off rcv, send, and interrupts for all ports, all drivers
  647. * should also hard reset the chip here?
  648. * free up port 0 (kernel) rcvhdr, egr bufs, and eventually tid bufs
  649. * for all versions of the driver, if they were allocated
  650. */
  651. if (dd->ipath_irq) {
  652. ipath_cdbg(VERBOSE, "unit %u free irq %d\n",
  653. dd->ipath_unit, dd->ipath_irq);
  654. dd->ipath_f_free_irq(dd);
  655. } else
  656. ipath_dbg("irq is 0, not doing free_irq "
  657. "for unit %u\n", dd->ipath_unit);
  658. /*
  659. * we check for NULL here, because it's outside
  660. * the kregbase check, and we need to call it
  661. * after the free_irq. Thus it's possible that
  662. * the function pointers were never initialized.
  663. */
  664. if (dd->ipath_f_cleanup)
  665. /* clean up chip-specific stuff */
  666. dd->ipath_f_cleanup(dd);
  667. ipath_cdbg(VERBOSE, "Unmapping kregbase %p\n", dd->ipath_kregbase);
  668. iounmap((volatile void __iomem *) dd->ipath_kregbase);
  669. pci_release_regions(pdev);
  670. ipath_cdbg(VERBOSE, "calling pci_disable_device\n");
  671. pci_disable_device(pdev);
  672. ipath_free_devdata(pdev, dd);
  673. }
  674. /* general driver use */
  675. DEFINE_MUTEX(ipath_mutex);
  676. static DEFINE_SPINLOCK(ipath_pioavail_lock);
  677. /**
  678. * ipath_disarm_piobufs - cancel a range of PIO buffers
  679. * @dd: the infinipath device
  680. * @first: the first PIO buffer to cancel
  681. * @cnt: the number of PIO buffers to cancel
  682. *
  683. * cancel a range of PIO buffers, used when they might be armed, but
  684. * not triggered. Used at init to ensure buffer state, and also user
  685. * process close, in case it died while writing to a PIO buffer
  686. * Also after errors.
  687. */
  688. void ipath_disarm_piobufs(struct ipath_devdata *dd, unsigned first,
  689. unsigned cnt)
  690. {
  691. unsigned i, last = first + cnt;
  692. unsigned long flags;
  693. ipath_cdbg(PKT, "disarm %u PIObufs first=%u\n", cnt, first);
  694. for (i = first; i < last; i++) {
  695. spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
  696. /*
  697. * The disarm-related bits are write-only, so it
  698. * is ok to OR them in with our copy of sendctrl
  699. * while we hold the lock.
  700. */
  701. ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
  702. dd->ipath_sendctrl | INFINIPATH_S_DISARM |
  703. (i << INFINIPATH_S_DISARMPIOBUF_SHIFT));
  704. /* can't disarm bufs back-to-back per iba7220 spec */
  705. ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
  706. spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
  707. }
  708. /*
  709. * Disable PIOAVAILUPD, then re-enable, reading scratch in
  710. * between. This seems to avoid a chip timing race that causes
  711. * pioavail updates to memory to stop. We xor as we don't
  712. * know the state of the bit when we're called.
  713. */
  714. spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
  715. ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
  716. dd->ipath_sendctrl ^ INFINIPATH_S_PIOBUFAVAILUPD);
  717. ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
  718. ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
  719. dd->ipath_sendctrl);
  720. spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
  721. }
  722. /**
  723. * ipath_wait_linkstate - wait for an IB link state change to occur
  724. * @dd: the infinipath device
  725. * @state: the state to wait for
  726. * @msecs: the number of milliseconds to wait
  727. *
  728. * wait up to msecs milliseconds for IB link state change to occur for
  729. * now, take the easy polling route. Currently used only by
  730. * ipath_set_linkstate. Returns 0 if state reached, otherwise
  731. * -ETIMEDOUT state can have multiple states set, for any of several
  732. * transitions.
  733. */
  734. static int ipath_wait_linkstate(struct ipath_devdata *dd, u32 state,
  735. int msecs)
  736. {
  737. dd->ipath_state_wanted = state;
  738. wait_event_interruptible_timeout(ipath_state_wait,
  739. (dd->ipath_flags & state),
  740. msecs_to_jiffies(msecs));
  741. dd->ipath_state_wanted = 0;
  742. if (!(dd->ipath_flags & state)) {
  743. u64 val;
  744. ipath_cdbg(VERBOSE, "Didn't reach linkstate %s within %u"
  745. " ms\n",
  746. /* test INIT ahead of DOWN, both can be set */
  747. (state & IPATH_LINKINIT) ? "INIT" :
  748. ((state & IPATH_LINKDOWN) ? "DOWN" :
  749. ((state & IPATH_LINKARMED) ? "ARM" : "ACTIVE")),
  750. msecs);
  751. val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
  752. ipath_cdbg(VERBOSE, "ibcc=%llx ibcstatus=%llx (%s)\n",
  753. (unsigned long long) ipath_read_kreg64(
  754. dd, dd->ipath_kregs->kr_ibcctrl),
  755. (unsigned long long) val,
  756. ipath_ibcstatus_str[val & 0xf]);
  757. }
  758. return (dd->ipath_flags & state) ? 0 : -ETIMEDOUT;
  759. }
  760. /*
  761. * Decode the error status into strings, deciding whether to always
  762. * print * it or not depending on "normal packet errors" vs everything
  763. * else. Return 1 if "real" errors, otherwise 0 if only packet
  764. * errors, so caller can decide what to print with the string.
  765. */
  766. int ipath_decode_err(char *buf, size_t blen, ipath_err_t err)
  767. {
  768. int iserr = 1;
  769. *buf = '\0';
  770. if (err & INFINIPATH_E_PKTERRS) {
  771. if (!(err & ~INFINIPATH_E_PKTERRS))
  772. iserr = 0; // if only packet errors.
  773. if (ipath_debug & __IPATH_ERRPKTDBG) {
  774. if (err & INFINIPATH_E_REBP)
  775. strlcat(buf, "EBP ", blen);
  776. if (err & INFINIPATH_E_RVCRC)
  777. strlcat(buf, "VCRC ", blen);
  778. if (err & INFINIPATH_E_RICRC) {
  779. strlcat(buf, "CRC ", blen);
  780. // clear for check below, so only once
  781. err &= INFINIPATH_E_RICRC;
  782. }
  783. if (err & INFINIPATH_E_RSHORTPKTLEN)
  784. strlcat(buf, "rshortpktlen ", blen);
  785. if (err & INFINIPATH_E_SDROPPEDDATAPKT)
  786. strlcat(buf, "sdroppeddatapkt ", blen);
  787. if (err & INFINIPATH_E_SPKTLEN)
  788. strlcat(buf, "spktlen ", blen);
  789. }
  790. if ((err & INFINIPATH_E_RICRC) &&
  791. !(err&(INFINIPATH_E_RVCRC|INFINIPATH_E_REBP)))
  792. strlcat(buf, "CRC ", blen);
  793. if (!iserr)
  794. goto done;
  795. }
  796. if (err & INFINIPATH_E_RHDRLEN)
  797. strlcat(buf, "rhdrlen ", blen);
  798. if (err & INFINIPATH_E_RBADTID)
  799. strlcat(buf, "rbadtid ", blen);
  800. if (err & INFINIPATH_E_RBADVERSION)
  801. strlcat(buf, "rbadversion ", blen);
  802. if (err & INFINIPATH_E_RHDR)
  803. strlcat(buf, "rhdr ", blen);
  804. if (err & INFINIPATH_E_RLONGPKTLEN)
  805. strlcat(buf, "rlongpktlen ", blen);
  806. if (err & INFINIPATH_E_RMAXPKTLEN)
  807. strlcat(buf, "rmaxpktlen ", blen);
  808. if (err & INFINIPATH_E_RMINPKTLEN)
  809. strlcat(buf, "rminpktlen ", blen);
  810. if (err & INFINIPATH_E_SMINPKTLEN)
  811. strlcat(buf, "sminpktlen ", blen);
  812. if (err & INFINIPATH_E_RFORMATERR)
  813. strlcat(buf, "rformaterr ", blen);
  814. if (err & INFINIPATH_E_RUNSUPVL)
  815. strlcat(buf, "runsupvl ", blen);
  816. if (err & INFINIPATH_E_RUNEXPCHAR)
  817. strlcat(buf, "runexpchar ", blen);
  818. if (err & INFINIPATH_E_RIBFLOW)
  819. strlcat(buf, "ribflow ", blen);
  820. if (err & INFINIPATH_E_SUNDERRUN)
  821. strlcat(buf, "sunderrun ", blen);
  822. if (err & INFINIPATH_E_SPIOARMLAUNCH)
  823. strlcat(buf, "spioarmlaunch ", blen);
  824. if (err & INFINIPATH_E_SUNEXPERRPKTNUM)
  825. strlcat(buf, "sunexperrpktnum ", blen);
  826. if (err & INFINIPATH_E_SDROPPEDSMPPKT)
  827. strlcat(buf, "sdroppedsmppkt ", blen);
  828. if (err & INFINIPATH_E_SMAXPKTLEN)
  829. strlcat(buf, "smaxpktlen ", blen);
  830. if (err & INFINIPATH_E_SUNSUPVL)
  831. strlcat(buf, "sunsupVL ", blen);
  832. if (err & INFINIPATH_E_INVALIDADDR)
  833. strlcat(buf, "invalidaddr ", blen);
  834. if (err & INFINIPATH_E_RRCVEGRFULL)
  835. strlcat(buf, "rcvegrfull ", blen);
  836. if (err & INFINIPATH_E_RRCVHDRFULL)
  837. strlcat(buf, "rcvhdrfull ", blen);
  838. if (err & INFINIPATH_E_IBSTATUSCHANGED)
  839. strlcat(buf, "ibcstatuschg ", blen);
  840. if (err & INFINIPATH_E_RIBLOSTLINK)
  841. strlcat(buf, "riblostlink ", blen);
  842. if (err & INFINIPATH_E_HARDWARE)
  843. strlcat(buf, "hardware ", blen);
  844. if (err & INFINIPATH_E_RESET)
  845. strlcat(buf, "reset ", blen);
  846. done:
  847. return iserr;
  848. }
  849. /**
  850. * get_rhf_errstring - decode RHF errors
  851. * @err: the err number
  852. * @msg: the output buffer
  853. * @len: the length of the output buffer
  854. *
  855. * only used one place now, may want more later
  856. */
  857. static void get_rhf_errstring(u32 err, char *msg, size_t len)
  858. {
  859. /* if no errors, and so don't need to check what's first */
  860. *msg = '\0';
  861. if (err & INFINIPATH_RHF_H_ICRCERR)
  862. strlcat(msg, "icrcerr ", len);
  863. if (err & INFINIPATH_RHF_H_VCRCERR)
  864. strlcat(msg, "vcrcerr ", len);
  865. if (err & INFINIPATH_RHF_H_PARITYERR)
  866. strlcat(msg, "parityerr ", len);
  867. if (err & INFINIPATH_RHF_H_LENERR)
  868. strlcat(msg, "lenerr ", len);
  869. if (err & INFINIPATH_RHF_H_MTUERR)
  870. strlcat(msg, "mtuerr ", len);
  871. if (err & INFINIPATH_RHF_H_IHDRERR)
  872. /* infinipath hdr checksum error */
  873. strlcat(msg, "ipathhdrerr ", len);
  874. if (err & INFINIPATH_RHF_H_TIDERR)
  875. strlcat(msg, "tiderr ", len);
  876. if (err & INFINIPATH_RHF_H_MKERR)
  877. /* bad port, offset, etc. */
  878. strlcat(msg, "invalid ipathhdr ", len);
  879. if (err & INFINIPATH_RHF_H_IBERR)
  880. strlcat(msg, "iberr ", len);
  881. if (err & INFINIPATH_RHF_L_SWA)
  882. strlcat(msg, "swA ", len);
  883. if (err & INFINIPATH_RHF_L_SWB)
  884. strlcat(msg, "swB ", len);
  885. }
  886. /**
  887. * ipath_get_egrbuf - get an eager buffer
  888. * @dd: the infinipath device
  889. * @bufnum: the eager buffer to get
  890. *
  891. * must only be called if ipath_pd[port] is known to be allocated
  892. */
  893. static inline void *ipath_get_egrbuf(struct ipath_devdata *dd, u32 bufnum)
  894. {
  895. return dd->ipath_port0_skbinfo ?
  896. (void *) dd->ipath_port0_skbinfo[bufnum].skb->data : NULL;
  897. }
  898. /**
  899. * ipath_alloc_skb - allocate an skb and buffer with possible constraints
  900. * @dd: the infinipath device
  901. * @gfp_mask: the sk_buff SFP mask
  902. */
  903. struct sk_buff *ipath_alloc_skb(struct ipath_devdata *dd,
  904. gfp_t gfp_mask)
  905. {
  906. struct sk_buff *skb;
  907. u32 len;
  908. /*
  909. * Only fully supported way to handle this is to allocate lots
  910. * extra, align as needed, and then do skb_reserve(). That wastes
  911. * a lot of memory... I'll have to hack this into infinipath_copy
  912. * also.
  913. */
  914. /*
  915. * We need 2 extra bytes for ipath_ether data sent in the
  916. * key header. In order to keep everything dword aligned,
  917. * we'll reserve 4 bytes.
  918. */
  919. len = dd->ipath_ibmaxlen + 4;
  920. if (dd->ipath_flags & IPATH_4BYTE_TID) {
  921. /* We need a 2KB multiple alignment, and there is no way
  922. * to do it except to allocate extra and then skb_reserve
  923. * enough to bring it up to the right alignment.
  924. */
  925. len += 2047;
  926. }
  927. skb = __dev_alloc_skb(len, gfp_mask);
  928. if (!skb) {
  929. ipath_dev_err(dd, "Failed to allocate skbuff, length %u\n",
  930. len);
  931. goto bail;
  932. }
  933. skb_reserve(skb, 4);
  934. if (dd->ipath_flags & IPATH_4BYTE_TID) {
  935. u32 una = (unsigned long)skb->data & 2047;
  936. if (una)
  937. skb_reserve(skb, 2048 - una);
  938. }
  939. bail:
  940. return skb;
  941. }
  942. static void ipath_rcv_hdrerr(struct ipath_devdata *dd,
  943. u32 eflags,
  944. u32 l,
  945. u32 etail,
  946. u64 *rc)
  947. {
  948. char emsg[128];
  949. struct ipath_message_header *hdr;
  950. get_rhf_errstring(eflags, emsg, sizeof emsg);
  951. hdr = (struct ipath_message_header *)&rc[1];
  952. ipath_cdbg(PKT, "RHFerrs %x hdrqtail=%x typ=%u "
  953. "tlen=%x opcode=%x egridx=%x: %s\n",
  954. eflags, l,
  955. ipath_hdrget_rcv_type((__le32 *) rc),
  956. ipath_hdrget_length_in_bytes((__le32 *) rc),
  957. be32_to_cpu(hdr->bth[0]) >> 24,
  958. etail, emsg);
  959. /* Count local link integrity errors. */
  960. if (eflags & (INFINIPATH_RHF_H_ICRCERR | INFINIPATH_RHF_H_VCRCERR)) {
  961. u8 n = (dd->ipath_ibcctrl >>
  962. INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
  963. INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
  964. if (++dd->ipath_lli_counter > n) {
  965. dd->ipath_lli_counter = 0;
  966. dd->ipath_lli_errors++;
  967. }
  968. }
  969. }
  970. /*
  971. * ipath_kreceive - receive a packet
  972. * @pd: the infinipath port
  973. *
  974. * called from interrupt handler for errors or receive interrupt
  975. */
  976. void ipath_kreceive(struct ipath_portdata *pd)
  977. {
  978. u64 *rc;
  979. struct ipath_devdata *dd = pd->port_dd;
  980. void *ebuf;
  981. const u32 rsize = dd->ipath_rcvhdrentsize; /* words */
  982. const u32 maxcnt = dd->ipath_rcvhdrcnt * rsize; /* words */
  983. u32 etail = -1, l, hdrqtail;
  984. struct ipath_message_header *hdr;
  985. u32 eflags, i, etype, tlen, pkttot = 0, updegr=0, reloop=0;
  986. static u64 totcalls; /* stats, may eventually remove */
  987. if (!dd->ipath_hdrqtailptr) {
  988. ipath_dev_err(dd,
  989. "hdrqtailptr not set, can't do receives\n");
  990. goto bail;
  991. }
  992. l = pd->port_head;
  993. hdrqtail = ipath_get_rcvhdrtail(pd);
  994. if (l == hdrqtail)
  995. goto bail;
  996. reloop:
  997. for (i = 0; l != hdrqtail; i++) {
  998. u32 qp;
  999. u8 *bthbytes;
  1000. rc = (u64 *) (pd->port_rcvhdrq + (l << 2));
  1001. hdr = (struct ipath_message_header *)&rc[1];
  1002. /*
  1003. * could make a network order version of IPATH_KD_QP, and
  1004. * do the obvious shift before masking to speed this up.
  1005. */
  1006. qp = ntohl(hdr->bth[1]) & 0xffffff;
  1007. bthbytes = (u8 *) hdr->bth;
  1008. eflags = ipath_hdrget_err_flags((__le32 *) rc);
  1009. etype = ipath_hdrget_rcv_type((__le32 *) rc);
  1010. /* total length */
  1011. tlen = ipath_hdrget_length_in_bytes((__le32 *) rc);
  1012. ebuf = NULL;
  1013. if (etype != RCVHQ_RCV_TYPE_EXPECTED) {
  1014. /*
  1015. * it turns out that the chips uses an eager buffer
  1016. * for all non-expected packets, whether it "needs"
  1017. * one or not. So always get the index, but don't
  1018. * set ebuf (so we try to copy data) unless the
  1019. * length requires it.
  1020. */
  1021. etail = ipath_hdrget_index((__le32 *) rc);
  1022. if (tlen > sizeof(*hdr) ||
  1023. etype == RCVHQ_RCV_TYPE_NON_KD)
  1024. ebuf = ipath_get_egrbuf(dd, etail);
  1025. }
  1026. /*
  1027. * both tiderr and ipathhdrerr are set for all plain IB
  1028. * packets; only ipathhdrerr should be set.
  1029. */
  1030. if (etype != RCVHQ_RCV_TYPE_NON_KD && etype !=
  1031. RCVHQ_RCV_TYPE_ERROR && ipath_hdrget_ipath_ver(
  1032. hdr->iph.ver_port_tid_offset) !=
  1033. IPS_PROTO_VERSION) {
  1034. ipath_cdbg(PKT, "Bad InfiniPath protocol version "
  1035. "%x\n", etype);
  1036. }
  1037. if (unlikely(eflags))
  1038. ipath_rcv_hdrerr(dd, eflags, l, etail, rc);
  1039. else if (etype == RCVHQ_RCV_TYPE_NON_KD) {
  1040. ipath_ib_rcv(dd->verbs_dev, rc + 1, ebuf, tlen);
  1041. if (dd->ipath_lli_counter)
  1042. dd->ipath_lli_counter--;
  1043. ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
  1044. "qp=%x), len %x; ignored\n",
  1045. etype, bthbytes[0], qp, tlen);
  1046. }
  1047. else if (etype == RCVHQ_RCV_TYPE_EAGER)
  1048. ipath_cdbg(PKT, "typ %x, opcode %x (eager, "
  1049. "qp=%x), len %x; ignored\n",
  1050. etype, bthbytes[0], qp, tlen);
  1051. else if (etype == RCVHQ_RCV_TYPE_EXPECTED)
  1052. ipath_dbg("Bug: Expected TID, opcode %x; ignored\n",
  1053. be32_to_cpu(hdr->bth[0]) & 0xff);
  1054. else {
  1055. /*
  1056. * error packet, type of error unknown.
  1057. * Probably type 3, but we don't know, so don't
  1058. * even try to print the opcode, etc.
  1059. */
  1060. ipath_dbg("Error Pkt, but no eflags! egrbuf %x, "
  1061. "len %x\nhdrq@%lx;hdrq+%x rhf: %llx; "
  1062. "hdr %llx %llx %llx %llx %llx\n",
  1063. etail, tlen, (unsigned long) rc, l,
  1064. (unsigned long long) rc[0],
  1065. (unsigned long long) rc[1],
  1066. (unsigned long long) rc[2],
  1067. (unsigned long long) rc[3],
  1068. (unsigned long long) rc[4],
  1069. (unsigned long long) rc[5]);
  1070. }
  1071. l += rsize;
  1072. if (l >= maxcnt)
  1073. l = 0;
  1074. if (etype != RCVHQ_RCV_TYPE_EXPECTED)
  1075. updegr = 1;
  1076. /*
  1077. * update head regs on last packet, and every 16 packets.
  1078. * Reduce bus traffic, while still trying to prevent
  1079. * rcvhdrq overflows, for when the queue is nearly full
  1080. */
  1081. if (l == hdrqtail || (i && !(i&0xf))) {
  1082. u64 lval;
  1083. if (l == hdrqtail)
  1084. /* request IBA6120 interrupt only on last */
  1085. lval = dd->ipath_rhdrhead_intr_off | l;
  1086. else
  1087. lval = l;
  1088. (void)ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
  1089. if (updegr) {
  1090. (void)ipath_write_ureg(dd, ur_rcvegrindexhead,
  1091. etail, 0);
  1092. updegr = 0;
  1093. }
  1094. }
  1095. }
  1096. if (!dd->ipath_rhdrhead_intr_off && !reloop) {
  1097. /* IBA6110 workaround; we can have a race clearing chip
  1098. * interrupt with another interrupt about to be delivered,
  1099. * and can clear it before it is delivered on the GPIO
  1100. * workaround. By doing the extra check here for the
  1101. * in-memory tail register updating while we were doing
  1102. * earlier packets, we "almost" guarantee we have covered
  1103. * that case.
  1104. */
  1105. u32 hqtail = ipath_get_rcvhdrtail(pd);
  1106. if (hqtail != hdrqtail) {
  1107. hdrqtail = hqtail;
  1108. reloop = 1; /* loop 1 extra time at most */
  1109. goto reloop;
  1110. }
  1111. }
  1112. pkttot += i;
  1113. pd->port_head = l;
  1114. if (pkttot > ipath_stats.sps_maxpkts_call)
  1115. ipath_stats.sps_maxpkts_call = pkttot;
  1116. ipath_stats.sps_port0pkts += pkttot;
  1117. ipath_stats.sps_avgpkts_call =
  1118. ipath_stats.sps_port0pkts / ++totcalls;
  1119. bail:;
  1120. }
  1121. /**
  1122. * ipath_update_pio_bufs - update shadow copy of the PIO availability map
  1123. * @dd: the infinipath device
  1124. *
  1125. * called whenever our local copy indicates we have run out of send buffers
  1126. * NOTE: This can be called from interrupt context by some code
  1127. * and from non-interrupt context by ipath_getpiobuf().
  1128. */
  1129. static void ipath_update_pio_bufs(struct ipath_devdata *dd)
  1130. {
  1131. unsigned long flags;
  1132. int i;
  1133. const unsigned piobregs = (unsigned)dd->ipath_pioavregs;
  1134. /* If the generation (check) bits have changed, then we update the
  1135. * busy bit for the corresponding PIO buffer. This algorithm will
  1136. * modify positions to the value they already have in some cases
  1137. * (i.e., no change), but it's faster than changing only the bits
  1138. * that have changed.
  1139. *
  1140. * We would like to do this atomicly, to avoid spinlocks in the
  1141. * critical send path, but that's not really possible, given the
  1142. * type of changes, and that this routine could be called on
  1143. * multiple cpu's simultaneously, so we lock in this routine only,
  1144. * to avoid conflicting updates; all we change is the shadow, and
  1145. * it's a single 64 bit memory location, so by definition the update
  1146. * is atomic in terms of what other cpu's can see in testing the
  1147. * bits. The spin_lock overhead isn't too bad, since it only
  1148. * happens when all buffers are in use, so only cpu overhead, not
  1149. * latency or bandwidth is affected.
  1150. */
  1151. #define _IPATH_ALL_CHECKBITS 0x5555555555555555ULL
  1152. if (!dd->ipath_pioavailregs_dma) {
  1153. ipath_dbg("Update shadow pioavail, but regs_dma NULL!\n");
  1154. return;
  1155. }
  1156. if (ipath_debug & __IPATH_VERBDBG) {
  1157. /* only if packet debug and verbose */
  1158. volatile __le64 *dma = dd->ipath_pioavailregs_dma;
  1159. unsigned long *shadow = dd->ipath_pioavailshadow;
  1160. ipath_cdbg(PKT, "Refill avail, dma0=%llx shad0=%lx, "
  1161. "d1=%llx s1=%lx, d2=%llx s2=%lx, d3=%llx "
  1162. "s3=%lx\n",
  1163. (unsigned long long) le64_to_cpu(dma[0]),
  1164. shadow[0],
  1165. (unsigned long long) le64_to_cpu(dma[1]),
  1166. shadow[1],
  1167. (unsigned long long) le64_to_cpu(dma[2]),
  1168. shadow[2],
  1169. (unsigned long long) le64_to_cpu(dma[3]),
  1170. shadow[3]);
  1171. if (piobregs > 4)
  1172. ipath_cdbg(
  1173. PKT, "2nd group, dma4=%llx shad4=%lx, "
  1174. "d5=%llx s5=%lx, d6=%llx s6=%lx, "
  1175. "d7=%llx s7=%lx\n",
  1176. (unsigned long long) le64_to_cpu(dma[4]),
  1177. shadow[4],
  1178. (unsigned long long) le64_to_cpu(dma[5]),
  1179. shadow[5],
  1180. (unsigned long long) le64_to_cpu(dma[6]),
  1181. shadow[6],
  1182. (unsigned long long) le64_to_cpu(dma[7]),
  1183. shadow[7]);
  1184. }
  1185. spin_lock_irqsave(&ipath_pioavail_lock, flags);
  1186. for (i = 0; i < piobregs; i++) {
  1187. u64 pchbusy, pchg, piov, pnew;
  1188. /*
  1189. * Chip Errata: bug 6641; even and odd qwords>3 are swapped
  1190. */
  1191. if (i > 3 && (dd->ipath_flags & IPATH_SWAP_PIOBUFS))
  1192. piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i ^ 1]);
  1193. else
  1194. piov = le64_to_cpu(dd->ipath_pioavailregs_dma[i]);
  1195. pchg = _IPATH_ALL_CHECKBITS &
  1196. ~(dd->ipath_pioavailshadow[i] ^ piov);
  1197. pchbusy = pchg << INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT;
  1198. if (pchg && (pchbusy & dd->ipath_pioavailshadow[i])) {
  1199. pnew = dd->ipath_pioavailshadow[i] & ~pchbusy;
  1200. pnew |= piov & pchbusy;
  1201. dd->ipath_pioavailshadow[i] = pnew;
  1202. }
  1203. }
  1204. spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
  1205. }
  1206. /**
  1207. * ipath_setrcvhdrsize - set the receive header size
  1208. * @dd: the infinipath device
  1209. * @rhdrsize: the receive header size
  1210. *
  1211. * called from user init code, and also layered driver init
  1212. */
  1213. int ipath_setrcvhdrsize(struct ipath_devdata *dd, unsigned rhdrsize)
  1214. {
  1215. int ret = 0;
  1216. if (dd->ipath_flags & IPATH_RCVHDRSZ_SET) {
  1217. if (dd->ipath_rcvhdrsize != rhdrsize) {
  1218. dev_info(&dd->pcidev->dev,
  1219. "Error: can't set protocol header "
  1220. "size %u, already %u\n",
  1221. rhdrsize, dd->ipath_rcvhdrsize);
  1222. ret = -EAGAIN;
  1223. } else
  1224. ipath_cdbg(VERBOSE, "Reuse same protocol header "
  1225. "size %u\n", dd->ipath_rcvhdrsize);
  1226. } else if (rhdrsize > (dd->ipath_rcvhdrentsize -
  1227. (sizeof(u64) / sizeof(u32)))) {
  1228. ipath_dbg("Error: can't set protocol header size %u "
  1229. "(> max %u)\n", rhdrsize,
  1230. dd->ipath_rcvhdrentsize -
  1231. (u32) (sizeof(u64) / sizeof(u32)));
  1232. ret = -EOVERFLOW;
  1233. } else {
  1234. dd->ipath_flags |= IPATH_RCVHDRSZ_SET;
  1235. dd->ipath_rcvhdrsize = rhdrsize;
  1236. ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvhdrsize,
  1237. dd->ipath_rcvhdrsize);
  1238. ipath_cdbg(VERBOSE, "Set protocol header size to %u\n",
  1239. dd->ipath_rcvhdrsize);
  1240. }
  1241. return ret;
  1242. }
  1243. /**
  1244. * ipath_getpiobuf - find an available pio buffer
  1245. * @dd: the infinipath device
  1246. * @pbufnum: the buffer number is placed here
  1247. *
  1248. * do appropriate marking as busy, etc.
  1249. * returns buffer number if one found (>=0), negative number is error.
  1250. * Used by ipath_layer_send
  1251. */
  1252. u32 __iomem *ipath_getpiobuf(struct ipath_devdata *dd, u32 * pbufnum)
  1253. {
  1254. int i, j, starti, updated = 0;
  1255. unsigned piobcnt, iter;
  1256. unsigned long flags;
  1257. unsigned long *shadow = dd->ipath_pioavailshadow;
  1258. u32 __iomem *buf;
  1259. piobcnt = (unsigned)(dd->ipath_piobcnt2k
  1260. + dd->ipath_piobcnt4k);
  1261. starti = dd->ipath_lastport_piobuf;
  1262. iter = piobcnt - starti;
  1263. if (dd->ipath_upd_pio_shadow) {
  1264. /*
  1265. * Minor optimization. If we had no buffers on last call,
  1266. * start out by doing the update; continue and do scan even
  1267. * if no buffers were updated, to be paranoid
  1268. */
  1269. ipath_update_pio_bufs(dd);
  1270. /* we scanned here, don't do it at end of scan */
  1271. updated = 1;
  1272. i = starti;
  1273. } else
  1274. i = dd->ipath_lastpioindex;
  1275. rescan:
  1276. /*
  1277. * while test_and_set_bit() is atomic, we do that and then the
  1278. * change_bit(), and the pair is not. See if this is the cause
  1279. * of the remaining armlaunch errors.
  1280. */
  1281. spin_lock_irqsave(&ipath_pioavail_lock, flags);
  1282. for (j = 0; j < iter; j++, i++) {
  1283. if (i >= piobcnt)
  1284. i = starti;
  1285. /*
  1286. * To avoid bus lock overhead, we first find a candidate
  1287. * buffer, then do the test and set, and continue if that
  1288. * fails.
  1289. */
  1290. if (test_bit((2 * i) + 1, shadow) ||
  1291. test_and_set_bit((2 * i) + 1, shadow))
  1292. continue;
  1293. /* flip generation bit */
  1294. change_bit(2 * i, shadow);
  1295. break;
  1296. }
  1297. spin_unlock_irqrestore(&ipath_pioavail_lock, flags);
  1298. if (j == iter) {
  1299. volatile __le64 *dma = dd->ipath_pioavailregs_dma;
  1300. /*
  1301. * first time through; shadow exhausted, but may be real
  1302. * buffers available, so go see; if any updated, rescan
  1303. * (once)
  1304. */
  1305. if (!updated) {
  1306. ipath_update_pio_bufs(dd);
  1307. updated = 1;
  1308. i = starti;
  1309. goto rescan;
  1310. }
  1311. dd->ipath_upd_pio_shadow = 1;
  1312. /*
  1313. * not atomic, but if we lose one once in a while, that's OK
  1314. */
  1315. ipath_stats.sps_nopiobufs++;
  1316. if (!(++dd->ipath_consec_nopiobuf % 100000)) {
  1317. ipath_dbg(
  1318. "%u pio sends with no bufavail; dmacopy: "
  1319. "%llx %llx %llx %llx; shadow: "
  1320. "%lx %lx %lx %lx\n",
  1321. dd->ipath_consec_nopiobuf,
  1322. (unsigned long long) le64_to_cpu(dma[0]),
  1323. (unsigned long long) le64_to_cpu(dma[1]),
  1324. (unsigned long long) le64_to_cpu(dma[2]),
  1325. (unsigned long long) le64_to_cpu(dma[3]),
  1326. shadow[0], shadow[1], shadow[2],
  1327. shadow[3]);
  1328. /*
  1329. * 4 buffers per byte, 4 registers above, cover rest
  1330. * below
  1331. */
  1332. if ((dd->ipath_piobcnt2k + dd->ipath_piobcnt4k) >
  1333. (sizeof(shadow[0]) * 4 * 4))
  1334. ipath_dbg("2nd group: dmacopy: %llx %llx "
  1335. "%llx %llx; shadow: %lx %lx "
  1336. "%lx %lx\n",
  1337. (unsigned long long)
  1338. le64_to_cpu(dma[4]),
  1339. (unsigned long long)
  1340. le64_to_cpu(dma[5]),
  1341. (unsigned long long)
  1342. le64_to_cpu(dma[6]),
  1343. (unsigned long long)
  1344. le64_to_cpu(dma[7]),
  1345. shadow[4], shadow[5],
  1346. shadow[6], shadow[7]);
  1347. }
  1348. buf = NULL;
  1349. goto bail;
  1350. }
  1351. /*
  1352. * set next starting place. Since it's just an optimization,
  1353. * it doesn't matter who wins on this, so no locking
  1354. */
  1355. dd->ipath_lastpioindex = i + 1;
  1356. if (dd->ipath_upd_pio_shadow)
  1357. dd->ipath_upd_pio_shadow = 0;
  1358. if (dd->ipath_consec_nopiobuf)
  1359. dd->ipath_consec_nopiobuf = 0;
  1360. if (i < dd->ipath_piobcnt2k)
  1361. buf = (u32 __iomem *) (dd->ipath_pio2kbase +
  1362. i * dd->ipath_palign);
  1363. else
  1364. buf = (u32 __iomem *)
  1365. (dd->ipath_pio4kbase +
  1366. (i - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
  1367. ipath_cdbg(VERBOSE, "Return piobuf%u %uk @ %p\n",
  1368. i, (i < dd->ipath_piobcnt2k) ? 2 : 4, buf);
  1369. if (pbufnum)
  1370. *pbufnum = i;
  1371. bail:
  1372. return buf;
  1373. }
  1374. /**
  1375. * ipath_create_rcvhdrq - create a receive header queue
  1376. * @dd: the infinipath device
  1377. * @pd: the port data
  1378. *
  1379. * this must be contiguous memory (from an i/o perspective), and must be
  1380. * DMA'able (which means for some systems, it will go through an IOMMU,
  1381. * or be forced into a low address range).
  1382. */
  1383. int ipath_create_rcvhdrq(struct ipath_devdata *dd,
  1384. struct ipath_portdata *pd)
  1385. {
  1386. int ret = 0;
  1387. if (!pd->port_rcvhdrq) {
  1388. dma_addr_t phys_hdrqtail;
  1389. gfp_t gfp_flags = GFP_USER | __GFP_COMP;
  1390. int amt = ALIGN(dd->ipath_rcvhdrcnt * dd->ipath_rcvhdrentsize *
  1391. sizeof(u32), PAGE_SIZE);
  1392. pd->port_rcvhdrq = dma_alloc_coherent(
  1393. &dd->pcidev->dev, amt, &pd->port_rcvhdrq_phys,
  1394. gfp_flags);
  1395. if (!pd->port_rcvhdrq) {
  1396. ipath_dev_err(dd, "attempt to allocate %d bytes "
  1397. "for port %u rcvhdrq failed\n",
  1398. amt, pd->port_port);
  1399. ret = -ENOMEM;
  1400. goto bail;
  1401. }
  1402. pd->port_rcvhdrtail_kvaddr = dma_alloc_coherent(
  1403. &dd->pcidev->dev, PAGE_SIZE, &phys_hdrqtail, GFP_KERNEL);
  1404. if (!pd->port_rcvhdrtail_kvaddr) {
  1405. ipath_dev_err(dd, "attempt to allocate 1 page "
  1406. "for port %u rcvhdrqtailaddr failed\n",
  1407. pd->port_port);
  1408. ret = -ENOMEM;
  1409. dma_free_coherent(&dd->pcidev->dev, amt,
  1410. pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
  1411. pd->port_rcvhdrq = NULL;
  1412. goto bail;
  1413. }
  1414. pd->port_rcvhdrqtailaddr_phys = phys_hdrqtail;
  1415. pd->port_rcvhdrq_size = amt;
  1416. ipath_cdbg(VERBOSE, "%d pages at %p (phys %lx) size=%lu "
  1417. "for port %u rcvhdr Q\n",
  1418. amt >> PAGE_SHIFT, pd->port_rcvhdrq,
  1419. (unsigned long) pd->port_rcvhdrq_phys,
  1420. (unsigned long) pd->port_rcvhdrq_size,
  1421. pd->port_port);
  1422. ipath_cdbg(VERBOSE, "port %d hdrtailaddr, %llx physical\n",
  1423. pd->port_port,
  1424. (unsigned long long) phys_hdrqtail);
  1425. }
  1426. else
  1427. ipath_cdbg(VERBOSE, "reuse port %d rcvhdrq @%p %llx phys; "
  1428. "hdrtailaddr@%p %llx physical\n",
  1429. pd->port_port, pd->port_rcvhdrq,
  1430. (unsigned long long) pd->port_rcvhdrq_phys,
  1431. pd->port_rcvhdrtail_kvaddr, (unsigned long long)
  1432. pd->port_rcvhdrqtailaddr_phys);
  1433. /* clear for security and sanity on each use */
  1434. memset(pd->port_rcvhdrq, 0, pd->port_rcvhdrq_size);
  1435. if (pd->port_rcvhdrtail_kvaddr)
  1436. memset(pd->port_rcvhdrtail_kvaddr, 0, PAGE_SIZE);
  1437. /*
  1438. * tell chip each time we init it, even if we are re-using previous
  1439. * memory (we zero the register at process close)
  1440. */
  1441. ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdrtailaddr,
  1442. pd->port_port, pd->port_rcvhdrqtailaddr_phys);
  1443. ipath_write_kreg_port(dd, dd->ipath_kregs->kr_rcvhdraddr,
  1444. pd->port_port, pd->port_rcvhdrq_phys);
  1445. ret = 0;
  1446. bail:
  1447. return ret;
  1448. }
  1449. /*
  1450. * Flush all sends that might be in the ready to send state, as well as any
  1451. * that are in the process of being sent. Used whenever we need to be
  1452. * sure the send side is idle. Cleans up all buffer state by canceling
  1453. * all pio buffers, and issuing an abort, which cleans up anything in the
  1454. * launch fifo. The cancel is superfluous on some chip versions, but
  1455. * it's safer to always do it.
  1456. * PIOAvail bits are updated by the chip as if normal send had happened.
  1457. */
  1458. void ipath_cancel_sends(struct ipath_devdata *dd, int restore_sendctrl)
  1459. {
  1460. ipath_dbg("Cancelling all in-progress send buffers\n");
  1461. dd->ipath_lastcancel = jiffies+HZ/2; /* skip armlaunch errs a bit */
  1462. /*
  1463. * the abort bit is auto-clearing. We read scratch to be sure
  1464. * that cancels and the abort have taken effect in the chip.
  1465. */
  1466. ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
  1467. INFINIPATH_S_ABORT);
  1468. ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
  1469. ipath_disarm_piobufs(dd, 0,
  1470. (unsigned)(dd->ipath_piobcnt2k + dd->ipath_piobcnt4k));
  1471. if (restore_sendctrl) /* else done by caller later */
  1472. ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
  1473. dd->ipath_sendctrl);
  1474. /* and again, be sure all have hit the chip */
  1475. ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
  1476. }
  1477. static void ipath_set_ib_lstate(struct ipath_devdata *dd, int which)
  1478. {
  1479. static const char *what[4] = {
  1480. [0] = "DOWN",
  1481. [INFINIPATH_IBCC_LINKCMD_INIT] = "INIT",
  1482. [INFINIPATH_IBCC_LINKCMD_ARMED] = "ARMED",
  1483. [INFINIPATH_IBCC_LINKCMD_ACTIVE] = "ACTIVE"
  1484. };
  1485. int linkcmd = (which >> INFINIPATH_IBCC_LINKCMD_SHIFT) &
  1486. INFINIPATH_IBCC_LINKCMD_MASK;
  1487. ipath_cdbg(VERBOSE, "Trying to move unit %u to %s, current ltstate "
  1488. "is %s\n", dd->ipath_unit,
  1489. what[linkcmd],
  1490. ipath_ibcstatus_str[
  1491. (ipath_read_kreg64
  1492. (dd, dd->ipath_kregs->kr_ibcstatus) >>
  1493. INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
  1494. INFINIPATH_IBCS_LINKTRAININGSTATE_MASK]);
  1495. /* flush all queued sends when going to DOWN or INIT, to be sure that
  1496. * they don't block MAD packets */
  1497. if (!linkcmd || linkcmd == INFINIPATH_IBCC_LINKCMD_INIT)
  1498. ipath_cancel_sends(dd, 1);
  1499. ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
  1500. dd->ipath_ibcctrl | which);
  1501. }
  1502. int ipath_set_linkstate(struct ipath_devdata *dd, u8 newstate)
  1503. {
  1504. u32 lstate;
  1505. int ret;
  1506. switch (newstate) {
  1507. case IPATH_IB_LINKDOWN:
  1508. ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_POLL <<
  1509. INFINIPATH_IBCC_LINKINITCMD_SHIFT);
  1510. /* don't wait */
  1511. ret = 0;
  1512. goto bail;
  1513. case IPATH_IB_LINKDOWN_SLEEP:
  1514. ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_SLEEP <<
  1515. INFINIPATH_IBCC_LINKINITCMD_SHIFT);
  1516. /* don't wait */
  1517. ret = 0;
  1518. goto bail;
  1519. case IPATH_IB_LINKDOWN_DISABLE:
  1520. ipath_set_ib_lstate(dd,
  1521. INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
  1522. INFINIPATH_IBCC_LINKINITCMD_SHIFT);
  1523. /* don't wait */
  1524. ret = 0;
  1525. goto bail;
  1526. case IPATH_IB_LINKINIT:
  1527. if (dd->ipath_flags & IPATH_LINKINIT) {
  1528. ret = 0;
  1529. goto bail;
  1530. }
  1531. ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_INIT <<
  1532. INFINIPATH_IBCC_LINKCMD_SHIFT);
  1533. lstate = IPATH_LINKINIT;
  1534. break;
  1535. case IPATH_IB_LINKARM:
  1536. if (dd->ipath_flags & IPATH_LINKARMED) {
  1537. ret = 0;
  1538. goto bail;
  1539. }
  1540. if (!(dd->ipath_flags &
  1541. (IPATH_LINKINIT | IPATH_LINKACTIVE))) {
  1542. ret = -EINVAL;
  1543. goto bail;
  1544. }
  1545. ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ARMED <<
  1546. INFINIPATH_IBCC_LINKCMD_SHIFT);
  1547. /*
  1548. * Since the port can transition to ACTIVE by receiving
  1549. * a non VL 15 packet, wait for either state.
  1550. */
  1551. lstate = IPATH_LINKARMED | IPATH_LINKACTIVE;
  1552. break;
  1553. case IPATH_IB_LINKACTIVE:
  1554. if (dd->ipath_flags & IPATH_LINKACTIVE) {
  1555. ret = 0;
  1556. goto bail;
  1557. }
  1558. if (!(dd->ipath_flags & IPATH_LINKARMED)) {
  1559. ret = -EINVAL;
  1560. goto bail;
  1561. }
  1562. ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKCMD_ACTIVE <<
  1563. INFINIPATH_IBCC_LINKCMD_SHIFT);
  1564. lstate = IPATH_LINKACTIVE;
  1565. break;
  1566. case IPATH_IB_LINK_LOOPBACK:
  1567. dev_info(&dd->pcidev->dev, "Enabling IB local loopback\n");
  1568. dd->ipath_ibcctrl |= INFINIPATH_IBCC_LOOPBACK;
  1569. ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
  1570. dd->ipath_ibcctrl);
  1571. ret = 0;
  1572. goto bail; // no state change to wait for
  1573. case IPATH_IB_LINK_EXTERNAL:
  1574. dev_info(&dd->pcidev->dev, "Disabling IB local loopback (normal)\n");
  1575. dd->ipath_ibcctrl &= ~INFINIPATH_IBCC_LOOPBACK;
  1576. ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
  1577. dd->ipath_ibcctrl);
  1578. ret = 0;
  1579. goto bail; // no state change to wait for
  1580. default:
  1581. ipath_dbg("Invalid linkstate 0x%x requested\n", newstate);
  1582. ret = -EINVAL;
  1583. goto bail;
  1584. }
  1585. ret = ipath_wait_linkstate(dd, lstate, 2000);
  1586. bail:
  1587. return ret;
  1588. }
  1589. /**
  1590. * ipath_set_mtu - set the MTU
  1591. * @dd: the infinipath device
  1592. * @arg: the new MTU
  1593. *
  1594. * we can handle "any" incoming size, the issue here is whether we
  1595. * need to restrict our outgoing size. For now, we don't do any
  1596. * sanity checking on this, and we don't deal with what happens to
  1597. * programs that are already running when the size changes.
  1598. * NOTE: changing the MTU will usually cause the IBC to go back to
  1599. * link initialize (IPATH_IBSTATE_INIT) state...
  1600. */
  1601. int ipath_set_mtu(struct ipath_devdata *dd, u16 arg)
  1602. {
  1603. u32 piosize;
  1604. int changed = 0;
  1605. int ret;
  1606. /*
  1607. * mtu is IB data payload max. It's the largest power of 2 less
  1608. * than piosize (or even larger, since it only really controls the
  1609. * largest we can receive; we can send the max of the mtu and
  1610. * piosize). We check that it's one of the valid IB sizes.
  1611. */
  1612. if (arg != 256 && arg != 512 && arg != 1024 && arg != 2048 &&
  1613. arg != 4096) {
  1614. ipath_dbg("Trying to set invalid mtu %u, failing\n", arg);
  1615. ret = -EINVAL;
  1616. goto bail;
  1617. }
  1618. if (dd->ipath_ibmtu == arg) {
  1619. ret = 0; /* same as current */
  1620. goto bail;
  1621. }
  1622. piosize = dd->ipath_ibmaxlen;
  1623. dd->ipath_ibmtu = arg;
  1624. if (arg >= (piosize - IPATH_PIO_MAXIBHDR)) {
  1625. /* Only if it's not the initial value (or reset to it) */
  1626. if (piosize != dd->ipath_init_ibmaxlen) {
  1627. dd->ipath_ibmaxlen = piosize;
  1628. changed = 1;
  1629. }
  1630. } else if ((arg + IPATH_PIO_MAXIBHDR) != dd->ipath_ibmaxlen) {
  1631. piosize = arg + IPATH_PIO_MAXIBHDR;
  1632. ipath_cdbg(VERBOSE, "ibmaxlen was 0x%x, setting to 0x%x "
  1633. "(mtu 0x%x)\n", dd->ipath_ibmaxlen, piosize,
  1634. arg);
  1635. dd->ipath_ibmaxlen = piosize;
  1636. changed = 1;
  1637. }
  1638. if (changed) {
  1639. /*
  1640. * set the IBC maxpktlength to the size of our pio
  1641. * buffers in words
  1642. */
  1643. u64 ibc = dd->ipath_ibcctrl;
  1644. ibc &= ~(INFINIPATH_IBCC_MAXPKTLEN_MASK <<
  1645. INFINIPATH_IBCC_MAXPKTLEN_SHIFT);
  1646. piosize = piosize - 2 * sizeof(u32); /* ignore pbc */
  1647. dd->ipath_ibmaxlen = piosize;
  1648. piosize /= sizeof(u32); /* in words */
  1649. /*
  1650. * for ICRC, which we only send in diag test pkt mode, and
  1651. * we don't need to worry about that for mtu
  1652. */
  1653. piosize += 1;
  1654. ibc |= piosize << INFINIPATH_IBCC_MAXPKTLEN_SHIFT;
  1655. dd->ipath_ibcctrl = ibc;
  1656. ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
  1657. dd->ipath_ibcctrl);
  1658. dd->ipath_f_tidtemplate(dd);
  1659. }
  1660. ret = 0;
  1661. bail:
  1662. return ret;
  1663. }
  1664. int ipath_set_lid(struct ipath_devdata *dd, u32 arg, u8 lmc)
  1665. {
  1666. dd->ipath_lid = arg;
  1667. dd->ipath_lmc = lmc;
  1668. return 0;
  1669. }
  1670. /**
  1671. * ipath_write_kreg_port - write a device's per-port 64-bit kernel register
  1672. * @dd: the infinipath device
  1673. * @regno: the register number to write
  1674. * @port: the port containing the register
  1675. * @value: the value to write
  1676. *
  1677. * Registers that vary with the chip implementation constants (port)
  1678. * use this routine.
  1679. */
  1680. void ipath_write_kreg_port(const struct ipath_devdata *dd, ipath_kreg regno,
  1681. unsigned port, u64 value)
  1682. {
  1683. u16 where;
  1684. if (port < dd->ipath_portcnt &&
  1685. (regno == dd->ipath_kregs->kr_rcvhdraddr ||
  1686. regno == dd->ipath_kregs->kr_rcvhdrtailaddr))
  1687. where = regno + port;
  1688. else
  1689. where = -1;
  1690. ipath_write_kreg(dd, where, value);
  1691. }
  1692. /*
  1693. * Following deal with the "obviously simple" task of overriding the state
  1694. * of the LEDS, which normally indicate link physical and logical status.
  1695. * The complications arise in dealing with different hardware mappings
  1696. * and the board-dependent routine being called from interrupts.
  1697. * and then there's the requirement to _flash_ them.
  1698. */
  1699. #define LED_OVER_FREQ_SHIFT 8
  1700. #define LED_OVER_FREQ_MASK (0xFF<<LED_OVER_FREQ_SHIFT)
  1701. /* Below is "non-zero" to force override, but both actual LEDs are off */
  1702. #define LED_OVER_BOTH_OFF (8)
  1703. static void ipath_run_led_override(unsigned long opaque)
  1704. {
  1705. struct ipath_devdata *dd = (struct ipath_devdata *)opaque;
  1706. int timeoff;
  1707. int pidx;
  1708. u64 lstate, ltstate, val;
  1709. if (!(dd->ipath_flags & IPATH_INITTED))
  1710. return;
  1711. pidx = dd->ipath_led_override_phase++ & 1;
  1712. dd->ipath_led_override = dd->ipath_led_override_vals[pidx];
  1713. timeoff = dd->ipath_led_override_timeoff;
  1714. /*
  1715. * below potentially restores the LED values per current status,
  1716. * should also possibly setup the traffic-blink register,
  1717. * but leave that to per-chip functions.
  1718. */
  1719. val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
  1720. ltstate = (val >> INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
  1721. INFINIPATH_IBCS_LINKTRAININGSTATE_MASK;
  1722. lstate = (val >> INFINIPATH_IBCS_LINKSTATE_SHIFT) &
  1723. INFINIPATH_IBCS_LINKSTATE_MASK;
  1724. dd->ipath_f_setextled(dd, lstate, ltstate);
  1725. mod_timer(&dd->ipath_led_override_timer, jiffies + timeoff);
  1726. }
  1727. void ipath_set_led_override(struct ipath_devdata *dd, unsigned int val)
  1728. {
  1729. int timeoff, freq;
  1730. if (!(dd->ipath_flags & IPATH_INITTED))
  1731. return;
  1732. /* First check if we are blinking. If not, use 1HZ polling */
  1733. timeoff = HZ;
  1734. freq = (val & LED_OVER_FREQ_MASK) >> LED_OVER_FREQ_SHIFT;
  1735. if (freq) {
  1736. /* For blink, set each phase from one nybble of val */
  1737. dd->ipath_led_override_vals[0] = val & 0xF;
  1738. dd->ipath_led_override_vals[1] = (val >> 4) & 0xF;
  1739. timeoff = (HZ << 4)/freq;
  1740. } else {
  1741. /* Non-blink set both phases the same. */
  1742. dd->ipath_led_override_vals[0] = val & 0xF;
  1743. dd->ipath_led_override_vals[1] = val & 0xF;
  1744. }
  1745. dd->ipath_led_override_timeoff = timeoff;
  1746. /*
  1747. * If the timer has not already been started, do so. Use a "quick"
  1748. * timeout so the function will be called soon, to look at our request.
  1749. */
  1750. if (atomic_inc_return(&dd->ipath_led_override_timer_active) == 1) {
  1751. /* Need to start timer */
  1752. init_timer(&dd->ipath_led_override_timer);
  1753. dd->ipath_led_override_timer.function =
  1754. ipath_run_led_override;
  1755. dd->ipath_led_override_timer.data = (unsigned long) dd;
  1756. dd->ipath_led_override_timer.expires = jiffies + 1;
  1757. add_timer(&dd->ipath_led_override_timer);
  1758. } else {
  1759. atomic_dec(&dd->ipath_led_override_timer_active);
  1760. }
  1761. }
  1762. /**
  1763. * ipath_shutdown_device - shut down a device
  1764. * @dd: the infinipath device
  1765. *
  1766. * This is called to make the device quiet when we are about to
  1767. * unload the driver, and also when the device is administratively
  1768. * disabled. It does not free any data structures.
  1769. * Everything it does has to be setup again by ipath_init_chip(dd,1)
  1770. */
  1771. void ipath_shutdown_device(struct ipath_devdata *dd)
  1772. {
  1773. unsigned long flags;
  1774. ipath_dbg("Shutting down the device\n");
  1775. dd->ipath_flags |= IPATH_LINKUNK;
  1776. dd->ipath_flags &= ~(IPATH_INITTED | IPATH_LINKDOWN |
  1777. IPATH_LINKINIT | IPATH_LINKARMED |
  1778. IPATH_LINKACTIVE);
  1779. *dd->ipath_statusp &= ~(IPATH_STATUS_IB_CONF |
  1780. IPATH_STATUS_IB_READY);
  1781. /* mask interrupts, but not errors */
  1782. ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
  1783. dd->ipath_rcvctrl = 0;
  1784. ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
  1785. dd->ipath_rcvctrl);
  1786. /*
  1787. * gracefully stop all sends allowing any in progress to trickle out
  1788. * first.
  1789. */
  1790. spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
  1791. dd->ipath_sendctrl = 0;
  1792. ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, dd->ipath_sendctrl);
  1793. /* flush it */
  1794. ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
  1795. spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
  1796. /*
  1797. * enough for anything that's going to trickle out to have actually
  1798. * done so.
  1799. */
  1800. udelay(5);
  1801. ipath_set_ib_lstate(dd, INFINIPATH_IBCC_LINKINITCMD_DISABLE <<
  1802. INFINIPATH_IBCC_LINKINITCMD_SHIFT);
  1803. ipath_cancel_sends(dd, 0);
  1804. signal_ib_event(dd, IB_EVENT_PORT_ERR);
  1805. /* disable IBC */
  1806. dd->ipath_control &= ~INFINIPATH_C_LINKENABLE;
  1807. ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
  1808. dd->ipath_control | INFINIPATH_C_FREEZEMODE);
  1809. /*
  1810. * clear SerdesEnable and turn the leds off; do this here because
  1811. * we are unloading, so don't count on interrupts to move along
  1812. * Turn the LEDs off explictly for the same reason.
  1813. */
  1814. dd->ipath_f_quiet_serdes(dd);
  1815. if (dd->ipath_stats_timer_active) {
  1816. del_timer_sync(&dd->ipath_stats_timer);
  1817. dd->ipath_stats_timer_active = 0;
  1818. }
  1819. /*
  1820. * clear all interrupts and errors, so that the next time the driver
  1821. * is loaded or device is enabled, we know that whatever is set
  1822. * happened while we were unloaded
  1823. */
  1824. ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear,
  1825. ~0ULL & ~INFINIPATH_HWE_MEMBISTFAILED);
  1826. ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, -1LL);
  1827. ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, -1LL);
  1828. ipath_cdbg(VERBOSE, "Flush time and errors to EEPROM\n");
  1829. ipath_update_eeprom_log(dd);
  1830. }
  1831. /**
  1832. * ipath_free_pddata - free a port's allocated data
  1833. * @dd: the infinipath device
  1834. * @pd: the portdata structure
  1835. *
  1836. * free up any allocated data for a port
  1837. * This should not touch anything that would affect a simultaneous
  1838. * re-allocation of port data, because it is called after ipath_mutex
  1839. * is released (and can be called from reinit as well).
  1840. * It should never change any chip state, or global driver state.
  1841. * (The only exception to global state is freeing the port0 port0_skbs.)
  1842. */
  1843. void ipath_free_pddata(struct ipath_devdata *dd, struct ipath_portdata *pd)
  1844. {
  1845. if (!pd)
  1846. return;
  1847. if (pd->port_rcvhdrq) {
  1848. ipath_cdbg(VERBOSE, "free closed port %d rcvhdrq @ %p "
  1849. "(size=%lu)\n", pd->port_port, pd->port_rcvhdrq,
  1850. (unsigned long) pd->port_rcvhdrq_size);
  1851. dma_free_coherent(&dd->pcidev->dev, pd->port_rcvhdrq_size,
  1852. pd->port_rcvhdrq, pd->port_rcvhdrq_phys);
  1853. pd->port_rcvhdrq = NULL;
  1854. if (pd->port_rcvhdrtail_kvaddr) {
  1855. dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
  1856. pd->port_rcvhdrtail_kvaddr,
  1857. pd->port_rcvhdrqtailaddr_phys);
  1858. pd->port_rcvhdrtail_kvaddr = NULL;
  1859. }
  1860. }
  1861. if (pd->port_port && pd->port_rcvegrbuf) {
  1862. unsigned e;
  1863. for (e = 0; e < pd->port_rcvegrbuf_chunks; e++) {
  1864. void *base = pd->port_rcvegrbuf[e];
  1865. size_t size = pd->port_rcvegrbuf_size;
  1866. ipath_cdbg(VERBOSE, "egrbuf free(%p, %lu), "
  1867. "chunk %u/%u\n", base,
  1868. (unsigned long) size,
  1869. e, pd->port_rcvegrbuf_chunks);
  1870. dma_free_coherent(&dd->pcidev->dev, size,
  1871. base, pd->port_rcvegrbuf_phys[e]);
  1872. }
  1873. kfree(pd->port_rcvegrbuf);
  1874. pd->port_rcvegrbuf = NULL;
  1875. kfree(pd->port_rcvegrbuf_phys);
  1876. pd->port_rcvegrbuf_phys = NULL;
  1877. pd->port_rcvegrbuf_chunks = 0;
  1878. } else if (pd->port_port == 0 && dd->ipath_port0_skbinfo) {
  1879. unsigned e;
  1880. struct ipath_skbinfo *skbinfo = dd->ipath_port0_skbinfo;
  1881. dd->ipath_port0_skbinfo = NULL;
  1882. ipath_cdbg(VERBOSE, "free closed port %d "
  1883. "ipath_port0_skbinfo @ %p\n", pd->port_port,
  1884. skbinfo);
  1885. for (e = 0; e < dd->ipath_rcvegrcnt; e++)
  1886. if (skbinfo[e].skb) {
  1887. pci_unmap_single(dd->pcidev, skbinfo[e].phys,
  1888. dd->ipath_ibmaxlen,
  1889. PCI_DMA_FROMDEVICE);
  1890. dev_kfree_skb(skbinfo[e].skb);
  1891. }
  1892. vfree(skbinfo);
  1893. }
  1894. kfree(pd->port_tid_pg_list);
  1895. vfree(pd->subport_uregbase);
  1896. vfree(pd->subport_rcvegrbuf);
  1897. vfree(pd->subport_rcvhdr_base);
  1898. kfree(pd);
  1899. }
  1900. static int __init infinipath_init(void)
  1901. {
  1902. int ret;
  1903. if (ipath_debug & __IPATH_DBG)
  1904. printk(KERN_INFO DRIVER_LOAD_MSG "%s", ib_ipath_version);
  1905. /*
  1906. * These must be called before the driver is registered with
  1907. * the PCI subsystem.
  1908. */
  1909. idr_init(&unit_table);
  1910. if (!idr_pre_get(&unit_table, GFP_KERNEL)) {
  1911. ret = -ENOMEM;
  1912. goto bail;
  1913. }
  1914. ret = pci_register_driver(&ipath_driver);
  1915. if (ret < 0) {
  1916. printk(KERN_ERR IPATH_DRV_NAME
  1917. ": Unable to register driver: error %d\n", -ret);
  1918. goto bail_unit;
  1919. }
  1920. ret = ipath_init_ipathfs();
  1921. if (ret < 0) {
  1922. printk(KERN_ERR IPATH_DRV_NAME ": Unable to create "
  1923. "ipathfs: error %d\n", -ret);
  1924. goto bail_pci;
  1925. }
  1926. goto bail;
  1927. bail_pci:
  1928. pci_unregister_driver(&ipath_driver);
  1929. bail_unit:
  1930. idr_destroy(&unit_table);
  1931. bail:
  1932. return ret;
  1933. }
  1934. static void __exit infinipath_cleanup(void)
  1935. {
  1936. ipath_exit_ipathfs();
  1937. ipath_cdbg(VERBOSE, "Unregistering pci driver\n");
  1938. pci_unregister_driver(&ipath_driver);
  1939. idr_destroy(&unit_table);
  1940. }
  1941. /**
  1942. * ipath_reset_device - reset the chip if possible
  1943. * @unit: the device to reset
  1944. *
  1945. * Whether or not reset is successful, we attempt to re-initialize the chip
  1946. * (that is, much like a driver unload/reload). We clear the INITTED flag
  1947. * so that the various entry points will fail until we reinitialize. For
  1948. * now, we only allow this if no user ports are open that use chip resources
  1949. */
  1950. int ipath_reset_device(int unit)
  1951. {
  1952. int ret, i;
  1953. struct ipath_devdata *dd = ipath_lookup(unit);
  1954. if (!dd) {
  1955. ret = -ENODEV;
  1956. goto bail;
  1957. }
  1958. if (atomic_read(&dd->ipath_led_override_timer_active)) {
  1959. /* Need to stop LED timer, _then_ shut off LEDs */
  1960. del_timer_sync(&dd->ipath_led_override_timer);
  1961. atomic_set(&dd->ipath_led_override_timer_active, 0);
  1962. }
  1963. /* Shut off LEDs after we are sure timer is not running */
  1964. dd->ipath_led_override = LED_OVER_BOTH_OFF;
  1965. dd->ipath_f_setextled(dd, 0, 0);
  1966. dev_info(&dd->pcidev->dev, "Reset on unit %u requested\n", unit);
  1967. if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT)) {
  1968. dev_info(&dd->pcidev->dev, "Invalid unit number %u or "
  1969. "not initialized or not present\n", unit);
  1970. ret = -ENXIO;
  1971. goto bail;
  1972. }
  1973. if (dd->ipath_pd)
  1974. for (i = 1; i < dd->ipath_cfgports; i++) {
  1975. if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) {
  1976. ipath_dbg("unit %u port %d is in use "
  1977. "(PID %u cmd %s), can't reset\n",
  1978. unit, i,
  1979. dd->ipath_pd[i]->port_pid,
  1980. dd->ipath_pd[i]->port_comm);
  1981. ret = -EBUSY;
  1982. goto bail;
  1983. }
  1984. }
  1985. dd->ipath_flags &= ~IPATH_INITTED;
  1986. ret = dd->ipath_f_reset(dd);
  1987. if (ret != 1)
  1988. ipath_dbg("reset was not successful\n");
  1989. ipath_dbg("Trying to reinitialize unit %u after reset attempt\n",
  1990. unit);
  1991. ret = ipath_init_chip(dd, 1);
  1992. if (ret)
  1993. ipath_dev_err(dd, "Reinitialize unit %u after "
  1994. "reset failed with %d\n", unit, ret);
  1995. else
  1996. dev_info(&dd->pcidev->dev, "Reinitialized unit %u after "
  1997. "resetting\n", unit);
  1998. bail:
  1999. return ret;
  2000. }
  2001. int ipath_set_rx_pol_inv(struct ipath_devdata *dd, u8 new_pol_inv)
  2002. {
  2003. u64 val;
  2004. if ( new_pol_inv > INFINIPATH_XGXS_RX_POL_MASK ) {
  2005. return -1;
  2006. }
  2007. if ( dd->ipath_rx_pol_inv != new_pol_inv ) {
  2008. dd->ipath_rx_pol_inv = new_pol_inv;
  2009. val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_xgxsconfig);
  2010. val &= ~(INFINIPATH_XGXS_RX_POL_MASK <<
  2011. INFINIPATH_XGXS_RX_POL_SHIFT);
  2012. val |= ((u64)dd->ipath_rx_pol_inv) <<
  2013. INFINIPATH_XGXS_RX_POL_SHIFT;
  2014. ipath_write_kreg(dd, dd->ipath_kregs->kr_xgxsconfig, val);
  2015. }
  2016. return 0;
  2017. }
  2018. /*
  2019. * Disable and enable the armlaunch error. Used for PIO bandwidth testing on
  2020. * the 7220, which is count-based, rather than trigger-based. Safe for the
  2021. * driver check, since it's at init. Not completely safe when used for
  2022. * user-mode checking, since some error checking can be lost, but not
  2023. * particularly risky, and only has problematic side-effects in the face of
  2024. * very buggy user code. There is no reference counting, but that's also
  2025. * fine, given the intended use.
  2026. */
  2027. void ipath_enable_armlaunch(struct ipath_devdata *dd)
  2028. {
  2029. dd->ipath_lasterror &= ~INFINIPATH_E_SPIOARMLAUNCH;
  2030. ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear,
  2031. INFINIPATH_E_SPIOARMLAUNCH);
  2032. dd->ipath_errormask |= INFINIPATH_E_SPIOARMLAUNCH;
  2033. ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask,
  2034. dd->ipath_errormask);
  2035. }
  2036. void ipath_disable_armlaunch(struct ipath_devdata *dd)
  2037. {
  2038. /* so don't re-enable if already set */
  2039. dd->ipath_maskederrs &= ~INFINIPATH_E_SPIOARMLAUNCH;
  2040. dd->ipath_errormask &= ~INFINIPATH_E_SPIOARMLAUNCH;
  2041. ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask,
  2042. dd->ipath_errormask);
  2043. }
  2044. module_init(infinipath_init);
  2045. module_exit(infinipath_cleanup);