lpfc_sli.c 507 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568155691557015571155721557315574155751557615577155781557915580155811558215583155841558515586155871558815589155901559115592155931559415595155961559715598155991560015601156021560315604156051560615607156081560915610156111561215613156141561515616156171561815619156201562115622156231562415625156261562715628156291563015631156321563315634156351563615637156381563915640156411564215643156441564515646156471564815649156501565115652156531565415655156561565715658156591566015661156621566315664156651566615667156681566915670156711567215673156741567515676156771567815679156801568115682156831568415685156861568715688156891569015691156921569315694156951569615697156981569915700157011570215703157041570515706157071570815709157101571115712157131571415715157161571715718157191572015721157221572315724157251572615727157281572915730157311573215733157341573515736157371573815739157401574115742157431574415745157461574715748157491575015751157521575315754157551575615757157581575915760157611576215763157641576515766157671576815769157701577115772157731577415775157761577715778157791578015781157821578315784157851578615787157881578915790157911579215793157941579515796157971579815799158001580115802158031580415805158061580715808158091581015811158121581315814158151581615817158181581915820158211582215823158241582515826158271582815829158301583115832158331583415835158361583715838158391584015841158421584315844158451584615847158481584915850158511585215853158541585515856158571585815859158601586115862158631586415865158661586715868158691587015871158721587315874158751587615877158781587915880158811588215883158841588515886158871588815889158901589115892158931589415895158961589715898158991590015901159021590315904159051590615907159081590915910159111591215913159141591515916159171591815919159201592115922159231592415925159261592715928159291593015931159321593315934159351593615937159381593915940159411594215943159441594515946159471594815949159501595115952159531595415955159561595715958159591596015961159621596315964159651596615967159681596915970159711597215973159741597515976159771597815979159801598115982159831598415985159861598715988159891599015991159921599315994159951599615997159981599916000160011600216003160041600516006160071600816009160101601116012160131601416015160161601716018160191602016021160221602316024160251602616027160281602916030160311603216033160341603516036160371603816039160401604116042160431604416045160461604716048160491605016051160521605316054160551605616057160581605916060160611606216063160641606516066160671606816069160701607116072160731607416075160761607716078160791608016081160821608316084160851608616087160881608916090160911609216093160941609516096160971609816099161001610116102161031610416105161061610716108161091611016111161121611316114161151611616117161181611916120161211612216123161241612516126161271612816129161301613116132161331613416135161361613716138161391614016141161421614316144161451614616147161481614916150161511615216153161541615516156161571615816159161601616116162161631616416165161661616716168161691617016171161721617316174161751617616177161781617916180161811618216183161841618516186161871618816189161901619116192161931619416195161961619716198161991620016201162021620316204162051620616207162081620916210162111621216213162141621516216162171621816219162201622116222162231622416225162261622716228162291623016231162321623316234162351623616237162381623916240162411624216243162441624516246162471624816249162501625116252162531625416255162561625716258162591626016261162621626316264162651626616267162681626916270162711627216273162741627516276162771627816279162801628116282162831628416285162861628716288162891629016291162921629316294162951629616297162981629916300163011630216303163041630516306163071630816309163101631116312163131631416315163161631716318163191632016321163221632316324163251632616327163281632916330163311633216333163341633516336163371633816339163401634116342163431634416345163461634716348163491635016351163521635316354163551635616357163581635916360163611636216363163641636516366163671636816369163701637116372163731637416375163761637716378163791638016381163821638316384163851638616387163881638916390163911639216393163941639516396163971639816399164001640116402164031640416405164061640716408164091641016411164121641316414164151641616417164181641916420164211642216423164241642516426164271642816429164301643116432164331643416435164361643716438164391644016441164421644316444164451644616447164481644916450164511645216453164541645516456164571645816459164601646116462164631646416465164661646716468164691647016471164721647316474164751647616477164781647916480164811648216483164841648516486164871648816489164901649116492164931649416495164961649716498164991650016501165021650316504165051650616507165081650916510165111651216513165141651516516165171651816519165201652116522165231652416525165261652716528165291653016531165321653316534165351653616537165381653916540165411654216543165441654516546165471654816549165501655116552165531655416555165561655716558165591656016561165621656316564165651656616567165681656916570165711657216573165741657516576165771657816579165801658116582165831658416585165861658716588165891659016591165921659316594165951659616597165981659916600166011660216603166041660516606166071660816609
  1. /*******************************************************************
  2. * This file is part of the Emulex Linux Device Driver for *
  3. * Fibre Channel Host Bus Adapters. *
  4. * Copyright (C) 2004-2013 Emulex. All rights reserved. *
  5. * EMULEX and SLI are trademarks of Emulex. *
  6. * www.emulex.com *
  7. * Portions Copyright (C) 2004-2005 Christoph Hellwig *
  8. * *
  9. * This program is free software; you can redistribute it and/or *
  10. * modify it under the terms of version 2 of the GNU General *
  11. * Public License as published by the Free Software Foundation. *
  12. * This program is distributed in the hope that it will be useful. *
  13. * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
  14. * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
  15. * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
  16. * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
  17. * TO BE LEGALLY INVALID. See the GNU General Public License for *
  18. * more details, a copy of which can be found in the file COPYING *
  19. * included with this package. *
  20. *******************************************************************/
  21. #include <linux/blkdev.h>
  22. #include <linux/pci.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/delay.h>
  25. #include <linux/slab.h>
  26. #include <scsi/scsi.h>
  27. #include <scsi/scsi_cmnd.h>
  28. #include <scsi/scsi_device.h>
  29. #include <scsi/scsi_host.h>
  30. #include <scsi/scsi_transport_fc.h>
  31. #include <scsi/fc/fc_fs.h>
  32. #include <linux/aer.h>
  33. #include "lpfc_hw4.h"
  34. #include "lpfc_hw.h"
  35. #include "lpfc_sli.h"
  36. #include "lpfc_sli4.h"
  37. #include "lpfc_nl.h"
  38. #include "lpfc_disc.h"
  39. #include "lpfc_scsi.h"
  40. #include "lpfc.h"
  41. #include "lpfc_crtn.h"
  42. #include "lpfc_logmsg.h"
  43. #include "lpfc_compat.h"
  44. #include "lpfc_debugfs.h"
  45. #include "lpfc_vport.h"
  46. /* There are only four IOCB completion types. */
  47. typedef enum _lpfc_iocb_type {
  48. LPFC_UNKNOWN_IOCB,
  49. LPFC_UNSOL_IOCB,
  50. LPFC_SOL_IOCB,
  51. LPFC_ABORT_IOCB
  52. } lpfc_iocb_type;
  53. /* Provide function prototypes local to this module. */
  54. static int lpfc_sli_issue_mbox_s4(struct lpfc_hba *, LPFC_MBOXQ_t *,
  55. uint32_t);
  56. static int lpfc_sli4_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *,
  57. uint8_t *, uint32_t *);
  58. static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
  59. struct lpfc_iocbq *);
  60. static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
  61. struct hbq_dmabuf *);
  62. static int lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *, struct lpfc_queue *,
  63. struct lpfc_cqe *);
  64. static int lpfc_sli4_post_els_sgl_list(struct lpfc_hba *, struct list_head *,
  65. int);
  66. static void lpfc_sli4_hba_handle_eqe(struct lpfc_hba *, struct lpfc_eqe *,
  67. uint32_t);
  68. static bool lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba);
  69. static bool lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba);
  70. static IOCB_t *
  71. lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
  72. {
  73. return &iocbq->iocb;
  74. }
  75. /**
  76. * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
  77. * @q: The Work Queue to operate on.
  78. * @wqe: The work Queue Entry to put on the Work queue.
  79. *
  80. * This routine will copy the contents of @wqe to the next available entry on
  81. * the @q. This function will then ring the Work Queue Doorbell to signal the
  82. * HBA to start processing the Work Queue Entry. This function returns 0 if
  83. * successful. If no entries are available on @q then this function will return
  84. * -ENOMEM.
  85. * The caller is expected to hold the hbalock when calling this routine.
  86. **/
  87. static uint32_t
  88. lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
  89. {
  90. union lpfc_wqe *temp_wqe;
  91. struct lpfc_register doorbell;
  92. uint32_t host_index;
  93. uint32_t idx;
  94. /* sanity check on queue memory */
  95. if (unlikely(!q))
  96. return -ENOMEM;
  97. temp_wqe = q->qe[q->host_index].wqe;
  98. /* If the host has not yet processed the next entry then we are done */
  99. idx = ((q->host_index + 1) % q->entry_count);
  100. if (idx == q->hba_index) {
  101. q->WQ_overflow++;
  102. return -ENOMEM;
  103. }
  104. q->WQ_posted++;
  105. /* set consumption flag every once in a while */
  106. if (!((q->host_index + 1) % q->entry_repost))
  107. bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
  108. if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
  109. bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
  110. lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
  111. /* Update the host index before invoking device */
  112. host_index = q->host_index;
  113. q->host_index = idx;
  114. /* Ring Doorbell */
  115. doorbell.word0 = 0;
  116. if (q->db_format == LPFC_DB_LIST_FORMAT) {
  117. bf_set(lpfc_wq_db_list_fm_num_posted, &doorbell, 1);
  118. bf_set(lpfc_wq_db_list_fm_index, &doorbell, host_index);
  119. bf_set(lpfc_wq_db_list_fm_id, &doorbell, q->queue_id);
  120. } else if (q->db_format == LPFC_DB_RING_FORMAT) {
  121. bf_set(lpfc_wq_db_ring_fm_num_posted, &doorbell, 1);
  122. bf_set(lpfc_wq_db_ring_fm_id, &doorbell, q->queue_id);
  123. } else {
  124. return -EINVAL;
  125. }
  126. writel(doorbell.word0, q->db_regaddr);
  127. return 0;
  128. }
  129. /**
  130. * lpfc_sli4_wq_release - Updates internal hba index for WQ
  131. * @q: The Work Queue to operate on.
  132. * @index: The index to advance the hba index to.
  133. *
  134. * This routine will update the HBA index of a queue to reflect consumption of
  135. * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
  136. * an entry the host calls this function to update the queue's internal
  137. * pointers. This routine returns the number of entries that were consumed by
  138. * the HBA.
  139. **/
  140. static uint32_t
  141. lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
  142. {
  143. uint32_t released = 0;
  144. /* sanity check on queue memory */
  145. if (unlikely(!q))
  146. return 0;
  147. if (q->hba_index == index)
  148. return 0;
  149. do {
  150. q->hba_index = ((q->hba_index + 1) % q->entry_count);
  151. released++;
  152. } while (q->hba_index != index);
  153. return released;
  154. }
  155. /**
  156. * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
  157. * @q: The Mailbox Queue to operate on.
  158. * @wqe: The Mailbox Queue Entry to put on the Work queue.
  159. *
  160. * This routine will copy the contents of @mqe to the next available entry on
  161. * the @q. This function will then ring the Work Queue Doorbell to signal the
  162. * HBA to start processing the Work Queue Entry. This function returns 0 if
  163. * successful. If no entries are available on @q then this function will return
  164. * -ENOMEM.
  165. * The caller is expected to hold the hbalock when calling this routine.
  166. **/
  167. static uint32_t
  168. lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
  169. {
  170. struct lpfc_mqe *temp_mqe;
  171. struct lpfc_register doorbell;
  172. uint32_t host_index;
  173. /* sanity check on queue memory */
  174. if (unlikely(!q))
  175. return -ENOMEM;
  176. temp_mqe = q->qe[q->host_index].mqe;
  177. /* If the host has not yet processed the next entry then we are done */
  178. if (((q->host_index + 1) % q->entry_count) == q->hba_index)
  179. return -ENOMEM;
  180. lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
  181. /* Save off the mailbox pointer for completion */
  182. q->phba->mbox = (MAILBOX_t *)temp_mqe;
  183. /* Update the host index before invoking device */
  184. host_index = q->host_index;
  185. q->host_index = ((q->host_index + 1) % q->entry_count);
  186. /* Ring Doorbell */
  187. doorbell.word0 = 0;
  188. bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
  189. bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
  190. writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
  191. return 0;
  192. }
  193. /**
  194. * lpfc_sli4_mq_release - Updates internal hba index for MQ
  195. * @q: The Mailbox Queue to operate on.
  196. *
  197. * This routine will update the HBA index of a queue to reflect consumption of
  198. * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
  199. * an entry the host calls this function to update the queue's internal
  200. * pointers. This routine returns the number of entries that were consumed by
  201. * the HBA.
  202. **/
  203. static uint32_t
  204. lpfc_sli4_mq_release(struct lpfc_queue *q)
  205. {
  206. /* sanity check on queue memory */
  207. if (unlikely(!q))
  208. return 0;
  209. /* Clear the mailbox pointer for completion */
  210. q->phba->mbox = NULL;
  211. q->hba_index = ((q->hba_index + 1) % q->entry_count);
  212. return 1;
  213. }
  214. /**
  215. * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
  216. * @q: The Event Queue to get the first valid EQE from
  217. *
  218. * This routine will get the first valid Event Queue Entry from @q, update
  219. * the queue's internal hba index, and return the EQE. If no valid EQEs are in
  220. * the Queue (no more work to do), or the Queue is full of EQEs that have been
  221. * processed, but not popped back to the HBA then this routine will return NULL.
  222. **/
  223. static struct lpfc_eqe *
  224. lpfc_sli4_eq_get(struct lpfc_queue *q)
  225. {
  226. struct lpfc_eqe *eqe;
  227. uint32_t idx;
  228. /* sanity check on queue memory */
  229. if (unlikely(!q))
  230. return NULL;
  231. eqe = q->qe[q->hba_index].eqe;
  232. /* If the next EQE is not valid then we are done */
  233. if (!bf_get_le32(lpfc_eqe_valid, eqe))
  234. return NULL;
  235. /* If the host has not yet processed the next entry then we are done */
  236. idx = ((q->hba_index + 1) % q->entry_count);
  237. if (idx == q->host_index)
  238. return NULL;
  239. q->hba_index = idx;
  240. return eqe;
  241. }
  242. /**
  243. * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
  244. * @q: The Event Queue to disable interrupts
  245. *
  246. **/
  247. static inline void
  248. lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
  249. {
  250. struct lpfc_register doorbell;
  251. doorbell.word0 = 0;
  252. bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
  253. bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
  254. bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
  255. (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
  256. bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
  257. writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
  258. }
  259. /**
  260. * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
  261. * @q: The Event Queue that the host has completed processing for.
  262. * @arm: Indicates whether the host wants to arms this CQ.
  263. *
  264. * This routine will mark all Event Queue Entries on @q, from the last
  265. * known completed entry to the last entry that was processed, as completed
  266. * by clearing the valid bit for each completion queue entry. Then it will
  267. * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
  268. * The internal host index in the @q will be updated by this routine to indicate
  269. * that the host has finished processing the entries. The @arm parameter
  270. * indicates that the queue should be rearmed when ringing the doorbell.
  271. *
  272. * This function will return the number of EQEs that were popped.
  273. **/
  274. uint32_t
  275. lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
  276. {
  277. uint32_t released = 0;
  278. struct lpfc_eqe *temp_eqe;
  279. struct lpfc_register doorbell;
  280. /* sanity check on queue memory */
  281. if (unlikely(!q))
  282. return 0;
  283. /* while there are valid entries */
  284. while (q->hba_index != q->host_index) {
  285. temp_eqe = q->qe[q->host_index].eqe;
  286. bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
  287. released++;
  288. q->host_index = ((q->host_index + 1) % q->entry_count);
  289. }
  290. if (unlikely(released == 0 && !arm))
  291. return 0;
  292. /* ring doorbell for number popped */
  293. doorbell.word0 = 0;
  294. if (arm) {
  295. bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
  296. bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
  297. }
  298. bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
  299. bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
  300. bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
  301. (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
  302. bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
  303. writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
  304. /* PCI read to flush PCI pipeline on re-arming for INTx mode */
  305. if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
  306. readl(q->phba->sli4_hba.EQCQDBregaddr);
  307. return released;
  308. }
  309. /**
  310. * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
  311. * @q: The Completion Queue to get the first valid CQE from
  312. *
  313. * This routine will get the first valid Completion Queue Entry from @q, update
  314. * the queue's internal hba index, and return the CQE. If no valid CQEs are in
  315. * the Queue (no more work to do), or the Queue is full of CQEs that have been
  316. * processed, but not popped back to the HBA then this routine will return NULL.
  317. **/
  318. static struct lpfc_cqe *
  319. lpfc_sli4_cq_get(struct lpfc_queue *q)
  320. {
  321. struct lpfc_cqe *cqe;
  322. uint32_t idx;
  323. /* sanity check on queue memory */
  324. if (unlikely(!q))
  325. return NULL;
  326. /* If the next CQE is not valid then we are done */
  327. if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
  328. return NULL;
  329. /* If the host has not yet processed the next entry then we are done */
  330. idx = ((q->hba_index + 1) % q->entry_count);
  331. if (idx == q->host_index)
  332. return NULL;
  333. cqe = q->qe[q->hba_index].cqe;
  334. q->hba_index = idx;
  335. return cqe;
  336. }
  337. /**
  338. * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
  339. * @q: The Completion Queue that the host has completed processing for.
  340. * @arm: Indicates whether the host wants to arms this CQ.
  341. *
  342. * This routine will mark all Completion queue entries on @q, from the last
  343. * known completed entry to the last entry that was processed, as completed
  344. * by clearing the valid bit for each completion queue entry. Then it will
  345. * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
  346. * The internal host index in the @q will be updated by this routine to indicate
  347. * that the host has finished processing the entries. The @arm parameter
  348. * indicates that the queue should be rearmed when ringing the doorbell.
  349. *
  350. * This function will return the number of CQEs that were released.
  351. **/
  352. uint32_t
  353. lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
  354. {
  355. uint32_t released = 0;
  356. struct lpfc_cqe *temp_qe;
  357. struct lpfc_register doorbell;
  358. /* sanity check on queue memory */
  359. if (unlikely(!q))
  360. return 0;
  361. /* while there are valid entries */
  362. while (q->hba_index != q->host_index) {
  363. temp_qe = q->qe[q->host_index].cqe;
  364. bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
  365. released++;
  366. q->host_index = ((q->host_index + 1) % q->entry_count);
  367. }
  368. if (unlikely(released == 0 && !arm))
  369. return 0;
  370. /* ring doorbell for number popped */
  371. doorbell.word0 = 0;
  372. if (arm)
  373. bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
  374. bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
  375. bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
  376. bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
  377. (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
  378. bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
  379. writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
  380. return released;
  381. }
  382. /**
  383. * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
  384. * @q: The Header Receive Queue to operate on.
  385. * @wqe: The Receive Queue Entry to put on the Receive queue.
  386. *
  387. * This routine will copy the contents of @wqe to the next available entry on
  388. * the @q. This function will then ring the Receive Queue Doorbell to signal the
  389. * HBA to start processing the Receive Queue Entry. This function returns the
  390. * index that the rqe was copied to if successful. If no entries are available
  391. * on @q then this function will return -ENOMEM.
  392. * The caller is expected to hold the hbalock when calling this routine.
  393. **/
  394. static int
  395. lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
  396. struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
  397. {
  398. struct lpfc_rqe *temp_hrqe;
  399. struct lpfc_rqe *temp_drqe;
  400. struct lpfc_register doorbell;
  401. int put_index;
  402. /* sanity check on queue memory */
  403. if (unlikely(!hq) || unlikely(!dq))
  404. return -ENOMEM;
  405. put_index = hq->host_index;
  406. temp_hrqe = hq->qe[hq->host_index].rqe;
  407. temp_drqe = dq->qe[dq->host_index].rqe;
  408. if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
  409. return -EINVAL;
  410. if (hq->host_index != dq->host_index)
  411. return -EINVAL;
  412. /* If the host has not yet processed the next entry then we are done */
  413. if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
  414. return -EBUSY;
  415. lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
  416. lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
  417. /* Update the host index to point to the next slot */
  418. hq->host_index = ((hq->host_index + 1) % hq->entry_count);
  419. dq->host_index = ((dq->host_index + 1) % dq->entry_count);
  420. /* Ring The Header Receive Queue Doorbell */
  421. if (!(hq->host_index % hq->entry_repost)) {
  422. doorbell.word0 = 0;
  423. if (hq->db_format == LPFC_DB_RING_FORMAT) {
  424. bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
  425. hq->entry_repost);
  426. bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
  427. } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
  428. bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
  429. hq->entry_repost);
  430. bf_set(lpfc_rq_db_list_fm_index, &doorbell,
  431. hq->host_index);
  432. bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
  433. } else {
  434. return -EINVAL;
  435. }
  436. writel(doorbell.word0, hq->db_regaddr);
  437. }
  438. return put_index;
  439. }
  440. /**
  441. * lpfc_sli4_rq_release - Updates internal hba index for RQ
  442. * @q: The Header Receive Queue to operate on.
  443. *
  444. * This routine will update the HBA index of a queue to reflect consumption of
  445. * one Receive Queue Entry by the HBA. When the HBA indicates that it has
  446. * consumed an entry the host calls this function to update the queue's
  447. * internal pointers. This routine returns the number of entries that were
  448. * consumed by the HBA.
  449. **/
  450. static uint32_t
  451. lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
  452. {
  453. /* sanity check on queue memory */
  454. if (unlikely(!hq) || unlikely(!dq))
  455. return 0;
  456. if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
  457. return 0;
  458. hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
  459. dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
  460. return 1;
  461. }
  462. /**
  463. * lpfc_cmd_iocb - Get next command iocb entry in the ring
  464. * @phba: Pointer to HBA context object.
  465. * @pring: Pointer to driver SLI ring object.
  466. *
  467. * This function returns pointer to next command iocb entry
  468. * in the command ring. The caller must hold hbalock to prevent
  469. * other threads consume the next command iocb.
  470. * SLI-2/SLI-3 provide different sized iocbs.
  471. **/
  472. static inline IOCB_t *
  473. lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  474. {
  475. return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
  476. pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
  477. }
  478. /**
  479. * lpfc_resp_iocb - Get next response iocb entry in the ring
  480. * @phba: Pointer to HBA context object.
  481. * @pring: Pointer to driver SLI ring object.
  482. *
  483. * This function returns pointer to next response iocb entry
  484. * in the response ring. The caller must hold hbalock to make sure
  485. * that no other thread consume the next response iocb.
  486. * SLI-2/SLI-3 provide different sized iocbs.
  487. **/
  488. static inline IOCB_t *
  489. lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  490. {
  491. return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
  492. pring->sli.sli3.rspidx * phba->iocb_rsp_size);
  493. }
  494. /**
  495. * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
  496. * @phba: Pointer to HBA context object.
  497. *
  498. * This function is called with hbalock held. This function
  499. * allocates a new driver iocb object from the iocb pool. If the
  500. * allocation is successful, it returns pointer to the newly
  501. * allocated iocb object else it returns NULL.
  502. **/
  503. struct lpfc_iocbq *
  504. __lpfc_sli_get_iocbq(struct lpfc_hba *phba)
  505. {
  506. struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
  507. struct lpfc_iocbq * iocbq = NULL;
  508. list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
  509. if (iocbq)
  510. phba->iocb_cnt++;
  511. if (phba->iocb_cnt > phba->iocb_max)
  512. phba->iocb_max = phba->iocb_cnt;
  513. return iocbq;
  514. }
  515. /**
  516. * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
  517. * @phba: Pointer to HBA context object.
  518. * @xritag: XRI value.
  519. *
  520. * This function clears the sglq pointer from the array of acive
  521. * sglq's. The xritag that is passed in is used to index into the
  522. * array. Before the xritag can be used it needs to be adjusted
  523. * by subtracting the xribase.
  524. *
  525. * Returns sglq ponter = success, NULL = Failure.
  526. **/
  527. static struct lpfc_sglq *
  528. __lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
  529. {
  530. struct lpfc_sglq *sglq;
  531. sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
  532. phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
  533. return sglq;
  534. }
  535. /**
  536. * __lpfc_get_active_sglq - Get the active sglq for this XRI.
  537. * @phba: Pointer to HBA context object.
  538. * @xritag: XRI value.
  539. *
  540. * This function returns the sglq pointer from the array of acive
  541. * sglq's. The xritag that is passed in is used to index into the
  542. * array. Before the xritag can be used it needs to be adjusted
  543. * by subtracting the xribase.
  544. *
  545. * Returns sglq ponter = success, NULL = Failure.
  546. **/
  547. struct lpfc_sglq *
  548. __lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
  549. {
  550. struct lpfc_sglq *sglq;
  551. sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
  552. return sglq;
  553. }
  554. /**
  555. * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
  556. * @phba: Pointer to HBA context object.
  557. * @xritag: xri used in this exchange.
  558. * @rrq: The RRQ to be cleared.
  559. *
  560. **/
  561. void
  562. lpfc_clr_rrq_active(struct lpfc_hba *phba,
  563. uint16_t xritag,
  564. struct lpfc_node_rrq *rrq)
  565. {
  566. struct lpfc_nodelist *ndlp = NULL;
  567. if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
  568. ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
  569. /* The target DID could have been swapped (cable swap)
  570. * we should use the ndlp from the findnode if it is
  571. * available.
  572. */
  573. if ((!ndlp) && rrq->ndlp)
  574. ndlp = rrq->ndlp;
  575. if (!ndlp)
  576. goto out;
  577. if (test_and_clear_bit(xritag, ndlp->active_rrqs.xri_bitmap)) {
  578. rrq->send_rrq = 0;
  579. rrq->xritag = 0;
  580. rrq->rrq_stop_time = 0;
  581. }
  582. out:
  583. mempool_free(rrq, phba->rrq_pool);
  584. }
  585. /**
  586. * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
  587. * @phba: Pointer to HBA context object.
  588. *
  589. * This function is called with hbalock held. This function
  590. * Checks if stop_time (ratov from setting rrq active) has
  591. * been reached, if it has and the send_rrq flag is set then
  592. * it will call lpfc_send_rrq. If the send_rrq flag is not set
  593. * then it will just call the routine to clear the rrq and
  594. * free the rrq resource.
  595. * The timer is set to the next rrq that is going to expire before
  596. * leaving the routine.
  597. *
  598. **/
  599. void
  600. lpfc_handle_rrq_active(struct lpfc_hba *phba)
  601. {
  602. struct lpfc_node_rrq *rrq;
  603. struct lpfc_node_rrq *nextrrq;
  604. unsigned long next_time;
  605. unsigned long iflags;
  606. LIST_HEAD(send_rrq);
  607. spin_lock_irqsave(&phba->hbalock, iflags);
  608. phba->hba_flag &= ~HBA_RRQ_ACTIVE;
  609. next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
  610. list_for_each_entry_safe(rrq, nextrrq,
  611. &phba->active_rrq_list, list) {
  612. if (time_after(jiffies, rrq->rrq_stop_time))
  613. list_move(&rrq->list, &send_rrq);
  614. else if (time_before(rrq->rrq_stop_time, next_time))
  615. next_time = rrq->rrq_stop_time;
  616. }
  617. spin_unlock_irqrestore(&phba->hbalock, iflags);
  618. if (!list_empty(&phba->active_rrq_list))
  619. mod_timer(&phba->rrq_tmr, next_time);
  620. list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
  621. list_del(&rrq->list);
  622. if (!rrq->send_rrq)
  623. /* this call will free the rrq */
  624. lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
  625. else if (lpfc_send_rrq(phba, rrq)) {
  626. /* if we send the rrq then the completion handler
  627. * will clear the bit in the xribitmap.
  628. */
  629. lpfc_clr_rrq_active(phba, rrq->xritag,
  630. rrq);
  631. }
  632. }
  633. }
  634. /**
  635. * lpfc_get_active_rrq - Get the active RRQ for this exchange.
  636. * @vport: Pointer to vport context object.
  637. * @xri: The xri used in the exchange.
  638. * @did: The targets DID for this exchange.
  639. *
  640. * returns NULL = rrq not found in the phba->active_rrq_list.
  641. * rrq = rrq for this xri and target.
  642. **/
  643. struct lpfc_node_rrq *
  644. lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
  645. {
  646. struct lpfc_hba *phba = vport->phba;
  647. struct lpfc_node_rrq *rrq;
  648. struct lpfc_node_rrq *nextrrq;
  649. unsigned long iflags;
  650. if (phba->sli_rev != LPFC_SLI_REV4)
  651. return NULL;
  652. spin_lock_irqsave(&phba->hbalock, iflags);
  653. list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
  654. if (rrq->vport == vport && rrq->xritag == xri &&
  655. rrq->nlp_DID == did){
  656. list_del(&rrq->list);
  657. spin_unlock_irqrestore(&phba->hbalock, iflags);
  658. return rrq;
  659. }
  660. }
  661. spin_unlock_irqrestore(&phba->hbalock, iflags);
  662. return NULL;
  663. }
  664. /**
  665. * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
  666. * @vport: Pointer to vport context object.
  667. * @ndlp: Pointer to the lpfc_node_list structure.
  668. * If ndlp is NULL Remove all active RRQs for this vport from the
  669. * phba->active_rrq_list and clear the rrq.
  670. * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
  671. **/
  672. void
  673. lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
  674. {
  675. struct lpfc_hba *phba = vport->phba;
  676. struct lpfc_node_rrq *rrq;
  677. struct lpfc_node_rrq *nextrrq;
  678. unsigned long iflags;
  679. LIST_HEAD(rrq_list);
  680. if (phba->sli_rev != LPFC_SLI_REV4)
  681. return;
  682. if (!ndlp) {
  683. lpfc_sli4_vport_delete_els_xri_aborted(vport);
  684. lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
  685. }
  686. spin_lock_irqsave(&phba->hbalock, iflags);
  687. list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
  688. if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
  689. list_move(&rrq->list, &rrq_list);
  690. spin_unlock_irqrestore(&phba->hbalock, iflags);
  691. list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
  692. list_del(&rrq->list);
  693. lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
  694. }
  695. }
  696. /**
  697. * lpfc_cleanup_wt_rrqs - Remove all rrq's from the active list.
  698. * @phba: Pointer to HBA context object.
  699. *
  700. * Remove all rrqs from the phba->active_rrq_list and free them by
  701. * calling __lpfc_clr_active_rrq
  702. *
  703. **/
  704. void
  705. lpfc_cleanup_wt_rrqs(struct lpfc_hba *phba)
  706. {
  707. struct lpfc_node_rrq *rrq;
  708. struct lpfc_node_rrq *nextrrq;
  709. unsigned long next_time;
  710. unsigned long iflags;
  711. LIST_HEAD(rrq_list);
  712. if (phba->sli_rev != LPFC_SLI_REV4)
  713. return;
  714. spin_lock_irqsave(&phba->hbalock, iflags);
  715. phba->hba_flag &= ~HBA_RRQ_ACTIVE;
  716. next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2));
  717. list_splice_init(&phba->active_rrq_list, &rrq_list);
  718. spin_unlock_irqrestore(&phba->hbalock, iflags);
  719. list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
  720. list_del(&rrq->list);
  721. lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
  722. }
  723. if (!list_empty(&phba->active_rrq_list))
  724. mod_timer(&phba->rrq_tmr, next_time);
  725. }
  726. /**
  727. * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
  728. * @phba: Pointer to HBA context object.
  729. * @ndlp: Targets nodelist pointer for this exchange.
  730. * @xritag the xri in the bitmap to test.
  731. *
  732. * This function is called with hbalock held. This function
  733. * returns 0 = rrq not active for this xri
  734. * 1 = rrq is valid for this xri.
  735. **/
  736. int
  737. lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
  738. uint16_t xritag)
  739. {
  740. if (!ndlp)
  741. return 0;
  742. if (test_bit(xritag, ndlp->active_rrqs.xri_bitmap))
  743. return 1;
  744. else
  745. return 0;
  746. }
  747. /**
  748. * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
  749. * @phba: Pointer to HBA context object.
  750. * @ndlp: nodelist pointer for this target.
  751. * @xritag: xri used in this exchange.
  752. * @rxid: Remote Exchange ID.
  753. * @send_rrq: Flag used to determine if we should send rrq els cmd.
  754. *
  755. * This function takes the hbalock.
  756. * The active bit is always set in the active rrq xri_bitmap even
  757. * if there is no slot avaiable for the other rrq information.
  758. *
  759. * returns 0 rrq actived for this xri
  760. * < 0 No memory or invalid ndlp.
  761. **/
  762. int
  763. lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
  764. uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
  765. {
  766. unsigned long iflags;
  767. struct lpfc_node_rrq *rrq;
  768. int empty;
  769. if (!ndlp)
  770. return -EINVAL;
  771. if (!phba->cfg_enable_rrq)
  772. return -EINVAL;
  773. spin_lock_irqsave(&phba->hbalock, iflags);
  774. if (phba->pport->load_flag & FC_UNLOADING) {
  775. phba->hba_flag &= ~HBA_RRQ_ACTIVE;
  776. goto out;
  777. }
  778. /*
  779. * set the active bit even if there is no mem available.
  780. */
  781. if (NLP_CHK_FREE_REQ(ndlp))
  782. goto out;
  783. if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
  784. goto out;
  785. if (test_and_set_bit(xritag, ndlp->active_rrqs.xri_bitmap))
  786. goto out;
  787. spin_unlock_irqrestore(&phba->hbalock, iflags);
  788. rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
  789. if (!rrq) {
  790. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  791. "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
  792. " DID:0x%x Send:%d\n",
  793. xritag, rxid, ndlp->nlp_DID, send_rrq);
  794. return -EINVAL;
  795. }
  796. if (phba->cfg_enable_rrq == 1)
  797. rrq->send_rrq = send_rrq;
  798. else
  799. rrq->send_rrq = 0;
  800. rrq->xritag = xritag;
  801. rrq->rrq_stop_time = jiffies +
  802. msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
  803. rrq->ndlp = ndlp;
  804. rrq->nlp_DID = ndlp->nlp_DID;
  805. rrq->vport = ndlp->vport;
  806. rrq->rxid = rxid;
  807. spin_lock_irqsave(&phba->hbalock, iflags);
  808. empty = list_empty(&phba->active_rrq_list);
  809. list_add_tail(&rrq->list, &phba->active_rrq_list);
  810. phba->hba_flag |= HBA_RRQ_ACTIVE;
  811. if (empty)
  812. lpfc_worker_wake_up(phba);
  813. spin_unlock_irqrestore(&phba->hbalock, iflags);
  814. return 0;
  815. out:
  816. spin_unlock_irqrestore(&phba->hbalock, iflags);
  817. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  818. "2921 Can't set rrq active xri:0x%x rxid:0x%x"
  819. " DID:0x%x Send:%d\n",
  820. xritag, rxid, ndlp->nlp_DID, send_rrq);
  821. return -EINVAL;
  822. }
  823. /**
  824. * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
  825. * @phba: Pointer to HBA context object.
  826. * @piocb: Pointer to the iocbq.
  827. *
  828. * This function is called with hbalock held. This function
  829. * gets a new driver sglq object from the sglq list. If the
  830. * list is not empty then it is successful, it returns pointer to the newly
  831. * allocated sglq object else it returns NULL.
  832. **/
  833. static struct lpfc_sglq *
  834. __lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
  835. {
  836. struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
  837. struct lpfc_sglq *sglq = NULL;
  838. struct lpfc_sglq *start_sglq = NULL;
  839. struct lpfc_scsi_buf *lpfc_cmd;
  840. struct lpfc_nodelist *ndlp;
  841. int found = 0;
  842. if (piocbq->iocb_flag & LPFC_IO_FCP) {
  843. lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
  844. ndlp = lpfc_cmd->rdata->pnode;
  845. } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
  846. !(piocbq->iocb_flag & LPFC_IO_LIBDFC))
  847. ndlp = piocbq->context_un.ndlp;
  848. else if (piocbq->iocb_flag & LPFC_IO_LIBDFC)
  849. ndlp = piocbq->context_un.ndlp;
  850. else
  851. ndlp = piocbq->context1;
  852. list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
  853. start_sglq = sglq;
  854. while (!found) {
  855. if (!sglq)
  856. return NULL;
  857. if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_lxritag)) {
  858. /* This xri has an rrq outstanding for this DID.
  859. * put it back in the list and get another xri.
  860. */
  861. list_add_tail(&sglq->list, lpfc_sgl_list);
  862. sglq = NULL;
  863. list_remove_head(lpfc_sgl_list, sglq,
  864. struct lpfc_sglq, list);
  865. if (sglq == start_sglq) {
  866. sglq = NULL;
  867. break;
  868. } else
  869. continue;
  870. }
  871. sglq->ndlp = ndlp;
  872. found = 1;
  873. phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
  874. sglq->state = SGL_ALLOCATED;
  875. }
  876. return sglq;
  877. }
  878. /**
  879. * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
  880. * @phba: Pointer to HBA context object.
  881. *
  882. * This function is called with no lock held. This function
  883. * allocates a new driver iocb object from the iocb pool. If the
  884. * allocation is successful, it returns pointer to the newly
  885. * allocated iocb object else it returns NULL.
  886. **/
  887. struct lpfc_iocbq *
  888. lpfc_sli_get_iocbq(struct lpfc_hba *phba)
  889. {
  890. struct lpfc_iocbq * iocbq = NULL;
  891. unsigned long iflags;
  892. spin_lock_irqsave(&phba->hbalock, iflags);
  893. iocbq = __lpfc_sli_get_iocbq(phba);
  894. spin_unlock_irqrestore(&phba->hbalock, iflags);
  895. return iocbq;
  896. }
  897. /**
  898. * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
  899. * @phba: Pointer to HBA context object.
  900. * @iocbq: Pointer to driver iocb object.
  901. *
  902. * This function is called with hbalock held to release driver
  903. * iocb object to the iocb pool. The iotag in the iocb object
  904. * does not change for each use of the iocb object. This function
  905. * clears all other fields of the iocb object when it is freed.
  906. * The sqlq structure that holds the xritag and phys and virtual
  907. * mappings for the scatter gather list is retrieved from the
  908. * active array of sglq. The get of the sglq pointer also clears
  909. * the entry in the array. If the status of the IO indiactes that
  910. * this IO was aborted then the sglq entry it put on the
  911. * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
  912. * IO has good status or fails for any other reason then the sglq
  913. * entry is added to the free list (lpfc_sgl_list).
  914. **/
  915. static void
  916. __lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  917. {
  918. struct lpfc_sglq *sglq;
  919. size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
  920. unsigned long iflag = 0;
  921. struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
  922. if (iocbq->sli4_xritag == NO_XRI)
  923. sglq = NULL;
  924. else
  925. sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
  926. if (sglq) {
  927. if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
  928. (sglq->state != SGL_XRI_ABORTED)) {
  929. spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
  930. iflag);
  931. list_add(&sglq->list,
  932. &phba->sli4_hba.lpfc_abts_els_sgl_list);
  933. spin_unlock_irqrestore(
  934. &phba->sli4_hba.abts_sgl_list_lock, iflag);
  935. } else {
  936. sglq->state = SGL_FREED;
  937. sglq->ndlp = NULL;
  938. list_add_tail(&sglq->list,
  939. &phba->sli4_hba.lpfc_sgl_list);
  940. /* Check if TXQ queue needs to be serviced */
  941. if (!list_empty(&pring->txq))
  942. lpfc_worker_wake_up(phba);
  943. }
  944. }
  945. /*
  946. * Clean all volatile data fields, preserve iotag and node struct.
  947. */
  948. memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
  949. iocbq->sli4_lxritag = NO_XRI;
  950. iocbq->sli4_xritag = NO_XRI;
  951. list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
  952. }
  953. /**
  954. * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
  955. * @phba: Pointer to HBA context object.
  956. * @iocbq: Pointer to driver iocb object.
  957. *
  958. * This function is called with hbalock held to release driver
  959. * iocb object to the iocb pool. The iotag in the iocb object
  960. * does not change for each use of the iocb object. This function
  961. * clears all other fields of the iocb object when it is freed.
  962. **/
  963. static void
  964. __lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  965. {
  966. size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
  967. /*
  968. * Clean all volatile data fields, preserve iotag and node struct.
  969. */
  970. memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
  971. iocbq->sli4_xritag = NO_XRI;
  972. list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
  973. }
  974. /**
  975. * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
  976. * @phba: Pointer to HBA context object.
  977. * @iocbq: Pointer to driver iocb object.
  978. *
  979. * This function is called with hbalock held to release driver
  980. * iocb object to the iocb pool. The iotag in the iocb object
  981. * does not change for each use of the iocb object. This function
  982. * clears all other fields of the iocb object when it is freed.
  983. **/
  984. static void
  985. __lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  986. {
  987. phba->__lpfc_sli_release_iocbq(phba, iocbq);
  988. phba->iocb_cnt--;
  989. }
  990. /**
  991. * lpfc_sli_release_iocbq - Release iocb to the iocb pool
  992. * @phba: Pointer to HBA context object.
  993. * @iocbq: Pointer to driver iocb object.
  994. *
  995. * This function is called with no lock held to release the iocb to
  996. * iocb pool.
  997. **/
  998. void
  999. lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  1000. {
  1001. unsigned long iflags;
  1002. /*
  1003. * Clean all volatile data fields, preserve iotag and node struct.
  1004. */
  1005. spin_lock_irqsave(&phba->hbalock, iflags);
  1006. __lpfc_sli_release_iocbq(phba, iocbq);
  1007. spin_unlock_irqrestore(&phba->hbalock, iflags);
  1008. }
  1009. /**
  1010. * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
  1011. * @phba: Pointer to HBA context object.
  1012. * @iocblist: List of IOCBs.
  1013. * @ulpstatus: ULP status in IOCB command field.
  1014. * @ulpWord4: ULP word-4 in IOCB command field.
  1015. *
  1016. * This function is called with a list of IOCBs to cancel. It cancels the IOCB
  1017. * on the list by invoking the complete callback function associated with the
  1018. * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
  1019. * fields.
  1020. **/
  1021. void
  1022. lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
  1023. uint32_t ulpstatus, uint32_t ulpWord4)
  1024. {
  1025. struct lpfc_iocbq *piocb;
  1026. while (!list_empty(iocblist)) {
  1027. list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
  1028. if (!piocb->iocb_cmpl)
  1029. lpfc_sli_release_iocbq(phba, piocb);
  1030. else {
  1031. piocb->iocb.ulpStatus = ulpstatus;
  1032. piocb->iocb.un.ulpWord[4] = ulpWord4;
  1033. (piocb->iocb_cmpl) (phba, piocb, piocb);
  1034. }
  1035. }
  1036. return;
  1037. }
  1038. /**
  1039. * lpfc_sli_iocb_cmd_type - Get the iocb type
  1040. * @iocb_cmnd: iocb command code.
  1041. *
  1042. * This function is called by ring event handler function to get the iocb type.
  1043. * This function translates the iocb command to an iocb command type used to
  1044. * decide the final disposition of each completed IOCB.
  1045. * The function returns
  1046. * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
  1047. * LPFC_SOL_IOCB if it is a solicited iocb completion
  1048. * LPFC_ABORT_IOCB if it is an abort iocb
  1049. * LPFC_UNSOL_IOCB if it is an unsolicited iocb
  1050. *
  1051. * The caller is not required to hold any lock.
  1052. **/
  1053. static lpfc_iocb_type
  1054. lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
  1055. {
  1056. lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
  1057. if (iocb_cmnd > CMD_MAX_IOCB_CMD)
  1058. return 0;
  1059. switch (iocb_cmnd) {
  1060. case CMD_XMIT_SEQUENCE_CR:
  1061. case CMD_XMIT_SEQUENCE_CX:
  1062. case CMD_XMIT_BCAST_CN:
  1063. case CMD_XMIT_BCAST_CX:
  1064. case CMD_ELS_REQUEST_CR:
  1065. case CMD_ELS_REQUEST_CX:
  1066. case CMD_CREATE_XRI_CR:
  1067. case CMD_CREATE_XRI_CX:
  1068. case CMD_GET_RPI_CN:
  1069. case CMD_XMIT_ELS_RSP_CX:
  1070. case CMD_GET_RPI_CR:
  1071. case CMD_FCP_IWRITE_CR:
  1072. case CMD_FCP_IWRITE_CX:
  1073. case CMD_FCP_IREAD_CR:
  1074. case CMD_FCP_IREAD_CX:
  1075. case CMD_FCP_ICMND_CR:
  1076. case CMD_FCP_ICMND_CX:
  1077. case CMD_FCP_TSEND_CX:
  1078. case CMD_FCP_TRSP_CX:
  1079. case CMD_FCP_TRECEIVE_CX:
  1080. case CMD_FCP_AUTO_TRSP_CX:
  1081. case CMD_ADAPTER_MSG:
  1082. case CMD_ADAPTER_DUMP:
  1083. case CMD_XMIT_SEQUENCE64_CR:
  1084. case CMD_XMIT_SEQUENCE64_CX:
  1085. case CMD_XMIT_BCAST64_CN:
  1086. case CMD_XMIT_BCAST64_CX:
  1087. case CMD_ELS_REQUEST64_CR:
  1088. case CMD_ELS_REQUEST64_CX:
  1089. case CMD_FCP_IWRITE64_CR:
  1090. case CMD_FCP_IWRITE64_CX:
  1091. case CMD_FCP_IREAD64_CR:
  1092. case CMD_FCP_IREAD64_CX:
  1093. case CMD_FCP_ICMND64_CR:
  1094. case CMD_FCP_ICMND64_CX:
  1095. case CMD_FCP_TSEND64_CX:
  1096. case CMD_FCP_TRSP64_CX:
  1097. case CMD_FCP_TRECEIVE64_CX:
  1098. case CMD_GEN_REQUEST64_CR:
  1099. case CMD_GEN_REQUEST64_CX:
  1100. case CMD_XMIT_ELS_RSP64_CX:
  1101. case DSSCMD_IWRITE64_CR:
  1102. case DSSCMD_IWRITE64_CX:
  1103. case DSSCMD_IREAD64_CR:
  1104. case DSSCMD_IREAD64_CX:
  1105. type = LPFC_SOL_IOCB;
  1106. break;
  1107. case CMD_ABORT_XRI_CN:
  1108. case CMD_ABORT_XRI_CX:
  1109. case CMD_CLOSE_XRI_CN:
  1110. case CMD_CLOSE_XRI_CX:
  1111. case CMD_XRI_ABORTED_CX:
  1112. case CMD_ABORT_MXRI64_CN:
  1113. case CMD_XMIT_BLS_RSP64_CX:
  1114. type = LPFC_ABORT_IOCB;
  1115. break;
  1116. case CMD_RCV_SEQUENCE_CX:
  1117. case CMD_RCV_ELS_REQ_CX:
  1118. case CMD_RCV_SEQUENCE64_CX:
  1119. case CMD_RCV_ELS_REQ64_CX:
  1120. case CMD_ASYNC_STATUS:
  1121. case CMD_IOCB_RCV_SEQ64_CX:
  1122. case CMD_IOCB_RCV_ELS64_CX:
  1123. case CMD_IOCB_RCV_CONT64_CX:
  1124. case CMD_IOCB_RET_XRI64_CX:
  1125. type = LPFC_UNSOL_IOCB;
  1126. break;
  1127. case CMD_IOCB_XMIT_MSEQ64_CR:
  1128. case CMD_IOCB_XMIT_MSEQ64_CX:
  1129. case CMD_IOCB_RCV_SEQ_LIST64_CX:
  1130. case CMD_IOCB_RCV_ELS_LIST64_CX:
  1131. case CMD_IOCB_CLOSE_EXTENDED_CN:
  1132. case CMD_IOCB_ABORT_EXTENDED_CN:
  1133. case CMD_IOCB_RET_HBQE64_CN:
  1134. case CMD_IOCB_FCP_IBIDIR64_CR:
  1135. case CMD_IOCB_FCP_IBIDIR64_CX:
  1136. case CMD_IOCB_FCP_ITASKMGT64_CX:
  1137. case CMD_IOCB_LOGENTRY_CN:
  1138. case CMD_IOCB_LOGENTRY_ASYNC_CN:
  1139. printk("%s - Unhandled SLI-3 Command x%x\n",
  1140. __func__, iocb_cmnd);
  1141. type = LPFC_UNKNOWN_IOCB;
  1142. break;
  1143. default:
  1144. type = LPFC_UNKNOWN_IOCB;
  1145. break;
  1146. }
  1147. return type;
  1148. }
  1149. /**
  1150. * lpfc_sli_ring_map - Issue config_ring mbox for all rings
  1151. * @phba: Pointer to HBA context object.
  1152. *
  1153. * This function is called from SLI initialization code
  1154. * to configure every ring of the HBA's SLI interface. The
  1155. * caller is not required to hold any lock. This function issues
  1156. * a config_ring mailbox command for each ring.
  1157. * This function returns zero if successful else returns a negative
  1158. * error code.
  1159. **/
  1160. static int
  1161. lpfc_sli_ring_map(struct lpfc_hba *phba)
  1162. {
  1163. struct lpfc_sli *psli = &phba->sli;
  1164. LPFC_MBOXQ_t *pmb;
  1165. MAILBOX_t *pmbox;
  1166. int i, rc, ret = 0;
  1167. pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  1168. if (!pmb)
  1169. return -ENOMEM;
  1170. pmbox = &pmb->u.mb;
  1171. phba->link_state = LPFC_INIT_MBX_CMDS;
  1172. for (i = 0; i < psli->num_rings; i++) {
  1173. lpfc_config_ring(phba, i, pmb);
  1174. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
  1175. if (rc != MBX_SUCCESS) {
  1176. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  1177. "0446 Adapter failed to init (%d), "
  1178. "mbxCmd x%x CFG_RING, mbxStatus x%x, "
  1179. "ring %d\n",
  1180. rc, pmbox->mbxCommand,
  1181. pmbox->mbxStatus, i);
  1182. phba->link_state = LPFC_HBA_ERROR;
  1183. ret = -ENXIO;
  1184. break;
  1185. }
  1186. }
  1187. mempool_free(pmb, phba->mbox_mem_pool);
  1188. return ret;
  1189. }
  1190. /**
  1191. * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
  1192. * @phba: Pointer to HBA context object.
  1193. * @pring: Pointer to driver SLI ring object.
  1194. * @piocb: Pointer to the driver iocb object.
  1195. *
  1196. * This function is called with hbalock held. The function adds the
  1197. * new iocb to txcmplq of the given ring. This function always returns
  1198. * 0. If this function is called for ELS ring, this function checks if
  1199. * there is a vport associated with the ELS command. This function also
  1200. * starts els_tmofunc timer if this is an ELS command.
  1201. **/
  1202. static int
  1203. lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  1204. struct lpfc_iocbq *piocb)
  1205. {
  1206. list_add_tail(&piocb->list, &pring->txcmplq);
  1207. piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
  1208. if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
  1209. (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
  1210. (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
  1211. if (!piocb->vport)
  1212. BUG();
  1213. else
  1214. mod_timer(&piocb->vport->els_tmofunc,
  1215. jiffies +
  1216. msecs_to_jiffies(1000 * (phba->fc_ratov << 1)));
  1217. }
  1218. return 0;
  1219. }
  1220. /**
  1221. * lpfc_sli_ringtx_get - Get first element of the txq
  1222. * @phba: Pointer to HBA context object.
  1223. * @pring: Pointer to driver SLI ring object.
  1224. *
  1225. * This function is called with hbalock held to get next
  1226. * iocb in txq of the given ring. If there is any iocb in
  1227. * the txq, the function returns first iocb in the list after
  1228. * removing the iocb from the list, else it returns NULL.
  1229. **/
  1230. struct lpfc_iocbq *
  1231. lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1232. {
  1233. struct lpfc_iocbq *cmd_iocb;
  1234. list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
  1235. return cmd_iocb;
  1236. }
  1237. /**
  1238. * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
  1239. * @phba: Pointer to HBA context object.
  1240. * @pring: Pointer to driver SLI ring object.
  1241. *
  1242. * This function is called with hbalock held and the caller must post the
  1243. * iocb without releasing the lock. If the caller releases the lock,
  1244. * iocb slot returned by the function is not guaranteed to be available.
  1245. * The function returns pointer to the next available iocb slot if there
  1246. * is available slot in the ring, else it returns NULL.
  1247. * If the get index of the ring is ahead of the put index, the function
  1248. * will post an error attention event to the worker thread to take the
  1249. * HBA to offline state.
  1250. **/
  1251. static IOCB_t *
  1252. lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1253. {
  1254. struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
  1255. uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
  1256. if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
  1257. (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
  1258. pring->sli.sli3.next_cmdidx = 0;
  1259. if (unlikely(pring->sli.sli3.local_getidx ==
  1260. pring->sli.sli3.next_cmdidx)) {
  1261. pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
  1262. if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
  1263. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  1264. "0315 Ring %d issue: portCmdGet %d "
  1265. "is bigger than cmd ring %d\n",
  1266. pring->ringno,
  1267. pring->sli.sli3.local_getidx,
  1268. max_cmd_idx);
  1269. phba->link_state = LPFC_HBA_ERROR;
  1270. /*
  1271. * All error attention handlers are posted to
  1272. * worker thread
  1273. */
  1274. phba->work_ha |= HA_ERATT;
  1275. phba->work_hs = HS_FFER3;
  1276. lpfc_worker_wake_up(phba);
  1277. return NULL;
  1278. }
  1279. if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
  1280. return NULL;
  1281. }
  1282. return lpfc_cmd_iocb(phba, pring);
  1283. }
  1284. /**
  1285. * lpfc_sli_next_iotag - Get an iotag for the iocb
  1286. * @phba: Pointer to HBA context object.
  1287. * @iocbq: Pointer to driver iocb object.
  1288. *
  1289. * This function gets an iotag for the iocb. If there is no unused iotag and
  1290. * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
  1291. * array and assigns a new iotag.
  1292. * The function returns the allocated iotag if successful, else returns zero.
  1293. * Zero is not a valid iotag.
  1294. * The caller is not required to hold any lock.
  1295. **/
  1296. uint16_t
  1297. lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  1298. {
  1299. struct lpfc_iocbq **new_arr;
  1300. struct lpfc_iocbq **old_arr;
  1301. size_t new_len;
  1302. struct lpfc_sli *psli = &phba->sli;
  1303. uint16_t iotag;
  1304. spin_lock_irq(&phba->hbalock);
  1305. iotag = psli->last_iotag;
  1306. if(++iotag < psli->iocbq_lookup_len) {
  1307. psli->last_iotag = iotag;
  1308. psli->iocbq_lookup[iotag] = iocbq;
  1309. spin_unlock_irq(&phba->hbalock);
  1310. iocbq->iotag = iotag;
  1311. return iotag;
  1312. } else if (psli->iocbq_lookup_len < (0xffff
  1313. - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
  1314. new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
  1315. spin_unlock_irq(&phba->hbalock);
  1316. new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
  1317. GFP_KERNEL);
  1318. if (new_arr) {
  1319. spin_lock_irq(&phba->hbalock);
  1320. old_arr = psli->iocbq_lookup;
  1321. if (new_len <= psli->iocbq_lookup_len) {
  1322. /* highly unprobable case */
  1323. kfree(new_arr);
  1324. iotag = psli->last_iotag;
  1325. if(++iotag < psli->iocbq_lookup_len) {
  1326. psli->last_iotag = iotag;
  1327. psli->iocbq_lookup[iotag] = iocbq;
  1328. spin_unlock_irq(&phba->hbalock);
  1329. iocbq->iotag = iotag;
  1330. return iotag;
  1331. }
  1332. spin_unlock_irq(&phba->hbalock);
  1333. return 0;
  1334. }
  1335. if (psli->iocbq_lookup)
  1336. memcpy(new_arr, old_arr,
  1337. ((psli->last_iotag + 1) *
  1338. sizeof (struct lpfc_iocbq *)));
  1339. psli->iocbq_lookup = new_arr;
  1340. psli->iocbq_lookup_len = new_len;
  1341. psli->last_iotag = iotag;
  1342. psli->iocbq_lookup[iotag] = iocbq;
  1343. spin_unlock_irq(&phba->hbalock);
  1344. iocbq->iotag = iotag;
  1345. kfree(old_arr);
  1346. return iotag;
  1347. }
  1348. } else
  1349. spin_unlock_irq(&phba->hbalock);
  1350. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  1351. "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
  1352. psli->last_iotag);
  1353. return 0;
  1354. }
  1355. /**
  1356. * lpfc_sli_submit_iocb - Submit an iocb to the firmware
  1357. * @phba: Pointer to HBA context object.
  1358. * @pring: Pointer to driver SLI ring object.
  1359. * @iocb: Pointer to iocb slot in the ring.
  1360. * @nextiocb: Pointer to driver iocb object which need to be
  1361. * posted to firmware.
  1362. *
  1363. * This function is called with hbalock held to post a new iocb to
  1364. * the firmware. This function copies the new iocb to ring iocb slot and
  1365. * updates the ring pointers. It adds the new iocb to txcmplq if there is
  1366. * a completion call back for this iocb else the function will free the
  1367. * iocb object.
  1368. **/
  1369. static void
  1370. lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  1371. IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
  1372. {
  1373. /*
  1374. * Set up an iotag
  1375. */
  1376. nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
  1377. if (pring->ringno == LPFC_ELS_RING) {
  1378. lpfc_debugfs_slow_ring_trc(phba,
  1379. "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
  1380. *(((uint32_t *) &nextiocb->iocb) + 4),
  1381. *(((uint32_t *) &nextiocb->iocb) + 6),
  1382. *(((uint32_t *) &nextiocb->iocb) + 7));
  1383. }
  1384. /*
  1385. * Issue iocb command to adapter
  1386. */
  1387. lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
  1388. wmb();
  1389. pring->stats.iocb_cmd++;
  1390. /*
  1391. * If there is no completion routine to call, we can release the
  1392. * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
  1393. * that have no rsp ring completion, iocb_cmpl MUST be NULL.
  1394. */
  1395. if (nextiocb->iocb_cmpl)
  1396. lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
  1397. else
  1398. __lpfc_sli_release_iocbq(phba, nextiocb);
  1399. /*
  1400. * Let the HBA know what IOCB slot will be the next one the
  1401. * driver will put a command into.
  1402. */
  1403. pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
  1404. writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
  1405. }
  1406. /**
  1407. * lpfc_sli_update_full_ring - Update the chip attention register
  1408. * @phba: Pointer to HBA context object.
  1409. * @pring: Pointer to driver SLI ring object.
  1410. *
  1411. * The caller is not required to hold any lock for calling this function.
  1412. * This function updates the chip attention bits for the ring to inform firmware
  1413. * that there are pending work to be done for this ring and requests an
  1414. * interrupt when there is space available in the ring. This function is
  1415. * called when the driver is unable to post more iocbs to the ring due
  1416. * to unavailability of space in the ring.
  1417. **/
  1418. static void
  1419. lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1420. {
  1421. int ringno = pring->ringno;
  1422. pring->flag |= LPFC_CALL_RING_AVAILABLE;
  1423. wmb();
  1424. /*
  1425. * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
  1426. * The HBA will tell us when an IOCB entry is available.
  1427. */
  1428. writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
  1429. readl(phba->CAregaddr); /* flush */
  1430. pring->stats.iocb_cmd_full++;
  1431. }
  1432. /**
  1433. * lpfc_sli_update_ring - Update chip attention register
  1434. * @phba: Pointer to HBA context object.
  1435. * @pring: Pointer to driver SLI ring object.
  1436. *
  1437. * This function updates the chip attention register bit for the
  1438. * given ring to inform HBA that there is more work to be done
  1439. * in this ring. The caller is not required to hold any lock.
  1440. **/
  1441. static void
  1442. lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1443. {
  1444. int ringno = pring->ringno;
  1445. /*
  1446. * Tell the HBA that there is work to do in this ring.
  1447. */
  1448. if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
  1449. wmb();
  1450. writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
  1451. readl(phba->CAregaddr); /* flush */
  1452. }
  1453. }
  1454. /**
  1455. * lpfc_sli_resume_iocb - Process iocbs in the txq
  1456. * @phba: Pointer to HBA context object.
  1457. * @pring: Pointer to driver SLI ring object.
  1458. *
  1459. * This function is called with hbalock held to post pending iocbs
  1460. * in the txq to the firmware. This function is called when driver
  1461. * detects space available in the ring.
  1462. **/
  1463. static void
  1464. lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1465. {
  1466. IOCB_t *iocb;
  1467. struct lpfc_iocbq *nextiocb;
  1468. /*
  1469. * Check to see if:
  1470. * (a) there is anything on the txq to send
  1471. * (b) link is up
  1472. * (c) link attention events can be processed (fcp ring only)
  1473. * (d) IOCB processing is not blocked by the outstanding mbox command.
  1474. */
  1475. if (lpfc_is_link_up(phba) &&
  1476. (!list_empty(&pring->txq)) &&
  1477. (pring->ringno != phba->sli.fcp_ring ||
  1478. phba->sli.sli_flag & LPFC_PROCESS_LA)) {
  1479. while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
  1480. (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
  1481. lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
  1482. if (iocb)
  1483. lpfc_sli_update_ring(phba, pring);
  1484. else
  1485. lpfc_sli_update_full_ring(phba, pring);
  1486. }
  1487. return;
  1488. }
  1489. /**
  1490. * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
  1491. * @phba: Pointer to HBA context object.
  1492. * @hbqno: HBQ number.
  1493. *
  1494. * This function is called with hbalock held to get the next
  1495. * available slot for the given HBQ. If there is free slot
  1496. * available for the HBQ it will return pointer to the next available
  1497. * HBQ entry else it will return NULL.
  1498. **/
  1499. static struct lpfc_hbq_entry *
  1500. lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
  1501. {
  1502. struct hbq_s *hbqp = &phba->hbqs[hbqno];
  1503. if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
  1504. ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
  1505. hbqp->next_hbqPutIdx = 0;
  1506. if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
  1507. uint32_t raw_index = phba->hbq_get[hbqno];
  1508. uint32_t getidx = le32_to_cpu(raw_index);
  1509. hbqp->local_hbqGetIdx = getidx;
  1510. if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
  1511. lpfc_printf_log(phba, KERN_ERR,
  1512. LOG_SLI | LOG_VPORT,
  1513. "1802 HBQ %d: local_hbqGetIdx "
  1514. "%u is > than hbqp->entry_count %u\n",
  1515. hbqno, hbqp->local_hbqGetIdx,
  1516. hbqp->entry_count);
  1517. phba->link_state = LPFC_HBA_ERROR;
  1518. return NULL;
  1519. }
  1520. if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
  1521. return NULL;
  1522. }
  1523. return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
  1524. hbqp->hbqPutIdx;
  1525. }
  1526. /**
  1527. * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
  1528. * @phba: Pointer to HBA context object.
  1529. *
  1530. * This function is called with no lock held to free all the
  1531. * hbq buffers while uninitializing the SLI interface. It also
  1532. * frees the HBQ buffers returned by the firmware but not yet
  1533. * processed by the upper layers.
  1534. **/
  1535. void
  1536. lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
  1537. {
  1538. struct lpfc_dmabuf *dmabuf, *next_dmabuf;
  1539. struct hbq_dmabuf *hbq_buf;
  1540. unsigned long flags;
  1541. int i, hbq_count;
  1542. uint32_t hbqno;
  1543. hbq_count = lpfc_sli_hbq_count();
  1544. /* Return all memory used by all HBQs */
  1545. spin_lock_irqsave(&phba->hbalock, flags);
  1546. for (i = 0; i < hbq_count; ++i) {
  1547. list_for_each_entry_safe(dmabuf, next_dmabuf,
  1548. &phba->hbqs[i].hbq_buffer_list, list) {
  1549. hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
  1550. list_del(&hbq_buf->dbuf.list);
  1551. (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
  1552. }
  1553. phba->hbqs[i].buffer_count = 0;
  1554. }
  1555. /* Return all HBQ buffer that are in-fly */
  1556. list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
  1557. list) {
  1558. hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
  1559. list_del(&hbq_buf->dbuf.list);
  1560. if (hbq_buf->tag == -1) {
  1561. (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
  1562. (phba, hbq_buf);
  1563. } else {
  1564. hbqno = hbq_buf->tag >> 16;
  1565. if (hbqno >= LPFC_MAX_HBQS)
  1566. (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
  1567. (phba, hbq_buf);
  1568. else
  1569. (phba->hbqs[hbqno].hbq_free_buffer)(phba,
  1570. hbq_buf);
  1571. }
  1572. }
  1573. /* Mark the HBQs not in use */
  1574. phba->hbq_in_use = 0;
  1575. spin_unlock_irqrestore(&phba->hbalock, flags);
  1576. }
  1577. /**
  1578. * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
  1579. * @phba: Pointer to HBA context object.
  1580. * @hbqno: HBQ number.
  1581. * @hbq_buf: Pointer to HBQ buffer.
  1582. *
  1583. * This function is called with the hbalock held to post a
  1584. * hbq buffer to the firmware. If the function finds an empty
  1585. * slot in the HBQ, it will post the buffer. The function will return
  1586. * pointer to the hbq entry if it successfully post the buffer
  1587. * else it will return NULL.
  1588. **/
  1589. static int
  1590. lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
  1591. struct hbq_dmabuf *hbq_buf)
  1592. {
  1593. return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
  1594. }
  1595. /**
  1596. * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
  1597. * @phba: Pointer to HBA context object.
  1598. * @hbqno: HBQ number.
  1599. * @hbq_buf: Pointer to HBQ buffer.
  1600. *
  1601. * This function is called with the hbalock held to post a hbq buffer to the
  1602. * firmware. If the function finds an empty slot in the HBQ, it will post the
  1603. * buffer and place it on the hbq_buffer_list. The function will return zero if
  1604. * it successfully post the buffer else it will return an error.
  1605. **/
  1606. static int
  1607. lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
  1608. struct hbq_dmabuf *hbq_buf)
  1609. {
  1610. struct lpfc_hbq_entry *hbqe;
  1611. dma_addr_t physaddr = hbq_buf->dbuf.phys;
  1612. /* Get next HBQ entry slot to use */
  1613. hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
  1614. if (hbqe) {
  1615. struct hbq_s *hbqp = &phba->hbqs[hbqno];
  1616. hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
  1617. hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
  1618. hbqe->bde.tus.f.bdeSize = hbq_buf->size;
  1619. hbqe->bde.tus.f.bdeFlags = 0;
  1620. hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
  1621. hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
  1622. /* Sync SLIM */
  1623. hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
  1624. writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
  1625. /* flush */
  1626. readl(phba->hbq_put + hbqno);
  1627. list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
  1628. return 0;
  1629. } else
  1630. return -ENOMEM;
  1631. }
  1632. /**
  1633. * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
  1634. * @phba: Pointer to HBA context object.
  1635. * @hbqno: HBQ number.
  1636. * @hbq_buf: Pointer to HBQ buffer.
  1637. *
  1638. * This function is called with the hbalock held to post an RQE to the SLI4
  1639. * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
  1640. * the hbq_buffer_list and return zero, otherwise it will return an error.
  1641. **/
  1642. static int
  1643. lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
  1644. struct hbq_dmabuf *hbq_buf)
  1645. {
  1646. int rc;
  1647. struct lpfc_rqe hrqe;
  1648. struct lpfc_rqe drqe;
  1649. hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
  1650. hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
  1651. drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
  1652. drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
  1653. rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
  1654. &hrqe, &drqe);
  1655. if (rc < 0)
  1656. return rc;
  1657. hbq_buf->tag = rc;
  1658. list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
  1659. return 0;
  1660. }
  1661. /* HBQ for ELS and CT traffic. */
  1662. static struct lpfc_hbq_init lpfc_els_hbq = {
  1663. .rn = 1,
  1664. .entry_count = 256,
  1665. .mask_count = 0,
  1666. .profile = 0,
  1667. .ring_mask = (1 << LPFC_ELS_RING),
  1668. .buffer_count = 0,
  1669. .init_count = 40,
  1670. .add_count = 40,
  1671. };
  1672. /* HBQ for the extra ring if needed */
  1673. static struct lpfc_hbq_init lpfc_extra_hbq = {
  1674. .rn = 1,
  1675. .entry_count = 200,
  1676. .mask_count = 0,
  1677. .profile = 0,
  1678. .ring_mask = (1 << LPFC_EXTRA_RING),
  1679. .buffer_count = 0,
  1680. .init_count = 0,
  1681. .add_count = 5,
  1682. };
  1683. /* Array of HBQs */
  1684. struct lpfc_hbq_init *lpfc_hbq_defs[] = {
  1685. &lpfc_els_hbq,
  1686. &lpfc_extra_hbq,
  1687. };
  1688. /**
  1689. * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
  1690. * @phba: Pointer to HBA context object.
  1691. * @hbqno: HBQ number.
  1692. * @count: Number of HBQ buffers to be posted.
  1693. *
  1694. * This function is called with no lock held to post more hbq buffers to the
  1695. * given HBQ. The function returns the number of HBQ buffers successfully
  1696. * posted.
  1697. **/
  1698. static int
  1699. lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
  1700. {
  1701. uint32_t i, posted = 0;
  1702. unsigned long flags;
  1703. struct hbq_dmabuf *hbq_buffer;
  1704. LIST_HEAD(hbq_buf_list);
  1705. if (!phba->hbqs[hbqno].hbq_alloc_buffer)
  1706. return 0;
  1707. if ((phba->hbqs[hbqno].buffer_count + count) >
  1708. lpfc_hbq_defs[hbqno]->entry_count)
  1709. count = lpfc_hbq_defs[hbqno]->entry_count -
  1710. phba->hbqs[hbqno].buffer_count;
  1711. if (!count)
  1712. return 0;
  1713. /* Allocate HBQ entries */
  1714. for (i = 0; i < count; i++) {
  1715. hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
  1716. if (!hbq_buffer)
  1717. break;
  1718. list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
  1719. }
  1720. /* Check whether HBQ is still in use */
  1721. spin_lock_irqsave(&phba->hbalock, flags);
  1722. if (!phba->hbq_in_use)
  1723. goto err;
  1724. while (!list_empty(&hbq_buf_list)) {
  1725. list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
  1726. dbuf.list);
  1727. hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
  1728. (hbqno << 16));
  1729. if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
  1730. phba->hbqs[hbqno].buffer_count++;
  1731. posted++;
  1732. } else
  1733. (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
  1734. }
  1735. spin_unlock_irqrestore(&phba->hbalock, flags);
  1736. return posted;
  1737. err:
  1738. spin_unlock_irqrestore(&phba->hbalock, flags);
  1739. while (!list_empty(&hbq_buf_list)) {
  1740. list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
  1741. dbuf.list);
  1742. (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
  1743. }
  1744. return 0;
  1745. }
  1746. /**
  1747. * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
  1748. * @phba: Pointer to HBA context object.
  1749. * @qno: HBQ number.
  1750. *
  1751. * This function posts more buffers to the HBQ. This function
  1752. * is called with no lock held. The function returns the number of HBQ entries
  1753. * successfully allocated.
  1754. **/
  1755. int
  1756. lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
  1757. {
  1758. if (phba->sli_rev == LPFC_SLI_REV4)
  1759. return 0;
  1760. else
  1761. return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
  1762. lpfc_hbq_defs[qno]->add_count);
  1763. }
  1764. /**
  1765. * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
  1766. * @phba: Pointer to HBA context object.
  1767. * @qno: HBQ queue number.
  1768. *
  1769. * This function is called from SLI initialization code path with
  1770. * no lock held to post initial HBQ buffers to firmware. The
  1771. * function returns the number of HBQ entries successfully allocated.
  1772. **/
  1773. static int
  1774. lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
  1775. {
  1776. if (phba->sli_rev == LPFC_SLI_REV4)
  1777. return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
  1778. lpfc_hbq_defs[qno]->entry_count);
  1779. else
  1780. return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
  1781. lpfc_hbq_defs[qno]->init_count);
  1782. }
  1783. /**
  1784. * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
  1785. * @phba: Pointer to HBA context object.
  1786. * @hbqno: HBQ number.
  1787. *
  1788. * This function removes the first hbq buffer on an hbq list and returns a
  1789. * pointer to that buffer. If it finds no buffers on the list it returns NULL.
  1790. **/
  1791. static struct hbq_dmabuf *
  1792. lpfc_sli_hbqbuf_get(struct list_head *rb_list)
  1793. {
  1794. struct lpfc_dmabuf *d_buf;
  1795. list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
  1796. if (!d_buf)
  1797. return NULL;
  1798. return container_of(d_buf, struct hbq_dmabuf, dbuf);
  1799. }
  1800. /**
  1801. * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
  1802. * @phba: Pointer to HBA context object.
  1803. * @tag: Tag of the hbq buffer.
  1804. *
  1805. * This function is called with hbalock held. This function searches
  1806. * for the hbq buffer associated with the given tag in the hbq buffer
  1807. * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
  1808. * it returns NULL.
  1809. **/
  1810. static struct hbq_dmabuf *
  1811. lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
  1812. {
  1813. struct lpfc_dmabuf *d_buf;
  1814. struct hbq_dmabuf *hbq_buf;
  1815. uint32_t hbqno;
  1816. hbqno = tag >> 16;
  1817. if (hbqno >= LPFC_MAX_HBQS)
  1818. return NULL;
  1819. spin_lock_irq(&phba->hbalock);
  1820. list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
  1821. hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  1822. if (hbq_buf->tag == tag) {
  1823. spin_unlock_irq(&phba->hbalock);
  1824. return hbq_buf;
  1825. }
  1826. }
  1827. spin_unlock_irq(&phba->hbalock);
  1828. lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
  1829. "1803 Bad hbq tag. Data: x%x x%x\n",
  1830. tag, phba->hbqs[tag >> 16].buffer_count);
  1831. return NULL;
  1832. }
  1833. /**
  1834. * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
  1835. * @phba: Pointer to HBA context object.
  1836. * @hbq_buffer: Pointer to HBQ buffer.
  1837. *
  1838. * This function is called with hbalock. This function gives back
  1839. * the hbq buffer to firmware. If the HBQ does not have space to
  1840. * post the buffer, it will free the buffer.
  1841. **/
  1842. void
  1843. lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
  1844. {
  1845. uint32_t hbqno;
  1846. if (hbq_buffer) {
  1847. hbqno = hbq_buffer->tag >> 16;
  1848. if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
  1849. (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
  1850. }
  1851. }
  1852. /**
  1853. * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
  1854. * @mbxCommand: mailbox command code.
  1855. *
  1856. * This function is called by the mailbox event handler function to verify
  1857. * that the completed mailbox command is a legitimate mailbox command. If the
  1858. * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
  1859. * and the mailbox event handler will take the HBA offline.
  1860. **/
  1861. static int
  1862. lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
  1863. {
  1864. uint8_t ret;
  1865. switch (mbxCommand) {
  1866. case MBX_LOAD_SM:
  1867. case MBX_READ_NV:
  1868. case MBX_WRITE_NV:
  1869. case MBX_WRITE_VPARMS:
  1870. case MBX_RUN_BIU_DIAG:
  1871. case MBX_INIT_LINK:
  1872. case MBX_DOWN_LINK:
  1873. case MBX_CONFIG_LINK:
  1874. case MBX_CONFIG_RING:
  1875. case MBX_RESET_RING:
  1876. case MBX_READ_CONFIG:
  1877. case MBX_READ_RCONFIG:
  1878. case MBX_READ_SPARM:
  1879. case MBX_READ_STATUS:
  1880. case MBX_READ_RPI:
  1881. case MBX_READ_XRI:
  1882. case MBX_READ_REV:
  1883. case MBX_READ_LNK_STAT:
  1884. case MBX_REG_LOGIN:
  1885. case MBX_UNREG_LOGIN:
  1886. case MBX_CLEAR_LA:
  1887. case MBX_DUMP_MEMORY:
  1888. case MBX_DUMP_CONTEXT:
  1889. case MBX_RUN_DIAGS:
  1890. case MBX_RESTART:
  1891. case MBX_UPDATE_CFG:
  1892. case MBX_DOWN_LOAD:
  1893. case MBX_DEL_LD_ENTRY:
  1894. case MBX_RUN_PROGRAM:
  1895. case MBX_SET_MASK:
  1896. case MBX_SET_VARIABLE:
  1897. case MBX_UNREG_D_ID:
  1898. case MBX_KILL_BOARD:
  1899. case MBX_CONFIG_FARP:
  1900. case MBX_BEACON:
  1901. case MBX_LOAD_AREA:
  1902. case MBX_RUN_BIU_DIAG64:
  1903. case MBX_CONFIG_PORT:
  1904. case MBX_READ_SPARM64:
  1905. case MBX_READ_RPI64:
  1906. case MBX_REG_LOGIN64:
  1907. case MBX_READ_TOPOLOGY:
  1908. case MBX_WRITE_WWN:
  1909. case MBX_SET_DEBUG:
  1910. case MBX_LOAD_EXP_ROM:
  1911. case MBX_ASYNCEVT_ENABLE:
  1912. case MBX_REG_VPI:
  1913. case MBX_UNREG_VPI:
  1914. case MBX_HEARTBEAT:
  1915. case MBX_PORT_CAPABILITIES:
  1916. case MBX_PORT_IOV_CONTROL:
  1917. case MBX_SLI4_CONFIG:
  1918. case MBX_SLI4_REQ_FTRS:
  1919. case MBX_REG_FCFI:
  1920. case MBX_UNREG_FCFI:
  1921. case MBX_REG_VFI:
  1922. case MBX_UNREG_VFI:
  1923. case MBX_INIT_VPI:
  1924. case MBX_INIT_VFI:
  1925. case MBX_RESUME_RPI:
  1926. case MBX_READ_EVENT_LOG_STATUS:
  1927. case MBX_READ_EVENT_LOG:
  1928. case MBX_SECURITY_MGMT:
  1929. case MBX_AUTH_PORT:
  1930. case MBX_ACCESS_VDATA:
  1931. ret = mbxCommand;
  1932. break;
  1933. default:
  1934. ret = MBX_SHUTDOWN;
  1935. break;
  1936. }
  1937. return ret;
  1938. }
  1939. /**
  1940. * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
  1941. * @phba: Pointer to HBA context object.
  1942. * @pmboxq: Pointer to mailbox command.
  1943. *
  1944. * This is completion handler function for mailbox commands issued from
  1945. * lpfc_sli_issue_mbox_wait function. This function is called by the
  1946. * mailbox event handler function with no lock held. This function
  1947. * will wake up thread waiting on the wait queue pointed by context1
  1948. * of the mailbox.
  1949. **/
  1950. void
  1951. lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
  1952. {
  1953. wait_queue_head_t *pdone_q;
  1954. unsigned long drvr_flag;
  1955. /*
  1956. * If pdone_q is empty, the driver thread gave up waiting and
  1957. * continued running.
  1958. */
  1959. pmboxq->mbox_flag |= LPFC_MBX_WAKE;
  1960. spin_lock_irqsave(&phba->hbalock, drvr_flag);
  1961. pdone_q = (wait_queue_head_t *) pmboxq->context1;
  1962. if (pdone_q)
  1963. wake_up_interruptible(pdone_q);
  1964. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  1965. return;
  1966. }
  1967. /**
  1968. * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
  1969. * @phba: Pointer to HBA context object.
  1970. * @pmb: Pointer to mailbox object.
  1971. *
  1972. * This function is the default mailbox completion handler. It
  1973. * frees the memory resources associated with the completed mailbox
  1974. * command. If the completed command is a REG_LOGIN mailbox command,
  1975. * this function will issue a UREG_LOGIN to re-claim the RPI.
  1976. **/
  1977. void
  1978. lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
  1979. {
  1980. struct lpfc_vport *vport = pmb->vport;
  1981. struct lpfc_dmabuf *mp;
  1982. struct lpfc_nodelist *ndlp;
  1983. struct Scsi_Host *shost;
  1984. uint16_t rpi, vpi;
  1985. int rc;
  1986. mp = (struct lpfc_dmabuf *) (pmb->context1);
  1987. if (mp) {
  1988. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  1989. kfree(mp);
  1990. }
  1991. /*
  1992. * If a REG_LOGIN succeeded after node is destroyed or node
  1993. * is in re-discovery driver need to cleanup the RPI.
  1994. */
  1995. if (!(phba->pport->load_flag & FC_UNLOADING) &&
  1996. pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
  1997. !pmb->u.mb.mbxStatus) {
  1998. rpi = pmb->u.mb.un.varWords[0];
  1999. vpi = pmb->u.mb.un.varRegLogin.vpi;
  2000. lpfc_unreg_login(phba, vpi, rpi, pmb);
  2001. pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  2002. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
  2003. if (rc != MBX_NOT_FINISHED)
  2004. return;
  2005. }
  2006. if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
  2007. !(phba->pport->load_flag & FC_UNLOADING) &&
  2008. !pmb->u.mb.mbxStatus) {
  2009. shost = lpfc_shost_from_vport(vport);
  2010. spin_lock_irq(shost->host_lock);
  2011. vport->vpi_state |= LPFC_VPI_REGISTERED;
  2012. vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
  2013. spin_unlock_irq(shost->host_lock);
  2014. }
  2015. if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
  2016. ndlp = (struct lpfc_nodelist *)pmb->context2;
  2017. lpfc_nlp_put(ndlp);
  2018. pmb->context2 = NULL;
  2019. }
  2020. /* Check security permission status on INIT_LINK mailbox command */
  2021. if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
  2022. (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
  2023. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  2024. "2860 SLI authentication is required "
  2025. "for INIT_LINK but has not done yet\n");
  2026. if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
  2027. lpfc_sli4_mbox_cmd_free(phba, pmb);
  2028. else
  2029. mempool_free(pmb, phba->mbox_mem_pool);
  2030. }
  2031. /**
  2032. * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
  2033. * @phba: Pointer to HBA context object.
  2034. *
  2035. * This function is called with no lock held. This function processes all
  2036. * the completed mailbox commands and gives it to upper layers. The interrupt
  2037. * service routine processes mailbox completion interrupt and adds completed
  2038. * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
  2039. * Worker thread call lpfc_sli_handle_mb_event, which will return the
  2040. * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
  2041. * function returns the mailbox commands to the upper layer by calling the
  2042. * completion handler function of each mailbox.
  2043. **/
  2044. int
  2045. lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
  2046. {
  2047. MAILBOX_t *pmbox;
  2048. LPFC_MBOXQ_t *pmb;
  2049. int rc;
  2050. LIST_HEAD(cmplq);
  2051. phba->sli.slistat.mbox_event++;
  2052. /* Get all completed mailboxe buffers into the cmplq */
  2053. spin_lock_irq(&phba->hbalock);
  2054. list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
  2055. spin_unlock_irq(&phba->hbalock);
  2056. /* Get a Mailbox buffer to setup mailbox commands for callback */
  2057. do {
  2058. list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
  2059. if (pmb == NULL)
  2060. break;
  2061. pmbox = &pmb->u.mb;
  2062. if (pmbox->mbxCommand != MBX_HEARTBEAT) {
  2063. if (pmb->vport) {
  2064. lpfc_debugfs_disc_trc(pmb->vport,
  2065. LPFC_DISC_TRC_MBOX_VPORT,
  2066. "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
  2067. (uint32_t)pmbox->mbxCommand,
  2068. pmbox->un.varWords[0],
  2069. pmbox->un.varWords[1]);
  2070. }
  2071. else {
  2072. lpfc_debugfs_disc_trc(phba->pport,
  2073. LPFC_DISC_TRC_MBOX,
  2074. "MBOX cmpl: cmd:x%x mb:x%x x%x",
  2075. (uint32_t)pmbox->mbxCommand,
  2076. pmbox->un.varWords[0],
  2077. pmbox->un.varWords[1]);
  2078. }
  2079. }
  2080. /*
  2081. * It is a fatal error if unknown mbox command completion.
  2082. */
  2083. if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
  2084. MBX_SHUTDOWN) {
  2085. /* Unknown mailbox command compl */
  2086. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  2087. "(%d):0323 Unknown Mailbox command "
  2088. "x%x (x%x/x%x) Cmpl\n",
  2089. pmb->vport ? pmb->vport->vpi : 0,
  2090. pmbox->mbxCommand,
  2091. lpfc_sli_config_mbox_subsys_get(phba,
  2092. pmb),
  2093. lpfc_sli_config_mbox_opcode_get(phba,
  2094. pmb));
  2095. phba->link_state = LPFC_HBA_ERROR;
  2096. phba->work_hs = HS_FFER3;
  2097. lpfc_handle_eratt(phba);
  2098. continue;
  2099. }
  2100. if (pmbox->mbxStatus) {
  2101. phba->sli.slistat.mbox_stat_err++;
  2102. if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
  2103. /* Mbox cmd cmpl error - RETRYing */
  2104. lpfc_printf_log(phba, KERN_INFO,
  2105. LOG_MBOX | LOG_SLI,
  2106. "(%d):0305 Mbox cmd cmpl "
  2107. "error - RETRYing Data: x%x "
  2108. "(x%x/x%x) x%x x%x x%x\n",
  2109. pmb->vport ? pmb->vport->vpi : 0,
  2110. pmbox->mbxCommand,
  2111. lpfc_sli_config_mbox_subsys_get(phba,
  2112. pmb),
  2113. lpfc_sli_config_mbox_opcode_get(phba,
  2114. pmb),
  2115. pmbox->mbxStatus,
  2116. pmbox->un.varWords[0],
  2117. pmb->vport->port_state);
  2118. pmbox->mbxStatus = 0;
  2119. pmbox->mbxOwner = OWN_HOST;
  2120. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
  2121. if (rc != MBX_NOT_FINISHED)
  2122. continue;
  2123. }
  2124. }
  2125. /* Mailbox cmd <cmd> Cmpl <cmpl> */
  2126. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  2127. "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
  2128. "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
  2129. "x%x x%x x%x\n",
  2130. pmb->vport ? pmb->vport->vpi : 0,
  2131. pmbox->mbxCommand,
  2132. lpfc_sli_config_mbox_subsys_get(phba, pmb),
  2133. lpfc_sli_config_mbox_opcode_get(phba, pmb),
  2134. pmb->mbox_cmpl,
  2135. *((uint32_t *) pmbox),
  2136. pmbox->un.varWords[0],
  2137. pmbox->un.varWords[1],
  2138. pmbox->un.varWords[2],
  2139. pmbox->un.varWords[3],
  2140. pmbox->un.varWords[4],
  2141. pmbox->un.varWords[5],
  2142. pmbox->un.varWords[6],
  2143. pmbox->un.varWords[7],
  2144. pmbox->un.varWords[8],
  2145. pmbox->un.varWords[9],
  2146. pmbox->un.varWords[10]);
  2147. if (pmb->mbox_cmpl)
  2148. pmb->mbox_cmpl(phba,pmb);
  2149. } while (1);
  2150. return 0;
  2151. }
  2152. /**
  2153. * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
  2154. * @phba: Pointer to HBA context object.
  2155. * @pring: Pointer to driver SLI ring object.
  2156. * @tag: buffer tag.
  2157. *
  2158. * This function is called with no lock held. When QUE_BUFTAG_BIT bit
  2159. * is set in the tag the buffer is posted for a particular exchange,
  2160. * the function will return the buffer without replacing the buffer.
  2161. * If the buffer is for unsolicited ELS or CT traffic, this function
  2162. * returns the buffer and also posts another buffer to the firmware.
  2163. **/
  2164. static struct lpfc_dmabuf *
  2165. lpfc_sli_get_buff(struct lpfc_hba *phba,
  2166. struct lpfc_sli_ring *pring,
  2167. uint32_t tag)
  2168. {
  2169. struct hbq_dmabuf *hbq_entry;
  2170. if (tag & QUE_BUFTAG_BIT)
  2171. return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
  2172. hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
  2173. if (!hbq_entry)
  2174. return NULL;
  2175. return &hbq_entry->dbuf;
  2176. }
  2177. /**
  2178. * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
  2179. * @phba: Pointer to HBA context object.
  2180. * @pring: Pointer to driver SLI ring object.
  2181. * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
  2182. * @fch_r_ctl: the r_ctl for the first frame of the sequence.
  2183. * @fch_type: the type for the first frame of the sequence.
  2184. *
  2185. * This function is called with no lock held. This function uses the r_ctl and
  2186. * type of the received sequence to find the correct callback function to call
  2187. * to process the sequence.
  2188. **/
  2189. static int
  2190. lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  2191. struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
  2192. uint32_t fch_type)
  2193. {
  2194. int i;
  2195. /* unSolicited Responses */
  2196. if (pring->prt[0].profile) {
  2197. if (pring->prt[0].lpfc_sli_rcv_unsol_event)
  2198. (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
  2199. saveq);
  2200. return 1;
  2201. }
  2202. /* We must search, based on rctl / type
  2203. for the right routine */
  2204. for (i = 0; i < pring->num_mask; i++) {
  2205. if ((pring->prt[i].rctl == fch_r_ctl) &&
  2206. (pring->prt[i].type == fch_type)) {
  2207. if (pring->prt[i].lpfc_sli_rcv_unsol_event)
  2208. (pring->prt[i].lpfc_sli_rcv_unsol_event)
  2209. (phba, pring, saveq);
  2210. return 1;
  2211. }
  2212. }
  2213. return 0;
  2214. }
  2215. /**
  2216. * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
  2217. * @phba: Pointer to HBA context object.
  2218. * @pring: Pointer to driver SLI ring object.
  2219. * @saveq: Pointer to the unsolicited iocb.
  2220. *
  2221. * This function is called with no lock held by the ring event handler
  2222. * when there is an unsolicited iocb posted to the response ring by the
  2223. * firmware. This function gets the buffer associated with the iocbs
  2224. * and calls the event handler for the ring. This function handles both
  2225. * qring buffers and hbq buffers.
  2226. * When the function returns 1 the caller can free the iocb object otherwise
  2227. * upper layer functions will free the iocb objects.
  2228. **/
  2229. static int
  2230. lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  2231. struct lpfc_iocbq *saveq)
  2232. {
  2233. IOCB_t * irsp;
  2234. WORD5 * w5p;
  2235. uint32_t Rctl, Type;
  2236. uint32_t match;
  2237. struct lpfc_iocbq *iocbq;
  2238. struct lpfc_dmabuf *dmzbuf;
  2239. match = 0;
  2240. irsp = &(saveq->iocb);
  2241. if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
  2242. if (pring->lpfc_sli_rcv_async_status)
  2243. pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
  2244. else
  2245. lpfc_printf_log(phba,
  2246. KERN_WARNING,
  2247. LOG_SLI,
  2248. "0316 Ring %d handler: unexpected "
  2249. "ASYNC_STATUS iocb received evt_code "
  2250. "0x%x\n",
  2251. pring->ringno,
  2252. irsp->un.asyncstat.evt_code);
  2253. return 1;
  2254. }
  2255. if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
  2256. (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
  2257. if (irsp->ulpBdeCount > 0) {
  2258. dmzbuf = lpfc_sli_get_buff(phba, pring,
  2259. irsp->un.ulpWord[3]);
  2260. lpfc_in_buf_free(phba, dmzbuf);
  2261. }
  2262. if (irsp->ulpBdeCount > 1) {
  2263. dmzbuf = lpfc_sli_get_buff(phba, pring,
  2264. irsp->unsli3.sli3Words[3]);
  2265. lpfc_in_buf_free(phba, dmzbuf);
  2266. }
  2267. if (irsp->ulpBdeCount > 2) {
  2268. dmzbuf = lpfc_sli_get_buff(phba, pring,
  2269. irsp->unsli3.sli3Words[7]);
  2270. lpfc_in_buf_free(phba, dmzbuf);
  2271. }
  2272. return 1;
  2273. }
  2274. if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
  2275. if (irsp->ulpBdeCount != 0) {
  2276. saveq->context2 = lpfc_sli_get_buff(phba, pring,
  2277. irsp->un.ulpWord[3]);
  2278. if (!saveq->context2)
  2279. lpfc_printf_log(phba,
  2280. KERN_ERR,
  2281. LOG_SLI,
  2282. "0341 Ring %d Cannot find buffer for "
  2283. "an unsolicited iocb. tag 0x%x\n",
  2284. pring->ringno,
  2285. irsp->un.ulpWord[3]);
  2286. }
  2287. if (irsp->ulpBdeCount == 2) {
  2288. saveq->context3 = lpfc_sli_get_buff(phba, pring,
  2289. irsp->unsli3.sli3Words[7]);
  2290. if (!saveq->context3)
  2291. lpfc_printf_log(phba,
  2292. KERN_ERR,
  2293. LOG_SLI,
  2294. "0342 Ring %d Cannot find buffer for an"
  2295. " unsolicited iocb. tag 0x%x\n",
  2296. pring->ringno,
  2297. irsp->unsli3.sli3Words[7]);
  2298. }
  2299. list_for_each_entry(iocbq, &saveq->list, list) {
  2300. irsp = &(iocbq->iocb);
  2301. if (irsp->ulpBdeCount != 0) {
  2302. iocbq->context2 = lpfc_sli_get_buff(phba, pring,
  2303. irsp->un.ulpWord[3]);
  2304. if (!iocbq->context2)
  2305. lpfc_printf_log(phba,
  2306. KERN_ERR,
  2307. LOG_SLI,
  2308. "0343 Ring %d Cannot find "
  2309. "buffer for an unsolicited iocb"
  2310. ". tag 0x%x\n", pring->ringno,
  2311. irsp->un.ulpWord[3]);
  2312. }
  2313. if (irsp->ulpBdeCount == 2) {
  2314. iocbq->context3 = lpfc_sli_get_buff(phba, pring,
  2315. irsp->unsli3.sli3Words[7]);
  2316. if (!iocbq->context3)
  2317. lpfc_printf_log(phba,
  2318. KERN_ERR,
  2319. LOG_SLI,
  2320. "0344 Ring %d Cannot find "
  2321. "buffer for an unsolicited "
  2322. "iocb. tag 0x%x\n",
  2323. pring->ringno,
  2324. irsp->unsli3.sli3Words[7]);
  2325. }
  2326. }
  2327. }
  2328. if (irsp->ulpBdeCount != 0 &&
  2329. (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
  2330. irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
  2331. int found = 0;
  2332. /* search continue save q for same XRI */
  2333. list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
  2334. if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
  2335. saveq->iocb.unsli3.rcvsli3.ox_id) {
  2336. list_add_tail(&saveq->list, &iocbq->list);
  2337. found = 1;
  2338. break;
  2339. }
  2340. }
  2341. if (!found)
  2342. list_add_tail(&saveq->clist,
  2343. &pring->iocb_continue_saveq);
  2344. if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
  2345. list_del_init(&iocbq->clist);
  2346. saveq = iocbq;
  2347. irsp = &(saveq->iocb);
  2348. } else
  2349. return 0;
  2350. }
  2351. if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
  2352. (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
  2353. (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
  2354. Rctl = FC_RCTL_ELS_REQ;
  2355. Type = FC_TYPE_ELS;
  2356. } else {
  2357. w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
  2358. Rctl = w5p->hcsw.Rctl;
  2359. Type = w5p->hcsw.Type;
  2360. /* Firmware Workaround */
  2361. if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
  2362. (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
  2363. irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
  2364. Rctl = FC_RCTL_ELS_REQ;
  2365. Type = FC_TYPE_ELS;
  2366. w5p->hcsw.Rctl = Rctl;
  2367. w5p->hcsw.Type = Type;
  2368. }
  2369. }
  2370. if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
  2371. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  2372. "0313 Ring %d handler: unexpected Rctl x%x "
  2373. "Type x%x received\n",
  2374. pring->ringno, Rctl, Type);
  2375. return 1;
  2376. }
  2377. /**
  2378. * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
  2379. * @phba: Pointer to HBA context object.
  2380. * @pring: Pointer to driver SLI ring object.
  2381. * @prspiocb: Pointer to response iocb object.
  2382. *
  2383. * This function looks up the iocb_lookup table to get the command iocb
  2384. * corresponding to the given response iocb using the iotag of the
  2385. * response iocb. This function is called with the hbalock held.
  2386. * This function returns the command iocb object if it finds the command
  2387. * iocb else returns NULL.
  2388. **/
  2389. static struct lpfc_iocbq *
  2390. lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
  2391. struct lpfc_sli_ring *pring,
  2392. struct lpfc_iocbq *prspiocb)
  2393. {
  2394. struct lpfc_iocbq *cmd_iocb = NULL;
  2395. uint16_t iotag;
  2396. iotag = prspiocb->iocb.ulpIoTag;
  2397. if (iotag != 0 && iotag <= phba->sli.last_iotag) {
  2398. cmd_iocb = phba->sli.iocbq_lookup[iotag];
  2399. list_del_init(&cmd_iocb->list);
  2400. if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
  2401. cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
  2402. }
  2403. return cmd_iocb;
  2404. }
  2405. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2406. "0317 iotag x%x is out off "
  2407. "range: max iotag x%x wd0 x%x\n",
  2408. iotag, phba->sli.last_iotag,
  2409. *(((uint32_t *) &prspiocb->iocb) + 7));
  2410. return NULL;
  2411. }
  2412. /**
  2413. * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
  2414. * @phba: Pointer to HBA context object.
  2415. * @pring: Pointer to driver SLI ring object.
  2416. * @iotag: IOCB tag.
  2417. *
  2418. * This function looks up the iocb_lookup table to get the command iocb
  2419. * corresponding to the given iotag. This function is called with the
  2420. * hbalock held.
  2421. * This function returns the command iocb object if it finds the command
  2422. * iocb else returns NULL.
  2423. **/
  2424. static struct lpfc_iocbq *
  2425. lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
  2426. struct lpfc_sli_ring *pring, uint16_t iotag)
  2427. {
  2428. struct lpfc_iocbq *cmd_iocb;
  2429. if (iotag != 0 && iotag <= phba->sli.last_iotag) {
  2430. cmd_iocb = phba->sli.iocbq_lookup[iotag];
  2431. if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
  2432. /* remove from txcmpl queue list */
  2433. list_del_init(&cmd_iocb->list);
  2434. cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
  2435. return cmd_iocb;
  2436. }
  2437. }
  2438. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2439. "0372 iotag x%x is out off range: max iotag (x%x)\n",
  2440. iotag, phba->sli.last_iotag);
  2441. return NULL;
  2442. }
  2443. /**
  2444. * lpfc_sli_process_sol_iocb - process solicited iocb completion
  2445. * @phba: Pointer to HBA context object.
  2446. * @pring: Pointer to driver SLI ring object.
  2447. * @saveq: Pointer to the response iocb to be processed.
  2448. *
  2449. * This function is called by the ring event handler for non-fcp
  2450. * rings when there is a new response iocb in the response ring.
  2451. * The caller is not required to hold any locks. This function
  2452. * gets the command iocb associated with the response iocb and
  2453. * calls the completion handler for the command iocb. If there
  2454. * is no completion handler, the function will free the resources
  2455. * associated with command iocb. If the response iocb is for
  2456. * an already aborted command iocb, the status of the completion
  2457. * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
  2458. * This function always returns 1.
  2459. **/
  2460. static int
  2461. lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  2462. struct lpfc_iocbq *saveq)
  2463. {
  2464. struct lpfc_iocbq *cmdiocbp;
  2465. int rc = 1;
  2466. unsigned long iflag;
  2467. /* Based on the iotag field, get the cmd IOCB from the txcmplq */
  2468. spin_lock_irqsave(&phba->hbalock, iflag);
  2469. cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
  2470. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2471. if (cmdiocbp) {
  2472. if (cmdiocbp->iocb_cmpl) {
  2473. /*
  2474. * If an ELS command failed send an event to mgmt
  2475. * application.
  2476. */
  2477. if (saveq->iocb.ulpStatus &&
  2478. (pring->ringno == LPFC_ELS_RING) &&
  2479. (cmdiocbp->iocb.ulpCommand ==
  2480. CMD_ELS_REQUEST64_CR))
  2481. lpfc_send_els_failure_event(phba,
  2482. cmdiocbp, saveq);
  2483. /*
  2484. * Post all ELS completions to the worker thread.
  2485. * All other are passed to the completion callback.
  2486. */
  2487. if (pring->ringno == LPFC_ELS_RING) {
  2488. if ((phba->sli_rev < LPFC_SLI_REV4) &&
  2489. (cmdiocbp->iocb_flag &
  2490. LPFC_DRIVER_ABORTED)) {
  2491. spin_lock_irqsave(&phba->hbalock,
  2492. iflag);
  2493. cmdiocbp->iocb_flag &=
  2494. ~LPFC_DRIVER_ABORTED;
  2495. spin_unlock_irqrestore(&phba->hbalock,
  2496. iflag);
  2497. saveq->iocb.ulpStatus =
  2498. IOSTAT_LOCAL_REJECT;
  2499. saveq->iocb.un.ulpWord[4] =
  2500. IOERR_SLI_ABORTED;
  2501. /* Firmware could still be in progress
  2502. * of DMAing payload, so don't free data
  2503. * buffer till after a hbeat.
  2504. */
  2505. spin_lock_irqsave(&phba->hbalock,
  2506. iflag);
  2507. saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
  2508. spin_unlock_irqrestore(&phba->hbalock,
  2509. iflag);
  2510. }
  2511. if (phba->sli_rev == LPFC_SLI_REV4) {
  2512. if (saveq->iocb_flag &
  2513. LPFC_EXCHANGE_BUSY) {
  2514. /* Set cmdiocb flag for the
  2515. * exchange busy so sgl (xri)
  2516. * will not be released until
  2517. * the abort xri is received
  2518. * from hba.
  2519. */
  2520. spin_lock_irqsave(
  2521. &phba->hbalock, iflag);
  2522. cmdiocbp->iocb_flag |=
  2523. LPFC_EXCHANGE_BUSY;
  2524. spin_unlock_irqrestore(
  2525. &phba->hbalock, iflag);
  2526. }
  2527. if (cmdiocbp->iocb_flag &
  2528. LPFC_DRIVER_ABORTED) {
  2529. /*
  2530. * Clear LPFC_DRIVER_ABORTED
  2531. * bit in case it was driver
  2532. * initiated abort.
  2533. */
  2534. spin_lock_irqsave(
  2535. &phba->hbalock, iflag);
  2536. cmdiocbp->iocb_flag &=
  2537. ~LPFC_DRIVER_ABORTED;
  2538. spin_unlock_irqrestore(
  2539. &phba->hbalock, iflag);
  2540. cmdiocbp->iocb.ulpStatus =
  2541. IOSTAT_LOCAL_REJECT;
  2542. cmdiocbp->iocb.un.ulpWord[4] =
  2543. IOERR_ABORT_REQUESTED;
  2544. /*
  2545. * For SLI4, irsiocb contains
  2546. * NO_XRI in sli_xritag, it
  2547. * shall not affect releasing
  2548. * sgl (xri) process.
  2549. */
  2550. saveq->iocb.ulpStatus =
  2551. IOSTAT_LOCAL_REJECT;
  2552. saveq->iocb.un.ulpWord[4] =
  2553. IOERR_SLI_ABORTED;
  2554. spin_lock_irqsave(
  2555. &phba->hbalock, iflag);
  2556. saveq->iocb_flag |=
  2557. LPFC_DELAY_MEM_FREE;
  2558. spin_unlock_irqrestore(
  2559. &phba->hbalock, iflag);
  2560. }
  2561. }
  2562. }
  2563. (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
  2564. } else
  2565. lpfc_sli_release_iocbq(phba, cmdiocbp);
  2566. } else {
  2567. /*
  2568. * Unknown initiating command based on the response iotag.
  2569. * This could be the case on the ELS ring because of
  2570. * lpfc_els_abort().
  2571. */
  2572. if (pring->ringno != LPFC_ELS_RING) {
  2573. /*
  2574. * Ring <ringno> handler: unexpected completion IoTag
  2575. * <IoTag>
  2576. */
  2577. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  2578. "0322 Ring %d handler: "
  2579. "unexpected completion IoTag x%x "
  2580. "Data: x%x x%x x%x x%x\n",
  2581. pring->ringno,
  2582. saveq->iocb.ulpIoTag,
  2583. saveq->iocb.ulpStatus,
  2584. saveq->iocb.un.ulpWord[4],
  2585. saveq->iocb.ulpCommand,
  2586. saveq->iocb.ulpContext);
  2587. }
  2588. }
  2589. return rc;
  2590. }
  2591. /**
  2592. * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
  2593. * @phba: Pointer to HBA context object.
  2594. * @pring: Pointer to driver SLI ring object.
  2595. *
  2596. * This function is called from the iocb ring event handlers when
  2597. * put pointer is ahead of the get pointer for a ring. This function signal
  2598. * an error attention condition to the worker thread and the worker
  2599. * thread will transition the HBA to offline state.
  2600. **/
  2601. static void
  2602. lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  2603. {
  2604. struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
  2605. /*
  2606. * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
  2607. * rsp ring <portRspMax>
  2608. */
  2609. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2610. "0312 Ring %d handler: portRspPut %d "
  2611. "is bigger than rsp ring %d\n",
  2612. pring->ringno, le32_to_cpu(pgp->rspPutInx),
  2613. pring->sli.sli3.numRiocb);
  2614. phba->link_state = LPFC_HBA_ERROR;
  2615. /*
  2616. * All error attention handlers are posted to
  2617. * worker thread
  2618. */
  2619. phba->work_ha |= HA_ERATT;
  2620. phba->work_hs = HS_FFER3;
  2621. lpfc_worker_wake_up(phba);
  2622. return;
  2623. }
  2624. /**
  2625. * lpfc_poll_eratt - Error attention polling timer timeout handler
  2626. * @ptr: Pointer to address of HBA context object.
  2627. *
  2628. * This function is invoked by the Error Attention polling timer when the
  2629. * timer times out. It will check the SLI Error Attention register for
  2630. * possible attention events. If so, it will post an Error Attention event
  2631. * and wake up worker thread to process it. Otherwise, it will set up the
  2632. * Error Attention polling timer for the next poll.
  2633. **/
  2634. void lpfc_poll_eratt(unsigned long ptr)
  2635. {
  2636. struct lpfc_hba *phba;
  2637. uint32_t eratt = 0, rem;
  2638. uint64_t sli_intr, cnt;
  2639. phba = (struct lpfc_hba *)ptr;
  2640. /* Here we will also keep track of interrupts per sec of the hba */
  2641. sli_intr = phba->sli.slistat.sli_intr;
  2642. if (phba->sli.slistat.sli_prev_intr > sli_intr)
  2643. cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
  2644. sli_intr);
  2645. else
  2646. cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
  2647. /* 64-bit integer division not supporte on 32-bit x86 - use do_div */
  2648. rem = do_div(cnt, LPFC_ERATT_POLL_INTERVAL);
  2649. phba->sli.slistat.sli_ips = cnt;
  2650. phba->sli.slistat.sli_prev_intr = sli_intr;
  2651. /* Check chip HA register for error event */
  2652. eratt = lpfc_sli_check_eratt(phba);
  2653. if (eratt)
  2654. /* Tell the worker thread there is work to do */
  2655. lpfc_worker_wake_up(phba);
  2656. else
  2657. /* Restart the timer for next eratt poll */
  2658. mod_timer(&phba->eratt_poll,
  2659. jiffies +
  2660. msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
  2661. return;
  2662. }
  2663. /**
  2664. * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
  2665. * @phba: Pointer to HBA context object.
  2666. * @pring: Pointer to driver SLI ring object.
  2667. * @mask: Host attention register mask for this ring.
  2668. *
  2669. * This function is called from the interrupt context when there is a ring
  2670. * event for the fcp ring. The caller does not hold any lock.
  2671. * The function processes each response iocb in the response ring until it
  2672. * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
  2673. * LE bit set. The function will call the completion handler of the command iocb
  2674. * if the response iocb indicates a completion for a command iocb or it is
  2675. * an abort completion. The function will call lpfc_sli_process_unsol_iocb
  2676. * function if this is an unsolicited iocb.
  2677. * This routine presumes LPFC_FCP_RING handling and doesn't bother
  2678. * to check it explicitly.
  2679. */
  2680. int
  2681. lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
  2682. struct lpfc_sli_ring *pring, uint32_t mask)
  2683. {
  2684. struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
  2685. IOCB_t *irsp = NULL;
  2686. IOCB_t *entry = NULL;
  2687. struct lpfc_iocbq *cmdiocbq = NULL;
  2688. struct lpfc_iocbq rspiocbq;
  2689. uint32_t status;
  2690. uint32_t portRspPut, portRspMax;
  2691. int rc = 1;
  2692. lpfc_iocb_type type;
  2693. unsigned long iflag;
  2694. uint32_t rsp_cmpl = 0;
  2695. spin_lock_irqsave(&phba->hbalock, iflag);
  2696. pring->stats.iocb_event++;
  2697. /*
  2698. * The next available response entry should never exceed the maximum
  2699. * entries. If it does, treat it as an adapter hardware error.
  2700. */
  2701. portRspMax = pring->sli.sli3.numRiocb;
  2702. portRspPut = le32_to_cpu(pgp->rspPutInx);
  2703. if (unlikely(portRspPut >= portRspMax)) {
  2704. lpfc_sli_rsp_pointers_error(phba, pring);
  2705. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2706. return 1;
  2707. }
  2708. if (phba->fcp_ring_in_use) {
  2709. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2710. return 1;
  2711. } else
  2712. phba->fcp_ring_in_use = 1;
  2713. rmb();
  2714. while (pring->sli.sli3.rspidx != portRspPut) {
  2715. /*
  2716. * Fetch an entry off the ring and copy it into a local data
  2717. * structure. The copy involves a byte-swap since the
  2718. * network byte order and pci byte orders are different.
  2719. */
  2720. entry = lpfc_resp_iocb(phba, pring);
  2721. phba->last_completion_time = jiffies;
  2722. if (++pring->sli.sli3.rspidx >= portRspMax)
  2723. pring->sli.sli3.rspidx = 0;
  2724. lpfc_sli_pcimem_bcopy((uint32_t *) entry,
  2725. (uint32_t *) &rspiocbq.iocb,
  2726. phba->iocb_rsp_size);
  2727. INIT_LIST_HEAD(&(rspiocbq.list));
  2728. irsp = &rspiocbq.iocb;
  2729. type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
  2730. pring->stats.iocb_rsp++;
  2731. rsp_cmpl++;
  2732. if (unlikely(irsp->ulpStatus)) {
  2733. /*
  2734. * If resource errors reported from HBA, reduce
  2735. * queuedepths of the SCSI device.
  2736. */
  2737. if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
  2738. ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
  2739. IOERR_NO_RESOURCES)) {
  2740. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2741. phba->lpfc_rampdown_queue_depth(phba);
  2742. spin_lock_irqsave(&phba->hbalock, iflag);
  2743. }
  2744. /* Rsp ring <ringno> error: IOCB */
  2745. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  2746. "0336 Rsp Ring %d error: IOCB Data: "
  2747. "x%x x%x x%x x%x x%x x%x x%x x%x\n",
  2748. pring->ringno,
  2749. irsp->un.ulpWord[0],
  2750. irsp->un.ulpWord[1],
  2751. irsp->un.ulpWord[2],
  2752. irsp->un.ulpWord[3],
  2753. irsp->un.ulpWord[4],
  2754. irsp->un.ulpWord[5],
  2755. *(uint32_t *)&irsp->un1,
  2756. *((uint32_t *)&irsp->un1 + 1));
  2757. }
  2758. switch (type) {
  2759. case LPFC_ABORT_IOCB:
  2760. case LPFC_SOL_IOCB:
  2761. /*
  2762. * Idle exchange closed via ABTS from port. No iocb
  2763. * resources need to be recovered.
  2764. */
  2765. if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
  2766. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  2767. "0333 IOCB cmd 0x%x"
  2768. " processed. Skipping"
  2769. " completion\n",
  2770. irsp->ulpCommand);
  2771. break;
  2772. }
  2773. cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
  2774. &rspiocbq);
  2775. if (unlikely(!cmdiocbq))
  2776. break;
  2777. if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
  2778. cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
  2779. if (cmdiocbq->iocb_cmpl) {
  2780. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2781. (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
  2782. &rspiocbq);
  2783. spin_lock_irqsave(&phba->hbalock, iflag);
  2784. }
  2785. break;
  2786. case LPFC_UNSOL_IOCB:
  2787. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2788. lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
  2789. spin_lock_irqsave(&phba->hbalock, iflag);
  2790. break;
  2791. default:
  2792. if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
  2793. char adaptermsg[LPFC_MAX_ADPTMSG];
  2794. memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
  2795. memcpy(&adaptermsg[0], (uint8_t *) irsp,
  2796. MAX_MSG_DATA);
  2797. dev_warn(&((phba->pcidev)->dev),
  2798. "lpfc%d: %s\n",
  2799. phba->brd_no, adaptermsg);
  2800. } else {
  2801. /* Unknown IOCB command */
  2802. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2803. "0334 Unknown IOCB command "
  2804. "Data: x%x, x%x x%x x%x x%x\n",
  2805. type, irsp->ulpCommand,
  2806. irsp->ulpStatus,
  2807. irsp->ulpIoTag,
  2808. irsp->ulpContext);
  2809. }
  2810. break;
  2811. }
  2812. /*
  2813. * The response IOCB has been processed. Update the ring
  2814. * pointer in SLIM. If the port response put pointer has not
  2815. * been updated, sync the pgp->rspPutInx and fetch the new port
  2816. * response put pointer.
  2817. */
  2818. writel(pring->sli.sli3.rspidx,
  2819. &phba->host_gp[pring->ringno].rspGetInx);
  2820. if (pring->sli.sli3.rspidx == portRspPut)
  2821. portRspPut = le32_to_cpu(pgp->rspPutInx);
  2822. }
  2823. if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
  2824. pring->stats.iocb_rsp_full++;
  2825. status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
  2826. writel(status, phba->CAregaddr);
  2827. readl(phba->CAregaddr);
  2828. }
  2829. if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
  2830. pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
  2831. pring->stats.iocb_cmd_empty++;
  2832. /* Force update of the local copy of cmdGetInx */
  2833. pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
  2834. lpfc_sli_resume_iocb(phba, pring);
  2835. if ((pring->lpfc_sli_cmd_available))
  2836. (pring->lpfc_sli_cmd_available) (phba, pring);
  2837. }
  2838. phba->fcp_ring_in_use = 0;
  2839. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2840. return rc;
  2841. }
  2842. /**
  2843. * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
  2844. * @phba: Pointer to HBA context object.
  2845. * @pring: Pointer to driver SLI ring object.
  2846. * @rspiocbp: Pointer to driver response IOCB object.
  2847. *
  2848. * This function is called from the worker thread when there is a slow-path
  2849. * response IOCB to process. This function chains all the response iocbs until
  2850. * seeing the iocb with the LE bit set. The function will call
  2851. * lpfc_sli_process_sol_iocb function if the response iocb indicates a
  2852. * completion of a command iocb. The function will call the
  2853. * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
  2854. * The function frees the resources or calls the completion handler if this
  2855. * iocb is an abort completion. The function returns NULL when the response
  2856. * iocb has the LE bit set and all the chained iocbs are processed, otherwise
  2857. * this function shall chain the iocb on to the iocb_continueq and return the
  2858. * response iocb passed in.
  2859. **/
  2860. static struct lpfc_iocbq *
  2861. lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  2862. struct lpfc_iocbq *rspiocbp)
  2863. {
  2864. struct lpfc_iocbq *saveq;
  2865. struct lpfc_iocbq *cmdiocbp;
  2866. struct lpfc_iocbq *next_iocb;
  2867. IOCB_t *irsp = NULL;
  2868. uint32_t free_saveq;
  2869. uint8_t iocb_cmd_type;
  2870. lpfc_iocb_type type;
  2871. unsigned long iflag;
  2872. int rc;
  2873. spin_lock_irqsave(&phba->hbalock, iflag);
  2874. /* First add the response iocb to the countinueq list */
  2875. list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
  2876. pring->iocb_continueq_cnt++;
  2877. /* Now, determine whether the list is completed for processing */
  2878. irsp = &rspiocbp->iocb;
  2879. if (irsp->ulpLe) {
  2880. /*
  2881. * By default, the driver expects to free all resources
  2882. * associated with this iocb completion.
  2883. */
  2884. free_saveq = 1;
  2885. saveq = list_get_first(&pring->iocb_continueq,
  2886. struct lpfc_iocbq, list);
  2887. irsp = &(saveq->iocb);
  2888. list_del_init(&pring->iocb_continueq);
  2889. pring->iocb_continueq_cnt = 0;
  2890. pring->stats.iocb_rsp++;
  2891. /*
  2892. * If resource errors reported from HBA, reduce
  2893. * queuedepths of the SCSI device.
  2894. */
  2895. if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
  2896. ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
  2897. IOERR_NO_RESOURCES)) {
  2898. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2899. phba->lpfc_rampdown_queue_depth(phba);
  2900. spin_lock_irqsave(&phba->hbalock, iflag);
  2901. }
  2902. if (irsp->ulpStatus) {
  2903. /* Rsp ring <ringno> error: IOCB */
  2904. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  2905. "0328 Rsp Ring %d error: "
  2906. "IOCB Data: "
  2907. "x%x x%x x%x x%x "
  2908. "x%x x%x x%x x%x "
  2909. "x%x x%x x%x x%x "
  2910. "x%x x%x x%x x%x\n",
  2911. pring->ringno,
  2912. irsp->un.ulpWord[0],
  2913. irsp->un.ulpWord[1],
  2914. irsp->un.ulpWord[2],
  2915. irsp->un.ulpWord[3],
  2916. irsp->un.ulpWord[4],
  2917. irsp->un.ulpWord[5],
  2918. *(((uint32_t *) irsp) + 6),
  2919. *(((uint32_t *) irsp) + 7),
  2920. *(((uint32_t *) irsp) + 8),
  2921. *(((uint32_t *) irsp) + 9),
  2922. *(((uint32_t *) irsp) + 10),
  2923. *(((uint32_t *) irsp) + 11),
  2924. *(((uint32_t *) irsp) + 12),
  2925. *(((uint32_t *) irsp) + 13),
  2926. *(((uint32_t *) irsp) + 14),
  2927. *(((uint32_t *) irsp) + 15));
  2928. }
  2929. /*
  2930. * Fetch the IOCB command type and call the correct completion
  2931. * routine. Solicited and Unsolicited IOCBs on the ELS ring
  2932. * get freed back to the lpfc_iocb_list by the discovery
  2933. * kernel thread.
  2934. */
  2935. iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
  2936. type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
  2937. switch (type) {
  2938. case LPFC_SOL_IOCB:
  2939. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2940. rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
  2941. spin_lock_irqsave(&phba->hbalock, iflag);
  2942. break;
  2943. case LPFC_UNSOL_IOCB:
  2944. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2945. rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
  2946. spin_lock_irqsave(&phba->hbalock, iflag);
  2947. if (!rc)
  2948. free_saveq = 0;
  2949. break;
  2950. case LPFC_ABORT_IOCB:
  2951. cmdiocbp = NULL;
  2952. if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
  2953. cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
  2954. saveq);
  2955. if (cmdiocbp) {
  2956. /* Call the specified completion routine */
  2957. if (cmdiocbp->iocb_cmpl) {
  2958. spin_unlock_irqrestore(&phba->hbalock,
  2959. iflag);
  2960. (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
  2961. saveq);
  2962. spin_lock_irqsave(&phba->hbalock,
  2963. iflag);
  2964. } else
  2965. __lpfc_sli_release_iocbq(phba,
  2966. cmdiocbp);
  2967. }
  2968. break;
  2969. case LPFC_UNKNOWN_IOCB:
  2970. if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
  2971. char adaptermsg[LPFC_MAX_ADPTMSG];
  2972. memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
  2973. memcpy(&adaptermsg[0], (uint8_t *)irsp,
  2974. MAX_MSG_DATA);
  2975. dev_warn(&((phba->pcidev)->dev),
  2976. "lpfc%d: %s\n",
  2977. phba->brd_no, adaptermsg);
  2978. } else {
  2979. /* Unknown IOCB command */
  2980. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2981. "0335 Unknown IOCB "
  2982. "command Data: x%x "
  2983. "x%x x%x x%x\n",
  2984. irsp->ulpCommand,
  2985. irsp->ulpStatus,
  2986. irsp->ulpIoTag,
  2987. irsp->ulpContext);
  2988. }
  2989. break;
  2990. }
  2991. if (free_saveq) {
  2992. list_for_each_entry_safe(rspiocbp, next_iocb,
  2993. &saveq->list, list) {
  2994. list_del_init(&rspiocbp->list);
  2995. __lpfc_sli_release_iocbq(phba, rspiocbp);
  2996. }
  2997. __lpfc_sli_release_iocbq(phba, saveq);
  2998. }
  2999. rspiocbp = NULL;
  3000. }
  3001. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3002. return rspiocbp;
  3003. }
  3004. /**
  3005. * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
  3006. * @phba: Pointer to HBA context object.
  3007. * @pring: Pointer to driver SLI ring object.
  3008. * @mask: Host attention register mask for this ring.
  3009. *
  3010. * This routine wraps the actual slow_ring event process routine from the
  3011. * API jump table function pointer from the lpfc_hba struct.
  3012. **/
  3013. void
  3014. lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
  3015. struct lpfc_sli_ring *pring, uint32_t mask)
  3016. {
  3017. phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
  3018. }
  3019. /**
  3020. * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
  3021. * @phba: Pointer to HBA context object.
  3022. * @pring: Pointer to driver SLI ring object.
  3023. * @mask: Host attention register mask for this ring.
  3024. *
  3025. * This function is called from the worker thread when there is a ring event
  3026. * for non-fcp rings. The caller does not hold any lock. The function will
  3027. * remove each response iocb in the response ring and calls the handle
  3028. * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
  3029. **/
  3030. static void
  3031. lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
  3032. struct lpfc_sli_ring *pring, uint32_t mask)
  3033. {
  3034. struct lpfc_pgp *pgp;
  3035. IOCB_t *entry;
  3036. IOCB_t *irsp = NULL;
  3037. struct lpfc_iocbq *rspiocbp = NULL;
  3038. uint32_t portRspPut, portRspMax;
  3039. unsigned long iflag;
  3040. uint32_t status;
  3041. pgp = &phba->port_gp[pring->ringno];
  3042. spin_lock_irqsave(&phba->hbalock, iflag);
  3043. pring->stats.iocb_event++;
  3044. /*
  3045. * The next available response entry should never exceed the maximum
  3046. * entries. If it does, treat it as an adapter hardware error.
  3047. */
  3048. portRspMax = pring->sli.sli3.numRiocb;
  3049. portRspPut = le32_to_cpu(pgp->rspPutInx);
  3050. if (portRspPut >= portRspMax) {
  3051. /*
  3052. * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
  3053. * rsp ring <portRspMax>
  3054. */
  3055. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  3056. "0303 Ring %d handler: portRspPut %d "
  3057. "is bigger than rsp ring %d\n",
  3058. pring->ringno, portRspPut, portRspMax);
  3059. phba->link_state = LPFC_HBA_ERROR;
  3060. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3061. phba->work_hs = HS_FFER3;
  3062. lpfc_handle_eratt(phba);
  3063. return;
  3064. }
  3065. rmb();
  3066. while (pring->sli.sli3.rspidx != portRspPut) {
  3067. /*
  3068. * Build a completion list and call the appropriate handler.
  3069. * The process is to get the next available response iocb, get
  3070. * a free iocb from the list, copy the response data into the
  3071. * free iocb, insert to the continuation list, and update the
  3072. * next response index to slim. This process makes response
  3073. * iocb's in the ring available to DMA as fast as possible but
  3074. * pays a penalty for a copy operation. Since the iocb is
  3075. * only 32 bytes, this penalty is considered small relative to
  3076. * the PCI reads for register values and a slim write. When
  3077. * the ulpLe field is set, the entire Command has been
  3078. * received.
  3079. */
  3080. entry = lpfc_resp_iocb(phba, pring);
  3081. phba->last_completion_time = jiffies;
  3082. rspiocbp = __lpfc_sli_get_iocbq(phba);
  3083. if (rspiocbp == NULL) {
  3084. printk(KERN_ERR "%s: out of buffers! Failing "
  3085. "completion.\n", __func__);
  3086. break;
  3087. }
  3088. lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
  3089. phba->iocb_rsp_size);
  3090. irsp = &rspiocbp->iocb;
  3091. if (++pring->sli.sli3.rspidx >= portRspMax)
  3092. pring->sli.sli3.rspidx = 0;
  3093. if (pring->ringno == LPFC_ELS_RING) {
  3094. lpfc_debugfs_slow_ring_trc(phba,
  3095. "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
  3096. *(((uint32_t *) irsp) + 4),
  3097. *(((uint32_t *) irsp) + 6),
  3098. *(((uint32_t *) irsp) + 7));
  3099. }
  3100. writel(pring->sli.sli3.rspidx,
  3101. &phba->host_gp[pring->ringno].rspGetInx);
  3102. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3103. /* Handle the response IOCB */
  3104. rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
  3105. spin_lock_irqsave(&phba->hbalock, iflag);
  3106. /*
  3107. * If the port response put pointer has not been updated, sync
  3108. * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
  3109. * response put pointer.
  3110. */
  3111. if (pring->sli.sli3.rspidx == portRspPut) {
  3112. portRspPut = le32_to_cpu(pgp->rspPutInx);
  3113. }
  3114. } /* while (pring->sli.sli3.rspidx != portRspPut) */
  3115. if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
  3116. /* At least one response entry has been freed */
  3117. pring->stats.iocb_rsp_full++;
  3118. /* SET RxRE_RSP in Chip Att register */
  3119. status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
  3120. writel(status, phba->CAregaddr);
  3121. readl(phba->CAregaddr); /* flush */
  3122. }
  3123. if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
  3124. pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
  3125. pring->stats.iocb_cmd_empty++;
  3126. /* Force update of the local copy of cmdGetInx */
  3127. pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
  3128. lpfc_sli_resume_iocb(phba, pring);
  3129. if ((pring->lpfc_sli_cmd_available))
  3130. (pring->lpfc_sli_cmd_available) (phba, pring);
  3131. }
  3132. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3133. return;
  3134. }
  3135. /**
  3136. * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
  3137. * @phba: Pointer to HBA context object.
  3138. * @pring: Pointer to driver SLI ring object.
  3139. * @mask: Host attention register mask for this ring.
  3140. *
  3141. * This function is called from the worker thread when there is a pending
  3142. * ELS response iocb on the driver internal slow-path response iocb worker
  3143. * queue. The caller does not hold any lock. The function will remove each
  3144. * response iocb from the response worker queue and calls the handle
  3145. * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
  3146. **/
  3147. static void
  3148. lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
  3149. struct lpfc_sli_ring *pring, uint32_t mask)
  3150. {
  3151. struct lpfc_iocbq *irspiocbq;
  3152. struct hbq_dmabuf *dmabuf;
  3153. struct lpfc_cq_event *cq_event;
  3154. unsigned long iflag;
  3155. spin_lock_irqsave(&phba->hbalock, iflag);
  3156. phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
  3157. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3158. while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
  3159. /* Get the response iocb from the head of work queue */
  3160. spin_lock_irqsave(&phba->hbalock, iflag);
  3161. list_remove_head(&phba->sli4_hba.sp_queue_event,
  3162. cq_event, struct lpfc_cq_event, list);
  3163. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3164. switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
  3165. case CQE_CODE_COMPL_WQE:
  3166. irspiocbq = container_of(cq_event, struct lpfc_iocbq,
  3167. cq_event);
  3168. /* Translate ELS WCQE to response IOCBQ */
  3169. irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
  3170. irspiocbq);
  3171. if (irspiocbq)
  3172. lpfc_sli_sp_handle_rspiocb(phba, pring,
  3173. irspiocbq);
  3174. break;
  3175. case CQE_CODE_RECEIVE:
  3176. case CQE_CODE_RECEIVE_V1:
  3177. dmabuf = container_of(cq_event, struct hbq_dmabuf,
  3178. cq_event);
  3179. lpfc_sli4_handle_received_buffer(phba, dmabuf);
  3180. break;
  3181. default:
  3182. break;
  3183. }
  3184. }
  3185. }
  3186. /**
  3187. * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
  3188. * @phba: Pointer to HBA context object.
  3189. * @pring: Pointer to driver SLI ring object.
  3190. *
  3191. * This function aborts all iocbs in the given ring and frees all the iocb
  3192. * objects in txq. This function issues an abort iocb for all the iocb commands
  3193. * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
  3194. * the return of this function. The caller is not required to hold any locks.
  3195. **/
  3196. void
  3197. lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  3198. {
  3199. LIST_HEAD(completions);
  3200. struct lpfc_iocbq *iocb, *next_iocb;
  3201. if (pring->ringno == LPFC_ELS_RING) {
  3202. lpfc_fabric_abort_hba(phba);
  3203. }
  3204. /* Error everything on txq and txcmplq
  3205. * First do the txq.
  3206. */
  3207. spin_lock_irq(&phba->hbalock);
  3208. list_splice_init(&pring->txq, &completions);
  3209. /* Next issue ABTS for everything on the txcmplq */
  3210. list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
  3211. lpfc_sli_issue_abort_iotag(phba, pring, iocb);
  3212. spin_unlock_irq(&phba->hbalock);
  3213. /* Cancel all the IOCBs from the completions list */
  3214. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  3215. IOERR_SLI_ABORTED);
  3216. }
  3217. /**
  3218. * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
  3219. * @phba: Pointer to HBA context object.
  3220. *
  3221. * This function flushes all iocbs in the fcp ring and frees all the iocb
  3222. * objects in txq and txcmplq. This function will not issue abort iocbs
  3223. * for all the iocb commands in txcmplq, they will just be returned with
  3224. * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
  3225. * slot has been permanently disabled.
  3226. **/
  3227. void
  3228. lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
  3229. {
  3230. LIST_HEAD(txq);
  3231. LIST_HEAD(txcmplq);
  3232. struct lpfc_sli *psli = &phba->sli;
  3233. struct lpfc_sli_ring *pring;
  3234. /* Currently, only one fcp ring */
  3235. pring = &psli->ring[psli->fcp_ring];
  3236. spin_lock_irq(&phba->hbalock);
  3237. /* Retrieve everything on txq */
  3238. list_splice_init(&pring->txq, &txq);
  3239. /* Retrieve everything on the txcmplq */
  3240. list_splice_init(&pring->txcmplq, &txcmplq);
  3241. /* Indicate the I/O queues are flushed */
  3242. phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
  3243. spin_unlock_irq(&phba->hbalock);
  3244. /* Flush the txq */
  3245. lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
  3246. IOERR_SLI_DOWN);
  3247. /* Flush the txcmpq */
  3248. lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
  3249. IOERR_SLI_DOWN);
  3250. }
  3251. /**
  3252. * lpfc_sli_brdready_s3 - Check for sli3 host ready status
  3253. * @phba: Pointer to HBA context object.
  3254. * @mask: Bit mask to be checked.
  3255. *
  3256. * This function reads the host status register and compares
  3257. * with the provided bit mask to check if HBA completed
  3258. * the restart. This function will wait in a loop for the
  3259. * HBA to complete restart. If the HBA does not restart within
  3260. * 15 iterations, the function will reset the HBA again. The
  3261. * function returns 1 when HBA fail to restart otherwise returns
  3262. * zero.
  3263. **/
  3264. static int
  3265. lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
  3266. {
  3267. uint32_t status;
  3268. int i = 0;
  3269. int retval = 0;
  3270. /* Read the HBA Host Status Register */
  3271. if (lpfc_readl(phba->HSregaddr, &status))
  3272. return 1;
  3273. /*
  3274. * Check status register every 100ms for 5 retries, then every
  3275. * 500ms for 5, then every 2.5 sec for 5, then reset board and
  3276. * every 2.5 sec for 4.
  3277. * Break our of the loop if errors occurred during init.
  3278. */
  3279. while (((status & mask) != mask) &&
  3280. !(status & HS_FFERM) &&
  3281. i++ < 20) {
  3282. if (i <= 5)
  3283. msleep(10);
  3284. else if (i <= 10)
  3285. msleep(500);
  3286. else
  3287. msleep(2500);
  3288. if (i == 15) {
  3289. /* Do post */
  3290. phba->pport->port_state = LPFC_VPORT_UNKNOWN;
  3291. lpfc_sli_brdrestart(phba);
  3292. }
  3293. /* Read the HBA Host Status Register */
  3294. if (lpfc_readl(phba->HSregaddr, &status)) {
  3295. retval = 1;
  3296. break;
  3297. }
  3298. }
  3299. /* Check to see if any errors occurred during init */
  3300. if ((status & HS_FFERM) || (i >= 20)) {
  3301. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  3302. "2751 Adapter failed to restart, "
  3303. "status reg x%x, FW Data: A8 x%x AC x%x\n",
  3304. status,
  3305. readl(phba->MBslimaddr + 0xa8),
  3306. readl(phba->MBslimaddr + 0xac));
  3307. phba->link_state = LPFC_HBA_ERROR;
  3308. retval = 1;
  3309. }
  3310. return retval;
  3311. }
  3312. /**
  3313. * lpfc_sli_brdready_s4 - Check for sli4 host ready status
  3314. * @phba: Pointer to HBA context object.
  3315. * @mask: Bit mask to be checked.
  3316. *
  3317. * This function checks the host status register to check if HBA is
  3318. * ready. This function will wait in a loop for the HBA to be ready
  3319. * If the HBA is not ready , the function will will reset the HBA PCI
  3320. * function again. The function returns 1 when HBA fail to be ready
  3321. * otherwise returns zero.
  3322. **/
  3323. static int
  3324. lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
  3325. {
  3326. uint32_t status;
  3327. int retval = 0;
  3328. /* Read the HBA Host Status Register */
  3329. status = lpfc_sli4_post_status_check(phba);
  3330. if (status) {
  3331. phba->pport->port_state = LPFC_VPORT_UNKNOWN;
  3332. lpfc_sli_brdrestart(phba);
  3333. status = lpfc_sli4_post_status_check(phba);
  3334. }
  3335. /* Check to see if any errors occurred during init */
  3336. if (status) {
  3337. phba->link_state = LPFC_HBA_ERROR;
  3338. retval = 1;
  3339. } else
  3340. phba->sli4_hba.intr_enable = 0;
  3341. return retval;
  3342. }
  3343. /**
  3344. * lpfc_sli_brdready - Wrapper func for checking the hba readyness
  3345. * @phba: Pointer to HBA context object.
  3346. * @mask: Bit mask to be checked.
  3347. *
  3348. * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
  3349. * from the API jump table function pointer from the lpfc_hba struct.
  3350. **/
  3351. int
  3352. lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
  3353. {
  3354. return phba->lpfc_sli_brdready(phba, mask);
  3355. }
  3356. #define BARRIER_TEST_PATTERN (0xdeadbeef)
  3357. /**
  3358. * lpfc_reset_barrier - Make HBA ready for HBA reset
  3359. * @phba: Pointer to HBA context object.
  3360. *
  3361. * This function is called before resetting an HBA. This function is called
  3362. * with hbalock held and requests HBA to quiesce DMAs before a reset.
  3363. **/
  3364. void lpfc_reset_barrier(struct lpfc_hba *phba)
  3365. {
  3366. uint32_t __iomem *resp_buf;
  3367. uint32_t __iomem *mbox_buf;
  3368. volatile uint32_t mbox;
  3369. uint32_t hc_copy, ha_copy, resp_data;
  3370. int i;
  3371. uint8_t hdrtype;
  3372. pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
  3373. if (hdrtype != 0x80 ||
  3374. (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
  3375. FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
  3376. return;
  3377. /*
  3378. * Tell the other part of the chip to suspend temporarily all
  3379. * its DMA activity.
  3380. */
  3381. resp_buf = phba->MBslimaddr;
  3382. /* Disable the error attention */
  3383. if (lpfc_readl(phba->HCregaddr, &hc_copy))
  3384. return;
  3385. writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
  3386. readl(phba->HCregaddr); /* flush */
  3387. phba->link_flag |= LS_IGNORE_ERATT;
  3388. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  3389. return;
  3390. if (ha_copy & HA_ERATT) {
  3391. /* Clear Chip error bit */
  3392. writel(HA_ERATT, phba->HAregaddr);
  3393. phba->pport->stopped = 1;
  3394. }
  3395. mbox = 0;
  3396. ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
  3397. ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
  3398. writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
  3399. mbox_buf = phba->MBslimaddr;
  3400. writel(mbox, mbox_buf);
  3401. for (i = 0; i < 50; i++) {
  3402. if (lpfc_readl((resp_buf + 1), &resp_data))
  3403. return;
  3404. if (resp_data != ~(BARRIER_TEST_PATTERN))
  3405. mdelay(1);
  3406. else
  3407. break;
  3408. }
  3409. resp_data = 0;
  3410. if (lpfc_readl((resp_buf + 1), &resp_data))
  3411. return;
  3412. if (resp_data != ~(BARRIER_TEST_PATTERN)) {
  3413. if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
  3414. phba->pport->stopped)
  3415. goto restore_hc;
  3416. else
  3417. goto clear_errat;
  3418. }
  3419. ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
  3420. resp_data = 0;
  3421. for (i = 0; i < 500; i++) {
  3422. if (lpfc_readl(resp_buf, &resp_data))
  3423. return;
  3424. if (resp_data != mbox)
  3425. mdelay(1);
  3426. else
  3427. break;
  3428. }
  3429. clear_errat:
  3430. while (++i < 500) {
  3431. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  3432. return;
  3433. if (!(ha_copy & HA_ERATT))
  3434. mdelay(1);
  3435. else
  3436. break;
  3437. }
  3438. if (readl(phba->HAregaddr) & HA_ERATT) {
  3439. writel(HA_ERATT, phba->HAregaddr);
  3440. phba->pport->stopped = 1;
  3441. }
  3442. restore_hc:
  3443. phba->link_flag &= ~LS_IGNORE_ERATT;
  3444. writel(hc_copy, phba->HCregaddr);
  3445. readl(phba->HCregaddr); /* flush */
  3446. }
  3447. /**
  3448. * lpfc_sli_brdkill - Issue a kill_board mailbox command
  3449. * @phba: Pointer to HBA context object.
  3450. *
  3451. * This function issues a kill_board mailbox command and waits for
  3452. * the error attention interrupt. This function is called for stopping
  3453. * the firmware processing. The caller is not required to hold any
  3454. * locks. This function calls lpfc_hba_down_post function to free
  3455. * any pending commands after the kill. The function will return 1 when it
  3456. * fails to kill the board else will return 0.
  3457. **/
  3458. int
  3459. lpfc_sli_brdkill(struct lpfc_hba *phba)
  3460. {
  3461. struct lpfc_sli *psli;
  3462. LPFC_MBOXQ_t *pmb;
  3463. uint32_t status;
  3464. uint32_t ha_copy;
  3465. int retval;
  3466. int i = 0;
  3467. psli = &phba->sli;
  3468. /* Kill HBA */
  3469. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3470. "0329 Kill HBA Data: x%x x%x\n",
  3471. phba->pport->port_state, psli->sli_flag);
  3472. pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  3473. if (!pmb)
  3474. return 1;
  3475. /* Disable the error attention */
  3476. spin_lock_irq(&phba->hbalock);
  3477. if (lpfc_readl(phba->HCregaddr, &status)) {
  3478. spin_unlock_irq(&phba->hbalock);
  3479. mempool_free(pmb, phba->mbox_mem_pool);
  3480. return 1;
  3481. }
  3482. status &= ~HC_ERINT_ENA;
  3483. writel(status, phba->HCregaddr);
  3484. readl(phba->HCregaddr); /* flush */
  3485. phba->link_flag |= LS_IGNORE_ERATT;
  3486. spin_unlock_irq(&phba->hbalock);
  3487. lpfc_kill_board(phba, pmb);
  3488. pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  3489. retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
  3490. if (retval != MBX_SUCCESS) {
  3491. if (retval != MBX_BUSY)
  3492. mempool_free(pmb, phba->mbox_mem_pool);
  3493. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  3494. "2752 KILL_BOARD command failed retval %d\n",
  3495. retval);
  3496. spin_lock_irq(&phba->hbalock);
  3497. phba->link_flag &= ~LS_IGNORE_ERATT;
  3498. spin_unlock_irq(&phba->hbalock);
  3499. return 1;
  3500. }
  3501. spin_lock_irq(&phba->hbalock);
  3502. psli->sli_flag &= ~LPFC_SLI_ACTIVE;
  3503. spin_unlock_irq(&phba->hbalock);
  3504. mempool_free(pmb, phba->mbox_mem_pool);
  3505. /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
  3506. * attention every 100ms for 3 seconds. If we don't get ERATT after
  3507. * 3 seconds we still set HBA_ERROR state because the status of the
  3508. * board is now undefined.
  3509. */
  3510. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  3511. return 1;
  3512. while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
  3513. mdelay(100);
  3514. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  3515. return 1;
  3516. }
  3517. del_timer_sync(&psli->mbox_tmo);
  3518. if (ha_copy & HA_ERATT) {
  3519. writel(HA_ERATT, phba->HAregaddr);
  3520. phba->pport->stopped = 1;
  3521. }
  3522. spin_lock_irq(&phba->hbalock);
  3523. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  3524. psli->mbox_active = NULL;
  3525. phba->link_flag &= ~LS_IGNORE_ERATT;
  3526. spin_unlock_irq(&phba->hbalock);
  3527. lpfc_hba_down_post(phba);
  3528. phba->link_state = LPFC_HBA_ERROR;
  3529. return ha_copy & HA_ERATT ? 0 : 1;
  3530. }
  3531. /**
  3532. * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
  3533. * @phba: Pointer to HBA context object.
  3534. *
  3535. * This function resets the HBA by writing HC_INITFF to the control
  3536. * register. After the HBA resets, this function resets all the iocb ring
  3537. * indices. This function disables PCI layer parity checking during
  3538. * the reset.
  3539. * This function returns 0 always.
  3540. * The caller is not required to hold any locks.
  3541. **/
  3542. int
  3543. lpfc_sli_brdreset(struct lpfc_hba *phba)
  3544. {
  3545. struct lpfc_sli *psli;
  3546. struct lpfc_sli_ring *pring;
  3547. uint16_t cfg_value;
  3548. int i;
  3549. psli = &phba->sli;
  3550. /* Reset HBA */
  3551. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3552. "0325 Reset HBA Data: x%x x%x\n",
  3553. phba->pport->port_state, psli->sli_flag);
  3554. /* perform board reset */
  3555. phba->fc_eventTag = 0;
  3556. phba->link_events = 0;
  3557. phba->pport->fc_myDID = 0;
  3558. phba->pport->fc_prevDID = 0;
  3559. /* Turn off parity checking and serr during the physical reset */
  3560. pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
  3561. pci_write_config_word(phba->pcidev, PCI_COMMAND,
  3562. (cfg_value &
  3563. ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
  3564. psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
  3565. /* Now toggle INITFF bit in the Host Control Register */
  3566. writel(HC_INITFF, phba->HCregaddr);
  3567. mdelay(1);
  3568. readl(phba->HCregaddr); /* flush */
  3569. writel(0, phba->HCregaddr);
  3570. readl(phba->HCregaddr); /* flush */
  3571. /* Restore PCI cmd register */
  3572. pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
  3573. /* Initialize relevant SLI info */
  3574. for (i = 0; i < psli->num_rings; i++) {
  3575. pring = &psli->ring[i];
  3576. pring->flag = 0;
  3577. pring->sli.sli3.rspidx = 0;
  3578. pring->sli.sli3.next_cmdidx = 0;
  3579. pring->sli.sli3.local_getidx = 0;
  3580. pring->sli.sli3.cmdidx = 0;
  3581. pring->missbufcnt = 0;
  3582. }
  3583. phba->link_state = LPFC_WARM_START;
  3584. return 0;
  3585. }
  3586. /**
  3587. * lpfc_sli4_brdreset - Reset a sli-4 HBA
  3588. * @phba: Pointer to HBA context object.
  3589. *
  3590. * This function resets a SLI4 HBA. This function disables PCI layer parity
  3591. * checking during resets the device. The caller is not required to hold
  3592. * any locks.
  3593. *
  3594. * This function returns 0 always.
  3595. **/
  3596. int
  3597. lpfc_sli4_brdreset(struct lpfc_hba *phba)
  3598. {
  3599. struct lpfc_sli *psli = &phba->sli;
  3600. uint16_t cfg_value;
  3601. int rc;
  3602. /* Reset HBA */
  3603. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3604. "0295 Reset HBA Data: x%x x%x\n",
  3605. phba->pport->port_state, psli->sli_flag);
  3606. /* perform board reset */
  3607. phba->fc_eventTag = 0;
  3608. phba->link_events = 0;
  3609. phba->pport->fc_myDID = 0;
  3610. phba->pport->fc_prevDID = 0;
  3611. spin_lock_irq(&phba->hbalock);
  3612. psli->sli_flag &= ~(LPFC_PROCESS_LA);
  3613. phba->fcf.fcf_flag = 0;
  3614. spin_unlock_irq(&phba->hbalock);
  3615. /* Now physically reset the device */
  3616. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  3617. "0389 Performing PCI function reset!\n");
  3618. /* Turn off parity checking and serr during the physical reset */
  3619. pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
  3620. pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
  3621. ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
  3622. /* Perform FCoE PCI function reset before freeing queue memory */
  3623. rc = lpfc_pci_function_reset(phba);
  3624. lpfc_sli4_queue_destroy(phba);
  3625. /* Restore PCI cmd register */
  3626. pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
  3627. return rc;
  3628. }
  3629. /**
  3630. * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
  3631. * @phba: Pointer to HBA context object.
  3632. *
  3633. * This function is called in the SLI initialization code path to
  3634. * restart the HBA. The caller is not required to hold any lock.
  3635. * This function writes MBX_RESTART mailbox command to the SLIM and
  3636. * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
  3637. * function to free any pending commands. The function enables
  3638. * POST only during the first initialization. The function returns zero.
  3639. * The function does not guarantee completion of MBX_RESTART mailbox
  3640. * command before the return of this function.
  3641. **/
  3642. static int
  3643. lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
  3644. {
  3645. MAILBOX_t *mb;
  3646. struct lpfc_sli *psli;
  3647. volatile uint32_t word0;
  3648. void __iomem *to_slim;
  3649. uint32_t hba_aer_enabled;
  3650. spin_lock_irq(&phba->hbalock);
  3651. /* Take PCIe device Advanced Error Reporting (AER) state */
  3652. hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
  3653. psli = &phba->sli;
  3654. /* Restart HBA */
  3655. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3656. "0337 Restart HBA Data: x%x x%x\n",
  3657. phba->pport->port_state, psli->sli_flag);
  3658. word0 = 0;
  3659. mb = (MAILBOX_t *) &word0;
  3660. mb->mbxCommand = MBX_RESTART;
  3661. mb->mbxHc = 1;
  3662. lpfc_reset_barrier(phba);
  3663. to_slim = phba->MBslimaddr;
  3664. writel(*(uint32_t *) mb, to_slim);
  3665. readl(to_slim); /* flush */
  3666. /* Only skip post after fc_ffinit is completed */
  3667. if (phba->pport->port_state)
  3668. word0 = 1; /* This is really setting up word1 */
  3669. else
  3670. word0 = 0; /* This is really setting up word1 */
  3671. to_slim = phba->MBslimaddr + sizeof (uint32_t);
  3672. writel(*(uint32_t *) mb, to_slim);
  3673. readl(to_slim); /* flush */
  3674. lpfc_sli_brdreset(phba);
  3675. phba->pport->stopped = 0;
  3676. phba->link_state = LPFC_INIT_START;
  3677. phba->hba_flag = 0;
  3678. spin_unlock_irq(&phba->hbalock);
  3679. memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
  3680. psli->stats_start = get_seconds();
  3681. /* Give the INITFF and Post time to settle. */
  3682. mdelay(100);
  3683. /* Reset HBA AER if it was enabled, note hba_flag was reset above */
  3684. if (hba_aer_enabled)
  3685. pci_disable_pcie_error_reporting(phba->pcidev);
  3686. lpfc_hba_down_post(phba);
  3687. return 0;
  3688. }
  3689. /**
  3690. * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
  3691. * @phba: Pointer to HBA context object.
  3692. *
  3693. * This function is called in the SLI initialization code path to restart
  3694. * a SLI4 HBA. The caller is not required to hold any lock.
  3695. * At the end of the function, it calls lpfc_hba_down_post function to
  3696. * free any pending commands.
  3697. **/
  3698. static int
  3699. lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
  3700. {
  3701. struct lpfc_sli *psli = &phba->sli;
  3702. uint32_t hba_aer_enabled;
  3703. int rc;
  3704. /* Restart HBA */
  3705. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3706. "0296 Restart HBA Data: x%x x%x\n",
  3707. phba->pport->port_state, psli->sli_flag);
  3708. /* Take PCIe device Advanced Error Reporting (AER) state */
  3709. hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
  3710. rc = lpfc_sli4_brdreset(phba);
  3711. spin_lock_irq(&phba->hbalock);
  3712. phba->pport->stopped = 0;
  3713. phba->link_state = LPFC_INIT_START;
  3714. phba->hba_flag = 0;
  3715. spin_unlock_irq(&phba->hbalock);
  3716. memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
  3717. psli->stats_start = get_seconds();
  3718. /* Reset HBA AER if it was enabled, note hba_flag was reset above */
  3719. if (hba_aer_enabled)
  3720. pci_disable_pcie_error_reporting(phba->pcidev);
  3721. lpfc_hba_down_post(phba);
  3722. return rc;
  3723. }
  3724. /**
  3725. * lpfc_sli_brdrestart - Wrapper func for restarting hba
  3726. * @phba: Pointer to HBA context object.
  3727. *
  3728. * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
  3729. * API jump table function pointer from the lpfc_hba struct.
  3730. **/
  3731. int
  3732. lpfc_sli_brdrestart(struct lpfc_hba *phba)
  3733. {
  3734. return phba->lpfc_sli_brdrestart(phba);
  3735. }
  3736. /**
  3737. * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
  3738. * @phba: Pointer to HBA context object.
  3739. *
  3740. * This function is called after a HBA restart to wait for successful
  3741. * restart of the HBA. Successful restart of the HBA is indicated by
  3742. * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
  3743. * iteration, the function will restart the HBA again. The function returns
  3744. * zero if HBA successfully restarted else returns negative error code.
  3745. **/
  3746. static int
  3747. lpfc_sli_chipset_init(struct lpfc_hba *phba)
  3748. {
  3749. uint32_t status, i = 0;
  3750. /* Read the HBA Host Status Register */
  3751. if (lpfc_readl(phba->HSregaddr, &status))
  3752. return -EIO;
  3753. /* Check status register to see what current state is */
  3754. i = 0;
  3755. while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
  3756. /* Check every 10ms for 10 retries, then every 100ms for 90
  3757. * retries, then every 1 sec for 50 retires for a total of
  3758. * ~60 seconds before reset the board again and check every
  3759. * 1 sec for 50 retries. The up to 60 seconds before the
  3760. * board ready is required by the Falcon FIPS zeroization
  3761. * complete, and any reset the board in between shall cause
  3762. * restart of zeroization, further delay the board ready.
  3763. */
  3764. if (i++ >= 200) {
  3765. /* Adapter failed to init, timeout, status reg
  3766. <status> */
  3767. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  3768. "0436 Adapter failed to init, "
  3769. "timeout, status reg x%x, "
  3770. "FW Data: A8 x%x AC x%x\n", status,
  3771. readl(phba->MBslimaddr + 0xa8),
  3772. readl(phba->MBslimaddr + 0xac));
  3773. phba->link_state = LPFC_HBA_ERROR;
  3774. return -ETIMEDOUT;
  3775. }
  3776. /* Check to see if any errors occurred during init */
  3777. if (status & HS_FFERM) {
  3778. /* ERROR: During chipset initialization */
  3779. /* Adapter failed to init, chipset, status reg
  3780. <status> */
  3781. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  3782. "0437 Adapter failed to init, "
  3783. "chipset, status reg x%x, "
  3784. "FW Data: A8 x%x AC x%x\n", status,
  3785. readl(phba->MBslimaddr + 0xa8),
  3786. readl(phba->MBslimaddr + 0xac));
  3787. phba->link_state = LPFC_HBA_ERROR;
  3788. return -EIO;
  3789. }
  3790. if (i <= 10)
  3791. msleep(10);
  3792. else if (i <= 100)
  3793. msleep(100);
  3794. else
  3795. msleep(1000);
  3796. if (i == 150) {
  3797. /* Do post */
  3798. phba->pport->port_state = LPFC_VPORT_UNKNOWN;
  3799. lpfc_sli_brdrestart(phba);
  3800. }
  3801. /* Read the HBA Host Status Register */
  3802. if (lpfc_readl(phba->HSregaddr, &status))
  3803. return -EIO;
  3804. }
  3805. /* Check to see if any errors occurred during init */
  3806. if (status & HS_FFERM) {
  3807. /* ERROR: During chipset initialization */
  3808. /* Adapter failed to init, chipset, status reg <status> */
  3809. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  3810. "0438 Adapter failed to init, chipset, "
  3811. "status reg x%x, "
  3812. "FW Data: A8 x%x AC x%x\n", status,
  3813. readl(phba->MBslimaddr + 0xa8),
  3814. readl(phba->MBslimaddr + 0xac));
  3815. phba->link_state = LPFC_HBA_ERROR;
  3816. return -EIO;
  3817. }
  3818. /* Clear all interrupt enable conditions */
  3819. writel(0, phba->HCregaddr);
  3820. readl(phba->HCregaddr); /* flush */
  3821. /* setup host attn register */
  3822. writel(0xffffffff, phba->HAregaddr);
  3823. readl(phba->HAregaddr); /* flush */
  3824. return 0;
  3825. }
  3826. /**
  3827. * lpfc_sli_hbq_count - Get the number of HBQs to be configured
  3828. *
  3829. * This function calculates and returns the number of HBQs required to be
  3830. * configured.
  3831. **/
  3832. int
  3833. lpfc_sli_hbq_count(void)
  3834. {
  3835. return ARRAY_SIZE(lpfc_hbq_defs);
  3836. }
  3837. /**
  3838. * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
  3839. *
  3840. * This function adds the number of hbq entries in every HBQ to get
  3841. * the total number of hbq entries required for the HBA and returns
  3842. * the total count.
  3843. **/
  3844. static int
  3845. lpfc_sli_hbq_entry_count(void)
  3846. {
  3847. int hbq_count = lpfc_sli_hbq_count();
  3848. int count = 0;
  3849. int i;
  3850. for (i = 0; i < hbq_count; ++i)
  3851. count += lpfc_hbq_defs[i]->entry_count;
  3852. return count;
  3853. }
  3854. /**
  3855. * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
  3856. *
  3857. * This function calculates amount of memory required for all hbq entries
  3858. * to be configured and returns the total memory required.
  3859. **/
  3860. int
  3861. lpfc_sli_hbq_size(void)
  3862. {
  3863. return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
  3864. }
  3865. /**
  3866. * lpfc_sli_hbq_setup - configure and initialize HBQs
  3867. * @phba: Pointer to HBA context object.
  3868. *
  3869. * This function is called during the SLI initialization to configure
  3870. * all the HBQs and post buffers to the HBQ. The caller is not
  3871. * required to hold any locks. This function will return zero if successful
  3872. * else it will return negative error code.
  3873. **/
  3874. static int
  3875. lpfc_sli_hbq_setup(struct lpfc_hba *phba)
  3876. {
  3877. int hbq_count = lpfc_sli_hbq_count();
  3878. LPFC_MBOXQ_t *pmb;
  3879. MAILBOX_t *pmbox;
  3880. uint32_t hbqno;
  3881. uint32_t hbq_entry_index;
  3882. /* Get a Mailbox buffer to setup mailbox
  3883. * commands for HBA initialization
  3884. */
  3885. pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  3886. if (!pmb)
  3887. return -ENOMEM;
  3888. pmbox = &pmb->u.mb;
  3889. /* Initialize the struct lpfc_sli_hbq structure for each hbq */
  3890. phba->link_state = LPFC_INIT_MBX_CMDS;
  3891. phba->hbq_in_use = 1;
  3892. hbq_entry_index = 0;
  3893. for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
  3894. phba->hbqs[hbqno].next_hbqPutIdx = 0;
  3895. phba->hbqs[hbqno].hbqPutIdx = 0;
  3896. phba->hbqs[hbqno].local_hbqGetIdx = 0;
  3897. phba->hbqs[hbqno].entry_count =
  3898. lpfc_hbq_defs[hbqno]->entry_count;
  3899. lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
  3900. hbq_entry_index, pmb);
  3901. hbq_entry_index += phba->hbqs[hbqno].entry_count;
  3902. if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
  3903. /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
  3904. mbxStatus <status>, ring <num> */
  3905. lpfc_printf_log(phba, KERN_ERR,
  3906. LOG_SLI | LOG_VPORT,
  3907. "1805 Adapter failed to init. "
  3908. "Data: x%x x%x x%x\n",
  3909. pmbox->mbxCommand,
  3910. pmbox->mbxStatus, hbqno);
  3911. phba->link_state = LPFC_HBA_ERROR;
  3912. mempool_free(pmb, phba->mbox_mem_pool);
  3913. return -ENXIO;
  3914. }
  3915. }
  3916. phba->hbq_count = hbq_count;
  3917. mempool_free(pmb, phba->mbox_mem_pool);
  3918. /* Initially populate or replenish the HBQs */
  3919. for (hbqno = 0; hbqno < hbq_count; ++hbqno)
  3920. lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
  3921. return 0;
  3922. }
  3923. /**
  3924. * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
  3925. * @phba: Pointer to HBA context object.
  3926. *
  3927. * This function is called during the SLI initialization to configure
  3928. * all the HBQs and post buffers to the HBQ. The caller is not
  3929. * required to hold any locks. This function will return zero if successful
  3930. * else it will return negative error code.
  3931. **/
  3932. static int
  3933. lpfc_sli4_rb_setup(struct lpfc_hba *phba)
  3934. {
  3935. phba->hbq_in_use = 1;
  3936. phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
  3937. phba->hbq_count = 1;
  3938. /* Initially populate or replenish the HBQs */
  3939. lpfc_sli_hbqbuf_init_hbqs(phba, 0);
  3940. return 0;
  3941. }
  3942. /**
  3943. * lpfc_sli_config_port - Issue config port mailbox command
  3944. * @phba: Pointer to HBA context object.
  3945. * @sli_mode: sli mode - 2/3
  3946. *
  3947. * This function is called by the sli intialization code path
  3948. * to issue config_port mailbox command. This function restarts the
  3949. * HBA firmware and issues a config_port mailbox command to configure
  3950. * the SLI interface in the sli mode specified by sli_mode
  3951. * variable. The caller is not required to hold any locks.
  3952. * The function returns 0 if successful, else returns negative error
  3953. * code.
  3954. **/
  3955. int
  3956. lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
  3957. {
  3958. LPFC_MBOXQ_t *pmb;
  3959. uint32_t resetcount = 0, rc = 0, done = 0;
  3960. pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  3961. if (!pmb) {
  3962. phba->link_state = LPFC_HBA_ERROR;
  3963. return -ENOMEM;
  3964. }
  3965. phba->sli_rev = sli_mode;
  3966. while (resetcount < 2 && !done) {
  3967. spin_lock_irq(&phba->hbalock);
  3968. phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
  3969. spin_unlock_irq(&phba->hbalock);
  3970. phba->pport->port_state = LPFC_VPORT_UNKNOWN;
  3971. lpfc_sli_brdrestart(phba);
  3972. rc = lpfc_sli_chipset_init(phba);
  3973. if (rc)
  3974. break;
  3975. spin_lock_irq(&phba->hbalock);
  3976. phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  3977. spin_unlock_irq(&phba->hbalock);
  3978. resetcount++;
  3979. /* Call pre CONFIG_PORT mailbox command initialization. A
  3980. * value of 0 means the call was successful. Any other
  3981. * nonzero value is a failure, but if ERESTART is returned,
  3982. * the driver may reset the HBA and try again.
  3983. */
  3984. rc = lpfc_config_port_prep(phba);
  3985. if (rc == -ERESTART) {
  3986. phba->link_state = LPFC_LINK_UNKNOWN;
  3987. continue;
  3988. } else if (rc)
  3989. break;
  3990. phba->link_state = LPFC_INIT_MBX_CMDS;
  3991. lpfc_config_port(phba, pmb);
  3992. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
  3993. phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
  3994. LPFC_SLI3_HBQ_ENABLED |
  3995. LPFC_SLI3_CRP_ENABLED |
  3996. LPFC_SLI3_BG_ENABLED |
  3997. LPFC_SLI3_DSS_ENABLED);
  3998. if (rc != MBX_SUCCESS) {
  3999. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4000. "0442 Adapter failed to init, mbxCmd x%x "
  4001. "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
  4002. pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
  4003. spin_lock_irq(&phba->hbalock);
  4004. phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
  4005. spin_unlock_irq(&phba->hbalock);
  4006. rc = -ENXIO;
  4007. } else {
  4008. /* Allow asynchronous mailbox command to go through */
  4009. spin_lock_irq(&phba->hbalock);
  4010. phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
  4011. spin_unlock_irq(&phba->hbalock);
  4012. done = 1;
  4013. if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
  4014. (pmb->u.mb.un.varCfgPort.gasabt == 0))
  4015. lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
  4016. "3110 Port did not grant ASABT\n");
  4017. }
  4018. }
  4019. if (!done) {
  4020. rc = -EINVAL;
  4021. goto do_prep_failed;
  4022. }
  4023. if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
  4024. if (!pmb->u.mb.un.varCfgPort.cMA) {
  4025. rc = -ENXIO;
  4026. goto do_prep_failed;
  4027. }
  4028. if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
  4029. phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
  4030. phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
  4031. phba->max_vports = (phba->max_vpi > phba->max_vports) ?
  4032. phba->max_vpi : phba->max_vports;
  4033. } else
  4034. phba->max_vpi = 0;
  4035. phba->fips_level = 0;
  4036. phba->fips_spec_rev = 0;
  4037. if (pmb->u.mb.un.varCfgPort.gdss) {
  4038. phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
  4039. phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
  4040. phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
  4041. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  4042. "2850 Security Crypto Active. FIPS x%d "
  4043. "(Spec Rev: x%d)",
  4044. phba->fips_level, phba->fips_spec_rev);
  4045. }
  4046. if (pmb->u.mb.un.varCfgPort.sec_err) {
  4047. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4048. "2856 Config Port Security Crypto "
  4049. "Error: x%x ",
  4050. pmb->u.mb.un.varCfgPort.sec_err);
  4051. }
  4052. if (pmb->u.mb.un.varCfgPort.gerbm)
  4053. phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
  4054. if (pmb->u.mb.un.varCfgPort.gcrp)
  4055. phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
  4056. phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
  4057. phba->port_gp = phba->mbox->us.s3_pgp.port;
  4058. if (phba->cfg_enable_bg) {
  4059. if (pmb->u.mb.un.varCfgPort.gbg)
  4060. phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
  4061. else
  4062. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4063. "0443 Adapter did not grant "
  4064. "BlockGuard\n");
  4065. }
  4066. } else {
  4067. phba->hbq_get = NULL;
  4068. phba->port_gp = phba->mbox->us.s2.port;
  4069. phba->max_vpi = 0;
  4070. }
  4071. do_prep_failed:
  4072. mempool_free(pmb, phba->mbox_mem_pool);
  4073. return rc;
  4074. }
  4075. /**
  4076. * lpfc_sli_hba_setup - SLI intialization function
  4077. * @phba: Pointer to HBA context object.
  4078. *
  4079. * This function is the main SLI intialization function. This function
  4080. * is called by the HBA intialization code, HBA reset code and HBA
  4081. * error attention handler code. Caller is not required to hold any
  4082. * locks. This function issues config_port mailbox command to configure
  4083. * the SLI, setup iocb rings and HBQ rings. In the end the function
  4084. * calls the config_port_post function to issue init_link mailbox
  4085. * command and to start the discovery. The function will return zero
  4086. * if successful, else it will return negative error code.
  4087. **/
  4088. int
  4089. lpfc_sli_hba_setup(struct lpfc_hba *phba)
  4090. {
  4091. uint32_t rc;
  4092. int mode = 3, i;
  4093. int longs;
  4094. switch (lpfc_sli_mode) {
  4095. case 2:
  4096. if (phba->cfg_enable_npiv) {
  4097. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
  4098. "1824 NPIV enabled: Override lpfc_sli_mode "
  4099. "parameter (%d) to auto (0).\n",
  4100. lpfc_sli_mode);
  4101. break;
  4102. }
  4103. mode = 2;
  4104. break;
  4105. case 0:
  4106. case 3:
  4107. break;
  4108. default:
  4109. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
  4110. "1819 Unrecognized lpfc_sli_mode "
  4111. "parameter: %d.\n", lpfc_sli_mode);
  4112. break;
  4113. }
  4114. rc = lpfc_sli_config_port(phba, mode);
  4115. if (rc && lpfc_sli_mode == 3)
  4116. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
  4117. "1820 Unable to select SLI-3. "
  4118. "Not supported by adapter.\n");
  4119. if (rc && mode != 2)
  4120. rc = lpfc_sli_config_port(phba, 2);
  4121. if (rc)
  4122. goto lpfc_sli_hba_setup_error;
  4123. /* Enable PCIe device Advanced Error Reporting (AER) if configured */
  4124. if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
  4125. rc = pci_enable_pcie_error_reporting(phba->pcidev);
  4126. if (!rc) {
  4127. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  4128. "2709 This device supports "
  4129. "Advanced Error Reporting (AER)\n");
  4130. spin_lock_irq(&phba->hbalock);
  4131. phba->hba_flag |= HBA_AER_ENABLED;
  4132. spin_unlock_irq(&phba->hbalock);
  4133. } else {
  4134. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  4135. "2708 This device does not support "
  4136. "Advanced Error Reporting (AER): %d\n",
  4137. rc);
  4138. phba->cfg_aer_support = 0;
  4139. }
  4140. }
  4141. if (phba->sli_rev == 3) {
  4142. phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
  4143. phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
  4144. } else {
  4145. phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
  4146. phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
  4147. phba->sli3_options = 0;
  4148. }
  4149. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  4150. "0444 Firmware in SLI %x mode. Max_vpi %d\n",
  4151. phba->sli_rev, phba->max_vpi);
  4152. rc = lpfc_sli_ring_map(phba);
  4153. if (rc)
  4154. goto lpfc_sli_hba_setup_error;
  4155. /* Initialize VPIs. */
  4156. if (phba->sli_rev == LPFC_SLI_REV3) {
  4157. /*
  4158. * The VPI bitmask and physical ID array are allocated
  4159. * and initialized once only - at driver load. A port
  4160. * reset doesn't need to reinitialize this memory.
  4161. */
  4162. if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
  4163. longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
  4164. phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
  4165. GFP_KERNEL);
  4166. if (!phba->vpi_bmask) {
  4167. rc = -ENOMEM;
  4168. goto lpfc_sli_hba_setup_error;
  4169. }
  4170. phba->vpi_ids = kzalloc(
  4171. (phba->max_vpi+1) * sizeof(uint16_t),
  4172. GFP_KERNEL);
  4173. if (!phba->vpi_ids) {
  4174. kfree(phba->vpi_bmask);
  4175. rc = -ENOMEM;
  4176. goto lpfc_sli_hba_setup_error;
  4177. }
  4178. for (i = 0; i < phba->max_vpi; i++)
  4179. phba->vpi_ids[i] = i;
  4180. }
  4181. }
  4182. /* Init HBQs */
  4183. if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
  4184. rc = lpfc_sli_hbq_setup(phba);
  4185. if (rc)
  4186. goto lpfc_sli_hba_setup_error;
  4187. }
  4188. spin_lock_irq(&phba->hbalock);
  4189. phba->sli.sli_flag |= LPFC_PROCESS_LA;
  4190. spin_unlock_irq(&phba->hbalock);
  4191. rc = lpfc_config_port_post(phba);
  4192. if (rc)
  4193. goto lpfc_sli_hba_setup_error;
  4194. return rc;
  4195. lpfc_sli_hba_setup_error:
  4196. phba->link_state = LPFC_HBA_ERROR;
  4197. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4198. "0445 Firmware initialization failed\n");
  4199. return rc;
  4200. }
  4201. /**
  4202. * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
  4203. * @phba: Pointer to HBA context object.
  4204. * @mboxq: mailbox pointer.
  4205. * This function issue a dump mailbox command to read config region
  4206. * 23 and parse the records in the region and populate driver
  4207. * data structure.
  4208. **/
  4209. static int
  4210. lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
  4211. {
  4212. LPFC_MBOXQ_t *mboxq;
  4213. struct lpfc_dmabuf *mp;
  4214. struct lpfc_mqe *mqe;
  4215. uint32_t data_length;
  4216. int rc;
  4217. /* Program the default value of vlan_id and fc_map */
  4218. phba->valid_vlan = 0;
  4219. phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
  4220. phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
  4221. phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
  4222. mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4223. if (!mboxq)
  4224. return -ENOMEM;
  4225. mqe = &mboxq->u.mqe;
  4226. if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
  4227. rc = -ENOMEM;
  4228. goto out_free_mboxq;
  4229. }
  4230. mp = (struct lpfc_dmabuf *) mboxq->context1;
  4231. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  4232. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  4233. "(%d):2571 Mailbox cmd x%x Status x%x "
  4234. "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
  4235. "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
  4236. "CQ: x%x x%x x%x x%x\n",
  4237. mboxq->vport ? mboxq->vport->vpi : 0,
  4238. bf_get(lpfc_mqe_command, mqe),
  4239. bf_get(lpfc_mqe_status, mqe),
  4240. mqe->un.mb_words[0], mqe->un.mb_words[1],
  4241. mqe->un.mb_words[2], mqe->un.mb_words[3],
  4242. mqe->un.mb_words[4], mqe->un.mb_words[5],
  4243. mqe->un.mb_words[6], mqe->un.mb_words[7],
  4244. mqe->un.mb_words[8], mqe->un.mb_words[9],
  4245. mqe->un.mb_words[10], mqe->un.mb_words[11],
  4246. mqe->un.mb_words[12], mqe->un.mb_words[13],
  4247. mqe->un.mb_words[14], mqe->un.mb_words[15],
  4248. mqe->un.mb_words[16], mqe->un.mb_words[50],
  4249. mboxq->mcqe.word0,
  4250. mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
  4251. mboxq->mcqe.trailer);
  4252. if (rc) {
  4253. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  4254. kfree(mp);
  4255. rc = -EIO;
  4256. goto out_free_mboxq;
  4257. }
  4258. data_length = mqe->un.mb_words[5];
  4259. if (data_length > DMP_RGN23_SIZE) {
  4260. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  4261. kfree(mp);
  4262. rc = -EIO;
  4263. goto out_free_mboxq;
  4264. }
  4265. lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
  4266. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  4267. kfree(mp);
  4268. rc = 0;
  4269. out_free_mboxq:
  4270. mempool_free(mboxq, phba->mbox_mem_pool);
  4271. return rc;
  4272. }
  4273. /**
  4274. * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
  4275. * @phba: pointer to lpfc hba data structure.
  4276. * @mboxq: pointer to the LPFC_MBOXQ_t structure.
  4277. * @vpd: pointer to the memory to hold resulting port vpd data.
  4278. * @vpd_size: On input, the number of bytes allocated to @vpd.
  4279. * On output, the number of data bytes in @vpd.
  4280. *
  4281. * This routine executes a READ_REV SLI4 mailbox command. In
  4282. * addition, this routine gets the port vpd data.
  4283. *
  4284. * Return codes
  4285. * 0 - successful
  4286. * -ENOMEM - could not allocated memory.
  4287. **/
  4288. static int
  4289. lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
  4290. uint8_t *vpd, uint32_t *vpd_size)
  4291. {
  4292. int rc = 0;
  4293. uint32_t dma_size;
  4294. struct lpfc_dmabuf *dmabuf;
  4295. struct lpfc_mqe *mqe;
  4296. dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
  4297. if (!dmabuf)
  4298. return -ENOMEM;
  4299. /*
  4300. * Get a DMA buffer for the vpd data resulting from the READ_REV
  4301. * mailbox command.
  4302. */
  4303. dma_size = *vpd_size;
  4304. dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
  4305. dma_size,
  4306. &dmabuf->phys,
  4307. GFP_KERNEL);
  4308. if (!dmabuf->virt) {
  4309. kfree(dmabuf);
  4310. return -ENOMEM;
  4311. }
  4312. memset(dmabuf->virt, 0, dma_size);
  4313. /*
  4314. * The SLI4 implementation of READ_REV conflicts at word1,
  4315. * bits 31:16 and SLI4 adds vpd functionality not present
  4316. * in SLI3. This code corrects the conflicts.
  4317. */
  4318. lpfc_read_rev(phba, mboxq);
  4319. mqe = &mboxq->u.mqe;
  4320. mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
  4321. mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
  4322. mqe->un.read_rev.word1 &= 0x0000FFFF;
  4323. bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
  4324. bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
  4325. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  4326. if (rc) {
  4327. dma_free_coherent(&phba->pcidev->dev, dma_size,
  4328. dmabuf->virt, dmabuf->phys);
  4329. kfree(dmabuf);
  4330. return -EIO;
  4331. }
  4332. /*
  4333. * The available vpd length cannot be bigger than the
  4334. * DMA buffer passed to the port. Catch the less than
  4335. * case and update the caller's size.
  4336. */
  4337. if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
  4338. *vpd_size = mqe->un.read_rev.avail_vpd_len;
  4339. memcpy(vpd, dmabuf->virt, *vpd_size);
  4340. dma_free_coherent(&phba->pcidev->dev, dma_size,
  4341. dmabuf->virt, dmabuf->phys);
  4342. kfree(dmabuf);
  4343. return 0;
  4344. }
  4345. /**
  4346. * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
  4347. * @phba: pointer to lpfc hba data structure.
  4348. *
  4349. * This routine retrieves SLI4 device physical port name this PCI function
  4350. * is attached to.
  4351. *
  4352. * Return codes
  4353. * 0 - successful
  4354. * otherwise - failed to retrieve physical port name
  4355. **/
  4356. static int
  4357. lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
  4358. {
  4359. LPFC_MBOXQ_t *mboxq;
  4360. struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
  4361. struct lpfc_controller_attribute *cntl_attr;
  4362. struct lpfc_mbx_get_port_name *get_port_name;
  4363. void *virtaddr = NULL;
  4364. uint32_t alloclen, reqlen;
  4365. uint32_t shdr_status, shdr_add_status;
  4366. union lpfc_sli4_cfg_shdr *shdr;
  4367. char cport_name = 0;
  4368. int rc;
  4369. /* We assume nothing at this point */
  4370. phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
  4371. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
  4372. mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4373. if (!mboxq)
  4374. return -ENOMEM;
  4375. /* obtain link type and link number via READ_CONFIG */
  4376. phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
  4377. lpfc_sli4_read_config(phba);
  4378. if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
  4379. goto retrieve_ppname;
  4380. /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
  4381. reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
  4382. alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
  4383. LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
  4384. LPFC_SLI4_MBX_NEMBED);
  4385. if (alloclen < reqlen) {
  4386. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  4387. "3084 Allocated DMA memory size (%d) is "
  4388. "less than the requested DMA memory size "
  4389. "(%d)\n", alloclen, reqlen);
  4390. rc = -ENOMEM;
  4391. goto out_free_mboxq;
  4392. }
  4393. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  4394. virtaddr = mboxq->sge_array->addr[0];
  4395. mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
  4396. shdr = &mbx_cntl_attr->cfg_shdr;
  4397. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  4398. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  4399. if (shdr_status || shdr_add_status || rc) {
  4400. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  4401. "3085 Mailbox x%x (x%x/x%x) failed, "
  4402. "rc:x%x, status:x%x, add_status:x%x\n",
  4403. bf_get(lpfc_mqe_command, &mboxq->u.mqe),
  4404. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  4405. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  4406. rc, shdr_status, shdr_add_status);
  4407. rc = -ENXIO;
  4408. goto out_free_mboxq;
  4409. }
  4410. cntl_attr = &mbx_cntl_attr->cntl_attr;
  4411. phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
  4412. phba->sli4_hba.lnk_info.lnk_tp =
  4413. bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
  4414. phba->sli4_hba.lnk_info.lnk_no =
  4415. bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
  4416. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  4417. "3086 lnk_type:%d, lnk_numb:%d\n",
  4418. phba->sli4_hba.lnk_info.lnk_tp,
  4419. phba->sli4_hba.lnk_info.lnk_no);
  4420. retrieve_ppname:
  4421. lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
  4422. LPFC_MBOX_OPCODE_GET_PORT_NAME,
  4423. sizeof(struct lpfc_mbx_get_port_name) -
  4424. sizeof(struct lpfc_sli4_cfg_mhdr),
  4425. LPFC_SLI4_MBX_EMBED);
  4426. get_port_name = &mboxq->u.mqe.un.get_port_name;
  4427. shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
  4428. bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
  4429. bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
  4430. phba->sli4_hba.lnk_info.lnk_tp);
  4431. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  4432. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  4433. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  4434. if (shdr_status || shdr_add_status || rc) {
  4435. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  4436. "3087 Mailbox x%x (x%x/x%x) failed: "
  4437. "rc:x%x, status:x%x, add_status:x%x\n",
  4438. bf_get(lpfc_mqe_command, &mboxq->u.mqe),
  4439. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  4440. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  4441. rc, shdr_status, shdr_add_status);
  4442. rc = -ENXIO;
  4443. goto out_free_mboxq;
  4444. }
  4445. switch (phba->sli4_hba.lnk_info.lnk_no) {
  4446. case LPFC_LINK_NUMBER_0:
  4447. cport_name = bf_get(lpfc_mbx_get_port_name_name0,
  4448. &get_port_name->u.response);
  4449. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
  4450. break;
  4451. case LPFC_LINK_NUMBER_1:
  4452. cport_name = bf_get(lpfc_mbx_get_port_name_name1,
  4453. &get_port_name->u.response);
  4454. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
  4455. break;
  4456. case LPFC_LINK_NUMBER_2:
  4457. cport_name = bf_get(lpfc_mbx_get_port_name_name2,
  4458. &get_port_name->u.response);
  4459. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
  4460. break;
  4461. case LPFC_LINK_NUMBER_3:
  4462. cport_name = bf_get(lpfc_mbx_get_port_name_name3,
  4463. &get_port_name->u.response);
  4464. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
  4465. break;
  4466. default:
  4467. break;
  4468. }
  4469. if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
  4470. phba->Port[0] = cport_name;
  4471. phba->Port[1] = '\0';
  4472. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  4473. "3091 SLI get port name: %s\n", phba->Port);
  4474. }
  4475. out_free_mboxq:
  4476. if (rc != MBX_TIMEOUT) {
  4477. if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
  4478. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  4479. else
  4480. mempool_free(mboxq, phba->mbox_mem_pool);
  4481. }
  4482. return rc;
  4483. }
  4484. /**
  4485. * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
  4486. * @phba: pointer to lpfc hba data structure.
  4487. *
  4488. * This routine is called to explicitly arm the SLI4 device's completion and
  4489. * event queues
  4490. **/
  4491. static void
  4492. lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
  4493. {
  4494. int fcp_eqidx;
  4495. lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
  4496. lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
  4497. fcp_eqidx = 0;
  4498. if (phba->sli4_hba.fcp_cq) {
  4499. do {
  4500. lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
  4501. LPFC_QUEUE_REARM);
  4502. } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
  4503. }
  4504. if (phba->sli4_hba.hba_eq) {
  4505. for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
  4506. fcp_eqidx++)
  4507. lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
  4508. LPFC_QUEUE_REARM);
  4509. }
  4510. }
  4511. /**
  4512. * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
  4513. * @phba: Pointer to HBA context object.
  4514. * @type: The resource extent type.
  4515. * @extnt_count: buffer to hold port available extent count.
  4516. * @extnt_size: buffer to hold element count per extent.
  4517. *
  4518. * This function calls the port and retrievs the number of available
  4519. * extents and their size for a particular extent type.
  4520. *
  4521. * Returns: 0 if successful. Nonzero otherwise.
  4522. **/
  4523. int
  4524. lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
  4525. uint16_t *extnt_count, uint16_t *extnt_size)
  4526. {
  4527. int rc = 0;
  4528. uint32_t length;
  4529. uint32_t mbox_tmo;
  4530. struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
  4531. LPFC_MBOXQ_t *mbox;
  4532. mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4533. if (!mbox)
  4534. return -ENOMEM;
  4535. /* Find out how many extents are available for this resource type */
  4536. length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
  4537. sizeof(struct lpfc_sli4_cfg_mhdr));
  4538. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  4539. LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
  4540. length, LPFC_SLI4_MBX_EMBED);
  4541. /* Send an extents count of 0 - the GET doesn't use it. */
  4542. rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
  4543. LPFC_SLI4_MBX_EMBED);
  4544. if (unlikely(rc)) {
  4545. rc = -EIO;
  4546. goto err_exit;
  4547. }
  4548. if (!phba->sli4_hba.intr_enable)
  4549. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  4550. else {
  4551. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  4552. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  4553. }
  4554. if (unlikely(rc)) {
  4555. rc = -EIO;
  4556. goto err_exit;
  4557. }
  4558. rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
  4559. if (bf_get(lpfc_mbox_hdr_status,
  4560. &rsrc_info->header.cfg_shdr.response)) {
  4561. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
  4562. "2930 Failed to get resource extents "
  4563. "Status 0x%x Add'l Status 0x%x\n",
  4564. bf_get(lpfc_mbox_hdr_status,
  4565. &rsrc_info->header.cfg_shdr.response),
  4566. bf_get(lpfc_mbox_hdr_add_status,
  4567. &rsrc_info->header.cfg_shdr.response));
  4568. rc = -EIO;
  4569. goto err_exit;
  4570. }
  4571. *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
  4572. &rsrc_info->u.rsp);
  4573. *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
  4574. &rsrc_info->u.rsp);
  4575. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  4576. "3162 Retrieved extents type-%d from port: count:%d, "
  4577. "size:%d\n", type, *extnt_count, *extnt_size);
  4578. err_exit:
  4579. mempool_free(mbox, phba->mbox_mem_pool);
  4580. return rc;
  4581. }
  4582. /**
  4583. * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
  4584. * @phba: Pointer to HBA context object.
  4585. * @type: The extent type to check.
  4586. *
  4587. * This function reads the current available extents from the port and checks
  4588. * if the extent count or extent size has changed since the last access.
  4589. * Callers use this routine post port reset to understand if there is a
  4590. * extent reprovisioning requirement.
  4591. *
  4592. * Returns:
  4593. * -Error: error indicates problem.
  4594. * 1: Extent count or size has changed.
  4595. * 0: No changes.
  4596. **/
  4597. static int
  4598. lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
  4599. {
  4600. uint16_t curr_ext_cnt, rsrc_ext_cnt;
  4601. uint16_t size_diff, rsrc_ext_size;
  4602. int rc = 0;
  4603. struct lpfc_rsrc_blks *rsrc_entry;
  4604. struct list_head *rsrc_blk_list = NULL;
  4605. size_diff = 0;
  4606. curr_ext_cnt = 0;
  4607. rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
  4608. &rsrc_ext_cnt,
  4609. &rsrc_ext_size);
  4610. if (unlikely(rc))
  4611. return -EIO;
  4612. switch (type) {
  4613. case LPFC_RSC_TYPE_FCOE_RPI:
  4614. rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
  4615. break;
  4616. case LPFC_RSC_TYPE_FCOE_VPI:
  4617. rsrc_blk_list = &phba->lpfc_vpi_blk_list;
  4618. break;
  4619. case LPFC_RSC_TYPE_FCOE_XRI:
  4620. rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
  4621. break;
  4622. case LPFC_RSC_TYPE_FCOE_VFI:
  4623. rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
  4624. break;
  4625. default:
  4626. break;
  4627. }
  4628. list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
  4629. curr_ext_cnt++;
  4630. if (rsrc_entry->rsrc_size != rsrc_ext_size)
  4631. size_diff++;
  4632. }
  4633. if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
  4634. rc = 1;
  4635. return rc;
  4636. }
  4637. /**
  4638. * lpfc_sli4_cfg_post_extnts -
  4639. * @phba: Pointer to HBA context object.
  4640. * @extnt_cnt - number of available extents.
  4641. * @type - the extent type (rpi, xri, vfi, vpi).
  4642. * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
  4643. * @mbox - pointer to the caller's allocated mailbox structure.
  4644. *
  4645. * This function executes the extents allocation request. It also
  4646. * takes care of the amount of memory needed to allocate or get the
  4647. * allocated extents. It is the caller's responsibility to evaluate
  4648. * the response.
  4649. *
  4650. * Returns:
  4651. * -Error: Error value describes the condition found.
  4652. * 0: if successful
  4653. **/
  4654. static int
  4655. lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
  4656. uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
  4657. {
  4658. int rc = 0;
  4659. uint32_t req_len;
  4660. uint32_t emb_len;
  4661. uint32_t alloc_len, mbox_tmo;
  4662. /* Calculate the total requested length of the dma memory */
  4663. req_len = extnt_cnt * sizeof(uint16_t);
  4664. /*
  4665. * Calculate the size of an embedded mailbox. The uint32_t
  4666. * accounts for extents-specific word.
  4667. */
  4668. emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
  4669. sizeof(uint32_t);
  4670. /*
  4671. * Presume the allocation and response will fit into an embedded
  4672. * mailbox. If not true, reconfigure to a non-embedded mailbox.
  4673. */
  4674. *emb = LPFC_SLI4_MBX_EMBED;
  4675. if (req_len > emb_len) {
  4676. req_len = extnt_cnt * sizeof(uint16_t) +
  4677. sizeof(union lpfc_sli4_cfg_shdr) +
  4678. sizeof(uint32_t);
  4679. *emb = LPFC_SLI4_MBX_NEMBED;
  4680. }
  4681. alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  4682. LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
  4683. req_len, *emb);
  4684. if (alloc_len < req_len) {
  4685. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4686. "2982 Allocated DMA memory size (x%x) is "
  4687. "less than the requested DMA memory "
  4688. "size (x%x)\n", alloc_len, req_len);
  4689. return -ENOMEM;
  4690. }
  4691. rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
  4692. if (unlikely(rc))
  4693. return -EIO;
  4694. if (!phba->sli4_hba.intr_enable)
  4695. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  4696. else {
  4697. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  4698. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  4699. }
  4700. if (unlikely(rc))
  4701. rc = -EIO;
  4702. return rc;
  4703. }
  4704. /**
  4705. * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
  4706. * @phba: Pointer to HBA context object.
  4707. * @type: The resource extent type to allocate.
  4708. *
  4709. * This function allocates the number of elements for the specified
  4710. * resource type.
  4711. **/
  4712. static int
  4713. lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
  4714. {
  4715. bool emb = false;
  4716. uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
  4717. uint16_t rsrc_id, rsrc_start, j, k;
  4718. uint16_t *ids;
  4719. int i, rc;
  4720. unsigned long longs;
  4721. unsigned long *bmask;
  4722. struct lpfc_rsrc_blks *rsrc_blks;
  4723. LPFC_MBOXQ_t *mbox;
  4724. uint32_t length;
  4725. struct lpfc_id_range *id_array = NULL;
  4726. void *virtaddr = NULL;
  4727. struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
  4728. struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
  4729. struct list_head *ext_blk_list;
  4730. rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
  4731. &rsrc_cnt,
  4732. &rsrc_size);
  4733. if (unlikely(rc))
  4734. return -EIO;
  4735. if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
  4736. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
  4737. "3009 No available Resource Extents "
  4738. "for resource type 0x%x: Count: 0x%x, "
  4739. "Size 0x%x\n", type, rsrc_cnt,
  4740. rsrc_size);
  4741. return -ENOMEM;
  4742. }
  4743. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
  4744. "2903 Post resource extents type-0x%x: "
  4745. "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
  4746. mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4747. if (!mbox)
  4748. return -ENOMEM;
  4749. rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
  4750. if (unlikely(rc)) {
  4751. rc = -EIO;
  4752. goto err_exit;
  4753. }
  4754. /*
  4755. * Figure out where the response is located. Then get local pointers
  4756. * to the response data. The port does not guarantee to respond to
  4757. * all extents counts request so update the local variable with the
  4758. * allocated count from the port.
  4759. */
  4760. if (emb == LPFC_SLI4_MBX_EMBED) {
  4761. rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
  4762. id_array = &rsrc_ext->u.rsp.id[0];
  4763. rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
  4764. } else {
  4765. virtaddr = mbox->sge_array->addr[0];
  4766. n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
  4767. rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
  4768. id_array = &n_rsrc->id;
  4769. }
  4770. longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
  4771. rsrc_id_cnt = rsrc_cnt * rsrc_size;
  4772. /*
  4773. * Based on the resource size and count, correct the base and max
  4774. * resource values.
  4775. */
  4776. length = sizeof(struct lpfc_rsrc_blks);
  4777. switch (type) {
  4778. case LPFC_RSC_TYPE_FCOE_RPI:
  4779. phba->sli4_hba.rpi_bmask = kzalloc(longs *
  4780. sizeof(unsigned long),
  4781. GFP_KERNEL);
  4782. if (unlikely(!phba->sli4_hba.rpi_bmask)) {
  4783. rc = -ENOMEM;
  4784. goto err_exit;
  4785. }
  4786. phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
  4787. sizeof(uint16_t),
  4788. GFP_KERNEL);
  4789. if (unlikely(!phba->sli4_hba.rpi_ids)) {
  4790. kfree(phba->sli4_hba.rpi_bmask);
  4791. rc = -ENOMEM;
  4792. goto err_exit;
  4793. }
  4794. /*
  4795. * The next_rpi was initialized with the maximum available
  4796. * count but the port may allocate a smaller number. Catch
  4797. * that case and update the next_rpi.
  4798. */
  4799. phba->sli4_hba.next_rpi = rsrc_id_cnt;
  4800. /* Initialize local ptrs for common extent processing later. */
  4801. bmask = phba->sli4_hba.rpi_bmask;
  4802. ids = phba->sli4_hba.rpi_ids;
  4803. ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
  4804. break;
  4805. case LPFC_RSC_TYPE_FCOE_VPI:
  4806. phba->vpi_bmask = kzalloc(longs *
  4807. sizeof(unsigned long),
  4808. GFP_KERNEL);
  4809. if (unlikely(!phba->vpi_bmask)) {
  4810. rc = -ENOMEM;
  4811. goto err_exit;
  4812. }
  4813. phba->vpi_ids = kzalloc(rsrc_id_cnt *
  4814. sizeof(uint16_t),
  4815. GFP_KERNEL);
  4816. if (unlikely(!phba->vpi_ids)) {
  4817. kfree(phba->vpi_bmask);
  4818. rc = -ENOMEM;
  4819. goto err_exit;
  4820. }
  4821. /* Initialize local ptrs for common extent processing later. */
  4822. bmask = phba->vpi_bmask;
  4823. ids = phba->vpi_ids;
  4824. ext_blk_list = &phba->lpfc_vpi_blk_list;
  4825. break;
  4826. case LPFC_RSC_TYPE_FCOE_XRI:
  4827. phba->sli4_hba.xri_bmask = kzalloc(longs *
  4828. sizeof(unsigned long),
  4829. GFP_KERNEL);
  4830. if (unlikely(!phba->sli4_hba.xri_bmask)) {
  4831. rc = -ENOMEM;
  4832. goto err_exit;
  4833. }
  4834. phba->sli4_hba.max_cfg_param.xri_used = 0;
  4835. phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
  4836. sizeof(uint16_t),
  4837. GFP_KERNEL);
  4838. if (unlikely(!phba->sli4_hba.xri_ids)) {
  4839. kfree(phba->sli4_hba.xri_bmask);
  4840. rc = -ENOMEM;
  4841. goto err_exit;
  4842. }
  4843. /* Initialize local ptrs for common extent processing later. */
  4844. bmask = phba->sli4_hba.xri_bmask;
  4845. ids = phba->sli4_hba.xri_ids;
  4846. ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
  4847. break;
  4848. case LPFC_RSC_TYPE_FCOE_VFI:
  4849. phba->sli4_hba.vfi_bmask = kzalloc(longs *
  4850. sizeof(unsigned long),
  4851. GFP_KERNEL);
  4852. if (unlikely(!phba->sli4_hba.vfi_bmask)) {
  4853. rc = -ENOMEM;
  4854. goto err_exit;
  4855. }
  4856. phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
  4857. sizeof(uint16_t),
  4858. GFP_KERNEL);
  4859. if (unlikely(!phba->sli4_hba.vfi_ids)) {
  4860. kfree(phba->sli4_hba.vfi_bmask);
  4861. rc = -ENOMEM;
  4862. goto err_exit;
  4863. }
  4864. /* Initialize local ptrs for common extent processing later. */
  4865. bmask = phba->sli4_hba.vfi_bmask;
  4866. ids = phba->sli4_hba.vfi_ids;
  4867. ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
  4868. break;
  4869. default:
  4870. /* Unsupported Opcode. Fail call. */
  4871. id_array = NULL;
  4872. bmask = NULL;
  4873. ids = NULL;
  4874. ext_blk_list = NULL;
  4875. goto err_exit;
  4876. }
  4877. /*
  4878. * Complete initializing the extent configuration with the
  4879. * allocated ids assigned to this function. The bitmask serves
  4880. * as an index into the array and manages the available ids. The
  4881. * array just stores the ids communicated to the port via the wqes.
  4882. */
  4883. for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
  4884. if ((i % 2) == 0)
  4885. rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
  4886. &id_array[k]);
  4887. else
  4888. rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
  4889. &id_array[k]);
  4890. rsrc_blks = kzalloc(length, GFP_KERNEL);
  4891. if (unlikely(!rsrc_blks)) {
  4892. rc = -ENOMEM;
  4893. kfree(bmask);
  4894. kfree(ids);
  4895. goto err_exit;
  4896. }
  4897. rsrc_blks->rsrc_start = rsrc_id;
  4898. rsrc_blks->rsrc_size = rsrc_size;
  4899. list_add_tail(&rsrc_blks->list, ext_blk_list);
  4900. rsrc_start = rsrc_id;
  4901. if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
  4902. phba->sli4_hba.scsi_xri_start = rsrc_start +
  4903. lpfc_sli4_get_els_iocb_cnt(phba);
  4904. while (rsrc_id < (rsrc_start + rsrc_size)) {
  4905. ids[j] = rsrc_id;
  4906. rsrc_id++;
  4907. j++;
  4908. }
  4909. /* Entire word processed. Get next word.*/
  4910. if ((i % 2) == 1)
  4911. k++;
  4912. }
  4913. err_exit:
  4914. lpfc_sli4_mbox_cmd_free(phba, mbox);
  4915. return rc;
  4916. }
  4917. /**
  4918. * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
  4919. * @phba: Pointer to HBA context object.
  4920. * @type: the extent's type.
  4921. *
  4922. * This function deallocates all extents of a particular resource type.
  4923. * SLI4 does not allow for deallocating a particular extent range. It
  4924. * is the caller's responsibility to release all kernel memory resources.
  4925. **/
  4926. static int
  4927. lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
  4928. {
  4929. int rc;
  4930. uint32_t length, mbox_tmo = 0;
  4931. LPFC_MBOXQ_t *mbox;
  4932. struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
  4933. struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
  4934. mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4935. if (!mbox)
  4936. return -ENOMEM;
  4937. /*
  4938. * This function sends an embedded mailbox because it only sends the
  4939. * the resource type. All extents of this type are released by the
  4940. * port.
  4941. */
  4942. length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
  4943. sizeof(struct lpfc_sli4_cfg_mhdr));
  4944. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  4945. LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
  4946. length, LPFC_SLI4_MBX_EMBED);
  4947. /* Send an extents count of 0 - the dealloc doesn't use it. */
  4948. rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
  4949. LPFC_SLI4_MBX_EMBED);
  4950. if (unlikely(rc)) {
  4951. rc = -EIO;
  4952. goto out_free_mbox;
  4953. }
  4954. if (!phba->sli4_hba.intr_enable)
  4955. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  4956. else {
  4957. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  4958. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  4959. }
  4960. if (unlikely(rc)) {
  4961. rc = -EIO;
  4962. goto out_free_mbox;
  4963. }
  4964. dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
  4965. if (bf_get(lpfc_mbox_hdr_status,
  4966. &dealloc_rsrc->header.cfg_shdr.response)) {
  4967. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
  4968. "2919 Failed to release resource extents "
  4969. "for type %d - Status 0x%x Add'l Status 0x%x. "
  4970. "Resource memory not released.\n",
  4971. type,
  4972. bf_get(lpfc_mbox_hdr_status,
  4973. &dealloc_rsrc->header.cfg_shdr.response),
  4974. bf_get(lpfc_mbox_hdr_add_status,
  4975. &dealloc_rsrc->header.cfg_shdr.response));
  4976. rc = -EIO;
  4977. goto out_free_mbox;
  4978. }
  4979. /* Release kernel memory resources for the specific type. */
  4980. switch (type) {
  4981. case LPFC_RSC_TYPE_FCOE_VPI:
  4982. kfree(phba->vpi_bmask);
  4983. kfree(phba->vpi_ids);
  4984. bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  4985. list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
  4986. &phba->lpfc_vpi_blk_list, list) {
  4987. list_del_init(&rsrc_blk->list);
  4988. kfree(rsrc_blk);
  4989. }
  4990. phba->sli4_hba.max_cfg_param.vpi_used = 0;
  4991. break;
  4992. case LPFC_RSC_TYPE_FCOE_XRI:
  4993. kfree(phba->sli4_hba.xri_bmask);
  4994. kfree(phba->sli4_hba.xri_ids);
  4995. list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
  4996. &phba->sli4_hba.lpfc_xri_blk_list, list) {
  4997. list_del_init(&rsrc_blk->list);
  4998. kfree(rsrc_blk);
  4999. }
  5000. break;
  5001. case LPFC_RSC_TYPE_FCOE_VFI:
  5002. kfree(phba->sli4_hba.vfi_bmask);
  5003. kfree(phba->sli4_hba.vfi_ids);
  5004. bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5005. list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
  5006. &phba->sli4_hba.lpfc_vfi_blk_list, list) {
  5007. list_del_init(&rsrc_blk->list);
  5008. kfree(rsrc_blk);
  5009. }
  5010. break;
  5011. case LPFC_RSC_TYPE_FCOE_RPI:
  5012. /* RPI bitmask and physical id array are cleaned up earlier. */
  5013. list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
  5014. &phba->sli4_hba.lpfc_rpi_blk_list, list) {
  5015. list_del_init(&rsrc_blk->list);
  5016. kfree(rsrc_blk);
  5017. }
  5018. break;
  5019. default:
  5020. break;
  5021. }
  5022. bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5023. out_free_mbox:
  5024. mempool_free(mbox, phba->mbox_mem_pool);
  5025. return rc;
  5026. }
  5027. /**
  5028. * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
  5029. * @phba: Pointer to HBA context object.
  5030. *
  5031. * This function allocates all SLI4 resource identifiers.
  5032. **/
  5033. int
  5034. lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
  5035. {
  5036. int i, rc, error = 0;
  5037. uint16_t count, base;
  5038. unsigned long longs;
  5039. if (!phba->sli4_hba.rpi_hdrs_in_use)
  5040. phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
  5041. if (phba->sli4_hba.extents_in_use) {
  5042. /*
  5043. * The port supports resource extents. The XRI, VPI, VFI, RPI
  5044. * resource extent count must be read and allocated before
  5045. * provisioning the resource id arrays.
  5046. */
  5047. if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
  5048. LPFC_IDX_RSRC_RDY) {
  5049. /*
  5050. * Extent-based resources are set - the driver could
  5051. * be in a port reset. Figure out if any corrective
  5052. * actions need to be taken.
  5053. */
  5054. rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
  5055. LPFC_RSC_TYPE_FCOE_VFI);
  5056. if (rc != 0)
  5057. error++;
  5058. rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
  5059. LPFC_RSC_TYPE_FCOE_VPI);
  5060. if (rc != 0)
  5061. error++;
  5062. rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
  5063. LPFC_RSC_TYPE_FCOE_XRI);
  5064. if (rc != 0)
  5065. error++;
  5066. rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
  5067. LPFC_RSC_TYPE_FCOE_RPI);
  5068. if (rc != 0)
  5069. error++;
  5070. /*
  5071. * It's possible that the number of resources
  5072. * provided to this port instance changed between
  5073. * resets. Detect this condition and reallocate
  5074. * resources. Otherwise, there is no action.
  5075. */
  5076. if (error) {
  5077. lpfc_printf_log(phba, KERN_INFO,
  5078. LOG_MBOX | LOG_INIT,
  5079. "2931 Detected extent resource "
  5080. "change. Reallocating all "
  5081. "extents.\n");
  5082. rc = lpfc_sli4_dealloc_extent(phba,
  5083. LPFC_RSC_TYPE_FCOE_VFI);
  5084. rc = lpfc_sli4_dealloc_extent(phba,
  5085. LPFC_RSC_TYPE_FCOE_VPI);
  5086. rc = lpfc_sli4_dealloc_extent(phba,
  5087. LPFC_RSC_TYPE_FCOE_XRI);
  5088. rc = lpfc_sli4_dealloc_extent(phba,
  5089. LPFC_RSC_TYPE_FCOE_RPI);
  5090. } else
  5091. return 0;
  5092. }
  5093. rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
  5094. if (unlikely(rc))
  5095. goto err_exit;
  5096. rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
  5097. if (unlikely(rc))
  5098. goto err_exit;
  5099. rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
  5100. if (unlikely(rc))
  5101. goto err_exit;
  5102. rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
  5103. if (unlikely(rc))
  5104. goto err_exit;
  5105. bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
  5106. LPFC_IDX_RSRC_RDY);
  5107. return rc;
  5108. } else {
  5109. /*
  5110. * The port does not support resource extents. The XRI, VPI,
  5111. * VFI, RPI resource ids were determined from READ_CONFIG.
  5112. * Just allocate the bitmasks and provision the resource id
  5113. * arrays. If a port reset is active, the resources don't
  5114. * need any action - just exit.
  5115. */
  5116. if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
  5117. LPFC_IDX_RSRC_RDY) {
  5118. lpfc_sli4_dealloc_resource_identifiers(phba);
  5119. lpfc_sli4_remove_rpis(phba);
  5120. }
  5121. /* RPIs. */
  5122. count = phba->sli4_hba.max_cfg_param.max_rpi;
  5123. if (count <= 0) {
  5124. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5125. "3279 Invalid provisioning of "
  5126. "rpi:%d\n", count);
  5127. rc = -EINVAL;
  5128. goto err_exit;
  5129. }
  5130. base = phba->sli4_hba.max_cfg_param.rpi_base;
  5131. longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
  5132. phba->sli4_hba.rpi_bmask = kzalloc(longs *
  5133. sizeof(unsigned long),
  5134. GFP_KERNEL);
  5135. if (unlikely(!phba->sli4_hba.rpi_bmask)) {
  5136. rc = -ENOMEM;
  5137. goto err_exit;
  5138. }
  5139. phba->sli4_hba.rpi_ids = kzalloc(count *
  5140. sizeof(uint16_t),
  5141. GFP_KERNEL);
  5142. if (unlikely(!phba->sli4_hba.rpi_ids)) {
  5143. rc = -ENOMEM;
  5144. goto free_rpi_bmask;
  5145. }
  5146. for (i = 0; i < count; i++)
  5147. phba->sli4_hba.rpi_ids[i] = base + i;
  5148. /* VPIs. */
  5149. count = phba->sli4_hba.max_cfg_param.max_vpi;
  5150. if (count <= 0) {
  5151. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5152. "3280 Invalid provisioning of "
  5153. "vpi:%d\n", count);
  5154. rc = -EINVAL;
  5155. goto free_rpi_ids;
  5156. }
  5157. base = phba->sli4_hba.max_cfg_param.vpi_base;
  5158. longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
  5159. phba->vpi_bmask = kzalloc(longs *
  5160. sizeof(unsigned long),
  5161. GFP_KERNEL);
  5162. if (unlikely(!phba->vpi_bmask)) {
  5163. rc = -ENOMEM;
  5164. goto free_rpi_ids;
  5165. }
  5166. phba->vpi_ids = kzalloc(count *
  5167. sizeof(uint16_t),
  5168. GFP_KERNEL);
  5169. if (unlikely(!phba->vpi_ids)) {
  5170. rc = -ENOMEM;
  5171. goto free_vpi_bmask;
  5172. }
  5173. for (i = 0; i < count; i++)
  5174. phba->vpi_ids[i] = base + i;
  5175. /* XRIs. */
  5176. count = phba->sli4_hba.max_cfg_param.max_xri;
  5177. if (count <= 0) {
  5178. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5179. "3281 Invalid provisioning of "
  5180. "xri:%d\n", count);
  5181. rc = -EINVAL;
  5182. goto free_vpi_ids;
  5183. }
  5184. base = phba->sli4_hba.max_cfg_param.xri_base;
  5185. longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
  5186. phba->sli4_hba.xri_bmask = kzalloc(longs *
  5187. sizeof(unsigned long),
  5188. GFP_KERNEL);
  5189. if (unlikely(!phba->sli4_hba.xri_bmask)) {
  5190. rc = -ENOMEM;
  5191. goto free_vpi_ids;
  5192. }
  5193. phba->sli4_hba.max_cfg_param.xri_used = 0;
  5194. phba->sli4_hba.xri_ids = kzalloc(count *
  5195. sizeof(uint16_t),
  5196. GFP_KERNEL);
  5197. if (unlikely(!phba->sli4_hba.xri_ids)) {
  5198. rc = -ENOMEM;
  5199. goto free_xri_bmask;
  5200. }
  5201. for (i = 0; i < count; i++)
  5202. phba->sli4_hba.xri_ids[i] = base + i;
  5203. /* VFIs. */
  5204. count = phba->sli4_hba.max_cfg_param.max_vfi;
  5205. if (count <= 0) {
  5206. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5207. "3282 Invalid provisioning of "
  5208. "vfi:%d\n", count);
  5209. rc = -EINVAL;
  5210. goto free_xri_ids;
  5211. }
  5212. base = phba->sli4_hba.max_cfg_param.vfi_base;
  5213. longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
  5214. phba->sli4_hba.vfi_bmask = kzalloc(longs *
  5215. sizeof(unsigned long),
  5216. GFP_KERNEL);
  5217. if (unlikely(!phba->sli4_hba.vfi_bmask)) {
  5218. rc = -ENOMEM;
  5219. goto free_xri_ids;
  5220. }
  5221. phba->sli4_hba.vfi_ids = kzalloc(count *
  5222. sizeof(uint16_t),
  5223. GFP_KERNEL);
  5224. if (unlikely(!phba->sli4_hba.vfi_ids)) {
  5225. rc = -ENOMEM;
  5226. goto free_vfi_bmask;
  5227. }
  5228. for (i = 0; i < count; i++)
  5229. phba->sli4_hba.vfi_ids[i] = base + i;
  5230. /*
  5231. * Mark all resources ready. An HBA reset doesn't need
  5232. * to reset the initialization.
  5233. */
  5234. bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
  5235. LPFC_IDX_RSRC_RDY);
  5236. return 0;
  5237. }
  5238. free_vfi_bmask:
  5239. kfree(phba->sli4_hba.vfi_bmask);
  5240. free_xri_ids:
  5241. kfree(phba->sli4_hba.xri_ids);
  5242. free_xri_bmask:
  5243. kfree(phba->sli4_hba.xri_bmask);
  5244. free_vpi_ids:
  5245. kfree(phba->vpi_ids);
  5246. free_vpi_bmask:
  5247. kfree(phba->vpi_bmask);
  5248. free_rpi_ids:
  5249. kfree(phba->sli4_hba.rpi_ids);
  5250. free_rpi_bmask:
  5251. kfree(phba->sli4_hba.rpi_bmask);
  5252. err_exit:
  5253. return rc;
  5254. }
  5255. /**
  5256. * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
  5257. * @phba: Pointer to HBA context object.
  5258. *
  5259. * This function allocates the number of elements for the specified
  5260. * resource type.
  5261. **/
  5262. int
  5263. lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
  5264. {
  5265. if (phba->sli4_hba.extents_in_use) {
  5266. lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
  5267. lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
  5268. lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
  5269. lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
  5270. } else {
  5271. kfree(phba->vpi_bmask);
  5272. phba->sli4_hba.max_cfg_param.vpi_used = 0;
  5273. kfree(phba->vpi_ids);
  5274. bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5275. kfree(phba->sli4_hba.xri_bmask);
  5276. kfree(phba->sli4_hba.xri_ids);
  5277. kfree(phba->sli4_hba.vfi_bmask);
  5278. kfree(phba->sli4_hba.vfi_ids);
  5279. bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5280. bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5281. }
  5282. return 0;
  5283. }
  5284. /**
  5285. * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
  5286. * @phba: Pointer to HBA context object.
  5287. * @type: The resource extent type.
  5288. * @extnt_count: buffer to hold port extent count response
  5289. * @extnt_size: buffer to hold port extent size response.
  5290. *
  5291. * This function calls the port to read the host allocated extents
  5292. * for a particular type.
  5293. **/
  5294. int
  5295. lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
  5296. uint16_t *extnt_cnt, uint16_t *extnt_size)
  5297. {
  5298. bool emb;
  5299. int rc = 0;
  5300. uint16_t curr_blks = 0;
  5301. uint32_t req_len, emb_len;
  5302. uint32_t alloc_len, mbox_tmo;
  5303. struct list_head *blk_list_head;
  5304. struct lpfc_rsrc_blks *rsrc_blk;
  5305. LPFC_MBOXQ_t *mbox;
  5306. void *virtaddr = NULL;
  5307. struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
  5308. struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
  5309. union lpfc_sli4_cfg_shdr *shdr;
  5310. switch (type) {
  5311. case LPFC_RSC_TYPE_FCOE_VPI:
  5312. blk_list_head = &phba->lpfc_vpi_blk_list;
  5313. break;
  5314. case LPFC_RSC_TYPE_FCOE_XRI:
  5315. blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
  5316. break;
  5317. case LPFC_RSC_TYPE_FCOE_VFI:
  5318. blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
  5319. break;
  5320. case LPFC_RSC_TYPE_FCOE_RPI:
  5321. blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
  5322. break;
  5323. default:
  5324. return -EIO;
  5325. }
  5326. /* Count the number of extents currently allocatd for this type. */
  5327. list_for_each_entry(rsrc_blk, blk_list_head, list) {
  5328. if (curr_blks == 0) {
  5329. /*
  5330. * The GET_ALLOCATED mailbox does not return the size,
  5331. * just the count. The size should be just the size
  5332. * stored in the current allocated block and all sizes
  5333. * for an extent type are the same so set the return
  5334. * value now.
  5335. */
  5336. *extnt_size = rsrc_blk->rsrc_size;
  5337. }
  5338. curr_blks++;
  5339. }
  5340. /* Calculate the total requested length of the dma memory. */
  5341. req_len = curr_blks * sizeof(uint16_t);
  5342. /*
  5343. * Calculate the size of an embedded mailbox. The uint32_t
  5344. * accounts for extents-specific word.
  5345. */
  5346. emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
  5347. sizeof(uint32_t);
  5348. /*
  5349. * Presume the allocation and response will fit into an embedded
  5350. * mailbox. If not true, reconfigure to a non-embedded mailbox.
  5351. */
  5352. emb = LPFC_SLI4_MBX_EMBED;
  5353. req_len = emb_len;
  5354. if (req_len > emb_len) {
  5355. req_len = curr_blks * sizeof(uint16_t) +
  5356. sizeof(union lpfc_sli4_cfg_shdr) +
  5357. sizeof(uint32_t);
  5358. emb = LPFC_SLI4_MBX_NEMBED;
  5359. }
  5360. mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  5361. if (!mbox)
  5362. return -ENOMEM;
  5363. memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
  5364. alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  5365. LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
  5366. req_len, emb);
  5367. if (alloc_len < req_len) {
  5368. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  5369. "2983 Allocated DMA memory size (x%x) is "
  5370. "less than the requested DMA memory "
  5371. "size (x%x)\n", alloc_len, req_len);
  5372. rc = -ENOMEM;
  5373. goto err_exit;
  5374. }
  5375. rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
  5376. if (unlikely(rc)) {
  5377. rc = -EIO;
  5378. goto err_exit;
  5379. }
  5380. if (!phba->sli4_hba.intr_enable)
  5381. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  5382. else {
  5383. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  5384. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  5385. }
  5386. if (unlikely(rc)) {
  5387. rc = -EIO;
  5388. goto err_exit;
  5389. }
  5390. /*
  5391. * Figure out where the response is located. Then get local pointers
  5392. * to the response data. The port does not guarantee to respond to
  5393. * all extents counts request so update the local variable with the
  5394. * allocated count from the port.
  5395. */
  5396. if (emb == LPFC_SLI4_MBX_EMBED) {
  5397. rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
  5398. shdr = &rsrc_ext->header.cfg_shdr;
  5399. *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
  5400. } else {
  5401. virtaddr = mbox->sge_array->addr[0];
  5402. n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
  5403. shdr = &n_rsrc->cfg_shdr;
  5404. *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
  5405. }
  5406. if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
  5407. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
  5408. "2984 Failed to read allocated resources "
  5409. "for type %d - Status 0x%x Add'l Status 0x%x.\n",
  5410. type,
  5411. bf_get(lpfc_mbox_hdr_status, &shdr->response),
  5412. bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
  5413. rc = -EIO;
  5414. goto err_exit;
  5415. }
  5416. err_exit:
  5417. lpfc_sli4_mbox_cmd_free(phba, mbox);
  5418. return rc;
  5419. }
  5420. /**
  5421. * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
  5422. * @phba: pointer to lpfc hba data structure.
  5423. *
  5424. * This routine walks the list of els buffers that have been allocated and
  5425. * repost them to the port by using SGL block post. This is needed after a
  5426. * pci_function_reset/warm_start or start. It attempts to construct blocks
  5427. * of els buffer sgls which contains contiguous xris and uses the non-embedded
  5428. * SGL block post mailbox commands to post them to the port. For single els
  5429. * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
  5430. * mailbox command for posting.
  5431. *
  5432. * Returns: 0 = success, non-zero failure.
  5433. **/
  5434. static int
  5435. lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
  5436. {
  5437. struct lpfc_sglq *sglq_entry = NULL;
  5438. struct lpfc_sglq *sglq_entry_next = NULL;
  5439. struct lpfc_sglq *sglq_entry_first = NULL;
  5440. int status, total_cnt, post_cnt = 0, num_posted = 0, block_cnt = 0;
  5441. int last_xritag = NO_XRI;
  5442. LIST_HEAD(prep_sgl_list);
  5443. LIST_HEAD(blck_sgl_list);
  5444. LIST_HEAD(allc_sgl_list);
  5445. LIST_HEAD(post_sgl_list);
  5446. LIST_HEAD(free_sgl_list);
  5447. spin_lock_irq(&phba->hbalock);
  5448. list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
  5449. spin_unlock_irq(&phba->hbalock);
  5450. total_cnt = phba->sli4_hba.els_xri_cnt;
  5451. list_for_each_entry_safe(sglq_entry, sglq_entry_next,
  5452. &allc_sgl_list, list) {
  5453. list_del_init(&sglq_entry->list);
  5454. block_cnt++;
  5455. if ((last_xritag != NO_XRI) &&
  5456. (sglq_entry->sli4_xritag != last_xritag + 1)) {
  5457. /* a hole in xri block, form a sgl posting block */
  5458. list_splice_init(&prep_sgl_list, &blck_sgl_list);
  5459. post_cnt = block_cnt - 1;
  5460. /* prepare list for next posting block */
  5461. list_add_tail(&sglq_entry->list, &prep_sgl_list);
  5462. block_cnt = 1;
  5463. } else {
  5464. /* prepare list for next posting block */
  5465. list_add_tail(&sglq_entry->list, &prep_sgl_list);
  5466. /* enough sgls for non-embed sgl mbox command */
  5467. if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
  5468. list_splice_init(&prep_sgl_list,
  5469. &blck_sgl_list);
  5470. post_cnt = block_cnt;
  5471. block_cnt = 0;
  5472. }
  5473. }
  5474. num_posted++;
  5475. /* keep track of last sgl's xritag */
  5476. last_xritag = sglq_entry->sli4_xritag;
  5477. /* end of repost sgl list condition for els buffers */
  5478. if (num_posted == phba->sli4_hba.els_xri_cnt) {
  5479. if (post_cnt == 0) {
  5480. list_splice_init(&prep_sgl_list,
  5481. &blck_sgl_list);
  5482. post_cnt = block_cnt;
  5483. } else if (block_cnt == 1) {
  5484. status = lpfc_sli4_post_sgl(phba,
  5485. sglq_entry->phys, 0,
  5486. sglq_entry->sli4_xritag);
  5487. if (!status) {
  5488. /* successful, put sgl to posted list */
  5489. list_add_tail(&sglq_entry->list,
  5490. &post_sgl_list);
  5491. } else {
  5492. /* Failure, put sgl to free list */
  5493. lpfc_printf_log(phba, KERN_WARNING,
  5494. LOG_SLI,
  5495. "3159 Failed to post els "
  5496. "sgl, xritag:x%x\n",
  5497. sglq_entry->sli4_xritag);
  5498. list_add_tail(&sglq_entry->list,
  5499. &free_sgl_list);
  5500. total_cnt--;
  5501. }
  5502. }
  5503. }
  5504. /* continue until a nembed page worth of sgls */
  5505. if (post_cnt == 0)
  5506. continue;
  5507. /* post the els buffer list sgls as a block */
  5508. status = lpfc_sli4_post_els_sgl_list(phba, &blck_sgl_list,
  5509. post_cnt);
  5510. if (!status) {
  5511. /* success, put sgl list to posted sgl list */
  5512. list_splice_init(&blck_sgl_list, &post_sgl_list);
  5513. } else {
  5514. /* Failure, put sgl list to free sgl list */
  5515. sglq_entry_first = list_first_entry(&blck_sgl_list,
  5516. struct lpfc_sglq,
  5517. list);
  5518. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  5519. "3160 Failed to post els sgl-list, "
  5520. "xritag:x%x-x%x\n",
  5521. sglq_entry_first->sli4_xritag,
  5522. (sglq_entry_first->sli4_xritag +
  5523. post_cnt - 1));
  5524. list_splice_init(&blck_sgl_list, &free_sgl_list);
  5525. total_cnt -= post_cnt;
  5526. }
  5527. /* don't reset xirtag due to hole in xri block */
  5528. if (block_cnt == 0)
  5529. last_xritag = NO_XRI;
  5530. /* reset els sgl post count for next round of posting */
  5531. post_cnt = 0;
  5532. }
  5533. /* update the number of XRIs posted for ELS */
  5534. phba->sli4_hba.els_xri_cnt = total_cnt;
  5535. /* free the els sgls failed to post */
  5536. lpfc_free_sgl_list(phba, &free_sgl_list);
  5537. /* push els sgls posted to the availble list */
  5538. if (!list_empty(&post_sgl_list)) {
  5539. spin_lock_irq(&phba->hbalock);
  5540. list_splice_init(&post_sgl_list,
  5541. &phba->sli4_hba.lpfc_sgl_list);
  5542. spin_unlock_irq(&phba->hbalock);
  5543. } else {
  5544. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5545. "3161 Failure to post els sgl to port.\n");
  5546. return -EIO;
  5547. }
  5548. return 0;
  5549. }
  5550. /**
  5551. * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
  5552. * @phba: Pointer to HBA context object.
  5553. *
  5554. * This function is the main SLI4 device intialization PCI function. This
  5555. * function is called by the HBA intialization code, HBA reset code and
  5556. * HBA error attention handler code. Caller is not required to hold any
  5557. * locks.
  5558. **/
  5559. int
  5560. lpfc_sli4_hba_setup(struct lpfc_hba *phba)
  5561. {
  5562. int rc;
  5563. LPFC_MBOXQ_t *mboxq;
  5564. struct lpfc_mqe *mqe;
  5565. uint8_t *vpd;
  5566. uint32_t vpd_size;
  5567. uint32_t ftr_rsp = 0;
  5568. struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
  5569. struct lpfc_vport *vport = phba->pport;
  5570. struct lpfc_dmabuf *mp;
  5571. /* Perform a PCI function reset to start from clean */
  5572. rc = lpfc_pci_function_reset(phba);
  5573. if (unlikely(rc))
  5574. return -ENODEV;
  5575. /* Check the HBA Host Status Register for readyness */
  5576. rc = lpfc_sli4_post_status_check(phba);
  5577. if (unlikely(rc))
  5578. return -ENODEV;
  5579. else {
  5580. spin_lock_irq(&phba->hbalock);
  5581. phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
  5582. spin_unlock_irq(&phba->hbalock);
  5583. }
  5584. /*
  5585. * Allocate a single mailbox container for initializing the
  5586. * port.
  5587. */
  5588. mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  5589. if (!mboxq)
  5590. return -ENOMEM;
  5591. /* Issue READ_REV to collect vpd and FW information. */
  5592. vpd_size = SLI4_PAGE_SIZE;
  5593. vpd = kzalloc(vpd_size, GFP_KERNEL);
  5594. if (!vpd) {
  5595. rc = -ENOMEM;
  5596. goto out_free_mbox;
  5597. }
  5598. rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
  5599. if (unlikely(rc)) {
  5600. kfree(vpd);
  5601. goto out_free_mbox;
  5602. }
  5603. mqe = &mboxq->u.mqe;
  5604. phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
  5605. if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
  5606. phba->hba_flag |= HBA_FCOE_MODE;
  5607. else
  5608. phba->hba_flag &= ~HBA_FCOE_MODE;
  5609. if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
  5610. LPFC_DCBX_CEE_MODE)
  5611. phba->hba_flag |= HBA_FIP_SUPPORT;
  5612. else
  5613. phba->hba_flag &= ~HBA_FIP_SUPPORT;
  5614. phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
  5615. if (phba->sli_rev != LPFC_SLI_REV4) {
  5616. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5617. "0376 READ_REV Error. SLI Level %d "
  5618. "FCoE enabled %d\n",
  5619. phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
  5620. rc = -EIO;
  5621. kfree(vpd);
  5622. goto out_free_mbox;
  5623. }
  5624. /*
  5625. * Continue initialization with default values even if driver failed
  5626. * to read FCoE param config regions, only read parameters if the
  5627. * board is FCoE
  5628. */
  5629. if (phba->hba_flag & HBA_FCOE_MODE &&
  5630. lpfc_sli4_read_fcoe_params(phba))
  5631. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
  5632. "2570 Failed to read FCoE parameters\n");
  5633. /*
  5634. * Retrieve sli4 device physical port name, failure of doing it
  5635. * is considered as non-fatal.
  5636. */
  5637. rc = lpfc_sli4_retrieve_pport_name(phba);
  5638. if (!rc)
  5639. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  5640. "3080 Successful retrieving SLI4 device "
  5641. "physical port name: %s.\n", phba->Port);
  5642. /*
  5643. * Evaluate the read rev and vpd data. Populate the driver
  5644. * state with the results. If this routine fails, the failure
  5645. * is not fatal as the driver will use generic values.
  5646. */
  5647. rc = lpfc_parse_vpd(phba, vpd, vpd_size);
  5648. if (unlikely(!rc)) {
  5649. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5650. "0377 Error %d parsing vpd. "
  5651. "Using defaults.\n", rc);
  5652. rc = 0;
  5653. }
  5654. kfree(vpd);
  5655. /* Save information as VPD data */
  5656. phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
  5657. phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
  5658. phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
  5659. phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
  5660. &mqe->un.read_rev);
  5661. phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
  5662. &mqe->un.read_rev);
  5663. phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
  5664. &mqe->un.read_rev);
  5665. phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
  5666. &mqe->un.read_rev);
  5667. phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
  5668. memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
  5669. phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
  5670. memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
  5671. phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
  5672. memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
  5673. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  5674. "(%d):0380 READ_REV Status x%x "
  5675. "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
  5676. mboxq->vport ? mboxq->vport->vpi : 0,
  5677. bf_get(lpfc_mqe_status, mqe),
  5678. phba->vpd.rev.opFwName,
  5679. phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
  5680. phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
  5681. /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
  5682. rc = (phba->sli4_hba.max_cfg_param.max_xri >> 3);
  5683. if (phba->pport->cfg_lun_queue_depth > rc) {
  5684. lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
  5685. "3362 LUN queue depth changed from %d to %d\n",
  5686. phba->pport->cfg_lun_queue_depth, rc);
  5687. phba->pport->cfg_lun_queue_depth = rc;
  5688. }
  5689. /*
  5690. * Discover the port's supported feature set and match it against the
  5691. * hosts requests.
  5692. */
  5693. lpfc_request_features(phba, mboxq);
  5694. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  5695. if (unlikely(rc)) {
  5696. rc = -EIO;
  5697. goto out_free_mbox;
  5698. }
  5699. /*
  5700. * The port must support FCP initiator mode as this is the
  5701. * only mode running in the host.
  5702. */
  5703. if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
  5704. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
  5705. "0378 No support for fcpi mode.\n");
  5706. ftr_rsp++;
  5707. }
  5708. if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
  5709. phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
  5710. else
  5711. phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
  5712. /*
  5713. * If the port cannot support the host's requested features
  5714. * then turn off the global config parameters to disable the
  5715. * feature in the driver. This is not a fatal error.
  5716. */
  5717. phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
  5718. if (phba->cfg_enable_bg) {
  5719. if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
  5720. phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
  5721. else
  5722. ftr_rsp++;
  5723. }
  5724. if (phba->max_vpi && phba->cfg_enable_npiv &&
  5725. !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
  5726. ftr_rsp++;
  5727. if (ftr_rsp) {
  5728. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
  5729. "0379 Feature Mismatch Data: x%08x %08x "
  5730. "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
  5731. mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
  5732. phba->cfg_enable_npiv, phba->max_vpi);
  5733. if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
  5734. phba->cfg_enable_bg = 0;
  5735. if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
  5736. phba->cfg_enable_npiv = 0;
  5737. }
  5738. /* These SLI3 features are assumed in SLI4 */
  5739. spin_lock_irq(&phba->hbalock);
  5740. phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
  5741. spin_unlock_irq(&phba->hbalock);
  5742. /*
  5743. * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
  5744. * calls depends on these resources to complete port setup.
  5745. */
  5746. rc = lpfc_sli4_alloc_resource_identifiers(phba);
  5747. if (rc) {
  5748. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5749. "2920 Failed to alloc Resource IDs "
  5750. "rc = x%x\n", rc);
  5751. goto out_free_mbox;
  5752. }
  5753. /* Read the port's service parameters. */
  5754. rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
  5755. if (rc) {
  5756. phba->link_state = LPFC_HBA_ERROR;
  5757. rc = -ENOMEM;
  5758. goto out_free_mbox;
  5759. }
  5760. mboxq->vport = vport;
  5761. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  5762. mp = (struct lpfc_dmabuf *) mboxq->context1;
  5763. if (rc == MBX_SUCCESS) {
  5764. memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
  5765. rc = 0;
  5766. }
  5767. /*
  5768. * This memory was allocated by the lpfc_read_sparam routine. Release
  5769. * it to the mbuf pool.
  5770. */
  5771. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  5772. kfree(mp);
  5773. mboxq->context1 = NULL;
  5774. if (unlikely(rc)) {
  5775. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5776. "0382 READ_SPARAM command failed "
  5777. "status %d, mbxStatus x%x\n",
  5778. rc, bf_get(lpfc_mqe_status, mqe));
  5779. phba->link_state = LPFC_HBA_ERROR;
  5780. rc = -EIO;
  5781. goto out_free_mbox;
  5782. }
  5783. lpfc_update_vport_wwn(vport);
  5784. /* Update the fc_host data structures with new wwn. */
  5785. fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
  5786. fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
  5787. /* update host els and scsi xri-sgl sizes and mappings */
  5788. rc = lpfc_sli4_xri_sgl_update(phba);
  5789. if (unlikely(rc)) {
  5790. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5791. "1400 Failed to update xri-sgl size and "
  5792. "mapping: %d\n", rc);
  5793. goto out_free_mbox;
  5794. }
  5795. /* register the els sgl pool to the port */
  5796. rc = lpfc_sli4_repost_els_sgl_list(phba);
  5797. if (unlikely(rc)) {
  5798. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5799. "0582 Error %d during els sgl post "
  5800. "operation\n", rc);
  5801. rc = -ENODEV;
  5802. goto out_free_mbox;
  5803. }
  5804. /* register the allocated scsi sgl pool to the port */
  5805. rc = lpfc_sli4_repost_scsi_sgl_list(phba);
  5806. if (unlikely(rc)) {
  5807. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5808. "0383 Error %d during scsi sgl post "
  5809. "operation\n", rc);
  5810. /* Some Scsi buffers were moved to the abort scsi list */
  5811. /* A pci function reset will repost them */
  5812. rc = -ENODEV;
  5813. goto out_free_mbox;
  5814. }
  5815. /* Post the rpi header region to the device. */
  5816. rc = lpfc_sli4_post_all_rpi_hdrs(phba);
  5817. if (unlikely(rc)) {
  5818. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5819. "0393 Error %d during rpi post operation\n",
  5820. rc);
  5821. rc = -ENODEV;
  5822. goto out_free_mbox;
  5823. }
  5824. lpfc_sli4_node_prep(phba);
  5825. /* Create all the SLI4 queues */
  5826. rc = lpfc_sli4_queue_create(phba);
  5827. if (rc) {
  5828. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  5829. "3089 Failed to allocate queues\n");
  5830. rc = -ENODEV;
  5831. goto out_stop_timers;
  5832. }
  5833. /* Set up all the queues to the device */
  5834. rc = lpfc_sli4_queue_setup(phba);
  5835. if (unlikely(rc)) {
  5836. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5837. "0381 Error %d during queue setup.\n ", rc);
  5838. goto out_destroy_queue;
  5839. }
  5840. /* Arm the CQs and then EQs on device */
  5841. lpfc_sli4_arm_cqeq_intr(phba);
  5842. /* Indicate device interrupt mode */
  5843. phba->sli4_hba.intr_enable = 1;
  5844. /* Allow asynchronous mailbox command to go through */
  5845. spin_lock_irq(&phba->hbalock);
  5846. phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
  5847. spin_unlock_irq(&phba->hbalock);
  5848. /* Post receive buffers to the device */
  5849. lpfc_sli4_rb_setup(phba);
  5850. /* Reset HBA FCF states after HBA reset */
  5851. phba->fcf.fcf_flag = 0;
  5852. phba->fcf.current_rec.flag = 0;
  5853. /* Start the ELS watchdog timer */
  5854. mod_timer(&vport->els_tmofunc,
  5855. jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
  5856. /* Start heart beat timer */
  5857. mod_timer(&phba->hb_tmofunc,
  5858. jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
  5859. phba->hb_outstanding = 0;
  5860. phba->last_completion_time = jiffies;
  5861. /* Start error attention (ERATT) polling timer */
  5862. mod_timer(&phba->eratt_poll,
  5863. jiffies + msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
  5864. /* Enable PCIe device Advanced Error Reporting (AER) if configured */
  5865. if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
  5866. rc = pci_enable_pcie_error_reporting(phba->pcidev);
  5867. if (!rc) {
  5868. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  5869. "2829 This device supports "
  5870. "Advanced Error Reporting (AER)\n");
  5871. spin_lock_irq(&phba->hbalock);
  5872. phba->hba_flag |= HBA_AER_ENABLED;
  5873. spin_unlock_irq(&phba->hbalock);
  5874. } else {
  5875. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  5876. "2830 This device does not support "
  5877. "Advanced Error Reporting (AER)\n");
  5878. phba->cfg_aer_support = 0;
  5879. }
  5880. rc = 0;
  5881. }
  5882. if (!(phba->hba_flag & HBA_FCOE_MODE)) {
  5883. /*
  5884. * The FC Port needs to register FCFI (index 0)
  5885. */
  5886. lpfc_reg_fcfi(phba, mboxq);
  5887. mboxq->vport = phba->pport;
  5888. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  5889. if (rc != MBX_SUCCESS)
  5890. goto out_unset_queue;
  5891. rc = 0;
  5892. phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
  5893. &mboxq->u.mqe.un.reg_fcfi);
  5894. /* Check if the port is configured to be disabled */
  5895. lpfc_sli_read_link_ste(phba);
  5896. }
  5897. /*
  5898. * The port is ready, set the host's link state to LINK_DOWN
  5899. * in preparation for link interrupts.
  5900. */
  5901. spin_lock_irq(&phba->hbalock);
  5902. phba->link_state = LPFC_LINK_DOWN;
  5903. spin_unlock_irq(&phba->hbalock);
  5904. if (!(phba->hba_flag & HBA_FCOE_MODE) &&
  5905. (phba->hba_flag & LINK_DISABLED)) {
  5906. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
  5907. "3103 Adapter Link is disabled.\n");
  5908. lpfc_down_link(phba, mboxq);
  5909. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  5910. if (rc != MBX_SUCCESS) {
  5911. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
  5912. "3104 Adapter failed to issue "
  5913. "DOWN_LINK mbox cmd, rc:x%x\n", rc);
  5914. goto out_unset_queue;
  5915. }
  5916. } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
  5917. /* don't perform init_link on SLI4 FC port loopback test */
  5918. if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
  5919. rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
  5920. if (rc)
  5921. goto out_unset_queue;
  5922. }
  5923. }
  5924. mempool_free(mboxq, phba->mbox_mem_pool);
  5925. return rc;
  5926. out_unset_queue:
  5927. /* Unset all the queues set up in this routine when error out */
  5928. lpfc_sli4_queue_unset(phba);
  5929. out_destroy_queue:
  5930. lpfc_sli4_queue_destroy(phba);
  5931. out_stop_timers:
  5932. lpfc_stop_hba_timers(phba);
  5933. out_free_mbox:
  5934. mempool_free(mboxq, phba->mbox_mem_pool);
  5935. return rc;
  5936. }
  5937. /**
  5938. * lpfc_mbox_timeout - Timeout call back function for mbox timer
  5939. * @ptr: context object - pointer to hba structure.
  5940. *
  5941. * This is the callback function for mailbox timer. The mailbox
  5942. * timer is armed when a new mailbox command is issued and the timer
  5943. * is deleted when the mailbox complete. The function is called by
  5944. * the kernel timer code when a mailbox does not complete within
  5945. * expected time. This function wakes up the worker thread to
  5946. * process the mailbox timeout and returns. All the processing is
  5947. * done by the worker thread function lpfc_mbox_timeout_handler.
  5948. **/
  5949. void
  5950. lpfc_mbox_timeout(unsigned long ptr)
  5951. {
  5952. struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
  5953. unsigned long iflag;
  5954. uint32_t tmo_posted;
  5955. spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
  5956. tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
  5957. if (!tmo_posted)
  5958. phba->pport->work_port_events |= WORKER_MBOX_TMO;
  5959. spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
  5960. if (!tmo_posted)
  5961. lpfc_worker_wake_up(phba);
  5962. return;
  5963. }
  5964. /**
  5965. * lpfc_sli4_mbox_completions_pending - check to see if any mailbox completions
  5966. * are pending
  5967. * @phba: Pointer to HBA context object.
  5968. *
  5969. * This function checks if any mailbox completions are present on the mailbox
  5970. * completion queue.
  5971. **/
  5972. bool
  5973. lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba)
  5974. {
  5975. uint32_t idx;
  5976. struct lpfc_queue *mcq;
  5977. struct lpfc_mcqe *mcqe;
  5978. bool pending_completions = false;
  5979. if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
  5980. return false;
  5981. /* Check for completions on mailbox completion queue */
  5982. mcq = phba->sli4_hba.mbx_cq;
  5983. idx = mcq->hba_index;
  5984. while (bf_get_le32(lpfc_cqe_valid, mcq->qe[idx].cqe)) {
  5985. mcqe = (struct lpfc_mcqe *)mcq->qe[idx].cqe;
  5986. if (bf_get_le32(lpfc_trailer_completed, mcqe) &&
  5987. (!bf_get_le32(lpfc_trailer_async, mcqe))) {
  5988. pending_completions = true;
  5989. break;
  5990. }
  5991. idx = (idx + 1) % mcq->entry_count;
  5992. if (mcq->hba_index == idx)
  5993. break;
  5994. }
  5995. return pending_completions;
  5996. }
  5997. /**
  5998. * lpfc_sli4_process_missed_mbox_completions - process mbox completions
  5999. * that were missed.
  6000. * @phba: Pointer to HBA context object.
  6001. *
  6002. * For sli4, it is possible to miss an interrupt. As such mbox completions
  6003. * maybe missed causing erroneous mailbox timeouts to occur. This function
  6004. * checks to see if mbox completions are on the mailbox completion queue
  6005. * and will process all the completions associated with the eq for the
  6006. * mailbox completion queue.
  6007. **/
  6008. bool
  6009. lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba)
  6010. {
  6011. uint32_t eqidx;
  6012. struct lpfc_queue *fpeq = NULL;
  6013. struct lpfc_eqe *eqe;
  6014. bool mbox_pending;
  6015. if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
  6016. return false;
  6017. /* Find the eq associated with the mcq */
  6018. if (phba->sli4_hba.hba_eq)
  6019. for (eqidx = 0; eqidx < phba->cfg_fcp_io_channel; eqidx++)
  6020. if (phba->sli4_hba.hba_eq[eqidx]->queue_id ==
  6021. phba->sli4_hba.mbx_cq->assoc_qid) {
  6022. fpeq = phba->sli4_hba.hba_eq[eqidx];
  6023. break;
  6024. }
  6025. if (!fpeq)
  6026. return false;
  6027. /* Turn off interrupts from this EQ */
  6028. lpfc_sli4_eq_clr_intr(fpeq);
  6029. /* Check to see if a mbox completion is pending */
  6030. mbox_pending = lpfc_sli4_mbox_completions_pending(phba);
  6031. /*
  6032. * If a mbox completion is pending, process all the events on EQ
  6033. * associated with the mbox completion queue (this could include
  6034. * mailbox commands, async events, els commands, receive queue data
  6035. * and fcp commands)
  6036. */
  6037. if (mbox_pending)
  6038. while ((eqe = lpfc_sli4_eq_get(fpeq))) {
  6039. lpfc_sli4_hba_handle_eqe(phba, eqe, eqidx);
  6040. fpeq->EQ_processed++;
  6041. }
  6042. /* Always clear and re-arm the EQ */
  6043. lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
  6044. return mbox_pending;
  6045. }
  6046. /**
  6047. * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
  6048. * @phba: Pointer to HBA context object.
  6049. *
  6050. * This function is called from worker thread when a mailbox command times out.
  6051. * The caller is not required to hold any locks. This function will reset the
  6052. * HBA and recover all the pending commands.
  6053. **/
  6054. void
  6055. lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
  6056. {
  6057. LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
  6058. MAILBOX_t *mb = &pmbox->u.mb;
  6059. struct lpfc_sli *psli = &phba->sli;
  6060. struct lpfc_sli_ring *pring;
  6061. /* If the mailbox completed, process the completion and return */
  6062. if (lpfc_sli4_process_missed_mbox_completions(phba))
  6063. return;
  6064. /* Check the pmbox pointer first. There is a race condition
  6065. * between the mbox timeout handler getting executed in the
  6066. * worklist and the mailbox actually completing. When this
  6067. * race condition occurs, the mbox_active will be NULL.
  6068. */
  6069. spin_lock_irq(&phba->hbalock);
  6070. if (pmbox == NULL) {
  6071. lpfc_printf_log(phba, KERN_WARNING,
  6072. LOG_MBOX | LOG_SLI,
  6073. "0353 Active Mailbox cleared - mailbox timeout "
  6074. "exiting\n");
  6075. spin_unlock_irq(&phba->hbalock);
  6076. return;
  6077. }
  6078. /* Mbox cmd <mbxCommand> timeout */
  6079. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6080. "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
  6081. mb->mbxCommand,
  6082. phba->pport->port_state,
  6083. phba->sli.sli_flag,
  6084. phba->sli.mbox_active);
  6085. spin_unlock_irq(&phba->hbalock);
  6086. /* Setting state unknown so lpfc_sli_abort_iocb_ring
  6087. * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
  6088. * it to fail all outstanding SCSI IO.
  6089. */
  6090. spin_lock_irq(&phba->pport->work_port_lock);
  6091. phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
  6092. spin_unlock_irq(&phba->pport->work_port_lock);
  6093. spin_lock_irq(&phba->hbalock);
  6094. phba->link_state = LPFC_LINK_UNKNOWN;
  6095. psli->sli_flag &= ~LPFC_SLI_ACTIVE;
  6096. spin_unlock_irq(&phba->hbalock);
  6097. pring = &psli->ring[psli->fcp_ring];
  6098. lpfc_sli_abort_iocb_ring(phba, pring);
  6099. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6100. "0345 Resetting board due to mailbox timeout\n");
  6101. /* Reset the HBA device */
  6102. lpfc_reset_hba(phba);
  6103. }
  6104. /**
  6105. * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
  6106. * @phba: Pointer to HBA context object.
  6107. * @pmbox: Pointer to mailbox object.
  6108. * @flag: Flag indicating how the mailbox need to be processed.
  6109. *
  6110. * This function is called by discovery code and HBA management code
  6111. * to submit a mailbox command to firmware with SLI-3 interface spec. This
  6112. * function gets the hbalock to protect the data structures.
  6113. * The mailbox command can be submitted in polling mode, in which case
  6114. * this function will wait in a polling loop for the completion of the
  6115. * mailbox.
  6116. * If the mailbox is submitted in no_wait mode (not polling) the
  6117. * function will submit the command and returns immediately without waiting
  6118. * for the mailbox completion. The no_wait is supported only when HBA
  6119. * is in SLI2/SLI3 mode - interrupts are enabled.
  6120. * The SLI interface allows only one mailbox pending at a time. If the
  6121. * mailbox is issued in polling mode and there is already a mailbox
  6122. * pending, then the function will return an error. If the mailbox is issued
  6123. * in NO_WAIT mode and there is a mailbox pending already, the function
  6124. * will return MBX_BUSY after queuing the mailbox into mailbox queue.
  6125. * The sli layer owns the mailbox object until the completion of mailbox
  6126. * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
  6127. * return codes the caller owns the mailbox command after the return of
  6128. * the function.
  6129. **/
  6130. static int
  6131. lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
  6132. uint32_t flag)
  6133. {
  6134. MAILBOX_t *mbx;
  6135. struct lpfc_sli *psli = &phba->sli;
  6136. uint32_t status, evtctr;
  6137. uint32_t ha_copy, hc_copy;
  6138. int i;
  6139. unsigned long timeout;
  6140. unsigned long drvr_flag = 0;
  6141. uint32_t word0, ldata;
  6142. void __iomem *to_slim;
  6143. int processing_queue = 0;
  6144. spin_lock_irqsave(&phba->hbalock, drvr_flag);
  6145. if (!pmbox) {
  6146. phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6147. /* processing mbox queue from intr_handler */
  6148. if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
  6149. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6150. return MBX_SUCCESS;
  6151. }
  6152. processing_queue = 1;
  6153. pmbox = lpfc_mbox_get(phba);
  6154. if (!pmbox) {
  6155. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6156. return MBX_SUCCESS;
  6157. }
  6158. }
  6159. if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
  6160. pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
  6161. if(!pmbox->vport) {
  6162. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6163. lpfc_printf_log(phba, KERN_ERR,
  6164. LOG_MBOX | LOG_VPORT,
  6165. "1806 Mbox x%x failed. No vport\n",
  6166. pmbox->u.mb.mbxCommand);
  6167. dump_stack();
  6168. goto out_not_finished;
  6169. }
  6170. }
  6171. /* If the PCI channel is in offline state, do not post mbox. */
  6172. if (unlikely(pci_channel_offline(phba->pcidev))) {
  6173. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6174. goto out_not_finished;
  6175. }
  6176. /* If HBA has a deferred error attention, fail the iocb. */
  6177. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  6178. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6179. goto out_not_finished;
  6180. }
  6181. psli = &phba->sli;
  6182. mbx = &pmbox->u.mb;
  6183. status = MBX_SUCCESS;
  6184. if (phba->link_state == LPFC_HBA_ERROR) {
  6185. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6186. /* Mbox command <mbxCommand> cannot issue */
  6187. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6188. "(%d):0311 Mailbox command x%x cannot "
  6189. "issue Data: x%x x%x\n",
  6190. pmbox->vport ? pmbox->vport->vpi : 0,
  6191. pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
  6192. goto out_not_finished;
  6193. }
  6194. if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
  6195. if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
  6196. !(hc_copy & HC_MBINT_ENA)) {
  6197. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6198. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6199. "(%d):2528 Mailbox command x%x cannot "
  6200. "issue Data: x%x x%x\n",
  6201. pmbox->vport ? pmbox->vport->vpi : 0,
  6202. pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
  6203. goto out_not_finished;
  6204. }
  6205. }
  6206. if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
  6207. /* Polling for a mbox command when another one is already active
  6208. * is not allowed in SLI. Also, the driver must have established
  6209. * SLI2 mode to queue and process multiple mbox commands.
  6210. */
  6211. if (flag & MBX_POLL) {
  6212. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6213. /* Mbox command <mbxCommand> cannot issue */
  6214. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6215. "(%d):2529 Mailbox command x%x "
  6216. "cannot issue Data: x%x x%x\n",
  6217. pmbox->vport ? pmbox->vport->vpi : 0,
  6218. pmbox->u.mb.mbxCommand,
  6219. psli->sli_flag, flag);
  6220. goto out_not_finished;
  6221. }
  6222. if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
  6223. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6224. /* Mbox command <mbxCommand> cannot issue */
  6225. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6226. "(%d):2530 Mailbox command x%x "
  6227. "cannot issue Data: x%x x%x\n",
  6228. pmbox->vport ? pmbox->vport->vpi : 0,
  6229. pmbox->u.mb.mbxCommand,
  6230. psli->sli_flag, flag);
  6231. goto out_not_finished;
  6232. }
  6233. /* Another mailbox command is still being processed, queue this
  6234. * command to be processed later.
  6235. */
  6236. lpfc_mbox_put(phba, pmbox);
  6237. /* Mbox cmd issue - BUSY */
  6238. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6239. "(%d):0308 Mbox cmd issue - BUSY Data: "
  6240. "x%x x%x x%x x%x\n",
  6241. pmbox->vport ? pmbox->vport->vpi : 0xffffff,
  6242. mbx->mbxCommand, phba->pport->port_state,
  6243. psli->sli_flag, flag);
  6244. psli->slistat.mbox_busy++;
  6245. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6246. if (pmbox->vport) {
  6247. lpfc_debugfs_disc_trc(pmbox->vport,
  6248. LPFC_DISC_TRC_MBOX_VPORT,
  6249. "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
  6250. (uint32_t)mbx->mbxCommand,
  6251. mbx->un.varWords[0], mbx->un.varWords[1]);
  6252. }
  6253. else {
  6254. lpfc_debugfs_disc_trc(phba->pport,
  6255. LPFC_DISC_TRC_MBOX,
  6256. "MBOX Bsy: cmd:x%x mb:x%x x%x",
  6257. (uint32_t)mbx->mbxCommand,
  6258. mbx->un.varWords[0], mbx->un.varWords[1]);
  6259. }
  6260. return MBX_BUSY;
  6261. }
  6262. psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
  6263. /* If we are not polling, we MUST be in SLI2 mode */
  6264. if (flag != MBX_POLL) {
  6265. if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
  6266. (mbx->mbxCommand != MBX_KILL_BOARD)) {
  6267. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6268. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6269. /* Mbox command <mbxCommand> cannot issue */
  6270. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6271. "(%d):2531 Mailbox command x%x "
  6272. "cannot issue Data: x%x x%x\n",
  6273. pmbox->vport ? pmbox->vport->vpi : 0,
  6274. pmbox->u.mb.mbxCommand,
  6275. psli->sli_flag, flag);
  6276. goto out_not_finished;
  6277. }
  6278. /* timeout active mbox command */
  6279. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
  6280. 1000);
  6281. mod_timer(&psli->mbox_tmo, jiffies + timeout);
  6282. }
  6283. /* Mailbox cmd <cmd> issue */
  6284. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6285. "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
  6286. "x%x\n",
  6287. pmbox->vport ? pmbox->vport->vpi : 0,
  6288. mbx->mbxCommand, phba->pport->port_state,
  6289. psli->sli_flag, flag);
  6290. if (mbx->mbxCommand != MBX_HEARTBEAT) {
  6291. if (pmbox->vport) {
  6292. lpfc_debugfs_disc_trc(pmbox->vport,
  6293. LPFC_DISC_TRC_MBOX_VPORT,
  6294. "MBOX Send vport: cmd:x%x mb:x%x x%x",
  6295. (uint32_t)mbx->mbxCommand,
  6296. mbx->un.varWords[0], mbx->un.varWords[1]);
  6297. }
  6298. else {
  6299. lpfc_debugfs_disc_trc(phba->pport,
  6300. LPFC_DISC_TRC_MBOX,
  6301. "MBOX Send: cmd:x%x mb:x%x x%x",
  6302. (uint32_t)mbx->mbxCommand,
  6303. mbx->un.varWords[0], mbx->un.varWords[1]);
  6304. }
  6305. }
  6306. psli->slistat.mbox_cmd++;
  6307. evtctr = psli->slistat.mbox_event;
  6308. /* next set own bit for the adapter and copy over command word */
  6309. mbx->mbxOwner = OWN_CHIP;
  6310. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  6311. /* Populate mbox extension offset word. */
  6312. if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
  6313. *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
  6314. = (uint8_t *)phba->mbox_ext
  6315. - (uint8_t *)phba->mbox;
  6316. }
  6317. /* Copy the mailbox extension data */
  6318. if (pmbox->in_ext_byte_len && pmbox->context2) {
  6319. lpfc_sli_pcimem_bcopy(pmbox->context2,
  6320. (uint8_t *)phba->mbox_ext,
  6321. pmbox->in_ext_byte_len);
  6322. }
  6323. /* Copy command data to host SLIM area */
  6324. lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
  6325. } else {
  6326. /* Populate mbox extension offset word. */
  6327. if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
  6328. *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
  6329. = MAILBOX_HBA_EXT_OFFSET;
  6330. /* Copy the mailbox extension data */
  6331. if (pmbox->in_ext_byte_len && pmbox->context2) {
  6332. lpfc_memcpy_to_slim(phba->MBslimaddr +
  6333. MAILBOX_HBA_EXT_OFFSET,
  6334. pmbox->context2, pmbox->in_ext_byte_len);
  6335. }
  6336. if (mbx->mbxCommand == MBX_CONFIG_PORT) {
  6337. /* copy command data into host mbox for cmpl */
  6338. lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
  6339. }
  6340. /* First copy mbox command data to HBA SLIM, skip past first
  6341. word */
  6342. to_slim = phba->MBslimaddr + sizeof (uint32_t);
  6343. lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
  6344. MAILBOX_CMD_SIZE - sizeof (uint32_t));
  6345. /* Next copy over first word, with mbxOwner set */
  6346. ldata = *((uint32_t *)mbx);
  6347. to_slim = phba->MBslimaddr;
  6348. writel(ldata, to_slim);
  6349. readl(to_slim); /* flush */
  6350. if (mbx->mbxCommand == MBX_CONFIG_PORT) {
  6351. /* switch over to host mailbox */
  6352. psli->sli_flag |= LPFC_SLI_ACTIVE;
  6353. }
  6354. }
  6355. wmb();
  6356. switch (flag) {
  6357. case MBX_NOWAIT:
  6358. /* Set up reference to mailbox command */
  6359. psli->mbox_active = pmbox;
  6360. /* Interrupt board to do it */
  6361. writel(CA_MBATT, phba->CAregaddr);
  6362. readl(phba->CAregaddr); /* flush */
  6363. /* Don't wait for it to finish, just return */
  6364. break;
  6365. case MBX_POLL:
  6366. /* Set up null reference to mailbox command */
  6367. psli->mbox_active = NULL;
  6368. /* Interrupt board to do it */
  6369. writel(CA_MBATT, phba->CAregaddr);
  6370. readl(phba->CAregaddr); /* flush */
  6371. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  6372. /* First read mbox status word */
  6373. word0 = *((uint32_t *)phba->mbox);
  6374. word0 = le32_to_cpu(word0);
  6375. } else {
  6376. /* First read mbox status word */
  6377. if (lpfc_readl(phba->MBslimaddr, &word0)) {
  6378. spin_unlock_irqrestore(&phba->hbalock,
  6379. drvr_flag);
  6380. goto out_not_finished;
  6381. }
  6382. }
  6383. /* Read the HBA Host Attention Register */
  6384. if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
  6385. spin_unlock_irqrestore(&phba->hbalock,
  6386. drvr_flag);
  6387. goto out_not_finished;
  6388. }
  6389. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
  6390. 1000) + jiffies;
  6391. i = 0;
  6392. /* Wait for command to complete */
  6393. while (((word0 & OWN_CHIP) == OWN_CHIP) ||
  6394. (!(ha_copy & HA_MBATT) &&
  6395. (phba->link_state > LPFC_WARM_START))) {
  6396. if (time_after(jiffies, timeout)) {
  6397. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6398. spin_unlock_irqrestore(&phba->hbalock,
  6399. drvr_flag);
  6400. goto out_not_finished;
  6401. }
  6402. /* Check if we took a mbox interrupt while we were
  6403. polling */
  6404. if (((word0 & OWN_CHIP) != OWN_CHIP)
  6405. && (evtctr != psli->slistat.mbox_event))
  6406. break;
  6407. if (i++ > 10) {
  6408. spin_unlock_irqrestore(&phba->hbalock,
  6409. drvr_flag);
  6410. msleep(1);
  6411. spin_lock_irqsave(&phba->hbalock, drvr_flag);
  6412. }
  6413. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  6414. /* First copy command data */
  6415. word0 = *((uint32_t *)phba->mbox);
  6416. word0 = le32_to_cpu(word0);
  6417. if (mbx->mbxCommand == MBX_CONFIG_PORT) {
  6418. MAILBOX_t *slimmb;
  6419. uint32_t slimword0;
  6420. /* Check real SLIM for any errors */
  6421. slimword0 = readl(phba->MBslimaddr);
  6422. slimmb = (MAILBOX_t *) & slimword0;
  6423. if (((slimword0 & OWN_CHIP) != OWN_CHIP)
  6424. && slimmb->mbxStatus) {
  6425. psli->sli_flag &=
  6426. ~LPFC_SLI_ACTIVE;
  6427. word0 = slimword0;
  6428. }
  6429. }
  6430. } else {
  6431. /* First copy command data */
  6432. word0 = readl(phba->MBslimaddr);
  6433. }
  6434. /* Read the HBA Host Attention Register */
  6435. if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
  6436. spin_unlock_irqrestore(&phba->hbalock,
  6437. drvr_flag);
  6438. goto out_not_finished;
  6439. }
  6440. }
  6441. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  6442. /* copy results back to user */
  6443. lpfc_sli_pcimem_bcopy(phba->mbox, mbx, MAILBOX_CMD_SIZE);
  6444. /* Copy the mailbox extension data */
  6445. if (pmbox->out_ext_byte_len && pmbox->context2) {
  6446. lpfc_sli_pcimem_bcopy(phba->mbox_ext,
  6447. pmbox->context2,
  6448. pmbox->out_ext_byte_len);
  6449. }
  6450. } else {
  6451. /* First copy command data */
  6452. lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
  6453. MAILBOX_CMD_SIZE);
  6454. /* Copy the mailbox extension data */
  6455. if (pmbox->out_ext_byte_len && pmbox->context2) {
  6456. lpfc_memcpy_from_slim(pmbox->context2,
  6457. phba->MBslimaddr +
  6458. MAILBOX_HBA_EXT_OFFSET,
  6459. pmbox->out_ext_byte_len);
  6460. }
  6461. }
  6462. writel(HA_MBATT, phba->HAregaddr);
  6463. readl(phba->HAregaddr); /* flush */
  6464. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6465. status = mbx->mbxStatus;
  6466. }
  6467. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6468. return status;
  6469. out_not_finished:
  6470. if (processing_queue) {
  6471. pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
  6472. lpfc_mbox_cmpl_put(phba, pmbox);
  6473. }
  6474. return MBX_NOT_FINISHED;
  6475. }
  6476. /**
  6477. * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
  6478. * @phba: Pointer to HBA context object.
  6479. *
  6480. * The function blocks the posting of SLI4 asynchronous mailbox commands from
  6481. * the driver internal pending mailbox queue. It will then try to wait out the
  6482. * possible outstanding mailbox command before return.
  6483. *
  6484. * Returns:
  6485. * 0 - the outstanding mailbox command completed; otherwise, the wait for
  6486. * the outstanding mailbox command timed out.
  6487. **/
  6488. static int
  6489. lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
  6490. {
  6491. struct lpfc_sli *psli = &phba->sli;
  6492. int rc = 0;
  6493. unsigned long timeout = 0;
  6494. /* Mark the asynchronous mailbox command posting as blocked */
  6495. spin_lock_irq(&phba->hbalock);
  6496. psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
  6497. /* Determine how long we might wait for the active mailbox
  6498. * command to be gracefully completed by firmware.
  6499. */
  6500. if (phba->sli.mbox_active)
  6501. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
  6502. phba->sli.mbox_active) *
  6503. 1000) + jiffies;
  6504. spin_unlock_irq(&phba->hbalock);
  6505. /* Make sure the mailbox is really active */
  6506. if (timeout)
  6507. lpfc_sli4_process_missed_mbox_completions(phba);
  6508. /* Wait for the outstnading mailbox command to complete */
  6509. while (phba->sli.mbox_active) {
  6510. /* Check active mailbox complete status every 2ms */
  6511. msleep(2);
  6512. if (time_after(jiffies, timeout)) {
  6513. /* Timeout, marked the outstanding cmd not complete */
  6514. rc = 1;
  6515. break;
  6516. }
  6517. }
  6518. /* Can not cleanly block async mailbox command, fails it */
  6519. if (rc) {
  6520. spin_lock_irq(&phba->hbalock);
  6521. psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
  6522. spin_unlock_irq(&phba->hbalock);
  6523. }
  6524. return rc;
  6525. }
  6526. /**
  6527. * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
  6528. * @phba: Pointer to HBA context object.
  6529. *
  6530. * The function unblocks and resume posting of SLI4 asynchronous mailbox
  6531. * commands from the driver internal pending mailbox queue. It makes sure
  6532. * that there is no outstanding mailbox command before resuming posting
  6533. * asynchronous mailbox commands. If, for any reason, there is outstanding
  6534. * mailbox command, it will try to wait it out before resuming asynchronous
  6535. * mailbox command posting.
  6536. **/
  6537. static void
  6538. lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
  6539. {
  6540. struct lpfc_sli *psli = &phba->sli;
  6541. spin_lock_irq(&phba->hbalock);
  6542. if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
  6543. /* Asynchronous mailbox posting is not blocked, do nothing */
  6544. spin_unlock_irq(&phba->hbalock);
  6545. return;
  6546. }
  6547. /* Outstanding synchronous mailbox command is guaranteed to be done,
  6548. * successful or timeout, after timing-out the outstanding mailbox
  6549. * command shall always be removed, so just unblock posting async
  6550. * mailbox command and resume
  6551. */
  6552. psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
  6553. spin_unlock_irq(&phba->hbalock);
  6554. /* wake up worker thread to post asynchronlous mailbox command */
  6555. lpfc_worker_wake_up(phba);
  6556. }
  6557. /**
  6558. * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
  6559. * @phba: Pointer to HBA context object.
  6560. * @mboxq: Pointer to mailbox object.
  6561. *
  6562. * The function waits for the bootstrap mailbox register ready bit from
  6563. * port for twice the regular mailbox command timeout value.
  6564. *
  6565. * 0 - no timeout on waiting for bootstrap mailbox register ready.
  6566. * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
  6567. **/
  6568. static int
  6569. lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
  6570. {
  6571. uint32_t db_ready;
  6572. unsigned long timeout;
  6573. struct lpfc_register bmbx_reg;
  6574. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
  6575. * 1000) + jiffies;
  6576. do {
  6577. bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
  6578. db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
  6579. if (!db_ready)
  6580. msleep(2);
  6581. if (time_after(jiffies, timeout))
  6582. return MBXERR_ERROR;
  6583. } while (!db_ready);
  6584. return 0;
  6585. }
  6586. /**
  6587. * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
  6588. * @phba: Pointer to HBA context object.
  6589. * @mboxq: Pointer to mailbox object.
  6590. *
  6591. * The function posts a mailbox to the port. The mailbox is expected
  6592. * to be comletely filled in and ready for the port to operate on it.
  6593. * This routine executes a synchronous completion operation on the
  6594. * mailbox by polling for its completion.
  6595. *
  6596. * The caller must not be holding any locks when calling this routine.
  6597. *
  6598. * Returns:
  6599. * MBX_SUCCESS - mailbox posted successfully
  6600. * Any of the MBX error values.
  6601. **/
  6602. static int
  6603. lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
  6604. {
  6605. int rc = MBX_SUCCESS;
  6606. unsigned long iflag;
  6607. uint32_t mcqe_status;
  6608. uint32_t mbx_cmnd;
  6609. struct lpfc_sli *psli = &phba->sli;
  6610. struct lpfc_mqe *mb = &mboxq->u.mqe;
  6611. struct lpfc_bmbx_create *mbox_rgn;
  6612. struct dma_address *dma_address;
  6613. /*
  6614. * Only one mailbox can be active to the bootstrap mailbox region
  6615. * at a time and there is no queueing provided.
  6616. */
  6617. spin_lock_irqsave(&phba->hbalock, iflag);
  6618. if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
  6619. spin_unlock_irqrestore(&phba->hbalock, iflag);
  6620. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6621. "(%d):2532 Mailbox command x%x (x%x/x%x) "
  6622. "cannot issue Data: x%x x%x\n",
  6623. mboxq->vport ? mboxq->vport->vpi : 0,
  6624. mboxq->u.mb.mbxCommand,
  6625. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6626. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6627. psli->sli_flag, MBX_POLL);
  6628. return MBXERR_ERROR;
  6629. }
  6630. /* The server grabs the token and owns it until release */
  6631. psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
  6632. phba->sli.mbox_active = mboxq;
  6633. spin_unlock_irqrestore(&phba->hbalock, iflag);
  6634. /* wait for bootstrap mbox register for readyness */
  6635. rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
  6636. if (rc)
  6637. goto exit;
  6638. /*
  6639. * Initialize the bootstrap memory region to avoid stale data areas
  6640. * in the mailbox post. Then copy the caller's mailbox contents to
  6641. * the bmbx mailbox region.
  6642. */
  6643. mbx_cmnd = bf_get(lpfc_mqe_command, mb);
  6644. memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
  6645. lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
  6646. sizeof(struct lpfc_mqe));
  6647. /* Post the high mailbox dma address to the port and wait for ready. */
  6648. dma_address = &phba->sli4_hba.bmbx.dma_address;
  6649. writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
  6650. /* wait for bootstrap mbox register for hi-address write done */
  6651. rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
  6652. if (rc)
  6653. goto exit;
  6654. /* Post the low mailbox dma address to the port. */
  6655. writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
  6656. /* wait for bootstrap mbox register for low address write done */
  6657. rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
  6658. if (rc)
  6659. goto exit;
  6660. /*
  6661. * Read the CQ to ensure the mailbox has completed.
  6662. * If so, update the mailbox status so that the upper layers
  6663. * can complete the request normally.
  6664. */
  6665. lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
  6666. sizeof(struct lpfc_mqe));
  6667. mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
  6668. lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
  6669. sizeof(struct lpfc_mcqe));
  6670. mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
  6671. /*
  6672. * When the CQE status indicates a failure and the mailbox status
  6673. * indicates success then copy the CQE status into the mailbox status
  6674. * (and prefix it with x4000).
  6675. */
  6676. if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
  6677. if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
  6678. bf_set(lpfc_mqe_status, mb,
  6679. (LPFC_MBX_ERROR_RANGE | mcqe_status));
  6680. rc = MBXERR_ERROR;
  6681. } else
  6682. lpfc_sli4_swap_str(phba, mboxq);
  6683. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6684. "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
  6685. "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
  6686. " x%x x%x CQ: x%x x%x x%x x%x\n",
  6687. mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
  6688. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6689. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6690. bf_get(lpfc_mqe_status, mb),
  6691. mb->un.mb_words[0], mb->un.mb_words[1],
  6692. mb->un.mb_words[2], mb->un.mb_words[3],
  6693. mb->un.mb_words[4], mb->un.mb_words[5],
  6694. mb->un.mb_words[6], mb->un.mb_words[7],
  6695. mb->un.mb_words[8], mb->un.mb_words[9],
  6696. mb->un.mb_words[10], mb->un.mb_words[11],
  6697. mb->un.mb_words[12], mboxq->mcqe.word0,
  6698. mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
  6699. mboxq->mcqe.trailer);
  6700. exit:
  6701. /* We are holding the token, no needed for lock when release */
  6702. spin_lock_irqsave(&phba->hbalock, iflag);
  6703. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6704. phba->sli.mbox_active = NULL;
  6705. spin_unlock_irqrestore(&phba->hbalock, iflag);
  6706. return rc;
  6707. }
  6708. /**
  6709. * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
  6710. * @phba: Pointer to HBA context object.
  6711. * @pmbox: Pointer to mailbox object.
  6712. * @flag: Flag indicating how the mailbox need to be processed.
  6713. *
  6714. * This function is called by discovery code and HBA management code to submit
  6715. * a mailbox command to firmware with SLI-4 interface spec.
  6716. *
  6717. * Return codes the caller owns the mailbox command after the return of the
  6718. * function.
  6719. **/
  6720. static int
  6721. lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
  6722. uint32_t flag)
  6723. {
  6724. struct lpfc_sli *psli = &phba->sli;
  6725. unsigned long iflags;
  6726. int rc;
  6727. /* dump from issue mailbox command if setup */
  6728. lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
  6729. rc = lpfc_mbox_dev_check(phba);
  6730. if (unlikely(rc)) {
  6731. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6732. "(%d):2544 Mailbox command x%x (x%x/x%x) "
  6733. "cannot issue Data: x%x x%x\n",
  6734. mboxq->vport ? mboxq->vport->vpi : 0,
  6735. mboxq->u.mb.mbxCommand,
  6736. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6737. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6738. psli->sli_flag, flag);
  6739. goto out_not_finished;
  6740. }
  6741. /* Detect polling mode and jump to a handler */
  6742. if (!phba->sli4_hba.intr_enable) {
  6743. if (flag == MBX_POLL)
  6744. rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
  6745. else
  6746. rc = -EIO;
  6747. if (rc != MBX_SUCCESS)
  6748. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
  6749. "(%d):2541 Mailbox command x%x "
  6750. "(x%x/x%x) failure: "
  6751. "mqe_sta: x%x mcqe_sta: x%x/x%x "
  6752. "Data: x%x x%x\n,",
  6753. mboxq->vport ? mboxq->vport->vpi : 0,
  6754. mboxq->u.mb.mbxCommand,
  6755. lpfc_sli_config_mbox_subsys_get(phba,
  6756. mboxq),
  6757. lpfc_sli_config_mbox_opcode_get(phba,
  6758. mboxq),
  6759. bf_get(lpfc_mqe_status, &mboxq->u.mqe),
  6760. bf_get(lpfc_mcqe_status, &mboxq->mcqe),
  6761. bf_get(lpfc_mcqe_ext_status,
  6762. &mboxq->mcqe),
  6763. psli->sli_flag, flag);
  6764. return rc;
  6765. } else if (flag == MBX_POLL) {
  6766. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
  6767. "(%d):2542 Try to issue mailbox command "
  6768. "x%x (x%x/x%x) synchronously ahead of async"
  6769. "mailbox command queue: x%x x%x\n",
  6770. mboxq->vport ? mboxq->vport->vpi : 0,
  6771. mboxq->u.mb.mbxCommand,
  6772. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6773. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6774. psli->sli_flag, flag);
  6775. /* Try to block the asynchronous mailbox posting */
  6776. rc = lpfc_sli4_async_mbox_block(phba);
  6777. if (!rc) {
  6778. /* Successfully blocked, now issue sync mbox cmd */
  6779. rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
  6780. if (rc != MBX_SUCCESS)
  6781. lpfc_printf_log(phba, KERN_WARNING,
  6782. LOG_MBOX | LOG_SLI,
  6783. "(%d):2597 Sync Mailbox command "
  6784. "x%x (x%x/x%x) failure: "
  6785. "mqe_sta: x%x mcqe_sta: x%x/x%x "
  6786. "Data: x%x x%x\n,",
  6787. mboxq->vport ? mboxq->vport->vpi : 0,
  6788. mboxq->u.mb.mbxCommand,
  6789. lpfc_sli_config_mbox_subsys_get(phba,
  6790. mboxq),
  6791. lpfc_sli_config_mbox_opcode_get(phba,
  6792. mboxq),
  6793. bf_get(lpfc_mqe_status, &mboxq->u.mqe),
  6794. bf_get(lpfc_mcqe_status, &mboxq->mcqe),
  6795. bf_get(lpfc_mcqe_ext_status,
  6796. &mboxq->mcqe),
  6797. psli->sli_flag, flag);
  6798. /* Unblock the async mailbox posting afterward */
  6799. lpfc_sli4_async_mbox_unblock(phba);
  6800. }
  6801. return rc;
  6802. }
  6803. /* Now, interrupt mode asynchrous mailbox command */
  6804. rc = lpfc_mbox_cmd_check(phba, mboxq);
  6805. if (rc) {
  6806. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6807. "(%d):2543 Mailbox command x%x (x%x/x%x) "
  6808. "cannot issue Data: x%x x%x\n",
  6809. mboxq->vport ? mboxq->vport->vpi : 0,
  6810. mboxq->u.mb.mbxCommand,
  6811. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6812. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6813. psli->sli_flag, flag);
  6814. goto out_not_finished;
  6815. }
  6816. /* Put the mailbox command to the driver internal FIFO */
  6817. psli->slistat.mbox_busy++;
  6818. spin_lock_irqsave(&phba->hbalock, iflags);
  6819. lpfc_mbox_put(phba, mboxq);
  6820. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6821. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6822. "(%d):0354 Mbox cmd issue - Enqueue Data: "
  6823. "x%x (x%x/x%x) x%x x%x x%x\n",
  6824. mboxq->vport ? mboxq->vport->vpi : 0xffffff,
  6825. bf_get(lpfc_mqe_command, &mboxq->u.mqe),
  6826. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6827. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6828. phba->pport->port_state,
  6829. psli->sli_flag, MBX_NOWAIT);
  6830. /* Wake up worker thread to transport mailbox command from head */
  6831. lpfc_worker_wake_up(phba);
  6832. return MBX_BUSY;
  6833. out_not_finished:
  6834. return MBX_NOT_FINISHED;
  6835. }
  6836. /**
  6837. * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
  6838. * @phba: Pointer to HBA context object.
  6839. *
  6840. * This function is called by worker thread to send a mailbox command to
  6841. * SLI4 HBA firmware.
  6842. *
  6843. **/
  6844. int
  6845. lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
  6846. {
  6847. struct lpfc_sli *psli = &phba->sli;
  6848. LPFC_MBOXQ_t *mboxq;
  6849. int rc = MBX_SUCCESS;
  6850. unsigned long iflags;
  6851. struct lpfc_mqe *mqe;
  6852. uint32_t mbx_cmnd;
  6853. /* Check interrupt mode before post async mailbox command */
  6854. if (unlikely(!phba->sli4_hba.intr_enable))
  6855. return MBX_NOT_FINISHED;
  6856. /* Check for mailbox command service token */
  6857. spin_lock_irqsave(&phba->hbalock, iflags);
  6858. if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
  6859. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6860. return MBX_NOT_FINISHED;
  6861. }
  6862. if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
  6863. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6864. return MBX_NOT_FINISHED;
  6865. }
  6866. if (unlikely(phba->sli.mbox_active)) {
  6867. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6868. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6869. "0384 There is pending active mailbox cmd\n");
  6870. return MBX_NOT_FINISHED;
  6871. }
  6872. /* Take the mailbox command service token */
  6873. psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
  6874. /* Get the next mailbox command from head of queue */
  6875. mboxq = lpfc_mbox_get(phba);
  6876. /* If no more mailbox command waiting for post, we're done */
  6877. if (!mboxq) {
  6878. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6879. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6880. return MBX_SUCCESS;
  6881. }
  6882. phba->sli.mbox_active = mboxq;
  6883. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6884. /* Check device readiness for posting mailbox command */
  6885. rc = lpfc_mbox_dev_check(phba);
  6886. if (unlikely(rc))
  6887. /* Driver clean routine will clean up pending mailbox */
  6888. goto out_not_finished;
  6889. /* Prepare the mbox command to be posted */
  6890. mqe = &mboxq->u.mqe;
  6891. mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
  6892. /* Start timer for the mbox_tmo and log some mailbox post messages */
  6893. mod_timer(&psli->mbox_tmo, (jiffies +
  6894. msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
  6895. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6896. "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
  6897. "x%x x%x\n",
  6898. mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
  6899. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6900. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6901. phba->pport->port_state, psli->sli_flag);
  6902. if (mbx_cmnd != MBX_HEARTBEAT) {
  6903. if (mboxq->vport) {
  6904. lpfc_debugfs_disc_trc(mboxq->vport,
  6905. LPFC_DISC_TRC_MBOX_VPORT,
  6906. "MBOX Send vport: cmd:x%x mb:x%x x%x",
  6907. mbx_cmnd, mqe->un.mb_words[0],
  6908. mqe->un.mb_words[1]);
  6909. } else {
  6910. lpfc_debugfs_disc_trc(phba->pport,
  6911. LPFC_DISC_TRC_MBOX,
  6912. "MBOX Send: cmd:x%x mb:x%x x%x",
  6913. mbx_cmnd, mqe->un.mb_words[0],
  6914. mqe->un.mb_words[1]);
  6915. }
  6916. }
  6917. psli->slistat.mbox_cmd++;
  6918. /* Post the mailbox command to the port */
  6919. rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
  6920. if (rc != MBX_SUCCESS) {
  6921. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6922. "(%d):2533 Mailbox command x%x (x%x/x%x) "
  6923. "cannot issue Data: x%x x%x\n",
  6924. mboxq->vport ? mboxq->vport->vpi : 0,
  6925. mboxq->u.mb.mbxCommand,
  6926. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6927. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6928. psli->sli_flag, MBX_NOWAIT);
  6929. goto out_not_finished;
  6930. }
  6931. return rc;
  6932. out_not_finished:
  6933. spin_lock_irqsave(&phba->hbalock, iflags);
  6934. if (phba->sli.mbox_active) {
  6935. mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
  6936. __lpfc_mbox_cmpl_put(phba, mboxq);
  6937. /* Release the token */
  6938. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6939. phba->sli.mbox_active = NULL;
  6940. }
  6941. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6942. return MBX_NOT_FINISHED;
  6943. }
  6944. /**
  6945. * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
  6946. * @phba: Pointer to HBA context object.
  6947. * @pmbox: Pointer to mailbox object.
  6948. * @flag: Flag indicating how the mailbox need to be processed.
  6949. *
  6950. * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
  6951. * the API jump table function pointer from the lpfc_hba struct.
  6952. *
  6953. * Return codes the caller owns the mailbox command after the return of the
  6954. * function.
  6955. **/
  6956. int
  6957. lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
  6958. {
  6959. return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
  6960. }
  6961. /**
  6962. * lpfc_mbox_api_table_setup - Set up mbox api function jump table
  6963. * @phba: The hba struct for which this call is being executed.
  6964. * @dev_grp: The HBA PCI-Device group number.
  6965. *
  6966. * This routine sets up the mbox interface API function jump table in @phba
  6967. * struct.
  6968. * Returns: 0 - success, -ENODEV - failure.
  6969. **/
  6970. int
  6971. lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
  6972. {
  6973. switch (dev_grp) {
  6974. case LPFC_PCI_DEV_LP:
  6975. phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
  6976. phba->lpfc_sli_handle_slow_ring_event =
  6977. lpfc_sli_handle_slow_ring_event_s3;
  6978. phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
  6979. phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
  6980. phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
  6981. break;
  6982. case LPFC_PCI_DEV_OC:
  6983. phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
  6984. phba->lpfc_sli_handle_slow_ring_event =
  6985. lpfc_sli_handle_slow_ring_event_s4;
  6986. phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
  6987. phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
  6988. phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
  6989. break;
  6990. default:
  6991. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  6992. "1420 Invalid HBA PCI-device group: 0x%x\n",
  6993. dev_grp);
  6994. return -ENODEV;
  6995. break;
  6996. }
  6997. return 0;
  6998. }
  6999. /**
  7000. * __lpfc_sli_ringtx_put - Add an iocb to the txq
  7001. * @phba: Pointer to HBA context object.
  7002. * @pring: Pointer to driver SLI ring object.
  7003. * @piocb: Pointer to address of newly added command iocb.
  7004. *
  7005. * This function is called with hbalock held to add a command
  7006. * iocb to the txq when SLI layer cannot submit the command iocb
  7007. * to the ring.
  7008. **/
  7009. void
  7010. __lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  7011. struct lpfc_iocbq *piocb)
  7012. {
  7013. /* Insert the caller's iocb in the txq tail for later processing. */
  7014. list_add_tail(&piocb->list, &pring->txq);
  7015. }
  7016. /**
  7017. * lpfc_sli_next_iocb - Get the next iocb in the txq
  7018. * @phba: Pointer to HBA context object.
  7019. * @pring: Pointer to driver SLI ring object.
  7020. * @piocb: Pointer to address of newly added command iocb.
  7021. *
  7022. * This function is called with hbalock held before a new
  7023. * iocb is submitted to the firmware. This function checks
  7024. * txq to flush the iocbs in txq to Firmware before
  7025. * submitting new iocbs to the Firmware.
  7026. * If there are iocbs in the txq which need to be submitted
  7027. * to firmware, lpfc_sli_next_iocb returns the first element
  7028. * of the txq after dequeuing it from txq.
  7029. * If there is no iocb in the txq then the function will return
  7030. * *piocb and *piocb is set to NULL. Caller needs to check
  7031. * *piocb to find if there are more commands in the txq.
  7032. **/
  7033. static struct lpfc_iocbq *
  7034. lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  7035. struct lpfc_iocbq **piocb)
  7036. {
  7037. struct lpfc_iocbq * nextiocb;
  7038. nextiocb = lpfc_sli_ringtx_get(phba, pring);
  7039. if (!nextiocb) {
  7040. nextiocb = *piocb;
  7041. *piocb = NULL;
  7042. }
  7043. return nextiocb;
  7044. }
  7045. /**
  7046. * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
  7047. * @phba: Pointer to HBA context object.
  7048. * @ring_number: SLI ring number to issue iocb on.
  7049. * @piocb: Pointer to command iocb.
  7050. * @flag: Flag indicating if this command can be put into txq.
  7051. *
  7052. * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
  7053. * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
  7054. * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
  7055. * flag is turned on, the function returns IOCB_ERROR. When the link is down,
  7056. * this function allows only iocbs for posting buffers. This function finds
  7057. * next available slot in the command ring and posts the command to the
  7058. * available slot and writes the port attention register to request HBA start
  7059. * processing new iocb. If there is no slot available in the ring and
  7060. * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
  7061. * the function returns IOCB_BUSY.
  7062. *
  7063. * This function is called with hbalock held. The function will return success
  7064. * after it successfully submit the iocb to firmware or after adding to the
  7065. * txq.
  7066. **/
  7067. static int
  7068. __lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
  7069. struct lpfc_iocbq *piocb, uint32_t flag)
  7070. {
  7071. struct lpfc_iocbq *nextiocb;
  7072. IOCB_t *iocb;
  7073. struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
  7074. if (piocb->iocb_cmpl && (!piocb->vport) &&
  7075. (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
  7076. (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
  7077. lpfc_printf_log(phba, KERN_ERR,
  7078. LOG_SLI | LOG_VPORT,
  7079. "1807 IOCB x%x failed. No vport\n",
  7080. piocb->iocb.ulpCommand);
  7081. dump_stack();
  7082. return IOCB_ERROR;
  7083. }
  7084. /* If the PCI channel is in offline state, do not post iocbs. */
  7085. if (unlikely(pci_channel_offline(phba->pcidev)))
  7086. return IOCB_ERROR;
  7087. /* If HBA has a deferred error attention, fail the iocb. */
  7088. if (unlikely(phba->hba_flag & DEFER_ERATT))
  7089. return IOCB_ERROR;
  7090. /*
  7091. * We should never get an IOCB if we are in a < LINK_DOWN state
  7092. */
  7093. if (unlikely(phba->link_state < LPFC_LINK_DOWN))
  7094. return IOCB_ERROR;
  7095. /*
  7096. * Check to see if we are blocking IOCB processing because of a
  7097. * outstanding event.
  7098. */
  7099. if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
  7100. goto iocb_busy;
  7101. if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
  7102. /*
  7103. * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
  7104. * can be issued if the link is not up.
  7105. */
  7106. switch (piocb->iocb.ulpCommand) {
  7107. case CMD_GEN_REQUEST64_CR:
  7108. case CMD_GEN_REQUEST64_CX:
  7109. if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
  7110. (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
  7111. FC_RCTL_DD_UNSOL_CMD) ||
  7112. (piocb->iocb.un.genreq64.w5.hcsw.Type !=
  7113. MENLO_TRANSPORT_TYPE))
  7114. goto iocb_busy;
  7115. break;
  7116. case CMD_QUE_RING_BUF_CN:
  7117. case CMD_QUE_RING_BUF64_CN:
  7118. /*
  7119. * For IOCBs, like QUE_RING_BUF, that have no rsp ring
  7120. * completion, iocb_cmpl MUST be 0.
  7121. */
  7122. if (piocb->iocb_cmpl)
  7123. piocb->iocb_cmpl = NULL;
  7124. /*FALLTHROUGH*/
  7125. case CMD_CREATE_XRI_CR:
  7126. case CMD_CLOSE_XRI_CN:
  7127. case CMD_CLOSE_XRI_CX:
  7128. break;
  7129. default:
  7130. goto iocb_busy;
  7131. }
  7132. /*
  7133. * For FCP commands, we must be in a state where we can process link
  7134. * attention events.
  7135. */
  7136. } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
  7137. !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
  7138. goto iocb_busy;
  7139. }
  7140. while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
  7141. (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
  7142. lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
  7143. if (iocb)
  7144. lpfc_sli_update_ring(phba, pring);
  7145. else
  7146. lpfc_sli_update_full_ring(phba, pring);
  7147. if (!piocb)
  7148. return IOCB_SUCCESS;
  7149. goto out_busy;
  7150. iocb_busy:
  7151. pring->stats.iocb_cmd_delay++;
  7152. out_busy:
  7153. if (!(flag & SLI_IOCB_RET_IOCB)) {
  7154. __lpfc_sli_ringtx_put(phba, pring, piocb);
  7155. return IOCB_SUCCESS;
  7156. }
  7157. return IOCB_BUSY;
  7158. }
  7159. /**
  7160. * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
  7161. * @phba: Pointer to HBA context object.
  7162. * @piocb: Pointer to command iocb.
  7163. * @sglq: Pointer to the scatter gather queue object.
  7164. *
  7165. * This routine converts the bpl or bde that is in the IOCB
  7166. * to a sgl list for the sli4 hardware. The physical address
  7167. * of the bpl/bde is converted back to a virtual address.
  7168. * If the IOCB contains a BPL then the list of BDE's is
  7169. * converted to sli4_sge's. If the IOCB contains a single
  7170. * BDE then it is converted to a single sli_sge.
  7171. * The IOCB is still in cpu endianess so the contents of
  7172. * the bpl can be used without byte swapping.
  7173. *
  7174. * Returns valid XRI = Success, NO_XRI = Failure.
  7175. **/
  7176. static uint16_t
  7177. lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
  7178. struct lpfc_sglq *sglq)
  7179. {
  7180. uint16_t xritag = NO_XRI;
  7181. struct ulp_bde64 *bpl = NULL;
  7182. struct ulp_bde64 bde;
  7183. struct sli4_sge *sgl = NULL;
  7184. struct lpfc_dmabuf *dmabuf;
  7185. IOCB_t *icmd;
  7186. int numBdes = 0;
  7187. int i = 0;
  7188. uint32_t offset = 0; /* accumulated offset in the sg request list */
  7189. int inbound = 0; /* number of sg reply entries inbound from firmware */
  7190. if (!piocbq || !sglq)
  7191. return xritag;
  7192. sgl = (struct sli4_sge *)sglq->sgl;
  7193. icmd = &piocbq->iocb;
  7194. if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
  7195. return sglq->sli4_xritag;
  7196. if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
  7197. numBdes = icmd->un.genreq64.bdl.bdeSize /
  7198. sizeof(struct ulp_bde64);
  7199. /* The addrHigh and addrLow fields within the IOCB
  7200. * have not been byteswapped yet so there is no
  7201. * need to swap them back.
  7202. */
  7203. if (piocbq->context3)
  7204. dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
  7205. else
  7206. return xritag;
  7207. bpl = (struct ulp_bde64 *)dmabuf->virt;
  7208. if (!bpl)
  7209. return xritag;
  7210. for (i = 0; i < numBdes; i++) {
  7211. /* Should already be byte swapped. */
  7212. sgl->addr_hi = bpl->addrHigh;
  7213. sgl->addr_lo = bpl->addrLow;
  7214. sgl->word2 = le32_to_cpu(sgl->word2);
  7215. if ((i+1) == numBdes)
  7216. bf_set(lpfc_sli4_sge_last, sgl, 1);
  7217. else
  7218. bf_set(lpfc_sli4_sge_last, sgl, 0);
  7219. /* swap the size field back to the cpu so we
  7220. * can assign it to the sgl.
  7221. */
  7222. bde.tus.w = le32_to_cpu(bpl->tus.w);
  7223. sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
  7224. /* The offsets in the sgl need to be accumulated
  7225. * separately for the request and reply lists.
  7226. * The request is always first, the reply follows.
  7227. */
  7228. if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
  7229. /* add up the reply sg entries */
  7230. if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
  7231. inbound++;
  7232. /* first inbound? reset the offset */
  7233. if (inbound == 1)
  7234. offset = 0;
  7235. bf_set(lpfc_sli4_sge_offset, sgl, offset);
  7236. bf_set(lpfc_sli4_sge_type, sgl,
  7237. LPFC_SGE_TYPE_DATA);
  7238. offset += bde.tus.f.bdeSize;
  7239. }
  7240. sgl->word2 = cpu_to_le32(sgl->word2);
  7241. bpl++;
  7242. sgl++;
  7243. }
  7244. } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
  7245. /* The addrHigh and addrLow fields of the BDE have not
  7246. * been byteswapped yet so they need to be swapped
  7247. * before putting them in the sgl.
  7248. */
  7249. sgl->addr_hi =
  7250. cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
  7251. sgl->addr_lo =
  7252. cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
  7253. sgl->word2 = le32_to_cpu(sgl->word2);
  7254. bf_set(lpfc_sli4_sge_last, sgl, 1);
  7255. sgl->word2 = cpu_to_le32(sgl->word2);
  7256. sgl->sge_len =
  7257. cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
  7258. }
  7259. return sglq->sli4_xritag;
  7260. }
  7261. /**
  7262. * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
  7263. * @phba: Pointer to HBA context object.
  7264. *
  7265. * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
  7266. * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
  7267. * held.
  7268. *
  7269. * Return: index into SLI4 fast-path FCP queue index.
  7270. **/
  7271. static inline uint32_t
  7272. lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
  7273. {
  7274. struct lpfc_vector_map_info *cpup;
  7275. int chann, cpu;
  7276. if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU) {
  7277. cpu = smp_processor_id();
  7278. if (cpu < phba->sli4_hba.num_present_cpu) {
  7279. cpup = phba->sli4_hba.cpu_map;
  7280. cpup += cpu;
  7281. return cpup->channel_id;
  7282. }
  7283. chann = cpu;
  7284. }
  7285. chann = atomic_add_return(1, &phba->fcp_qidx);
  7286. chann = (chann % phba->cfg_fcp_io_channel);
  7287. return chann;
  7288. }
  7289. /**
  7290. * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
  7291. * @phba: Pointer to HBA context object.
  7292. * @piocb: Pointer to command iocb.
  7293. * @wqe: Pointer to the work queue entry.
  7294. *
  7295. * This routine converts the iocb command to its Work Queue Entry
  7296. * equivalent. The wqe pointer should not have any fields set when
  7297. * this routine is called because it will memcpy over them.
  7298. * This routine does not set the CQ_ID or the WQEC bits in the
  7299. * wqe.
  7300. *
  7301. * Returns: 0 = Success, IOCB_ERROR = Failure.
  7302. **/
  7303. static int
  7304. lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
  7305. union lpfc_wqe *wqe)
  7306. {
  7307. uint32_t xmit_len = 0, total_len = 0;
  7308. uint8_t ct = 0;
  7309. uint32_t fip;
  7310. uint32_t abort_tag;
  7311. uint8_t command_type = ELS_COMMAND_NON_FIP;
  7312. uint8_t cmnd;
  7313. uint16_t xritag;
  7314. uint16_t abrt_iotag;
  7315. struct lpfc_iocbq *abrtiocbq;
  7316. struct ulp_bde64 *bpl = NULL;
  7317. uint32_t els_id = LPFC_ELS_ID_DEFAULT;
  7318. int numBdes, i;
  7319. struct ulp_bde64 bde;
  7320. struct lpfc_nodelist *ndlp;
  7321. uint32_t *pcmd;
  7322. uint32_t if_type;
  7323. fip = phba->hba_flag & HBA_FIP_SUPPORT;
  7324. /* The fcp commands will set command type */
  7325. if (iocbq->iocb_flag & LPFC_IO_FCP)
  7326. command_type = FCP_COMMAND;
  7327. else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
  7328. command_type = ELS_COMMAND_FIP;
  7329. else
  7330. command_type = ELS_COMMAND_NON_FIP;
  7331. /* Some of the fields are in the right position already */
  7332. memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
  7333. abort_tag = (uint32_t) iocbq->iotag;
  7334. xritag = iocbq->sli4_xritag;
  7335. wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
  7336. /* words0-2 bpl convert bde */
  7337. if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
  7338. numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
  7339. sizeof(struct ulp_bde64);
  7340. bpl = (struct ulp_bde64 *)
  7341. ((struct lpfc_dmabuf *)iocbq->context3)->virt;
  7342. if (!bpl)
  7343. return IOCB_ERROR;
  7344. /* Should already be byte swapped. */
  7345. wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
  7346. wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
  7347. /* swap the size field back to the cpu so we
  7348. * can assign it to the sgl.
  7349. */
  7350. wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
  7351. xmit_len = wqe->generic.bde.tus.f.bdeSize;
  7352. total_len = 0;
  7353. for (i = 0; i < numBdes; i++) {
  7354. bde.tus.w = le32_to_cpu(bpl[i].tus.w);
  7355. total_len += bde.tus.f.bdeSize;
  7356. }
  7357. } else
  7358. xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
  7359. iocbq->iocb.ulpIoTag = iocbq->iotag;
  7360. cmnd = iocbq->iocb.ulpCommand;
  7361. switch (iocbq->iocb.ulpCommand) {
  7362. case CMD_ELS_REQUEST64_CR:
  7363. if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
  7364. ndlp = iocbq->context_un.ndlp;
  7365. else
  7366. ndlp = (struct lpfc_nodelist *)iocbq->context1;
  7367. if (!iocbq->iocb.ulpLe) {
  7368. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  7369. "2007 Only Limited Edition cmd Format"
  7370. " supported 0x%x\n",
  7371. iocbq->iocb.ulpCommand);
  7372. return IOCB_ERROR;
  7373. }
  7374. wqe->els_req.payload_len = xmit_len;
  7375. /* Els_reguest64 has a TMO */
  7376. bf_set(wqe_tmo, &wqe->els_req.wqe_com,
  7377. iocbq->iocb.ulpTimeout);
  7378. /* Need a VF for word 4 set the vf bit*/
  7379. bf_set(els_req64_vf, &wqe->els_req, 0);
  7380. /* And a VFID for word 12 */
  7381. bf_set(els_req64_vfid, &wqe->els_req, 0);
  7382. ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
  7383. bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
  7384. iocbq->iocb.ulpContext);
  7385. bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
  7386. bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
  7387. /* CCP CCPE PV PRI in word10 were set in the memcpy */
  7388. if (command_type == ELS_COMMAND_FIP)
  7389. els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
  7390. >> LPFC_FIP_ELS_ID_SHIFT);
  7391. pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
  7392. iocbq->context2)->virt);
  7393. if_type = bf_get(lpfc_sli_intf_if_type,
  7394. &phba->sli4_hba.sli_intf);
  7395. if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
  7396. if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
  7397. *pcmd == ELS_CMD_SCR ||
  7398. *pcmd == ELS_CMD_FDISC ||
  7399. *pcmd == ELS_CMD_LOGO ||
  7400. *pcmd == ELS_CMD_PLOGI)) {
  7401. bf_set(els_req64_sp, &wqe->els_req, 1);
  7402. bf_set(els_req64_sid, &wqe->els_req,
  7403. iocbq->vport->fc_myDID);
  7404. if ((*pcmd == ELS_CMD_FLOGI) &&
  7405. !(phba->fc_topology ==
  7406. LPFC_TOPOLOGY_LOOP))
  7407. bf_set(els_req64_sid, &wqe->els_req, 0);
  7408. bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
  7409. bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
  7410. phba->vpi_ids[iocbq->vport->vpi]);
  7411. } else if (pcmd && iocbq->context1) {
  7412. bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
  7413. bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
  7414. phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
  7415. }
  7416. }
  7417. bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
  7418. phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
  7419. bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
  7420. bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
  7421. bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
  7422. bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
  7423. bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
  7424. bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
  7425. wqe->els_req.max_response_payload_len = total_len - xmit_len;
  7426. break;
  7427. case CMD_XMIT_SEQUENCE64_CX:
  7428. bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
  7429. iocbq->iocb.un.ulpWord[3]);
  7430. bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
  7431. iocbq->iocb.unsli3.rcvsli3.ox_id);
  7432. /* The entire sequence is transmitted for this IOCB */
  7433. xmit_len = total_len;
  7434. cmnd = CMD_XMIT_SEQUENCE64_CR;
  7435. if (phba->link_flag & LS_LOOPBACK_MODE)
  7436. bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
  7437. case CMD_XMIT_SEQUENCE64_CR:
  7438. /* word3 iocb=io_tag32 wqe=reserved */
  7439. wqe->xmit_sequence.rsvd3 = 0;
  7440. /* word4 relative_offset memcpy */
  7441. /* word5 r_ctl/df_ctl memcpy */
  7442. bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
  7443. bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
  7444. bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
  7445. LPFC_WQE_IOD_WRITE);
  7446. bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
  7447. LPFC_WQE_LENLOC_WORD12);
  7448. bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
  7449. wqe->xmit_sequence.xmit_len = xmit_len;
  7450. command_type = OTHER_COMMAND;
  7451. break;
  7452. case CMD_XMIT_BCAST64_CN:
  7453. /* word3 iocb=iotag32 wqe=seq_payload_len */
  7454. wqe->xmit_bcast64.seq_payload_len = xmit_len;
  7455. /* word4 iocb=rsvd wqe=rsvd */
  7456. /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
  7457. /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
  7458. bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
  7459. ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
  7460. bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
  7461. bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
  7462. bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
  7463. LPFC_WQE_LENLOC_WORD3);
  7464. bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
  7465. break;
  7466. case CMD_FCP_IWRITE64_CR:
  7467. command_type = FCP_COMMAND_DATA_OUT;
  7468. /* word3 iocb=iotag wqe=payload_offset_len */
  7469. /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
  7470. bf_set(payload_offset_len, &wqe->fcp_iwrite,
  7471. xmit_len + sizeof(struct fcp_rsp));
  7472. bf_set(cmd_buff_len, &wqe->fcp_iwrite,
  7473. 0);
  7474. /* word4 iocb=parameter wqe=total_xfer_length memcpy */
  7475. /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
  7476. bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
  7477. iocbq->iocb.ulpFCP2Rcvy);
  7478. bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
  7479. /* Always open the exchange */
  7480. bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
  7481. bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
  7482. bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
  7483. LPFC_WQE_LENLOC_WORD4);
  7484. bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
  7485. bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
  7486. bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
  7487. break;
  7488. case CMD_FCP_IREAD64_CR:
  7489. /* word3 iocb=iotag wqe=payload_offset_len */
  7490. /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
  7491. bf_set(payload_offset_len, &wqe->fcp_iread,
  7492. xmit_len + sizeof(struct fcp_rsp));
  7493. bf_set(cmd_buff_len, &wqe->fcp_iread,
  7494. 0);
  7495. /* word4 iocb=parameter wqe=total_xfer_length memcpy */
  7496. /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
  7497. bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
  7498. iocbq->iocb.ulpFCP2Rcvy);
  7499. bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
  7500. /* Always open the exchange */
  7501. bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
  7502. bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
  7503. bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
  7504. LPFC_WQE_LENLOC_WORD4);
  7505. bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
  7506. bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
  7507. bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
  7508. break;
  7509. case CMD_FCP_ICMND64_CR:
  7510. /* word3 iocb=iotag wqe=payload_offset_len */
  7511. /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
  7512. bf_set(payload_offset_len, &wqe->fcp_icmd,
  7513. xmit_len + sizeof(struct fcp_rsp));
  7514. bf_set(cmd_buff_len, &wqe->fcp_icmd,
  7515. 0);
  7516. /* word3 iocb=IO_TAG wqe=reserved */
  7517. bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
  7518. /* Always open the exchange */
  7519. bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
  7520. bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
  7521. bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
  7522. bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
  7523. bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
  7524. LPFC_WQE_LENLOC_NONE);
  7525. bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
  7526. bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
  7527. iocbq->iocb.ulpFCP2Rcvy);
  7528. break;
  7529. case CMD_GEN_REQUEST64_CR:
  7530. /* For this command calculate the xmit length of the
  7531. * request bde.
  7532. */
  7533. xmit_len = 0;
  7534. numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
  7535. sizeof(struct ulp_bde64);
  7536. for (i = 0; i < numBdes; i++) {
  7537. bde.tus.w = le32_to_cpu(bpl[i].tus.w);
  7538. if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
  7539. break;
  7540. xmit_len += bde.tus.f.bdeSize;
  7541. }
  7542. /* word3 iocb=IO_TAG wqe=request_payload_len */
  7543. wqe->gen_req.request_payload_len = xmit_len;
  7544. /* word4 iocb=parameter wqe=relative_offset memcpy */
  7545. /* word5 [rctl, type, df_ctl, la] copied in memcpy */
  7546. /* word6 context tag copied in memcpy */
  7547. if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
  7548. ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
  7549. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  7550. "2015 Invalid CT %x command 0x%x\n",
  7551. ct, iocbq->iocb.ulpCommand);
  7552. return IOCB_ERROR;
  7553. }
  7554. bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
  7555. bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
  7556. bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
  7557. bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
  7558. bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
  7559. bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
  7560. bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
  7561. bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
  7562. wqe->gen_req.max_response_payload_len = total_len - xmit_len;
  7563. command_type = OTHER_COMMAND;
  7564. break;
  7565. case CMD_XMIT_ELS_RSP64_CX:
  7566. ndlp = (struct lpfc_nodelist *)iocbq->context1;
  7567. /* words0-2 BDE memcpy */
  7568. /* word3 iocb=iotag32 wqe=response_payload_len */
  7569. wqe->xmit_els_rsp.response_payload_len = xmit_len;
  7570. /* word4 */
  7571. wqe->xmit_els_rsp.word4 = 0;
  7572. /* word5 iocb=rsvd wge=did */
  7573. bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
  7574. iocbq->iocb.un.xseq64.xmit_els_remoteID);
  7575. if_type = bf_get(lpfc_sli_intf_if_type,
  7576. &phba->sli4_hba.sli_intf);
  7577. if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
  7578. if (iocbq->vport->fc_flag & FC_PT2PT) {
  7579. bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
  7580. bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
  7581. iocbq->vport->fc_myDID);
  7582. if (iocbq->vport->fc_myDID == Fabric_DID) {
  7583. bf_set(wqe_els_did,
  7584. &wqe->xmit_els_rsp.wqe_dest, 0);
  7585. }
  7586. }
  7587. }
  7588. bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
  7589. ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
  7590. bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
  7591. bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
  7592. iocbq->iocb.unsli3.rcvsli3.ox_id);
  7593. if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
  7594. bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
  7595. phba->vpi_ids[iocbq->vport->vpi]);
  7596. bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
  7597. bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
  7598. bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
  7599. bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
  7600. LPFC_WQE_LENLOC_WORD3);
  7601. bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
  7602. bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
  7603. phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
  7604. pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
  7605. iocbq->context2)->virt);
  7606. if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
  7607. bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
  7608. bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
  7609. iocbq->vport->fc_myDID);
  7610. bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
  7611. bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
  7612. phba->vpi_ids[phba->pport->vpi]);
  7613. }
  7614. command_type = OTHER_COMMAND;
  7615. break;
  7616. case CMD_CLOSE_XRI_CN:
  7617. case CMD_ABORT_XRI_CN:
  7618. case CMD_ABORT_XRI_CX:
  7619. /* words 0-2 memcpy should be 0 rserved */
  7620. /* port will send abts */
  7621. abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
  7622. if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
  7623. abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
  7624. fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
  7625. } else
  7626. fip = 0;
  7627. if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
  7628. /*
  7629. * The link is down, or the command was ELS_FIP
  7630. * so the fw does not need to send abts
  7631. * on the wire.
  7632. */
  7633. bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
  7634. else
  7635. bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
  7636. bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
  7637. /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
  7638. wqe->abort_cmd.rsrvd5 = 0;
  7639. bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
  7640. ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
  7641. abort_tag = iocbq->iocb.un.acxri.abortIoTag;
  7642. /*
  7643. * The abort handler will send us CMD_ABORT_XRI_CN or
  7644. * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
  7645. */
  7646. bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
  7647. bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
  7648. bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
  7649. LPFC_WQE_LENLOC_NONE);
  7650. cmnd = CMD_ABORT_XRI_CX;
  7651. command_type = OTHER_COMMAND;
  7652. xritag = 0;
  7653. break;
  7654. case CMD_XMIT_BLS_RSP64_CX:
  7655. ndlp = (struct lpfc_nodelist *)iocbq->context1;
  7656. /* As BLS ABTS RSP WQE is very different from other WQEs,
  7657. * we re-construct this WQE here based on information in
  7658. * iocbq from scratch.
  7659. */
  7660. memset(wqe, 0, sizeof(union lpfc_wqe));
  7661. /* OX_ID is invariable to who sent ABTS to CT exchange */
  7662. bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
  7663. bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
  7664. if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
  7665. LPFC_ABTS_UNSOL_INT) {
  7666. /* ABTS sent by initiator to CT exchange, the
  7667. * RX_ID field will be filled with the newly
  7668. * allocated responder XRI.
  7669. */
  7670. bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
  7671. iocbq->sli4_xritag);
  7672. } else {
  7673. /* ABTS sent by responder to CT exchange, the
  7674. * RX_ID field will be filled with the responder
  7675. * RX_ID from ABTS.
  7676. */
  7677. bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
  7678. bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
  7679. }
  7680. bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
  7681. bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
  7682. /* Use CT=VPI */
  7683. bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
  7684. ndlp->nlp_DID);
  7685. bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
  7686. iocbq->iocb.ulpContext);
  7687. bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
  7688. bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
  7689. phba->vpi_ids[phba->pport->vpi]);
  7690. bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
  7691. bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
  7692. LPFC_WQE_LENLOC_NONE);
  7693. /* Overwrite the pre-set comnd type with OTHER_COMMAND */
  7694. command_type = OTHER_COMMAND;
  7695. if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
  7696. bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
  7697. bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
  7698. bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
  7699. bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
  7700. bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
  7701. bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
  7702. }
  7703. break;
  7704. case CMD_XRI_ABORTED_CX:
  7705. case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
  7706. case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
  7707. case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
  7708. case CMD_FCP_TRSP64_CX: /* Target mode rcv */
  7709. case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
  7710. default:
  7711. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  7712. "2014 Invalid command 0x%x\n",
  7713. iocbq->iocb.ulpCommand);
  7714. return IOCB_ERROR;
  7715. break;
  7716. }
  7717. if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
  7718. bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
  7719. else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
  7720. bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
  7721. else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
  7722. bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
  7723. iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
  7724. LPFC_IO_DIF_INSERT);
  7725. bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
  7726. bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
  7727. wqe->generic.wqe_com.abort_tag = abort_tag;
  7728. bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
  7729. bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
  7730. bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
  7731. bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
  7732. return 0;
  7733. }
  7734. /**
  7735. * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
  7736. * @phba: Pointer to HBA context object.
  7737. * @ring_number: SLI ring number to issue iocb on.
  7738. * @piocb: Pointer to command iocb.
  7739. * @flag: Flag indicating if this command can be put into txq.
  7740. *
  7741. * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
  7742. * an iocb command to an HBA with SLI-4 interface spec.
  7743. *
  7744. * This function is called with hbalock held. The function will return success
  7745. * after it successfully submit the iocb to firmware or after adding to the
  7746. * txq.
  7747. **/
  7748. static int
  7749. __lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
  7750. struct lpfc_iocbq *piocb, uint32_t flag)
  7751. {
  7752. struct lpfc_sglq *sglq;
  7753. union lpfc_wqe wqe;
  7754. struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
  7755. if (piocb->sli4_xritag == NO_XRI) {
  7756. if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
  7757. piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
  7758. sglq = NULL;
  7759. else {
  7760. if (!list_empty(&pring->txq)) {
  7761. if (!(flag & SLI_IOCB_RET_IOCB)) {
  7762. __lpfc_sli_ringtx_put(phba,
  7763. pring, piocb);
  7764. return IOCB_SUCCESS;
  7765. } else {
  7766. return IOCB_BUSY;
  7767. }
  7768. } else {
  7769. sglq = __lpfc_sli_get_sglq(phba, piocb);
  7770. if (!sglq) {
  7771. if (!(flag & SLI_IOCB_RET_IOCB)) {
  7772. __lpfc_sli_ringtx_put(phba,
  7773. pring,
  7774. piocb);
  7775. return IOCB_SUCCESS;
  7776. } else
  7777. return IOCB_BUSY;
  7778. }
  7779. }
  7780. }
  7781. } else if (piocb->iocb_flag & LPFC_IO_FCP) {
  7782. /* These IO's already have an XRI and a mapped sgl. */
  7783. sglq = NULL;
  7784. } else {
  7785. /*
  7786. * This is a continuation of a commandi,(CX) so this
  7787. * sglq is on the active list
  7788. */
  7789. sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
  7790. if (!sglq)
  7791. return IOCB_ERROR;
  7792. }
  7793. if (sglq) {
  7794. piocb->sli4_lxritag = sglq->sli4_lxritag;
  7795. piocb->sli4_xritag = sglq->sli4_xritag;
  7796. if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
  7797. return IOCB_ERROR;
  7798. }
  7799. if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
  7800. return IOCB_ERROR;
  7801. if ((piocb->iocb_flag & LPFC_IO_FCP) ||
  7802. (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
  7803. if (unlikely(!phba->sli4_hba.fcp_wq))
  7804. return IOCB_ERROR;
  7805. if (lpfc_sli4_wq_put(phba->sli4_hba.fcp_wq[piocb->fcp_wqidx],
  7806. &wqe))
  7807. return IOCB_ERROR;
  7808. } else {
  7809. if (unlikely(!phba->sli4_hba.els_wq))
  7810. return IOCB_ERROR;
  7811. if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
  7812. return IOCB_ERROR;
  7813. }
  7814. lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
  7815. return 0;
  7816. }
  7817. /**
  7818. * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
  7819. *
  7820. * This routine wraps the actual lockless version for issusing IOCB function
  7821. * pointer from the lpfc_hba struct.
  7822. *
  7823. * Return codes:
  7824. * IOCB_ERROR - Error
  7825. * IOCB_SUCCESS - Success
  7826. * IOCB_BUSY - Busy
  7827. **/
  7828. int
  7829. __lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
  7830. struct lpfc_iocbq *piocb, uint32_t flag)
  7831. {
  7832. return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
  7833. }
  7834. /**
  7835. * lpfc_sli_api_table_setup - Set up sli api function jump table
  7836. * @phba: The hba struct for which this call is being executed.
  7837. * @dev_grp: The HBA PCI-Device group number.
  7838. *
  7839. * This routine sets up the SLI interface API function jump table in @phba
  7840. * struct.
  7841. * Returns: 0 - success, -ENODEV - failure.
  7842. **/
  7843. int
  7844. lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
  7845. {
  7846. switch (dev_grp) {
  7847. case LPFC_PCI_DEV_LP:
  7848. phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
  7849. phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
  7850. break;
  7851. case LPFC_PCI_DEV_OC:
  7852. phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
  7853. phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
  7854. break;
  7855. default:
  7856. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  7857. "1419 Invalid HBA PCI-device group: 0x%x\n",
  7858. dev_grp);
  7859. return -ENODEV;
  7860. break;
  7861. }
  7862. phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
  7863. return 0;
  7864. }
  7865. /**
  7866. * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
  7867. * @phba: Pointer to HBA context object.
  7868. * @pring: Pointer to driver SLI ring object.
  7869. * @piocb: Pointer to command iocb.
  7870. * @flag: Flag indicating if this command can be put into txq.
  7871. *
  7872. * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
  7873. * function. This function gets the hbalock and calls
  7874. * __lpfc_sli_issue_iocb function and will return the error returned
  7875. * by __lpfc_sli_issue_iocb function. This wrapper is used by
  7876. * functions which do not hold hbalock.
  7877. **/
  7878. int
  7879. lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
  7880. struct lpfc_iocbq *piocb, uint32_t flag)
  7881. {
  7882. struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
  7883. struct lpfc_sli_ring *pring;
  7884. struct lpfc_queue *fpeq;
  7885. struct lpfc_eqe *eqe;
  7886. unsigned long iflags;
  7887. int rc, idx;
  7888. if (phba->sli_rev == LPFC_SLI_REV4) {
  7889. if (piocb->iocb_flag & LPFC_IO_FCP) {
  7890. if (unlikely(!phba->sli4_hba.fcp_wq))
  7891. return IOCB_ERROR;
  7892. idx = lpfc_sli4_scmd_to_wqidx_distr(phba);
  7893. piocb->fcp_wqidx = idx;
  7894. ring_number = MAX_SLI3_CONFIGURED_RINGS + idx;
  7895. pring = &phba->sli.ring[ring_number];
  7896. spin_lock_irqsave(&pring->ring_lock, iflags);
  7897. rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
  7898. flag);
  7899. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  7900. if (lpfc_fcp_look_ahead) {
  7901. fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
  7902. if (atomic_dec_and_test(&fcp_eq_hdl->
  7903. fcp_eq_in_use)) {
  7904. /* Get associated EQ with this index */
  7905. fpeq = phba->sli4_hba.hba_eq[idx];
  7906. /* Turn off interrupts from this EQ */
  7907. lpfc_sli4_eq_clr_intr(fpeq);
  7908. /*
  7909. * Process all the events on FCP EQ
  7910. */
  7911. while ((eqe = lpfc_sli4_eq_get(fpeq))) {
  7912. lpfc_sli4_hba_handle_eqe(phba,
  7913. eqe, idx);
  7914. fpeq->EQ_processed++;
  7915. }
  7916. /* Always clear and re-arm the EQ */
  7917. lpfc_sli4_eq_release(fpeq,
  7918. LPFC_QUEUE_REARM);
  7919. }
  7920. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  7921. }
  7922. } else {
  7923. pring = &phba->sli.ring[ring_number];
  7924. spin_lock_irqsave(&pring->ring_lock, iflags);
  7925. rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
  7926. flag);
  7927. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  7928. }
  7929. } else {
  7930. /* For now, SLI2/3 will still use hbalock */
  7931. spin_lock_irqsave(&phba->hbalock, iflags);
  7932. rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
  7933. spin_unlock_irqrestore(&phba->hbalock, iflags);
  7934. }
  7935. return rc;
  7936. }
  7937. /**
  7938. * lpfc_extra_ring_setup - Extra ring setup function
  7939. * @phba: Pointer to HBA context object.
  7940. *
  7941. * This function is called while driver attaches with the
  7942. * HBA to setup the extra ring. The extra ring is used
  7943. * only when driver needs to support target mode functionality
  7944. * or IP over FC functionalities.
  7945. *
  7946. * This function is called with no lock held.
  7947. **/
  7948. static int
  7949. lpfc_extra_ring_setup( struct lpfc_hba *phba)
  7950. {
  7951. struct lpfc_sli *psli;
  7952. struct lpfc_sli_ring *pring;
  7953. psli = &phba->sli;
  7954. /* Adjust cmd/rsp ring iocb entries more evenly */
  7955. /* Take some away from the FCP ring */
  7956. pring = &psli->ring[psli->fcp_ring];
  7957. pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
  7958. pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
  7959. pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
  7960. pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
  7961. /* and give them to the extra ring */
  7962. pring = &psli->ring[psli->extra_ring];
  7963. pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
  7964. pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
  7965. pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
  7966. pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
  7967. /* Setup default profile for this ring */
  7968. pring->iotag_max = 4096;
  7969. pring->num_mask = 1;
  7970. pring->prt[0].profile = 0; /* Mask 0 */
  7971. pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
  7972. pring->prt[0].type = phba->cfg_multi_ring_type;
  7973. pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
  7974. return 0;
  7975. }
  7976. /* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
  7977. * @phba: Pointer to HBA context object.
  7978. * @iocbq: Pointer to iocb object.
  7979. *
  7980. * The async_event handler calls this routine when it receives
  7981. * an ASYNC_STATUS_CN event from the port. The port generates
  7982. * this event when an Abort Sequence request to an rport fails
  7983. * twice in succession. The abort could be originated by the
  7984. * driver or by the port. The ABTS could have been for an ELS
  7985. * or FCP IO. The port only generates this event when an ABTS
  7986. * fails to complete after one retry.
  7987. */
  7988. static void
  7989. lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
  7990. struct lpfc_iocbq *iocbq)
  7991. {
  7992. struct lpfc_nodelist *ndlp = NULL;
  7993. uint16_t rpi = 0, vpi = 0;
  7994. struct lpfc_vport *vport = NULL;
  7995. /* The rpi in the ulpContext is vport-sensitive. */
  7996. vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
  7997. rpi = iocbq->iocb.ulpContext;
  7998. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  7999. "3092 Port generated ABTS async event "
  8000. "on vpi %d rpi %d status 0x%x\n",
  8001. vpi, rpi, iocbq->iocb.ulpStatus);
  8002. vport = lpfc_find_vport_by_vpid(phba, vpi);
  8003. if (!vport)
  8004. goto err_exit;
  8005. ndlp = lpfc_findnode_rpi(vport, rpi);
  8006. if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
  8007. goto err_exit;
  8008. if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
  8009. lpfc_sli_abts_recover_port(vport, ndlp);
  8010. return;
  8011. err_exit:
  8012. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  8013. "3095 Event Context not found, no "
  8014. "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
  8015. iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
  8016. vpi, rpi);
  8017. }
  8018. /* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
  8019. * @phba: pointer to HBA context object.
  8020. * @ndlp: nodelist pointer for the impacted rport.
  8021. * @axri: pointer to the wcqe containing the failed exchange.
  8022. *
  8023. * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
  8024. * port. The port generates this event when an abort exchange request to an
  8025. * rport fails twice in succession with no reply. The abort could be originated
  8026. * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
  8027. */
  8028. void
  8029. lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
  8030. struct lpfc_nodelist *ndlp,
  8031. struct sli4_wcqe_xri_aborted *axri)
  8032. {
  8033. struct lpfc_vport *vport;
  8034. uint32_t ext_status = 0;
  8035. if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
  8036. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  8037. "3115 Node Context not found, driver "
  8038. "ignoring abts err event\n");
  8039. return;
  8040. }
  8041. vport = ndlp->vport;
  8042. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  8043. "3116 Port generated FCP XRI ABORT event on "
  8044. "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
  8045. ndlp->vport->vpi, phba->sli4_hba.rpi_ids[ndlp->nlp_rpi],
  8046. bf_get(lpfc_wcqe_xa_xri, axri),
  8047. bf_get(lpfc_wcqe_xa_status, axri),
  8048. axri->parameter);
  8049. /*
  8050. * Catch the ABTS protocol failure case. Older OCe FW releases returned
  8051. * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
  8052. * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
  8053. */
  8054. ext_status = axri->parameter & IOERR_PARAM_MASK;
  8055. if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
  8056. ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
  8057. lpfc_sli_abts_recover_port(vport, ndlp);
  8058. }
  8059. /**
  8060. * lpfc_sli_async_event_handler - ASYNC iocb handler function
  8061. * @phba: Pointer to HBA context object.
  8062. * @pring: Pointer to driver SLI ring object.
  8063. * @iocbq: Pointer to iocb object.
  8064. *
  8065. * This function is called by the slow ring event handler
  8066. * function when there is an ASYNC event iocb in the ring.
  8067. * This function is called with no lock held.
  8068. * Currently this function handles only temperature related
  8069. * ASYNC events. The function decodes the temperature sensor
  8070. * event message and posts events for the management applications.
  8071. **/
  8072. static void
  8073. lpfc_sli_async_event_handler(struct lpfc_hba * phba,
  8074. struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
  8075. {
  8076. IOCB_t *icmd;
  8077. uint16_t evt_code;
  8078. struct temp_event temp_event_data;
  8079. struct Scsi_Host *shost;
  8080. uint32_t *iocb_w;
  8081. icmd = &iocbq->iocb;
  8082. evt_code = icmd->un.asyncstat.evt_code;
  8083. switch (evt_code) {
  8084. case ASYNC_TEMP_WARN:
  8085. case ASYNC_TEMP_SAFE:
  8086. temp_event_data.data = (uint32_t) icmd->ulpContext;
  8087. temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
  8088. if (evt_code == ASYNC_TEMP_WARN) {
  8089. temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
  8090. lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
  8091. "0347 Adapter is very hot, please take "
  8092. "corrective action. temperature : %d Celsius\n",
  8093. (uint32_t) icmd->ulpContext);
  8094. } else {
  8095. temp_event_data.event_code = LPFC_NORMAL_TEMP;
  8096. lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
  8097. "0340 Adapter temperature is OK now. "
  8098. "temperature : %d Celsius\n",
  8099. (uint32_t) icmd->ulpContext);
  8100. }
  8101. /* Send temperature change event to applications */
  8102. shost = lpfc_shost_from_vport(phba->pport);
  8103. fc_host_post_vendor_event(shost, fc_get_event_number(),
  8104. sizeof(temp_event_data), (char *) &temp_event_data,
  8105. LPFC_NL_VENDOR_ID);
  8106. break;
  8107. case ASYNC_STATUS_CN:
  8108. lpfc_sli_abts_err_handler(phba, iocbq);
  8109. break;
  8110. default:
  8111. iocb_w = (uint32_t *) icmd;
  8112. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  8113. "0346 Ring %d handler: unexpected ASYNC_STATUS"
  8114. " evt_code 0x%x\n"
  8115. "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
  8116. "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
  8117. "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
  8118. "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
  8119. pring->ringno, icmd->un.asyncstat.evt_code,
  8120. iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
  8121. iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
  8122. iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
  8123. iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
  8124. break;
  8125. }
  8126. }
  8127. /**
  8128. * lpfc_sli_setup - SLI ring setup function
  8129. * @phba: Pointer to HBA context object.
  8130. *
  8131. * lpfc_sli_setup sets up rings of the SLI interface with
  8132. * number of iocbs per ring and iotags. This function is
  8133. * called while driver attach to the HBA and before the
  8134. * interrupts are enabled. So there is no need for locking.
  8135. *
  8136. * This function always returns 0.
  8137. **/
  8138. int
  8139. lpfc_sli_setup(struct lpfc_hba *phba)
  8140. {
  8141. int i, totiocbsize = 0;
  8142. struct lpfc_sli *psli = &phba->sli;
  8143. struct lpfc_sli_ring *pring;
  8144. psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
  8145. if (phba->sli_rev == LPFC_SLI_REV4)
  8146. psli->num_rings += phba->cfg_fcp_io_channel;
  8147. psli->sli_flag = 0;
  8148. psli->fcp_ring = LPFC_FCP_RING;
  8149. psli->next_ring = LPFC_FCP_NEXT_RING;
  8150. psli->extra_ring = LPFC_EXTRA_RING;
  8151. psli->iocbq_lookup = NULL;
  8152. psli->iocbq_lookup_len = 0;
  8153. psli->last_iotag = 0;
  8154. for (i = 0; i < psli->num_rings; i++) {
  8155. pring = &psli->ring[i];
  8156. switch (i) {
  8157. case LPFC_FCP_RING: /* ring 0 - FCP */
  8158. /* numCiocb and numRiocb are used in config_port */
  8159. pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
  8160. pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
  8161. pring->sli.sli3.numCiocb +=
  8162. SLI2_IOCB_CMD_R1XTRA_ENTRIES;
  8163. pring->sli.sli3.numRiocb +=
  8164. SLI2_IOCB_RSP_R1XTRA_ENTRIES;
  8165. pring->sli.sli3.numCiocb +=
  8166. SLI2_IOCB_CMD_R3XTRA_ENTRIES;
  8167. pring->sli.sli3.numRiocb +=
  8168. SLI2_IOCB_RSP_R3XTRA_ENTRIES;
  8169. pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
  8170. SLI3_IOCB_CMD_SIZE :
  8171. SLI2_IOCB_CMD_SIZE;
  8172. pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
  8173. SLI3_IOCB_RSP_SIZE :
  8174. SLI2_IOCB_RSP_SIZE;
  8175. pring->iotag_ctr = 0;
  8176. pring->iotag_max =
  8177. (phba->cfg_hba_queue_depth * 2);
  8178. pring->fast_iotag = pring->iotag_max;
  8179. pring->num_mask = 0;
  8180. break;
  8181. case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
  8182. /* numCiocb and numRiocb are used in config_port */
  8183. pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
  8184. pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
  8185. pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
  8186. SLI3_IOCB_CMD_SIZE :
  8187. SLI2_IOCB_CMD_SIZE;
  8188. pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
  8189. SLI3_IOCB_RSP_SIZE :
  8190. SLI2_IOCB_RSP_SIZE;
  8191. pring->iotag_max = phba->cfg_hba_queue_depth;
  8192. pring->num_mask = 0;
  8193. break;
  8194. case LPFC_ELS_RING: /* ring 2 - ELS / CT */
  8195. /* numCiocb and numRiocb are used in config_port */
  8196. pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
  8197. pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
  8198. pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
  8199. SLI3_IOCB_CMD_SIZE :
  8200. SLI2_IOCB_CMD_SIZE;
  8201. pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
  8202. SLI3_IOCB_RSP_SIZE :
  8203. SLI2_IOCB_RSP_SIZE;
  8204. pring->fast_iotag = 0;
  8205. pring->iotag_ctr = 0;
  8206. pring->iotag_max = 4096;
  8207. pring->lpfc_sli_rcv_async_status =
  8208. lpfc_sli_async_event_handler;
  8209. pring->num_mask = LPFC_MAX_RING_MASK;
  8210. pring->prt[0].profile = 0; /* Mask 0 */
  8211. pring->prt[0].rctl = FC_RCTL_ELS_REQ;
  8212. pring->prt[0].type = FC_TYPE_ELS;
  8213. pring->prt[0].lpfc_sli_rcv_unsol_event =
  8214. lpfc_els_unsol_event;
  8215. pring->prt[1].profile = 0; /* Mask 1 */
  8216. pring->prt[1].rctl = FC_RCTL_ELS_REP;
  8217. pring->prt[1].type = FC_TYPE_ELS;
  8218. pring->prt[1].lpfc_sli_rcv_unsol_event =
  8219. lpfc_els_unsol_event;
  8220. pring->prt[2].profile = 0; /* Mask 2 */
  8221. /* NameServer Inquiry */
  8222. pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
  8223. /* NameServer */
  8224. pring->prt[2].type = FC_TYPE_CT;
  8225. pring->prt[2].lpfc_sli_rcv_unsol_event =
  8226. lpfc_ct_unsol_event;
  8227. pring->prt[3].profile = 0; /* Mask 3 */
  8228. /* NameServer response */
  8229. pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
  8230. /* NameServer */
  8231. pring->prt[3].type = FC_TYPE_CT;
  8232. pring->prt[3].lpfc_sli_rcv_unsol_event =
  8233. lpfc_ct_unsol_event;
  8234. break;
  8235. }
  8236. totiocbsize += (pring->sli.sli3.numCiocb *
  8237. pring->sli.sli3.sizeCiocb) +
  8238. (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
  8239. }
  8240. if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
  8241. /* Too many cmd / rsp ring entries in SLI2 SLIM */
  8242. printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
  8243. "SLI2 SLIM Data: x%x x%lx\n",
  8244. phba->brd_no, totiocbsize,
  8245. (unsigned long) MAX_SLIM_IOCB_SIZE);
  8246. }
  8247. if (phba->cfg_multi_ring_support == 2)
  8248. lpfc_extra_ring_setup(phba);
  8249. return 0;
  8250. }
  8251. /**
  8252. * lpfc_sli_queue_setup - Queue initialization function
  8253. * @phba: Pointer to HBA context object.
  8254. *
  8255. * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
  8256. * ring. This function also initializes ring indices of each ring.
  8257. * This function is called during the initialization of the SLI
  8258. * interface of an HBA.
  8259. * This function is called with no lock held and always returns
  8260. * 1.
  8261. **/
  8262. int
  8263. lpfc_sli_queue_setup(struct lpfc_hba *phba)
  8264. {
  8265. struct lpfc_sli *psli;
  8266. struct lpfc_sli_ring *pring;
  8267. int i;
  8268. psli = &phba->sli;
  8269. spin_lock_irq(&phba->hbalock);
  8270. INIT_LIST_HEAD(&psli->mboxq);
  8271. INIT_LIST_HEAD(&psli->mboxq_cmpl);
  8272. /* Initialize list headers for txq and txcmplq as double linked lists */
  8273. for (i = 0; i < psli->num_rings; i++) {
  8274. pring = &psli->ring[i];
  8275. pring->ringno = i;
  8276. pring->sli.sli3.next_cmdidx = 0;
  8277. pring->sli.sli3.local_getidx = 0;
  8278. pring->sli.sli3.cmdidx = 0;
  8279. INIT_LIST_HEAD(&pring->txq);
  8280. INIT_LIST_HEAD(&pring->txcmplq);
  8281. INIT_LIST_HEAD(&pring->iocb_continueq);
  8282. INIT_LIST_HEAD(&pring->iocb_continue_saveq);
  8283. INIT_LIST_HEAD(&pring->postbufq);
  8284. spin_lock_init(&pring->ring_lock);
  8285. }
  8286. spin_unlock_irq(&phba->hbalock);
  8287. return 1;
  8288. }
  8289. /**
  8290. * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
  8291. * @phba: Pointer to HBA context object.
  8292. *
  8293. * This routine flushes the mailbox command subsystem. It will unconditionally
  8294. * flush all the mailbox commands in the three possible stages in the mailbox
  8295. * command sub-system: pending mailbox command queue; the outstanding mailbox
  8296. * command; and completed mailbox command queue. It is caller's responsibility
  8297. * to make sure that the driver is in the proper state to flush the mailbox
  8298. * command sub-system. Namely, the posting of mailbox commands into the
  8299. * pending mailbox command queue from the various clients must be stopped;
  8300. * either the HBA is in a state that it will never works on the outstanding
  8301. * mailbox command (such as in EEH or ERATT conditions) or the outstanding
  8302. * mailbox command has been completed.
  8303. **/
  8304. static void
  8305. lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
  8306. {
  8307. LIST_HEAD(completions);
  8308. struct lpfc_sli *psli = &phba->sli;
  8309. LPFC_MBOXQ_t *pmb;
  8310. unsigned long iflag;
  8311. /* Flush all the mailbox commands in the mbox system */
  8312. spin_lock_irqsave(&phba->hbalock, iflag);
  8313. /* The pending mailbox command queue */
  8314. list_splice_init(&phba->sli.mboxq, &completions);
  8315. /* The outstanding active mailbox command */
  8316. if (psli->mbox_active) {
  8317. list_add_tail(&psli->mbox_active->list, &completions);
  8318. psli->mbox_active = NULL;
  8319. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  8320. }
  8321. /* The completed mailbox command queue */
  8322. list_splice_init(&phba->sli.mboxq_cmpl, &completions);
  8323. spin_unlock_irqrestore(&phba->hbalock, iflag);
  8324. /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
  8325. while (!list_empty(&completions)) {
  8326. list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
  8327. pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
  8328. if (pmb->mbox_cmpl)
  8329. pmb->mbox_cmpl(phba, pmb);
  8330. }
  8331. }
  8332. /**
  8333. * lpfc_sli_host_down - Vport cleanup function
  8334. * @vport: Pointer to virtual port object.
  8335. *
  8336. * lpfc_sli_host_down is called to clean up the resources
  8337. * associated with a vport before destroying virtual
  8338. * port data structures.
  8339. * This function does following operations:
  8340. * - Free discovery resources associated with this virtual
  8341. * port.
  8342. * - Free iocbs associated with this virtual port in
  8343. * the txq.
  8344. * - Send abort for all iocb commands associated with this
  8345. * vport in txcmplq.
  8346. *
  8347. * This function is called with no lock held and always returns 1.
  8348. **/
  8349. int
  8350. lpfc_sli_host_down(struct lpfc_vport *vport)
  8351. {
  8352. LIST_HEAD(completions);
  8353. struct lpfc_hba *phba = vport->phba;
  8354. struct lpfc_sli *psli = &phba->sli;
  8355. struct lpfc_sli_ring *pring;
  8356. struct lpfc_iocbq *iocb, *next_iocb;
  8357. int i;
  8358. unsigned long flags = 0;
  8359. uint16_t prev_pring_flag;
  8360. lpfc_cleanup_discovery_resources(vport);
  8361. spin_lock_irqsave(&phba->hbalock, flags);
  8362. for (i = 0; i < psli->num_rings; i++) {
  8363. pring = &psli->ring[i];
  8364. prev_pring_flag = pring->flag;
  8365. /* Only slow rings */
  8366. if (pring->ringno == LPFC_ELS_RING) {
  8367. pring->flag |= LPFC_DEFERRED_RING_EVENT;
  8368. /* Set the lpfc data pending flag */
  8369. set_bit(LPFC_DATA_READY, &phba->data_flags);
  8370. }
  8371. /*
  8372. * Error everything on the txq since these iocbs have not been
  8373. * given to the FW yet.
  8374. */
  8375. list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
  8376. if (iocb->vport != vport)
  8377. continue;
  8378. list_move_tail(&iocb->list, &completions);
  8379. }
  8380. /* Next issue ABTS for everything on the txcmplq */
  8381. list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
  8382. list) {
  8383. if (iocb->vport != vport)
  8384. continue;
  8385. lpfc_sli_issue_abort_iotag(phba, pring, iocb);
  8386. }
  8387. pring->flag = prev_pring_flag;
  8388. }
  8389. spin_unlock_irqrestore(&phba->hbalock, flags);
  8390. /* Cancel all the IOCBs from the completions list */
  8391. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  8392. IOERR_SLI_DOWN);
  8393. return 1;
  8394. }
  8395. /**
  8396. * lpfc_sli_hba_down - Resource cleanup function for the HBA
  8397. * @phba: Pointer to HBA context object.
  8398. *
  8399. * This function cleans up all iocb, buffers, mailbox commands
  8400. * while shutting down the HBA. This function is called with no
  8401. * lock held and always returns 1.
  8402. * This function does the following to cleanup driver resources:
  8403. * - Free discovery resources for each virtual port
  8404. * - Cleanup any pending fabric iocbs
  8405. * - Iterate through the iocb txq and free each entry
  8406. * in the list.
  8407. * - Free up any buffer posted to the HBA
  8408. * - Free mailbox commands in the mailbox queue.
  8409. **/
  8410. int
  8411. lpfc_sli_hba_down(struct lpfc_hba *phba)
  8412. {
  8413. LIST_HEAD(completions);
  8414. struct lpfc_sli *psli = &phba->sli;
  8415. struct lpfc_sli_ring *pring;
  8416. struct lpfc_dmabuf *buf_ptr;
  8417. unsigned long flags = 0;
  8418. int i;
  8419. /* Shutdown the mailbox command sub-system */
  8420. lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
  8421. lpfc_hba_down_prep(phba);
  8422. lpfc_fabric_abort_hba(phba);
  8423. spin_lock_irqsave(&phba->hbalock, flags);
  8424. for (i = 0; i < psli->num_rings; i++) {
  8425. pring = &psli->ring[i];
  8426. /* Only slow rings */
  8427. if (pring->ringno == LPFC_ELS_RING) {
  8428. pring->flag |= LPFC_DEFERRED_RING_EVENT;
  8429. /* Set the lpfc data pending flag */
  8430. set_bit(LPFC_DATA_READY, &phba->data_flags);
  8431. }
  8432. /*
  8433. * Error everything on the txq since these iocbs have not been
  8434. * given to the FW yet.
  8435. */
  8436. list_splice_init(&pring->txq, &completions);
  8437. }
  8438. spin_unlock_irqrestore(&phba->hbalock, flags);
  8439. /* Cancel all the IOCBs from the completions list */
  8440. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  8441. IOERR_SLI_DOWN);
  8442. spin_lock_irqsave(&phba->hbalock, flags);
  8443. list_splice_init(&phba->elsbuf, &completions);
  8444. phba->elsbuf_cnt = 0;
  8445. phba->elsbuf_prev_cnt = 0;
  8446. spin_unlock_irqrestore(&phba->hbalock, flags);
  8447. while (!list_empty(&completions)) {
  8448. list_remove_head(&completions, buf_ptr,
  8449. struct lpfc_dmabuf, list);
  8450. lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
  8451. kfree(buf_ptr);
  8452. }
  8453. /* Return any active mbox cmds */
  8454. del_timer_sync(&psli->mbox_tmo);
  8455. spin_lock_irqsave(&phba->pport->work_port_lock, flags);
  8456. phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
  8457. spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
  8458. return 1;
  8459. }
  8460. /**
  8461. * lpfc_sli_pcimem_bcopy - SLI memory copy function
  8462. * @srcp: Source memory pointer.
  8463. * @destp: Destination memory pointer.
  8464. * @cnt: Number of words required to be copied.
  8465. *
  8466. * This function is used for copying data between driver memory
  8467. * and the SLI memory. This function also changes the endianness
  8468. * of each word if native endianness is different from SLI
  8469. * endianness. This function can be called with or without
  8470. * lock.
  8471. **/
  8472. void
  8473. lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
  8474. {
  8475. uint32_t *src = srcp;
  8476. uint32_t *dest = destp;
  8477. uint32_t ldata;
  8478. int i;
  8479. for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
  8480. ldata = *src;
  8481. ldata = le32_to_cpu(ldata);
  8482. *dest = ldata;
  8483. src++;
  8484. dest++;
  8485. }
  8486. }
  8487. /**
  8488. * lpfc_sli_bemem_bcopy - SLI memory copy function
  8489. * @srcp: Source memory pointer.
  8490. * @destp: Destination memory pointer.
  8491. * @cnt: Number of words required to be copied.
  8492. *
  8493. * This function is used for copying data between a data structure
  8494. * with big endian representation to local endianness.
  8495. * This function can be called with or without lock.
  8496. **/
  8497. void
  8498. lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
  8499. {
  8500. uint32_t *src = srcp;
  8501. uint32_t *dest = destp;
  8502. uint32_t ldata;
  8503. int i;
  8504. for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
  8505. ldata = *src;
  8506. ldata = be32_to_cpu(ldata);
  8507. *dest = ldata;
  8508. src++;
  8509. dest++;
  8510. }
  8511. }
  8512. /**
  8513. * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
  8514. * @phba: Pointer to HBA context object.
  8515. * @pring: Pointer to driver SLI ring object.
  8516. * @mp: Pointer to driver buffer object.
  8517. *
  8518. * This function is called with no lock held.
  8519. * It always return zero after adding the buffer to the postbufq
  8520. * buffer list.
  8521. **/
  8522. int
  8523. lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8524. struct lpfc_dmabuf *mp)
  8525. {
  8526. /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
  8527. later */
  8528. spin_lock_irq(&phba->hbalock);
  8529. list_add_tail(&mp->list, &pring->postbufq);
  8530. pring->postbufq_cnt++;
  8531. spin_unlock_irq(&phba->hbalock);
  8532. return 0;
  8533. }
  8534. /**
  8535. * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
  8536. * @phba: Pointer to HBA context object.
  8537. *
  8538. * When HBQ is enabled, buffers are searched based on tags. This function
  8539. * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
  8540. * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
  8541. * does not conflict with tags of buffer posted for unsolicited events.
  8542. * The function returns the allocated tag. The function is called with
  8543. * no locks held.
  8544. **/
  8545. uint32_t
  8546. lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
  8547. {
  8548. spin_lock_irq(&phba->hbalock);
  8549. phba->buffer_tag_count++;
  8550. /*
  8551. * Always set the QUE_BUFTAG_BIT to distiguish between
  8552. * a tag assigned by HBQ.
  8553. */
  8554. phba->buffer_tag_count |= QUE_BUFTAG_BIT;
  8555. spin_unlock_irq(&phba->hbalock);
  8556. return phba->buffer_tag_count;
  8557. }
  8558. /**
  8559. * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
  8560. * @phba: Pointer to HBA context object.
  8561. * @pring: Pointer to driver SLI ring object.
  8562. * @tag: Buffer tag.
  8563. *
  8564. * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
  8565. * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
  8566. * iocb is posted to the response ring with the tag of the buffer.
  8567. * This function searches the pring->postbufq list using the tag
  8568. * to find buffer associated with CMD_IOCB_RET_XRI64_CX
  8569. * iocb. If the buffer is found then lpfc_dmabuf object of the
  8570. * buffer is returned to the caller else NULL is returned.
  8571. * This function is called with no lock held.
  8572. **/
  8573. struct lpfc_dmabuf *
  8574. lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8575. uint32_t tag)
  8576. {
  8577. struct lpfc_dmabuf *mp, *next_mp;
  8578. struct list_head *slp = &pring->postbufq;
  8579. /* Search postbufq, from the beginning, looking for a match on tag */
  8580. spin_lock_irq(&phba->hbalock);
  8581. list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
  8582. if (mp->buffer_tag == tag) {
  8583. list_del_init(&mp->list);
  8584. pring->postbufq_cnt--;
  8585. spin_unlock_irq(&phba->hbalock);
  8586. return mp;
  8587. }
  8588. }
  8589. spin_unlock_irq(&phba->hbalock);
  8590. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  8591. "0402 Cannot find virtual addr for buffer tag on "
  8592. "ring %d Data x%lx x%p x%p x%x\n",
  8593. pring->ringno, (unsigned long) tag,
  8594. slp->next, slp->prev, pring->postbufq_cnt);
  8595. return NULL;
  8596. }
  8597. /**
  8598. * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
  8599. * @phba: Pointer to HBA context object.
  8600. * @pring: Pointer to driver SLI ring object.
  8601. * @phys: DMA address of the buffer.
  8602. *
  8603. * This function searches the buffer list using the dma_address
  8604. * of unsolicited event to find the driver's lpfc_dmabuf object
  8605. * corresponding to the dma_address. The function returns the
  8606. * lpfc_dmabuf object if a buffer is found else it returns NULL.
  8607. * This function is called by the ct and els unsolicited event
  8608. * handlers to get the buffer associated with the unsolicited
  8609. * event.
  8610. *
  8611. * This function is called with no lock held.
  8612. **/
  8613. struct lpfc_dmabuf *
  8614. lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8615. dma_addr_t phys)
  8616. {
  8617. struct lpfc_dmabuf *mp, *next_mp;
  8618. struct list_head *slp = &pring->postbufq;
  8619. /* Search postbufq, from the beginning, looking for a match on phys */
  8620. spin_lock_irq(&phba->hbalock);
  8621. list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
  8622. if (mp->phys == phys) {
  8623. list_del_init(&mp->list);
  8624. pring->postbufq_cnt--;
  8625. spin_unlock_irq(&phba->hbalock);
  8626. return mp;
  8627. }
  8628. }
  8629. spin_unlock_irq(&phba->hbalock);
  8630. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  8631. "0410 Cannot find virtual addr for mapped buf on "
  8632. "ring %d Data x%llx x%p x%p x%x\n",
  8633. pring->ringno, (unsigned long long)phys,
  8634. slp->next, slp->prev, pring->postbufq_cnt);
  8635. return NULL;
  8636. }
  8637. /**
  8638. * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
  8639. * @phba: Pointer to HBA context object.
  8640. * @cmdiocb: Pointer to driver command iocb object.
  8641. * @rspiocb: Pointer to driver response iocb object.
  8642. *
  8643. * This function is the completion handler for the abort iocbs for
  8644. * ELS commands. This function is called from the ELS ring event
  8645. * handler with no lock held. This function frees memory resources
  8646. * associated with the abort iocb.
  8647. **/
  8648. static void
  8649. lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
  8650. struct lpfc_iocbq *rspiocb)
  8651. {
  8652. IOCB_t *irsp = &rspiocb->iocb;
  8653. uint16_t abort_iotag, abort_context;
  8654. struct lpfc_iocbq *abort_iocb = NULL;
  8655. if (irsp->ulpStatus) {
  8656. /*
  8657. * Assume that the port already completed and returned, or
  8658. * will return the iocb. Just Log the message.
  8659. */
  8660. abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
  8661. abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
  8662. spin_lock_irq(&phba->hbalock);
  8663. if (phba->sli_rev < LPFC_SLI_REV4) {
  8664. if (abort_iotag != 0 &&
  8665. abort_iotag <= phba->sli.last_iotag)
  8666. abort_iocb =
  8667. phba->sli.iocbq_lookup[abort_iotag];
  8668. } else
  8669. /* For sli4 the abort_tag is the XRI,
  8670. * so the abort routine puts the iotag of the iocb
  8671. * being aborted in the context field of the abort
  8672. * IOCB.
  8673. */
  8674. abort_iocb = phba->sli.iocbq_lookup[abort_context];
  8675. lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
  8676. "0327 Cannot abort els iocb %p "
  8677. "with tag %x context %x, abort status %x, "
  8678. "abort code %x\n",
  8679. abort_iocb, abort_iotag, abort_context,
  8680. irsp->ulpStatus, irsp->un.ulpWord[4]);
  8681. spin_unlock_irq(&phba->hbalock);
  8682. }
  8683. lpfc_sli_release_iocbq(phba, cmdiocb);
  8684. return;
  8685. }
  8686. /**
  8687. * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
  8688. * @phba: Pointer to HBA context object.
  8689. * @cmdiocb: Pointer to driver command iocb object.
  8690. * @rspiocb: Pointer to driver response iocb object.
  8691. *
  8692. * The function is called from SLI ring event handler with no
  8693. * lock held. This function is the completion handler for ELS commands
  8694. * which are aborted. The function frees memory resources used for
  8695. * the aborted ELS commands.
  8696. **/
  8697. static void
  8698. lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
  8699. struct lpfc_iocbq *rspiocb)
  8700. {
  8701. IOCB_t *irsp = &rspiocb->iocb;
  8702. /* ELS cmd tag <ulpIoTag> completes */
  8703. lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
  8704. "0139 Ignoring ELS cmd tag x%x completion Data: "
  8705. "x%x x%x x%x\n",
  8706. irsp->ulpIoTag, irsp->ulpStatus,
  8707. irsp->un.ulpWord[4], irsp->ulpTimeout);
  8708. if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
  8709. lpfc_ct_free_iocb(phba, cmdiocb);
  8710. else
  8711. lpfc_els_free_iocb(phba, cmdiocb);
  8712. return;
  8713. }
  8714. /**
  8715. * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
  8716. * @phba: Pointer to HBA context object.
  8717. * @pring: Pointer to driver SLI ring object.
  8718. * @cmdiocb: Pointer to driver command iocb object.
  8719. *
  8720. * This function issues an abort iocb for the provided command iocb down to
  8721. * the port. Other than the case the outstanding command iocb is an abort
  8722. * request, this function issues abort out unconditionally. This function is
  8723. * called with hbalock held. The function returns 0 when it fails due to
  8724. * memory allocation failure or when the command iocb is an abort request.
  8725. **/
  8726. static int
  8727. lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8728. struct lpfc_iocbq *cmdiocb)
  8729. {
  8730. struct lpfc_vport *vport = cmdiocb->vport;
  8731. struct lpfc_iocbq *abtsiocbp;
  8732. IOCB_t *icmd = NULL;
  8733. IOCB_t *iabt = NULL;
  8734. int retval;
  8735. unsigned long iflags;
  8736. /*
  8737. * There are certain command types we don't want to abort. And we
  8738. * don't want to abort commands that are already in the process of
  8739. * being aborted.
  8740. */
  8741. icmd = &cmdiocb->iocb;
  8742. if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
  8743. icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
  8744. (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
  8745. return 0;
  8746. /* issue ABTS for this IOCB based on iotag */
  8747. abtsiocbp = __lpfc_sli_get_iocbq(phba);
  8748. if (abtsiocbp == NULL)
  8749. return 0;
  8750. /* This signals the response to set the correct status
  8751. * before calling the completion handler
  8752. */
  8753. cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
  8754. iabt = &abtsiocbp->iocb;
  8755. iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
  8756. iabt->un.acxri.abortContextTag = icmd->ulpContext;
  8757. if (phba->sli_rev == LPFC_SLI_REV4) {
  8758. iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
  8759. iabt->un.acxri.abortContextTag = cmdiocb->iotag;
  8760. }
  8761. else
  8762. iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
  8763. iabt->ulpLe = 1;
  8764. iabt->ulpClass = icmd->ulpClass;
  8765. /* ABTS WQE must go to the same WQ as the WQE to be aborted */
  8766. abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
  8767. if (cmdiocb->iocb_flag & LPFC_IO_FCP)
  8768. abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
  8769. if (phba->link_state >= LPFC_LINK_UP)
  8770. iabt->ulpCommand = CMD_ABORT_XRI_CN;
  8771. else
  8772. iabt->ulpCommand = CMD_CLOSE_XRI_CN;
  8773. abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
  8774. lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
  8775. "0339 Abort xri x%x, original iotag x%x, "
  8776. "abort cmd iotag x%x\n",
  8777. iabt->un.acxri.abortIoTag,
  8778. iabt->un.acxri.abortContextTag,
  8779. abtsiocbp->iotag);
  8780. if (phba->sli_rev == LPFC_SLI_REV4) {
  8781. /* Note: both hbalock and ring_lock need to be set here */
  8782. spin_lock_irqsave(&pring->ring_lock, iflags);
  8783. retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
  8784. abtsiocbp, 0);
  8785. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  8786. } else {
  8787. retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
  8788. abtsiocbp, 0);
  8789. }
  8790. if (retval)
  8791. __lpfc_sli_release_iocbq(phba, abtsiocbp);
  8792. /*
  8793. * Caller to this routine should check for IOCB_ERROR
  8794. * and handle it properly. This routine no longer removes
  8795. * iocb off txcmplq and call compl in case of IOCB_ERROR.
  8796. */
  8797. return retval;
  8798. }
  8799. /**
  8800. * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
  8801. * @phba: Pointer to HBA context object.
  8802. * @pring: Pointer to driver SLI ring object.
  8803. * @cmdiocb: Pointer to driver command iocb object.
  8804. *
  8805. * This function issues an abort iocb for the provided command iocb. In case
  8806. * of unloading, the abort iocb will not be issued to commands on the ELS
  8807. * ring. Instead, the callback function shall be changed to those commands
  8808. * so that nothing happens when them finishes. This function is called with
  8809. * hbalock held. The function returns 0 when the command iocb is an abort
  8810. * request.
  8811. **/
  8812. int
  8813. lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8814. struct lpfc_iocbq *cmdiocb)
  8815. {
  8816. struct lpfc_vport *vport = cmdiocb->vport;
  8817. int retval = IOCB_ERROR;
  8818. IOCB_t *icmd = NULL;
  8819. /*
  8820. * There are certain command types we don't want to abort. And we
  8821. * don't want to abort commands that are already in the process of
  8822. * being aborted.
  8823. */
  8824. icmd = &cmdiocb->iocb;
  8825. if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
  8826. icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
  8827. (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
  8828. return 0;
  8829. /*
  8830. * If we're unloading, don't abort iocb on the ELS ring, but change
  8831. * the callback so that nothing happens when it finishes.
  8832. */
  8833. if ((vport->load_flag & FC_UNLOADING) &&
  8834. (pring->ringno == LPFC_ELS_RING)) {
  8835. if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
  8836. cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
  8837. else
  8838. cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
  8839. goto abort_iotag_exit;
  8840. }
  8841. /* Now, we try to issue the abort to the cmdiocb out */
  8842. retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
  8843. abort_iotag_exit:
  8844. /*
  8845. * Caller to this routine should check for IOCB_ERROR
  8846. * and handle it properly. This routine no longer removes
  8847. * iocb off txcmplq and call compl in case of IOCB_ERROR.
  8848. */
  8849. return retval;
  8850. }
  8851. /**
  8852. * lpfc_sli_iocb_ring_abort - Unconditionally abort all iocbs on an iocb ring
  8853. * @phba: Pointer to HBA context object.
  8854. * @pring: Pointer to driver SLI ring object.
  8855. *
  8856. * This function aborts all iocbs in the given ring and frees all the iocb
  8857. * objects in txq. This function issues abort iocbs unconditionally for all
  8858. * the iocb commands in txcmplq. The iocbs in the txcmplq is not guaranteed
  8859. * to complete before the return of this function. The caller is not required
  8860. * to hold any locks.
  8861. **/
  8862. static void
  8863. lpfc_sli_iocb_ring_abort(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  8864. {
  8865. LIST_HEAD(completions);
  8866. struct lpfc_iocbq *iocb, *next_iocb;
  8867. if (pring->ringno == LPFC_ELS_RING)
  8868. lpfc_fabric_abort_hba(phba);
  8869. spin_lock_irq(&phba->hbalock);
  8870. /* Take off all the iocbs on txq for cancelling */
  8871. list_splice_init(&pring->txq, &completions);
  8872. pring->txq_cnt = 0;
  8873. /* Next issue ABTS for everything on the txcmplq */
  8874. list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
  8875. lpfc_sli_abort_iotag_issue(phba, pring, iocb);
  8876. spin_unlock_irq(&phba->hbalock);
  8877. /* Cancel all the IOCBs from the completions list */
  8878. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  8879. IOERR_SLI_ABORTED);
  8880. }
  8881. /**
  8882. * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
  8883. * @phba: pointer to lpfc HBA data structure.
  8884. *
  8885. * This routine will abort all pending and outstanding iocbs to an HBA.
  8886. **/
  8887. void
  8888. lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
  8889. {
  8890. struct lpfc_sli *psli = &phba->sli;
  8891. struct lpfc_sli_ring *pring;
  8892. int i;
  8893. for (i = 0; i < psli->num_rings; i++) {
  8894. pring = &psli->ring[i];
  8895. lpfc_sli_iocb_ring_abort(phba, pring);
  8896. }
  8897. }
  8898. /**
  8899. * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
  8900. * @iocbq: Pointer to driver iocb object.
  8901. * @vport: Pointer to driver virtual port object.
  8902. * @tgt_id: SCSI ID of the target.
  8903. * @lun_id: LUN ID of the scsi device.
  8904. * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
  8905. *
  8906. * This function acts as an iocb filter for functions which abort or count
  8907. * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
  8908. * 0 if the filtering criteria is met for the given iocb and will return
  8909. * 1 if the filtering criteria is not met.
  8910. * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
  8911. * given iocb is for the SCSI device specified by vport, tgt_id and
  8912. * lun_id parameter.
  8913. * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
  8914. * given iocb is for the SCSI target specified by vport and tgt_id
  8915. * parameters.
  8916. * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
  8917. * given iocb is for the SCSI host associated with the given vport.
  8918. * This function is called with no locks held.
  8919. **/
  8920. static int
  8921. lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
  8922. uint16_t tgt_id, uint64_t lun_id,
  8923. lpfc_ctx_cmd ctx_cmd)
  8924. {
  8925. struct lpfc_scsi_buf *lpfc_cmd;
  8926. int rc = 1;
  8927. if (!(iocbq->iocb_flag & LPFC_IO_FCP))
  8928. return rc;
  8929. if (iocbq->vport != vport)
  8930. return rc;
  8931. lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
  8932. if (lpfc_cmd->pCmd == NULL)
  8933. return rc;
  8934. switch (ctx_cmd) {
  8935. case LPFC_CTX_LUN:
  8936. if ((lpfc_cmd->rdata->pnode) &&
  8937. (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
  8938. (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
  8939. rc = 0;
  8940. break;
  8941. case LPFC_CTX_TGT:
  8942. if ((lpfc_cmd->rdata->pnode) &&
  8943. (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
  8944. rc = 0;
  8945. break;
  8946. case LPFC_CTX_HOST:
  8947. rc = 0;
  8948. break;
  8949. default:
  8950. printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
  8951. __func__, ctx_cmd);
  8952. break;
  8953. }
  8954. return rc;
  8955. }
  8956. /**
  8957. * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
  8958. * @vport: Pointer to virtual port.
  8959. * @tgt_id: SCSI ID of the target.
  8960. * @lun_id: LUN ID of the scsi device.
  8961. * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
  8962. *
  8963. * This function returns number of FCP commands pending for the vport.
  8964. * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
  8965. * commands pending on the vport associated with SCSI device specified
  8966. * by tgt_id and lun_id parameters.
  8967. * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
  8968. * commands pending on the vport associated with SCSI target specified
  8969. * by tgt_id parameter.
  8970. * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
  8971. * commands pending on the vport.
  8972. * This function returns the number of iocbs which satisfy the filter.
  8973. * This function is called without any lock held.
  8974. **/
  8975. int
  8976. lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
  8977. lpfc_ctx_cmd ctx_cmd)
  8978. {
  8979. struct lpfc_hba *phba = vport->phba;
  8980. struct lpfc_iocbq *iocbq;
  8981. int sum, i;
  8982. for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
  8983. iocbq = phba->sli.iocbq_lookup[i];
  8984. if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
  8985. ctx_cmd) == 0)
  8986. sum++;
  8987. }
  8988. return sum;
  8989. }
  8990. /**
  8991. * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
  8992. * @phba: Pointer to HBA context object
  8993. * @cmdiocb: Pointer to command iocb object.
  8994. * @rspiocb: Pointer to response iocb object.
  8995. *
  8996. * This function is called when an aborted FCP iocb completes. This
  8997. * function is called by the ring event handler with no lock held.
  8998. * This function frees the iocb.
  8999. **/
  9000. void
  9001. lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
  9002. struct lpfc_iocbq *rspiocb)
  9003. {
  9004. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  9005. "3096 ABORT_XRI_CN completing on rpi x%x "
  9006. "original iotag x%x, abort cmd iotag x%x "
  9007. "status 0x%x, reason 0x%x\n",
  9008. cmdiocb->iocb.un.acxri.abortContextTag,
  9009. cmdiocb->iocb.un.acxri.abortIoTag,
  9010. cmdiocb->iotag, rspiocb->iocb.ulpStatus,
  9011. rspiocb->iocb.un.ulpWord[4]);
  9012. lpfc_sli_release_iocbq(phba, cmdiocb);
  9013. return;
  9014. }
  9015. /**
  9016. * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
  9017. * @vport: Pointer to virtual port.
  9018. * @pring: Pointer to driver SLI ring object.
  9019. * @tgt_id: SCSI ID of the target.
  9020. * @lun_id: LUN ID of the scsi device.
  9021. * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
  9022. *
  9023. * This function sends an abort command for every SCSI command
  9024. * associated with the given virtual port pending on the ring
  9025. * filtered by lpfc_sli_validate_fcp_iocb function.
  9026. * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
  9027. * FCP iocbs associated with lun specified by tgt_id and lun_id
  9028. * parameters
  9029. * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
  9030. * FCP iocbs associated with SCSI target specified by tgt_id parameter.
  9031. * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
  9032. * FCP iocbs associated with virtual port.
  9033. * This function returns number of iocbs it failed to abort.
  9034. * This function is called with no locks held.
  9035. **/
  9036. int
  9037. lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
  9038. uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
  9039. {
  9040. struct lpfc_hba *phba = vport->phba;
  9041. struct lpfc_iocbq *iocbq;
  9042. struct lpfc_iocbq *abtsiocb;
  9043. IOCB_t *cmd = NULL;
  9044. int errcnt = 0, ret_val = 0;
  9045. int i;
  9046. for (i = 1; i <= phba->sli.last_iotag; i++) {
  9047. iocbq = phba->sli.iocbq_lookup[i];
  9048. if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
  9049. abort_cmd) != 0)
  9050. continue;
  9051. /*
  9052. * If the iocbq is already being aborted, don't take a second
  9053. * action, but do count it.
  9054. */
  9055. if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
  9056. continue;
  9057. /* issue ABTS for this IOCB based on iotag */
  9058. abtsiocb = lpfc_sli_get_iocbq(phba);
  9059. if (abtsiocb == NULL) {
  9060. errcnt++;
  9061. continue;
  9062. }
  9063. /* indicate the IO is being aborted by the driver. */
  9064. iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
  9065. cmd = &iocbq->iocb;
  9066. abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
  9067. abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
  9068. if (phba->sli_rev == LPFC_SLI_REV4)
  9069. abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
  9070. else
  9071. abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
  9072. abtsiocb->iocb.ulpLe = 1;
  9073. abtsiocb->iocb.ulpClass = cmd->ulpClass;
  9074. abtsiocb->vport = vport;
  9075. /* ABTS WQE must go to the same WQ as the WQE to be aborted */
  9076. abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
  9077. if (iocbq->iocb_flag & LPFC_IO_FCP)
  9078. abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
  9079. if (lpfc_is_link_up(phba))
  9080. abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
  9081. else
  9082. abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
  9083. /* Setup callback routine and issue the command. */
  9084. abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
  9085. ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
  9086. abtsiocb, 0);
  9087. if (ret_val == IOCB_ERROR) {
  9088. lpfc_sli_release_iocbq(phba, abtsiocb);
  9089. errcnt++;
  9090. continue;
  9091. }
  9092. }
  9093. return errcnt;
  9094. }
  9095. /**
  9096. * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
  9097. * @phba: Pointer to HBA context object.
  9098. * @cmdiocbq: Pointer to command iocb.
  9099. * @rspiocbq: Pointer to response iocb.
  9100. *
  9101. * This function is the completion handler for iocbs issued using
  9102. * lpfc_sli_issue_iocb_wait function. This function is called by the
  9103. * ring event handler function without any lock held. This function
  9104. * can be called from both worker thread context and interrupt
  9105. * context. This function also can be called from other thread which
  9106. * cleans up the SLI layer objects.
  9107. * This function copy the contents of the response iocb to the
  9108. * response iocb memory object provided by the caller of
  9109. * lpfc_sli_issue_iocb_wait and then wakes up the thread which
  9110. * sleeps for the iocb completion.
  9111. **/
  9112. static void
  9113. lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
  9114. struct lpfc_iocbq *cmdiocbq,
  9115. struct lpfc_iocbq *rspiocbq)
  9116. {
  9117. wait_queue_head_t *pdone_q;
  9118. unsigned long iflags;
  9119. struct lpfc_scsi_buf *lpfc_cmd;
  9120. spin_lock_irqsave(&phba->hbalock, iflags);
  9121. if (cmdiocbq->iocb_flag & LPFC_IO_WAKE_TMO) {
  9122. /*
  9123. * A time out has occurred for the iocb. If a time out
  9124. * completion handler has been supplied, call it. Otherwise,
  9125. * just free the iocbq.
  9126. */
  9127. spin_unlock_irqrestore(&phba->hbalock, iflags);
  9128. cmdiocbq->iocb_cmpl = cmdiocbq->wait_iocb_cmpl;
  9129. cmdiocbq->wait_iocb_cmpl = NULL;
  9130. if (cmdiocbq->iocb_cmpl)
  9131. (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, NULL);
  9132. else
  9133. lpfc_sli_release_iocbq(phba, cmdiocbq);
  9134. return;
  9135. }
  9136. cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
  9137. if (cmdiocbq->context2 && rspiocbq)
  9138. memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
  9139. &rspiocbq->iocb, sizeof(IOCB_t));
  9140. /* Set the exchange busy flag for task management commands */
  9141. if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
  9142. !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
  9143. lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
  9144. cur_iocbq);
  9145. lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
  9146. }
  9147. pdone_q = cmdiocbq->context_un.wait_queue;
  9148. if (pdone_q)
  9149. wake_up(pdone_q);
  9150. spin_unlock_irqrestore(&phba->hbalock, iflags);
  9151. return;
  9152. }
  9153. /**
  9154. * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
  9155. * @phba: Pointer to HBA context object..
  9156. * @piocbq: Pointer to command iocb.
  9157. * @flag: Flag to test.
  9158. *
  9159. * This routine grabs the hbalock and then test the iocb_flag to
  9160. * see if the passed in flag is set.
  9161. * Returns:
  9162. * 1 if flag is set.
  9163. * 0 if flag is not set.
  9164. **/
  9165. static int
  9166. lpfc_chk_iocb_flg(struct lpfc_hba *phba,
  9167. struct lpfc_iocbq *piocbq, uint32_t flag)
  9168. {
  9169. unsigned long iflags;
  9170. int ret;
  9171. spin_lock_irqsave(&phba->hbalock, iflags);
  9172. ret = piocbq->iocb_flag & flag;
  9173. spin_unlock_irqrestore(&phba->hbalock, iflags);
  9174. return ret;
  9175. }
  9176. /**
  9177. * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
  9178. * @phba: Pointer to HBA context object..
  9179. * @pring: Pointer to sli ring.
  9180. * @piocb: Pointer to command iocb.
  9181. * @prspiocbq: Pointer to response iocb.
  9182. * @timeout: Timeout in number of seconds.
  9183. *
  9184. * This function issues the iocb to firmware and waits for the
  9185. * iocb to complete. The iocb_cmpl field of the shall be used
  9186. * to handle iocbs which time out. If the field is NULL, the
  9187. * function shall free the iocbq structure. If more clean up is
  9188. * needed, the caller is expected to provide a completion function
  9189. * that will provide the needed clean up. If the iocb command is
  9190. * not completed within timeout seconds, the function will either
  9191. * free the iocbq structure (if iocb_cmpl == NULL) or execute the
  9192. * completion function set in the iocb_cmpl field and then return
  9193. * a status of IOCB_TIMEDOUT. The caller should not free the iocb
  9194. * resources if this function returns IOCB_TIMEDOUT.
  9195. * The function waits for the iocb completion using an
  9196. * non-interruptible wait.
  9197. * This function will sleep while waiting for iocb completion.
  9198. * So, this function should not be called from any context which
  9199. * does not allow sleeping. Due to the same reason, this function
  9200. * cannot be called with interrupt disabled.
  9201. * This function assumes that the iocb completions occur while
  9202. * this function sleep. So, this function cannot be called from
  9203. * the thread which process iocb completion for this ring.
  9204. * This function clears the iocb_flag of the iocb object before
  9205. * issuing the iocb and the iocb completion handler sets this
  9206. * flag and wakes this thread when the iocb completes.
  9207. * The contents of the response iocb will be copied to prspiocbq
  9208. * by the completion handler when the command completes.
  9209. * This function returns IOCB_SUCCESS when success.
  9210. * This function is called with no lock held.
  9211. **/
  9212. int
  9213. lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
  9214. uint32_t ring_number,
  9215. struct lpfc_iocbq *piocb,
  9216. struct lpfc_iocbq *prspiocbq,
  9217. uint32_t timeout)
  9218. {
  9219. DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
  9220. long timeleft, timeout_req = 0;
  9221. int retval = IOCB_SUCCESS;
  9222. uint32_t creg_val;
  9223. struct lpfc_iocbq *iocb;
  9224. int txq_cnt = 0;
  9225. int txcmplq_cnt = 0;
  9226. struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
  9227. unsigned long iflags;
  9228. bool iocb_completed = true;
  9229. /*
  9230. * If the caller has provided a response iocbq buffer, then context2
  9231. * is NULL or its an error.
  9232. */
  9233. if (prspiocbq) {
  9234. if (piocb->context2)
  9235. return IOCB_ERROR;
  9236. piocb->context2 = prspiocbq;
  9237. }
  9238. piocb->wait_iocb_cmpl = piocb->iocb_cmpl;
  9239. piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
  9240. piocb->context_un.wait_queue = &done_q;
  9241. piocb->iocb_flag &= ~(LPFC_IO_WAKE | LPFC_IO_WAKE_TMO);
  9242. if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
  9243. if (lpfc_readl(phba->HCregaddr, &creg_val))
  9244. return IOCB_ERROR;
  9245. creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
  9246. writel(creg_val, phba->HCregaddr);
  9247. readl(phba->HCregaddr); /* flush */
  9248. }
  9249. retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
  9250. SLI_IOCB_RET_IOCB);
  9251. if (retval == IOCB_SUCCESS) {
  9252. timeout_req = msecs_to_jiffies(timeout * 1000);
  9253. timeleft = wait_event_timeout(done_q,
  9254. lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
  9255. timeout_req);
  9256. spin_lock_irqsave(&phba->hbalock, iflags);
  9257. if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
  9258. /*
  9259. * IOCB timed out. Inform the wake iocb wait
  9260. * completion function and set local status
  9261. */
  9262. iocb_completed = false;
  9263. piocb->iocb_flag |= LPFC_IO_WAKE_TMO;
  9264. }
  9265. spin_unlock_irqrestore(&phba->hbalock, iflags);
  9266. if (iocb_completed) {
  9267. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  9268. "0331 IOCB wake signaled\n");
  9269. } else if (timeleft == 0) {
  9270. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  9271. "0338 IOCB wait timeout error - no "
  9272. "wake response Data x%x\n", timeout);
  9273. retval = IOCB_TIMEDOUT;
  9274. } else {
  9275. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  9276. "0330 IOCB wake NOT set, "
  9277. "Data x%x x%lx\n",
  9278. timeout, (timeleft / jiffies));
  9279. retval = IOCB_TIMEDOUT;
  9280. }
  9281. } else if (retval == IOCB_BUSY) {
  9282. if (phba->cfg_log_verbose & LOG_SLI) {
  9283. list_for_each_entry(iocb, &pring->txq, list) {
  9284. txq_cnt++;
  9285. }
  9286. list_for_each_entry(iocb, &pring->txcmplq, list) {
  9287. txcmplq_cnt++;
  9288. }
  9289. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  9290. "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
  9291. phba->iocb_cnt, txq_cnt, txcmplq_cnt);
  9292. }
  9293. return retval;
  9294. } else {
  9295. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  9296. "0332 IOCB wait issue failed, Data x%x\n",
  9297. retval);
  9298. retval = IOCB_ERROR;
  9299. }
  9300. if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
  9301. if (lpfc_readl(phba->HCregaddr, &creg_val))
  9302. return IOCB_ERROR;
  9303. creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
  9304. writel(creg_val, phba->HCregaddr);
  9305. readl(phba->HCregaddr); /* flush */
  9306. }
  9307. if (prspiocbq)
  9308. piocb->context2 = NULL;
  9309. piocb->context_un.wait_queue = NULL;
  9310. piocb->iocb_cmpl = NULL;
  9311. return retval;
  9312. }
  9313. /**
  9314. * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
  9315. * @phba: Pointer to HBA context object.
  9316. * @pmboxq: Pointer to driver mailbox object.
  9317. * @timeout: Timeout in number of seconds.
  9318. *
  9319. * This function issues the mailbox to firmware and waits for the
  9320. * mailbox command to complete. If the mailbox command is not
  9321. * completed within timeout seconds, it returns MBX_TIMEOUT.
  9322. * The function waits for the mailbox completion using an
  9323. * interruptible wait. If the thread is woken up due to a
  9324. * signal, MBX_TIMEOUT error is returned to the caller. Caller
  9325. * should not free the mailbox resources, if this function returns
  9326. * MBX_TIMEOUT.
  9327. * This function will sleep while waiting for mailbox completion.
  9328. * So, this function should not be called from any context which
  9329. * does not allow sleeping. Due to the same reason, this function
  9330. * cannot be called with interrupt disabled.
  9331. * This function assumes that the mailbox completion occurs while
  9332. * this function sleep. So, this function cannot be called from
  9333. * the worker thread which processes mailbox completion.
  9334. * This function is called in the context of HBA management
  9335. * applications.
  9336. * This function returns MBX_SUCCESS when successful.
  9337. * This function is called with no lock held.
  9338. **/
  9339. int
  9340. lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
  9341. uint32_t timeout)
  9342. {
  9343. DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
  9344. MAILBOX_t *mb = NULL;
  9345. int retval;
  9346. unsigned long flag;
  9347. /* The caller might set context1 for extended buffer */
  9348. if (pmboxq->context1)
  9349. mb = (MAILBOX_t *)pmboxq->context1;
  9350. pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
  9351. /* setup wake call as IOCB callback */
  9352. pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
  9353. /* setup context field to pass wait_queue pointer to wake function */
  9354. pmboxq->context1 = &done_q;
  9355. /* now issue the command */
  9356. retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
  9357. if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
  9358. wait_event_interruptible_timeout(done_q,
  9359. pmboxq->mbox_flag & LPFC_MBX_WAKE,
  9360. msecs_to_jiffies(timeout * 1000));
  9361. spin_lock_irqsave(&phba->hbalock, flag);
  9362. /* restore the possible extended buffer for free resource */
  9363. pmboxq->context1 = (uint8_t *)mb;
  9364. /*
  9365. * if LPFC_MBX_WAKE flag is set the mailbox is completed
  9366. * else do not free the resources.
  9367. */
  9368. if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
  9369. retval = MBX_SUCCESS;
  9370. } else {
  9371. retval = MBX_TIMEOUT;
  9372. pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  9373. }
  9374. spin_unlock_irqrestore(&phba->hbalock, flag);
  9375. } else {
  9376. /* restore the possible extended buffer for free resource */
  9377. pmboxq->context1 = (uint8_t *)mb;
  9378. }
  9379. return retval;
  9380. }
  9381. /**
  9382. * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
  9383. * @phba: Pointer to HBA context.
  9384. *
  9385. * This function is called to shutdown the driver's mailbox sub-system.
  9386. * It first marks the mailbox sub-system is in a block state to prevent
  9387. * the asynchronous mailbox command from issued off the pending mailbox
  9388. * command queue. If the mailbox command sub-system shutdown is due to
  9389. * HBA error conditions such as EEH or ERATT, this routine shall invoke
  9390. * the mailbox sub-system flush routine to forcefully bring down the
  9391. * mailbox sub-system. Otherwise, if it is due to normal condition (such
  9392. * as with offline or HBA function reset), this routine will wait for the
  9393. * outstanding mailbox command to complete before invoking the mailbox
  9394. * sub-system flush routine to gracefully bring down mailbox sub-system.
  9395. **/
  9396. void
  9397. lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
  9398. {
  9399. struct lpfc_sli *psli = &phba->sli;
  9400. unsigned long timeout;
  9401. if (mbx_action == LPFC_MBX_NO_WAIT) {
  9402. /* delay 100ms for port state */
  9403. msleep(100);
  9404. lpfc_sli_mbox_sys_flush(phba);
  9405. return;
  9406. }
  9407. timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
  9408. spin_lock_irq(&phba->hbalock);
  9409. psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
  9410. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  9411. /* Determine how long we might wait for the active mailbox
  9412. * command to be gracefully completed by firmware.
  9413. */
  9414. if (phba->sli.mbox_active)
  9415. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
  9416. phba->sli.mbox_active) *
  9417. 1000) + jiffies;
  9418. spin_unlock_irq(&phba->hbalock);
  9419. while (phba->sli.mbox_active) {
  9420. /* Check active mailbox complete status every 2ms */
  9421. msleep(2);
  9422. if (time_after(jiffies, timeout))
  9423. /* Timeout, let the mailbox flush routine to
  9424. * forcefully release active mailbox command
  9425. */
  9426. break;
  9427. }
  9428. } else
  9429. spin_unlock_irq(&phba->hbalock);
  9430. lpfc_sli_mbox_sys_flush(phba);
  9431. }
  9432. /**
  9433. * lpfc_sli_eratt_read - read sli-3 error attention events
  9434. * @phba: Pointer to HBA context.
  9435. *
  9436. * This function is called to read the SLI3 device error attention registers
  9437. * for possible error attention events. The caller must hold the hostlock
  9438. * with spin_lock_irq().
  9439. *
  9440. * This function returns 1 when there is Error Attention in the Host Attention
  9441. * Register and returns 0 otherwise.
  9442. **/
  9443. static int
  9444. lpfc_sli_eratt_read(struct lpfc_hba *phba)
  9445. {
  9446. uint32_t ha_copy;
  9447. /* Read chip Host Attention (HA) register */
  9448. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  9449. goto unplug_err;
  9450. if (ha_copy & HA_ERATT) {
  9451. /* Read host status register to retrieve error event */
  9452. if (lpfc_sli_read_hs(phba))
  9453. goto unplug_err;
  9454. /* Check if there is a deferred error condition is active */
  9455. if ((HS_FFER1 & phba->work_hs) &&
  9456. ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
  9457. HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
  9458. phba->hba_flag |= DEFER_ERATT;
  9459. /* Clear all interrupt enable conditions */
  9460. writel(0, phba->HCregaddr);
  9461. readl(phba->HCregaddr);
  9462. }
  9463. /* Set the driver HA work bitmap */
  9464. phba->work_ha |= HA_ERATT;
  9465. /* Indicate polling handles this ERATT */
  9466. phba->hba_flag |= HBA_ERATT_HANDLED;
  9467. return 1;
  9468. }
  9469. return 0;
  9470. unplug_err:
  9471. /* Set the driver HS work bitmap */
  9472. phba->work_hs |= UNPLUG_ERR;
  9473. /* Set the driver HA work bitmap */
  9474. phba->work_ha |= HA_ERATT;
  9475. /* Indicate polling handles this ERATT */
  9476. phba->hba_flag |= HBA_ERATT_HANDLED;
  9477. return 1;
  9478. }
  9479. /**
  9480. * lpfc_sli4_eratt_read - read sli-4 error attention events
  9481. * @phba: Pointer to HBA context.
  9482. *
  9483. * This function is called to read the SLI4 device error attention registers
  9484. * for possible error attention events. The caller must hold the hostlock
  9485. * with spin_lock_irq().
  9486. *
  9487. * This function returns 1 when there is Error Attention in the Host Attention
  9488. * Register and returns 0 otherwise.
  9489. **/
  9490. static int
  9491. lpfc_sli4_eratt_read(struct lpfc_hba *phba)
  9492. {
  9493. uint32_t uerr_sta_hi, uerr_sta_lo;
  9494. uint32_t if_type, portsmphr;
  9495. struct lpfc_register portstat_reg;
  9496. /*
  9497. * For now, use the SLI4 device internal unrecoverable error
  9498. * registers for error attention. This can be changed later.
  9499. */
  9500. if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
  9501. switch (if_type) {
  9502. case LPFC_SLI_INTF_IF_TYPE_0:
  9503. if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
  9504. &uerr_sta_lo) ||
  9505. lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
  9506. &uerr_sta_hi)) {
  9507. phba->work_hs |= UNPLUG_ERR;
  9508. phba->work_ha |= HA_ERATT;
  9509. phba->hba_flag |= HBA_ERATT_HANDLED;
  9510. return 1;
  9511. }
  9512. if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
  9513. (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
  9514. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  9515. "1423 HBA Unrecoverable error: "
  9516. "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
  9517. "ue_mask_lo_reg=0x%x, "
  9518. "ue_mask_hi_reg=0x%x\n",
  9519. uerr_sta_lo, uerr_sta_hi,
  9520. phba->sli4_hba.ue_mask_lo,
  9521. phba->sli4_hba.ue_mask_hi);
  9522. phba->work_status[0] = uerr_sta_lo;
  9523. phba->work_status[1] = uerr_sta_hi;
  9524. phba->work_ha |= HA_ERATT;
  9525. phba->hba_flag |= HBA_ERATT_HANDLED;
  9526. return 1;
  9527. }
  9528. break;
  9529. case LPFC_SLI_INTF_IF_TYPE_2:
  9530. if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
  9531. &portstat_reg.word0) ||
  9532. lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
  9533. &portsmphr)){
  9534. phba->work_hs |= UNPLUG_ERR;
  9535. phba->work_ha |= HA_ERATT;
  9536. phba->hba_flag |= HBA_ERATT_HANDLED;
  9537. return 1;
  9538. }
  9539. if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
  9540. phba->work_status[0] =
  9541. readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
  9542. phba->work_status[1] =
  9543. readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
  9544. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  9545. "2885 Port Status Event: "
  9546. "port status reg 0x%x, "
  9547. "port smphr reg 0x%x, "
  9548. "error 1=0x%x, error 2=0x%x\n",
  9549. portstat_reg.word0,
  9550. portsmphr,
  9551. phba->work_status[0],
  9552. phba->work_status[1]);
  9553. phba->work_ha |= HA_ERATT;
  9554. phba->hba_flag |= HBA_ERATT_HANDLED;
  9555. return 1;
  9556. }
  9557. break;
  9558. case LPFC_SLI_INTF_IF_TYPE_1:
  9559. default:
  9560. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  9561. "2886 HBA Error Attention on unsupported "
  9562. "if type %d.", if_type);
  9563. return 1;
  9564. }
  9565. return 0;
  9566. }
  9567. /**
  9568. * lpfc_sli_check_eratt - check error attention events
  9569. * @phba: Pointer to HBA context.
  9570. *
  9571. * This function is called from timer soft interrupt context to check HBA's
  9572. * error attention register bit for error attention events.
  9573. *
  9574. * This function returns 1 when there is Error Attention in the Host Attention
  9575. * Register and returns 0 otherwise.
  9576. **/
  9577. int
  9578. lpfc_sli_check_eratt(struct lpfc_hba *phba)
  9579. {
  9580. uint32_t ha_copy;
  9581. /* If somebody is waiting to handle an eratt, don't process it
  9582. * here. The brdkill function will do this.
  9583. */
  9584. if (phba->link_flag & LS_IGNORE_ERATT)
  9585. return 0;
  9586. /* Check if interrupt handler handles this ERATT */
  9587. spin_lock_irq(&phba->hbalock);
  9588. if (phba->hba_flag & HBA_ERATT_HANDLED) {
  9589. /* Interrupt handler has handled ERATT */
  9590. spin_unlock_irq(&phba->hbalock);
  9591. return 0;
  9592. }
  9593. /*
  9594. * If there is deferred error attention, do not check for error
  9595. * attention
  9596. */
  9597. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  9598. spin_unlock_irq(&phba->hbalock);
  9599. return 0;
  9600. }
  9601. /* If PCI channel is offline, don't process it */
  9602. if (unlikely(pci_channel_offline(phba->pcidev))) {
  9603. spin_unlock_irq(&phba->hbalock);
  9604. return 0;
  9605. }
  9606. switch (phba->sli_rev) {
  9607. case LPFC_SLI_REV2:
  9608. case LPFC_SLI_REV3:
  9609. /* Read chip Host Attention (HA) register */
  9610. ha_copy = lpfc_sli_eratt_read(phba);
  9611. break;
  9612. case LPFC_SLI_REV4:
  9613. /* Read device Uncoverable Error (UERR) registers */
  9614. ha_copy = lpfc_sli4_eratt_read(phba);
  9615. break;
  9616. default:
  9617. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  9618. "0299 Invalid SLI revision (%d)\n",
  9619. phba->sli_rev);
  9620. ha_copy = 0;
  9621. break;
  9622. }
  9623. spin_unlock_irq(&phba->hbalock);
  9624. return ha_copy;
  9625. }
  9626. /**
  9627. * lpfc_intr_state_check - Check device state for interrupt handling
  9628. * @phba: Pointer to HBA context.
  9629. *
  9630. * This inline routine checks whether a device or its PCI slot is in a state
  9631. * that the interrupt should be handled.
  9632. *
  9633. * This function returns 0 if the device or the PCI slot is in a state that
  9634. * interrupt should be handled, otherwise -EIO.
  9635. */
  9636. static inline int
  9637. lpfc_intr_state_check(struct lpfc_hba *phba)
  9638. {
  9639. /* If the pci channel is offline, ignore all the interrupts */
  9640. if (unlikely(pci_channel_offline(phba->pcidev)))
  9641. return -EIO;
  9642. /* Update device level interrupt statistics */
  9643. phba->sli.slistat.sli_intr++;
  9644. /* Ignore all interrupts during initialization. */
  9645. if (unlikely(phba->link_state < LPFC_LINK_DOWN))
  9646. return -EIO;
  9647. return 0;
  9648. }
  9649. /**
  9650. * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
  9651. * @irq: Interrupt number.
  9652. * @dev_id: The device context pointer.
  9653. *
  9654. * This function is directly called from the PCI layer as an interrupt
  9655. * service routine when device with SLI-3 interface spec is enabled with
  9656. * MSI-X multi-message interrupt mode and there are slow-path events in
  9657. * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
  9658. * interrupt mode, this function is called as part of the device-level
  9659. * interrupt handler. When the PCI slot is in error recovery or the HBA
  9660. * is undergoing initialization, the interrupt handler will not process
  9661. * the interrupt. The link attention and ELS ring attention events are
  9662. * handled by the worker thread. The interrupt handler signals the worker
  9663. * thread and returns for these events. This function is called without
  9664. * any lock held. It gets the hbalock to access and update SLI data
  9665. * structures.
  9666. *
  9667. * This function returns IRQ_HANDLED when interrupt is handled else it
  9668. * returns IRQ_NONE.
  9669. **/
  9670. irqreturn_t
  9671. lpfc_sli_sp_intr_handler(int irq, void *dev_id)
  9672. {
  9673. struct lpfc_hba *phba;
  9674. uint32_t ha_copy, hc_copy;
  9675. uint32_t work_ha_copy;
  9676. unsigned long status;
  9677. unsigned long iflag;
  9678. uint32_t control;
  9679. MAILBOX_t *mbox, *pmbox;
  9680. struct lpfc_vport *vport;
  9681. struct lpfc_nodelist *ndlp;
  9682. struct lpfc_dmabuf *mp;
  9683. LPFC_MBOXQ_t *pmb;
  9684. int rc;
  9685. /*
  9686. * Get the driver's phba structure from the dev_id and
  9687. * assume the HBA is not interrupting.
  9688. */
  9689. phba = (struct lpfc_hba *)dev_id;
  9690. if (unlikely(!phba))
  9691. return IRQ_NONE;
  9692. /*
  9693. * Stuff needs to be attented to when this function is invoked as an
  9694. * individual interrupt handler in MSI-X multi-message interrupt mode
  9695. */
  9696. if (phba->intr_type == MSIX) {
  9697. /* Check device state for handling interrupt */
  9698. if (lpfc_intr_state_check(phba))
  9699. return IRQ_NONE;
  9700. /* Need to read HA REG for slow-path events */
  9701. spin_lock_irqsave(&phba->hbalock, iflag);
  9702. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  9703. goto unplug_error;
  9704. /* If somebody is waiting to handle an eratt don't process it
  9705. * here. The brdkill function will do this.
  9706. */
  9707. if (phba->link_flag & LS_IGNORE_ERATT)
  9708. ha_copy &= ~HA_ERATT;
  9709. /* Check the need for handling ERATT in interrupt handler */
  9710. if (ha_copy & HA_ERATT) {
  9711. if (phba->hba_flag & HBA_ERATT_HANDLED)
  9712. /* ERATT polling has handled ERATT */
  9713. ha_copy &= ~HA_ERATT;
  9714. else
  9715. /* Indicate interrupt handler handles ERATT */
  9716. phba->hba_flag |= HBA_ERATT_HANDLED;
  9717. }
  9718. /*
  9719. * If there is deferred error attention, do not check for any
  9720. * interrupt.
  9721. */
  9722. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  9723. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9724. return IRQ_NONE;
  9725. }
  9726. /* Clear up only attention source related to slow-path */
  9727. if (lpfc_readl(phba->HCregaddr, &hc_copy))
  9728. goto unplug_error;
  9729. writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
  9730. HC_LAINT_ENA | HC_ERINT_ENA),
  9731. phba->HCregaddr);
  9732. writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
  9733. phba->HAregaddr);
  9734. writel(hc_copy, phba->HCregaddr);
  9735. readl(phba->HAregaddr); /* flush */
  9736. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9737. } else
  9738. ha_copy = phba->ha_copy;
  9739. work_ha_copy = ha_copy & phba->work_ha_mask;
  9740. if (work_ha_copy) {
  9741. if (work_ha_copy & HA_LATT) {
  9742. if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
  9743. /*
  9744. * Turn off Link Attention interrupts
  9745. * until CLEAR_LA done
  9746. */
  9747. spin_lock_irqsave(&phba->hbalock, iflag);
  9748. phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
  9749. if (lpfc_readl(phba->HCregaddr, &control))
  9750. goto unplug_error;
  9751. control &= ~HC_LAINT_ENA;
  9752. writel(control, phba->HCregaddr);
  9753. readl(phba->HCregaddr); /* flush */
  9754. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9755. }
  9756. else
  9757. work_ha_copy &= ~HA_LATT;
  9758. }
  9759. if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
  9760. /*
  9761. * Turn off Slow Rings interrupts, LPFC_ELS_RING is
  9762. * the only slow ring.
  9763. */
  9764. status = (work_ha_copy &
  9765. (HA_RXMASK << (4*LPFC_ELS_RING)));
  9766. status >>= (4*LPFC_ELS_RING);
  9767. if (status & HA_RXMASK) {
  9768. spin_lock_irqsave(&phba->hbalock, iflag);
  9769. if (lpfc_readl(phba->HCregaddr, &control))
  9770. goto unplug_error;
  9771. lpfc_debugfs_slow_ring_trc(phba,
  9772. "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
  9773. control, status,
  9774. (uint32_t)phba->sli.slistat.sli_intr);
  9775. if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
  9776. lpfc_debugfs_slow_ring_trc(phba,
  9777. "ISR Disable ring:"
  9778. "pwork:x%x hawork:x%x wait:x%x",
  9779. phba->work_ha, work_ha_copy,
  9780. (uint32_t)((unsigned long)
  9781. &phba->work_waitq));
  9782. control &=
  9783. ~(HC_R0INT_ENA << LPFC_ELS_RING);
  9784. writel(control, phba->HCregaddr);
  9785. readl(phba->HCregaddr); /* flush */
  9786. }
  9787. else {
  9788. lpfc_debugfs_slow_ring_trc(phba,
  9789. "ISR slow ring: pwork:"
  9790. "x%x hawork:x%x wait:x%x",
  9791. phba->work_ha, work_ha_copy,
  9792. (uint32_t)((unsigned long)
  9793. &phba->work_waitq));
  9794. }
  9795. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9796. }
  9797. }
  9798. spin_lock_irqsave(&phba->hbalock, iflag);
  9799. if (work_ha_copy & HA_ERATT) {
  9800. if (lpfc_sli_read_hs(phba))
  9801. goto unplug_error;
  9802. /*
  9803. * Check if there is a deferred error condition
  9804. * is active
  9805. */
  9806. if ((HS_FFER1 & phba->work_hs) &&
  9807. ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
  9808. HS_FFER6 | HS_FFER7 | HS_FFER8) &
  9809. phba->work_hs)) {
  9810. phba->hba_flag |= DEFER_ERATT;
  9811. /* Clear all interrupt enable conditions */
  9812. writel(0, phba->HCregaddr);
  9813. readl(phba->HCregaddr);
  9814. }
  9815. }
  9816. if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
  9817. pmb = phba->sli.mbox_active;
  9818. pmbox = &pmb->u.mb;
  9819. mbox = phba->mbox;
  9820. vport = pmb->vport;
  9821. /* First check out the status word */
  9822. lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
  9823. if (pmbox->mbxOwner != OWN_HOST) {
  9824. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9825. /*
  9826. * Stray Mailbox Interrupt, mbxCommand <cmd>
  9827. * mbxStatus <status>
  9828. */
  9829. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
  9830. LOG_SLI,
  9831. "(%d):0304 Stray Mailbox "
  9832. "Interrupt mbxCommand x%x "
  9833. "mbxStatus x%x\n",
  9834. (vport ? vport->vpi : 0),
  9835. pmbox->mbxCommand,
  9836. pmbox->mbxStatus);
  9837. /* clear mailbox attention bit */
  9838. work_ha_copy &= ~HA_MBATT;
  9839. } else {
  9840. phba->sli.mbox_active = NULL;
  9841. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9842. phba->last_completion_time = jiffies;
  9843. del_timer(&phba->sli.mbox_tmo);
  9844. if (pmb->mbox_cmpl) {
  9845. lpfc_sli_pcimem_bcopy(mbox, pmbox,
  9846. MAILBOX_CMD_SIZE);
  9847. if (pmb->out_ext_byte_len &&
  9848. pmb->context2)
  9849. lpfc_sli_pcimem_bcopy(
  9850. phba->mbox_ext,
  9851. pmb->context2,
  9852. pmb->out_ext_byte_len);
  9853. }
  9854. if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
  9855. pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
  9856. lpfc_debugfs_disc_trc(vport,
  9857. LPFC_DISC_TRC_MBOX_VPORT,
  9858. "MBOX dflt rpi: : "
  9859. "status:x%x rpi:x%x",
  9860. (uint32_t)pmbox->mbxStatus,
  9861. pmbox->un.varWords[0], 0);
  9862. if (!pmbox->mbxStatus) {
  9863. mp = (struct lpfc_dmabuf *)
  9864. (pmb->context1);
  9865. ndlp = (struct lpfc_nodelist *)
  9866. pmb->context2;
  9867. /* Reg_LOGIN of dflt RPI was
  9868. * successful. new lets get
  9869. * rid of the RPI using the
  9870. * same mbox buffer.
  9871. */
  9872. lpfc_unreg_login(phba,
  9873. vport->vpi,
  9874. pmbox->un.varWords[0],
  9875. pmb);
  9876. pmb->mbox_cmpl =
  9877. lpfc_mbx_cmpl_dflt_rpi;
  9878. pmb->context1 = mp;
  9879. pmb->context2 = ndlp;
  9880. pmb->vport = vport;
  9881. rc = lpfc_sli_issue_mbox(phba,
  9882. pmb,
  9883. MBX_NOWAIT);
  9884. if (rc != MBX_BUSY)
  9885. lpfc_printf_log(phba,
  9886. KERN_ERR,
  9887. LOG_MBOX | LOG_SLI,
  9888. "0350 rc should have"
  9889. "been MBX_BUSY\n");
  9890. if (rc != MBX_NOT_FINISHED)
  9891. goto send_current_mbox;
  9892. }
  9893. }
  9894. spin_lock_irqsave(
  9895. &phba->pport->work_port_lock,
  9896. iflag);
  9897. phba->pport->work_port_events &=
  9898. ~WORKER_MBOX_TMO;
  9899. spin_unlock_irqrestore(
  9900. &phba->pport->work_port_lock,
  9901. iflag);
  9902. lpfc_mbox_cmpl_put(phba, pmb);
  9903. }
  9904. } else
  9905. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9906. if ((work_ha_copy & HA_MBATT) &&
  9907. (phba->sli.mbox_active == NULL)) {
  9908. send_current_mbox:
  9909. /* Process next mailbox command if there is one */
  9910. do {
  9911. rc = lpfc_sli_issue_mbox(phba, NULL,
  9912. MBX_NOWAIT);
  9913. } while (rc == MBX_NOT_FINISHED);
  9914. if (rc != MBX_SUCCESS)
  9915. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
  9916. LOG_SLI, "0349 rc should be "
  9917. "MBX_SUCCESS\n");
  9918. }
  9919. spin_lock_irqsave(&phba->hbalock, iflag);
  9920. phba->work_ha |= work_ha_copy;
  9921. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9922. lpfc_worker_wake_up(phba);
  9923. }
  9924. return IRQ_HANDLED;
  9925. unplug_error:
  9926. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9927. return IRQ_HANDLED;
  9928. } /* lpfc_sli_sp_intr_handler */
  9929. /**
  9930. * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
  9931. * @irq: Interrupt number.
  9932. * @dev_id: The device context pointer.
  9933. *
  9934. * This function is directly called from the PCI layer as an interrupt
  9935. * service routine when device with SLI-3 interface spec is enabled with
  9936. * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
  9937. * ring event in the HBA. However, when the device is enabled with either
  9938. * MSI or Pin-IRQ interrupt mode, this function is called as part of the
  9939. * device-level interrupt handler. When the PCI slot is in error recovery
  9940. * or the HBA is undergoing initialization, the interrupt handler will not
  9941. * process the interrupt. The SCSI FCP fast-path ring event are handled in
  9942. * the intrrupt context. This function is called without any lock held.
  9943. * It gets the hbalock to access and update SLI data structures.
  9944. *
  9945. * This function returns IRQ_HANDLED when interrupt is handled else it
  9946. * returns IRQ_NONE.
  9947. **/
  9948. irqreturn_t
  9949. lpfc_sli_fp_intr_handler(int irq, void *dev_id)
  9950. {
  9951. struct lpfc_hba *phba;
  9952. uint32_t ha_copy;
  9953. unsigned long status;
  9954. unsigned long iflag;
  9955. /* Get the driver's phba structure from the dev_id and
  9956. * assume the HBA is not interrupting.
  9957. */
  9958. phba = (struct lpfc_hba *) dev_id;
  9959. if (unlikely(!phba))
  9960. return IRQ_NONE;
  9961. /*
  9962. * Stuff needs to be attented to when this function is invoked as an
  9963. * individual interrupt handler in MSI-X multi-message interrupt mode
  9964. */
  9965. if (phba->intr_type == MSIX) {
  9966. /* Check device state for handling interrupt */
  9967. if (lpfc_intr_state_check(phba))
  9968. return IRQ_NONE;
  9969. /* Need to read HA REG for FCP ring and other ring events */
  9970. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  9971. return IRQ_HANDLED;
  9972. /* Clear up only attention source related to fast-path */
  9973. spin_lock_irqsave(&phba->hbalock, iflag);
  9974. /*
  9975. * If there is deferred error attention, do not check for
  9976. * any interrupt.
  9977. */
  9978. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  9979. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9980. return IRQ_NONE;
  9981. }
  9982. writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
  9983. phba->HAregaddr);
  9984. readl(phba->HAregaddr); /* flush */
  9985. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9986. } else
  9987. ha_copy = phba->ha_copy;
  9988. /*
  9989. * Process all events on FCP ring. Take the optimized path for FCP IO.
  9990. */
  9991. ha_copy &= ~(phba->work_ha_mask);
  9992. status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
  9993. status >>= (4*LPFC_FCP_RING);
  9994. if (status & HA_RXMASK)
  9995. lpfc_sli_handle_fast_ring_event(phba,
  9996. &phba->sli.ring[LPFC_FCP_RING],
  9997. status);
  9998. if (phba->cfg_multi_ring_support == 2) {
  9999. /*
  10000. * Process all events on extra ring. Take the optimized path
  10001. * for extra ring IO.
  10002. */
  10003. status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
  10004. status >>= (4*LPFC_EXTRA_RING);
  10005. if (status & HA_RXMASK) {
  10006. lpfc_sli_handle_fast_ring_event(phba,
  10007. &phba->sli.ring[LPFC_EXTRA_RING],
  10008. status);
  10009. }
  10010. }
  10011. return IRQ_HANDLED;
  10012. } /* lpfc_sli_fp_intr_handler */
  10013. /**
  10014. * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
  10015. * @irq: Interrupt number.
  10016. * @dev_id: The device context pointer.
  10017. *
  10018. * This function is the HBA device-level interrupt handler to device with
  10019. * SLI-3 interface spec, called from the PCI layer when either MSI or
  10020. * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
  10021. * requires driver attention. This function invokes the slow-path interrupt
  10022. * attention handling function and fast-path interrupt attention handling
  10023. * function in turn to process the relevant HBA attention events. This
  10024. * function is called without any lock held. It gets the hbalock to access
  10025. * and update SLI data structures.
  10026. *
  10027. * This function returns IRQ_HANDLED when interrupt is handled, else it
  10028. * returns IRQ_NONE.
  10029. **/
  10030. irqreturn_t
  10031. lpfc_sli_intr_handler(int irq, void *dev_id)
  10032. {
  10033. struct lpfc_hba *phba;
  10034. irqreturn_t sp_irq_rc, fp_irq_rc;
  10035. unsigned long status1, status2;
  10036. uint32_t hc_copy;
  10037. /*
  10038. * Get the driver's phba structure from the dev_id and
  10039. * assume the HBA is not interrupting.
  10040. */
  10041. phba = (struct lpfc_hba *) dev_id;
  10042. if (unlikely(!phba))
  10043. return IRQ_NONE;
  10044. /* Check device state for handling interrupt */
  10045. if (lpfc_intr_state_check(phba))
  10046. return IRQ_NONE;
  10047. spin_lock(&phba->hbalock);
  10048. if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
  10049. spin_unlock(&phba->hbalock);
  10050. return IRQ_HANDLED;
  10051. }
  10052. if (unlikely(!phba->ha_copy)) {
  10053. spin_unlock(&phba->hbalock);
  10054. return IRQ_NONE;
  10055. } else if (phba->ha_copy & HA_ERATT) {
  10056. if (phba->hba_flag & HBA_ERATT_HANDLED)
  10057. /* ERATT polling has handled ERATT */
  10058. phba->ha_copy &= ~HA_ERATT;
  10059. else
  10060. /* Indicate interrupt handler handles ERATT */
  10061. phba->hba_flag |= HBA_ERATT_HANDLED;
  10062. }
  10063. /*
  10064. * If there is deferred error attention, do not check for any interrupt.
  10065. */
  10066. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  10067. spin_unlock(&phba->hbalock);
  10068. return IRQ_NONE;
  10069. }
  10070. /* Clear attention sources except link and error attentions */
  10071. if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
  10072. spin_unlock(&phba->hbalock);
  10073. return IRQ_HANDLED;
  10074. }
  10075. writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
  10076. | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
  10077. phba->HCregaddr);
  10078. writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
  10079. writel(hc_copy, phba->HCregaddr);
  10080. readl(phba->HAregaddr); /* flush */
  10081. spin_unlock(&phba->hbalock);
  10082. /*
  10083. * Invokes slow-path host attention interrupt handling as appropriate.
  10084. */
  10085. /* status of events with mailbox and link attention */
  10086. status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
  10087. /* status of events with ELS ring */
  10088. status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
  10089. status2 >>= (4*LPFC_ELS_RING);
  10090. if (status1 || (status2 & HA_RXMASK))
  10091. sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
  10092. else
  10093. sp_irq_rc = IRQ_NONE;
  10094. /*
  10095. * Invoke fast-path host attention interrupt handling as appropriate.
  10096. */
  10097. /* status of events with FCP ring */
  10098. status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
  10099. status1 >>= (4*LPFC_FCP_RING);
  10100. /* status of events with extra ring */
  10101. if (phba->cfg_multi_ring_support == 2) {
  10102. status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
  10103. status2 >>= (4*LPFC_EXTRA_RING);
  10104. } else
  10105. status2 = 0;
  10106. if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
  10107. fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
  10108. else
  10109. fp_irq_rc = IRQ_NONE;
  10110. /* Return device-level interrupt handling status */
  10111. return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
  10112. } /* lpfc_sli_intr_handler */
  10113. /**
  10114. * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
  10115. * @phba: pointer to lpfc hba data structure.
  10116. *
  10117. * This routine is invoked by the worker thread to process all the pending
  10118. * SLI4 FCP abort XRI events.
  10119. **/
  10120. void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
  10121. {
  10122. struct lpfc_cq_event *cq_event;
  10123. /* First, declare the fcp xri abort event has been handled */
  10124. spin_lock_irq(&phba->hbalock);
  10125. phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
  10126. spin_unlock_irq(&phba->hbalock);
  10127. /* Now, handle all the fcp xri abort events */
  10128. while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
  10129. /* Get the first event from the head of the event queue */
  10130. spin_lock_irq(&phba->hbalock);
  10131. list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
  10132. cq_event, struct lpfc_cq_event, list);
  10133. spin_unlock_irq(&phba->hbalock);
  10134. /* Notify aborted XRI for FCP work queue */
  10135. lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
  10136. /* Free the event processed back to the free pool */
  10137. lpfc_sli4_cq_event_release(phba, cq_event);
  10138. }
  10139. }
  10140. /**
  10141. * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
  10142. * @phba: pointer to lpfc hba data structure.
  10143. *
  10144. * This routine is invoked by the worker thread to process all the pending
  10145. * SLI4 els abort xri events.
  10146. **/
  10147. void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
  10148. {
  10149. struct lpfc_cq_event *cq_event;
  10150. /* First, declare the els xri abort event has been handled */
  10151. spin_lock_irq(&phba->hbalock);
  10152. phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
  10153. spin_unlock_irq(&phba->hbalock);
  10154. /* Now, handle all the els xri abort events */
  10155. while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
  10156. /* Get the first event from the head of the event queue */
  10157. spin_lock_irq(&phba->hbalock);
  10158. list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
  10159. cq_event, struct lpfc_cq_event, list);
  10160. spin_unlock_irq(&phba->hbalock);
  10161. /* Notify aborted XRI for ELS work queue */
  10162. lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
  10163. /* Free the event processed back to the free pool */
  10164. lpfc_sli4_cq_event_release(phba, cq_event);
  10165. }
  10166. }
  10167. /**
  10168. * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
  10169. * @phba: pointer to lpfc hba data structure
  10170. * @pIocbIn: pointer to the rspiocbq
  10171. * @pIocbOut: pointer to the cmdiocbq
  10172. * @wcqe: pointer to the complete wcqe
  10173. *
  10174. * This routine transfers the fields of a command iocbq to a response iocbq
  10175. * by copying all the IOCB fields from command iocbq and transferring the
  10176. * completion status information from the complete wcqe.
  10177. **/
  10178. static void
  10179. lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
  10180. struct lpfc_iocbq *pIocbIn,
  10181. struct lpfc_iocbq *pIocbOut,
  10182. struct lpfc_wcqe_complete *wcqe)
  10183. {
  10184. int numBdes, i;
  10185. unsigned long iflags;
  10186. uint32_t status, max_response;
  10187. struct lpfc_dmabuf *dmabuf;
  10188. struct ulp_bde64 *bpl, bde;
  10189. size_t offset = offsetof(struct lpfc_iocbq, iocb);
  10190. memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
  10191. sizeof(struct lpfc_iocbq) - offset);
  10192. /* Map WCQE parameters into irspiocb parameters */
  10193. status = bf_get(lpfc_wcqe_c_status, wcqe);
  10194. pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
  10195. if (pIocbOut->iocb_flag & LPFC_IO_FCP)
  10196. if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
  10197. pIocbIn->iocb.un.fcpi.fcpi_parm =
  10198. pIocbOut->iocb.un.fcpi.fcpi_parm -
  10199. wcqe->total_data_placed;
  10200. else
  10201. pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
  10202. else {
  10203. pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
  10204. switch (pIocbOut->iocb.ulpCommand) {
  10205. case CMD_ELS_REQUEST64_CR:
  10206. dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
  10207. bpl = (struct ulp_bde64 *)dmabuf->virt;
  10208. bde.tus.w = le32_to_cpu(bpl[1].tus.w);
  10209. max_response = bde.tus.f.bdeSize;
  10210. break;
  10211. case CMD_GEN_REQUEST64_CR:
  10212. max_response = 0;
  10213. if (!pIocbOut->context3)
  10214. break;
  10215. numBdes = pIocbOut->iocb.un.genreq64.bdl.bdeSize/
  10216. sizeof(struct ulp_bde64);
  10217. dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
  10218. bpl = (struct ulp_bde64 *)dmabuf->virt;
  10219. for (i = 0; i < numBdes; i++) {
  10220. bde.tus.w = le32_to_cpu(bpl[i].tus.w);
  10221. if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
  10222. max_response += bde.tus.f.bdeSize;
  10223. }
  10224. break;
  10225. default:
  10226. max_response = wcqe->total_data_placed;
  10227. break;
  10228. }
  10229. if (max_response < wcqe->total_data_placed)
  10230. pIocbIn->iocb.un.genreq64.bdl.bdeSize = max_response;
  10231. else
  10232. pIocbIn->iocb.un.genreq64.bdl.bdeSize =
  10233. wcqe->total_data_placed;
  10234. }
  10235. /* Convert BG errors for completion status */
  10236. if (status == CQE_STATUS_DI_ERROR) {
  10237. pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
  10238. if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
  10239. pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
  10240. else
  10241. pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
  10242. pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
  10243. if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
  10244. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10245. BGS_GUARD_ERR_MASK;
  10246. if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
  10247. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10248. BGS_APPTAG_ERR_MASK;
  10249. if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
  10250. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10251. BGS_REFTAG_ERR_MASK;
  10252. /* Check to see if there was any good data before the error */
  10253. if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
  10254. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10255. BGS_HI_WATER_MARK_PRESENT_MASK;
  10256. pIocbIn->iocb.unsli3.sli3_bg.bghm =
  10257. wcqe->total_data_placed;
  10258. }
  10259. /*
  10260. * Set ALL the error bits to indicate we don't know what
  10261. * type of error it is.
  10262. */
  10263. if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
  10264. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10265. (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
  10266. BGS_GUARD_ERR_MASK);
  10267. }
  10268. /* Pick up HBA exchange busy condition */
  10269. if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
  10270. spin_lock_irqsave(&phba->hbalock, iflags);
  10271. pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
  10272. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10273. }
  10274. }
  10275. /**
  10276. * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
  10277. * @phba: Pointer to HBA context object.
  10278. * @wcqe: Pointer to work-queue completion queue entry.
  10279. *
  10280. * This routine handles an ELS work-queue completion event and construct
  10281. * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
  10282. * discovery engine to handle.
  10283. *
  10284. * Return: Pointer to the receive IOCBQ, NULL otherwise.
  10285. **/
  10286. static struct lpfc_iocbq *
  10287. lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
  10288. struct lpfc_iocbq *irspiocbq)
  10289. {
  10290. struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
  10291. struct lpfc_iocbq *cmdiocbq;
  10292. struct lpfc_wcqe_complete *wcqe;
  10293. unsigned long iflags;
  10294. wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
  10295. spin_lock_irqsave(&pring->ring_lock, iflags);
  10296. pring->stats.iocb_event++;
  10297. /* Look up the ELS command IOCB and create pseudo response IOCB */
  10298. cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
  10299. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10300. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  10301. if (unlikely(!cmdiocbq)) {
  10302. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10303. "0386 ELS complete with no corresponding "
  10304. "cmdiocb: iotag (%d)\n",
  10305. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10306. lpfc_sli_release_iocbq(phba, irspiocbq);
  10307. return NULL;
  10308. }
  10309. /* Fake the irspiocbq and copy necessary response information */
  10310. lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
  10311. return irspiocbq;
  10312. }
  10313. /**
  10314. * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
  10315. * @phba: Pointer to HBA context object.
  10316. * @cqe: Pointer to mailbox completion queue entry.
  10317. *
  10318. * This routine process a mailbox completion queue entry with asynchrous
  10319. * event.
  10320. *
  10321. * Return: true if work posted to worker thread, otherwise false.
  10322. **/
  10323. static bool
  10324. lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
  10325. {
  10326. struct lpfc_cq_event *cq_event;
  10327. unsigned long iflags;
  10328. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  10329. "0392 Async Event: word0:x%x, word1:x%x, "
  10330. "word2:x%x, word3:x%x\n", mcqe->word0,
  10331. mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
  10332. /* Allocate a new internal CQ_EVENT entry */
  10333. cq_event = lpfc_sli4_cq_event_alloc(phba);
  10334. if (!cq_event) {
  10335. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10336. "0394 Failed to allocate CQ_EVENT entry\n");
  10337. return false;
  10338. }
  10339. /* Move the CQE into an asynchronous event entry */
  10340. memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
  10341. spin_lock_irqsave(&phba->hbalock, iflags);
  10342. list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
  10343. /* Set the async event flag */
  10344. phba->hba_flag |= ASYNC_EVENT;
  10345. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10346. return true;
  10347. }
  10348. /**
  10349. * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
  10350. * @phba: Pointer to HBA context object.
  10351. * @cqe: Pointer to mailbox completion queue entry.
  10352. *
  10353. * This routine process a mailbox completion queue entry with mailbox
  10354. * completion event.
  10355. *
  10356. * Return: true if work posted to worker thread, otherwise false.
  10357. **/
  10358. static bool
  10359. lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
  10360. {
  10361. uint32_t mcqe_status;
  10362. MAILBOX_t *mbox, *pmbox;
  10363. struct lpfc_mqe *mqe;
  10364. struct lpfc_vport *vport;
  10365. struct lpfc_nodelist *ndlp;
  10366. struct lpfc_dmabuf *mp;
  10367. unsigned long iflags;
  10368. LPFC_MBOXQ_t *pmb;
  10369. bool workposted = false;
  10370. int rc;
  10371. /* If not a mailbox complete MCQE, out by checking mailbox consume */
  10372. if (!bf_get(lpfc_trailer_completed, mcqe))
  10373. goto out_no_mqe_complete;
  10374. /* Get the reference to the active mbox command */
  10375. spin_lock_irqsave(&phba->hbalock, iflags);
  10376. pmb = phba->sli.mbox_active;
  10377. if (unlikely(!pmb)) {
  10378. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
  10379. "1832 No pending MBOX command to handle\n");
  10380. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10381. goto out_no_mqe_complete;
  10382. }
  10383. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10384. mqe = &pmb->u.mqe;
  10385. pmbox = (MAILBOX_t *)&pmb->u.mqe;
  10386. mbox = phba->mbox;
  10387. vport = pmb->vport;
  10388. /* Reset heartbeat timer */
  10389. phba->last_completion_time = jiffies;
  10390. del_timer(&phba->sli.mbox_tmo);
  10391. /* Move mbox data to caller's mailbox region, do endian swapping */
  10392. if (pmb->mbox_cmpl && mbox)
  10393. lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
  10394. /*
  10395. * For mcqe errors, conditionally move a modified error code to
  10396. * the mbox so that the error will not be missed.
  10397. */
  10398. mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
  10399. if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
  10400. if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
  10401. bf_set(lpfc_mqe_status, mqe,
  10402. (LPFC_MBX_ERROR_RANGE | mcqe_status));
  10403. }
  10404. if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
  10405. pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
  10406. lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
  10407. "MBOX dflt rpi: status:x%x rpi:x%x",
  10408. mcqe_status,
  10409. pmbox->un.varWords[0], 0);
  10410. if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
  10411. mp = (struct lpfc_dmabuf *)(pmb->context1);
  10412. ndlp = (struct lpfc_nodelist *)pmb->context2;
  10413. /* Reg_LOGIN of dflt RPI was successful. Now lets get
  10414. * RID of the PPI using the same mbox buffer.
  10415. */
  10416. lpfc_unreg_login(phba, vport->vpi,
  10417. pmbox->un.varWords[0], pmb);
  10418. pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
  10419. pmb->context1 = mp;
  10420. pmb->context2 = ndlp;
  10421. pmb->vport = vport;
  10422. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
  10423. if (rc != MBX_BUSY)
  10424. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
  10425. LOG_SLI, "0385 rc should "
  10426. "have been MBX_BUSY\n");
  10427. if (rc != MBX_NOT_FINISHED)
  10428. goto send_current_mbox;
  10429. }
  10430. }
  10431. spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
  10432. phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
  10433. spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
  10434. /* There is mailbox completion work to do */
  10435. spin_lock_irqsave(&phba->hbalock, iflags);
  10436. __lpfc_mbox_cmpl_put(phba, pmb);
  10437. phba->work_ha |= HA_MBATT;
  10438. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10439. workposted = true;
  10440. send_current_mbox:
  10441. spin_lock_irqsave(&phba->hbalock, iflags);
  10442. /* Release the mailbox command posting token */
  10443. phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  10444. /* Setting active mailbox pointer need to be in sync to flag clear */
  10445. phba->sli.mbox_active = NULL;
  10446. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10447. /* Wake up worker thread to post the next pending mailbox command */
  10448. lpfc_worker_wake_up(phba);
  10449. out_no_mqe_complete:
  10450. if (bf_get(lpfc_trailer_consumed, mcqe))
  10451. lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
  10452. return workposted;
  10453. }
  10454. /**
  10455. * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
  10456. * @phba: Pointer to HBA context object.
  10457. * @cqe: Pointer to mailbox completion queue entry.
  10458. *
  10459. * This routine process a mailbox completion queue entry, it invokes the
  10460. * proper mailbox complete handling or asynchrous event handling routine
  10461. * according to the MCQE's async bit.
  10462. *
  10463. * Return: true if work posted to worker thread, otherwise false.
  10464. **/
  10465. static bool
  10466. lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
  10467. {
  10468. struct lpfc_mcqe mcqe;
  10469. bool workposted;
  10470. /* Copy the mailbox MCQE and convert endian order as needed */
  10471. lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
  10472. /* Invoke the proper event handling routine */
  10473. if (!bf_get(lpfc_trailer_async, &mcqe))
  10474. workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
  10475. else
  10476. workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
  10477. return workposted;
  10478. }
  10479. /**
  10480. * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
  10481. * @phba: Pointer to HBA context object.
  10482. * @cq: Pointer to associated CQ
  10483. * @wcqe: Pointer to work-queue completion queue entry.
  10484. *
  10485. * This routine handles an ELS work-queue completion event.
  10486. *
  10487. * Return: true if work posted to worker thread, otherwise false.
  10488. **/
  10489. static bool
  10490. lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10491. struct lpfc_wcqe_complete *wcqe)
  10492. {
  10493. struct lpfc_iocbq *irspiocbq;
  10494. unsigned long iflags;
  10495. struct lpfc_sli_ring *pring = cq->pring;
  10496. int txq_cnt = 0;
  10497. int txcmplq_cnt = 0;
  10498. int fcp_txcmplq_cnt = 0;
  10499. /* Get an irspiocbq for later ELS response processing use */
  10500. irspiocbq = lpfc_sli_get_iocbq(phba);
  10501. if (!irspiocbq) {
  10502. if (!list_empty(&pring->txq))
  10503. txq_cnt++;
  10504. if (!list_empty(&pring->txcmplq))
  10505. txcmplq_cnt++;
  10506. if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
  10507. fcp_txcmplq_cnt++;
  10508. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10509. "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
  10510. "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
  10511. txq_cnt, phba->iocb_cnt,
  10512. fcp_txcmplq_cnt,
  10513. txcmplq_cnt);
  10514. return false;
  10515. }
  10516. /* Save off the slow-path queue event for work thread to process */
  10517. memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
  10518. spin_lock_irqsave(&phba->hbalock, iflags);
  10519. list_add_tail(&irspiocbq->cq_event.list,
  10520. &phba->sli4_hba.sp_queue_event);
  10521. phba->hba_flag |= HBA_SP_QUEUE_EVT;
  10522. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10523. return true;
  10524. }
  10525. /**
  10526. * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
  10527. * @phba: Pointer to HBA context object.
  10528. * @wcqe: Pointer to work-queue completion queue entry.
  10529. *
  10530. * This routine handles slow-path WQ entry comsumed event by invoking the
  10531. * proper WQ release routine to the slow-path WQ.
  10532. **/
  10533. static void
  10534. lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
  10535. struct lpfc_wcqe_release *wcqe)
  10536. {
  10537. /* sanity check on queue memory */
  10538. if (unlikely(!phba->sli4_hba.els_wq))
  10539. return;
  10540. /* Check for the slow-path ELS work queue */
  10541. if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
  10542. lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
  10543. bf_get(lpfc_wcqe_r_wqe_index, wcqe));
  10544. else
  10545. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10546. "2579 Slow-path wqe consume event carries "
  10547. "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
  10548. bf_get(lpfc_wcqe_r_wqe_index, wcqe),
  10549. phba->sli4_hba.els_wq->queue_id);
  10550. }
  10551. /**
  10552. * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
  10553. * @phba: Pointer to HBA context object.
  10554. * @cq: Pointer to a WQ completion queue.
  10555. * @wcqe: Pointer to work-queue completion queue entry.
  10556. *
  10557. * This routine handles an XRI abort event.
  10558. *
  10559. * Return: true if work posted to worker thread, otherwise false.
  10560. **/
  10561. static bool
  10562. lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
  10563. struct lpfc_queue *cq,
  10564. struct sli4_wcqe_xri_aborted *wcqe)
  10565. {
  10566. bool workposted = false;
  10567. struct lpfc_cq_event *cq_event;
  10568. unsigned long iflags;
  10569. /* Allocate a new internal CQ_EVENT entry */
  10570. cq_event = lpfc_sli4_cq_event_alloc(phba);
  10571. if (!cq_event) {
  10572. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10573. "0602 Failed to allocate CQ_EVENT entry\n");
  10574. return false;
  10575. }
  10576. /* Move the CQE into the proper xri abort event list */
  10577. memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
  10578. switch (cq->subtype) {
  10579. case LPFC_FCP:
  10580. spin_lock_irqsave(&phba->hbalock, iflags);
  10581. list_add_tail(&cq_event->list,
  10582. &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
  10583. /* Set the fcp xri abort event flag */
  10584. phba->hba_flag |= FCP_XRI_ABORT_EVENT;
  10585. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10586. workposted = true;
  10587. break;
  10588. case LPFC_ELS:
  10589. spin_lock_irqsave(&phba->hbalock, iflags);
  10590. list_add_tail(&cq_event->list,
  10591. &phba->sli4_hba.sp_els_xri_aborted_work_queue);
  10592. /* Set the els xri abort event flag */
  10593. phba->hba_flag |= ELS_XRI_ABORT_EVENT;
  10594. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10595. workposted = true;
  10596. break;
  10597. default:
  10598. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10599. "0603 Invalid work queue CQE subtype (x%x)\n",
  10600. cq->subtype);
  10601. workposted = false;
  10602. break;
  10603. }
  10604. return workposted;
  10605. }
  10606. /**
  10607. * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
  10608. * @phba: Pointer to HBA context object.
  10609. * @rcqe: Pointer to receive-queue completion queue entry.
  10610. *
  10611. * This routine process a receive-queue completion queue entry.
  10612. *
  10613. * Return: true if work posted to worker thread, otherwise false.
  10614. **/
  10615. static bool
  10616. lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
  10617. {
  10618. bool workposted = false;
  10619. struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
  10620. struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
  10621. struct hbq_dmabuf *dma_buf;
  10622. uint32_t status, rq_id;
  10623. unsigned long iflags;
  10624. /* sanity check on queue memory */
  10625. if (unlikely(!hrq) || unlikely(!drq))
  10626. return workposted;
  10627. if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
  10628. rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
  10629. else
  10630. rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
  10631. if (rq_id != hrq->queue_id)
  10632. goto out;
  10633. status = bf_get(lpfc_rcqe_status, rcqe);
  10634. switch (status) {
  10635. case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
  10636. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10637. "2537 Receive Frame Truncated!!\n");
  10638. hrq->RQ_buf_trunc++;
  10639. case FC_STATUS_RQ_SUCCESS:
  10640. lpfc_sli4_rq_release(hrq, drq);
  10641. spin_lock_irqsave(&phba->hbalock, iflags);
  10642. dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
  10643. if (!dma_buf) {
  10644. hrq->RQ_no_buf_found++;
  10645. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10646. goto out;
  10647. }
  10648. hrq->RQ_rcv_buf++;
  10649. memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
  10650. /* save off the frame for the word thread to process */
  10651. list_add_tail(&dma_buf->cq_event.list,
  10652. &phba->sli4_hba.sp_queue_event);
  10653. /* Frame received */
  10654. phba->hba_flag |= HBA_SP_QUEUE_EVT;
  10655. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10656. workposted = true;
  10657. break;
  10658. case FC_STATUS_INSUFF_BUF_NEED_BUF:
  10659. case FC_STATUS_INSUFF_BUF_FRM_DISC:
  10660. hrq->RQ_no_posted_buf++;
  10661. /* Post more buffers if possible */
  10662. spin_lock_irqsave(&phba->hbalock, iflags);
  10663. phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
  10664. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10665. workposted = true;
  10666. break;
  10667. }
  10668. out:
  10669. return workposted;
  10670. }
  10671. /**
  10672. * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
  10673. * @phba: Pointer to HBA context object.
  10674. * @cq: Pointer to the completion queue.
  10675. * @wcqe: Pointer to a completion queue entry.
  10676. *
  10677. * This routine process a slow-path work-queue or receive queue completion queue
  10678. * entry.
  10679. *
  10680. * Return: true if work posted to worker thread, otherwise false.
  10681. **/
  10682. static bool
  10683. lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10684. struct lpfc_cqe *cqe)
  10685. {
  10686. struct lpfc_cqe cqevt;
  10687. bool workposted = false;
  10688. /* Copy the work queue CQE and convert endian order if needed */
  10689. lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
  10690. /* Check and process for different type of WCQE and dispatch */
  10691. switch (bf_get(lpfc_cqe_code, &cqevt)) {
  10692. case CQE_CODE_COMPL_WQE:
  10693. /* Process the WQ/RQ complete event */
  10694. phba->last_completion_time = jiffies;
  10695. workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
  10696. (struct lpfc_wcqe_complete *)&cqevt);
  10697. break;
  10698. case CQE_CODE_RELEASE_WQE:
  10699. /* Process the WQ release event */
  10700. lpfc_sli4_sp_handle_rel_wcqe(phba,
  10701. (struct lpfc_wcqe_release *)&cqevt);
  10702. break;
  10703. case CQE_CODE_XRI_ABORTED:
  10704. /* Process the WQ XRI abort event */
  10705. phba->last_completion_time = jiffies;
  10706. workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
  10707. (struct sli4_wcqe_xri_aborted *)&cqevt);
  10708. break;
  10709. case CQE_CODE_RECEIVE:
  10710. case CQE_CODE_RECEIVE_V1:
  10711. /* Process the RQ event */
  10712. phba->last_completion_time = jiffies;
  10713. workposted = lpfc_sli4_sp_handle_rcqe(phba,
  10714. (struct lpfc_rcqe *)&cqevt);
  10715. break;
  10716. default:
  10717. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10718. "0388 Not a valid WCQE code: x%x\n",
  10719. bf_get(lpfc_cqe_code, &cqevt));
  10720. break;
  10721. }
  10722. return workposted;
  10723. }
  10724. /**
  10725. * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
  10726. * @phba: Pointer to HBA context object.
  10727. * @eqe: Pointer to fast-path event queue entry.
  10728. *
  10729. * This routine process a event queue entry from the slow-path event queue.
  10730. * It will check the MajorCode and MinorCode to determine this is for a
  10731. * completion event on a completion queue, if not, an error shall be logged
  10732. * and just return. Otherwise, it will get to the corresponding completion
  10733. * queue and process all the entries on that completion queue, rearm the
  10734. * completion queue, and then return.
  10735. *
  10736. **/
  10737. static void
  10738. lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
  10739. struct lpfc_queue *speq)
  10740. {
  10741. struct lpfc_queue *cq = NULL, *childq;
  10742. struct lpfc_cqe *cqe;
  10743. bool workposted = false;
  10744. int ecount = 0;
  10745. uint16_t cqid;
  10746. /* Get the reference to the corresponding CQ */
  10747. cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
  10748. list_for_each_entry(childq, &speq->child_list, list) {
  10749. if (childq->queue_id == cqid) {
  10750. cq = childq;
  10751. break;
  10752. }
  10753. }
  10754. if (unlikely(!cq)) {
  10755. if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
  10756. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10757. "0365 Slow-path CQ identifier "
  10758. "(%d) does not exist\n", cqid);
  10759. return;
  10760. }
  10761. /* Process all the entries to the CQ */
  10762. switch (cq->type) {
  10763. case LPFC_MCQ:
  10764. while ((cqe = lpfc_sli4_cq_get(cq))) {
  10765. workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
  10766. if (!(++ecount % cq->entry_repost))
  10767. lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
  10768. cq->CQ_mbox++;
  10769. }
  10770. break;
  10771. case LPFC_WCQ:
  10772. while ((cqe = lpfc_sli4_cq_get(cq))) {
  10773. if (cq->subtype == LPFC_FCP)
  10774. workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
  10775. cqe);
  10776. else
  10777. workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
  10778. cqe);
  10779. if (!(++ecount % cq->entry_repost))
  10780. lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
  10781. }
  10782. /* Track the max number of CQEs processed in 1 EQ */
  10783. if (ecount > cq->CQ_max_cqe)
  10784. cq->CQ_max_cqe = ecount;
  10785. break;
  10786. default:
  10787. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10788. "0370 Invalid completion queue type (%d)\n",
  10789. cq->type);
  10790. return;
  10791. }
  10792. /* Catch the no cq entry condition, log an error */
  10793. if (unlikely(ecount == 0))
  10794. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10795. "0371 No entry from the CQ: identifier "
  10796. "(x%x), type (%d)\n", cq->queue_id, cq->type);
  10797. /* In any case, flash and re-arm the RCQ */
  10798. lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
  10799. /* wake up worker thread if there are works to be done */
  10800. if (workposted)
  10801. lpfc_worker_wake_up(phba);
  10802. }
  10803. /**
  10804. * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
  10805. * @phba: Pointer to HBA context object.
  10806. * @cq: Pointer to associated CQ
  10807. * @wcqe: Pointer to work-queue completion queue entry.
  10808. *
  10809. * This routine process a fast-path work queue completion entry from fast-path
  10810. * event queue for FCP command response completion.
  10811. **/
  10812. static void
  10813. lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10814. struct lpfc_wcqe_complete *wcqe)
  10815. {
  10816. struct lpfc_sli_ring *pring = cq->pring;
  10817. struct lpfc_iocbq *cmdiocbq;
  10818. struct lpfc_iocbq irspiocbq;
  10819. unsigned long iflags;
  10820. /* Check for response status */
  10821. if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
  10822. /* If resource errors reported from HBA, reduce queue
  10823. * depth of the SCSI device.
  10824. */
  10825. if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
  10826. IOSTAT_LOCAL_REJECT)) &&
  10827. ((wcqe->parameter & IOERR_PARAM_MASK) ==
  10828. IOERR_NO_RESOURCES))
  10829. phba->lpfc_rampdown_queue_depth(phba);
  10830. /* Log the error status */
  10831. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10832. "0373 FCP complete error: status=x%x, "
  10833. "hw_status=x%x, total_data_specified=%d, "
  10834. "parameter=x%x, word3=x%x\n",
  10835. bf_get(lpfc_wcqe_c_status, wcqe),
  10836. bf_get(lpfc_wcqe_c_hw_status, wcqe),
  10837. wcqe->total_data_placed, wcqe->parameter,
  10838. wcqe->word3);
  10839. }
  10840. /* Look up the FCP command IOCB and create pseudo response IOCB */
  10841. spin_lock_irqsave(&pring->ring_lock, iflags);
  10842. pring->stats.iocb_event++;
  10843. cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
  10844. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10845. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  10846. if (unlikely(!cmdiocbq)) {
  10847. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10848. "0374 FCP complete with no corresponding "
  10849. "cmdiocb: iotag (%d)\n",
  10850. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10851. return;
  10852. }
  10853. if (unlikely(!cmdiocbq->iocb_cmpl)) {
  10854. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10855. "0375 FCP cmdiocb not callback function "
  10856. "iotag: (%d)\n",
  10857. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10858. return;
  10859. }
  10860. /* Fake the irspiocb and copy necessary response information */
  10861. lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
  10862. if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
  10863. spin_lock_irqsave(&phba->hbalock, iflags);
  10864. cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
  10865. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10866. }
  10867. /* Pass the cmd_iocb and the rsp state to the upper layer */
  10868. (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
  10869. }
  10870. /**
  10871. * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
  10872. * @phba: Pointer to HBA context object.
  10873. * @cq: Pointer to completion queue.
  10874. * @wcqe: Pointer to work-queue completion queue entry.
  10875. *
  10876. * This routine handles an fast-path WQ entry comsumed event by invoking the
  10877. * proper WQ release routine to the slow-path WQ.
  10878. **/
  10879. static void
  10880. lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10881. struct lpfc_wcqe_release *wcqe)
  10882. {
  10883. struct lpfc_queue *childwq;
  10884. bool wqid_matched = false;
  10885. uint16_t fcp_wqid;
  10886. /* Check for fast-path FCP work queue release */
  10887. fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
  10888. list_for_each_entry(childwq, &cq->child_list, list) {
  10889. if (childwq->queue_id == fcp_wqid) {
  10890. lpfc_sli4_wq_release(childwq,
  10891. bf_get(lpfc_wcqe_r_wqe_index, wcqe));
  10892. wqid_matched = true;
  10893. break;
  10894. }
  10895. }
  10896. /* Report warning log message if no match found */
  10897. if (wqid_matched != true)
  10898. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10899. "2580 Fast-path wqe consume event carries "
  10900. "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
  10901. }
  10902. /**
  10903. * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
  10904. * @cq: Pointer to the completion queue.
  10905. * @eqe: Pointer to fast-path completion queue entry.
  10906. *
  10907. * This routine process a fast-path work queue completion entry from fast-path
  10908. * event queue for FCP command response completion.
  10909. **/
  10910. static int
  10911. lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10912. struct lpfc_cqe *cqe)
  10913. {
  10914. struct lpfc_wcqe_release wcqe;
  10915. bool workposted = false;
  10916. /* Copy the work queue CQE and convert endian order if needed */
  10917. lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
  10918. /* Check and process for different type of WCQE and dispatch */
  10919. switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
  10920. case CQE_CODE_COMPL_WQE:
  10921. cq->CQ_wq++;
  10922. /* Process the WQ complete event */
  10923. phba->last_completion_time = jiffies;
  10924. lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
  10925. (struct lpfc_wcqe_complete *)&wcqe);
  10926. break;
  10927. case CQE_CODE_RELEASE_WQE:
  10928. cq->CQ_release_wqe++;
  10929. /* Process the WQ release event */
  10930. lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
  10931. (struct lpfc_wcqe_release *)&wcqe);
  10932. break;
  10933. case CQE_CODE_XRI_ABORTED:
  10934. cq->CQ_xri_aborted++;
  10935. /* Process the WQ XRI abort event */
  10936. phba->last_completion_time = jiffies;
  10937. workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
  10938. (struct sli4_wcqe_xri_aborted *)&wcqe);
  10939. break;
  10940. default:
  10941. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10942. "0144 Not a valid WCQE code: x%x\n",
  10943. bf_get(lpfc_wcqe_c_code, &wcqe));
  10944. break;
  10945. }
  10946. return workposted;
  10947. }
  10948. /**
  10949. * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
  10950. * @phba: Pointer to HBA context object.
  10951. * @eqe: Pointer to fast-path event queue entry.
  10952. *
  10953. * This routine process a event queue entry from the fast-path event queue.
  10954. * It will check the MajorCode and MinorCode to determine this is for a
  10955. * completion event on a completion queue, if not, an error shall be logged
  10956. * and just return. Otherwise, it will get to the corresponding completion
  10957. * queue and process all the entries on the completion queue, rearm the
  10958. * completion queue, and then return.
  10959. **/
  10960. static void
  10961. lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
  10962. uint32_t qidx)
  10963. {
  10964. struct lpfc_queue *cq;
  10965. struct lpfc_cqe *cqe;
  10966. bool workposted = false;
  10967. uint16_t cqid;
  10968. int ecount = 0;
  10969. if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
  10970. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10971. "0366 Not a valid completion "
  10972. "event: majorcode=x%x, minorcode=x%x\n",
  10973. bf_get_le32(lpfc_eqe_major_code, eqe),
  10974. bf_get_le32(lpfc_eqe_minor_code, eqe));
  10975. return;
  10976. }
  10977. /* Get the reference to the corresponding CQ */
  10978. cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
  10979. /* Check if this is a Slow path event */
  10980. if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
  10981. lpfc_sli4_sp_handle_eqe(phba, eqe,
  10982. phba->sli4_hba.hba_eq[qidx]);
  10983. return;
  10984. }
  10985. if (unlikely(!phba->sli4_hba.fcp_cq)) {
  10986. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10987. "3146 Fast-path completion queues "
  10988. "does not exist\n");
  10989. return;
  10990. }
  10991. cq = phba->sli4_hba.fcp_cq[qidx];
  10992. if (unlikely(!cq)) {
  10993. if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
  10994. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10995. "0367 Fast-path completion queue "
  10996. "(%d) does not exist\n", qidx);
  10997. return;
  10998. }
  10999. if (unlikely(cqid != cq->queue_id)) {
  11000. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11001. "0368 Miss-matched fast-path completion "
  11002. "queue identifier: eqcqid=%d, fcpcqid=%d\n",
  11003. cqid, cq->queue_id);
  11004. return;
  11005. }
  11006. /* Process all the entries to the CQ */
  11007. while ((cqe = lpfc_sli4_cq_get(cq))) {
  11008. workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
  11009. if (!(++ecount % cq->entry_repost))
  11010. lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
  11011. }
  11012. /* Track the max number of CQEs processed in 1 EQ */
  11013. if (ecount > cq->CQ_max_cqe)
  11014. cq->CQ_max_cqe = ecount;
  11015. /* Catch the no cq entry condition */
  11016. if (unlikely(ecount == 0))
  11017. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11018. "0369 No entry from fast-path completion "
  11019. "queue fcpcqid=%d\n", cq->queue_id);
  11020. /* In any case, flash and re-arm the CQ */
  11021. lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
  11022. /* wake up worker thread if there are works to be done */
  11023. if (workposted)
  11024. lpfc_worker_wake_up(phba);
  11025. }
  11026. static void
  11027. lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
  11028. {
  11029. struct lpfc_eqe *eqe;
  11030. /* walk all the EQ entries and drop on the floor */
  11031. while ((eqe = lpfc_sli4_eq_get(eq)))
  11032. ;
  11033. /* Clear and re-arm the EQ */
  11034. lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
  11035. }
  11036. /**
  11037. * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
  11038. * @irq: Interrupt number.
  11039. * @dev_id: The device context pointer.
  11040. *
  11041. * This function is directly called from the PCI layer as an interrupt
  11042. * service routine when device with SLI-4 interface spec is enabled with
  11043. * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
  11044. * ring event in the HBA. However, when the device is enabled with either
  11045. * MSI or Pin-IRQ interrupt mode, this function is called as part of the
  11046. * device-level interrupt handler. When the PCI slot is in error recovery
  11047. * or the HBA is undergoing initialization, the interrupt handler will not
  11048. * process the interrupt. The SCSI FCP fast-path ring event are handled in
  11049. * the intrrupt context. This function is called without any lock held.
  11050. * It gets the hbalock to access and update SLI data structures. Note that,
  11051. * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
  11052. * equal to that of FCP CQ index.
  11053. *
  11054. * The link attention and ELS ring attention events are handled
  11055. * by the worker thread. The interrupt handler signals the worker thread
  11056. * and returns for these events. This function is called without any lock
  11057. * held. It gets the hbalock to access and update SLI data structures.
  11058. *
  11059. * This function returns IRQ_HANDLED when interrupt is handled else it
  11060. * returns IRQ_NONE.
  11061. **/
  11062. irqreturn_t
  11063. lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
  11064. {
  11065. struct lpfc_hba *phba;
  11066. struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
  11067. struct lpfc_queue *fpeq;
  11068. struct lpfc_eqe *eqe;
  11069. unsigned long iflag;
  11070. int ecount = 0;
  11071. int fcp_eqidx;
  11072. /* Get the driver's phba structure from the dev_id */
  11073. fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
  11074. phba = fcp_eq_hdl->phba;
  11075. fcp_eqidx = fcp_eq_hdl->idx;
  11076. if (unlikely(!phba))
  11077. return IRQ_NONE;
  11078. if (unlikely(!phba->sli4_hba.hba_eq))
  11079. return IRQ_NONE;
  11080. /* Get to the EQ struct associated with this vector */
  11081. fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
  11082. if (unlikely(!fpeq))
  11083. return IRQ_NONE;
  11084. if (lpfc_fcp_look_ahead) {
  11085. if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
  11086. lpfc_sli4_eq_clr_intr(fpeq);
  11087. else {
  11088. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  11089. return IRQ_NONE;
  11090. }
  11091. }
  11092. /* Check device state for handling interrupt */
  11093. if (unlikely(lpfc_intr_state_check(phba))) {
  11094. fpeq->EQ_badstate++;
  11095. /* Check again for link_state with lock held */
  11096. spin_lock_irqsave(&phba->hbalock, iflag);
  11097. if (phba->link_state < LPFC_LINK_DOWN)
  11098. /* Flush, clear interrupt, and rearm the EQ */
  11099. lpfc_sli4_eq_flush(phba, fpeq);
  11100. spin_unlock_irqrestore(&phba->hbalock, iflag);
  11101. if (lpfc_fcp_look_ahead)
  11102. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  11103. return IRQ_NONE;
  11104. }
  11105. /*
  11106. * Process all the event on FCP fast-path EQ
  11107. */
  11108. while ((eqe = lpfc_sli4_eq_get(fpeq))) {
  11109. lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
  11110. if (!(++ecount % fpeq->entry_repost))
  11111. lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
  11112. fpeq->EQ_processed++;
  11113. }
  11114. /* Track the max number of EQEs processed in 1 intr */
  11115. if (ecount > fpeq->EQ_max_eqe)
  11116. fpeq->EQ_max_eqe = ecount;
  11117. /* Always clear and re-arm the fast-path EQ */
  11118. lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
  11119. if (unlikely(ecount == 0)) {
  11120. fpeq->EQ_no_entry++;
  11121. if (lpfc_fcp_look_ahead) {
  11122. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  11123. return IRQ_NONE;
  11124. }
  11125. if (phba->intr_type == MSIX)
  11126. /* MSI-X treated interrupt served as no EQ share INT */
  11127. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  11128. "0358 MSI-X interrupt with no EQE\n");
  11129. else
  11130. /* Non MSI-X treated on interrupt as EQ share INT */
  11131. return IRQ_NONE;
  11132. }
  11133. if (lpfc_fcp_look_ahead)
  11134. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  11135. return IRQ_HANDLED;
  11136. } /* lpfc_sli4_fp_intr_handler */
  11137. /**
  11138. * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
  11139. * @irq: Interrupt number.
  11140. * @dev_id: The device context pointer.
  11141. *
  11142. * This function is the device-level interrupt handler to device with SLI-4
  11143. * interface spec, called from the PCI layer when either MSI or Pin-IRQ
  11144. * interrupt mode is enabled and there is an event in the HBA which requires
  11145. * driver attention. This function invokes the slow-path interrupt attention
  11146. * handling function and fast-path interrupt attention handling function in
  11147. * turn to process the relevant HBA attention events. This function is called
  11148. * without any lock held. It gets the hbalock to access and update SLI data
  11149. * structures.
  11150. *
  11151. * This function returns IRQ_HANDLED when interrupt is handled, else it
  11152. * returns IRQ_NONE.
  11153. **/
  11154. irqreturn_t
  11155. lpfc_sli4_intr_handler(int irq, void *dev_id)
  11156. {
  11157. struct lpfc_hba *phba;
  11158. irqreturn_t hba_irq_rc;
  11159. bool hba_handled = false;
  11160. int fcp_eqidx;
  11161. /* Get the driver's phba structure from the dev_id */
  11162. phba = (struct lpfc_hba *)dev_id;
  11163. if (unlikely(!phba))
  11164. return IRQ_NONE;
  11165. /*
  11166. * Invoke fast-path host attention interrupt handling as appropriate.
  11167. */
  11168. for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
  11169. hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
  11170. &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
  11171. if (hba_irq_rc == IRQ_HANDLED)
  11172. hba_handled |= true;
  11173. }
  11174. return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
  11175. } /* lpfc_sli4_intr_handler */
  11176. /**
  11177. * lpfc_sli4_queue_free - free a queue structure and associated memory
  11178. * @queue: The queue structure to free.
  11179. *
  11180. * This function frees a queue structure and the DMAable memory used for
  11181. * the host resident queue. This function must be called after destroying the
  11182. * queue on the HBA.
  11183. **/
  11184. void
  11185. lpfc_sli4_queue_free(struct lpfc_queue *queue)
  11186. {
  11187. struct lpfc_dmabuf *dmabuf;
  11188. if (!queue)
  11189. return;
  11190. while (!list_empty(&queue->page_list)) {
  11191. list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
  11192. list);
  11193. dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
  11194. dmabuf->virt, dmabuf->phys);
  11195. kfree(dmabuf);
  11196. }
  11197. kfree(queue);
  11198. return;
  11199. }
  11200. /**
  11201. * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
  11202. * @phba: The HBA that this queue is being created on.
  11203. * @entry_size: The size of each queue entry for this queue.
  11204. * @entry count: The number of entries that this queue will handle.
  11205. *
  11206. * This function allocates a queue structure and the DMAable memory used for
  11207. * the host resident queue. This function must be called before creating the
  11208. * queue on the HBA.
  11209. **/
  11210. struct lpfc_queue *
  11211. lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
  11212. uint32_t entry_count)
  11213. {
  11214. struct lpfc_queue *queue;
  11215. struct lpfc_dmabuf *dmabuf;
  11216. int x, total_qe_count;
  11217. void *dma_pointer;
  11218. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11219. if (!phba->sli4_hba.pc_sli4_params.supported)
  11220. hw_page_size = SLI4_PAGE_SIZE;
  11221. queue = kzalloc(sizeof(struct lpfc_queue) +
  11222. (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
  11223. if (!queue)
  11224. return NULL;
  11225. queue->page_count = (ALIGN(entry_size * entry_count,
  11226. hw_page_size))/hw_page_size;
  11227. INIT_LIST_HEAD(&queue->list);
  11228. INIT_LIST_HEAD(&queue->page_list);
  11229. INIT_LIST_HEAD(&queue->child_list);
  11230. for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
  11231. dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
  11232. if (!dmabuf)
  11233. goto out_fail;
  11234. dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
  11235. hw_page_size, &dmabuf->phys,
  11236. GFP_KERNEL);
  11237. if (!dmabuf->virt) {
  11238. kfree(dmabuf);
  11239. goto out_fail;
  11240. }
  11241. memset(dmabuf->virt, 0, hw_page_size);
  11242. dmabuf->buffer_tag = x;
  11243. list_add_tail(&dmabuf->list, &queue->page_list);
  11244. /* initialize queue's entry array */
  11245. dma_pointer = dmabuf->virt;
  11246. for (; total_qe_count < entry_count &&
  11247. dma_pointer < (hw_page_size + dmabuf->virt);
  11248. total_qe_count++, dma_pointer += entry_size) {
  11249. queue->qe[total_qe_count].address = dma_pointer;
  11250. }
  11251. }
  11252. queue->entry_size = entry_size;
  11253. queue->entry_count = entry_count;
  11254. /*
  11255. * entry_repost is calculated based on the number of entries in the
  11256. * queue. This works out except for RQs. If buffers are NOT initially
  11257. * posted for every RQE, entry_repost should be adjusted accordingly.
  11258. */
  11259. queue->entry_repost = (entry_count >> 3);
  11260. if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
  11261. queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
  11262. queue->phba = phba;
  11263. return queue;
  11264. out_fail:
  11265. lpfc_sli4_queue_free(queue);
  11266. return NULL;
  11267. }
  11268. /**
  11269. * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
  11270. * @phba: HBA structure that indicates port to create a queue on.
  11271. * @pci_barset: PCI BAR set flag.
  11272. *
  11273. * This function shall perform iomap of the specified PCI BAR address to host
  11274. * memory address if not already done so and return it. The returned host
  11275. * memory address can be NULL.
  11276. */
  11277. static void __iomem *
  11278. lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
  11279. {
  11280. struct pci_dev *pdev;
  11281. if (!phba->pcidev)
  11282. return NULL;
  11283. else
  11284. pdev = phba->pcidev;
  11285. switch (pci_barset) {
  11286. case WQ_PCI_BAR_0_AND_1:
  11287. return phba->pci_bar0_memmap_p;
  11288. case WQ_PCI_BAR_2_AND_3:
  11289. return phba->pci_bar2_memmap_p;
  11290. case WQ_PCI_BAR_4_AND_5:
  11291. return phba->pci_bar4_memmap_p;
  11292. default:
  11293. break;
  11294. }
  11295. return NULL;
  11296. }
  11297. /**
  11298. * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
  11299. * @phba: HBA structure that indicates port to create a queue on.
  11300. * @startq: The starting FCP EQ to modify
  11301. *
  11302. * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
  11303. *
  11304. * The @phba struct is used to send mailbox command to HBA. The @startq
  11305. * is used to get the starting FCP EQ to change.
  11306. * This function is asynchronous and will wait for the mailbox
  11307. * command to finish before continuing.
  11308. *
  11309. * On success this function will return a zero. If unable to allocate enough
  11310. * memory this function will return -ENOMEM. If the queue create mailbox command
  11311. * fails this function will return -ENXIO.
  11312. **/
  11313. uint32_t
  11314. lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint16_t startq)
  11315. {
  11316. struct lpfc_mbx_modify_eq_delay *eq_delay;
  11317. LPFC_MBOXQ_t *mbox;
  11318. struct lpfc_queue *eq;
  11319. int cnt, rc, length, status = 0;
  11320. uint32_t shdr_status, shdr_add_status;
  11321. uint32_t result;
  11322. int fcp_eqidx;
  11323. union lpfc_sli4_cfg_shdr *shdr;
  11324. uint16_t dmult;
  11325. if (startq >= phba->cfg_fcp_io_channel)
  11326. return 0;
  11327. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11328. if (!mbox)
  11329. return -ENOMEM;
  11330. length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
  11331. sizeof(struct lpfc_sli4_cfg_mhdr));
  11332. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11333. LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
  11334. length, LPFC_SLI4_MBX_EMBED);
  11335. eq_delay = &mbox->u.mqe.un.eq_delay;
  11336. /* Calculate delay multiper from maximum interrupt per second */
  11337. result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
  11338. if (result > LPFC_DMULT_CONST)
  11339. dmult = 0;
  11340. else
  11341. dmult = LPFC_DMULT_CONST/result - 1;
  11342. cnt = 0;
  11343. for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
  11344. fcp_eqidx++) {
  11345. eq = phba->sli4_hba.hba_eq[fcp_eqidx];
  11346. if (!eq)
  11347. continue;
  11348. eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
  11349. eq_delay->u.request.eq[cnt].phase = 0;
  11350. eq_delay->u.request.eq[cnt].delay_multi = dmult;
  11351. cnt++;
  11352. if (cnt >= LPFC_MAX_EQ_DELAY)
  11353. break;
  11354. }
  11355. eq_delay->u.request.num_eq = cnt;
  11356. mbox->vport = phba->pport;
  11357. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  11358. mbox->context1 = NULL;
  11359. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11360. shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
  11361. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11362. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11363. if (shdr_status || shdr_add_status || rc) {
  11364. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11365. "2512 MODIFY_EQ_DELAY mailbox failed with "
  11366. "status x%x add_status x%x, mbx status x%x\n",
  11367. shdr_status, shdr_add_status, rc);
  11368. status = -ENXIO;
  11369. }
  11370. mempool_free(mbox, phba->mbox_mem_pool);
  11371. return status;
  11372. }
  11373. /**
  11374. * lpfc_eq_create - Create an Event Queue on the HBA
  11375. * @phba: HBA structure that indicates port to create a queue on.
  11376. * @eq: The queue structure to use to create the event queue.
  11377. * @imax: The maximum interrupt per second limit.
  11378. *
  11379. * This function creates an event queue, as detailed in @eq, on a port,
  11380. * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
  11381. *
  11382. * The @phba struct is used to send mailbox command to HBA. The @eq struct
  11383. * is used to get the entry count and entry size that are necessary to
  11384. * determine the number of pages to allocate and use for this queue. This
  11385. * function will send the EQ_CREATE mailbox command to the HBA to setup the
  11386. * event queue. This function is asynchronous and will wait for the mailbox
  11387. * command to finish before continuing.
  11388. *
  11389. * On success this function will return a zero. If unable to allocate enough
  11390. * memory this function will return -ENOMEM. If the queue create mailbox command
  11391. * fails this function will return -ENXIO.
  11392. **/
  11393. uint32_t
  11394. lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
  11395. {
  11396. struct lpfc_mbx_eq_create *eq_create;
  11397. LPFC_MBOXQ_t *mbox;
  11398. int rc, length, status = 0;
  11399. struct lpfc_dmabuf *dmabuf;
  11400. uint32_t shdr_status, shdr_add_status;
  11401. union lpfc_sli4_cfg_shdr *shdr;
  11402. uint16_t dmult;
  11403. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11404. /* sanity check on queue memory */
  11405. if (!eq)
  11406. return -ENODEV;
  11407. if (!phba->sli4_hba.pc_sli4_params.supported)
  11408. hw_page_size = SLI4_PAGE_SIZE;
  11409. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11410. if (!mbox)
  11411. return -ENOMEM;
  11412. length = (sizeof(struct lpfc_mbx_eq_create) -
  11413. sizeof(struct lpfc_sli4_cfg_mhdr));
  11414. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11415. LPFC_MBOX_OPCODE_EQ_CREATE,
  11416. length, LPFC_SLI4_MBX_EMBED);
  11417. eq_create = &mbox->u.mqe.un.eq_create;
  11418. bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
  11419. eq->page_count);
  11420. bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
  11421. LPFC_EQE_SIZE);
  11422. bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
  11423. /* Calculate delay multiper from maximum interrupt per second */
  11424. if (imax > LPFC_DMULT_CONST)
  11425. dmult = 0;
  11426. else
  11427. dmult = LPFC_DMULT_CONST/imax - 1;
  11428. bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
  11429. dmult);
  11430. switch (eq->entry_count) {
  11431. default:
  11432. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11433. "0360 Unsupported EQ count. (%d)\n",
  11434. eq->entry_count);
  11435. if (eq->entry_count < 256)
  11436. return -EINVAL;
  11437. /* otherwise default to smallest count (drop through) */
  11438. case 256:
  11439. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11440. LPFC_EQ_CNT_256);
  11441. break;
  11442. case 512:
  11443. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11444. LPFC_EQ_CNT_512);
  11445. break;
  11446. case 1024:
  11447. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11448. LPFC_EQ_CNT_1024);
  11449. break;
  11450. case 2048:
  11451. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11452. LPFC_EQ_CNT_2048);
  11453. break;
  11454. case 4096:
  11455. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11456. LPFC_EQ_CNT_4096);
  11457. break;
  11458. }
  11459. list_for_each_entry(dmabuf, &eq->page_list, list) {
  11460. memset(dmabuf->virt, 0, hw_page_size);
  11461. eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  11462. putPaddrLow(dmabuf->phys);
  11463. eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  11464. putPaddrHigh(dmabuf->phys);
  11465. }
  11466. mbox->vport = phba->pport;
  11467. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  11468. mbox->context1 = NULL;
  11469. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11470. shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
  11471. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11472. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11473. if (shdr_status || shdr_add_status || rc) {
  11474. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11475. "2500 EQ_CREATE mailbox failed with "
  11476. "status x%x add_status x%x, mbx status x%x\n",
  11477. shdr_status, shdr_add_status, rc);
  11478. status = -ENXIO;
  11479. }
  11480. eq->type = LPFC_EQ;
  11481. eq->subtype = LPFC_NONE;
  11482. eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
  11483. if (eq->queue_id == 0xFFFF)
  11484. status = -ENXIO;
  11485. eq->host_index = 0;
  11486. eq->hba_index = 0;
  11487. mempool_free(mbox, phba->mbox_mem_pool);
  11488. return status;
  11489. }
  11490. /**
  11491. * lpfc_cq_create - Create a Completion Queue on the HBA
  11492. * @phba: HBA structure that indicates port to create a queue on.
  11493. * @cq: The queue structure to use to create the completion queue.
  11494. * @eq: The event queue to bind this completion queue to.
  11495. *
  11496. * This function creates a completion queue, as detailed in @wq, on a port,
  11497. * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
  11498. *
  11499. * The @phba struct is used to send mailbox command to HBA. The @cq struct
  11500. * is used to get the entry count and entry size that are necessary to
  11501. * determine the number of pages to allocate and use for this queue. The @eq
  11502. * is used to indicate which event queue to bind this completion queue to. This
  11503. * function will send the CQ_CREATE mailbox command to the HBA to setup the
  11504. * completion queue. This function is asynchronous and will wait for the mailbox
  11505. * command to finish before continuing.
  11506. *
  11507. * On success this function will return a zero. If unable to allocate enough
  11508. * memory this function will return -ENOMEM. If the queue create mailbox command
  11509. * fails this function will return -ENXIO.
  11510. **/
  11511. uint32_t
  11512. lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
  11513. struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
  11514. {
  11515. struct lpfc_mbx_cq_create *cq_create;
  11516. struct lpfc_dmabuf *dmabuf;
  11517. LPFC_MBOXQ_t *mbox;
  11518. int rc, length, status = 0;
  11519. uint32_t shdr_status, shdr_add_status;
  11520. union lpfc_sli4_cfg_shdr *shdr;
  11521. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11522. /* sanity check on queue memory */
  11523. if (!cq || !eq)
  11524. return -ENODEV;
  11525. if (!phba->sli4_hba.pc_sli4_params.supported)
  11526. hw_page_size = SLI4_PAGE_SIZE;
  11527. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11528. if (!mbox)
  11529. return -ENOMEM;
  11530. length = (sizeof(struct lpfc_mbx_cq_create) -
  11531. sizeof(struct lpfc_sli4_cfg_mhdr));
  11532. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11533. LPFC_MBOX_OPCODE_CQ_CREATE,
  11534. length, LPFC_SLI4_MBX_EMBED);
  11535. cq_create = &mbox->u.mqe.un.cq_create;
  11536. shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
  11537. bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
  11538. cq->page_count);
  11539. bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
  11540. bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
  11541. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  11542. phba->sli4_hba.pc_sli4_params.cqv);
  11543. if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
  11544. /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
  11545. bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
  11546. bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
  11547. eq->queue_id);
  11548. } else {
  11549. bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
  11550. eq->queue_id);
  11551. }
  11552. switch (cq->entry_count) {
  11553. default:
  11554. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11555. "0361 Unsupported CQ count. (%d)\n",
  11556. cq->entry_count);
  11557. if (cq->entry_count < 256) {
  11558. status = -EINVAL;
  11559. goto out;
  11560. }
  11561. /* otherwise default to smallest count (drop through) */
  11562. case 256:
  11563. bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
  11564. LPFC_CQ_CNT_256);
  11565. break;
  11566. case 512:
  11567. bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
  11568. LPFC_CQ_CNT_512);
  11569. break;
  11570. case 1024:
  11571. bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
  11572. LPFC_CQ_CNT_1024);
  11573. break;
  11574. }
  11575. list_for_each_entry(dmabuf, &cq->page_list, list) {
  11576. memset(dmabuf->virt, 0, hw_page_size);
  11577. cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  11578. putPaddrLow(dmabuf->phys);
  11579. cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  11580. putPaddrHigh(dmabuf->phys);
  11581. }
  11582. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11583. /* The IOCTL status is embedded in the mailbox subheader. */
  11584. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11585. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11586. if (shdr_status || shdr_add_status || rc) {
  11587. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11588. "2501 CQ_CREATE mailbox failed with "
  11589. "status x%x add_status x%x, mbx status x%x\n",
  11590. shdr_status, shdr_add_status, rc);
  11591. status = -ENXIO;
  11592. goto out;
  11593. }
  11594. cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
  11595. if (cq->queue_id == 0xFFFF) {
  11596. status = -ENXIO;
  11597. goto out;
  11598. }
  11599. /* link the cq onto the parent eq child list */
  11600. list_add_tail(&cq->list, &eq->child_list);
  11601. /* Set up completion queue's type and subtype */
  11602. cq->type = type;
  11603. cq->subtype = subtype;
  11604. cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
  11605. cq->assoc_qid = eq->queue_id;
  11606. cq->host_index = 0;
  11607. cq->hba_index = 0;
  11608. out:
  11609. mempool_free(mbox, phba->mbox_mem_pool);
  11610. return status;
  11611. }
  11612. /**
  11613. * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
  11614. * @phba: HBA structure that indicates port to create a queue on.
  11615. * @mq: The queue structure to use to create the mailbox queue.
  11616. * @mbox: An allocated pointer to type LPFC_MBOXQ_t
  11617. * @cq: The completion queue to associate with this cq.
  11618. *
  11619. * This function provides failback (fb) functionality when the
  11620. * mq_create_ext fails on older FW generations. It's purpose is identical
  11621. * to mq_create_ext otherwise.
  11622. *
  11623. * This routine cannot fail as all attributes were previously accessed and
  11624. * initialized in mq_create_ext.
  11625. **/
  11626. static void
  11627. lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
  11628. LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
  11629. {
  11630. struct lpfc_mbx_mq_create *mq_create;
  11631. struct lpfc_dmabuf *dmabuf;
  11632. int length;
  11633. length = (sizeof(struct lpfc_mbx_mq_create) -
  11634. sizeof(struct lpfc_sli4_cfg_mhdr));
  11635. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11636. LPFC_MBOX_OPCODE_MQ_CREATE,
  11637. length, LPFC_SLI4_MBX_EMBED);
  11638. mq_create = &mbox->u.mqe.un.mq_create;
  11639. bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
  11640. mq->page_count);
  11641. bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
  11642. cq->queue_id);
  11643. bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
  11644. switch (mq->entry_count) {
  11645. case 16:
  11646. bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
  11647. LPFC_MQ_RING_SIZE_16);
  11648. break;
  11649. case 32:
  11650. bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
  11651. LPFC_MQ_RING_SIZE_32);
  11652. break;
  11653. case 64:
  11654. bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
  11655. LPFC_MQ_RING_SIZE_64);
  11656. break;
  11657. case 128:
  11658. bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
  11659. LPFC_MQ_RING_SIZE_128);
  11660. break;
  11661. }
  11662. list_for_each_entry(dmabuf, &mq->page_list, list) {
  11663. mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  11664. putPaddrLow(dmabuf->phys);
  11665. mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  11666. putPaddrHigh(dmabuf->phys);
  11667. }
  11668. }
  11669. /**
  11670. * lpfc_mq_create - Create a mailbox Queue on the HBA
  11671. * @phba: HBA structure that indicates port to create a queue on.
  11672. * @mq: The queue structure to use to create the mailbox queue.
  11673. * @cq: The completion queue to associate with this cq.
  11674. * @subtype: The queue's subtype.
  11675. *
  11676. * This function creates a mailbox queue, as detailed in @mq, on a port,
  11677. * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
  11678. *
  11679. * The @phba struct is used to send mailbox command to HBA. The @cq struct
  11680. * is used to get the entry count and entry size that are necessary to
  11681. * determine the number of pages to allocate and use for this queue. This
  11682. * function will send the MQ_CREATE mailbox command to the HBA to setup the
  11683. * mailbox queue. This function is asynchronous and will wait for the mailbox
  11684. * command to finish before continuing.
  11685. *
  11686. * On success this function will return a zero. If unable to allocate enough
  11687. * memory this function will return -ENOMEM. If the queue create mailbox command
  11688. * fails this function will return -ENXIO.
  11689. **/
  11690. int32_t
  11691. lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
  11692. struct lpfc_queue *cq, uint32_t subtype)
  11693. {
  11694. struct lpfc_mbx_mq_create *mq_create;
  11695. struct lpfc_mbx_mq_create_ext *mq_create_ext;
  11696. struct lpfc_dmabuf *dmabuf;
  11697. LPFC_MBOXQ_t *mbox;
  11698. int rc, length, status = 0;
  11699. uint32_t shdr_status, shdr_add_status;
  11700. union lpfc_sli4_cfg_shdr *shdr;
  11701. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11702. /* sanity check on queue memory */
  11703. if (!mq || !cq)
  11704. return -ENODEV;
  11705. if (!phba->sli4_hba.pc_sli4_params.supported)
  11706. hw_page_size = SLI4_PAGE_SIZE;
  11707. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11708. if (!mbox)
  11709. return -ENOMEM;
  11710. length = (sizeof(struct lpfc_mbx_mq_create_ext) -
  11711. sizeof(struct lpfc_sli4_cfg_mhdr));
  11712. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11713. LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
  11714. length, LPFC_SLI4_MBX_EMBED);
  11715. mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
  11716. shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
  11717. bf_set(lpfc_mbx_mq_create_ext_num_pages,
  11718. &mq_create_ext->u.request, mq->page_count);
  11719. bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
  11720. &mq_create_ext->u.request, 1);
  11721. bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
  11722. &mq_create_ext->u.request, 1);
  11723. bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
  11724. &mq_create_ext->u.request, 1);
  11725. bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
  11726. &mq_create_ext->u.request, 1);
  11727. bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
  11728. &mq_create_ext->u.request, 1);
  11729. bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
  11730. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  11731. phba->sli4_hba.pc_sli4_params.mqv);
  11732. if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
  11733. bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
  11734. cq->queue_id);
  11735. else
  11736. bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
  11737. cq->queue_id);
  11738. switch (mq->entry_count) {
  11739. default:
  11740. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11741. "0362 Unsupported MQ count. (%d)\n",
  11742. mq->entry_count);
  11743. if (mq->entry_count < 16) {
  11744. status = -EINVAL;
  11745. goto out;
  11746. }
  11747. /* otherwise default to smallest count (drop through) */
  11748. case 16:
  11749. bf_set(lpfc_mq_context_ring_size,
  11750. &mq_create_ext->u.request.context,
  11751. LPFC_MQ_RING_SIZE_16);
  11752. break;
  11753. case 32:
  11754. bf_set(lpfc_mq_context_ring_size,
  11755. &mq_create_ext->u.request.context,
  11756. LPFC_MQ_RING_SIZE_32);
  11757. break;
  11758. case 64:
  11759. bf_set(lpfc_mq_context_ring_size,
  11760. &mq_create_ext->u.request.context,
  11761. LPFC_MQ_RING_SIZE_64);
  11762. break;
  11763. case 128:
  11764. bf_set(lpfc_mq_context_ring_size,
  11765. &mq_create_ext->u.request.context,
  11766. LPFC_MQ_RING_SIZE_128);
  11767. break;
  11768. }
  11769. list_for_each_entry(dmabuf, &mq->page_list, list) {
  11770. memset(dmabuf->virt, 0, hw_page_size);
  11771. mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
  11772. putPaddrLow(dmabuf->phys);
  11773. mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
  11774. putPaddrHigh(dmabuf->phys);
  11775. }
  11776. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11777. mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
  11778. &mq_create_ext->u.response);
  11779. if (rc != MBX_SUCCESS) {
  11780. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  11781. "2795 MQ_CREATE_EXT failed with "
  11782. "status x%x. Failback to MQ_CREATE.\n",
  11783. rc);
  11784. lpfc_mq_create_fb_init(phba, mq, mbox, cq);
  11785. mq_create = &mbox->u.mqe.un.mq_create;
  11786. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11787. shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
  11788. mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
  11789. &mq_create->u.response);
  11790. }
  11791. /* The IOCTL status is embedded in the mailbox subheader. */
  11792. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11793. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11794. if (shdr_status || shdr_add_status || rc) {
  11795. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11796. "2502 MQ_CREATE mailbox failed with "
  11797. "status x%x add_status x%x, mbx status x%x\n",
  11798. shdr_status, shdr_add_status, rc);
  11799. status = -ENXIO;
  11800. goto out;
  11801. }
  11802. if (mq->queue_id == 0xFFFF) {
  11803. status = -ENXIO;
  11804. goto out;
  11805. }
  11806. mq->type = LPFC_MQ;
  11807. mq->assoc_qid = cq->queue_id;
  11808. mq->subtype = subtype;
  11809. mq->host_index = 0;
  11810. mq->hba_index = 0;
  11811. /* link the mq onto the parent cq child list */
  11812. list_add_tail(&mq->list, &cq->child_list);
  11813. out:
  11814. mempool_free(mbox, phba->mbox_mem_pool);
  11815. return status;
  11816. }
  11817. /**
  11818. * lpfc_wq_create - Create a Work Queue on the HBA
  11819. * @phba: HBA structure that indicates port to create a queue on.
  11820. * @wq: The queue structure to use to create the work queue.
  11821. * @cq: The completion queue to bind this work queue to.
  11822. * @subtype: The subtype of the work queue indicating its functionality.
  11823. *
  11824. * This function creates a work queue, as detailed in @wq, on a port, described
  11825. * by @phba by sending a WQ_CREATE mailbox command to the HBA.
  11826. *
  11827. * The @phba struct is used to send mailbox command to HBA. The @wq struct
  11828. * is used to get the entry count and entry size that are necessary to
  11829. * determine the number of pages to allocate and use for this queue. The @cq
  11830. * is used to indicate which completion queue to bind this work queue to. This
  11831. * function will send the WQ_CREATE mailbox command to the HBA to setup the
  11832. * work queue. This function is asynchronous and will wait for the mailbox
  11833. * command to finish before continuing.
  11834. *
  11835. * On success this function will return a zero. If unable to allocate enough
  11836. * memory this function will return -ENOMEM. If the queue create mailbox command
  11837. * fails this function will return -ENXIO.
  11838. **/
  11839. uint32_t
  11840. lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
  11841. struct lpfc_queue *cq, uint32_t subtype)
  11842. {
  11843. struct lpfc_mbx_wq_create *wq_create;
  11844. struct lpfc_dmabuf *dmabuf;
  11845. LPFC_MBOXQ_t *mbox;
  11846. int rc, length, status = 0;
  11847. uint32_t shdr_status, shdr_add_status;
  11848. union lpfc_sli4_cfg_shdr *shdr;
  11849. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11850. struct dma_address *page;
  11851. void __iomem *bar_memmap_p;
  11852. uint32_t db_offset;
  11853. uint16_t pci_barset;
  11854. /* sanity check on queue memory */
  11855. if (!wq || !cq)
  11856. return -ENODEV;
  11857. if (!phba->sli4_hba.pc_sli4_params.supported)
  11858. hw_page_size = SLI4_PAGE_SIZE;
  11859. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11860. if (!mbox)
  11861. return -ENOMEM;
  11862. length = (sizeof(struct lpfc_mbx_wq_create) -
  11863. sizeof(struct lpfc_sli4_cfg_mhdr));
  11864. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  11865. LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
  11866. length, LPFC_SLI4_MBX_EMBED);
  11867. wq_create = &mbox->u.mqe.un.wq_create;
  11868. shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
  11869. bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
  11870. wq->page_count);
  11871. bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
  11872. cq->queue_id);
  11873. /* wqv is the earliest version supported, NOT the latest */
  11874. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  11875. phba->sli4_hba.pc_sli4_params.wqv);
  11876. switch (phba->sli4_hba.pc_sli4_params.wqv) {
  11877. case LPFC_Q_CREATE_VERSION_0:
  11878. switch (wq->entry_size) {
  11879. default:
  11880. case 64:
  11881. /* Nothing to do, version 0 ONLY supports 64 byte */
  11882. page = wq_create->u.request.page;
  11883. break;
  11884. case 128:
  11885. if (!(phba->sli4_hba.pc_sli4_params.wqsize &
  11886. LPFC_WQ_SZ128_SUPPORT)) {
  11887. status = -ERANGE;
  11888. goto out;
  11889. }
  11890. /* If we get here the HBA MUST also support V1 and
  11891. * we MUST use it
  11892. */
  11893. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  11894. LPFC_Q_CREATE_VERSION_1);
  11895. bf_set(lpfc_mbx_wq_create_wqe_count,
  11896. &wq_create->u.request_1, wq->entry_count);
  11897. bf_set(lpfc_mbx_wq_create_wqe_size,
  11898. &wq_create->u.request_1,
  11899. LPFC_WQ_WQE_SIZE_128);
  11900. bf_set(lpfc_mbx_wq_create_page_size,
  11901. &wq_create->u.request_1,
  11902. (PAGE_SIZE/SLI4_PAGE_SIZE));
  11903. page = wq_create->u.request_1.page;
  11904. break;
  11905. }
  11906. break;
  11907. case LPFC_Q_CREATE_VERSION_1:
  11908. bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
  11909. wq->entry_count);
  11910. switch (wq->entry_size) {
  11911. default:
  11912. case 64:
  11913. bf_set(lpfc_mbx_wq_create_wqe_size,
  11914. &wq_create->u.request_1,
  11915. LPFC_WQ_WQE_SIZE_64);
  11916. break;
  11917. case 128:
  11918. if (!(phba->sli4_hba.pc_sli4_params.wqsize &
  11919. LPFC_WQ_SZ128_SUPPORT)) {
  11920. status = -ERANGE;
  11921. goto out;
  11922. }
  11923. bf_set(lpfc_mbx_wq_create_wqe_size,
  11924. &wq_create->u.request_1,
  11925. LPFC_WQ_WQE_SIZE_128);
  11926. break;
  11927. }
  11928. bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
  11929. (PAGE_SIZE/SLI4_PAGE_SIZE));
  11930. page = wq_create->u.request_1.page;
  11931. break;
  11932. default:
  11933. status = -ERANGE;
  11934. goto out;
  11935. }
  11936. list_for_each_entry(dmabuf, &wq->page_list, list) {
  11937. memset(dmabuf->virt, 0, hw_page_size);
  11938. page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
  11939. page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
  11940. }
  11941. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
  11942. bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
  11943. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11944. /* The IOCTL status is embedded in the mailbox subheader. */
  11945. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11946. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11947. if (shdr_status || shdr_add_status || rc) {
  11948. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11949. "2503 WQ_CREATE mailbox failed with "
  11950. "status x%x add_status x%x, mbx status x%x\n",
  11951. shdr_status, shdr_add_status, rc);
  11952. status = -ENXIO;
  11953. goto out;
  11954. }
  11955. wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
  11956. if (wq->queue_id == 0xFFFF) {
  11957. status = -ENXIO;
  11958. goto out;
  11959. }
  11960. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
  11961. wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
  11962. &wq_create->u.response);
  11963. if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
  11964. (wq->db_format != LPFC_DB_RING_FORMAT)) {
  11965. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11966. "3265 WQ[%d] doorbell format not "
  11967. "supported: x%x\n", wq->queue_id,
  11968. wq->db_format);
  11969. status = -EINVAL;
  11970. goto out;
  11971. }
  11972. pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
  11973. &wq_create->u.response);
  11974. bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
  11975. if (!bar_memmap_p) {
  11976. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11977. "3263 WQ[%d] failed to memmap pci "
  11978. "barset:x%x\n", wq->queue_id,
  11979. pci_barset);
  11980. status = -ENOMEM;
  11981. goto out;
  11982. }
  11983. db_offset = wq_create->u.response.doorbell_offset;
  11984. if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
  11985. (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
  11986. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11987. "3252 WQ[%d] doorbell offset not "
  11988. "supported: x%x\n", wq->queue_id,
  11989. db_offset);
  11990. status = -EINVAL;
  11991. goto out;
  11992. }
  11993. wq->db_regaddr = bar_memmap_p + db_offset;
  11994. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  11995. "3264 WQ[%d]: barset:x%x, offset:x%x, "
  11996. "format:x%x\n", wq->queue_id, pci_barset,
  11997. db_offset, wq->db_format);
  11998. } else {
  11999. wq->db_format = LPFC_DB_LIST_FORMAT;
  12000. wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
  12001. }
  12002. wq->type = LPFC_WQ;
  12003. wq->assoc_qid = cq->queue_id;
  12004. wq->subtype = subtype;
  12005. wq->host_index = 0;
  12006. wq->hba_index = 0;
  12007. wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
  12008. /* link the wq onto the parent cq child list */
  12009. list_add_tail(&wq->list, &cq->child_list);
  12010. out:
  12011. mempool_free(mbox, phba->mbox_mem_pool);
  12012. return status;
  12013. }
  12014. /**
  12015. * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
  12016. * @phba: HBA structure that indicates port to create a queue on.
  12017. * @rq: The queue structure to use for the receive queue.
  12018. * @qno: The associated HBQ number
  12019. *
  12020. *
  12021. * For SLI4 we need to adjust the RQ repost value based on
  12022. * the number of buffers that are initially posted to the RQ.
  12023. */
  12024. void
  12025. lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
  12026. {
  12027. uint32_t cnt;
  12028. /* sanity check on queue memory */
  12029. if (!rq)
  12030. return;
  12031. cnt = lpfc_hbq_defs[qno]->entry_count;
  12032. /* Recalc repost for RQs based on buffers initially posted */
  12033. cnt = (cnt >> 3);
  12034. if (cnt < LPFC_QUEUE_MIN_REPOST)
  12035. cnt = LPFC_QUEUE_MIN_REPOST;
  12036. rq->entry_repost = cnt;
  12037. }
  12038. /**
  12039. * lpfc_rq_create - Create a Receive Queue on the HBA
  12040. * @phba: HBA structure that indicates port to create a queue on.
  12041. * @hrq: The queue structure to use to create the header receive queue.
  12042. * @drq: The queue structure to use to create the data receive queue.
  12043. * @cq: The completion queue to bind this work queue to.
  12044. *
  12045. * This function creates a receive buffer queue pair , as detailed in @hrq and
  12046. * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
  12047. * to the HBA.
  12048. *
  12049. * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
  12050. * struct is used to get the entry count that is necessary to determine the
  12051. * number of pages to use for this queue. The @cq is used to indicate which
  12052. * completion queue to bind received buffers that are posted to these queues to.
  12053. * This function will send the RQ_CREATE mailbox command to the HBA to setup the
  12054. * receive queue pair. This function is asynchronous and will wait for the
  12055. * mailbox command to finish before continuing.
  12056. *
  12057. * On success this function will return a zero. If unable to allocate enough
  12058. * memory this function will return -ENOMEM. If the queue create mailbox command
  12059. * fails this function will return -ENXIO.
  12060. **/
  12061. uint32_t
  12062. lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
  12063. struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
  12064. {
  12065. struct lpfc_mbx_rq_create *rq_create;
  12066. struct lpfc_dmabuf *dmabuf;
  12067. LPFC_MBOXQ_t *mbox;
  12068. int rc, length, status = 0;
  12069. uint32_t shdr_status, shdr_add_status;
  12070. union lpfc_sli4_cfg_shdr *shdr;
  12071. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  12072. void __iomem *bar_memmap_p;
  12073. uint32_t db_offset;
  12074. uint16_t pci_barset;
  12075. /* sanity check on queue memory */
  12076. if (!hrq || !drq || !cq)
  12077. return -ENODEV;
  12078. if (!phba->sli4_hba.pc_sli4_params.supported)
  12079. hw_page_size = SLI4_PAGE_SIZE;
  12080. if (hrq->entry_count != drq->entry_count)
  12081. return -EINVAL;
  12082. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  12083. if (!mbox)
  12084. return -ENOMEM;
  12085. length = (sizeof(struct lpfc_mbx_rq_create) -
  12086. sizeof(struct lpfc_sli4_cfg_mhdr));
  12087. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12088. LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
  12089. length, LPFC_SLI4_MBX_EMBED);
  12090. rq_create = &mbox->u.mqe.un.rq_create;
  12091. shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
  12092. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  12093. phba->sli4_hba.pc_sli4_params.rqv);
  12094. if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
  12095. bf_set(lpfc_rq_context_rqe_count_1,
  12096. &rq_create->u.request.context,
  12097. hrq->entry_count);
  12098. rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
  12099. bf_set(lpfc_rq_context_rqe_size,
  12100. &rq_create->u.request.context,
  12101. LPFC_RQE_SIZE_8);
  12102. bf_set(lpfc_rq_context_page_size,
  12103. &rq_create->u.request.context,
  12104. (PAGE_SIZE/SLI4_PAGE_SIZE));
  12105. } else {
  12106. switch (hrq->entry_count) {
  12107. default:
  12108. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12109. "2535 Unsupported RQ count. (%d)\n",
  12110. hrq->entry_count);
  12111. if (hrq->entry_count < 512) {
  12112. status = -EINVAL;
  12113. goto out;
  12114. }
  12115. /* otherwise default to smallest count (drop through) */
  12116. case 512:
  12117. bf_set(lpfc_rq_context_rqe_count,
  12118. &rq_create->u.request.context,
  12119. LPFC_RQ_RING_SIZE_512);
  12120. break;
  12121. case 1024:
  12122. bf_set(lpfc_rq_context_rqe_count,
  12123. &rq_create->u.request.context,
  12124. LPFC_RQ_RING_SIZE_1024);
  12125. break;
  12126. case 2048:
  12127. bf_set(lpfc_rq_context_rqe_count,
  12128. &rq_create->u.request.context,
  12129. LPFC_RQ_RING_SIZE_2048);
  12130. break;
  12131. case 4096:
  12132. bf_set(lpfc_rq_context_rqe_count,
  12133. &rq_create->u.request.context,
  12134. LPFC_RQ_RING_SIZE_4096);
  12135. break;
  12136. }
  12137. bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
  12138. LPFC_HDR_BUF_SIZE);
  12139. }
  12140. bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
  12141. cq->queue_id);
  12142. bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
  12143. hrq->page_count);
  12144. list_for_each_entry(dmabuf, &hrq->page_list, list) {
  12145. memset(dmabuf->virt, 0, hw_page_size);
  12146. rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  12147. putPaddrLow(dmabuf->phys);
  12148. rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  12149. putPaddrHigh(dmabuf->phys);
  12150. }
  12151. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
  12152. bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
  12153. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12154. /* The IOCTL status is embedded in the mailbox subheader. */
  12155. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12156. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12157. if (shdr_status || shdr_add_status || rc) {
  12158. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12159. "2504 RQ_CREATE mailbox failed with "
  12160. "status x%x add_status x%x, mbx status x%x\n",
  12161. shdr_status, shdr_add_status, rc);
  12162. status = -ENXIO;
  12163. goto out;
  12164. }
  12165. hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
  12166. if (hrq->queue_id == 0xFFFF) {
  12167. status = -ENXIO;
  12168. goto out;
  12169. }
  12170. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
  12171. hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
  12172. &rq_create->u.response);
  12173. if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
  12174. (hrq->db_format != LPFC_DB_RING_FORMAT)) {
  12175. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12176. "3262 RQ [%d] doorbell format not "
  12177. "supported: x%x\n", hrq->queue_id,
  12178. hrq->db_format);
  12179. status = -EINVAL;
  12180. goto out;
  12181. }
  12182. pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
  12183. &rq_create->u.response);
  12184. bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
  12185. if (!bar_memmap_p) {
  12186. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12187. "3269 RQ[%d] failed to memmap pci "
  12188. "barset:x%x\n", hrq->queue_id,
  12189. pci_barset);
  12190. status = -ENOMEM;
  12191. goto out;
  12192. }
  12193. db_offset = rq_create->u.response.doorbell_offset;
  12194. if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
  12195. (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
  12196. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12197. "3270 RQ[%d] doorbell offset not "
  12198. "supported: x%x\n", hrq->queue_id,
  12199. db_offset);
  12200. status = -EINVAL;
  12201. goto out;
  12202. }
  12203. hrq->db_regaddr = bar_memmap_p + db_offset;
  12204. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  12205. "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
  12206. "format:x%x\n", hrq->queue_id, pci_barset,
  12207. db_offset, hrq->db_format);
  12208. } else {
  12209. hrq->db_format = LPFC_DB_RING_FORMAT;
  12210. hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
  12211. }
  12212. hrq->type = LPFC_HRQ;
  12213. hrq->assoc_qid = cq->queue_id;
  12214. hrq->subtype = subtype;
  12215. hrq->host_index = 0;
  12216. hrq->hba_index = 0;
  12217. /* now create the data queue */
  12218. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12219. LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
  12220. length, LPFC_SLI4_MBX_EMBED);
  12221. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  12222. phba->sli4_hba.pc_sli4_params.rqv);
  12223. if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
  12224. bf_set(lpfc_rq_context_rqe_count_1,
  12225. &rq_create->u.request.context, hrq->entry_count);
  12226. rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
  12227. bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
  12228. LPFC_RQE_SIZE_8);
  12229. bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
  12230. (PAGE_SIZE/SLI4_PAGE_SIZE));
  12231. } else {
  12232. switch (drq->entry_count) {
  12233. default:
  12234. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12235. "2536 Unsupported RQ count. (%d)\n",
  12236. drq->entry_count);
  12237. if (drq->entry_count < 512) {
  12238. status = -EINVAL;
  12239. goto out;
  12240. }
  12241. /* otherwise default to smallest count (drop through) */
  12242. case 512:
  12243. bf_set(lpfc_rq_context_rqe_count,
  12244. &rq_create->u.request.context,
  12245. LPFC_RQ_RING_SIZE_512);
  12246. break;
  12247. case 1024:
  12248. bf_set(lpfc_rq_context_rqe_count,
  12249. &rq_create->u.request.context,
  12250. LPFC_RQ_RING_SIZE_1024);
  12251. break;
  12252. case 2048:
  12253. bf_set(lpfc_rq_context_rqe_count,
  12254. &rq_create->u.request.context,
  12255. LPFC_RQ_RING_SIZE_2048);
  12256. break;
  12257. case 4096:
  12258. bf_set(lpfc_rq_context_rqe_count,
  12259. &rq_create->u.request.context,
  12260. LPFC_RQ_RING_SIZE_4096);
  12261. break;
  12262. }
  12263. bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
  12264. LPFC_DATA_BUF_SIZE);
  12265. }
  12266. bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
  12267. cq->queue_id);
  12268. bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
  12269. drq->page_count);
  12270. list_for_each_entry(dmabuf, &drq->page_list, list) {
  12271. rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  12272. putPaddrLow(dmabuf->phys);
  12273. rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  12274. putPaddrHigh(dmabuf->phys);
  12275. }
  12276. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
  12277. bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
  12278. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12279. /* The IOCTL status is embedded in the mailbox subheader. */
  12280. shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
  12281. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12282. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12283. if (shdr_status || shdr_add_status || rc) {
  12284. status = -ENXIO;
  12285. goto out;
  12286. }
  12287. drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
  12288. if (drq->queue_id == 0xFFFF) {
  12289. status = -ENXIO;
  12290. goto out;
  12291. }
  12292. drq->type = LPFC_DRQ;
  12293. drq->assoc_qid = cq->queue_id;
  12294. drq->subtype = subtype;
  12295. drq->host_index = 0;
  12296. drq->hba_index = 0;
  12297. /* link the header and data RQs onto the parent cq child list */
  12298. list_add_tail(&hrq->list, &cq->child_list);
  12299. list_add_tail(&drq->list, &cq->child_list);
  12300. out:
  12301. mempool_free(mbox, phba->mbox_mem_pool);
  12302. return status;
  12303. }
  12304. /**
  12305. * lpfc_eq_destroy - Destroy an event Queue on the HBA
  12306. * @eq: The queue structure associated with the queue to destroy.
  12307. *
  12308. * This function destroys a queue, as detailed in @eq by sending an mailbox
  12309. * command, specific to the type of queue, to the HBA.
  12310. *
  12311. * The @eq struct is used to get the queue ID of the queue to destroy.
  12312. *
  12313. * On success this function will return a zero. If the queue destroy mailbox
  12314. * command fails this function will return -ENXIO.
  12315. **/
  12316. uint32_t
  12317. lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
  12318. {
  12319. LPFC_MBOXQ_t *mbox;
  12320. int rc, length, status = 0;
  12321. uint32_t shdr_status, shdr_add_status;
  12322. union lpfc_sli4_cfg_shdr *shdr;
  12323. /* sanity check on queue memory */
  12324. if (!eq)
  12325. return -ENODEV;
  12326. mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
  12327. if (!mbox)
  12328. return -ENOMEM;
  12329. length = (sizeof(struct lpfc_mbx_eq_destroy) -
  12330. sizeof(struct lpfc_sli4_cfg_mhdr));
  12331. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  12332. LPFC_MBOX_OPCODE_EQ_DESTROY,
  12333. length, LPFC_SLI4_MBX_EMBED);
  12334. bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
  12335. eq->queue_id);
  12336. mbox->vport = eq->phba->pport;
  12337. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12338. rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
  12339. /* The IOCTL status is embedded in the mailbox subheader. */
  12340. shdr = (union lpfc_sli4_cfg_shdr *)
  12341. &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
  12342. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12343. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12344. if (shdr_status || shdr_add_status || rc) {
  12345. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12346. "2505 EQ_DESTROY mailbox failed with "
  12347. "status x%x add_status x%x, mbx status x%x\n",
  12348. shdr_status, shdr_add_status, rc);
  12349. status = -ENXIO;
  12350. }
  12351. /* Remove eq from any list */
  12352. list_del_init(&eq->list);
  12353. mempool_free(mbox, eq->phba->mbox_mem_pool);
  12354. return status;
  12355. }
  12356. /**
  12357. * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
  12358. * @cq: The queue structure associated with the queue to destroy.
  12359. *
  12360. * This function destroys a queue, as detailed in @cq by sending an mailbox
  12361. * command, specific to the type of queue, to the HBA.
  12362. *
  12363. * The @cq struct is used to get the queue ID of the queue to destroy.
  12364. *
  12365. * On success this function will return a zero. If the queue destroy mailbox
  12366. * command fails this function will return -ENXIO.
  12367. **/
  12368. uint32_t
  12369. lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
  12370. {
  12371. LPFC_MBOXQ_t *mbox;
  12372. int rc, length, status = 0;
  12373. uint32_t shdr_status, shdr_add_status;
  12374. union lpfc_sli4_cfg_shdr *shdr;
  12375. /* sanity check on queue memory */
  12376. if (!cq)
  12377. return -ENODEV;
  12378. mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
  12379. if (!mbox)
  12380. return -ENOMEM;
  12381. length = (sizeof(struct lpfc_mbx_cq_destroy) -
  12382. sizeof(struct lpfc_sli4_cfg_mhdr));
  12383. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  12384. LPFC_MBOX_OPCODE_CQ_DESTROY,
  12385. length, LPFC_SLI4_MBX_EMBED);
  12386. bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
  12387. cq->queue_id);
  12388. mbox->vport = cq->phba->pport;
  12389. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12390. rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
  12391. /* The IOCTL status is embedded in the mailbox subheader. */
  12392. shdr = (union lpfc_sli4_cfg_shdr *)
  12393. &mbox->u.mqe.un.wq_create.header.cfg_shdr;
  12394. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12395. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12396. if (shdr_status || shdr_add_status || rc) {
  12397. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12398. "2506 CQ_DESTROY mailbox failed with "
  12399. "status x%x add_status x%x, mbx status x%x\n",
  12400. shdr_status, shdr_add_status, rc);
  12401. status = -ENXIO;
  12402. }
  12403. /* Remove cq from any list */
  12404. list_del_init(&cq->list);
  12405. mempool_free(mbox, cq->phba->mbox_mem_pool);
  12406. return status;
  12407. }
  12408. /**
  12409. * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
  12410. * @qm: The queue structure associated with the queue to destroy.
  12411. *
  12412. * This function destroys a queue, as detailed in @mq by sending an mailbox
  12413. * command, specific to the type of queue, to the HBA.
  12414. *
  12415. * The @mq struct is used to get the queue ID of the queue to destroy.
  12416. *
  12417. * On success this function will return a zero. If the queue destroy mailbox
  12418. * command fails this function will return -ENXIO.
  12419. **/
  12420. uint32_t
  12421. lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
  12422. {
  12423. LPFC_MBOXQ_t *mbox;
  12424. int rc, length, status = 0;
  12425. uint32_t shdr_status, shdr_add_status;
  12426. union lpfc_sli4_cfg_shdr *shdr;
  12427. /* sanity check on queue memory */
  12428. if (!mq)
  12429. return -ENODEV;
  12430. mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
  12431. if (!mbox)
  12432. return -ENOMEM;
  12433. length = (sizeof(struct lpfc_mbx_mq_destroy) -
  12434. sizeof(struct lpfc_sli4_cfg_mhdr));
  12435. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  12436. LPFC_MBOX_OPCODE_MQ_DESTROY,
  12437. length, LPFC_SLI4_MBX_EMBED);
  12438. bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
  12439. mq->queue_id);
  12440. mbox->vport = mq->phba->pport;
  12441. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12442. rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
  12443. /* The IOCTL status is embedded in the mailbox subheader. */
  12444. shdr = (union lpfc_sli4_cfg_shdr *)
  12445. &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
  12446. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12447. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12448. if (shdr_status || shdr_add_status || rc) {
  12449. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12450. "2507 MQ_DESTROY mailbox failed with "
  12451. "status x%x add_status x%x, mbx status x%x\n",
  12452. shdr_status, shdr_add_status, rc);
  12453. status = -ENXIO;
  12454. }
  12455. /* Remove mq from any list */
  12456. list_del_init(&mq->list);
  12457. mempool_free(mbox, mq->phba->mbox_mem_pool);
  12458. return status;
  12459. }
  12460. /**
  12461. * lpfc_wq_destroy - Destroy a Work Queue on the HBA
  12462. * @wq: The queue structure associated with the queue to destroy.
  12463. *
  12464. * This function destroys a queue, as detailed in @wq by sending an mailbox
  12465. * command, specific to the type of queue, to the HBA.
  12466. *
  12467. * The @wq struct is used to get the queue ID of the queue to destroy.
  12468. *
  12469. * On success this function will return a zero. If the queue destroy mailbox
  12470. * command fails this function will return -ENXIO.
  12471. **/
  12472. uint32_t
  12473. lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
  12474. {
  12475. LPFC_MBOXQ_t *mbox;
  12476. int rc, length, status = 0;
  12477. uint32_t shdr_status, shdr_add_status;
  12478. union lpfc_sli4_cfg_shdr *shdr;
  12479. /* sanity check on queue memory */
  12480. if (!wq)
  12481. return -ENODEV;
  12482. mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
  12483. if (!mbox)
  12484. return -ENOMEM;
  12485. length = (sizeof(struct lpfc_mbx_wq_destroy) -
  12486. sizeof(struct lpfc_sli4_cfg_mhdr));
  12487. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12488. LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
  12489. length, LPFC_SLI4_MBX_EMBED);
  12490. bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
  12491. wq->queue_id);
  12492. mbox->vport = wq->phba->pport;
  12493. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12494. rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
  12495. shdr = (union lpfc_sli4_cfg_shdr *)
  12496. &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
  12497. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12498. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12499. if (shdr_status || shdr_add_status || rc) {
  12500. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12501. "2508 WQ_DESTROY mailbox failed with "
  12502. "status x%x add_status x%x, mbx status x%x\n",
  12503. shdr_status, shdr_add_status, rc);
  12504. status = -ENXIO;
  12505. }
  12506. /* Remove wq from any list */
  12507. list_del_init(&wq->list);
  12508. mempool_free(mbox, wq->phba->mbox_mem_pool);
  12509. return status;
  12510. }
  12511. /**
  12512. * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
  12513. * @rq: The queue structure associated with the queue to destroy.
  12514. *
  12515. * This function destroys a queue, as detailed in @rq by sending an mailbox
  12516. * command, specific to the type of queue, to the HBA.
  12517. *
  12518. * The @rq struct is used to get the queue ID of the queue to destroy.
  12519. *
  12520. * On success this function will return a zero. If the queue destroy mailbox
  12521. * command fails this function will return -ENXIO.
  12522. **/
  12523. uint32_t
  12524. lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
  12525. struct lpfc_queue *drq)
  12526. {
  12527. LPFC_MBOXQ_t *mbox;
  12528. int rc, length, status = 0;
  12529. uint32_t shdr_status, shdr_add_status;
  12530. union lpfc_sli4_cfg_shdr *shdr;
  12531. /* sanity check on queue memory */
  12532. if (!hrq || !drq)
  12533. return -ENODEV;
  12534. mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
  12535. if (!mbox)
  12536. return -ENOMEM;
  12537. length = (sizeof(struct lpfc_mbx_rq_destroy) -
  12538. sizeof(struct lpfc_sli4_cfg_mhdr));
  12539. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12540. LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
  12541. length, LPFC_SLI4_MBX_EMBED);
  12542. bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
  12543. hrq->queue_id);
  12544. mbox->vport = hrq->phba->pport;
  12545. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12546. rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
  12547. /* The IOCTL status is embedded in the mailbox subheader. */
  12548. shdr = (union lpfc_sli4_cfg_shdr *)
  12549. &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
  12550. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12551. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12552. if (shdr_status || shdr_add_status || rc) {
  12553. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12554. "2509 RQ_DESTROY mailbox failed with "
  12555. "status x%x add_status x%x, mbx status x%x\n",
  12556. shdr_status, shdr_add_status, rc);
  12557. if (rc != MBX_TIMEOUT)
  12558. mempool_free(mbox, hrq->phba->mbox_mem_pool);
  12559. return -ENXIO;
  12560. }
  12561. bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
  12562. drq->queue_id);
  12563. rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
  12564. shdr = (union lpfc_sli4_cfg_shdr *)
  12565. &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
  12566. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12567. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12568. if (shdr_status || shdr_add_status || rc) {
  12569. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12570. "2510 RQ_DESTROY mailbox failed with "
  12571. "status x%x add_status x%x, mbx status x%x\n",
  12572. shdr_status, shdr_add_status, rc);
  12573. status = -ENXIO;
  12574. }
  12575. list_del_init(&hrq->list);
  12576. list_del_init(&drq->list);
  12577. mempool_free(mbox, hrq->phba->mbox_mem_pool);
  12578. return status;
  12579. }
  12580. /**
  12581. * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
  12582. * @phba: The virtual port for which this call being executed.
  12583. * @pdma_phys_addr0: Physical address of the 1st SGL page.
  12584. * @pdma_phys_addr1: Physical address of the 2nd SGL page.
  12585. * @xritag: the xritag that ties this io to the SGL pages.
  12586. *
  12587. * This routine will post the sgl pages for the IO that has the xritag
  12588. * that is in the iocbq structure. The xritag is assigned during iocbq
  12589. * creation and persists for as long as the driver is loaded.
  12590. * if the caller has fewer than 256 scatter gather segments to map then
  12591. * pdma_phys_addr1 should be 0.
  12592. * If the caller needs to map more than 256 scatter gather segment then
  12593. * pdma_phys_addr1 should be a valid physical address.
  12594. * physical address for SGLs must be 64 byte aligned.
  12595. * If you are going to map 2 SGL's then the first one must have 256 entries
  12596. * the second sgl can have between 1 and 256 entries.
  12597. *
  12598. * Return codes:
  12599. * 0 - Success
  12600. * -ENXIO, -ENOMEM - Failure
  12601. **/
  12602. int
  12603. lpfc_sli4_post_sgl(struct lpfc_hba *phba,
  12604. dma_addr_t pdma_phys_addr0,
  12605. dma_addr_t pdma_phys_addr1,
  12606. uint16_t xritag)
  12607. {
  12608. struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
  12609. LPFC_MBOXQ_t *mbox;
  12610. int rc;
  12611. uint32_t shdr_status, shdr_add_status;
  12612. uint32_t mbox_tmo;
  12613. union lpfc_sli4_cfg_shdr *shdr;
  12614. if (xritag == NO_XRI) {
  12615. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12616. "0364 Invalid param:\n");
  12617. return -EINVAL;
  12618. }
  12619. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  12620. if (!mbox)
  12621. return -ENOMEM;
  12622. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12623. LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
  12624. sizeof(struct lpfc_mbx_post_sgl_pages) -
  12625. sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
  12626. post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
  12627. &mbox->u.mqe.un.post_sgl_pages;
  12628. bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
  12629. bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
  12630. post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
  12631. cpu_to_le32(putPaddrLow(pdma_phys_addr0));
  12632. post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
  12633. cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
  12634. post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
  12635. cpu_to_le32(putPaddrLow(pdma_phys_addr1));
  12636. post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
  12637. cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
  12638. if (!phba->sli4_hba.intr_enable)
  12639. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12640. else {
  12641. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  12642. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  12643. }
  12644. /* The IOCTL status is embedded in the mailbox subheader. */
  12645. shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
  12646. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12647. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12648. if (rc != MBX_TIMEOUT)
  12649. mempool_free(mbox, phba->mbox_mem_pool);
  12650. if (shdr_status || shdr_add_status || rc) {
  12651. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12652. "2511 POST_SGL mailbox failed with "
  12653. "status x%x add_status x%x, mbx status x%x\n",
  12654. shdr_status, shdr_add_status, rc);
  12655. rc = -ENXIO;
  12656. }
  12657. return 0;
  12658. }
  12659. /**
  12660. * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
  12661. * @phba: pointer to lpfc hba data structure.
  12662. *
  12663. * This routine is invoked to post rpi header templates to the
  12664. * HBA consistent with the SLI-4 interface spec. This routine
  12665. * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
  12666. * SLI4_PAGE_SIZE modulo 64 rpi context headers.
  12667. *
  12668. * Returns
  12669. * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
  12670. * LPFC_RPI_ALLOC_ERROR if no rpis are available.
  12671. **/
  12672. uint16_t
  12673. lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
  12674. {
  12675. unsigned long xri;
  12676. /*
  12677. * Fetch the next logical xri. Because this index is logical,
  12678. * the driver starts at 0 each time.
  12679. */
  12680. spin_lock_irq(&phba->hbalock);
  12681. xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
  12682. phba->sli4_hba.max_cfg_param.max_xri, 0);
  12683. if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
  12684. spin_unlock_irq(&phba->hbalock);
  12685. return NO_XRI;
  12686. } else {
  12687. set_bit(xri, phba->sli4_hba.xri_bmask);
  12688. phba->sli4_hba.max_cfg_param.xri_used++;
  12689. }
  12690. spin_unlock_irq(&phba->hbalock);
  12691. return xri;
  12692. }
  12693. /**
  12694. * lpfc_sli4_free_xri - Release an xri for reuse.
  12695. * @phba: pointer to lpfc hba data structure.
  12696. *
  12697. * This routine is invoked to release an xri to the pool of
  12698. * available rpis maintained by the driver.
  12699. **/
  12700. void
  12701. __lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
  12702. {
  12703. if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
  12704. phba->sli4_hba.max_cfg_param.xri_used--;
  12705. }
  12706. }
  12707. /**
  12708. * lpfc_sli4_free_xri - Release an xri for reuse.
  12709. * @phba: pointer to lpfc hba data structure.
  12710. *
  12711. * This routine is invoked to release an xri to the pool of
  12712. * available rpis maintained by the driver.
  12713. **/
  12714. void
  12715. lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
  12716. {
  12717. spin_lock_irq(&phba->hbalock);
  12718. __lpfc_sli4_free_xri(phba, xri);
  12719. spin_unlock_irq(&phba->hbalock);
  12720. }
  12721. /**
  12722. * lpfc_sli4_next_xritag - Get an xritag for the io
  12723. * @phba: Pointer to HBA context object.
  12724. *
  12725. * This function gets an xritag for the iocb. If there is no unused xritag
  12726. * it will return 0xffff.
  12727. * The function returns the allocated xritag if successful, else returns zero.
  12728. * Zero is not a valid xritag.
  12729. * The caller is not required to hold any lock.
  12730. **/
  12731. uint16_t
  12732. lpfc_sli4_next_xritag(struct lpfc_hba *phba)
  12733. {
  12734. uint16_t xri_index;
  12735. xri_index = lpfc_sli4_alloc_xri(phba);
  12736. if (xri_index == NO_XRI)
  12737. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  12738. "2004 Failed to allocate XRI.last XRITAG is %d"
  12739. " Max XRI is %d, Used XRI is %d\n",
  12740. xri_index,
  12741. phba->sli4_hba.max_cfg_param.max_xri,
  12742. phba->sli4_hba.max_cfg_param.xri_used);
  12743. return xri_index;
  12744. }
  12745. /**
  12746. * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
  12747. * @phba: pointer to lpfc hba data structure.
  12748. * @post_sgl_list: pointer to els sgl entry list.
  12749. * @count: number of els sgl entries on the list.
  12750. *
  12751. * This routine is invoked to post a block of driver's sgl pages to the
  12752. * HBA using non-embedded mailbox command. No Lock is held. This routine
  12753. * is only called when the driver is loading and after all IO has been
  12754. * stopped.
  12755. **/
  12756. static int
  12757. lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
  12758. struct list_head *post_sgl_list,
  12759. int post_cnt)
  12760. {
  12761. struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
  12762. struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
  12763. struct sgl_page_pairs *sgl_pg_pairs;
  12764. void *viraddr;
  12765. LPFC_MBOXQ_t *mbox;
  12766. uint32_t reqlen, alloclen, pg_pairs;
  12767. uint32_t mbox_tmo;
  12768. uint16_t xritag_start = 0;
  12769. int rc = 0;
  12770. uint32_t shdr_status, shdr_add_status;
  12771. union lpfc_sli4_cfg_shdr *shdr;
  12772. reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
  12773. sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
  12774. if (reqlen > SLI4_PAGE_SIZE) {
  12775. lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
  12776. "2559 Block sgl registration required DMA "
  12777. "size (%d) great than a page\n", reqlen);
  12778. return -ENOMEM;
  12779. }
  12780. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  12781. if (!mbox)
  12782. return -ENOMEM;
  12783. /* Allocate DMA memory and set up the non-embedded mailbox command */
  12784. alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12785. LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
  12786. LPFC_SLI4_MBX_NEMBED);
  12787. if (alloclen < reqlen) {
  12788. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12789. "0285 Allocated DMA memory size (%d) is "
  12790. "less than the requested DMA memory "
  12791. "size (%d)\n", alloclen, reqlen);
  12792. lpfc_sli4_mbox_cmd_free(phba, mbox);
  12793. return -ENOMEM;
  12794. }
  12795. /* Set up the SGL pages in the non-embedded DMA pages */
  12796. viraddr = mbox->sge_array->addr[0];
  12797. sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
  12798. sgl_pg_pairs = &sgl->sgl_pg_pairs;
  12799. pg_pairs = 0;
  12800. list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
  12801. /* Set up the sge entry */
  12802. sgl_pg_pairs->sgl_pg0_addr_lo =
  12803. cpu_to_le32(putPaddrLow(sglq_entry->phys));
  12804. sgl_pg_pairs->sgl_pg0_addr_hi =
  12805. cpu_to_le32(putPaddrHigh(sglq_entry->phys));
  12806. sgl_pg_pairs->sgl_pg1_addr_lo =
  12807. cpu_to_le32(putPaddrLow(0));
  12808. sgl_pg_pairs->sgl_pg1_addr_hi =
  12809. cpu_to_le32(putPaddrHigh(0));
  12810. /* Keep the first xritag on the list */
  12811. if (pg_pairs == 0)
  12812. xritag_start = sglq_entry->sli4_xritag;
  12813. sgl_pg_pairs++;
  12814. pg_pairs++;
  12815. }
  12816. /* Complete initialization and perform endian conversion. */
  12817. bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
  12818. bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
  12819. sgl->word0 = cpu_to_le32(sgl->word0);
  12820. if (!phba->sli4_hba.intr_enable)
  12821. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12822. else {
  12823. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  12824. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  12825. }
  12826. shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
  12827. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12828. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12829. if (rc != MBX_TIMEOUT)
  12830. lpfc_sli4_mbox_cmd_free(phba, mbox);
  12831. if (shdr_status || shdr_add_status || rc) {
  12832. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12833. "2513 POST_SGL_BLOCK mailbox command failed "
  12834. "status x%x add_status x%x mbx status x%x\n",
  12835. shdr_status, shdr_add_status, rc);
  12836. rc = -ENXIO;
  12837. }
  12838. return rc;
  12839. }
  12840. /**
  12841. * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
  12842. * @phba: pointer to lpfc hba data structure.
  12843. * @sblist: pointer to scsi buffer list.
  12844. * @count: number of scsi buffers on the list.
  12845. *
  12846. * This routine is invoked to post a block of @count scsi sgl pages from a
  12847. * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
  12848. * No Lock is held.
  12849. *
  12850. **/
  12851. int
  12852. lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
  12853. struct list_head *sblist,
  12854. int count)
  12855. {
  12856. struct lpfc_scsi_buf *psb;
  12857. struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
  12858. struct sgl_page_pairs *sgl_pg_pairs;
  12859. void *viraddr;
  12860. LPFC_MBOXQ_t *mbox;
  12861. uint32_t reqlen, alloclen, pg_pairs;
  12862. uint32_t mbox_tmo;
  12863. uint16_t xritag_start = 0;
  12864. int rc = 0;
  12865. uint32_t shdr_status, shdr_add_status;
  12866. dma_addr_t pdma_phys_bpl1;
  12867. union lpfc_sli4_cfg_shdr *shdr;
  12868. /* Calculate the requested length of the dma memory */
  12869. reqlen = count * sizeof(struct sgl_page_pairs) +
  12870. sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
  12871. if (reqlen > SLI4_PAGE_SIZE) {
  12872. lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
  12873. "0217 Block sgl registration required DMA "
  12874. "size (%d) great than a page\n", reqlen);
  12875. return -ENOMEM;
  12876. }
  12877. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  12878. if (!mbox) {
  12879. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12880. "0283 Failed to allocate mbox cmd memory\n");
  12881. return -ENOMEM;
  12882. }
  12883. /* Allocate DMA memory and set up the non-embedded mailbox command */
  12884. alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12885. LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
  12886. LPFC_SLI4_MBX_NEMBED);
  12887. if (alloclen < reqlen) {
  12888. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12889. "2561 Allocated DMA memory size (%d) is "
  12890. "less than the requested DMA memory "
  12891. "size (%d)\n", alloclen, reqlen);
  12892. lpfc_sli4_mbox_cmd_free(phba, mbox);
  12893. return -ENOMEM;
  12894. }
  12895. /* Get the first SGE entry from the non-embedded DMA memory */
  12896. viraddr = mbox->sge_array->addr[0];
  12897. /* Set up the SGL pages in the non-embedded DMA pages */
  12898. sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
  12899. sgl_pg_pairs = &sgl->sgl_pg_pairs;
  12900. pg_pairs = 0;
  12901. list_for_each_entry(psb, sblist, list) {
  12902. /* Set up the sge entry */
  12903. sgl_pg_pairs->sgl_pg0_addr_lo =
  12904. cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
  12905. sgl_pg_pairs->sgl_pg0_addr_hi =
  12906. cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
  12907. if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
  12908. pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
  12909. else
  12910. pdma_phys_bpl1 = 0;
  12911. sgl_pg_pairs->sgl_pg1_addr_lo =
  12912. cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
  12913. sgl_pg_pairs->sgl_pg1_addr_hi =
  12914. cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
  12915. /* Keep the first xritag on the list */
  12916. if (pg_pairs == 0)
  12917. xritag_start = psb->cur_iocbq.sli4_xritag;
  12918. sgl_pg_pairs++;
  12919. pg_pairs++;
  12920. }
  12921. bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
  12922. bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
  12923. /* Perform endian conversion if necessary */
  12924. sgl->word0 = cpu_to_le32(sgl->word0);
  12925. if (!phba->sli4_hba.intr_enable)
  12926. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12927. else {
  12928. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  12929. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  12930. }
  12931. shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
  12932. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12933. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12934. if (rc != MBX_TIMEOUT)
  12935. lpfc_sli4_mbox_cmd_free(phba, mbox);
  12936. if (shdr_status || shdr_add_status || rc) {
  12937. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12938. "2564 POST_SGL_BLOCK mailbox command failed "
  12939. "status x%x add_status x%x mbx status x%x\n",
  12940. shdr_status, shdr_add_status, rc);
  12941. rc = -ENXIO;
  12942. }
  12943. return rc;
  12944. }
  12945. /**
  12946. * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
  12947. * @phba: pointer to lpfc_hba struct that the frame was received on
  12948. * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
  12949. *
  12950. * This function checks the fields in the @fc_hdr to see if the FC frame is a
  12951. * valid type of frame that the LPFC driver will handle. This function will
  12952. * return a zero if the frame is a valid frame or a non zero value when the
  12953. * frame does not pass the check.
  12954. **/
  12955. static int
  12956. lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
  12957. {
  12958. /* make rctl_names static to save stack space */
  12959. static char *rctl_names[] = FC_RCTL_NAMES_INIT;
  12960. char *type_names[] = FC_TYPE_NAMES_INIT;
  12961. struct fc_vft_header *fc_vft_hdr;
  12962. uint32_t *header = (uint32_t *) fc_hdr;
  12963. switch (fc_hdr->fh_r_ctl) {
  12964. case FC_RCTL_DD_UNCAT: /* uncategorized information */
  12965. case FC_RCTL_DD_SOL_DATA: /* solicited data */
  12966. case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
  12967. case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
  12968. case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
  12969. case FC_RCTL_DD_DATA_DESC: /* data descriptor */
  12970. case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
  12971. case FC_RCTL_DD_CMD_STATUS: /* command status */
  12972. case FC_RCTL_ELS_REQ: /* extended link services request */
  12973. case FC_RCTL_ELS_REP: /* extended link services reply */
  12974. case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
  12975. case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
  12976. case FC_RCTL_BA_NOP: /* basic link service NOP */
  12977. case FC_RCTL_BA_ABTS: /* basic link service abort */
  12978. case FC_RCTL_BA_RMC: /* remove connection */
  12979. case FC_RCTL_BA_ACC: /* basic accept */
  12980. case FC_RCTL_BA_RJT: /* basic reject */
  12981. case FC_RCTL_BA_PRMT:
  12982. case FC_RCTL_ACK_1: /* acknowledge_1 */
  12983. case FC_RCTL_ACK_0: /* acknowledge_0 */
  12984. case FC_RCTL_P_RJT: /* port reject */
  12985. case FC_RCTL_F_RJT: /* fabric reject */
  12986. case FC_RCTL_P_BSY: /* port busy */
  12987. case FC_RCTL_F_BSY: /* fabric busy to data frame */
  12988. case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
  12989. case FC_RCTL_LCR: /* link credit reset */
  12990. case FC_RCTL_END: /* end */
  12991. break;
  12992. case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
  12993. fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
  12994. fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
  12995. return lpfc_fc_frame_check(phba, fc_hdr);
  12996. default:
  12997. goto drop;
  12998. }
  12999. switch (fc_hdr->fh_type) {
  13000. case FC_TYPE_BLS:
  13001. case FC_TYPE_ELS:
  13002. case FC_TYPE_FCP:
  13003. case FC_TYPE_CT:
  13004. break;
  13005. case FC_TYPE_IP:
  13006. case FC_TYPE_ILS:
  13007. default:
  13008. goto drop;
  13009. }
  13010. lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
  13011. "2538 Received frame rctl:%s (x%x), type:%s (x%x), "
  13012. "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
  13013. rctl_names[fc_hdr->fh_r_ctl], fc_hdr->fh_r_ctl,
  13014. type_names[fc_hdr->fh_type], fc_hdr->fh_type,
  13015. be32_to_cpu(header[0]), be32_to_cpu(header[1]),
  13016. be32_to_cpu(header[2]), be32_to_cpu(header[3]),
  13017. be32_to_cpu(header[4]), be32_to_cpu(header[5]),
  13018. be32_to_cpu(header[6]));
  13019. return 0;
  13020. drop:
  13021. lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
  13022. "2539 Dropped frame rctl:%s type:%s\n",
  13023. rctl_names[fc_hdr->fh_r_ctl],
  13024. type_names[fc_hdr->fh_type]);
  13025. return 1;
  13026. }
  13027. /**
  13028. * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
  13029. * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
  13030. *
  13031. * This function processes the FC header to retrieve the VFI from the VF
  13032. * header, if one exists. This function will return the VFI if one exists
  13033. * or 0 if no VSAN Header exists.
  13034. **/
  13035. static uint32_t
  13036. lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
  13037. {
  13038. struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
  13039. if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
  13040. return 0;
  13041. return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
  13042. }
  13043. /**
  13044. * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
  13045. * @phba: Pointer to the HBA structure to search for the vport on
  13046. * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
  13047. * @fcfi: The FC Fabric ID that the frame came from
  13048. *
  13049. * This function searches the @phba for a vport that matches the content of the
  13050. * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
  13051. * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
  13052. * returns the matching vport pointer or NULL if unable to match frame to a
  13053. * vport.
  13054. **/
  13055. static struct lpfc_vport *
  13056. lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
  13057. uint16_t fcfi)
  13058. {
  13059. struct lpfc_vport **vports;
  13060. struct lpfc_vport *vport = NULL;
  13061. int i;
  13062. uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
  13063. fc_hdr->fh_d_id[1] << 8 |
  13064. fc_hdr->fh_d_id[2]);
  13065. if (did == Fabric_DID)
  13066. return phba->pport;
  13067. if ((phba->pport->fc_flag & FC_PT2PT) &&
  13068. !(phba->link_state == LPFC_HBA_READY))
  13069. return phba->pport;
  13070. vports = lpfc_create_vport_work_array(phba);
  13071. if (vports != NULL)
  13072. for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
  13073. if (phba->fcf.fcfi == fcfi &&
  13074. vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
  13075. vports[i]->fc_myDID == did) {
  13076. vport = vports[i];
  13077. break;
  13078. }
  13079. }
  13080. lpfc_destroy_vport_work_array(phba, vports);
  13081. return vport;
  13082. }
  13083. /**
  13084. * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
  13085. * @vport: The vport to work on.
  13086. *
  13087. * This function updates the receive sequence time stamp for this vport. The
  13088. * receive sequence time stamp indicates the time that the last frame of the
  13089. * the sequence that has been idle for the longest amount of time was received.
  13090. * the driver uses this time stamp to indicate if any received sequences have
  13091. * timed out.
  13092. **/
  13093. void
  13094. lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
  13095. {
  13096. struct lpfc_dmabuf *h_buf;
  13097. struct hbq_dmabuf *dmabuf = NULL;
  13098. /* get the oldest sequence on the rcv list */
  13099. h_buf = list_get_first(&vport->rcv_buffer_list,
  13100. struct lpfc_dmabuf, list);
  13101. if (!h_buf)
  13102. return;
  13103. dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  13104. vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
  13105. }
  13106. /**
  13107. * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
  13108. * @vport: The vport that the received sequences were sent to.
  13109. *
  13110. * This function cleans up all outstanding received sequences. This is called
  13111. * by the driver when a link event or user action invalidates all the received
  13112. * sequences.
  13113. **/
  13114. void
  13115. lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
  13116. {
  13117. struct lpfc_dmabuf *h_buf, *hnext;
  13118. struct lpfc_dmabuf *d_buf, *dnext;
  13119. struct hbq_dmabuf *dmabuf = NULL;
  13120. /* start with the oldest sequence on the rcv list */
  13121. list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
  13122. dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  13123. list_del_init(&dmabuf->hbuf.list);
  13124. list_for_each_entry_safe(d_buf, dnext,
  13125. &dmabuf->dbuf.list, list) {
  13126. list_del_init(&d_buf->list);
  13127. lpfc_in_buf_free(vport->phba, d_buf);
  13128. }
  13129. lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
  13130. }
  13131. }
  13132. /**
  13133. * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
  13134. * @vport: The vport that the received sequences were sent to.
  13135. *
  13136. * This function determines whether any received sequences have timed out by
  13137. * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
  13138. * indicates that there is at least one timed out sequence this routine will
  13139. * go through the received sequences one at a time from most inactive to most
  13140. * active to determine which ones need to be cleaned up. Once it has determined
  13141. * that a sequence needs to be cleaned up it will simply free up the resources
  13142. * without sending an abort.
  13143. **/
  13144. void
  13145. lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
  13146. {
  13147. struct lpfc_dmabuf *h_buf, *hnext;
  13148. struct lpfc_dmabuf *d_buf, *dnext;
  13149. struct hbq_dmabuf *dmabuf = NULL;
  13150. unsigned long timeout;
  13151. int abort_count = 0;
  13152. timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
  13153. vport->rcv_buffer_time_stamp);
  13154. if (list_empty(&vport->rcv_buffer_list) ||
  13155. time_before(jiffies, timeout))
  13156. return;
  13157. /* start with the oldest sequence on the rcv list */
  13158. list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
  13159. dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  13160. timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
  13161. dmabuf->time_stamp);
  13162. if (time_before(jiffies, timeout))
  13163. break;
  13164. abort_count++;
  13165. list_del_init(&dmabuf->hbuf.list);
  13166. list_for_each_entry_safe(d_buf, dnext,
  13167. &dmabuf->dbuf.list, list) {
  13168. list_del_init(&d_buf->list);
  13169. lpfc_in_buf_free(vport->phba, d_buf);
  13170. }
  13171. lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
  13172. }
  13173. if (abort_count)
  13174. lpfc_update_rcv_time_stamp(vport);
  13175. }
  13176. /**
  13177. * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
  13178. * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
  13179. *
  13180. * This function searches through the existing incomplete sequences that have
  13181. * been sent to this @vport. If the frame matches one of the incomplete
  13182. * sequences then the dbuf in the @dmabuf is added to the list of frames that
  13183. * make up that sequence. If no sequence is found that matches this frame then
  13184. * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
  13185. * This function returns a pointer to the first dmabuf in the sequence list that
  13186. * the frame was linked to.
  13187. **/
  13188. static struct hbq_dmabuf *
  13189. lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
  13190. {
  13191. struct fc_frame_header *new_hdr;
  13192. struct fc_frame_header *temp_hdr;
  13193. struct lpfc_dmabuf *d_buf;
  13194. struct lpfc_dmabuf *h_buf;
  13195. struct hbq_dmabuf *seq_dmabuf = NULL;
  13196. struct hbq_dmabuf *temp_dmabuf = NULL;
  13197. INIT_LIST_HEAD(&dmabuf->dbuf.list);
  13198. dmabuf->time_stamp = jiffies;
  13199. new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
  13200. /* Use the hdr_buf to find the sequence that this frame belongs to */
  13201. list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
  13202. temp_hdr = (struct fc_frame_header *)h_buf->virt;
  13203. if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
  13204. (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
  13205. (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
  13206. continue;
  13207. /* found a pending sequence that matches this frame */
  13208. seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  13209. break;
  13210. }
  13211. if (!seq_dmabuf) {
  13212. /*
  13213. * This indicates first frame received for this sequence.
  13214. * Queue the buffer on the vport's rcv_buffer_list.
  13215. */
  13216. list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
  13217. lpfc_update_rcv_time_stamp(vport);
  13218. return dmabuf;
  13219. }
  13220. temp_hdr = seq_dmabuf->hbuf.virt;
  13221. if (be16_to_cpu(new_hdr->fh_seq_cnt) <
  13222. be16_to_cpu(temp_hdr->fh_seq_cnt)) {
  13223. list_del_init(&seq_dmabuf->hbuf.list);
  13224. list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
  13225. list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
  13226. lpfc_update_rcv_time_stamp(vport);
  13227. return dmabuf;
  13228. }
  13229. /* move this sequence to the tail to indicate a young sequence */
  13230. list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
  13231. seq_dmabuf->time_stamp = jiffies;
  13232. lpfc_update_rcv_time_stamp(vport);
  13233. if (list_empty(&seq_dmabuf->dbuf.list)) {
  13234. temp_hdr = dmabuf->hbuf.virt;
  13235. list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
  13236. return seq_dmabuf;
  13237. }
  13238. /* find the correct place in the sequence to insert this frame */
  13239. list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
  13240. temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  13241. temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
  13242. /*
  13243. * If the frame's sequence count is greater than the frame on
  13244. * the list then insert the frame right after this frame
  13245. */
  13246. if (be16_to_cpu(new_hdr->fh_seq_cnt) >
  13247. be16_to_cpu(temp_hdr->fh_seq_cnt)) {
  13248. list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
  13249. return seq_dmabuf;
  13250. }
  13251. }
  13252. return NULL;
  13253. }
  13254. /**
  13255. * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
  13256. * @vport: pointer to a vitural port
  13257. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13258. *
  13259. * This function tries to abort from the partially assembed sequence, described
  13260. * by the information from basic abbort @dmabuf. It checks to see whether such
  13261. * partially assembled sequence held by the driver. If so, it shall free up all
  13262. * the frames from the partially assembled sequence.
  13263. *
  13264. * Return
  13265. * true -- if there is matching partially assembled sequence present and all
  13266. * the frames freed with the sequence;
  13267. * false -- if there is no matching partially assembled sequence present so
  13268. * nothing got aborted in the lower layer driver
  13269. **/
  13270. static bool
  13271. lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
  13272. struct hbq_dmabuf *dmabuf)
  13273. {
  13274. struct fc_frame_header *new_hdr;
  13275. struct fc_frame_header *temp_hdr;
  13276. struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
  13277. struct hbq_dmabuf *seq_dmabuf = NULL;
  13278. /* Use the hdr_buf to find the sequence that matches this frame */
  13279. INIT_LIST_HEAD(&dmabuf->dbuf.list);
  13280. INIT_LIST_HEAD(&dmabuf->hbuf.list);
  13281. new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
  13282. list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
  13283. temp_hdr = (struct fc_frame_header *)h_buf->virt;
  13284. if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
  13285. (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
  13286. (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
  13287. continue;
  13288. /* found a pending sequence that matches this frame */
  13289. seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  13290. break;
  13291. }
  13292. /* Free up all the frames from the partially assembled sequence */
  13293. if (seq_dmabuf) {
  13294. list_for_each_entry_safe(d_buf, n_buf,
  13295. &seq_dmabuf->dbuf.list, list) {
  13296. list_del_init(&d_buf->list);
  13297. lpfc_in_buf_free(vport->phba, d_buf);
  13298. }
  13299. return true;
  13300. }
  13301. return false;
  13302. }
  13303. /**
  13304. * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
  13305. * @vport: pointer to a vitural port
  13306. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13307. *
  13308. * This function tries to abort from the assembed sequence from upper level
  13309. * protocol, described by the information from basic abbort @dmabuf. It
  13310. * checks to see whether such pending context exists at upper level protocol.
  13311. * If so, it shall clean up the pending context.
  13312. *
  13313. * Return
  13314. * true -- if there is matching pending context of the sequence cleaned
  13315. * at ulp;
  13316. * false -- if there is no matching pending context of the sequence present
  13317. * at ulp.
  13318. **/
  13319. static bool
  13320. lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
  13321. {
  13322. struct lpfc_hba *phba = vport->phba;
  13323. int handled;
  13324. /* Accepting abort at ulp with SLI4 only */
  13325. if (phba->sli_rev < LPFC_SLI_REV4)
  13326. return false;
  13327. /* Register all caring upper level protocols to attend abort */
  13328. handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
  13329. if (handled)
  13330. return true;
  13331. return false;
  13332. }
  13333. /**
  13334. * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
  13335. * @phba: Pointer to HBA context object.
  13336. * @cmd_iocbq: pointer to the command iocbq structure.
  13337. * @rsp_iocbq: pointer to the response iocbq structure.
  13338. *
  13339. * This function handles the sequence abort response iocb command complete
  13340. * event. It properly releases the memory allocated to the sequence abort
  13341. * accept iocb.
  13342. **/
  13343. static void
  13344. lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
  13345. struct lpfc_iocbq *cmd_iocbq,
  13346. struct lpfc_iocbq *rsp_iocbq)
  13347. {
  13348. struct lpfc_nodelist *ndlp;
  13349. if (cmd_iocbq) {
  13350. ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
  13351. lpfc_nlp_put(ndlp);
  13352. lpfc_nlp_not_used(ndlp);
  13353. lpfc_sli_release_iocbq(phba, cmd_iocbq);
  13354. }
  13355. /* Failure means BLS ABORT RSP did not get delivered to remote node*/
  13356. if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
  13357. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13358. "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
  13359. rsp_iocbq->iocb.ulpStatus,
  13360. rsp_iocbq->iocb.un.ulpWord[4]);
  13361. }
  13362. /**
  13363. * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
  13364. * @phba: Pointer to HBA context object.
  13365. * @xri: xri id in transaction.
  13366. *
  13367. * This function validates the xri maps to the known range of XRIs allocated an
  13368. * used by the driver.
  13369. **/
  13370. uint16_t
  13371. lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
  13372. uint16_t xri)
  13373. {
  13374. int i;
  13375. for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
  13376. if (xri == phba->sli4_hba.xri_ids[i])
  13377. return i;
  13378. }
  13379. return NO_XRI;
  13380. }
  13381. /**
  13382. * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
  13383. * @phba: Pointer to HBA context object.
  13384. * @fc_hdr: pointer to a FC frame header.
  13385. *
  13386. * This function sends a basic response to a previous unsol sequence abort
  13387. * event after aborting the sequence handling.
  13388. **/
  13389. static void
  13390. lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
  13391. struct fc_frame_header *fc_hdr, bool aborted)
  13392. {
  13393. struct lpfc_hba *phba = vport->phba;
  13394. struct lpfc_iocbq *ctiocb = NULL;
  13395. struct lpfc_nodelist *ndlp;
  13396. uint16_t oxid, rxid, xri, lxri;
  13397. uint32_t sid, fctl;
  13398. IOCB_t *icmd;
  13399. int rc;
  13400. if (!lpfc_is_link_up(phba))
  13401. return;
  13402. sid = sli4_sid_from_fc_hdr(fc_hdr);
  13403. oxid = be16_to_cpu(fc_hdr->fh_ox_id);
  13404. rxid = be16_to_cpu(fc_hdr->fh_rx_id);
  13405. ndlp = lpfc_findnode_did(vport, sid);
  13406. if (!ndlp) {
  13407. ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
  13408. if (!ndlp) {
  13409. lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
  13410. "1268 Failed to allocate ndlp for "
  13411. "oxid:x%x SID:x%x\n", oxid, sid);
  13412. return;
  13413. }
  13414. lpfc_nlp_init(vport, ndlp, sid);
  13415. /* Put ndlp onto pport node list */
  13416. lpfc_enqueue_node(vport, ndlp);
  13417. } else if (!NLP_CHK_NODE_ACT(ndlp)) {
  13418. /* re-setup ndlp without removing from node list */
  13419. ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
  13420. if (!ndlp) {
  13421. lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
  13422. "3275 Failed to active ndlp found "
  13423. "for oxid:x%x SID:x%x\n", oxid, sid);
  13424. return;
  13425. }
  13426. }
  13427. /* Allocate buffer for rsp iocb */
  13428. ctiocb = lpfc_sli_get_iocbq(phba);
  13429. if (!ctiocb)
  13430. return;
  13431. /* Extract the F_CTL field from FC_HDR */
  13432. fctl = sli4_fctl_from_fc_hdr(fc_hdr);
  13433. icmd = &ctiocb->iocb;
  13434. icmd->un.xseq64.bdl.bdeSize = 0;
  13435. icmd->un.xseq64.bdl.ulpIoTag32 = 0;
  13436. icmd->un.xseq64.w5.hcsw.Dfctl = 0;
  13437. icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
  13438. icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
  13439. /* Fill in the rest of iocb fields */
  13440. icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
  13441. icmd->ulpBdeCount = 0;
  13442. icmd->ulpLe = 1;
  13443. icmd->ulpClass = CLASS3;
  13444. icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
  13445. ctiocb->context1 = lpfc_nlp_get(ndlp);
  13446. ctiocb->iocb_cmpl = NULL;
  13447. ctiocb->vport = phba->pport;
  13448. ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
  13449. ctiocb->sli4_lxritag = NO_XRI;
  13450. ctiocb->sli4_xritag = NO_XRI;
  13451. if (fctl & FC_FC_EX_CTX)
  13452. /* Exchange responder sent the abort so we
  13453. * own the oxid.
  13454. */
  13455. xri = oxid;
  13456. else
  13457. xri = rxid;
  13458. lxri = lpfc_sli4_xri_inrange(phba, xri);
  13459. if (lxri != NO_XRI)
  13460. lpfc_set_rrq_active(phba, ndlp, lxri,
  13461. (xri == oxid) ? rxid : oxid, 0);
  13462. /* For BA_ABTS from exchange responder, if the logical xri with
  13463. * the oxid maps to the FCP XRI range, the port no longer has
  13464. * that exchange context, send a BLS_RJT. Override the IOCB for
  13465. * a BA_RJT.
  13466. */
  13467. if ((fctl & FC_FC_EX_CTX) &&
  13468. (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
  13469. icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
  13470. bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
  13471. bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
  13472. bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
  13473. }
  13474. /* If BA_ABTS failed to abort a partially assembled receive sequence,
  13475. * the driver no longer has that exchange, send a BLS_RJT. Override
  13476. * the IOCB for a BA_RJT.
  13477. */
  13478. if (aborted == false) {
  13479. icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
  13480. bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
  13481. bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
  13482. bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
  13483. }
  13484. if (fctl & FC_FC_EX_CTX) {
  13485. /* ABTS sent by responder to CT exchange, construction
  13486. * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
  13487. * field and RX_ID from ABTS for RX_ID field.
  13488. */
  13489. bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
  13490. } else {
  13491. /* ABTS sent by initiator to CT exchange, construction
  13492. * of BA_ACC will need to allocate a new XRI as for the
  13493. * XRI_TAG field.
  13494. */
  13495. bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
  13496. }
  13497. bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
  13498. bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
  13499. /* Xmit CT abts response on exchange <xid> */
  13500. lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
  13501. "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
  13502. icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
  13503. rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
  13504. if (rc == IOCB_ERROR) {
  13505. lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
  13506. "2925 Failed to issue CT ABTS RSP x%x on "
  13507. "xri x%x, Data x%x\n",
  13508. icmd->un.xseq64.w5.hcsw.Rctl, oxid,
  13509. phba->link_state);
  13510. lpfc_nlp_put(ndlp);
  13511. ctiocb->context1 = NULL;
  13512. lpfc_sli_release_iocbq(phba, ctiocb);
  13513. }
  13514. }
  13515. /**
  13516. * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
  13517. * @vport: Pointer to the vport on which this sequence was received
  13518. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13519. *
  13520. * This function handles an SLI-4 unsolicited abort event. If the unsolicited
  13521. * receive sequence is only partially assembed by the driver, it shall abort
  13522. * the partially assembled frames for the sequence. Otherwise, if the
  13523. * unsolicited receive sequence has been completely assembled and passed to
  13524. * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
  13525. * unsolicited sequence has been aborted. After that, it will issue a basic
  13526. * accept to accept the abort.
  13527. **/
  13528. void
  13529. lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
  13530. struct hbq_dmabuf *dmabuf)
  13531. {
  13532. struct lpfc_hba *phba = vport->phba;
  13533. struct fc_frame_header fc_hdr;
  13534. uint32_t fctl;
  13535. bool aborted;
  13536. /* Make a copy of fc_hdr before the dmabuf being released */
  13537. memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
  13538. fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
  13539. if (fctl & FC_FC_EX_CTX) {
  13540. /* ABTS by responder to exchange, no cleanup needed */
  13541. aborted = true;
  13542. } else {
  13543. /* ABTS by initiator to exchange, need to do cleanup */
  13544. aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
  13545. if (aborted == false)
  13546. aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
  13547. }
  13548. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13549. /* Respond with BA_ACC or BA_RJT accordingly */
  13550. lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
  13551. }
  13552. /**
  13553. * lpfc_seq_complete - Indicates if a sequence is complete
  13554. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13555. *
  13556. * This function checks the sequence, starting with the frame described by
  13557. * @dmabuf, to see if all the frames associated with this sequence are present.
  13558. * the frames associated with this sequence are linked to the @dmabuf using the
  13559. * dbuf list. This function looks for two major things. 1) That the first frame
  13560. * has a sequence count of zero. 2) There is a frame with last frame of sequence
  13561. * set. 3) That there are no holes in the sequence count. The function will
  13562. * return 1 when the sequence is complete, otherwise it will return 0.
  13563. **/
  13564. static int
  13565. lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
  13566. {
  13567. struct fc_frame_header *hdr;
  13568. struct lpfc_dmabuf *d_buf;
  13569. struct hbq_dmabuf *seq_dmabuf;
  13570. uint32_t fctl;
  13571. int seq_count = 0;
  13572. hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
  13573. /* make sure first fame of sequence has a sequence count of zero */
  13574. if (hdr->fh_seq_cnt != seq_count)
  13575. return 0;
  13576. fctl = (hdr->fh_f_ctl[0] << 16 |
  13577. hdr->fh_f_ctl[1] << 8 |
  13578. hdr->fh_f_ctl[2]);
  13579. /* If last frame of sequence we can return success. */
  13580. if (fctl & FC_FC_END_SEQ)
  13581. return 1;
  13582. list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
  13583. seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  13584. hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
  13585. /* If there is a hole in the sequence count then fail. */
  13586. if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
  13587. return 0;
  13588. fctl = (hdr->fh_f_ctl[0] << 16 |
  13589. hdr->fh_f_ctl[1] << 8 |
  13590. hdr->fh_f_ctl[2]);
  13591. /* If last frame of sequence we can return success. */
  13592. if (fctl & FC_FC_END_SEQ)
  13593. return 1;
  13594. }
  13595. return 0;
  13596. }
  13597. /**
  13598. * lpfc_prep_seq - Prep sequence for ULP processing
  13599. * @vport: Pointer to the vport on which this sequence was received
  13600. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13601. *
  13602. * This function takes a sequence, described by a list of frames, and creates
  13603. * a list of iocbq structures to describe the sequence. This iocbq list will be
  13604. * used to issue to the generic unsolicited sequence handler. This routine
  13605. * returns a pointer to the first iocbq in the list. If the function is unable
  13606. * to allocate an iocbq then it throw out the received frames that were not
  13607. * able to be described and return a pointer to the first iocbq. If unable to
  13608. * allocate any iocbqs (including the first) this function will return NULL.
  13609. **/
  13610. static struct lpfc_iocbq *
  13611. lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
  13612. {
  13613. struct hbq_dmabuf *hbq_buf;
  13614. struct lpfc_dmabuf *d_buf, *n_buf;
  13615. struct lpfc_iocbq *first_iocbq, *iocbq;
  13616. struct fc_frame_header *fc_hdr;
  13617. uint32_t sid;
  13618. uint32_t len, tot_len;
  13619. struct ulp_bde64 *pbde;
  13620. fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
  13621. /* remove from receive buffer list */
  13622. list_del_init(&seq_dmabuf->hbuf.list);
  13623. lpfc_update_rcv_time_stamp(vport);
  13624. /* get the Remote Port's SID */
  13625. sid = sli4_sid_from_fc_hdr(fc_hdr);
  13626. tot_len = 0;
  13627. /* Get an iocbq struct to fill in. */
  13628. first_iocbq = lpfc_sli_get_iocbq(vport->phba);
  13629. if (first_iocbq) {
  13630. /* Initialize the first IOCB. */
  13631. first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
  13632. first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
  13633. /* Check FC Header to see what TYPE of frame we are rcv'ing */
  13634. if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
  13635. first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
  13636. first_iocbq->iocb.un.rcvels.parmRo =
  13637. sli4_did_from_fc_hdr(fc_hdr);
  13638. first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
  13639. } else
  13640. first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
  13641. first_iocbq->iocb.ulpContext = NO_XRI;
  13642. first_iocbq->iocb.unsli3.rcvsli3.ox_id =
  13643. be16_to_cpu(fc_hdr->fh_ox_id);
  13644. /* iocbq is prepped for internal consumption. Physical vpi. */
  13645. first_iocbq->iocb.unsli3.rcvsli3.vpi =
  13646. vport->phba->vpi_ids[vport->vpi];
  13647. /* put the first buffer into the first IOCBq */
  13648. tot_len = bf_get(lpfc_rcqe_length,
  13649. &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
  13650. first_iocbq->context2 = &seq_dmabuf->dbuf;
  13651. first_iocbq->context3 = NULL;
  13652. first_iocbq->iocb.ulpBdeCount = 1;
  13653. if (tot_len > LPFC_DATA_BUF_SIZE)
  13654. first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
  13655. LPFC_DATA_BUF_SIZE;
  13656. else
  13657. first_iocbq->iocb.un.cont64[0].tus.f.bdeSize = tot_len;
  13658. first_iocbq->iocb.un.rcvels.remoteID = sid;
  13659. first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
  13660. }
  13661. iocbq = first_iocbq;
  13662. /*
  13663. * Each IOCBq can have two Buffers assigned, so go through the list
  13664. * of buffers for this sequence and save two buffers in each IOCBq
  13665. */
  13666. list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
  13667. if (!iocbq) {
  13668. lpfc_in_buf_free(vport->phba, d_buf);
  13669. continue;
  13670. }
  13671. if (!iocbq->context3) {
  13672. iocbq->context3 = d_buf;
  13673. iocbq->iocb.ulpBdeCount++;
  13674. /* We need to get the size out of the right CQE */
  13675. hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  13676. len = bf_get(lpfc_rcqe_length,
  13677. &hbq_buf->cq_event.cqe.rcqe_cmpl);
  13678. pbde = (struct ulp_bde64 *)
  13679. &iocbq->iocb.unsli3.sli3Words[4];
  13680. if (len > LPFC_DATA_BUF_SIZE)
  13681. pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
  13682. else
  13683. pbde->tus.f.bdeSize = len;
  13684. iocbq->iocb.unsli3.rcvsli3.acc_len += len;
  13685. tot_len += len;
  13686. } else {
  13687. iocbq = lpfc_sli_get_iocbq(vport->phba);
  13688. if (!iocbq) {
  13689. if (first_iocbq) {
  13690. first_iocbq->iocb.ulpStatus =
  13691. IOSTAT_FCP_RSP_ERROR;
  13692. first_iocbq->iocb.un.ulpWord[4] =
  13693. IOERR_NO_RESOURCES;
  13694. }
  13695. lpfc_in_buf_free(vport->phba, d_buf);
  13696. continue;
  13697. }
  13698. /* We need to get the size out of the right CQE */
  13699. hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  13700. len = bf_get(lpfc_rcqe_length,
  13701. &hbq_buf->cq_event.cqe.rcqe_cmpl);
  13702. iocbq->context2 = d_buf;
  13703. iocbq->context3 = NULL;
  13704. iocbq->iocb.ulpBdeCount = 1;
  13705. if (len > LPFC_DATA_BUF_SIZE)
  13706. iocbq->iocb.un.cont64[0].tus.f.bdeSize =
  13707. LPFC_DATA_BUF_SIZE;
  13708. else
  13709. iocbq->iocb.un.cont64[0].tus.f.bdeSize = len;
  13710. tot_len += len;
  13711. iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
  13712. iocbq->iocb.un.rcvels.remoteID = sid;
  13713. list_add_tail(&iocbq->list, &first_iocbq->list);
  13714. }
  13715. }
  13716. return first_iocbq;
  13717. }
  13718. static void
  13719. lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
  13720. struct hbq_dmabuf *seq_dmabuf)
  13721. {
  13722. struct fc_frame_header *fc_hdr;
  13723. struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
  13724. struct lpfc_hba *phba = vport->phba;
  13725. fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
  13726. iocbq = lpfc_prep_seq(vport, seq_dmabuf);
  13727. if (!iocbq) {
  13728. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13729. "2707 Ring %d handler: Failed to allocate "
  13730. "iocb Rctl x%x Type x%x received\n",
  13731. LPFC_ELS_RING,
  13732. fc_hdr->fh_r_ctl, fc_hdr->fh_type);
  13733. return;
  13734. }
  13735. if (!lpfc_complete_unsol_iocb(phba,
  13736. &phba->sli.ring[LPFC_ELS_RING],
  13737. iocbq, fc_hdr->fh_r_ctl,
  13738. fc_hdr->fh_type))
  13739. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13740. "2540 Ring %d handler: unexpected Rctl "
  13741. "x%x Type x%x received\n",
  13742. LPFC_ELS_RING,
  13743. fc_hdr->fh_r_ctl, fc_hdr->fh_type);
  13744. /* Free iocb created in lpfc_prep_seq */
  13745. list_for_each_entry_safe(curr_iocb, next_iocb,
  13746. &iocbq->list, list) {
  13747. list_del_init(&curr_iocb->list);
  13748. lpfc_sli_release_iocbq(phba, curr_iocb);
  13749. }
  13750. lpfc_sli_release_iocbq(phba, iocbq);
  13751. }
  13752. /**
  13753. * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
  13754. * @phba: Pointer to HBA context object.
  13755. *
  13756. * This function is called with no lock held. This function processes all
  13757. * the received buffers and gives it to upper layers when a received buffer
  13758. * indicates that it is the final frame in the sequence. The interrupt
  13759. * service routine processes received buffers at interrupt contexts and adds
  13760. * received dma buffers to the rb_pend_list queue and signals the worker thread.
  13761. * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
  13762. * appropriate receive function when the final frame in a sequence is received.
  13763. **/
  13764. void
  13765. lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
  13766. struct hbq_dmabuf *dmabuf)
  13767. {
  13768. struct hbq_dmabuf *seq_dmabuf;
  13769. struct fc_frame_header *fc_hdr;
  13770. struct lpfc_vport *vport;
  13771. uint32_t fcfi;
  13772. uint32_t did;
  13773. /* Process each received buffer */
  13774. fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
  13775. /* check to see if this a valid type of frame */
  13776. if (lpfc_fc_frame_check(phba, fc_hdr)) {
  13777. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13778. return;
  13779. }
  13780. if ((bf_get(lpfc_cqe_code,
  13781. &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
  13782. fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
  13783. &dmabuf->cq_event.cqe.rcqe_cmpl);
  13784. else
  13785. fcfi = bf_get(lpfc_rcqe_fcf_id,
  13786. &dmabuf->cq_event.cqe.rcqe_cmpl);
  13787. vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
  13788. if (!vport) {
  13789. /* throw out the frame */
  13790. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13791. return;
  13792. }
  13793. /* d_id this frame is directed to */
  13794. did = sli4_did_from_fc_hdr(fc_hdr);
  13795. /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
  13796. if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
  13797. (did != Fabric_DID)) {
  13798. /*
  13799. * Throw out the frame if we are not pt2pt.
  13800. * The pt2pt protocol allows for discovery frames
  13801. * to be received without a registered VPI.
  13802. */
  13803. if (!(vport->fc_flag & FC_PT2PT) ||
  13804. (phba->link_state == LPFC_HBA_READY)) {
  13805. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13806. return;
  13807. }
  13808. }
  13809. /* Handle the basic abort sequence (BA_ABTS) event */
  13810. if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
  13811. lpfc_sli4_handle_unsol_abort(vport, dmabuf);
  13812. return;
  13813. }
  13814. /* Link this frame */
  13815. seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
  13816. if (!seq_dmabuf) {
  13817. /* unable to add frame to vport - throw it out */
  13818. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13819. return;
  13820. }
  13821. /* If not last frame in sequence continue processing frames. */
  13822. if (!lpfc_seq_complete(seq_dmabuf))
  13823. return;
  13824. /* Send the complete sequence to the upper layer protocol */
  13825. lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
  13826. }
  13827. /**
  13828. * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
  13829. * @phba: pointer to lpfc hba data structure.
  13830. *
  13831. * This routine is invoked to post rpi header templates to the
  13832. * HBA consistent with the SLI-4 interface spec. This routine
  13833. * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
  13834. * SLI4_PAGE_SIZE modulo 64 rpi context headers.
  13835. *
  13836. * This routine does not require any locks. It's usage is expected
  13837. * to be driver load or reset recovery when the driver is
  13838. * sequential.
  13839. *
  13840. * Return codes
  13841. * 0 - successful
  13842. * -EIO - The mailbox failed to complete successfully.
  13843. * When this error occurs, the driver is not guaranteed
  13844. * to have any rpi regions posted to the device and
  13845. * must either attempt to repost the regions or take a
  13846. * fatal error.
  13847. **/
  13848. int
  13849. lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
  13850. {
  13851. struct lpfc_rpi_hdr *rpi_page;
  13852. uint32_t rc = 0;
  13853. uint16_t lrpi = 0;
  13854. /* SLI4 ports that support extents do not require RPI headers. */
  13855. if (!phba->sli4_hba.rpi_hdrs_in_use)
  13856. goto exit;
  13857. if (phba->sli4_hba.extents_in_use)
  13858. return -EIO;
  13859. list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
  13860. /*
  13861. * Assign the rpi headers a physical rpi only if the driver
  13862. * has not initialized those resources. A port reset only
  13863. * needs the headers posted.
  13864. */
  13865. if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
  13866. LPFC_RPI_RSRC_RDY)
  13867. rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
  13868. rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
  13869. if (rc != MBX_SUCCESS) {
  13870. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13871. "2008 Error %d posting all rpi "
  13872. "headers\n", rc);
  13873. rc = -EIO;
  13874. break;
  13875. }
  13876. }
  13877. exit:
  13878. bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
  13879. LPFC_RPI_RSRC_RDY);
  13880. return rc;
  13881. }
  13882. /**
  13883. * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
  13884. * @phba: pointer to lpfc hba data structure.
  13885. * @rpi_page: pointer to the rpi memory region.
  13886. *
  13887. * This routine is invoked to post a single rpi header to the
  13888. * HBA consistent with the SLI-4 interface spec. This memory region
  13889. * maps up to 64 rpi context regions.
  13890. *
  13891. * Return codes
  13892. * 0 - successful
  13893. * -ENOMEM - No available memory
  13894. * -EIO - The mailbox failed to complete successfully.
  13895. **/
  13896. int
  13897. lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
  13898. {
  13899. LPFC_MBOXQ_t *mboxq;
  13900. struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
  13901. uint32_t rc = 0;
  13902. uint32_t shdr_status, shdr_add_status;
  13903. union lpfc_sli4_cfg_shdr *shdr;
  13904. /* SLI4 ports that support extents do not require RPI headers. */
  13905. if (!phba->sli4_hba.rpi_hdrs_in_use)
  13906. return rc;
  13907. if (phba->sli4_hba.extents_in_use)
  13908. return -EIO;
  13909. /* The port is notified of the header region via a mailbox command. */
  13910. mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  13911. if (!mboxq) {
  13912. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13913. "2001 Unable to allocate memory for issuing "
  13914. "SLI_CONFIG_SPECIAL mailbox command\n");
  13915. return -ENOMEM;
  13916. }
  13917. /* Post all rpi memory regions to the port. */
  13918. hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
  13919. lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
  13920. LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
  13921. sizeof(struct lpfc_mbx_post_hdr_tmpl) -
  13922. sizeof(struct lpfc_sli4_cfg_mhdr),
  13923. LPFC_SLI4_MBX_EMBED);
  13924. /* Post the physical rpi to the port for this rpi header. */
  13925. bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
  13926. rpi_page->start_rpi);
  13927. bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
  13928. hdr_tmpl, rpi_page->page_count);
  13929. hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
  13930. hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
  13931. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  13932. shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
  13933. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  13934. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  13935. if (rc != MBX_TIMEOUT)
  13936. mempool_free(mboxq, phba->mbox_mem_pool);
  13937. if (shdr_status || shdr_add_status || rc) {
  13938. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  13939. "2514 POST_RPI_HDR mailbox failed with "
  13940. "status x%x add_status x%x, mbx status x%x\n",
  13941. shdr_status, shdr_add_status, rc);
  13942. rc = -ENXIO;
  13943. }
  13944. return rc;
  13945. }
  13946. /**
  13947. * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
  13948. * @phba: pointer to lpfc hba data structure.
  13949. *
  13950. * This routine is invoked to post rpi header templates to the
  13951. * HBA consistent with the SLI-4 interface spec. This routine
  13952. * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
  13953. * SLI4_PAGE_SIZE modulo 64 rpi context headers.
  13954. *
  13955. * Returns
  13956. * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
  13957. * LPFC_RPI_ALLOC_ERROR if no rpis are available.
  13958. **/
  13959. int
  13960. lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
  13961. {
  13962. unsigned long rpi;
  13963. uint16_t max_rpi, rpi_limit;
  13964. uint16_t rpi_remaining, lrpi = 0;
  13965. struct lpfc_rpi_hdr *rpi_hdr;
  13966. unsigned long iflag;
  13967. max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
  13968. rpi_limit = phba->sli4_hba.next_rpi;
  13969. /*
  13970. * Fetch the next logical rpi. Because this index is logical,
  13971. * the driver starts at 0 each time.
  13972. */
  13973. spin_lock_irqsave(&phba->hbalock, iflag);
  13974. rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
  13975. if (rpi >= rpi_limit)
  13976. rpi = LPFC_RPI_ALLOC_ERROR;
  13977. else {
  13978. set_bit(rpi, phba->sli4_hba.rpi_bmask);
  13979. phba->sli4_hba.max_cfg_param.rpi_used++;
  13980. phba->sli4_hba.rpi_count++;
  13981. }
  13982. /*
  13983. * Don't try to allocate more rpi header regions if the device limit
  13984. * has been exhausted.
  13985. */
  13986. if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
  13987. (phba->sli4_hba.rpi_count >= max_rpi)) {
  13988. spin_unlock_irqrestore(&phba->hbalock, iflag);
  13989. return rpi;
  13990. }
  13991. /*
  13992. * RPI header postings are not required for SLI4 ports capable of
  13993. * extents.
  13994. */
  13995. if (!phba->sli4_hba.rpi_hdrs_in_use) {
  13996. spin_unlock_irqrestore(&phba->hbalock, iflag);
  13997. return rpi;
  13998. }
  13999. /*
  14000. * If the driver is running low on rpi resources, allocate another
  14001. * page now. Note that the next_rpi value is used because
  14002. * it represents how many are actually in use whereas max_rpi notes
  14003. * how many are supported max by the device.
  14004. */
  14005. rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
  14006. spin_unlock_irqrestore(&phba->hbalock, iflag);
  14007. if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
  14008. rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
  14009. if (!rpi_hdr) {
  14010. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  14011. "2002 Error Could not grow rpi "
  14012. "count\n");
  14013. } else {
  14014. lrpi = rpi_hdr->start_rpi;
  14015. rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
  14016. lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
  14017. }
  14018. }
  14019. return rpi;
  14020. }
  14021. /**
  14022. * lpfc_sli4_free_rpi - Release an rpi for reuse.
  14023. * @phba: pointer to lpfc hba data structure.
  14024. *
  14025. * This routine is invoked to release an rpi to the pool of
  14026. * available rpis maintained by the driver.
  14027. **/
  14028. void
  14029. __lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
  14030. {
  14031. if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
  14032. phba->sli4_hba.rpi_count--;
  14033. phba->sli4_hba.max_cfg_param.rpi_used--;
  14034. }
  14035. }
  14036. /**
  14037. * lpfc_sli4_free_rpi - Release an rpi for reuse.
  14038. * @phba: pointer to lpfc hba data structure.
  14039. *
  14040. * This routine is invoked to release an rpi to the pool of
  14041. * available rpis maintained by the driver.
  14042. **/
  14043. void
  14044. lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
  14045. {
  14046. spin_lock_irq(&phba->hbalock);
  14047. __lpfc_sli4_free_rpi(phba, rpi);
  14048. spin_unlock_irq(&phba->hbalock);
  14049. }
  14050. /**
  14051. * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
  14052. * @phba: pointer to lpfc hba data structure.
  14053. *
  14054. * This routine is invoked to remove the memory region that
  14055. * provided rpi via a bitmask.
  14056. **/
  14057. void
  14058. lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
  14059. {
  14060. kfree(phba->sli4_hba.rpi_bmask);
  14061. kfree(phba->sli4_hba.rpi_ids);
  14062. bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  14063. }
  14064. /**
  14065. * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
  14066. * @phba: pointer to lpfc hba data structure.
  14067. *
  14068. * This routine is invoked to remove the memory region that
  14069. * provided rpi via a bitmask.
  14070. **/
  14071. int
  14072. lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
  14073. void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
  14074. {
  14075. LPFC_MBOXQ_t *mboxq;
  14076. struct lpfc_hba *phba = ndlp->phba;
  14077. int rc;
  14078. /* The port is notified of the header region via a mailbox command. */
  14079. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14080. if (!mboxq)
  14081. return -ENOMEM;
  14082. /* Post all rpi memory regions to the port. */
  14083. lpfc_resume_rpi(mboxq, ndlp);
  14084. if (cmpl) {
  14085. mboxq->mbox_cmpl = cmpl;
  14086. mboxq->context1 = arg;
  14087. mboxq->context2 = ndlp;
  14088. } else
  14089. mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  14090. mboxq->vport = ndlp->vport;
  14091. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14092. if (rc == MBX_NOT_FINISHED) {
  14093. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  14094. "2010 Resume RPI Mailbox failed "
  14095. "status %d, mbxStatus x%x\n", rc,
  14096. bf_get(lpfc_mqe_status, &mboxq->u.mqe));
  14097. mempool_free(mboxq, phba->mbox_mem_pool);
  14098. return -EIO;
  14099. }
  14100. return 0;
  14101. }
  14102. /**
  14103. * lpfc_sli4_init_vpi - Initialize a vpi with the port
  14104. * @vport: Pointer to the vport for which the vpi is being initialized
  14105. *
  14106. * This routine is invoked to activate a vpi with the port.
  14107. *
  14108. * Returns:
  14109. * 0 success
  14110. * -Evalue otherwise
  14111. **/
  14112. int
  14113. lpfc_sli4_init_vpi(struct lpfc_vport *vport)
  14114. {
  14115. LPFC_MBOXQ_t *mboxq;
  14116. int rc = 0;
  14117. int retval = MBX_SUCCESS;
  14118. uint32_t mbox_tmo;
  14119. struct lpfc_hba *phba = vport->phba;
  14120. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14121. if (!mboxq)
  14122. return -ENOMEM;
  14123. lpfc_init_vpi(phba, mboxq, vport->vpi);
  14124. mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
  14125. rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
  14126. if (rc != MBX_SUCCESS) {
  14127. lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
  14128. "2022 INIT VPI Mailbox failed "
  14129. "status %d, mbxStatus x%x\n", rc,
  14130. bf_get(lpfc_mqe_status, &mboxq->u.mqe));
  14131. retval = -EIO;
  14132. }
  14133. if (rc != MBX_TIMEOUT)
  14134. mempool_free(mboxq, vport->phba->mbox_mem_pool);
  14135. return retval;
  14136. }
  14137. /**
  14138. * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
  14139. * @phba: pointer to lpfc hba data structure.
  14140. * @mboxq: Pointer to mailbox object.
  14141. *
  14142. * This routine is invoked to manually add a single FCF record. The caller
  14143. * must pass a completely initialized FCF_Record. This routine takes
  14144. * care of the nonembedded mailbox operations.
  14145. **/
  14146. static void
  14147. lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
  14148. {
  14149. void *virt_addr;
  14150. union lpfc_sli4_cfg_shdr *shdr;
  14151. uint32_t shdr_status, shdr_add_status;
  14152. virt_addr = mboxq->sge_array->addr[0];
  14153. /* The IOCTL status is embedded in the mailbox subheader. */
  14154. shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
  14155. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  14156. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  14157. if ((shdr_status || shdr_add_status) &&
  14158. (shdr_status != STATUS_FCF_IN_USE))
  14159. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14160. "2558 ADD_FCF_RECORD mailbox failed with "
  14161. "status x%x add_status x%x\n",
  14162. shdr_status, shdr_add_status);
  14163. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14164. }
  14165. /**
  14166. * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
  14167. * @phba: pointer to lpfc hba data structure.
  14168. * @fcf_record: pointer to the initialized fcf record to add.
  14169. *
  14170. * This routine is invoked to manually add a single FCF record. The caller
  14171. * must pass a completely initialized FCF_Record. This routine takes
  14172. * care of the nonembedded mailbox operations.
  14173. **/
  14174. int
  14175. lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
  14176. {
  14177. int rc = 0;
  14178. LPFC_MBOXQ_t *mboxq;
  14179. uint8_t *bytep;
  14180. void *virt_addr;
  14181. dma_addr_t phys_addr;
  14182. struct lpfc_mbx_sge sge;
  14183. uint32_t alloc_len, req_len;
  14184. uint32_t fcfindex;
  14185. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14186. if (!mboxq) {
  14187. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14188. "2009 Failed to allocate mbox for ADD_FCF cmd\n");
  14189. return -ENOMEM;
  14190. }
  14191. req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
  14192. sizeof(uint32_t);
  14193. /* Allocate DMA memory and set up the non-embedded mailbox command */
  14194. alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
  14195. LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
  14196. req_len, LPFC_SLI4_MBX_NEMBED);
  14197. if (alloc_len < req_len) {
  14198. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14199. "2523 Allocated DMA memory size (x%x) is "
  14200. "less than the requested DMA memory "
  14201. "size (x%x)\n", alloc_len, req_len);
  14202. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14203. return -ENOMEM;
  14204. }
  14205. /*
  14206. * Get the first SGE entry from the non-embedded DMA memory. This
  14207. * routine only uses a single SGE.
  14208. */
  14209. lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
  14210. phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
  14211. virt_addr = mboxq->sge_array->addr[0];
  14212. /*
  14213. * Configure the FCF record for FCFI 0. This is the driver's
  14214. * hardcoded default and gets used in nonFIP mode.
  14215. */
  14216. fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
  14217. bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
  14218. lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
  14219. /*
  14220. * Copy the fcf_index and the FCF Record Data. The data starts after
  14221. * the FCoE header plus word10. The data copy needs to be endian
  14222. * correct.
  14223. */
  14224. bytep += sizeof(uint32_t);
  14225. lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
  14226. mboxq->vport = phba->pport;
  14227. mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
  14228. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14229. if (rc == MBX_NOT_FINISHED) {
  14230. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14231. "2515 ADD_FCF_RECORD mailbox failed with "
  14232. "status 0x%x\n", rc);
  14233. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14234. rc = -EIO;
  14235. } else
  14236. rc = 0;
  14237. return rc;
  14238. }
  14239. /**
  14240. * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
  14241. * @phba: pointer to lpfc hba data structure.
  14242. * @fcf_record: pointer to the fcf record to write the default data.
  14243. * @fcf_index: FCF table entry index.
  14244. *
  14245. * This routine is invoked to build the driver's default FCF record. The
  14246. * values used are hardcoded. This routine handles memory initialization.
  14247. *
  14248. **/
  14249. void
  14250. lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
  14251. struct fcf_record *fcf_record,
  14252. uint16_t fcf_index)
  14253. {
  14254. memset(fcf_record, 0, sizeof(struct fcf_record));
  14255. fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
  14256. fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
  14257. fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
  14258. bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
  14259. bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
  14260. bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
  14261. bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
  14262. bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
  14263. bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
  14264. bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
  14265. bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
  14266. bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
  14267. bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
  14268. bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
  14269. bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
  14270. bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
  14271. LPFC_FCF_FPMA | LPFC_FCF_SPMA);
  14272. /* Set the VLAN bit map */
  14273. if (phba->valid_vlan) {
  14274. fcf_record->vlan_bitmap[phba->vlan_id / 8]
  14275. = 1 << (phba->vlan_id % 8);
  14276. }
  14277. }
  14278. /**
  14279. * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
  14280. * @phba: pointer to lpfc hba data structure.
  14281. * @fcf_index: FCF table entry offset.
  14282. *
  14283. * This routine is invoked to scan the entire FCF table by reading FCF
  14284. * record and processing it one at a time starting from the @fcf_index
  14285. * for initial FCF discovery or fast FCF failover rediscovery.
  14286. *
  14287. * Return 0 if the mailbox command is submitted successfully, none 0
  14288. * otherwise.
  14289. **/
  14290. int
  14291. lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
  14292. {
  14293. int rc = 0, error;
  14294. LPFC_MBOXQ_t *mboxq;
  14295. phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
  14296. phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
  14297. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14298. if (!mboxq) {
  14299. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14300. "2000 Failed to allocate mbox for "
  14301. "READ_FCF cmd\n");
  14302. error = -ENOMEM;
  14303. goto fail_fcf_scan;
  14304. }
  14305. /* Construct the read FCF record mailbox command */
  14306. rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
  14307. if (rc) {
  14308. error = -EINVAL;
  14309. goto fail_fcf_scan;
  14310. }
  14311. /* Issue the mailbox command asynchronously */
  14312. mboxq->vport = phba->pport;
  14313. mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
  14314. spin_lock_irq(&phba->hbalock);
  14315. phba->hba_flag |= FCF_TS_INPROG;
  14316. spin_unlock_irq(&phba->hbalock);
  14317. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14318. if (rc == MBX_NOT_FINISHED)
  14319. error = -EIO;
  14320. else {
  14321. /* Reset eligible FCF count for new scan */
  14322. if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
  14323. phba->fcf.eligible_fcf_cnt = 0;
  14324. error = 0;
  14325. }
  14326. fail_fcf_scan:
  14327. if (error) {
  14328. if (mboxq)
  14329. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14330. /* FCF scan failed, clear FCF_TS_INPROG flag */
  14331. spin_lock_irq(&phba->hbalock);
  14332. phba->hba_flag &= ~FCF_TS_INPROG;
  14333. spin_unlock_irq(&phba->hbalock);
  14334. }
  14335. return error;
  14336. }
  14337. /**
  14338. * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
  14339. * @phba: pointer to lpfc hba data structure.
  14340. * @fcf_index: FCF table entry offset.
  14341. *
  14342. * This routine is invoked to read an FCF record indicated by @fcf_index
  14343. * and to use it for FLOGI roundrobin FCF failover.
  14344. *
  14345. * Return 0 if the mailbox command is submitted successfully, none 0
  14346. * otherwise.
  14347. **/
  14348. int
  14349. lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
  14350. {
  14351. int rc = 0, error;
  14352. LPFC_MBOXQ_t *mboxq;
  14353. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14354. if (!mboxq) {
  14355. lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
  14356. "2763 Failed to allocate mbox for "
  14357. "READ_FCF cmd\n");
  14358. error = -ENOMEM;
  14359. goto fail_fcf_read;
  14360. }
  14361. /* Construct the read FCF record mailbox command */
  14362. rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
  14363. if (rc) {
  14364. error = -EINVAL;
  14365. goto fail_fcf_read;
  14366. }
  14367. /* Issue the mailbox command asynchronously */
  14368. mboxq->vport = phba->pport;
  14369. mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
  14370. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14371. if (rc == MBX_NOT_FINISHED)
  14372. error = -EIO;
  14373. else
  14374. error = 0;
  14375. fail_fcf_read:
  14376. if (error && mboxq)
  14377. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14378. return error;
  14379. }
  14380. /**
  14381. * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
  14382. * @phba: pointer to lpfc hba data structure.
  14383. * @fcf_index: FCF table entry offset.
  14384. *
  14385. * This routine is invoked to read an FCF record indicated by @fcf_index to
  14386. * determine whether it's eligible for FLOGI roundrobin failover list.
  14387. *
  14388. * Return 0 if the mailbox command is submitted successfully, none 0
  14389. * otherwise.
  14390. **/
  14391. int
  14392. lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
  14393. {
  14394. int rc = 0, error;
  14395. LPFC_MBOXQ_t *mboxq;
  14396. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14397. if (!mboxq) {
  14398. lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
  14399. "2758 Failed to allocate mbox for "
  14400. "READ_FCF cmd\n");
  14401. error = -ENOMEM;
  14402. goto fail_fcf_read;
  14403. }
  14404. /* Construct the read FCF record mailbox command */
  14405. rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
  14406. if (rc) {
  14407. error = -EINVAL;
  14408. goto fail_fcf_read;
  14409. }
  14410. /* Issue the mailbox command asynchronously */
  14411. mboxq->vport = phba->pport;
  14412. mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
  14413. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14414. if (rc == MBX_NOT_FINISHED)
  14415. error = -EIO;
  14416. else
  14417. error = 0;
  14418. fail_fcf_read:
  14419. if (error && mboxq)
  14420. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14421. return error;
  14422. }
  14423. /**
  14424. * lpfc_check_next_fcf_pri
  14425. * phba pointer to the lpfc_hba struct for this port.
  14426. * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
  14427. * routine when the rr_bmask is empty. The FCF indecies are put into the
  14428. * rr_bmask based on their priority level. Starting from the highest priority
  14429. * to the lowest. The most likely FCF candidate will be in the highest
  14430. * priority group. When this routine is called it searches the fcf_pri list for
  14431. * next lowest priority group and repopulates the rr_bmask with only those
  14432. * fcf_indexes.
  14433. * returns:
  14434. * 1=success 0=failure
  14435. **/
  14436. int
  14437. lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
  14438. {
  14439. uint16_t next_fcf_pri;
  14440. uint16_t last_index;
  14441. struct lpfc_fcf_pri *fcf_pri;
  14442. int rc;
  14443. int ret = 0;
  14444. last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
  14445. LPFC_SLI4_FCF_TBL_INDX_MAX);
  14446. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14447. "3060 Last IDX %d\n", last_index);
  14448. /* Verify the priority list has 2 or more entries */
  14449. spin_lock_irq(&phba->hbalock);
  14450. if (list_empty(&phba->fcf.fcf_pri_list) ||
  14451. list_is_singular(&phba->fcf.fcf_pri_list)) {
  14452. spin_unlock_irq(&phba->hbalock);
  14453. lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
  14454. "3061 Last IDX %d\n", last_index);
  14455. return 0; /* Empty rr list */
  14456. }
  14457. spin_unlock_irq(&phba->hbalock);
  14458. next_fcf_pri = 0;
  14459. /*
  14460. * Clear the rr_bmask and set all of the bits that are at this
  14461. * priority.
  14462. */
  14463. memset(phba->fcf.fcf_rr_bmask, 0,
  14464. sizeof(*phba->fcf.fcf_rr_bmask));
  14465. spin_lock_irq(&phba->hbalock);
  14466. list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
  14467. if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
  14468. continue;
  14469. /*
  14470. * the 1st priority that has not FLOGI failed
  14471. * will be the highest.
  14472. */
  14473. if (!next_fcf_pri)
  14474. next_fcf_pri = fcf_pri->fcf_rec.priority;
  14475. spin_unlock_irq(&phba->hbalock);
  14476. if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
  14477. rc = lpfc_sli4_fcf_rr_index_set(phba,
  14478. fcf_pri->fcf_rec.fcf_index);
  14479. if (rc)
  14480. return 0;
  14481. }
  14482. spin_lock_irq(&phba->hbalock);
  14483. }
  14484. /*
  14485. * if next_fcf_pri was not set above and the list is not empty then
  14486. * we have failed flogis on all of them. So reset flogi failed
  14487. * and start at the beginning.
  14488. */
  14489. if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
  14490. list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
  14491. fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
  14492. /*
  14493. * the 1st priority that has not FLOGI failed
  14494. * will be the highest.
  14495. */
  14496. if (!next_fcf_pri)
  14497. next_fcf_pri = fcf_pri->fcf_rec.priority;
  14498. spin_unlock_irq(&phba->hbalock);
  14499. if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
  14500. rc = lpfc_sli4_fcf_rr_index_set(phba,
  14501. fcf_pri->fcf_rec.fcf_index);
  14502. if (rc)
  14503. return 0;
  14504. }
  14505. spin_lock_irq(&phba->hbalock);
  14506. }
  14507. } else
  14508. ret = 1;
  14509. spin_unlock_irq(&phba->hbalock);
  14510. return ret;
  14511. }
  14512. /**
  14513. * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
  14514. * @phba: pointer to lpfc hba data structure.
  14515. *
  14516. * This routine is to get the next eligible FCF record index in a round
  14517. * robin fashion. If the next eligible FCF record index equals to the
  14518. * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
  14519. * shall be returned, otherwise, the next eligible FCF record's index
  14520. * shall be returned.
  14521. **/
  14522. uint16_t
  14523. lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
  14524. {
  14525. uint16_t next_fcf_index;
  14526. initial_priority:
  14527. /* Search start from next bit of currently registered FCF index */
  14528. next_fcf_index = phba->fcf.current_rec.fcf_indx;
  14529. next_priority:
  14530. /* Determine the next fcf index to check */
  14531. next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
  14532. next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
  14533. LPFC_SLI4_FCF_TBL_INDX_MAX,
  14534. next_fcf_index);
  14535. /* Wrap around condition on phba->fcf.fcf_rr_bmask */
  14536. if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
  14537. /*
  14538. * If we have wrapped then we need to clear the bits that
  14539. * have been tested so that we can detect when we should
  14540. * change the priority level.
  14541. */
  14542. next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
  14543. LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
  14544. }
  14545. /* Check roundrobin failover list empty condition */
  14546. if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
  14547. next_fcf_index == phba->fcf.current_rec.fcf_indx) {
  14548. /*
  14549. * If next fcf index is not found check if there are lower
  14550. * Priority level fcf's in the fcf_priority list.
  14551. * Set up the rr_bmask with all of the avaiable fcf bits
  14552. * at that level and continue the selection process.
  14553. */
  14554. if (lpfc_check_next_fcf_pri_level(phba))
  14555. goto initial_priority;
  14556. lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
  14557. "2844 No roundrobin failover FCF available\n");
  14558. if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
  14559. return LPFC_FCOE_FCF_NEXT_NONE;
  14560. else {
  14561. lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
  14562. "3063 Only FCF available idx %d, flag %x\n",
  14563. next_fcf_index,
  14564. phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
  14565. return next_fcf_index;
  14566. }
  14567. }
  14568. if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
  14569. phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
  14570. LPFC_FCF_FLOGI_FAILED)
  14571. goto next_priority;
  14572. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14573. "2845 Get next roundrobin failover FCF (x%x)\n",
  14574. next_fcf_index);
  14575. return next_fcf_index;
  14576. }
  14577. /**
  14578. * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
  14579. * @phba: pointer to lpfc hba data structure.
  14580. *
  14581. * This routine sets the FCF record index in to the eligible bmask for
  14582. * roundrobin failover search. It checks to make sure that the index
  14583. * does not go beyond the range of the driver allocated bmask dimension
  14584. * before setting the bit.
  14585. *
  14586. * Returns 0 if the index bit successfully set, otherwise, it returns
  14587. * -EINVAL.
  14588. **/
  14589. int
  14590. lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
  14591. {
  14592. if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
  14593. lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
  14594. "2610 FCF (x%x) reached driver's book "
  14595. "keeping dimension:x%x\n",
  14596. fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
  14597. return -EINVAL;
  14598. }
  14599. /* Set the eligible FCF record index bmask */
  14600. set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
  14601. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14602. "2790 Set FCF (x%x) to roundrobin FCF failover "
  14603. "bmask\n", fcf_index);
  14604. return 0;
  14605. }
  14606. /**
  14607. * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
  14608. * @phba: pointer to lpfc hba data structure.
  14609. *
  14610. * This routine clears the FCF record index from the eligible bmask for
  14611. * roundrobin failover search. It checks to make sure that the index
  14612. * does not go beyond the range of the driver allocated bmask dimension
  14613. * before clearing the bit.
  14614. **/
  14615. void
  14616. lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
  14617. {
  14618. struct lpfc_fcf_pri *fcf_pri, *fcf_pri_next;
  14619. if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
  14620. lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
  14621. "2762 FCF (x%x) reached driver's book "
  14622. "keeping dimension:x%x\n",
  14623. fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
  14624. return;
  14625. }
  14626. /* Clear the eligible FCF record index bmask */
  14627. spin_lock_irq(&phba->hbalock);
  14628. list_for_each_entry_safe(fcf_pri, fcf_pri_next, &phba->fcf.fcf_pri_list,
  14629. list) {
  14630. if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
  14631. list_del_init(&fcf_pri->list);
  14632. break;
  14633. }
  14634. }
  14635. spin_unlock_irq(&phba->hbalock);
  14636. clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
  14637. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14638. "2791 Clear FCF (x%x) from roundrobin failover "
  14639. "bmask\n", fcf_index);
  14640. }
  14641. /**
  14642. * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
  14643. * @phba: pointer to lpfc hba data structure.
  14644. *
  14645. * This routine is the completion routine for the rediscover FCF table mailbox
  14646. * command. If the mailbox command returned failure, it will try to stop the
  14647. * FCF rediscover wait timer.
  14648. **/
  14649. void
  14650. lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
  14651. {
  14652. struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
  14653. uint32_t shdr_status, shdr_add_status;
  14654. redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
  14655. shdr_status = bf_get(lpfc_mbox_hdr_status,
  14656. &redisc_fcf->header.cfg_shdr.response);
  14657. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
  14658. &redisc_fcf->header.cfg_shdr.response);
  14659. if (shdr_status || shdr_add_status) {
  14660. lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
  14661. "2746 Requesting for FCF rediscovery failed "
  14662. "status x%x add_status x%x\n",
  14663. shdr_status, shdr_add_status);
  14664. if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
  14665. spin_lock_irq(&phba->hbalock);
  14666. phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
  14667. spin_unlock_irq(&phba->hbalock);
  14668. /*
  14669. * CVL event triggered FCF rediscover request failed,
  14670. * last resort to re-try current registered FCF entry.
  14671. */
  14672. lpfc_retry_pport_discovery(phba);
  14673. } else {
  14674. spin_lock_irq(&phba->hbalock);
  14675. phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
  14676. spin_unlock_irq(&phba->hbalock);
  14677. /*
  14678. * DEAD FCF event triggered FCF rediscover request
  14679. * failed, last resort to fail over as a link down
  14680. * to FCF registration.
  14681. */
  14682. lpfc_sli4_fcf_dead_failthrough(phba);
  14683. }
  14684. } else {
  14685. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14686. "2775 Start FCF rediscover quiescent timer\n");
  14687. /*
  14688. * Start FCF rediscovery wait timer for pending FCF
  14689. * before rescan FCF record table.
  14690. */
  14691. lpfc_fcf_redisc_wait_start_timer(phba);
  14692. }
  14693. mempool_free(mbox, phba->mbox_mem_pool);
  14694. }
  14695. /**
  14696. * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
  14697. * @phba: pointer to lpfc hba data structure.
  14698. *
  14699. * This routine is invoked to request for rediscovery of the entire FCF table
  14700. * by the port.
  14701. **/
  14702. int
  14703. lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
  14704. {
  14705. LPFC_MBOXQ_t *mbox;
  14706. struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
  14707. int rc, length;
  14708. /* Cancel retry delay timers to all vports before FCF rediscover */
  14709. lpfc_cancel_all_vport_retry_delay_timer(phba);
  14710. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14711. if (!mbox) {
  14712. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  14713. "2745 Failed to allocate mbox for "
  14714. "requesting FCF rediscover.\n");
  14715. return -ENOMEM;
  14716. }
  14717. length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
  14718. sizeof(struct lpfc_sli4_cfg_mhdr));
  14719. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  14720. LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
  14721. length, LPFC_SLI4_MBX_EMBED);
  14722. redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
  14723. /* Set count to 0 for invalidating the entire FCF database */
  14724. bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
  14725. /* Issue the mailbox command asynchronously */
  14726. mbox->vport = phba->pport;
  14727. mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
  14728. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
  14729. if (rc == MBX_NOT_FINISHED) {
  14730. mempool_free(mbox, phba->mbox_mem_pool);
  14731. return -EIO;
  14732. }
  14733. return 0;
  14734. }
  14735. /**
  14736. * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
  14737. * @phba: pointer to lpfc hba data structure.
  14738. *
  14739. * This function is the failover routine as a last resort to the FCF DEAD
  14740. * event when driver failed to perform fast FCF failover.
  14741. **/
  14742. void
  14743. lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
  14744. {
  14745. uint32_t link_state;
  14746. /*
  14747. * Last resort as FCF DEAD event failover will treat this as
  14748. * a link down, but save the link state because we don't want
  14749. * it to be changed to Link Down unless it is already down.
  14750. */
  14751. link_state = phba->link_state;
  14752. lpfc_linkdown(phba);
  14753. phba->link_state = link_state;
  14754. /* Unregister FCF if no devices connected to it */
  14755. lpfc_unregister_unused_fcf(phba);
  14756. }
  14757. /**
  14758. * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
  14759. * @phba: pointer to lpfc hba data structure.
  14760. * @rgn23_data: pointer to configure region 23 data.
  14761. *
  14762. * This function gets SLI3 port configure region 23 data through memory dump
  14763. * mailbox command. When it successfully retrieves data, the size of the data
  14764. * will be returned, otherwise, 0 will be returned.
  14765. **/
  14766. static uint32_t
  14767. lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
  14768. {
  14769. LPFC_MBOXQ_t *pmb = NULL;
  14770. MAILBOX_t *mb;
  14771. uint32_t offset = 0;
  14772. int rc;
  14773. if (!rgn23_data)
  14774. return 0;
  14775. pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14776. if (!pmb) {
  14777. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14778. "2600 failed to allocate mailbox memory\n");
  14779. return 0;
  14780. }
  14781. mb = &pmb->u.mb;
  14782. do {
  14783. lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
  14784. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
  14785. if (rc != MBX_SUCCESS) {
  14786. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  14787. "2601 failed to read config "
  14788. "region 23, rc 0x%x Status 0x%x\n",
  14789. rc, mb->mbxStatus);
  14790. mb->un.varDmp.word_cnt = 0;
  14791. }
  14792. /*
  14793. * dump mem may return a zero when finished or we got a
  14794. * mailbox error, either way we are done.
  14795. */
  14796. if (mb->un.varDmp.word_cnt == 0)
  14797. break;
  14798. if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
  14799. mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
  14800. lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
  14801. rgn23_data + offset,
  14802. mb->un.varDmp.word_cnt);
  14803. offset += mb->un.varDmp.word_cnt;
  14804. } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
  14805. mempool_free(pmb, phba->mbox_mem_pool);
  14806. return offset;
  14807. }
  14808. /**
  14809. * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
  14810. * @phba: pointer to lpfc hba data structure.
  14811. * @rgn23_data: pointer to configure region 23 data.
  14812. *
  14813. * This function gets SLI4 port configure region 23 data through memory dump
  14814. * mailbox command. When it successfully retrieves data, the size of the data
  14815. * will be returned, otherwise, 0 will be returned.
  14816. **/
  14817. static uint32_t
  14818. lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
  14819. {
  14820. LPFC_MBOXQ_t *mboxq = NULL;
  14821. struct lpfc_dmabuf *mp = NULL;
  14822. struct lpfc_mqe *mqe;
  14823. uint32_t data_length = 0;
  14824. int rc;
  14825. if (!rgn23_data)
  14826. return 0;
  14827. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14828. if (!mboxq) {
  14829. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14830. "3105 failed to allocate mailbox memory\n");
  14831. return 0;
  14832. }
  14833. if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
  14834. goto out;
  14835. mqe = &mboxq->u.mqe;
  14836. mp = (struct lpfc_dmabuf *) mboxq->context1;
  14837. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  14838. if (rc)
  14839. goto out;
  14840. data_length = mqe->un.mb_words[5];
  14841. if (data_length == 0)
  14842. goto out;
  14843. if (data_length > DMP_RGN23_SIZE) {
  14844. data_length = 0;
  14845. goto out;
  14846. }
  14847. lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
  14848. out:
  14849. mempool_free(mboxq, phba->mbox_mem_pool);
  14850. if (mp) {
  14851. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  14852. kfree(mp);
  14853. }
  14854. return data_length;
  14855. }
  14856. /**
  14857. * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
  14858. * @phba: pointer to lpfc hba data structure.
  14859. *
  14860. * This function read region 23 and parse TLV for port status to
  14861. * decide if the user disaled the port. If the TLV indicates the
  14862. * port is disabled, the hba_flag is set accordingly.
  14863. **/
  14864. void
  14865. lpfc_sli_read_link_ste(struct lpfc_hba *phba)
  14866. {
  14867. uint8_t *rgn23_data = NULL;
  14868. uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
  14869. uint32_t offset = 0;
  14870. /* Get adapter Region 23 data */
  14871. rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
  14872. if (!rgn23_data)
  14873. goto out;
  14874. if (phba->sli_rev < LPFC_SLI_REV4)
  14875. data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
  14876. else {
  14877. if_type = bf_get(lpfc_sli_intf_if_type,
  14878. &phba->sli4_hba.sli_intf);
  14879. if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
  14880. goto out;
  14881. data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
  14882. }
  14883. if (!data_size)
  14884. goto out;
  14885. /* Check the region signature first */
  14886. if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
  14887. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14888. "2619 Config region 23 has bad signature\n");
  14889. goto out;
  14890. }
  14891. offset += 4;
  14892. /* Check the data structure version */
  14893. if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
  14894. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14895. "2620 Config region 23 has bad version\n");
  14896. goto out;
  14897. }
  14898. offset += 4;
  14899. /* Parse TLV entries in the region */
  14900. while (offset < data_size) {
  14901. if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
  14902. break;
  14903. /*
  14904. * If the TLV is not driver specific TLV or driver id is
  14905. * not linux driver id, skip the record.
  14906. */
  14907. if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
  14908. (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
  14909. (rgn23_data[offset + 3] != 0)) {
  14910. offset += rgn23_data[offset + 1] * 4 + 4;
  14911. continue;
  14912. }
  14913. /* Driver found a driver specific TLV in the config region */
  14914. sub_tlv_len = rgn23_data[offset + 1] * 4;
  14915. offset += 4;
  14916. tlv_offset = 0;
  14917. /*
  14918. * Search for configured port state sub-TLV.
  14919. */
  14920. while ((offset < data_size) &&
  14921. (tlv_offset < sub_tlv_len)) {
  14922. if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
  14923. offset += 4;
  14924. tlv_offset += 4;
  14925. break;
  14926. }
  14927. if (rgn23_data[offset] != PORT_STE_TYPE) {
  14928. offset += rgn23_data[offset + 1] * 4 + 4;
  14929. tlv_offset += rgn23_data[offset + 1] * 4 + 4;
  14930. continue;
  14931. }
  14932. /* This HBA contains PORT_STE configured */
  14933. if (!rgn23_data[offset + 2])
  14934. phba->hba_flag |= LINK_DISABLED;
  14935. goto out;
  14936. }
  14937. }
  14938. out:
  14939. kfree(rgn23_data);
  14940. return;
  14941. }
  14942. /**
  14943. * lpfc_wr_object - write an object to the firmware
  14944. * @phba: HBA structure that indicates port to create a queue on.
  14945. * @dmabuf_list: list of dmabufs to write to the port.
  14946. * @size: the total byte value of the objects to write to the port.
  14947. * @offset: the current offset to be used to start the transfer.
  14948. *
  14949. * This routine will create a wr_object mailbox command to send to the port.
  14950. * the mailbox command will be constructed using the dma buffers described in
  14951. * @dmabuf_list to create a list of BDEs. This routine will fill in as many
  14952. * BDEs that the imbedded mailbox can support. The @offset variable will be
  14953. * used to indicate the starting offset of the transfer and will also return
  14954. * the offset after the write object mailbox has completed. @size is used to
  14955. * determine the end of the object and whether the eof bit should be set.
  14956. *
  14957. * Return 0 is successful and offset will contain the the new offset to use
  14958. * for the next write.
  14959. * Return negative value for error cases.
  14960. **/
  14961. int
  14962. lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
  14963. uint32_t size, uint32_t *offset)
  14964. {
  14965. struct lpfc_mbx_wr_object *wr_object;
  14966. LPFC_MBOXQ_t *mbox;
  14967. int rc = 0, i = 0;
  14968. uint32_t shdr_status, shdr_add_status;
  14969. uint32_t mbox_tmo;
  14970. union lpfc_sli4_cfg_shdr *shdr;
  14971. struct lpfc_dmabuf *dmabuf;
  14972. uint32_t written = 0;
  14973. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14974. if (!mbox)
  14975. return -ENOMEM;
  14976. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  14977. LPFC_MBOX_OPCODE_WRITE_OBJECT,
  14978. sizeof(struct lpfc_mbx_wr_object) -
  14979. sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
  14980. wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
  14981. wr_object->u.request.write_offset = *offset;
  14982. sprintf((uint8_t *)wr_object->u.request.object_name, "/");
  14983. wr_object->u.request.object_name[0] =
  14984. cpu_to_le32(wr_object->u.request.object_name[0]);
  14985. bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
  14986. list_for_each_entry(dmabuf, dmabuf_list, list) {
  14987. if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
  14988. break;
  14989. wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
  14990. wr_object->u.request.bde[i].addrHigh =
  14991. putPaddrHigh(dmabuf->phys);
  14992. if (written + SLI4_PAGE_SIZE >= size) {
  14993. wr_object->u.request.bde[i].tus.f.bdeSize =
  14994. (size - written);
  14995. written += (size - written);
  14996. bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
  14997. } else {
  14998. wr_object->u.request.bde[i].tus.f.bdeSize =
  14999. SLI4_PAGE_SIZE;
  15000. written += SLI4_PAGE_SIZE;
  15001. }
  15002. i++;
  15003. }
  15004. wr_object->u.request.bde_count = i;
  15005. bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
  15006. if (!phba->sli4_hba.intr_enable)
  15007. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  15008. else {
  15009. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  15010. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  15011. }
  15012. /* The IOCTL status is embedded in the mailbox subheader. */
  15013. shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
  15014. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  15015. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  15016. if (rc != MBX_TIMEOUT)
  15017. mempool_free(mbox, phba->mbox_mem_pool);
  15018. if (shdr_status || shdr_add_status || rc) {
  15019. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  15020. "3025 Write Object mailbox failed with "
  15021. "status x%x add_status x%x, mbx status x%x\n",
  15022. shdr_status, shdr_add_status, rc);
  15023. rc = -ENXIO;
  15024. } else
  15025. *offset += wr_object->u.response.actual_write_length;
  15026. return rc;
  15027. }
  15028. /**
  15029. * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
  15030. * @vport: pointer to vport data structure.
  15031. *
  15032. * This function iterate through the mailboxq and clean up all REG_LOGIN
  15033. * and REG_VPI mailbox commands associated with the vport. This function
  15034. * is called when driver want to restart discovery of the vport due to
  15035. * a Clear Virtual Link event.
  15036. **/
  15037. void
  15038. lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
  15039. {
  15040. struct lpfc_hba *phba = vport->phba;
  15041. LPFC_MBOXQ_t *mb, *nextmb;
  15042. struct lpfc_dmabuf *mp;
  15043. struct lpfc_nodelist *ndlp;
  15044. struct lpfc_nodelist *act_mbx_ndlp = NULL;
  15045. struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
  15046. LIST_HEAD(mbox_cmd_list);
  15047. uint8_t restart_loop;
  15048. /* Clean up internally queued mailbox commands with the vport */
  15049. spin_lock_irq(&phba->hbalock);
  15050. list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
  15051. if (mb->vport != vport)
  15052. continue;
  15053. if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
  15054. (mb->u.mb.mbxCommand != MBX_REG_VPI))
  15055. continue;
  15056. list_del(&mb->list);
  15057. list_add_tail(&mb->list, &mbox_cmd_list);
  15058. }
  15059. /* Clean up active mailbox command with the vport */
  15060. mb = phba->sli.mbox_active;
  15061. if (mb && (mb->vport == vport)) {
  15062. if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
  15063. (mb->u.mb.mbxCommand == MBX_REG_VPI))
  15064. mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  15065. if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
  15066. act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
  15067. /* Put reference count for delayed processing */
  15068. act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
  15069. /* Unregister the RPI when mailbox complete */
  15070. mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
  15071. }
  15072. }
  15073. /* Cleanup any mailbox completions which are not yet processed */
  15074. do {
  15075. restart_loop = 0;
  15076. list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
  15077. /*
  15078. * If this mailox is already processed or it is
  15079. * for another vport ignore it.
  15080. */
  15081. if ((mb->vport != vport) ||
  15082. (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
  15083. continue;
  15084. if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
  15085. (mb->u.mb.mbxCommand != MBX_REG_VPI))
  15086. continue;
  15087. mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  15088. if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
  15089. ndlp = (struct lpfc_nodelist *)mb->context2;
  15090. /* Unregister the RPI when mailbox complete */
  15091. mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
  15092. restart_loop = 1;
  15093. spin_unlock_irq(&phba->hbalock);
  15094. spin_lock(shost->host_lock);
  15095. ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
  15096. spin_unlock(shost->host_lock);
  15097. spin_lock_irq(&phba->hbalock);
  15098. break;
  15099. }
  15100. }
  15101. } while (restart_loop);
  15102. spin_unlock_irq(&phba->hbalock);
  15103. /* Release the cleaned-up mailbox commands */
  15104. while (!list_empty(&mbox_cmd_list)) {
  15105. list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
  15106. if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
  15107. mp = (struct lpfc_dmabuf *) (mb->context1);
  15108. if (mp) {
  15109. __lpfc_mbuf_free(phba, mp->virt, mp->phys);
  15110. kfree(mp);
  15111. }
  15112. ndlp = (struct lpfc_nodelist *) mb->context2;
  15113. mb->context2 = NULL;
  15114. if (ndlp) {
  15115. spin_lock(shost->host_lock);
  15116. ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
  15117. spin_unlock(shost->host_lock);
  15118. lpfc_nlp_put(ndlp);
  15119. }
  15120. }
  15121. mempool_free(mb, phba->mbox_mem_pool);
  15122. }
  15123. /* Release the ndlp with the cleaned-up active mailbox command */
  15124. if (act_mbx_ndlp) {
  15125. spin_lock(shost->host_lock);
  15126. act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
  15127. spin_unlock(shost->host_lock);
  15128. lpfc_nlp_put(act_mbx_ndlp);
  15129. }
  15130. }
  15131. /**
  15132. * lpfc_drain_txq - Drain the txq
  15133. * @phba: Pointer to HBA context object.
  15134. *
  15135. * This function attempt to submit IOCBs on the txq
  15136. * to the adapter. For SLI4 adapters, the txq contains
  15137. * ELS IOCBs that have been deferred because the there
  15138. * are no SGLs. This congestion can occur with large
  15139. * vport counts during node discovery.
  15140. **/
  15141. uint32_t
  15142. lpfc_drain_txq(struct lpfc_hba *phba)
  15143. {
  15144. LIST_HEAD(completions);
  15145. struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
  15146. struct lpfc_iocbq *piocbq = 0;
  15147. unsigned long iflags = 0;
  15148. char *fail_msg = NULL;
  15149. struct lpfc_sglq *sglq;
  15150. union lpfc_wqe wqe;
  15151. int txq_cnt = 0;
  15152. spin_lock_irqsave(&pring->ring_lock, iflags);
  15153. list_for_each_entry(piocbq, &pring->txq, list) {
  15154. txq_cnt++;
  15155. }
  15156. if (txq_cnt > pring->txq_max)
  15157. pring->txq_max = txq_cnt;
  15158. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  15159. while (!list_empty(&pring->txq)) {
  15160. spin_lock_irqsave(&pring->ring_lock, iflags);
  15161. piocbq = lpfc_sli_ringtx_get(phba, pring);
  15162. if (!piocbq) {
  15163. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  15164. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  15165. "2823 txq empty and txq_cnt is %d\n ",
  15166. txq_cnt);
  15167. break;
  15168. }
  15169. sglq = __lpfc_sli_get_sglq(phba, piocbq);
  15170. if (!sglq) {
  15171. __lpfc_sli_ringtx_put(phba, pring, piocbq);
  15172. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  15173. break;
  15174. }
  15175. txq_cnt--;
  15176. /* The xri and iocb resources secured,
  15177. * attempt to issue request
  15178. */
  15179. piocbq->sli4_lxritag = sglq->sli4_lxritag;
  15180. piocbq->sli4_xritag = sglq->sli4_xritag;
  15181. if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
  15182. fail_msg = "to convert bpl to sgl";
  15183. else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
  15184. fail_msg = "to convert iocb to wqe";
  15185. else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
  15186. fail_msg = " - Wq is full";
  15187. else
  15188. lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
  15189. if (fail_msg) {
  15190. /* Failed means we can't issue and need to cancel */
  15191. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  15192. "2822 IOCB failed %s iotag 0x%x "
  15193. "xri 0x%x\n",
  15194. fail_msg,
  15195. piocbq->iotag, piocbq->sli4_xritag);
  15196. list_add_tail(&piocbq->list, &completions);
  15197. }
  15198. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  15199. }
  15200. /* Cancel all the IOCBs that cannot be issued */
  15201. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  15202. IOERR_SLI_ABORTED);
  15203. return txq_cnt;
  15204. }