lpfc_hw.h 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294
  1. /*******************************************************************
  2. * This file is part of the Emulex Linux Device Driver for *
  3. * Fibre Channel Host Bus Adapters. *
  4. * Copyright (C) 2004-2008 Emulex. All rights reserved. *
  5. * EMULEX and SLI are trademarks of Emulex. *
  6. * www.emulex.com *
  7. * *
  8. * This program is free software; you can redistribute it and/or *
  9. * modify it under the terms of version 2 of the GNU General *
  10. * Public License as published by the Free Software Foundation. *
  11. * This program is distributed in the hope that it will be useful. *
  12. * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
  13. * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
  14. * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
  15. * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
  16. * TO BE LEGALLY INVALID. See the GNU General Public License for *
  17. * more details, a copy of which can be found in the file COPYING *
  18. * included with this package. *
  19. *******************************************************************/
  20. #define FDMI_DID 0xfffffaU
  21. #define NameServer_DID 0xfffffcU
  22. #define SCR_DID 0xfffffdU
  23. #define Fabric_DID 0xfffffeU
  24. #define Bcast_DID 0xffffffU
  25. #define Mask_DID 0xffffffU
  26. #define CT_DID_MASK 0xffff00U
  27. #define Fabric_DID_MASK 0xfff000U
  28. #define WELL_KNOWN_DID_MASK 0xfffff0U
  29. #define PT2PT_LocalID 1
  30. #define PT2PT_RemoteID 2
  31. #define FF_DEF_EDTOV 2000 /* Default E_D_TOV (2000ms) */
  32. #define FF_DEF_ALTOV 15 /* Default AL_TIME (15ms) */
  33. #define FF_DEF_RATOV 2 /* Default RA_TOV (2s) */
  34. #define FF_DEF_ARBTOV 1900 /* Default ARB_TOV (1900ms) */
  35. #define LPFC_BUF_RING0 64 /* Number of buffers to post to RING
  36. 0 */
  37. #define FCELSSIZE 1024 /* maximum ELS transfer size */
  38. #define LPFC_FCP_RING 0 /* ring 0 for FCP initiator commands */
  39. #define LPFC_EXTRA_RING 1 /* ring 1 for other protocols */
  40. #define LPFC_ELS_RING 2 /* ring 2 for ELS commands */
  41. #define LPFC_FCP_NEXT_RING 3
  42. #define SLI2_IOCB_CMD_R0_ENTRIES 172 /* SLI-2 FCP command ring entries */
  43. #define SLI2_IOCB_RSP_R0_ENTRIES 134 /* SLI-2 FCP response ring entries */
  44. #define SLI2_IOCB_CMD_R1_ENTRIES 4 /* SLI-2 extra command ring entries */
  45. #define SLI2_IOCB_RSP_R1_ENTRIES 4 /* SLI-2 extra response ring entries */
  46. #define SLI2_IOCB_CMD_R1XTRA_ENTRIES 36 /* SLI-2 extra FCP cmd ring entries */
  47. #define SLI2_IOCB_RSP_R1XTRA_ENTRIES 52 /* SLI-2 extra FCP rsp ring entries */
  48. #define SLI2_IOCB_CMD_R2_ENTRIES 20 /* SLI-2 ELS command ring entries */
  49. #define SLI2_IOCB_RSP_R2_ENTRIES 20 /* SLI-2 ELS response ring entries */
  50. #define SLI2_IOCB_CMD_R3_ENTRIES 0
  51. #define SLI2_IOCB_RSP_R3_ENTRIES 0
  52. #define SLI2_IOCB_CMD_R3XTRA_ENTRIES 24
  53. #define SLI2_IOCB_RSP_R3XTRA_ENTRIES 32
  54. #define SLI2_IOCB_CMD_SIZE 32
  55. #define SLI2_IOCB_RSP_SIZE 32
  56. #define SLI3_IOCB_CMD_SIZE 128
  57. #define SLI3_IOCB_RSP_SIZE 64
  58. /* Common Transport structures and definitions */
  59. union CtRevisionId {
  60. /* Structure is in Big Endian format */
  61. struct {
  62. uint32_t Revision:8;
  63. uint32_t InId:24;
  64. } bits;
  65. uint32_t word;
  66. };
  67. union CtCommandResponse {
  68. /* Structure is in Big Endian format */
  69. struct {
  70. uint32_t CmdRsp:16;
  71. uint32_t Size:16;
  72. } bits;
  73. uint32_t word;
  74. };
  75. #define FC4_FEATURE_INIT 0x2
  76. #define FC4_FEATURE_TARGET 0x1
  77. struct lpfc_sli_ct_request {
  78. /* Structure is in Big Endian format */
  79. union CtRevisionId RevisionId;
  80. uint8_t FsType;
  81. uint8_t FsSubType;
  82. uint8_t Options;
  83. uint8_t Rsrvd1;
  84. union CtCommandResponse CommandResponse;
  85. uint8_t Rsrvd2;
  86. uint8_t ReasonCode;
  87. uint8_t Explanation;
  88. uint8_t VendorUnique;
  89. union {
  90. uint32_t PortID;
  91. struct gid {
  92. uint8_t PortType; /* for GID_PT requests */
  93. uint8_t DomainScope;
  94. uint8_t AreaScope;
  95. uint8_t Fc4Type; /* for GID_FT requests */
  96. } gid;
  97. struct rft {
  98. uint32_t PortId; /* For RFT_ID requests */
  99. #ifdef __BIG_ENDIAN_BITFIELD
  100. uint32_t rsvd0:16;
  101. uint32_t rsvd1:7;
  102. uint32_t fcpReg:1; /* Type 8 */
  103. uint32_t rsvd2:2;
  104. uint32_t ipReg:1; /* Type 5 */
  105. uint32_t rsvd3:5;
  106. #else /* __LITTLE_ENDIAN_BITFIELD */
  107. uint32_t rsvd0:16;
  108. uint32_t fcpReg:1; /* Type 8 */
  109. uint32_t rsvd1:7;
  110. uint32_t rsvd3:5;
  111. uint32_t ipReg:1; /* Type 5 */
  112. uint32_t rsvd2:2;
  113. #endif
  114. uint32_t rsvd[7];
  115. } rft;
  116. struct rnn {
  117. uint32_t PortId; /* For RNN_ID requests */
  118. uint8_t wwnn[8];
  119. } rnn;
  120. struct rsnn { /* For RSNN_ID requests */
  121. uint8_t wwnn[8];
  122. uint8_t len;
  123. uint8_t symbname[255];
  124. } rsnn;
  125. struct da_id { /* For DA_ID requests */
  126. uint32_t port_id;
  127. } da_id;
  128. struct rspn { /* For RSPN_ID requests */
  129. uint32_t PortId;
  130. uint8_t len;
  131. uint8_t symbname[255];
  132. } rspn;
  133. struct gff {
  134. uint32_t PortId;
  135. } gff;
  136. struct gff_acc {
  137. uint8_t fbits[128];
  138. } gff_acc;
  139. #define FCP_TYPE_FEATURE_OFFSET 7
  140. struct rff {
  141. uint32_t PortId;
  142. uint8_t reserved[2];
  143. uint8_t fbits;
  144. uint8_t type_code; /* type=8 for FCP */
  145. } rff;
  146. } un;
  147. };
  148. #define SLI_CT_REVISION 1
  149. #define GID_REQUEST_SZ (offsetof(struct lpfc_sli_ct_request, un) + \
  150. sizeof(struct gid))
  151. #define GFF_REQUEST_SZ (offsetof(struct lpfc_sli_ct_request, un) + \
  152. sizeof(struct gff))
  153. #define RFT_REQUEST_SZ (offsetof(struct lpfc_sli_ct_request, un) + \
  154. sizeof(struct rft))
  155. #define RFF_REQUEST_SZ (offsetof(struct lpfc_sli_ct_request, un) + \
  156. sizeof(struct rff))
  157. #define RNN_REQUEST_SZ (offsetof(struct lpfc_sli_ct_request, un) + \
  158. sizeof(struct rnn))
  159. #define RSNN_REQUEST_SZ (offsetof(struct lpfc_sli_ct_request, un) + \
  160. sizeof(struct rsnn))
  161. #define DA_ID_REQUEST_SZ (offsetof(struct lpfc_sli_ct_request, un) + \
  162. sizeof(struct da_id))
  163. #define RSPN_REQUEST_SZ (offsetof(struct lpfc_sli_ct_request, un) + \
  164. sizeof(struct rspn))
  165. /*
  166. * FsType Definitions
  167. */
  168. #define SLI_CT_MANAGEMENT_SERVICE 0xFA
  169. #define SLI_CT_TIME_SERVICE 0xFB
  170. #define SLI_CT_DIRECTORY_SERVICE 0xFC
  171. #define SLI_CT_FABRIC_CONTROLLER_SERVICE 0xFD
  172. /*
  173. * Directory Service Subtypes
  174. */
  175. #define SLI_CT_DIRECTORY_NAME_SERVER 0x02
  176. /*
  177. * Response Codes
  178. */
  179. #define SLI_CT_RESPONSE_FS_RJT 0x8001
  180. #define SLI_CT_RESPONSE_FS_ACC 0x8002
  181. /*
  182. * Reason Codes
  183. */
  184. #define SLI_CT_NO_ADDITIONAL_EXPL 0x0
  185. #define SLI_CT_INVALID_COMMAND 0x01
  186. #define SLI_CT_INVALID_VERSION 0x02
  187. #define SLI_CT_LOGICAL_ERROR 0x03
  188. #define SLI_CT_INVALID_IU_SIZE 0x04
  189. #define SLI_CT_LOGICAL_BUSY 0x05
  190. #define SLI_CT_PROTOCOL_ERROR 0x07
  191. #define SLI_CT_UNABLE_TO_PERFORM_REQ 0x09
  192. #define SLI_CT_REQ_NOT_SUPPORTED 0x0b
  193. #define SLI_CT_HBA_INFO_NOT_REGISTERED 0x10
  194. #define SLI_CT_MULTIPLE_HBA_ATTR_OF_SAME_TYPE 0x11
  195. #define SLI_CT_INVALID_HBA_ATTR_BLOCK_LEN 0x12
  196. #define SLI_CT_HBA_ATTR_NOT_PRESENT 0x13
  197. #define SLI_CT_PORT_INFO_NOT_REGISTERED 0x20
  198. #define SLI_CT_MULTIPLE_PORT_ATTR_OF_SAME_TYPE 0x21
  199. #define SLI_CT_INVALID_PORT_ATTR_BLOCK_LEN 0x22
  200. #define SLI_CT_VENDOR_UNIQUE 0xff
  201. /*
  202. * Name Server SLI_CT_UNABLE_TO_PERFORM_REQ Explanations
  203. */
  204. #define SLI_CT_NO_PORT_ID 0x01
  205. #define SLI_CT_NO_PORT_NAME 0x02
  206. #define SLI_CT_NO_NODE_NAME 0x03
  207. #define SLI_CT_NO_CLASS_OF_SERVICE 0x04
  208. #define SLI_CT_NO_IP_ADDRESS 0x05
  209. #define SLI_CT_NO_IPA 0x06
  210. #define SLI_CT_NO_FC4_TYPES 0x07
  211. #define SLI_CT_NO_SYMBOLIC_PORT_NAME 0x08
  212. #define SLI_CT_NO_SYMBOLIC_NODE_NAME 0x09
  213. #define SLI_CT_NO_PORT_TYPE 0x0A
  214. #define SLI_CT_ACCESS_DENIED 0x10
  215. #define SLI_CT_INVALID_PORT_ID 0x11
  216. #define SLI_CT_DATABASE_EMPTY 0x12
  217. /*
  218. * Name Server Command Codes
  219. */
  220. #define SLI_CTNS_GA_NXT 0x0100
  221. #define SLI_CTNS_GPN_ID 0x0112
  222. #define SLI_CTNS_GNN_ID 0x0113
  223. #define SLI_CTNS_GCS_ID 0x0114
  224. #define SLI_CTNS_GFT_ID 0x0117
  225. #define SLI_CTNS_GSPN_ID 0x0118
  226. #define SLI_CTNS_GPT_ID 0x011A
  227. #define SLI_CTNS_GFF_ID 0x011F
  228. #define SLI_CTNS_GID_PN 0x0121
  229. #define SLI_CTNS_GID_NN 0x0131
  230. #define SLI_CTNS_GIP_NN 0x0135
  231. #define SLI_CTNS_GIPA_NN 0x0136
  232. #define SLI_CTNS_GSNN_NN 0x0139
  233. #define SLI_CTNS_GNN_IP 0x0153
  234. #define SLI_CTNS_GIPA_IP 0x0156
  235. #define SLI_CTNS_GID_FT 0x0171
  236. #define SLI_CTNS_GID_PT 0x01A1
  237. #define SLI_CTNS_RPN_ID 0x0212
  238. #define SLI_CTNS_RNN_ID 0x0213
  239. #define SLI_CTNS_RCS_ID 0x0214
  240. #define SLI_CTNS_RFT_ID 0x0217
  241. #define SLI_CTNS_RSPN_ID 0x0218
  242. #define SLI_CTNS_RPT_ID 0x021A
  243. #define SLI_CTNS_RFF_ID 0x021F
  244. #define SLI_CTNS_RIP_NN 0x0235
  245. #define SLI_CTNS_RIPA_NN 0x0236
  246. #define SLI_CTNS_RSNN_NN 0x0239
  247. #define SLI_CTNS_DA_ID 0x0300
  248. /*
  249. * Port Types
  250. */
  251. #define SLI_CTPT_N_PORT 0x01
  252. #define SLI_CTPT_NL_PORT 0x02
  253. #define SLI_CTPT_FNL_PORT 0x03
  254. #define SLI_CTPT_IP 0x04
  255. #define SLI_CTPT_FCP 0x08
  256. #define SLI_CTPT_NX_PORT 0x7F
  257. #define SLI_CTPT_F_PORT 0x81
  258. #define SLI_CTPT_FL_PORT 0x82
  259. #define SLI_CTPT_E_PORT 0x84
  260. #define SLI_CT_LAST_ENTRY 0x80000000
  261. /* Fibre Channel Service Parameter definitions */
  262. #define FC_PH_4_0 6 /* FC-PH version 4.0 */
  263. #define FC_PH_4_1 7 /* FC-PH version 4.1 */
  264. #define FC_PH_4_2 8 /* FC-PH version 4.2 */
  265. #define FC_PH_4_3 9 /* FC-PH version 4.3 */
  266. #define FC_PH_LOW 8 /* Lowest supported FC-PH version */
  267. #define FC_PH_HIGH 9 /* Highest supported FC-PH version */
  268. #define FC_PH3 0x20 /* FC-PH-3 version */
  269. #define FF_FRAME_SIZE 2048
  270. struct lpfc_name {
  271. union {
  272. struct {
  273. #ifdef __BIG_ENDIAN_BITFIELD
  274. uint8_t nameType:4; /* FC Word 0, bit 28:31 */
  275. uint8_t IEEEextMsn:4; /* FC Word 0, bit 24:27, bit
  276. 8:11 of IEEE ext */
  277. #else /* __LITTLE_ENDIAN_BITFIELD */
  278. uint8_t IEEEextMsn:4; /* FC Word 0, bit 24:27, bit
  279. 8:11 of IEEE ext */
  280. uint8_t nameType:4; /* FC Word 0, bit 28:31 */
  281. #endif
  282. #define NAME_IEEE 0x1 /* IEEE name - nameType */
  283. #define NAME_IEEE_EXT 0x2 /* IEEE extended name */
  284. #define NAME_FC_TYPE 0x3 /* FC native name type */
  285. #define NAME_IP_TYPE 0x4 /* IP address */
  286. #define NAME_CCITT_TYPE 0xC
  287. #define NAME_CCITT_GR_TYPE 0xE
  288. uint8_t IEEEextLsb; /* FC Word 0, bit 16:23, IEEE
  289. extended Lsb */
  290. uint8_t IEEE[6]; /* FC IEEE address */
  291. } s;
  292. uint8_t wwn[8];
  293. } u;
  294. };
  295. struct csp {
  296. uint8_t fcphHigh; /* FC Word 0, byte 0 */
  297. uint8_t fcphLow;
  298. uint8_t bbCreditMsb;
  299. uint8_t bbCreditlsb; /* FC Word 0, byte 3 */
  300. #ifdef __BIG_ENDIAN_BITFIELD
  301. uint16_t request_multiple_Nport:1; /* FC Word 1, bit 31 */
  302. uint16_t randomOffset:1; /* FC Word 1, bit 30 */
  303. uint16_t response_multiple_NPort:1; /* FC Word 1, bit 29 */
  304. uint16_t fPort:1; /* FC Word 1, bit 28 */
  305. uint16_t altBbCredit:1; /* FC Word 1, bit 27 */
  306. uint16_t edtovResolution:1; /* FC Word 1, bit 26 */
  307. uint16_t multicast:1; /* FC Word 1, bit 25 */
  308. uint16_t broadcast:1; /* FC Word 1, bit 24 */
  309. uint16_t huntgroup:1; /* FC Word 1, bit 23 */
  310. uint16_t simplex:1; /* FC Word 1, bit 22 */
  311. uint16_t word1Reserved1:3; /* FC Word 1, bit 21:19 */
  312. uint16_t dhd:1; /* FC Word 1, bit 18 */
  313. uint16_t contIncSeqCnt:1; /* FC Word 1, bit 17 */
  314. uint16_t payloadlength:1; /* FC Word 1, bit 16 */
  315. #else /* __LITTLE_ENDIAN_BITFIELD */
  316. uint16_t broadcast:1; /* FC Word 1, bit 24 */
  317. uint16_t multicast:1; /* FC Word 1, bit 25 */
  318. uint16_t edtovResolution:1; /* FC Word 1, bit 26 */
  319. uint16_t altBbCredit:1; /* FC Word 1, bit 27 */
  320. uint16_t fPort:1; /* FC Word 1, bit 28 */
  321. uint16_t response_multiple_NPort:1; /* FC Word 1, bit 29 */
  322. uint16_t randomOffset:1; /* FC Word 1, bit 30 */
  323. uint16_t request_multiple_Nport:1; /* FC Word 1, bit 31 */
  324. uint16_t payloadlength:1; /* FC Word 1, bit 16 */
  325. uint16_t contIncSeqCnt:1; /* FC Word 1, bit 17 */
  326. uint16_t dhd:1; /* FC Word 1, bit 18 */
  327. uint16_t word1Reserved1:3; /* FC Word 1, bit 21:19 */
  328. uint16_t simplex:1; /* FC Word 1, bit 22 */
  329. uint16_t huntgroup:1; /* FC Word 1, bit 23 */
  330. #endif
  331. uint8_t bbRcvSizeMsb; /* Upper nibble is reserved */
  332. uint8_t bbRcvSizeLsb; /* FC Word 1, byte 3 */
  333. union {
  334. struct {
  335. uint8_t word2Reserved1; /* FC Word 2 byte 0 */
  336. uint8_t totalConcurrSeq; /* FC Word 2 byte 1 */
  337. uint8_t roByCategoryMsb; /* FC Word 2 byte 2 */
  338. uint8_t roByCategoryLsb; /* FC Word 2 byte 3 */
  339. } nPort;
  340. uint32_t r_a_tov; /* R_A_TOV must be in B.E. format */
  341. } w2;
  342. uint32_t e_d_tov; /* E_D_TOV must be in B.E. format */
  343. };
  344. struct class_parms {
  345. #ifdef __BIG_ENDIAN_BITFIELD
  346. uint8_t classValid:1; /* FC Word 0, bit 31 */
  347. uint8_t intermix:1; /* FC Word 0, bit 30 */
  348. uint8_t stackedXparent:1; /* FC Word 0, bit 29 */
  349. uint8_t stackedLockDown:1; /* FC Word 0, bit 28 */
  350. uint8_t seqDelivery:1; /* FC Word 0, bit 27 */
  351. uint8_t word0Reserved1:3; /* FC Word 0, bit 24:26 */
  352. #else /* __LITTLE_ENDIAN_BITFIELD */
  353. uint8_t word0Reserved1:3; /* FC Word 0, bit 24:26 */
  354. uint8_t seqDelivery:1; /* FC Word 0, bit 27 */
  355. uint8_t stackedLockDown:1; /* FC Word 0, bit 28 */
  356. uint8_t stackedXparent:1; /* FC Word 0, bit 29 */
  357. uint8_t intermix:1; /* FC Word 0, bit 30 */
  358. uint8_t classValid:1; /* FC Word 0, bit 31 */
  359. #endif
  360. uint8_t word0Reserved2; /* FC Word 0, bit 16:23 */
  361. #ifdef __BIG_ENDIAN_BITFIELD
  362. uint8_t iCtlXidReAssgn:2; /* FC Word 0, Bit 14:15 */
  363. uint8_t iCtlInitialPa:2; /* FC Word 0, bit 12:13 */
  364. uint8_t iCtlAck0capable:1; /* FC Word 0, bit 11 */
  365. uint8_t iCtlAckNcapable:1; /* FC Word 0, bit 10 */
  366. uint8_t word0Reserved3:2; /* FC Word 0, bit 8: 9 */
  367. #else /* __LITTLE_ENDIAN_BITFIELD */
  368. uint8_t word0Reserved3:2; /* FC Word 0, bit 8: 9 */
  369. uint8_t iCtlAckNcapable:1; /* FC Word 0, bit 10 */
  370. uint8_t iCtlAck0capable:1; /* FC Word 0, bit 11 */
  371. uint8_t iCtlInitialPa:2; /* FC Word 0, bit 12:13 */
  372. uint8_t iCtlXidReAssgn:2; /* FC Word 0, Bit 14:15 */
  373. #endif
  374. uint8_t word0Reserved4; /* FC Word 0, bit 0: 7 */
  375. #ifdef __BIG_ENDIAN_BITFIELD
  376. uint8_t rCtlAck0capable:1; /* FC Word 1, bit 31 */
  377. uint8_t rCtlAckNcapable:1; /* FC Word 1, bit 30 */
  378. uint8_t rCtlXidInterlck:1; /* FC Word 1, bit 29 */
  379. uint8_t rCtlErrorPolicy:2; /* FC Word 1, bit 27:28 */
  380. uint8_t word1Reserved1:1; /* FC Word 1, bit 26 */
  381. uint8_t rCtlCatPerSeq:2; /* FC Word 1, bit 24:25 */
  382. #else /* __LITTLE_ENDIAN_BITFIELD */
  383. uint8_t rCtlCatPerSeq:2; /* FC Word 1, bit 24:25 */
  384. uint8_t word1Reserved1:1; /* FC Word 1, bit 26 */
  385. uint8_t rCtlErrorPolicy:2; /* FC Word 1, bit 27:28 */
  386. uint8_t rCtlXidInterlck:1; /* FC Word 1, bit 29 */
  387. uint8_t rCtlAckNcapable:1; /* FC Word 1, bit 30 */
  388. uint8_t rCtlAck0capable:1; /* FC Word 1, bit 31 */
  389. #endif
  390. uint8_t word1Reserved2; /* FC Word 1, bit 16:23 */
  391. uint8_t rcvDataSizeMsb; /* FC Word 1, bit 8:15 */
  392. uint8_t rcvDataSizeLsb; /* FC Word 1, bit 0: 7 */
  393. uint8_t concurrentSeqMsb; /* FC Word 2, bit 24:31 */
  394. uint8_t concurrentSeqLsb; /* FC Word 2, bit 16:23 */
  395. uint8_t EeCreditSeqMsb; /* FC Word 2, bit 8:15 */
  396. uint8_t EeCreditSeqLsb; /* FC Word 2, bit 0: 7 */
  397. uint8_t openSeqPerXchgMsb; /* FC Word 3, bit 24:31 */
  398. uint8_t openSeqPerXchgLsb; /* FC Word 3, bit 16:23 */
  399. uint8_t word3Reserved1; /* Fc Word 3, bit 8:15 */
  400. uint8_t word3Reserved2; /* Fc Word 3, bit 0: 7 */
  401. };
  402. struct serv_parm { /* Structure is in Big Endian format */
  403. struct csp cmn;
  404. struct lpfc_name portName;
  405. struct lpfc_name nodeName;
  406. struct class_parms cls1;
  407. struct class_parms cls2;
  408. struct class_parms cls3;
  409. struct class_parms cls4;
  410. uint8_t vendorVersion[16];
  411. };
  412. /*
  413. * Extended Link Service LS_COMMAND codes (Payload Word 0)
  414. */
  415. #ifdef __BIG_ENDIAN_BITFIELD
  416. #define ELS_CMD_MASK 0xffff0000
  417. #define ELS_RSP_MASK 0xff000000
  418. #define ELS_CMD_LS_RJT 0x01000000
  419. #define ELS_CMD_ACC 0x02000000
  420. #define ELS_CMD_PLOGI 0x03000000
  421. #define ELS_CMD_FLOGI 0x04000000
  422. #define ELS_CMD_LOGO 0x05000000
  423. #define ELS_CMD_ABTX 0x06000000
  424. #define ELS_CMD_RCS 0x07000000
  425. #define ELS_CMD_RES 0x08000000
  426. #define ELS_CMD_RSS 0x09000000
  427. #define ELS_CMD_RSI 0x0A000000
  428. #define ELS_CMD_ESTS 0x0B000000
  429. #define ELS_CMD_ESTC 0x0C000000
  430. #define ELS_CMD_ADVC 0x0D000000
  431. #define ELS_CMD_RTV 0x0E000000
  432. #define ELS_CMD_RLS 0x0F000000
  433. #define ELS_CMD_ECHO 0x10000000
  434. #define ELS_CMD_TEST 0x11000000
  435. #define ELS_CMD_RRQ 0x12000000
  436. #define ELS_CMD_PRLI 0x20100014
  437. #define ELS_CMD_PRLO 0x21100014
  438. #define ELS_CMD_PRLO_ACC 0x02100014
  439. #define ELS_CMD_PDISC 0x50000000
  440. #define ELS_CMD_FDISC 0x51000000
  441. #define ELS_CMD_ADISC 0x52000000
  442. #define ELS_CMD_FARP 0x54000000
  443. #define ELS_CMD_FARPR 0x55000000
  444. #define ELS_CMD_RPS 0x56000000
  445. #define ELS_CMD_RPL 0x57000000
  446. #define ELS_CMD_FAN 0x60000000
  447. #define ELS_CMD_RSCN 0x61040000
  448. #define ELS_CMD_SCR 0x62000000
  449. #define ELS_CMD_RNID 0x78000000
  450. #define ELS_CMD_LIRR 0x7A000000
  451. #else /* __LITTLE_ENDIAN_BITFIELD */
  452. #define ELS_CMD_MASK 0xffff
  453. #define ELS_RSP_MASK 0xff
  454. #define ELS_CMD_LS_RJT 0x01
  455. #define ELS_CMD_ACC 0x02
  456. #define ELS_CMD_PLOGI 0x03
  457. #define ELS_CMD_FLOGI 0x04
  458. #define ELS_CMD_LOGO 0x05
  459. #define ELS_CMD_ABTX 0x06
  460. #define ELS_CMD_RCS 0x07
  461. #define ELS_CMD_RES 0x08
  462. #define ELS_CMD_RSS 0x09
  463. #define ELS_CMD_RSI 0x0A
  464. #define ELS_CMD_ESTS 0x0B
  465. #define ELS_CMD_ESTC 0x0C
  466. #define ELS_CMD_ADVC 0x0D
  467. #define ELS_CMD_RTV 0x0E
  468. #define ELS_CMD_RLS 0x0F
  469. #define ELS_CMD_ECHO 0x10
  470. #define ELS_CMD_TEST 0x11
  471. #define ELS_CMD_RRQ 0x12
  472. #define ELS_CMD_PRLI 0x14001020
  473. #define ELS_CMD_PRLO 0x14001021
  474. #define ELS_CMD_PRLO_ACC 0x14001002
  475. #define ELS_CMD_PDISC 0x50
  476. #define ELS_CMD_FDISC 0x51
  477. #define ELS_CMD_ADISC 0x52
  478. #define ELS_CMD_FARP 0x54
  479. #define ELS_CMD_FARPR 0x55
  480. #define ELS_CMD_RPS 0x56
  481. #define ELS_CMD_RPL 0x57
  482. #define ELS_CMD_FAN 0x60
  483. #define ELS_CMD_RSCN 0x0461
  484. #define ELS_CMD_SCR 0x62
  485. #define ELS_CMD_RNID 0x78
  486. #define ELS_CMD_LIRR 0x7A
  487. #endif
  488. /*
  489. * LS_RJT Payload Definition
  490. */
  491. struct ls_rjt { /* Structure is in Big Endian format */
  492. union {
  493. uint32_t lsRjtError;
  494. struct {
  495. uint8_t lsRjtRsvd0; /* FC Word 0, bit 24:31 */
  496. uint8_t lsRjtRsnCode; /* FC Word 0, bit 16:23 */
  497. /* LS_RJT reason codes */
  498. #define LSRJT_INVALID_CMD 0x01
  499. #define LSRJT_LOGICAL_ERR 0x03
  500. #define LSRJT_LOGICAL_BSY 0x05
  501. #define LSRJT_PROTOCOL_ERR 0x07
  502. #define LSRJT_UNABLE_TPC 0x09 /* Unable to perform command */
  503. #define LSRJT_CMD_UNSUPPORTED 0x0B
  504. #define LSRJT_VENDOR_UNIQUE 0xFF /* See Byte 3 */
  505. uint8_t lsRjtRsnCodeExp; /* FC Word 0, bit 8:15 */
  506. /* LS_RJT reason explanation */
  507. #define LSEXP_NOTHING_MORE 0x00
  508. #define LSEXP_SPARM_OPTIONS 0x01
  509. #define LSEXP_SPARM_ICTL 0x03
  510. #define LSEXP_SPARM_RCTL 0x05
  511. #define LSEXP_SPARM_RCV_SIZE 0x07
  512. #define LSEXP_SPARM_CONCUR_SEQ 0x09
  513. #define LSEXP_SPARM_CREDIT 0x0B
  514. #define LSEXP_INVALID_PNAME 0x0D
  515. #define LSEXP_INVALID_NNAME 0x0E
  516. #define LSEXP_INVALID_CSP 0x0F
  517. #define LSEXP_INVALID_ASSOC_HDR 0x11
  518. #define LSEXP_ASSOC_HDR_REQ 0x13
  519. #define LSEXP_INVALID_O_SID 0x15
  520. #define LSEXP_INVALID_OX_RX 0x17
  521. #define LSEXP_CMD_IN_PROGRESS 0x19
  522. #define LSEXP_PORT_LOGIN_REQ 0x1E
  523. #define LSEXP_INVALID_NPORT_ID 0x1F
  524. #define LSEXP_INVALID_SEQ_ID 0x21
  525. #define LSEXP_INVALID_XCHG 0x23
  526. #define LSEXP_INACTIVE_XCHG 0x25
  527. #define LSEXP_RQ_REQUIRED 0x27
  528. #define LSEXP_OUT_OF_RESOURCE 0x29
  529. #define LSEXP_CANT_GIVE_DATA 0x2A
  530. #define LSEXP_REQ_UNSUPPORTED 0x2C
  531. uint8_t vendorUnique; /* FC Word 0, bit 0: 7 */
  532. } b;
  533. } un;
  534. };
  535. /*
  536. * N_Port Login (FLOGO/PLOGO Request) Payload Definition
  537. */
  538. typedef struct _LOGO { /* Structure is in Big Endian format */
  539. union {
  540. uint32_t nPortId32; /* Access nPortId as a word */
  541. struct {
  542. uint8_t word1Reserved1; /* FC Word 1, bit 31:24 */
  543. uint8_t nPortIdByte0; /* N_port ID bit 16:23 */
  544. uint8_t nPortIdByte1; /* N_port ID bit 8:15 */
  545. uint8_t nPortIdByte2; /* N_port ID bit 0: 7 */
  546. } b;
  547. } un;
  548. struct lpfc_name portName; /* N_port name field */
  549. } LOGO;
  550. /*
  551. * FCP Login (PRLI Request / ACC) Payload Definition
  552. */
  553. #define PRLX_PAGE_LEN 0x10
  554. #define TPRLO_PAGE_LEN 0x14
  555. typedef struct _PRLI { /* Structure is in Big Endian format */
  556. uint8_t prliType; /* FC Parm Word 0, bit 24:31 */
  557. #define PRLI_FCP_TYPE 0x08
  558. uint8_t word0Reserved1; /* FC Parm Word 0, bit 16:23 */
  559. #ifdef __BIG_ENDIAN_BITFIELD
  560. uint8_t origProcAssocV:1; /* FC Parm Word 0, bit 15 */
  561. uint8_t respProcAssocV:1; /* FC Parm Word 0, bit 14 */
  562. uint8_t estabImagePair:1; /* FC Parm Word 0, bit 13 */
  563. /* ACC = imagePairEstablished */
  564. uint8_t word0Reserved2:1; /* FC Parm Word 0, bit 12 */
  565. uint8_t acceptRspCode:4; /* FC Parm Word 0, bit 8:11, ACC ONLY */
  566. #else /* __LITTLE_ENDIAN_BITFIELD */
  567. uint8_t acceptRspCode:4; /* FC Parm Word 0, bit 8:11, ACC ONLY */
  568. uint8_t word0Reserved2:1; /* FC Parm Word 0, bit 12 */
  569. uint8_t estabImagePair:1; /* FC Parm Word 0, bit 13 */
  570. uint8_t respProcAssocV:1; /* FC Parm Word 0, bit 14 */
  571. uint8_t origProcAssocV:1; /* FC Parm Word 0, bit 15 */
  572. /* ACC = imagePairEstablished */
  573. #endif
  574. #define PRLI_REQ_EXECUTED 0x1 /* acceptRspCode */
  575. #define PRLI_NO_RESOURCES 0x2
  576. #define PRLI_INIT_INCOMPLETE 0x3
  577. #define PRLI_NO_SUCH_PA 0x4
  578. #define PRLI_PREDEF_CONFIG 0x5
  579. #define PRLI_PARTIAL_SUCCESS 0x6
  580. #define PRLI_INVALID_PAGE_CNT 0x7
  581. uint8_t word0Reserved3; /* FC Parm Word 0, bit 0:7 */
  582. uint32_t origProcAssoc; /* FC Parm Word 1, bit 0:31 */
  583. uint32_t respProcAssoc; /* FC Parm Word 2, bit 0:31 */
  584. uint8_t word3Reserved1; /* FC Parm Word 3, bit 24:31 */
  585. uint8_t word3Reserved2; /* FC Parm Word 3, bit 16:23 */
  586. #ifdef __BIG_ENDIAN_BITFIELD
  587. uint16_t Word3bit15Resved:1; /* FC Parm Word 3, bit 15 */
  588. uint16_t Word3bit14Resved:1; /* FC Parm Word 3, bit 14 */
  589. uint16_t Word3bit13Resved:1; /* FC Parm Word 3, bit 13 */
  590. uint16_t Word3bit12Resved:1; /* FC Parm Word 3, bit 12 */
  591. uint16_t Word3bit11Resved:1; /* FC Parm Word 3, bit 11 */
  592. uint16_t Word3bit10Resved:1; /* FC Parm Word 3, bit 10 */
  593. uint16_t TaskRetryIdReq:1; /* FC Parm Word 3, bit 9 */
  594. uint16_t Retry:1; /* FC Parm Word 3, bit 8 */
  595. uint16_t ConfmComplAllowed:1; /* FC Parm Word 3, bit 7 */
  596. uint16_t dataOverLay:1; /* FC Parm Word 3, bit 6 */
  597. uint16_t initiatorFunc:1; /* FC Parm Word 3, bit 5 */
  598. uint16_t targetFunc:1; /* FC Parm Word 3, bit 4 */
  599. uint16_t cmdDataMixEna:1; /* FC Parm Word 3, bit 3 */
  600. uint16_t dataRspMixEna:1; /* FC Parm Word 3, bit 2 */
  601. uint16_t readXferRdyDis:1; /* FC Parm Word 3, bit 1 */
  602. uint16_t writeXferRdyDis:1; /* FC Parm Word 3, bit 0 */
  603. #else /* __LITTLE_ENDIAN_BITFIELD */
  604. uint16_t Retry:1; /* FC Parm Word 3, bit 8 */
  605. uint16_t TaskRetryIdReq:1; /* FC Parm Word 3, bit 9 */
  606. uint16_t Word3bit10Resved:1; /* FC Parm Word 3, bit 10 */
  607. uint16_t Word3bit11Resved:1; /* FC Parm Word 3, bit 11 */
  608. uint16_t Word3bit12Resved:1; /* FC Parm Word 3, bit 12 */
  609. uint16_t Word3bit13Resved:1; /* FC Parm Word 3, bit 13 */
  610. uint16_t Word3bit14Resved:1; /* FC Parm Word 3, bit 14 */
  611. uint16_t Word3bit15Resved:1; /* FC Parm Word 3, bit 15 */
  612. uint16_t writeXferRdyDis:1; /* FC Parm Word 3, bit 0 */
  613. uint16_t readXferRdyDis:1; /* FC Parm Word 3, bit 1 */
  614. uint16_t dataRspMixEna:1; /* FC Parm Word 3, bit 2 */
  615. uint16_t cmdDataMixEna:1; /* FC Parm Word 3, bit 3 */
  616. uint16_t targetFunc:1; /* FC Parm Word 3, bit 4 */
  617. uint16_t initiatorFunc:1; /* FC Parm Word 3, bit 5 */
  618. uint16_t dataOverLay:1; /* FC Parm Word 3, bit 6 */
  619. uint16_t ConfmComplAllowed:1; /* FC Parm Word 3, bit 7 */
  620. #endif
  621. } PRLI;
  622. /*
  623. * FCP Logout (PRLO Request / ACC) Payload Definition
  624. */
  625. typedef struct _PRLO { /* Structure is in Big Endian format */
  626. uint8_t prloType; /* FC Parm Word 0, bit 24:31 */
  627. #define PRLO_FCP_TYPE 0x08
  628. uint8_t word0Reserved1; /* FC Parm Word 0, bit 16:23 */
  629. #ifdef __BIG_ENDIAN_BITFIELD
  630. uint8_t origProcAssocV:1; /* FC Parm Word 0, bit 15 */
  631. uint8_t respProcAssocV:1; /* FC Parm Word 0, bit 14 */
  632. uint8_t word0Reserved2:2; /* FC Parm Word 0, bit 12:13 */
  633. uint8_t acceptRspCode:4; /* FC Parm Word 0, bit 8:11, ACC ONLY */
  634. #else /* __LITTLE_ENDIAN_BITFIELD */
  635. uint8_t acceptRspCode:4; /* FC Parm Word 0, bit 8:11, ACC ONLY */
  636. uint8_t word0Reserved2:2; /* FC Parm Word 0, bit 12:13 */
  637. uint8_t respProcAssocV:1; /* FC Parm Word 0, bit 14 */
  638. uint8_t origProcAssocV:1; /* FC Parm Word 0, bit 15 */
  639. #endif
  640. #define PRLO_REQ_EXECUTED 0x1 /* acceptRspCode */
  641. #define PRLO_NO_SUCH_IMAGE 0x4
  642. #define PRLO_INVALID_PAGE_CNT 0x7
  643. uint8_t word0Reserved3; /* FC Parm Word 0, bit 0:7 */
  644. uint32_t origProcAssoc; /* FC Parm Word 1, bit 0:31 */
  645. uint32_t respProcAssoc; /* FC Parm Word 2, bit 0:31 */
  646. uint32_t word3Reserved1; /* FC Parm Word 3, bit 0:31 */
  647. } PRLO;
  648. typedef struct _ADISC { /* Structure is in Big Endian format */
  649. uint32_t hardAL_PA;
  650. struct lpfc_name portName;
  651. struct lpfc_name nodeName;
  652. uint32_t DID;
  653. } ADISC;
  654. typedef struct _FARP { /* Structure is in Big Endian format */
  655. uint32_t Mflags:8;
  656. uint32_t Odid:24;
  657. #define FARP_NO_ACTION 0 /* FARP information enclosed, no
  658. action */
  659. #define FARP_MATCH_PORT 0x1 /* Match on Responder Port Name */
  660. #define FARP_MATCH_NODE 0x2 /* Match on Responder Node Name */
  661. #define FARP_MATCH_IP 0x4 /* Match on IP address, not supported */
  662. #define FARP_MATCH_IPV4 0x5 /* Match on IPV4 address, not
  663. supported */
  664. #define FARP_MATCH_IPV6 0x6 /* Match on IPV6 address, not
  665. supported */
  666. uint32_t Rflags:8;
  667. uint32_t Rdid:24;
  668. #define FARP_REQUEST_PLOGI 0x1 /* Request for PLOGI */
  669. #define FARP_REQUEST_FARPR 0x2 /* Request for FARP Response */
  670. struct lpfc_name OportName;
  671. struct lpfc_name OnodeName;
  672. struct lpfc_name RportName;
  673. struct lpfc_name RnodeName;
  674. uint8_t Oipaddr[16];
  675. uint8_t Ripaddr[16];
  676. } FARP;
  677. typedef struct _FAN { /* Structure is in Big Endian format */
  678. uint32_t Fdid;
  679. struct lpfc_name FportName;
  680. struct lpfc_name FnodeName;
  681. } FAN;
  682. typedef struct _SCR { /* Structure is in Big Endian format */
  683. uint8_t resvd1;
  684. uint8_t resvd2;
  685. uint8_t resvd3;
  686. uint8_t Function;
  687. #define SCR_FUNC_FABRIC 0x01
  688. #define SCR_FUNC_NPORT 0x02
  689. #define SCR_FUNC_FULL 0x03
  690. #define SCR_CLEAR 0xff
  691. } SCR;
  692. typedef struct _RNID_TOP_DISC {
  693. struct lpfc_name portName;
  694. uint8_t resvd[8];
  695. uint32_t unitType;
  696. #define RNID_HBA 0x7
  697. #define RNID_HOST 0xa
  698. #define RNID_DRIVER 0xd
  699. uint32_t physPort;
  700. uint32_t attachedNodes;
  701. uint16_t ipVersion;
  702. #define RNID_IPV4 0x1
  703. #define RNID_IPV6 0x2
  704. uint16_t UDPport;
  705. uint8_t ipAddr[16];
  706. uint16_t resvd1;
  707. uint16_t flags;
  708. #define RNID_TD_SUPPORT 0x1
  709. #define RNID_LP_VALID 0x2
  710. } RNID_TOP_DISC;
  711. typedef struct _RNID { /* Structure is in Big Endian format */
  712. uint8_t Format;
  713. #define RNID_TOPOLOGY_DISC 0xdf
  714. uint8_t CommonLen;
  715. uint8_t resvd1;
  716. uint8_t SpecificLen;
  717. struct lpfc_name portName;
  718. struct lpfc_name nodeName;
  719. union {
  720. RNID_TOP_DISC topologyDisc; /* topology disc (0xdf) */
  721. } un;
  722. } RNID;
  723. typedef struct _RPS { /* Structure is in Big Endian format */
  724. union {
  725. uint32_t portNum;
  726. struct lpfc_name portName;
  727. } un;
  728. } RPS;
  729. typedef struct _RPS_RSP { /* Structure is in Big Endian format */
  730. uint16_t rsvd1;
  731. uint16_t portStatus;
  732. uint32_t linkFailureCnt;
  733. uint32_t lossSyncCnt;
  734. uint32_t lossSignalCnt;
  735. uint32_t primSeqErrCnt;
  736. uint32_t invalidXmitWord;
  737. uint32_t crcCnt;
  738. } RPS_RSP;
  739. typedef struct _RPL { /* Structure is in Big Endian format */
  740. uint32_t maxsize;
  741. uint32_t index;
  742. } RPL;
  743. typedef struct _PORT_NUM_BLK {
  744. uint32_t portNum;
  745. uint32_t portID;
  746. struct lpfc_name portName;
  747. } PORT_NUM_BLK;
  748. typedef struct _RPL_RSP { /* Structure is in Big Endian format */
  749. uint32_t listLen;
  750. uint32_t index;
  751. PORT_NUM_BLK port_num_blk;
  752. } RPL_RSP;
  753. /* This is used for RSCN command */
  754. typedef struct _D_ID { /* Structure is in Big Endian format */
  755. union {
  756. uint32_t word;
  757. struct {
  758. #ifdef __BIG_ENDIAN_BITFIELD
  759. uint8_t resv;
  760. uint8_t domain;
  761. uint8_t area;
  762. uint8_t id;
  763. #else /* __LITTLE_ENDIAN_BITFIELD */
  764. uint8_t id;
  765. uint8_t area;
  766. uint8_t domain;
  767. uint8_t resv;
  768. #endif
  769. } b;
  770. } un;
  771. } D_ID;
  772. /*
  773. * Structure to define all ELS Payload types
  774. */
  775. typedef struct _ELS_PKT { /* Structure is in Big Endian format */
  776. uint8_t elsCode; /* FC Word 0, bit 24:31 */
  777. uint8_t elsByte1;
  778. uint8_t elsByte2;
  779. uint8_t elsByte3;
  780. union {
  781. struct ls_rjt lsRjt; /* Payload for LS_RJT ELS response */
  782. struct serv_parm logi; /* Payload for PLOGI/FLOGI/PDISC/ACC */
  783. LOGO logo; /* Payload for PLOGO/FLOGO/ACC */
  784. PRLI prli; /* Payload for PRLI/ACC */
  785. PRLO prlo; /* Payload for PRLO/ACC */
  786. ADISC adisc; /* Payload for ADISC/ACC */
  787. FARP farp; /* Payload for FARP/ACC */
  788. FAN fan; /* Payload for FAN */
  789. SCR scr; /* Payload for SCR/ACC */
  790. RNID rnid; /* Payload for RNID */
  791. uint8_t pad[128 - 4]; /* Pad out to payload of 128 bytes */
  792. } un;
  793. } ELS_PKT;
  794. /*
  795. * FDMI
  796. * HBA MAnagement Operations Command Codes
  797. */
  798. #define SLI_MGMT_GRHL 0x100 /* Get registered HBA list */
  799. #define SLI_MGMT_GHAT 0x101 /* Get HBA attributes */
  800. #define SLI_MGMT_GRPL 0x102 /* Get registered Port list */
  801. #define SLI_MGMT_GPAT 0x110 /* Get Port attributes */
  802. #define SLI_MGMT_RHBA 0x200 /* Register HBA */
  803. #define SLI_MGMT_RHAT 0x201 /* Register HBA atttributes */
  804. #define SLI_MGMT_RPRT 0x210 /* Register Port */
  805. #define SLI_MGMT_RPA 0x211 /* Register Port attributes */
  806. #define SLI_MGMT_DHBA 0x300 /* De-register HBA */
  807. #define SLI_MGMT_DPRT 0x310 /* De-register Port */
  808. /*
  809. * Management Service Subtypes
  810. */
  811. #define SLI_CT_FDMI_Subtypes 0x10
  812. /*
  813. * HBA Management Service Reject Code
  814. */
  815. #define REJECT_CODE 0x9 /* Unable to perform command request */
  816. /*
  817. * HBA Management Service Reject Reason Code
  818. * Please refer to the Reason Codes above
  819. */
  820. /*
  821. * HBA Attribute Types
  822. */
  823. #define NODE_NAME 0x1
  824. #define MANUFACTURER 0x2
  825. #define SERIAL_NUMBER 0x3
  826. #define MODEL 0x4
  827. #define MODEL_DESCRIPTION 0x5
  828. #define HARDWARE_VERSION 0x6
  829. #define DRIVER_VERSION 0x7
  830. #define OPTION_ROM_VERSION 0x8
  831. #define FIRMWARE_VERSION 0x9
  832. #define OS_NAME_VERSION 0xa
  833. #define MAX_CT_PAYLOAD_LEN 0xb
  834. /*
  835. * Port Attrubute Types
  836. */
  837. #define SUPPORTED_FC4_TYPES 0x1
  838. #define SUPPORTED_SPEED 0x2
  839. #define PORT_SPEED 0x3
  840. #define MAX_FRAME_SIZE 0x4
  841. #define OS_DEVICE_NAME 0x5
  842. #define HOST_NAME 0x6
  843. union AttributesDef {
  844. /* Structure is in Big Endian format */
  845. struct {
  846. uint32_t AttrType:16;
  847. uint32_t AttrLen:16;
  848. } bits;
  849. uint32_t word;
  850. };
  851. /*
  852. * HBA Attribute Entry (8 - 260 bytes)
  853. */
  854. typedef struct {
  855. union AttributesDef ad;
  856. union {
  857. uint32_t VendorSpecific;
  858. uint8_t Manufacturer[64];
  859. uint8_t SerialNumber[64];
  860. uint8_t Model[256];
  861. uint8_t ModelDescription[256];
  862. uint8_t HardwareVersion[256];
  863. uint8_t DriverVersion[256];
  864. uint8_t OptionROMVersion[256];
  865. uint8_t FirmwareVersion[256];
  866. struct lpfc_name NodeName;
  867. uint8_t SupportFC4Types[32];
  868. uint32_t SupportSpeed;
  869. uint32_t PortSpeed;
  870. uint32_t MaxFrameSize;
  871. uint8_t OsDeviceName[256];
  872. uint8_t OsNameVersion[256];
  873. uint32_t MaxCTPayloadLen;
  874. uint8_t HostName[256];
  875. } un;
  876. } ATTRIBUTE_ENTRY;
  877. /*
  878. * HBA Attribute Block
  879. */
  880. typedef struct {
  881. uint32_t EntryCnt; /* Number of HBA attribute entries */
  882. ATTRIBUTE_ENTRY Entry; /* Variable-length array */
  883. } ATTRIBUTE_BLOCK;
  884. /*
  885. * Port Entry
  886. */
  887. typedef struct {
  888. struct lpfc_name PortName;
  889. } PORT_ENTRY;
  890. /*
  891. * HBA Identifier
  892. */
  893. typedef struct {
  894. struct lpfc_name PortName;
  895. } HBA_IDENTIFIER;
  896. /*
  897. * Registered Port List Format
  898. */
  899. typedef struct {
  900. uint32_t EntryCnt;
  901. PORT_ENTRY pe; /* Variable-length array */
  902. } REG_PORT_LIST;
  903. /*
  904. * Register HBA(RHBA)
  905. */
  906. typedef struct {
  907. HBA_IDENTIFIER hi;
  908. REG_PORT_LIST rpl; /* variable-length array */
  909. /* ATTRIBUTE_BLOCK ab; */
  910. } REG_HBA;
  911. /*
  912. * Register HBA Attributes (RHAT)
  913. */
  914. typedef struct {
  915. struct lpfc_name HBA_PortName;
  916. ATTRIBUTE_BLOCK ab;
  917. } REG_HBA_ATTRIBUTE;
  918. /*
  919. * Register Port Attributes (RPA)
  920. */
  921. typedef struct {
  922. struct lpfc_name PortName;
  923. ATTRIBUTE_BLOCK ab;
  924. } REG_PORT_ATTRIBUTE;
  925. /*
  926. * Get Registered HBA List (GRHL) Accept Payload Format
  927. */
  928. typedef struct {
  929. uint32_t HBA__Entry_Cnt; /* Number of Registered HBA Identifiers */
  930. struct lpfc_name HBA_PortName; /* Variable-length array */
  931. } GRHL_ACC_PAYLOAD;
  932. /*
  933. * Get Registered Port List (GRPL) Accept Payload Format
  934. */
  935. typedef struct {
  936. uint32_t RPL_Entry_Cnt; /* Number of Registered Port Entries */
  937. PORT_ENTRY Reg_Port_Entry[1]; /* Variable-length array */
  938. } GRPL_ACC_PAYLOAD;
  939. /*
  940. * Get Port Attributes (GPAT) Accept Payload Format
  941. */
  942. typedef struct {
  943. ATTRIBUTE_BLOCK pab;
  944. } GPAT_ACC_PAYLOAD;
  945. /*
  946. * Begin HBA configuration parameters.
  947. * The PCI configuration register BAR assignments are:
  948. * BAR0, offset 0x10 - SLIM base memory address
  949. * BAR1, offset 0x14 - SLIM base memory high address
  950. * BAR2, offset 0x18 - REGISTER base memory address
  951. * BAR3, offset 0x1c - REGISTER base memory high address
  952. * BAR4, offset 0x20 - BIU I/O registers
  953. * BAR5, offset 0x24 - REGISTER base io high address
  954. */
  955. /* Number of rings currently used and available. */
  956. #define MAX_CONFIGURED_RINGS 3
  957. #define MAX_RINGS 4
  958. /* IOCB / Mailbox is owned by FireFly */
  959. #define OWN_CHIP 1
  960. /* IOCB / Mailbox is owned by Host */
  961. #define OWN_HOST 0
  962. /* Number of 4-byte words in an IOCB. */
  963. #define IOCB_WORD_SZ 8
  964. /* defines for type field in fc header */
  965. #define FC_ELS_DATA 0x1
  966. #define FC_LLC_SNAP 0x5
  967. #define FC_FCP_DATA 0x8
  968. #define FC_COMMON_TRANSPORT_ULP 0x20
  969. /* defines for rctl field in fc header */
  970. #define FC_DEV_DATA 0x0
  971. #define FC_UNSOL_CTL 0x2
  972. #define FC_SOL_CTL 0x3
  973. #define FC_UNSOL_DATA 0x4
  974. #define FC_FCP_CMND 0x6
  975. #define FC_ELS_REQ 0x22
  976. #define FC_ELS_RSP 0x23
  977. /* network headers for Dfctl field */
  978. #define FC_NET_HDR 0x20
  979. /* Start FireFly Register definitions */
  980. #define PCI_VENDOR_ID_EMULEX 0x10df
  981. #define PCI_DEVICE_ID_FIREFLY 0x1ae5
  982. #define PCI_DEVICE_ID_SAT_SMB 0xf011
  983. #define PCI_DEVICE_ID_SAT_MID 0xf015
  984. #define PCI_DEVICE_ID_RFLY 0xf095
  985. #define PCI_DEVICE_ID_PFLY 0xf098
  986. #define PCI_DEVICE_ID_LP101 0xf0a1
  987. #define PCI_DEVICE_ID_TFLY 0xf0a5
  988. #define PCI_DEVICE_ID_BSMB 0xf0d1
  989. #define PCI_DEVICE_ID_BMID 0xf0d5
  990. #define PCI_DEVICE_ID_ZSMB 0xf0e1
  991. #define PCI_DEVICE_ID_ZMID 0xf0e5
  992. #define PCI_DEVICE_ID_NEPTUNE 0xf0f5
  993. #define PCI_DEVICE_ID_NEPTUNE_SCSP 0xf0f6
  994. #define PCI_DEVICE_ID_NEPTUNE_DCSP 0xf0f7
  995. #define PCI_DEVICE_ID_SAT 0xf100
  996. #define PCI_DEVICE_ID_SAT_SCSP 0xf111
  997. #define PCI_DEVICE_ID_SAT_DCSP 0xf112
  998. #define PCI_DEVICE_ID_SUPERFLY 0xf700
  999. #define PCI_DEVICE_ID_DRAGONFLY 0xf800
  1000. #define PCI_DEVICE_ID_CENTAUR 0xf900
  1001. #define PCI_DEVICE_ID_PEGASUS 0xf980
  1002. #define PCI_DEVICE_ID_THOR 0xfa00
  1003. #define PCI_DEVICE_ID_VIPER 0xfb00
  1004. #define PCI_DEVICE_ID_LP10000S 0xfc00
  1005. #define PCI_DEVICE_ID_LP11000S 0xfc10
  1006. #define PCI_DEVICE_ID_LPE11000S 0xfc20
  1007. #define PCI_DEVICE_ID_SAT_S 0xfc40
  1008. #define PCI_DEVICE_ID_HELIOS 0xfd00
  1009. #define PCI_DEVICE_ID_HELIOS_SCSP 0xfd11
  1010. #define PCI_DEVICE_ID_HELIOS_DCSP 0xfd12
  1011. #define PCI_DEVICE_ID_ZEPHYR 0xfe00
  1012. #define PCI_DEVICE_ID_ZEPHYR_SCSP 0xfe11
  1013. #define PCI_DEVICE_ID_ZEPHYR_DCSP 0xfe12
  1014. #define JEDEC_ID_ADDRESS 0x0080001c
  1015. #define FIREFLY_JEDEC_ID 0x1ACC
  1016. #define SUPERFLY_JEDEC_ID 0x0020
  1017. #define DRAGONFLY_JEDEC_ID 0x0021
  1018. #define DRAGONFLY_V2_JEDEC_ID 0x0025
  1019. #define CENTAUR_2G_JEDEC_ID 0x0026
  1020. #define CENTAUR_1G_JEDEC_ID 0x0028
  1021. #define PEGASUS_ORION_JEDEC_ID 0x0036
  1022. #define PEGASUS_JEDEC_ID 0x0038
  1023. #define THOR_JEDEC_ID 0x0012
  1024. #define HELIOS_JEDEC_ID 0x0364
  1025. #define ZEPHYR_JEDEC_ID 0x0577
  1026. #define VIPER_JEDEC_ID 0x4838
  1027. #define SATURN_JEDEC_ID 0x1004
  1028. #define JEDEC_ID_MASK 0x0FFFF000
  1029. #define JEDEC_ID_SHIFT 12
  1030. #define FC_JEDEC_ID(id) ((id & JEDEC_ID_MASK) >> JEDEC_ID_SHIFT)
  1031. typedef struct { /* FireFly BIU registers */
  1032. uint32_t hostAtt; /* See definitions for Host Attention
  1033. register */
  1034. uint32_t chipAtt; /* See definitions for Chip Attention
  1035. register */
  1036. uint32_t hostStatus; /* See definitions for Host Status register */
  1037. uint32_t hostControl; /* See definitions for Host Control register */
  1038. uint32_t buiConfig; /* See definitions for BIU configuration
  1039. register */
  1040. } FF_REGS;
  1041. /* IO Register size in bytes */
  1042. #define FF_REG_AREA_SIZE 256
  1043. /* Host Attention Register */
  1044. #define HA_REG_OFFSET 0 /* Byte offset from register base address */
  1045. #define HA_R0RE_REQ 0x00000001 /* Bit 0 */
  1046. #define HA_R0CE_RSP 0x00000002 /* Bit 1 */
  1047. #define HA_R0ATT 0x00000008 /* Bit 3 */
  1048. #define HA_R1RE_REQ 0x00000010 /* Bit 4 */
  1049. #define HA_R1CE_RSP 0x00000020 /* Bit 5 */
  1050. #define HA_R1ATT 0x00000080 /* Bit 7 */
  1051. #define HA_R2RE_REQ 0x00000100 /* Bit 8 */
  1052. #define HA_R2CE_RSP 0x00000200 /* Bit 9 */
  1053. #define HA_R2ATT 0x00000800 /* Bit 11 */
  1054. #define HA_R3RE_REQ 0x00001000 /* Bit 12 */
  1055. #define HA_R3CE_RSP 0x00002000 /* Bit 13 */
  1056. #define HA_R3ATT 0x00008000 /* Bit 15 */
  1057. #define HA_LATT 0x20000000 /* Bit 29 */
  1058. #define HA_MBATT 0x40000000 /* Bit 30 */
  1059. #define HA_ERATT 0x80000000 /* Bit 31 */
  1060. #define HA_RXRE_REQ 0x00000001 /* Bit 0 */
  1061. #define HA_RXCE_RSP 0x00000002 /* Bit 1 */
  1062. #define HA_RXATT 0x00000008 /* Bit 3 */
  1063. #define HA_RXMASK 0x0000000f
  1064. /* Chip Attention Register */
  1065. #define CA_REG_OFFSET 4 /* Byte offset from register base address */
  1066. #define CA_R0CE_REQ 0x00000001 /* Bit 0 */
  1067. #define CA_R0RE_RSP 0x00000002 /* Bit 1 */
  1068. #define CA_R0ATT 0x00000008 /* Bit 3 */
  1069. #define CA_R1CE_REQ 0x00000010 /* Bit 4 */
  1070. #define CA_R1RE_RSP 0x00000020 /* Bit 5 */
  1071. #define CA_R1ATT 0x00000080 /* Bit 7 */
  1072. #define CA_R2CE_REQ 0x00000100 /* Bit 8 */
  1073. #define CA_R2RE_RSP 0x00000200 /* Bit 9 */
  1074. #define CA_R2ATT 0x00000800 /* Bit 11 */
  1075. #define CA_R3CE_REQ 0x00001000 /* Bit 12 */
  1076. #define CA_R3RE_RSP 0x00002000 /* Bit 13 */
  1077. #define CA_R3ATT 0x00008000 /* Bit 15 */
  1078. #define CA_MBATT 0x40000000 /* Bit 30 */
  1079. /* Host Status Register */
  1080. #define HS_REG_OFFSET 8 /* Byte offset from register base address */
  1081. #define HS_MBRDY 0x00400000 /* Bit 22 */
  1082. #define HS_FFRDY 0x00800000 /* Bit 23 */
  1083. #define HS_FFER8 0x01000000 /* Bit 24 */
  1084. #define HS_FFER7 0x02000000 /* Bit 25 */
  1085. #define HS_FFER6 0x04000000 /* Bit 26 */
  1086. #define HS_FFER5 0x08000000 /* Bit 27 */
  1087. #define HS_FFER4 0x10000000 /* Bit 28 */
  1088. #define HS_FFER3 0x20000000 /* Bit 29 */
  1089. #define HS_FFER2 0x40000000 /* Bit 30 */
  1090. #define HS_FFER1 0x80000000 /* Bit 31 */
  1091. #define HS_CRIT_TEMP 0x00000100 /* Bit 8 */
  1092. #define HS_FFERM 0xFF000100 /* Mask for error bits 31:24 and 8 */
  1093. /* Host Control Register */
  1094. #define HC_REG_OFFSET 12 /* Word offset from register base address */
  1095. #define HC_MBINT_ENA 0x00000001 /* Bit 0 */
  1096. #define HC_R0INT_ENA 0x00000002 /* Bit 1 */
  1097. #define HC_R1INT_ENA 0x00000004 /* Bit 2 */
  1098. #define HC_R2INT_ENA 0x00000008 /* Bit 3 */
  1099. #define HC_R3INT_ENA 0x00000010 /* Bit 4 */
  1100. #define HC_INITHBI 0x02000000 /* Bit 25 */
  1101. #define HC_INITMB 0x04000000 /* Bit 26 */
  1102. #define HC_INITFF 0x08000000 /* Bit 27 */
  1103. #define HC_LAINT_ENA 0x20000000 /* Bit 29 */
  1104. #define HC_ERINT_ENA 0x80000000 /* Bit 31 */
  1105. /* Mailbox Commands */
  1106. #define MBX_SHUTDOWN 0x00 /* terminate testing */
  1107. #define MBX_LOAD_SM 0x01
  1108. #define MBX_READ_NV 0x02
  1109. #define MBX_WRITE_NV 0x03
  1110. #define MBX_RUN_BIU_DIAG 0x04
  1111. #define MBX_INIT_LINK 0x05
  1112. #define MBX_DOWN_LINK 0x06
  1113. #define MBX_CONFIG_LINK 0x07
  1114. #define MBX_CONFIG_RING 0x09
  1115. #define MBX_RESET_RING 0x0A
  1116. #define MBX_READ_CONFIG 0x0B
  1117. #define MBX_READ_RCONFIG 0x0C
  1118. #define MBX_READ_SPARM 0x0D
  1119. #define MBX_READ_STATUS 0x0E
  1120. #define MBX_READ_RPI 0x0F
  1121. #define MBX_READ_XRI 0x10
  1122. #define MBX_READ_REV 0x11
  1123. #define MBX_READ_LNK_STAT 0x12
  1124. #define MBX_REG_LOGIN 0x13
  1125. #define MBX_UNREG_LOGIN 0x14
  1126. #define MBX_READ_LA 0x15
  1127. #define MBX_CLEAR_LA 0x16
  1128. #define MBX_DUMP_MEMORY 0x17
  1129. #define MBX_DUMP_CONTEXT 0x18
  1130. #define MBX_RUN_DIAGS 0x19
  1131. #define MBX_RESTART 0x1A
  1132. #define MBX_UPDATE_CFG 0x1B
  1133. #define MBX_DOWN_LOAD 0x1C
  1134. #define MBX_DEL_LD_ENTRY 0x1D
  1135. #define MBX_RUN_PROGRAM 0x1E
  1136. #define MBX_SET_MASK 0x20
  1137. #define MBX_SET_VARIABLE 0x21
  1138. #define MBX_UNREG_D_ID 0x23
  1139. #define MBX_KILL_BOARD 0x24
  1140. #define MBX_CONFIG_FARP 0x25
  1141. #define MBX_BEACON 0x2A
  1142. #define MBX_HEARTBEAT 0x31
  1143. #define MBX_WRITE_VPARMS 0x32
  1144. #define MBX_ASYNCEVT_ENABLE 0x33
  1145. #define MBX_CONFIG_HBQ 0x7C
  1146. #define MBX_LOAD_AREA 0x81
  1147. #define MBX_RUN_BIU_DIAG64 0x84
  1148. #define MBX_CONFIG_PORT 0x88
  1149. #define MBX_READ_SPARM64 0x8D
  1150. #define MBX_READ_RPI64 0x8F
  1151. #define MBX_REG_LOGIN64 0x93
  1152. #define MBX_READ_LA64 0x95
  1153. #define MBX_REG_VPI 0x96
  1154. #define MBX_UNREG_VPI 0x97
  1155. #define MBX_REG_VNPID 0x96
  1156. #define MBX_UNREG_VNPID 0x97
  1157. #define MBX_WRITE_WWN 0x98
  1158. #define MBX_SET_DEBUG 0x99
  1159. #define MBX_LOAD_EXP_ROM 0x9C
  1160. #define MBX_MAX_CMDS 0x9D
  1161. #define MBX_SLI2_CMD_MASK 0x80
  1162. /* IOCB Commands */
  1163. #define CMD_RCV_SEQUENCE_CX 0x01
  1164. #define CMD_XMIT_SEQUENCE_CR 0x02
  1165. #define CMD_XMIT_SEQUENCE_CX 0x03
  1166. #define CMD_XMIT_BCAST_CN 0x04
  1167. #define CMD_XMIT_BCAST_CX 0x05
  1168. #define CMD_QUE_RING_BUF_CN 0x06
  1169. #define CMD_QUE_XRI_BUF_CX 0x07
  1170. #define CMD_IOCB_CONTINUE_CN 0x08
  1171. #define CMD_RET_XRI_BUF_CX 0x09
  1172. #define CMD_ELS_REQUEST_CR 0x0A
  1173. #define CMD_ELS_REQUEST_CX 0x0B
  1174. #define CMD_RCV_ELS_REQ_CX 0x0D
  1175. #define CMD_ABORT_XRI_CN 0x0E
  1176. #define CMD_ABORT_XRI_CX 0x0F
  1177. #define CMD_CLOSE_XRI_CN 0x10
  1178. #define CMD_CLOSE_XRI_CX 0x11
  1179. #define CMD_CREATE_XRI_CR 0x12
  1180. #define CMD_CREATE_XRI_CX 0x13
  1181. #define CMD_GET_RPI_CN 0x14
  1182. #define CMD_XMIT_ELS_RSP_CX 0x15
  1183. #define CMD_GET_RPI_CR 0x16
  1184. #define CMD_XRI_ABORTED_CX 0x17
  1185. #define CMD_FCP_IWRITE_CR 0x18
  1186. #define CMD_FCP_IWRITE_CX 0x19
  1187. #define CMD_FCP_IREAD_CR 0x1A
  1188. #define CMD_FCP_IREAD_CX 0x1B
  1189. #define CMD_FCP_ICMND_CR 0x1C
  1190. #define CMD_FCP_ICMND_CX 0x1D
  1191. #define CMD_FCP_TSEND_CX 0x1F
  1192. #define CMD_FCP_TRECEIVE_CX 0x21
  1193. #define CMD_FCP_TRSP_CX 0x23
  1194. #define CMD_FCP_AUTO_TRSP_CX 0x29
  1195. #define CMD_ADAPTER_MSG 0x20
  1196. #define CMD_ADAPTER_DUMP 0x22
  1197. /* SLI_2 IOCB Command Set */
  1198. #define CMD_ASYNC_STATUS 0x7C
  1199. #define CMD_RCV_SEQUENCE64_CX 0x81
  1200. #define CMD_XMIT_SEQUENCE64_CR 0x82
  1201. #define CMD_XMIT_SEQUENCE64_CX 0x83
  1202. #define CMD_XMIT_BCAST64_CN 0x84
  1203. #define CMD_XMIT_BCAST64_CX 0x85
  1204. #define CMD_QUE_RING_BUF64_CN 0x86
  1205. #define CMD_QUE_XRI_BUF64_CX 0x87
  1206. #define CMD_IOCB_CONTINUE64_CN 0x88
  1207. #define CMD_RET_XRI_BUF64_CX 0x89
  1208. #define CMD_ELS_REQUEST64_CR 0x8A
  1209. #define CMD_ELS_REQUEST64_CX 0x8B
  1210. #define CMD_ABORT_MXRI64_CN 0x8C
  1211. #define CMD_RCV_ELS_REQ64_CX 0x8D
  1212. #define CMD_XMIT_ELS_RSP64_CX 0x95
  1213. #define CMD_FCP_IWRITE64_CR 0x98
  1214. #define CMD_FCP_IWRITE64_CX 0x99
  1215. #define CMD_FCP_IREAD64_CR 0x9A
  1216. #define CMD_FCP_IREAD64_CX 0x9B
  1217. #define CMD_FCP_ICMND64_CR 0x9C
  1218. #define CMD_FCP_ICMND64_CX 0x9D
  1219. #define CMD_FCP_TSEND64_CX 0x9F
  1220. #define CMD_FCP_TRECEIVE64_CX 0xA1
  1221. #define CMD_FCP_TRSP64_CX 0xA3
  1222. #define CMD_QUE_XRI64_CX 0xB3
  1223. #define CMD_IOCB_RCV_SEQ64_CX 0xB5
  1224. #define CMD_IOCB_RCV_ELS64_CX 0xB7
  1225. #define CMD_IOCB_RET_XRI64_CX 0xB9
  1226. #define CMD_IOCB_RCV_CONT64_CX 0xBB
  1227. #define CMD_GEN_REQUEST64_CR 0xC2
  1228. #define CMD_GEN_REQUEST64_CX 0xC3
  1229. /* Unhandled SLI-3 Commands */
  1230. #define CMD_IOCB_XMIT_MSEQ64_CR 0xB0
  1231. #define CMD_IOCB_XMIT_MSEQ64_CX 0xB1
  1232. #define CMD_IOCB_RCV_SEQ_LIST64_CX 0xC1
  1233. #define CMD_IOCB_RCV_ELS_LIST64_CX 0xCD
  1234. #define CMD_IOCB_CLOSE_EXTENDED_CN 0xB6
  1235. #define CMD_IOCB_ABORT_EXTENDED_CN 0xBA
  1236. #define CMD_IOCB_RET_HBQE64_CN 0xCA
  1237. #define CMD_IOCB_FCP_IBIDIR64_CR 0xAC
  1238. #define CMD_IOCB_FCP_IBIDIR64_CX 0xAD
  1239. #define CMD_IOCB_FCP_ITASKMGT64_CX 0xAF
  1240. #define CMD_IOCB_LOGENTRY_CN 0x94
  1241. #define CMD_IOCB_LOGENTRY_ASYNC_CN 0x96
  1242. #define CMD_MAX_IOCB_CMD 0xE6
  1243. #define CMD_IOCB_MASK 0xff
  1244. #define MAX_MSG_DATA 28 /* max msg data in CMD_ADAPTER_MSG
  1245. iocb */
  1246. #define LPFC_MAX_ADPTMSG 32 /* max msg data */
  1247. /*
  1248. * Define Status
  1249. */
  1250. #define MBX_SUCCESS 0
  1251. #define MBXERR_NUM_RINGS 1
  1252. #define MBXERR_NUM_IOCBS 2
  1253. #define MBXERR_IOCBS_EXCEEDED 3
  1254. #define MBXERR_BAD_RING_NUMBER 4
  1255. #define MBXERR_MASK_ENTRIES_RANGE 5
  1256. #define MBXERR_MASKS_EXCEEDED 6
  1257. #define MBXERR_BAD_PROFILE 7
  1258. #define MBXERR_BAD_DEF_CLASS 8
  1259. #define MBXERR_BAD_MAX_RESPONDER 9
  1260. #define MBXERR_BAD_MAX_ORIGINATOR 10
  1261. #define MBXERR_RPI_REGISTERED 11
  1262. #define MBXERR_RPI_FULL 12
  1263. #define MBXERR_NO_RESOURCES 13
  1264. #define MBXERR_BAD_RCV_LENGTH 14
  1265. #define MBXERR_DMA_ERROR 15
  1266. #define MBXERR_ERROR 16
  1267. #define MBX_NOT_FINISHED 255
  1268. #define MBX_BUSY 0xffffff /* Attempted cmd to busy Mailbox */
  1269. #define MBX_TIMEOUT 0xfffffe /* time-out expired waiting for */
  1270. #define TEMPERATURE_OFFSET 0xB0 /* Slim offset for critical temperature event */
  1271. /*
  1272. * Begin Structure Definitions for Mailbox Commands
  1273. */
  1274. typedef struct {
  1275. #ifdef __BIG_ENDIAN_BITFIELD
  1276. uint8_t tval;
  1277. uint8_t tmask;
  1278. uint8_t rval;
  1279. uint8_t rmask;
  1280. #else /* __LITTLE_ENDIAN_BITFIELD */
  1281. uint8_t rmask;
  1282. uint8_t rval;
  1283. uint8_t tmask;
  1284. uint8_t tval;
  1285. #endif
  1286. } RR_REG;
  1287. struct ulp_bde {
  1288. uint32_t bdeAddress;
  1289. #ifdef __BIG_ENDIAN_BITFIELD
  1290. uint32_t bdeReserved:4;
  1291. uint32_t bdeAddrHigh:4;
  1292. uint32_t bdeSize:24;
  1293. #else /* __LITTLE_ENDIAN_BITFIELD */
  1294. uint32_t bdeSize:24;
  1295. uint32_t bdeAddrHigh:4;
  1296. uint32_t bdeReserved:4;
  1297. #endif
  1298. };
  1299. struct ulp_bde64 { /* SLI-2 */
  1300. union ULP_BDE_TUS {
  1301. uint32_t w;
  1302. struct {
  1303. #ifdef __BIG_ENDIAN_BITFIELD
  1304. uint32_t bdeFlags:8; /* BDE Flags 0 IS A SUPPORTED
  1305. VALUE !! */
  1306. uint32_t bdeSize:24; /* Size of buffer (in bytes) */
  1307. #else /* __LITTLE_ENDIAN_BITFIELD */
  1308. uint32_t bdeSize:24; /* Size of buffer (in bytes) */
  1309. uint32_t bdeFlags:8; /* BDE Flags 0 IS A SUPPORTED
  1310. VALUE !! */
  1311. #endif
  1312. #define BUFF_USE_RSVD 0x01 /* bdeFlags */
  1313. #define BUFF_USE_INTRPT 0x02 /* Not Implemented with LP6000 */
  1314. #define BUFF_USE_CMND 0x04 /* Optional, 1=cmd/rsp 0=data buffer */
  1315. #define BUFF_USE_RCV 0x08 /* "" "", 1=rcv buffer, 0=xmit
  1316. buffer */
  1317. #define BUFF_TYPE_32BIT 0x10 /* "" "", 1=32 bit addr 0=64 bit
  1318. addr */
  1319. #define BUFF_TYPE_SPECIAL 0x20 /* Not Implemented with LP6000 */
  1320. #define BUFF_TYPE_BDL 0x40 /* Optional, may be set in BDL */
  1321. #define BUFF_TYPE_INVALID 0x80 /* "" "" */
  1322. } f;
  1323. } tus;
  1324. uint32_t addrLow;
  1325. uint32_t addrHigh;
  1326. };
  1327. #define BDE64_SIZE_WORD 0
  1328. #define BPL64_SIZE_WORD 0x40
  1329. typedef struct ULP_BDL { /* SLI-2 */
  1330. #ifdef __BIG_ENDIAN_BITFIELD
  1331. uint32_t bdeFlags:8; /* BDL Flags */
  1332. uint32_t bdeSize:24; /* Size of BDL array in host memory (bytes) */
  1333. #else /* __LITTLE_ENDIAN_BITFIELD */
  1334. uint32_t bdeSize:24; /* Size of BDL array in host memory (bytes) */
  1335. uint32_t bdeFlags:8; /* BDL Flags */
  1336. #endif
  1337. uint32_t addrLow; /* Address 0:31 */
  1338. uint32_t addrHigh; /* Address 32:63 */
  1339. uint32_t ulpIoTag32; /* Can be used for 32 bit I/O Tag */
  1340. } ULP_BDL;
  1341. /* Structure for MB Command LOAD_SM and DOWN_LOAD */
  1342. typedef struct {
  1343. #ifdef __BIG_ENDIAN_BITFIELD
  1344. uint32_t rsvd2:25;
  1345. uint32_t acknowledgment:1;
  1346. uint32_t version:1;
  1347. uint32_t erase_or_prog:1;
  1348. uint32_t update_flash:1;
  1349. uint32_t update_ram:1;
  1350. uint32_t method:1;
  1351. uint32_t load_cmplt:1;
  1352. #else /* __LITTLE_ENDIAN_BITFIELD */
  1353. uint32_t load_cmplt:1;
  1354. uint32_t method:1;
  1355. uint32_t update_ram:1;
  1356. uint32_t update_flash:1;
  1357. uint32_t erase_or_prog:1;
  1358. uint32_t version:1;
  1359. uint32_t acknowledgment:1;
  1360. uint32_t rsvd2:25;
  1361. #endif
  1362. uint32_t dl_to_adr_low;
  1363. uint32_t dl_to_adr_high;
  1364. uint32_t dl_len;
  1365. union {
  1366. uint32_t dl_from_mbx_offset;
  1367. struct ulp_bde dl_from_bde;
  1368. struct ulp_bde64 dl_from_bde64;
  1369. } un;
  1370. } LOAD_SM_VAR;
  1371. /* Structure for MB Command READ_NVPARM (02) */
  1372. typedef struct {
  1373. uint32_t rsvd1[3]; /* Read as all one's */
  1374. uint32_t rsvd2; /* Read as all zero's */
  1375. uint32_t portname[2]; /* N_PORT name */
  1376. uint32_t nodename[2]; /* NODE name */
  1377. #ifdef __BIG_ENDIAN_BITFIELD
  1378. uint32_t pref_DID:24;
  1379. uint32_t hardAL_PA:8;
  1380. #else /* __LITTLE_ENDIAN_BITFIELD */
  1381. uint32_t hardAL_PA:8;
  1382. uint32_t pref_DID:24;
  1383. #endif
  1384. uint32_t rsvd3[21]; /* Read as all one's */
  1385. } READ_NV_VAR;
  1386. /* Structure for MB Command WRITE_NVPARMS (03) */
  1387. typedef struct {
  1388. uint32_t rsvd1[3]; /* Must be all one's */
  1389. uint32_t rsvd2; /* Must be all zero's */
  1390. uint32_t portname[2]; /* N_PORT name */
  1391. uint32_t nodename[2]; /* NODE name */
  1392. #ifdef __BIG_ENDIAN_BITFIELD
  1393. uint32_t pref_DID:24;
  1394. uint32_t hardAL_PA:8;
  1395. #else /* __LITTLE_ENDIAN_BITFIELD */
  1396. uint32_t hardAL_PA:8;
  1397. uint32_t pref_DID:24;
  1398. #endif
  1399. uint32_t rsvd3[21]; /* Must be all one's */
  1400. } WRITE_NV_VAR;
  1401. /* Structure for MB Command RUN_BIU_DIAG (04) */
  1402. /* Structure for MB Command RUN_BIU_DIAG64 (0x84) */
  1403. typedef struct {
  1404. uint32_t rsvd1;
  1405. union {
  1406. struct {
  1407. struct ulp_bde xmit_bde;
  1408. struct ulp_bde rcv_bde;
  1409. } s1;
  1410. struct {
  1411. struct ulp_bde64 xmit_bde64;
  1412. struct ulp_bde64 rcv_bde64;
  1413. } s2;
  1414. } un;
  1415. } BIU_DIAG_VAR;
  1416. /* Structure for MB Command INIT_LINK (05) */
  1417. typedef struct {
  1418. #ifdef __BIG_ENDIAN_BITFIELD
  1419. uint32_t rsvd1:24;
  1420. uint32_t lipsr_AL_PA:8; /* AL_PA to issue Lip Selective Reset to */
  1421. #else /* __LITTLE_ENDIAN_BITFIELD */
  1422. uint32_t lipsr_AL_PA:8; /* AL_PA to issue Lip Selective Reset to */
  1423. uint32_t rsvd1:24;
  1424. #endif
  1425. #ifdef __BIG_ENDIAN_BITFIELD
  1426. uint8_t fabric_AL_PA; /* If using a Fabric Assigned AL_PA */
  1427. uint8_t rsvd2;
  1428. uint16_t link_flags;
  1429. #else /* __LITTLE_ENDIAN_BITFIELD */
  1430. uint16_t link_flags;
  1431. uint8_t rsvd2;
  1432. uint8_t fabric_AL_PA; /* If using a Fabric Assigned AL_PA */
  1433. #endif
  1434. #define FLAGS_LOCAL_LB 0x01 /* link_flags (=1) ENDEC loopback */
  1435. #define FLAGS_TOPOLOGY_MODE_LOOP_PT 0x00 /* Attempt loop then pt-pt */
  1436. #define FLAGS_TOPOLOGY_MODE_PT_PT 0x02 /* Attempt pt-pt only */
  1437. #define FLAGS_TOPOLOGY_MODE_LOOP 0x04 /* Attempt loop only */
  1438. #define FLAGS_TOPOLOGY_MODE_PT_LOOP 0x06 /* Attempt pt-pt then loop */
  1439. #define FLAGS_UNREG_LOGIN_ALL 0x08 /* UNREG_LOGIN all on link down */
  1440. #define FLAGS_LIRP_LILP 0x80 /* LIRP / LILP is disabled */
  1441. #define FLAGS_TOPOLOGY_FAILOVER 0x0400 /* Bit 10 */
  1442. #define FLAGS_LINK_SPEED 0x0800 /* Bit 11 */
  1443. #define FLAGS_IMED_ABORT 0x04000 /* Bit 14 */
  1444. uint32_t link_speed;
  1445. #define LINK_SPEED_AUTO 0 /* Auto selection */
  1446. #define LINK_SPEED_1G 1 /* 1 Gigabaud */
  1447. #define LINK_SPEED_2G 2 /* 2 Gigabaud */
  1448. #define LINK_SPEED_4G 4 /* 4 Gigabaud */
  1449. #define LINK_SPEED_8G 8 /* 8 Gigabaud */
  1450. #define LINK_SPEED_10G 16 /* 10 Gigabaud */
  1451. } INIT_LINK_VAR;
  1452. /* Structure for MB Command DOWN_LINK (06) */
  1453. typedef struct {
  1454. uint32_t rsvd1;
  1455. } DOWN_LINK_VAR;
  1456. /* Structure for MB Command CONFIG_LINK (07) */
  1457. typedef struct {
  1458. #ifdef __BIG_ENDIAN_BITFIELD
  1459. uint32_t cr:1;
  1460. uint32_t ci:1;
  1461. uint32_t cr_delay:6;
  1462. uint32_t cr_count:8;
  1463. uint32_t rsvd1:8;
  1464. uint32_t MaxBBC:8;
  1465. #else /* __LITTLE_ENDIAN_BITFIELD */
  1466. uint32_t MaxBBC:8;
  1467. uint32_t rsvd1:8;
  1468. uint32_t cr_count:8;
  1469. uint32_t cr_delay:6;
  1470. uint32_t ci:1;
  1471. uint32_t cr:1;
  1472. #endif
  1473. uint32_t myId;
  1474. uint32_t rsvd2;
  1475. uint32_t edtov;
  1476. uint32_t arbtov;
  1477. uint32_t ratov;
  1478. uint32_t rttov;
  1479. uint32_t altov;
  1480. uint32_t crtov;
  1481. uint32_t citov;
  1482. #ifdef __BIG_ENDIAN_BITFIELD
  1483. uint32_t rrq_enable:1;
  1484. uint32_t rrq_immed:1;
  1485. uint32_t rsvd4:29;
  1486. uint32_t ack0_enable:1;
  1487. #else /* __LITTLE_ENDIAN_BITFIELD */
  1488. uint32_t ack0_enable:1;
  1489. uint32_t rsvd4:29;
  1490. uint32_t rrq_immed:1;
  1491. uint32_t rrq_enable:1;
  1492. #endif
  1493. } CONFIG_LINK;
  1494. /* Structure for MB Command PART_SLIM (08)
  1495. * will be removed since SLI1 is no longer supported!
  1496. */
  1497. typedef struct {
  1498. #ifdef __BIG_ENDIAN_BITFIELD
  1499. uint16_t offCiocb;
  1500. uint16_t numCiocb;
  1501. uint16_t offRiocb;
  1502. uint16_t numRiocb;
  1503. #else /* __LITTLE_ENDIAN_BITFIELD */
  1504. uint16_t numCiocb;
  1505. uint16_t offCiocb;
  1506. uint16_t numRiocb;
  1507. uint16_t offRiocb;
  1508. #endif
  1509. } RING_DEF;
  1510. typedef struct {
  1511. #ifdef __BIG_ENDIAN_BITFIELD
  1512. uint32_t unused1:24;
  1513. uint32_t numRing:8;
  1514. #else /* __LITTLE_ENDIAN_BITFIELD */
  1515. uint32_t numRing:8;
  1516. uint32_t unused1:24;
  1517. #endif
  1518. RING_DEF ringdef[4];
  1519. uint32_t hbainit;
  1520. } PART_SLIM_VAR;
  1521. /* Structure for MB Command CONFIG_RING (09) */
  1522. typedef struct {
  1523. #ifdef __BIG_ENDIAN_BITFIELD
  1524. uint32_t unused2:6;
  1525. uint32_t recvSeq:1;
  1526. uint32_t recvNotify:1;
  1527. uint32_t numMask:8;
  1528. uint32_t profile:8;
  1529. uint32_t unused1:4;
  1530. uint32_t ring:4;
  1531. #else /* __LITTLE_ENDIAN_BITFIELD */
  1532. uint32_t ring:4;
  1533. uint32_t unused1:4;
  1534. uint32_t profile:8;
  1535. uint32_t numMask:8;
  1536. uint32_t recvNotify:1;
  1537. uint32_t recvSeq:1;
  1538. uint32_t unused2:6;
  1539. #endif
  1540. #ifdef __BIG_ENDIAN_BITFIELD
  1541. uint16_t maxRespXchg;
  1542. uint16_t maxOrigXchg;
  1543. #else /* __LITTLE_ENDIAN_BITFIELD */
  1544. uint16_t maxOrigXchg;
  1545. uint16_t maxRespXchg;
  1546. #endif
  1547. RR_REG rrRegs[6];
  1548. } CONFIG_RING_VAR;
  1549. /* Structure for MB Command RESET_RING (10) */
  1550. typedef struct {
  1551. uint32_t ring_no;
  1552. } RESET_RING_VAR;
  1553. /* Structure for MB Command READ_CONFIG (11) */
  1554. typedef struct {
  1555. #ifdef __BIG_ENDIAN_BITFIELD
  1556. uint32_t cr:1;
  1557. uint32_t ci:1;
  1558. uint32_t cr_delay:6;
  1559. uint32_t cr_count:8;
  1560. uint32_t InitBBC:8;
  1561. uint32_t MaxBBC:8;
  1562. #else /* __LITTLE_ENDIAN_BITFIELD */
  1563. uint32_t MaxBBC:8;
  1564. uint32_t InitBBC:8;
  1565. uint32_t cr_count:8;
  1566. uint32_t cr_delay:6;
  1567. uint32_t ci:1;
  1568. uint32_t cr:1;
  1569. #endif
  1570. #ifdef __BIG_ENDIAN_BITFIELD
  1571. uint32_t topology:8;
  1572. uint32_t myDid:24;
  1573. #else /* __LITTLE_ENDIAN_BITFIELD */
  1574. uint32_t myDid:24;
  1575. uint32_t topology:8;
  1576. #endif
  1577. /* Defines for topology (defined previously) */
  1578. #ifdef __BIG_ENDIAN_BITFIELD
  1579. uint32_t AR:1;
  1580. uint32_t IR:1;
  1581. uint32_t rsvd1:29;
  1582. uint32_t ack0:1;
  1583. #else /* __LITTLE_ENDIAN_BITFIELD */
  1584. uint32_t ack0:1;
  1585. uint32_t rsvd1:29;
  1586. uint32_t IR:1;
  1587. uint32_t AR:1;
  1588. #endif
  1589. uint32_t edtov;
  1590. uint32_t arbtov;
  1591. uint32_t ratov;
  1592. uint32_t rttov;
  1593. uint32_t altov;
  1594. uint32_t lmt;
  1595. #define LMT_RESERVED 0x000 /* Not used */
  1596. #define LMT_1Gb 0x004
  1597. #define LMT_2Gb 0x008
  1598. #define LMT_4Gb 0x040
  1599. #define LMT_8Gb 0x080
  1600. #define LMT_10Gb 0x100
  1601. uint32_t rsvd2;
  1602. uint32_t rsvd3;
  1603. uint32_t max_xri;
  1604. uint32_t max_iocb;
  1605. uint32_t max_rpi;
  1606. uint32_t avail_xri;
  1607. uint32_t avail_iocb;
  1608. uint32_t avail_rpi;
  1609. uint32_t max_vpi;
  1610. uint32_t rsvd4;
  1611. uint32_t rsvd5;
  1612. uint32_t avail_vpi;
  1613. } READ_CONFIG_VAR;
  1614. /* Structure for MB Command READ_RCONFIG (12) */
  1615. typedef struct {
  1616. #ifdef __BIG_ENDIAN_BITFIELD
  1617. uint32_t rsvd2:7;
  1618. uint32_t recvNotify:1;
  1619. uint32_t numMask:8;
  1620. uint32_t profile:8;
  1621. uint32_t rsvd1:4;
  1622. uint32_t ring:4;
  1623. #else /* __LITTLE_ENDIAN_BITFIELD */
  1624. uint32_t ring:4;
  1625. uint32_t rsvd1:4;
  1626. uint32_t profile:8;
  1627. uint32_t numMask:8;
  1628. uint32_t recvNotify:1;
  1629. uint32_t rsvd2:7;
  1630. #endif
  1631. #ifdef __BIG_ENDIAN_BITFIELD
  1632. uint16_t maxResp;
  1633. uint16_t maxOrig;
  1634. #else /* __LITTLE_ENDIAN_BITFIELD */
  1635. uint16_t maxOrig;
  1636. uint16_t maxResp;
  1637. #endif
  1638. RR_REG rrRegs[6];
  1639. #ifdef __BIG_ENDIAN_BITFIELD
  1640. uint16_t cmdRingOffset;
  1641. uint16_t cmdEntryCnt;
  1642. uint16_t rspRingOffset;
  1643. uint16_t rspEntryCnt;
  1644. uint16_t nextCmdOffset;
  1645. uint16_t rsvd3;
  1646. uint16_t nextRspOffset;
  1647. uint16_t rsvd4;
  1648. #else /* __LITTLE_ENDIAN_BITFIELD */
  1649. uint16_t cmdEntryCnt;
  1650. uint16_t cmdRingOffset;
  1651. uint16_t rspEntryCnt;
  1652. uint16_t rspRingOffset;
  1653. uint16_t rsvd3;
  1654. uint16_t nextCmdOffset;
  1655. uint16_t rsvd4;
  1656. uint16_t nextRspOffset;
  1657. #endif
  1658. } READ_RCONF_VAR;
  1659. /* Structure for MB Command READ_SPARM (13) */
  1660. /* Structure for MB Command READ_SPARM64 (0x8D) */
  1661. typedef struct {
  1662. uint32_t rsvd1;
  1663. uint32_t rsvd2;
  1664. union {
  1665. struct ulp_bde sp; /* This BDE points to struct serv_parm
  1666. structure */
  1667. struct ulp_bde64 sp64;
  1668. } un;
  1669. #ifdef __BIG_ENDIAN_BITFIELD
  1670. uint16_t rsvd3;
  1671. uint16_t vpi;
  1672. #else /* __LITTLE_ENDIAN_BITFIELD */
  1673. uint16_t vpi;
  1674. uint16_t rsvd3;
  1675. #endif
  1676. } READ_SPARM_VAR;
  1677. /* Structure for MB Command READ_STATUS (14) */
  1678. typedef struct {
  1679. #ifdef __BIG_ENDIAN_BITFIELD
  1680. uint32_t rsvd1:31;
  1681. uint32_t clrCounters:1;
  1682. uint16_t activeXriCnt;
  1683. uint16_t activeRpiCnt;
  1684. #else /* __LITTLE_ENDIAN_BITFIELD */
  1685. uint32_t clrCounters:1;
  1686. uint32_t rsvd1:31;
  1687. uint16_t activeRpiCnt;
  1688. uint16_t activeXriCnt;
  1689. #endif
  1690. uint32_t xmitByteCnt;
  1691. uint32_t rcvByteCnt;
  1692. uint32_t xmitFrameCnt;
  1693. uint32_t rcvFrameCnt;
  1694. uint32_t xmitSeqCnt;
  1695. uint32_t rcvSeqCnt;
  1696. uint32_t totalOrigExchanges;
  1697. uint32_t totalRespExchanges;
  1698. uint32_t rcvPbsyCnt;
  1699. uint32_t rcvFbsyCnt;
  1700. } READ_STATUS_VAR;
  1701. /* Structure for MB Command READ_RPI (15) */
  1702. /* Structure for MB Command READ_RPI64 (0x8F) */
  1703. typedef struct {
  1704. #ifdef __BIG_ENDIAN_BITFIELD
  1705. uint16_t nextRpi;
  1706. uint16_t reqRpi;
  1707. uint32_t rsvd2:8;
  1708. uint32_t DID:24;
  1709. #else /* __LITTLE_ENDIAN_BITFIELD */
  1710. uint16_t reqRpi;
  1711. uint16_t nextRpi;
  1712. uint32_t DID:24;
  1713. uint32_t rsvd2:8;
  1714. #endif
  1715. union {
  1716. struct ulp_bde sp;
  1717. struct ulp_bde64 sp64;
  1718. } un;
  1719. } READ_RPI_VAR;
  1720. /* Structure for MB Command READ_XRI (16) */
  1721. typedef struct {
  1722. #ifdef __BIG_ENDIAN_BITFIELD
  1723. uint16_t nextXri;
  1724. uint16_t reqXri;
  1725. uint16_t rsvd1;
  1726. uint16_t rpi;
  1727. uint32_t rsvd2:8;
  1728. uint32_t DID:24;
  1729. uint32_t rsvd3:8;
  1730. uint32_t SID:24;
  1731. uint32_t rsvd4;
  1732. uint8_t seqId;
  1733. uint8_t rsvd5;
  1734. uint16_t seqCount;
  1735. uint16_t oxId;
  1736. uint16_t rxId;
  1737. uint32_t rsvd6:30;
  1738. uint32_t si:1;
  1739. uint32_t exchOrig:1;
  1740. #else /* __LITTLE_ENDIAN_BITFIELD */
  1741. uint16_t reqXri;
  1742. uint16_t nextXri;
  1743. uint16_t rpi;
  1744. uint16_t rsvd1;
  1745. uint32_t DID:24;
  1746. uint32_t rsvd2:8;
  1747. uint32_t SID:24;
  1748. uint32_t rsvd3:8;
  1749. uint32_t rsvd4;
  1750. uint16_t seqCount;
  1751. uint8_t rsvd5;
  1752. uint8_t seqId;
  1753. uint16_t rxId;
  1754. uint16_t oxId;
  1755. uint32_t exchOrig:1;
  1756. uint32_t si:1;
  1757. uint32_t rsvd6:30;
  1758. #endif
  1759. } READ_XRI_VAR;
  1760. /* Structure for MB Command READ_REV (17) */
  1761. typedef struct {
  1762. #ifdef __BIG_ENDIAN_BITFIELD
  1763. uint32_t cv:1;
  1764. uint32_t rr:1;
  1765. uint32_t rsvd2:2;
  1766. uint32_t v3req:1;
  1767. uint32_t v3rsp:1;
  1768. uint32_t rsvd1:25;
  1769. uint32_t rv:1;
  1770. #else /* __LITTLE_ENDIAN_BITFIELD */
  1771. uint32_t rv:1;
  1772. uint32_t rsvd1:25;
  1773. uint32_t v3rsp:1;
  1774. uint32_t v3req:1;
  1775. uint32_t rsvd2:2;
  1776. uint32_t rr:1;
  1777. uint32_t cv:1;
  1778. #endif
  1779. uint32_t biuRev;
  1780. uint32_t smRev;
  1781. union {
  1782. uint32_t smFwRev;
  1783. struct {
  1784. #ifdef __BIG_ENDIAN_BITFIELD
  1785. uint8_t ProgType;
  1786. uint8_t ProgId;
  1787. uint16_t ProgVer:4;
  1788. uint16_t ProgRev:4;
  1789. uint16_t ProgFixLvl:2;
  1790. uint16_t ProgDistType:2;
  1791. uint16_t DistCnt:4;
  1792. #else /* __LITTLE_ENDIAN_BITFIELD */
  1793. uint16_t DistCnt:4;
  1794. uint16_t ProgDistType:2;
  1795. uint16_t ProgFixLvl:2;
  1796. uint16_t ProgRev:4;
  1797. uint16_t ProgVer:4;
  1798. uint8_t ProgId;
  1799. uint8_t ProgType;
  1800. #endif
  1801. } b;
  1802. } un;
  1803. uint32_t endecRev;
  1804. #ifdef __BIG_ENDIAN_BITFIELD
  1805. uint8_t feaLevelHigh;
  1806. uint8_t feaLevelLow;
  1807. uint8_t fcphHigh;
  1808. uint8_t fcphLow;
  1809. #else /* __LITTLE_ENDIAN_BITFIELD */
  1810. uint8_t fcphLow;
  1811. uint8_t fcphHigh;
  1812. uint8_t feaLevelLow;
  1813. uint8_t feaLevelHigh;
  1814. #endif
  1815. uint32_t postKernRev;
  1816. uint32_t opFwRev;
  1817. uint8_t opFwName[16];
  1818. uint32_t sli1FwRev;
  1819. uint8_t sli1FwName[16];
  1820. uint32_t sli2FwRev;
  1821. uint8_t sli2FwName[16];
  1822. uint32_t sli3Feat;
  1823. uint32_t RandomData[6];
  1824. } READ_REV_VAR;
  1825. /* Structure for MB Command READ_LINK_STAT (18) */
  1826. typedef struct {
  1827. uint32_t rsvd1;
  1828. uint32_t linkFailureCnt;
  1829. uint32_t lossSyncCnt;
  1830. uint32_t lossSignalCnt;
  1831. uint32_t primSeqErrCnt;
  1832. uint32_t invalidXmitWord;
  1833. uint32_t crcCnt;
  1834. uint32_t primSeqTimeout;
  1835. uint32_t elasticOverrun;
  1836. uint32_t arbTimeout;
  1837. } READ_LNK_VAR;
  1838. /* Structure for MB Command REG_LOGIN (19) */
  1839. /* Structure for MB Command REG_LOGIN64 (0x93) */
  1840. typedef struct {
  1841. #ifdef __BIG_ENDIAN_BITFIELD
  1842. uint16_t rsvd1;
  1843. uint16_t rpi;
  1844. uint32_t rsvd2:8;
  1845. uint32_t did:24;
  1846. #else /* __LITTLE_ENDIAN_BITFIELD */
  1847. uint16_t rpi;
  1848. uint16_t rsvd1;
  1849. uint32_t did:24;
  1850. uint32_t rsvd2:8;
  1851. #endif
  1852. union {
  1853. struct ulp_bde sp;
  1854. struct ulp_bde64 sp64;
  1855. } un;
  1856. #ifdef __BIG_ENDIAN_BITFIELD
  1857. uint16_t rsvd6;
  1858. uint16_t vpi;
  1859. #else /* __LITTLE_ENDIAN_BITFIELD */
  1860. uint16_t vpi;
  1861. uint16_t rsvd6;
  1862. #endif
  1863. } REG_LOGIN_VAR;
  1864. /* Word 30 contents for REG_LOGIN */
  1865. typedef union {
  1866. struct {
  1867. #ifdef __BIG_ENDIAN_BITFIELD
  1868. uint16_t rsvd1:12;
  1869. uint16_t wd30_class:4;
  1870. uint16_t xri;
  1871. #else /* __LITTLE_ENDIAN_BITFIELD */
  1872. uint16_t xri;
  1873. uint16_t wd30_class:4;
  1874. uint16_t rsvd1:12;
  1875. #endif
  1876. } f;
  1877. uint32_t word;
  1878. } REG_WD30;
  1879. /* Structure for MB Command UNREG_LOGIN (20) */
  1880. typedef struct {
  1881. #ifdef __BIG_ENDIAN_BITFIELD
  1882. uint16_t rsvd1;
  1883. uint16_t rpi;
  1884. uint32_t rsvd2;
  1885. uint32_t rsvd3;
  1886. uint32_t rsvd4;
  1887. uint32_t rsvd5;
  1888. uint16_t rsvd6;
  1889. uint16_t vpi;
  1890. #else /* __LITTLE_ENDIAN_BITFIELD */
  1891. uint16_t rpi;
  1892. uint16_t rsvd1;
  1893. uint32_t rsvd2;
  1894. uint32_t rsvd3;
  1895. uint32_t rsvd4;
  1896. uint32_t rsvd5;
  1897. uint16_t vpi;
  1898. uint16_t rsvd6;
  1899. #endif
  1900. } UNREG_LOGIN_VAR;
  1901. /* Structure for MB Command REG_VPI (0x96) */
  1902. typedef struct {
  1903. #ifdef __BIG_ENDIAN_BITFIELD
  1904. uint32_t rsvd1;
  1905. uint32_t rsvd2:8;
  1906. uint32_t sid:24;
  1907. uint32_t rsvd3;
  1908. uint32_t rsvd4;
  1909. uint32_t rsvd5;
  1910. uint16_t rsvd6;
  1911. uint16_t vpi;
  1912. #else /* __LITTLE_ENDIAN */
  1913. uint32_t rsvd1;
  1914. uint32_t sid:24;
  1915. uint32_t rsvd2:8;
  1916. uint32_t rsvd3;
  1917. uint32_t rsvd4;
  1918. uint32_t rsvd5;
  1919. uint16_t vpi;
  1920. uint16_t rsvd6;
  1921. #endif
  1922. } REG_VPI_VAR;
  1923. /* Structure for MB Command UNREG_VPI (0x97) */
  1924. typedef struct {
  1925. uint32_t rsvd1;
  1926. uint32_t rsvd2;
  1927. uint32_t rsvd3;
  1928. uint32_t rsvd4;
  1929. uint32_t rsvd5;
  1930. #ifdef __BIG_ENDIAN_BITFIELD
  1931. uint16_t rsvd6;
  1932. uint16_t vpi;
  1933. #else /* __LITTLE_ENDIAN */
  1934. uint16_t vpi;
  1935. uint16_t rsvd6;
  1936. #endif
  1937. } UNREG_VPI_VAR;
  1938. /* Structure for MB Command UNREG_D_ID (0x23) */
  1939. typedef struct {
  1940. uint32_t did;
  1941. uint32_t rsvd2;
  1942. uint32_t rsvd3;
  1943. uint32_t rsvd4;
  1944. uint32_t rsvd5;
  1945. #ifdef __BIG_ENDIAN_BITFIELD
  1946. uint16_t rsvd6;
  1947. uint16_t vpi;
  1948. #else
  1949. uint16_t vpi;
  1950. uint16_t rsvd6;
  1951. #endif
  1952. } UNREG_D_ID_VAR;
  1953. /* Structure for MB Command READ_LA (21) */
  1954. /* Structure for MB Command READ_LA64 (0x95) */
  1955. typedef struct {
  1956. uint32_t eventTag; /* Event tag */
  1957. #ifdef __BIG_ENDIAN_BITFIELD
  1958. uint32_t rsvd1:22;
  1959. uint32_t pb:1;
  1960. uint32_t il:1;
  1961. uint32_t attType:8;
  1962. #else /* __LITTLE_ENDIAN_BITFIELD */
  1963. uint32_t attType:8;
  1964. uint32_t il:1;
  1965. uint32_t pb:1;
  1966. uint32_t rsvd1:22;
  1967. #endif
  1968. #define AT_RESERVED 0x00 /* Reserved - attType */
  1969. #define AT_LINK_UP 0x01 /* Link is up */
  1970. #define AT_LINK_DOWN 0x02 /* Link is down */
  1971. #ifdef __BIG_ENDIAN_BITFIELD
  1972. uint8_t granted_AL_PA;
  1973. uint8_t lipAlPs;
  1974. uint8_t lipType;
  1975. uint8_t topology;
  1976. #else /* __LITTLE_ENDIAN_BITFIELD */
  1977. uint8_t topology;
  1978. uint8_t lipType;
  1979. uint8_t lipAlPs;
  1980. uint8_t granted_AL_PA;
  1981. #endif
  1982. #define TOPOLOGY_PT_PT 0x01 /* Topology is pt-pt / pt-fabric */
  1983. #define TOPOLOGY_LOOP 0x02 /* Topology is FC-AL */
  1984. union {
  1985. struct ulp_bde lilpBde; /* This BDE points to a 128 byte buffer
  1986. to */
  1987. /* store the LILP AL_PA position map into */
  1988. struct ulp_bde64 lilpBde64;
  1989. } un;
  1990. #ifdef __BIG_ENDIAN_BITFIELD
  1991. uint32_t Dlu:1;
  1992. uint32_t Dtf:1;
  1993. uint32_t Drsvd2:14;
  1994. uint32_t DlnkSpeed:8;
  1995. uint32_t DnlPort:4;
  1996. uint32_t Dtx:2;
  1997. uint32_t Drx:2;
  1998. #else /* __LITTLE_ENDIAN_BITFIELD */
  1999. uint32_t Drx:2;
  2000. uint32_t Dtx:2;
  2001. uint32_t DnlPort:4;
  2002. uint32_t DlnkSpeed:8;
  2003. uint32_t Drsvd2:14;
  2004. uint32_t Dtf:1;
  2005. uint32_t Dlu:1;
  2006. #endif
  2007. #ifdef __BIG_ENDIAN_BITFIELD
  2008. uint32_t Ulu:1;
  2009. uint32_t Utf:1;
  2010. uint32_t Ursvd2:14;
  2011. uint32_t UlnkSpeed:8;
  2012. uint32_t UnlPort:4;
  2013. uint32_t Utx:2;
  2014. uint32_t Urx:2;
  2015. #else /* __LITTLE_ENDIAN_BITFIELD */
  2016. uint32_t Urx:2;
  2017. uint32_t Utx:2;
  2018. uint32_t UnlPort:4;
  2019. uint32_t UlnkSpeed:8;
  2020. uint32_t Ursvd2:14;
  2021. uint32_t Utf:1;
  2022. uint32_t Ulu:1;
  2023. #endif
  2024. #define LA_UNKNW_LINK 0x0 /* lnkSpeed */
  2025. #define LA_1GHZ_LINK 0x04 /* lnkSpeed */
  2026. #define LA_2GHZ_LINK 0x08 /* lnkSpeed */
  2027. #define LA_4GHZ_LINK 0x10 /* lnkSpeed */
  2028. #define LA_8GHZ_LINK 0x20 /* lnkSpeed */
  2029. #define LA_10GHZ_LINK 0x40 /* lnkSpeed */
  2030. } READ_LA_VAR;
  2031. /* Structure for MB Command CLEAR_LA (22) */
  2032. typedef struct {
  2033. uint32_t eventTag; /* Event tag */
  2034. uint32_t rsvd1;
  2035. } CLEAR_LA_VAR;
  2036. /* Structure for MB Command DUMP */
  2037. typedef struct {
  2038. #ifdef __BIG_ENDIAN_BITFIELD
  2039. uint32_t rsvd:25;
  2040. uint32_t ra:1;
  2041. uint32_t co:1;
  2042. uint32_t cv:1;
  2043. uint32_t type:4;
  2044. uint32_t entry_index:16;
  2045. uint32_t region_id:16;
  2046. #else /* __LITTLE_ENDIAN_BITFIELD */
  2047. uint32_t type:4;
  2048. uint32_t cv:1;
  2049. uint32_t co:1;
  2050. uint32_t ra:1;
  2051. uint32_t rsvd:25;
  2052. uint32_t region_id:16;
  2053. uint32_t entry_index:16;
  2054. #endif
  2055. uint32_t rsvd1;
  2056. uint32_t word_cnt;
  2057. uint32_t resp_offset;
  2058. } DUMP_VAR;
  2059. #define DMP_MEM_REG 0x1
  2060. #define DMP_NV_PARAMS 0x2
  2061. #define DMP_REGION_VPD 0xe
  2062. #define DMP_VPD_SIZE 0x400 /* maximum amount of VPD */
  2063. #define DMP_RSP_OFFSET 0x14 /* word 5 contains first word of rsp */
  2064. #define DMP_RSP_SIZE 0x6C /* maximum of 27 words of rsp data */
  2065. struct hbq_mask {
  2066. #ifdef __BIG_ENDIAN_BITFIELD
  2067. uint8_t tmatch;
  2068. uint8_t tmask;
  2069. uint8_t rctlmatch;
  2070. uint8_t rctlmask;
  2071. #else /* __LITTLE_ENDIAN */
  2072. uint8_t rctlmask;
  2073. uint8_t rctlmatch;
  2074. uint8_t tmask;
  2075. uint8_t tmatch;
  2076. #endif
  2077. };
  2078. /* Structure for MB Command CONFIG_HBQ (7c) */
  2079. struct config_hbq_var {
  2080. #ifdef __BIG_ENDIAN_BITFIELD
  2081. uint32_t rsvd1 :7;
  2082. uint32_t recvNotify :1; /* Receive Notification */
  2083. uint32_t numMask :8; /* # Mask Entries */
  2084. uint32_t profile :8; /* Selection Profile */
  2085. uint32_t rsvd2 :8;
  2086. #else /* __LITTLE_ENDIAN */
  2087. uint32_t rsvd2 :8;
  2088. uint32_t profile :8; /* Selection Profile */
  2089. uint32_t numMask :8; /* # Mask Entries */
  2090. uint32_t recvNotify :1; /* Receive Notification */
  2091. uint32_t rsvd1 :7;
  2092. #endif
  2093. #ifdef __BIG_ENDIAN_BITFIELD
  2094. uint32_t hbqId :16;
  2095. uint32_t rsvd3 :12;
  2096. uint32_t ringMask :4;
  2097. #else /* __LITTLE_ENDIAN */
  2098. uint32_t ringMask :4;
  2099. uint32_t rsvd3 :12;
  2100. uint32_t hbqId :16;
  2101. #endif
  2102. #ifdef __BIG_ENDIAN_BITFIELD
  2103. uint32_t entry_count :16;
  2104. uint32_t rsvd4 :8;
  2105. uint32_t headerLen :8;
  2106. #else /* __LITTLE_ENDIAN */
  2107. uint32_t headerLen :8;
  2108. uint32_t rsvd4 :8;
  2109. uint32_t entry_count :16;
  2110. #endif
  2111. uint32_t hbqaddrLow;
  2112. uint32_t hbqaddrHigh;
  2113. #ifdef __BIG_ENDIAN_BITFIELD
  2114. uint32_t rsvd5 :31;
  2115. uint32_t logEntry :1;
  2116. #else /* __LITTLE_ENDIAN */
  2117. uint32_t logEntry :1;
  2118. uint32_t rsvd5 :31;
  2119. #endif
  2120. uint32_t rsvd6; /* w7 */
  2121. uint32_t rsvd7; /* w8 */
  2122. uint32_t rsvd8; /* w9 */
  2123. struct hbq_mask hbqMasks[6];
  2124. union {
  2125. uint32_t allprofiles[12];
  2126. struct {
  2127. #ifdef __BIG_ENDIAN_BITFIELD
  2128. uint32_t seqlenoff :16;
  2129. uint32_t maxlen :16;
  2130. #else /* __LITTLE_ENDIAN */
  2131. uint32_t maxlen :16;
  2132. uint32_t seqlenoff :16;
  2133. #endif
  2134. #ifdef __BIG_ENDIAN_BITFIELD
  2135. uint32_t rsvd1 :28;
  2136. uint32_t seqlenbcnt :4;
  2137. #else /* __LITTLE_ENDIAN */
  2138. uint32_t seqlenbcnt :4;
  2139. uint32_t rsvd1 :28;
  2140. #endif
  2141. uint32_t rsvd[10];
  2142. } profile2;
  2143. struct {
  2144. #ifdef __BIG_ENDIAN_BITFIELD
  2145. uint32_t seqlenoff :16;
  2146. uint32_t maxlen :16;
  2147. #else /* __LITTLE_ENDIAN */
  2148. uint32_t maxlen :16;
  2149. uint32_t seqlenoff :16;
  2150. #endif
  2151. #ifdef __BIG_ENDIAN_BITFIELD
  2152. uint32_t cmdcodeoff :28;
  2153. uint32_t rsvd1 :12;
  2154. uint32_t seqlenbcnt :4;
  2155. #else /* __LITTLE_ENDIAN */
  2156. uint32_t seqlenbcnt :4;
  2157. uint32_t rsvd1 :12;
  2158. uint32_t cmdcodeoff :28;
  2159. #endif
  2160. uint32_t cmdmatch[8];
  2161. uint32_t rsvd[2];
  2162. } profile3;
  2163. struct {
  2164. #ifdef __BIG_ENDIAN_BITFIELD
  2165. uint32_t seqlenoff :16;
  2166. uint32_t maxlen :16;
  2167. #else /* __LITTLE_ENDIAN */
  2168. uint32_t maxlen :16;
  2169. uint32_t seqlenoff :16;
  2170. #endif
  2171. #ifdef __BIG_ENDIAN_BITFIELD
  2172. uint32_t cmdcodeoff :28;
  2173. uint32_t rsvd1 :12;
  2174. uint32_t seqlenbcnt :4;
  2175. #else /* __LITTLE_ENDIAN */
  2176. uint32_t seqlenbcnt :4;
  2177. uint32_t rsvd1 :12;
  2178. uint32_t cmdcodeoff :28;
  2179. #endif
  2180. uint32_t cmdmatch[8];
  2181. uint32_t rsvd[2];
  2182. } profile5;
  2183. } profiles;
  2184. };
  2185. /* Structure for MB Command CONFIG_PORT (0x88) */
  2186. typedef struct {
  2187. #ifdef __BIG_ENDIAN_BITFIELD
  2188. uint32_t cBE : 1;
  2189. uint32_t cET : 1;
  2190. uint32_t cHpcb : 1;
  2191. uint32_t cMA : 1;
  2192. uint32_t sli_mode : 4;
  2193. uint32_t pcbLen : 24; /* bit 23:0 of memory based port
  2194. * config block */
  2195. #else /* __LITTLE_ENDIAN */
  2196. uint32_t pcbLen : 24; /* bit 23:0 of memory based port
  2197. * config block */
  2198. uint32_t sli_mode : 4;
  2199. uint32_t cMA : 1;
  2200. uint32_t cHpcb : 1;
  2201. uint32_t cET : 1;
  2202. uint32_t cBE : 1;
  2203. #endif
  2204. uint32_t pcbLow; /* bit 31:0 of memory based port config block */
  2205. uint32_t pcbHigh; /* bit 63:32 of memory based port config block */
  2206. uint32_t hbainit[6];
  2207. #ifdef __BIG_ENDIAN_BITFIELD
  2208. uint32_t rsvd : 24; /* Reserved */
  2209. uint32_t cmv : 1; /* Configure Max VPIs */
  2210. uint32_t ccrp : 1; /* Config Command Ring Polling */
  2211. uint32_t csah : 1; /* Configure Synchronous Abort Handling */
  2212. uint32_t chbs : 1; /* Cofigure Host Backing store */
  2213. uint32_t cinb : 1; /* Enable Interrupt Notification Block */
  2214. uint32_t cerbm : 1; /* Configure Enhanced Receive Buf Mgmt */
  2215. uint32_t cmx : 1; /* Configure Max XRIs */
  2216. uint32_t cmr : 1; /* Configure Max RPIs */
  2217. #else /* __LITTLE_ENDIAN */
  2218. uint32_t cmr : 1; /* Configure Max RPIs */
  2219. uint32_t cmx : 1; /* Configure Max XRIs */
  2220. uint32_t cerbm : 1; /* Configure Enhanced Receive Buf Mgmt */
  2221. uint32_t cinb : 1; /* Enable Interrupt Notification Block */
  2222. uint32_t chbs : 1; /* Cofigure Host Backing store */
  2223. uint32_t csah : 1; /* Configure Synchronous Abort Handling */
  2224. uint32_t ccrp : 1; /* Config Command Ring Polling */
  2225. uint32_t cmv : 1; /* Configure Max VPIs */
  2226. uint32_t rsvd : 24; /* Reserved */
  2227. #endif
  2228. #ifdef __BIG_ENDIAN_BITFIELD
  2229. uint32_t rsvd2 : 24; /* Reserved */
  2230. uint32_t gmv : 1; /* Grant Max VPIs */
  2231. uint32_t gcrp : 1; /* Grant Command Ring Polling */
  2232. uint32_t gsah : 1; /* Grant Synchronous Abort Handling */
  2233. uint32_t ghbs : 1; /* Grant Host Backing Store */
  2234. uint32_t ginb : 1; /* Grant Interrupt Notification Block */
  2235. uint32_t gerbm : 1; /* Grant ERBM Request */
  2236. uint32_t gmx : 1; /* Grant Max XRIs */
  2237. uint32_t gmr : 1; /* Grant Max RPIs */
  2238. #else /* __LITTLE_ENDIAN */
  2239. uint32_t gmr : 1; /* Grant Max RPIs */
  2240. uint32_t gmx : 1; /* Grant Max XRIs */
  2241. uint32_t gerbm : 1; /* Grant ERBM Request */
  2242. uint32_t ginb : 1; /* Grant Interrupt Notification Block */
  2243. uint32_t ghbs : 1; /* Grant Host Backing Store */
  2244. uint32_t gsah : 1; /* Grant Synchronous Abort Handling */
  2245. uint32_t gcrp : 1; /* Grant Command Ring Polling */
  2246. uint32_t gmv : 1; /* Grant Max VPIs */
  2247. uint32_t rsvd2 : 24; /* Reserved */
  2248. #endif
  2249. #ifdef __BIG_ENDIAN_BITFIELD
  2250. uint32_t max_rpi : 16; /* Max RPIs Port should configure */
  2251. uint32_t max_xri : 16; /* Max XRIs Port should configure */
  2252. #else /* __LITTLE_ENDIAN */
  2253. uint32_t max_xri : 16; /* Max XRIs Port should configure */
  2254. uint32_t max_rpi : 16; /* Max RPIs Port should configure */
  2255. #endif
  2256. #ifdef __BIG_ENDIAN_BITFIELD
  2257. uint32_t max_hbq : 16; /* Max HBQs Host expect to configure */
  2258. uint32_t rsvd3 : 16; /* Max HBQs Host expect to configure */
  2259. #else /* __LITTLE_ENDIAN */
  2260. uint32_t rsvd3 : 16; /* Max HBQs Host expect to configure */
  2261. uint32_t max_hbq : 16; /* Max HBQs Host expect to configure */
  2262. #endif
  2263. uint32_t rsvd4; /* Reserved */
  2264. #ifdef __BIG_ENDIAN_BITFIELD
  2265. uint32_t rsvd5 : 16; /* Reserved */
  2266. uint32_t max_vpi : 16; /* Max number of virt N-Ports */
  2267. #else /* __LITTLE_ENDIAN */
  2268. uint32_t max_vpi : 16; /* Max number of virt N-Ports */
  2269. uint32_t rsvd5 : 16; /* Reserved */
  2270. #endif
  2271. } CONFIG_PORT_VAR;
  2272. /* SLI-2 Port Control Block */
  2273. /* SLIM POINTER */
  2274. #define SLIMOFF 0x30 /* WORD */
  2275. typedef struct _SLI2_RDSC {
  2276. uint32_t cmdEntries;
  2277. uint32_t cmdAddrLow;
  2278. uint32_t cmdAddrHigh;
  2279. uint32_t rspEntries;
  2280. uint32_t rspAddrLow;
  2281. uint32_t rspAddrHigh;
  2282. } SLI2_RDSC;
  2283. typedef struct _PCB {
  2284. #ifdef __BIG_ENDIAN_BITFIELD
  2285. uint32_t type:8;
  2286. #define TYPE_NATIVE_SLI2 0x01;
  2287. uint32_t feature:8;
  2288. #define FEATURE_INITIAL_SLI2 0x01;
  2289. uint32_t rsvd:12;
  2290. uint32_t maxRing:4;
  2291. #else /* __LITTLE_ENDIAN_BITFIELD */
  2292. uint32_t maxRing:4;
  2293. uint32_t rsvd:12;
  2294. uint32_t feature:8;
  2295. #define FEATURE_INITIAL_SLI2 0x01;
  2296. uint32_t type:8;
  2297. #define TYPE_NATIVE_SLI2 0x01;
  2298. #endif
  2299. uint32_t mailBoxSize;
  2300. uint32_t mbAddrLow;
  2301. uint32_t mbAddrHigh;
  2302. uint32_t hgpAddrLow;
  2303. uint32_t hgpAddrHigh;
  2304. uint32_t pgpAddrLow;
  2305. uint32_t pgpAddrHigh;
  2306. SLI2_RDSC rdsc[MAX_RINGS];
  2307. } PCB_t;
  2308. /* NEW_FEATURE */
  2309. typedef struct {
  2310. #ifdef __BIG_ENDIAN_BITFIELD
  2311. uint32_t rsvd0:27;
  2312. uint32_t discardFarp:1;
  2313. uint32_t IPEnable:1;
  2314. uint32_t nodeName:1;
  2315. uint32_t portName:1;
  2316. uint32_t filterEnable:1;
  2317. #else /* __LITTLE_ENDIAN_BITFIELD */
  2318. uint32_t filterEnable:1;
  2319. uint32_t portName:1;
  2320. uint32_t nodeName:1;
  2321. uint32_t IPEnable:1;
  2322. uint32_t discardFarp:1;
  2323. uint32_t rsvd:27;
  2324. #endif
  2325. uint8_t portname[8]; /* Used to be struct lpfc_name */
  2326. uint8_t nodename[8];
  2327. uint32_t rsvd1;
  2328. uint32_t rsvd2;
  2329. uint32_t rsvd3;
  2330. uint32_t IPAddress;
  2331. } CONFIG_FARP_VAR;
  2332. /* Structure for MB Command MBX_ASYNCEVT_ENABLE (0x33) */
  2333. typedef struct {
  2334. #ifdef __BIG_ENDIAN_BITFIELD
  2335. uint32_t rsvd:30;
  2336. uint32_t ring:2; /* Ring for ASYNC_EVENT iocb Bits 0-1*/
  2337. #else /* __LITTLE_ENDIAN */
  2338. uint32_t ring:2; /* Ring for ASYNC_EVENT iocb Bits 0-1*/
  2339. uint32_t rsvd:30;
  2340. #endif
  2341. } ASYNCEVT_ENABLE_VAR;
  2342. /* Union of all Mailbox Command types */
  2343. #define MAILBOX_CMD_WSIZE 32
  2344. #define MAILBOX_CMD_SIZE (MAILBOX_CMD_WSIZE * sizeof(uint32_t))
  2345. typedef union {
  2346. uint32_t varWords[MAILBOX_CMD_WSIZE - 1]; /* first word is type/
  2347. * feature/max ring number
  2348. */
  2349. LOAD_SM_VAR varLdSM; /* cmd = 1 (LOAD_SM) */
  2350. READ_NV_VAR varRDnvp; /* cmd = 2 (READ_NVPARMS) */
  2351. WRITE_NV_VAR varWTnvp; /* cmd = 3 (WRITE_NVPARMS) */
  2352. BIU_DIAG_VAR varBIUdiag; /* cmd = 4 (RUN_BIU_DIAG) */
  2353. INIT_LINK_VAR varInitLnk; /* cmd = 5 (INIT_LINK) */
  2354. DOWN_LINK_VAR varDwnLnk; /* cmd = 6 (DOWN_LINK) */
  2355. CONFIG_LINK varCfgLnk; /* cmd = 7 (CONFIG_LINK) */
  2356. PART_SLIM_VAR varSlim; /* cmd = 8 (PART_SLIM) */
  2357. CONFIG_RING_VAR varCfgRing; /* cmd = 9 (CONFIG_RING) */
  2358. RESET_RING_VAR varRstRing; /* cmd = 10 (RESET_RING) */
  2359. READ_CONFIG_VAR varRdConfig; /* cmd = 11 (READ_CONFIG) */
  2360. READ_RCONF_VAR varRdRConfig; /* cmd = 12 (READ_RCONFIG) */
  2361. READ_SPARM_VAR varRdSparm; /* cmd = 13 (READ_SPARM(64)) */
  2362. READ_STATUS_VAR varRdStatus; /* cmd = 14 (READ_STATUS) */
  2363. READ_RPI_VAR varRdRPI; /* cmd = 15 (READ_RPI(64)) */
  2364. READ_XRI_VAR varRdXRI; /* cmd = 16 (READ_XRI) */
  2365. READ_REV_VAR varRdRev; /* cmd = 17 (READ_REV) */
  2366. READ_LNK_VAR varRdLnk; /* cmd = 18 (READ_LNK_STAT) */
  2367. REG_LOGIN_VAR varRegLogin; /* cmd = 19 (REG_LOGIN(64)) */
  2368. UNREG_LOGIN_VAR varUnregLogin; /* cmd = 20 (UNREG_LOGIN) */
  2369. READ_LA_VAR varReadLA; /* cmd = 21 (READ_LA(64)) */
  2370. CLEAR_LA_VAR varClearLA; /* cmd = 22 (CLEAR_LA) */
  2371. DUMP_VAR varDmp; /* Warm Start DUMP mbx cmd */
  2372. UNREG_D_ID_VAR varUnregDID; /* cmd = 0x23 (UNREG_D_ID) */
  2373. CONFIG_FARP_VAR varCfgFarp; /* cmd = 0x25 (CONFIG_FARP)
  2374. * NEW_FEATURE
  2375. */
  2376. struct config_hbq_var varCfgHbq;/* cmd = 0x7c (CONFIG_HBQ) */
  2377. CONFIG_PORT_VAR varCfgPort; /* cmd = 0x88 (CONFIG_PORT) */
  2378. REG_VPI_VAR varRegVpi; /* cmd = 0x96 (REG_VPI) */
  2379. UNREG_VPI_VAR varUnregVpi; /* cmd = 0x97 (UNREG_VPI) */
  2380. ASYNCEVT_ENABLE_VAR varCfgAsyncEvent; /*cmd = x33 (CONFIG_ASYNC) */
  2381. } MAILVARIANTS;
  2382. /*
  2383. * SLI-2 specific structures
  2384. */
  2385. struct lpfc_hgp {
  2386. __le32 cmdPutInx;
  2387. __le32 rspGetInx;
  2388. };
  2389. struct lpfc_pgp {
  2390. __le32 cmdGetInx;
  2391. __le32 rspPutInx;
  2392. };
  2393. struct sli2_desc {
  2394. uint32_t unused1[16];
  2395. struct lpfc_hgp host[MAX_RINGS];
  2396. struct lpfc_pgp port[MAX_RINGS];
  2397. };
  2398. struct sli3_desc {
  2399. struct lpfc_hgp host[MAX_RINGS];
  2400. uint32_t reserved[8];
  2401. uint32_t hbq_put[16];
  2402. };
  2403. struct sli3_pgp {
  2404. struct lpfc_pgp port[MAX_RINGS];
  2405. uint32_t hbq_get[16];
  2406. };
  2407. typedef union {
  2408. struct sli2_desc s2;
  2409. struct sli3_desc s3;
  2410. struct sli3_pgp s3_pgp;
  2411. } SLI_VAR;
  2412. typedef struct {
  2413. #ifdef __BIG_ENDIAN_BITFIELD
  2414. uint16_t mbxStatus;
  2415. uint8_t mbxCommand;
  2416. uint8_t mbxReserved:6;
  2417. uint8_t mbxHc:1;
  2418. uint8_t mbxOwner:1; /* Low order bit first word */
  2419. #else /* __LITTLE_ENDIAN_BITFIELD */
  2420. uint8_t mbxOwner:1; /* Low order bit first word */
  2421. uint8_t mbxHc:1;
  2422. uint8_t mbxReserved:6;
  2423. uint8_t mbxCommand;
  2424. uint16_t mbxStatus;
  2425. #endif
  2426. MAILVARIANTS un;
  2427. SLI_VAR us;
  2428. } MAILBOX_t;
  2429. /*
  2430. * Begin Structure Definitions for IOCB Commands
  2431. */
  2432. typedef struct {
  2433. #ifdef __BIG_ENDIAN_BITFIELD
  2434. uint8_t statAction;
  2435. uint8_t statRsn;
  2436. uint8_t statBaExp;
  2437. uint8_t statLocalError;
  2438. #else /* __LITTLE_ENDIAN_BITFIELD */
  2439. uint8_t statLocalError;
  2440. uint8_t statBaExp;
  2441. uint8_t statRsn;
  2442. uint8_t statAction;
  2443. #endif
  2444. /* statRsn P/F_RJT reason codes */
  2445. #define RJT_BAD_D_ID 0x01 /* Invalid D_ID field */
  2446. #define RJT_BAD_S_ID 0x02 /* Invalid S_ID field */
  2447. #define RJT_UNAVAIL_TEMP 0x03 /* N_Port unavailable temp. */
  2448. #define RJT_UNAVAIL_PERM 0x04 /* N_Port unavailable perm. */
  2449. #define RJT_UNSUP_CLASS 0x05 /* Class not supported */
  2450. #define RJT_DELIM_ERR 0x06 /* Delimiter usage error */
  2451. #define RJT_UNSUP_TYPE 0x07 /* Type not supported */
  2452. #define RJT_BAD_CONTROL 0x08 /* Invalid link conrtol */
  2453. #define RJT_BAD_RCTL 0x09 /* R_CTL invalid */
  2454. #define RJT_BAD_FCTL 0x0A /* F_CTL invalid */
  2455. #define RJT_BAD_OXID 0x0B /* OX_ID invalid */
  2456. #define RJT_BAD_RXID 0x0C /* RX_ID invalid */
  2457. #define RJT_BAD_SEQID 0x0D /* SEQ_ID invalid */
  2458. #define RJT_BAD_DFCTL 0x0E /* DF_CTL invalid */
  2459. #define RJT_BAD_SEQCNT 0x0F /* SEQ_CNT invalid */
  2460. #define RJT_BAD_PARM 0x10 /* Param. field invalid */
  2461. #define RJT_XCHG_ERR 0x11 /* Exchange error */
  2462. #define RJT_PROT_ERR 0x12 /* Protocol error */
  2463. #define RJT_BAD_LENGTH 0x13 /* Invalid Length */
  2464. #define RJT_UNEXPECTED_ACK 0x14 /* Unexpected ACK */
  2465. #define RJT_LOGIN_REQUIRED 0x16 /* Login required */
  2466. #define RJT_TOO_MANY_SEQ 0x17 /* Excessive sequences */
  2467. #define RJT_XCHG_NOT_STRT 0x18 /* Exchange not started */
  2468. #define RJT_UNSUP_SEC_HDR 0x19 /* Security hdr not supported */
  2469. #define RJT_UNAVAIL_PATH 0x1A /* Fabric Path not available */
  2470. #define RJT_VENDOR_UNIQUE 0xFF /* Vendor unique error */
  2471. #define IOERR_SUCCESS 0x00 /* statLocalError */
  2472. #define IOERR_MISSING_CONTINUE 0x01
  2473. #define IOERR_SEQUENCE_TIMEOUT 0x02
  2474. #define IOERR_INTERNAL_ERROR 0x03
  2475. #define IOERR_INVALID_RPI 0x04
  2476. #define IOERR_NO_XRI 0x05
  2477. #define IOERR_ILLEGAL_COMMAND 0x06
  2478. #define IOERR_XCHG_DROPPED 0x07
  2479. #define IOERR_ILLEGAL_FIELD 0x08
  2480. #define IOERR_BAD_CONTINUE 0x09
  2481. #define IOERR_TOO_MANY_BUFFERS 0x0A
  2482. #define IOERR_RCV_BUFFER_WAITING 0x0B
  2483. #define IOERR_NO_CONNECTION 0x0C
  2484. #define IOERR_TX_DMA_FAILED 0x0D
  2485. #define IOERR_RX_DMA_FAILED 0x0E
  2486. #define IOERR_ILLEGAL_FRAME 0x0F
  2487. #define IOERR_EXTRA_DATA 0x10
  2488. #define IOERR_NO_RESOURCES 0x11
  2489. #define IOERR_RESERVED 0x12
  2490. #define IOERR_ILLEGAL_LENGTH 0x13
  2491. #define IOERR_UNSUPPORTED_FEATURE 0x14
  2492. #define IOERR_ABORT_IN_PROGRESS 0x15
  2493. #define IOERR_ABORT_REQUESTED 0x16
  2494. #define IOERR_RECEIVE_BUFFER_TIMEOUT 0x17
  2495. #define IOERR_LOOP_OPEN_FAILURE 0x18
  2496. #define IOERR_RING_RESET 0x19
  2497. #define IOERR_LINK_DOWN 0x1A
  2498. #define IOERR_CORRUPTED_DATA 0x1B
  2499. #define IOERR_CORRUPTED_RPI 0x1C
  2500. #define IOERR_OUT_OF_ORDER_DATA 0x1D
  2501. #define IOERR_OUT_OF_ORDER_ACK 0x1E
  2502. #define IOERR_DUP_FRAME 0x1F
  2503. #define IOERR_LINK_CONTROL_FRAME 0x20 /* ACK_N received */
  2504. #define IOERR_BAD_HOST_ADDRESS 0x21
  2505. #define IOERR_RCV_HDRBUF_WAITING 0x22
  2506. #define IOERR_MISSING_HDR_BUFFER 0x23
  2507. #define IOERR_MSEQ_CHAIN_CORRUPTED 0x24
  2508. #define IOERR_ABORTMULT_REQUESTED 0x25
  2509. #define IOERR_BUFFER_SHORTAGE 0x28
  2510. #define IOERR_DEFAULT 0x29
  2511. #define IOERR_CNT 0x2A
  2512. #define IOERR_DRVR_MASK 0x100
  2513. #define IOERR_SLI_DOWN 0x101 /* ulpStatus - Driver defined */
  2514. #define IOERR_SLI_BRESET 0x102
  2515. #define IOERR_SLI_ABORTED 0x103
  2516. } PARM_ERR;
  2517. typedef union {
  2518. struct {
  2519. #ifdef __BIG_ENDIAN_BITFIELD
  2520. uint8_t Rctl; /* R_CTL field */
  2521. uint8_t Type; /* TYPE field */
  2522. uint8_t Dfctl; /* DF_CTL field */
  2523. uint8_t Fctl; /* Bits 0-7 of IOCB word 5 */
  2524. #else /* __LITTLE_ENDIAN_BITFIELD */
  2525. uint8_t Fctl; /* Bits 0-7 of IOCB word 5 */
  2526. uint8_t Dfctl; /* DF_CTL field */
  2527. uint8_t Type; /* TYPE field */
  2528. uint8_t Rctl; /* R_CTL field */
  2529. #endif
  2530. #define BC 0x02 /* Broadcast Received - Fctl */
  2531. #define SI 0x04 /* Sequence Initiative */
  2532. #define LA 0x08 /* Ignore Link Attention state */
  2533. #define LS 0x80 /* Last Sequence */
  2534. } hcsw;
  2535. uint32_t reserved;
  2536. } WORD5;
  2537. /* IOCB Command template for a generic response */
  2538. typedef struct {
  2539. uint32_t reserved[4];
  2540. PARM_ERR perr;
  2541. } GENERIC_RSP;
  2542. /* IOCB Command template for XMIT / XMIT_BCAST / RCV_SEQUENCE / XMIT_ELS */
  2543. typedef struct {
  2544. struct ulp_bde xrsqbde[2];
  2545. uint32_t xrsqRo; /* Starting Relative Offset */
  2546. WORD5 w5; /* Header control/status word */
  2547. } XR_SEQ_FIELDS;
  2548. /* IOCB Command template for ELS_REQUEST */
  2549. typedef struct {
  2550. struct ulp_bde elsReq;
  2551. struct ulp_bde elsRsp;
  2552. #ifdef __BIG_ENDIAN_BITFIELD
  2553. uint32_t word4Rsvd:7;
  2554. uint32_t fl:1;
  2555. uint32_t myID:24;
  2556. uint32_t word5Rsvd:8;
  2557. uint32_t remoteID:24;
  2558. #else /* __LITTLE_ENDIAN_BITFIELD */
  2559. uint32_t myID:24;
  2560. uint32_t fl:1;
  2561. uint32_t word4Rsvd:7;
  2562. uint32_t remoteID:24;
  2563. uint32_t word5Rsvd:8;
  2564. #endif
  2565. } ELS_REQUEST;
  2566. /* IOCB Command template for RCV_ELS_REQ */
  2567. typedef struct {
  2568. struct ulp_bde elsReq[2];
  2569. uint32_t parmRo;
  2570. #ifdef __BIG_ENDIAN_BITFIELD
  2571. uint32_t word5Rsvd:8;
  2572. uint32_t remoteID:24;
  2573. #else /* __LITTLE_ENDIAN_BITFIELD */
  2574. uint32_t remoteID:24;
  2575. uint32_t word5Rsvd:8;
  2576. #endif
  2577. } RCV_ELS_REQ;
  2578. /* IOCB Command template for ABORT / CLOSE_XRI */
  2579. typedef struct {
  2580. uint32_t rsvd[3];
  2581. uint32_t abortType;
  2582. #define ABORT_TYPE_ABTX 0x00000000
  2583. #define ABORT_TYPE_ABTS 0x00000001
  2584. uint32_t parm;
  2585. #ifdef __BIG_ENDIAN_BITFIELD
  2586. uint16_t abortContextTag; /* ulpContext from command to abort/close */
  2587. uint16_t abortIoTag; /* ulpIoTag from command to abort/close */
  2588. #else /* __LITTLE_ENDIAN_BITFIELD */
  2589. uint16_t abortIoTag; /* ulpIoTag from command to abort/close */
  2590. uint16_t abortContextTag; /* ulpContext from command to abort/close */
  2591. #endif
  2592. } AC_XRI;
  2593. /* IOCB Command template for ABORT_MXRI64 */
  2594. typedef struct {
  2595. uint32_t rsvd[3];
  2596. uint32_t abortType;
  2597. uint32_t parm;
  2598. uint32_t iotag32;
  2599. } A_MXRI64;
  2600. /* IOCB Command template for GET_RPI */
  2601. typedef struct {
  2602. uint32_t rsvd[4];
  2603. uint32_t parmRo;
  2604. #ifdef __BIG_ENDIAN_BITFIELD
  2605. uint32_t word5Rsvd:8;
  2606. uint32_t remoteID:24;
  2607. #else /* __LITTLE_ENDIAN_BITFIELD */
  2608. uint32_t remoteID:24;
  2609. uint32_t word5Rsvd:8;
  2610. #endif
  2611. } GET_RPI;
  2612. /* IOCB Command template for all FCP Initiator commands */
  2613. typedef struct {
  2614. struct ulp_bde fcpi_cmnd; /* FCP_CMND payload descriptor */
  2615. struct ulp_bde fcpi_rsp; /* Rcv buffer */
  2616. uint32_t fcpi_parm;
  2617. uint32_t fcpi_XRdy; /* transfer ready for IWRITE */
  2618. } FCPI_FIELDS;
  2619. /* IOCB Command template for all FCP Target commands */
  2620. typedef struct {
  2621. struct ulp_bde fcpt_Buffer[2]; /* FCP_CMND payload descriptor */
  2622. uint32_t fcpt_Offset;
  2623. uint32_t fcpt_Length; /* transfer ready for IWRITE */
  2624. } FCPT_FIELDS;
  2625. /* SLI-2 IOCB structure definitions */
  2626. /* IOCB Command template for 64 bit XMIT / XMIT_BCAST / XMIT_ELS */
  2627. typedef struct {
  2628. ULP_BDL bdl;
  2629. uint32_t xrsqRo; /* Starting Relative Offset */
  2630. WORD5 w5; /* Header control/status word */
  2631. } XMT_SEQ_FIELDS64;
  2632. /* IOCB Command template for 64 bit RCV_SEQUENCE64 */
  2633. typedef struct {
  2634. struct ulp_bde64 rcvBde;
  2635. uint32_t rsvd1;
  2636. uint32_t xrsqRo; /* Starting Relative Offset */
  2637. WORD5 w5; /* Header control/status word */
  2638. } RCV_SEQ_FIELDS64;
  2639. /* IOCB Command template for ELS_REQUEST64 */
  2640. typedef struct {
  2641. ULP_BDL bdl;
  2642. #ifdef __BIG_ENDIAN_BITFIELD
  2643. uint32_t word4Rsvd:7;
  2644. uint32_t fl:1;
  2645. uint32_t myID:24;
  2646. uint32_t word5Rsvd:8;
  2647. uint32_t remoteID:24;
  2648. #else /* __LITTLE_ENDIAN_BITFIELD */
  2649. uint32_t myID:24;
  2650. uint32_t fl:1;
  2651. uint32_t word4Rsvd:7;
  2652. uint32_t remoteID:24;
  2653. uint32_t word5Rsvd:8;
  2654. #endif
  2655. } ELS_REQUEST64;
  2656. /* IOCB Command template for GEN_REQUEST64 */
  2657. typedef struct {
  2658. ULP_BDL bdl;
  2659. uint32_t xrsqRo; /* Starting Relative Offset */
  2660. WORD5 w5; /* Header control/status word */
  2661. } GEN_REQUEST64;
  2662. /* IOCB Command template for RCV_ELS_REQ64 */
  2663. typedef struct {
  2664. struct ulp_bde64 elsReq;
  2665. uint32_t rcvd1;
  2666. uint32_t parmRo;
  2667. #ifdef __BIG_ENDIAN_BITFIELD
  2668. uint32_t word5Rsvd:8;
  2669. uint32_t remoteID:24;
  2670. #else /* __LITTLE_ENDIAN_BITFIELD */
  2671. uint32_t remoteID:24;
  2672. uint32_t word5Rsvd:8;
  2673. #endif
  2674. } RCV_ELS_REQ64;
  2675. /* IOCB Command template for RCV_SEQ64 */
  2676. struct rcv_seq64 {
  2677. struct ulp_bde64 elsReq;
  2678. uint32_t hbq_1;
  2679. uint32_t parmRo;
  2680. #ifdef __BIG_ENDIAN_BITFIELD
  2681. uint32_t rctl:8;
  2682. uint32_t type:8;
  2683. uint32_t dfctl:8;
  2684. uint32_t ls:1;
  2685. uint32_t fs:1;
  2686. uint32_t rsvd2:3;
  2687. uint32_t si:1;
  2688. uint32_t bc:1;
  2689. uint32_t rsvd3:1;
  2690. #else /* __LITTLE_ENDIAN_BITFIELD */
  2691. uint32_t rsvd3:1;
  2692. uint32_t bc:1;
  2693. uint32_t si:1;
  2694. uint32_t rsvd2:3;
  2695. uint32_t fs:1;
  2696. uint32_t ls:1;
  2697. uint32_t dfctl:8;
  2698. uint32_t type:8;
  2699. uint32_t rctl:8;
  2700. #endif
  2701. };
  2702. /* IOCB Command template for all 64 bit FCP Initiator commands */
  2703. typedef struct {
  2704. ULP_BDL bdl;
  2705. uint32_t fcpi_parm;
  2706. uint32_t fcpi_XRdy; /* transfer ready for IWRITE */
  2707. } FCPI_FIELDS64;
  2708. /* IOCB Command template for all 64 bit FCP Target commands */
  2709. typedef struct {
  2710. ULP_BDL bdl;
  2711. uint32_t fcpt_Offset;
  2712. uint32_t fcpt_Length; /* transfer ready for IWRITE */
  2713. } FCPT_FIELDS64;
  2714. /* IOCB Command template for Async Status iocb commands */
  2715. typedef struct {
  2716. uint32_t rsvd[4];
  2717. uint32_t param;
  2718. #ifdef __BIG_ENDIAN_BITFIELD
  2719. uint16_t evt_code; /* High order bits word 5 */
  2720. uint16_t sub_ctxt_tag; /* Low order bits word 5 */
  2721. #else /* __LITTLE_ENDIAN_BITFIELD */
  2722. uint16_t sub_ctxt_tag; /* High order bits word 5 */
  2723. uint16_t evt_code; /* Low order bits word 5 */
  2724. #endif
  2725. } ASYNCSTAT_FIELDS;
  2726. #define ASYNC_TEMP_WARN 0x100
  2727. #define ASYNC_TEMP_SAFE 0x101
  2728. /* IOCB Command template for CMD_IOCB_RCV_ELS64_CX (0xB7)
  2729. or CMD_IOCB_RCV_SEQ64_CX (0xB5) */
  2730. struct rcv_sli3 {
  2731. uint32_t word8Rsvd;
  2732. #ifdef __BIG_ENDIAN_BITFIELD
  2733. uint16_t vpi;
  2734. uint16_t word9Rsvd;
  2735. #else /* __LITTLE_ENDIAN */
  2736. uint16_t word9Rsvd;
  2737. uint16_t vpi;
  2738. #endif
  2739. uint32_t word10Rsvd;
  2740. uint32_t acc_len; /* accumulated length */
  2741. struct ulp_bde64 bde2;
  2742. };
  2743. /* Structure used for a single HBQ entry */
  2744. struct lpfc_hbq_entry {
  2745. struct ulp_bde64 bde;
  2746. uint32_t buffer_tag;
  2747. };
  2748. /* IOCB Command template for QUE_XRI64_CX (0xB3) command */
  2749. typedef struct {
  2750. struct lpfc_hbq_entry buff;
  2751. uint32_t rsvd;
  2752. uint32_t rsvd1;
  2753. } QUE_XRI64_CX_FIELDS;
  2754. struct que_xri64cx_ext_fields {
  2755. uint32_t iotag64_low;
  2756. uint32_t iotag64_high;
  2757. uint32_t ebde_count;
  2758. uint32_t rsvd;
  2759. struct lpfc_hbq_entry buff[5];
  2760. };
  2761. typedef struct _IOCB { /* IOCB structure */
  2762. union {
  2763. GENERIC_RSP grsp; /* Generic response */
  2764. XR_SEQ_FIELDS xrseq; /* XMIT / BCAST / RCV_SEQUENCE cmd */
  2765. struct ulp_bde cont[3]; /* up to 3 continuation bdes */
  2766. RCV_ELS_REQ rcvels; /* RCV_ELS_REQ template */
  2767. AC_XRI acxri; /* ABORT / CLOSE_XRI template */
  2768. A_MXRI64 amxri; /* abort multiple xri command overlay */
  2769. GET_RPI getrpi; /* GET_RPI template */
  2770. FCPI_FIELDS fcpi; /* FCP Initiator template */
  2771. FCPT_FIELDS fcpt; /* FCP target template */
  2772. /* SLI-2 structures */
  2773. struct ulp_bde64 cont64[2]; /* up to 2 64 bit continuation
  2774. * bde_64s */
  2775. ELS_REQUEST64 elsreq64; /* ELS_REQUEST template */
  2776. GEN_REQUEST64 genreq64; /* GEN_REQUEST template */
  2777. RCV_ELS_REQ64 rcvels64; /* RCV_ELS_REQ template */
  2778. XMT_SEQ_FIELDS64 xseq64; /* XMIT / BCAST cmd */
  2779. FCPI_FIELDS64 fcpi64; /* FCP 64 bit Initiator template */
  2780. FCPT_FIELDS64 fcpt64; /* FCP 64 bit target template */
  2781. ASYNCSTAT_FIELDS asyncstat; /* async_status iocb */
  2782. QUE_XRI64_CX_FIELDS quexri64cx; /* que_xri64_cx fields */
  2783. struct rcv_seq64 rcvseq64; /* RCV_SEQ64 and RCV_CONT64 */
  2784. uint32_t ulpWord[IOCB_WORD_SZ - 2]; /* generic 6 'words' */
  2785. } un;
  2786. union {
  2787. struct {
  2788. #ifdef __BIG_ENDIAN_BITFIELD
  2789. uint16_t ulpContext; /* High order bits word 6 */
  2790. uint16_t ulpIoTag; /* Low order bits word 6 */
  2791. #else /* __LITTLE_ENDIAN_BITFIELD */
  2792. uint16_t ulpIoTag; /* Low order bits word 6 */
  2793. uint16_t ulpContext; /* High order bits word 6 */
  2794. #endif
  2795. } t1;
  2796. struct {
  2797. #ifdef __BIG_ENDIAN_BITFIELD
  2798. uint16_t ulpContext; /* High order bits word 6 */
  2799. uint16_t ulpIoTag1:2; /* Low order bits word 6 */
  2800. uint16_t ulpIoTag0:14; /* Low order bits word 6 */
  2801. #else /* __LITTLE_ENDIAN_BITFIELD */
  2802. uint16_t ulpIoTag0:14; /* Low order bits word 6 */
  2803. uint16_t ulpIoTag1:2; /* Low order bits word 6 */
  2804. uint16_t ulpContext; /* High order bits word 6 */
  2805. #endif
  2806. } t2;
  2807. } un1;
  2808. #define ulpContext un1.t1.ulpContext
  2809. #define ulpIoTag un1.t1.ulpIoTag
  2810. #define ulpIoTag0 un1.t2.ulpIoTag0
  2811. #ifdef __BIG_ENDIAN_BITFIELD
  2812. uint32_t ulpTimeout:8;
  2813. uint32_t ulpXS:1;
  2814. uint32_t ulpFCP2Rcvy:1;
  2815. uint32_t ulpPU:2;
  2816. uint32_t ulpIr:1;
  2817. uint32_t ulpClass:3;
  2818. uint32_t ulpCommand:8;
  2819. uint32_t ulpStatus:4;
  2820. uint32_t ulpBdeCount:2;
  2821. uint32_t ulpLe:1;
  2822. uint32_t ulpOwner:1; /* Low order bit word 7 */
  2823. #else /* __LITTLE_ENDIAN_BITFIELD */
  2824. uint32_t ulpOwner:1; /* Low order bit word 7 */
  2825. uint32_t ulpLe:1;
  2826. uint32_t ulpBdeCount:2;
  2827. uint32_t ulpStatus:4;
  2828. uint32_t ulpCommand:8;
  2829. uint32_t ulpClass:3;
  2830. uint32_t ulpIr:1;
  2831. uint32_t ulpPU:2;
  2832. uint32_t ulpFCP2Rcvy:1;
  2833. uint32_t ulpXS:1;
  2834. uint32_t ulpTimeout:8;
  2835. #endif
  2836. union {
  2837. struct rcv_sli3 rcvsli3; /* words 8 - 15 */
  2838. /* words 8-31 used for que_xri_cx iocb */
  2839. struct que_xri64cx_ext_fields que_xri64cx_ext_words;
  2840. uint32_t sli3Words[24]; /* 96 extra bytes for SLI-3 */
  2841. } unsli3;
  2842. #define ulpCt_h ulpXS
  2843. #define ulpCt_l ulpFCP2Rcvy
  2844. #define IOCB_FCP 1 /* IOCB is used for FCP ELS cmds-ulpRsvByte */
  2845. #define IOCB_IP 2 /* IOCB is used for IP ELS cmds */
  2846. #define PARM_UNUSED 0 /* PU field (Word 4) not used */
  2847. #define PARM_REL_OFF 1 /* PU field (Word 4) = R. O. */
  2848. #define PARM_READ_CHECK 2 /* PU field (Word 4) = Data Transfer Length */
  2849. #define PARM_NPIV_DID 3
  2850. #define CLASS1 0 /* Class 1 */
  2851. #define CLASS2 1 /* Class 2 */
  2852. #define CLASS3 2 /* Class 3 */
  2853. #define CLASS_FCP_INTERMIX 7 /* FCP Data->Cls 1, all else->Cls 2 */
  2854. #define IOSTAT_SUCCESS 0x0 /* ulpStatus - HBA defined */
  2855. #define IOSTAT_FCP_RSP_ERROR 0x1
  2856. #define IOSTAT_REMOTE_STOP 0x2
  2857. #define IOSTAT_LOCAL_REJECT 0x3
  2858. #define IOSTAT_NPORT_RJT 0x4
  2859. #define IOSTAT_FABRIC_RJT 0x5
  2860. #define IOSTAT_NPORT_BSY 0x6
  2861. #define IOSTAT_FABRIC_BSY 0x7
  2862. #define IOSTAT_INTERMED_RSP 0x8
  2863. #define IOSTAT_LS_RJT 0x9
  2864. #define IOSTAT_BA_RJT 0xA
  2865. #define IOSTAT_RSVD1 0xB
  2866. #define IOSTAT_RSVD2 0xC
  2867. #define IOSTAT_RSVD3 0xD
  2868. #define IOSTAT_RSVD4 0xE
  2869. #define IOSTAT_NEED_BUFFER 0xF
  2870. #define IOSTAT_DRIVER_REJECT 0x10 /* ulpStatus - Driver defined */
  2871. #define IOSTAT_DEFAULT 0xF /* Same as rsvd5 for now */
  2872. #define IOSTAT_CNT 0x11
  2873. } IOCB_t;
  2874. #define SLI1_SLIM_SIZE (4 * 1024)
  2875. /* Up to 498 IOCBs will fit into 16k
  2876. * 256 (MAILBOX_t) + 140 (PCB_t) + ( 32 (IOCB_t) * 498 ) = < 16384
  2877. */
  2878. #define SLI2_SLIM_SIZE (64 * 1024)
  2879. /* Maximum IOCBs that will fit in SLI2 slim */
  2880. #define MAX_SLI2_IOCB 498
  2881. #define MAX_SLIM_IOCB_SIZE (SLI2_SLIM_SIZE - \
  2882. (sizeof(MAILBOX_t) + sizeof(PCB_t)))
  2883. /* HBQ entries are 4 words each = 4k */
  2884. #define LPFC_TOTAL_HBQ_SIZE (sizeof(struct lpfc_hbq_entry) * \
  2885. lpfc_sli_hbq_count())
  2886. struct lpfc_sli2_slim {
  2887. MAILBOX_t mbx;
  2888. PCB_t pcb;
  2889. IOCB_t IOCBs[MAX_SLIM_IOCB_SIZE];
  2890. };
  2891. /*
  2892. * This function checks PCI device to allow special handling for LC HBAs.
  2893. *
  2894. * Parameters:
  2895. * device : struct pci_dev 's device field
  2896. *
  2897. * return 1 => TRUE
  2898. * 0 => FALSE
  2899. */
  2900. static inline int
  2901. lpfc_is_LC_HBA(unsigned short device)
  2902. {
  2903. if ((device == PCI_DEVICE_ID_TFLY) ||
  2904. (device == PCI_DEVICE_ID_PFLY) ||
  2905. (device == PCI_DEVICE_ID_LP101) ||
  2906. (device == PCI_DEVICE_ID_BMID) ||
  2907. (device == PCI_DEVICE_ID_BSMB) ||
  2908. (device == PCI_DEVICE_ID_ZMID) ||
  2909. (device == PCI_DEVICE_ID_ZSMB) ||
  2910. (device == PCI_DEVICE_ID_SAT_MID) ||
  2911. (device == PCI_DEVICE_ID_SAT_SMB) ||
  2912. (device == PCI_DEVICE_ID_RFLY))
  2913. return 1;
  2914. else
  2915. return 0;
  2916. }
  2917. /*
  2918. * Determine if an IOCB failed because of a link event or firmware reset.
  2919. */
  2920. static inline int
  2921. lpfc_error_lost_link(IOCB_t *iocbp)
  2922. {
  2923. return (iocbp->ulpStatus == IOSTAT_LOCAL_REJECT &&
  2924. (iocbp->un.ulpWord[4] == IOERR_SLI_ABORTED ||
  2925. iocbp->un.ulpWord[4] == IOERR_LINK_DOWN ||
  2926. iocbp->un.ulpWord[4] == IOERR_SLI_DOWN));
  2927. }