選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

linda.c 68KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433
  1. /*
  2. * Copyright (C) 2008 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  17. * 02110-1301, USA.
  18. */
  19. FILE_LICENCE ( GPL2_OR_LATER );
  20. #include <stdint.h>
  21. #include <stdlib.h>
  22. #include <errno.h>
  23. #include <unistd.h>
  24. #include <assert.h>
  25. #include <ipxe/io.h>
  26. #include <ipxe/pci.h>
  27. #include <ipxe/infiniband.h>
  28. #include <ipxe/i2c.h>
  29. #include <ipxe/bitbash.h>
  30. #include <ipxe/malloc.h>
  31. #include <ipxe/iobuf.h>
  32. #include "linda.h"
  33. /**
  34. * @file
  35. *
  36. * QLogic Linda Infiniband HCA
  37. *
  38. */
  39. /** A Linda send work queue */
  40. struct linda_send_work_queue {
  41. /** Send buffer usage */
  42. uint8_t *send_buf;
  43. /** Producer index */
  44. unsigned int prod;
  45. /** Consumer index */
  46. unsigned int cons;
  47. };
  48. /** A Linda receive work queue */
  49. struct linda_recv_work_queue {
  50. /** Receive header ring */
  51. void *header;
  52. /** Receive header producer offset (written by hardware) */
  53. struct QIB_7220_scalar header_prod;
  54. /** Receive header consumer offset */
  55. unsigned int header_cons;
  56. /** Offset within register space of the eager array */
  57. unsigned long eager_array;
  58. /** Number of entries in eager array */
  59. unsigned int eager_entries;
  60. /** Eager array producer index */
  61. unsigned int eager_prod;
  62. /** Eager array consumer index */
  63. unsigned int eager_cons;
  64. };
  65. /** A Linda HCA */
  66. struct linda {
  67. /** Registers */
  68. void *regs;
  69. /** In-use contexts */
  70. uint8_t used_ctx[LINDA_NUM_CONTEXTS];
  71. /** Send work queues */
  72. struct linda_send_work_queue send_wq[LINDA_NUM_CONTEXTS];
  73. /** Receive work queues */
  74. struct linda_recv_work_queue recv_wq[LINDA_NUM_CONTEXTS];
  75. /** Offset within register space of the first send buffer */
  76. unsigned long send_buffer_base;
  77. /** Send buffer availability (reported by hardware) */
  78. struct QIB_7220_SendBufAvail *sendbufavail;
  79. /** Send buffer availability (maintained by software) */
  80. uint8_t send_buf[LINDA_MAX_SEND_BUFS];
  81. /** Send buffer availability producer counter */
  82. unsigned int send_buf_prod;
  83. /** Send buffer availability consumer counter */
  84. unsigned int send_buf_cons;
  85. /** Number of reserved send buffers (across all QPs) */
  86. unsigned int reserved_send_bufs;
  87. /** I2C bit-bashing interface */
  88. struct i2c_bit_basher i2c;
  89. /** I2C serial EEPROM */
  90. struct i2c_device eeprom;
  91. };
  92. /***************************************************************************
  93. *
  94. * Linda register access
  95. *
  96. ***************************************************************************
  97. *
  98. * This card requires atomic 64-bit accesses. Strange things happen
  99. * if you try to use 32-bit accesses; sometimes they work, sometimes
  100. * they don't, sometimes you get random data.
  101. *
  102. * These accessors use the "movq" MMX instruction, and so won't work
  103. * on really old Pentiums (which won't have PCIe anyway, so this is
  104. * something of a moot point).
  105. */
  106. /**
  107. * Read Linda qword register
  108. *
  109. * @v linda Linda device
  110. * @v dwords Register buffer to read into
  111. * @v offset Register offset
  112. */
  113. static void linda_readq ( struct linda *linda, uint32_t *dwords,
  114. unsigned long offset ) {
  115. void *addr = ( linda->regs + offset );
  116. __asm__ __volatile__ ( "movq (%1), %%mm0\n\t"
  117. "movq %%mm0, (%0)\n\t"
  118. : : "r" ( dwords ), "r" ( addr ) : "memory" );
  119. DBGIO ( "[%08lx] => %08x%08x\n",
  120. virt_to_phys ( addr ), dwords[1], dwords[0] );
  121. }
  122. #define linda_readq( _linda, _ptr, _offset ) \
  123. linda_readq ( (_linda), (_ptr)->u.dwords, (_offset) )
  124. #define linda_readq_array8b( _linda, _ptr, _offset, _idx ) \
  125. linda_readq ( (_linda), (_ptr), ( (_offset) + ( (_idx) * 8 ) ) )
  126. #define linda_readq_array64k( _linda, _ptr, _offset, _idx ) \
  127. linda_readq ( (_linda), (_ptr), ( (_offset) + ( (_idx) * 65536 ) ) )
  128. /**
  129. * Write Linda qword register
  130. *
  131. * @v linda Linda device
  132. * @v dwords Register buffer to write
  133. * @v offset Register offset
  134. */
  135. static void linda_writeq ( struct linda *linda, const uint32_t *dwords,
  136. unsigned long offset ) {
  137. void *addr = ( linda->regs + offset );
  138. DBGIO ( "[%08lx] <= %08x%08x\n",
  139. virt_to_phys ( addr ), dwords[1], dwords[0] );
  140. __asm__ __volatile__ ( "movq (%0), %%mm0\n\t"
  141. "movq %%mm0, (%1)\n\t"
  142. : : "r" ( dwords ), "r" ( addr ) : "memory" );
  143. }
  144. #define linda_writeq( _linda, _ptr, _offset ) \
  145. linda_writeq ( (_linda), (_ptr)->u.dwords, (_offset) )
  146. #define linda_writeq_array8b( _linda, _ptr, _offset, _idx ) \
  147. linda_writeq ( (_linda), (_ptr), ( (_offset) + ( (_idx) * 8 ) ) )
  148. #define linda_writeq_array64k( _linda, _ptr, _offset, _idx ) \
  149. linda_writeq ( (_linda), (_ptr), ( (_offset) + ( (_idx) * 65536 ) ) )
  150. /**
  151. * Write Linda dword register
  152. *
  153. * @v linda Linda device
  154. * @v dword Value to write
  155. * @v offset Register offset
  156. */
  157. static void linda_writel ( struct linda *linda, uint32_t dword,
  158. unsigned long offset ) {
  159. writel ( dword, ( linda->regs + offset ) );
  160. }
  161. /***************************************************************************
  162. *
  163. * Link state management
  164. *
  165. ***************************************************************************
  166. */
  167. /**
  168. * Textual representation of link state
  169. *
  170. * @v link_state Link state
  171. * @ret link_text Link state text
  172. */
  173. static const char * linda_link_state_text ( unsigned int link_state ) {
  174. switch ( link_state ) {
  175. case LINDA_LINK_STATE_DOWN: return "DOWN";
  176. case LINDA_LINK_STATE_INIT: return "INIT";
  177. case LINDA_LINK_STATE_ARM: return "ARM";
  178. case LINDA_LINK_STATE_ACTIVE: return "ACTIVE";
  179. case LINDA_LINK_STATE_ACT_DEFER:return "ACT_DEFER";
  180. default: return "UNKNOWN";
  181. }
  182. }
  183. /**
  184. * Handle link state change
  185. *
  186. * @v linda Linda device
  187. */
  188. static void linda_link_state_changed ( struct ib_device *ibdev ) {
  189. struct linda *linda = ib_get_drvdata ( ibdev );
  190. struct QIB_7220_IBCStatus ibcstatus;
  191. struct QIB_7220_EXTCtrl extctrl;
  192. unsigned int link_state;
  193. unsigned int link_width;
  194. unsigned int link_speed;
  195. /* Read link state */
  196. linda_readq ( linda, &ibcstatus, QIB_7220_IBCStatus_offset );
  197. link_state = BIT_GET ( &ibcstatus, LinkState );
  198. link_width = BIT_GET ( &ibcstatus, LinkWidthActive );
  199. link_speed = BIT_GET ( &ibcstatus, LinkSpeedActive );
  200. DBGC ( linda, "Linda %p link state %s (%s %s)\n", linda,
  201. linda_link_state_text ( link_state ),
  202. ( link_speed ? "DDR" : "SDR" ), ( link_width ? "x4" : "x1" ) );
  203. /* Set LEDs according to link state */
  204. linda_readq ( linda, &extctrl, QIB_7220_EXTCtrl_offset );
  205. BIT_SET ( &extctrl, LEDPriPortGreenOn,
  206. ( ( link_state >= LINDA_LINK_STATE_INIT ) ? 1 : 0 ) );
  207. BIT_SET ( &extctrl, LEDPriPortYellowOn,
  208. ( ( link_state >= LINDA_LINK_STATE_ACTIVE ) ? 1 : 0 ) );
  209. linda_writeq ( linda, &extctrl, QIB_7220_EXTCtrl_offset );
  210. /* Notify Infiniband core of link state change */
  211. ibdev->port_state = ( link_state + 1 );
  212. ibdev->link_width_active =
  213. ( link_width ? IB_LINK_WIDTH_4X : IB_LINK_WIDTH_1X );
  214. ibdev->link_speed_active =
  215. ( link_speed ? IB_LINK_SPEED_DDR : IB_LINK_SPEED_SDR );
  216. ib_link_state_changed ( ibdev );
  217. }
  218. /**
  219. * Wait for link state change to take effect
  220. *
  221. * @v linda Linda device
  222. * @v new_link_state Expected link state
  223. * @ret rc Return status code
  224. */
  225. static int linda_link_state_check ( struct linda *linda,
  226. unsigned int new_link_state ) {
  227. struct QIB_7220_IBCStatus ibcstatus;
  228. unsigned int link_state;
  229. unsigned int i;
  230. for ( i = 0 ; i < LINDA_LINK_STATE_MAX_WAIT_US ; i++ ) {
  231. linda_readq ( linda, &ibcstatus, QIB_7220_IBCStatus_offset );
  232. link_state = BIT_GET ( &ibcstatus, LinkState );
  233. if ( link_state == new_link_state )
  234. return 0;
  235. udelay ( 1 );
  236. }
  237. DBGC ( linda, "Linda %p timed out waiting for link state %s\n",
  238. linda, linda_link_state_text ( link_state ) );
  239. return -ETIMEDOUT;
  240. }
  241. /**
  242. * Set port information
  243. *
  244. * @v ibdev Infiniband device
  245. * @v mad Set port information MAD
  246. */
  247. static int linda_set_port_info ( struct ib_device *ibdev, union ib_mad *mad ) {
  248. struct linda *linda = ib_get_drvdata ( ibdev );
  249. struct ib_port_info *port_info = &mad->smp.smp_data.port_info;
  250. struct QIB_7220_IBCCtrl ibcctrl;
  251. unsigned int port_state;
  252. unsigned int link_state;
  253. /* Set new link state */
  254. port_state = ( port_info->link_speed_supported__port_state & 0xf );
  255. if ( port_state ) {
  256. link_state = ( port_state - 1 );
  257. DBGC ( linda, "Linda %p set link state to %s (%x)\n", linda,
  258. linda_link_state_text ( link_state ), link_state );
  259. linda_readq ( linda, &ibcctrl, QIB_7220_IBCCtrl_offset );
  260. BIT_SET ( &ibcctrl, LinkCmd, link_state );
  261. linda_writeq ( linda, &ibcctrl, QIB_7220_IBCCtrl_offset );
  262. /* Wait for link state change to take effect. Ignore
  263. * errors; the current link state will be returned via
  264. * the GetResponse MAD.
  265. */
  266. linda_link_state_check ( linda, link_state );
  267. }
  268. /* Detect and report link state change */
  269. linda_link_state_changed ( ibdev );
  270. return 0;
  271. }
  272. /**
  273. * Set partition key table
  274. *
  275. * @v ibdev Infiniband device
  276. * @v mad Set partition key table MAD
  277. */
  278. static int linda_set_pkey_table ( struct ib_device *ibdev __unused,
  279. union ib_mad *mad __unused ) {
  280. /* Nothing to do */
  281. return 0;
  282. }
  283. /***************************************************************************
  284. *
  285. * Context allocation
  286. *
  287. ***************************************************************************
  288. */
  289. /**
  290. * Map context number to QPN
  291. *
  292. * @v ctx Context index
  293. * @ret qpn Queue pair number
  294. */
  295. static int linda_ctx_to_qpn ( unsigned int ctx ) {
  296. /* This mapping is fixed by hardware */
  297. return ( ctx * 2 );
  298. }
  299. /**
  300. * Map QPN to context number
  301. *
  302. * @v qpn Queue pair number
  303. * @ret ctx Context index
  304. */
  305. static int linda_qpn_to_ctx ( unsigned int qpn ) {
  306. /* This mapping is fixed by hardware */
  307. return ( qpn / 2 );
  308. }
  309. /**
  310. * Allocate a context
  311. *
  312. * @v linda Linda device
  313. * @ret ctx Context index, or negative error
  314. */
  315. static int linda_alloc_ctx ( struct linda *linda ) {
  316. unsigned int ctx;
  317. for ( ctx = 0 ; ctx < LINDA_NUM_CONTEXTS ; ctx++ ) {
  318. if ( ! linda->used_ctx[ctx] ) {
  319. linda->used_ctx[ctx ] = 1;
  320. DBGC2 ( linda, "Linda %p CTX %d allocated\n",
  321. linda, ctx );
  322. return ctx;
  323. }
  324. }
  325. DBGC ( linda, "Linda %p out of available contexts\n", linda );
  326. return -ENOENT;
  327. }
  328. /**
  329. * Free a context
  330. *
  331. * @v linda Linda device
  332. * @v ctx Context index
  333. */
  334. static void linda_free_ctx ( struct linda *linda, unsigned int ctx ) {
  335. linda->used_ctx[ctx] = 0;
  336. DBGC2 ( linda, "Linda %p CTX %d freed\n", linda, ctx );
  337. }
  338. /***************************************************************************
  339. *
  340. * Send datapath
  341. *
  342. ***************************************************************************
  343. */
  344. /** Send buffer toggle bit
  345. *
  346. * We encode send buffers as 7 bits of send buffer index plus a single
  347. * bit which should match the "check" bit in the SendBufAvail array.
  348. */
  349. #define LINDA_SEND_BUF_TOGGLE 0x80
  350. /**
  351. * Allocate a send buffer
  352. *
  353. * @v linda Linda device
  354. * @ret send_buf Send buffer
  355. *
  356. * You must guarantee that a send buffer is available. This is done
  357. * by refusing to allocate more TX WQEs in total than the number of
  358. * available send buffers.
  359. */
  360. static unsigned int linda_alloc_send_buf ( struct linda *linda ) {
  361. unsigned int send_buf;
  362. send_buf = linda->send_buf[linda->send_buf_cons];
  363. send_buf ^= LINDA_SEND_BUF_TOGGLE;
  364. linda->send_buf_cons = ( ( linda->send_buf_cons + 1 ) %
  365. LINDA_MAX_SEND_BUFS );
  366. return send_buf;
  367. }
  368. /**
  369. * Free a send buffer
  370. *
  371. * @v linda Linda device
  372. * @v send_buf Send buffer
  373. */
  374. static void linda_free_send_buf ( struct linda *linda,
  375. unsigned int send_buf ) {
  376. linda->send_buf[linda->send_buf_prod] = send_buf;
  377. linda->send_buf_prod = ( ( linda->send_buf_prod + 1 ) %
  378. LINDA_MAX_SEND_BUFS );
  379. }
  380. /**
  381. * Check to see if send buffer is in use
  382. *
  383. * @v linda Linda device
  384. * @v send_buf Send buffer
  385. * @ret in_use Send buffer is in use
  386. */
  387. static int linda_send_buf_in_use ( struct linda *linda,
  388. unsigned int send_buf ) {
  389. unsigned int send_idx;
  390. unsigned int send_check;
  391. unsigned int inusecheck;
  392. unsigned int inuse;
  393. unsigned int check;
  394. send_idx = ( send_buf & ~LINDA_SEND_BUF_TOGGLE );
  395. send_check = ( !! ( send_buf & LINDA_SEND_BUF_TOGGLE ) );
  396. inusecheck = BIT_GET ( linda->sendbufavail, InUseCheck[send_idx] );
  397. inuse = ( !! ( inusecheck & 0x02 ) );
  398. check = ( !! ( inusecheck & 0x01 ) );
  399. return ( inuse || ( check != send_check ) );
  400. }
  401. /**
  402. * Calculate starting offset for send buffer
  403. *
  404. * @v linda Linda device
  405. * @v send_buf Send buffer
  406. * @ret offset Starting offset
  407. */
  408. static unsigned long linda_send_buffer_offset ( struct linda *linda,
  409. unsigned int send_buf ) {
  410. return ( linda->send_buffer_base +
  411. ( ( send_buf & ~LINDA_SEND_BUF_TOGGLE ) *
  412. LINDA_SEND_BUF_SIZE ) );
  413. }
  414. /**
  415. * Create send work queue
  416. *
  417. * @v linda Linda device
  418. * @v qp Queue pair
  419. */
  420. static int linda_create_send_wq ( struct linda *linda,
  421. struct ib_queue_pair *qp ) {
  422. struct ib_work_queue *wq = &qp->send;
  423. struct linda_send_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  424. int rc;
  425. /* Reserve send buffers */
  426. if ( ( linda->reserved_send_bufs + qp->send.num_wqes ) >
  427. LINDA_MAX_SEND_BUFS ) {
  428. DBGC ( linda, "Linda %p out of send buffers (have %d, used "
  429. "%d, need %d)\n", linda, LINDA_MAX_SEND_BUFS,
  430. linda->reserved_send_bufs, qp->send.num_wqes );
  431. rc = -ENOBUFS;
  432. goto err_reserve_bufs;
  433. }
  434. linda->reserved_send_bufs += qp->send.num_wqes;
  435. /* Reset work queue */
  436. linda_wq->prod = 0;
  437. linda_wq->cons = 0;
  438. /* Allocate space for send buffer uasge list */
  439. linda_wq->send_buf = zalloc ( qp->send.num_wqes *
  440. sizeof ( linda_wq->send_buf[0] ) );
  441. if ( ! linda_wq->send_buf ) {
  442. rc = -ENOBUFS;
  443. goto err_alloc_send_buf;
  444. }
  445. return 0;
  446. free ( linda_wq->send_buf );
  447. err_alloc_send_buf:
  448. linda->reserved_send_bufs -= qp->send.num_wqes;
  449. err_reserve_bufs:
  450. return rc;
  451. }
  452. /**
  453. * Destroy send work queue
  454. *
  455. * @v linda Linda device
  456. * @v qp Queue pair
  457. */
  458. static void linda_destroy_send_wq ( struct linda *linda,
  459. struct ib_queue_pair *qp ) {
  460. struct ib_work_queue *wq = &qp->send;
  461. struct linda_send_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  462. free ( linda_wq->send_buf );
  463. linda->reserved_send_bufs -= qp->send.num_wqes;
  464. }
  465. /**
  466. * Initialise send datapath
  467. *
  468. * @v linda Linda device
  469. * @ret rc Return status code
  470. */
  471. static int linda_init_send ( struct linda *linda ) {
  472. struct QIB_7220_SendBufBase sendbufbase;
  473. struct QIB_7220_SendBufAvailAddr sendbufavailaddr;
  474. struct QIB_7220_SendCtrl sendctrl;
  475. unsigned int i;
  476. int rc;
  477. /* Retrieve SendBufBase */
  478. linda_readq ( linda, &sendbufbase, QIB_7220_SendBufBase_offset );
  479. linda->send_buffer_base = BIT_GET ( &sendbufbase,
  480. BaseAddr_SmallPIO );
  481. DBGC ( linda, "Linda %p send buffers at %lx\n",
  482. linda, linda->send_buffer_base );
  483. /* Initialise the send_buf[] array */
  484. for ( i = 0 ; i < LINDA_MAX_SEND_BUFS ; i++ )
  485. linda->send_buf[i] = i;
  486. /* Allocate space for the SendBufAvail array */
  487. linda->sendbufavail = malloc_dma ( sizeof ( *linda->sendbufavail ),
  488. LINDA_SENDBUFAVAIL_ALIGN );
  489. if ( ! linda->sendbufavail ) {
  490. rc = -ENOMEM;
  491. goto err_alloc_sendbufavail;
  492. }
  493. memset ( linda->sendbufavail, 0, sizeof ( linda->sendbufavail ) );
  494. /* Program SendBufAvailAddr into the hardware */
  495. memset ( &sendbufavailaddr, 0, sizeof ( sendbufavailaddr ) );
  496. BIT_FILL_1 ( &sendbufavailaddr, SendBufAvailAddr,
  497. ( virt_to_bus ( linda->sendbufavail ) >> 6 ) );
  498. linda_writeq ( linda, &sendbufavailaddr,
  499. QIB_7220_SendBufAvailAddr_offset );
  500. /* Enable sending and DMA of SendBufAvail */
  501. memset ( &sendctrl, 0, sizeof ( sendctrl ) );
  502. BIT_FILL_2 ( &sendctrl,
  503. SendBufAvailUpd, 1,
  504. SPioEnable, 1 );
  505. linda_writeq ( linda, &sendctrl, QIB_7220_SendCtrl_offset );
  506. return 0;
  507. free_dma ( linda->sendbufavail, sizeof ( *linda->sendbufavail ) );
  508. err_alloc_sendbufavail:
  509. return rc;
  510. }
  511. /**
  512. * Shut down send datapath
  513. *
  514. * @v linda Linda device
  515. */
  516. static void linda_fini_send ( struct linda *linda ) {
  517. struct QIB_7220_SendCtrl sendctrl;
  518. /* Disable sending and DMA of SendBufAvail */
  519. memset ( &sendctrl, 0, sizeof ( sendctrl ) );
  520. linda_writeq ( linda, &sendctrl, QIB_7220_SendCtrl_offset );
  521. mb();
  522. /* Ensure hardware has seen this disable */
  523. linda_readq ( linda, &sendctrl, QIB_7220_SendCtrl_offset );
  524. free_dma ( linda->sendbufavail, sizeof ( *linda->sendbufavail ) );
  525. }
  526. /***************************************************************************
  527. *
  528. * Receive datapath
  529. *
  530. ***************************************************************************
  531. */
  532. /**
  533. * Create receive work queue
  534. *
  535. * @v linda Linda device
  536. * @v qp Queue pair
  537. * @ret rc Return status code
  538. */
  539. static int linda_create_recv_wq ( struct linda *linda,
  540. struct ib_queue_pair *qp ) {
  541. struct ib_work_queue *wq = &qp->recv;
  542. struct linda_recv_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  543. struct QIB_7220_RcvHdrAddr0 rcvhdraddr;
  544. struct QIB_7220_RcvHdrTailAddr0 rcvhdrtailaddr;
  545. struct QIB_7220_RcvHdrHead0 rcvhdrhead;
  546. struct QIB_7220_scalar rcvegrindexhead;
  547. struct QIB_7220_RcvCtrl rcvctrl;
  548. unsigned int ctx = linda_qpn_to_ctx ( qp->qpn );
  549. int rc;
  550. /* Reset context information */
  551. memset ( &linda_wq->header_prod, 0,
  552. sizeof ( linda_wq->header_prod ) );
  553. linda_wq->header_cons = 0;
  554. linda_wq->eager_prod = 0;
  555. linda_wq->eager_cons = 0;
  556. /* Allocate receive header buffer */
  557. linda_wq->header = malloc_dma ( LINDA_RECV_HEADERS_SIZE,
  558. LINDA_RECV_HEADERS_ALIGN );
  559. if ( ! linda_wq->header ) {
  560. rc = -ENOMEM;
  561. goto err_alloc_header;
  562. }
  563. /* Enable context in hardware */
  564. memset ( &rcvhdraddr, 0, sizeof ( rcvhdraddr ) );
  565. BIT_FILL_1 ( &rcvhdraddr, RcvHdrAddr0,
  566. ( virt_to_bus ( linda_wq->header ) >> 2 ) );
  567. linda_writeq_array8b ( linda, &rcvhdraddr,
  568. QIB_7220_RcvHdrAddr0_offset, ctx );
  569. memset ( &rcvhdrtailaddr, 0, sizeof ( rcvhdrtailaddr ) );
  570. BIT_FILL_1 ( &rcvhdrtailaddr, RcvHdrTailAddr0,
  571. ( virt_to_bus ( &linda_wq->header_prod ) >> 2 ) );
  572. linda_writeq_array8b ( linda, &rcvhdrtailaddr,
  573. QIB_7220_RcvHdrTailAddr0_offset, ctx );
  574. memset ( &rcvhdrhead, 0, sizeof ( rcvhdrhead ) );
  575. BIT_FILL_1 ( &rcvhdrhead, counter, 1 );
  576. linda_writeq_array64k ( linda, &rcvhdrhead,
  577. QIB_7220_RcvHdrHead0_offset, ctx );
  578. memset ( &rcvegrindexhead, 0, sizeof ( rcvegrindexhead ) );
  579. BIT_FILL_1 ( &rcvegrindexhead, Value, 1 );
  580. linda_writeq_array64k ( linda, &rcvegrindexhead,
  581. QIB_7220_RcvEgrIndexHead0_offset, ctx );
  582. linda_readq ( linda, &rcvctrl, QIB_7220_RcvCtrl_offset );
  583. BIT_SET ( &rcvctrl, PortEnable[ctx], 1 );
  584. BIT_SET ( &rcvctrl, IntrAvail[ctx], 1 );
  585. linda_writeq ( linda, &rcvctrl, QIB_7220_RcvCtrl_offset );
  586. DBGC ( linda, "Linda %p QPN %ld CTX %d hdrs [%lx,%lx) prod %lx\n",
  587. linda, qp->qpn, ctx, virt_to_bus ( linda_wq->header ),
  588. ( virt_to_bus ( linda_wq->header ) + LINDA_RECV_HEADERS_SIZE ),
  589. virt_to_bus ( &linda_wq->header_prod ) );
  590. return 0;
  591. free_dma ( linda_wq->header, LINDA_RECV_HEADERS_SIZE );
  592. err_alloc_header:
  593. return rc;
  594. }
  595. /**
  596. * Destroy receive work queue
  597. *
  598. * @v linda Linda device
  599. * @v qp Queue pair
  600. */
  601. static void linda_destroy_recv_wq ( struct linda *linda,
  602. struct ib_queue_pair *qp ) {
  603. struct ib_work_queue *wq = &qp->recv;
  604. struct linda_recv_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  605. struct QIB_7220_RcvCtrl rcvctrl;
  606. unsigned int ctx = linda_qpn_to_ctx ( qp->qpn );
  607. /* Disable context in hardware */
  608. linda_readq ( linda, &rcvctrl, QIB_7220_RcvCtrl_offset );
  609. BIT_SET ( &rcvctrl, PortEnable[ctx], 0 );
  610. BIT_SET ( &rcvctrl, IntrAvail[ctx], 0 );
  611. linda_writeq ( linda, &rcvctrl, QIB_7220_RcvCtrl_offset );
  612. /* Make sure the hardware has seen that the context is disabled */
  613. linda_readq ( linda, &rcvctrl, QIB_7220_RcvCtrl_offset );
  614. mb();
  615. /* Free headers ring */
  616. free_dma ( linda_wq->header, LINDA_RECV_HEADERS_SIZE );
  617. /* Free context */
  618. linda_free_ctx ( linda, ctx );
  619. }
  620. /**
  621. * Initialise receive datapath
  622. *
  623. * @v linda Linda device
  624. * @ret rc Return status code
  625. */
  626. static int linda_init_recv ( struct linda *linda ) {
  627. struct QIB_7220_RcvCtrl rcvctrl;
  628. struct QIB_7220_scalar rcvegrbase;
  629. struct QIB_7220_scalar rcvhdrentsize;
  630. struct QIB_7220_scalar rcvhdrcnt;
  631. struct QIB_7220_RcvBTHQP rcvbthqp;
  632. unsigned int portcfg;
  633. unsigned long egrbase;
  634. unsigned int eager_array_size_0;
  635. unsigned int eager_array_size_other;
  636. unsigned int ctx;
  637. /* Select configuration based on number of contexts */
  638. switch ( LINDA_NUM_CONTEXTS ) {
  639. case 5:
  640. portcfg = LINDA_PORTCFG_5CTX;
  641. eager_array_size_0 = LINDA_EAGER_ARRAY_SIZE_5CTX_0;
  642. eager_array_size_other = LINDA_EAGER_ARRAY_SIZE_5CTX_OTHER;
  643. break;
  644. case 9:
  645. portcfg = LINDA_PORTCFG_9CTX;
  646. eager_array_size_0 = LINDA_EAGER_ARRAY_SIZE_9CTX_0;
  647. eager_array_size_other = LINDA_EAGER_ARRAY_SIZE_9CTX_OTHER;
  648. break;
  649. case 17:
  650. portcfg = LINDA_PORTCFG_17CTX;
  651. eager_array_size_0 = LINDA_EAGER_ARRAY_SIZE_17CTX_0;
  652. eager_array_size_other = LINDA_EAGER_ARRAY_SIZE_17CTX_OTHER;
  653. break;
  654. default:
  655. linker_assert ( 0, invalid_LINDA_NUM_CONTEXTS );
  656. return -EINVAL;
  657. }
  658. /* Configure number of contexts */
  659. memset ( &rcvctrl, 0, sizeof ( rcvctrl ) );
  660. BIT_FILL_3 ( &rcvctrl,
  661. TailUpd, 1,
  662. PortCfg, portcfg,
  663. RcvQPMapEnable, 1 );
  664. linda_writeq ( linda, &rcvctrl, QIB_7220_RcvCtrl_offset );
  665. /* Configure receive header buffer sizes */
  666. memset ( &rcvhdrcnt, 0, sizeof ( rcvhdrcnt ) );
  667. BIT_FILL_1 ( &rcvhdrcnt, Value, LINDA_RECV_HEADER_COUNT );
  668. linda_writeq ( linda, &rcvhdrcnt, QIB_7220_RcvHdrCnt_offset );
  669. memset ( &rcvhdrentsize, 0, sizeof ( rcvhdrentsize ) );
  670. BIT_FILL_1 ( &rcvhdrentsize, Value, ( LINDA_RECV_HEADER_SIZE >> 2 ) );
  671. linda_writeq ( linda, &rcvhdrentsize, QIB_7220_RcvHdrEntSize_offset );
  672. /* Calculate eager array start addresses for each context */
  673. linda_readq ( linda, &rcvegrbase, QIB_7220_RcvEgrBase_offset );
  674. egrbase = BIT_GET ( &rcvegrbase, Value );
  675. linda->recv_wq[0].eager_array = egrbase;
  676. linda->recv_wq[0].eager_entries = eager_array_size_0;
  677. egrbase += ( eager_array_size_0 * sizeof ( struct QIB_7220_RcvEgr ) );
  678. for ( ctx = 1 ; ctx < LINDA_NUM_CONTEXTS ; ctx++ ) {
  679. linda->recv_wq[ctx].eager_array = egrbase;
  680. linda->recv_wq[ctx].eager_entries = eager_array_size_other;
  681. egrbase += ( eager_array_size_other *
  682. sizeof ( struct QIB_7220_RcvEgr ) );
  683. }
  684. for ( ctx = 0 ; ctx < LINDA_NUM_CONTEXTS ; ctx++ ) {
  685. DBGC ( linda, "Linda %p CTX %d eager array at %lx (%d "
  686. "entries)\n", linda, ctx,
  687. linda->recv_wq[ctx].eager_array,
  688. linda->recv_wq[ctx].eager_entries );
  689. }
  690. /* Set the BTH QP for Infinipath packets to an unused value */
  691. memset ( &rcvbthqp, 0, sizeof ( rcvbthqp ) );
  692. BIT_FILL_1 ( &rcvbthqp, RcvBTHQP, LINDA_QP_IDETH );
  693. linda_writeq ( linda, &rcvbthqp, QIB_7220_RcvBTHQP_offset );
  694. return 0;
  695. }
  696. /**
  697. * Shut down receive datapath
  698. *
  699. * @v linda Linda device
  700. */
  701. static void linda_fini_recv ( struct linda *linda __unused ) {
  702. /* Nothing to do; all contexts were already disabled when the
  703. * queue pairs were destroyed
  704. */
  705. }
  706. /***************************************************************************
  707. *
  708. * Completion queue operations
  709. *
  710. ***************************************************************************
  711. */
  712. /**
  713. * Create completion queue
  714. *
  715. * @v ibdev Infiniband device
  716. * @v cq Completion queue
  717. * @ret rc Return status code
  718. */
  719. static int linda_create_cq ( struct ib_device *ibdev,
  720. struct ib_completion_queue *cq ) {
  721. struct linda *linda = ib_get_drvdata ( ibdev );
  722. static int cqn;
  723. /* The hardware has no concept of completion queues. We
  724. * simply use the association between CQs and WQs (already
  725. * handled by the IB core) to decide which WQs to poll.
  726. *
  727. * We do set a CQN, just to avoid confusing debug messages
  728. * from the IB core.
  729. */
  730. cq->cqn = ++cqn;
  731. DBGC ( linda, "Linda %p CQN %ld created\n", linda, cq->cqn );
  732. return 0;
  733. }
  734. /**
  735. * Destroy completion queue
  736. *
  737. * @v ibdev Infiniband device
  738. * @v cq Completion queue
  739. */
  740. static void linda_destroy_cq ( struct ib_device *ibdev,
  741. struct ib_completion_queue *cq ) {
  742. struct linda *linda = ib_get_drvdata ( ibdev );
  743. /* Nothing to do */
  744. DBGC ( linda, "Linda %p CQN %ld destroyed\n", linda, cq->cqn );
  745. }
  746. /***************************************************************************
  747. *
  748. * Queue pair operations
  749. *
  750. ***************************************************************************
  751. */
  752. /**
  753. * Create queue pair
  754. *
  755. * @v ibdev Infiniband device
  756. * @v qp Queue pair
  757. * @ret rc Return status code
  758. */
  759. static int linda_create_qp ( struct ib_device *ibdev,
  760. struct ib_queue_pair *qp ) {
  761. struct linda *linda = ib_get_drvdata ( ibdev );
  762. int ctx;
  763. int rc;
  764. /* Locate an available context */
  765. ctx = linda_alloc_ctx ( linda );
  766. if ( ctx < 0 ) {
  767. rc = ctx;
  768. goto err_alloc_ctx;
  769. }
  770. /* Set queue pair number based on context index */
  771. qp->qpn = linda_ctx_to_qpn ( ctx );
  772. /* Set work-queue private data pointers */
  773. ib_wq_set_drvdata ( &qp->send, &linda->send_wq[ctx] );
  774. ib_wq_set_drvdata ( &qp->recv, &linda->recv_wq[ctx] );
  775. /* Create receive work queue */
  776. if ( ( rc = linda_create_recv_wq ( linda, qp ) ) != 0 )
  777. goto err_create_recv_wq;
  778. /* Create send work queue */
  779. if ( ( rc = linda_create_send_wq ( linda, qp ) ) != 0 )
  780. goto err_create_send_wq;
  781. return 0;
  782. linda_destroy_send_wq ( linda, qp );
  783. err_create_send_wq:
  784. linda_destroy_recv_wq ( linda, qp );
  785. err_create_recv_wq:
  786. linda_free_ctx ( linda, ctx );
  787. err_alloc_ctx:
  788. return rc;
  789. }
  790. /**
  791. * Modify queue pair
  792. *
  793. * @v ibdev Infiniband device
  794. * @v qp Queue pair
  795. * @ret rc Return status code
  796. */
  797. static int linda_modify_qp ( struct ib_device *ibdev,
  798. struct ib_queue_pair *qp ) {
  799. struct linda *linda = ib_get_drvdata ( ibdev );
  800. /* Nothing to do; the hardware doesn't have a notion of queue
  801. * keys
  802. */
  803. DBGC ( linda, "Linda %p QPN %ld modified\n", linda, qp->qpn );
  804. return 0;
  805. }
  806. /**
  807. * Destroy queue pair
  808. *
  809. * @v ibdev Infiniband device
  810. * @v qp Queue pair
  811. */
  812. static void linda_destroy_qp ( struct ib_device *ibdev,
  813. struct ib_queue_pair *qp ) {
  814. struct linda *linda = ib_get_drvdata ( ibdev );
  815. linda_destroy_send_wq ( linda, qp );
  816. linda_destroy_recv_wq ( linda, qp );
  817. }
  818. /***************************************************************************
  819. *
  820. * Work request operations
  821. *
  822. ***************************************************************************
  823. */
  824. /**
  825. * Post send work queue entry
  826. *
  827. * @v ibdev Infiniband device
  828. * @v qp Queue pair
  829. * @v dest Destination address vector
  830. * @v iobuf I/O buffer
  831. * @ret rc Return status code
  832. */
  833. static int linda_post_send ( struct ib_device *ibdev,
  834. struct ib_queue_pair *qp,
  835. struct ib_address_vector *dest,
  836. struct io_buffer *iobuf ) {
  837. struct linda *linda = ib_get_drvdata ( ibdev );
  838. struct ib_work_queue *wq = &qp->send;
  839. struct linda_send_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  840. struct QIB_7220_SendPbc sendpbc;
  841. uint8_t header_buf[IB_MAX_HEADER_SIZE];
  842. struct io_buffer headers;
  843. unsigned int send_buf;
  844. unsigned long start_offset;
  845. unsigned long offset;
  846. size_t len;
  847. ssize_t frag_len;
  848. uint32_t *data;
  849. /* Allocate send buffer and calculate offset */
  850. send_buf = linda_alloc_send_buf ( linda );
  851. start_offset = offset = linda_send_buffer_offset ( linda, send_buf );
  852. /* Store I/O buffer and send buffer index */
  853. assert ( wq->iobufs[linda_wq->prod] == NULL );
  854. wq->iobufs[linda_wq->prod] = iobuf;
  855. linda_wq->send_buf[linda_wq->prod] = send_buf;
  856. /* Construct headers */
  857. iob_populate ( &headers, header_buf, 0, sizeof ( header_buf ) );
  858. iob_reserve ( &headers, sizeof ( header_buf ) );
  859. ib_push ( ibdev, &headers, qp, iob_len ( iobuf ), dest );
  860. /* Calculate packet length */
  861. len = ( ( sizeof ( sendpbc ) + iob_len ( &headers ) +
  862. iob_len ( iobuf ) + 3 ) & ~3 );
  863. /* Construct send per-buffer control word */
  864. memset ( &sendpbc, 0, sizeof ( sendpbc ) );
  865. BIT_FILL_2 ( &sendpbc,
  866. LengthP1_toibc, ( ( len >> 2 ) - 1 ),
  867. VL15, 1 );
  868. /* Write SendPbc */
  869. DBG_DISABLE ( DBGLVL_IO );
  870. linda_writeq ( linda, &sendpbc, offset );
  871. offset += sizeof ( sendpbc );
  872. /* Write headers */
  873. for ( data = headers.data, frag_len = iob_len ( &headers ) ;
  874. frag_len > 0 ; data++, offset += 4, frag_len -= 4 ) {
  875. linda_writel ( linda, *data, offset );
  876. }
  877. /* Write data */
  878. for ( data = iobuf->data, frag_len = iob_len ( iobuf ) ;
  879. frag_len > 0 ; data++, offset += 4, frag_len -= 4 ) {
  880. linda_writel ( linda, *data, offset );
  881. }
  882. DBG_ENABLE ( DBGLVL_IO );
  883. assert ( ( start_offset + len ) == offset );
  884. DBGC2 ( linda, "Linda %p QPN %ld TX %d(%d) posted [%lx,%lx)\n",
  885. linda, qp->qpn, send_buf, linda_wq->prod,
  886. start_offset, offset );
  887. /* Increment producer counter */
  888. linda_wq->prod = ( ( linda_wq->prod + 1 ) & ( wq->num_wqes - 1 ) );
  889. return 0;
  890. }
  891. /**
  892. * Complete send work queue entry
  893. *
  894. * @v ibdev Infiniband device
  895. * @v qp Queue pair
  896. * @v wqe_idx Work queue entry index
  897. */
  898. static void linda_complete_send ( struct ib_device *ibdev,
  899. struct ib_queue_pair *qp,
  900. unsigned int wqe_idx ) {
  901. struct linda *linda = ib_get_drvdata ( ibdev );
  902. struct ib_work_queue *wq = &qp->send;
  903. struct linda_send_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  904. struct io_buffer *iobuf;
  905. unsigned int send_buf;
  906. /* Parse completion */
  907. send_buf = linda_wq->send_buf[wqe_idx];
  908. DBGC2 ( linda, "Linda %p QPN %ld TX %d(%d) complete\n",
  909. linda, qp->qpn, send_buf, wqe_idx );
  910. /* Complete work queue entry */
  911. iobuf = wq->iobufs[wqe_idx];
  912. assert ( iobuf != NULL );
  913. ib_complete_send ( ibdev, qp, iobuf, 0 );
  914. wq->iobufs[wqe_idx] = NULL;
  915. /* Free send buffer */
  916. linda_free_send_buf ( linda, send_buf );
  917. }
  918. /**
  919. * Poll send work queue
  920. *
  921. * @v ibdev Infiniband device
  922. * @v qp Queue pair
  923. */
  924. static void linda_poll_send_wq ( struct ib_device *ibdev,
  925. struct ib_queue_pair *qp ) {
  926. struct linda *linda = ib_get_drvdata ( ibdev );
  927. struct ib_work_queue *wq = &qp->send;
  928. struct linda_send_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  929. unsigned int send_buf;
  930. /* Look for completions */
  931. while ( wq->fill ) {
  932. /* Check to see if send buffer has completed */
  933. send_buf = linda_wq->send_buf[linda_wq->cons];
  934. if ( linda_send_buf_in_use ( linda, send_buf ) )
  935. break;
  936. /* Complete this buffer */
  937. linda_complete_send ( ibdev, qp, linda_wq->cons );
  938. /* Increment consumer counter */
  939. linda_wq->cons = ( ( linda_wq->cons + 1 ) &
  940. ( wq->num_wqes - 1 ) );
  941. }
  942. }
  943. /**
  944. * Post receive work queue entry
  945. *
  946. * @v ibdev Infiniband device
  947. * @v qp Queue pair
  948. * @v iobuf I/O buffer
  949. * @ret rc Return status code
  950. */
  951. static int linda_post_recv ( struct ib_device *ibdev,
  952. struct ib_queue_pair *qp,
  953. struct io_buffer *iobuf ) {
  954. struct linda *linda = ib_get_drvdata ( ibdev );
  955. struct ib_work_queue *wq = &qp->recv;
  956. struct linda_recv_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  957. struct QIB_7220_RcvEgr rcvegr;
  958. struct QIB_7220_scalar rcvegrindexhead;
  959. unsigned int ctx = linda_qpn_to_ctx ( qp->qpn );
  960. physaddr_t addr;
  961. size_t len;
  962. unsigned int wqe_idx;
  963. unsigned int bufsize;
  964. /* Sanity checks */
  965. addr = virt_to_bus ( iobuf->data );
  966. len = iob_tailroom ( iobuf );
  967. if ( addr & ( LINDA_EAGER_BUFFER_ALIGN - 1 ) ) {
  968. DBGC ( linda, "Linda %p QPN %ld misaligned RX buffer "
  969. "(%08lx)\n", linda, qp->qpn, addr );
  970. return -EINVAL;
  971. }
  972. if ( len != LINDA_RECV_PAYLOAD_SIZE ) {
  973. DBGC ( linda, "Linda %p QPN %ld wrong RX buffer size (%zd)\n",
  974. linda, qp->qpn, len );
  975. return -EINVAL;
  976. }
  977. /* Calculate eager producer index and WQE index */
  978. wqe_idx = ( linda_wq->eager_prod & ( wq->num_wqes - 1 ) );
  979. assert ( wq->iobufs[wqe_idx] == NULL );
  980. /* Store I/O buffer */
  981. wq->iobufs[wqe_idx] = iobuf;
  982. /* Calculate buffer size */
  983. switch ( LINDA_RECV_PAYLOAD_SIZE ) {
  984. case 2048: bufsize = LINDA_EAGER_BUFFER_2K; break;
  985. case 4096: bufsize = LINDA_EAGER_BUFFER_4K; break;
  986. case 8192: bufsize = LINDA_EAGER_BUFFER_8K; break;
  987. case 16384: bufsize = LINDA_EAGER_BUFFER_16K; break;
  988. case 32768: bufsize = LINDA_EAGER_BUFFER_32K; break;
  989. case 65536: bufsize = LINDA_EAGER_BUFFER_64K; break;
  990. default: linker_assert ( 0, invalid_rx_payload_size );
  991. bufsize = LINDA_EAGER_BUFFER_NONE;
  992. }
  993. /* Post eager buffer */
  994. memset ( &rcvegr, 0, sizeof ( rcvegr ) );
  995. BIT_FILL_2 ( &rcvegr,
  996. Addr, ( addr >> 11 ),
  997. BufSize, bufsize );
  998. linda_writeq_array8b ( linda, &rcvegr,
  999. linda_wq->eager_array, linda_wq->eager_prod );
  1000. DBGC2 ( linda, "Linda %p QPN %ld RX egr %d(%d) posted [%lx,%lx)\n",
  1001. linda, qp->qpn, linda_wq->eager_prod, wqe_idx,
  1002. addr, ( addr + len ) );
  1003. /* Increment producer index */
  1004. linda_wq->eager_prod = ( ( linda_wq->eager_prod + 1 ) &
  1005. ( linda_wq->eager_entries - 1 ) );
  1006. /* Update head index */
  1007. memset ( &rcvegrindexhead, 0, sizeof ( rcvegrindexhead ) );
  1008. BIT_FILL_1 ( &rcvegrindexhead,
  1009. Value, ( ( linda_wq->eager_prod + 1 ) &
  1010. ( linda_wq->eager_entries - 1 ) ) );
  1011. linda_writeq_array64k ( linda, &rcvegrindexhead,
  1012. QIB_7220_RcvEgrIndexHead0_offset, ctx );
  1013. return 0;
  1014. }
  1015. /**
  1016. * Complete receive work queue entry
  1017. *
  1018. * @v ibdev Infiniband device
  1019. * @v qp Queue pair
  1020. * @v header_offs Header offset
  1021. */
  1022. static void linda_complete_recv ( struct ib_device *ibdev,
  1023. struct ib_queue_pair *qp,
  1024. unsigned int header_offs ) {
  1025. struct linda *linda = ib_get_drvdata ( ibdev );
  1026. struct ib_work_queue *wq = &qp->recv;
  1027. struct linda_recv_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  1028. struct QIB_7220_RcvHdrFlags *rcvhdrflags;
  1029. struct QIB_7220_RcvEgr rcvegr;
  1030. struct io_buffer headers;
  1031. struct io_buffer *iobuf;
  1032. struct ib_queue_pair *intended_qp;
  1033. struct ib_address_vector source;
  1034. unsigned int rcvtype;
  1035. unsigned int pktlen;
  1036. unsigned int egrindex;
  1037. unsigned int useegrbfr;
  1038. unsigned int iberr, mkerr, tiderr, khdrerr, mtuerr;
  1039. unsigned int lenerr, parityerr, vcrcerr, icrcerr;
  1040. unsigned int err;
  1041. unsigned int hdrqoffset;
  1042. unsigned int header_len;
  1043. unsigned int padded_payload_len;
  1044. unsigned int wqe_idx;
  1045. size_t payload_len;
  1046. int qp0;
  1047. int rc;
  1048. /* RcvHdrFlags are at the end of the header entry */
  1049. rcvhdrflags = ( linda_wq->header + header_offs +
  1050. LINDA_RECV_HEADER_SIZE - sizeof ( *rcvhdrflags ) );
  1051. rcvtype = BIT_GET ( rcvhdrflags, RcvType );
  1052. pktlen = ( BIT_GET ( rcvhdrflags, PktLen ) << 2 );
  1053. egrindex = BIT_GET ( rcvhdrflags, EgrIndex );
  1054. useegrbfr = BIT_GET ( rcvhdrflags, UseEgrBfr );
  1055. hdrqoffset = ( BIT_GET ( rcvhdrflags, HdrqOffset ) << 2 );
  1056. iberr = BIT_GET ( rcvhdrflags, IBErr );
  1057. mkerr = BIT_GET ( rcvhdrflags, MKErr );
  1058. tiderr = BIT_GET ( rcvhdrflags, TIDErr );
  1059. khdrerr = BIT_GET ( rcvhdrflags, KHdrErr );
  1060. mtuerr = BIT_GET ( rcvhdrflags, MTUErr );
  1061. lenerr = BIT_GET ( rcvhdrflags, LenErr );
  1062. parityerr = BIT_GET ( rcvhdrflags, ParityErr );
  1063. vcrcerr = BIT_GET ( rcvhdrflags, VCRCErr );
  1064. icrcerr = BIT_GET ( rcvhdrflags, ICRCErr );
  1065. header_len = ( LINDA_RECV_HEADER_SIZE - hdrqoffset -
  1066. sizeof ( *rcvhdrflags ) );
  1067. padded_payload_len = ( pktlen - header_len - 4 /* ICRC */ );
  1068. err = ( iberr | mkerr | tiderr | khdrerr | mtuerr |
  1069. lenerr | parityerr | vcrcerr | icrcerr );
  1070. /* IB header is placed immediately before RcvHdrFlags */
  1071. iob_populate ( &headers, ( ( ( void * ) rcvhdrflags ) - header_len ),
  1072. header_len, header_len );
  1073. /* Dump diagnostic information */
  1074. if ( err || ( ! useegrbfr ) ) {
  1075. DBGC ( linda, "Linda %p QPN %ld RX egr %d%s hdr %d type %d "
  1076. "len %d(%d+%d+4)%s%s%s%s%s%s%s%s%s%s%s\n", linda,
  1077. qp->qpn, egrindex, ( useegrbfr ? "" : "(unused)" ),
  1078. ( header_offs / LINDA_RECV_HEADER_SIZE ), rcvtype,
  1079. pktlen, header_len, padded_payload_len,
  1080. ( err ? " [Err" : "" ), ( iberr ? " IB" : "" ),
  1081. ( mkerr ? " MK" : "" ), ( tiderr ? " TID" : "" ),
  1082. ( khdrerr ? " KHdr" : "" ), ( mtuerr ? " MTU" : "" ),
  1083. ( lenerr ? " Len" : "" ), ( parityerr ? " Parity" : ""),
  1084. ( vcrcerr ? " VCRC" : "" ), ( icrcerr ? " ICRC" : "" ),
  1085. ( err ? "]" : "" ) );
  1086. } else {
  1087. DBGC2 ( linda, "Linda %p QPN %ld RX egr %d hdr %d type %d "
  1088. "len %d(%d+%d+4)\n", linda, qp->qpn, egrindex,
  1089. ( header_offs / LINDA_RECV_HEADER_SIZE ), rcvtype,
  1090. pktlen, header_len, padded_payload_len );
  1091. }
  1092. DBGCP_HDA ( linda, hdrqoffset, headers.data,
  1093. ( header_len + sizeof ( *rcvhdrflags ) ) );
  1094. /* Parse header to generate address vector */
  1095. qp0 = ( qp->qpn == 0 );
  1096. intended_qp = NULL;
  1097. if ( ( rc = ib_pull ( ibdev, &headers, ( qp0 ? &intended_qp : NULL ),
  1098. &payload_len, &source ) ) != 0 ) {
  1099. DBGC ( linda, "Linda %p could not parse headers: %s\n",
  1100. linda, strerror ( rc ) );
  1101. err = 1;
  1102. }
  1103. if ( ! intended_qp )
  1104. intended_qp = qp;
  1105. /* Complete this buffer and any skipped buffers. Note that
  1106. * when the hardware runs out of buffers, it will repeatedly
  1107. * report the same buffer (the tail) as a TID error, and that
  1108. * it also has a habit of sometimes skipping over several
  1109. * buffers at once.
  1110. */
  1111. while ( 1 ) {
  1112. /* If we have caught up to the producer counter, stop.
  1113. * This will happen when the hardware first runs out
  1114. * of buffers and starts reporting TID errors against
  1115. * the eager buffer it wants to use next.
  1116. */
  1117. if ( linda_wq->eager_cons == linda_wq->eager_prod )
  1118. break;
  1119. /* If we have caught up to where we should be after
  1120. * completing this egrindex, stop. We phrase the test
  1121. * this way to avoid completing the entire ring when
  1122. * we receive the same egrindex twice in a row.
  1123. */
  1124. if ( ( linda_wq->eager_cons ==
  1125. ( ( egrindex + 1 ) & ( linda_wq->eager_entries - 1 ) )))
  1126. break;
  1127. /* Identify work queue entry and corresponding I/O
  1128. * buffer.
  1129. */
  1130. wqe_idx = ( linda_wq->eager_cons & ( wq->num_wqes - 1 ) );
  1131. iobuf = wq->iobufs[wqe_idx];
  1132. assert ( iobuf != NULL );
  1133. wq->iobufs[wqe_idx] = NULL;
  1134. /* Complete the eager buffer */
  1135. if ( linda_wq->eager_cons == egrindex ) {
  1136. /* Completing the eager buffer described in
  1137. * this header entry.
  1138. */
  1139. iob_put ( iobuf, payload_len );
  1140. rc = ( err ? -EIO : ( useegrbfr ? 0 : -ECANCELED ) );
  1141. /* Redirect to target QP if necessary */
  1142. if ( qp != intended_qp ) {
  1143. DBGC ( linda, "Linda %p redirecting QPN %ld "
  1144. "=> %ld\n",
  1145. linda, qp->qpn, intended_qp->qpn );
  1146. /* Compensate for incorrect fill levels */
  1147. qp->recv.fill--;
  1148. intended_qp->recv.fill++;
  1149. }
  1150. ib_complete_recv ( ibdev, intended_qp, &source,
  1151. iobuf, rc);
  1152. } else {
  1153. /* Completing on a skipped-over eager buffer */
  1154. ib_complete_recv ( ibdev, qp, &source, iobuf,
  1155. -ECANCELED );
  1156. }
  1157. /* Clear eager buffer */
  1158. memset ( &rcvegr, 0, sizeof ( rcvegr ) );
  1159. linda_writeq_array8b ( linda, &rcvegr, linda_wq->eager_array,
  1160. linda_wq->eager_cons );
  1161. /* Increment consumer index */
  1162. linda_wq->eager_cons = ( ( linda_wq->eager_cons + 1 ) &
  1163. ( linda_wq->eager_entries - 1 ) );
  1164. }
  1165. }
  1166. /**
  1167. * Poll receive work queue
  1168. *
  1169. * @v ibdev Infiniband device
  1170. * @v qp Queue pair
  1171. */
  1172. static void linda_poll_recv_wq ( struct ib_device *ibdev,
  1173. struct ib_queue_pair *qp ) {
  1174. struct linda *linda = ib_get_drvdata ( ibdev );
  1175. struct ib_work_queue *wq = &qp->recv;
  1176. struct linda_recv_work_queue *linda_wq = ib_wq_get_drvdata ( wq );
  1177. struct QIB_7220_RcvHdrHead0 rcvhdrhead;
  1178. unsigned int ctx = linda_qpn_to_ctx ( qp->qpn );
  1179. unsigned int header_prod;
  1180. /* Check for received packets */
  1181. header_prod = ( BIT_GET ( &linda_wq->header_prod, Value ) << 2 );
  1182. if ( header_prod == linda_wq->header_cons )
  1183. return;
  1184. /* Process all received packets */
  1185. while ( linda_wq->header_cons != header_prod ) {
  1186. /* Complete the receive */
  1187. linda_complete_recv ( ibdev, qp, linda_wq->header_cons );
  1188. /* Increment the consumer offset */
  1189. linda_wq->header_cons += LINDA_RECV_HEADER_SIZE;
  1190. linda_wq->header_cons %= LINDA_RECV_HEADERS_SIZE;
  1191. }
  1192. /* Update consumer offset */
  1193. memset ( &rcvhdrhead, 0, sizeof ( rcvhdrhead ) );
  1194. BIT_FILL_2 ( &rcvhdrhead,
  1195. RcvHeadPointer, ( linda_wq->header_cons >> 2 ),
  1196. counter, 1 );
  1197. linda_writeq_array64k ( linda, &rcvhdrhead,
  1198. QIB_7220_RcvHdrHead0_offset, ctx );
  1199. }
  1200. /**
  1201. * Poll completion queue
  1202. *
  1203. * @v ibdev Infiniband device
  1204. * @v cq Completion queue
  1205. */
  1206. static void linda_poll_cq ( struct ib_device *ibdev,
  1207. struct ib_completion_queue *cq ) {
  1208. struct ib_work_queue *wq;
  1209. /* Poll associated send and receive queues */
  1210. list_for_each_entry ( wq, &cq->work_queues, list ) {
  1211. if ( wq->is_send ) {
  1212. linda_poll_send_wq ( ibdev, wq->qp );
  1213. } else {
  1214. linda_poll_recv_wq ( ibdev, wq->qp );
  1215. }
  1216. }
  1217. }
  1218. /***************************************************************************
  1219. *
  1220. * Event queues
  1221. *
  1222. ***************************************************************************
  1223. */
  1224. /**
  1225. * Poll event queue
  1226. *
  1227. * @v ibdev Infiniband device
  1228. */
  1229. static void linda_poll_eq ( struct ib_device *ibdev ) {
  1230. struct linda *linda = ib_get_drvdata ( ibdev );
  1231. struct QIB_7220_ErrStatus errstatus;
  1232. struct QIB_7220_ErrClear errclear;
  1233. /* Check for link status changes */
  1234. DBG_DISABLE ( DBGLVL_IO );
  1235. linda_readq ( linda, &errstatus, QIB_7220_ErrStatus_offset );
  1236. DBG_ENABLE ( DBGLVL_IO );
  1237. if ( BIT_GET ( &errstatus, IBStatusChanged ) ) {
  1238. linda_link_state_changed ( ibdev );
  1239. memset ( &errclear, 0, sizeof ( errclear ) );
  1240. BIT_FILL_1 ( &errclear, IBStatusChangedClear, 1 );
  1241. linda_writeq ( linda, &errclear, QIB_7220_ErrClear_offset );
  1242. }
  1243. }
  1244. /***************************************************************************
  1245. *
  1246. * Infiniband link-layer operations
  1247. *
  1248. ***************************************************************************
  1249. */
  1250. /**
  1251. * Initialise Infiniband link
  1252. *
  1253. * @v ibdev Infiniband device
  1254. * @ret rc Return status code
  1255. */
  1256. static int linda_open ( struct ib_device *ibdev ) {
  1257. struct linda *linda = ib_get_drvdata ( ibdev );
  1258. struct QIB_7220_Control control;
  1259. /* Disable link */
  1260. linda_readq ( linda, &control, QIB_7220_Control_offset );
  1261. BIT_SET ( &control, LinkEn, 1 );
  1262. linda_writeq ( linda, &control, QIB_7220_Control_offset );
  1263. return 0;
  1264. }
  1265. /**
  1266. * Close Infiniband link
  1267. *
  1268. * @v ibdev Infiniband device
  1269. */
  1270. static void linda_close ( struct ib_device *ibdev ) {
  1271. struct linda *linda = ib_get_drvdata ( ibdev );
  1272. struct QIB_7220_Control control;
  1273. /* Disable link */
  1274. linda_readq ( linda, &control, QIB_7220_Control_offset );
  1275. BIT_SET ( &control, LinkEn, 0 );
  1276. linda_writeq ( linda, &control, QIB_7220_Control_offset );
  1277. }
  1278. /***************************************************************************
  1279. *
  1280. * Multicast group operations
  1281. *
  1282. ***************************************************************************
  1283. */
  1284. /**
  1285. * Attach to multicast group
  1286. *
  1287. * @v ibdev Infiniband device
  1288. * @v qp Queue pair
  1289. * @v gid Multicast GID
  1290. * @ret rc Return status code
  1291. */
  1292. static int linda_mcast_attach ( struct ib_device *ibdev,
  1293. struct ib_queue_pair *qp,
  1294. union ib_gid *gid ) {
  1295. struct linda *linda = ib_get_drvdata ( ibdev );
  1296. ( void ) linda;
  1297. ( void ) qp;
  1298. ( void ) gid;
  1299. return 0;
  1300. }
  1301. /**
  1302. * Detach from multicast group
  1303. *
  1304. * @v ibdev Infiniband device
  1305. * @v qp Queue pair
  1306. * @v gid Multicast GID
  1307. */
  1308. static void linda_mcast_detach ( struct ib_device *ibdev,
  1309. struct ib_queue_pair *qp,
  1310. union ib_gid *gid ) {
  1311. struct linda *linda = ib_get_drvdata ( ibdev );
  1312. ( void ) linda;
  1313. ( void ) qp;
  1314. ( void ) gid;
  1315. }
  1316. /** Linda Infiniband operations */
  1317. static struct ib_device_operations linda_ib_operations = {
  1318. .create_cq = linda_create_cq,
  1319. .destroy_cq = linda_destroy_cq,
  1320. .create_qp = linda_create_qp,
  1321. .modify_qp = linda_modify_qp,
  1322. .destroy_qp = linda_destroy_qp,
  1323. .post_send = linda_post_send,
  1324. .post_recv = linda_post_recv,
  1325. .poll_cq = linda_poll_cq,
  1326. .poll_eq = linda_poll_eq,
  1327. .open = linda_open,
  1328. .close = linda_close,
  1329. .mcast_attach = linda_mcast_attach,
  1330. .mcast_detach = linda_mcast_detach,
  1331. .set_port_info = linda_set_port_info,
  1332. .set_pkey_table = linda_set_pkey_table,
  1333. };
  1334. /***************************************************************************
  1335. *
  1336. * I2C bus operations
  1337. *
  1338. ***************************************************************************
  1339. */
  1340. /** Linda I2C bit to GPIO mappings */
  1341. static unsigned int linda_i2c_bits[] = {
  1342. [I2C_BIT_SCL] = ( 1 << LINDA_GPIO_SCL ),
  1343. [I2C_BIT_SDA] = ( 1 << LINDA_GPIO_SDA ),
  1344. };
  1345. /**
  1346. * Read Linda I2C line status
  1347. *
  1348. * @v basher Bit-bashing interface
  1349. * @v bit_id Bit number
  1350. * @ret zero Input is a logic 0
  1351. * @ret non-zero Input is a logic 1
  1352. */
  1353. static int linda_i2c_read_bit ( struct bit_basher *basher,
  1354. unsigned int bit_id ) {
  1355. struct linda *linda =
  1356. container_of ( basher, struct linda, i2c.basher );
  1357. struct QIB_7220_EXTStatus extstatus;
  1358. unsigned int status;
  1359. DBG_DISABLE ( DBGLVL_IO );
  1360. linda_readq ( linda, &extstatus, QIB_7220_EXTStatus_offset );
  1361. status = ( BIT_GET ( &extstatus, GPIOIn ) & linda_i2c_bits[bit_id] );
  1362. DBG_ENABLE ( DBGLVL_IO );
  1363. return status;
  1364. }
  1365. /**
  1366. * Write Linda I2C line status
  1367. *
  1368. * @v basher Bit-bashing interface
  1369. * @v bit_id Bit number
  1370. * @v data Value to write
  1371. */
  1372. static void linda_i2c_write_bit ( struct bit_basher *basher,
  1373. unsigned int bit_id, unsigned long data ) {
  1374. struct linda *linda =
  1375. container_of ( basher, struct linda, i2c.basher );
  1376. struct QIB_7220_EXTCtrl extctrl;
  1377. struct QIB_7220_GPIO gpioout;
  1378. unsigned int bit = linda_i2c_bits[bit_id];
  1379. unsigned int outputs = 0;
  1380. unsigned int output_enables = 0;
  1381. DBG_DISABLE ( DBGLVL_IO );
  1382. /* Read current GPIO mask and outputs */
  1383. linda_readq ( linda, &extctrl, QIB_7220_EXTCtrl_offset );
  1384. linda_readq ( linda, &gpioout, QIB_7220_GPIOOut_offset );
  1385. /* Update outputs and output enables. I2C lines are tied
  1386. * high, so we always set the output to 0 and use the output
  1387. * enable to control the line.
  1388. */
  1389. output_enables = BIT_GET ( &extctrl, GPIOOe );
  1390. output_enables = ( ( output_enables & ~bit ) | ( ~data & bit ) );
  1391. outputs = BIT_GET ( &gpioout, GPIO );
  1392. outputs = ( outputs & ~bit );
  1393. BIT_SET ( &extctrl, GPIOOe, output_enables );
  1394. BIT_SET ( &gpioout, GPIO, outputs );
  1395. /* Write the output enable first; that way we avoid logic
  1396. * hazards.
  1397. */
  1398. linda_writeq ( linda, &extctrl, QIB_7220_EXTCtrl_offset );
  1399. linda_writeq ( linda, &gpioout, QIB_7220_GPIOOut_offset );
  1400. mb();
  1401. DBG_ENABLE ( DBGLVL_IO );
  1402. }
  1403. /** Linda I2C bit-bashing interface operations */
  1404. static struct bit_basher_operations linda_i2c_basher_ops = {
  1405. .read = linda_i2c_read_bit,
  1406. .write = linda_i2c_write_bit,
  1407. };
  1408. /**
  1409. * Initialise Linda I2C subsystem
  1410. *
  1411. * @v linda Linda device
  1412. * @ret rc Return status code
  1413. */
  1414. static int linda_init_i2c ( struct linda *linda ) {
  1415. static int try_eeprom_address[] = { 0x51, 0x50 };
  1416. unsigned int i;
  1417. int rc;
  1418. /* Initialise bus */
  1419. if ( ( rc = init_i2c_bit_basher ( &linda->i2c,
  1420. &linda_i2c_basher_ops ) ) != 0 ) {
  1421. DBGC ( linda, "Linda %p could not initialise I2C bus: %s\n",
  1422. linda, strerror ( rc ) );
  1423. return rc;
  1424. }
  1425. /* Probe for devices */
  1426. for ( i = 0 ; i < ( sizeof ( try_eeprom_address ) /
  1427. sizeof ( try_eeprom_address[0] ) ) ; i++ ) {
  1428. init_i2c_eeprom ( &linda->eeprom, try_eeprom_address[i] );
  1429. if ( ( rc = i2c_check_presence ( &linda->i2c.i2c,
  1430. &linda->eeprom ) ) == 0 ) {
  1431. DBGC2 ( linda, "Linda %p found EEPROM at %02x\n",
  1432. linda, try_eeprom_address[i] );
  1433. return 0;
  1434. }
  1435. }
  1436. DBGC ( linda, "Linda %p could not find EEPROM\n", linda );
  1437. return -ENODEV;
  1438. }
  1439. /**
  1440. * Read EEPROM parameters
  1441. *
  1442. * @v linda Linda device
  1443. * @v guid GUID to fill in
  1444. * @ret rc Return status code
  1445. */
  1446. static int linda_read_eeprom ( struct linda *linda, union ib_guid *guid ) {
  1447. struct i2c_interface *i2c = &linda->i2c.i2c;
  1448. int rc;
  1449. /* Read GUID */
  1450. if ( ( rc = i2c->read ( i2c, &linda->eeprom, LINDA_EEPROM_GUID_OFFSET,
  1451. guid->bytes, sizeof ( *guid ) ) ) != 0 ) {
  1452. DBGC ( linda, "Linda %p could not read GUID: %s\n",
  1453. linda, strerror ( rc ) );
  1454. return rc;
  1455. }
  1456. DBGC2 ( linda, "Linda %p has GUID " IB_GUID_FMT "\n",
  1457. linda, IB_GUID_ARGS ( guid ) );
  1458. /* Read serial number (debug only) */
  1459. if ( DBG_LOG ) {
  1460. uint8_t serial[LINDA_EEPROM_SERIAL_SIZE + 1];
  1461. serial[ sizeof ( serial ) - 1 ] = '\0';
  1462. if ( ( rc = i2c->read ( i2c, &linda->eeprom,
  1463. LINDA_EEPROM_SERIAL_OFFSET, serial,
  1464. ( sizeof ( serial ) - 1 ) ) ) != 0 ) {
  1465. DBGC ( linda, "Linda %p could not read serial: %s\n",
  1466. linda, strerror ( rc ) );
  1467. return rc;
  1468. }
  1469. DBGC2 ( linda, "Linda %p has serial number \"%s\"\n",
  1470. linda, serial );
  1471. }
  1472. return 0;
  1473. }
  1474. /***************************************************************************
  1475. *
  1476. * External parallel bus access
  1477. *
  1478. ***************************************************************************
  1479. */
  1480. /**
  1481. * Request ownership of the IB external parallel bus
  1482. *
  1483. * @v linda Linda device
  1484. * @ret rc Return status code
  1485. */
  1486. static int linda_ib_epb_request ( struct linda *linda ) {
  1487. struct QIB_7220_ibsd_epb_access_ctrl access;
  1488. unsigned int i;
  1489. /* Request ownership */
  1490. memset ( &access, 0, sizeof ( access ) );
  1491. BIT_FILL_1 ( &access, sw_ib_epb_req, 1 );
  1492. linda_writeq ( linda, &access, QIB_7220_ibsd_epb_access_ctrl_offset );
  1493. /* Wait for ownership to be granted */
  1494. for ( i = 0 ; i < LINDA_EPB_REQUEST_MAX_WAIT_US ; i++ ) {
  1495. linda_readq ( linda, &access,
  1496. QIB_7220_ibsd_epb_access_ctrl_offset );
  1497. if ( BIT_GET ( &access, sw_ib_epb_req_granted ) )
  1498. return 0;
  1499. udelay ( 1 );
  1500. }
  1501. DBGC ( linda, "Linda %p timed out waiting for IB EPB request\n",
  1502. linda );
  1503. return -ETIMEDOUT;
  1504. }
  1505. /**
  1506. * Wait for IB external parallel bus transaction to complete
  1507. *
  1508. * @v linda Linda device
  1509. * @v xact Buffer to hold transaction result
  1510. * @ret rc Return status code
  1511. */
  1512. static int linda_ib_epb_wait ( struct linda *linda,
  1513. struct QIB_7220_ibsd_epb_transaction_reg *xact ) {
  1514. unsigned int i;
  1515. /* Discard first read to allow for signals crossing clock domains */
  1516. linda_readq ( linda, xact, QIB_7220_ibsd_epb_transaction_reg_offset );
  1517. for ( i = 0 ; i < LINDA_EPB_XACT_MAX_WAIT_US ; i++ ) {
  1518. linda_readq ( linda, xact,
  1519. QIB_7220_ibsd_epb_transaction_reg_offset );
  1520. if ( BIT_GET ( xact, ib_epb_rdy ) ) {
  1521. if ( BIT_GET ( xact, ib_epb_req_error ) ) {
  1522. DBGC ( linda, "Linda %p EPB transaction "
  1523. "failed\n", linda );
  1524. return -EIO;
  1525. } else {
  1526. return 0;
  1527. }
  1528. }
  1529. udelay ( 1 );
  1530. }
  1531. DBGC ( linda, "Linda %p timed out waiting for IB EPB transaction\n",
  1532. linda );
  1533. return -ETIMEDOUT;
  1534. }
  1535. /**
  1536. * Release ownership of the IB external parallel bus
  1537. *
  1538. * @v linda Linda device
  1539. */
  1540. static void linda_ib_epb_release ( struct linda *linda ) {
  1541. struct QIB_7220_ibsd_epb_access_ctrl access;
  1542. memset ( &access, 0, sizeof ( access ) );
  1543. BIT_FILL_1 ( &access, sw_ib_epb_req, 0 );
  1544. linda_writeq ( linda, &access, QIB_7220_ibsd_epb_access_ctrl_offset );
  1545. }
  1546. /**
  1547. * Read data via IB external parallel bus
  1548. *
  1549. * @v linda Linda device
  1550. * @v location EPB location
  1551. * @ret data Data read, or negative error
  1552. *
  1553. * You must have already acquired ownership of the IB external
  1554. * parallel bus.
  1555. */
  1556. static int linda_ib_epb_read ( struct linda *linda, unsigned int location ) {
  1557. struct QIB_7220_ibsd_epb_transaction_reg xact;
  1558. unsigned int data;
  1559. int rc;
  1560. /* Ensure no transaction is currently in progress */
  1561. if ( ( rc = linda_ib_epb_wait ( linda, &xact ) ) != 0 )
  1562. return rc;
  1563. /* Process data */
  1564. memset ( &xact, 0, sizeof ( xact ) );
  1565. BIT_FILL_3 ( &xact,
  1566. ib_epb_address, LINDA_EPB_LOC_ADDRESS ( location ),
  1567. ib_epb_read_write, LINDA_EPB_READ,
  1568. ib_epb_cs, LINDA_EPB_LOC_CS ( location ) );
  1569. linda_writeq ( linda, &xact,
  1570. QIB_7220_ibsd_epb_transaction_reg_offset );
  1571. /* Wait for transaction to complete */
  1572. if ( ( rc = linda_ib_epb_wait ( linda, &xact ) ) != 0 )
  1573. return rc;
  1574. data = BIT_GET ( &xact, ib_epb_data );
  1575. return data;
  1576. }
  1577. /**
  1578. * Write data via IB external parallel bus
  1579. *
  1580. * @v linda Linda device
  1581. * @v location EPB location
  1582. * @v data Data to write
  1583. * @ret rc Return status code
  1584. *
  1585. * You must have already acquired ownership of the IB external
  1586. * parallel bus.
  1587. */
  1588. static int linda_ib_epb_write ( struct linda *linda, unsigned int location,
  1589. unsigned int data ) {
  1590. struct QIB_7220_ibsd_epb_transaction_reg xact;
  1591. int rc;
  1592. /* Ensure no transaction is currently in progress */
  1593. if ( ( rc = linda_ib_epb_wait ( linda, &xact ) ) != 0 )
  1594. return rc;
  1595. /* Process data */
  1596. memset ( &xact, 0, sizeof ( xact ) );
  1597. BIT_FILL_4 ( &xact,
  1598. ib_epb_data, data,
  1599. ib_epb_address, LINDA_EPB_LOC_ADDRESS ( location ),
  1600. ib_epb_read_write, LINDA_EPB_WRITE,
  1601. ib_epb_cs, LINDA_EPB_LOC_CS ( location ) );
  1602. linda_writeq ( linda, &xact,
  1603. QIB_7220_ibsd_epb_transaction_reg_offset );
  1604. /* Wait for transaction to complete */
  1605. if ( ( rc = linda_ib_epb_wait ( linda, &xact ) ) != 0 )
  1606. return rc;
  1607. return 0;
  1608. }
  1609. /**
  1610. * Read/modify/write EPB register
  1611. *
  1612. * @v linda Linda device
  1613. * @v cs Chip select
  1614. * @v channel Channel
  1615. * @v element Element
  1616. * @v reg Register
  1617. * @v value Value to set
  1618. * @v mask Mask to apply to old value
  1619. * @ret rc Return status code
  1620. */
  1621. static int linda_ib_epb_mod_reg ( struct linda *linda, unsigned int cs,
  1622. unsigned int channel, unsigned int element,
  1623. unsigned int reg, unsigned int value,
  1624. unsigned int mask ) {
  1625. unsigned int location;
  1626. int old_value;
  1627. int rc;
  1628. DBG_DISABLE ( DBGLVL_IO );
  1629. /* Sanity check */
  1630. assert ( ( value & mask ) == value );
  1631. /* Acquire bus ownership */
  1632. if ( ( rc = linda_ib_epb_request ( linda ) ) != 0 )
  1633. goto out;
  1634. /* Read existing value, if necessary */
  1635. location = LINDA_EPB_LOC ( cs, channel, element, reg );
  1636. if ( (~mask) & 0xff ) {
  1637. old_value = linda_ib_epb_read ( linda, location );
  1638. if ( old_value < 0 ) {
  1639. rc = old_value;
  1640. goto out_release;
  1641. }
  1642. } else {
  1643. old_value = 0;
  1644. }
  1645. /* Update value */
  1646. value = ( ( old_value & ~mask ) | value );
  1647. DBGCP ( linda, "Linda %p CS %d EPB(%d,%d,%#02x) %#02x => %#02x\n",
  1648. linda, cs, channel, element, reg, old_value, value );
  1649. if ( ( rc = linda_ib_epb_write ( linda, location, value ) ) != 0 )
  1650. goto out_release;
  1651. out_release:
  1652. /* Release bus */
  1653. linda_ib_epb_release ( linda );
  1654. out:
  1655. DBG_ENABLE ( DBGLVL_IO );
  1656. return rc;
  1657. }
  1658. /**
  1659. * Transfer data to/from microcontroller RAM
  1660. *
  1661. * @v linda Linda device
  1662. * @v address Starting address
  1663. * @v write Data to write, or NULL
  1664. * @v read Data to read, or NULL
  1665. * @v len Length of data
  1666. * @ret rc Return status code
  1667. */
  1668. static int linda_ib_epb_ram_xfer ( struct linda *linda, unsigned int address,
  1669. const void *write, void *read,
  1670. size_t len ) {
  1671. unsigned int control;
  1672. unsigned int address_hi;
  1673. unsigned int address_lo;
  1674. int data;
  1675. int rc;
  1676. DBG_DISABLE ( DBGLVL_IO );
  1677. assert ( ! ( write && read ) );
  1678. assert ( ( address % LINDA_EPB_UC_CHUNK_SIZE ) == 0 );
  1679. assert ( ( len % LINDA_EPB_UC_CHUNK_SIZE ) == 0 );
  1680. /* Acquire bus ownership */
  1681. if ( ( rc = linda_ib_epb_request ( linda ) ) != 0 )
  1682. goto out;
  1683. /* Process data */
  1684. while ( len ) {
  1685. /* Reset the address for each new chunk */
  1686. if ( ( address % LINDA_EPB_UC_CHUNK_SIZE ) == 0 ) {
  1687. /* Write the control register */
  1688. control = ( read ? LINDA_EPB_UC_CTL_READ :
  1689. LINDA_EPB_UC_CTL_WRITE );
  1690. if ( ( rc = linda_ib_epb_write ( linda,
  1691. LINDA_EPB_UC_CTL,
  1692. control ) ) != 0 )
  1693. break;
  1694. /* Write the address registers */
  1695. address_hi = ( address >> 8 );
  1696. if ( ( rc = linda_ib_epb_write ( linda,
  1697. LINDA_EPB_UC_ADDR_HI,
  1698. address_hi ) ) != 0 )
  1699. break;
  1700. address_lo = ( address & 0xff );
  1701. if ( ( rc = linda_ib_epb_write ( linda,
  1702. LINDA_EPB_UC_ADDR_LO,
  1703. address_lo ) ) != 0 )
  1704. break;
  1705. }
  1706. /* Read or write the data */
  1707. if ( read ) {
  1708. data = linda_ib_epb_read ( linda, LINDA_EPB_UC_DATA );
  1709. if ( data < 0 ) {
  1710. rc = data;
  1711. break;
  1712. }
  1713. *( ( uint8_t * ) read++ ) = data;
  1714. } else {
  1715. data = *( ( uint8_t * ) write++ );
  1716. if ( ( rc = linda_ib_epb_write ( linda,
  1717. LINDA_EPB_UC_DATA,
  1718. data ) ) != 0 )
  1719. break;
  1720. }
  1721. address++;
  1722. len--;
  1723. /* Reset the control byte after each chunk */
  1724. if ( ( address % LINDA_EPB_UC_CHUNK_SIZE ) == 0 ) {
  1725. if ( ( rc = linda_ib_epb_write ( linda,
  1726. LINDA_EPB_UC_CTL,
  1727. 0 ) ) != 0 )
  1728. break;
  1729. }
  1730. }
  1731. /* Release bus */
  1732. linda_ib_epb_release ( linda );
  1733. out:
  1734. DBG_ENABLE ( DBGLVL_IO );
  1735. return rc;
  1736. }
  1737. /***************************************************************************
  1738. *
  1739. * Infiniband SerDes initialisation
  1740. *
  1741. ***************************************************************************
  1742. */
  1743. /** A Linda SerDes parameter */
  1744. struct linda_serdes_param {
  1745. /** EPB address as constructed by LINDA_EPB_ADDRESS() */
  1746. uint16_t address;
  1747. /** Value to set */
  1748. uint8_t value;
  1749. /** Mask to apply to old value */
  1750. uint8_t mask;
  1751. } __packed;
  1752. /** Magic "all channels" channel number */
  1753. #define LINDA_EPB_ALL_CHANNELS 31
  1754. /** End of SerDes parameter list marker */
  1755. #define LINDA_SERDES_PARAM_END { 0, 0, 0 }
  1756. /**
  1757. * Program IB SerDes register(s)
  1758. *
  1759. * @v linda Linda device
  1760. * @v param SerDes parameter
  1761. * @ret rc Return status code
  1762. */
  1763. static int linda_set_serdes_param ( struct linda *linda,
  1764. struct linda_serdes_param *param ) {
  1765. unsigned int channel;
  1766. unsigned int channel_start;
  1767. unsigned int channel_end;
  1768. unsigned int element;
  1769. unsigned int reg;
  1770. int rc;
  1771. /* Break down the EPB address and determine channels */
  1772. channel = LINDA_EPB_ADDRESS_CHANNEL ( param->address );
  1773. element = LINDA_EPB_ADDRESS_ELEMENT ( param->address );
  1774. reg = LINDA_EPB_ADDRESS_REG ( param->address );
  1775. if ( channel == LINDA_EPB_ALL_CHANNELS ) {
  1776. channel_start = 0;
  1777. channel_end = 3;
  1778. } else {
  1779. channel_start = channel_end = channel;
  1780. }
  1781. /* Modify register for each specified channel */
  1782. for ( channel = channel_start ; channel <= channel_end ; channel++ ) {
  1783. if ( ( rc = linda_ib_epb_mod_reg ( linda, LINDA_EPB_CS_SERDES,
  1784. channel, element, reg,
  1785. param->value,
  1786. param->mask ) ) != 0 )
  1787. return rc;
  1788. }
  1789. return 0;
  1790. }
  1791. /**
  1792. * Program IB SerDes registers
  1793. *
  1794. * @v linda Linda device
  1795. * @v param SerDes parameters
  1796. * @v count Number of parameters
  1797. * @ret rc Return status code
  1798. */
  1799. static int linda_set_serdes_params ( struct linda *linda,
  1800. struct linda_serdes_param *params ) {
  1801. int rc;
  1802. for ( ; params->mask != 0 ; params++ ){
  1803. if ( ( rc = linda_set_serdes_param ( linda,
  1804. params ) ) != 0 )
  1805. return rc;
  1806. }
  1807. return 0;
  1808. }
  1809. #define LINDA_DDS_VAL( amp_d, main_d, ipst_d, ipre_d, \
  1810. amp_s, main_s, ipst_s, ipre_s ) \
  1811. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 9, 0x00 ), \
  1812. ( ( ( amp_d & 0x1f ) << 1 ) | 1 ), 0xff }, \
  1813. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 9, 0x01 ), \
  1814. ( ( ( amp_s & 0x1f ) << 1 ) | 1 ), 0xff }, \
  1815. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 9, 0x09 ), \
  1816. ( ( main_d << 3 ) | 4 | ( ipre_d >> 2 ) ), 0xff }, \
  1817. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 9, 0x0a ), \
  1818. ( ( main_s << 3 ) | 4 | ( ipre_s >> 2 ) ), 0xff }, \
  1819. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 9, 0x06 ), \
  1820. ( ( ( ipst_d & 0xf ) << 1 ) | \
  1821. ( ( ipre_d & 3 ) << 6 ) | 0x21 ), 0xff }, \
  1822. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 9, 0x07 ), \
  1823. ( ( ( ipst_s & 0xf ) << 1 ) | \
  1824. ( ( ipre_s & 3 ) << 6) | 0x21 ), 0xff }
  1825. /**
  1826. * Linda SerDes default parameters
  1827. *
  1828. * These magic start-of-day values are taken from the Linux driver.
  1829. */
  1830. static struct linda_serdes_param linda_serdes_defaults1[] = {
  1831. /* RXHSCTRL0 */
  1832. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 6, 0x00 ), 0xd4, 0xff },
  1833. /* VCDL_DAC2 */
  1834. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 6, 0x05 ), 0x2d, 0xff },
  1835. /* VCDL_CTRL2 */
  1836. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 6, 0x08 ), 0x03, 0x0f },
  1837. /* START_EQ1 */
  1838. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x27 ), 0x10, 0xff },
  1839. /* START_EQ2 */
  1840. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x28 ), 0x30, 0xff },
  1841. /* BACTRL */
  1842. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 6, 0x0e ), 0x40, 0xff },
  1843. /* LDOUTCTRL1 */
  1844. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x06 ), 0x04, 0xff },
  1845. /* RXHSSTATUS */
  1846. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 6, 0x0f ), 0x04, 0xff },
  1847. /* End of this block */
  1848. LINDA_SERDES_PARAM_END
  1849. };
  1850. static struct linda_serdes_param linda_serdes_defaults2[] = {
  1851. /* LDOUTCTRL1 */
  1852. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x06 ), 0x00, 0xff },
  1853. /* DDS values */
  1854. LINDA_DDS_VAL ( 31, 19, 12, 0, 29, 22, 9, 0 ),
  1855. /* Set Rcv Eq. to Preset node */
  1856. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x27 ), 0x10, 0xff },
  1857. /* DFELTHFDR */
  1858. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x08 ), 0x00, 0xff },
  1859. /* DFELTHHDR */
  1860. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x21 ), 0x00, 0xff },
  1861. /* TLTHFDR */
  1862. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x09 ), 0x02, 0xff },
  1863. /* TLTHHDR */
  1864. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x23 ), 0x02, 0xff },
  1865. /* ZFR */
  1866. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x1b ), 0x0c, 0xff },
  1867. /* ZCNT) */
  1868. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x1c ), 0x0c, 0xff },
  1869. /* GFR */
  1870. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x1e ), 0x10, 0xff },
  1871. /* GHR */
  1872. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x1f ), 0x10, 0xff },
  1873. /* VCDL_CTRL0 toggle */
  1874. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 6, 0x06 ), 0x20, 0xff },
  1875. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 6, 0x06 ), 0x00, 0xff },
  1876. /* CMUCTRL5 */
  1877. { LINDA_EPB_ADDRESS ( 7, 0, 0x15 ), 0x80, 0xff },
  1878. /* End of this block */
  1879. LINDA_SERDES_PARAM_END
  1880. };
  1881. static struct linda_serdes_param linda_serdes_defaults3[] = {
  1882. /* START_EQ1 */
  1883. { LINDA_EPB_ADDRESS ( LINDA_EPB_ALL_CHANNELS, 7, 0x27 ), 0x00, 0x38 },
  1884. /* End of this block */
  1885. LINDA_SERDES_PARAM_END
  1886. };
  1887. /**
  1888. * Program the microcontroller RAM
  1889. *
  1890. * @v linda Linda device
  1891. * @ret rc Return status code
  1892. */
  1893. static int linda_program_uc_ram ( struct linda *linda ) {
  1894. int rc;
  1895. if ( ( rc = linda_ib_epb_ram_xfer ( linda, 0, linda_ib_fw, NULL,
  1896. sizeof ( linda_ib_fw ) ) ) != 0 ){
  1897. DBGC ( linda, "Linda %p could not load IB firmware: %s\n",
  1898. linda, strerror ( rc ) );
  1899. return rc;
  1900. }
  1901. return 0;
  1902. }
  1903. /**
  1904. * Verify the microcontroller RAM
  1905. *
  1906. * @v linda Linda device
  1907. * @ret rc Return status code
  1908. */
  1909. static int linda_verify_uc_ram ( struct linda *linda ) {
  1910. uint8_t verify[LINDA_EPB_UC_CHUNK_SIZE];
  1911. unsigned int offset;
  1912. int rc;
  1913. for ( offset = 0 ; offset < sizeof ( linda_ib_fw );
  1914. offset += sizeof ( verify ) ) {
  1915. if ( ( rc = linda_ib_epb_ram_xfer ( linda, offset,
  1916. NULL, verify,
  1917. sizeof (verify) )) != 0 ){
  1918. DBGC ( linda, "Linda %p could not read back IB "
  1919. "firmware: %s\n", linda, strerror ( rc ) );
  1920. return rc;
  1921. }
  1922. if ( memcmp ( ( linda_ib_fw + offset ), verify,
  1923. sizeof ( verify ) ) != 0 ) {
  1924. DBGC ( linda, "Linda %p firmware verification failed "
  1925. "at offset %#x\n", linda, offset );
  1926. DBGC_HDA ( linda, offset, ( linda_ib_fw + offset ),
  1927. sizeof ( verify ) );
  1928. DBGC_HDA ( linda, offset, verify, sizeof ( verify ) );
  1929. return -EIO;
  1930. }
  1931. }
  1932. DBGC2 ( linda, "Linda %p firmware verified ok\n", linda );
  1933. return 0;
  1934. }
  1935. /**
  1936. * Use the microcontroller to trim the IB link
  1937. *
  1938. * @v linda Linda device
  1939. * @ret rc Return status code
  1940. */
  1941. static int linda_trim_ib ( struct linda *linda ) {
  1942. struct QIB_7220_IBSerDesCtrl ctrl;
  1943. struct QIB_7220_IntStatus intstatus;
  1944. unsigned int i;
  1945. int rc;
  1946. /* Bring the microcontroller out of reset */
  1947. linda_readq ( linda, &ctrl, QIB_7220_IBSerDesCtrl_offset );
  1948. BIT_SET ( &ctrl, ResetIB_uC_Core, 0 );
  1949. linda_writeq ( linda, &ctrl, QIB_7220_IBSerDesCtrl_offset );
  1950. /* Wait for the "trim done" signal */
  1951. for ( i = 0 ; i < LINDA_TRIM_DONE_MAX_WAIT_MS ; i++ ) {
  1952. linda_readq ( linda, &intstatus, QIB_7220_IntStatus_offset );
  1953. if ( BIT_GET ( &intstatus, IBSerdesTrimDone ) ) {
  1954. rc = 0;
  1955. goto out_reset;
  1956. }
  1957. mdelay ( 1 );
  1958. }
  1959. DBGC ( linda, "Linda %p timed out waiting for trim done\n", linda );
  1960. rc = -ETIMEDOUT;
  1961. out_reset:
  1962. /* Put the microcontroller back into reset */
  1963. BIT_SET ( &ctrl, ResetIB_uC_Core, 1 );
  1964. linda_writeq ( linda, &ctrl, QIB_7220_IBSerDesCtrl_offset );
  1965. return rc;
  1966. }
  1967. /**
  1968. * Initialise the IB SerDes
  1969. *
  1970. * @v linda Linda device
  1971. * @ret rc Return status code
  1972. */
  1973. static int linda_init_ib_serdes ( struct linda *linda ) {
  1974. struct QIB_7220_Control control;
  1975. struct QIB_7220_IBCCtrl ibcctrl;
  1976. struct QIB_7220_IBCDDRCtrl ibcddrctrl;
  1977. struct QIB_7220_XGXSCfg xgxscfg;
  1978. int rc;
  1979. /* Disable link */
  1980. linda_readq ( linda, &control, QIB_7220_Control_offset );
  1981. BIT_SET ( &control, LinkEn, 0 );
  1982. linda_writeq ( linda, &control, QIB_7220_Control_offset );
  1983. /* Configure sensible defaults for IBC */
  1984. memset ( &ibcctrl, 0, sizeof ( ibcctrl ) );
  1985. BIT_FILL_6 ( &ibcctrl, /* Tuning values taken from Linux driver */
  1986. FlowCtrlPeriod, 0x03,
  1987. FlowCtrlWaterMark, 0x05,
  1988. MaxPktLen, ( ( LINDA_RECV_HEADER_SIZE +
  1989. LINDA_RECV_PAYLOAD_SIZE +
  1990. 4 /* ICRC */ ) >> 2 ),
  1991. PhyerrThreshold, 0xf,
  1992. OverrunThreshold, 0xf,
  1993. CreditScale, 0x4 );
  1994. linda_writeq ( linda, &ibcctrl, QIB_7220_IBCCtrl_offset );
  1995. /* Force SDR only to avoid needing all the DDR tuning,
  1996. * Mellanox compatibility hacks etc. SDR is plenty for
  1997. * boot-time operation.
  1998. */
  1999. linda_readq ( linda, &ibcddrctrl, QIB_7220_IBCDDRCtrl_offset );
  2000. BIT_SET ( &ibcddrctrl, IB_ENHANCED_MODE, 0 );
  2001. BIT_SET ( &ibcddrctrl, SD_SPEED_SDR, 1 );
  2002. BIT_SET ( &ibcddrctrl, SD_SPEED_DDR, 0 );
  2003. BIT_SET ( &ibcddrctrl, SD_SPEED_QDR, 0 );
  2004. BIT_SET ( &ibcddrctrl, HRTBT_ENB, 0 );
  2005. BIT_SET ( &ibcddrctrl, HRTBT_AUTO, 0 );
  2006. linda_writeq ( linda, &ibcddrctrl, QIB_7220_IBCDDRCtrl_offset );
  2007. /* Set default SerDes parameters */
  2008. if ( ( rc = linda_set_serdes_params ( linda,
  2009. linda_serdes_defaults1 ) ) != 0 )
  2010. return rc;
  2011. udelay ( 415 ); /* Magic delay while SerDes sorts itself out */
  2012. if ( ( rc = linda_set_serdes_params ( linda,
  2013. linda_serdes_defaults2 ) ) != 0 )
  2014. return rc;
  2015. /* Program the microcontroller RAM */
  2016. if ( ( rc = linda_program_uc_ram ( linda ) ) != 0 )
  2017. return rc;
  2018. /* Verify the microcontroller RAM contents */
  2019. if ( DBGLVL_LOG ) {
  2020. if ( ( rc = linda_verify_uc_ram ( linda ) ) != 0 )
  2021. return rc;
  2022. }
  2023. /* More SerDes tuning */
  2024. if ( ( rc = linda_set_serdes_params ( linda,
  2025. linda_serdes_defaults3 ) ) != 0 )
  2026. return rc;
  2027. /* Use the microcontroller to trim the IB link */
  2028. if ( ( rc = linda_trim_ib ( linda ) ) != 0 )
  2029. return rc;
  2030. /* Bring XGXS out of reset */
  2031. linda_readq ( linda, &xgxscfg, QIB_7220_XGXSCfg_offset );
  2032. BIT_SET ( &xgxscfg, tx_rx_reset, 0 );
  2033. BIT_SET ( &xgxscfg, xcv_reset, 0 );
  2034. linda_writeq ( linda, &xgxscfg, QIB_7220_XGXSCfg_offset );
  2035. return rc;
  2036. }
  2037. /***************************************************************************
  2038. *
  2039. * PCI layer interface
  2040. *
  2041. ***************************************************************************
  2042. */
  2043. /**
  2044. * Probe PCI device
  2045. *
  2046. * @v pci PCI device
  2047. * @v id PCI ID
  2048. * @ret rc Return status code
  2049. */
  2050. static int linda_probe ( struct pci_device *pci ) {
  2051. struct ib_device *ibdev;
  2052. struct linda *linda;
  2053. struct QIB_7220_Revision revision;
  2054. int rc;
  2055. /* Allocate Infiniband device */
  2056. ibdev = alloc_ibdev ( sizeof ( *linda ) );
  2057. if ( ! ibdev ) {
  2058. rc = -ENOMEM;
  2059. goto err_alloc_ibdev;
  2060. }
  2061. pci_set_drvdata ( pci, ibdev );
  2062. linda = ib_get_drvdata ( ibdev );
  2063. ibdev->op = &linda_ib_operations;
  2064. ibdev->dev = &pci->dev;
  2065. ibdev->port = 1;
  2066. /* Fix up PCI device */
  2067. adjust_pci_device ( pci );
  2068. /* Get PCI BARs */
  2069. linda->regs = ioremap ( pci->membase, LINDA_BAR0_SIZE );
  2070. DBGC2 ( linda, "Linda %p has BAR at %08lx\n", linda, pci->membase );
  2071. /* Print some general data */
  2072. linda_readq ( linda, &revision, QIB_7220_Revision_offset );
  2073. DBGC2 ( linda, "Linda %p board %02lx v%ld.%ld.%ld.%ld\n", linda,
  2074. BIT_GET ( &revision, BoardID ),
  2075. BIT_GET ( &revision, R_SW ),
  2076. BIT_GET ( &revision, R_Arch ),
  2077. BIT_GET ( &revision, R_ChipRevMajor ),
  2078. BIT_GET ( &revision, R_ChipRevMinor ) );
  2079. /* Record link capabilities. Note that we force SDR only to
  2080. * avoid having to carry extra code for DDR tuning etc.
  2081. */
  2082. ibdev->link_width_enabled = ibdev->link_width_supported =
  2083. ( IB_LINK_WIDTH_4X | IB_LINK_WIDTH_1X );
  2084. ibdev->link_speed_enabled = ibdev->link_speed_supported =
  2085. IB_LINK_SPEED_SDR;
  2086. /* Initialise I2C subsystem */
  2087. if ( ( rc = linda_init_i2c ( linda ) ) != 0 )
  2088. goto err_init_i2c;
  2089. /* Read EEPROM parameters */
  2090. if ( ( rc = linda_read_eeprom ( linda, &ibdev->node_guid ) ) != 0 )
  2091. goto err_read_eeprom;
  2092. memcpy ( &ibdev->gid.s.guid, &ibdev->node_guid,
  2093. sizeof ( ibdev->gid.s.guid ) );
  2094. /* Initialise send datapath */
  2095. if ( ( rc = linda_init_send ( linda ) ) != 0 )
  2096. goto err_init_send;
  2097. /* Initialise receive datapath */
  2098. if ( ( rc = linda_init_recv ( linda ) ) != 0 )
  2099. goto err_init_recv;
  2100. /* Initialise the IB SerDes */
  2101. if ( ( rc = linda_init_ib_serdes ( linda ) ) != 0 )
  2102. goto err_init_ib_serdes;
  2103. /* Register Infiniband device */
  2104. if ( ( rc = register_ibdev ( ibdev ) ) != 0 ) {
  2105. DBGC ( linda, "Linda %p could not register IB "
  2106. "device: %s\n", linda, strerror ( rc ) );
  2107. goto err_register_ibdev;
  2108. }
  2109. return 0;
  2110. unregister_ibdev ( ibdev );
  2111. err_register_ibdev:
  2112. linda_fini_recv ( linda );
  2113. err_init_recv:
  2114. linda_fini_send ( linda );
  2115. err_init_send:
  2116. err_init_ib_serdes:
  2117. err_read_eeprom:
  2118. err_init_i2c:
  2119. ibdev_put ( ibdev );
  2120. err_alloc_ibdev:
  2121. return rc;
  2122. }
  2123. /**
  2124. * Remove PCI device
  2125. *
  2126. * @v pci PCI device
  2127. */
  2128. static void linda_remove ( struct pci_device *pci ) {
  2129. struct ib_device *ibdev = pci_get_drvdata ( pci );
  2130. struct linda *linda = ib_get_drvdata ( ibdev );
  2131. unregister_ibdev ( ibdev );
  2132. linda_fini_recv ( linda );
  2133. linda_fini_send ( linda );
  2134. ibdev_put ( ibdev );
  2135. }
  2136. static struct pci_device_id linda_nics[] = {
  2137. PCI_ROM ( 0x1077, 0x7220, "iba7220", "QLE7240/7280 HCA driver", 0 ),
  2138. };
  2139. struct pci_driver linda_driver __pci_driver = {
  2140. .ids = linda_nics,
  2141. .id_count = ( sizeof ( linda_nics ) / sizeof ( linda_nics[0] ) ),
  2142. .probe = linda_probe,
  2143. .remove = linda_remove,
  2144. };