lpfc_hw.h 77 KB

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