lpfc_sli.c 499 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568155691557015571155721557315574155751557615577155781557915580155811558215583155841558515586155871558815589155901559115592155931559415595155961559715598155991560015601156021560315604156051560615607156081560915610156111561215613156141561515616156171561815619156201562115622156231562415625156261562715628156291563015631156321563315634156351563615637156381563915640156411564215643156441564515646156471564815649156501565115652156531565415655156561565715658156591566015661156621566315664156651566615667156681566915670156711567215673156741567515676156771567815679156801568115682156831568415685156861568715688156891569015691156921569315694156951569615697156981569915700157011570215703157041570515706157071570815709157101571115712157131571415715157161571715718157191572015721157221572315724157251572615727157281572915730157311573215733157341573515736157371573815739157401574115742157431574415745157461574715748157491575015751157521575315754157551575615757157581575915760157611576215763157641576515766157671576815769157701577115772157731577415775157761577715778157791578015781157821578315784157851578615787157881578915790157911579215793157941579515796157971579815799158001580115802158031580415805158061580715808158091581015811158121581315814158151581615817158181581915820158211582215823158241582515826158271582815829158301583115832158331583415835158361583715838158391584015841158421584315844158451584615847158481584915850158511585215853158541585515856158571585815859158601586115862158631586415865158661586715868158691587015871158721587315874158751587615877158781587915880158811588215883158841588515886158871588815889158901589115892158931589415895158961589715898158991590015901159021590315904159051590615907159081590915910159111591215913159141591515916159171591815919159201592115922159231592415925159261592715928159291593015931159321593315934159351593615937159381593915940159411594215943159441594515946159471594815949159501595115952159531595415955159561595715958159591596015961159621596315964159651596615967159681596915970159711597215973159741597515976159771597815979159801598115982159831598415985159861598715988159891599015991159921599315994159951599615997159981599916000160011600216003160041600516006160071600816009160101601116012160131601416015160161601716018160191602016021160221602316024160251602616027160281602916030160311603216033160341603516036160371603816039160401604116042160431604416045160461604716048160491605016051160521605316054160551605616057160581605916060160611606216063160641606516066160671606816069160701607116072160731607416075160761607716078160791608016081160821608316084160851608616087160881608916090160911609216093160941609516096160971609816099161001610116102161031610416105161061610716108161091611016111161121611316114161151611616117161181611916120161211612216123161241612516126161271612816129161301613116132161331613416135161361613716138161391614016141161421614316144161451614616147161481614916150161511615216153161541615516156161571615816159161601616116162161631616416165161661616716168161691617016171161721617316174161751617616177161781617916180161811618216183161841618516186161871618816189161901619116192161931619416195161961619716198161991620016201162021620316204162051620616207162081620916210162111621216213162141621516216162171621816219162201622116222162231622416225162261622716228162291623016231162321623316234162351623616237162381623916240162411624216243162441624516246162471624816249162501625116252162531625416255162561625716258162591626016261162621626316264162651626616267162681626916270162711627216273162741627516276162771627816279162801628116282162831628416285162861628716288162891629016291162921629316294162951629616297162981629916300163011630216303163041630516306163071630816309163101631116312163131631416315163161631716318163191632016321163221632316324163251632616327163281632916330163311633216333163341633516336163371633816339163401634116342163431634416345
  1. /*******************************************************************
  2. * This file is part of the Emulex Linux Device Driver for *
  3. * Fibre Channel Host Bus Adapters. *
  4. * Copyright (C) 2004-2012 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 IOCB_t *
  69. lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
  70. {
  71. return &iocbq->iocb;
  72. }
  73. /**
  74. * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
  75. * @q: The Work Queue to operate on.
  76. * @wqe: The work Queue Entry to put on the Work queue.
  77. *
  78. * This routine will copy the contents of @wqe to the next available entry on
  79. * the @q. This function will then ring the Work Queue Doorbell to signal the
  80. * HBA to start processing the Work Queue Entry. This function returns 0 if
  81. * successful. If no entries are available on @q then this function will return
  82. * -ENOMEM.
  83. * The caller is expected to hold the hbalock when calling this routine.
  84. **/
  85. static uint32_t
  86. lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
  87. {
  88. union lpfc_wqe *temp_wqe;
  89. struct lpfc_register doorbell;
  90. uint32_t host_index;
  91. uint32_t idx;
  92. /* sanity check on queue memory */
  93. if (unlikely(!q))
  94. return -ENOMEM;
  95. temp_wqe = q->qe[q->host_index].wqe;
  96. /* If the host has not yet processed the next entry then we are done */
  97. idx = ((q->host_index + 1) % q->entry_count);
  98. if (idx == q->hba_index) {
  99. q->WQ_overflow++;
  100. return -ENOMEM;
  101. }
  102. q->WQ_posted++;
  103. /* set consumption flag every once in a while */
  104. if (!((q->host_index + 1) % q->entry_repost))
  105. bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
  106. if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
  107. bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
  108. lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
  109. /* Update the host index before invoking device */
  110. host_index = q->host_index;
  111. q->host_index = idx;
  112. /* Ring Doorbell */
  113. doorbell.word0 = 0;
  114. if (q->db_format == LPFC_DB_LIST_FORMAT) {
  115. bf_set(lpfc_wq_db_list_fm_num_posted, &doorbell, 1);
  116. bf_set(lpfc_wq_db_list_fm_index, &doorbell, host_index);
  117. bf_set(lpfc_wq_db_list_fm_id, &doorbell, q->queue_id);
  118. } else if (q->db_format == LPFC_DB_RING_FORMAT) {
  119. bf_set(lpfc_wq_db_ring_fm_num_posted, &doorbell, 1);
  120. bf_set(lpfc_wq_db_ring_fm_id, &doorbell, q->queue_id);
  121. } else {
  122. return -EINVAL;
  123. }
  124. writel(doorbell.word0, q->db_regaddr);
  125. return 0;
  126. }
  127. /**
  128. * lpfc_sli4_wq_release - Updates internal hba index for WQ
  129. * @q: The Work Queue to operate on.
  130. * @index: The index to advance the hba index to.
  131. *
  132. * This routine will update the HBA index of a queue to reflect consumption of
  133. * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
  134. * an entry the host calls this function to update the queue's internal
  135. * pointers. This routine returns the number of entries that were consumed by
  136. * the HBA.
  137. **/
  138. static uint32_t
  139. lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
  140. {
  141. uint32_t released = 0;
  142. /* sanity check on queue memory */
  143. if (unlikely(!q))
  144. return 0;
  145. if (q->hba_index == index)
  146. return 0;
  147. do {
  148. q->hba_index = ((q->hba_index + 1) % q->entry_count);
  149. released++;
  150. } while (q->hba_index != index);
  151. return released;
  152. }
  153. /**
  154. * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
  155. * @q: The Mailbox Queue to operate on.
  156. * @wqe: The Mailbox Queue Entry to put on the Work queue.
  157. *
  158. * This routine will copy the contents of @mqe to the next available entry on
  159. * the @q. This function will then ring the Work Queue Doorbell to signal the
  160. * HBA to start processing the Work Queue Entry. This function returns 0 if
  161. * successful. If no entries are available on @q then this function will return
  162. * -ENOMEM.
  163. * The caller is expected to hold the hbalock when calling this routine.
  164. **/
  165. static uint32_t
  166. lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
  167. {
  168. struct lpfc_mqe *temp_mqe;
  169. struct lpfc_register doorbell;
  170. uint32_t host_index;
  171. /* sanity check on queue memory */
  172. if (unlikely(!q))
  173. return -ENOMEM;
  174. temp_mqe = q->qe[q->host_index].mqe;
  175. /* If the host has not yet processed the next entry then we are done */
  176. if (((q->host_index + 1) % q->entry_count) == q->hba_index)
  177. return -ENOMEM;
  178. lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
  179. /* Save off the mailbox pointer for completion */
  180. q->phba->mbox = (MAILBOX_t *)temp_mqe;
  181. /* Update the host index before invoking device */
  182. host_index = q->host_index;
  183. q->host_index = ((q->host_index + 1) % q->entry_count);
  184. /* Ring Doorbell */
  185. doorbell.word0 = 0;
  186. bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
  187. bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
  188. writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
  189. return 0;
  190. }
  191. /**
  192. * lpfc_sli4_mq_release - Updates internal hba index for MQ
  193. * @q: The Mailbox Queue to operate on.
  194. *
  195. * This routine will update the HBA index of a queue to reflect consumption of
  196. * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
  197. * an entry the host calls this function to update the queue's internal
  198. * pointers. This routine returns the number of entries that were consumed by
  199. * the HBA.
  200. **/
  201. static uint32_t
  202. lpfc_sli4_mq_release(struct lpfc_queue *q)
  203. {
  204. /* sanity check on queue memory */
  205. if (unlikely(!q))
  206. return 0;
  207. /* Clear the mailbox pointer for completion */
  208. q->phba->mbox = NULL;
  209. q->hba_index = ((q->hba_index + 1) % q->entry_count);
  210. return 1;
  211. }
  212. /**
  213. * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
  214. * @q: The Event Queue to get the first valid EQE from
  215. *
  216. * This routine will get the first valid Event Queue Entry from @q, update
  217. * the queue's internal hba index, and return the EQE. If no valid EQEs are in
  218. * the Queue (no more work to do), or the Queue is full of EQEs that have been
  219. * processed, but not popped back to the HBA then this routine will return NULL.
  220. **/
  221. static struct lpfc_eqe *
  222. lpfc_sli4_eq_get(struct lpfc_queue *q)
  223. {
  224. struct lpfc_eqe *eqe;
  225. uint32_t idx;
  226. /* sanity check on queue memory */
  227. if (unlikely(!q))
  228. return NULL;
  229. eqe = q->qe[q->hba_index].eqe;
  230. /* If the next EQE is not valid then we are done */
  231. if (!bf_get_le32(lpfc_eqe_valid, eqe))
  232. return NULL;
  233. /* If the host has not yet processed the next entry then we are done */
  234. idx = ((q->hba_index + 1) % q->entry_count);
  235. if (idx == q->host_index)
  236. return NULL;
  237. q->hba_index = idx;
  238. return eqe;
  239. }
  240. /**
  241. * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
  242. * @q: The Event Queue to disable interrupts
  243. *
  244. **/
  245. static inline void
  246. lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
  247. {
  248. struct lpfc_register doorbell;
  249. doorbell.word0 = 0;
  250. bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
  251. bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
  252. bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
  253. (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
  254. bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
  255. writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
  256. }
  257. /**
  258. * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
  259. * @q: The Event Queue that the host has completed processing for.
  260. * @arm: Indicates whether the host wants to arms this CQ.
  261. *
  262. * This routine will mark all Event Queue Entries on @q, from the last
  263. * known completed entry to the last entry that was processed, as completed
  264. * by clearing the valid bit for each completion queue entry. Then it will
  265. * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
  266. * The internal host index in the @q will be updated by this routine to indicate
  267. * that the host has finished processing the entries. The @arm parameter
  268. * indicates that the queue should be rearmed when ringing the doorbell.
  269. *
  270. * This function will return the number of EQEs that were popped.
  271. **/
  272. uint32_t
  273. lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
  274. {
  275. uint32_t released = 0;
  276. struct lpfc_eqe *temp_eqe;
  277. struct lpfc_register doorbell;
  278. /* sanity check on queue memory */
  279. if (unlikely(!q))
  280. return 0;
  281. /* while there are valid entries */
  282. while (q->hba_index != q->host_index) {
  283. temp_eqe = q->qe[q->host_index].eqe;
  284. bf_set_le32(lpfc_eqe_valid, temp_eqe, 0);
  285. released++;
  286. q->host_index = ((q->host_index + 1) % q->entry_count);
  287. }
  288. if (unlikely(released == 0 && !arm))
  289. return 0;
  290. /* ring doorbell for number popped */
  291. doorbell.word0 = 0;
  292. if (arm) {
  293. bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
  294. bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
  295. }
  296. bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
  297. bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
  298. bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
  299. (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
  300. bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
  301. writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
  302. /* PCI read to flush PCI pipeline on re-arming for INTx mode */
  303. if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
  304. readl(q->phba->sli4_hba.EQCQDBregaddr);
  305. return released;
  306. }
  307. /**
  308. * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
  309. * @q: The Completion Queue to get the first valid CQE from
  310. *
  311. * This routine will get the first valid Completion Queue Entry from @q, update
  312. * the queue's internal hba index, and return the CQE. If no valid CQEs are in
  313. * the Queue (no more work to do), or the Queue is full of CQEs that have been
  314. * processed, but not popped back to the HBA then this routine will return NULL.
  315. **/
  316. static struct lpfc_cqe *
  317. lpfc_sli4_cq_get(struct lpfc_queue *q)
  318. {
  319. struct lpfc_cqe *cqe;
  320. uint32_t idx;
  321. /* sanity check on queue memory */
  322. if (unlikely(!q))
  323. return NULL;
  324. /* If the next CQE is not valid then we are done */
  325. if (!bf_get_le32(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
  326. return NULL;
  327. /* If the host has not yet processed the next entry then we are done */
  328. idx = ((q->hba_index + 1) % q->entry_count);
  329. if (idx == q->host_index)
  330. return NULL;
  331. cqe = q->qe[q->hba_index].cqe;
  332. q->hba_index = idx;
  333. return cqe;
  334. }
  335. /**
  336. * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
  337. * @q: The Completion Queue that the host has completed processing for.
  338. * @arm: Indicates whether the host wants to arms this CQ.
  339. *
  340. * This routine will mark all Completion queue entries on @q, from the last
  341. * known completed entry to the last entry that was processed, as completed
  342. * by clearing the valid bit for each completion queue entry. Then it will
  343. * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
  344. * The internal host index in the @q will be updated by this routine to indicate
  345. * that the host has finished processing the entries. The @arm parameter
  346. * indicates that the queue should be rearmed when ringing the doorbell.
  347. *
  348. * This function will return the number of CQEs that were released.
  349. **/
  350. uint32_t
  351. lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
  352. {
  353. uint32_t released = 0;
  354. struct lpfc_cqe *temp_qe;
  355. struct lpfc_register doorbell;
  356. /* sanity check on queue memory */
  357. if (unlikely(!q))
  358. return 0;
  359. /* while there are valid entries */
  360. while (q->hba_index != q->host_index) {
  361. temp_qe = q->qe[q->host_index].cqe;
  362. bf_set_le32(lpfc_cqe_valid, temp_qe, 0);
  363. released++;
  364. q->host_index = ((q->host_index + 1) % q->entry_count);
  365. }
  366. if (unlikely(released == 0 && !arm))
  367. return 0;
  368. /* ring doorbell for number popped */
  369. doorbell.word0 = 0;
  370. if (arm)
  371. bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
  372. bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
  373. bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
  374. bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
  375. (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
  376. bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
  377. writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
  378. return released;
  379. }
  380. /**
  381. * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
  382. * @q: The Header Receive Queue to operate on.
  383. * @wqe: The Receive Queue Entry to put on the Receive queue.
  384. *
  385. * This routine will copy the contents of @wqe to the next available entry on
  386. * the @q. This function will then ring the Receive Queue Doorbell to signal the
  387. * HBA to start processing the Receive Queue Entry. This function returns the
  388. * index that the rqe was copied to if successful. If no entries are available
  389. * on @q then this function will return -ENOMEM.
  390. * The caller is expected to hold the hbalock when calling this routine.
  391. **/
  392. static int
  393. lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
  394. struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
  395. {
  396. struct lpfc_rqe *temp_hrqe;
  397. struct lpfc_rqe *temp_drqe;
  398. struct lpfc_register doorbell;
  399. int put_index;
  400. /* sanity check on queue memory */
  401. if (unlikely(!hq) || unlikely(!dq))
  402. return -ENOMEM;
  403. put_index = hq->host_index;
  404. temp_hrqe = hq->qe[hq->host_index].rqe;
  405. temp_drqe = dq->qe[dq->host_index].rqe;
  406. if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
  407. return -EINVAL;
  408. if (hq->host_index != dq->host_index)
  409. return -EINVAL;
  410. /* If the host has not yet processed the next entry then we are done */
  411. if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
  412. return -EBUSY;
  413. lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
  414. lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
  415. /* Update the host index to point to the next slot */
  416. hq->host_index = ((hq->host_index + 1) % hq->entry_count);
  417. dq->host_index = ((dq->host_index + 1) % dq->entry_count);
  418. /* Ring The Header Receive Queue Doorbell */
  419. if (!(hq->host_index % hq->entry_repost)) {
  420. doorbell.word0 = 0;
  421. if (hq->db_format == LPFC_DB_RING_FORMAT) {
  422. bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
  423. hq->entry_repost);
  424. bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
  425. } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
  426. bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
  427. hq->entry_repost);
  428. bf_set(lpfc_rq_db_list_fm_index, &doorbell,
  429. hq->host_index);
  430. bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
  431. } else {
  432. return -EINVAL;
  433. }
  434. writel(doorbell.word0, hq->db_regaddr);
  435. }
  436. return put_index;
  437. }
  438. /**
  439. * lpfc_sli4_rq_release - Updates internal hba index for RQ
  440. * @q: The Header Receive Queue to operate on.
  441. *
  442. * This routine will update the HBA index of a queue to reflect consumption of
  443. * one Receive Queue Entry by the HBA. When the HBA indicates that it has
  444. * consumed an entry the host calls this function to update the queue's
  445. * internal pointers. This routine returns the number of entries that were
  446. * consumed by the HBA.
  447. **/
  448. static uint32_t
  449. lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
  450. {
  451. /* sanity check on queue memory */
  452. if (unlikely(!hq) || unlikely(!dq))
  453. return 0;
  454. if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
  455. return 0;
  456. hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
  457. dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
  458. return 1;
  459. }
  460. /**
  461. * lpfc_cmd_iocb - Get next command iocb entry in the ring
  462. * @phba: Pointer to HBA context object.
  463. * @pring: Pointer to driver SLI ring object.
  464. *
  465. * This function returns pointer to next command iocb entry
  466. * in the command ring. The caller must hold hbalock to prevent
  467. * other threads consume the next command iocb.
  468. * SLI-2/SLI-3 provide different sized iocbs.
  469. **/
  470. static inline IOCB_t *
  471. lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  472. {
  473. return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
  474. pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
  475. }
  476. /**
  477. * lpfc_resp_iocb - Get next response iocb entry in the ring
  478. * @phba: Pointer to HBA context object.
  479. * @pring: Pointer to driver SLI ring object.
  480. *
  481. * This function returns pointer to next response iocb entry
  482. * in the response ring. The caller must hold hbalock to make sure
  483. * that no other thread consume the next response iocb.
  484. * SLI-2/SLI-3 provide different sized iocbs.
  485. **/
  486. static inline IOCB_t *
  487. lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  488. {
  489. return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
  490. pring->sli.sli3.rspidx * phba->iocb_rsp_size);
  491. }
  492. /**
  493. * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
  494. * @phba: Pointer to HBA context object.
  495. *
  496. * This function is called with hbalock held. This function
  497. * allocates a new driver iocb object from the iocb pool. If the
  498. * allocation is successful, it returns pointer to the newly
  499. * allocated iocb object else it returns NULL.
  500. **/
  501. struct lpfc_iocbq *
  502. __lpfc_sli_get_iocbq(struct lpfc_hba *phba)
  503. {
  504. struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
  505. struct lpfc_iocbq * iocbq = NULL;
  506. list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
  507. if (iocbq)
  508. phba->iocb_cnt++;
  509. if (phba->iocb_cnt > phba->iocb_max)
  510. phba->iocb_max = phba->iocb_cnt;
  511. return iocbq;
  512. }
  513. /**
  514. * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
  515. * @phba: Pointer to HBA context object.
  516. * @xritag: XRI value.
  517. *
  518. * This function clears the sglq pointer from the array of acive
  519. * sglq's. The xritag that is passed in is used to index into the
  520. * array. Before the xritag can be used it needs to be adjusted
  521. * by subtracting the xribase.
  522. *
  523. * Returns sglq ponter = success, NULL = Failure.
  524. **/
  525. static struct lpfc_sglq *
  526. __lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
  527. {
  528. struct lpfc_sglq *sglq;
  529. sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
  530. phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
  531. return sglq;
  532. }
  533. /**
  534. * __lpfc_get_active_sglq - Get the active sglq for this XRI.
  535. * @phba: Pointer to HBA context object.
  536. * @xritag: XRI value.
  537. *
  538. * This function returns the sglq pointer from the array of acive
  539. * sglq's. The xritag that is passed in is used to index into the
  540. * array. Before the xritag can be used it needs to be adjusted
  541. * by subtracting the xribase.
  542. *
  543. * Returns sglq ponter = success, NULL = Failure.
  544. **/
  545. struct lpfc_sglq *
  546. __lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
  547. {
  548. struct lpfc_sglq *sglq;
  549. sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
  550. return sglq;
  551. }
  552. /**
  553. * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
  554. * @phba: Pointer to HBA context object.
  555. * @xritag: xri used in this exchange.
  556. * @rrq: The RRQ to be cleared.
  557. *
  558. **/
  559. void
  560. lpfc_clr_rrq_active(struct lpfc_hba *phba,
  561. uint16_t xritag,
  562. struct lpfc_node_rrq *rrq)
  563. {
  564. struct lpfc_nodelist *ndlp = NULL;
  565. if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
  566. ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
  567. /* The target DID could have been swapped (cable swap)
  568. * we should use the ndlp from the findnode if it is
  569. * available.
  570. */
  571. if ((!ndlp) && rrq->ndlp)
  572. ndlp = rrq->ndlp;
  573. if (!ndlp)
  574. goto out;
  575. if (test_and_clear_bit(xritag, ndlp->active_rrqs.xri_bitmap)) {
  576. rrq->send_rrq = 0;
  577. rrq->xritag = 0;
  578. rrq->rrq_stop_time = 0;
  579. }
  580. out:
  581. mempool_free(rrq, phba->rrq_pool);
  582. }
  583. /**
  584. * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
  585. * @phba: Pointer to HBA context object.
  586. *
  587. * This function is called with hbalock held. This function
  588. * Checks if stop_time (ratov from setting rrq active) has
  589. * been reached, if it has and the send_rrq flag is set then
  590. * it will call lpfc_send_rrq. If the send_rrq flag is not set
  591. * then it will just call the routine to clear the rrq and
  592. * free the rrq resource.
  593. * The timer is set to the next rrq that is going to expire before
  594. * leaving the routine.
  595. *
  596. **/
  597. void
  598. lpfc_handle_rrq_active(struct lpfc_hba *phba)
  599. {
  600. struct lpfc_node_rrq *rrq;
  601. struct lpfc_node_rrq *nextrrq;
  602. unsigned long next_time;
  603. unsigned long iflags;
  604. LIST_HEAD(send_rrq);
  605. spin_lock_irqsave(&phba->hbalock, iflags);
  606. phba->hba_flag &= ~HBA_RRQ_ACTIVE;
  607. next_time = jiffies + HZ * (phba->fc_ratov + 1);
  608. list_for_each_entry_safe(rrq, nextrrq,
  609. &phba->active_rrq_list, list) {
  610. if (time_after(jiffies, rrq->rrq_stop_time))
  611. list_move(&rrq->list, &send_rrq);
  612. else if (time_before(rrq->rrq_stop_time, next_time))
  613. next_time = rrq->rrq_stop_time;
  614. }
  615. spin_unlock_irqrestore(&phba->hbalock, iflags);
  616. if (!list_empty(&phba->active_rrq_list))
  617. mod_timer(&phba->rrq_tmr, next_time);
  618. list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
  619. list_del(&rrq->list);
  620. if (!rrq->send_rrq)
  621. /* this call will free the rrq */
  622. lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
  623. else if (lpfc_send_rrq(phba, rrq)) {
  624. /* if we send the rrq then the completion handler
  625. * will clear the bit in the xribitmap.
  626. */
  627. lpfc_clr_rrq_active(phba, rrq->xritag,
  628. rrq);
  629. }
  630. }
  631. }
  632. /**
  633. * lpfc_get_active_rrq - Get the active RRQ for this exchange.
  634. * @vport: Pointer to vport context object.
  635. * @xri: The xri used in the exchange.
  636. * @did: The targets DID for this exchange.
  637. *
  638. * returns NULL = rrq not found in the phba->active_rrq_list.
  639. * rrq = rrq for this xri and target.
  640. **/
  641. struct lpfc_node_rrq *
  642. lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
  643. {
  644. struct lpfc_hba *phba = vport->phba;
  645. struct lpfc_node_rrq *rrq;
  646. struct lpfc_node_rrq *nextrrq;
  647. unsigned long iflags;
  648. if (phba->sli_rev != LPFC_SLI_REV4)
  649. return NULL;
  650. spin_lock_irqsave(&phba->hbalock, iflags);
  651. list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
  652. if (rrq->vport == vport && rrq->xritag == xri &&
  653. rrq->nlp_DID == did){
  654. list_del(&rrq->list);
  655. spin_unlock_irqrestore(&phba->hbalock, iflags);
  656. return rrq;
  657. }
  658. }
  659. spin_unlock_irqrestore(&phba->hbalock, iflags);
  660. return NULL;
  661. }
  662. /**
  663. * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
  664. * @vport: Pointer to vport context object.
  665. * @ndlp: Pointer to the lpfc_node_list structure.
  666. * If ndlp is NULL Remove all active RRQs for this vport from the
  667. * phba->active_rrq_list and clear the rrq.
  668. * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
  669. **/
  670. void
  671. lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
  672. {
  673. struct lpfc_hba *phba = vport->phba;
  674. struct lpfc_node_rrq *rrq;
  675. struct lpfc_node_rrq *nextrrq;
  676. unsigned long iflags;
  677. LIST_HEAD(rrq_list);
  678. if (phba->sli_rev != LPFC_SLI_REV4)
  679. return;
  680. if (!ndlp) {
  681. lpfc_sli4_vport_delete_els_xri_aborted(vport);
  682. lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
  683. }
  684. spin_lock_irqsave(&phba->hbalock, iflags);
  685. list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
  686. if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
  687. list_move(&rrq->list, &rrq_list);
  688. spin_unlock_irqrestore(&phba->hbalock, iflags);
  689. list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
  690. list_del(&rrq->list);
  691. lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
  692. }
  693. }
  694. /**
  695. * lpfc_cleanup_wt_rrqs - Remove all rrq's from the active list.
  696. * @phba: Pointer to HBA context object.
  697. *
  698. * Remove all rrqs from the phba->active_rrq_list and free them by
  699. * calling __lpfc_clr_active_rrq
  700. *
  701. **/
  702. void
  703. lpfc_cleanup_wt_rrqs(struct lpfc_hba *phba)
  704. {
  705. struct lpfc_node_rrq *rrq;
  706. struct lpfc_node_rrq *nextrrq;
  707. unsigned long next_time;
  708. unsigned long iflags;
  709. LIST_HEAD(rrq_list);
  710. if (phba->sli_rev != LPFC_SLI_REV4)
  711. return;
  712. spin_lock_irqsave(&phba->hbalock, iflags);
  713. phba->hba_flag &= ~HBA_RRQ_ACTIVE;
  714. next_time = jiffies + HZ * (phba->fc_ratov * 2);
  715. list_splice_init(&phba->active_rrq_list, &rrq_list);
  716. spin_unlock_irqrestore(&phba->hbalock, iflags);
  717. list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
  718. list_del(&rrq->list);
  719. lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
  720. }
  721. if (!list_empty(&phba->active_rrq_list))
  722. mod_timer(&phba->rrq_tmr, next_time);
  723. }
  724. /**
  725. * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
  726. * @phba: Pointer to HBA context object.
  727. * @ndlp: Targets nodelist pointer for this exchange.
  728. * @xritag the xri in the bitmap to test.
  729. *
  730. * This function is called with hbalock held. This function
  731. * returns 0 = rrq not active for this xri
  732. * 1 = rrq is valid for this xri.
  733. **/
  734. int
  735. lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
  736. uint16_t xritag)
  737. {
  738. if (!ndlp)
  739. return 0;
  740. if (test_bit(xritag, ndlp->active_rrqs.xri_bitmap))
  741. return 1;
  742. else
  743. return 0;
  744. }
  745. /**
  746. * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
  747. * @phba: Pointer to HBA context object.
  748. * @ndlp: nodelist pointer for this target.
  749. * @xritag: xri used in this exchange.
  750. * @rxid: Remote Exchange ID.
  751. * @send_rrq: Flag used to determine if we should send rrq els cmd.
  752. *
  753. * This function takes the hbalock.
  754. * The active bit is always set in the active rrq xri_bitmap even
  755. * if there is no slot avaiable for the other rrq information.
  756. *
  757. * returns 0 rrq actived for this xri
  758. * < 0 No memory or invalid ndlp.
  759. **/
  760. int
  761. lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
  762. uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
  763. {
  764. unsigned long iflags;
  765. struct lpfc_node_rrq *rrq;
  766. int empty;
  767. if (!ndlp)
  768. return -EINVAL;
  769. if (!phba->cfg_enable_rrq)
  770. return -EINVAL;
  771. spin_lock_irqsave(&phba->hbalock, iflags);
  772. if (phba->pport->load_flag & FC_UNLOADING) {
  773. phba->hba_flag &= ~HBA_RRQ_ACTIVE;
  774. goto out;
  775. }
  776. /*
  777. * set the active bit even if there is no mem available.
  778. */
  779. if (NLP_CHK_FREE_REQ(ndlp))
  780. goto out;
  781. if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
  782. goto out;
  783. if (test_and_set_bit(xritag, ndlp->active_rrqs.xri_bitmap))
  784. goto out;
  785. spin_unlock_irqrestore(&phba->hbalock, iflags);
  786. rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
  787. if (!rrq) {
  788. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  789. "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
  790. " DID:0x%x Send:%d\n",
  791. xritag, rxid, ndlp->nlp_DID, send_rrq);
  792. return -EINVAL;
  793. }
  794. if (phba->cfg_enable_rrq == 1)
  795. rrq->send_rrq = send_rrq;
  796. else
  797. rrq->send_rrq = 0;
  798. rrq->xritag = xritag;
  799. rrq->rrq_stop_time = jiffies + HZ * (phba->fc_ratov + 1);
  800. rrq->ndlp = ndlp;
  801. rrq->nlp_DID = ndlp->nlp_DID;
  802. rrq->vport = ndlp->vport;
  803. rrq->rxid = rxid;
  804. spin_lock_irqsave(&phba->hbalock, iflags);
  805. empty = list_empty(&phba->active_rrq_list);
  806. list_add_tail(&rrq->list, &phba->active_rrq_list);
  807. phba->hba_flag |= HBA_RRQ_ACTIVE;
  808. if (empty)
  809. lpfc_worker_wake_up(phba);
  810. spin_unlock_irqrestore(&phba->hbalock, iflags);
  811. return 0;
  812. out:
  813. spin_unlock_irqrestore(&phba->hbalock, iflags);
  814. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  815. "2921 Can't set rrq active xri:0x%x rxid:0x%x"
  816. " DID:0x%x Send:%d\n",
  817. xritag, rxid, ndlp->nlp_DID, send_rrq);
  818. return -EINVAL;
  819. }
  820. /**
  821. * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
  822. * @phba: Pointer to HBA context object.
  823. * @piocb: Pointer to the iocbq.
  824. *
  825. * This function is called with hbalock held. This function
  826. * gets a new driver sglq object from the sglq list. If the
  827. * list is not empty then it is successful, it returns pointer to the newly
  828. * allocated sglq object else it returns NULL.
  829. **/
  830. static struct lpfc_sglq *
  831. __lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
  832. {
  833. struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
  834. struct lpfc_sglq *sglq = NULL;
  835. struct lpfc_sglq *start_sglq = NULL;
  836. struct lpfc_scsi_buf *lpfc_cmd;
  837. struct lpfc_nodelist *ndlp;
  838. int found = 0;
  839. if (piocbq->iocb_flag & LPFC_IO_FCP) {
  840. lpfc_cmd = (struct lpfc_scsi_buf *) piocbq->context1;
  841. ndlp = lpfc_cmd->rdata->pnode;
  842. } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
  843. !(piocbq->iocb_flag & LPFC_IO_LIBDFC))
  844. ndlp = piocbq->context_un.ndlp;
  845. else if ((piocbq->iocb.ulpCommand == CMD_ELS_REQUEST64_CR) &&
  846. (piocbq->iocb_flag & LPFC_IO_LIBDFC))
  847. ndlp = piocbq->context_un.ndlp;
  848. else
  849. ndlp = piocbq->context1;
  850. list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
  851. start_sglq = sglq;
  852. while (!found) {
  853. if (!sglq)
  854. return NULL;
  855. if (lpfc_test_rrq_active(phba, ndlp, sglq->sli4_lxritag)) {
  856. /* This xri has an rrq outstanding for this DID.
  857. * put it back in the list and get another xri.
  858. */
  859. list_add_tail(&sglq->list, lpfc_sgl_list);
  860. sglq = NULL;
  861. list_remove_head(lpfc_sgl_list, sglq,
  862. struct lpfc_sglq, list);
  863. if (sglq == start_sglq) {
  864. sglq = NULL;
  865. break;
  866. } else
  867. continue;
  868. }
  869. sglq->ndlp = ndlp;
  870. found = 1;
  871. phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
  872. sglq->state = SGL_ALLOCATED;
  873. }
  874. return sglq;
  875. }
  876. /**
  877. * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
  878. * @phba: Pointer to HBA context object.
  879. *
  880. * This function is called with no lock held. This function
  881. * allocates a new driver iocb object from the iocb pool. If the
  882. * allocation is successful, it returns pointer to the newly
  883. * allocated iocb object else it returns NULL.
  884. **/
  885. struct lpfc_iocbq *
  886. lpfc_sli_get_iocbq(struct lpfc_hba *phba)
  887. {
  888. struct lpfc_iocbq * iocbq = NULL;
  889. unsigned long iflags;
  890. spin_lock_irqsave(&phba->hbalock, iflags);
  891. iocbq = __lpfc_sli_get_iocbq(phba);
  892. spin_unlock_irqrestore(&phba->hbalock, iflags);
  893. return iocbq;
  894. }
  895. /**
  896. * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
  897. * @phba: Pointer to HBA context object.
  898. * @iocbq: Pointer to driver iocb object.
  899. *
  900. * This function is called with hbalock held to release driver
  901. * iocb object to the iocb pool. The iotag in the iocb object
  902. * does not change for each use of the iocb object. This function
  903. * clears all other fields of the iocb object when it is freed.
  904. * The sqlq structure that holds the xritag and phys and virtual
  905. * mappings for the scatter gather list is retrieved from the
  906. * active array of sglq. The get of the sglq pointer also clears
  907. * the entry in the array. If the status of the IO indiactes that
  908. * this IO was aborted then the sglq entry it put on the
  909. * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
  910. * IO has good status or fails for any other reason then the sglq
  911. * entry is added to the free list (lpfc_sgl_list).
  912. **/
  913. static void
  914. __lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  915. {
  916. struct lpfc_sglq *sglq;
  917. size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
  918. unsigned long iflag = 0;
  919. struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
  920. if (iocbq->sli4_xritag == NO_XRI)
  921. sglq = NULL;
  922. else
  923. sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
  924. /*
  925. ** This should have been removed from the txcmplq before calling
  926. ** iocbq_release. The normal completion
  927. ** path should have already done the list_del_init.
  928. */
  929. if (unlikely(!list_empty(&iocbq->list))) {
  930. if (iocbq->iocb_flag & LPFC_IO_ON_TXCMPLQ)
  931. iocbq->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
  932. list_del_init(&iocbq->list);
  933. }
  934. if (sglq) {
  935. if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
  936. (sglq->state != SGL_XRI_ABORTED)) {
  937. spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
  938. iflag);
  939. list_add(&sglq->list,
  940. &phba->sli4_hba.lpfc_abts_els_sgl_list);
  941. spin_unlock_irqrestore(
  942. &phba->sli4_hba.abts_sgl_list_lock, iflag);
  943. } else {
  944. sglq->state = SGL_FREED;
  945. sglq->ndlp = NULL;
  946. list_add_tail(&sglq->list,
  947. &phba->sli4_hba.lpfc_sgl_list);
  948. /* Check if TXQ queue needs to be serviced */
  949. if (!list_empty(&pring->txq))
  950. lpfc_worker_wake_up(phba);
  951. }
  952. }
  953. /*
  954. * Clean all volatile data fields, preserve iotag and node struct.
  955. */
  956. memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
  957. iocbq->sli4_lxritag = NO_XRI;
  958. iocbq->sli4_xritag = NO_XRI;
  959. list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
  960. }
  961. /**
  962. * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
  963. * @phba: Pointer to HBA context object.
  964. * @iocbq: Pointer to driver iocb object.
  965. *
  966. * This function is called with hbalock held to release driver
  967. * iocb object to the iocb pool. The iotag in the iocb object
  968. * does not change for each use of the iocb object. This function
  969. * clears all other fields of the iocb object when it is freed.
  970. **/
  971. static void
  972. __lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  973. {
  974. size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
  975. /*
  976. ** This should have been removed from the txcmplq before calling
  977. ** iocbq_release. The normal completion
  978. ** path should have already done the list_del_init.
  979. */
  980. if (unlikely(!list_empty(&iocbq->list)))
  981. list_del_init(&iocbq->list);
  982. /*
  983. * Clean all volatile data fields, preserve iotag and node struct.
  984. */
  985. memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
  986. iocbq->sli4_xritag = NO_XRI;
  987. list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
  988. }
  989. /**
  990. * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
  991. * @phba: Pointer to HBA context object.
  992. * @iocbq: Pointer to driver iocb object.
  993. *
  994. * This function is called with hbalock held to release driver
  995. * iocb object to the iocb pool. The iotag in the iocb object
  996. * does not change for each use of the iocb object. This function
  997. * clears all other fields of the iocb object when it is freed.
  998. **/
  999. static void
  1000. __lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  1001. {
  1002. phba->__lpfc_sli_release_iocbq(phba, iocbq);
  1003. phba->iocb_cnt--;
  1004. }
  1005. /**
  1006. * lpfc_sli_release_iocbq - Release iocb to the iocb pool
  1007. * @phba: Pointer to HBA context object.
  1008. * @iocbq: Pointer to driver iocb object.
  1009. *
  1010. * This function is called with no lock held to release the iocb to
  1011. * iocb pool.
  1012. **/
  1013. void
  1014. lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  1015. {
  1016. unsigned long iflags;
  1017. /*
  1018. * Clean all volatile data fields, preserve iotag and node struct.
  1019. */
  1020. spin_lock_irqsave(&phba->hbalock, iflags);
  1021. __lpfc_sli_release_iocbq(phba, iocbq);
  1022. spin_unlock_irqrestore(&phba->hbalock, iflags);
  1023. }
  1024. /**
  1025. * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
  1026. * @phba: Pointer to HBA context object.
  1027. * @iocblist: List of IOCBs.
  1028. * @ulpstatus: ULP status in IOCB command field.
  1029. * @ulpWord4: ULP word-4 in IOCB command field.
  1030. *
  1031. * This function is called with a list of IOCBs to cancel. It cancels the IOCB
  1032. * on the list by invoking the complete callback function associated with the
  1033. * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
  1034. * fields.
  1035. **/
  1036. void
  1037. lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
  1038. uint32_t ulpstatus, uint32_t ulpWord4)
  1039. {
  1040. struct lpfc_iocbq *piocb;
  1041. while (!list_empty(iocblist)) {
  1042. list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
  1043. if (!piocb->iocb_cmpl)
  1044. lpfc_sli_release_iocbq(phba, piocb);
  1045. else {
  1046. piocb->iocb.ulpStatus = ulpstatus;
  1047. piocb->iocb.un.ulpWord[4] = ulpWord4;
  1048. (piocb->iocb_cmpl) (phba, piocb, piocb);
  1049. }
  1050. }
  1051. return;
  1052. }
  1053. /**
  1054. * lpfc_sli_iocb_cmd_type - Get the iocb type
  1055. * @iocb_cmnd: iocb command code.
  1056. *
  1057. * This function is called by ring event handler function to get the iocb type.
  1058. * This function translates the iocb command to an iocb command type used to
  1059. * decide the final disposition of each completed IOCB.
  1060. * The function returns
  1061. * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
  1062. * LPFC_SOL_IOCB if it is a solicited iocb completion
  1063. * LPFC_ABORT_IOCB if it is an abort iocb
  1064. * LPFC_UNSOL_IOCB if it is an unsolicited iocb
  1065. *
  1066. * The caller is not required to hold any lock.
  1067. **/
  1068. static lpfc_iocb_type
  1069. lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
  1070. {
  1071. lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
  1072. if (iocb_cmnd > CMD_MAX_IOCB_CMD)
  1073. return 0;
  1074. switch (iocb_cmnd) {
  1075. case CMD_XMIT_SEQUENCE_CR:
  1076. case CMD_XMIT_SEQUENCE_CX:
  1077. case CMD_XMIT_BCAST_CN:
  1078. case CMD_XMIT_BCAST_CX:
  1079. case CMD_ELS_REQUEST_CR:
  1080. case CMD_ELS_REQUEST_CX:
  1081. case CMD_CREATE_XRI_CR:
  1082. case CMD_CREATE_XRI_CX:
  1083. case CMD_GET_RPI_CN:
  1084. case CMD_XMIT_ELS_RSP_CX:
  1085. case CMD_GET_RPI_CR:
  1086. case CMD_FCP_IWRITE_CR:
  1087. case CMD_FCP_IWRITE_CX:
  1088. case CMD_FCP_IREAD_CR:
  1089. case CMD_FCP_IREAD_CX:
  1090. case CMD_FCP_ICMND_CR:
  1091. case CMD_FCP_ICMND_CX:
  1092. case CMD_FCP_TSEND_CX:
  1093. case CMD_FCP_TRSP_CX:
  1094. case CMD_FCP_TRECEIVE_CX:
  1095. case CMD_FCP_AUTO_TRSP_CX:
  1096. case CMD_ADAPTER_MSG:
  1097. case CMD_ADAPTER_DUMP:
  1098. case CMD_XMIT_SEQUENCE64_CR:
  1099. case CMD_XMIT_SEQUENCE64_CX:
  1100. case CMD_XMIT_BCAST64_CN:
  1101. case CMD_XMIT_BCAST64_CX:
  1102. case CMD_ELS_REQUEST64_CR:
  1103. case CMD_ELS_REQUEST64_CX:
  1104. case CMD_FCP_IWRITE64_CR:
  1105. case CMD_FCP_IWRITE64_CX:
  1106. case CMD_FCP_IREAD64_CR:
  1107. case CMD_FCP_IREAD64_CX:
  1108. case CMD_FCP_ICMND64_CR:
  1109. case CMD_FCP_ICMND64_CX:
  1110. case CMD_FCP_TSEND64_CX:
  1111. case CMD_FCP_TRSP64_CX:
  1112. case CMD_FCP_TRECEIVE64_CX:
  1113. case CMD_GEN_REQUEST64_CR:
  1114. case CMD_GEN_REQUEST64_CX:
  1115. case CMD_XMIT_ELS_RSP64_CX:
  1116. case DSSCMD_IWRITE64_CR:
  1117. case DSSCMD_IWRITE64_CX:
  1118. case DSSCMD_IREAD64_CR:
  1119. case DSSCMD_IREAD64_CX:
  1120. type = LPFC_SOL_IOCB;
  1121. break;
  1122. case CMD_ABORT_XRI_CN:
  1123. case CMD_ABORT_XRI_CX:
  1124. case CMD_CLOSE_XRI_CN:
  1125. case CMD_CLOSE_XRI_CX:
  1126. case CMD_XRI_ABORTED_CX:
  1127. case CMD_ABORT_MXRI64_CN:
  1128. case CMD_XMIT_BLS_RSP64_CX:
  1129. type = LPFC_ABORT_IOCB;
  1130. break;
  1131. case CMD_RCV_SEQUENCE_CX:
  1132. case CMD_RCV_ELS_REQ_CX:
  1133. case CMD_RCV_SEQUENCE64_CX:
  1134. case CMD_RCV_ELS_REQ64_CX:
  1135. case CMD_ASYNC_STATUS:
  1136. case CMD_IOCB_RCV_SEQ64_CX:
  1137. case CMD_IOCB_RCV_ELS64_CX:
  1138. case CMD_IOCB_RCV_CONT64_CX:
  1139. case CMD_IOCB_RET_XRI64_CX:
  1140. type = LPFC_UNSOL_IOCB;
  1141. break;
  1142. case CMD_IOCB_XMIT_MSEQ64_CR:
  1143. case CMD_IOCB_XMIT_MSEQ64_CX:
  1144. case CMD_IOCB_RCV_SEQ_LIST64_CX:
  1145. case CMD_IOCB_RCV_ELS_LIST64_CX:
  1146. case CMD_IOCB_CLOSE_EXTENDED_CN:
  1147. case CMD_IOCB_ABORT_EXTENDED_CN:
  1148. case CMD_IOCB_RET_HBQE64_CN:
  1149. case CMD_IOCB_FCP_IBIDIR64_CR:
  1150. case CMD_IOCB_FCP_IBIDIR64_CX:
  1151. case CMD_IOCB_FCP_ITASKMGT64_CX:
  1152. case CMD_IOCB_LOGENTRY_CN:
  1153. case CMD_IOCB_LOGENTRY_ASYNC_CN:
  1154. printk("%s - Unhandled SLI-3 Command x%x\n",
  1155. __func__, iocb_cmnd);
  1156. type = LPFC_UNKNOWN_IOCB;
  1157. break;
  1158. default:
  1159. type = LPFC_UNKNOWN_IOCB;
  1160. break;
  1161. }
  1162. return type;
  1163. }
  1164. /**
  1165. * lpfc_sli_ring_map - Issue config_ring mbox for all rings
  1166. * @phba: Pointer to HBA context object.
  1167. *
  1168. * This function is called from SLI initialization code
  1169. * to configure every ring of the HBA's SLI interface. The
  1170. * caller is not required to hold any lock. This function issues
  1171. * a config_ring mailbox command for each ring.
  1172. * This function returns zero if successful else returns a negative
  1173. * error code.
  1174. **/
  1175. static int
  1176. lpfc_sli_ring_map(struct lpfc_hba *phba)
  1177. {
  1178. struct lpfc_sli *psli = &phba->sli;
  1179. LPFC_MBOXQ_t *pmb;
  1180. MAILBOX_t *pmbox;
  1181. int i, rc, ret = 0;
  1182. pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  1183. if (!pmb)
  1184. return -ENOMEM;
  1185. pmbox = &pmb->u.mb;
  1186. phba->link_state = LPFC_INIT_MBX_CMDS;
  1187. for (i = 0; i < psli->num_rings; i++) {
  1188. lpfc_config_ring(phba, i, pmb);
  1189. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
  1190. if (rc != MBX_SUCCESS) {
  1191. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  1192. "0446 Adapter failed to init (%d), "
  1193. "mbxCmd x%x CFG_RING, mbxStatus x%x, "
  1194. "ring %d\n",
  1195. rc, pmbox->mbxCommand,
  1196. pmbox->mbxStatus, i);
  1197. phba->link_state = LPFC_HBA_ERROR;
  1198. ret = -ENXIO;
  1199. break;
  1200. }
  1201. }
  1202. mempool_free(pmb, phba->mbox_mem_pool);
  1203. return ret;
  1204. }
  1205. /**
  1206. * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
  1207. * @phba: Pointer to HBA context object.
  1208. * @pring: Pointer to driver SLI ring object.
  1209. * @piocb: Pointer to the driver iocb object.
  1210. *
  1211. * This function is called with hbalock held. The function adds the
  1212. * new iocb to txcmplq of the given ring. This function always returns
  1213. * 0. If this function is called for ELS ring, this function checks if
  1214. * there is a vport associated with the ELS command. This function also
  1215. * starts els_tmofunc timer if this is an ELS command.
  1216. **/
  1217. static int
  1218. lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  1219. struct lpfc_iocbq *piocb)
  1220. {
  1221. list_add_tail(&piocb->list, &pring->txcmplq);
  1222. piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
  1223. if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
  1224. (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
  1225. (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
  1226. if (!piocb->vport)
  1227. BUG();
  1228. else
  1229. mod_timer(&piocb->vport->els_tmofunc,
  1230. jiffies + HZ * (phba->fc_ratov << 1));
  1231. }
  1232. return 0;
  1233. }
  1234. /**
  1235. * lpfc_sli_ringtx_get - Get first element of the txq
  1236. * @phba: Pointer to HBA context object.
  1237. * @pring: Pointer to driver SLI ring object.
  1238. *
  1239. * This function is called with hbalock held to get next
  1240. * iocb in txq of the given ring. If there is any iocb in
  1241. * the txq, the function returns first iocb in the list after
  1242. * removing the iocb from the list, else it returns NULL.
  1243. **/
  1244. struct lpfc_iocbq *
  1245. lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1246. {
  1247. struct lpfc_iocbq *cmd_iocb;
  1248. list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
  1249. return cmd_iocb;
  1250. }
  1251. /**
  1252. * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
  1253. * @phba: Pointer to HBA context object.
  1254. * @pring: Pointer to driver SLI ring object.
  1255. *
  1256. * This function is called with hbalock held and the caller must post the
  1257. * iocb without releasing the lock. If the caller releases the lock,
  1258. * iocb slot returned by the function is not guaranteed to be available.
  1259. * The function returns pointer to the next available iocb slot if there
  1260. * is available slot in the ring, else it returns NULL.
  1261. * If the get index of the ring is ahead of the put index, the function
  1262. * will post an error attention event to the worker thread to take the
  1263. * HBA to offline state.
  1264. **/
  1265. static IOCB_t *
  1266. lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1267. {
  1268. struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
  1269. uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
  1270. if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
  1271. (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
  1272. pring->sli.sli3.next_cmdidx = 0;
  1273. if (unlikely(pring->sli.sli3.local_getidx ==
  1274. pring->sli.sli3.next_cmdidx)) {
  1275. pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
  1276. if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
  1277. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  1278. "0315 Ring %d issue: portCmdGet %d "
  1279. "is bigger than cmd ring %d\n",
  1280. pring->ringno,
  1281. pring->sli.sli3.local_getidx,
  1282. max_cmd_idx);
  1283. phba->link_state = LPFC_HBA_ERROR;
  1284. /*
  1285. * All error attention handlers are posted to
  1286. * worker thread
  1287. */
  1288. phba->work_ha |= HA_ERATT;
  1289. phba->work_hs = HS_FFER3;
  1290. lpfc_worker_wake_up(phba);
  1291. return NULL;
  1292. }
  1293. if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
  1294. return NULL;
  1295. }
  1296. return lpfc_cmd_iocb(phba, pring);
  1297. }
  1298. /**
  1299. * lpfc_sli_next_iotag - Get an iotag for the iocb
  1300. * @phba: Pointer to HBA context object.
  1301. * @iocbq: Pointer to driver iocb object.
  1302. *
  1303. * This function gets an iotag for the iocb. If there is no unused iotag and
  1304. * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
  1305. * array and assigns a new iotag.
  1306. * The function returns the allocated iotag if successful, else returns zero.
  1307. * Zero is not a valid iotag.
  1308. * The caller is not required to hold any lock.
  1309. **/
  1310. uint16_t
  1311. lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
  1312. {
  1313. struct lpfc_iocbq **new_arr;
  1314. struct lpfc_iocbq **old_arr;
  1315. size_t new_len;
  1316. struct lpfc_sli *psli = &phba->sli;
  1317. uint16_t iotag;
  1318. spin_lock_irq(&phba->hbalock);
  1319. iotag = psli->last_iotag;
  1320. if(++iotag < psli->iocbq_lookup_len) {
  1321. psli->last_iotag = iotag;
  1322. psli->iocbq_lookup[iotag] = iocbq;
  1323. spin_unlock_irq(&phba->hbalock);
  1324. iocbq->iotag = iotag;
  1325. return iotag;
  1326. } else if (psli->iocbq_lookup_len < (0xffff
  1327. - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
  1328. new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
  1329. spin_unlock_irq(&phba->hbalock);
  1330. new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
  1331. GFP_KERNEL);
  1332. if (new_arr) {
  1333. spin_lock_irq(&phba->hbalock);
  1334. old_arr = psli->iocbq_lookup;
  1335. if (new_len <= psli->iocbq_lookup_len) {
  1336. /* highly unprobable case */
  1337. kfree(new_arr);
  1338. iotag = psli->last_iotag;
  1339. if(++iotag < psli->iocbq_lookup_len) {
  1340. psli->last_iotag = iotag;
  1341. psli->iocbq_lookup[iotag] = iocbq;
  1342. spin_unlock_irq(&phba->hbalock);
  1343. iocbq->iotag = iotag;
  1344. return iotag;
  1345. }
  1346. spin_unlock_irq(&phba->hbalock);
  1347. return 0;
  1348. }
  1349. if (psli->iocbq_lookup)
  1350. memcpy(new_arr, old_arr,
  1351. ((psli->last_iotag + 1) *
  1352. sizeof (struct lpfc_iocbq *)));
  1353. psli->iocbq_lookup = new_arr;
  1354. psli->iocbq_lookup_len = new_len;
  1355. psli->last_iotag = iotag;
  1356. psli->iocbq_lookup[iotag] = iocbq;
  1357. spin_unlock_irq(&phba->hbalock);
  1358. iocbq->iotag = iotag;
  1359. kfree(old_arr);
  1360. return iotag;
  1361. }
  1362. } else
  1363. spin_unlock_irq(&phba->hbalock);
  1364. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  1365. "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
  1366. psli->last_iotag);
  1367. return 0;
  1368. }
  1369. /**
  1370. * lpfc_sli_submit_iocb - Submit an iocb to the firmware
  1371. * @phba: Pointer to HBA context object.
  1372. * @pring: Pointer to driver SLI ring object.
  1373. * @iocb: Pointer to iocb slot in the ring.
  1374. * @nextiocb: Pointer to driver iocb object which need to be
  1375. * posted to firmware.
  1376. *
  1377. * This function is called with hbalock held to post a new iocb to
  1378. * the firmware. This function copies the new iocb to ring iocb slot and
  1379. * updates the ring pointers. It adds the new iocb to txcmplq if there is
  1380. * a completion call back for this iocb else the function will free the
  1381. * iocb object.
  1382. **/
  1383. static void
  1384. lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  1385. IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
  1386. {
  1387. /*
  1388. * Set up an iotag
  1389. */
  1390. nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
  1391. if (pring->ringno == LPFC_ELS_RING) {
  1392. lpfc_debugfs_slow_ring_trc(phba,
  1393. "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
  1394. *(((uint32_t *) &nextiocb->iocb) + 4),
  1395. *(((uint32_t *) &nextiocb->iocb) + 6),
  1396. *(((uint32_t *) &nextiocb->iocb) + 7));
  1397. }
  1398. /*
  1399. * Issue iocb command to adapter
  1400. */
  1401. lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
  1402. wmb();
  1403. pring->stats.iocb_cmd++;
  1404. /*
  1405. * If there is no completion routine to call, we can release the
  1406. * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
  1407. * that have no rsp ring completion, iocb_cmpl MUST be NULL.
  1408. */
  1409. if (nextiocb->iocb_cmpl)
  1410. lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
  1411. else
  1412. __lpfc_sli_release_iocbq(phba, nextiocb);
  1413. /*
  1414. * Let the HBA know what IOCB slot will be the next one the
  1415. * driver will put a command into.
  1416. */
  1417. pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
  1418. writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
  1419. }
  1420. /**
  1421. * lpfc_sli_update_full_ring - Update the chip attention register
  1422. * @phba: Pointer to HBA context object.
  1423. * @pring: Pointer to driver SLI ring object.
  1424. *
  1425. * The caller is not required to hold any lock for calling this function.
  1426. * This function updates the chip attention bits for the ring to inform firmware
  1427. * that there are pending work to be done for this ring and requests an
  1428. * interrupt when there is space available in the ring. This function is
  1429. * called when the driver is unable to post more iocbs to the ring due
  1430. * to unavailability of space in the ring.
  1431. **/
  1432. static void
  1433. lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1434. {
  1435. int ringno = pring->ringno;
  1436. pring->flag |= LPFC_CALL_RING_AVAILABLE;
  1437. wmb();
  1438. /*
  1439. * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
  1440. * The HBA will tell us when an IOCB entry is available.
  1441. */
  1442. writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
  1443. readl(phba->CAregaddr); /* flush */
  1444. pring->stats.iocb_cmd_full++;
  1445. }
  1446. /**
  1447. * lpfc_sli_update_ring - Update chip attention register
  1448. * @phba: Pointer to HBA context object.
  1449. * @pring: Pointer to driver SLI ring object.
  1450. *
  1451. * This function updates the chip attention register bit for the
  1452. * given ring to inform HBA that there is more work to be done
  1453. * in this ring. The caller is not required to hold any lock.
  1454. **/
  1455. static void
  1456. lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1457. {
  1458. int ringno = pring->ringno;
  1459. /*
  1460. * Tell the HBA that there is work to do in this ring.
  1461. */
  1462. if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
  1463. wmb();
  1464. writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
  1465. readl(phba->CAregaddr); /* flush */
  1466. }
  1467. }
  1468. /**
  1469. * lpfc_sli_resume_iocb - Process iocbs in the txq
  1470. * @phba: Pointer to HBA context object.
  1471. * @pring: Pointer to driver SLI ring object.
  1472. *
  1473. * This function is called with hbalock held to post pending iocbs
  1474. * in the txq to the firmware. This function is called when driver
  1475. * detects space available in the ring.
  1476. **/
  1477. static void
  1478. lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  1479. {
  1480. IOCB_t *iocb;
  1481. struct lpfc_iocbq *nextiocb;
  1482. /*
  1483. * Check to see if:
  1484. * (a) there is anything on the txq to send
  1485. * (b) link is up
  1486. * (c) link attention events can be processed (fcp ring only)
  1487. * (d) IOCB processing is not blocked by the outstanding mbox command.
  1488. */
  1489. if (lpfc_is_link_up(phba) &&
  1490. (!list_empty(&pring->txq)) &&
  1491. (pring->ringno != phba->sli.fcp_ring ||
  1492. phba->sli.sli_flag & LPFC_PROCESS_LA)) {
  1493. while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
  1494. (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
  1495. lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
  1496. if (iocb)
  1497. lpfc_sli_update_ring(phba, pring);
  1498. else
  1499. lpfc_sli_update_full_ring(phba, pring);
  1500. }
  1501. return;
  1502. }
  1503. /**
  1504. * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
  1505. * @phba: Pointer to HBA context object.
  1506. * @hbqno: HBQ number.
  1507. *
  1508. * This function is called with hbalock held to get the next
  1509. * available slot for the given HBQ. If there is free slot
  1510. * available for the HBQ it will return pointer to the next available
  1511. * HBQ entry else it will return NULL.
  1512. **/
  1513. static struct lpfc_hbq_entry *
  1514. lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
  1515. {
  1516. struct hbq_s *hbqp = &phba->hbqs[hbqno];
  1517. if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
  1518. ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
  1519. hbqp->next_hbqPutIdx = 0;
  1520. if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
  1521. uint32_t raw_index = phba->hbq_get[hbqno];
  1522. uint32_t getidx = le32_to_cpu(raw_index);
  1523. hbqp->local_hbqGetIdx = getidx;
  1524. if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
  1525. lpfc_printf_log(phba, KERN_ERR,
  1526. LOG_SLI | LOG_VPORT,
  1527. "1802 HBQ %d: local_hbqGetIdx "
  1528. "%u is > than hbqp->entry_count %u\n",
  1529. hbqno, hbqp->local_hbqGetIdx,
  1530. hbqp->entry_count);
  1531. phba->link_state = LPFC_HBA_ERROR;
  1532. return NULL;
  1533. }
  1534. if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
  1535. return NULL;
  1536. }
  1537. return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
  1538. hbqp->hbqPutIdx;
  1539. }
  1540. /**
  1541. * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
  1542. * @phba: Pointer to HBA context object.
  1543. *
  1544. * This function is called with no lock held to free all the
  1545. * hbq buffers while uninitializing the SLI interface. It also
  1546. * frees the HBQ buffers returned by the firmware but not yet
  1547. * processed by the upper layers.
  1548. **/
  1549. void
  1550. lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
  1551. {
  1552. struct lpfc_dmabuf *dmabuf, *next_dmabuf;
  1553. struct hbq_dmabuf *hbq_buf;
  1554. unsigned long flags;
  1555. int i, hbq_count;
  1556. uint32_t hbqno;
  1557. hbq_count = lpfc_sli_hbq_count();
  1558. /* Return all memory used by all HBQs */
  1559. spin_lock_irqsave(&phba->hbalock, flags);
  1560. for (i = 0; i < hbq_count; ++i) {
  1561. list_for_each_entry_safe(dmabuf, next_dmabuf,
  1562. &phba->hbqs[i].hbq_buffer_list, list) {
  1563. hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
  1564. list_del(&hbq_buf->dbuf.list);
  1565. (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
  1566. }
  1567. phba->hbqs[i].buffer_count = 0;
  1568. }
  1569. /* Return all HBQ buffer that are in-fly */
  1570. list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
  1571. list) {
  1572. hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
  1573. list_del(&hbq_buf->dbuf.list);
  1574. if (hbq_buf->tag == -1) {
  1575. (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
  1576. (phba, hbq_buf);
  1577. } else {
  1578. hbqno = hbq_buf->tag >> 16;
  1579. if (hbqno >= LPFC_MAX_HBQS)
  1580. (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
  1581. (phba, hbq_buf);
  1582. else
  1583. (phba->hbqs[hbqno].hbq_free_buffer)(phba,
  1584. hbq_buf);
  1585. }
  1586. }
  1587. /* Mark the HBQs not in use */
  1588. phba->hbq_in_use = 0;
  1589. spin_unlock_irqrestore(&phba->hbalock, flags);
  1590. }
  1591. /**
  1592. * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
  1593. * @phba: Pointer to HBA context object.
  1594. * @hbqno: HBQ number.
  1595. * @hbq_buf: Pointer to HBQ buffer.
  1596. *
  1597. * This function is called with the hbalock held to post a
  1598. * hbq buffer to the firmware. If the function finds an empty
  1599. * slot in the HBQ, it will post the buffer. The function will return
  1600. * pointer to the hbq entry if it successfully post the buffer
  1601. * else it will return NULL.
  1602. **/
  1603. static int
  1604. lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
  1605. struct hbq_dmabuf *hbq_buf)
  1606. {
  1607. return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
  1608. }
  1609. /**
  1610. * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
  1611. * @phba: Pointer to HBA context object.
  1612. * @hbqno: HBQ number.
  1613. * @hbq_buf: Pointer to HBQ buffer.
  1614. *
  1615. * This function is called with the hbalock held to post a hbq buffer to the
  1616. * firmware. If the function finds an empty slot in the HBQ, it will post the
  1617. * buffer and place it on the hbq_buffer_list. The function will return zero if
  1618. * it successfully post the buffer else it will return an error.
  1619. **/
  1620. static int
  1621. lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
  1622. struct hbq_dmabuf *hbq_buf)
  1623. {
  1624. struct lpfc_hbq_entry *hbqe;
  1625. dma_addr_t physaddr = hbq_buf->dbuf.phys;
  1626. /* Get next HBQ entry slot to use */
  1627. hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
  1628. if (hbqe) {
  1629. struct hbq_s *hbqp = &phba->hbqs[hbqno];
  1630. hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
  1631. hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
  1632. hbqe->bde.tus.f.bdeSize = hbq_buf->size;
  1633. hbqe->bde.tus.f.bdeFlags = 0;
  1634. hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
  1635. hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
  1636. /* Sync SLIM */
  1637. hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
  1638. writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
  1639. /* flush */
  1640. readl(phba->hbq_put + hbqno);
  1641. list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
  1642. return 0;
  1643. } else
  1644. return -ENOMEM;
  1645. }
  1646. /**
  1647. * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
  1648. * @phba: Pointer to HBA context object.
  1649. * @hbqno: HBQ number.
  1650. * @hbq_buf: Pointer to HBQ buffer.
  1651. *
  1652. * This function is called with the hbalock held to post an RQE to the SLI4
  1653. * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
  1654. * the hbq_buffer_list and return zero, otherwise it will return an error.
  1655. **/
  1656. static int
  1657. lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
  1658. struct hbq_dmabuf *hbq_buf)
  1659. {
  1660. int rc;
  1661. struct lpfc_rqe hrqe;
  1662. struct lpfc_rqe drqe;
  1663. hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
  1664. hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
  1665. drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
  1666. drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
  1667. rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
  1668. &hrqe, &drqe);
  1669. if (rc < 0)
  1670. return rc;
  1671. hbq_buf->tag = rc;
  1672. list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
  1673. return 0;
  1674. }
  1675. /* HBQ for ELS and CT traffic. */
  1676. static struct lpfc_hbq_init lpfc_els_hbq = {
  1677. .rn = 1,
  1678. .entry_count = 256,
  1679. .mask_count = 0,
  1680. .profile = 0,
  1681. .ring_mask = (1 << LPFC_ELS_RING),
  1682. .buffer_count = 0,
  1683. .init_count = 40,
  1684. .add_count = 40,
  1685. };
  1686. /* HBQ for the extra ring if needed */
  1687. static struct lpfc_hbq_init lpfc_extra_hbq = {
  1688. .rn = 1,
  1689. .entry_count = 200,
  1690. .mask_count = 0,
  1691. .profile = 0,
  1692. .ring_mask = (1 << LPFC_EXTRA_RING),
  1693. .buffer_count = 0,
  1694. .init_count = 0,
  1695. .add_count = 5,
  1696. };
  1697. /* Array of HBQs */
  1698. struct lpfc_hbq_init *lpfc_hbq_defs[] = {
  1699. &lpfc_els_hbq,
  1700. &lpfc_extra_hbq,
  1701. };
  1702. /**
  1703. * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
  1704. * @phba: Pointer to HBA context object.
  1705. * @hbqno: HBQ number.
  1706. * @count: Number of HBQ buffers to be posted.
  1707. *
  1708. * This function is called with no lock held to post more hbq buffers to the
  1709. * given HBQ. The function returns the number of HBQ buffers successfully
  1710. * posted.
  1711. **/
  1712. static int
  1713. lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
  1714. {
  1715. uint32_t i, posted = 0;
  1716. unsigned long flags;
  1717. struct hbq_dmabuf *hbq_buffer;
  1718. LIST_HEAD(hbq_buf_list);
  1719. if (!phba->hbqs[hbqno].hbq_alloc_buffer)
  1720. return 0;
  1721. if ((phba->hbqs[hbqno].buffer_count + count) >
  1722. lpfc_hbq_defs[hbqno]->entry_count)
  1723. count = lpfc_hbq_defs[hbqno]->entry_count -
  1724. phba->hbqs[hbqno].buffer_count;
  1725. if (!count)
  1726. return 0;
  1727. /* Allocate HBQ entries */
  1728. for (i = 0; i < count; i++) {
  1729. hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
  1730. if (!hbq_buffer)
  1731. break;
  1732. list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
  1733. }
  1734. /* Check whether HBQ is still in use */
  1735. spin_lock_irqsave(&phba->hbalock, flags);
  1736. if (!phba->hbq_in_use)
  1737. goto err;
  1738. while (!list_empty(&hbq_buf_list)) {
  1739. list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
  1740. dbuf.list);
  1741. hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
  1742. (hbqno << 16));
  1743. if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
  1744. phba->hbqs[hbqno].buffer_count++;
  1745. posted++;
  1746. } else
  1747. (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
  1748. }
  1749. spin_unlock_irqrestore(&phba->hbalock, flags);
  1750. return posted;
  1751. err:
  1752. spin_unlock_irqrestore(&phba->hbalock, flags);
  1753. while (!list_empty(&hbq_buf_list)) {
  1754. list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
  1755. dbuf.list);
  1756. (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
  1757. }
  1758. return 0;
  1759. }
  1760. /**
  1761. * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
  1762. * @phba: Pointer to HBA context object.
  1763. * @qno: HBQ number.
  1764. *
  1765. * This function posts more buffers to the HBQ. This function
  1766. * is called with no lock held. The function returns the number of HBQ entries
  1767. * successfully allocated.
  1768. **/
  1769. int
  1770. lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
  1771. {
  1772. if (phba->sli_rev == LPFC_SLI_REV4)
  1773. return 0;
  1774. else
  1775. return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
  1776. lpfc_hbq_defs[qno]->add_count);
  1777. }
  1778. /**
  1779. * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
  1780. * @phba: Pointer to HBA context object.
  1781. * @qno: HBQ queue number.
  1782. *
  1783. * This function is called from SLI initialization code path with
  1784. * no lock held to post initial HBQ buffers to firmware. The
  1785. * function returns the number of HBQ entries successfully allocated.
  1786. **/
  1787. static int
  1788. lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
  1789. {
  1790. if (phba->sli_rev == LPFC_SLI_REV4)
  1791. return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
  1792. lpfc_hbq_defs[qno]->entry_count);
  1793. else
  1794. return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
  1795. lpfc_hbq_defs[qno]->init_count);
  1796. }
  1797. /**
  1798. * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
  1799. * @phba: Pointer to HBA context object.
  1800. * @hbqno: HBQ number.
  1801. *
  1802. * This function removes the first hbq buffer on an hbq list and returns a
  1803. * pointer to that buffer. If it finds no buffers on the list it returns NULL.
  1804. **/
  1805. static struct hbq_dmabuf *
  1806. lpfc_sli_hbqbuf_get(struct list_head *rb_list)
  1807. {
  1808. struct lpfc_dmabuf *d_buf;
  1809. list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
  1810. if (!d_buf)
  1811. return NULL;
  1812. return container_of(d_buf, struct hbq_dmabuf, dbuf);
  1813. }
  1814. /**
  1815. * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
  1816. * @phba: Pointer to HBA context object.
  1817. * @tag: Tag of the hbq buffer.
  1818. *
  1819. * This function is called with hbalock held. This function searches
  1820. * for the hbq buffer associated with the given tag in the hbq buffer
  1821. * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
  1822. * it returns NULL.
  1823. **/
  1824. static struct hbq_dmabuf *
  1825. lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
  1826. {
  1827. struct lpfc_dmabuf *d_buf;
  1828. struct hbq_dmabuf *hbq_buf;
  1829. uint32_t hbqno;
  1830. hbqno = tag >> 16;
  1831. if (hbqno >= LPFC_MAX_HBQS)
  1832. return NULL;
  1833. spin_lock_irq(&phba->hbalock);
  1834. list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
  1835. hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  1836. if (hbq_buf->tag == tag) {
  1837. spin_unlock_irq(&phba->hbalock);
  1838. return hbq_buf;
  1839. }
  1840. }
  1841. spin_unlock_irq(&phba->hbalock);
  1842. lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
  1843. "1803 Bad hbq tag. Data: x%x x%x\n",
  1844. tag, phba->hbqs[tag >> 16].buffer_count);
  1845. return NULL;
  1846. }
  1847. /**
  1848. * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
  1849. * @phba: Pointer to HBA context object.
  1850. * @hbq_buffer: Pointer to HBQ buffer.
  1851. *
  1852. * This function is called with hbalock. This function gives back
  1853. * the hbq buffer to firmware. If the HBQ does not have space to
  1854. * post the buffer, it will free the buffer.
  1855. **/
  1856. void
  1857. lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
  1858. {
  1859. uint32_t hbqno;
  1860. if (hbq_buffer) {
  1861. hbqno = hbq_buffer->tag >> 16;
  1862. if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
  1863. (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
  1864. }
  1865. }
  1866. /**
  1867. * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
  1868. * @mbxCommand: mailbox command code.
  1869. *
  1870. * This function is called by the mailbox event handler function to verify
  1871. * that the completed mailbox command is a legitimate mailbox command. If the
  1872. * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
  1873. * and the mailbox event handler will take the HBA offline.
  1874. **/
  1875. static int
  1876. lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
  1877. {
  1878. uint8_t ret;
  1879. switch (mbxCommand) {
  1880. case MBX_LOAD_SM:
  1881. case MBX_READ_NV:
  1882. case MBX_WRITE_NV:
  1883. case MBX_WRITE_VPARMS:
  1884. case MBX_RUN_BIU_DIAG:
  1885. case MBX_INIT_LINK:
  1886. case MBX_DOWN_LINK:
  1887. case MBX_CONFIG_LINK:
  1888. case MBX_CONFIG_RING:
  1889. case MBX_RESET_RING:
  1890. case MBX_READ_CONFIG:
  1891. case MBX_READ_RCONFIG:
  1892. case MBX_READ_SPARM:
  1893. case MBX_READ_STATUS:
  1894. case MBX_READ_RPI:
  1895. case MBX_READ_XRI:
  1896. case MBX_READ_REV:
  1897. case MBX_READ_LNK_STAT:
  1898. case MBX_REG_LOGIN:
  1899. case MBX_UNREG_LOGIN:
  1900. case MBX_CLEAR_LA:
  1901. case MBX_DUMP_MEMORY:
  1902. case MBX_DUMP_CONTEXT:
  1903. case MBX_RUN_DIAGS:
  1904. case MBX_RESTART:
  1905. case MBX_UPDATE_CFG:
  1906. case MBX_DOWN_LOAD:
  1907. case MBX_DEL_LD_ENTRY:
  1908. case MBX_RUN_PROGRAM:
  1909. case MBX_SET_MASK:
  1910. case MBX_SET_VARIABLE:
  1911. case MBX_UNREG_D_ID:
  1912. case MBX_KILL_BOARD:
  1913. case MBX_CONFIG_FARP:
  1914. case MBX_BEACON:
  1915. case MBX_LOAD_AREA:
  1916. case MBX_RUN_BIU_DIAG64:
  1917. case MBX_CONFIG_PORT:
  1918. case MBX_READ_SPARM64:
  1919. case MBX_READ_RPI64:
  1920. case MBX_REG_LOGIN64:
  1921. case MBX_READ_TOPOLOGY:
  1922. case MBX_WRITE_WWN:
  1923. case MBX_SET_DEBUG:
  1924. case MBX_LOAD_EXP_ROM:
  1925. case MBX_ASYNCEVT_ENABLE:
  1926. case MBX_REG_VPI:
  1927. case MBX_UNREG_VPI:
  1928. case MBX_HEARTBEAT:
  1929. case MBX_PORT_CAPABILITIES:
  1930. case MBX_PORT_IOV_CONTROL:
  1931. case MBX_SLI4_CONFIG:
  1932. case MBX_SLI4_REQ_FTRS:
  1933. case MBX_REG_FCFI:
  1934. case MBX_UNREG_FCFI:
  1935. case MBX_REG_VFI:
  1936. case MBX_UNREG_VFI:
  1937. case MBX_INIT_VPI:
  1938. case MBX_INIT_VFI:
  1939. case MBX_RESUME_RPI:
  1940. case MBX_READ_EVENT_LOG_STATUS:
  1941. case MBX_READ_EVENT_LOG:
  1942. case MBX_SECURITY_MGMT:
  1943. case MBX_AUTH_PORT:
  1944. case MBX_ACCESS_VDATA:
  1945. ret = mbxCommand;
  1946. break;
  1947. default:
  1948. ret = MBX_SHUTDOWN;
  1949. break;
  1950. }
  1951. return ret;
  1952. }
  1953. /**
  1954. * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
  1955. * @phba: Pointer to HBA context object.
  1956. * @pmboxq: Pointer to mailbox command.
  1957. *
  1958. * This is completion handler function for mailbox commands issued from
  1959. * lpfc_sli_issue_mbox_wait function. This function is called by the
  1960. * mailbox event handler function with no lock held. This function
  1961. * will wake up thread waiting on the wait queue pointed by context1
  1962. * of the mailbox.
  1963. **/
  1964. void
  1965. lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
  1966. {
  1967. wait_queue_head_t *pdone_q;
  1968. unsigned long drvr_flag;
  1969. /*
  1970. * If pdone_q is empty, the driver thread gave up waiting and
  1971. * continued running.
  1972. */
  1973. pmboxq->mbox_flag |= LPFC_MBX_WAKE;
  1974. spin_lock_irqsave(&phba->hbalock, drvr_flag);
  1975. pdone_q = (wait_queue_head_t *) pmboxq->context1;
  1976. if (pdone_q)
  1977. wake_up_interruptible(pdone_q);
  1978. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  1979. return;
  1980. }
  1981. /**
  1982. * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
  1983. * @phba: Pointer to HBA context object.
  1984. * @pmb: Pointer to mailbox object.
  1985. *
  1986. * This function is the default mailbox completion handler. It
  1987. * frees the memory resources associated with the completed mailbox
  1988. * command. If the completed command is a REG_LOGIN mailbox command,
  1989. * this function will issue a UREG_LOGIN to re-claim the RPI.
  1990. **/
  1991. void
  1992. lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
  1993. {
  1994. struct lpfc_vport *vport = pmb->vport;
  1995. struct lpfc_dmabuf *mp;
  1996. struct lpfc_nodelist *ndlp;
  1997. struct Scsi_Host *shost;
  1998. uint16_t rpi, vpi;
  1999. int rc;
  2000. mp = (struct lpfc_dmabuf *) (pmb->context1);
  2001. if (mp) {
  2002. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  2003. kfree(mp);
  2004. }
  2005. /*
  2006. * If a REG_LOGIN succeeded after node is destroyed or node
  2007. * is in re-discovery driver need to cleanup the RPI.
  2008. */
  2009. if (!(phba->pport->load_flag & FC_UNLOADING) &&
  2010. pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
  2011. !pmb->u.mb.mbxStatus) {
  2012. rpi = pmb->u.mb.un.varWords[0];
  2013. vpi = pmb->u.mb.un.varRegLogin.vpi;
  2014. lpfc_unreg_login(phba, vpi, rpi, pmb);
  2015. pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  2016. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
  2017. if (rc != MBX_NOT_FINISHED)
  2018. return;
  2019. }
  2020. if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
  2021. !(phba->pport->load_flag & FC_UNLOADING) &&
  2022. !pmb->u.mb.mbxStatus) {
  2023. shost = lpfc_shost_from_vport(vport);
  2024. spin_lock_irq(shost->host_lock);
  2025. vport->vpi_state |= LPFC_VPI_REGISTERED;
  2026. vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
  2027. spin_unlock_irq(shost->host_lock);
  2028. }
  2029. if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
  2030. ndlp = (struct lpfc_nodelist *)pmb->context2;
  2031. lpfc_nlp_put(ndlp);
  2032. pmb->context2 = NULL;
  2033. }
  2034. /* Check security permission status on INIT_LINK mailbox command */
  2035. if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
  2036. (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
  2037. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  2038. "2860 SLI authentication is required "
  2039. "for INIT_LINK but has not done yet\n");
  2040. if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
  2041. lpfc_sli4_mbox_cmd_free(phba, pmb);
  2042. else
  2043. mempool_free(pmb, phba->mbox_mem_pool);
  2044. }
  2045. /**
  2046. * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
  2047. * @phba: Pointer to HBA context object.
  2048. *
  2049. * This function is called with no lock held. This function processes all
  2050. * the completed mailbox commands and gives it to upper layers. The interrupt
  2051. * service routine processes mailbox completion interrupt and adds completed
  2052. * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
  2053. * Worker thread call lpfc_sli_handle_mb_event, which will return the
  2054. * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
  2055. * function returns the mailbox commands to the upper layer by calling the
  2056. * completion handler function of each mailbox.
  2057. **/
  2058. int
  2059. lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
  2060. {
  2061. MAILBOX_t *pmbox;
  2062. LPFC_MBOXQ_t *pmb;
  2063. int rc;
  2064. LIST_HEAD(cmplq);
  2065. phba->sli.slistat.mbox_event++;
  2066. /* Get all completed mailboxe buffers into the cmplq */
  2067. spin_lock_irq(&phba->hbalock);
  2068. list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
  2069. spin_unlock_irq(&phba->hbalock);
  2070. /* Get a Mailbox buffer to setup mailbox commands for callback */
  2071. do {
  2072. list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
  2073. if (pmb == NULL)
  2074. break;
  2075. pmbox = &pmb->u.mb;
  2076. if (pmbox->mbxCommand != MBX_HEARTBEAT) {
  2077. if (pmb->vport) {
  2078. lpfc_debugfs_disc_trc(pmb->vport,
  2079. LPFC_DISC_TRC_MBOX_VPORT,
  2080. "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
  2081. (uint32_t)pmbox->mbxCommand,
  2082. pmbox->un.varWords[0],
  2083. pmbox->un.varWords[1]);
  2084. }
  2085. else {
  2086. lpfc_debugfs_disc_trc(phba->pport,
  2087. LPFC_DISC_TRC_MBOX,
  2088. "MBOX cmpl: cmd:x%x mb:x%x x%x",
  2089. (uint32_t)pmbox->mbxCommand,
  2090. pmbox->un.varWords[0],
  2091. pmbox->un.varWords[1]);
  2092. }
  2093. }
  2094. /*
  2095. * It is a fatal error if unknown mbox command completion.
  2096. */
  2097. if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
  2098. MBX_SHUTDOWN) {
  2099. /* Unknown mailbox command compl */
  2100. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  2101. "(%d):0323 Unknown Mailbox command "
  2102. "x%x (x%x/x%x) Cmpl\n",
  2103. pmb->vport ? pmb->vport->vpi : 0,
  2104. pmbox->mbxCommand,
  2105. lpfc_sli_config_mbox_subsys_get(phba,
  2106. pmb),
  2107. lpfc_sli_config_mbox_opcode_get(phba,
  2108. pmb));
  2109. phba->link_state = LPFC_HBA_ERROR;
  2110. phba->work_hs = HS_FFER3;
  2111. lpfc_handle_eratt(phba);
  2112. continue;
  2113. }
  2114. if (pmbox->mbxStatus) {
  2115. phba->sli.slistat.mbox_stat_err++;
  2116. if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
  2117. /* Mbox cmd cmpl error - RETRYing */
  2118. lpfc_printf_log(phba, KERN_INFO,
  2119. LOG_MBOX | LOG_SLI,
  2120. "(%d):0305 Mbox cmd cmpl "
  2121. "error - RETRYing Data: x%x "
  2122. "(x%x/x%x) x%x x%x x%x\n",
  2123. pmb->vport ? pmb->vport->vpi : 0,
  2124. pmbox->mbxCommand,
  2125. lpfc_sli_config_mbox_subsys_get(phba,
  2126. pmb),
  2127. lpfc_sli_config_mbox_opcode_get(phba,
  2128. pmb),
  2129. pmbox->mbxStatus,
  2130. pmbox->un.varWords[0],
  2131. pmb->vport->port_state);
  2132. pmbox->mbxStatus = 0;
  2133. pmbox->mbxOwner = OWN_HOST;
  2134. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
  2135. if (rc != MBX_NOT_FINISHED)
  2136. continue;
  2137. }
  2138. }
  2139. /* Mailbox cmd <cmd> Cmpl <cmpl> */
  2140. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  2141. "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl x%p "
  2142. "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x\n",
  2143. pmb->vport ? pmb->vport->vpi : 0,
  2144. pmbox->mbxCommand,
  2145. lpfc_sli_config_mbox_subsys_get(phba, pmb),
  2146. lpfc_sli_config_mbox_opcode_get(phba, pmb),
  2147. pmb->mbox_cmpl,
  2148. *((uint32_t *) pmbox),
  2149. pmbox->un.varWords[0],
  2150. pmbox->un.varWords[1],
  2151. pmbox->un.varWords[2],
  2152. pmbox->un.varWords[3],
  2153. pmbox->un.varWords[4],
  2154. pmbox->un.varWords[5],
  2155. pmbox->un.varWords[6],
  2156. pmbox->un.varWords[7]);
  2157. if (pmb->mbox_cmpl)
  2158. pmb->mbox_cmpl(phba,pmb);
  2159. } while (1);
  2160. return 0;
  2161. }
  2162. /**
  2163. * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
  2164. * @phba: Pointer to HBA context object.
  2165. * @pring: Pointer to driver SLI ring object.
  2166. * @tag: buffer tag.
  2167. *
  2168. * This function is called with no lock held. When QUE_BUFTAG_BIT bit
  2169. * is set in the tag the buffer is posted for a particular exchange,
  2170. * the function will return the buffer without replacing the buffer.
  2171. * If the buffer is for unsolicited ELS or CT traffic, this function
  2172. * returns the buffer and also posts another buffer to the firmware.
  2173. **/
  2174. static struct lpfc_dmabuf *
  2175. lpfc_sli_get_buff(struct lpfc_hba *phba,
  2176. struct lpfc_sli_ring *pring,
  2177. uint32_t tag)
  2178. {
  2179. struct hbq_dmabuf *hbq_entry;
  2180. if (tag & QUE_BUFTAG_BIT)
  2181. return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
  2182. hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
  2183. if (!hbq_entry)
  2184. return NULL;
  2185. return &hbq_entry->dbuf;
  2186. }
  2187. /**
  2188. * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
  2189. * @phba: Pointer to HBA context object.
  2190. * @pring: Pointer to driver SLI ring object.
  2191. * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
  2192. * @fch_r_ctl: the r_ctl for the first frame of the sequence.
  2193. * @fch_type: the type for the first frame of the sequence.
  2194. *
  2195. * This function is called with no lock held. This function uses the r_ctl and
  2196. * type of the received sequence to find the correct callback function to call
  2197. * to process the sequence.
  2198. **/
  2199. static int
  2200. lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  2201. struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
  2202. uint32_t fch_type)
  2203. {
  2204. int i;
  2205. /* unSolicited Responses */
  2206. if (pring->prt[0].profile) {
  2207. if (pring->prt[0].lpfc_sli_rcv_unsol_event)
  2208. (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
  2209. saveq);
  2210. return 1;
  2211. }
  2212. /* We must search, based on rctl / type
  2213. for the right routine */
  2214. for (i = 0; i < pring->num_mask; i++) {
  2215. if ((pring->prt[i].rctl == fch_r_ctl) &&
  2216. (pring->prt[i].type == fch_type)) {
  2217. if (pring->prt[i].lpfc_sli_rcv_unsol_event)
  2218. (pring->prt[i].lpfc_sli_rcv_unsol_event)
  2219. (phba, pring, saveq);
  2220. return 1;
  2221. }
  2222. }
  2223. return 0;
  2224. }
  2225. /**
  2226. * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
  2227. * @phba: Pointer to HBA context object.
  2228. * @pring: Pointer to driver SLI ring object.
  2229. * @saveq: Pointer to the unsolicited iocb.
  2230. *
  2231. * This function is called with no lock held by the ring event handler
  2232. * when there is an unsolicited iocb posted to the response ring by the
  2233. * firmware. This function gets the buffer associated with the iocbs
  2234. * and calls the event handler for the ring. This function handles both
  2235. * qring buffers and hbq buffers.
  2236. * When the function returns 1 the caller can free the iocb object otherwise
  2237. * upper layer functions will free the iocb objects.
  2238. **/
  2239. static int
  2240. lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  2241. struct lpfc_iocbq *saveq)
  2242. {
  2243. IOCB_t * irsp;
  2244. WORD5 * w5p;
  2245. uint32_t Rctl, Type;
  2246. uint32_t match;
  2247. struct lpfc_iocbq *iocbq;
  2248. struct lpfc_dmabuf *dmzbuf;
  2249. match = 0;
  2250. irsp = &(saveq->iocb);
  2251. if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
  2252. if (pring->lpfc_sli_rcv_async_status)
  2253. pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
  2254. else
  2255. lpfc_printf_log(phba,
  2256. KERN_WARNING,
  2257. LOG_SLI,
  2258. "0316 Ring %d handler: unexpected "
  2259. "ASYNC_STATUS iocb received evt_code "
  2260. "0x%x\n",
  2261. pring->ringno,
  2262. irsp->un.asyncstat.evt_code);
  2263. return 1;
  2264. }
  2265. if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
  2266. (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
  2267. if (irsp->ulpBdeCount > 0) {
  2268. dmzbuf = lpfc_sli_get_buff(phba, pring,
  2269. irsp->un.ulpWord[3]);
  2270. lpfc_in_buf_free(phba, dmzbuf);
  2271. }
  2272. if (irsp->ulpBdeCount > 1) {
  2273. dmzbuf = lpfc_sli_get_buff(phba, pring,
  2274. irsp->unsli3.sli3Words[3]);
  2275. lpfc_in_buf_free(phba, dmzbuf);
  2276. }
  2277. if (irsp->ulpBdeCount > 2) {
  2278. dmzbuf = lpfc_sli_get_buff(phba, pring,
  2279. irsp->unsli3.sli3Words[7]);
  2280. lpfc_in_buf_free(phba, dmzbuf);
  2281. }
  2282. return 1;
  2283. }
  2284. if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
  2285. if (irsp->ulpBdeCount != 0) {
  2286. saveq->context2 = lpfc_sli_get_buff(phba, pring,
  2287. irsp->un.ulpWord[3]);
  2288. if (!saveq->context2)
  2289. lpfc_printf_log(phba,
  2290. KERN_ERR,
  2291. LOG_SLI,
  2292. "0341 Ring %d Cannot find buffer for "
  2293. "an unsolicited iocb. tag 0x%x\n",
  2294. pring->ringno,
  2295. irsp->un.ulpWord[3]);
  2296. }
  2297. if (irsp->ulpBdeCount == 2) {
  2298. saveq->context3 = lpfc_sli_get_buff(phba, pring,
  2299. irsp->unsli3.sli3Words[7]);
  2300. if (!saveq->context3)
  2301. lpfc_printf_log(phba,
  2302. KERN_ERR,
  2303. LOG_SLI,
  2304. "0342 Ring %d Cannot find buffer for an"
  2305. " unsolicited iocb. tag 0x%x\n",
  2306. pring->ringno,
  2307. irsp->unsli3.sli3Words[7]);
  2308. }
  2309. list_for_each_entry(iocbq, &saveq->list, list) {
  2310. irsp = &(iocbq->iocb);
  2311. if (irsp->ulpBdeCount != 0) {
  2312. iocbq->context2 = lpfc_sli_get_buff(phba, pring,
  2313. irsp->un.ulpWord[3]);
  2314. if (!iocbq->context2)
  2315. lpfc_printf_log(phba,
  2316. KERN_ERR,
  2317. LOG_SLI,
  2318. "0343 Ring %d Cannot find "
  2319. "buffer for an unsolicited iocb"
  2320. ". tag 0x%x\n", pring->ringno,
  2321. irsp->un.ulpWord[3]);
  2322. }
  2323. if (irsp->ulpBdeCount == 2) {
  2324. iocbq->context3 = lpfc_sli_get_buff(phba, pring,
  2325. irsp->unsli3.sli3Words[7]);
  2326. if (!iocbq->context3)
  2327. lpfc_printf_log(phba,
  2328. KERN_ERR,
  2329. LOG_SLI,
  2330. "0344 Ring %d Cannot find "
  2331. "buffer for an unsolicited "
  2332. "iocb. tag 0x%x\n",
  2333. pring->ringno,
  2334. irsp->unsli3.sli3Words[7]);
  2335. }
  2336. }
  2337. }
  2338. if (irsp->ulpBdeCount != 0 &&
  2339. (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
  2340. irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
  2341. int found = 0;
  2342. /* search continue save q for same XRI */
  2343. list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
  2344. if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
  2345. saveq->iocb.unsli3.rcvsli3.ox_id) {
  2346. list_add_tail(&saveq->list, &iocbq->list);
  2347. found = 1;
  2348. break;
  2349. }
  2350. }
  2351. if (!found)
  2352. list_add_tail(&saveq->clist,
  2353. &pring->iocb_continue_saveq);
  2354. if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
  2355. list_del_init(&iocbq->clist);
  2356. saveq = iocbq;
  2357. irsp = &(saveq->iocb);
  2358. } else
  2359. return 0;
  2360. }
  2361. if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
  2362. (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
  2363. (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
  2364. Rctl = FC_RCTL_ELS_REQ;
  2365. Type = FC_TYPE_ELS;
  2366. } else {
  2367. w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
  2368. Rctl = w5p->hcsw.Rctl;
  2369. Type = w5p->hcsw.Type;
  2370. /* Firmware Workaround */
  2371. if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
  2372. (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
  2373. irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
  2374. Rctl = FC_RCTL_ELS_REQ;
  2375. Type = FC_TYPE_ELS;
  2376. w5p->hcsw.Rctl = Rctl;
  2377. w5p->hcsw.Type = Type;
  2378. }
  2379. }
  2380. if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
  2381. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  2382. "0313 Ring %d handler: unexpected Rctl x%x "
  2383. "Type x%x received\n",
  2384. pring->ringno, Rctl, Type);
  2385. return 1;
  2386. }
  2387. /**
  2388. * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
  2389. * @phba: Pointer to HBA context object.
  2390. * @pring: Pointer to driver SLI ring object.
  2391. * @prspiocb: Pointer to response iocb object.
  2392. *
  2393. * This function looks up the iocb_lookup table to get the command iocb
  2394. * corresponding to the given response iocb using the iotag of the
  2395. * response iocb. This function is called with the hbalock held.
  2396. * This function returns the command iocb object if it finds the command
  2397. * iocb else returns NULL.
  2398. **/
  2399. static struct lpfc_iocbq *
  2400. lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
  2401. struct lpfc_sli_ring *pring,
  2402. struct lpfc_iocbq *prspiocb)
  2403. {
  2404. struct lpfc_iocbq *cmd_iocb = NULL;
  2405. uint16_t iotag;
  2406. iotag = prspiocb->iocb.ulpIoTag;
  2407. if (iotag != 0 && iotag <= phba->sli.last_iotag) {
  2408. cmd_iocb = phba->sli.iocbq_lookup[iotag];
  2409. list_del_init(&cmd_iocb->list);
  2410. if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
  2411. cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
  2412. }
  2413. return cmd_iocb;
  2414. }
  2415. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2416. "0317 iotag x%x is out off "
  2417. "range: max iotag x%x wd0 x%x\n",
  2418. iotag, phba->sli.last_iotag,
  2419. *(((uint32_t *) &prspiocb->iocb) + 7));
  2420. return NULL;
  2421. }
  2422. /**
  2423. * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
  2424. * @phba: Pointer to HBA context object.
  2425. * @pring: Pointer to driver SLI ring object.
  2426. * @iotag: IOCB tag.
  2427. *
  2428. * This function looks up the iocb_lookup table to get the command iocb
  2429. * corresponding to the given iotag. This function is called with the
  2430. * hbalock held.
  2431. * This function returns the command iocb object if it finds the command
  2432. * iocb else returns NULL.
  2433. **/
  2434. static struct lpfc_iocbq *
  2435. lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
  2436. struct lpfc_sli_ring *pring, uint16_t iotag)
  2437. {
  2438. struct lpfc_iocbq *cmd_iocb;
  2439. if (iotag != 0 && iotag <= phba->sli.last_iotag) {
  2440. cmd_iocb = phba->sli.iocbq_lookup[iotag];
  2441. if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
  2442. /* remove from txcmpl queue list */
  2443. list_del_init(&cmd_iocb->list);
  2444. cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
  2445. return cmd_iocb;
  2446. }
  2447. }
  2448. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2449. "0372 iotag x%x is out off range: max iotag (x%x)\n",
  2450. iotag, phba->sli.last_iotag);
  2451. return NULL;
  2452. }
  2453. /**
  2454. * lpfc_sli_process_sol_iocb - process solicited iocb completion
  2455. * @phba: Pointer to HBA context object.
  2456. * @pring: Pointer to driver SLI ring object.
  2457. * @saveq: Pointer to the response iocb to be processed.
  2458. *
  2459. * This function is called by the ring event handler for non-fcp
  2460. * rings when there is a new response iocb in the response ring.
  2461. * The caller is not required to hold any locks. This function
  2462. * gets the command iocb associated with the response iocb and
  2463. * calls the completion handler for the command iocb. If there
  2464. * is no completion handler, the function will free the resources
  2465. * associated with command iocb. If the response iocb is for
  2466. * an already aborted command iocb, the status of the completion
  2467. * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
  2468. * This function always returns 1.
  2469. **/
  2470. static int
  2471. lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  2472. struct lpfc_iocbq *saveq)
  2473. {
  2474. struct lpfc_iocbq *cmdiocbp;
  2475. int rc = 1;
  2476. unsigned long iflag;
  2477. /* Based on the iotag field, get the cmd IOCB from the txcmplq */
  2478. spin_lock_irqsave(&phba->hbalock, iflag);
  2479. cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
  2480. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2481. if (cmdiocbp) {
  2482. if (cmdiocbp->iocb_cmpl) {
  2483. /*
  2484. * If an ELS command failed send an event to mgmt
  2485. * application.
  2486. */
  2487. if (saveq->iocb.ulpStatus &&
  2488. (pring->ringno == LPFC_ELS_RING) &&
  2489. (cmdiocbp->iocb.ulpCommand ==
  2490. CMD_ELS_REQUEST64_CR))
  2491. lpfc_send_els_failure_event(phba,
  2492. cmdiocbp, saveq);
  2493. /*
  2494. * Post all ELS completions to the worker thread.
  2495. * All other are passed to the completion callback.
  2496. */
  2497. if (pring->ringno == LPFC_ELS_RING) {
  2498. if ((phba->sli_rev < LPFC_SLI_REV4) &&
  2499. (cmdiocbp->iocb_flag &
  2500. LPFC_DRIVER_ABORTED)) {
  2501. spin_lock_irqsave(&phba->hbalock,
  2502. iflag);
  2503. cmdiocbp->iocb_flag &=
  2504. ~LPFC_DRIVER_ABORTED;
  2505. spin_unlock_irqrestore(&phba->hbalock,
  2506. iflag);
  2507. saveq->iocb.ulpStatus =
  2508. IOSTAT_LOCAL_REJECT;
  2509. saveq->iocb.un.ulpWord[4] =
  2510. IOERR_SLI_ABORTED;
  2511. /* Firmware could still be in progress
  2512. * of DMAing payload, so don't free data
  2513. * buffer till after a hbeat.
  2514. */
  2515. spin_lock_irqsave(&phba->hbalock,
  2516. iflag);
  2517. saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
  2518. spin_unlock_irqrestore(&phba->hbalock,
  2519. iflag);
  2520. }
  2521. if (phba->sli_rev == LPFC_SLI_REV4) {
  2522. if (saveq->iocb_flag &
  2523. LPFC_EXCHANGE_BUSY) {
  2524. /* Set cmdiocb flag for the
  2525. * exchange busy so sgl (xri)
  2526. * will not be released until
  2527. * the abort xri is received
  2528. * from hba.
  2529. */
  2530. spin_lock_irqsave(
  2531. &phba->hbalock, iflag);
  2532. cmdiocbp->iocb_flag |=
  2533. LPFC_EXCHANGE_BUSY;
  2534. spin_unlock_irqrestore(
  2535. &phba->hbalock, iflag);
  2536. }
  2537. if (cmdiocbp->iocb_flag &
  2538. LPFC_DRIVER_ABORTED) {
  2539. /*
  2540. * Clear LPFC_DRIVER_ABORTED
  2541. * bit in case it was driver
  2542. * initiated abort.
  2543. */
  2544. spin_lock_irqsave(
  2545. &phba->hbalock, iflag);
  2546. cmdiocbp->iocb_flag &=
  2547. ~LPFC_DRIVER_ABORTED;
  2548. spin_unlock_irqrestore(
  2549. &phba->hbalock, iflag);
  2550. cmdiocbp->iocb.ulpStatus =
  2551. IOSTAT_LOCAL_REJECT;
  2552. cmdiocbp->iocb.un.ulpWord[4] =
  2553. IOERR_ABORT_REQUESTED;
  2554. /*
  2555. * For SLI4, irsiocb contains
  2556. * NO_XRI in sli_xritag, it
  2557. * shall not affect releasing
  2558. * sgl (xri) process.
  2559. */
  2560. saveq->iocb.ulpStatus =
  2561. IOSTAT_LOCAL_REJECT;
  2562. saveq->iocb.un.ulpWord[4] =
  2563. IOERR_SLI_ABORTED;
  2564. spin_lock_irqsave(
  2565. &phba->hbalock, iflag);
  2566. saveq->iocb_flag |=
  2567. LPFC_DELAY_MEM_FREE;
  2568. spin_unlock_irqrestore(
  2569. &phba->hbalock, iflag);
  2570. }
  2571. }
  2572. }
  2573. (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
  2574. } else
  2575. lpfc_sli_release_iocbq(phba, cmdiocbp);
  2576. } else {
  2577. /*
  2578. * Unknown initiating command based on the response iotag.
  2579. * This could be the case on the ELS ring because of
  2580. * lpfc_els_abort().
  2581. */
  2582. if (pring->ringno != LPFC_ELS_RING) {
  2583. /*
  2584. * Ring <ringno> handler: unexpected completion IoTag
  2585. * <IoTag>
  2586. */
  2587. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  2588. "0322 Ring %d handler: "
  2589. "unexpected completion IoTag x%x "
  2590. "Data: x%x x%x x%x x%x\n",
  2591. pring->ringno,
  2592. saveq->iocb.ulpIoTag,
  2593. saveq->iocb.ulpStatus,
  2594. saveq->iocb.un.ulpWord[4],
  2595. saveq->iocb.ulpCommand,
  2596. saveq->iocb.ulpContext);
  2597. }
  2598. }
  2599. return rc;
  2600. }
  2601. /**
  2602. * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
  2603. * @phba: Pointer to HBA context object.
  2604. * @pring: Pointer to driver SLI ring object.
  2605. *
  2606. * This function is called from the iocb ring event handlers when
  2607. * put pointer is ahead of the get pointer for a ring. This function signal
  2608. * an error attention condition to the worker thread and the worker
  2609. * thread will transition the HBA to offline state.
  2610. **/
  2611. static void
  2612. lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  2613. {
  2614. struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
  2615. /*
  2616. * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
  2617. * rsp ring <portRspMax>
  2618. */
  2619. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2620. "0312 Ring %d handler: portRspPut %d "
  2621. "is bigger than rsp ring %d\n",
  2622. pring->ringno, le32_to_cpu(pgp->rspPutInx),
  2623. pring->sli.sli3.numRiocb);
  2624. phba->link_state = LPFC_HBA_ERROR;
  2625. /*
  2626. * All error attention handlers are posted to
  2627. * worker thread
  2628. */
  2629. phba->work_ha |= HA_ERATT;
  2630. phba->work_hs = HS_FFER3;
  2631. lpfc_worker_wake_up(phba);
  2632. return;
  2633. }
  2634. /**
  2635. * lpfc_poll_eratt - Error attention polling timer timeout handler
  2636. * @ptr: Pointer to address of HBA context object.
  2637. *
  2638. * This function is invoked by the Error Attention polling timer when the
  2639. * timer times out. It will check the SLI Error Attention register for
  2640. * possible attention events. If so, it will post an Error Attention event
  2641. * and wake up worker thread to process it. Otherwise, it will set up the
  2642. * Error Attention polling timer for the next poll.
  2643. **/
  2644. void lpfc_poll_eratt(unsigned long ptr)
  2645. {
  2646. struct lpfc_hba *phba;
  2647. uint32_t eratt = 0, rem;
  2648. uint64_t sli_intr, cnt;
  2649. phba = (struct lpfc_hba *)ptr;
  2650. /* Here we will also keep track of interrupts per sec of the hba */
  2651. sli_intr = phba->sli.slistat.sli_intr;
  2652. if (phba->sli.slistat.sli_prev_intr > sli_intr)
  2653. cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
  2654. sli_intr);
  2655. else
  2656. cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
  2657. /* 64-bit integer division not supporte on 32-bit x86 - use do_div */
  2658. rem = do_div(cnt, LPFC_ERATT_POLL_INTERVAL);
  2659. phba->sli.slistat.sli_ips = cnt;
  2660. phba->sli.slistat.sli_prev_intr = sli_intr;
  2661. /* Check chip HA register for error event */
  2662. eratt = lpfc_sli_check_eratt(phba);
  2663. if (eratt)
  2664. /* Tell the worker thread there is work to do */
  2665. lpfc_worker_wake_up(phba);
  2666. else
  2667. /* Restart the timer for next eratt poll */
  2668. mod_timer(&phba->eratt_poll, jiffies +
  2669. HZ * LPFC_ERATT_POLL_INTERVAL);
  2670. return;
  2671. }
  2672. /**
  2673. * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
  2674. * @phba: Pointer to HBA context object.
  2675. * @pring: Pointer to driver SLI ring object.
  2676. * @mask: Host attention register mask for this ring.
  2677. *
  2678. * This function is called from the interrupt context when there is a ring
  2679. * event for the fcp ring. The caller does not hold any lock.
  2680. * The function processes each response iocb in the response ring until it
  2681. * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
  2682. * LE bit set. The function will call the completion handler of the command iocb
  2683. * if the response iocb indicates a completion for a command iocb or it is
  2684. * an abort completion. The function will call lpfc_sli_process_unsol_iocb
  2685. * function if this is an unsolicited iocb.
  2686. * This routine presumes LPFC_FCP_RING handling and doesn't bother
  2687. * to check it explicitly.
  2688. */
  2689. int
  2690. lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
  2691. struct lpfc_sli_ring *pring, uint32_t mask)
  2692. {
  2693. struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
  2694. IOCB_t *irsp = NULL;
  2695. IOCB_t *entry = NULL;
  2696. struct lpfc_iocbq *cmdiocbq = NULL;
  2697. struct lpfc_iocbq rspiocbq;
  2698. uint32_t status;
  2699. uint32_t portRspPut, portRspMax;
  2700. int rc = 1;
  2701. lpfc_iocb_type type;
  2702. unsigned long iflag;
  2703. uint32_t rsp_cmpl = 0;
  2704. spin_lock_irqsave(&phba->hbalock, iflag);
  2705. pring->stats.iocb_event++;
  2706. /*
  2707. * The next available response entry should never exceed the maximum
  2708. * entries. If it does, treat it as an adapter hardware error.
  2709. */
  2710. portRspMax = pring->sli.sli3.numRiocb;
  2711. portRspPut = le32_to_cpu(pgp->rspPutInx);
  2712. if (unlikely(portRspPut >= portRspMax)) {
  2713. lpfc_sli_rsp_pointers_error(phba, pring);
  2714. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2715. return 1;
  2716. }
  2717. if (phba->fcp_ring_in_use) {
  2718. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2719. return 1;
  2720. } else
  2721. phba->fcp_ring_in_use = 1;
  2722. rmb();
  2723. while (pring->sli.sli3.rspidx != portRspPut) {
  2724. /*
  2725. * Fetch an entry off the ring and copy it into a local data
  2726. * structure. The copy involves a byte-swap since the
  2727. * network byte order and pci byte orders are different.
  2728. */
  2729. entry = lpfc_resp_iocb(phba, pring);
  2730. phba->last_completion_time = jiffies;
  2731. if (++pring->sli.sli3.rspidx >= portRspMax)
  2732. pring->sli.sli3.rspidx = 0;
  2733. lpfc_sli_pcimem_bcopy((uint32_t *) entry,
  2734. (uint32_t *) &rspiocbq.iocb,
  2735. phba->iocb_rsp_size);
  2736. INIT_LIST_HEAD(&(rspiocbq.list));
  2737. irsp = &rspiocbq.iocb;
  2738. type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
  2739. pring->stats.iocb_rsp++;
  2740. rsp_cmpl++;
  2741. if (unlikely(irsp->ulpStatus)) {
  2742. /*
  2743. * If resource errors reported from HBA, reduce
  2744. * queuedepths of the SCSI device.
  2745. */
  2746. if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
  2747. ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
  2748. IOERR_NO_RESOURCES)) {
  2749. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2750. phba->lpfc_rampdown_queue_depth(phba);
  2751. spin_lock_irqsave(&phba->hbalock, iflag);
  2752. }
  2753. /* Rsp ring <ringno> error: IOCB */
  2754. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  2755. "0336 Rsp Ring %d error: IOCB Data: "
  2756. "x%x x%x x%x x%x x%x x%x x%x x%x\n",
  2757. pring->ringno,
  2758. irsp->un.ulpWord[0],
  2759. irsp->un.ulpWord[1],
  2760. irsp->un.ulpWord[2],
  2761. irsp->un.ulpWord[3],
  2762. irsp->un.ulpWord[4],
  2763. irsp->un.ulpWord[5],
  2764. *(uint32_t *)&irsp->un1,
  2765. *((uint32_t *)&irsp->un1 + 1));
  2766. }
  2767. switch (type) {
  2768. case LPFC_ABORT_IOCB:
  2769. case LPFC_SOL_IOCB:
  2770. /*
  2771. * Idle exchange closed via ABTS from port. No iocb
  2772. * resources need to be recovered.
  2773. */
  2774. if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
  2775. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  2776. "0333 IOCB cmd 0x%x"
  2777. " processed. Skipping"
  2778. " completion\n",
  2779. irsp->ulpCommand);
  2780. break;
  2781. }
  2782. cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
  2783. &rspiocbq);
  2784. if (unlikely(!cmdiocbq))
  2785. break;
  2786. if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
  2787. cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
  2788. if (cmdiocbq->iocb_cmpl) {
  2789. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2790. (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
  2791. &rspiocbq);
  2792. spin_lock_irqsave(&phba->hbalock, iflag);
  2793. }
  2794. break;
  2795. case LPFC_UNSOL_IOCB:
  2796. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2797. lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
  2798. spin_lock_irqsave(&phba->hbalock, iflag);
  2799. break;
  2800. default:
  2801. if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
  2802. char adaptermsg[LPFC_MAX_ADPTMSG];
  2803. memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
  2804. memcpy(&adaptermsg[0], (uint8_t *) irsp,
  2805. MAX_MSG_DATA);
  2806. dev_warn(&((phba->pcidev)->dev),
  2807. "lpfc%d: %s\n",
  2808. phba->brd_no, adaptermsg);
  2809. } else {
  2810. /* Unknown IOCB command */
  2811. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2812. "0334 Unknown IOCB command "
  2813. "Data: x%x, x%x x%x x%x x%x\n",
  2814. type, irsp->ulpCommand,
  2815. irsp->ulpStatus,
  2816. irsp->ulpIoTag,
  2817. irsp->ulpContext);
  2818. }
  2819. break;
  2820. }
  2821. /*
  2822. * The response IOCB has been processed. Update the ring
  2823. * pointer in SLIM. If the port response put pointer has not
  2824. * been updated, sync the pgp->rspPutInx and fetch the new port
  2825. * response put pointer.
  2826. */
  2827. writel(pring->sli.sli3.rspidx,
  2828. &phba->host_gp[pring->ringno].rspGetInx);
  2829. if (pring->sli.sli3.rspidx == portRspPut)
  2830. portRspPut = le32_to_cpu(pgp->rspPutInx);
  2831. }
  2832. if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
  2833. pring->stats.iocb_rsp_full++;
  2834. status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
  2835. writel(status, phba->CAregaddr);
  2836. readl(phba->CAregaddr);
  2837. }
  2838. if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
  2839. pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
  2840. pring->stats.iocb_cmd_empty++;
  2841. /* Force update of the local copy of cmdGetInx */
  2842. pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
  2843. lpfc_sli_resume_iocb(phba, pring);
  2844. if ((pring->lpfc_sli_cmd_available))
  2845. (pring->lpfc_sli_cmd_available) (phba, pring);
  2846. }
  2847. phba->fcp_ring_in_use = 0;
  2848. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2849. return rc;
  2850. }
  2851. /**
  2852. * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
  2853. * @phba: Pointer to HBA context object.
  2854. * @pring: Pointer to driver SLI ring object.
  2855. * @rspiocbp: Pointer to driver response IOCB object.
  2856. *
  2857. * This function is called from the worker thread when there is a slow-path
  2858. * response IOCB to process. This function chains all the response iocbs until
  2859. * seeing the iocb with the LE bit set. The function will call
  2860. * lpfc_sli_process_sol_iocb function if the response iocb indicates a
  2861. * completion of a command iocb. The function will call the
  2862. * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
  2863. * The function frees the resources or calls the completion handler if this
  2864. * iocb is an abort completion. The function returns NULL when the response
  2865. * iocb has the LE bit set and all the chained iocbs are processed, otherwise
  2866. * this function shall chain the iocb on to the iocb_continueq and return the
  2867. * response iocb passed in.
  2868. **/
  2869. static struct lpfc_iocbq *
  2870. lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  2871. struct lpfc_iocbq *rspiocbp)
  2872. {
  2873. struct lpfc_iocbq *saveq;
  2874. struct lpfc_iocbq *cmdiocbp;
  2875. struct lpfc_iocbq *next_iocb;
  2876. IOCB_t *irsp = NULL;
  2877. uint32_t free_saveq;
  2878. uint8_t iocb_cmd_type;
  2879. lpfc_iocb_type type;
  2880. unsigned long iflag;
  2881. int rc;
  2882. spin_lock_irqsave(&phba->hbalock, iflag);
  2883. /* First add the response iocb to the countinueq list */
  2884. list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
  2885. pring->iocb_continueq_cnt++;
  2886. /* Now, determine whether the list is completed for processing */
  2887. irsp = &rspiocbp->iocb;
  2888. if (irsp->ulpLe) {
  2889. /*
  2890. * By default, the driver expects to free all resources
  2891. * associated with this iocb completion.
  2892. */
  2893. free_saveq = 1;
  2894. saveq = list_get_first(&pring->iocb_continueq,
  2895. struct lpfc_iocbq, list);
  2896. irsp = &(saveq->iocb);
  2897. list_del_init(&pring->iocb_continueq);
  2898. pring->iocb_continueq_cnt = 0;
  2899. pring->stats.iocb_rsp++;
  2900. /*
  2901. * If resource errors reported from HBA, reduce
  2902. * queuedepths of the SCSI device.
  2903. */
  2904. if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
  2905. ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
  2906. IOERR_NO_RESOURCES)) {
  2907. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2908. phba->lpfc_rampdown_queue_depth(phba);
  2909. spin_lock_irqsave(&phba->hbalock, iflag);
  2910. }
  2911. if (irsp->ulpStatus) {
  2912. /* Rsp ring <ringno> error: IOCB */
  2913. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  2914. "0328 Rsp Ring %d error: "
  2915. "IOCB Data: "
  2916. "x%x x%x x%x x%x "
  2917. "x%x x%x x%x x%x "
  2918. "x%x x%x x%x x%x "
  2919. "x%x x%x x%x x%x\n",
  2920. pring->ringno,
  2921. irsp->un.ulpWord[0],
  2922. irsp->un.ulpWord[1],
  2923. irsp->un.ulpWord[2],
  2924. irsp->un.ulpWord[3],
  2925. irsp->un.ulpWord[4],
  2926. irsp->un.ulpWord[5],
  2927. *(((uint32_t *) irsp) + 6),
  2928. *(((uint32_t *) irsp) + 7),
  2929. *(((uint32_t *) irsp) + 8),
  2930. *(((uint32_t *) irsp) + 9),
  2931. *(((uint32_t *) irsp) + 10),
  2932. *(((uint32_t *) irsp) + 11),
  2933. *(((uint32_t *) irsp) + 12),
  2934. *(((uint32_t *) irsp) + 13),
  2935. *(((uint32_t *) irsp) + 14),
  2936. *(((uint32_t *) irsp) + 15));
  2937. }
  2938. /*
  2939. * Fetch the IOCB command type and call the correct completion
  2940. * routine. Solicited and Unsolicited IOCBs on the ELS ring
  2941. * get freed back to the lpfc_iocb_list by the discovery
  2942. * kernel thread.
  2943. */
  2944. iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
  2945. type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
  2946. switch (type) {
  2947. case LPFC_SOL_IOCB:
  2948. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2949. rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
  2950. spin_lock_irqsave(&phba->hbalock, iflag);
  2951. break;
  2952. case LPFC_UNSOL_IOCB:
  2953. spin_unlock_irqrestore(&phba->hbalock, iflag);
  2954. rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
  2955. spin_lock_irqsave(&phba->hbalock, iflag);
  2956. if (!rc)
  2957. free_saveq = 0;
  2958. break;
  2959. case LPFC_ABORT_IOCB:
  2960. cmdiocbp = NULL;
  2961. if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
  2962. cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
  2963. saveq);
  2964. if (cmdiocbp) {
  2965. /* Call the specified completion routine */
  2966. if (cmdiocbp->iocb_cmpl) {
  2967. spin_unlock_irqrestore(&phba->hbalock,
  2968. iflag);
  2969. (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
  2970. saveq);
  2971. spin_lock_irqsave(&phba->hbalock,
  2972. iflag);
  2973. } else
  2974. __lpfc_sli_release_iocbq(phba,
  2975. cmdiocbp);
  2976. }
  2977. break;
  2978. case LPFC_UNKNOWN_IOCB:
  2979. if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
  2980. char adaptermsg[LPFC_MAX_ADPTMSG];
  2981. memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
  2982. memcpy(&adaptermsg[0], (uint8_t *)irsp,
  2983. MAX_MSG_DATA);
  2984. dev_warn(&((phba->pcidev)->dev),
  2985. "lpfc%d: %s\n",
  2986. phba->brd_no, adaptermsg);
  2987. } else {
  2988. /* Unknown IOCB command */
  2989. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  2990. "0335 Unknown IOCB "
  2991. "command Data: x%x "
  2992. "x%x x%x x%x\n",
  2993. irsp->ulpCommand,
  2994. irsp->ulpStatus,
  2995. irsp->ulpIoTag,
  2996. irsp->ulpContext);
  2997. }
  2998. break;
  2999. }
  3000. if (free_saveq) {
  3001. list_for_each_entry_safe(rspiocbp, next_iocb,
  3002. &saveq->list, list) {
  3003. list_del(&rspiocbp->list);
  3004. __lpfc_sli_release_iocbq(phba, rspiocbp);
  3005. }
  3006. __lpfc_sli_release_iocbq(phba, saveq);
  3007. }
  3008. rspiocbp = NULL;
  3009. }
  3010. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3011. return rspiocbp;
  3012. }
  3013. /**
  3014. * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
  3015. * @phba: Pointer to HBA context object.
  3016. * @pring: Pointer to driver SLI ring object.
  3017. * @mask: Host attention register mask for this ring.
  3018. *
  3019. * This routine wraps the actual slow_ring event process routine from the
  3020. * API jump table function pointer from the lpfc_hba struct.
  3021. **/
  3022. void
  3023. lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
  3024. struct lpfc_sli_ring *pring, uint32_t mask)
  3025. {
  3026. phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
  3027. }
  3028. /**
  3029. * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
  3030. * @phba: Pointer to HBA context object.
  3031. * @pring: Pointer to driver SLI ring object.
  3032. * @mask: Host attention register mask for this ring.
  3033. *
  3034. * This function is called from the worker thread when there is a ring event
  3035. * for non-fcp rings. The caller does not hold any lock. The function will
  3036. * remove each response iocb in the response ring and calls the handle
  3037. * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
  3038. **/
  3039. static void
  3040. lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
  3041. struct lpfc_sli_ring *pring, uint32_t mask)
  3042. {
  3043. struct lpfc_pgp *pgp;
  3044. IOCB_t *entry;
  3045. IOCB_t *irsp = NULL;
  3046. struct lpfc_iocbq *rspiocbp = NULL;
  3047. uint32_t portRspPut, portRspMax;
  3048. unsigned long iflag;
  3049. uint32_t status;
  3050. pgp = &phba->port_gp[pring->ringno];
  3051. spin_lock_irqsave(&phba->hbalock, iflag);
  3052. pring->stats.iocb_event++;
  3053. /*
  3054. * The next available response entry should never exceed the maximum
  3055. * entries. If it does, treat it as an adapter hardware error.
  3056. */
  3057. portRspMax = pring->sli.sli3.numRiocb;
  3058. portRspPut = le32_to_cpu(pgp->rspPutInx);
  3059. if (portRspPut >= portRspMax) {
  3060. /*
  3061. * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
  3062. * rsp ring <portRspMax>
  3063. */
  3064. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  3065. "0303 Ring %d handler: portRspPut %d "
  3066. "is bigger than rsp ring %d\n",
  3067. pring->ringno, portRspPut, portRspMax);
  3068. phba->link_state = LPFC_HBA_ERROR;
  3069. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3070. phba->work_hs = HS_FFER3;
  3071. lpfc_handle_eratt(phba);
  3072. return;
  3073. }
  3074. rmb();
  3075. while (pring->sli.sli3.rspidx != portRspPut) {
  3076. /*
  3077. * Build a completion list and call the appropriate handler.
  3078. * The process is to get the next available response iocb, get
  3079. * a free iocb from the list, copy the response data into the
  3080. * free iocb, insert to the continuation list, and update the
  3081. * next response index to slim. This process makes response
  3082. * iocb's in the ring available to DMA as fast as possible but
  3083. * pays a penalty for a copy operation. Since the iocb is
  3084. * only 32 bytes, this penalty is considered small relative to
  3085. * the PCI reads for register values and a slim write. When
  3086. * the ulpLe field is set, the entire Command has been
  3087. * received.
  3088. */
  3089. entry = lpfc_resp_iocb(phba, pring);
  3090. phba->last_completion_time = jiffies;
  3091. rspiocbp = __lpfc_sli_get_iocbq(phba);
  3092. if (rspiocbp == NULL) {
  3093. printk(KERN_ERR "%s: out of buffers! Failing "
  3094. "completion.\n", __func__);
  3095. break;
  3096. }
  3097. lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
  3098. phba->iocb_rsp_size);
  3099. irsp = &rspiocbp->iocb;
  3100. if (++pring->sli.sli3.rspidx >= portRspMax)
  3101. pring->sli.sli3.rspidx = 0;
  3102. if (pring->ringno == LPFC_ELS_RING) {
  3103. lpfc_debugfs_slow_ring_trc(phba,
  3104. "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
  3105. *(((uint32_t *) irsp) + 4),
  3106. *(((uint32_t *) irsp) + 6),
  3107. *(((uint32_t *) irsp) + 7));
  3108. }
  3109. writel(pring->sli.sli3.rspidx,
  3110. &phba->host_gp[pring->ringno].rspGetInx);
  3111. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3112. /* Handle the response IOCB */
  3113. rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
  3114. spin_lock_irqsave(&phba->hbalock, iflag);
  3115. /*
  3116. * If the port response put pointer has not been updated, sync
  3117. * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
  3118. * response put pointer.
  3119. */
  3120. if (pring->sli.sli3.rspidx == portRspPut) {
  3121. portRspPut = le32_to_cpu(pgp->rspPutInx);
  3122. }
  3123. } /* while (pring->sli.sli3.rspidx != portRspPut) */
  3124. if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
  3125. /* At least one response entry has been freed */
  3126. pring->stats.iocb_rsp_full++;
  3127. /* SET RxRE_RSP in Chip Att register */
  3128. status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
  3129. writel(status, phba->CAregaddr);
  3130. readl(phba->CAregaddr); /* flush */
  3131. }
  3132. if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
  3133. pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
  3134. pring->stats.iocb_cmd_empty++;
  3135. /* Force update of the local copy of cmdGetInx */
  3136. pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
  3137. lpfc_sli_resume_iocb(phba, pring);
  3138. if ((pring->lpfc_sli_cmd_available))
  3139. (pring->lpfc_sli_cmd_available) (phba, pring);
  3140. }
  3141. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3142. return;
  3143. }
  3144. /**
  3145. * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
  3146. * @phba: Pointer to HBA context object.
  3147. * @pring: Pointer to driver SLI ring object.
  3148. * @mask: Host attention register mask for this ring.
  3149. *
  3150. * This function is called from the worker thread when there is a pending
  3151. * ELS response iocb on the driver internal slow-path response iocb worker
  3152. * queue. The caller does not hold any lock. The function will remove each
  3153. * response iocb from the response worker queue and calls the handle
  3154. * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
  3155. **/
  3156. static void
  3157. lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
  3158. struct lpfc_sli_ring *pring, uint32_t mask)
  3159. {
  3160. struct lpfc_iocbq *irspiocbq;
  3161. struct hbq_dmabuf *dmabuf;
  3162. struct lpfc_cq_event *cq_event;
  3163. unsigned long iflag;
  3164. spin_lock_irqsave(&phba->hbalock, iflag);
  3165. phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
  3166. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3167. while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
  3168. /* Get the response iocb from the head of work queue */
  3169. spin_lock_irqsave(&phba->hbalock, iflag);
  3170. list_remove_head(&phba->sli4_hba.sp_queue_event,
  3171. cq_event, struct lpfc_cq_event, list);
  3172. spin_unlock_irqrestore(&phba->hbalock, iflag);
  3173. switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
  3174. case CQE_CODE_COMPL_WQE:
  3175. irspiocbq = container_of(cq_event, struct lpfc_iocbq,
  3176. cq_event);
  3177. /* Translate ELS WCQE to response IOCBQ */
  3178. irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
  3179. irspiocbq);
  3180. if (irspiocbq)
  3181. lpfc_sli_sp_handle_rspiocb(phba, pring,
  3182. irspiocbq);
  3183. break;
  3184. case CQE_CODE_RECEIVE:
  3185. case CQE_CODE_RECEIVE_V1:
  3186. dmabuf = container_of(cq_event, struct hbq_dmabuf,
  3187. cq_event);
  3188. lpfc_sli4_handle_received_buffer(phba, dmabuf);
  3189. break;
  3190. default:
  3191. break;
  3192. }
  3193. }
  3194. }
  3195. /**
  3196. * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
  3197. * @phba: Pointer to HBA context object.
  3198. * @pring: Pointer to driver SLI ring object.
  3199. *
  3200. * This function aborts all iocbs in the given ring and frees all the iocb
  3201. * objects in txq. This function issues an abort iocb for all the iocb commands
  3202. * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
  3203. * the return of this function. The caller is not required to hold any locks.
  3204. **/
  3205. void
  3206. lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  3207. {
  3208. LIST_HEAD(completions);
  3209. struct lpfc_iocbq *iocb, *next_iocb;
  3210. if (pring->ringno == LPFC_ELS_RING) {
  3211. lpfc_fabric_abort_hba(phba);
  3212. }
  3213. /* Error everything on txq and txcmplq
  3214. * First do the txq.
  3215. */
  3216. spin_lock_irq(&phba->hbalock);
  3217. list_splice_init(&pring->txq, &completions);
  3218. /* Next issue ABTS for everything on the txcmplq */
  3219. list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
  3220. lpfc_sli_issue_abort_iotag(phba, pring, iocb);
  3221. spin_unlock_irq(&phba->hbalock);
  3222. /* Cancel all the IOCBs from the completions list */
  3223. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  3224. IOERR_SLI_ABORTED);
  3225. }
  3226. /**
  3227. * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
  3228. * @phba: Pointer to HBA context object.
  3229. *
  3230. * This function flushes all iocbs in the fcp ring and frees all the iocb
  3231. * objects in txq and txcmplq. This function will not issue abort iocbs
  3232. * for all the iocb commands in txcmplq, they will just be returned with
  3233. * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
  3234. * slot has been permanently disabled.
  3235. **/
  3236. void
  3237. lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
  3238. {
  3239. LIST_HEAD(txq);
  3240. LIST_HEAD(txcmplq);
  3241. struct lpfc_sli *psli = &phba->sli;
  3242. struct lpfc_sli_ring *pring;
  3243. /* Currently, only one fcp ring */
  3244. pring = &psli->ring[psli->fcp_ring];
  3245. spin_lock_irq(&phba->hbalock);
  3246. /* Retrieve everything on txq */
  3247. list_splice_init(&pring->txq, &txq);
  3248. /* Retrieve everything on the txcmplq */
  3249. list_splice_init(&pring->txcmplq, &txcmplq);
  3250. /* Indicate the I/O queues are flushed */
  3251. phba->hba_flag |= HBA_FCP_IOQ_FLUSH;
  3252. spin_unlock_irq(&phba->hbalock);
  3253. /* Flush the txq */
  3254. lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
  3255. IOERR_SLI_DOWN);
  3256. /* Flush the txcmpq */
  3257. lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
  3258. IOERR_SLI_DOWN);
  3259. }
  3260. /**
  3261. * lpfc_sli_brdready_s3 - Check for sli3 host ready status
  3262. * @phba: Pointer to HBA context object.
  3263. * @mask: Bit mask to be checked.
  3264. *
  3265. * This function reads the host status register and compares
  3266. * with the provided bit mask to check if HBA completed
  3267. * the restart. This function will wait in a loop for the
  3268. * HBA to complete restart. If the HBA does not restart within
  3269. * 15 iterations, the function will reset the HBA again. The
  3270. * function returns 1 when HBA fail to restart otherwise returns
  3271. * zero.
  3272. **/
  3273. static int
  3274. lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
  3275. {
  3276. uint32_t status;
  3277. int i = 0;
  3278. int retval = 0;
  3279. /* Read the HBA Host Status Register */
  3280. if (lpfc_readl(phba->HSregaddr, &status))
  3281. return 1;
  3282. /*
  3283. * Check status register every 100ms for 5 retries, then every
  3284. * 500ms for 5, then every 2.5 sec for 5, then reset board and
  3285. * every 2.5 sec for 4.
  3286. * Break our of the loop if errors occurred during init.
  3287. */
  3288. while (((status & mask) != mask) &&
  3289. !(status & HS_FFERM) &&
  3290. i++ < 20) {
  3291. if (i <= 5)
  3292. msleep(10);
  3293. else if (i <= 10)
  3294. msleep(500);
  3295. else
  3296. msleep(2500);
  3297. if (i == 15) {
  3298. /* Do post */
  3299. phba->pport->port_state = LPFC_VPORT_UNKNOWN;
  3300. lpfc_sli_brdrestart(phba);
  3301. }
  3302. /* Read the HBA Host Status Register */
  3303. if (lpfc_readl(phba->HSregaddr, &status)) {
  3304. retval = 1;
  3305. break;
  3306. }
  3307. }
  3308. /* Check to see if any errors occurred during init */
  3309. if ((status & HS_FFERM) || (i >= 20)) {
  3310. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  3311. "2751 Adapter failed to restart, "
  3312. "status reg x%x, FW Data: A8 x%x AC x%x\n",
  3313. status,
  3314. readl(phba->MBslimaddr + 0xa8),
  3315. readl(phba->MBslimaddr + 0xac));
  3316. phba->link_state = LPFC_HBA_ERROR;
  3317. retval = 1;
  3318. }
  3319. return retval;
  3320. }
  3321. /**
  3322. * lpfc_sli_brdready_s4 - Check for sli4 host ready status
  3323. * @phba: Pointer to HBA context object.
  3324. * @mask: Bit mask to be checked.
  3325. *
  3326. * This function checks the host status register to check if HBA is
  3327. * ready. This function will wait in a loop for the HBA to be ready
  3328. * If the HBA is not ready , the function will will reset the HBA PCI
  3329. * function again. The function returns 1 when HBA fail to be ready
  3330. * otherwise returns zero.
  3331. **/
  3332. static int
  3333. lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
  3334. {
  3335. uint32_t status;
  3336. int retval = 0;
  3337. /* Read the HBA Host Status Register */
  3338. status = lpfc_sli4_post_status_check(phba);
  3339. if (status) {
  3340. phba->pport->port_state = LPFC_VPORT_UNKNOWN;
  3341. lpfc_sli_brdrestart(phba);
  3342. status = lpfc_sli4_post_status_check(phba);
  3343. }
  3344. /* Check to see if any errors occurred during init */
  3345. if (status) {
  3346. phba->link_state = LPFC_HBA_ERROR;
  3347. retval = 1;
  3348. } else
  3349. phba->sli4_hba.intr_enable = 0;
  3350. return retval;
  3351. }
  3352. /**
  3353. * lpfc_sli_brdready - Wrapper func for checking the hba readyness
  3354. * @phba: Pointer to HBA context object.
  3355. * @mask: Bit mask to be checked.
  3356. *
  3357. * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
  3358. * from the API jump table function pointer from the lpfc_hba struct.
  3359. **/
  3360. int
  3361. lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
  3362. {
  3363. return phba->lpfc_sli_brdready(phba, mask);
  3364. }
  3365. #define BARRIER_TEST_PATTERN (0xdeadbeef)
  3366. /**
  3367. * lpfc_reset_barrier - Make HBA ready for HBA reset
  3368. * @phba: Pointer to HBA context object.
  3369. *
  3370. * This function is called before resetting an HBA. This function is called
  3371. * with hbalock held and requests HBA to quiesce DMAs before a reset.
  3372. **/
  3373. void lpfc_reset_barrier(struct lpfc_hba *phba)
  3374. {
  3375. uint32_t __iomem *resp_buf;
  3376. uint32_t __iomem *mbox_buf;
  3377. volatile uint32_t mbox;
  3378. uint32_t hc_copy, ha_copy, resp_data;
  3379. int i;
  3380. uint8_t hdrtype;
  3381. pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
  3382. if (hdrtype != 0x80 ||
  3383. (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
  3384. FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
  3385. return;
  3386. /*
  3387. * Tell the other part of the chip to suspend temporarily all
  3388. * its DMA activity.
  3389. */
  3390. resp_buf = phba->MBslimaddr;
  3391. /* Disable the error attention */
  3392. if (lpfc_readl(phba->HCregaddr, &hc_copy))
  3393. return;
  3394. writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
  3395. readl(phba->HCregaddr); /* flush */
  3396. phba->link_flag |= LS_IGNORE_ERATT;
  3397. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  3398. return;
  3399. if (ha_copy & HA_ERATT) {
  3400. /* Clear Chip error bit */
  3401. writel(HA_ERATT, phba->HAregaddr);
  3402. phba->pport->stopped = 1;
  3403. }
  3404. mbox = 0;
  3405. ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
  3406. ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
  3407. writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
  3408. mbox_buf = phba->MBslimaddr;
  3409. writel(mbox, mbox_buf);
  3410. for (i = 0; i < 50; i++) {
  3411. if (lpfc_readl((resp_buf + 1), &resp_data))
  3412. return;
  3413. if (resp_data != ~(BARRIER_TEST_PATTERN))
  3414. mdelay(1);
  3415. else
  3416. break;
  3417. }
  3418. resp_data = 0;
  3419. if (lpfc_readl((resp_buf + 1), &resp_data))
  3420. return;
  3421. if (resp_data != ~(BARRIER_TEST_PATTERN)) {
  3422. if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
  3423. phba->pport->stopped)
  3424. goto restore_hc;
  3425. else
  3426. goto clear_errat;
  3427. }
  3428. ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
  3429. resp_data = 0;
  3430. for (i = 0; i < 500; i++) {
  3431. if (lpfc_readl(resp_buf, &resp_data))
  3432. return;
  3433. if (resp_data != mbox)
  3434. mdelay(1);
  3435. else
  3436. break;
  3437. }
  3438. clear_errat:
  3439. while (++i < 500) {
  3440. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  3441. return;
  3442. if (!(ha_copy & HA_ERATT))
  3443. mdelay(1);
  3444. else
  3445. break;
  3446. }
  3447. if (readl(phba->HAregaddr) & HA_ERATT) {
  3448. writel(HA_ERATT, phba->HAregaddr);
  3449. phba->pport->stopped = 1;
  3450. }
  3451. restore_hc:
  3452. phba->link_flag &= ~LS_IGNORE_ERATT;
  3453. writel(hc_copy, phba->HCregaddr);
  3454. readl(phba->HCregaddr); /* flush */
  3455. }
  3456. /**
  3457. * lpfc_sli_brdkill - Issue a kill_board mailbox command
  3458. * @phba: Pointer to HBA context object.
  3459. *
  3460. * This function issues a kill_board mailbox command and waits for
  3461. * the error attention interrupt. This function is called for stopping
  3462. * the firmware processing. The caller is not required to hold any
  3463. * locks. This function calls lpfc_hba_down_post function to free
  3464. * any pending commands after the kill. The function will return 1 when it
  3465. * fails to kill the board else will return 0.
  3466. **/
  3467. int
  3468. lpfc_sli_brdkill(struct lpfc_hba *phba)
  3469. {
  3470. struct lpfc_sli *psli;
  3471. LPFC_MBOXQ_t *pmb;
  3472. uint32_t status;
  3473. uint32_t ha_copy;
  3474. int retval;
  3475. int i = 0;
  3476. psli = &phba->sli;
  3477. /* Kill HBA */
  3478. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3479. "0329 Kill HBA Data: x%x x%x\n",
  3480. phba->pport->port_state, psli->sli_flag);
  3481. pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  3482. if (!pmb)
  3483. return 1;
  3484. /* Disable the error attention */
  3485. spin_lock_irq(&phba->hbalock);
  3486. if (lpfc_readl(phba->HCregaddr, &status)) {
  3487. spin_unlock_irq(&phba->hbalock);
  3488. mempool_free(pmb, phba->mbox_mem_pool);
  3489. return 1;
  3490. }
  3491. status &= ~HC_ERINT_ENA;
  3492. writel(status, phba->HCregaddr);
  3493. readl(phba->HCregaddr); /* flush */
  3494. phba->link_flag |= LS_IGNORE_ERATT;
  3495. spin_unlock_irq(&phba->hbalock);
  3496. lpfc_kill_board(phba, pmb);
  3497. pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  3498. retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
  3499. if (retval != MBX_SUCCESS) {
  3500. if (retval != MBX_BUSY)
  3501. mempool_free(pmb, phba->mbox_mem_pool);
  3502. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  3503. "2752 KILL_BOARD command failed retval %d\n",
  3504. retval);
  3505. spin_lock_irq(&phba->hbalock);
  3506. phba->link_flag &= ~LS_IGNORE_ERATT;
  3507. spin_unlock_irq(&phba->hbalock);
  3508. return 1;
  3509. }
  3510. spin_lock_irq(&phba->hbalock);
  3511. psli->sli_flag &= ~LPFC_SLI_ACTIVE;
  3512. spin_unlock_irq(&phba->hbalock);
  3513. mempool_free(pmb, phba->mbox_mem_pool);
  3514. /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
  3515. * attention every 100ms for 3 seconds. If we don't get ERATT after
  3516. * 3 seconds we still set HBA_ERROR state because the status of the
  3517. * board is now undefined.
  3518. */
  3519. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  3520. return 1;
  3521. while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
  3522. mdelay(100);
  3523. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  3524. return 1;
  3525. }
  3526. del_timer_sync(&psli->mbox_tmo);
  3527. if (ha_copy & HA_ERATT) {
  3528. writel(HA_ERATT, phba->HAregaddr);
  3529. phba->pport->stopped = 1;
  3530. }
  3531. spin_lock_irq(&phba->hbalock);
  3532. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  3533. psli->mbox_active = NULL;
  3534. phba->link_flag &= ~LS_IGNORE_ERATT;
  3535. spin_unlock_irq(&phba->hbalock);
  3536. lpfc_hba_down_post(phba);
  3537. phba->link_state = LPFC_HBA_ERROR;
  3538. return ha_copy & HA_ERATT ? 0 : 1;
  3539. }
  3540. /**
  3541. * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
  3542. * @phba: Pointer to HBA context object.
  3543. *
  3544. * This function resets the HBA by writing HC_INITFF to the control
  3545. * register. After the HBA resets, this function resets all the iocb ring
  3546. * indices. This function disables PCI layer parity checking during
  3547. * the reset.
  3548. * This function returns 0 always.
  3549. * The caller is not required to hold any locks.
  3550. **/
  3551. int
  3552. lpfc_sli_brdreset(struct lpfc_hba *phba)
  3553. {
  3554. struct lpfc_sli *psli;
  3555. struct lpfc_sli_ring *pring;
  3556. uint16_t cfg_value;
  3557. int i;
  3558. psli = &phba->sli;
  3559. /* Reset HBA */
  3560. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3561. "0325 Reset HBA Data: x%x x%x\n",
  3562. phba->pport->port_state, psli->sli_flag);
  3563. /* perform board reset */
  3564. phba->fc_eventTag = 0;
  3565. phba->link_events = 0;
  3566. phba->pport->fc_myDID = 0;
  3567. phba->pport->fc_prevDID = 0;
  3568. /* Turn off parity checking and serr during the physical reset */
  3569. pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
  3570. pci_write_config_word(phba->pcidev, PCI_COMMAND,
  3571. (cfg_value &
  3572. ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
  3573. psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
  3574. /* Now toggle INITFF bit in the Host Control Register */
  3575. writel(HC_INITFF, phba->HCregaddr);
  3576. mdelay(1);
  3577. readl(phba->HCregaddr); /* flush */
  3578. writel(0, phba->HCregaddr);
  3579. readl(phba->HCregaddr); /* flush */
  3580. /* Restore PCI cmd register */
  3581. pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
  3582. /* Initialize relevant SLI info */
  3583. for (i = 0; i < psli->num_rings; i++) {
  3584. pring = &psli->ring[i];
  3585. pring->flag = 0;
  3586. pring->sli.sli3.rspidx = 0;
  3587. pring->sli.sli3.next_cmdidx = 0;
  3588. pring->sli.sli3.local_getidx = 0;
  3589. pring->sli.sli3.cmdidx = 0;
  3590. pring->missbufcnt = 0;
  3591. }
  3592. phba->link_state = LPFC_WARM_START;
  3593. return 0;
  3594. }
  3595. /**
  3596. * lpfc_sli4_brdreset - Reset a sli-4 HBA
  3597. * @phba: Pointer to HBA context object.
  3598. *
  3599. * This function resets a SLI4 HBA. This function disables PCI layer parity
  3600. * checking during resets the device. The caller is not required to hold
  3601. * any locks.
  3602. *
  3603. * This function returns 0 always.
  3604. **/
  3605. int
  3606. lpfc_sli4_brdreset(struct lpfc_hba *phba)
  3607. {
  3608. struct lpfc_sli *psli = &phba->sli;
  3609. uint16_t cfg_value;
  3610. int rc;
  3611. /* Reset HBA */
  3612. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3613. "0295 Reset HBA Data: x%x x%x\n",
  3614. phba->pport->port_state, psli->sli_flag);
  3615. /* perform board reset */
  3616. phba->fc_eventTag = 0;
  3617. phba->link_events = 0;
  3618. phba->pport->fc_myDID = 0;
  3619. phba->pport->fc_prevDID = 0;
  3620. spin_lock_irq(&phba->hbalock);
  3621. psli->sli_flag &= ~(LPFC_PROCESS_LA);
  3622. phba->fcf.fcf_flag = 0;
  3623. spin_unlock_irq(&phba->hbalock);
  3624. /* Now physically reset the device */
  3625. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  3626. "0389 Performing PCI function reset!\n");
  3627. /* Turn off parity checking and serr during the physical reset */
  3628. pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
  3629. pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
  3630. ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
  3631. /* Perform FCoE PCI function reset before freeing queue memory */
  3632. rc = lpfc_pci_function_reset(phba);
  3633. lpfc_sli4_queue_destroy(phba);
  3634. /* Restore PCI cmd register */
  3635. pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
  3636. return rc;
  3637. }
  3638. /**
  3639. * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
  3640. * @phba: Pointer to HBA context object.
  3641. *
  3642. * This function is called in the SLI initialization code path to
  3643. * restart the HBA. The caller is not required to hold any lock.
  3644. * This function writes MBX_RESTART mailbox command to the SLIM and
  3645. * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
  3646. * function to free any pending commands. The function enables
  3647. * POST only during the first initialization. The function returns zero.
  3648. * The function does not guarantee completion of MBX_RESTART mailbox
  3649. * command before the return of this function.
  3650. **/
  3651. static int
  3652. lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
  3653. {
  3654. MAILBOX_t *mb;
  3655. struct lpfc_sli *psli;
  3656. volatile uint32_t word0;
  3657. void __iomem *to_slim;
  3658. uint32_t hba_aer_enabled;
  3659. spin_lock_irq(&phba->hbalock);
  3660. /* Take PCIe device Advanced Error Reporting (AER) state */
  3661. hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
  3662. psli = &phba->sli;
  3663. /* Restart HBA */
  3664. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3665. "0337 Restart HBA Data: x%x x%x\n",
  3666. phba->pport->port_state, psli->sli_flag);
  3667. word0 = 0;
  3668. mb = (MAILBOX_t *) &word0;
  3669. mb->mbxCommand = MBX_RESTART;
  3670. mb->mbxHc = 1;
  3671. lpfc_reset_barrier(phba);
  3672. to_slim = phba->MBslimaddr;
  3673. writel(*(uint32_t *) mb, to_slim);
  3674. readl(to_slim); /* flush */
  3675. /* Only skip post after fc_ffinit is completed */
  3676. if (phba->pport->port_state)
  3677. word0 = 1; /* This is really setting up word1 */
  3678. else
  3679. word0 = 0; /* This is really setting up word1 */
  3680. to_slim = phba->MBslimaddr + sizeof (uint32_t);
  3681. writel(*(uint32_t *) mb, to_slim);
  3682. readl(to_slim); /* flush */
  3683. lpfc_sli_brdreset(phba);
  3684. phba->pport->stopped = 0;
  3685. phba->link_state = LPFC_INIT_START;
  3686. phba->hba_flag = 0;
  3687. spin_unlock_irq(&phba->hbalock);
  3688. memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
  3689. psli->stats_start = get_seconds();
  3690. /* Give the INITFF and Post time to settle. */
  3691. mdelay(100);
  3692. /* Reset HBA AER if it was enabled, note hba_flag was reset above */
  3693. if (hba_aer_enabled)
  3694. pci_disable_pcie_error_reporting(phba->pcidev);
  3695. lpfc_hba_down_post(phba);
  3696. return 0;
  3697. }
  3698. /**
  3699. * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
  3700. * @phba: Pointer to HBA context object.
  3701. *
  3702. * This function is called in the SLI initialization code path to restart
  3703. * a SLI4 HBA. The caller is not required to hold any lock.
  3704. * At the end of the function, it calls lpfc_hba_down_post function to
  3705. * free any pending commands.
  3706. **/
  3707. static int
  3708. lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
  3709. {
  3710. struct lpfc_sli *psli = &phba->sli;
  3711. uint32_t hba_aer_enabled;
  3712. int rc;
  3713. /* Restart HBA */
  3714. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  3715. "0296 Restart HBA Data: x%x x%x\n",
  3716. phba->pport->port_state, psli->sli_flag);
  3717. /* Take PCIe device Advanced Error Reporting (AER) state */
  3718. hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
  3719. rc = lpfc_sli4_brdreset(phba);
  3720. spin_lock_irq(&phba->hbalock);
  3721. phba->pport->stopped = 0;
  3722. phba->link_state = LPFC_INIT_START;
  3723. phba->hba_flag = 0;
  3724. spin_unlock_irq(&phba->hbalock);
  3725. memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
  3726. psli->stats_start = get_seconds();
  3727. /* Reset HBA AER if it was enabled, note hba_flag was reset above */
  3728. if (hba_aer_enabled)
  3729. pci_disable_pcie_error_reporting(phba->pcidev);
  3730. lpfc_hba_down_post(phba);
  3731. return rc;
  3732. }
  3733. /**
  3734. * lpfc_sli_brdrestart - Wrapper func for restarting hba
  3735. * @phba: Pointer to HBA context object.
  3736. *
  3737. * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
  3738. * API jump table function pointer from the lpfc_hba struct.
  3739. **/
  3740. int
  3741. lpfc_sli_brdrestart(struct lpfc_hba *phba)
  3742. {
  3743. return phba->lpfc_sli_brdrestart(phba);
  3744. }
  3745. /**
  3746. * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
  3747. * @phba: Pointer to HBA context object.
  3748. *
  3749. * This function is called after a HBA restart to wait for successful
  3750. * restart of the HBA. Successful restart of the HBA is indicated by
  3751. * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
  3752. * iteration, the function will restart the HBA again. The function returns
  3753. * zero if HBA successfully restarted else returns negative error code.
  3754. **/
  3755. static int
  3756. lpfc_sli_chipset_init(struct lpfc_hba *phba)
  3757. {
  3758. uint32_t status, i = 0;
  3759. /* Read the HBA Host Status Register */
  3760. if (lpfc_readl(phba->HSregaddr, &status))
  3761. return -EIO;
  3762. /* Check status register to see what current state is */
  3763. i = 0;
  3764. while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
  3765. /* Check every 10ms for 10 retries, then every 100ms for 90
  3766. * retries, then every 1 sec for 50 retires for a total of
  3767. * ~60 seconds before reset the board again and check every
  3768. * 1 sec for 50 retries. The up to 60 seconds before the
  3769. * board ready is required by the Falcon FIPS zeroization
  3770. * complete, and any reset the board in between shall cause
  3771. * restart of zeroization, further delay the board ready.
  3772. */
  3773. if (i++ >= 200) {
  3774. /* Adapter failed to init, timeout, status reg
  3775. <status> */
  3776. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  3777. "0436 Adapter failed to init, "
  3778. "timeout, status reg x%x, "
  3779. "FW Data: A8 x%x AC x%x\n", status,
  3780. readl(phba->MBslimaddr + 0xa8),
  3781. readl(phba->MBslimaddr + 0xac));
  3782. phba->link_state = LPFC_HBA_ERROR;
  3783. return -ETIMEDOUT;
  3784. }
  3785. /* Check to see if any errors occurred during init */
  3786. if (status & HS_FFERM) {
  3787. /* ERROR: During chipset initialization */
  3788. /* Adapter failed to init, chipset, status reg
  3789. <status> */
  3790. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  3791. "0437 Adapter failed to init, "
  3792. "chipset, status reg x%x, "
  3793. "FW Data: A8 x%x AC x%x\n", status,
  3794. readl(phba->MBslimaddr + 0xa8),
  3795. readl(phba->MBslimaddr + 0xac));
  3796. phba->link_state = LPFC_HBA_ERROR;
  3797. return -EIO;
  3798. }
  3799. if (i <= 10)
  3800. msleep(10);
  3801. else if (i <= 100)
  3802. msleep(100);
  3803. else
  3804. msleep(1000);
  3805. if (i == 150) {
  3806. /* Do post */
  3807. phba->pport->port_state = LPFC_VPORT_UNKNOWN;
  3808. lpfc_sli_brdrestart(phba);
  3809. }
  3810. /* Read the HBA Host Status Register */
  3811. if (lpfc_readl(phba->HSregaddr, &status))
  3812. return -EIO;
  3813. }
  3814. /* Check to see if any errors occurred during init */
  3815. if (status & HS_FFERM) {
  3816. /* ERROR: During chipset initialization */
  3817. /* Adapter failed to init, chipset, status reg <status> */
  3818. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  3819. "0438 Adapter failed to init, chipset, "
  3820. "status reg x%x, "
  3821. "FW Data: A8 x%x AC x%x\n", status,
  3822. readl(phba->MBslimaddr + 0xa8),
  3823. readl(phba->MBslimaddr + 0xac));
  3824. phba->link_state = LPFC_HBA_ERROR;
  3825. return -EIO;
  3826. }
  3827. /* Clear all interrupt enable conditions */
  3828. writel(0, phba->HCregaddr);
  3829. readl(phba->HCregaddr); /* flush */
  3830. /* setup host attn register */
  3831. writel(0xffffffff, phba->HAregaddr);
  3832. readl(phba->HAregaddr); /* flush */
  3833. return 0;
  3834. }
  3835. /**
  3836. * lpfc_sli_hbq_count - Get the number of HBQs to be configured
  3837. *
  3838. * This function calculates and returns the number of HBQs required to be
  3839. * configured.
  3840. **/
  3841. int
  3842. lpfc_sli_hbq_count(void)
  3843. {
  3844. return ARRAY_SIZE(lpfc_hbq_defs);
  3845. }
  3846. /**
  3847. * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
  3848. *
  3849. * This function adds the number of hbq entries in every HBQ to get
  3850. * the total number of hbq entries required for the HBA and returns
  3851. * the total count.
  3852. **/
  3853. static int
  3854. lpfc_sli_hbq_entry_count(void)
  3855. {
  3856. int hbq_count = lpfc_sli_hbq_count();
  3857. int count = 0;
  3858. int i;
  3859. for (i = 0; i < hbq_count; ++i)
  3860. count += lpfc_hbq_defs[i]->entry_count;
  3861. return count;
  3862. }
  3863. /**
  3864. * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
  3865. *
  3866. * This function calculates amount of memory required for all hbq entries
  3867. * to be configured and returns the total memory required.
  3868. **/
  3869. int
  3870. lpfc_sli_hbq_size(void)
  3871. {
  3872. return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
  3873. }
  3874. /**
  3875. * lpfc_sli_hbq_setup - configure and initialize HBQs
  3876. * @phba: Pointer to HBA context object.
  3877. *
  3878. * This function is called during the SLI initialization to configure
  3879. * all the HBQs and post buffers to the HBQ. The caller is not
  3880. * required to hold any locks. This function will return zero if successful
  3881. * else it will return negative error code.
  3882. **/
  3883. static int
  3884. lpfc_sli_hbq_setup(struct lpfc_hba *phba)
  3885. {
  3886. int hbq_count = lpfc_sli_hbq_count();
  3887. LPFC_MBOXQ_t *pmb;
  3888. MAILBOX_t *pmbox;
  3889. uint32_t hbqno;
  3890. uint32_t hbq_entry_index;
  3891. /* Get a Mailbox buffer to setup mailbox
  3892. * commands for HBA initialization
  3893. */
  3894. pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  3895. if (!pmb)
  3896. return -ENOMEM;
  3897. pmbox = &pmb->u.mb;
  3898. /* Initialize the struct lpfc_sli_hbq structure for each hbq */
  3899. phba->link_state = LPFC_INIT_MBX_CMDS;
  3900. phba->hbq_in_use = 1;
  3901. hbq_entry_index = 0;
  3902. for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
  3903. phba->hbqs[hbqno].next_hbqPutIdx = 0;
  3904. phba->hbqs[hbqno].hbqPutIdx = 0;
  3905. phba->hbqs[hbqno].local_hbqGetIdx = 0;
  3906. phba->hbqs[hbqno].entry_count =
  3907. lpfc_hbq_defs[hbqno]->entry_count;
  3908. lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
  3909. hbq_entry_index, pmb);
  3910. hbq_entry_index += phba->hbqs[hbqno].entry_count;
  3911. if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
  3912. /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
  3913. mbxStatus <status>, ring <num> */
  3914. lpfc_printf_log(phba, KERN_ERR,
  3915. LOG_SLI | LOG_VPORT,
  3916. "1805 Adapter failed to init. "
  3917. "Data: x%x x%x x%x\n",
  3918. pmbox->mbxCommand,
  3919. pmbox->mbxStatus, hbqno);
  3920. phba->link_state = LPFC_HBA_ERROR;
  3921. mempool_free(pmb, phba->mbox_mem_pool);
  3922. return -ENXIO;
  3923. }
  3924. }
  3925. phba->hbq_count = hbq_count;
  3926. mempool_free(pmb, phba->mbox_mem_pool);
  3927. /* Initially populate or replenish the HBQs */
  3928. for (hbqno = 0; hbqno < hbq_count; ++hbqno)
  3929. lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
  3930. return 0;
  3931. }
  3932. /**
  3933. * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
  3934. * @phba: Pointer to HBA context object.
  3935. *
  3936. * This function is called during the SLI initialization to configure
  3937. * all the HBQs and post buffers to the HBQ. The caller is not
  3938. * required to hold any locks. This function will return zero if successful
  3939. * else it will return negative error code.
  3940. **/
  3941. static int
  3942. lpfc_sli4_rb_setup(struct lpfc_hba *phba)
  3943. {
  3944. phba->hbq_in_use = 1;
  3945. phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
  3946. phba->hbq_count = 1;
  3947. /* Initially populate or replenish the HBQs */
  3948. lpfc_sli_hbqbuf_init_hbqs(phba, 0);
  3949. return 0;
  3950. }
  3951. /**
  3952. * lpfc_sli_config_port - Issue config port mailbox command
  3953. * @phba: Pointer to HBA context object.
  3954. * @sli_mode: sli mode - 2/3
  3955. *
  3956. * This function is called by the sli intialization code path
  3957. * to issue config_port mailbox command. This function restarts the
  3958. * HBA firmware and issues a config_port mailbox command to configure
  3959. * the SLI interface in the sli mode specified by sli_mode
  3960. * variable. The caller is not required to hold any locks.
  3961. * The function returns 0 if successful, else returns negative error
  3962. * code.
  3963. **/
  3964. int
  3965. lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
  3966. {
  3967. LPFC_MBOXQ_t *pmb;
  3968. uint32_t resetcount = 0, rc = 0, done = 0;
  3969. pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  3970. if (!pmb) {
  3971. phba->link_state = LPFC_HBA_ERROR;
  3972. return -ENOMEM;
  3973. }
  3974. phba->sli_rev = sli_mode;
  3975. while (resetcount < 2 && !done) {
  3976. spin_lock_irq(&phba->hbalock);
  3977. phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
  3978. spin_unlock_irq(&phba->hbalock);
  3979. phba->pport->port_state = LPFC_VPORT_UNKNOWN;
  3980. lpfc_sli_brdrestart(phba);
  3981. rc = lpfc_sli_chipset_init(phba);
  3982. if (rc)
  3983. break;
  3984. spin_lock_irq(&phba->hbalock);
  3985. phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  3986. spin_unlock_irq(&phba->hbalock);
  3987. resetcount++;
  3988. /* Call pre CONFIG_PORT mailbox command initialization. A
  3989. * value of 0 means the call was successful. Any other
  3990. * nonzero value is a failure, but if ERESTART is returned,
  3991. * the driver may reset the HBA and try again.
  3992. */
  3993. rc = lpfc_config_port_prep(phba);
  3994. if (rc == -ERESTART) {
  3995. phba->link_state = LPFC_LINK_UNKNOWN;
  3996. continue;
  3997. } else if (rc)
  3998. break;
  3999. phba->link_state = LPFC_INIT_MBX_CMDS;
  4000. lpfc_config_port(phba, pmb);
  4001. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
  4002. phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
  4003. LPFC_SLI3_HBQ_ENABLED |
  4004. LPFC_SLI3_CRP_ENABLED |
  4005. LPFC_SLI3_BG_ENABLED |
  4006. LPFC_SLI3_DSS_ENABLED);
  4007. if (rc != MBX_SUCCESS) {
  4008. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4009. "0442 Adapter failed to init, mbxCmd x%x "
  4010. "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
  4011. pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
  4012. spin_lock_irq(&phba->hbalock);
  4013. phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
  4014. spin_unlock_irq(&phba->hbalock);
  4015. rc = -ENXIO;
  4016. } else {
  4017. /* Allow asynchronous mailbox command to go through */
  4018. spin_lock_irq(&phba->hbalock);
  4019. phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
  4020. spin_unlock_irq(&phba->hbalock);
  4021. done = 1;
  4022. if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
  4023. (pmb->u.mb.un.varCfgPort.gasabt == 0))
  4024. lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
  4025. "3110 Port did not grant ASABT\n");
  4026. }
  4027. }
  4028. if (!done) {
  4029. rc = -EINVAL;
  4030. goto do_prep_failed;
  4031. }
  4032. if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
  4033. if (!pmb->u.mb.un.varCfgPort.cMA) {
  4034. rc = -ENXIO;
  4035. goto do_prep_failed;
  4036. }
  4037. if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
  4038. phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
  4039. phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
  4040. phba->max_vports = (phba->max_vpi > phba->max_vports) ?
  4041. phba->max_vpi : phba->max_vports;
  4042. } else
  4043. phba->max_vpi = 0;
  4044. phba->fips_level = 0;
  4045. phba->fips_spec_rev = 0;
  4046. if (pmb->u.mb.un.varCfgPort.gdss) {
  4047. phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
  4048. phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
  4049. phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
  4050. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  4051. "2850 Security Crypto Active. FIPS x%d "
  4052. "(Spec Rev: x%d)",
  4053. phba->fips_level, phba->fips_spec_rev);
  4054. }
  4055. if (pmb->u.mb.un.varCfgPort.sec_err) {
  4056. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4057. "2856 Config Port Security Crypto "
  4058. "Error: x%x ",
  4059. pmb->u.mb.un.varCfgPort.sec_err);
  4060. }
  4061. if (pmb->u.mb.un.varCfgPort.gerbm)
  4062. phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
  4063. if (pmb->u.mb.un.varCfgPort.gcrp)
  4064. phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
  4065. phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
  4066. phba->port_gp = phba->mbox->us.s3_pgp.port;
  4067. if (phba->cfg_enable_bg) {
  4068. if (pmb->u.mb.un.varCfgPort.gbg)
  4069. phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
  4070. else
  4071. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4072. "0443 Adapter did not grant "
  4073. "BlockGuard\n");
  4074. }
  4075. } else {
  4076. phba->hbq_get = NULL;
  4077. phba->port_gp = phba->mbox->us.s2.port;
  4078. phba->max_vpi = 0;
  4079. }
  4080. do_prep_failed:
  4081. mempool_free(pmb, phba->mbox_mem_pool);
  4082. return rc;
  4083. }
  4084. /**
  4085. * lpfc_sli_hba_setup - SLI intialization function
  4086. * @phba: Pointer to HBA context object.
  4087. *
  4088. * This function is the main SLI intialization function. This function
  4089. * is called by the HBA intialization code, HBA reset code and HBA
  4090. * error attention handler code. Caller is not required to hold any
  4091. * locks. This function issues config_port mailbox command to configure
  4092. * the SLI, setup iocb rings and HBQ rings. In the end the function
  4093. * calls the config_port_post function to issue init_link mailbox
  4094. * command and to start the discovery. The function will return zero
  4095. * if successful, else it will return negative error code.
  4096. **/
  4097. int
  4098. lpfc_sli_hba_setup(struct lpfc_hba *phba)
  4099. {
  4100. uint32_t rc;
  4101. int mode = 3, i;
  4102. int longs;
  4103. switch (lpfc_sli_mode) {
  4104. case 2:
  4105. if (phba->cfg_enable_npiv) {
  4106. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
  4107. "1824 NPIV enabled: Override lpfc_sli_mode "
  4108. "parameter (%d) to auto (0).\n",
  4109. lpfc_sli_mode);
  4110. break;
  4111. }
  4112. mode = 2;
  4113. break;
  4114. case 0:
  4115. case 3:
  4116. break;
  4117. default:
  4118. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
  4119. "1819 Unrecognized lpfc_sli_mode "
  4120. "parameter: %d.\n", lpfc_sli_mode);
  4121. break;
  4122. }
  4123. rc = lpfc_sli_config_port(phba, mode);
  4124. if (rc && lpfc_sli_mode == 3)
  4125. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
  4126. "1820 Unable to select SLI-3. "
  4127. "Not supported by adapter.\n");
  4128. if (rc && mode != 2)
  4129. rc = lpfc_sli_config_port(phba, 2);
  4130. if (rc)
  4131. goto lpfc_sli_hba_setup_error;
  4132. /* Enable PCIe device Advanced Error Reporting (AER) if configured */
  4133. if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
  4134. rc = pci_enable_pcie_error_reporting(phba->pcidev);
  4135. if (!rc) {
  4136. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  4137. "2709 This device supports "
  4138. "Advanced Error Reporting (AER)\n");
  4139. spin_lock_irq(&phba->hbalock);
  4140. phba->hba_flag |= HBA_AER_ENABLED;
  4141. spin_unlock_irq(&phba->hbalock);
  4142. } else {
  4143. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  4144. "2708 This device does not support "
  4145. "Advanced Error Reporting (AER)\n");
  4146. phba->cfg_aer_support = 0;
  4147. }
  4148. }
  4149. if (phba->sli_rev == 3) {
  4150. phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
  4151. phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
  4152. } else {
  4153. phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
  4154. phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
  4155. phba->sli3_options = 0;
  4156. }
  4157. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  4158. "0444 Firmware in SLI %x mode. Max_vpi %d\n",
  4159. phba->sli_rev, phba->max_vpi);
  4160. rc = lpfc_sli_ring_map(phba);
  4161. if (rc)
  4162. goto lpfc_sli_hba_setup_error;
  4163. /* Initialize VPIs. */
  4164. if (phba->sli_rev == LPFC_SLI_REV3) {
  4165. /*
  4166. * The VPI bitmask and physical ID array are allocated
  4167. * and initialized once only - at driver load. A port
  4168. * reset doesn't need to reinitialize this memory.
  4169. */
  4170. if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
  4171. longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
  4172. phba->vpi_bmask = kzalloc(longs * sizeof(unsigned long),
  4173. GFP_KERNEL);
  4174. if (!phba->vpi_bmask) {
  4175. rc = -ENOMEM;
  4176. goto lpfc_sli_hba_setup_error;
  4177. }
  4178. phba->vpi_ids = kzalloc(
  4179. (phba->max_vpi+1) * sizeof(uint16_t),
  4180. GFP_KERNEL);
  4181. if (!phba->vpi_ids) {
  4182. kfree(phba->vpi_bmask);
  4183. rc = -ENOMEM;
  4184. goto lpfc_sli_hba_setup_error;
  4185. }
  4186. for (i = 0; i < phba->max_vpi; i++)
  4187. phba->vpi_ids[i] = i;
  4188. }
  4189. }
  4190. /* Init HBQs */
  4191. if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
  4192. rc = lpfc_sli_hbq_setup(phba);
  4193. if (rc)
  4194. goto lpfc_sli_hba_setup_error;
  4195. }
  4196. spin_lock_irq(&phba->hbalock);
  4197. phba->sli.sli_flag |= LPFC_PROCESS_LA;
  4198. spin_unlock_irq(&phba->hbalock);
  4199. rc = lpfc_config_port_post(phba);
  4200. if (rc)
  4201. goto lpfc_sli_hba_setup_error;
  4202. return rc;
  4203. lpfc_sli_hba_setup_error:
  4204. phba->link_state = LPFC_HBA_ERROR;
  4205. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4206. "0445 Firmware initialization failed\n");
  4207. return rc;
  4208. }
  4209. /**
  4210. * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
  4211. * @phba: Pointer to HBA context object.
  4212. * @mboxq: mailbox pointer.
  4213. * This function issue a dump mailbox command to read config region
  4214. * 23 and parse the records in the region and populate driver
  4215. * data structure.
  4216. **/
  4217. static int
  4218. lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
  4219. {
  4220. LPFC_MBOXQ_t *mboxq;
  4221. struct lpfc_dmabuf *mp;
  4222. struct lpfc_mqe *mqe;
  4223. uint32_t data_length;
  4224. int rc;
  4225. /* Program the default value of vlan_id and fc_map */
  4226. phba->valid_vlan = 0;
  4227. phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
  4228. phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
  4229. phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
  4230. mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4231. if (!mboxq)
  4232. return -ENOMEM;
  4233. mqe = &mboxq->u.mqe;
  4234. if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
  4235. rc = -ENOMEM;
  4236. goto out_free_mboxq;
  4237. }
  4238. mp = (struct lpfc_dmabuf *) mboxq->context1;
  4239. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  4240. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  4241. "(%d):2571 Mailbox cmd x%x Status x%x "
  4242. "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
  4243. "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
  4244. "CQ: x%x x%x x%x x%x\n",
  4245. mboxq->vport ? mboxq->vport->vpi : 0,
  4246. bf_get(lpfc_mqe_command, mqe),
  4247. bf_get(lpfc_mqe_status, mqe),
  4248. mqe->un.mb_words[0], mqe->un.mb_words[1],
  4249. mqe->un.mb_words[2], mqe->un.mb_words[3],
  4250. mqe->un.mb_words[4], mqe->un.mb_words[5],
  4251. mqe->un.mb_words[6], mqe->un.mb_words[7],
  4252. mqe->un.mb_words[8], mqe->un.mb_words[9],
  4253. mqe->un.mb_words[10], mqe->un.mb_words[11],
  4254. mqe->un.mb_words[12], mqe->un.mb_words[13],
  4255. mqe->un.mb_words[14], mqe->un.mb_words[15],
  4256. mqe->un.mb_words[16], mqe->un.mb_words[50],
  4257. mboxq->mcqe.word0,
  4258. mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
  4259. mboxq->mcqe.trailer);
  4260. if (rc) {
  4261. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  4262. kfree(mp);
  4263. rc = -EIO;
  4264. goto out_free_mboxq;
  4265. }
  4266. data_length = mqe->un.mb_words[5];
  4267. if (data_length > DMP_RGN23_SIZE) {
  4268. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  4269. kfree(mp);
  4270. rc = -EIO;
  4271. goto out_free_mboxq;
  4272. }
  4273. lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
  4274. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  4275. kfree(mp);
  4276. rc = 0;
  4277. out_free_mboxq:
  4278. mempool_free(mboxq, phba->mbox_mem_pool);
  4279. return rc;
  4280. }
  4281. /**
  4282. * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
  4283. * @phba: pointer to lpfc hba data structure.
  4284. * @mboxq: pointer to the LPFC_MBOXQ_t structure.
  4285. * @vpd: pointer to the memory to hold resulting port vpd data.
  4286. * @vpd_size: On input, the number of bytes allocated to @vpd.
  4287. * On output, the number of data bytes in @vpd.
  4288. *
  4289. * This routine executes a READ_REV SLI4 mailbox command. In
  4290. * addition, this routine gets the port vpd data.
  4291. *
  4292. * Return codes
  4293. * 0 - successful
  4294. * -ENOMEM - could not allocated memory.
  4295. **/
  4296. static int
  4297. lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
  4298. uint8_t *vpd, uint32_t *vpd_size)
  4299. {
  4300. int rc = 0;
  4301. uint32_t dma_size;
  4302. struct lpfc_dmabuf *dmabuf;
  4303. struct lpfc_mqe *mqe;
  4304. dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
  4305. if (!dmabuf)
  4306. return -ENOMEM;
  4307. /*
  4308. * Get a DMA buffer for the vpd data resulting from the READ_REV
  4309. * mailbox command.
  4310. */
  4311. dma_size = *vpd_size;
  4312. dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
  4313. dma_size,
  4314. &dmabuf->phys,
  4315. GFP_KERNEL);
  4316. if (!dmabuf->virt) {
  4317. kfree(dmabuf);
  4318. return -ENOMEM;
  4319. }
  4320. memset(dmabuf->virt, 0, dma_size);
  4321. /*
  4322. * The SLI4 implementation of READ_REV conflicts at word1,
  4323. * bits 31:16 and SLI4 adds vpd functionality not present
  4324. * in SLI3. This code corrects the conflicts.
  4325. */
  4326. lpfc_read_rev(phba, mboxq);
  4327. mqe = &mboxq->u.mqe;
  4328. mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
  4329. mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
  4330. mqe->un.read_rev.word1 &= 0x0000FFFF;
  4331. bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
  4332. bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
  4333. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  4334. if (rc) {
  4335. dma_free_coherent(&phba->pcidev->dev, dma_size,
  4336. dmabuf->virt, dmabuf->phys);
  4337. kfree(dmabuf);
  4338. return -EIO;
  4339. }
  4340. /*
  4341. * The available vpd length cannot be bigger than the
  4342. * DMA buffer passed to the port. Catch the less than
  4343. * case and update the caller's size.
  4344. */
  4345. if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
  4346. *vpd_size = mqe->un.read_rev.avail_vpd_len;
  4347. memcpy(vpd, dmabuf->virt, *vpd_size);
  4348. dma_free_coherent(&phba->pcidev->dev, dma_size,
  4349. dmabuf->virt, dmabuf->phys);
  4350. kfree(dmabuf);
  4351. return 0;
  4352. }
  4353. /**
  4354. * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
  4355. * @phba: pointer to lpfc hba data structure.
  4356. *
  4357. * This routine retrieves SLI4 device physical port name this PCI function
  4358. * is attached to.
  4359. *
  4360. * Return codes
  4361. * 0 - successful
  4362. * otherwise - failed to retrieve physical port name
  4363. **/
  4364. static int
  4365. lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
  4366. {
  4367. LPFC_MBOXQ_t *mboxq;
  4368. struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
  4369. struct lpfc_controller_attribute *cntl_attr;
  4370. struct lpfc_mbx_get_port_name *get_port_name;
  4371. void *virtaddr = NULL;
  4372. uint32_t alloclen, reqlen;
  4373. uint32_t shdr_status, shdr_add_status;
  4374. union lpfc_sli4_cfg_shdr *shdr;
  4375. char cport_name = 0;
  4376. int rc;
  4377. /* We assume nothing at this point */
  4378. phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
  4379. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
  4380. mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4381. if (!mboxq)
  4382. return -ENOMEM;
  4383. /* obtain link type and link number via READ_CONFIG */
  4384. phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
  4385. lpfc_sli4_read_config(phba);
  4386. if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
  4387. goto retrieve_ppname;
  4388. /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
  4389. reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
  4390. alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
  4391. LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
  4392. LPFC_SLI4_MBX_NEMBED);
  4393. if (alloclen < reqlen) {
  4394. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  4395. "3084 Allocated DMA memory size (%d) is "
  4396. "less than the requested DMA memory size "
  4397. "(%d)\n", alloclen, reqlen);
  4398. rc = -ENOMEM;
  4399. goto out_free_mboxq;
  4400. }
  4401. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  4402. virtaddr = mboxq->sge_array->addr[0];
  4403. mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
  4404. shdr = &mbx_cntl_attr->cfg_shdr;
  4405. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  4406. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  4407. if (shdr_status || shdr_add_status || rc) {
  4408. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  4409. "3085 Mailbox x%x (x%x/x%x) failed, "
  4410. "rc:x%x, status:x%x, add_status:x%x\n",
  4411. bf_get(lpfc_mqe_command, &mboxq->u.mqe),
  4412. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  4413. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  4414. rc, shdr_status, shdr_add_status);
  4415. rc = -ENXIO;
  4416. goto out_free_mboxq;
  4417. }
  4418. cntl_attr = &mbx_cntl_attr->cntl_attr;
  4419. phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
  4420. phba->sli4_hba.lnk_info.lnk_tp =
  4421. bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
  4422. phba->sli4_hba.lnk_info.lnk_no =
  4423. bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
  4424. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  4425. "3086 lnk_type:%d, lnk_numb:%d\n",
  4426. phba->sli4_hba.lnk_info.lnk_tp,
  4427. phba->sli4_hba.lnk_info.lnk_no);
  4428. retrieve_ppname:
  4429. lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
  4430. LPFC_MBOX_OPCODE_GET_PORT_NAME,
  4431. sizeof(struct lpfc_mbx_get_port_name) -
  4432. sizeof(struct lpfc_sli4_cfg_mhdr),
  4433. LPFC_SLI4_MBX_EMBED);
  4434. get_port_name = &mboxq->u.mqe.un.get_port_name;
  4435. shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
  4436. bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
  4437. bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
  4438. phba->sli4_hba.lnk_info.lnk_tp);
  4439. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  4440. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  4441. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  4442. if (shdr_status || shdr_add_status || rc) {
  4443. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  4444. "3087 Mailbox x%x (x%x/x%x) failed: "
  4445. "rc:x%x, status:x%x, add_status:x%x\n",
  4446. bf_get(lpfc_mqe_command, &mboxq->u.mqe),
  4447. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  4448. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  4449. rc, shdr_status, shdr_add_status);
  4450. rc = -ENXIO;
  4451. goto out_free_mboxq;
  4452. }
  4453. switch (phba->sli4_hba.lnk_info.lnk_no) {
  4454. case LPFC_LINK_NUMBER_0:
  4455. cport_name = bf_get(lpfc_mbx_get_port_name_name0,
  4456. &get_port_name->u.response);
  4457. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
  4458. break;
  4459. case LPFC_LINK_NUMBER_1:
  4460. cport_name = bf_get(lpfc_mbx_get_port_name_name1,
  4461. &get_port_name->u.response);
  4462. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
  4463. break;
  4464. case LPFC_LINK_NUMBER_2:
  4465. cport_name = bf_get(lpfc_mbx_get_port_name_name2,
  4466. &get_port_name->u.response);
  4467. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
  4468. break;
  4469. case LPFC_LINK_NUMBER_3:
  4470. cport_name = bf_get(lpfc_mbx_get_port_name_name3,
  4471. &get_port_name->u.response);
  4472. phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
  4473. break;
  4474. default:
  4475. break;
  4476. }
  4477. if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
  4478. phba->Port[0] = cport_name;
  4479. phba->Port[1] = '\0';
  4480. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  4481. "3091 SLI get port name: %s\n", phba->Port);
  4482. }
  4483. out_free_mboxq:
  4484. if (rc != MBX_TIMEOUT) {
  4485. if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
  4486. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  4487. else
  4488. mempool_free(mboxq, phba->mbox_mem_pool);
  4489. }
  4490. return rc;
  4491. }
  4492. /**
  4493. * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
  4494. * @phba: pointer to lpfc hba data structure.
  4495. *
  4496. * This routine is called to explicitly arm the SLI4 device's completion and
  4497. * event queues
  4498. **/
  4499. static void
  4500. lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
  4501. {
  4502. int fcp_eqidx;
  4503. lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
  4504. lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
  4505. fcp_eqidx = 0;
  4506. if (phba->sli4_hba.fcp_cq) {
  4507. do {
  4508. lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
  4509. LPFC_QUEUE_REARM);
  4510. } while (++fcp_eqidx < phba->cfg_fcp_io_channel);
  4511. }
  4512. if (phba->sli4_hba.hba_eq) {
  4513. for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel;
  4514. fcp_eqidx++)
  4515. lpfc_sli4_eq_release(phba->sli4_hba.hba_eq[fcp_eqidx],
  4516. LPFC_QUEUE_REARM);
  4517. }
  4518. }
  4519. /**
  4520. * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
  4521. * @phba: Pointer to HBA context object.
  4522. * @type: The resource extent type.
  4523. * @extnt_count: buffer to hold port available extent count.
  4524. * @extnt_size: buffer to hold element count per extent.
  4525. *
  4526. * This function calls the port and retrievs the number of available
  4527. * extents and their size for a particular extent type.
  4528. *
  4529. * Returns: 0 if successful. Nonzero otherwise.
  4530. **/
  4531. int
  4532. lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
  4533. uint16_t *extnt_count, uint16_t *extnt_size)
  4534. {
  4535. int rc = 0;
  4536. uint32_t length;
  4537. uint32_t mbox_tmo;
  4538. struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
  4539. LPFC_MBOXQ_t *mbox;
  4540. mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4541. if (!mbox)
  4542. return -ENOMEM;
  4543. /* Find out how many extents are available for this resource type */
  4544. length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
  4545. sizeof(struct lpfc_sli4_cfg_mhdr));
  4546. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  4547. LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
  4548. length, LPFC_SLI4_MBX_EMBED);
  4549. /* Send an extents count of 0 - the GET doesn't use it. */
  4550. rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
  4551. LPFC_SLI4_MBX_EMBED);
  4552. if (unlikely(rc)) {
  4553. rc = -EIO;
  4554. goto err_exit;
  4555. }
  4556. if (!phba->sli4_hba.intr_enable)
  4557. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  4558. else {
  4559. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  4560. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  4561. }
  4562. if (unlikely(rc)) {
  4563. rc = -EIO;
  4564. goto err_exit;
  4565. }
  4566. rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
  4567. if (bf_get(lpfc_mbox_hdr_status,
  4568. &rsrc_info->header.cfg_shdr.response)) {
  4569. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
  4570. "2930 Failed to get resource extents "
  4571. "Status 0x%x Add'l Status 0x%x\n",
  4572. bf_get(lpfc_mbox_hdr_status,
  4573. &rsrc_info->header.cfg_shdr.response),
  4574. bf_get(lpfc_mbox_hdr_add_status,
  4575. &rsrc_info->header.cfg_shdr.response));
  4576. rc = -EIO;
  4577. goto err_exit;
  4578. }
  4579. *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
  4580. &rsrc_info->u.rsp);
  4581. *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
  4582. &rsrc_info->u.rsp);
  4583. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  4584. "3162 Retrieved extents type-%d from port: count:%d, "
  4585. "size:%d\n", type, *extnt_count, *extnt_size);
  4586. err_exit:
  4587. mempool_free(mbox, phba->mbox_mem_pool);
  4588. return rc;
  4589. }
  4590. /**
  4591. * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
  4592. * @phba: Pointer to HBA context object.
  4593. * @type: The extent type to check.
  4594. *
  4595. * This function reads the current available extents from the port and checks
  4596. * if the extent count or extent size has changed since the last access.
  4597. * Callers use this routine post port reset to understand if there is a
  4598. * extent reprovisioning requirement.
  4599. *
  4600. * Returns:
  4601. * -Error: error indicates problem.
  4602. * 1: Extent count or size has changed.
  4603. * 0: No changes.
  4604. **/
  4605. static int
  4606. lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
  4607. {
  4608. uint16_t curr_ext_cnt, rsrc_ext_cnt;
  4609. uint16_t size_diff, rsrc_ext_size;
  4610. int rc = 0;
  4611. struct lpfc_rsrc_blks *rsrc_entry;
  4612. struct list_head *rsrc_blk_list = NULL;
  4613. size_diff = 0;
  4614. curr_ext_cnt = 0;
  4615. rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
  4616. &rsrc_ext_cnt,
  4617. &rsrc_ext_size);
  4618. if (unlikely(rc))
  4619. return -EIO;
  4620. switch (type) {
  4621. case LPFC_RSC_TYPE_FCOE_RPI:
  4622. rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
  4623. break;
  4624. case LPFC_RSC_TYPE_FCOE_VPI:
  4625. rsrc_blk_list = &phba->lpfc_vpi_blk_list;
  4626. break;
  4627. case LPFC_RSC_TYPE_FCOE_XRI:
  4628. rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
  4629. break;
  4630. case LPFC_RSC_TYPE_FCOE_VFI:
  4631. rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
  4632. break;
  4633. default:
  4634. break;
  4635. }
  4636. list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
  4637. curr_ext_cnt++;
  4638. if (rsrc_entry->rsrc_size != rsrc_ext_size)
  4639. size_diff++;
  4640. }
  4641. if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
  4642. rc = 1;
  4643. return rc;
  4644. }
  4645. /**
  4646. * lpfc_sli4_cfg_post_extnts -
  4647. * @phba: Pointer to HBA context object.
  4648. * @extnt_cnt - number of available extents.
  4649. * @type - the extent type (rpi, xri, vfi, vpi).
  4650. * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
  4651. * @mbox - pointer to the caller's allocated mailbox structure.
  4652. *
  4653. * This function executes the extents allocation request. It also
  4654. * takes care of the amount of memory needed to allocate or get the
  4655. * allocated extents. It is the caller's responsibility to evaluate
  4656. * the response.
  4657. *
  4658. * Returns:
  4659. * -Error: Error value describes the condition found.
  4660. * 0: if successful
  4661. **/
  4662. static int
  4663. lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
  4664. uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
  4665. {
  4666. int rc = 0;
  4667. uint32_t req_len;
  4668. uint32_t emb_len;
  4669. uint32_t alloc_len, mbox_tmo;
  4670. /* Calculate the total requested length of the dma memory */
  4671. req_len = extnt_cnt * sizeof(uint16_t);
  4672. /*
  4673. * Calculate the size of an embedded mailbox. The uint32_t
  4674. * accounts for extents-specific word.
  4675. */
  4676. emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
  4677. sizeof(uint32_t);
  4678. /*
  4679. * Presume the allocation and response will fit into an embedded
  4680. * mailbox. If not true, reconfigure to a non-embedded mailbox.
  4681. */
  4682. *emb = LPFC_SLI4_MBX_EMBED;
  4683. if (req_len > emb_len) {
  4684. req_len = extnt_cnt * sizeof(uint16_t) +
  4685. sizeof(union lpfc_sli4_cfg_shdr) +
  4686. sizeof(uint32_t);
  4687. *emb = LPFC_SLI4_MBX_NEMBED;
  4688. }
  4689. alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  4690. LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
  4691. req_len, *emb);
  4692. if (alloc_len < req_len) {
  4693. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  4694. "2982 Allocated DMA memory size (x%x) is "
  4695. "less than the requested DMA memory "
  4696. "size (x%x)\n", alloc_len, req_len);
  4697. return -ENOMEM;
  4698. }
  4699. rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
  4700. if (unlikely(rc))
  4701. return -EIO;
  4702. if (!phba->sli4_hba.intr_enable)
  4703. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  4704. else {
  4705. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  4706. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  4707. }
  4708. if (unlikely(rc))
  4709. rc = -EIO;
  4710. return rc;
  4711. }
  4712. /**
  4713. * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
  4714. * @phba: Pointer to HBA context object.
  4715. * @type: The resource extent type to allocate.
  4716. *
  4717. * This function allocates the number of elements for the specified
  4718. * resource type.
  4719. **/
  4720. static int
  4721. lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
  4722. {
  4723. bool emb = false;
  4724. uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
  4725. uint16_t rsrc_id, rsrc_start, j, k;
  4726. uint16_t *ids;
  4727. int i, rc;
  4728. unsigned long longs;
  4729. unsigned long *bmask;
  4730. struct lpfc_rsrc_blks *rsrc_blks;
  4731. LPFC_MBOXQ_t *mbox;
  4732. uint32_t length;
  4733. struct lpfc_id_range *id_array = NULL;
  4734. void *virtaddr = NULL;
  4735. struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
  4736. struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
  4737. struct list_head *ext_blk_list;
  4738. rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
  4739. &rsrc_cnt,
  4740. &rsrc_size);
  4741. if (unlikely(rc))
  4742. return -EIO;
  4743. if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
  4744. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
  4745. "3009 No available Resource Extents "
  4746. "for resource type 0x%x: Count: 0x%x, "
  4747. "Size 0x%x\n", type, rsrc_cnt,
  4748. rsrc_size);
  4749. return -ENOMEM;
  4750. }
  4751. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
  4752. "2903 Post resource extents type-0x%x: "
  4753. "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
  4754. mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4755. if (!mbox)
  4756. return -ENOMEM;
  4757. rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
  4758. if (unlikely(rc)) {
  4759. rc = -EIO;
  4760. goto err_exit;
  4761. }
  4762. /*
  4763. * Figure out where the response is located. Then get local pointers
  4764. * to the response data. The port does not guarantee to respond to
  4765. * all extents counts request so update the local variable with the
  4766. * allocated count from the port.
  4767. */
  4768. if (emb == LPFC_SLI4_MBX_EMBED) {
  4769. rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
  4770. id_array = &rsrc_ext->u.rsp.id[0];
  4771. rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
  4772. } else {
  4773. virtaddr = mbox->sge_array->addr[0];
  4774. n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
  4775. rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
  4776. id_array = &n_rsrc->id;
  4777. }
  4778. longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
  4779. rsrc_id_cnt = rsrc_cnt * rsrc_size;
  4780. /*
  4781. * Based on the resource size and count, correct the base and max
  4782. * resource values.
  4783. */
  4784. length = sizeof(struct lpfc_rsrc_blks);
  4785. switch (type) {
  4786. case LPFC_RSC_TYPE_FCOE_RPI:
  4787. phba->sli4_hba.rpi_bmask = kzalloc(longs *
  4788. sizeof(unsigned long),
  4789. GFP_KERNEL);
  4790. if (unlikely(!phba->sli4_hba.rpi_bmask)) {
  4791. rc = -ENOMEM;
  4792. goto err_exit;
  4793. }
  4794. phba->sli4_hba.rpi_ids = kzalloc(rsrc_id_cnt *
  4795. sizeof(uint16_t),
  4796. GFP_KERNEL);
  4797. if (unlikely(!phba->sli4_hba.rpi_ids)) {
  4798. kfree(phba->sli4_hba.rpi_bmask);
  4799. rc = -ENOMEM;
  4800. goto err_exit;
  4801. }
  4802. /*
  4803. * The next_rpi was initialized with the maximum available
  4804. * count but the port may allocate a smaller number. Catch
  4805. * that case and update the next_rpi.
  4806. */
  4807. phba->sli4_hba.next_rpi = rsrc_id_cnt;
  4808. /* Initialize local ptrs for common extent processing later. */
  4809. bmask = phba->sli4_hba.rpi_bmask;
  4810. ids = phba->sli4_hba.rpi_ids;
  4811. ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
  4812. break;
  4813. case LPFC_RSC_TYPE_FCOE_VPI:
  4814. phba->vpi_bmask = kzalloc(longs *
  4815. sizeof(unsigned long),
  4816. GFP_KERNEL);
  4817. if (unlikely(!phba->vpi_bmask)) {
  4818. rc = -ENOMEM;
  4819. goto err_exit;
  4820. }
  4821. phba->vpi_ids = kzalloc(rsrc_id_cnt *
  4822. sizeof(uint16_t),
  4823. GFP_KERNEL);
  4824. if (unlikely(!phba->vpi_ids)) {
  4825. kfree(phba->vpi_bmask);
  4826. rc = -ENOMEM;
  4827. goto err_exit;
  4828. }
  4829. /* Initialize local ptrs for common extent processing later. */
  4830. bmask = phba->vpi_bmask;
  4831. ids = phba->vpi_ids;
  4832. ext_blk_list = &phba->lpfc_vpi_blk_list;
  4833. break;
  4834. case LPFC_RSC_TYPE_FCOE_XRI:
  4835. phba->sli4_hba.xri_bmask = kzalloc(longs *
  4836. sizeof(unsigned long),
  4837. GFP_KERNEL);
  4838. if (unlikely(!phba->sli4_hba.xri_bmask)) {
  4839. rc = -ENOMEM;
  4840. goto err_exit;
  4841. }
  4842. phba->sli4_hba.max_cfg_param.xri_used = 0;
  4843. phba->sli4_hba.xri_ids = kzalloc(rsrc_id_cnt *
  4844. sizeof(uint16_t),
  4845. GFP_KERNEL);
  4846. if (unlikely(!phba->sli4_hba.xri_ids)) {
  4847. kfree(phba->sli4_hba.xri_bmask);
  4848. rc = -ENOMEM;
  4849. goto err_exit;
  4850. }
  4851. /* Initialize local ptrs for common extent processing later. */
  4852. bmask = phba->sli4_hba.xri_bmask;
  4853. ids = phba->sli4_hba.xri_ids;
  4854. ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
  4855. break;
  4856. case LPFC_RSC_TYPE_FCOE_VFI:
  4857. phba->sli4_hba.vfi_bmask = kzalloc(longs *
  4858. sizeof(unsigned long),
  4859. GFP_KERNEL);
  4860. if (unlikely(!phba->sli4_hba.vfi_bmask)) {
  4861. rc = -ENOMEM;
  4862. goto err_exit;
  4863. }
  4864. phba->sli4_hba.vfi_ids = kzalloc(rsrc_id_cnt *
  4865. sizeof(uint16_t),
  4866. GFP_KERNEL);
  4867. if (unlikely(!phba->sli4_hba.vfi_ids)) {
  4868. kfree(phba->sli4_hba.vfi_bmask);
  4869. rc = -ENOMEM;
  4870. goto err_exit;
  4871. }
  4872. /* Initialize local ptrs for common extent processing later. */
  4873. bmask = phba->sli4_hba.vfi_bmask;
  4874. ids = phba->sli4_hba.vfi_ids;
  4875. ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
  4876. break;
  4877. default:
  4878. /* Unsupported Opcode. Fail call. */
  4879. id_array = NULL;
  4880. bmask = NULL;
  4881. ids = NULL;
  4882. ext_blk_list = NULL;
  4883. goto err_exit;
  4884. }
  4885. /*
  4886. * Complete initializing the extent configuration with the
  4887. * allocated ids assigned to this function. The bitmask serves
  4888. * as an index into the array and manages the available ids. The
  4889. * array just stores the ids communicated to the port via the wqes.
  4890. */
  4891. for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
  4892. if ((i % 2) == 0)
  4893. rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
  4894. &id_array[k]);
  4895. else
  4896. rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
  4897. &id_array[k]);
  4898. rsrc_blks = kzalloc(length, GFP_KERNEL);
  4899. if (unlikely(!rsrc_blks)) {
  4900. rc = -ENOMEM;
  4901. kfree(bmask);
  4902. kfree(ids);
  4903. goto err_exit;
  4904. }
  4905. rsrc_blks->rsrc_start = rsrc_id;
  4906. rsrc_blks->rsrc_size = rsrc_size;
  4907. list_add_tail(&rsrc_blks->list, ext_blk_list);
  4908. rsrc_start = rsrc_id;
  4909. if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0))
  4910. phba->sli4_hba.scsi_xri_start = rsrc_start +
  4911. lpfc_sli4_get_els_iocb_cnt(phba);
  4912. while (rsrc_id < (rsrc_start + rsrc_size)) {
  4913. ids[j] = rsrc_id;
  4914. rsrc_id++;
  4915. j++;
  4916. }
  4917. /* Entire word processed. Get next word.*/
  4918. if ((i % 2) == 1)
  4919. k++;
  4920. }
  4921. err_exit:
  4922. lpfc_sli4_mbox_cmd_free(phba, mbox);
  4923. return rc;
  4924. }
  4925. /**
  4926. * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
  4927. * @phba: Pointer to HBA context object.
  4928. * @type: the extent's type.
  4929. *
  4930. * This function deallocates all extents of a particular resource type.
  4931. * SLI4 does not allow for deallocating a particular extent range. It
  4932. * is the caller's responsibility to release all kernel memory resources.
  4933. **/
  4934. static int
  4935. lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
  4936. {
  4937. int rc;
  4938. uint32_t length, mbox_tmo = 0;
  4939. LPFC_MBOXQ_t *mbox;
  4940. struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
  4941. struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
  4942. mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  4943. if (!mbox)
  4944. return -ENOMEM;
  4945. /*
  4946. * This function sends an embedded mailbox because it only sends the
  4947. * the resource type. All extents of this type are released by the
  4948. * port.
  4949. */
  4950. length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
  4951. sizeof(struct lpfc_sli4_cfg_mhdr));
  4952. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  4953. LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
  4954. length, LPFC_SLI4_MBX_EMBED);
  4955. /* Send an extents count of 0 - the dealloc doesn't use it. */
  4956. rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
  4957. LPFC_SLI4_MBX_EMBED);
  4958. if (unlikely(rc)) {
  4959. rc = -EIO;
  4960. goto out_free_mbox;
  4961. }
  4962. if (!phba->sli4_hba.intr_enable)
  4963. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  4964. else {
  4965. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  4966. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  4967. }
  4968. if (unlikely(rc)) {
  4969. rc = -EIO;
  4970. goto out_free_mbox;
  4971. }
  4972. dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
  4973. if (bf_get(lpfc_mbox_hdr_status,
  4974. &dealloc_rsrc->header.cfg_shdr.response)) {
  4975. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
  4976. "2919 Failed to release resource extents "
  4977. "for type %d - Status 0x%x Add'l Status 0x%x. "
  4978. "Resource memory not released.\n",
  4979. type,
  4980. bf_get(lpfc_mbox_hdr_status,
  4981. &dealloc_rsrc->header.cfg_shdr.response),
  4982. bf_get(lpfc_mbox_hdr_add_status,
  4983. &dealloc_rsrc->header.cfg_shdr.response));
  4984. rc = -EIO;
  4985. goto out_free_mbox;
  4986. }
  4987. /* Release kernel memory resources for the specific type. */
  4988. switch (type) {
  4989. case LPFC_RSC_TYPE_FCOE_VPI:
  4990. kfree(phba->vpi_bmask);
  4991. kfree(phba->vpi_ids);
  4992. bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  4993. list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
  4994. &phba->lpfc_vpi_blk_list, list) {
  4995. list_del_init(&rsrc_blk->list);
  4996. kfree(rsrc_blk);
  4997. }
  4998. break;
  4999. case LPFC_RSC_TYPE_FCOE_XRI:
  5000. kfree(phba->sli4_hba.xri_bmask);
  5001. kfree(phba->sli4_hba.xri_ids);
  5002. list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
  5003. &phba->sli4_hba.lpfc_xri_blk_list, list) {
  5004. list_del_init(&rsrc_blk->list);
  5005. kfree(rsrc_blk);
  5006. }
  5007. break;
  5008. case LPFC_RSC_TYPE_FCOE_VFI:
  5009. kfree(phba->sli4_hba.vfi_bmask);
  5010. kfree(phba->sli4_hba.vfi_ids);
  5011. bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5012. list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
  5013. &phba->sli4_hba.lpfc_vfi_blk_list, list) {
  5014. list_del_init(&rsrc_blk->list);
  5015. kfree(rsrc_blk);
  5016. }
  5017. break;
  5018. case LPFC_RSC_TYPE_FCOE_RPI:
  5019. /* RPI bitmask and physical id array are cleaned up earlier. */
  5020. list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
  5021. &phba->sli4_hba.lpfc_rpi_blk_list, list) {
  5022. list_del_init(&rsrc_blk->list);
  5023. kfree(rsrc_blk);
  5024. }
  5025. break;
  5026. default:
  5027. break;
  5028. }
  5029. bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5030. out_free_mbox:
  5031. mempool_free(mbox, phba->mbox_mem_pool);
  5032. return rc;
  5033. }
  5034. /**
  5035. * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
  5036. * @phba: Pointer to HBA context object.
  5037. *
  5038. * This function allocates all SLI4 resource identifiers.
  5039. **/
  5040. int
  5041. lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
  5042. {
  5043. int i, rc, error = 0;
  5044. uint16_t count, base;
  5045. unsigned long longs;
  5046. if (!phba->sli4_hba.rpi_hdrs_in_use)
  5047. phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
  5048. if (phba->sli4_hba.extents_in_use) {
  5049. /*
  5050. * The port supports resource extents. The XRI, VPI, VFI, RPI
  5051. * resource extent count must be read and allocated before
  5052. * provisioning the resource id arrays.
  5053. */
  5054. if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
  5055. LPFC_IDX_RSRC_RDY) {
  5056. /*
  5057. * Extent-based resources are set - the driver could
  5058. * be in a port reset. Figure out if any corrective
  5059. * actions need to be taken.
  5060. */
  5061. rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
  5062. LPFC_RSC_TYPE_FCOE_VFI);
  5063. if (rc != 0)
  5064. error++;
  5065. rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
  5066. LPFC_RSC_TYPE_FCOE_VPI);
  5067. if (rc != 0)
  5068. error++;
  5069. rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
  5070. LPFC_RSC_TYPE_FCOE_XRI);
  5071. if (rc != 0)
  5072. error++;
  5073. rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
  5074. LPFC_RSC_TYPE_FCOE_RPI);
  5075. if (rc != 0)
  5076. error++;
  5077. /*
  5078. * It's possible that the number of resources
  5079. * provided to this port instance changed between
  5080. * resets. Detect this condition and reallocate
  5081. * resources. Otherwise, there is no action.
  5082. */
  5083. if (error) {
  5084. lpfc_printf_log(phba, KERN_INFO,
  5085. LOG_MBOX | LOG_INIT,
  5086. "2931 Detected extent resource "
  5087. "change. Reallocating all "
  5088. "extents.\n");
  5089. rc = lpfc_sli4_dealloc_extent(phba,
  5090. LPFC_RSC_TYPE_FCOE_VFI);
  5091. rc = lpfc_sli4_dealloc_extent(phba,
  5092. LPFC_RSC_TYPE_FCOE_VPI);
  5093. rc = lpfc_sli4_dealloc_extent(phba,
  5094. LPFC_RSC_TYPE_FCOE_XRI);
  5095. rc = lpfc_sli4_dealloc_extent(phba,
  5096. LPFC_RSC_TYPE_FCOE_RPI);
  5097. } else
  5098. return 0;
  5099. }
  5100. rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
  5101. if (unlikely(rc))
  5102. goto err_exit;
  5103. rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
  5104. if (unlikely(rc))
  5105. goto err_exit;
  5106. rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
  5107. if (unlikely(rc))
  5108. goto err_exit;
  5109. rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
  5110. if (unlikely(rc))
  5111. goto err_exit;
  5112. bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
  5113. LPFC_IDX_RSRC_RDY);
  5114. return rc;
  5115. } else {
  5116. /*
  5117. * The port does not support resource extents. The XRI, VPI,
  5118. * VFI, RPI resource ids were determined from READ_CONFIG.
  5119. * Just allocate the bitmasks and provision the resource id
  5120. * arrays. If a port reset is active, the resources don't
  5121. * need any action - just exit.
  5122. */
  5123. if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
  5124. LPFC_IDX_RSRC_RDY) {
  5125. lpfc_sli4_dealloc_resource_identifiers(phba);
  5126. lpfc_sli4_remove_rpis(phba);
  5127. }
  5128. /* RPIs. */
  5129. count = phba->sli4_hba.max_cfg_param.max_rpi;
  5130. if (count <= 0) {
  5131. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5132. "3279 Invalid provisioning of "
  5133. "rpi:%d\n", count);
  5134. rc = -EINVAL;
  5135. goto err_exit;
  5136. }
  5137. base = phba->sli4_hba.max_cfg_param.rpi_base;
  5138. longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
  5139. phba->sli4_hba.rpi_bmask = kzalloc(longs *
  5140. sizeof(unsigned long),
  5141. GFP_KERNEL);
  5142. if (unlikely(!phba->sli4_hba.rpi_bmask)) {
  5143. rc = -ENOMEM;
  5144. goto err_exit;
  5145. }
  5146. phba->sli4_hba.rpi_ids = kzalloc(count *
  5147. sizeof(uint16_t),
  5148. GFP_KERNEL);
  5149. if (unlikely(!phba->sli4_hba.rpi_ids)) {
  5150. rc = -ENOMEM;
  5151. goto free_rpi_bmask;
  5152. }
  5153. for (i = 0; i < count; i++)
  5154. phba->sli4_hba.rpi_ids[i] = base + i;
  5155. /* VPIs. */
  5156. count = phba->sli4_hba.max_cfg_param.max_vpi;
  5157. if (count <= 0) {
  5158. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5159. "3280 Invalid provisioning of "
  5160. "vpi:%d\n", count);
  5161. rc = -EINVAL;
  5162. goto free_rpi_ids;
  5163. }
  5164. base = phba->sli4_hba.max_cfg_param.vpi_base;
  5165. longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
  5166. phba->vpi_bmask = kzalloc(longs *
  5167. sizeof(unsigned long),
  5168. GFP_KERNEL);
  5169. if (unlikely(!phba->vpi_bmask)) {
  5170. rc = -ENOMEM;
  5171. goto free_rpi_ids;
  5172. }
  5173. phba->vpi_ids = kzalloc(count *
  5174. sizeof(uint16_t),
  5175. GFP_KERNEL);
  5176. if (unlikely(!phba->vpi_ids)) {
  5177. rc = -ENOMEM;
  5178. goto free_vpi_bmask;
  5179. }
  5180. for (i = 0; i < count; i++)
  5181. phba->vpi_ids[i] = base + i;
  5182. /* XRIs. */
  5183. count = phba->sli4_hba.max_cfg_param.max_xri;
  5184. if (count <= 0) {
  5185. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5186. "3281 Invalid provisioning of "
  5187. "xri:%d\n", count);
  5188. rc = -EINVAL;
  5189. goto free_vpi_ids;
  5190. }
  5191. base = phba->sli4_hba.max_cfg_param.xri_base;
  5192. longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
  5193. phba->sli4_hba.xri_bmask = kzalloc(longs *
  5194. sizeof(unsigned long),
  5195. GFP_KERNEL);
  5196. if (unlikely(!phba->sli4_hba.xri_bmask)) {
  5197. rc = -ENOMEM;
  5198. goto free_vpi_ids;
  5199. }
  5200. phba->sli4_hba.max_cfg_param.xri_used = 0;
  5201. phba->sli4_hba.xri_ids = kzalloc(count *
  5202. sizeof(uint16_t),
  5203. GFP_KERNEL);
  5204. if (unlikely(!phba->sli4_hba.xri_ids)) {
  5205. rc = -ENOMEM;
  5206. goto free_xri_bmask;
  5207. }
  5208. for (i = 0; i < count; i++)
  5209. phba->sli4_hba.xri_ids[i] = base + i;
  5210. /* VFIs. */
  5211. count = phba->sli4_hba.max_cfg_param.max_vfi;
  5212. if (count <= 0) {
  5213. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5214. "3282 Invalid provisioning of "
  5215. "vfi:%d\n", count);
  5216. rc = -EINVAL;
  5217. goto free_xri_ids;
  5218. }
  5219. base = phba->sli4_hba.max_cfg_param.vfi_base;
  5220. longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
  5221. phba->sli4_hba.vfi_bmask = kzalloc(longs *
  5222. sizeof(unsigned long),
  5223. GFP_KERNEL);
  5224. if (unlikely(!phba->sli4_hba.vfi_bmask)) {
  5225. rc = -ENOMEM;
  5226. goto free_xri_ids;
  5227. }
  5228. phba->sli4_hba.vfi_ids = kzalloc(count *
  5229. sizeof(uint16_t),
  5230. GFP_KERNEL);
  5231. if (unlikely(!phba->sli4_hba.vfi_ids)) {
  5232. rc = -ENOMEM;
  5233. goto free_vfi_bmask;
  5234. }
  5235. for (i = 0; i < count; i++)
  5236. phba->sli4_hba.vfi_ids[i] = base + i;
  5237. /*
  5238. * Mark all resources ready. An HBA reset doesn't need
  5239. * to reset the initialization.
  5240. */
  5241. bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
  5242. LPFC_IDX_RSRC_RDY);
  5243. return 0;
  5244. }
  5245. free_vfi_bmask:
  5246. kfree(phba->sli4_hba.vfi_bmask);
  5247. free_xri_ids:
  5248. kfree(phba->sli4_hba.xri_ids);
  5249. free_xri_bmask:
  5250. kfree(phba->sli4_hba.xri_bmask);
  5251. free_vpi_ids:
  5252. kfree(phba->vpi_ids);
  5253. free_vpi_bmask:
  5254. kfree(phba->vpi_bmask);
  5255. free_rpi_ids:
  5256. kfree(phba->sli4_hba.rpi_ids);
  5257. free_rpi_bmask:
  5258. kfree(phba->sli4_hba.rpi_bmask);
  5259. err_exit:
  5260. return rc;
  5261. }
  5262. /**
  5263. * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
  5264. * @phba: Pointer to HBA context object.
  5265. *
  5266. * This function allocates the number of elements for the specified
  5267. * resource type.
  5268. **/
  5269. int
  5270. lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
  5271. {
  5272. if (phba->sli4_hba.extents_in_use) {
  5273. lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
  5274. lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
  5275. lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
  5276. lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
  5277. } else {
  5278. kfree(phba->vpi_bmask);
  5279. kfree(phba->vpi_ids);
  5280. bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5281. kfree(phba->sli4_hba.xri_bmask);
  5282. kfree(phba->sli4_hba.xri_ids);
  5283. kfree(phba->sli4_hba.vfi_bmask);
  5284. kfree(phba->sli4_hba.vfi_ids);
  5285. bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5286. bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  5287. }
  5288. return 0;
  5289. }
  5290. /**
  5291. * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
  5292. * @phba: Pointer to HBA context object.
  5293. * @type: The resource extent type.
  5294. * @extnt_count: buffer to hold port extent count response
  5295. * @extnt_size: buffer to hold port extent size response.
  5296. *
  5297. * This function calls the port to read the host allocated extents
  5298. * for a particular type.
  5299. **/
  5300. int
  5301. lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
  5302. uint16_t *extnt_cnt, uint16_t *extnt_size)
  5303. {
  5304. bool emb;
  5305. int rc = 0;
  5306. uint16_t curr_blks = 0;
  5307. uint32_t req_len, emb_len;
  5308. uint32_t alloc_len, mbox_tmo;
  5309. struct list_head *blk_list_head;
  5310. struct lpfc_rsrc_blks *rsrc_blk;
  5311. LPFC_MBOXQ_t *mbox;
  5312. void *virtaddr = NULL;
  5313. struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
  5314. struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
  5315. union lpfc_sli4_cfg_shdr *shdr;
  5316. switch (type) {
  5317. case LPFC_RSC_TYPE_FCOE_VPI:
  5318. blk_list_head = &phba->lpfc_vpi_blk_list;
  5319. break;
  5320. case LPFC_RSC_TYPE_FCOE_XRI:
  5321. blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
  5322. break;
  5323. case LPFC_RSC_TYPE_FCOE_VFI:
  5324. blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
  5325. break;
  5326. case LPFC_RSC_TYPE_FCOE_RPI:
  5327. blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
  5328. break;
  5329. default:
  5330. return -EIO;
  5331. }
  5332. /* Count the number of extents currently allocatd for this type. */
  5333. list_for_each_entry(rsrc_blk, blk_list_head, list) {
  5334. if (curr_blks == 0) {
  5335. /*
  5336. * The GET_ALLOCATED mailbox does not return the size,
  5337. * just the count. The size should be just the size
  5338. * stored in the current allocated block and all sizes
  5339. * for an extent type are the same so set the return
  5340. * value now.
  5341. */
  5342. *extnt_size = rsrc_blk->rsrc_size;
  5343. }
  5344. curr_blks++;
  5345. }
  5346. /* Calculate the total requested length of the dma memory. */
  5347. req_len = curr_blks * sizeof(uint16_t);
  5348. /*
  5349. * Calculate the size of an embedded mailbox. The uint32_t
  5350. * accounts for extents-specific word.
  5351. */
  5352. emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
  5353. sizeof(uint32_t);
  5354. /*
  5355. * Presume the allocation and response will fit into an embedded
  5356. * mailbox. If not true, reconfigure to a non-embedded mailbox.
  5357. */
  5358. emb = LPFC_SLI4_MBX_EMBED;
  5359. req_len = emb_len;
  5360. if (req_len > emb_len) {
  5361. req_len = curr_blks * sizeof(uint16_t) +
  5362. sizeof(union lpfc_sli4_cfg_shdr) +
  5363. sizeof(uint32_t);
  5364. emb = LPFC_SLI4_MBX_NEMBED;
  5365. }
  5366. mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  5367. if (!mbox)
  5368. return -ENOMEM;
  5369. memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
  5370. alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  5371. LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
  5372. req_len, emb);
  5373. if (alloc_len < req_len) {
  5374. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  5375. "2983 Allocated DMA memory size (x%x) is "
  5376. "less than the requested DMA memory "
  5377. "size (x%x)\n", alloc_len, req_len);
  5378. rc = -ENOMEM;
  5379. goto err_exit;
  5380. }
  5381. rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
  5382. if (unlikely(rc)) {
  5383. rc = -EIO;
  5384. goto err_exit;
  5385. }
  5386. if (!phba->sli4_hba.intr_enable)
  5387. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  5388. else {
  5389. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  5390. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  5391. }
  5392. if (unlikely(rc)) {
  5393. rc = -EIO;
  5394. goto err_exit;
  5395. }
  5396. /*
  5397. * Figure out where the response is located. Then get local pointers
  5398. * to the response data. The port does not guarantee to respond to
  5399. * all extents counts request so update the local variable with the
  5400. * allocated count from the port.
  5401. */
  5402. if (emb == LPFC_SLI4_MBX_EMBED) {
  5403. rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
  5404. shdr = &rsrc_ext->header.cfg_shdr;
  5405. *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
  5406. } else {
  5407. virtaddr = mbox->sge_array->addr[0];
  5408. n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
  5409. shdr = &n_rsrc->cfg_shdr;
  5410. *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
  5411. }
  5412. if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
  5413. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
  5414. "2984 Failed to read allocated resources "
  5415. "for type %d - Status 0x%x Add'l Status 0x%x.\n",
  5416. type,
  5417. bf_get(lpfc_mbox_hdr_status, &shdr->response),
  5418. bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
  5419. rc = -EIO;
  5420. goto err_exit;
  5421. }
  5422. err_exit:
  5423. lpfc_sli4_mbox_cmd_free(phba, mbox);
  5424. return rc;
  5425. }
  5426. /**
  5427. * lpfc_sli4_repost_els_sgl_list - Repsot the els buffers sgl pages as block
  5428. * @phba: pointer to lpfc hba data structure.
  5429. *
  5430. * This routine walks the list of els buffers that have been allocated and
  5431. * repost them to the port by using SGL block post. This is needed after a
  5432. * pci_function_reset/warm_start or start. It attempts to construct blocks
  5433. * of els buffer sgls which contains contiguous xris and uses the non-embedded
  5434. * SGL block post mailbox commands to post them to the port. For single els
  5435. * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
  5436. * mailbox command for posting.
  5437. *
  5438. * Returns: 0 = success, non-zero failure.
  5439. **/
  5440. static int
  5441. lpfc_sli4_repost_els_sgl_list(struct lpfc_hba *phba)
  5442. {
  5443. struct lpfc_sglq *sglq_entry = NULL;
  5444. struct lpfc_sglq *sglq_entry_next = NULL;
  5445. struct lpfc_sglq *sglq_entry_first = NULL;
  5446. int status, post_cnt = 0, num_posted = 0, block_cnt = 0;
  5447. int last_xritag = NO_XRI;
  5448. LIST_HEAD(prep_sgl_list);
  5449. LIST_HEAD(blck_sgl_list);
  5450. LIST_HEAD(allc_sgl_list);
  5451. LIST_HEAD(post_sgl_list);
  5452. LIST_HEAD(free_sgl_list);
  5453. spin_lock_irq(&phba->hbalock);
  5454. list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &allc_sgl_list);
  5455. spin_unlock_irq(&phba->hbalock);
  5456. list_for_each_entry_safe(sglq_entry, sglq_entry_next,
  5457. &allc_sgl_list, list) {
  5458. list_del_init(&sglq_entry->list);
  5459. block_cnt++;
  5460. if ((last_xritag != NO_XRI) &&
  5461. (sglq_entry->sli4_xritag != last_xritag + 1)) {
  5462. /* a hole in xri block, form a sgl posting block */
  5463. list_splice_init(&prep_sgl_list, &blck_sgl_list);
  5464. post_cnt = block_cnt - 1;
  5465. /* prepare list for next posting block */
  5466. list_add_tail(&sglq_entry->list, &prep_sgl_list);
  5467. block_cnt = 1;
  5468. } else {
  5469. /* prepare list for next posting block */
  5470. list_add_tail(&sglq_entry->list, &prep_sgl_list);
  5471. /* enough sgls for non-embed sgl mbox command */
  5472. if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
  5473. list_splice_init(&prep_sgl_list,
  5474. &blck_sgl_list);
  5475. post_cnt = block_cnt;
  5476. block_cnt = 0;
  5477. }
  5478. }
  5479. num_posted++;
  5480. /* keep track of last sgl's xritag */
  5481. last_xritag = sglq_entry->sli4_xritag;
  5482. /* end of repost sgl list condition for els buffers */
  5483. if (num_posted == phba->sli4_hba.els_xri_cnt) {
  5484. if (post_cnt == 0) {
  5485. list_splice_init(&prep_sgl_list,
  5486. &blck_sgl_list);
  5487. post_cnt = block_cnt;
  5488. } else if (block_cnt == 1) {
  5489. status = lpfc_sli4_post_sgl(phba,
  5490. sglq_entry->phys, 0,
  5491. sglq_entry->sli4_xritag);
  5492. if (!status) {
  5493. /* successful, put sgl to posted list */
  5494. list_add_tail(&sglq_entry->list,
  5495. &post_sgl_list);
  5496. } else {
  5497. /* Failure, put sgl to free list */
  5498. lpfc_printf_log(phba, KERN_WARNING,
  5499. LOG_SLI,
  5500. "3159 Failed to post els "
  5501. "sgl, xritag:x%x\n",
  5502. sglq_entry->sli4_xritag);
  5503. list_add_tail(&sglq_entry->list,
  5504. &free_sgl_list);
  5505. spin_lock_irq(&phba->hbalock);
  5506. phba->sli4_hba.els_xri_cnt--;
  5507. spin_unlock_irq(&phba->hbalock);
  5508. }
  5509. }
  5510. }
  5511. /* continue until a nembed page worth of sgls */
  5512. if (post_cnt == 0)
  5513. continue;
  5514. /* post the els buffer list sgls as a block */
  5515. status = lpfc_sli4_post_els_sgl_list(phba, &blck_sgl_list,
  5516. post_cnt);
  5517. if (!status) {
  5518. /* success, put sgl list to posted sgl list */
  5519. list_splice_init(&blck_sgl_list, &post_sgl_list);
  5520. } else {
  5521. /* Failure, put sgl list to free sgl list */
  5522. sglq_entry_first = list_first_entry(&blck_sgl_list,
  5523. struct lpfc_sglq,
  5524. list);
  5525. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  5526. "3160 Failed to post els sgl-list, "
  5527. "xritag:x%x-x%x\n",
  5528. sglq_entry_first->sli4_xritag,
  5529. (sglq_entry_first->sli4_xritag +
  5530. post_cnt - 1));
  5531. list_splice_init(&blck_sgl_list, &free_sgl_list);
  5532. spin_lock_irq(&phba->hbalock);
  5533. phba->sli4_hba.els_xri_cnt -= post_cnt;
  5534. spin_unlock_irq(&phba->hbalock);
  5535. }
  5536. /* don't reset xirtag due to hole in xri block */
  5537. if (block_cnt == 0)
  5538. last_xritag = NO_XRI;
  5539. /* reset els sgl post count for next round of posting */
  5540. post_cnt = 0;
  5541. }
  5542. /* free the els sgls failed to post */
  5543. lpfc_free_sgl_list(phba, &free_sgl_list);
  5544. /* push els sgls posted to the availble list */
  5545. if (!list_empty(&post_sgl_list)) {
  5546. spin_lock_irq(&phba->hbalock);
  5547. list_splice_init(&post_sgl_list,
  5548. &phba->sli4_hba.lpfc_sgl_list);
  5549. spin_unlock_irq(&phba->hbalock);
  5550. } else {
  5551. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  5552. "3161 Failure to post els sgl to port.\n");
  5553. return -EIO;
  5554. }
  5555. return 0;
  5556. }
  5557. /**
  5558. * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
  5559. * @phba: Pointer to HBA context object.
  5560. *
  5561. * This function is the main SLI4 device intialization PCI function. This
  5562. * function is called by the HBA intialization code, HBA reset code and
  5563. * HBA error attention handler code. Caller is not required to hold any
  5564. * locks.
  5565. **/
  5566. int
  5567. lpfc_sli4_hba_setup(struct lpfc_hba *phba)
  5568. {
  5569. int rc;
  5570. LPFC_MBOXQ_t *mboxq;
  5571. struct lpfc_mqe *mqe;
  5572. uint8_t *vpd;
  5573. uint32_t vpd_size;
  5574. uint32_t ftr_rsp = 0;
  5575. struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
  5576. struct lpfc_vport *vport = phba->pport;
  5577. struct lpfc_dmabuf *mp;
  5578. /* Perform a PCI function reset to start from clean */
  5579. rc = lpfc_pci_function_reset(phba);
  5580. if (unlikely(rc))
  5581. return -ENODEV;
  5582. /* Check the HBA Host Status Register for readyness */
  5583. rc = lpfc_sli4_post_status_check(phba);
  5584. if (unlikely(rc))
  5585. return -ENODEV;
  5586. else {
  5587. spin_lock_irq(&phba->hbalock);
  5588. phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
  5589. spin_unlock_irq(&phba->hbalock);
  5590. }
  5591. /*
  5592. * Allocate a single mailbox container for initializing the
  5593. * port.
  5594. */
  5595. mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  5596. if (!mboxq)
  5597. return -ENOMEM;
  5598. /* Issue READ_REV to collect vpd and FW information. */
  5599. vpd_size = SLI4_PAGE_SIZE;
  5600. vpd = kzalloc(vpd_size, GFP_KERNEL);
  5601. if (!vpd) {
  5602. rc = -ENOMEM;
  5603. goto out_free_mbox;
  5604. }
  5605. rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
  5606. if (unlikely(rc)) {
  5607. kfree(vpd);
  5608. goto out_free_mbox;
  5609. }
  5610. mqe = &mboxq->u.mqe;
  5611. phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
  5612. if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
  5613. phba->hba_flag |= HBA_FCOE_MODE;
  5614. else
  5615. phba->hba_flag &= ~HBA_FCOE_MODE;
  5616. if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
  5617. LPFC_DCBX_CEE_MODE)
  5618. phba->hba_flag |= HBA_FIP_SUPPORT;
  5619. else
  5620. phba->hba_flag &= ~HBA_FIP_SUPPORT;
  5621. phba->hba_flag &= ~HBA_FCP_IOQ_FLUSH;
  5622. if (phba->sli_rev != LPFC_SLI_REV4) {
  5623. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5624. "0376 READ_REV Error. SLI Level %d "
  5625. "FCoE enabled %d\n",
  5626. phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
  5627. rc = -EIO;
  5628. kfree(vpd);
  5629. goto out_free_mbox;
  5630. }
  5631. /*
  5632. * Continue initialization with default values even if driver failed
  5633. * to read FCoE param config regions, only read parameters if the
  5634. * board is FCoE
  5635. */
  5636. if (phba->hba_flag & HBA_FCOE_MODE &&
  5637. lpfc_sli4_read_fcoe_params(phba))
  5638. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
  5639. "2570 Failed to read FCoE parameters\n");
  5640. /*
  5641. * Retrieve sli4 device physical port name, failure of doing it
  5642. * is considered as non-fatal.
  5643. */
  5644. rc = lpfc_sli4_retrieve_pport_name(phba);
  5645. if (!rc)
  5646. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  5647. "3080 Successful retrieving SLI4 device "
  5648. "physical port name: %s.\n", phba->Port);
  5649. /*
  5650. * Evaluate the read rev and vpd data. Populate the driver
  5651. * state with the results. If this routine fails, the failure
  5652. * is not fatal as the driver will use generic values.
  5653. */
  5654. rc = lpfc_parse_vpd(phba, vpd, vpd_size);
  5655. if (unlikely(!rc)) {
  5656. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5657. "0377 Error %d parsing vpd. "
  5658. "Using defaults.\n", rc);
  5659. rc = 0;
  5660. }
  5661. kfree(vpd);
  5662. /* Save information as VPD data */
  5663. phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
  5664. phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
  5665. phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
  5666. phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
  5667. &mqe->un.read_rev);
  5668. phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
  5669. &mqe->un.read_rev);
  5670. phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
  5671. &mqe->un.read_rev);
  5672. phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
  5673. &mqe->un.read_rev);
  5674. phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
  5675. memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
  5676. phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
  5677. memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
  5678. phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
  5679. memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
  5680. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  5681. "(%d):0380 READ_REV Status x%x "
  5682. "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
  5683. mboxq->vport ? mboxq->vport->vpi : 0,
  5684. bf_get(lpfc_mqe_status, mqe),
  5685. phba->vpd.rev.opFwName,
  5686. phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
  5687. phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
  5688. /*
  5689. * Discover the port's supported feature set and match it against the
  5690. * hosts requests.
  5691. */
  5692. lpfc_request_features(phba, mboxq);
  5693. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  5694. if (unlikely(rc)) {
  5695. rc = -EIO;
  5696. goto out_free_mbox;
  5697. }
  5698. /*
  5699. * The port must support FCP initiator mode as this is the
  5700. * only mode running in the host.
  5701. */
  5702. if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
  5703. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
  5704. "0378 No support for fcpi mode.\n");
  5705. ftr_rsp++;
  5706. }
  5707. if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
  5708. phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
  5709. else
  5710. phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
  5711. /*
  5712. * If the port cannot support the host's requested features
  5713. * then turn off the global config parameters to disable the
  5714. * feature in the driver. This is not a fatal error.
  5715. */
  5716. phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
  5717. if (phba->cfg_enable_bg) {
  5718. if (bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))
  5719. phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
  5720. else
  5721. ftr_rsp++;
  5722. }
  5723. if (phba->max_vpi && phba->cfg_enable_npiv &&
  5724. !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
  5725. ftr_rsp++;
  5726. if (ftr_rsp) {
  5727. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
  5728. "0379 Feature Mismatch Data: x%08x %08x "
  5729. "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
  5730. mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
  5731. phba->cfg_enable_npiv, phba->max_vpi);
  5732. if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
  5733. phba->cfg_enable_bg = 0;
  5734. if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
  5735. phba->cfg_enable_npiv = 0;
  5736. }
  5737. /* These SLI3 features are assumed in SLI4 */
  5738. spin_lock_irq(&phba->hbalock);
  5739. phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
  5740. spin_unlock_irq(&phba->hbalock);
  5741. /*
  5742. * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
  5743. * calls depends on these resources to complete port setup.
  5744. */
  5745. rc = lpfc_sli4_alloc_resource_identifiers(phba);
  5746. if (rc) {
  5747. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5748. "2920 Failed to alloc Resource IDs "
  5749. "rc = x%x\n", rc);
  5750. goto out_free_mbox;
  5751. }
  5752. /* Read the port's service parameters. */
  5753. rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
  5754. if (rc) {
  5755. phba->link_state = LPFC_HBA_ERROR;
  5756. rc = -ENOMEM;
  5757. goto out_free_mbox;
  5758. }
  5759. mboxq->vport = vport;
  5760. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  5761. mp = (struct lpfc_dmabuf *) mboxq->context1;
  5762. if (rc == MBX_SUCCESS) {
  5763. memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
  5764. rc = 0;
  5765. }
  5766. /*
  5767. * This memory was allocated by the lpfc_read_sparam routine. Release
  5768. * it to the mbuf pool.
  5769. */
  5770. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  5771. kfree(mp);
  5772. mboxq->context1 = NULL;
  5773. if (unlikely(rc)) {
  5774. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5775. "0382 READ_SPARAM command failed "
  5776. "status %d, mbxStatus x%x\n",
  5777. rc, bf_get(lpfc_mqe_status, mqe));
  5778. phba->link_state = LPFC_HBA_ERROR;
  5779. rc = -EIO;
  5780. goto out_free_mbox;
  5781. }
  5782. lpfc_update_vport_wwn(vport);
  5783. /* Update the fc_host data structures with new wwn. */
  5784. fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
  5785. fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
  5786. /* update host els and scsi xri-sgl sizes and mappings */
  5787. rc = lpfc_sli4_xri_sgl_update(phba);
  5788. if (unlikely(rc)) {
  5789. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5790. "1400 Failed to update xri-sgl size and "
  5791. "mapping: %d\n", rc);
  5792. goto out_free_mbox;
  5793. }
  5794. /* register the els sgl pool to the port */
  5795. rc = lpfc_sli4_repost_els_sgl_list(phba);
  5796. if (unlikely(rc)) {
  5797. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5798. "0582 Error %d during els sgl post "
  5799. "operation\n", rc);
  5800. rc = -ENODEV;
  5801. goto out_free_mbox;
  5802. }
  5803. /* register the allocated scsi sgl pool to the port */
  5804. rc = lpfc_sli4_repost_scsi_sgl_list(phba);
  5805. if (unlikely(rc)) {
  5806. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5807. "0383 Error %d during scsi sgl post "
  5808. "operation\n", rc);
  5809. /* Some Scsi buffers were moved to the abort scsi list */
  5810. /* A pci function reset will repost them */
  5811. rc = -ENODEV;
  5812. goto out_free_mbox;
  5813. }
  5814. /* Post the rpi header region to the device. */
  5815. rc = lpfc_sli4_post_all_rpi_hdrs(phba);
  5816. if (unlikely(rc)) {
  5817. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5818. "0393 Error %d during rpi post operation\n",
  5819. rc);
  5820. rc = -ENODEV;
  5821. goto out_free_mbox;
  5822. }
  5823. lpfc_sli4_node_prep(phba);
  5824. /* Create all the SLI4 queues */
  5825. rc = lpfc_sli4_queue_create(phba);
  5826. if (rc) {
  5827. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  5828. "3089 Failed to allocate queues\n");
  5829. rc = -ENODEV;
  5830. goto out_stop_timers;
  5831. }
  5832. /* Set up all the queues to the device */
  5833. rc = lpfc_sli4_queue_setup(phba);
  5834. if (unlikely(rc)) {
  5835. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5836. "0381 Error %d during queue setup.\n ", rc);
  5837. goto out_destroy_queue;
  5838. }
  5839. /* Arm the CQs and then EQs on device */
  5840. lpfc_sli4_arm_cqeq_intr(phba);
  5841. /* Indicate device interrupt mode */
  5842. phba->sli4_hba.intr_enable = 1;
  5843. /* Allow asynchronous mailbox command to go through */
  5844. spin_lock_irq(&phba->hbalock);
  5845. phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
  5846. spin_unlock_irq(&phba->hbalock);
  5847. /* Post receive buffers to the device */
  5848. lpfc_sli4_rb_setup(phba);
  5849. /* Reset HBA FCF states after HBA reset */
  5850. phba->fcf.fcf_flag = 0;
  5851. phba->fcf.current_rec.flag = 0;
  5852. /* Start the ELS watchdog timer */
  5853. mod_timer(&vport->els_tmofunc,
  5854. jiffies + HZ * (phba->fc_ratov * 2));
  5855. /* Start heart beat timer */
  5856. mod_timer(&phba->hb_tmofunc,
  5857. jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
  5858. phba->hb_outstanding = 0;
  5859. phba->last_completion_time = jiffies;
  5860. /* Start error attention (ERATT) polling timer */
  5861. mod_timer(&phba->eratt_poll, jiffies + HZ * LPFC_ERATT_POLL_INTERVAL);
  5862. /* Enable PCIe device Advanced Error Reporting (AER) if configured */
  5863. if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
  5864. rc = pci_enable_pcie_error_reporting(phba->pcidev);
  5865. if (!rc) {
  5866. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  5867. "2829 This device supports "
  5868. "Advanced Error Reporting (AER)\n");
  5869. spin_lock_irq(&phba->hbalock);
  5870. phba->hba_flag |= HBA_AER_ENABLED;
  5871. spin_unlock_irq(&phba->hbalock);
  5872. } else {
  5873. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  5874. "2830 This device does not support "
  5875. "Advanced Error Reporting (AER)\n");
  5876. phba->cfg_aer_support = 0;
  5877. }
  5878. rc = 0;
  5879. }
  5880. if (!(phba->hba_flag & HBA_FCOE_MODE)) {
  5881. /*
  5882. * The FC Port needs to register FCFI (index 0)
  5883. */
  5884. lpfc_reg_fcfi(phba, mboxq);
  5885. mboxq->vport = phba->pport;
  5886. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  5887. if (rc != MBX_SUCCESS)
  5888. goto out_unset_queue;
  5889. rc = 0;
  5890. phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
  5891. &mboxq->u.mqe.un.reg_fcfi);
  5892. /* Check if the port is configured to be disabled */
  5893. lpfc_sli_read_link_ste(phba);
  5894. }
  5895. /*
  5896. * The port is ready, set the host's link state to LINK_DOWN
  5897. * in preparation for link interrupts.
  5898. */
  5899. spin_lock_irq(&phba->hbalock);
  5900. phba->link_state = LPFC_LINK_DOWN;
  5901. spin_unlock_irq(&phba->hbalock);
  5902. if (!(phba->hba_flag & HBA_FCOE_MODE) &&
  5903. (phba->hba_flag & LINK_DISABLED)) {
  5904. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
  5905. "3103 Adapter Link is disabled.\n");
  5906. lpfc_down_link(phba, mboxq);
  5907. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  5908. if (rc != MBX_SUCCESS) {
  5909. lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
  5910. "3104 Adapter failed to issue "
  5911. "DOWN_LINK mbox cmd, rc:x%x\n", rc);
  5912. goto out_unset_queue;
  5913. }
  5914. } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
  5915. /* don't perform init_link on SLI4 FC port loopback test */
  5916. if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
  5917. rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
  5918. if (rc)
  5919. goto out_unset_queue;
  5920. }
  5921. }
  5922. mempool_free(mboxq, phba->mbox_mem_pool);
  5923. return rc;
  5924. out_unset_queue:
  5925. /* Unset all the queues set up in this routine when error out */
  5926. lpfc_sli4_queue_unset(phba);
  5927. out_destroy_queue:
  5928. lpfc_sli4_queue_destroy(phba);
  5929. out_stop_timers:
  5930. lpfc_stop_hba_timers(phba);
  5931. out_free_mbox:
  5932. mempool_free(mboxq, phba->mbox_mem_pool);
  5933. return rc;
  5934. }
  5935. /**
  5936. * lpfc_mbox_timeout - Timeout call back function for mbox timer
  5937. * @ptr: context object - pointer to hba structure.
  5938. *
  5939. * This is the callback function for mailbox timer. The mailbox
  5940. * timer is armed when a new mailbox command is issued and the timer
  5941. * is deleted when the mailbox complete. The function is called by
  5942. * the kernel timer code when a mailbox does not complete within
  5943. * expected time. This function wakes up the worker thread to
  5944. * process the mailbox timeout and returns. All the processing is
  5945. * done by the worker thread function lpfc_mbox_timeout_handler.
  5946. **/
  5947. void
  5948. lpfc_mbox_timeout(unsigned long ptr)
  5949. {
  5950. struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
  5951. unsigned long iflag;
  5952. uint32_t tmo_posted;
  5953. spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
  5954. tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
  5955. if (!tmo_posted)
  5956. phba->pport->work_port_events |= WORKER_MBOX_TMO;
  5957. spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
  5958. if (!tmo_posted)
  5959. lpfc_worker_wake_up(phba);
  5960. return;
  5961. }
  5962. /**
  5963. * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
  5964. * @phba: Pointer to HBA context object.
  5965. *
  5966. * This function is called from worker thread when a mailbox command times out.
  5967. * The caller is not required to hold any locks. This function will reset the
  5968. * HBA and recover all the pending commands.
  5969. **/
  5970. void
  5971. lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
  5972. {
  5973. LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
  5974. MAILBOX_t *mb = &pmbox->u.mb;
  5975. struct lpfc_sli *psli = &phba->sli;
  5976. struct lpfc_sli_ring *pring;
  5977. /* Check the pmbox pointer first. There is a race condition
  5978. * between the mbox timeout handler getting executed in the
  5979. * worklist and the mailbox actually completing. When this
  5980. * race condition occurs, the mbox_active will be NULL.
  5981. */
  5982. spin_lock_irq(&phba->hbalock);
  5983. if (pmbox == NULL) {
  5984. lpfc_printf_log(phba, KERN_WARNING,
  5985. LOG_MBOX | LOG_SLI,
  5986. "0353 Active Mailbox cleared - mailbox timeout "
  5987. "exiting\n");
  5988. spin_unlock_irq(&phba->hbalock);
  5989. return;
  5990. }
  5991. /* Mbox cmd <mbxCommand> timeout */
  5992. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  5993. "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
  5994. mb->mbxCommand,
  5995. phba->pport->port_state,
  5996. phba->sli.sli_flag,
  5997. phba->sli.mbox_active);
  5998. spin_unlock_irq(&phba->hbalock);
  5999. /* Setting state unknown so lpfc_sli_abort_iocb_ring
  6000. * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
  6001. * it to fail all outstanding SCSI IO.
  6002. */
  6003. spin_lock_irq(&phba->pport->work_port_lock);
  6004. phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
  6005. spin_unlock_irq(&phba->pport->work_port_lock);
  6006. spin_lock_irq(&phba->hbalock);
  6007. phba->link_state = LPFC_LINK_UNKNOWN;
  6008. psli->sli_flag &= ~LPFC_SLI_ACTIVE;
  6009. spin_unlock_irq(&phba->hbalock);
  6010. pring = &psli->ring[psli->fcp_ring];
  6011. lpfc_sli_abort_iocb_ring(phba, pring);
  6012. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6013. "0345 Resetting board due to mailbox timeout\n");
  6014. /* Reset the HBA device */
  6015. lpfc_reset_hba(phba);
  6016. }
  6017. /**
  6018. * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
  6019. * @phba: Pointer to HBA context object.
  6020. * @pmbox: Pointer to mailbox object.
  6021. * @flag: Flag indicating how the mailbox need to be processed.
  6022. *
  6023. * This function is called by discovery code and HBA management code
  6024. * to submit a mailbox command to firmware with SLI-3 interface spec. This
  6025. * function gets the hbalock to protect the data structures.
  6026. * The mailbox command can be submitted in polling mode, in which case
  6027. * this function will wait in a polling loop for the completion of the
  6028. * mailbox.
  6029. * If the mailbox is submitted in no_wait mode (not polling) the
  6030. * function will submit the command and returns immediately without waiting
  6031. * for the mailbox completion. The no_wait is supported only when HBA
  6032. * is in SLI2/SLI3 mode - interrupts are enabled.
  6033. * The SLI interface allows only one mailbox pending at a time. If the
  6034. * mailbox is issued in polling mode and there is already a mailbox
  6035. * pending, then the function will return an error. If the mailbox is issued
  6036. * in NO_WAIT mode and there is a mailbox pending already, the function
  6037. * will return MBX_BUSY after queuing the mailbox into mailbox queue.
  6038. * The sli layer owns the mailbox object until the completion of mailbox
  6039. * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
  6040. * return codes the caller owns the mailbox command after the return of
  6041. * the function.
  6042. **/
  6043. static int
  6044. lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
  6045. uint32_t flag)
  6046. {
  6047. MAILBOX_t *mbx;
  6048. struct lpfc_sli *psli = &phba->sli;
  6049. uint32_t status, evtctr;
  6050. uint32_t ha_copy, hc_copy;
  6051. int i;
  6052. unsigned long timeout;
  6053. unsigned long drvr_flag = 0;
  6054. uint32_t word0, ldata;
  6055. void __iomem *to_slim;
  6056. int processing_queue = 0;
  6057. spin_lock_irqsave(&phba->hbalock, drvr_flag);
  6058. if (!pmbox) {
  6059. phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6060. /* processing mbox queue from intr_handler */
  6061. if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
  6062. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6063. return MBX_SUCCESS;
  6064. }
  6065. processing_queue = 1;
  6066. pmbox = lpfc_mbox_get(phba);
  6067. if (!pmbox) {
  6068. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6069. return MBX_SUCCESS;
  6070. }
  6071. }
  6072. if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
  6073. pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
  6074. if(!pmbox->vport) {
  6075. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6076. lpfc_printf_log(phba, KERN_ERR,
  6077. LOG_MBOX | LOG_VPORT,
  6078. "1806 Mbox x%x failed. No vport\n",
  6079. pmbox->u.mb.mbxCommand);
  6080. dump_stack();
  6081. goto out_not_finished;
  6082. }
  6083. }
  6084. /* If the PCI channel is in offline state, do not post mbox. */
  6085. if (unlikely(pci_channel_offline(phba->pcidev))) {
  6086. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6087. goto out_not_finished;
  6088. }
  6089. /* If HBA has a deferred error attention, fail the iocb. */
  6090. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  6091. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6092. goto out_not_finished;
  6093. }
  6094. psli = &phba->sli;
  6095. mbx = &pmbox->u.mb;
  6096. status = MBX_SUCCESS;
  6097. if (phba->link_state == LPFC_HBA_ERROR) {
  6098. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6099. /* Mbox command <mbxCommand> cannot issue */
  6100. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6101. "(%d):0311 Mailbox command x%x cannot "
  6102. "issue Data: x%x x%x\n",
  6103. pmbox->vport ? pmbox->vport->vpi : 0,
  6104. pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
  6105. goto out_not_finished;
  6106. }
  6107. if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
  6108. if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
  6109. !(hc_copy & HC_MBINT_ENA)) {
  6110. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6111. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6112. "(%d):2528 Mailbox command x%x cannot "
  6113. "issue Data: x%x x%x\n",
  6114. pmbox->vport ? pmbox->vport->vpi : 0,
  6115. pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
  6116. goto out_not_finished;
  6117. }
  6118. }
  6119. if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
  6120. /* Polling for a mbox command when another one is already active
  6121. * is not allowed in SLI. Also, the driver must have established
  6122. * SLI2 mode to queue and process multiple mbox commands.
  6123. */
  6124. if (flag & MBX_POLL) {
  6125. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6126. /* Mbox command <mbxCommand> cannot issue */
  6127. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6128. "(%d):2529 Mailbox command x%x "
  6129. "cannot issue Data: x%x x%x\n",
  6130. pmbox->vport ? pmbox->vport->vpi : 0,
  6131. pmbox->u.mb.mbxCommand,
  6132. psli->sli_flag, flag);
  6133. goto out_not_finished;
  6134. }
  6135. if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
  6136. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6137. /* Mbox command <mbxCommand> cannot issue */
  6138. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6139. "(%d):2530 Mailbox command x%x "
  6140. "cannot issue Data: x%x x%x\n",
  6141. pmbox->vport ? pmbox->vport->vpi : 0,
  6142. pmbox->u.mb.mbxCommand,
  6143. psli->sli_flag, flag);
  6144. goto out_not_finished;
  6145. }
  6146. /* Another mailbox command is still being processed, queue this
  6147. * command to be processed later.
  6148. */
  6149. lpfc_mbox_put(phba, pmbox);
  6150. /* Mbox cmd issue - BUSY */
  6151. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6152. "(%d):0308 Mbox cmd issue - BUSY Data: "
  6153. "x%x x%x x%x x%x\n",
  6154. pmbox->vport ? pmbox->vport->vpi : 0xffffff,
  6155. mbx->mbxCommand, phba->pport->port_state,
  6156. psli->sli_flag, flag);
  6157. psli->slistat.mbox_busy++;
  6158. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6159. if (pmbox->vport) {
  6160. lpfc_debugfs_disc_trc(pmbox->vport,
  6161. LPFC_DISC_TRC_MBOX_VPORT,
  6162. "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
  6163. (uint32_t)mbx->mbxCommand,
  6164. mbx->un.varWords[0], mbx->un.varWords[1]);
  6165. }
  6166. else {
  6167. lpfc_debugfs_disc_trc(phba->pport,
  6168. LPFC_DISC_TRC_MBOX,
  6169. "MBOX Bsy: cmd:x%x mb:x%x x%x",
  6170. (uint32_t)mbx->mbxCommand,
  6171. mbx->un.varWords[0], mbx->un.varWords[1]);
  6172. }
  6173. return MBX_BUSY;
  6174. }
  6175. psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
  6176. /* If we are not polling, we MUST be in SLI2 mode */
  6177. if (flag != MBX_POLL) {
  6178. if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
  6179. (mbx->mbxCommand != MBX_KILL_BOARD)) {
  6180. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6181. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6182. /* Mbox command <mbxCommand> cannot issue */
  6183. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6184. "(%d):2531 Mailbox command x%x "
  6185. "cannot issue Data: x%x x%x\n",
  6186. pmbox->vport ? pmbox->vport->vpi : 0,
  6187. pmbox->u.mb.mbxCommand,
  6188. psli->sli_flag, flag);
  6189. goto out_not_finished;
  6190. }
  6191. /* timeout active mbox command */
  6192. mod_timer(&psli->mbox_tmo, (jiffies +
  6193. (HZ * lpfc_mbox_tmo_val(phba, pmbox))));
  6194. }
  6195. /* Mailbox cmd <cmd> issue */
  6196. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6197. "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
  6198. "x%x\n",
  6199. pmbox->vport ? pmbox->vport->vpi : 0,
  6200. mbx->mbxCommand, phba->pport->port_state,
  6201. psli->sli_flag, flag);
  6202. if (mbx->mbxCommand != MBX_HEARTBEAT) {
  6203. if (pmbox->vport) {
  6204. lpfc_debugfs_disc_trc(pmbox->vport,
  6205. LPFC_DISC_TRC_MBOX_VPORT,
  6206. "MBOX Send vport: cmd:x%x mb:x%x x%x",
  6207. (uint32_t)mbx->mbxCommand,
  6208. mbx->un.varWords[0], mbx->un.varWords[1]);
  6209. }
  6210. else {
  6211. lpfc_debugfs_disc_trc(phba->pport,
  6212. LPFC_DISC_TRC_MBOX,
  6213. "MBOX Send: cmd:x%x mb:x%x x%x",
  6214. (uint32_t)mbx->mbxCommand,
  6215. mbx->un.varWords[0], mbx->un.varWords[1]);
  6216. }
  6217. }
  6218. psli->slistat.mbox_cmd++;
  6219. evtctr = psli->slistat.mbox_event;
  6220. /* next set own bit for the adapter and copy over command word */
  6221. mbx->mbxOwner = OWN_CHIP;
  6222. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  6223. /* Populate mbox extension offset word. */
  6224. if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
  6225. *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
  6226. = (uint8_t *)phba->mbox_ext
  6227. - (uint8_t *)phba->mbox;
  6228. }
  6229. /* Copy the mailbox extension data */
  6230. if (pmbox->in_ext_byte_len && pmbox->context2) {
  6231. lpfc_sli_pcimem_bcopy(pmbox->context2,
  6232. (uint8_t *)phba->mbox_ext,
  6233. pmbox->in_ext_byte_len);
  6234. }
  6235. /* Copy command data to host SLIM area */
  6236. lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
  6237. } else {
  6238. /* Populate mbox extension offset word. */
  6239. if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
  6240. *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
  6241. = MAILBOX_HBA_EXT_OFFSET;
  6242. /* Copy the mailbox extension data */
  6243. if (pmbox->in_ext_byte_len && pmbox->context2) {
  6244. lpfc_memcpy_to_slim(phba->MBslimaddr +
  6245. MAILBOX_HBA_EXT_OFFSET,
  6246. pmbox->context2, pmbox->in_ext_byte_len);
  6247. }
  6248. if (mbx->mbxCommand == MBX_CONFIG_PORT) {
  6249. /* copy command data into host mbox for cmpl */
  6250. lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
  6251. }
  6252. /* First copy mbox command data to HBA SLIM, skip past first
  6253. word */
  6254. to_slim = phba->MBslimaddr + sizeof (uint32_t);
  6255. lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
  6256. MAILBOX_CMD_SIZE - sizeof (uint32_t));
  6257. /* Next copy over first word, with mbxOwner set */
  6258. ldata = *((uint32_t *)mbx);
  6259. to_slim = phba->MBslimaddr;
  6260. writel(ldata, to_slim);
  6261. readl(to_slim); /* flush */
  6262. if (mbx->mbxCommand == MBX_CONFIG_PORT) {
  6263. /* switch over to host mailbox */
  6264. psli->sli_flag |= LPFC_SLI_ACTIVE;
  6265. }
  6266. }
  6267. wmb();
  6268. switch (flag) {
  6269. case MBX_NOWAIT:
  6270. /* Set up reference to mailbox command */
  6271. psli->mbox_active = pmbox;
  6272. /* Interrupt board to do it */
  6273. writel(CA_MBATT, phba->CAregaddr);
  6274. readl(phba->CAregaddr); /* flush */
  6275. /* Don't wait for it to finish, just return */
  6276. break;
  6277. case MBX_POLL:
  6278. /* Set up null reference to mailbox command */
  6279. psli->mbox_active = NULL;
  6280. /* Interrupt board to do it */
  6281. writel(CA_MBATT, phba->CAregaddr);
  6282. readl(phba->CAregaddr); /* flush */
  6283. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  6284. /* First read mbox status word */
  6285. word0 = *((uint32_t *)phba->mbox);
  6286. word0 = le32_to_cpu(word0);
  6287. } else {
  6288. /* First read mbox status word */
  6289. if (lpfc_readl(phba->MBslimaddr, &word0)) {
  6290. spin_unlock_irqrestore(&phba->hbalock,
  6291. drvr_flag);
  6292. goto out_not_finished;
  6293. }
  6294. }
  6295. /* Read the HBA Host Attention Register */
  6296. if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
  6297. spin_unlock_irqrestore(&phba->hbalock,
  6298. drvr_flag);
  6299. goto out_not_finished;
  6300. }
  6301. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
  6302. 1000) + jiffies;
  6303. i = 0;
  6304. /* Wait for command to complete */
  6305. while (((word0 & OWN_CHIP) == OWN_CHIP) ||
  6306. (!(ha_copy & HA_MBATT) &&
  6307. (phba->link_state > LPFC_WARM_START))) {
  6308. if (time_after(jiffies, timeout)) {
  6309. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6310. spin_unlock_irqrestore(&phba->hbalock,
  6311. drvr_flag);
  6312. goto out_not_finished;
  6313. }
  6314. /* Check if we took a mbox interrupt while we were
  6315. polling */
  6316. if (((word0 & OWN_CHIP) != OWN_CHIP)
  6317. && (evtctr != psli->slistat.mbox_event))
  6318. break;
  6319. if (i++ > 10) {
  6320. spin_unlock_irqrestore(&phba->hbalock,
  6321. drvr_flag);
  6322. msleep(1);
  6323. spin_lock_irqsave(&phba->hbalock, drvr_flag);
  6324. }
  6325. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  6326. /* First copy command data */
  6327. word0 = *((uint32_t *)phba->mbox);
  6328. word0 = le32_to_cpu(word0);
  6329. if (mbx->mbxCommand == MBX_CONFIG_PORT) {
  6330. MAILBOX_t *slimmb;
  6331. uint32_t slimword0;
  6332. /* Check real SLIM for any errors */
  6333. slimword0 = readl(phba->MBslimaddr);
  6334. slimmb = (MAILBOX_t *) & slimword0;
  6335. if (((slimword0 & OWN_CHIP) != OWN_CHIP)
  6336. && slimmb->mbxStatus) {
  6337. psli->sli_flag &=
  6338. ~LPFC_SLI_ACTIVE;
  6339. word0 = slimword0;
  6340. }
  6341. }
  6342. } else {
  6343. /* First copy command data */
  6344. word0 = readl(phba->MBslimaddr);
  6345. }
  6346. /* Read the HBA Host Attention Register */
  6347. if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
  6348. spin_unlock_irqrestore(&phba->hbalock,
  6349. drvr_flag);
  6350. goto out_not_finished;
  6351. }
  6352. }
  6353. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  6354. /* copy results back to user */
  6355. lpfc_sli_pcimem_bcopy(phba->mbox, mbx, MAILBOX_CMD_SIZE);
  6356. /* Copy the mailbox extension data */
  6357. if (pmbox->out_ext_byte_len && pmbox->context2) {
  6358. lpfc_sli_pcimem_bcopy(phba->mbox_ext,
  6359. pmbox->context2,
  6360. pmbox->out_ext_byte_len);
  6361. }
  6362. } else {
  6363. /* First copy command data */
  6364. lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
  6365. MAILBOX_CMD_SIZE);
  6366. /* Copy the mailbox extension data */
  6367. if (pmbox->out_ext_byte_len && pmbox->context2) {
  6368. lpfc_memcpy_from_slim(pmbox->context2,
  6369. phba->MBslimaddr +
  6370. MAILBOX_HBA_EXT_OFFSET,
  6371. pmbox->out_ext_byte_len);
  6372. }
  6373. }
  6374. writel(HA_MBATT, phba->HAregaddr);
  6375. readl(phba->HAregaddr); /* flush */
  6376. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6377. status = mbx->mbxStatus;
  6378. }
  6379. spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
  6380. return status;
  6381. out_not_finished:
  6382. if (processing_queue) {
  6383. pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
  6384. lpfc_mbox_cmpl_put(phba, pmbox);
  6385. }
  6386. return MBX_NOT_FINISHED;
  6387. }
  6388. /**
  6389. * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
  6390. * @phba: Pointer to HBA context object.
  6391. *
  6392. * The function blocks the posting of SLI4 asynchronous mailbox commands from
  6393. * the driver internal pending mailbox queue. It will then try to wait out the
  6394. * possible outstanding mailbox command before return.
  6395. *
  6396. * Returns:
  6397. * 0 - the outstanding mailbox command completed; otherwise, the wait for
  6398. * the outstanding mailbox command timed out.
  6399. **/
  6400. static int
  6401. lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
  6402. {
  6403. struct lpfc_sli *psli = &phba->sli;
  6404. int rc = 0;
  6405. unsigned long timeout = 0;
  6406. /* Mark the asynchronous mailbox command posting as blocked */
  6407. spin_lock_irq(&phba->hbalock);
  6408. psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
  6409. /* Determine how long we might wait for the active mailbox
  6410. * command to be gracefully completed by firmware.
  6411. */
  6412. if (phba->sli.mbox_active)
  6413. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
  6414. phba->sli.mbox_active) *
  6415. 1000) + jiffies;
  6416. spin_unlock_irq(&phba->hbalock);
  6417. /* Wait for the outstnading mailbox command to complete */
  6418. while (phba->sli.mbox_active) {
  6419. /* Check active mailbox complete status every 2ms */
  6420. msleep(2);
  6421. if (time_after(jiffies, timeout)) {
  6422. /* Timeout, marked the outstanding cmd not complete */
  6423. rc = 1;
  6424. break;
  6425. }
  6426. }
  6427. /* Can not cleanly block async mailbox command, fails it */
  6428. if (rc) {
  6429. spin_lock_irq(&phba->hbalock);
  6430. psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
  6431. spin_unlock_irq(&phba->hbalock);
  6432. }
  6433. return rc;
  6434. }
  6435. /**
  6436. * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
  6437. * @phba: Pointer to HBA context object.
  6438. *
  6439. * The function unblocks and resume posting of SLI4 asynchronous mailbox
  6440. * commands from the driver internal pending mailbox queue. It makes sure
  6441. * that there is no outstanding mailbox command before resuming posting
  6442. * asynchronous mailbox commands. If, for any reason, there is outstanding
  6443. * mailbox command, it will try to wait it out before resuming asynchronous
  6444. * mailbox command posting.
  6445. **/
  6446. static void
  6447. lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
  6448. {
  6449. struct lpfc_sli *psli = &phba->sli;
  6450. spin_lock_irq(&phba->hbalock);
  6451. if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
  6452. /* Asynchronous mailbox posting is not blocked, do nothing */
  6453. spin_unlock_irq(&phba->hbalock);
  6454. return;
  6455. }
  6456. /* Outstanding synchronous mailbox command is guaranteed to be done,
  6457. * successful or timeout, after timing-out the outstanding mailbox
  6458. * command shall always be removed, so just unblock posting async
  6459. * mailbox command and resume
  6460. */
  6461. psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
  6462. spin_unlock_irq(&phba->hbalock);
  6463. /* wake up worker thread to post asynchronlous mailbox command */
  6464. lpfc_worker_wake_up(phba);
  6465. }
  6466. /**
  6467. * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
  6468. * @phba: Pointer to HBA context object.
  6469. * @mboxq: Pointer to mailbox object.
  6470. *
  6471. * The function waits for the bootstrap mailbox register ready bit from
  6472. * port for twice the regular mailbox command timeout value.
  6473. *
  6474. * 0 - no timeout on waiting for bootstrap mailbox register ready.
  6475. * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
  6476. **/
  6477. static int
  6478. lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
  6479. {
  6480. uint32_t db_ready;
  6481. unsigned long timeout;
  6482. struct lpfc_register bmbx_reg;
  6483. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
  6484. * 1000) + jiffies;
  6485. do {
  6486. bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
  6487. db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
  6488. if (!db_ready)
  6489. msleep(2);
  6490. if (time_after(jiffies, timeout))
  6491. return MBXERR_ERROR;
  6492. } while (!db_ready);
  6493. return 0;
  6494. }
  6495. /**
  6496. * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
  6497. * @phba: Pointer to HBA context object.
  6498. * @mboxq: Pointer to mailbox object.
  6499. *
  6500. * The function posts a mailbox to the port. The mailbox is expected
  6501. * to be comletely filled in and ready for the port to operate on it.
  6502. * This routine executes a synchronous completion operation on the
  6503. * mailbox by polling for its completion.
  6504. *
  6505. * The caller must not be holding any locks when calling this routine.
  6506. *
  6507. * Returns:
  6508. * MBX_SUCCESS - mailbox posted successfully
  6509. * Any of the MBX error values.
  6510. **/
  6511. static int
  6512. lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
  6513. {
  6514. int rc = MBX_SUCCESS;
  6515. unsigned long iflag;
  6516. uint32_t mcqe_status;
  6517. uint32_t mbx_cmnd;
  6518. struct lpfc_sli *psli = &phba->sli;
  6519. struct lpfc_mqe *mb = &mboxq->u.mqe;
  6520. struct lpfc_bmbx_create *mbox_rgn;
  6521. struct dma_address *dma_address;
  6522. /*
  6523. * Only one mailbox can be active to the bootstrap mailbox region
  6524. * at a time and there is no queueing provided.
  6525. */
  6526. spin_lock_irqsave(&phba->hbalock, iflag);
  6527. if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
  6528. spin_unlock_irqrestore(&phba->hbalock, iflag);
  6529. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6530. "(%d):2532 Mailbox command x%x (x%x/x%x) "
  6531. "cannot issue Data: x%x x%x\n",
  6532. mboxq->vport ? mboxq->vport->vpi : 0,
  6533. mboxq->u.mb.mbxCommand,
  6534. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6535. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6536. psli->sli_flag, MBX_POLL);
  6537. return MBXERR_ERROR;
  6538. }
  6539. /* The server grabs the token and owns it until release */
  6540. psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
  6541. phba->sli.mbox_active = mboxq;
  6542. spin_unlock_irqrestore(&phba->hbalock, iflag);
  6543. /* wait for bootstrap mbox register for readyness */
  6544. rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
  6545. if (rc)
  6546. goto exit;
  6547. /*
  6548. * Initialize the bootstrap memory region to avoid stale data areas
  6549. * in the mailbox post. Then copy the caller's mailbox contents to
  6550. * the bmbx mailbox region.
  6551. */
  6552. mbx_cmnd = bf_get(lpfc_mqe_command, mb);
  6553. memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
  6554. lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
  6555. sizeof(struct lpfc_mqe));
  6556. /* Post the high mailbox dma address to the port and wait for ready. */
  6557. dma_address = &phba->sli4_hba.bmbx.dma_address;
  6558. writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
  6559. /* wait for bootstrap mbox register for hi-address write done */
  6560. rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
  6561. if (rc)
  6562. goto exit;
  6563. /* Post the low mailbox dma address to the port. */
  6564. writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
  6565. /* wait for bootstrap mbox register for low address write done */
  6566. rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
  6567. if (rc)
  6568. goto exit;
  6569. /*
  6570. * Read the CQ to ensure the mailbox has completed.
  6571. * If so, update the mailbox status so that the upper layers
  6572. * can complete the request normally.
  6573. */
  6574. lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
  6575. sizeof(struct lpfc_mqe));
  6576. mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
  6577. lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
  6578. sizeof(struct lpfc_mcqe));
  6579. mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
  6580. /*
  6581. * When the CQE status indicates a failure and the mailbox status
  6582. * indicates success then copy the CQE status into the mailbox status
  6583. * (and prefix it with x4000).
  6584. */
  6585. if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
  6586. if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
  6587. bf_set(lpfc_mqe_status, mb,
  6588. (LPFC_MBX_ERROR_RANGE | mcqe_status));
  6589. rc = MBXERR_ERROR;
  6590. } else
  6591. lpfc_sli4_swap_str(phba, mboxq);
  6592. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6593. "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
  6594. "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
  6595. " x%x x%x CQ: x%x x%x x%x x%x\n",
  6596. mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
  6597. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6598. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6599. bf_get(lpfc_mqe_status, mb),
  6600. mb->un.mb_words[0], mb->un.mb_words[1],
  6601. mb->un.mb_words[2], mb->un.mb_words[3],
  6602. mb->un.mb_words[4], mb->un.mb_words[5],
  6603. mb->un.mb_words[6], mb->un.mb_words[7],
  6604. mb->un.mb_words[8], mb->un.mb_words[9],
  6605. mb->un.mb_words[10], mb->un.mb_words[11],
  6606. mb->un.mb_words[12], mboxq->mcqe.word0,
  6607. mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
  6608. mboxq->mcqe.trailer);
  6609. exit:
  6610. /* We are holding the token, no needed for lock when release */
  6611. spin_lock_irqsave(&phba->hbalock, iflag);
  6612. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6613. phba->sli.mbox_active = NULL;
  6614. spin_unlock_irqrestore(&phba->hbalock, iflag);
  6615. return rc;
  6616. }
  6617. /**
  6618. * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
  6619. * @phba: Pointer to HBA context object.
  6620. * @pmbox: Pointer to mailbox object.
  6621. * @flag: Flag indicating how the mailbox need to be processed.
  6622. *
  6623. * This function is called by discovery code and HBA management code to submit
  6624. * a mailbox command to firmware with SLI-4 interface spec.
  6625. *
  6626. * Return codes the caller owns the mailbox command after the return of the
  6627. * function.
  6628. **/
  6629. static int
  6630. lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
  6631. uint32_t flag)
  6632. {
  6633. struct lpfc_sli *psli = &phba->sli;
  6634. unsigned long iflags;
  6635. int rc;
  6636. /* dump from issue mailbox command if setup */
  6637. lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
  6638. rc = lpfc_mbox_dev_check(phba);
  6639. if (unlikely(rc)) {
  6640. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6641. "(%d):2544 Mailbox command x%x (x%x/x%x) "
  6642. "cannot issue Data: x%x x%x\n",
  6643. mboxq->vport ? mboxq->vport->vpi : 0,
  6644. mboxq->u.mb.mbxCommand,
  6645. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6646. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6647. psli->sli_flag, flag);
  6648. goto out_not_finished;
  6649. }
  6650. /* Detect polling mode and jump to a handler */
  6651. if (!phba->sli4_hba.intr_enable) {
  6652. if (flag == MBX_POLL)
  6653. rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
  6654. else
  6655. rc = -EIO;
  6656. if (rc != MBX_SUCCESS)
  6657. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
  6658. "(%d):2541 Mailbox command x%x "
  6659. "(x%x/x%x) failure: "
  6660. "mqe_sta: x%x mcqe_sta: x%x/x%x "
  6661. "Data: x%x x%x\n,",
  6662. mboxq->vport ? mboxq->vport->vpi : 0,
  6663. mboxq->u.mb.mbxCommand,
  6664. lpfc_sli_config_mbox_subsys_get(phba,
  6665. mboxq),
  6666. lpfc_sli_config_mbox_opcode_get(phba,
  6667. mboxq),
  6668. bf_get(lpfc_mqe_status, &mboxq->u.mqe),
  6669. bf_get(lpfc_mcqe_status, &mboxq->mcqe),
  6670. bf_get(lpfc_mcqe_ext_status,
  6671. &mboxq->mcqe),
  6672. psli->sli_flag, flag);
  6673. return rc;
  6674. } else if (flag == MBX_POLL) {
  6675. lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
  6676. "(%d):2542 Try to issue mailbox command "
  6677. "x%x (x%x/x%x) synchronously ahead of async"
  6678. "mailbox command queue: x%x x%x\n",
  6679. mboxq->vport ? mboxq->vport->vpi : 0,
  6680. mboxq->u.mb.mbxCommand,
  6681. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6682. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6683. psli->sli_flag, flag);
  6684. /* Try to block the asynchronous mailbox posting */
  6685. rc = lpfc_sli4_async_mbox_block(phba);
  6686. if (!rc) {
  6687. /* Successfully blocked, now issue sync mbox cmd */
  6688. rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
  6689. if (rc != MBX_SUCCESS)
  6690. lpfc_printf_log(phba, KERN_WARNING,
  6691. LOG_MBOX | LOG_SLI,
  6692. "(%d):2597 Sync Mailbox command "
  6693. "x%x (x%x/x%x) failure: "
  6694. "mqe_sta: x%x mcqe_sta: x%x/x%x "
  6695. "Data: x%x x%x\n,",
  6696. mboxq->vport ? mboxq->vport->vpi : 0,
  6697. mboxq->u.mb.mbxCommand,
  6698. lpfc_sli_config_mbox_subsys_get(phba,
  6699. mboxq),
  6700. lpfc_sli_config_mbox_opcode_get(phba,
  6701. mboxq),
  6702. bf_get(lpfc_mqe_status, &mboxq->u.mqe),
  6703. bf_get(lpfc_mcqe_status, &mboxq->mcqe),
  6704. bf_get(lpfc_mcqe_ext_status,
  6705. &mboxq->mcqe),
  6706. psli->sli_flag, flag);
  6707. /* Unblock the async mailbox posting afterward */
  6708. lpfc_sli4_async_mbox_unblock(phba);
  6709. }
  6710. return rc;
  6711. }
  6712. /* Now, interrupt mode asynchrous mailbox command */
  6713. rc = lpfc_mbox_cmd_check(phba, mboxq);
  6714. if (rc) {
  6715. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6716. "(%d):2543 Mailbox command x%x (x%x/x%x) "
  6717. "cannot issue Data: x%x x%x\n",
  6718. mboxq->vport ? mboxq->vport->vpi : 0,
  6719. mboxq->u.mb.mbxCommand,
  6720. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6721. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6722. psli->sli_flag, flag);
  6723. goto out_not_finished;
  6724. }
  6725. /* Put the mailbox command to the driver internal FIFO */
  6726. psli->slistat.mbox_busy++;
  6727. spin_lock_irqsave(&phba->hbalock, iflags);
  6728. lpfc_mbox_put(phba, mboxq);
  6729. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6730. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6731. "(%d):0354 Mbox cmd issue - Enqueue Data: "
  6732. "x%x (x%x/x%x) x%x x%x x%x\n",
  6733. mboxq->vport ? mboxq->vport->vpi : 0xffffff,
  6734. bf_get(lpfc_mqe_command, &mboxq->u.mqe),
  6735. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6736. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6737. phba->pport->port_state,
  6738. psli->sli_flag, MBX_NOWAIT);
  6739. /* Wake up worker thread to transport mailbox command from head */
  6740. lpfc_worker_wake_up(phba);
  6741. return MBX_BUSY;
  6742. out_not_finished:
  6743. return MBX_NOT_FINISHED;
  6744. }
  6745. /**
  6746. * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
  6747. * @phba: Pointer to HBA context object.
  6748. *
  6749. * This function is called by worker thread to send a mailbox command to
  6750. * SLI4 HBA firmware.
  6751. *
  6752. **/
  6753. int
  6754. lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
  6755. {
  6756. struct lpfc_sli *psli = &phba->sli;
  6757. LPFC_MBOXQ_t *mboxq;
  6758. int rc = MBX_SUCCESS;
  6759. unsigned long iflags;
  6760. struct lpfc_mqe *mqe;
  6761. uint32_t mbx_cmnd;
  6762. /* Check interrupt mode before post async mailbox command */
  6763. if (unlikely(!phba->sli4_hba.intr_enable))
  6764. return MBX_NOT_FINISHED;
  6765. /* Check for mailbox command service token */
  6766. spin_lock_irqsave(&phba->hbalock, iflags);
  6767. if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
  6768. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6769. return MBX_NOT_FINISHED;
  6770. }
  6771. if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
  6772. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6773. return MBX_NOT_FINISHED;
  6774. }
  6775. if (unlikely(phba->sli.mbox_active)) {
  6776. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6777. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6778. "0384 There is pending active mailbox cmd\n");
  6779. return MBX_NOT_FINISHED;
  6780. }
  6781. /* Take the mailbox command service token */
  6782. psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
  6783. /* Get the next mailbox command from head of queue */
  6784. mboxq = lpfc_mbox_get(phba);
  6785. /* If no more mailbox command waiting for post, we're done */
  6786. if (!mboxq) {
  6787. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6788. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6789. return MBX_SUCCESS;
  6790. }
  6791. phba->sli.mbox_active = mboxq;
  6792. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6793. /* Check device readiness for posting mailbox command */
  6794. rc = lpfc_mbox_dev_check(phba);
  6795. if (unlikely(rc))
  6796. /* Driver clean routine will clean up pending mailbox */
  6797. goto out_not_finished;
  6798. /* Prepare the mbox command to be posted */
  6799. mqe = &mboxq->u.mqe;
  6800. mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
  6801. /* Start timer for the mbox_tmo and log some mailbox post messages */
  6802. mod_timer(&psli->mbox_tmo, (jiffies +
  6803. (HZ * lpfc_mbox_tmo_val(phba, mboxq))));
  6804. lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
  6805. "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
  6806. "x%x x%x\n",
  6807. mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
  6808. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6809. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6810. phba->pport->port_state, psli->sli_flag);
  6811. if (mbx_cmnd != MBX_HEARTBEAT) {
  6812. if (mboxq->vport) {
  6813. lpfc_debugfs_disc_trc(mboxq->vport,
  6814. LPFC_DISC_TRC_MBOX_VPORT,
  6815. "MBOX Send vport: cmd:x%x mb:x%x x%x",
  6816. mbx_cmnd, mqe->un.mb_words[0],
  6817. mqe->un.mb_words[1]);
  6818. } else {
  6819. lpfc_debugfs_disc_trc(phba->pport,
  6820. LPFC_DISC_TRC_MBOX,
  6821. "MBOX Send: cmd:x%x mb:x%x x%x",
  6822. mbx_cmnd, mqe->un.mb_words[0],
  6823. mqe->un.mb_words[1]);
  6824. }
  6825. }
  6826. psli->slistat.mbox_cmd++;
  6827. /* Post the mailbox command to the port */
  6828. rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
  6829. if (rc != MBX_SUCCESS) {
  6830. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
  6831. "(%d):2533 Mailbox command x%x (x%x/x%x) "
  6832. "cannot issue Data: x%x x%x\n",
  6833. mboxq->vport ? mboxq->vport->vpi : 0,
  6834. mboxq->u.mb.mbxCommand,
  6835. lpfc_sli_config_mbox_subsys_get(phba, mboxq),
  6836. lpfc_sli_config_mbox_opcode_get(phba, mboxq),
  6837. psli->sli_flag, MBX_NOWAIT);
  6838. goto out_not_finished;
  6839. }
  6840. return rc;
  6841. out_not_finished:
  6842. spin_lock_irqsave(&phba->hbalock, iflags);
  6843. if (phba->sli.mbox_active) {
  6844. mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
  6845. __lpfc_mbox_cmpl_put(phba, mboxq);
  6846. /* Release the token */
  6847. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  6848. phba->sli.mbox_active = NULL;
  6849. }
  6850. spin_unlock_irqrestore(&phba->hbalock, iflags);
  6851. return MBX_NOT_FINISHED;
  6852. }
  6853. /**
  6854. * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
  6855. * @phba: Pointer to HBA context object.
  6856. * @pmbox: Pointer to mailbox object.
  6857. * @flag: Flag indicating how the mailbox need to be processed.
  6858. *
  6859. * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
  6860. * the API jump table function pointer from the lpfc_hba struct.
  6861. *
  6862. * Return codes the caller owns the mailbox command after the return of the
  6863. * function.
  6864. **/
  6865. int
  6866. lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
  6867. {
  6868. return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
  6869. }
  6870. /**
  6871. * lpfc_mbox_api_table_setup - Set up mbox api function jump table
  6872. * @phba: The hba struct for which this call is being executed.
  6873. * @dev_grp: The HBA PCI-Device group number.
  6874. *
  6875. * This routine sets up the mbox interface API function jump table in @phba
  6876. * struct.
  6877. * Returns: 0 - success, -ENODEV - failure.
  6878. **/
  6879. int
  6880. lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
  6881. {
  6882. switch (dev_grp) {
  6883. case LPFC_PCI_DEV_LP:
  6884. phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
  6885. phba->lpfc_sli_handle_slow_ring_event =
  6886. lpfc_sli_handle_slow_ring_event_s3;
  6887. phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
  6888. phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
  6889. phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
  6890. break;
  6891. case LPFC_PCI_DEV_OC:
  6892. phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
  6893. phba->lpfc_sli_handle_slow_ring_event =
  6894. lpfc_sli_handle_slow_ring_event_s4;
  6895. phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
  6896. phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
  6897. phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
  6898. break;
  6899. default:
  6900. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  6901. "1420 Invalid HBA PCI-device group: 0x%x\n",
  6902. dev_grp);
  6903. return -ENODEV;
  6904. break;
  6905. }
  6906. return 0;
  6907. }
  6908. /**
  6909. * __lpfc_sli_ringtx_put - Add an iocb to the txq
  6910. * @phba: Pointer to HBA context object.
  6911. * @pring: Pointer to driver SLI ring object.
  6912. * @piocb: Pointer to address of newly added command iocb.
  6913. *
  6914. * This function is called with hbalock held to add a command
  6915. * iocb to the txq when SLI layer cannot submit the command iocb
  6916. * to the ring.
  6917. **/
  6918. void
  6919. __lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  6920. struct lpfc_iocbq *piocb)
  6921. {
  6922. /* Insert the caller's iocb in the txq tail for later processing. */
  6923. list_add_tail(&piocb->list, &pring->txq);
  6924. }
  6925. /**
  6926. * lpfc_sli_next_iocb - Get the next iocb in the txq
  6927. * @phba: Pointer to HBA context object.
  6928. * @pring: Pointer to driver SLI ring object.
  6929. * @piocb: Pointer to address of newly added command iocb.
  6930. *
  6931. * This function is called with hbalock held before a new
  6932. * iocb is submitted to the firmware. This function checks
  6933. * txq to flush the iocbs in txq to Firmware before
  6934. * submitting new iocbs to the Firmware.
  6935. * If there are iocbs in the txq which need to be submitted
  6936. * to firmware, lpfc_sli_next_iocb returns the first element
  6937. * of the txq after dequeuing it from txq.
  6938. * If there is no iocb in the txq then the function will return
  6939. * *piocb and *piocb is set to NULL. Caller needs to check
  6940. * *piocb to find if there are more commands in the txq.
  6941. **/
  6942. static struct lpfc_iocbq *
  6943. lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  6944. struct lpfc_iocbq **piocb)
  6945. {
  6946. struct lpfc_iocbq * nextiocb;
  6947. nextiocb = lpfc_sli_ringtx_get(phba, pring);
  6948. if (!nextiocb) {
  6949. nextiocb = *piocb;
  6950. *piocb = NULL;
  6951. }
  6952. return nextiocb;
  6953. }
  6954. /**
  6955. * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
  6956. * @phba: Pointer to HBA context object.
  6957. * @ring_number: SLI ring number to issue iocb on.
  6958. * @piocb: Pointer to command iocb.
  6959. * @flag: Flag indicating if this command can be put into txq.
  6960. *
  6961. * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
  6962. * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
  6963. * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
  6964. * flag is turned on, the function returns IOCB_ERROR. When the link is down,
  6965. * this function allows only iocbs for posting buffers. This function finds
  6966. * next available slot in the command ring and posts the command to the
  6967. * available slot and writes the port attention register to request HBA start
  6968. * processing new iocb. If there is no slot available in the ring and
  6969. * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
  6970. * the function returns IOCB_BUSY.
  6971. *
  6972. * This function is called with hbalock held. The function will return success
  6973. * after it successfully submit the iocb to firmware or after adding to the
  6974. * txq.
  6975. **/
  6976. static int
  6977. __lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
  6978. struct lpfc_iocbq *piocb, uint32_t flag)
  6979. {
  6980. struct lpfc_iocbq *nextiocb;
  6981. IOCB_t *iocb;
  6982. struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
  6983. if (piocb->iocb_cmpl && (!piocb->vport) &&
  6984. (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
  6985. (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
  6986. lpfc_printf_log(phba, KERN_ERR,
  6987. LOG_SLI | LOG_VPORT,
  6988. "1807 IOCB x%x failed. No vport\n",
  6989. piocb->iocb.ulpCommand);
  6990. dump_stack();
  6991. return IOCB_ERROR;
  6992. }
  6993. /* If the PCI channel is in offline state, do not post iocbs. */
  6994. if (unlikely(pci_channel_offline(phba->pcidev)))
  6995. return IOCB_ERROR;
  6996. /* If HBA has a deferred error attention, fail the iocb. */
  6997. if (unlikely(phba->hba_flag & DEFER_ERATT))
  6998. return IOCB_ERROR;
  6999. /*
  7000. * We should never get an IOCB if we are in a < LINK_DOWN state
  7001. */
  7002. if (unlikely(phba->link_state < LPFC_LINK_DOWN))
  7003. return IOCB_ERROR;
  7004. /*
  7005. * Check to see if we are blocking IOCB processing because of a
  7006. * outstanding event.
  7007. */
  7008. if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
  7009. goto iocb_busy;
  7010. if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
  7011. /*
  7012. * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
  7013. * can be issued if the link is not up.
  7014. */
  7015. switch (piocb->iocb.ulpCommand) {
  7016. case CMD_GEN_REQUEST64_CR:
  7017. case CMD_GEN_REQUEST64_CX:
  7018. if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
  7019. (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
  7020. FC_RCTL_DD_UNSOL_CMD) ||
  7021. (piocb->iocb.un.genreq64.w5.hcsw.Type !=
  7022. MENLO_TRANSPORT_TYPE))
  7023. goto iocb_busy;
  7024. break;
  7025. case CMD_QUE_RING_BUF_CN:
  7026. case CMD_QUE_RING_BUF64_CN:
  7027. /*
  7028. * For IOCBs, like QUE_RING_BUF, that have no rsp ring
  7029. * completion, iocb_cmpl MUST be 0.
  7030. */
  7031. if (piocb->iocb_cmpl)
  7032. piocb->iocb_cmpl = NULL;
  7033. /*FALLTHROUGH*/
  7034. case CMD_CREATE_XRI_CR:
  7035. case CMD_CLOSE_XRI_CN:
  7036. case CMD_CLOSE_XRI_CX:
  7037. break;
  7038. default:
  7039. goto iocb_busy;
  7040. }
  7041. /*
  7042. * For FCP commands, we must be in a state where we can process link
  7043. * attention events.
  7044. */
  7045. } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
  7046. !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
  7047. goto iocb_busy;
  7048. }
  7049. while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
  7050. (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
  7051. lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
  7052. if (iocb)
  7053. lpfc_sli_update_ring(phba, pring);
  7054. else
  7055. lpfc_sli_update_full_ring(phba, pring);
  7056. if (!piocb)
  7057. return IOCB_SUCCESS;
  7058. goto out_busy;
  7059. iocb_busy:
  7060. pring->stats.iocb_cmd_delay++;
  7061. out_busy:
  7062. if (!(flag & SLI_IOCB_RET_IOCB)) {
  7063. __lpfc_sli_ringtx_put(phba, pring, piocb);
  7064. return IOCB_SUCCESS;
  7065. }
  7066. return IOCB_BUSY;
  7067. }
  7068. /**
  7069. * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
  7070. * @phba: Pointer to HBA context object.
  7071. * @piocb: Pointer to command iocb.
  7072. * @sglq: Pointer to the scatter gather queue object.
  7073. *
  7074. * This routine converts the bpl or bde that is in the IOCB
  7075. * to a sgl list for the sli4 hardware. The physical address
  7076. * of the bpl/bde is converted back to a virtual address.
  7077. * If the IOCB contains a BPL then the list of BDE's is
  7078. * converted to sli4_sge's. If the IOCB contains a single
  7079. * BDE then it is converted to a single sli_sge.
  7080. * The IOCB is still in cpu endianess so the contents of
  7081. * the bpl can be used without byte swapping.
  7082. *
  7083. * Returns valid XRI = Success, NO_XRI = Failure.
  7084. **/
  7085. static uint16_t
  7086. lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
  7087. struct lpfc_sglq *sglq)
  7088. {
  7089. uint16_t xritag = NO_XRI;
  7090. struct ulp_bde64 *bpl = NULL;
  7091. struct ulp_bde64 bde;
  7092. struct sli4_sge *sgl = NULL;
  7093. struct lpfc_dmabuf *dmabuf;
  7094. IOCB_t *icmd;
  7095. int numBdes = 0;
  7096. int i = 0;
  7097. uint32_t offset = 0; /* accumulated offset in the sg request list */
  7098. int inbound = 0; /* number of sg reply entries inbound from firmware */
  7099. if (!piocbq || !sglq)
  7100. return xritag;
  7101. sgl = (struct sli4_sge *)sglq->sgl;
  7102. icmd = &piocbq->iocb;
  7103. if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
  7104. return sglq->sli4_xritag;
  7105. if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
  7106. numBdes = icmd->un.genreq64.bdl.bdeSize /
  7107. sizeof(struct ulp_bde64);
  7108. /* The addrHigh and addrLow fields within the IOCB
  7109. * have not been byteswapped yet so there is no
  7110. * need to swap them back.
  7111. */
  7112. if (piocbq->context3)
  7113. dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
  7114. else
  7115. return xritag;
  7116. bpl = (struct ulp_bde64 *)dmabuf->virt;
  7117. if (!bpl)
  7118. return xritag;
  7119. for (i = 0; i < numBdes; i++) {
  7120. /* Should already be byte swapped. */
  7121. sgl->addr_hi = bpl->addrHigh;
  7122. sgl->addr_lo = bpl->addrLow;
  7123. sgl->word2 = le32_to_cpu(sgl->word2);
  7124. if ((i+1) == numBdes)
  7125. bf_set(lpfc_sli4_sge_last, sgl, 1);
  7126. else
  7127. bf_set(lpfc_sli4_sge_last, sgl, 0);
  7128. /* swap the size field back to the cpu so we
  7129. * can assign it to the sgl.
  7130. */
  7131. bde.tus.w = le32_to_cpu(bpl->tus.w);
  7132. sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
  7133. /* The offsets in the sgl need to be accumulated
  7134. * separately for the request and reply lists.
  7135. * The request is always first, the reply follows.
  7136. */
  7137. if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
  7138. /* add up the reply sg entries */
  7139. if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
  7140. inbound++;
  7141. /* first inbound? reset the offset */
  7142. if (inbound == 1)
  7143. offset = 0;
  7144. bf_set(lpfc_sli4_sge_offset, sgl, offset);
  7145. bf_set(lpfc_sli4_sge_type, sgl,
  7146. LPFC_SGE_TYPE_DATA);
  7147. offset += bde.tus.f.bdeSize;
  7148. }
  7149. sgl->word2 = cpu_to_le32(sgl->word2);
  7150. bpl++;
  7151. sgl++;
  7152. }
  7153. } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
  7154. /* The addrHigh and addrLow fields of the BDE have not
  7155. * been byteswapped yet so they need to be swapped
  7156. * before putting them in the sgl.
  7157. */
  7158. sgl->addr_hi =
  7159. cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
  7160. sgl->addr_lo =
  7161. cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
  7162. sgl->word2 = le32_to_cpu(sgl->word2);
  7163. bf_set(lpfc_sli4_sge_last, sgl, 1);
  7164. sgl->word2 = cpu_to_le32(sgl->word2);
  7165. sgl->sge_len =
  7166. cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
  7167. }
  7168. return sglq->sli4_xritag;
  7169. }
  7170. /**
  7171. * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
  7172. * @phba: Pointer to HBA context object.
  7173. *
  7174. * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
  7175. * distribution. This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
  7176. * held.
  7177. *
  7178. * Return: index into SLI4 fast-path FCP queue index.
  7179. **/
  7180. static inline uint32_t
  7181. lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
  7182. {
  7183. int i;
  7184. if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU)
  7185. i = smp_processor_id();
  7186. else
  7187. i = atomic_add_return(1, &phba->fcp_qidx);
  7188. i = (i % phba->cfg_fcp_io_channel);
  7189. return i;
  7190. }
  7191. /**
  7192. * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
  7193. * @phba: Pointer to HBA context object.
  7194. * @piocb: Pointer to command iocb.
  7195. * @wqe: Pointer to the work queue entry.
  7196. *
  7197. * This routine converts the iocb command to its Work Queue Entry
  7198. * equivalent. The wqe pointer should not have any fields set when
  7199. * this routine is called because it will memcpy over them.
  7200. * This routine does not set the CQ_ID or the WQEC bits in the
  7201. * wqe.
  7202. *
  7203. * Returns: 0 = Success, IOCB_ERROR = Failure.
  7204. **/
  7205. static int
  7206. lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
  7207. union lpfc_wqe *wqe)
  7208. {
  7209. uint32_t xmit_len = 0, total_len = 0;
  7210. uint8_t ct = 0;
  7211. uint32_t fip;
  7212. uint32_t abort_tag;
  7213. uint8_t command_type = ELS_COMMAND_NON_FIP;
  7214. uint8_t cmnd;
  7215. uint16_t xritag;
  7216. uint16_t abrt_iotag;
  7217. struct lpfc_iocbq *abrtiocbq;
  7218. struct ulp_bde64 *bpl = NULL;
  7219. uint32_t els_id = LPFC_ELS_ID_DEFAULT;
  7220. int numBdes, i;
  7221. struct ulp_bde64 bde;
  7222. struct lpfc_nodelist *ndlp;
  7223. uint32_t *pcmd;
  7224. uint32_t if_type;
  7225. fip = phba->hba_flag & HBA_FIP_SUPPORT;
  7226. /* The fcp commands will set command type */
  7227. if (iocbq->iocb_flag & LPFC_IO_FCP)
  7228. command_type = FCP_COMMAND;
  7229. else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
  7230. command_type = ELS_COMMAND_FIP;
  7231. else
  7232. command_type = ELS_COMMAND_NON_FIP;
  7233. /* Some of the fields are in the right position already */
  7234. memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
  7235. abort_tag = (uint32_t) iocbq->iotag;
  7236. xritag = iocbq->sli4_xritag;
  7237. wqe->generic.wqe_com.word7 = 0; /* The ct field has moved so reset */
  7238. /* words0-2 bpl convert bde */
  7239. if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
  7240. numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
  7241. sizeof(struct ulp_bde64);
  7242. bpl = (struct ulp_bde64 *)
  7243. ((struct lpfc_dmabuf *)iocbq->context3)->virt;
  7244. if (!bpl)
  7245. return IOCB_ERROR;
  7246. /* Should already be byte swapped. */
  7247. wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
  7248. wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
  7249. /* swap the size field back to the cpu so we
  7250. * can assign it to the sgl.
  7251. */
  7252. wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
  7253. xmit_len = wqe->generic.bde.tus.f.bdeSize;
  7254. total_len = 0;
  7255. for (i = 0; i < numBdes; i++) {
  7256. bde.tus.w = le32_to_cpu(bpl[i].tus.w);
  7257. total_len += bde.tus.f.bdeSize;
  7258. }
  7259. } else
  7260. xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
  7261. iocbq->iocb.ulpIoTag = iocbq->iotag;
  7262. cmnd = iocbq->iocb.ulpCommand;
  7263. switch (iocbq->iocb.ulpCommand) {
  7264. case CMD_ELS_REQUEST64_CR:
  7265. if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
  7266. ndlp = iocbq->context_un.ndlp;
  7267. else
  7268. ndlp = (struct lpfc_nodelist *)iocbq->context1;
  7269. if (!iocbq->iocb.ulpLe) {
  7270. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  7271. "2007 Only Limited Edition cmd Format"
  7272. " supported 0x%x\n",
  7273. iocbq->iocb.ulpCommand);
  7274. return IOCB_ERROR;
  7275. }
  7276. wqe->els_req.payload_len = xmit_len;
  7277. /* Els_reguest64 has a TMO */
  7278. bf_set(wqe_tmo, &wqe->els_req.wqe_com,
  7279. iocbq->iocb.ulpTimeout);
  7280. /* Need a VF for word 4 set the vf bit*/
  7281. bf_set(els_req64_vf, &wqe->els_req, 0);
  7282. /* And a VFID for word 12 */
  7283. bf_set(els_req64_vfid, &wqe->els_req, 0);
  7284. ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
  7285. bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
  7286. iocbq->iocb.ulpContext);
  7287. bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
  7288. bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
  7289. /* CCP CCPE PV PRI in word10 were set in the memcpy */
  7290. if (command_type == ELS_COMMAND_FIP)
  7291. els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
  7292. >> LPFC_FIP_ELS_ID_SHIFT);
  7293. pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
  7294. iocbq->context2)->virt);
  7295. if_type = bf_get(lpfc_sli_intf_if_type,
  7296. &phba->sli4_hba.sli_intf);
  7297. if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
  7298. if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
  7299. *pcmd == ELS_CMD_SCR ||
  7300. *pcmd == ELS_CMD_FDISC ||
  7301. *pcmd == ELS_CMD_LOGO ||
  7302. *pcmd == ELS_CMD_PLOGI)) {
  7303. bf_set(els_req64_sp, &wqe->els_req, 1);
  7304. bf_set(els_req64_sid, &wqe->els_req,
  7305. iocbq->vport->fc_myDID);
  7306. if ((*pcmd == ELS_CMD_FLOGI) &&
  7307. !(phba->fc_topology ==
  7308. LPFC_TOPOLOGY_LOOP))
  7309. bf_set(els_req64_sid, &wqe->els_req, 0);
  7310. bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
  7311. bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
  7312. phba->vpi_ids[iocbq->vport->vpi]);
  7313. } else if (pcmd && iocbq->context1) {
  7314. bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
  7315. bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
  7316. phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
  7317. }
  7318. }
  7319. bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
  7320. phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
  7321. bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
  7322. bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
  7323. bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
  7324. bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
  7325. bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
  7326. bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
  7327. break;
  7328. case CMD_XMIT_SEQUENCE64_CX:
  7329. bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
  7330. iocbq->iocb.un.ulpWord[3]);
  7331. bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
  7332. iocbq->iocb.unsli3.rcvsli3.ox_id);
  7333. /* The entire sequence is transmitted for this IOCB */
  7334. xmit_len = total_len;
  7335. cmnd = CMD_XMIT_SEQUENCE64_CR;
  7336. if (phba->link_flag & LS_LOOPBACK_MODE)
  7337. bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
  7338. case CMD_XMIT_SEQUENCE64_CR:
  7339. /* word3 iocb=io_tag32 wqe=reserved */
  7340. wqe->xmit_sequence.rsvd3 = 0;
  7341. /* word4 relative_offset memcpy */
  7342. /* word5 r_ctl/df_ctl memcpy */
  7343. bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
  7344. bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
  7345. bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
  7346. LPFC_WQE_IOD_WRITE);
  7347. bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
  7348. LPFC_WQE_LENLOC_WORD12);
  7349. bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
  7350. wqe->xmit_sequence.xmit_len = xmit_len;
  7351. command_type = OTHER_COMMAND;
  7352. break;
  7353. case CMD_XMIT_BCAST64_CN:
  7354. /* word3 iocb=iotag32 wqe=seq_payload_len */
  7355. wqe->xmit_bcast64.seq_payload_len = xmit_len;
  7356. /* word4 iocb=rsvd wqe=rsvd */
  7357. /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
  7358. /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
  7359. bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
  7360. ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
  7361. bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
  7362. bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
  7363. bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
  7364. LPFC_WQE_LENLOC_WORD3);
  7365. bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
  7366. break;
  7367. case CMD_FCP_IWRITE64_CR:
  7368. command_type = FCP_COMMAND_DATA_OUT;
  7369. /* word3 iocb=iotag wqe=payload_offset_len */
  7370. /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
  7371. wqe->fcp_iwrite.payload_offset_len =
  7372. xmit_len + sizeof(struct fcp_rsp);
  7373. /* word4 iocb=parameter wqe=total_xfer_length memcpy */
  7374. /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
  7375. bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
  7376. iocbq->iocb.ulpFCP2Rcvy);
  7377. bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
  7378. /* Always open the exchange */
  7379. bf_set(wqe_xc, &wqe->fcp_iwrite.wqe_com, 0);
  7380. bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
  7381. bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
  7382. LPFC_WQE_LENLOC_WORD4);
  7383. bf_set(wqe_ebde_cnt, &wqe->fcp_iwrite.wqe_com, 0);
  7384. bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
  7385. bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
  7386. break;
  7387. case CMD_FCP_IREAD64_CR:
  7388. /* word3 iocb=iotag wqe=payload_offset_len */
  7389. /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
  7390. wqe->fcp_iread.payload_offset_len =
  7391. xmit_len + sizeof(struct fcp_rsp);
  7392. /* word4 iocb=parameter wqe=total_xfer_length memcpy */
  7393. /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
  7394. bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
  7395. iocbq->iocb.ulpFCP2Rcvy);
  7396. bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
  7397. /* Always open the exchange */
  7398. bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
  7399. bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
  7400. bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
  7401. LPFC_WQE_LENLOC_WORD4);
  7402. bf_set(wqe_ebde_cnt, &wqe->fcp_iread.wqe_com, 0);
  7403. bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
  7404. bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
  7405. break;
  7406. case CMD_FCP_ICMND64_CR:
  7407. /* word3 iocb=IO_TAG wqe=reserved */
  7408. wqe->fcp_icmd.rsrvd3 = 0;
  7409. bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
  7410. /* Always open the exchange */
  7411. bf_set(wqe_xc, &wqe->fcp_icmd.wqe_com, 0);
  7412. bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
  7413. bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
  7414. bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
  7415. bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
  7416. LPFC_WQE_LENLOC_NONE);
  7417. bf_set(wqe_ebde_cnt, &wqe->fcp_icmd.wqe_com, 0);
  7418. bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
  7419. iocbq->iocb.ulpFCP2Rcvy);
  7420. break;
  7421. case CMD_GEN_REQUEST64_CR:
  7422. /* For this command calculate the xmit length of the
  7423. * request bde.
  7424. */
  7425. xmit_len = 0;
  7426. numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
  7427. sizeof(struct ulp_bde64);
  7428. for (i = 0; i < numBdes; i++) {
  7429. bde.tus.w = le32_to_cpu(bpl[i].tus.w);
  7430. if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
  7431. break;
  7432. xmit_len += bde.tus.f.bdeSize;
  7433. }
  7434. /* word3 iocb=IO_TAG wqe=request_payload_len */
  7435. wqe->gen_req.request_payload_len = xmit_len;
  7436. /* word4 iocb=parameter wqe=relative_offset memcpy */
  7437. /* word5 [rctl, type, df_ctl, la] copied in memcpy */
  7438. /* word6 context tag copied in memcpy */
  7439. if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
  7440. ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
  7441. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  7442. "2015 Invalid CT %x command 0x%x\n",
  7443. ct, iocbq->iocb.ulpCommand);
  7444. return IOCB_ERROR;
  7445. }
  7446. bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
  7447. bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
  7448. bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
  7449. bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
  7450. bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
  7451. bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
  7452. bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
  7453. bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
  7454. command_type = OTHER_COMMAND;
  7455. break;
  7456. case CMD_XMIT_ELS_RSP64_CX:
  7457. ndlp = (struct lpfc_nodelist *)iocbq->context1;
  7458. /* words0-2 BDE memcpy */
  7459. /* word3 iocb=iotag32 wqe=response_payload_len */
  7460. wqe->xmit_els_rsp.response_payload_len = xmit_len;
  7461. /* word4 */
  7462. wqe->xmit_els_rsp.word4 = 0;
  7463. /* word5 iocb=rsvd wge=did */
  7464. bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
  7465. iocbq->iocb.un.xseq64.xmit_els_remoteID);
  7466. if_type = bf_get(lpfc_sli_intf_if_type,
  7467. &phba->sli4_hba.sli_intf);
  7468. if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
  7469. if (iocbq->vport->fc_flag & FC_PT2PT) {
  7470. bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
  7471. bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
  7472. iocbq->vport->fc_myDID);
  7473. if (iocbq->vport->fc_myDID == Fabric_DID) {
  7474. bf_set(wqe_els_did,
  7475. &wqe->xmit_els_rsp.wqe_dest, 0);
  7476. }
  7477. }
  7478. }
  7479. bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
  7480. ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
  7481. bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
  7482. bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
  7483. iocbq->iocb.unsli3.rcvsli3.ox_id);
  7484. if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
  7485. bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
  7486. phba->vpi_ids[iocbq->vport->vpi]);
  7487. bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
  7488. bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
  7489. bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
  7490. bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
  7491. LPFC_WQE_LENLOC_WORD3);
  7492. bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
  7493. bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
  7494. phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
  7495. pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
  7496. iocbq->context2)->virt);
  7497. if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
  7498. bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
  7499. bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
  7500. iocbq->vport->fc_myDID);
  7501. bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
  7502. bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
  7503. phba->vpi_ids[phba->pport->vpi]);
  7504. }
  7505. command_type = OTHER_COMMAND;
  7506. break;
  7507. case CMD_CLOSE_XRI_CN:
  7508. case CMD_ABORT_XRI_CN:
  7509. case CMD_ABORT_XRI_CX:
  7510. /* words 0-2 memcpy should be 0 rserved */
  7511. /* port will send abts */
  7512. abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
  7513. if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
  7514. abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
  7515. fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
  7516. } else
  7517. fip = 0;
  7518. if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
  7519. /*
  7520. * The link is down, or the command was ELS_FIP
  7521. * so the fw does not need to send abts
  7522. * on the wire.
  7523. */
  7524. bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
  7525. else
  7526. bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
  7527. bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
  7528. /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
  7529. wqe->abort_cmd.rsrvd5 = 0;
  7530. bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
  7531. ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
  7532. abort_tag = iocbq->iocb.un.acxri.abortIoTag;
  7533. /*
  7534. * The abort handler will send us CMD_ABORT_XRI_CN or
  7535. * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
  7536. */
  7537. bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
  7538. bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
  7539. bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
  7540. LPFC_WQE_LENLOC_NONE);
  7541. cmnd = CMD_ABORT_XRI_CX;
  7542. command_type = OTHER_COMMAND;
  7543. xritag = 0;
  7544. break;
  7545. case CMD_XMIT_BLS_RSP64_CX:
  7546. ndlp = (struct lpfc_nodelist *)iocbq->context1;
  7547. /* As BLS ABTS RSP WQE is very different from other WQEs,
  7548. * we re-construct this WQE here based on information in
  7549. * iocbq from scratch.
  7550. */
  7551. memset(wqe, 0, sizeof(union lpfc_wqe));
  7552. /* OX_ID is invariable to who sent ABTS to CT exchange */
  7553. bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
  7554. bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
  7555. if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
  7556. LPFC_ABTS_UNSOL_INT) {
  7557. /* ABTS sent by initiator to CT exchange, the
  7558. * RX_ID field will be filled with the newly
  7559. * allocated responder XRI.
  7560. */
  7561. bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
  7562. iocbq->sli4_xritag);
  7563. } else {
  7564. /* ABTS sent by responder to CT exchange, the
  7565. * RX_ID field will be filled with the responder
  7566. * RX_ID from ABTS.
  7567. */
  7568. bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
  7569. bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
  7570. }
  7571. bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
  7572. bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
  7573. /* Use CT=VPI */
  7574. bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
  7575. ndlp->nlp_DID);
  7576. bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
  7577. iocbq->iocb.ulpContext);
  7578. bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
  7579. bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
  7580. phba->vpi_ids[phba->pport->vpi]);
  7581. bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
  7582. bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
  7583. LPFC_WQE_LENLOC_NONE);
  7584. /* Overwrite the pre-set comnd type with OTHER_COMMAND */
  7585. command_type = OTHER_COMMAND;
  7586. if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
  7587. bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
  7588. bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
  7589. bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
  7590. bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
  7591. bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
  7592. bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
  7593. }
  7594. break;
  7595. case CMD_XRI_ABORTED_CX:
  7596. case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
  7597. case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
  7598. case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
  7599. case CMD_FCP_TRSP64_CX: /* Target mode rcv */
  7600. case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
  7601. default:
  7602. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  7603. "2014 Invalid command 0x%x\n",
  7604. iocbq->iocb.ulpCommand);
  7605. return IOCB_ERROR;
  7606. break;
  7607. }
  7608. if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
  7609. bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
  7610. else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
  7611. bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
  7612. else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
  7613. bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
  7614. iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
  7615. LPFC_IO_DIF_INSERT);
  7616. bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
  7617. bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
  7618. wqe->generic.wqe_com.abort_tag = abort_tag;
  7619. bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
  7620. bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
  7621. bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
  7622. bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
  7623. return 0;
  7624. }
  7625. /**
  7626. * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
  7627. * @phba: Pointer to HBA context object.
  7628. * @ring_number: SLI ring number to issue iocb on.
  7629. * @piocb: Pointer to command iocb.
  7630. * @flag: Flag indicating if this command can be put into txq.
  7631. *
  7632. * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
  7633. * an iocb command to an HBA with SLI-4 interface spec.
  7634. *
  7635. * This function is called with hbalock held. The function will return success
  7636. * after it successfully submit the iocb to firmware or after adding to the
  7637. * txq.
  7638. **/
  7639. static int
  7640. __lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
  7641. struct lpfc_iocbq *piocb, uint32_t flag)
  7642. {
  7643. struct lpfc_sglq *sglq;
  7644. union lpfc_wqe wqe;
  7645. struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
  7646. if (piocb->sli4_xritag == NO_XRI) {
  7647. if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
  7648. piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
  7649. sglq = NULL;
  7650. else {
  7651. if (!list_empty(&pring->txq)) {
  7652. if (!(flag & SLI_IOCB_RET_IOCB)) {
  7653. __lpfc_sli_ringtx_put(phba,
  7654. pring, piocb);
  7655. return IOCB_SUCCESS;
  7656. } else {
  7657. return IOCB_BUSY;
  7658. }
  7659. } else {
  7660. sglq = __lpfc_sli_get_sglq(phba, piocb);
  7661. if (!sglq) {
  7662. if (!(flag & SLI_IOCB_RET_IOCB)) {
  7663. __lpfc_sli_ringtx_put(phba,
  7664. pring,
  7665. piocb);
  7666. return IOCB_SUCCESS;
  7667. } else
  7668. return IOCB_BUSY;
  7669. }
  7670. }
  7671. }
  7672. } else if (piocb->iocb_flag & LPFC_IO_FCP) {
  7673. /* These IO's already have an XRI and a mapped sgl. */
  7674. sglq = NULL;
  7675. } else {
  7676. /*
  7677. * This is a continuation of a commandi,(CX) so this
  7678. * sglq is on the active list
  7679. */
  7680. sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
  7681. if (!sglq)
  7682. return IOCB_ERROR;
  7683. }
  7684. if (sglq) {
  7685. piocb->sli4_lxritag = sglq->sli4_lxritag;
  7686. piocb->sli4_xritag = sglq->sli4_xritag;
  7687. if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
  7688. return IOCB_ERROR;
  7689. }
  7690. if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
  7691. return IOCB_ERROR;
  7692. if ((piocb->iocb_flag & LPFC_IO_FCP) ||
  7693. (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
  7694. if (lpfc_sli4_wq_put(phba->sli4_hba.fcp_wq[piocb->fcp_wqidx],
  7695. &wqe))
  7696. return IOCB_ERROR;
  7697. } else {
  7698. if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
  7699. return IOCB_ERROR;
  7700. }
  7701. lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
  7702. return 0;
  7703. }
  7704. /**
  7705. * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
  7706. *
  7707. * This routine wraps the actual lockless version for issusing IOCB function
  7708. * pointer from the lpfc_hba struct.
  7709. *
  7710. * Return codes:
  7711. * IOCB_ERROR - Error
  7712. * IOCB_SUCCESS - Success
  7713. * IOCB_BUSY - Busy
  7714. **/
  7715. int
  7716. __lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
  7717. struct lpfc_iocbq *piocb, uint32_t flag)
  7718. {
  7719. return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
  7720. }
  7721. /**
  7722. * lpfc_sli_api_table_setup - Set up sli api function jump table
  7723. * @phba: The hba struct for which this call is being executed.
  7724. * @dev_grp: The HBA PCI-Device group number.
  7725. *
  7726. * This routine sets up the SLI interface API function jump table in @phba
  7727. * struct.
  7728. * Returns: 0 - success, -ENODEV - failure.
  7729. **/
  7730. int
  7731. lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
  7732. {
  7733. switch (dev_grp) {
  7734. case LPFC_PCI_DEV_LP:
  7735. phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
  7736. phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
  7737. break;
  7738. case LPFC_PCI_DEV_OC:
  7739. phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
  7740. phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
  7741. break;
  7742. default:
  7743. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  7744. "1419 Invalid HBA PCI-device group: 0x%x\n",
  7745. dev_grp);
  7746. return -ENODEV;
  7747. break;
  7748. }
  7749. phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
  7750. return 0;
  7751. }
  7752. /**
  7753. * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
  7754. * @phba: Pointer to HBA context object.
  7755. * @pring: Pointer to driver SLI ring object.
  7756. * @piocb: Pointer to command iocb.
  7757. * @flag: Flag indicating if this command can be put into txq.
  7758. *
  7759. * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
  7760. * function. This function gets the hbalock and calls
  7761. * __lpfc_sli_issue_iocb function and will return the error returned
  7762. * by __lpfc_sli_issue_iocb function. This wrapper is used by
  7763. * functions which do not hold hbalock.
  7764. **/
  7765. int
  7766. lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
  7767. struct lpfc_iocbq *piocb, uint32_t flag)
  7768. {
  7769. struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
  7770. struct lpfc_sli_ring *pring;
  7771. struct lpfc_queue *fpeq;
  7772. struct lpfc_eqe *eqe;
  7773. unsigned long iflags;
  7774. int rc, idx;
  7775. if (phba->sli_rev == LPFC_SLI_REV4) {
  7776. if (piocb->iocb_flag & LPFC_IO_FCP) {
  7777. if (unlikely(!phba->sli4_hba.fcp_wq))
  7778. return IOCB_ERROR;
  7779. idx = lpfc_sli4_scmd_to_wqidx_distr(phba);
  7780. piocb->fcp_wqidx = idx;
  7781. ring_number = MAX_SLI3_CONFIGURED_RINGS + idx;
  7782. pring = &phba->sli.ring[ring_number];
  7783. spin_lock_irqsave(&pring->ring_lock, iflags);
  7784. rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
  7785. flag);
  7786. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  7787. if (lpfc_fcp_look_ahead) {
  7788. fcp_eq_hdl = &phba->sli4_hba.fcp_eq_hdl[idx];
  7789. if (atomic_dec_and_test(&fcp_eq_hdl->
  7790. fcp_eq_in_use)) {
  7791. /* Get associated EQ with this index */
  7792. fpeq = phba->sli4_hba.hba_eq[idx];
  7793. /* Turn off interrupts from this EQ */
  7794. lpfc_sli4_eq_clr_intr(fpeq);
  7795. /*
  7796. * Process all the events on FCP EQ
  7797. */
  7798. while ((eqe = lpfc_sli4_eq_get(fpeq))) {
  7799. lpfc_sli4_hba_handle_eqe(phba,
  7800. eqe, idx);
  7801. fpeq->EQ_processed++;
  7802. }
  7803. /* Always clear and re-arm the EQ */
  7804. lpfc_sli4_eq_release(fpeq,
  7805. LPFC_QUEUE_REARM);
  7806. }
  7807. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  7808. }
  7809. } else {
  7810. pring = &phba->sli.ring[ring_number];
  7811. spin_lock_irqsave(&pring->ring_lock, iflags);
  7812. rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb,
  7813. flag);
  7814. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  7815. }
  7816. } else {
  7817. /* For now, SLI2/3 will still use hbalock */
  7818. spin_lock_irqsave(&phba->hbalock, iflags);
  7819. rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
  7820. spin_unlock_irqrestore(&phba->hbalock, iflags);
  7821. }
  7822. return rc;
  7823. }
  7824. /**
  7825. * lpfc_extra_ring_setup - Extra ring setup function
  7826. * @phba: Pointer to HBA context object.
  7827. *
  7828. * This function is called while driver attaches with the
  7829. * HBA to setup the extra ring. The extra ring is used
  7830. * only when driver needs to support target mode functionality
  7831. * or IP over FC functionalities.
  7832. *
  7833. * This function is called with no lock held.
  7834. **/
  7835. static int
  7836. lpfc_extra_ring_setup( struct lpfc_hba *phba)
  7837. {
  7838. struct lpfc_sli *psli;
  7839. struct lpfc_sli_ring *pring;
  7840. psli = &phba->sli;
  7841. /* Adjust cmd/rsp ring iocb entries more evenly */
  7842. /* Take some away from the FCP ring */
  7843. pring = &psli->ring[psli->fcp_ring];
  7844. pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
  7845. pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
  7846. pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
  7847. pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
  7848. /* and give them to the extra ring */
  7849. pring = &psli->ring[psli->extra_ring];
  7850. pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
  7851. pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
  7852. pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
  7853. pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
  7854. /* Setup default profile for this ring */
  7855. pring->iotag_max = 4096;
  7856. pring->num_mask = 1;
  7857. pring->prt[0].profile = 0; /* Mask 0 */
  7858. pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
  7859. pring->prt[0].type = phba->cfg_multi_ring_type;
  7860. pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
  7861. return 0;
  7862. }
  7863. /* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
  7864. * @phba: Pointer to HBA context object.
  7865. * @iocbq: Pointer to iocb object.
  7866. *
  7867. * The async_event handler calls this routine when it receives
  7868. * an ASYNC_STATUS_CN event from the port. The port generates
  7869. * this event when an Abort Sequence request to an rport fails
  7870. * twice in succession. The abort could be originated by the
  7871. * driver or by the port. The ABTS could have been for an ELS
  7872. * or FCP IO. The port only generates this event when an ABTS
  7873. * fails to complete after one retry.
  7874. */
  7875. static void
  7876. lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
  7877. struct lpfc_iocbq *iocbq)
  7878. {
  7879. struct lpfc_nodelist *ndlp = NULL;
  7880. uint16_t rpi = 0, vpi = 0;
  7881. struct lpfc_vport *vport = NULL;
  7882. /* The rpi in the ulpContext is vport-sensitive. */
  7883. vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
  7884. rpi = iocbq->iocb.ulpContext;
  7885. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  7886. "3092 Port generated ABTS async event "
  7887. "on vpi %d rpi %d status 0x%x\n",
  7888. vpi, rpi, iocbq->iocb.ulpStatus);
  7889. vport = lpfc_find_vport_by_vpid(phba, vpi);
  7890. if (!vport)
  7891. goto err_exit;
  7892. ndlp = lpfc_findnode_rpi(vport, rpi);
  7893. if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
  7894. goto err_exit;
  7895. if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
  7896. lpfc_sli_abts_recover_port(vport, ndlp);
  7897. return;
  7898. err_exit:
  7899. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  7900. "3095 Event Context not found, no "
  7901. "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
  7902. iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
  7903. vpi, rpi);
  7904. }
  7905. /* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
  7906. * @phba: pointer to HBA context object.
  7907. * @ndlp: nodelist pointer for the impacted rport.
  7908. * @axri: pointer to the wcqe containing the failed exchange.
  7909. *
  7910. * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
  7911. * port. The port generates this event when an abort exchange request to an
  7912. * rport fails twice in succession with no reply. The abort could be originated
  7913. * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
  7914. */
  7915. void
  7916. lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
  7917. struct lpfc_nodelist *ndlp,
  7918. struct sli4_wcqe_xri_aborted *axri)
  7919. {
  7920. struct lpfc_vport *vport;
  7921. uint32_t ext_status = 0;
  7922. if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
  7923. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  7924. "3115 Node Context not found, driver "
  7925. "ignoring abts err event\n");
  7926. return;
  7927. }
  7928. vport = ndlp->vport;
  7929. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  7930. "3116 Port generated FCP XRI ABORT event on "
  7931. "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
  7932. ndlp->vport->vpi, ndlp->nlp_rpi,
  7933. bf_get(lpfc_wcqe_xa_xri, axri),
  7934. bf_get(lpfc_wcqe_xa_status, axri),
  7935. axri->parameter);
  7936. /*
  7937. * Catch the ABTS protocol failure case. Older OCe FW releases returned
  7938. * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
  7939. * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
  7940. */
  7941. ext_status = axri->parameter & IOERR_PARAM_MASK;
  7942. if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
  7943. ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
  7944. lpfc_sli_abts_recover_port(vport, ndlp);
  7945. }
  7946. /**
  7947. * lpfc_sli_async_event_handler - ASYNC iocb handler function
  7948. * @phba: Pointer to HBA context object.
  7949. * @pring: Pointer to driver SLI ring object.
  7950. * @iocbq: Pointer to iocb object.
  7951. *
  7952. * This function is called by the slow ring event handler
  7953. * function when there is an ASYNC event iocb in the ring.
  7954. * This function is called with no lock held.
  7955. * Currently this function handles only temperature related
  7956. * ASYNC events. The function decodes the temperature sensor
  7957. * event message and posts events for the management applications.
  7958. **/
  7959. static void
  7960. lpfc_sli_async_event_handler(struct lpfc_hba * phba,
  7961. struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
  7962. {
  7963. IOCB_t *icmd;
  7964. uint16_t evt_code;
  7965. struct temp_event temp_event_data;
  7966. struct Scsi_Host *shost;
  7967. uint32_t *iocb_w;
  7968. icmd = &iocbq->iocb;
  7969. evt_code = icmd->un.asyncstat.evt_code;
  7970. switch (evt_code) {
  7971. case ASYNC_TEMP_WARN:
  7972. case ASYNC_TEMP_SAFE:
  7973. temp_event_data.data = (uint32_t) icmd->ulpContext;
  7974. temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
  7975. if (evt_code == ASYNC_TEMP_WARN) {
  7976. temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
  7977. lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
  7978. "0347 Adapter is very hot, please take "
  7979. "corrective action. temperature : %d Celsius\n",
  7980. (uint32_t) icmd->ulpContext);
  7981. } else {
  7982. temp_event_data.event_code = LPFC_NORMAL_TEMP;
  7983. lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
  7984. "0340 Adapter temperature is OK now. "
  7985. "temperature : %d Celsius\n",
  7986. (uint32_t) icmd->ulpContext);
  7987. }
  7988. /* Send temperature change event to applications */
  7989. shost = lpfc_shost_from_vport(phba->pport);
  7990. fc_host_post_vendor_event(shost, fc_get_event_number(),
  7991. sizeof(temp_event_data), (char *) &temp_event_data,
  7992. LPFC_NL_VENDOR_ID);
  7993. break;
  7994. case ASYNC_STATUS_CN:
  7995. lpfc_sli_abts_err_handler(phba, iocbq);
  7996. break;
  7997. default:
  7998. iocb_w = (uint32_t *) icmd;
  7999. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  8000. "0346 Ring %d handler: unexpected ASYNC_STATUS"
  8001. " evt_code 0x%x\n"
  8002. "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
  8003. "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
  8004. "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
  8005. "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
  8006. pring->ringno, icmd->un.asyncstat.evt_code,
  8007. iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
  8008. iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
  8009. iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
  8010. iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
  8011. break;
  8012. }
  8013. }
  8014. /**
  8015. * lpfc_sli_setup - SLI ring setup function
  8016. * @phba: Pointer to HBA context object.
  8017. *
  8018. * lpfc_sli_setup sets up rings of the SLI interface with
  8019. * number of iocbs per ring and iotags. This function is
  8020. * called while driver attach to the HBA and before the
  8021. * interrupts are enabled. So there is no need for locking.
  8022. *
  8023. * This function always returns 0.
  8024. **/
  8025. int
  8026. lpfc_sli_setup(struct lpfc_hba *phba)
  8027. {
  8028. int i, totiocbsize = 0;
  8029. struct lpfc_sli *psli = &phba->sli;
  8030. struct lpfc_sli_ring *pring;
  8031. psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
  8032. if (phba->sli_rev == LPFC_SLI_REV4)
  8033. psli->num_rings += phba->cfg_fcp_io_channel;
  8034. psli->sli_flag = 0;
  8035. psli->fcp_ring = LPFC_FCP_RING;
  8036. psli->next_ring = LPFC_FCP_NEXT_RING;
  8037. psli->extra_ring = LPFC_EXTRA_RING;
  8038. psli->iocbq_lookup = NULL;
  8039. psli->iocbq_lookup_len = 0;
  8040. psli->last_iotag = 0;
  8041. for (i = 0; i < psli->num_rings; i++) {
  8042. pring = &psli->ring[i];
  8043. switch (i) {
  8044. case LPFC_FCP_RING: /* ring 0 - FCP */
  8045. /* numCiocb and numRiocb are used in config_port */
  8046. pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
  8047. pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
  8048. pring->sli.sli3.numCiocb +=
  8049. SLI2_IOCB_CMD_R1XTRA_ENTRIES;
  8050. pring->sli.sli3.numRiocb +=
  8051. SLI2_IOCB_RSP_R1XTRA_ENTRIES;
  8052. pring->sli.sli3.numCiocb +=
  8053. SLI2_IOCB_CMD_R3XTRA_ENTRIES;
  8054. pring->sli.sli3.numRiocb +=
  8055. SLI2_IOCB_RSP_R3XTRA_ENTRIES;
  8056. pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
  8057. SLI3_IOCB_CMD_SIZE :
  8058. SLI2_IOCB_CMD_SIZE;
  8059. pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
  8060. SLI3_IOCB_RSP_SIZE :
  8061. SLI2_IOCB_RSP_SIZE;
  8062. pring->iotag_ctr = 0;
  8063. pring->iotag_max =
  8064. (phba->cfg_hba_queue_depth * 2);
  8065. pring->fast_iotag = pring->iotag_max;
  8066. pring->num_mask = 0;
  8067. break;
  8068. case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
  8069. /* numCiocb and numRiocb are used in config_port */
  8070. pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
  8071. pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
  8072. pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
  8073. SLI3_IOCB_CMD_SIZE :
  8074. SLI2_IOCB_CMD_SIZE;
  8075. pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
  8076. SLI3_IOCB_RSP_SIZE :
  8077. SLI2_IOCB_RSP_SIZE;
  8078. pring->iotag_max = phba->cfg_hba_queue_depth;
  8079. pring->num_mask = 0;
  8080. break;
  8081. case LPFC_ELS_RING: /* ring 2 - ELS / CT */
  8082. /* numCiocb and numRiocb are used in config_port */
  8083. pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
  8084. pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
  8085. pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
  8086. SLI3_IOCB_CMD_SIZE :
  8087. SLI2_IOCB_CMD_SIZE;
  8088. pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
  8089. SLI3_IOCB_RSP_SIZE :
  8090. SLI2_IOCB_RSP_SIZE;
  8091. pring->fast_iotag = 0;
  8092. pring->iotag_ctr = 0;
  8093. pring->iotag_max = 4096;
  8094. pring->lpfc_sli_rcv_async_status =
  8095. lpfc_sli_async_event_handler;
  8096. pring->num_mask = LPFC_MAX_RING_MASK;
  8097. pring->prt[0].profile = 0; /* Mask 0 */
  8098. pring->prt[0].rctl = FC_RCTL_ELS_REQ;
  8099. pring->prt[0].type = FC_TYPE_ELS;
  8100. pring->prt[0].lpfc_sli_rcv_unsol_event =
  8101. lpfc_els_unsol_event;
  8102. pring->prt[1].profile = 0; /* Mask 1 */
  8103. pring->prt[1].rctl = FC_RCTL_ELS_REP;
  8104. pring->prt[1].type = FC_TYPE_ELS;
  8105. pring->prt[1].lpfc_sli_rcv_unsol_event =
  8106. lpfc_els_unsol_event;
  8107. pring->prt[2].profile = 0; /* Mask 2 */
  8108. /* NameServer Inquiry */
  8109. pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
  8110. /* NameServer */
  8111. pring->prt[2].type = FC_TYPE_CT;
  8112. pring->prt[2].lpfc_sli_rcv_unsol_event =
  8113. lpfc_ct_unsol_event;
  8114. pring->prt[3].profile = 0; /* Mask 3 */
  8115. /* NameServer response */
  8116. pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
  8117. /* NameServer */
  8118. pring->prt[3].type = FC_TYPE_CT;
  8119. pring->prt[3].lpfc_sli_rcv_unsol_event =
  8120. lpfc_ct_unsol_event;
  8121. break;
  8122. }
  8123. totiocbsize += (pring->sli.sli3.numCiocb *
  8124. pring->sli.sli3.sizeCiocb) +
  8125. (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
  8126. }
  8127. if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
  8128. /* Too many cmd / rsp ring entries in SLI2 SLIM */
  8129. printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
  8130. "SLI2 SLIM Data: x%x x%lx\n",
  8131. phba->brd_no, totiocbsize,
  8132. (unsigned long) MAX_SLIM_IOCB_SIZE);
  8133. }
  8134. if (phba->cfg_multi_ring_support == 2)
  8135. lpfc_extra_ring_setup(phba);
  8136. return 0;
  8137. }
  8138. /**
  8139. * lpfc_sli_queue_setup - Queue initialization function
  8140. * @phba: Pointer to HBA context object.
  8141. *
  8142. * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
  8143. * ring. This function also initializes ring indices of each ring.
  8144. * This function is called during the initialization of the SLI
  8145. * interface of an HBA.
  8146. * This function is called with no lock held and always returns
  8147. * 1.
  8148. **/
  8149. int
  8150. lpfc_sli_queue_setup(struct lpfc_hba *phba)
  8151. {
  8152. struct lpfc_sli *psli;
  8153. struct lpfc_sli_ring *pring;
  8154. int i;
  8155. psli = &phba->sli;
  8156. spin_lock_irq(&phba->hbalock);
  8157. INIT_LIST_HEAD(&psli->mboxq);
  8158. INIT_LIST_HEAD(&psli->mboxq_cmpl);
  8159. /* Initialize list headers for txq and txcmplq as double linked lists */
  8160. for (i = 0; i < psli->num_rings; i++) {
  8161. pring = &psli->ring[i];
  8162. pring->ringno = i;
  8163. pring->sli.sli3.next_cmdidx = 0;
  8164. pring->sli.sli3.local_getidx = 0;
  8165. pring->sli.sli3.cmdidx = 0;
  8166. INIT_LIST_HEAD(&pring->txq);
  8167. INIT_LIST_HEAD(&pring->txcmplq);
  8168. INIT_LIST_HEAD(&pring->iocb_continueq);
  8169. INIT_LIST_HEAD(&pring->iocb_continue_saveq);
  8170. INIT_LIST_HEAD(&pring->postbufq);
  8171. spin_lock_init(&pring->ring_lock);
  8172. }
  8173. spin_unlock_irq(&phba->hbalock);
  8174. return 1;
  8175. }
  8176. /**
  8177. * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
  8178. * @phba: Pointer to HBA context object.
  8179. *
  8180. * This routine flushes the mailbox command subsystem. It will unconditionally
  8181. * flush all the mailbox commands in the three possible stages in the mailbox
  8182. * command sub-system: pending mailbox command queue; the outstanding mailbox
  8183. * command; and completed mailbox command queue. It is caller's responsibility
  8184. * to make sure that the driver is in the proper state to flush the mailbox
  8185. * command sub-system. Namely, the posting of mailbox commands into the
  8186. * pending mailbox command queue from the various clients must be stopped;
  8187. * either the HBA is in a state that it will never works on the outstanding
  8188. * mailbox command (such as in EEH or ERATT conditions) or the outstanding
  8189. * mailbox command has been completed.
  8190. **/
  8191. static void
  8192. lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
  8193. {
  8194. LIST_HEAD(completions);
  8195. struct lpfc_sli *psli = &phba->sli;
  8196. LPFC_MBOXQ_t *pmb;
  8197. unsigned long iflag;
  8198. /* Flush all the mailbox commands in the mbox system */
  8199. spin_lock_irqsave(&phba->hbalock, iflag);
  8200. /* The pending mailbox command queue */
  8201. list_splice_init(&phba->sli.mboxq, &completions);
  8202. /* The outstanding active mailbox command */
  8203. if (psli->mbox_active) {
  8204. list_add_tail(&psli->mbox_active->list, &completions);
  8205. psli->mbox_active = NULL;
  8206. psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  8207. }
  8208. /* The completed mailbox command queue */
  8209. list_splice_init(&phba->sli.mboxq_cmpl, &completions);
  8210. spin_unlock_irqrestore(&phba->hbalock, iflag);
  8211. /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
  8212. while (!list_empty(&completions)) {
  8213. list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
  8214. pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
  8215. if (pmb->mbox_cmpl)
  8216. pmb->mbox_cmpl(phba, pmb);
  8217. }
  8218. }
  8219. /**
  8220. * lpfc_sli_host_down - Vport cleanup function
  8221. * @vport: Pointer to virtual port object.
  8222. *
  8223. * lpfc_sli_host_down is called to clean up the resources
  8224. * associated with a vport before destroying virtual
  8225. * port data structures.
  8226. * This function does following operations:
  8227. * - Free discovery resources associated with this virtual
  8228. * port.
  8229. * - Free iocbs associated with this virtual port in
  8230. * the txq.
  8231. * - Send abort for all iocb commands associated with this
  8232. * vport in txcmplq.
  8233. *
  8234. * This function is called with no lock held and always returns 1.
  8235. **/
  8236. int
  8237. lpfc_sli_host_down(struct lpfc_vport *vport)
  8238. {
  8239. LIST_HEAD(completions);
  8240. struct lpfc_hba *phba = vport->phba;
  8241. struct lpfc_sli *psli = &phba->sli;
  8242. struct lpfc_sli_ring *pring;
  8243. struct lpfc_iocbq *iocb, *next_iocb;
  8244. int i;
  8245. unsigned long flags = 0;
  8246. uint16_t prev_pring_flag;
  8247. lpfc_cleanup_discovery_resources(vport);
  8248. spin_lock_irqsave(&phba->hbalock, flags);
  8249. for (i = 0; i < psli->num_rings; i++) {
  8250. pring = &psli->ring[i];
  8251. prev_pring_flag = pring->flag;
  8252. /* Only slow rings */
  8253. if (pring->ringno == LPFC_ELS_RING) {
  8254. pring->flag |= LPFC_DEFERRED_RING_EVENT;
  8255. /* Set the lpfc data pending flag */
  8256. set_bit(LPFC_DATA_READY, &phba->data_flags);
  8257. }
  8258. /*
  8259. * Error everything on the txq since these iocbs have not been
  8260. * given to the FW yet.
  8261. */
  8262. list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
  8263. if (iocb->vport != vport)
  8264. continue;
  8265. list_move_tail(&iocb->list, &completions);
  8266. }
  8267. /* Next issue ABTS for everything on the txcmplq */
  8268. list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
  8269. list) {
  8270. if (iocb->vport != vport)
  8271. continue;
  8272. lpfc_sli_issue_abort_iotag(phba, pring, iocb);
  8273. }
  8274. pring->flag = prev_pring_flag;
  8275. }
  8276. spin_unlock_irqrestore(&phba->hbalock, flags);
  8277. /* Cancel all the IOCBs from the completions list */
  8278. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  8279. IOERR_SLI_DOWN);
  8280. return 1;
  8281. }
  8282. /**
  8283. * lpfc_sli_hba_down - Resource cleanup function for the HBA
  8284. * @phba: Pointer to HBA context object.
  8285. *
  8286. * This function cleans up all iocb, buffers, mailbox commands
  8287. * while shutting down the HBA. This function is called with no
  8288. * lock held and always returns 1.
  8289. * This function does the following to cleanup driver resources:
  8290. * - Free discovery resources for each virtual port
  8291. * - Cleanup any pending fabric iocbs
  8292. * - Iterate through the iocb txq and free each entry
  8293. * in the list.
  8294. * - Free up any buffer posted to the HBA
  8295. * - Free mailbox commands in the mailbox queue.
  8296. **/
  8297. int
  8298. lpfc_sli_hba_down(struct lpfc_hba *phba)
  8299. {
  8300. LIST_HEAD(completions);
  8301. struct lpfc_sli *psli = &phba->sli;
  8302. struct lpfc_sli_ring *pring;
  8303. struct lpfc_dmabuf *buf_ptr;
  8304. unsigned long flags = 0;
  8305. int i;
  8306. /* Shutdown the mailbox command sub-system */
  8307. lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
  8308. lpfc_hba_down_prep(phba);
  8309. lpfc_fabric_abort_hba(phba);
  8310. spin_lock_irqsave(&phba->hbalock, flags);
  8311. for (i = 0; i < psli->num_rings; i++) {
  8312. pring = &psli->ring[i];
  8313. /* Only slow rings */
  8314. if (pring->ringno == LPFC_ELS_RING) {
  8315. pring->flag |= LPFC_DEFERRED_RING_EVENT;
  8316. /* Set the lpfc data pending flag */
  8317. set_bit(LPFC_DATA_READY, &phba->data_flags);
  8318. }
  8319. /*
  8320. * Error everything on the txq since these iocbs have not been
  8321. * given to the FW yet.
  8322. */
  8323. list_splice_init(&pring->txq, &completions);
  8324. }
  8325. spin_unlock_irqrestore(&phba->hbalock, flags);
  8326. /* Cancel all the IOCBs from the completions list */
  8327. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  8328. IOERR_SLI_DOWN);
  8329. spin_lock_irqsave(&phba->hbalock, flags);
  8330. list_splice_init(&phba->elsbuf, &completions);
  8331. phba->elsbuf_cnt = 0;
  8332. phba->elsbuf_prev_cnt = 0;
  8333. spin_unlock_irqrestore(&phba->hbalock, flags);
  8334. while (!list_empty(&completions)) {
  8335. list_remove_head(&completions, buf_ptr,
  8336. struct lpfc_dmabuf, list);
  8337. lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
  8338. kfree(buf_ptr);
  8339. }
  8340. /* Return any active mbox cmds */
  8341. del_timer_sync(&psli->mbox_tmo);
  8342. spin_lock_irqsave(&phba->pport->work_port_lock, flags);
  8343. phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
  8344. spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
  8345. return 1;
  8346. }
  8347. /**
  8348. * lpfc_sli_pcimem_bcopy - SLI memory copy function
  8349. * @srcp: Source memory pointer.
  8350. * @destp: Destination memory pointer.
  8351. * @cnt: Number of words required to be copied.
  8352. *
  8353. * This function is used for copying data between driver memory
  8354. * and the SLI memory. This function also changes the endianness
  8355. * of each word if native endianness is different from SLI
  8356. * endianness. This function can be called with or without
  8357. * lock.
  8358. **/
  8359. void
  8360. lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
  8361. {
  8362. uint32_t *src = srcp;
  8363. uint32_t *dest = destp;
  8364. uint32_t ldata;
  8365. int i;
  8366. for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
  8367. ldata = *src;
  8368. ldata = le32_to_cpu(ldata);
  8369. *dest = ldata;
  8370. src++;
  8371. dest++;
  8372. }
  8373. }
  8374. /**
  8375. * lpfc_sli_bemem_bcopy - SLI memory copy function
  8376. * @srcp: Source memory pointer.
  8377. * @destp: Destination memory pointer.
  8378. * @cnt: Number of words required to be copied.
  8379. *
  8380. * This function is used for copying data between a data structure
  8381. * with big endian representation to local endianness.
  8382. * This function can be called with or without lock.
  8383. **/
  8384. void
  8385. lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
  8386. {
  8387. uint32_t *src = srcp;
  8388. uint32_t *dest = destp;
  8389. uint32_t ldata;
  8390. int i;
  8391. for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
  8392. ldata = *src;
  8393. ldata = be32_to_cpu(ldata);
  8394. *dest = ldata;
  8395. src++;
  8396. dest++;
  8397. }
  8398. }
  8399. /**
  8400. * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
  8401. * @phba: Pointer to HBA context object.
  8402. * @pring: Pointer to driver SLI ring object.
  8403. * @mp: Pointer to driver buffer object.
  8404. *
  8405. * This function is called with no lock held.
  8406. * It always return zero after adding the buffer to the postbufq
  8407. * buffer list.
  8408. **/
  8409. int
  8410. lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8411. struct lpfc_dmabuf *mp)
  8412. {
  8413. /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
  8414. later */
  8415. spin_lock_irq(&phba->hbalock);
  8416. list_add_tail(&mp->list, &pring->postbufq);
  8417. pring->postbufq_cnt++;
  8418. spin_unlock_irq(&phba->hbalock);
  8419. return 0;
  8420. }
  8421. /**
  8422. * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
  8423. * @phba: Pointer to HBA context object.
  8424. *
  8425. * When HBQ is enabled, buffers are searched based on tags. This function
  8426. * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
  8427. * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
  8428. * does not conflict with tags of buffer posted for unsolicited events.
  8429. * The function returns the allocated tag. The function is called with
  8430. * no locks held.
  8431. **/
  8432. uint32_t
  8433. lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
  8434. {
  8435. spin_lock_irq(&phba->hbalock);
  8436. phba->buffer_tag_count++;
  8437. /*
  8438. * Always set the QUE_BUFTAG_BIT to distiguish between
  8439. * a tag assigned by HBQ.
  8440. */
  8441. phba->buffer_tag_count |= QUE_BUFTAG_BIT;
  8442. spin_unlock_irq(&phba->hbalock);
  8443. return phba->buffer_tag_count;
  8444. }
  8445. /**
  8446. * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
  8447. * @phba: Pointer to HBA context object.
  8448. * @pring: Pointer to driver SLI ring object.
  8449. * @tag: Buffer tag.
  8450. *
  8451. * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
  8452. * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
  8453. * iocb is posted to the response ring with the tag of the buffer.
  8454. * This function searches the pring->postbufq list using the tag
  8455. * to find buffer associated with CMD_IOCB_RET_XRI64_CX
  8456. * iocb. If the buffer is found then lpfc_dmabuf object of the
  8457. * buffer is returned to the caller else NULL is returned.
  8458. * This function is called with no lock held.
  8459. **/
  8460. struct lpfc_dmabuf *
  8461. lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8462. uint32_t tag)
  8463. {
  8464. struct lpfc_dmabuf *mp, *next_mp;
  8465. struct list_head *slp = &pring->postbufq;
  8466. /* Search postbufq, from the beginning, looking for a match on tag */
  8467. spin_lock_irq(&phba->hbalock);
  8468. list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
  8469. if (mp->buffer_tag == tag) {
  8470. list_del_init(&mp->list);
  8471. pring->postbufq_cnt--;
  8472. spin_unlock_irq(&phba->hbalock);
  8473. return mp;
  8474. }
  8475. }
  8476. spin_unlock_irq(&phba->hbalock);
  8477. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  8478. "0402 Cannot find virtual addr for buffer tag on "
  8479. "ring %d Data x%lx x%p x%p x%x\n",
  8480. pring->ringno, (unsigned long) tag,
  8481. slp->next, slp->prev, pring->postbufq_cnt);
  8482. return NULL;
  8483. }
  8484. /**
  8485. * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
  8486. * @phba: Pointer to HBA context object.
  8487. * @pring: Pointer to driver SLI ring object.
  8488. * @phys: DMA address of the buffer.
  8489. *
  8490. * This function searches the buffer list using the dma_address
  8491. * of unsolicited event to find the driver's lpfc_dmabuf object
  8492. * corresponding to the dma_address. The function returns the
  8493. * lpfc_dmabuf object if a buffer is found else it returns NULL.
  8494. * This function is called by the ct and els unsolicited event
  8495. * handlers to get the buffer associated with the unsolicited
  8496. * event.
  8497. *
  8498. * This function is called with no lock held.
  8499. **/
  8500. struct lpfc_dmabuf *
  8501. lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8502. dma_addr_t phys)
  8503. {
  8504. struct lpfc_dmabuf *mp, *next_mp;
  8505. struct list_head *slp = &pring->postbufq;
  8506. /* Search postbufq, from the beginning, looking for a match on phys */
  8507. spin_lock_irq(&phba->hbalock);
  8508. list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
  8509. if (mp->phys == phys) {
  8510. list_del_init(&mp->list);
  8511. pring->postbufq_cnt--;
  8512. spin_unlock_irq(&phba->hbalock);
  8513. return mp;
  8514. }
  8515. }
  8516. spin_unlock_irq(&phba->hbalock);
  8517. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  8518. "0410 Cannot find virtual addr for mapped buf on "
  8519. "ring %d Data x%llx x%p x%p x%x\n",
  8520. pring->ringno, (unsigned long long)phys,
  8521. slp->next, slp->prev, pring->postbufq_cnt);
  8522. return NULL;
  8523. }
  8524. /**
  8525. * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
  8526. * @phba: Pointer to HBA context object.
  8527. * @cmdiocb: Pointer to driver command iocb object.
  8528. * @rspiocb: Pointer to driver response iocb object.
  8529. *
  8530. * This function is the completion handler for the abort iocbs for
  8531. * ELS commands. This function is called from the ELS ring event
  8532. * handler with no lock held. This function frees memory resources
  8533. * associated with the abort iocb.
  8534. **/
  8535. static void
  8536. lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
  8537. struct lpfc_iocbq *rspiocb)
  8538. {
  8539. IOCB_t *irsp = &rspiocb->iocb;
  8540. uint16_t abort_iotag, abort_context;
  8541. struct lpfc_iocbq *abort_iocb = NULL;
  8542. if (irsp->ulpStatus) {
  8543. /*
  8544. * Assume that the port already completed and returned, or
  8545. * will return the iocb. Just Log the message.
  8546. */
  8547. abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
  8548. abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
  8549. spin_lock_irq(&phba->hbalock);
  8550. if (phba->sli_rev < LPFC_SLI_REV4) {
  8551. if (abort_iotag != 0 &&
  8552. abort_iotag <= phba->sli.last_iotag)
  8553. abort_iocb =
  8554. phba->sli.iocbq_lookup[abort_iotag];
  8555. } else
  8556. /* For sli4 the abort_tag is the XRI,
  8557. * so the abort routine puts the iotag of the iocb
  8558. * being aborted in the context field of the abort
  8559. * IOCB.
  8560. */
  8561. abort_iocb = phba->sli.iocbq_lookup[abort_context];
  8562. lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
  8563. "0327 Cannot abort els iocb %p "
  8564. "with tag %x context %x, abort status %x, "
  8565. "abort code %x\n",
  8566. abort_iocb, abort_iotag, abort_context,
  8567. irsp->ulpStatus, irsp->un.ulpWord[4]);
  8568. spin_unlock_irq(&phba->hbalock);
  8569. }
  8570. lpfc_sli_release_iocbq(phba, cmdiocb);
  8571. return;
  8572. }
  8573. /**
  8574. * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
  8575. * @phba: Pointer to HBA context object.
  8576. * @cmdiocb: Pointer to driver command iocb object.
  8577. * @rspiocb: Pointer to driver response iocb object.
  8578. *
  8579. * The function is called from SLI ring event handler with no
  8580. * lock held. This function is the completion handler for ELS commands
  8581. * which are aborted. The function frees memory resources used for
  8582. * the aborted ELS commands.
  8583. **/
  8584. static void
  8585. lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
  8586. struct lpfc_iocbq *rspiocb)
  8587. {
  8588. IOCB_t *irsp = &rspiocb->iocb;
  8589. /* ELS cmd tag <ulpIoTag> completes */
  8590. lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
  8591. "0139 Ignoring ELS cmd tag x%x completion Data: "
  8592. "x%x x%x x%x\n",
  8593. irsp->ulpIoTag, irsp->ulpStatus,
  8594. irsp->un.ulpWord[4], irsp->ulpTimeout);
  8595. if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
  8596. lpfc_ct_free_iocb(phba, cmdiocb);
  8597. else
  8598. lpfc_els_free_iocb(phba, cmdiocb);
  8599. return;
  8600. }
  8601. /**
  8602. * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
  8603. * @phba: Pointer to HBA context object.
  8604. * @pring: Pointer to driver SLI ring object.
  8605. * @cmdiocb: Pointer to driver command iocb object.
  8606. *
  8607. * This function issues an abort iocb for the provided command iocb down to
  8608. * the port. Other than the case the outstanding command iocb is an abort
  8609. * request, this function issues abort out unconditionally. This function is
  8610. * called with hbalock held. The function returns 0 when it fails due to
  8611. * memory allocation failure or when the command iocb is an abort request.
  8612. **/
  8613. static int
  8614. lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8615. struct lpfc_iocbq *cmdiocb)
  8616. {
  8617. struct lpfc_vport *vport = cmdiocb->vport;
  8618. struct lpfc_iocbq *abtsiocbp;
  8619. IOCB_t *icmd = NULL;
  8620. IOCB_t *iabt = NULL;
  8621. int retval;
  8622. unsigned long iflags;
  8623. /*
  8624. * There are certain command types we don't want to abort. And we
  8625. * don't want to abort commands that are already in the process of
  8626. * being aborted.
  8627. */
  8628. icmd = &cmdiocb->iocb;
  8629. if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
  8630. icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
  8631. (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
  8632. return 0;
  8633. /* issue ABTS for this IOCB based on iotag */
  8634. abtsiocbp = __lpfc_sli_get_iocbq(phba);
  8635. if (abtsiocbp == NULL)
  8636. return 0;
  8637. /* This signals the response to set the correct status
  8638. * before calling the completion handler
  8639. */
  8640. cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
  8641. iabt = &abtsiocbp->iocb;
  8642. iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
  8643. iabt->un.acxri.abortContextTag = icmd->ulpContext;
  8644. if (phba->sli_rev == LPFC_SLI_REV4) {
  8645. iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
  8646. iabt->un.acxri.abortContextTag = cmdiocb->iotag;
  8647. }
  8648. else
  8649. iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
  8650. iabt->ulpLe = 1;
  8651. iabt->ulpClass = icmd->ulpClass;
  8652. /* ABTS WQE must go to the same WQ as the WQE to be aborted */
  8653. abtsiocbp->fcp_wqidx = cmdiocb->fcp_wqidx;
  8654. if (cmdiocb->iocb_flag & LPFC_IO_FCP)
  8655. abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
  8656. if (phba->link_state >= LPFC_LINK_UP)
  8657. iabt->ulpCommand = CMD_ABORT_XRI_CN;
  8658. else
  8659. iabt->ulpCommand = CMD_CLOSE_XRI_CN;
  8660. abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
  8661. lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
  8662. "0339 Abort xri x%x, original iotag x%x, "
  8663. "abort cmd iotag x%x\n",
  8664. iabt->un.acxri.abortIoTag,
  8665. iabt->un.acxri.abortContextTag,
  8666. abtsiocbp->iotag);
  8667. if (phba->sli_rev == LPFC_SLI_REV4) {
  8668. /* Note: both hbalock and ring_lock need to be set here */
  8669. spin_lock_irqsave(&pring->ring_lock, iflags);
  8670. retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
  8671. abtsiocbp, 0);
  8672. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  8673. } else {
  8674. retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
  8675. abtsiocbp, 0);
  8676. }
  8677. if (retval)
  8678. __lpfc_sli_release_iocbq(phba, abtsiocbp);
  8679. /*
  8680. * Caller to this routine should check for IOCB_ERROR
  8681. * and handle it properly. This routine no longer removes
  8682. * iocb off txcmplq and call compl in case of IOCB_ERROR.
  8683. */
  8684. return retval;
  8685. }
  8686. /**
  8687. * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
  8688. * @phba: Pointer to HBA context object.
  8689. * @pring: Pointer to driver SLI ring object.
  8690. * @cmdiocb: Pointer to driver command iocb object.
  8691. *
  8692. * This function issues an abort iocb for the provided command iocb. In case
  8693. * of unloading, the abort iocb will not be issued to commands on the ELS
  8694. * ring. Instead, the callback function shall be changed to those commands
  8695. * so that nothing happens when them finishes. This function is called with
  8696. * hbalock held. The function returns 0 when the command iocb is an abort
  8697. * request.
  8698. **/
  8699. int
  8700. lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
  8701. struct lpfc_iocbq *cmdiocb)
  8702. {
  8703. struct lpfc_vport *vport = cmdiocb->vport;
  8704. int retval = IOCB_ERROR;
  8705. IOCB_t *icmd = NULL;
  8706. /*
  8707. * There are certain command types we don't want to abort. And we
  8708. * don't want to abort commands that are already in the process of
  8709. * being aborted.
  8710. */
  8711. icmd = &cmdiocb->iocb;
  8712. if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
  8713. icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
  8714. (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
  8715. return 0;
  8716. /*
  8717. * If we're unloading, don't abort iocb on the ELS ring, but change
  8718. * the callback so that nothing happens when it finishes.
  8719. */
  8720. if ((vport->load_flag & FC_UNLOADING) &&
  8721. (pring->ringno == LPFC_ELS_RING)) {
  8722. if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
  8723. cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
  8724. else
  8725. cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
  8726. goto abort_iotag_exit;
  8727. }
  8728. /* Now, we try to issue the abort to the cmdiocb out */
  8729. retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
  8730. abort_iotag_exit:
  8731. /*
  8732. * Caller to this routine should check for IOCB_ERROR
  8733. * and handle it properly. This routine no longer removes
  8734. * iocb off txcmplq and call compl in case of IOCB_ERROR.
  8735. */
  8736. return retval;
  8737. }
  8738. /**
  8739. * lpfc_sli_iocb_ring_abort - Unconditionally abort all iocbs on an iocb ring
  8740. * @phba: Pointer to HBA context object.
  8741. * @pring: Pointer to driver SLI ring object.
  8742. *
  8743. * This function aborts all iocbs in the given ring and frees all the iocb
  8744. * objects in txq. This function issues abort iocbs unconditionally for all
  8745. * the iocb commands in txcmplq. The iocbs in the txcmplq is not guaranteed
  8746. * to complete before the return of this function. The caller is not required
  8747. * to hold any locks.
  8748. **/
  8749. static void
  8750. lpfc_sli_iocb_ring_abort(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
  8751. {
  8752. LIST_HEAD(completions);
  8753. struct lpfc_iocbq *iocb, *next_iocb;
  8754. if (pring->ringno == LPFC_ELS_RING)
  8755. lpfc_fabric_abort_hba(phba);
  8756. spin_lock_irq(&phba->hbalock);
  8757. /* Take off all the iocbs on txq for cancelling */
  8758. list_splice_init(&pring->txq, &completions);
  8759. pring->txq_cnt = 0;
  8760. /* Next issue ABTS for everything on the txcmplq */
  8761. list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
  8762. lpfc_sli_abort_iotag_issue(phba, pring, iocb);
  8763. spin_unlock_irq(&phba->hbalock);
  8764. /* Cancel all the IOCBs from the completions list */
  8765. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  8766. IOERR_SLI_ABORTED);
  8767. }
  8768. /**
  8769. * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
  8770. * @phba: pointer to lpfc HBA data structure.
  8771. *
  8772. * This routine will abort all pending and outstanding iocbs to an HBA.
  8773. **/
  8774. void
  8775. lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
  8776. {
  8777. struct lpfc_sli *psli = &phba->sli;
  8778. struct lpfc_sli_ring *pring;
  8779. int i;
  8780. for (i = 0; i < psli->num_rings; i++) {
  8781. pring = &psli->ring[i];
  8782. lpfc_sli_iocb_ring_abort(phba, pring);
  8783. }
  8784. }
  8785. /**
  8786. * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
  8787. * @iocbq: Pointer to driver iocb object.
  8788. * @vport: Pointer to driver virtual port object.
  8789. * @tgt_id: SCSI ID of the target.
  8790. * @lun_id: LUN ID of the scsi device.
  8791. * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
  8792. *
  8793. * This function acts as an iocb filter for functions which abort or count
  8794. * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
  8795. * 0 if the filtering criteria is met for the given iocb and will return
  8796. * 1 if the filtering criteria is not met.
  8797. * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
  8798. * given iocb is for the SCSI device specified by vport, tgt_id and
  8799. * lun_id parameter.
  8800. * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
  8801. * given iocb is for the SCSI target specified by vport and tgt_id
  8802. * parameters.
  8803. * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
  8804. * given iocb is for the SCSI host associated with the given vport.
  8805. * This function is called with no locks held.
  8806. **/
  8807. static int
  8808. lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
  8809. uint16_t tgt_id, uint64_t lun_id,
  8810. lpfc_ctx_cmd ctx_cmd)
  8811. {
  8812. struct lpfc_scsi_buf *lpfc_cmd;
  8813. int rc = 1;
  8814. if (!(iocbq->iocb_flag & LPFC_IO_FCP))
  8815. return rc;
  8816. if (iocbq->vport != vport)
  8817. return rc;
  8818. lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
  8819. if (lpfc_cmd->pCmd == NULL)
  8820. return rc;
  8821. switch (ctx_cmd) {
  8822. case LPFC_CTX_LUN:
  8823. if ((lpfc_cmd->rdata->pnode) &&
  8824. (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
  8825. (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
  8826. rc = 0;
  8827. break;
  8828. case LPFC_CTX_TGT:
  8829. if ((lpfc_cmd->rdata->pnode) &&
  8830. (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
  8831. rc = 0;
  8832. break;
  8833. case LPFC_CTX_HOST:
  8834. rc = 0;
  8835. break;
  8836. default:
  8837. printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
  8838. __func__, ctx_cmd);
  8839. break;
  8840. }
  8841. return rc;
  8842. }
  8843. /**
  8844. * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
  8845. * @vport: Pointer to virtual port.
  8846. * @tgt_id: SCSI ID of the target.
  8847. * @lun_id: LUN ID of the scsi device.
  8848. * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
  8849. *
  8850. * This function returns number of FCP commands pending for the vport.
  8851. * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
  8852. * commands pending on the vport associated with SCSI device specified
  8853. * by tgt_id and lun_id parameters.
  8854. * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
  8855. * commands pending on the vport associated with SCSI target specified
  8856. * by tgt_id parameter.
  8857. * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
  8858. * commands pending on the vport.
  8859. * This function returns the number of iocbs which satisfy the filter.
  8860. * This function is called without any lock held.
  8861. **/
  8862. int
  8863. lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
  8864. lpfc_ctx_cmd ctx_cmd)
  8865. {
  8866. struct lpfc_hba *phba = vport->phba;
  8867. struct lpfc_iocbq *iocbq;
  8868. int sum, i;
  8869. for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
  8870. iocbq = phba->sli.iocbq_lookup[i];
  8871. if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
  8872. ctx_cmd) == 0)
  8873. sum++;
  8874. }
  8875. return sum;
  8876. }
  8877. /**
  8878. * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
  8879. * @phba: Pointer to HBA context object
  8880. * @cmdiocb: Pointer to command iocb object.
  8881. * @rspiocb: Pointer to response iocb object.
  8882. *
  8883. * This function is called when an aborted FCP iocb completes. This
  8884. * function is called by the ring event handler with no lock held.
  8885. * This function frees the iocb.
  8886. **/
  8887. void
  8888. lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
  8889. struct lpfc_iocbq *rspiocb)
  8890. {
  8891. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  8892. "3096 ABORT_XRI_CN completing on xri x%x "
  8893. "original iotag x%x, abort cmd iotag x%x "
  8894. "status 0x%x, reason 0x%x\n",
  8895. cmdiocb->iocb.un.acxri.abortContextTag,
  8896. cmdiocb->iocb.un.acxri.abortIoTag,
  8897. cmdiocb->iotag, rspiocb->iocb.ulpStatus,
  8898. rspiocb->iocb.un.ulpWord[4]);
  8899. lpfc_sli_release_iocbq(phba, cmdiocb);
  8900. return;
  8901. }
  8902. /**
  8903. * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
  8904. * @vport: Pointer to virtual port.
  8905. * @pring: Pointer to driver SLI ring object.
  8906. * @tgt_id: SCSI ID of the target.
  8907. * @lun_id: LUN ID of the scsi device.
  8908. * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
  8909. *
  8910. * This function sends an abort command for every SCSI command
  8911. * associated with the given virtual port pending on the ring
  8912. * filtered by lpfc_sli_validate_fcp_iocb function.
  8913. * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
  8914. * FCP iocbs associated with lun specified by tgt_id and lun_id
  8915. * parameters
  8916. * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
  8917. * FCP iocbs associated with SCSI target specified by tgt_id parameter.
  8918. * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
  8919. * FCP iocbs associated with virtual port.
  8920. * This function returns number of iocbs it failed to abort.
  8921. * This function is called with no locks held.
  8922. **/
  8923. int
  8924. lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
  8925. uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
  8926. {
  8927. struct lpfc_hba *phba = vport->phba;
  8928. struct lpfc_iocbq *iocbq;
  8929. struct lpfc_iocbq *abtsiocb;
  8930. IOCB_t *cmd = NULL;
  8931. int errcnt = 0, ret_val = 0;
  8932. int i;
  8933. for (i = 1; i <= phba->sli.last_iotag; i++) {
  8934. iocbq = phba->sli.iocbq_lookup[i];
  8935. if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
  8936. abort_cmd) != 0)
  8937. continue;
  8938. /* issue ABTS for this IOCB based on iotag */
  8939. abtsiocb = lpfc_sli_get_iocbq(phba);
  8940. if (abtsiocb == NULL) {
  8941. errcnt++;
  8942. continue;
  8943. }
  8944. cmd = &iocbq->iocb;
  8945. abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
  8946. abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
  8947. if (phba->sli_rev == LPFC_SLI_REV4)
  8948. abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
  8949. else
  8950. abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
  8951. abtsiocb->iocb.ulpLe = 1;
  8952. abtsiocb->iocb.ulpClass = cmd->ulpClass;
  8953. abtsiocb->vport = phba->pport;
  8954. /* ABTS WQE must go to the same WQ as the WQE to be aborted */
  8955. abtsiocb->fcp_wqidx = iocbq->fcp_wqidx;
  8956. if (iocbq->iocb_flag & LPFC_IO_FCP)
  8957. abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
  8958. if (lpfc_is_link_up(phba))
  8959. abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
  8960. else
  8961. abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
  8962. /* Setup callback routine and issue the command. */
  8963. abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
  8964. ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
  8965. abtsiocb, 0);
  8966. if (ret_val == IOCB_ERROR) {
  8967. lpfc_sli_release_iocbq(phba, abtsiocb);
  8968. errcnt++;
  8969. continue;
  8970. }
  8971. }
  8972. return errcnt;
  8973. }
  8974. /**
  8975. * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
  8976. * @phba: Pointer to HBA context object.
  8977. * @cmdiocbq: Pointer to command iocb.
  8978. * @rspiocbq: Pointer to response iocb.
  8979. *
  8980. * This function is the completion handler for iocbs issued using
  8981. * lpfc_sli_issue_iocb_wait function. This function is called by the
  8982. * ring event handler function without any lock held. This function
  8983. * can be called from both worker thread context and interrupt
  8984. * context. This function also can be called from other thread which
  8985. * cleans up the SLI layer objects.
  8986. * This function copy the contents of the response iocb to the
  8987. * response iocb memory object provided by the caller of
  8988. * lpfc_sli_issue_iocb_wait and then wakes up the thread which
  8989. * sleeps for the iocb completion.
  8990. **/
  8991. static void
  8992. lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
  8993. struct lpfc_iocbq *cmdiocbq,
  8994. struct lpfc_iocbq *rspiocbq)
  8995. {
  8996. wait_queue_head_t *pdone_q;
  8997. unsigned long iflags;
  8998. struct lpfc_scsi_buf *lpfc_cmd;
  8999. spin_lock_irqsave(&phba->hbalock, iflags);
  9000. cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
  9001. if (cmdiocbq->context2 && rspiocbq)
  9002. memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
  9003. &rspiocbq->iocb, sizeof(IOCB_t));
  9004. /* Set the exchange busy flag for task management commands */
  9005. if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
  9006. !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
  9007. lpfc_cmd = container_of(cmdiocbq, struct lpfc_scsi_buf,
  9008. cur_iocbq);
  9009. lpfc_cmd->exch_busy = rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY;
  9010. }
  9011. pdone_q = cmdiocbq->context_un.wait_queue;
  9012. if (pdone_q)
  9013. wake_up(pdone_q);
  9014. spin_unlock_irqrestore(&phba->hbalock, iflags);
  9015. return;
  9016. }
  9017. /**
  9018. * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
  9019. * @phba: Pointer to HBA context object..
  9020. * @piocbq: Pointer to command iocb.
  9021. * @flag: Flag to test.
  9022. *
  9023. * This routine grabs the hbalock and then test the iocb_flag to
  9024. * see if the passed in flag is set.
  9025. * Returns:
  9026. * 1 if flag is set.
  9027. * 0 if flag is not set.
  9028. **/
  9029. static int
  9030. lpfc_chk_iocb_flg(struct lpfc_hba *phba,
  9031. struct lpfc_iocbq *piocbq, uint32_t flag)
  9032. {
  9033. unsigned long iflags;
  9034. int ret;
  9035. spin_lock_irqsave(&phba->hbalock, iflags);
  9036. ret = piocbq->iocb_flag & flag;
  9037. spin_unlock_irqrestore(&phba->hbalock, iflags);
  9038. return ret;
  9039. }
  9040. /**
  9041. * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
  9042. * @phba: Pointer to HBA context object..
  9043. * @pring: Pointer to sli ring.
  9044. * @piocb: Pointer to command iocb.
  9045. * @prspiocbq: Pointer to response iocb.
  9046. * @timeout: Timeout in number of seconds.
  9047. *
  9048. * This function issues the iocb to firmware and waits for the
  9049. * iocb to complete. If the iocb command is not
  9050. * completed within timeout seconds, it returns IOCB_TIMEDOUT.
  9051. * Caller should not free the iocb resources if this function
  9052. * returns IOCB_TIMEDOUT.
  9053. * The function waits for the iocb completion using an
  9054. * non-interruptible wait.
  9055. * This function will sleep while waiting for iocb completion.
  9056. * So, this function should not be called from any context which
  9057. * does not allow sleeping. Due to the same reason, this function
  9058. * cannot be called with interrupt disabled.
  9059. * This function assumes that the iocb completions occur while
  9060. * this function sleep. So, this function cannot be called from
  9061. * the thread which process iocb completion for this ring.
  9062. * This function clears the iocb_flag of the iocb object before
  9063. * issuing the iocb and the iocb completion handler sets this
  9064. * flag and wakes this thread when the iocb completes.
  9065. * The contents of the response iocb will be copied to prspiocbq
  9066. * by the completion handler when the command completes.
  9067. * This function returns IOCB_SUCCESS when success.
  9068. * This function is called with no lock held.
  9069. **/
  9070. int
  9071. lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
  9072. uint32_t ring_number,
  9073. struct lpfc_iocbq *piocb,
  9074. struct lpfc_iocbq *prspiocbq,
  9075. uint32_t timeout)
  9076. {
  9077. DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
  9078. long timeleft, timeout_req = 0;
  9079. int retval = IOCB_SUCCESS;
  9080. uint32_t creg_val;
  9081. struct lpfc_iocbq *iocb;
  9082. int txq_cnt = 0;
  9083. int txcmplq_cnt = 0;
  9084. struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
  9085. /*
  9086. * If the caller has provided a response iocbq buffer, then context2
  9087. * is NULL or its an error.
  9088. */
  9089. if (prspiocbq) {
  9090. if (piocb->context2)
  9091. return IOCB_ERROR;
  9092. piocb->context2 = prspiocbq;
  9093. }
  9094. piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
  9095. piocb->context_un.wait_queue = &done_q;
  9096. piocb->iocb_flag &= ~LPFC_IO_WAKE;
  9097. if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
  9098. if (lpfc_readl(phba->HCregaddr, &creg_val))
  9099. return IOCB_ERROR;
  9100. creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
  9101. writel(creg_val, phba->HCregaddr);
  9102. readl(phba->HCregaddr); /* flush */
  9103. }
  9104. retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
  9105. SLI_IOCB_RET_IOCB);
  9106. if (retval == IOCB_SUCCESS) {
  9107. timeout_req = timeout * HZ;
  9108. timeleft = wait_event_timeout(done_q,
  9109. lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
  9110. timeout_req);
  9111. if (piocb->iocb_flag & LPFC_IO_WAKE) {
  9112. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  9113. "0331 IOCB wake signaled\n");
  9114. } else if (timeleft == 0) {
  9115. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  9116. "0338 IOCB wait timeout error - no "
  9117. "wake response Data x%x\n", timeout);
  9118. retval = IOCB_TIMEDOUT;
  9119. } else {
  9120. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  9121. "0330 IOCB wake NOT set, "
  9122. "Data x%x x%lx\n",
  9123. timeout, (timeleft / jiffies));
  9124. retval = IOCB_TIMEDOUT;
  9125. }
  9126. } else if (retval == IOCB_BUSY) {
  9127. if (phba->cfg_log_verbose & LOG_SLI) {
  9128. list_for_each_entry(iocb, &pring->txq, list) {
  9129. txq_cnt++;
  9130. }
  9131. list_for_each_entry(iocb, &pring->txcmplq, list) {
  9132. txcmplq_cnt++;
  9133. }
  9134. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  9135. "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
  9136. phba->iocb_cnt, txq_cnt, txcmplq_cnt);
  9137. }
  9138. return retval;
  9139. } else {
  9140. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  9141. "0332 IOCB wait issue failed, Data x%x\n",
  9142. retval);
  9143. retval = IOCB_ERROR;
  9144. }
  9145. if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
  9146. if (lpfc_readl(phba->HCregaddr, &creg_val))
  9147. return IOCB_ERROR;
  9148. creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
  9149. writel(creg_val, phba->HCregaddr);
  9150. readl(phba->HCregaddr); /* flush */
  9151. }
  9152. if (prspiocbq)
  9153. piocb->context2 = NULL;
  9154. piocb->context_un.wait_queue = NULL;
  9155. piocb->iocb_cmpl = NULL;
  9156. return retval;
  9157. }
  9158. /**
  9159. * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
  9160. * @phba: Pointer to HBA context object.
  9161. * @pmboxq: Pointer to driver mailbox object.
  9162. * @timeout: Timeout in number of seconds.
  9163. *
  9164. * This function issues the mailbox to firmware and waits for the
  9165. * mailbox command to complete. If the mailbox command is not
  9166. * completed within timeout seconds, it returns MBX_TIMEOUT.
  9167. * The function waits for the mailbox completion using an
  9168. * interruptible wait. If the thread is woken up due to a
  9169. * signal, MBX_TIMEOUT error is returned to the caller. Caller
  9170. * should not free the mailbox resources, if this function returns
  9171. * MBX_TIMEOUT.
  9172. * This function will sleep while waiting for mailbox completion.
  9173. * So, this function should not be called from any context which
  9174. * does not allow sleeping. Due to the same reason, this function
  9175. * cannot be called with interrupt disabled.
  9176. * This function assumes that the mailbox completion occurs while
  9177. * this function sleep. So, this function cannot be called from
  9178. * the worker thread which processes mailbox completion.
  9179. * This function is called in the context of HBA management
  9180. * applications.
  9181. * This function returns MBX_SUCCESS when successful.
  9182. * This function is called with no lock held.
  9183. **/
  9184. int
  9185. lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
  9186. uint32_t timeout)
  9187. {
  9188. DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
  9189. int retval;
  9190. unsigned long flag;
  9191. /* The caller must leave context1 empty. */
  9192. if (pmboxq->context1)
  9193. return MBX_NOT_FINISHED;
  9194. pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
  9195. /* setup wake call as IOCB callback */
  9196. pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
  9197. /* setup context field to pass wait_queue pointer to wake function */
  9198. pmboxq->context1 = &done_q;
  9199. /* now issue the command */
  9200. retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
  9201. if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
  9202. wait_event_interruptible_timeout(done_q,
  9203. pmboxq->mbox_flag & LPFC_MBX_WAKE,
  9204. timeout * HZ);
  9205. spin_lock_irqsave(&phba->hbalock, flag);
  9206. pmboxq->context1 = NULL;
  9207. /*
  9208. * if LPFC_MBX_WAKE flag is set the mailbox is completed
  9209. * else do not free the resources.
  9210. */
  9211. if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
  9212. retval = MBX_SUCCESS;
  9213. lpfc_sli4_swap_str(phba, pmboxq);
  9214. } else {
  9215. retval = MBX_TIMEOUT;
  9216. pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  9217. }
  9218. spin_unlock_irqrestore(&phba->hbalock, flag);
  9219. }
  9220. return retval;
  9221. }
  9222. /**
  9223. * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
  9224. * @phba: Pointer to HBA context.
  9225. *
  9226. * This function is called to shutdown the driver's mailbox sub-system.
  9227. * It first marks the mailbox sub-system is in a block state to prevent
  9228. * the asynchronous mailbox command from issued off the pending mailbox
  9229. * command queue. If the mailbox command sub-system shutdown is due to
  9230. * HBA error conditions such as EEH or ERATT, this routine shall invoke
  9231. * the mailbox sub-system flush routine to forcefully bring down the
  9232. * mailbox sub-system. Otherwise, if it is due to normal condition (such
  9233. * as with offline or HBA function reset), this routine will wait for the
  9234. * outstanding mailbox command to complete before invoking the mailbox
  9235. * sub-system flush routine to gracefully bring down mailbox sub-system.
  9236. **/
  9237. void
  9238. lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
  9239. {
  9240. struct lpfc_sli *psli = &phba->sli;
  9241. unsigned long timeout;
  9242. if (mbx_action == LPFC_MBX_NO_WAIT) {
  9243. /* delay 100ms for port state */
  9244. msleep(100);
  9245. lpfc_sli_mbox_sys_flush(phba);
  9246. return;
  9247. }
  9248. timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
  9249. spin_lock_irq(&phba->hbalock);
  9250. psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
  9251. if (psli->sli_flag & LPFC_SLI_ACTIVE) {
  9252. /* Determine how long we might wait for the active mailbox
  9253. * command to be gracefully completed by firmware.
  9254. */
  9255. if (phba->sli.mbox_active)
  9256. timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
  9257. phba->sli.mbox_active) *
  9258. 1000) + jiffies;
  9259. spin_unlock_irq(&phba->hbalock);
  9260. while (phba->sli.mbox_active) {
  9261. /* Check active mailbox complete status every 2ms */
  9262. msleep(2);
  9263. if (time_after(jiffies, timeout))
  9264. /* Timeout, let the mailbox flush routine to
  9265. * forcefully release active mailbox command
  9266. */
  9267. break;
  9268. }
  9269. } else
  9270. spin_unlock_irq(&phba->hbalock);
  9271. lpfc_sli_mbox_sys_flush(phba);
  9272. }
  9273. /**
  9274. * lpfc_sli_eratt_read - read sli-3 error attention events
  9275. * @phba: Pointer to HBA context.
  9276. *
  9277. * This function is called to read the SLI3 device error attention registers
  9278. * for possible error attention events. The caller must hold the hostlock
  9279. * with spin_lock_irq().
  9280. *
  9281. * This function returns 1 when there is Error Attention in the Host Attention
  9282. * Register and returns 0 otherwise.
  9283. **/
  9284. static int
  9285. lpfc_sli_eratt_read(struct lpfc_hba *phba)
  9286. {
  9287. uint32_t ha_copy;
  9288. /* Read chip Host Attention (HA) register */
  9289. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  9290. goto unplug_err;
  9291. if (ha_copy & HA_ERATT) {
  9292. /* Read host status register to retrieve error event */
  9293. if (lpfc_sli_read_hs(phba))
  9294. goto unplug_err;
  9295. /* Check if there is a deferred error condition is active */
  9296. if ((HS_FFER1 & phba->work_hs) &&
  9297. ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
  9298. HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
  9299. phba->hba_flag |= DEFER_ERATT;
  9300. /* Clear all interrupt enable conditions */
  9301. writel(0, phba->HCregaddr);
  9302. readl(phba->HCregaddr);
  9303. }
  9304. /* Set the driver HA work bitmap */
  9305. phba->work_ha |= HA_ERATT;
  9306. /* Indicate polling handles this ERATT */
  9307. phba->hba_flag |= HBA_ERATT_HANDLED;
  9308. return 1;
  9309. }
  9310. return 0;
  9311. unplug_err:
  9312. /* Set the driver HS work bitmap */
  9313. phba->work_hs |= UNPLUG_ERR;
  9314. /* Set the driver HA work bitmap */
  9315. phba->work_ha |= HA_ERATT;
  9316. /* Indicate polling handles this ERATT */
  9317. phba->hba_flag |= HBA_ERATT_HANDLED;
  9318. return 1;
  9319. }
  9320. /**
  9321. * lpfc_sli4_eratt_read - read sli-4 error attention events
  9322. * @phba: Pointer to HBA context.
  9323. *
  9324. * This function is called to read the SLI4 device error attention registers
  9325. * for possible error attention events. The caller must hold the hostlock
  9326. * with spin_lock_irq().
  9327. *
  9328. * This function returns 1 when there is Error Attention in the Host Attention
  9329. * Register and returns 0 otherwise.
  9330. **/
  9331. static int
  9332. lpfc_sli4_eratt_read(struct lpfc_hba *phba)
  9333. {
  9334. uint32_t uerr_sta_hi, uerr_sta_lo;
  9335. uint32_t if_type, portsmphr;
  9336. struct lpfc_register portstat_reg;
  9337. /*
  9338. * For now, use the SLI4 device internal unrecoverable error
  9339. * registers for error attention. This can be changed later.
  9340. */
  9341. if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
  9342. switch (if_type) {
  9343. case LPFC_SLI_INTF_IF_TYPE_0:
  9344. if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
  9345. &uerr_sta_lo) ||
  9346. lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
  9347. &uerr_sta_hi)) {
  9348. phba->work_hs |= UNPLUG_ERR;
  9349. phba->work_ha |= HA_ERATT;
  9350. phba->hba_flag |= HBA_ERATT_HANDLED;
  9351. return 1;
  9352. }
  9353. if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
  9354. (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
  9355. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  9356. "1423 HBA Unrecoverable error: "
  9357. "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
  9358. "ue_mask_lo_reg=0x%x, "
  9359. "ue_mask_hi_reg=0x%x\n",
  9360. uerr_sta_lo, uerr_sta_hi,
  9361. phba->sli4_hba.ue_mask_lo,
  9362. phba->sli4_hba.ue_mask_hi);
  9363. phba->work_status[0] = uerr_sta_lo;
  9364. phba->work_status[1] = uerr_sta_hi;
  9365. phba->work_ha |= HA_ERATT;
  9366. phba->hba_flag |= HBA_ERATT_HANDLED;
  9367. return 1;
  9368. }
  9369. break;
  9370. case LPFC_SLI_INTF_IF_TYPE_2:
  9371. if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
  9372. &portstat_reg.word0) ||
  9373. lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
  9374. &portsmphr)){
  9375. phba->work_hs |= UNPLUG_ERR;
  9376. phba->work_ha |= HA_ERATT;
  9377. phba->hba_flag |= HBA_ERATT_HANDLED;
  9378. return 1;
  9379. }
  9380. if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
  9381. phba->work_status[0] =
  9382. readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
  9383. phba->work_status[1] =
  9384. readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
  9385. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  9386. "2885 Port Status Event: "
  9387. "port status reg 0x%x, "
  9388. "port smphr reg 0x%x, "
  9389. "error 1=0x%x, error 2=0x%x\n",
  9390. portstat_reg.word0,
  9391. portsmphr,
  9392. phba->work_status[0],
  9393. phba->work_status[1]);
  9394. phba->work_ha |= HA_ERATT;
  9395. phba->hba_flag |= HBA_ERATT_HANDLED;
  9396. return 1;
  9397. }
  9398. break;
  9399. case LPFC_SLI_INTF_IF_TYPE_1:
  9400. default:
  9401. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  9402. "2886 HBA Error Attention on unsupported "
  9403. "if type %d.", if_type);
  9404. return 1;
  9405. }
  9406. return 0;
  9407. }
  9408. /**
  9409. * lpfc_sli_check_eratt - check error attention events
  9410. * @phba: Pointer to HBA context.
  9411. *
  9412. * This function is called from timer soft interrupt context to check HBA's
  9413. * error attention register bit for error attention events.
  9414. *
  9415. * This function returns 1 when there is Error Attention in the Host Attention
  9416. * Register and returns 0 otherwise.
  9417. **/
  9418. int
  9419. lpfc_sli_check_eratt(struct lpfc_hba *phba)
  9420. {
  9421. uint32_t ha_copy;
  9422. /* If somebody is waiting to handle an eratt, don't process it
  9423. * here. The brdkill function will do this.
  9424. */
  9425. if (phba->link_flag & LS_IGNORE_ERATT)
  9426. return 0;
  9427. /* Check if interrupt handler handles this ERATT */
  9428. spin_lock_irq(&phba->hbalock);
  9429. if (phba->hba_flag & HBA_ERATT_HANDLED) {
  9430. /* Interrupt handler has handled ERATT */
  9431. spin_unlock_irq(&phba->hbalock);
  9432. return 0;
  9433. }
  9434. /*
  9435. * If there is deferred error attention, do not check for error
  9436. * attention
  9437. */
  9438. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  9439. spin_unlock_irq(&phba->hbalock);
  9440. return 0;
  9441. }
  9442. /* If PCI channel is offline, don't process it */
  9443. if (unlikely(pci_channel_offline(phba->pcidev))) {
  9444. spin_unlock_irq(&phba->hbalock);
  9445. return 0;
  9446. }
  9447. switch (phba->sli_rev) {
  9448. case LPFC_SLI_REV2:
  9449. case LPFC_SLI_REV3:
  9450. /* Read chip Host Attention (HA) register */
  9451. ha_copy = lpfc_sli_eratt_read(phba);
  9452. break;
  9453. case LPFC_SLI_REV4:
  9454. /* Read device Uncoverable Error (UERR) registers */
  9455. ha_copy = lpfc_sli4_eratt_read(phba);
  9456. break;
  9457. default:
  9458. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  9459. "0299 Invalid SLI revision (%d)\n",
  9460. phba->sli_rev);
  9461. ha_copy = 0;
  9462. break;
  9463. }
  9464. spin_unlock_irq(&phba->hbalock);
  9465. return ha_copy;
  9466. }
  9467. /**
  9468. * lpfc_intr_state_check - Check device state for interrupt handling
  9469. * @phba: Pointer to HBA context.
  9470. *
  9471. * This inline routine checks whether a device or its PCI slot is in a state
  9472. * that the interrupt should be handled.
  9473. *
  9474. * This function returns 0 if the device or the PCI slot is in a state that
  9475. * interrupt should be handled, otherwise -EIO.
  9476. */
  9477. static inline int
  9478. lpfc_intr_state_check(struct lpfc_hba *phba)
  9479. {
  9480. /* If the pci channel is offline, ignore all the interrupts */
  9481. if (unlikely(pci_channel_offline(phba->pcidev)))
  9482. return -EIO;
  9483. /* Update device level interrupt statistics */
  9484. phba->sli.slistat.sli_intr++;
  9485. /* Ignore all interrupts during initialization. */
  9486. if (unlikely(phba->link_state < LPFC_LINK_DOWN))
  9487. return -EIO;
  9488. return 0;
  9489. }
  9490. /**
  9491. * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
  9492. * @irq: Interrupt number.
  9493. * @dev_id: The device context pointer.
  9494. *
  9495. * This function is directly called from the PCI layer as an interrupt
  9496. * service routine when device with SLI-3 interface spec is enabled with
  9497. * MSI-X multi-message interrupt mode and there are slow-path events in
  9498. * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
  9499. * interrupt mode, this function is called as part of the device-level
  9500. * interrupt handler. When the PCI slot is in error recovery or the HBA
  9501. * is undergoing initialization, the interrupt handler will not process
  9502. * the interrupt. The link attention and ELS ring attention events are
  9503. * handled by the worker thread. The interrupt handler signals the worker
  9504. * thread and returns for these events. This function is called without
  9505. * any lock held. It gets the hbalock to access and update SLI data
  9506. * structures.
  9507. *
  9508. * This function returns IRQ_HANDLED when interrupt is handled else it
  9509. * returns IRQ_NONE.
  9510. **/
  9511. irqreturn_t
  9512. lpfc_sli_sp_intr_handler(int irq, void *dev_id)
  9513. {
  9514. struct lpfc_hba *phba;
  9515. uint32_t ha_copy, hc_copy;
  9516. uint32_t work_ha_copy;
  9517. unsigned long status;
  9518. unsigned long iflag;
  9519. uint32_t control;
  9520. MAILBOX_t *mbox, *pmbox;
  9521. struct lpfc_vport *vport;
  9522. struct lpfc_nodelist *ndlp;
  9523. struct lpfc_dmabuf *mp;
  9524. LPFC_MBOXQ_t *pmb;
  9525. int rc;
  9526. /*
  9527. * Get the driver's phba structure from the dev_id and
  9528. * assume the HBA is not interrupting.
  9529. */
  9530. phba = (struct lpfc_hba *)dev_id;
  9531. if (unlikely(!phba))
  9532. return IRQ_NONE;
  9533. /*
  9534. * Stuff needs to be attented to when this function is invoked as an
  9535. * individual interrupt handler in MSI-X multi-message interrupt mode
  9536. */
  9537. if (phba->intr_type == MSIX) {
  9538. /* Check device state for handling interrupt */
  9539. if (lpfc_intr_state_check(phba))
  9540. return IRQ_NONE;
  9541. /* Need to read HA REG for slow-path events */
  9542. spin_lock_irqsave(&phba->hbalock, iflag);
  9543. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  9544. goto unplug_error;
  9545. /* If somebody is waiting to handle an eratt don't process it
  9546. * here. The brdkill function will do this.
  9547. */
  9548. if (phba->link_flag & LS_IGNORE_ERATT)
  9549. ha_copy &= ~HA_ERATT;
  9550. /* Check the need for handling ERATT in interrupt handler */
  9551. if (ha_copy & HA_ERATT) {
  9552. if (phba->hba_flag & HBA_ERATT_HANDLED)
  9553. /* ERATT polling has handled ERATT */
  9554. ha_copy &= ~HA_ERATT;
  9555. else
  9556. /* Indicate interrupt handler handles ERATT */
  9557. phba->hba_flag |= HBA_ERATT_HANDLED;
  9558. }
  9559. /*
  9560. * If there is deferred error attention, do not check for any
  9561. * interrupt.
  9562. */
  9563. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  9564. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9565. return IRQ_NONE;
  9566. }
  9567. /* Clear up only attention source related to slow-path */
  9568. if (lpfc_readl(phba->HCregaddr, &hc_copy))
  9569. goto unplug_error;
  9570. writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
  9571. HC_LAINT_ENA | HC_ERINT_ENA),
  9572. phba->HCregaddr);
  9573. writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
  9574. phba->HAregaddr);
  9575. writel(hc_copy, phba->HCregaddr);
  9576. readl(phba->HAregaddr); /* flush */
  9577. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9578. } else
  9579. ha_copy = phba->ha_copy;
  9580. work_ha_copy = ha_copy & phba->work_ha_mask;
  9581. if (work_ha_copy) {
  9582. if (work_ha_copy & HA_LATT) {
  9583. if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
  9584. /*
  9585. * Turn off Link Attention interrupts
  9586. * until CLEAR_LA done
  9587. */
  9588. spin_lock_irqsave(&phba->hbalock, iflag);
  9589. phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
  9590. if (lpfc_readl(phba->HCregaddr, &control))
  9591. goto unplug_error;
  9592. control &= ~HC_LAINT_ENA;
  9593. writel(control, phba->HCregaddr);
  9594. readl(phba->HCregaddr); /* flush */
  9595. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9596. }
  9597. else
  9598. work_ha_copy &= ~HA_LATT;
  9599. }
  9600. if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
  9601. /*
  9602. * Turn off Slow Rings interrupts, LPFC_ELS_RING is
  9603. * the only slow ring.
  9604. */
  9605. status = (work_ha_copy &
  9606. (HA_RXMASK << (4*LPFC_ELS_RING)));
  9607. status >>= (4*LPFC_ELS_RING);
  9608. if (status & HA_RXMASK) {
  9609. spin_lock_irqsave(&phba->hbalock, iflag);
  9610. if (lpfc_readl(phba->HCregaddr, &control))
  9611. goto unplug_error;
  9612. lpfc_debugfs_slow_ring_trc(phba,
  9613. "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
  9614. control, status,
  9615. (uint32_t)phba->sli.slistat.sli_intr);
  9616. if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
  9617. lpfc_debugfs_slow_ring_trc(phba,
  9618. "ISR Disable ring:"
  9619. "pwork:x%x hawork:x%x wait:x%x",
  9620. phba->work_ha, work_ha_copy,
  9621. (uint32_t)((unsigned long)
  9622. &phba->work_waitq));
  9623. control &=
  9624. ~(HC_R0INT_ENA << LPFC_ELS_RING);
  9625. writel(control, phba->HCregaddr);
  9626. readl(phba->HCregaddr); /* flush */
  9627. }
  9628. else {
  9629. lpfc_debugfs_slow_ring_trc(phba,
  9630. "ISR slow ring: pwork:"
  9631. "x%x hawork:x%x wait:x%x",
  9632. phba->work_ha, work_ha_copy,
  9633. (uint32_t)((unsigned long)
  9634. &phba->work_waitq));
  9635. }
  9636. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9637. }
  9638. }
  9639. spin_lock_irqsave(&phba->hbalock, iflag);
  9640. if (work_ha_copy & HA_ERATT) {
  9641. if (lpfc_sli_read_hs(phba))
  9642. goto unplug_error;
  9643. /*
  9644. * Check if there is a deferred error condition
  9645. * is active
  9646. */
  9647. if ((HS_FFER1 & phba->work_hs) &&
  9648. ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
  9649. HS_FFER6 | HS_FFER7 | HS_FFER8) &
  9650. phba->work_hs)) {
  9651. phba->hba_flag |= DEFER_ERATT;
  9652. /* Clear all interrupt enable conditions */
  9653. writel(0, phba->HCregaddr);
  9654. readl(phba->HCregaddr);
  9655. }
  9656. }
  9657. if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
  9658. pmb = phba->sli.mbox_active;
  9659. pmbox = &pmb->u.mb;
  9660. mbox = phba->mbox;
  9661. vport = pmb->vport;
  9662. /* First check out the status word */
  9663. lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
  9664. if (pmbox->mbxOwner != OWN_HOST) {
  9665. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9666. /*
  9667. * Stray Mailbox Interrupt, mbxCommand <cmd>
  9668. * mbxStatus <status>
  9669. */
  9670. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
  9671. LOG_SLI,
  9672. "(%d):0304 Stray Mailbox "
  9673. "Interrupt mbxCommand x%x "
  9674. "mbxStatus x%x\n",
  9675. (vport ? vport->vpi : 0),
  9676. pmbox->mbxCommand,
  9677. pmbox->mbxStatus);
  9678. /* clear mailbox attention bit */
  9679. work_ha_copy &= ~HA_MBATT;
  9680. } else {
  9681. phba->sli.mbox_active = NULL;
  9682. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9683. phba->last_completion_time = jiffies;
  9684. del_timer(&phba->sli.mbox_tmo);
  9685. if (pmb->mbox_cmpl) {
  9686. lpfc_sli_pcimem_bcopy(mbox, pmbox,
  9687. MAILBOX_CMD_SIZE);
  9688. if (pmb->out_ext_byte_len &&
  9689. pmb->context2)
  9690. lpfc_sli_pcimem_bcopy(
  9691. phba->mbox_ext,
  9692. pmb->context2,
  9693. pmb->out_ext_byte_len);
  9694. }
  9695. if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
  9696. pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
  9697. lpfc_debugfs_disc_trc(vport,
  9698. LPFC_DISC_TRC_MBOX_VPORT,
  9699. "MBOX dflt rpi: : "
  9700. "status:x%x rpi:x%x",
  9701. (uint32_t)pmbox->mbxStatus,
  9702. pmbox->un.varWords[0], 0);
  9703. if (!pmbox->mbxStatus) {
  9704. mp = (struct lpfc_dmabuf *)
  9705. (pmb->context1);
  9706. ndlp = (struct lpfc_nodelist *)
  9707. pmb->context2;
  9708. /* Reg_LOGIN of dflt RPI was
  9709. * successful. new lets get
  9710. * rid of the RPI using the
  9711. * same mbox buffer.
  9712. */
  9713. lpfc_unreg_login(phba,
  9714. vport->vpi,
  9715. pmbox->un.varWords[0],
  9716. pmb);
  9717. pmb->mbox_cmpl =
  9718. lpfc_mbx_cmpl_dflt_rpi;
  9719. pmb->context1 = mp;
  9720. pmb->context2 = ndlp;
  9721. pmb->vport = vport;
  9722. rc = lpfc_sli_issue_mbox(phba,
  9723. pmb,
  9724. MBX_NOWAIT);
  9725. if (rc != MBX_BUSY)
  9726. lpfc_printf_log(phba,
  9727. KERN_ERR,
  9728. LOG_MBOX | LOG_SLI,
  9729. "0350 rc should have"
  9730. "been MBX_BUSY\n");
  9731. if (rc != MBX_NOT_FINISHED)
  9732. goto send_current_mbox;
  9733. }
  9734. }
  9735. spin_lock_irqsave(
  9736. &phba->pport->work_port_lock,
  9737. iflag);
  9738. phba->pport->work_port_events &=
  9739. ~WORKER_MBOX_TMO;
  9740. spin_unlock_irqrestore(
  9741. &phba->pport->work_port_lock,
  9742. iflag);
  9743. lpfc_mbox_cmpl_put(phba, pmb);
  9744. }
  9745. } else
  9746. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9747. if ((work_ha_copy & HA_MBATT) &&
  9748. (phba->sli.mbox_active == NULL)) {
  9749. send_current_mbox:
  9750. /* Process next mailbox command if there is one */
  9751. do {
  9752. rc = lpfc_sli_issue_mbox(phba, NULL,
  9753. MBX_NOWAIT);
  9754. } while (rc == MBX_NOT_FINISHED);
  9755. if (rc != MBX_SUCCESS)
  9756. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
  9757. LOG_SLI, "0349 rc should be "
  9758. "MBX_SUCCESS\n");
  9759. }
  9760. spin_lock_irqsave(&phba->hbalock, iflag);
  9761. phba->work_ha |= work_ha_copy;
  9762. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9763. lpfc_worker_wake_up(phba);
  9764. }
  9765. return IRQ_HANDLED;
  9766. unplug_error:
  9767. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9768. return IRQ_HANDLED;
  9769. } /* lpfc_sli_sp_intr_handler */
  9770. /**
  9771. * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
  9772. * @irq: Interrupt number.
  9773. * @dev_id: The device context pointer.
  9774. *
  9775. * This function is directly called from the PCI layer as an interrupt
  9776. * service routine when device with SLI-3 interface spec is enabled with
  9777. * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
  9778. * ring event in the HBA. However, when the device is enabled with either
  9779. * MSI or Pin-IRQ interrupt mode, this function is called as part of the
  9780. * device-level interrupt handler. When the PCI slot is in error recovery
  9781. * or the HBA is undergoing initialization, the interrupt handler will not
  9782. * process the interrupt. The SCSI FCP fast-path ring event are handled in
  9783. * the intrrupt context. This function is called without any lock held.
  9784. * It gets the hbalock to access and update SLI data structures.
  9785. *
  9786. * This function returns IRQ_HANDLED when interrupt is handled else it
  9787. * returns IRQ_NONE.
  9788. **/
  9789. irqreturn_t
  9790. lpfc_sli_fp_intr_handler(int irq, void *dev_id)
  9791. {
  9792. struct lpfc_hba *phba;
  9793. uint32_t ha_copy;
  9794. unsigned long status;
  9795. unsigned long iflag;
  9796. /* Get the driver's phba structure from the dev_id and
  9797. * assume the HBA is not interrupting.
  9798. */
  9799. phba = (struct lpfc_hba *) dev_id;
  9800. if (unlikely(!phba))
  9801. return IRQ_NONE;
  9802. /*
  9803. * Stuff needs to be attented to when this function is invoked as an
  9804. * individual interrupt handler in MSI-X multi-message interrupt mode
  9805. */
  9806. if (phba->intr_type == MSIX) {
  9807. /* Check device state for handling interrupt */
  9808. if (lpfc_intr_state_check(phba))
  9809. return IRQ_NONE;
  9810. /* Need to read HA REG for FCP ring and other ring events */
  9811. if (lpfc_readl(phba->HAregaddr, &ha_copy))
  9812. return IRQ_HANDLED;
  9813. /* Clear up only attention source related to fast-path */
  9814. spin_lock_irqsave(&phba->hbalock, iflag);
  9815. /*
  9816. * If there is deferred error attention, do not check for
  9817. * any interrupt.
  9818. */
  9819. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  9820. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9821. return IRQ_NONE;
  9822. }
  9823. writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
  9824. phba->HAregaddr);
  9825. readl(phba->HAregaddr); /* flush */
  9826. spin_unlock_irqrestore(&phba->hbalock, iflag);
  9827. } else
  9828. ha_copy = phba->ha_copy;
  9829. /*
  9830. * Process all events on FCP ring. Take the optimized path for FCP IO.
  9831. */
  9832. ha_copy &= ~(phba->work_ha_mask);
  9833. status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
  9834. status >>= (4*LPFC_FCP_RING);
  9835. if (status & HA_RXMASK)
  9836. lpfc_sli_handle_fast_ring_event(phba,
  9837. &phba->sli.ring[LPFC_FCP_RING],
  9838. status);
  9839. if (phba->cfg_multi_ring_support == 2) {
  9840. /*
  9841. * Process all events on extra ring. Take the optimized path
  9842. * for extra ring IO.
  9843. */
  9844. status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
  9845. status >>= (4*LPFC_EXTRA_RING);
  9846. if (status & HA_RXMASK) {
  9847. lpfc_sli_handle_fast_ring_event(phba,
  9848. &phba->sli.ring[LPFC_EXTRA_RING],
  9849. status);
  9850. }
  9851. }
  9852. return IRQ_HANDLED;
  9853. } /* lpfc_sli_fp_intr_handler */
  9854. /**
  9855. * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
  9856. * @irq: Interrupt number.
  9857. * @dev_id: The device context pointer.
  9858. *
  9859. * This function is the HBA device-level interrupt handler to device with
  9860. * SLI-3 interface spec, called from the PCI layer when either MSI or
  9861. * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
  9862. * requires driver attention. This function invokes the slow-path interrupt
  9863. * attention handling function and fast-path interrupt attention handling
  9864. * function in turn to process the relevant HBA attention events. This
  9865. * function is called without any lock held. It gets the hbalock to access
  9866. * and update SLI data structures.
  9867. *
  9868. * This function returns IRQ_HANDLED when interrupt is handled, else it
  9869. * returns IRQ_NONE.
  9870. **/
  9871. irqreturn_t
  9872. lpfc_sli_intr_handler(int irq, void *dev_id)
  9873. {
  9874. struct lpfc_hba *phba;
  9875. irqreturn_t sp_irq_rc, fp_irq_rc;
  9876. unsigned long status1, status2;
  9877. uint32_t hc_copy;
  9878. /*
  9879. * Get the driver's phba structure from the dev_id and
  9880. * assume the HBA is not interrupting.
  9881. */
  9882. phba = (struct lpfc_hba *) dev_id;
  9883. if (unlikely(!phba))
  9884. return IRQ_NONE;
  9885. /* Check device state for handling interrupt */
  9886. if (lpfc_intr_state_check(phba))
  9887. return IRQ_NONE;
  9888. spin_lock(&phba->hbalock);
  9889. if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
  9890. spin_unlock(&phba->hbalock);
  9891. return IRQ_HANDLED;
  9892. }
  9893. if (unlikely(!phba->ha_copy)) {
  9894. spin_unlock(&phba->hbalock);
  9895. return IRQ_NONE;
  9896. } else if (phba->ha_copy & HA_ERATT) {
  9897. if (phba->hba_flag & HBA_ERATT_HANDLED)
  9898. /* ERATT polling has handled ERATT */
  9899. phba->ha_copy &= ~HA_ERATT;
  9900. else
  9901. /* Indicate interrupt handler handles ERATT */
  9902. phba->hba_flag |= HBA_ERATT_HANDLED;
  9903. }
  9904. /*
  9905. * If there is deferred error attention, do not check for any interrupt.
  9906. */
  9907. if (unlikely(phba->hba_flag & DEFER_ERATT)) {
  9908. spin_unlock(&phba->hbalock);
  9909. return IRQ_NONE;
  9910. }
  9911. /* Clear attention sources except link and error attentions */
  9912. if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
  9913. spin_unlock(&phba->hbalock);
  9914. return IRQ_HANDLED;
  9915. }
  9916. writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
  9917. | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
  9918. phba->HCregaddr);
  9919. writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
  9920. writel(hc_copy, phba->HCregaddr);
  9921. readl(phba->HAregaddr); /* flush */
  9922. spin_unlock(&phba->hbalock);
  9923. /*
  9924. * Invokes slow-path host attention interrupt handling as appropriate.
  9925. */
  9926. /* status of events with mailbox and link attention */
  9927. status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
  9928. /* status of events with ELS ring */
  9929. status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
  9930. status2 >>= (4*LPFC_ELS_RING);
  9931. if (status1 || (status2 & HA_RXMASK))
  9932. sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
  9933. else
  9934. sp_irq_rc = IRQ_NONE;
  9935. /*
  9936. * Invoke fast-path host attention interrupt handling as appropriate.
  9937. */
  9938. /* status of events with FCP ring */
  9939. status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
  9940. status1 >>= (4*LPFC_FCP_RING);
  9941. /* status of events with extra ring */
  9942. if (phba->cfg_multi_ring_support == 2) {
  9943. status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
  9944. status2 >>= (4*LPFC_EXTRA_RING);
  9945. } else
  9946. status2 = 0;
  9947. if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
  9948. fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
  9949. else
  9950. fp_irq_rc = IRQ_NONE;
  9951. /* Return device-level interrupt handling status */
  9952. return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
  9953. } /* lpfc_sli_intr_handler */
  9954. /**
  9955. * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
  9956. * @phba: pointer to lpfc hba data structure.
  9957. *
  9958. * This routine is invoked by the worker thread to process all the pending
  9959. * SLI4 FCP abort XRI events.
  9960. **/
  9961. void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
  9962. {
  9963. struct lpfc_cq_event *cq_event;
  9964. /* First, declare the fcp xri abort event has been handled */
  9965. spin_lock_irq(&phba->hbalock);
  9966. phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
  9967. spin_unlock_irq(&phba->hbalock);
  9968. /* Now, handle all the fcp xri abort events */
  9969. while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
  9970. /* Get the first event from the head of the event queue */
  9971. spin_lock_irq(&phba->hbalock);
  9972. list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
  9973. cq_event, struct lpfc_cq_event, list);
  9974. spin_unlock_irq(&phba->hbalock);
  9975. /* Notify aborted XRI for FCP work queue */
  9976. lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
  9977. /* Free the event processed back to the free pool */
  9978. lpfc_sli4_cq_event_release(phba, cq_event);
  9979. }
  9980. }
  9981. /**
  9982. * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
  9983. * @phba: pointer to lpfc hba data structure.
  9984. *
  9985. * This routine is invoked by the worker thread to process all the pending
  9986. * SLI4 els abort xri events.
  9987. **/
  9988. void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
  9989. {
  9990. struct lpfc_cq_event *cq_event;
  9991. /* First, declare the els xri abort event has been handled */
  9992. spin_lock_irq(&phba->hbalock);
  9993. phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
  9994. spin_unlock_irq(&phba->hbalock);
  9995. /* Now, handle all the els xri abort events */
  9996. while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
  9997. /* Get the first event from the head of the event queue */
  9998. spin_lock_irq(&phba->hbalock);
  9999. list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
  10000. cq_event, struct lpfc_cq_event, list);
  10001. spin_unlock_irq(&phba->hbalock);
  10002. /* Notify aborted XRI for ELS work queue */
  10003. lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
  10004. /* Free the event processed back to the free pool */
  10005. lpfc_sli4_cq_event_release(phba, cq_event);
  10006. }
  10007. }
  10008. /**
  10009. * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
  10010. * @phba: pointer to lpfc hba data structure
  10011. * @pIocbIn: pointer to the rspiocbq
  10012. * @pIocbOut: pointer to the cmdiocbq
  10013. * @wcqe: pointer to the complete wcqe
  10014. *
  10015. * This routine transfers the fields of a command iocbq to a response iocbq
  10016. * by copying all the IOCB fields from command iocbq and transferring the
  10017. * completion status information from the complete wcqe.
  10018. **/
  10019. static void
  10020. lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
  10021. struct lpfc_iocbq *pIocbIn,
  10022. struct lpfc_iocbq *pIocbOut,
  10023. struct lpfc_wcqe_complete *wcqe)
  10024. {
  10025. unsigned long iflags;
  10026. uint32_t status;
  10027. size_t offset = offsetof(struct lpfc_iocbq, iocb);
  10028. memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
  10029. sizeof(struct lpfc_iocbq) - offset);
  10030. /* Map WCQE parameters into irspiocb parameters */
  10031. status = bf_get(lpfc_wcqe_c_status, wcqe);
  10032. pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
  10033. if (pIocbOut->iocb_flag & LPFC_IO_FCP)
  10034. if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
  10035. pIocbIn->iocb.un.fcpi.fcpi_parm =
  10036. pIocbOut->iocb.un.fcpi.fcpi_parm -
  10037. wcqe->total_data_placed;
  10038. else
  10039. pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
  10040. else {
  10041. pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
  10042. pIocbIn->iocb.un.genreq64.bdl.bdeSize = wcqe->total_data_placed;
  10043. }
  10044. /* Convert BG errors for completion status */
  10045. if (status == CQE_STATUS_DI_ERROR) {
  10046. pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
  10047. if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
  10048. pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
  10049. else
  10050. pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
  10051. pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
  10052. if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
  10053. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10054. BGS_GUARD_ERR_MASK;
  10055. if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
  10056. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10057. BGS_APPTAG_ERR_MASK;
  10058. if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
  10059. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10060. BGS_REFTAG_ERR_MASK;
  10061. /* Check to see if there was any good data before the error */
  10062. if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
  10063. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10064. BGS_HI_WATER_MARK_PRESENT_MASK;
  10065. pIocbIn->iocb.unsli3.sli3_bg.bghm =
  10066. wcqe->total_data_placed;
  10067. }
  10068. /*
  10069. * Set ALL the error bits to indicate we don't know what
  10070. * type of error it is.
  10071. */
  10072. if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
  10073. pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
  10074. (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
  10075. BGS_GUARD_ERR_MASK);
  10076. }
  10077. /* Pick up HBA exchange busy condition */
  10078. if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
  10079. spin_lock_irqsave(&phba->hbalock, iflags);
  10080. pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
  10081. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10082. }
  10083. }
  10084. /**
  10085. * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
  10086. * @phba: Pointer to HBA context object.
  10087. * @wcqe: Pointer to work-queue completion queue entry.
  10088. *
  10089. * This routine handles an ELS work-queue completion event and construct
  10090. * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
  10091. * discovery engine to handle.
  10092. *
  10093. * Return: Pointer to the receive IOCBQ, NULL otherwise.
  10094. **/
  10095. static struct lpfc_iocbq *
  10096. lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
  10097. struct lpfc_iocbq *irspiocbq)
  10098. {
  10099. struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
  10100. struct lpfc_iocbq *cmdiocbq;
  10101. struct lpfc_wcqe_complete *wcqe;
  10102. unsigned long iflags;
  10103. wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
  10104. spin_lock_irqsave(&pring->ring_lock, iflags);
  10105. pring->stats.iocb_event++;
  10106. /* Look up the ELS command IOCB and create pseudo response IOCB */
  10107. cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
  10108. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10109. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  10110. if (unlikely(!cmdiocbq)) {
  10111. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10112. "0386 ELS complete with no corresponding "
  10113. "cmdiocb: iotag (%d)\n",
  10114. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10115. lpfc_sli_release_iocbq(phba, irspiocbq);
  10116. return NULL;
  10117. }
  10118. /* Fake the irspiocbq and copy necessary response information */
  10119. lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
  10120. return irspiocbq;
  10121. }
  10122. /**
  10123. * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
  10124. * @phba: Pointer to HBA context object.
  10125. * @cqe: Pointer to mailbox completion queue entry.
  10126. *
  10127. * This routine process a mailbox completion queue entry with asynchrous
  10128. * event.
  10129. *
  10130. * Return: true if work posted to worker thread, otherwise false.
  10131. **/
  10132. static bool
  10133. lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
  10134. {
  10135. struct lpfc_cq_event *cq_event;
  10136. unsigned long iflags;
  10137. lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
  10138. "0392 Async Event: word0:x%x, word1:x%x, "
  10139. "word2:x%x, word3:x%x\n", mcqe->word0,
  10140. mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
  10141. /* Allocate a new internal CQ_EVENT entry */
  10142. cq_event = lpfc_sli4_cq_event_alloc(phba);
  10143. if (!cq_event) {
  10144. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10145. "0394 Failed to allocate CQ_EVENT entry\n");
  10146. return false;
  10147. }
  10148. /* Move the CQE into an asynchronous event entry */
  10149. memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
  10150. spin_lock_irqsave(&phba->hbalock, iflags);
  10151. list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
  10152. /* Set the async event flag */
  10153. phba->hba_flag |= ASYNC_EVENT;
  10154. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10155. return true;
  10156. }
  10157. /**
  10158. * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
  10159. * @phba: Pointer to HBA context object.
  10160. * @cqe: Pointer to mailbox completion queue entry.
  10161. *
  10162. * This routine process a mailbox completion queue entry with mailbox
  10163. * completion event.
  10164. *
  10165. * Return: true if work posted to worker thread, otherwise false.
  10166. **/
  10167. static bool
  10168. lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
  10169. {
  10170. uint32_t mcqe_status;
  10171. MAILBOX_t *mbox, *pmbox;
  10172. struct lpfc_mqe *mqe;
  10173. struct lpfc_vport *vport;
  10174. struct lpfc_nodelist *ndlp;
  10175. struct lpfc_dmabuf *mp;
  10176. unsigned long iflags;
  10177. LPFC_MBOXQ_t *pmb;
  10178. bool workposted = false;
  10179. int rc;
  10180. /* If not a mailbox complete MCQE, out by checking mailbox consume */
  10181. if (!bf_get(lpfc_trailer_completed, mcqe))
  10182. goto out_no_mqe_complete;
  10183. /* Get the reference to the active mbox command */
  10184. spin_lock_irqsave(&phba->hbalock, iflags);
  10185. pmb = phba->sli.mbox_active;
  10186. if (unlikely(!pmb)) {
  10187. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
  10188. "1832 No pending MBOX command to handle\n");
  10189. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10190. goto out_no_mqe_complete;
  10191. }
  10192. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10193. mqe = &pmb->u.mqe;
  10194. pmbox = (MAILBOX_t *)&pmb->u.mqe;
  10195. mbox = phba->mbox;
  10196. vport = pmb->vport;
  10197. /* Reset heartbeat timer */
  10198. phba->last_completion_time = jiffies;
  10199. del_timer(&phba->sli.mbox_tmo);
  10200. /* Move mbox data to caller's mailbox region, do endian swapping */
  10201. if (pmb->mbox_cmpl && mbox)
  10202. lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
  10203. /*
  10204. * For mcqe errors, conditionally move a modified error code to
  10205. * the mbox so that the error will not be missed.
  10206. */
  10207. mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
  10208. if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
  10209. if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
  10210. bf_set(lpfc_mqe_status, mqe,
  10211. (LPFC_MBX_ERROR_RANGE | mcqe_status));
  10212. }
  10213. if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
  10214. pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
  10215. lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
  10216. "MBOX dflt rpi: status:x%x rpi:x%x",
  10217. mcqe_status,
  10218. pmbox->un.varWords[0], 0);
  10219. if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
  10220. mp = (struct lpfc_dmabuf *)(pmb->context1);
  10221. ndlp = (struct lpfc_nodelist *)pmb->context2;
  10222. /* Reg_LOGIN of dflt RPI was successful. Now lets get
  10223. * RID of the PPI using the same mbox buffer.
  10224. */
  10225. lpfc_unreg_login(phba, vport->vpi,
  10226. pmbox->un.varWords[0], pmb);
  10227. pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
  10228. pmb->context1 = mp;
  10229. pmb->context2 = ndlp;
  10230. pmb->vport = vport;
  10231. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
  10232. if (rc != MBX_BUSY)
  10233. lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
  10234. LOG_SLI, "0385 rc should "
  10235. "have been MBX_BUSY\n");
  10236. if (rc != MBX_NOT_FINISHED)
  10237. goto send_current_mbox;
  10238. }
  10239. }
  10240. spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
  10241. phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
  10242. spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
  10243. /* There is mailbox completion work to do */
  10244. spin_lock_irqsave(&phba->hbalock, iflags);
  10245. __lpfc_mbox_cmpl_put(phba, pmb);
  10246. phba->work_ha |= HA_MBATT;
  10247. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10248. workposted = true;
  10249. send_current_mbox:
  10250. spin_lock_irqsave(&phba->hbalock, iflags);
  10251. /* Release the mailbox command posting token */
  10252. phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
  10253. /* Setting active mailbox pointer need to be in sync to flag clear */
  10254. phba->sli.mbox_active = NULL;
  10255. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10256. /* Wake up worker thread to post the next pending mailbox command */
  10257. lpfc_worker_wake_up(phba);
  10258. out_no_mqe_complete:
  10259. if (bf_get(lpfc_trailer_consumed, mcqe))
  10260. lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
  10261. return workposted;
  10262. }
  10263. /**
  10264. * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
  10265. * @phba: Pointer to HBA context object.
  10266. * @cqe: Pointer to mailbox completion queue entry.
  10267. *
  10268. * This routine process a mailbox completion queue entry, it invokes the
  10269. * proper mailbox complete handling or asynchrous event handling routine
  10270. * according to the MCQE's async bit.
  10271. *
  10272. * Return: true if work posted to worker thread, otherwise false.
  10273. **/
  10274. static bool
  10275. lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
  10276. {
  10277. struct lpfc_mcqe mcqe;
  10278. bool workposted;
  10279. /* Copy the mailbox MCQE and convert endian order as needed */
  10280. lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
  10281. /* Invoke the proper event handling routine */
  10282. if (!bf_get(lpfc_trailer_async, &mcqe))
  10283. workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
  10284. else
  10285. workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
  10286. return workposted;
  10287. }
  10288. /**
  10289. * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
  10290. * @phba: Pointer to HBA context object.
  10291. * @cq: Pointer to associated CQ
  10292. * @wcqe: Pointer to work-queue completion queue entry.
  10293. *
  10294. * This routine handles an ELS work-queue completion event.
  10295. *
  10296. * Return: true if work posted to worker thread, otherwise false.
  10297. **/
  10298. static bool
  10299. lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10300. struct lpfc_wcqe_complete *wcqe)
  10301. {
  10302. struct lpfc_iocbq *irspiocbq;
  10303. unsigned long iflags;
  10304. struct lpfc_sli_ring *pring = cq->pring;
  10305. int txq_cnt = 0;
  10306. int txcmplq_cnt = 0;
  10307. int fcp_txcmplq_cnt = 0;
  10308. /* Get an irspiocbq for later ELS response processing use */
  10309. irspiocbq = lpfc_sli_get_iocbq(phba);
  10310. if (!irspiocbq) {
  10311. if (!list_empty(&pring->txq))
  10312. txq_cnt++;
  10313. if (!list_empty(&pring->txcmplq))
  10314. txcmplq_cnt++;
  10315. if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
  10316. fcp_txcmplq_cnt++;
  10317. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10318. "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
  10319. "fcp_txcmplq_cnt=%d, els_txcmplq_cnt=%d\n",
  10320. txq_cnt, phba->iocb_cnt,
  10321. fcp_txcmplq_cnt,
  10322. txcmplq_cnt);
  10323. return false;
  10324. }
  10325. /* Save off the slow-path queue event for work thread to process */
  10326. memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
  10327. spin_lock_irqsave(&phba->hbalock, iflags);
  10328. list_add_tail(&irspiocbq->cq_event.list,
  10329. &phba->sli4_hba.sp_queue_event);
  10330. phba->hba_flag |= HBA_SP_QUEUE_EVT;
  10331. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10332. return true;
  10333. }
  10334. /**
  10335. * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
  10336. * @phba: Pointer to HBA context object.
  10337. * @wcqe: Pointer to work-queue completion queue entry.
  10338. *
  10339. * This routine handles slow-path WQ entry comsumed event by invoking the
  10340. * proper WQ release routine to the slow-path WQ.
  10341. **/
  10342. static void
  10343. lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
  10344. struct lpfc_wcqe_release *wcqe)
  10345. {
  10346. /* sanity check on queue memory */
  10347. if (unlikely(!phba->sli4_hba.els_wq))
  10348. return;
  10349. /* Check for the slow-path ELS work queue */
  10350. if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
  10351. lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
  10352. bf_get(lpfc_wcqe_r_wqe_index, wcqe));
  10353. else
  10354. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10355. "2579 Slow-path wqe consume event carries "
  10356. "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
  10357. bf_get(lpfc_wcqe_r_wqe_index, wcqe),
  10358. phba->sli4_hba.els_wq->queue_id);
  10359. }
  10360. /**
  10361. * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
  10362. * @phba: Pointer to HBA context object.
  10363. * @cq: Pointer to a WQ completion queue.
  10364. * @wcqe: Pointer to work-queue completion queue entry.
  10365. *
  10366. * This routine handles an XRI abort event.
  10367. *
  10368. * Return: true if work posted to worker thread, otherwise false.
  10369. **/
  10370. static bool
  10371. lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
  10372. struct lpfc_queue *cq,
  10373. struct sli4_wcqe_xri_aborted *wcqe)
  10374. {
  10375. bool workposted = false;
  10376. struct lpfc_cq_event *cq_event;
  10377. unsigned long iflags;
  10378. /* Allocate a new internal CQ_EVENT entry */
  10379. cq_event = lpfc_sli4_cq_event_alloc(phba);
  10380. if (!cq_event) {
  10381. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10382. "0602 Failed to allocate CQ_EVENT entry\n");
  10383. return false;
  10384. }
  10385. /* Move the CQE into the proper xri abort event list */
  10386. memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
  10387. switch (cq->subtype) {
  10388. case LPFC_FCP:
  10389. spin_lock_irqsave(&phba->hbalock, iflags);
  10390. list_add_tail(&cq_event->list,
  10391. &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
  10392. /* Set the fcp xri abort event flag */
  10393. phba->hba_flag |= FCP_XRI_ABORT_EVENT;
  10394. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10395. workposted = true;
  10396. break;
  10397. case LPFC_ELS:
  10398. spin_lock_irqsave(&phba->hbalock, iflags);
  10399. list_add_tail(&cq_event->list,
  10400. &phba->sli4_hba.sp_els_xri_aborted_work_queue);
  10401. /* Set the els xri abort event flag */
  10402. phba->hba_flag |= ELS_XRI_ABORT_EVENT;
  10403. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10404. workposted = true;
  10405. break;
  10406. default:
  10407. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10408. "0603 Invalid work queue CQE subtype (x%x)\n",
  10409. cq->subtype);
  10410. workposted = false;
  10411. break;
  10412. }
  10413. return workposted;
  10414. }
  10415. /**
  10416. * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
  10417. * @phba: Pointer to HBA context object.
  10418. * @rcqe: Pointer to receive-queue completion queue entry.
  10419. *
  10420. * This routine process a receive-queue completion queue entry.
  10421. *
  10422. * Return: true if work posted to worker thread, otherwise false.
  10423. **/
  10424. static bool
  10425. lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
  10426. {
  10427. bool workposted = false;
  10428. struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
  10429. struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
  10430. struct hbq_dmabuf *dma_buf;
  10431. uint32_t status, rq_id;
  10432. unsigned long iflags;
  10433. /* sanity check on queue memory */
  10434. if (unlikely(!hrq) || unlikely(!drq))
  10435. return workposted;
  10436. if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
  10437. rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
  10438. else
  10439. rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
  10440. if (rq_id != hrq->queue_id)
  10441. goto out;
  10442. status = bf_get(lpfc_rcqe_status, rcqe);
  10443. switch (status) {
  10444. case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
  10445. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10446. "2537 Receive Frame Truncated!!\n");
  10447. hrq->RQ_buf_trunc++;
  10448. case FC_STATUS_RQ_SUCCESS:
  10449. lpfc_sli4_rq_release(hrq, drq);
  10450. spin_lock_irqsave(&phba->hbalock, iflags);
  10451. dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
  10452. if (!dma_buf) {
  10453. hrq->RQ_no_buf_found++;
  10454. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10455. goto out;
  10456. }
  10457. hrq->RQ_rcv_buf++;
  10458. memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
  10459. /* save off the frame for the word thread to process */
  10460. list_add_tail(&dma_buf->cq_event.list,
  10461. &phba->sli4_hba.sp_queue_event);
  10462. /* Frame received */
  10463. phba->hba_flag |= HBA_SP_QUEUE_EVT;
  10464. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10465. workposted = true;
  10466. break;
  10467. case FC_STATUS_INSUFF_BUF_NEED_BUF:
  10468. case FC_STATUS_INSUFF_BUF_FRM_DISC:
  10469. hrq->RQ_no_posted_buf++;
  10470. /* Post more buffers if possible */
  10471. spin_lock_irqsave(&phba->hbalock, iflags);
  10472. phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
  10473. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10474. workposted = true;
  10475. break;
  10476. }
  10477. out:
  10478. return workposted;
  10479. }
  10480. /**
  10481. * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
  10482. * @phba: Pointer to HBA context object.
  10483. * @cq: Pointer to the completion queue.
  10484. * @wcqe: Pointer to a completion queue entry.
  10485. *
  10486. * This routine process a slow-path work-queue or receive queue completion queue
  10487. * entry.
  10488. *
  10489. * Return: true if work posted to worker thread, otherwise false.
  10490. **/
  10491. static bool
  10492. lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10493. struct lpfc_cqe *cqe)
  10494. {
  10495. struct lpfc_cqe cqevt;
  10496. bool workposted = false;
  10497. /* Copy the work queue CQE and convert endian order if needed */
  10498. lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
  10499. /* Check and process for different type of WCQE and dispatch */
  10500. switch (bf_get(lpfc_cqe_code, &cqevt)) {
  10501. case CQE_CODE_COMPL_WQE:
  10502. /* Process the WQ/RQ complete event */
  10503. phba->last_completion_time = jiffies;
  10504. workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
  10505. (struct lpfc_wcqe_complete *)&cqevt);
  10506. break;
  10507. case CQE_CODE_RELEASE_WQE:
  10508. /* Process the WQ release event */
  10509. lpfc_sli4_sp_handle_rel_wcqe(phba,
  10510. (struct lpfc_wcqe_release *)&cqevt);
  10511. break;
  10512. case CQE_CODE_XRI_ABORTED:
  10513. /* Process the WQ XRI abort event */
  10514. phba->last_completion_time = jiffies;
  10515. workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
  10516. (struct sli4_wcqe_xri_aborted *)&cqevt);
  10517. break;
  10518. case CQE_CODE_RECEIVE:
  10519. case CQE_CODE_RECEIVE_V1:
  10520. /* Process the RQ event */
  10521. phba->last_completion_time = jiffies;
  10522. workposted = lpfc_sli4_sp_handle_rcqe(phba,
  10523. (struct lpfc_rcqe *)&cqevt);
  10524. break;
  10525. default:
  10526. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10527. "0388 Not a valid WCQE code: x%x\n",
  10528. bf_get(lpfc_cqe_code, &cqevt));
  10529. break;
  10530. }
  10531. return workposted;
  10532. }
  10533. /**
  10534. * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
  10535. * @phba: Pointer to HBA context object.
  10536. * @eqe: Pointer to fast-path event queue entry.
  10537. *
  10538. * This routine process a event queue entry from the slow-path event queue.
  10539. * It will check the MajorCode and MinorCode to determine this is for a
  10540. * completion event on a completion queue, if not, an error shall be logged
  10541. * and just return. Otherwise, it will get to the corresponding completion
  10542. * queue and process all the entries on that completion queue, rearm the
  10543. * completion queue, and then return.
  10544. *
  10545. **/
  10546. static void
  10547. lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
  10548. struct lpfc_queue *speq)
  10549. {
  10550. struct lpfc_queue *cq = NULL, *childq;
  10551. struct lpfc_cqe *cqe;
  10552. bool workposted = false;
  10553. int ecount = 0;
  10554. uint16_t cqid;
  10555. /* Get the reference to the corresponding CQ */
  10556. cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
  10557. list_for_each_entry(childq, &speq->child_list, list) {
  10558. if (childq->queue_id == cqid) {
  10559. cq = childq;
  10560. break;
  10561. }
  10562. }
  10563. if (unlikely(!cq)) {
  10564. if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
  10565. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10566. "0365 Slow-path CQ identifier "
  10567. "(%d) does not exist\n", cqid);
  10568. return;
  10569. }
  10570. /* Process all the entries to the CQ */
  10571. switch (cq->type) {
  10572. case LPFC_MCQ:
  10573. while ((cqe = lpfc_sli4_cq_get(cq))) {
  10574. workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
  10575. if (!(++ecount % cq->entry_repost))
  10576. lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
  10577. cq->CQ_mbox++;
  10578. }
  10579. break;
  10580. case LPFC_WCQ:
  10581. while ((cqe = lpfc_sli4_cq_get(cq))) {
  10582. if (cq->subtype == LPFC_FCP)
  10583. workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq,
  10584. cqe);
  10585. else
  10586. workposted |= lpfc_sli4_sp_handle_cqe(phba, cq,
  10587. cqe);
  10588. if (!(++ecount % cq->entry_repost))
  10589. lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
  10590. }
  10591. /* Track the max number of CQEs processed in 1 EQ */
  10592. if (ecount > cq->CQ_max_cqe)
  10593. cq->CQ_max_cqe = ecount;
  10594. break;
  10595. default:
  10596. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10597. "0370 Invalid completion queue type (%d)\n",
  10598. cq->type);
  10599. return;
  10600. }
  10601. /* Catch the no cq entry condition, log an error */
  10602. if (unlikely(ecount == 0))
  10603. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10604. "0371 No entry from the CQ: identifier "
  10605. "(x%x), type (%d)\n", cq->queue_id, cq->type);
  10606. /* In any case, flash and re-arm the RCQ */
  10607. lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
  10608. /* wake up worker thread if there are works to be done */
  10609. if (workposted)
  10610. lpfc_worker_wake_up(phba);
  10611. }
  10612. /**
  10613. * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
  10614. * @phba: Pointer to HBA context object.
  10615. * @cq: Pointer to associated CQ
  10616. * @wcqe: Pointer to work-queue completion queue entry.
  10617. *
  10618. * This routine process a fast-path work queue completion entry from fast-path
  10619. * event queue for FCP command response completion.
  10620. **/
  10621. static void
  10622. lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10623. struct lpfc_wcqe_complete *wcqe)
  10624. {
  10625. struct lpfc_sli_ring *pring = cq->pring;
  10626. struct lpfc_iocbq *cmdiocbq;
  10627. struct lpfc_iocbq irspiocbq;
  10628. unsigned long iflags;
  10629. /* Check for response status */
  10630. if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
  10631. /* If resource errors reported from HBA, reduce queue
  10632. * depth of the SCSI device.
  10633. */
  10634. if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
  10635. IOSTAT_LOCAL_REJECT)) &&
  10636. ((wcqe->parameter & IOERR_PARAM_MASK) ==
  10637. IOERR_NO_RESOURCES))
  10638. phba->lpfc_rampdown_queue_depth(phba);
  10639. /* Log the error status */
  10640. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10641. "0373 FCP complete error: status=x%x, "
  10642. "hw_status=x%x, total_data_specified=%d, "
  10643. "parameter=x%x, word3=x%x\n",
  10644. bf_get(lpfc_wcqe_c_status, wcqe),
  10645. bf_get(lpfc_wcqe_c_hw_status, wcqe),
  10646. wcqe->total_data_placed, wcqe->parameter,
  10647. wcqe->word3);
  10648. }
  10649. /* Look up the FCP command IOCB and create pseudo response IOCB */
  10650. spin_lock_irqsave(&pring->ring_lock, iflags);
  10651. pring->stats.iocb_event++;
  10652. cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
  10653. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10654. spin_unlock_irqrestore(&pring->ring_lock, iflags);
  10655. if (unlikely(!cmdiocbq)) {
  10656. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10657. "0374 FCP complete with no corresponding "
  10658. "cmdiocb: iotag (%d)\n",
  10659. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10660. return;
  10661. }
  10662. if (unlikely(!cmdiocbq->iocb_cmpl)) {
  10663. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10664. "0375 FCP cmdiocb not callback function "
  10665. "iotag: (%d)\n",
  10666. bf_get(lpfc_wcqe_c_request_tag, wcqe));
  10667. return;
  10668. }
  10669. /* Fake the irspiocb and copy necessary response information */
  10670. lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
  10671. if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
  10672. spin_lock_irqsave(&phba->hbalock, iflags);
  10673. cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
  10674. spin_unlock_irqrestore(&phba->hbalock, iflags);
  10675. }
  10676. /* Pass the cmd_iocb and the rsp state to the upper layer */
  10677. (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
  10678. }
  10679. /**
  10680. * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
  10681. * @phba: Pointer to HBA context object.
  10682. * @cq: Pointer to completion queue.
  10683. * @wcqe: Pointer to work-queue completion queue entry.
  10684. *
  10685. * This routine handles an fast-path WQ entry comsumed event by invoking the
  10686. * proper WQ release routine to the slow-path WQ.
  10687. **/
  10688. static void
  10689. lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10690. struct lpfc_wcqe_release *wcqe)
  10691. {
  10692. struct lpfc_queue *childwq;
  10693. bool wqid_matched = false;
  10694. uint16_t fcp_wqid;
  10695. /* Check for fast-path FCP work queue release */
  10696. fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
  10697. list_for_each_entry(childwq, &cq->child_list, list) {
  10698. if (childwq->queue_id == fcp_wqid) {
  10699. lpfc_sli4_wq_release(childwq,
  10700. bf_get(lpfc_wcqe_r_wqe_index, wcqe));
  10701. wqid_matched = true;
  10702. break;
  10703. }
  10704. }
  10705. /* Report warning log message if no match found */
  10706. if (wqid_matched != true)
  10707. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10708. "2580 Fast-path wqe consume event carries "
  10709. "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
  10710. }
  10711. /**
  10712. * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
  10713. * @cq: Pointer to the completion queue.
  10714. * @eqe: Pointer to fast-path completion queue entry.
  10715. *
  10716. * This routine process a fast-path work queue completion entry from fast-path
  10717. * event queue for FCP command response completion.
  10718. **/
  10719. static int
  10720. lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
  10721. struct lpfc_cqe *cqe)
  10722. {
  10723. struct lpfc_wcqe_release wcqe;
  10724. bool workposted = false;
  10725. /* Copy the work queue CQE and convert endian order if needed */
  10726. lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
  10727. /* Check and process for different type of WCQE and dispatch */
  10728. switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
  10729. case CQE_CODE_COMPL_WQE:
  10730. cq->CQ_wq++;
  10731. /* Process the WQ complete event */
  10732. phba->last_completion_time = jiffies;
  10733. lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
  10734. (struct lpfc_wcqe_complete *)&wcqe);
  10735. break;
  10736. case CQE_CODE_RELEASE_WQE:
  10737. cq->CQ_release_wqe++;
  10738. /* Process the WQ release event */
  10739. lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
  10740. (struct lpfc_wcqe_release *)&wcqe);
  10741. break;
  10742. case CQE_CODE_XRI_ABORTED:
  10743. cq->CQ_xri_aborted++;
  10744. /* Process the WQ XRI abort event */
  10745. phba->last_completion_time = jiffies;
  10746. workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
  10747. (struct sli4_wcqe_xri_aborted *)&wcqe);
  10748. break;
  10749. default:
  10750. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10751. "0144 Not a valid WCQE code: x%x\n",
  10752. bf_get(lpfc_wcqe_c_code, &wcqe));
  10753. break;
  10754. }
  10755. return workposted;
  10756. }
  10757. /**
  10758. * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
  10759. * @phba: Pointer to HBA context object.
  10760. * @eqe: Pointer to fast-path event queue entry.
  10761. *
  10762. * This routine process a event queue entry from the fast-path event queue.
  10763. * It will check the MajorCode and MinorCode to determine this is for a
  10764. * completion event on a completion queue, if not, an error shall be logged
  10765. * and just return. Otherwise, it will get to the corresponding completion
  10766. * queue and process all the entries on the completion queue, rearm the
  10767. * completion queue, and then return.
  10768. **/
  10769. static void
  10770. lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
  10771. uint32_t qidx)
  10772. {
  10773. struct lpfc_queue *cq;
  10774. struct lpfc_cqe *cqe;
  10775. bool workposted = false;
  10776. uint16_t cqid;
  10777. int ecount = 0;
  10778. if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
  10779. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10780. "0366 Not a valid completion "
  10781. "event: majorcode=x%x, minorcode=x%x\n",
  10782. bf_get_le32(lpfc_eqe_major_code, eqe),
  10783. bf_get_le32(lpfc_eqe_minor_code, eqe));
  10784. return;
  10785. }
  10786. /* Get the reference to the corresponding CQ */
  10787. cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
  10788. /* Check if this is a Slow path event */
  10789. if (unlikely(cqid != phba->sli4_hba.fcp_cq_map[qidx])) {
  10790. lpfc_sli4_sp_handle_eqe(phba, eqe,
  10791. phba->sli4_hba.hba_eq[qidx]);
  10792. return;
  10793. }
  10794. if (unlikely(!phba->sli4_hba.fcp_cq)) {
  10795. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10796. "3146 Fast-path completion queues "
  10797. "does not exist\n");
  10798. return;
  10799. }
  10800. cq = phba->sli4_hba.fcp_cq[qidx];
  10801. if (unlikely(!cq)) {
  10802. if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
  10803. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10804. "0367 Fast-path completion queue "
  10805. "(%d) does not exist\n", qidx);
  10806. return;
  10807. }
  10808. if (unlikely(cqid != cq->queue_id)) {
  10809. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10810. "0368 Miss-matched fast-path completion "
  10811. "queue identifier: eqcqid=%d, fcpcqid=%d\n",
  10812. cqid, cq->queue_id);
  10813. return;
  10814. }
  10815. /* Process all the entries to the CQ */
  10816. while ((cqe = lpfc_sli4_cq_get(cq))) {
  10817. workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
  10818. if (!(++ecount % cq->entry_repost))
  10819. lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
  10820. }
  10821. /* Track the max number of CQEs processed in 1 EQ */
  10822. if (ecount > cq->CQ_max_cqe)
  10823. cq->CQ_max_cqe = ecount;
  10824. /* Catch the no cq entry condition */
  10825. if (unlikely(ecount == 0))
  10826. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  10827. "0369 No entry from fast-path completion "
  10828. "queue fcpcqid=%d\n", cq->queue_id);
  10829. /* In any case, flash and re-arm the CQ */
  10830. lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
  10831. /* wake up worker thread if there are works to be done */
  10832. if (workposted)
  10833. lpfc_worker_wake_up(phba);
  10834. }
  10835. static void
  10836. lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
  10837. {
  10838. struct lpfc_eqe *eqe;
  10839. /* walk all the EQ entries and drop on the floor */
  10840. while ((eqe = lpfc_sli4_eq_get(eq)))
  10841. ;
  10842. /* Clear and re-arm the EQ */
  10843. lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
  10844. }
  10845. /**
  10846. * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
  10847. * @irq: Interrupt number.
  10848. * @dev_id: The device context pointer.
  10849. *
  10850. * This function is directly called from the PCI layer as an interrupt
  10851. * service routine when device with SLI-4 interface spec is enabled with
  10852. * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
  10853. * ring event in the HBA. However, when the device is enabled with either
  10854. * MSI or Pin-IRQ interrupt mode, this function is called as part of the
  10855. * device-level interrupt handler. When the PCI slot is in error recovery
  10856. * or the HBA is undergoing initialization, the interrupt handler will not
  10857. * process the interrupt. The SCSI FCP fast-path ring event are handled in
  10858. * the intrrupt context. This function is called without any lock held.
  10859. * It gets the hbalock to access and update SLI data structures. Note that,
  10860. * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
  10861. * equal to that of FCP CQ index.
  10862. *
  10863. * The link attention and ELS ring attention events are handled
  10864. * by the worker thread. The interrupt handler signals the worker thread
  10865. * and returns for these events. This function is called without any lock
  10866. * held. It gets the hbalock to access and update SLI data structures.
  10867. *
  10868. * This function returns IRQ_HANDLED when interrupt is handled else it
  10869. * returns IRQ_NONE.
  10870. **/
  10871. irqreturn_t
  10872. lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
  10873. {
  10874. struct lpfc_hba *phba;
  10875. struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
  10876. struct lpfc_queue *fpeq;
  10877. struct lpfc_eqe *eqe;
  10878. unsigned long iflag;
  10879. int ecount = 0;
  10880. int fcp_eqidx;
  10881. /* Get the driver's phba structure from the dev_id */
  10882. fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
  10883. phba = fcp_eq_hdl->phba;
  10884. fcp_eqidx = fcp_eq_hdl->idx;
  10885. if (unlikely(!phba))
  10886. return IRQ_NONE;
  10887. if (unlikely(!phba->sli4_hba.hba_eq))
  10888. return IRQ_NONE;
  10889. /* Get to the EQ struct associated with this vector */
  10890. fpeq = phba->sli4_hba.hba_eq[fcp_eqidx];
  10891. if (unlikely(!fpeq))
  10892. return IRQ_NONE;
  10893. if (lpfc_fcp_look_ahead) {
  10894. if (atomic_dec_and_test(&fcp_eq_hdl->fcp_eq_in_use))
  10895. lpfc_sli4_eq_clr_intr(fpeq);
  10896. else {
  10897. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  10898. return IRQ_NONE;
  10899. }
  10900. }
  10901. /* Check device state for handling interrupt */
  10902. if (unlikely(lpfc_intr_state_check(phba))) {
  10903. fpeq->EQ_badstate++;
  10904. /* Check again for link_state with lock held */
  10905. spin_lock_irqsave(&phba->hbalock, iflag);
  10906. if (phba->link_state < LPFC_LINK_DOWN)
  10907. /* Flush, clear interrupt, and rearm the EQ */
  10908. lpfc_sli4_eq_flush(phba, fpeq);
  10909. spin_unlock_irqrestore(&phba->hbalock, iflag);
  10910. if (lpfc_fcp_look_ahead)
  10911. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  10912. return IRQ_NONE;
  10913. }
  10914. /*
  10915. * Process all the event on FCP fast-path EQ
  10916. */
  10917. while ((eqe = lpfc_sli4_eq_get(fpeq))) {
  10918. lpfc_sli4_hba_handle_eqe(phba, eqe, fcp_eqidx);
  10919. if (!(++ecount % fpeq->entry_repost))
  10920. lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
  10921. fpeq->EQ_processed++;
  10922. }
  10923. /* Track the max number of EQEs processed in 1 intr */
  10924. if (ecount > fpeq->EQ_max_eqe)
  10925. fpeq->EQ_max_eqe = ecount;
  10926. /* Always clear and re-arm the fast-path EQ */
  10927. lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
  10928. if (unlikely(ecount == 0)) {
  10929. fpeq->EQ_no_entry++;
  10930. if (lpfc_fcp_look_ahead) {
  10931. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  10932. return IRQ_NONE;
  10933. }
  10934. if (phba->intr_type == MSIX)
  10935. /* MSI-X treated interrupt served as no EQ share INT */
  10936. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  10937. "0358 MSI-X interrupt with no EQE\n");
  10938. else
  10939. /* Non MSI-X treated on interrupt as EQ share INT */
  10940. return IRQ_NONE;
  10941. }
  10942. if (lpfc_fcp_look_ahead)
  10943. atomic_inc(&fcp_eq_hdl->fcp_eq_in_use);
  10944. return IRQ_HANDLED;
  10945. } /* lpfc_sli4_fp_intr_handler */
  10946. /**
  10947. * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
  10948. * @irq: Interrupt number.
  10949. * @dev_id: The device context pointer.
  10950. *
  10951. * This function is the device-level interrupt handler to device with SLI-4
  10952. * interface spec, called from the PCI layer when either MSI or Pin-IRQ
  10953. * interrupt mode is enabled and there is an event in the HBA which requires
  10954. * driver attention. This function invokes the slow-path interrupt attention
  10955. * handling function and fast-path interrupt attention handling function in
  10956. * turn to process the relevant HBA attention events. This function is called
  10957. * without any lock held. It gets the hbalock to access and update SLI data
  10958. * structures.
  10959. *
  10960. * This function returns IRQ_HANDLED when interrupt is handled, else it
  10961. * returns IRQ_NONE.
  10962. **/
  10963. irqreturn_t
  10964. lpfc_sli4_intr_handler(int irq, void *dev_id)
  10965. {
  10966. struct lpfc_hba *phba;
  10967. irqreturn_t hba_irq_rc;
  10968. bool hba_handled = false;
  10969. int fcp_eqidx;
  10970. /* Get the driver's phba structure from the dev_id */
  10971. phba = (struct lpfc_hba *)dev_id;
  10972. if (unlikely(!phba))
  10973. return IRQ_NONE;
  10974. /*
  10975. * Invoke fast-path host attention interrupt handling as appropriate.
  10976. */
  10977. for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
  10978. hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
  10979. &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
  10980. if (hba_irq_rc == IRQ_HANDLED)
  10981. hba_handled |= true;
  10982. }
  10983. return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
  10984. } /* lpfc_sli4_intr_handler */
  10985. /**
  10986. * lpfc_sli4_queue_free - free a queue structure and associated memory
  10987. * @queue: The queue structure to free.
  10988. *
  10989. * This function frees a queue structure and the DMAable memory used for
  10990. * the host resident queue. This function must be called after destroying the
  10991. * queue on the HBA.
  10992. **/
  10993. void
  10994. lpfc_sli4_queue_free(struct lpfc_queue *queue)
  10995. {
  10996. struct lpfc_dmabuf *dmabuf;
  10997. if (!queue)
  10998. return;
  10999. while (!list_empty(&queue->page_list)) {
  11000. list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
  11001. list);
  11002. dma_free_coherent(&queue->phba->pcidev->dev, SLI4_PAGE_SIZE,
  11003. dmabuf->virt, dmabuf->phys);
  11004. kfree(dmabuf);
  11005. }
  11006. kfree(queue);
  11007. return;
  11008. }
  11009. /**
  11010. * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
  11011. * @phba: The HBA that this queue is being created on.
  11012. * @entry_size: The size of each queue entry for this queue.
  11013. * @entry count: The number of entries that this queue will handle.
  11014. *
  11015. * This function allocates a queue structure and the DMAable memory used for
  11016. * the host resident queue. This function must be called before creating the
  11017. * queue on the HBA.
  11018. **/
  11019. struct lpfc_queue *
  11020. lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
  11021. uint32_t entry_count)
  11022. {
  11023. struct lpfc_queue *queue;
  11024. struct lpfc_dmabuf *dmabuf;
  11025. int x, total_qe_count;
  11026. void *dma_pointer;
  11027. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11028. if (!phba->sli4_hba.pc_sli4_params.supported)
  11029. hw_page_size = SLI4_PAGE_SIZE;
  11030. queue = kzalloc(sizeof(struct lpfc_queue) +
  11031. (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
  11032. if (!queue)
  11033. return NULL;
  11034. queue->page_count = (ALIGN(entry_size * entry_count,
  11035. hw_page_size))/hw_page_size;
  11036. INIT_LIST_HEAD(&queue->list);
  11037. INIT_LIST_HEAD(&queue->page_list);
  11038. INIT_LIST_HEAD(&queue->child_list);
  11039. for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
  11040. dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
  11041. if (!dmabuf)
  11042. goto out_fail;
  11043. dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
  11044. hw_page_size, &dmabuf->phys,
  11045. GFP_KERNEL);
  11046. if (!dmabuf->virt) {
  11047. kfree(dmabuf);
  11048. goto out_fail;
  11049. }
  11050. memset(dmabuf->virt, 0, hw_page_size);
  11051. dmabuf->buffer_tag = x;
  11052. list_add_tail(&dmabuf->list, &queue->page_list);
  11053. /* initialize queue's entry array */
  11054. dma_pointer = dmabuf->virt;
  11055. for (; total_qe_count < entry_count &&
  11056. dma_pointer < (hw_page_size + dmabuf->virt);
  11057. total_qe_count++, dma_pointer += entry_size) {
  11058. queue->qe[total_qe_count].address = dma_pointer;
  11059. }
  11060. }
  11061. queue->entry_size = entry_size;
  11062. queue->entry_count = entry_count;
  11063. /*
  11064. * entry_repost is calculated based on the number of entries in the
  11065. * queue. This works out except for RQs. If buffers are NOT initially
  11066. * posted for every RQE, entry_repost should be adjusted accordingly.
  11067. */
  11068. queue->entry_repost = (entry_count >> 3);
  11069. if (queue->entry_repost < LPFC_QUEUE_MIN_REPOST)
  11070. queue->entry_repost = LPFC_QUEUE_MIN_REPOST;
  11071. queue->phba = phba;
  11072. return queue;
  11073. out_fail:
  11074. lpfc_sli4_queue_free(queue);
  11075. return NULL;
  11076. }
  11077. /**
  11078. * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
  11079. * @phba: HBA structure that indicates port to create a queue on.
  11080. * @pci_barset: PCI BAR set flag.
  11081. *
  11082. * This function shall perform iomap of the specified PCI BAR address to host
  11083. * memory address if not already done so and return it. The returned host
  11084. * memory address can be NULL.
  11085. */
  11086. static void __iomem *
  11087. lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
  11088. {
  11089. struct pci_dev *pdev;
  11090. unsigned long bar_map, bar_map_len;
  11091. if (!phba->pcidev)
  11092. return NULL;
  11093. else
  11094. pdev = phba->pcidev;
  11095. switch (pci_barset) {
  11096. case WQ_PCI_BAR_0_AND_1:
  11097. if (!phba->pci_bar0_memmap_p) {
  11098. bar_map = pci_resource_start(pdev, PCI_64BIT_BAR0);
  11099. bar_map_len = pci_resource_len(pdev, PCI_64BIT_BAR0);
  11100. phba->pci_bar0_memmap_p = ioremap(bar_map, bar_map_len);
  11101. }
  11102. return phba->pci_bar0_memmap_p;
  11103. case WQ_PCI_BAR_2_AND_3:
  11104. if (!phba->pci_bar2_memmap_p) {
  11105. bar_map = pci_resource_start(pdev, PCI_64BIT_BAR2);
  11106. bar_map_len = pci_resource_len(pdev, PCI_64BIT_BAR2);
  11107. phba->pci_bar2_memmap_p = ioremap(bar_map, bar_map_len);
  11108. }
  11109. return phba->pci_bar2_memmap_p;
  11110. case WQ_PCI_BAR_4_AND_5:
  11111. if (!phba->pci_bar4_memmap_p) {
  11112. bar_map = pci_resource_start(pdev, PCI_64BIT_BAR4);
  11113. bar_map_len = pci_resource_len(pdev, PCI_64BIT_BAR4);
  11114. phba->pci_bar4_memmap_p = ioremap(bar_map, bar_map_len);
  11115. }
  11116. return phba->pci_bar4_memmap_p;
  11117. default:
  11118. break;
  11119. }
  11120. return NULL;
  11121. }
  11122. /**
  11123. * lpfc_modify_fcp_eq_delay - Modify Delay Multiplier on FCP EQs
  11124. * @phba: HBA structure that indicates port to create a queue on.
  11125. * @startq: The starting FCP EQ to modify
  11126. *
  11127. * This function sends an MODIFY_EQ_DELAY mailbox command to the HBA.
  11128. *
  11129. * The @phba struct is used to send mailbox command to HBA. The @startq
  11130. * is used to get the starting FCP EQ to change.
  11131. * This function is asynchronous and will wait for the mailbox
  11132. * command to finish before continuing.
  11133. *
  11134. * On success this function will return a zero. If unable to allocate enough
  11135. * memory this function will return -ENOMEM. If the queue create mailbox command
  11136. * fails this function will return -ENXIO.
  11137. **/
  11138. uint32_t
  11139. lpfc_modify_fcp_eq_delay(struct lpfc_hba *phba, uint16_t startq)
  11140. {
  11141. struct lpfc_mbx_modify_eq_delay *eq_delay;
  11142. LPFC_MBOXQ_t *mbox;
  11143. struct lpfc_queue *eq;
  11144. int cnt, rc, length, status = 0;
  11145. uint32_t shdr_status, shdr_add_status;
  11146. uint32_t result;
  11147. int fcp_eqidx;
  11148. union lpfc_sli4_cfg_shdr *shdr;
  11149. uint16_t dmult;
  11150. if (startq >= phba->cfg_fcp_io_channel)
  11151. return 0;
  11152. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11153. if (!mbox)
  11154. return -ENOMEM;
  11155. length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
  11156. sizeof(struct lpfc_sli4_cfg_mhdr));
  11157. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11158. LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
  11159. length, LPFC_SLI4_MBX_EMBED);
  11160. eq_delay = &mbox->u.mqe.un.eq_delay;
  11161. /* Calculate delay multiper from maximum interrupt per second */
  11162. result = phba->cfg_fcp_imax / phba->cfg_fcp_io_channel;
  11163. if (result > LPFC_DMULT_CONST)
  11164. dmult = 0;
  11165. else
  11166. dmult = LPFC_DMULT_CONST/result - 1;
  11167. cnt = 0;
  11168. for (fcp_eqidx = startq; fcp_eqidx < phba->cfg_fcp_io_channel;
  11169. fcp_eqidx++) {
  11170. eq = phba->sli4_hba.hba_eq[fcp_eqidx];
  11171. if (!eq)
  11172. continue;
  11173. eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
  11174. eq_delay->u.request.eq[cnt].phase = 0;
  11175. eq_delay->u.request.eq[cnt].delay_multi = dmult;
  11176. cnt++;
  11177. if (cnt >= LPFC_MAX_EQ_DELAY)
  11178. break;
  11179. }
  11180. eq_delay->u.request.num_eq = cnt;
  11181. mbox->vport = phba->pport;
  11182. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  11183. mbox->context1 = NULL;
  11184. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11185. shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
  11186. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11187. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11188. if (shdr_status || shdr_add_status || rc) {
  11189. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11190. "2512 MODIFY_EQ_DELAY mailbox failed with "
  11191. "status x%x add_status x%x, mbx status x%x\n",
  11192. shdr_status, shdr_add_status, rc);
  11193. status = -ENXIO;
  11194. }
  11195. mempool_free(mbox, phba->mbox_mem_pool);
  11196. return status;
  11197. }
  11198. /**
  11199. * lpfc_eq_create - Create an Event Queue on the HBA
  11200. * @phba: HBA structure that indicates port to create a queue on.
  11201. * @eq: The queue structure to use to create the event queue.
  11202. * @imax: The maximum interrupt per second limit.
  11203. *
  11204. * This function creates an event queue, as detailed in @eq, on a port,
  11205. * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
  11206. *
  11207. * The @phba struct is used to send mailbox command to HBA. The @eq struct
  11208. * is used to get the entry count and entry size that are necessary to
  11209. * determine the number of pages to allocate and use for this queue. This
  11210. * function will send the EQ_CREATE mailbox command to the HBA to setup the
  11211. * event queue. This function is asynchronous and will wait for the mailbox
  11212. * command to finish before continuing.
  11213. *
  11214. * On success this function will return a zero. If unable to allocate enough
  11215. * memory this function will return -ENOMEM. If the queue create mailbox command
  11216. * fails this function will return -ENXIO.
  11217. **/
  11218. uint32_t
  11219. lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
  11220. {
  11221. struct lpfc_mbx_eq_create *eq_create;
  11222. LPFC_MBOXQ_t *mbox;
  11223. int rc, length, status = 0;
  11224. struct lpfc_dmabuf *dmabuf;
  11225. uint32_t shdr_status, shdr_add_status;
  11226. union lpfc_sli4_cfg_shdr *shdr;
  11227. uint16_t dmult;
  11228. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11229. /* sanity check on queue memory */
  11230. if (!eq)
  11231. return -ENODEV;
  11232. if (!phba->sli4_hba.pc_sli4_params.supported)
  11233. hw_page_size = SLI4_PAGE_SIZE;
  11234. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11235. if (!mbox)
  11236. return -ENOMEM;
  11237. length = (sizeof(struct lpfc_mbx_eq_create) -
  11238. sizeof(struct lpfc_sli4_cfg_mhdr));
  11239. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11240. LPFC_MBOX_OPCODE_EQ_CREATE,
  11241. length, LPFC_SLI4_MBX_EMBED);
  11242. eq_create = &mbox->u.mqe.un.eq_create;
  11243. bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
  11244. eq->page_count);
  11245. bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
  11246. LPFC_EQE_SIZE);
  11247. bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
  11248. /* Calculate delay multiper from maximum interrupt per second */
  11249. if (imax > LPFC_DMULT_CONST)
  11250. dmult = 0;
  11251. else
  11252. dmult = LPFC_DMULT_CONST/imax - 1;
  11253. bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
  11254. dmult);
  11255. switch (eq->entry_count) {
  11256. default:
  11257. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11258. "0360 Unsupported EQ count. (%d)\n",
  11259. eq->entry_count);
  11260. if (eq->entry_count < 256)
  11261. return -EINVAL;
  11262. /* otherwise default to smallest count (drop through) */
  11263. case 256:
  11264. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11265. LPFC_EQ_CNT_256);
  11266. break;
  11267. case 512:
  11268. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11269. LPFC_EQ_CNT_512);
  11270. break;
  11271. case 1024:
  11272. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11273. LPFC_EQ_CNT_1024);
  11274. break;
  11275. case 2048:
  11276. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11277. LPFC_EQ_CNT_2048);
  11278. break;
  11279. case 4096:
  11280. bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
  11281. LPFC_EQ_CNT_4096);
  11282. break;
  11283. }
  11284. list_for_each_entry(dmabuf, &eq->page_list, list) {
  11285. memset(dmabuf->virt, 0, hw_page_size);
  11286. eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  11287. putPaddrLow(dmabuf->phys);
  11288. eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  11289. putPaddrHigh(dmabuf->phys);
  11290. }
  11291. mbox->vport = phba->pport;
  11292. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  11293. mbox->context1 = NULL;
  11294. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11295. shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
  11296. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11297. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11298. if (shdr_status || shdr_add_status || rc) {
  11299. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11300. "2500 EQ_CREATE mailbox failed with "
  11301. "status x%x add_status x%x, mbx status x%x\n",
  11302. shdr_status, shdr_add_status, rc);
  11303. status = -ENXIO;
  11304. }
  11305. eq->type = LPFC_EQ;
  11306. eq->subtype = LPFC_NONE;
  11307. eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
  11308. if (eq->queue_id == 0xFFFF)
  11309. status = -ENXIO;
  11310. eq->host_index = 0;
  11311. eq->hba_index = 0;
  11312. mempool_free(mbox, phba->mbox_mem_pool);
  11313. return status;
  11314. }
  11315. /**
  11316. * lpfc_cq_create - Create a Completion Queue on the HBA
  11317. * @phba: HBA structure that indicates port to create a queue on.
  11318. * @cq: The queue structure to use to create the completion queue.
  11319. * @eq: The event queue to bind this completion queue to.
  11320. *
  11321. * This function creates a completion queue, as detailed in @wq, on a port,
  11322. * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
  11323. *
  11324. * The @phba struct is used to send mailbox command to HBA. The @cq struct
  11325. * is used to get the entry count and entry size that are necessary to
  11326. * determine the number of pages to allocate and use for this queue. The @eq
  11327. * is used to indicate which event queue to bind this completion queue to. This
  11328. * function will send the CQ_CREATE mailbox command to the HBA to setup the
  11329. * completion queue. This function is asynchronous and will wait for the mailbox
  11330. * command to finish before continuing.
  11331. *
  11332. * On success this function will return a zero. If unable to allocate enough
  11333. * memory this function will return -ENOMEM. If the queue create mailbox command
  11334. * fails this function will return -ENXIO.
  11335. **/
  11336. uint32_t
  11337. lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
  11338. struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
  11339. {
  11340. struct lpfc_mbx_cq_create *cq_create;
  11341. struct lpfc_dmabuf *dmabuf;
  11342. LPFC_MBOXQ_t *mbox;
  11343. int rc, length, status = 0;
  11344. uint32_t shdr_status, shdr_add_status;
  11345. union lpfc_sli4_cfg_shdr *shdr;
  11346. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11347. /* sanity check on queue memory */
  11348. if (!cq || !eq)
  11349. return -ENODEV;
  11350. if (!phba->sli4_hba.pc_sli4_params.supported)
  11351. hw_page_size = SLI4_PAGE_SIZE;
  11352. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11353. if (!mbox)
  11354. return -ENOMEM;
  11355. length = (sizeof(struct lpfc_mbx_cq_create) -
  11356. sizeof(struct lpfc_sli4_cfg_mhdr));
  11357. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11358. LPFC_MBOX_OPCODE_CQ_CREATE,
  11359. length, LPFC_SLI4_MBX_EMBED);
  11360. cq_create = &mbox->u.mqe.un.cq_create;
  11361. shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
  11362. bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
  11363. cq->page_count);
  11364. bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
  11365. bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
  11366. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  11367. phba->sli4_hba.pc_sli4_params.cqv);
  11368. if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
  11369. /* FW only supports 1. Should be PAGE_SIZE/SLI4_PAGE_SIZE */
  11370. bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request, 1);
  11371. bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
  11372. eq->queue_id);
  11373. } else {
  11374. bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
  11375. eq->queue_id);
  11376. }
  11377. switch (cq->entry_count) {
  11378. default:
  11379. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11380. "0361 Unsupported CQ count. (%d)\n",
  11381. cq->entry_count);
  11382. if (cq->entry_count < 256) {
  11383. status = -EINVAL;
  11384. goto out;
  11385. }
  11386. /* otherwise default to smallest count (drop through) */
  11387. case 256:
  11388. bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
  11389. LPFC_CQ_CNT_256);
  11390. break;
  11391. case 512:
  11392. bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
  11393. LPFC_CQ_CNT_512);
  11394. break;
  11395. case 1024:
  11396. bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
  11397. LPFC_CQ_CNT_1024);
  11398. break;
  11399. }
  11400. list_for_each_entry(dmabuf, &cq->page_list, list) {
  11401. memset(dmabuf->virt, 0, hw_page_size);
  11402. cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  11403. putPaddrLow(dmabuf->phys);
  11404. cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  11405. putPaddrHigh(dmabuf->phys);
  11406. }
  11407. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11408. /* The IOCTL status is embedded in the mailbox subheader. */
  11409. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11410. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11411. if (shdr_status || shdr_add_status || rc) {
  11412. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11413. "2501 CQ_CREATE mailbox failed with "
  11414. "status x%x add_status x%x, mbx status x%x\n",
  11415. shdr_status, shdr_add_status, rc);
  11416. status = -ENXIO;
  11417. goto out;
  11418. }
  11419. cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
  11420. if (cq->queue_id == 0xFFFF) {
  11421. status = -ENXIO;
  11422. goto out;
  11423. }
  11424. /* link the cq onto the parent eq child list */
  11425. list_add_tail(&cq->list, &eq->child_list);
  11426. /* Set up completion queue's type and subtype */
  11427. cq->type = type;
  11428. cq->subtype = subtype;
  11429. cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
  11430. cq->assoc_qid = eq->queue_id;
  11431. cq->host_index = 0;
  11432. cq->hba_index = 0;
  11433. out:
  11434. mempool_free(mbox, phba->mbox_mem_pool);
  11435. return status;
  11436. }
  11437. /**
  11438. * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
  11439. * @phba: HBA structure that indicates port to create a queue on.
  11440. * @mq: The queue structure to use to create the mailbox queue.
  11441. * @mbox: An allocated pointer to type LPFC_MBOXQ_t
  11442. * @cq: The completion queue to associate with this cq.
  11443. *
  11444. * This function provides failback (fb) functionality when the
  11445. * mq_create_ext fails on older FW generations. It's purpose is identical
  11446. * to mq_create_ext otherwise.
  11447. *
  11448. * This routine cannot fail as all attributes were previously accessed and
  11449. * initialized in mq_create_ext.
  11450. **/
  11451. static void
  11452. lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
  11453. LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
  11454. {
  11455. struct lpfc_mbx_mq_create *mq_create;
  11456. struct lpfc_dmabuf *dmabuf;
  11457. int length;
  11458. length = (sizeof(struct lpfc_mbx_mq_create) -
  11459. sizeof(struct lpfc_sli4_cfg_mhdr));
  11460. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11461. LPFC_MBOX_OPCODE_MQ_CREATE,
  11462. length, LPFC_SLI4_MBX_EMBED);
  11463. mq_create = &mbox->u.mqe.un.mq_create;
  11464. bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
  11465. mq->page_count);
  11466. bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
  11467. cq->queue_id);
  11468. bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
  11469. switch (mq->entry_count) {
  11470. case 16:
  11471. bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
  11472. LPFC_MQ_RING_SIZE_16);
  11473. break;
  11474. case 32:
  11475. bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
  11476. LPFC_MQ_RING_SIZE_32);
  11477. break;
  11478. case 64:
  11479. bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
  11480. LPFC_MQ_RING_SIZE_64);
  11481. break;
  11482. case 128:
  11483. bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
  11484. LPFC_MQ_RING_SIZE_128);
  11485. break;
  11486. }
  11487. list_for_each_entry(dmabuf, &mq->page_list, list) {
  11488. mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  11489. putPaddrLow(dmabuf->phys);
  11490. mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  11491. putPaddrHigh(dmabuf->phys);
  11492. }
  11493. }
  11494. /**
  11495. * lpfc_mq_create - Create a mailbox Queue on the HBA
  11496. * @phba: HBA structure that indicates port to create a queue on.
  11497. * @mq: The queue structure to use to create the mailbox queue.
  11498. * @cq: The completion queue to associate with this cq.
  11499. * @subtype: The queue's subtype.
  11500. *
  11501. * This function creates a mailbox queue, as detailed in @mq, on a port,
  11502. * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
  11503. *
  11504. * The @phba struct is used to send mailbox command to HBA. The @cq struct
  11505. * is used to get the entry count and entry size that are necessary to
  11506. * determine the number of pages to allocate and use for this queue. This
  11507. * function will send the MQ_CREATE mailbox command to the HBA to setup the
  11508. * mailbox queue. This function is asynchronous and will wait for the mailbox
  11509. * command to finish before continuing.
  11510. *
  11511. * On success this function will return a zero. If unable to allocate enough
  11512. * memory this function will return -ENOMEM. If the queue create mailbox command
  11513. * fails this function will return -ENXIO.
  11514. **/
  11515. int32_t
  11516. lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
  11517. struct lpfc_queue *cq, uint32_t subtype)
  11518. {
  11519. struct lpfc_mbx_mq_create *mq_create;
  11520. struct lpfc_mbx_mq_create_ext *mq_create_ext;
  11521. struct lpfc_dmabuf *dmabuf;
  11522. LPFC_MBOXQ_t *mbox;
  11523. int rc, length, status = 0;
  11524. uint32_t shdr_status, shdr_add_status;
  11525. union lpfc_sli4_cfg_shdr *shdr;
  11526. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11527. /* sanity check on queue memory */
  11528. if (!mq || !cq)
  11529. return -ENODEV;
  11530. if (!phba->sli4_hba.pc_sli4_params.supported)
  11531. hw_page_size = SLI4_PAGE_SIZE;
  11532. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11533. if (!mbox)
  11534. return -ENOMEM;
  11535. length = (sizeof(struct lpfc_mbx_mq_create_ext) -
  11536. sizeof(struct lpfc_sli4_cfg_mhdr));
  11537. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  11538. LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
  11539. length, LPFC_SLI4_MBX_EMBED);
  11540. mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
  11541. shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
  11542. bf_set(lpfc_mbx_mq_create_ext_num_pages,
  11543. &mq_create_ext->u.request, mq->page_count);
  11544. bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
  11545. &mq_create_ext->u.request, 1);
  11546. bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
  11547. &mq_create_ext->u.request, 1);
  11548. bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
  11549. &mq_create_ext->u.request, 1);
  11550. bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
  11551. &mq_create_ext->u.request, 1);
  11552. bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
  11553. &mq_create_ext->u.request, 1);
  11554. bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
  11555. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  11556. phba->sli4_hba.pc_sli4_params.mqv);
  11557. if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
  11558. bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
  11559. cq->queue_id);
  11560. else
  11561. bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
  11562. cq->queue_id);
  11563. switch (mq->entry_count) {
  11564. default:
  11565. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11566. "0362 Unsupported MQ count. (%d)\n",
  11567. mq->entry_count);
  11568. if (mq->entry_count < 16) {
  11569. status = -EINVAL;
  11570. goto out;
  11571. }
  11572. /* otherwise default to smallest count (drop through) */
  11573. case 16:
  11574. bf_set(lpfc_mq_context_ring_size,
  11575. &mq_create_ext->u.request.context,
  11576. LPFC_MQ_RING_SIZE_16);
  11577. break;
  11578. case 32:
  11579. bf_set(lpfc_mq_context_ring_size,
  11580. &mq_create_ext->u.request.context,
  11581. LPFC_MQ_RING_SIZE_32);
  11582. break;
  11583. case 64:
  11584. bf_set(lpfc_mq_context_ring_size,
  11585. &mq_create_ext->u.request.context,
  11586. LPFC_MQ_RING_SIZE_64);
  11587. break;
  11588. case 128:
  11589. bf_set(lpfc_mq_context_ring_size,
  11590. &mq_create_ext->u.request.context,
  11591. LPFC_MQ_RING_SIZE_128);
  11592. break;
  11593. }
  11594. list_for_each_entry(dmabuf, &mq->page_list, list) {
  11595. memset(dmabuf->virt, 0, hw_page_size);
  11596. mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
  11597. putPaddrLow(dmabuf->phys);
  11598. mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
  11599. putPaddrHigh(dmabuf->phys);
  11600. }
  11601. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11602. mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
  11603. &mq_create_ext->u.response);
  11604. if (rc != MBX_SUCCESS) {
  11605. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  11606. "2795 MQ_CREATE_EXT failed with "
  11607. "status x%x. Failback to MQ_CREATE.\n",
  11608. rc);
  11609. lpfc_mq_create_fb_init(phba, mq, mbox, cq);
  11610. mq_create = &mbox->u.mqe.un.mq_create;
  11611. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11612. shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
  11613. mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
  11614. &mq_create->u.response);
  11615. }
  11616. /* The IOCTL status is embedded in the mailbox subheader. */
  11617. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11618. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11619. if (shdr_status || shdr_add_status || rc) {
  11620. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11621. "2502 MQ_CREATE mailbox failed with "
  11622. "status x%x add_status x%x, mbx status x%x\n",
  11623. shdr_status, shdr_add_status, rc);
  11624. status = -ENXIO;
  11625. goto out;
  11626. }
  11627. if (mq->queue_id == 0xFFFF) {
  11628. status = -ENXIO;
  11629. goto out;
  11630. }
  11631. mq->type = LPFC_MQ;
  11632. mq->assoc_qid = cq->queue_id;
  11633. mq->subtype = subtype;
  11634. mq->host_index = 0;
  11635. mq->hba_index = 0;
  11636. /* link the mq onto the parent cq child list */
  11637. list_add_tail(&mq->list, &cq->child_list);
  11638. out:
  11639. mempool_free(mbox, phba->mbox_mem_pool);
  11640. return status;
  11641. }
  11642. /**
  11643. * lpfc_wq_create - Create a Work Queue on the HBA
  11644. * @phba: HBA structure that indicates port to create a queue on.
  11645. * @wq: The queue structure to use to create the work queue.
  11646. * @cq: The completion queue to bind this work queue to.
  11647. * @subtype: The subtype of the work queue indicating its functionality.
  11648. *
  11649. * This function creates a work queue, as detailed in @wq, on a port, described
  11650. * by @phba by sending a WQ_CREATE mailbox command to the HBA.
  11651. *
  11652. * The @phba struct is used to send mailbox command to HBA. The @wq struct
  11653. * is used to get the entry count and entry size that are necessary to
  11654. * determine the number of pages to allocate and use for this queue. The @cq
  11655. * is used to indicate which completion queue to bind this work queue to. This
  11656. * function will send the WQ_CREATE mailbox command to the HBA to setup the
  11657. * work queue. This function is asynchronous and will wait for the mailbox
  11658. * command to finish before continuing.
  11659. *
  11660. * On success this function will return a zero. If unable to allocate enough
  11661. * memory this function will return -ENOMEM. If the queue create mailbox command
  11662. * fails this function will return -ENXIO.
  11663. **/
  11664. uint32_t
  11665. lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
  11666. struct lpfc_queue *cq, uint32_t subtype)
  11667. {
  11668. struct lpfc_mbx_wq_create *wq_create;
  11669. struct lpfc_dmabuf *dmabuf;
  11670. LPFC_MBOXQ_t *mbox;
  11671. int rc, length, status = 0;
  11672. uint32_t shdr_status, shdr_add_status;
  11673. union lpfc_sli4_cfg_shdr *shdr;
  11674. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11675. struct dma_address *page;
  11676. void __iomem *bar_memmap_p;
  11677. uint32_t db_offset;
  11678. uint16_t pci_barset;
  11679. /* sanity check on queue memory */
  11680. if (!wq || !cq)
  11681. return -ENODEV;
  11682. if (!phba->sli4_hba.pc_sli4_params.supported)
  11683. hw_page_size = SLI4_PAGE_SIZE;
  11684. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11685. if (!mbox)
  11686. return -ENOMEM;
  11687. length = (sizeof(struct lpfc_mbx_wq_create) -
  11688. sizeof(struct lpfc_sli4_cfg_mhdr));
  11689. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  11690. LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
  11691. length, LPFC_SLI4_MBX_EMBED);
  11692. wq_create = &mbox->u.mqe.un.wq_create;
  11693. shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
  11694. bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
  11695. wq->page_count);
  11696. bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
  11697. cq->queue_id);
  11698. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  11699. phba->sli4_hba.pc_sli4_params.wqv);
  11700. if (phba->sli4_hba.pc_sli4_params.wqv == LPFC_Q_CREATE_VERSION_1) {
  11701. bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
  11702. wq->entry_count);
  11703. switch (wq->entry_size) {
  11704. default:
  11705. case 64:
  11706. bf_set(lpfc_mbx_wq_create_wqe_size,
  11707. &wq_create->u.request_1,
  11708. LPFC_WQ_WQE_SIZE_64);
  11709. break;
  11710. case 128:
  11711. bf_set(lpfc_mbx_wq_create_wqe_size,
  11712. &wq_create->u.request_1,
  11713. LPFC_WQ_WQE_SIZE_128);
  11714. break;
  11715. }
  11716. bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1,
  11717. (PAGE_SIZE/SLI4_PAGE_SIZE));
  11718. page = wq_create->u.request_1.page;
  11719. } else {
  11720. page = wq_create->u.request.page;
  11721. }
  11722. list_for_each_entry(dmabuf, &wq->page_list, list) {
  11723. memset(dmabuf->virt, 0, hw_page_size);
  11724. page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
  11725. page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
  11726. }
  11727. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
  11728. bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
  11729. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11730. /* The IOCTL status is embedded in the mailbox subheader. */
  11731. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11732. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11733. if (shdr_status || shdr_add_status || rc) {
  11734. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11735. "2503 WQ_CREATE mailbox failed with "
  11736. "status x%x add_status x%x, mbx status x%x\n",
  11737. shdr_status, shdr_add_status, rc);
  11738. status = -ENXIO;
  11739. goto out;
  11740. }
  11741. wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
  11742. if (wq->queue_id == 0xFFFF) {
  11743. status = -ENXIO;
  11744. goto out;
  11745. }
  11746. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
  11747. wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
  11748. &wq_create->u.response);
  11749. if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
  11750. (wq->db_format != LPFC_DB_RING_FORMAT)) {
  11751. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11752. "3265 WQ[%d] doorbell format not "
  11753. "supported: x%x\n", wq->queue_id,
  11754. wq->db_format);
  11755. status = -EINVAL;
  11756. goto out;
  11757. }
  11758. pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
  11759. &wq_create->u.response);
  11760. bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
  11761. if (!bar_memmap_p) {
  11762. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11763. "3263 WQ[%d] failed to memmap pci "
  11764. "barset:x%x\n", wq->queue_id,
  11765. pci_barset);
  11766. status = -ENOMEM;
  11767. goto out;
  11768. }
  11769. db_offset = wq_create->u.response.doorbell_offset;
  11770. if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
  11771. (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
  11772. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11773. "3252 WQ[%d] doorbell offset not "
  11774. "supported: x%x\n", wq->queue_id,
  11775. db_offset);
  11776. status = -EINVAL;
  11777. goto out;
  11778. }
  11779. wq->db_regaddr = bar_memmap_p + db_offset;
  11780. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  11781. "3264 WQ[%d]: barset:x%x, offset:x%x\n",
  11782. wq->queue_id, pci_barset, db_offset);
  11783. } else {
  11784. wq->db_format = LPFC_DB_LIST_FORMAT;
  11785. wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
  11786. }
  11787. wq->type = LPFC_WQ;
  11788. wq->assoc_qid = cq->queue_id;
  11789. wq->subtype = subtype;
  11790. wq->host_index = 0;
  11791. wq->hba_index = 0;
  11792. wq->entry_repost = LPFC_RELEASE_NOTIFICATION_INTERVAL;
  11793. /* link the wq onto the parent cq child list */
  11794. list_add_tail(&wq->list, &cq->child_list);
  11795. out:
  11796. mempool_free(mbox, phba->mbox_mem_pool);
  11797. return status;
  11798. }
  11799. /**
  11800. * lpfc_rq_adjust_repost - Adjust entry_repost for an RQ
  11801. * @phba: HBA structure that indicates port to create a queue on.
  11802. * @rq: The queue structure to use for the receive queue.
  11803. * @qno: The associated HBQ number
  11804. *
  11805. *
  11806. * For SLI4 we need to adjust the RQ repost value based on
  11807. * the number of buffers that are initially posted to the RQ.
  11808. */
  11809. void
  11810. lpfc_rq_adjust_repost(struct lpfc_hba *phba, struct lpfc_queue *rq, int qno)
  11811. {
  11812. uint32_t cnt;
  11813. /* sanity check on queue memory */
  11814. if (!rq)
  11815. return;
  11816. cnt = lpfc_hbq_defs[qno]->entry_count;
  11817. /* Recalc repost for RQs based on buffers initially posted */
  11818. cnt = (cnt >> 3);
  11819. if (cnt < LPFC_QUEUE_MIN_REPOST)
  11820. cnt = LPFC_QUEUE_MIN_REPOST;
  11821. rq->entry_repost = cnt;
  11822. }
  11823. /**
  11824. * lpfc_rq_create - Create a Receive Queue on the HBA
  11825. * @phba: HBA structure that indicates port to create a queue on.
  11826. * @hrq: The queue structure to use to create the header receive queue.
  11827. * @drq: The queue structure to use to create the data receive queue.
  11828. * @cq: The completion queue to bind this work queue to.
  11829. *
  11830. * This function creates a receive buffer queue pair , as detailed in @hrq and
  11831. * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
  11832. * to the HBA.
  11833. *
  11834. * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
  11835. * struct is used to get the entry count that is necessary to determine the
  11836. * number of pages to use for this queue. The @cq is used to indicate which
  11837. * completion queue to bind received buffers that are posted to these queues to.
  11838. * This function will send the RQ_CREATE mailbox command to the HBA to setup the
  11839. * receive queue pair. This function is asynchronous and will wait for the
  11840. * mailbox command to finish before continuing.
  11841. *
  11842. * On success this function will return a zero. If unable to allocate enough
  11843. * memory this function will return -ENOMEM. If the queue create mailbox command
  11844. * fails this function will return -ENXIO.
  11845. **/
  11846. uint32_t
  11847. lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
  11848. struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
  11849. {
  11850. struct lpfc_mbx_rq_create *rq_create;
  11851. struct lpfc_dmabuf *dmabuf;
  11852. LPFC_MBOXQ_t *mbox;
  11853. int rc, length, status = 0;
  11854. uint32_t shdr_status, shdr_add_status;
  11855. union lpfc_sli4_cfg_shdr *shdr;
  11856. uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
  11857. void __iomem *bar_memmap_p;
  11858. uint32_t db_offset;
  11859. uint16_t pci_barset;
  11860. /* sanity check on queue memory */
  11861. if (!hrq || !drq || !cq)
  11862. return -ENODEV;
  11863. if (!phba->sli4_hba.pc_sli4_params.supported)
  11864. hw_page_size = SLI4_PAGE_SIZE;
  11865. if (hrq->entry_count != drq->entry_count)
  11866. return -EINVAL;
  11867. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  11868. if (!mbox)
  11869. return -ENOMEM;
  11870. length = (sizeof(struct lpfc_mbx_rq_create) -
  11871. sizeof(struct lpfc_sli4_cfg_mhdr));
  11872. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  11873. LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
  11874. length, LPFC_SLI4_MBX_EMBED);
  11875. rq_create = &mbox->u.mqe.un.rq_create;
  11876. shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
  11877. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  11878. phba->sli4_hba.pc_sli4_params.rqv);
  11879. if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
  11880. bf_set(lpfc_rq_context_rqe_count_1,
  11881. &rq_create->u.request.context,
  11882. hrq->entry_count);
  11883. rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
  11884. bf_set(lpfc_rq_context_rqe_size,
  11885. &rq_create->u.request.context,
  11886. LPFC_RQE_SIZE_8);
  11887. bf_set(lpfc_rq_context_page_size,
  11888. &rq_create->u.request.context,
  11889. (PAGE_SIZE/SLI4_PAGE_SIZE));
  11890. } else {
  11891. switch (hrq->entry_count) {
  11892. default:
  11893. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  11894. "2535 Unsupported RQ count. (%d)\n",
  11895. hrq->entry_count);
  11896. if (hrq->entry_count < 512) {
  11897. status = -EINVAL;
  11898. goto out;
  11899. }
  11900. /* otherwise default to smallest count (drop through) */
  11901. case 512:
  11902. bf_set(lpfc_rq_context_rqe_count,
  11903. &rq_create->u.request.context,
  11904. LPFC_RQ_RING_SIZE_512);
  11905. break;
  11906. case 1024:
  11907. bf_set(lpfc_rq_context_rqe_count,
  11908. &rq_create->u.request.context,
  11909. LPFC_RQ_RING_SIZE_1024);
  11910. break;
  11911. case 2048:
  11912. bf_set(lpfc_rq_context_rqe_count,
  11913. &rq_create->u.request.context,
  11914. LPFC_RQ_RING_SIZE_2048);
  11915. break;
  11916. case 4096:
  11917. bf_set(lpfc_rq_context_rqe_count,
  11918. &rq_create->u.request.context,
  11919. LPFC_RQ_RING_SIZE_4096);
  11920. break;
  11921. }
  11922. bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
  11923. LPFC_HDR_BUF_SIZE);
  11924. }
  11925. bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
  11926. cq->queue_id);
  11927. bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
  11928. hrq->page_count);
  11929. list_for_each_entry(dmabuf, &hrq->page_list, list) {
  11930. memset(dmabuf->virt, 0, hw_page_size);
  11931. rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  11932. putPaddrLow(dmabuf->phys);
  11933. rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  11934. putPaddrHigh(dmabuf->phys);
  11935. }
  11936. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
  11937. bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
  11938. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  11939. /* The IOCTL status is embedded in the mailbox subheader. */
  11940. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  11941. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  11942. if (shdr_status || shdr_add_status || rc) {
  11943. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11944. "2504 RQ_CREATE mailbox failed with "
  11945. "status x%x add_status x%x, mbx status x%x\n",
  11946. shdr_status, shdr_add_status, rc);
  11947. status = -ENXIO;
  11948. goto out;
  11949. }
  11950. hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
  11951. if (hrq->queue_id == 0xFFFF) {
  11952. status = -ENXIO;
  11953. goto out;
  11954. }
  11955. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
  11956. hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
  11957. &rq_create->u.response);
  11958. if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
  11959. (hrq->db_format != LPFC_DB_RING_FORMAT)) {
  11960. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11961. "3262 RQ [%d] doorbell format not "
  11962. "supported: x%x\n", hrq->queue_id,
  11963. hrq->db_format);
  11964. status = -EINVAL;
  11965. goto out;
  11966. }
  11967. pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
  11968. &rq_create->u.response);
  11969. bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
  11970. if (!bar_memmap_p) {
  11971. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11972. "3269 RQ[%d] failed to memmap pci "
  11973. "barset:x%x\n", hrq->queue_id,
  11974. pci_barset);
  11975. status = -ENOMEM;
  11976. goto out;
  11977. }
  11978. db_offset = rq_create->u.response.doorbell_offset;
  11979. if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
  11980. (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
  11981. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  11982. "3270 RQ[%d] doorbell offset not "
  11983. "supported: x%x\n", hrq->queue_id,
  11984. db_offset);
  11985. status = -EINVAL;
  11986. goto out;
  11987. }
  11988. hrq->db_regaddr = bar_memmap_p + db_offset;
  11989. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  11990. "3266 RQ[qid:%d]: barset:x%x, offset:x%x\n",
  11991. hrq->queue_id, pci_barset, db_offset);
  11992. } else {
  11993. hrq->db_format = LPFC_DB_RING_FORMAT;
  11994. hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
  11995. }
  11996. hrq->type = LPFC_HRQ;
  11997. hrq->assoc_qid = cq->queue_id;
  11998. hrq->subtype = subtype;
  11999. hrq->host_index = 0;
  12000. hrq->hba_index = 0;
  12001. /* now create the data queue */
  12002. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12003. LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
  12004. length, LPFC_SLI4_MBX_EMBED);
  12005. bf_set(lpfc_mbox_hdr_version, &shdr->request,
  12006. phba->sli4_hba.pc_sli4_params.rqv);
  12007. if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
  12008. bf_set(lpfc_rq_context_rqe_count_1,
  12009. &rq_create->u.request.context, hrq->entry_count);
  12010. rq_create->u.request.context.buffer_size = LPFC_DATA_BUF_SIZE;
  12011. bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
  12012. LPFC_RQE_SIZE_8);
  12013. bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
  12014. (PAGE_SIZE/SLI4_PAGE_SIZE));
  12015. } else {
  12016. switch (drq->entry_count) {
  12017. default:
  12018. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12019. "2536 Unsupported RQ count. (%d)\n",
  12020. drq->entry_count);
  12021. if (drq->entry_count < 512) {
  12022. status = -EINVAL;
  12023. goto out;
  12024. }
  12025. /* otherwise default to smallest count (drop through) */
  12026. case 512:
  12027. bf_set(lpfc_rq_context_rqe_count,
  12028. &rq_create->u.request.context,
  12029. LPFC_RQ_RING_SIZE_512);
  12030. break;
  12031. case 1024:
  12032. bf_set(lpfc_rq_context_rqe_count,
  12033. &rq_create->u.request.context,
  12034. LPFC_RQ_RING_SIZE_1024);
  12035. break;
  12036. case 2048:
  12037. bf_set(lpfc_rq_context_rqe_count,
  12038. &rq_create->u.request.context,
  12039. LPFC_RQ_RING_SIZE_2048);
  12040. break;
  12041. case 4096:
  12042. bf_set(lpfc_rq_context_rqe_count,
  12043. &rq_create->u.request.context,
  12044. LPFC_RQ_RING_SIZE_4096);
  12045. break;
  12046. }
  12047. bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
  12048. LPFC_DATA_BUF_SIZE);
  12049. }
  12050. bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
  12051. cq->queue_id);
  12052. bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
  12053. drq->page_count);
  12054. list_for_each_entry(dmabuf, &drq->page_list, list) {
  12055. rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
  12056. putPaddrLow(dmabuf->phys);
  12057. rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
  12058. putPaddrHigh(dmabuf->phys);
  12059. }
  12060. if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
  12061. bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
  12062. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12063. /* The IOCTL status is embedded in the mailbox subheader. */
  12064. shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
  12065. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12066. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12067. if (shdr_status || shdr_add_status || rc) {
  12068. status = -ENXIO;
  12069. goto out;
  12070. }
  12071. drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
  12072. if (drq->queue_id == 0xFFFF) {
  12073. status = -ENXIO;
  12074. goto out;
  12075. }
  12076. drq->type = LPFC_DRQ;
  12077. drq->assoc_qid = cq->queue_id;
  12078. drq->subtype = subtype;
  12079. drq->host_index = 0;
  12080. drq->hba_index = 0;
  12081. /* link the header and data RQs onto the parent cq child list */
  12082. list_add_tail(&hrq->list, &cq->child_list);
  12083. list_add_tail(&drq->list, &cq->child_list);
  12084. out:
  12085. mempool_free(mbox, phba->mbox_mem_pool);
  12086. return status;
  12087. }
  12088. /**
  12089. * lpfc_eq_destroy - Destroy an event Queue on the HBA
  12090. * @eq: The queue structure associated with the queue to destroy.
  12091. *
  12092. * This function destroys a queue, as detailed in @eq by sending an mailbox
  12093. * command, specific to the type of queue, to the HBA.
  12094. *
  12095. * The @eq struct is used to get the queue ID of the queue to destroy.
  12096. *
  12097. * On success this function will return a zero. If the queue destroy mailbox
  12098. * command fails this function will return -ENXIO.
  12099. **/
  12100. uint32_t
  12101. lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
  12102. {
  12103. LPFC_MBOXQ_t *mbox;
  12104. int rc, length, status = 0;
  12105. uint32_t shdr_status, shdr_add_status;
  12106. union lpfc_sli4_cfg_shdr *shdr;
  12107. /* sanity check on queue memory */
  12108. if (!eq)
  12109. return -ENODEV;
  12110. mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
  12111. if (!mbox)
  12112. return -ENOMEM;
  12113. length = (sizeof(struct lpfc_mbx_eq_destroy) -
  12114. sizeof(struct lpfc_sli4_cfg_mhdr));
  12115. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  12116. LPFC_MBOX_OPCODE_EQ_DESTROY,
  12117. length, LPFC_SLI4_MBX_EMBED);
  12118. bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
  12119. eq->queue_id);
  12120. mbox->vport = eq->phba->pport;
  12121. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12122. rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
  12123. /* The IOCTL status is embedded in the mailbox subheader. */
  12124. shdr = (union lpfc_sli4_cfg_shdr *)
  12125. &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
  12126. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12127. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12128. if (shdr_status || shdr_add_status || rc) {
  12129. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12130. "2505 EQ_DESTROY mailbox failed with "
  12131. "status x%x add_status x%x, mbx status x%x\n",
  12132. shdr_status, shdr_add_status, rc);
  12133. status = -ENXIO;
  12134. }
  12135. /* Remove eq from any list */
  12136. list_del_init(&eq->list);
  12137. mempool_free(mbox, eq->phba->mbox_mem_pool);
  12138. return status;
  12139. }
  12140. /**
  12141. * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
  12142. * @cq: The queue structure associated with the queue to destroy.
  12143. *
  12144. * This function destroys a queue, as detailed in @cq by sending an mailbox
  12145. * command, specific to the type of queue, to the HBA.
  12146. *
  12147. * The @cq struct is used to get the queue ID of the queue to destroy.
  12148. *
  12149. * On success this function will return a zero. If the queue destroy mailbox
  12150. * command fails this function will return -ENXIO.
  12151. **/
  12152. uint32_t
  12153. lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
  12154. {
  12155. LPFC_MBOXQ_t *mbox;
  12156. int rc, length, status = 0;
  12157. uint32_t shdr_status, shdr_add_status;
  12158. union lpfc_sli4_cfg_shdr *shdr;
  12159. /* sanity check on queue memory */
  12160. if (!cq)
  12161. return -ENODEV;
  12162. mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
  12163. if (!mbox)
  12164. return -ENOMEM;
  12165. length = (sizeof(struct lpfc_mbx_cq_destroy) -
  12166. sizeof(struct lpfc_sli4_cfg_mhdr));
  12167. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  12168. LPFC_MBOX_OPCODE_CQ_DESTROY,
  12169. length, LPFC_SLI4_MBX_EMBED);
  12170. bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
  12171. cq->queue_id);
  12172. mbox->vport = cq->phba->pport;
  12173. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12174. rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
  12175. /* The IOCTL status is embedded in the mailbox subheader. */
  12176. shdr = (union lpfc_sli4_cfg_shdr *)
  12177. &mbox->u.mqe.un.wq_create.header.cfg_shdr;
  12178. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12179. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12180. if (shdr_status || shdr_add_status || rc) {
  12181. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12182. "2506 CQ_DESTROY mailbox failed with "
  12183. "status x%x add_status x%x, mbx status x%x\n",
  12184. shdr_status, shdr_add_status, rc);
  12185. status = -ENXIO;
  12186. }
  12187. /* Remove cq from any list */
  12188. list_del_init(&cq->list);
  12189. mempool_free(mbox, cq->phba->mbox_mem_pool);
  12190. return status;
  12191. }
  12192. /**
  12193. * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
  12194. * @qm: The queue structure associated with the queue to destroy.
  12195. *
  12196. * This function destroys a queue, as detailed in @mq by sending an mailbox
  12197. * command, specific to the type of queue, to the HBA.
  12198. *
  12199. * The @mq struct is used to get the queue ID of the queue to destroy.
  12200. *
  12201. * On success this function will return a zero. If the queue destroy mailbox
  12202. * command fails this function will return -ENXIO.
  12203. **/
  12204. uint32_t
  12205. lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
  12206. {
  12207. LPFC_MBOXQ_t *mbox;
  12208. int rc, length, status = 0;
  12209. uint32_t shdr_status, shdr_add_status;
  12210. union lpfc_sli4_cfg_shdr *shdr;
  12211. /* sanity check on queue memory */
  12212. if (!mq)
  12213. return -ENODEV;
  12214. mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
  12215. if (!mbox)
  12216. return -ENOMEM;
  12217. length = (sizeof(struct lpfc_mbx_mq_destroy) -
  12218. sizeof(struct lpfc_sli4_cfg_mhdr));
  12219. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  12220. LPFC_MBOX_OPCODE_MQ_DESTROY,
  12221. length, LPFC_SLI4_MBX_EMBED);
  12222. bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
  12223. mq->queue_id);
  12224. mbox->vport = mq->phba->pport;
  12225. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12226. rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
  12227. /* The IOCTL status is embedded in the mailbox subheader. */
  12228. shdr = (union lpfc_sli4_cfg_shdr *)
  12229. &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
  12230. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12231. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12232. if (shdr_status || shdr_add_status || rc) {
  12233. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12234. "2507 MQ_DESTROY mailbox failed with "
  12235. "status x%x add_status x%x, mbx status x%x\n",
  12236. shdr_status, shdr_add_status, rc);
  12237. status = -ENXIO;
  12238. }
  12239. /* Remove mq from any list */
  12240. list_del_init(&mq->list);
  12241. mempool_free(mbox, mq->phba->mbox_mem_pool);
  12242. return status;
  12243. }
  12244. /**
  12245. * lpfc_wq_destroy - Destroy a Work Queue on the HBA
  12246. * @wq: The queue structure associated with the queue to destroy.
  12247. *
  12248. * This function destroys a queue, as detailed in @wq by sending an mailbox
  12249. * command, specific to the type of queue, to the HBA.
  12250. *
  12251. * The @wq struct is used to get the queue ID of the queue to destroy.
  12252. *
  12253. * On success this function will return a zero. If the queue destroy mailbox
  12254. * command fails this function will return -ENXIO.
  12255. **/
  12256. uint32_t
  12257. lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
  12258. {
  12259. LPFC_MBOXQ_t *mbox;
  12260. int rc, length, status = 0;
  12261. uint32_t shdr_status, shdr_add_status;
  12262. union lpfc_sli4_cfg_shdr *shdr;
  12263. /* sanity check on queue memory */
  12264. if (!wq)
  12265. return -ENODEV;
  12266. mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
  12267. if (!mbox)
  12268. return -ENOMEM;
  12269. length = (sizeof(struct lpfc_mbx_wq_destroy) -
  12270. sizeof(struct lpfc_sli4_cfg_mhdr));
  12271. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12272. LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
  12273. length, LPFC_SLI4_MBX_EMBED);
  12274. bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
  12275. wq->queue_id);
  12276. mbox->vport = wq->phba->pport;
  12277. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12278. rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
  12279. shdr = (union lpfc_sli4_cfg_shdr *)
  12280. &mbox->u.mqe.un.wq_destroy.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. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12285. "2508 WQ_DESTROY mailbox failed with "
  12286. "status x%x add_status x%x, mbx status x%x\n",
  12287. shdr_status, shdr_add_status, rc);
  12288. status = -ENXIO;
  12289. }
  12290. /* Remove wq from any list */
  12291. list_del_init(&wq->list);
  12292. mempool_free(mbox, wq->phba->mbox_mem_pool);
  12293. return status;
  12294. }
  12295. /**
  12296. * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
  12297. * @rq: The queue structure associated with the queue to destroy.
  12298. *
  12299. * This function destroys a queue, as detailed in @rq by sending an mailbox
  12300. * command, specific to the type of queue, to the HBA.
  12301. *
  12302. * The @rq struct is used to get the queue ID of the queue to destroy.
  12303. *
  12304. * On success this function will return a zero. If the queue destroy mailbox
  12305. * command fails this function will return -ENXIO.
  12306. **/
  12307. uint32_t
  12308. lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
  12309. struct lpfc_queue *drq)
  12310. {
  12311. LPFC_MBOXQ_t *mbox;
  12312. int rc, length, status = 0;
  12313. uint32_t shdr_status, shdr_add_status;
  12314. union lpfc_sli4_cfg_shdr *shdr;
  12315. /* sanity check on queue memory */
  12316. if (!hrq || !drq)
  12317. return -ENODEV;
  12318. mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
  12319. if (!mbox)
  12320. return -ENOMEM;
  12321. length = (sizeof(struct lpfc_mbx_rq_destroy) -
  12322. sizeof(struct lpfc_sli4_cfg_mhdr));
  12323. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12324. LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
  12325. length, LPFC_SLI4_MBX_EMBED);
  12326. bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
  12327. hrq->queue_id);
  12328. mbox->vport = hrq->phba->pport;
  12329. mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  12330. rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
  12331. /* The IOCTL status is embedded in the mailbox subheader. */
  12332. shdr = (union lpfc_sli4_cfg_shdr *)
  12333. &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
  12334. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12335. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12336. if (shdr_status || shdr_add_status || rc) {
  12337. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12338. "2509 RQ_DESTROY mailbox failed with "
  12339. "status x%x add_status x%x, mbx status x%x\n",
  12340. shdr_status, shdr_add_status, rc);
  12341. if (rc != MBX_TIMEOUT)
  12342. mempool_free(mbox, hrq->phba->mbox_mem_pool);
  12343. return -ENXIO;
  12344. }
  12345. bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
  12346. drq->queue_id);
  12347. rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
  12348. shdr = (union lpfc_sli4_cfg_shdr *)
  12349. &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
  12350. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12351. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12352. if (shdr_status || shdr_add_status || rc) {
  12353. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12354. "2510 RQ_DESTROY mailbox failed with "
  12355. "status x%x add_status x%x, mbx status x%x\n",
  12356. shdr_status, shdr_add_status, rc);
  12357. status = -ENXIO;
  12358. }
  12359. list_del_init(&hrq->list);
  12360. list_del_init(&drq->list);
  12361. mempool_free(mbox, hrq->phba->mbox_mem_pool);
  12362. return status;
  12363. }
  12364. /**
  12365. * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
  12366. * @phba: The virtual port for which this call being executed.
  12367. * @pdma_phys_addr0: Physical address of the 1st SGL page.
  12368. * @pdma_phys_addr1: Physical address of the 2nd SGL page.
  12369. * @xritag: the xritag that ties this io to the SGL pages.
  12370. *
  12371. * This routine will post the sgl pages for the IO that has the xritag
  12372. * that is in the iocbq structure. The xritag is assigned during iocbq
  12373. * creation and persists for as long as the driver is loaded.
  12374. * if the caller has fewer than 256 scatter gather segments to map then
  12375. * pdma_phys_addr1 should be 0.
  12376. * If the caller needs to map more than 256 scatter gather segment then
  12377. * pdma_phys_addr1 should be a valid physical address.
  12378. * physical address for SGLs must be 64 byte aligned.
  12379. * If you are going to map 2 SGL's then the first one must have 256 entries
  12380. * the second sgl can have between 1 and 256 entries.
  12381. *
  12382. * Return codes:
  12383. * 0 - Success
  12384. * -ENXIO, -ENOMEM - Failure
  12385. **/
  12386. int
  12387. lpfc_sli4_post_sgl(struct lpfc_hba *phba,
  12388. dma_addr_t pdma_phys_addr0,
  12389. dma_addr_t pdma_phys_addr1,
  12390. uint16_t xritag)
  12391. {
  12392. struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
  12393. LPFC_MBOXQ_t *mbox;
  12394. int rc;
  12395. uint32_t shdr_status, shdr_add_status;
  12396. uint32_t mbox_tmo;
  12397. union lpfc_sli4_cfg_shdr *shdr;
  12398. if (xritag == NO_XRI) {
  12399. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12400. "0364 Invalid param:\n");
  12401. return -EINVAL;
  12402. }
  12403. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  12404. if (!mbox)
  12405. return -ENOMEM;
  12406. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12407. LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
  12408. sizeof(struct lpfc_mbx_post_sgl_pages) -
  12409. sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
  12410. post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
  12411. &mbox->u.mqe.un.post_sgl_pages;
  12412. bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
  12413. bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
  12414. post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
  12415. cpu_to_le32(putPaddrLow(pdma_phys_addr0));
  12416. post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
  12417. cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
  12418. post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
  12419. cpu_to_le32(putPaddrLow(pdma_phys_addr1));
  12420. post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
  12421. cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
  12422. if (!phba->sli4_hba.intr_enable)
  12423. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12424. else {
  12425. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  12426. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  12427. }
  12428. /* The IOCTL status is embedded in the mailbox subheader. */
  12429. shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
  12430. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12431. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12432. if (rc != MBX_TIMEOUT)
  12433. mempool_free(mbox, phba->mbox_mem_pool);
  12434. if (shdr_status || shdr_add_status || rc) {
  12435. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12436. "2511 POST_SGL mailbox failed with "
  12437. "status x%x add_status x%x, mbx status x%x\n",
  12438. shdr_status, shdr_add_status, rc);
  12439. rc = -ENXIO;
  12440. }
  12441. return 0;
  12442. }
  12443. /**
  12444. * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
  12445. * @phba: pointer to lpfc hba data structure.
  12446. *
  12447. * This routine is invoked to post rpi header templates to the
  12448. * HBA consistent with the SLI-4 interface spec. This routine
  12449. * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
  12450. * SLI4_PAGE_SIZE modulo 64 rpi context headers.
  12451. *
  12452. * Returns
  12453. * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
  12454. * LPFC_RPI_ALLOC_ERROR if no rpis are available.
  12455. **/
  12456. uint16_t
  12457. lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
  12458. {
  12459. unsigned long xri;
  12460. /*
  12461. * Fetch the next logical xri. Because this index is logical,
  12462. * the driver starts at 0 each time.
  12463. */
  12464. spin_lock_irq(&phba->hbalock);
  12465. xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
  12466. phba->sli4_hba.max_cfg_param.max_xri, 0);
  12467. if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
  12468. spin_unlock_irq(&phba->hbalock);
  12469. return NO_XRI;
  12470. } else {
  12471. set_bit(xri, phba->sli4_hba.xri_bmask);
  12472. phba->sli4_hba.max_cfg_param.xri_used++;
  12473. }
  12474. spin_unlock_irq(&phba->hbalock);
  12475. return xri;
  12476. }
  12477. /**
  12478. * lpfc_sli4_free_xri - Release an xri for reuse.
  12479. * @phba: pointer to lpfc hba data structure.
  12480. *
  12481. * This routine is invoked to release an xri to the pool of
  12482. * available rpis maintained by the driver.
  12483. **/
  12484. void
  12485. __lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
  12486. {
  12487. if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
  12488. phba->sli4_hba.max_cfg_param.xri_used--;
  12489. }
  12490. }
  12491. /**
  12492. * lpfc_sli4_free_xri - Release an xri for reuse.
  12493. * @phba: pointer to lpfc hba data structure.
  12494. *
  12495. * This routine is invoked to release an xri to the pool of
  12496. * available rpis maintained by the driver.
  12497. **/
  12498. void
  12499. lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
  12500. {
  12501. spin_lock_irq(&phba->hbalock);
  12502. __lpfc_sli4_free_xri(phba, xri);
  12503. spin_unlock_irq(&phba->hbalock);
  12504. }
  12505. /**
  12506. * lpfc_sli4_next_xritag - Get an xritag for the io
  12507. * @phba: Pointer to HBA context object.
  12508. *
  12509. * This function gets an xritag for the iocb. If there is no unused xritag
  12510. * it will return 0xffff.
  12511. * The function returns the allocated xritag if successful, else returns zero.
  12512. * Zero is not a valid xritag.
  12513. * The caller is not required to hold any lock.
  12514. **/
  12515. uint16_t
  12516. lpfc_sli4_next_xritag(struct lpfc_hba *phba)
  12517. {
  12518. uint16_t xri_index;
  12519. xri_index = lpfc_sli4_alloc_xri(phba);
  12520. if (xri_index == NO_XRI)
  12521. lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
  12522. "2004 Failed to allocate XRI.last XRITAG is %d"
  12523. " Max XRI is %d, Used XRI is %d\n",
  12524. xri_index,
  12525. phba->sli4_hba.max_cfg_param.max_xri,
  12526. phba->sli4_hba.max_cfg_param.xri_used);
  12527. return xri_index;
  12528. }
  12529. /**
  12530. * lpfc_sli4_post_els_sgl_list - post a block of ELS sgls to the port.
  12531. * @phba: pointer to lpfc hba data structure.
  12532. * @post_sgl_list: pointer to els sgl entry list.
  12533. * @count: number of els sgl entries on the list.
  12534. *
  12535. * This routine is invoked to post a block of driver's sgl pages to the
  12536. * HBA using non-embedded mailbox command. No Lock is held. This routine
  12537. * is only called when the driver is loading and after all IO has been
  12538. * stopped.
  12539. **/
  12540. static int
  12541. lpfc_sli4_post_els_sgl_list(struct lpfc_hba *phba,
  12542. struct list_head *post_sgl_list,
  12543. int post_cnt)
  12544. {
  12545. struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
  12546. struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
  12547. struct sgl_page_pairs *sgl_pg_pairs;
  12548. void *viraddr;
  12549. LPFC_MBOXQ_t *mbox;
  12550. uint32_t reqlen, alloclen, pg_pairs;
  12551. uint32_t mbox_tmo;
  12552. uint16_t xritag_start = 0;
  12553. int rc = 0;
  12554. uint32_t shdr_status, shdr_add_status;
  12555. union lpfc_sli4_cfg_shdr *shdr;
  12556. reqlen = phba->sli4_hba.els_xri_cnt * sizeof(struct sgl_page_pairs) +
  12557. sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
  12558. if (reqlen > SLI4_PAGE_SIZE) {
  12559. lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
  12560. "2559 Block sgl registration required DMA "
  12561. "size (%d) great than a page\n", reqlen);
  12562. return -ENOMEM;
  12563. }
  12564. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  12565. if (!mbox)
  12566. return -ENOMEM;
  12567. /* Allocate DMA memory and set up the non-embedded mailbox command */
  12568. alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12569. LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
  12570. LPFC_SLI4_MBX_NEMBED);
  12571. if (alloclen < reqlen) {
  12572. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12573. "0285 Allocated DMA memory size (%d) is "
  12574. "less than the requested DMA memory "
  12575. "size (%d)\n", alloclen, reqlen);
  12576. lpfc_sli4_mbox_cmd_free(phba, mbox);
  12577. return -ENOMEM;
  12578. }
  12579. /* Set up the SGL pages in the non-embedded DMA pages */
  12580. viraddr = mbox->sge_array->addr[0];
  12581. sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
  12582. sgl_pg_pairs = &sgl->sgl_pg_pairs;
  12583. pg_pairs = 0;
  12584. list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
  12585. /* Set up the sge entry */
  12586. sgl_pg_pairs->sgl_pg0_addr_lo =
  12587. cpu_to_le32(putPaddrLow(sglq_entry->phys));
  12588. sgl_pg_pairs->sgl_pg0_addr_hi =
  12589. cpu_to_le32(putPaddrHigh(sglq_entry->phys));
  12590. sgl_pg_pairs->sgl_pg1_addr_lo =
  12591. cpu_to_le32(putPaddrLow(0));
  12592. sgl_pg_pairs->sgl_pg1_addr_hi =
  12593. cpu_to_le32(putPaddrHigh(0));
  12594. /* Keep the first xritag on the list */
  12595. if (pg_pairs == 0)
  12596. xritag_start = sglq_entry->sli4_xritag;
  12597. sgl_pg_pairs++;
  12598. pg_pairs++;
  12599. }
  12600. /* Complete initialization and perform endian conversion. */
  12601. bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
  12602. bf_set(lpfc_post_sgl_pages_xricnt, sgl, phba->sli4_hba.els_xri_cnt);
  12603. sgl->word0 = cpu_to_le32(sgl->word0);
  12604. if (!phba->sli4_hba.intr_enable)
  12605. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12606. else {
  12607. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  12608. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  12609. }
  12610. shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
  12611. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12612. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12613. if (rc != MBX_TIMEOUT)
  12614. lpfc_sli4_mbox_cmd_free(phba, mbox);
  12615. if (shdr_status || shdr_add_status || rc) {
  12616. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12617. "2513 POST_SGL_BLOCK mailbox command failed "
  12618. "status x%x add_status x%x mbx status x%x\n",
  12619. shdr_status, shdr_add_status, rc);
  12620. rc = -ENXIO;
  12621. }
  12622. return rc;
  12623. }
  12624. /**
  12625. * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
  12626. * @phba: pointer to lpfc hba data structure.
  12627. * @sblist: pointer to scsi buffer list.
  12628. * @count: number of scsi buffers on the list.
  12629. *
  12630. * This routine is invoked to post a block of @count scsi sgl pages from a
  12631. * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
  12632. * No Lock is held.
  12633. *
  12634. **/
  12635. int
  12636. lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba,
  12637. struct list_head *sblist,
  12638. int count)
  12639. {
  12640. struct lpfc_scsi_buf *psb;
  12641. struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
  12642. struct sgl_page_pairs *sgl_pg_pairs;
  12643. void *viraddr;
  12644. LPFC_MBOXQ_t *mbox;
  12645. uint32_t reqlen, alloclen, pg_pairs;
  12646. uint32_t mbox_tmo;
  12647. uint16_t xritag_start = 0;
  12648. int rc = 0;
  12649. uint32_t shdr_status, shdr_add_status;
  12650. dma_addr_t pdma_phys_bpl1;
  12651. union lpfc_sli4_cfg_shdr *shdr;
  12652. /* Calculate the requested length of the dma memory */
  12653. reqlen = count * sizeof(struct sgl_page_pairs) +
  12654. sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
  12655. if (reqlen > SLI4_PAGE_SIZE) {
  12656. lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
  12657. "0217 Block sgl registration required DMA "
  12658. "size (%d) great than a page\n", reqlen);
  12659. return -ENOMEM;
  12660. }
  12661. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  12662. if (!mbox) {
  12663. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12664. "0283 Failed to allocate mbox cmd memory\n");
  12665. return -ENOMEM;
  12666. }
  12667. /* Allocate DMA memory and set up the non-embedded mailbox command */
  12668. alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  12669. LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
  12670. LPFC_SLI4_MBX_NEMBED);
  12671. if (alloclen < reqlen) {
  12672. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  12673. "2561 Allocated DMA memory size (%d) is "
  12674. "less than the requested DMA memory "
  12675. "size (%d)\n", alloclen, reqlen);
  12676. lpfc_sli4_mbox_cmd_free(phba, mbox);
  12677. return -ENOMEM;
  12678. }
  12679. /* Get the first SGE entry from the non-embedded DMA memory */
  12680. viraddr = mbox->sge_array->addr[0];
  12681. /* Set up the SGL pages in the non-embedded DMA pages */
  12682. sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
  12683. sgl_pg_pairs = &sgl->sgl_pg_pairs;
  12684. pg_pairs = 0;
  12685. list_for_each_entry(psb, sblist, list) {
  12686. /* Set up the sge entry */
  12687. sgl_pg_pairs->sgl_pg0_addr_lo =
  12688. cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
  12689. sgl_pg_pairs->sgl_pg0_addr_hi =
  12690. cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
  12691. if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
  12692. pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
  12693. else
  12694. pdma_phys_bpl1 = 0;
  12695. sgl_pg_pairs->sgl_pg1_addr_lo =
  12696. cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
  12697. sgl_pg_pairs->sgl_pg1_addr_hi =
  12698. cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
  12699. /* Keep the first xritag on the list */
  12700. if (pg_pairs == 0)
  12701. xritag_start = psb->cur_iocbq.sli4_xritag;
  12702. sgl_pg_pairs++;
  12703. pg_pairs++;
  12704. }
  12705. bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
  12706. bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
  12707. /* Perform endian conversion if necessary */
  12708. sgl->word0 = cpu_to_le32(sgl->word0);
  12709. if (!phba->sli4_hba.intr_enable)
  12710. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  12711. else {
  12712. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  12713. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  12714. }
  12715. shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
  12716. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  12717. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  12718. if (rc != MBX_TIMEOUT)
  12719. lpfc_sli4_mbox_cmd_free(phba, mbox);
  12720. if (shdr_status || shdr_add_status || rc) {
  12721. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  12722. "2564 POST_SGL_BLOCK mailbox command failed "
  12723. "status x%x add_status x%x mbx status x%x\n",
  12724. shdr_status, shdr_add_status, rc);
  12725. rc = -ENXIO;
  12726. }
  12727. return rc;
  12728. }
  12729. /**
  12730. * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
  12731. * @phba: pointer to lpfc_hba struct that the frame was received on
  12732. * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
  12733. *
  12734. * This function checks the fields in the @fc_hdr to see if the FC frame is a
  12735. * valid type of frame that the LPFC driver will handle. This function will
  12736. * return a zero if the frame is a valid frame or a non zero value when the
  12737. * frame does not pass the check.
  12738. **/
  12739. static int
  12740. lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
  12741. {
  12742. /* make rctl_names static to save stack space */
  12743. static char *rctl_names[] = FC_RCTL_NAMES_INIT;
  12744. char *type_names[] = FC_TYPE_NAMES_INIT;
  12745. struct fc_vft_header *fc_vft_hdr;
  12746. uint32_t *header = (uint32_t *) fc_hdr;
  12747. switch (fc_hdr->fh_r_ctl) {
  12748. case FC_RCTL_DD_UNCAT: /* uncategorized information */
  12749. case FC_RCTL_DD_SOL_DATA: /* solicited data */
  12750. case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
  12751. case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
  12752. case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
  12753. case FC_RCTL_DD_DATA_DESC: /* data descriptor */
  12754. case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
  12755. case FC_RCTL_DD_CMD_STATUS: /* command status */
  12756. case FC_RCTL_ELS_REQ: /* extended link services request */
  12757. case FC_RCTL_ELS_REP: /* extended link services reply */
  12758. case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
  12759. case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
  12760. case FC_RCTL_BA_NOP: /* basic link service NOP */
  12761. case FC_RCTL_BA_ABTS: /* basic link service abort */
  12762. case FC_RCTL_BA_RMC: /* remove connection */
  12763. case FC_RCTL_BA_ACC: /* basic accept */
  12764. case FC_RCTL_BA_RJT: /* basic reject */
  12765. case FC_RCTL_BA_PRMT:
  12766. case FC_RCTL_ACK_1: /* acknowledge_1 */
  12767. case FC_RCTL_ACK_0: /* acknowledge_0 */
  12768. case FC_RCTL_P_RJT: /* port reject */
  12769. case FC_RCTL_F_RJT: /* fabric reject */
  12770. case FC_RCTL_P_BSY: /* port busy */
  12771. case FC_RCTL_F_BSY: /* fabric busy to data frame */
  12772. case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
  12773. case FC_RCTL_LCR: /* link credit reset */
  12774. case FC_RCTL_END: /* end */
  12775. break;
  12776. case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
  12777. fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
  12778. fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
  12779. return lpfc_fc_frame_check(phba, fc_hdr);
  12780. default:
  12781. goto drop;
  12782. }
  12783. switch (fc_hdr->fh_type) {
  12784. case FC_TYPE_BLS:
  12785. case FC_TYPE_ELS:
  12786. case FC_TYPE_FCP:
  12787. case FC_TYPE_CT:
  12788. break;
  12789. case FC_TYPE_IP:
  12790. case FC_TYPE_ILS:
  12791. default:
  12792. goto drop;
  12793. }
  12794. lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
  12795. "2538 Received frame rctl:%s type:%s "
  12796. "Frame Data:%08x %08x %08x %08x %08x %08x\n",
  12797. rctl_names[fc_hdr->fh_r_ctl],
  12798. type_names[fc_hdr->fh_type],
  12799. be32_to_cpu(header[0]), be32_to_cpu(header[1]),
  12800. be32_to_cpu(header[2]), be32_to_cpu(header[3]),
  12801. be32_to_cpu(header[4]), be32_to_cpu(header[5]));
  12802. return 0;
  12803. drop:
  12804. lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
  12805. "2539 Dropped frame rctl:%s type:%s\n",
  12806. rctl_names[fc_hdr->fh_r_ctl],
  12807. type_names[fc_hdr->fh_type]);
  12808. return 1;
  12809. }
  12810. /**
  12811. * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
  12812. * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
  12813. *
  12814. * This function processes the FC header to retrieve the VFI from the VF
  12815. * header, if one exists. This function will return the VFI if one exists
  12816. * or 0 if no VSAN Header exists.
  12817. **/
  12818. static uint32_t
  12819. lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
  12820. {
  12821. struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
  12822. if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
  12823. return 0;
  12824. return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
  12825. }
  12826. /**
  12827. * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
  12828. * @phba: Pointer to the HBA structure to search for the vport on
  12829. * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
  12830. * @fcfi: The FC Fabric ID that the frame came from
  12831. *
  12832. * This function searches the @phba for a vport that matches the content of the
  12833. * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
  12834. * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
  12835. * returns the matching vport pointer or NULL if unable to match frame to a
  12836. * vport.
  12837. **/
  12838. static struct lpfc_vport *
  12839. lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
  12840. uint16_t fcfi)
  12841. {
  12842. struct lpfc_vport **vports;
  12843. struct lpfc_vport *vport = NULL;
  12844. int i;
  12845. uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
  12846. fc_hdr->fh_d_id[1] << 8 |
  12847. fc_hdr->fh_d_id[2]);
  12848. if (did == Fabric_DID)
  12849. return phba->pport;
  12850. if ((phba->pport->fc_flag & FC_PT2PT) &&
  12851. !(phba->link_state == LPFC_HBA_READY))
  12852. return phba->pport;
  12853. vports = lpfc_create_vport_work_array(phba);
  12854. if (vports != NULL)
  12855. for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
  12856. if (phba->fcf.fcfi == fcfi &&
  12857. vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
  12858. vports[i]->fc_myDID == did) {
  12859. vport = vports[i];
  12860. break;
  12861. }
  12862. }
  12863. lpfc_destroy_vport_work_array(phba, vports);
  12864. return vport;
  12865. }
  12866. /**
  12867. * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
  12868. * @vport: The vport to work on.
  12869. *
  12870. * This function updates the receive sequence time stamp for this vport. The
  12871. * receive sequence time stamp indicates the time that the last frame of the
  12872. * the sequence that has been idle for the longest amount of time was received.
  12873. * the driver uses this time stamp to indicate if any received sequences have
  12874. * timed out.
  12875. **/
  12876. void
  12877. lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
  12878. {
  12879. struct lpfc_dmabuf *h_buf;
  12880. struct hbq_dmabuf *dmabuf = NULL;
  12881. /* get the oldest sequence on the rcv list */
  12882. h_buf = list_get_first(&vport->rcv_buffer_list,
  12883. struct lpfc_dmabuf, list);
  12884. if (!h_buf)
  12885. return;
  12886. dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  12887. vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
  12888. }
  12889. /**
  12890. * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
  12891. * @vport: The vport that the received sequences were sent to.
  12892. *
  12893. * This function cleans up all outstanding received sequences. This is called
  12894. * by the driver when a link event or user action invalidates all the received
  12895. * sequences.
  12896. **/
  12897. void
  12898. lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
  12899. {
  12900. struct lpfc_dmabuf *h_buf, *hnext;
  12901. struct lpfc_dmabuf *d_buf, *dnext;
  12902. struct hbq_dmabuf *dmabuf = NULL;
  12903. /* start with the oldest sequence on the rcv list */
  12904. list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
  12905. dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  12906. list_del_init(&dmabuf->hbuf.list);
  12907. list_for_each_entry_safe(d_buf, dnext,
  12908. &dmabuf->dbuf.list, list) {
  12909. list_del_init(&d_buf->list);
  12910. lpfc_in_buf_free(vport->phba, d_buf);
  12911. }
  12912. lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
  12913. }
  12914. }
  12915. /**
  12916. * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
  12917. * @vport: The vport that the received sequences were sent to.
  12918. *
  12919. * This function determines whether any received sequences have timed out by
  12920. * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
  12921. * indicates that there is at least one timed out sequence this routine will
  12922. * go through the received sequences one at a time from most inactive to most
  12923. * active to determine which ones need to be cleaned up. Once it has determined
  12924. * that a sequence needs to be cleaned up it will simply free up the resources
  12925. * without sending an abort.
  12926. **/
  12927. void
  12928. lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
  12929. {
  12930. struct lpfc_dmabuf *h_buf, *hnext;
  12931. struct lpfc_dmabuf *d_buf, *dnext;
  12932. struct hbq_dmabuf *dmabuf = NULL;
  12933. unsigned long timeout;
  12934. int abort_count = 0;
  12935. timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
  12936. vport->rcv_buffer_time_stamp);
  12937. if (list_empty(&vport->rcv_buffer_list) ||
  12938. time_before(jiffies, timeout))
  12939. return;
  12940. /* start with the oldest sequence on the rcv list */
  12941. list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
  12942. dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  12943. timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
  12944. dmabuf->time_stamp);
  12945. if (time_before(jiffies, timeout))
  12946. break;
  12947. abort_count++;
  12948. list_del_init(&dmabuf->hbuf.list);
  12949. list_for_each_entry_safe(d_buf, dnext,
  12950. &dmabuf->dbuf.list, list) {
  12951. list_del_init(&d_buf->list);
  12952. lpfc_in_buf_free(vport->phba, d_buf);
  12953. }
  12954. lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
  12955. }
  12956. if (abort_count)
  12957. lpfc_update_rcv_time_stamp(vport);
  12958. }
  12959. /**
  12960. * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
  12961. * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
  12962. *
  12963. * This function searches through the existing incomplete sequences that have
  12964. * been sent to this @vport. If the frame matches one of the incomplete
  12965. * sequences then the dbuf in the @dmabuf is added to the list of frames that
  12966. * make up that sequence. If no sequence is found that matches this frame then
  12967. * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
  12968. * This function returns a pointer to the first dmabuf in the sequence list that
  12969. * the frame was linked to.
  12970. **/
  12971. static struct hbq_dmabuf *
  12972. lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
  12973. {
  12974. struct fc_frame_header *new_hdr;
  12975. struct fc_frame_header *temp_hdr;
  12976. struct lpfc_dmabuf *d_buf;
  12977. struct lpfc_dmabuf *h_buf;
  12978. struct hbq_dmabuf *seq_dmabuf = NULL;
  12979. struct hbq_dmabuf *temp_dmabuf = NULL;
  12980. INIT_LIST_HEAD(&dmabuf->dbuf.list);
  12981. dmabuf->time_stamp = jiffies;
  12982. new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
  12983. /* Use the hdr_buf to find the sequence that this frame belongs to */
  12984. list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
  12985. temp_hdr = (struct fc_frame_header *)h_buf->virt;
  12986. if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
  12987. (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
  12988. (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
  12989. continue;
  12990. /* found a pending sequence that matches this frame */
  12991. seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  12992. break;
  12993. }
  12994. if (!seq_dmabuf) {
  12995. /*
  12996. * This indicates first frame received for this sequence.
  12997. * Queue the buffer on the vport's rcv_buffer_list.
  12998. */
  12999. list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
  13000. lpfc_update_rcv_time_stamp(vport);
  13001. return dmabuf;
  13002. }
  13003. temp_hdr = seq_dmabuf->hbuf.virt;
  13004. if (be16_to_cpu(new_hdr->fh_seq_cnt) <
  13005. be16_to_cpu(temp_hdr->fh_seq_cnt)) {
  13006. list_del_init(&seq_dmabuf->hbuf.list);
  13007. list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
  13008. list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
  13009. lpfc_update_rcv_time_stamp(vport);
  13010. return dmabuf;
  13011. }
  13012. /* move this sequence to the tail to indicate a young sequence */
  13013. list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
  13014. seq_dmabuf->time_stamp = jiffies;
  13015. lpfc_update_rcv_time_stamp(vport);
  13016. if (list_empty(&seq_dmabuf->dbuf.list)) {
  13017. temp_hdr = dmabuf->hbuf.virt;
  13018. list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
  13019. return seq_dmabuf;
  13020. }
  13021. /* find the correct place in the sequence to insert this frame */
  13022. list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
  13023. temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  13024. temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
  13025. /*
  13026. * If the frame's sequence count is greater than the frame on
  13027. * the list then insert the frame right after this frame
  13028. */
  13029. if (be16_to_cpu(new_hdr->fh_seq_cnt) >
  13030. be16_to_cpu(temp_hdr->fh_seq_cnt)) {
  13031. list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
  13032. return seq_dmabuf;
  13033. }
  13034. }
  13035. return NULL;
  13036. }
  13037. /**
  13038. * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
  13039. * @vport: pointer to a vitural port
  13040. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13041. *
  13042. * This function tries to abort from the partially assembed sequence, described
  13043. * by the information from basic abbort @dmabuf. It checks to see whether such
  13044. * partially assembled sequence held by the driver. If so, it shall free up all
  13045. * the frames from the partially assembled sequence.
  13046. *
  13047. * Return
  13048. * true -- if there is matching partially assembled sequence present and all
  13049. * the frames freed with the sequence;
  13050. * false -- if there is no matching partially assembled sequence present so
  13051. * nothing got aborted in the lower layer driver
  13052. **/
  13053. static bool
  13054. lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
  13055. struct hbq_dmabuf *dmabuf)
  13056. {
  13057. struct fc_frame_header *new_hdr;
  13058. struct fc_frame_header *temp_hdr;
  13059. struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
  13060. struct hbq_dmabuf *seq_dmabuf = NULL;
  13061. /* Use the hdr_buf to find the sequence that matches this frame */
  13062. INIT_LIST_HEAD(&dmabuf->dbuf.list);
  13063. INIT_LIST_HEAD(&dmabuf->hbuf.list);
  13064. new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
  13065. list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
  13066. temp_hdr = (struct fc_frame_header *)h_buf->virt;
  13067. if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
  13068. (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
  13069. (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
  13070. continue;
  13071. /* found a pending sequence that matches this frame */
  13072. seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
  13073. break;
  13074. }
  13075. /* Free up all the frames from the partially assembled sequence */
  13076. if (seq_dmabuf) {
  13077. list_for_each_entry_safe(d_buf, n_buf,
  13078. &seq_dmabuf->dbuf.list, list) {
  13079. list_del_init(&d_buf->list);
  13080. lpfc_in_buf_free(vport->phba, d_buf);
  13081. }
  13082. return true;
  13083. }
  13084. return false;
  13085. }
  13086. /**
  13087. * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
  13088. * @vport: pointer to a vitural port
  13089. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13090. *
  13091. * This function tries to abort from the assembed sequence from upper level
  13092. * protocol, described by the information from basic abbort @dmabuf. It
  13093. * checks to see whether such pending context exists at upper level protocol.
  13094. * If so, it shall clean up the pending context.
  13095. *
  13096. * Return
  13097. * true -- if there is matching pending context of the sequence cleaned
  13098. * at ulp;
  13099. * false -- if there is no matching pending context of the sequence present
  13100. * at ulp.
  13101. **/
  13102. static bool
  13103. lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
  13104. {
  13105. struct lpfc_hba *phba = vport->phba;
  13106. int handled;
  13107. /* Accepting abort at ulp with SLI4 only */
  13108. if (phba->sli_rev < LPFC_SLI_REV4)
  13109. return false;
  13110. /* Register all caring upper level protocols to attend abort */
  13111. handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
  13112. if (handled)
  13113. return true;
  13114. return false;
  13115. }
  13116. /**
  13117. * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
  13118. * @phba: Pointer to HBA context object.
  13119. * @cmd_iocbq: pointer to the command iocbq structure.
  13120. * @rsp_iocbq: pointer to the response iocbq structure.
  13121. *
  13122. * This function handles the sequence abort response iocb command complete
  13123. * event. It properly releases the memory allocated to the sequence abort
  13124. * accept iocb.
  13125. **/
  13126. static void
  13127. lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
  13128. struct lpfc_iocbq *cmd_iocbq,
  13129. struct lpfc_iocbq *rsp_iocbq)
  13130. {
  13131. struct lpfc_nodelist *ndlp;
  13132. if (cmd_iocbq) {
  13133. ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
  13134. lpfc_nlp_put(ndlp);
  13135. lpfc_nlp_not_used(ndlp);
  13136. lpfc_sli_release_iocbq(phba, cmd_iocbq);
  13137. }
  13138. /* Failure means BLS ABORT RSP did not get delivered to remote node*/
  13139. if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
  13140. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13141. "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
  13142. rsp_iocbq->iocb.ulpStatus,
  13143. rsp_iocbq->iocb.un.ulpWord[4]);
  13144. }
  13145. /**
  13146. * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
  13147. * @phba: Pointer to HBA context object.
  13148. * @xri: xri id in transaction.
  13149. *
  13150. * This function validates the xri maps to the known range of XRIs allocated an
  13151. * used by the driver.
  13152. **/
  13153. uint16_t
  13154. lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
  13155. uint16_t xri)
  13156. {
  13157. int i;
  13158. for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
  13159. if (xri == phba->sli4_hba.xri_ids[i])
  13160. return i;
  13161. }
  13162. return NO_XRI;
  13163. }
  13164. /**
  13165. * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
  13166. * @phba: Pointer to HBA context object.
  13167. * @fc_hdr: pointer to a FC frame header.
  13168. *
  13169. * This function sends a basic response to a previous unsol sequence abort
  13170. * event after aborting the sequence handling.
  13171. **/
  13172. static void
  13173. lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
  13174. struct fc_frame_header *fc_hdr, bool aborted)
  13175. {
  13176. struct lpfc_hba *phba = vport->phba;
  13177. struct lpfc_iocbq *ctiocb = NULL;
  13178. struct lpfc_nodelist *ndlp;
  13179. uint16_t oxid, rxid, xri, lxri;
  13180. uint32_t sid, fctl;
  13181. IOCB_t *icmd;
  13182. int rc;
  13183. if (!lpfc_is_link_up(phba))
  13184. return;
  13185. sid = sli4_sid_from_fc_hdr(fc_hdr);
  13186. oxid = be16_to_cpu(fc_hdr->fh_ox_id);
  13187. rxid = be16_to_cpu(fc_hdr->fh_rx_id);
  13188. ndlp = lpfc_findnode_did(vport, sid);
  13189. if (!ndlp) {
  13190. ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
  13191. if (!ndlp) {
  13192. lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
  13193. "1268 Failed to allocate ndlp for "
  13194. "oxid:x%x SID:x%x\n", oxid, sid);
  13195. return;
  13196. }
  13197. lpfc_nlp_init(vport, ndlp, sid);
  13198. /* Put ndlp onto pport node list */
  13199. lpfc_enqueue_node(vport, ndlp);
  13200. } else if (!NLP_CHK_NODE_ACT(ndlp)) {
  13201. /* re-setup ndlp without removing from node list */
  13202. ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
  13203. if (!ndlp) {
  13204. lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
  13205. "3275 Failed to active ndlp found "
  13206. "for oxid:x%x SID:x%x\n", oxid, sid);
  13207. return;
  13208. }
  13209. }
  13210. /* Allocate buffer for rsp iocb */
  13211. ctiocb = lpfc_sli_get_iocbq(phba);
  13212. if (!ctiocb)
  13213. return;
  13214. /* Extract the F_CTL field from FC_HDR */
  13215. fctl = sli4_fctl_from_fc_hdr(fc_hdr);
  13216. icmd = &ctiocb->iocb;
  13217. icmd->un.xseq64.bdl.bdeSize = 0;
  13218. icmd->un.xseq64.bdl.ulpIoTag32 = 0;
  13219. icmd->un.xseq64.w5.hcsw.Dfctl = 0;
  13220. icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
  13221. icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
  13222. /* Fill in the rest of iocb fields */
  13223. icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
  13224. icmd->ulpBdeCount = 0;
  13225. icmd->ulpLe = 1;
  13226. icmd->ulpClass = CLASS3;
  13227. icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
  13228. ctiocb->context1 = lpfc_nlp_get(ndlp);
  13229. ctiocb->iocb_cmpl = NULL;
  13230. ctiocb->vport = phba->pport;
  13231. ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
  13232. ctiocb->sli4_lxritag = NO_XRI;
  13233. ctiocb->sli4_xritag = NO_XRI;
  13234. if (fctl & FC_FC_EX_CTX)
  13235. /* Exchange responder sent the abort so we
  13236. * own the oxid.
  13237. */
  13238. xri = oxid;
  13239. else
  13240. xri = rxid;
  13241. lxri = lpfc_sli4_xri_inrange(phba, xri);
  13242. if (lxri != NO_XRI)
  13243. lpfc_set_rrq_active(phba, ndlp, lxri,
  13244. (xri == oxid) ? rxid : oxid, 0);
  13245. /* For BA_ABTS from exchange responder, if the logical xri with
  13246. * the oxid maps to the FCP XRI range, the port no longer has
  13247. * that exchange context, send a BLS_RJT. Override the IOCB for
  13248. * a BA_RJT.
  13249. */
  13250. if ((fctl & FC_FC_EX_CTX) &&
  13251. (lxri > lpfc_sli4_get_els_iocb_cnt(phba))) {
  13252. icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
  13253. bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
  13254. bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
  13255. bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
  13256. }
  13257. /* If BA_ABTS failed to abort a partially assembled receive sequence,
  13258. * the driver no longer has that exchange, send a BLS_RJT. Override
  13259. * the IOCB for a BA_RJT.
  13260. */
  13261. if (aborted == false) {
  13262. icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
  13263. bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
  13264. bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
  13265. bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
  13266. }
  13267. if (fctl & FC_FC_EX_CTX) {
  13268. /* ABTS sent by responder to CT exchange, construction
  13269. * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
  13270. * field and RX_ID from ABTS for RX_ID field.
  13271. */
  13272. bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
  13273. } else {
  13274. /* ABTS sent by initiator to CT exchange, construction
  13275. * of BA_ACC will need to allocate a new XRI as for the
  13276. * XRI_TAG field.
  13277. */
  13278. bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
  13279. }
  13280. bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
  13281. bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
  13282. /* Xmit CT abts response on exchange <xid> */
  13283. lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
  13284. "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
  13285. icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
  13286. rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
  13287. if (rc == IOCB_ERROR) {
  13288. lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
  13289. "2925 Failed to issue CT ABTS RSP x%x on "
  13290. "xri x%x, Data x%x\n",
  13291. icmd->un.xseq64.w5.hcsw.Rctl, oxid,
  13292. phba->link_state);
  13293. lpfc_nlp_put(ndlp);
  13294. ctiocb->context1 = NULL;
  13295. lpfc_sli_release_iocbq(phba, ctiocb);
  13296. }
  13297. }
  13298. /**
  13299. * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
  13300. * @vport: Pointer to the vport on which this sequence was received
  13301. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13302. *
  13303. * This function handles an SLI-4 unsolicited abort event. If the unsolicited
  13304. * receive sequence is only partially assembed by the driver, it shall abort
  13305. * the partially assembled frames for the sequence. Otherwise, if the
  13306. * unsolicited receive sequence has been completely assembled and passed to
  13307. * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
  13308. * unsolicited sequence has been aborted. After that, it will issue a basic
  13309. * accept to accept the abort.
  13310. **/
  13311. void
  13312. lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
  13313. struct hbq_dmabuf *dmabuf)
  13314. {
  13315. struct lpfc_hba *phba = vport->phba;
  13316. struct fc_frame_header fc_hdr;
  13317. uint32_t fctl;
  13318. bool aborted;
  13319. /* Make a copy of fc_hdr before the dmabuf being released */
  13320. memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
  13321. fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
  13322. if (fctl & FC_FC_EX_CTX) {
  13323. /* ABTS by responder to exchange, no cleanup needed */
  13324. aborted = true;
  13325. } else {
  13326. /* ABTS by initiator to exchange, need to do cleanup */
  13327. aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
  13328. if (aborted == false)
  13329. aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
  13330. }
  13331. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13332. /* Respond with BA_ACC or BA_RJT accordingly */
  13333. lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
  13334. }
  13335. /**
  13336. * lpfc_seq_complete - Indicates if a sequence is complete
  13337. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13338. *
  13339. * This function checks the sequence, starting with the frame described by
  13340. * @dmabuf, to see if all the frames associated with this sequence are present.
  13341. * the frames associated with this sequence are linked to the @dmabuf using the
  13342. * dbuf list. This function looks for two major things. 1) That the first frame
  13343. * has a sequence count of zero. 2) There is a frame with last frame of sequence
  13344. * set. 3) That there are no holes in the sequence count. The function will
  13345. * return 1 when the sequence is complete, otherwise it will return 0.
  13346. **/
  13347. static int
  13348. lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
  13349. {
  13350. struct fc_frame_header *hdr;
  13351. struct lpfc_dmabuf *d_buf;
  13352. struct hbq_dmabuf *seq_dmabuf;
  13353. uint32_t fctl;
  13354. int seq_count = 0;
  13355. hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
  13356. /* make sure first fame of sequence has a sequence count of zero */
  13357. if (hdr->fh_seq_cnt != seq_count)
  13358. return 0;
  13359. fctl = (hdr->fh_f_ctl[0] << 16 |
  13360. hdr->fh_f_ctl[1] << 8 |
  13361. hdr->fh_f_ctl[2]);
  13362. /* If last frame of sequence we can return success. */
  13363. if (fctl & FC_FC_END_SEQ)
  13364. return 1;
  13365. list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
  13366. seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  13367. hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
  13368. /* If there is a hole in the sequence count then fail. */
  13369. if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
  13370. return 0;
  13371. fctl = (hdr->fh_f_ctl[0] << 16 |
  13372. hdr->fh_f_ctl[1] << 8 |
  13373. hdr->fh_f_ctl[2]);
  13374. /* If last frame of sequence we can return success. */
  13375. if (fctl & FC_FC_END_SEQ)
  13376. return 1;
  13377. }
  13378. return 0;
  13379. }
  13380. /**
  13381. * lpfc_prep_seq - Prep sequence for ULP processing
  13382. * @vport: Pointer to the vport on which this sequence was received
  13383. * @dmabuf: pointer to a dmabuf that describes the FC sequence
  13384. *
  13385. * This function takes a sequence, described by a list of frames, and creates
  13386. * a list of iocbq structures to describe the sequence. This iocbq list will be
  13387. * used to issue to the generic unsolicited sequence handler. This routine
  13388. * returns a pointer to the first iocbq in the list. If the function is unable
  13389. * to allocate an iocbq then it throw out the received frames that were not
  13390. * able to be described and return a pointer to the first iocbq. If unable to
  13391. * allocate any iocbqs (including the first) this function will return NULL.
  13392. **/
  13393. static struct lpfc_iocbq *
  13394. lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
  13395. {
  13396. struct hbq_dmabuf *hbq_buf;
  13397. struct lpfc_dmabuf *d_buf, *n_buf;
  13398. struct lpfc_iocbq *first_iocbq, *iocbq;
  13399. struct fc_frame_header *fc_hdr;
  13400. uint32_t sid;
  13401. uint32_t len, tot_len;
  13402. struct ulp_bde64 *pbde;
  13403. fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
  13404. /* remove from receive buffer list */
  13405. list_del_init(&seq_dmabuf->hbuf.list);
  13406. lpfc_update_rcv_time_stamp(vport);
  13407. /* get the Remote Port's SID */
  13408. sid = sli4_sid_from_fc_hdr(fc_hdr);
  13409. tot_len = 0;
  13410. /* Get an iocbq struct to fill in. */
  13411. first_iocbq = lpfc_sli_get_iocbq(vport->phba);
  13412. if (first_iocbq) {
  13413. /* Initialize the first IOCB. */
  13414. first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
  13415. first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
  13416. /* Check FC Header to see what TYPE of frame we are rcv'ing */
  13417. if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
  13418. first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
  13419. first_iocbq->iocb.un.rcvels.parmRo =
  13420. sli4_did_from_fc_hdr(fc_hdr);
  13421. first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
  13422. } else
  13423. first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
  13424. first_iocbq->iocb.ulpContext = NO_XRI;
  13425. first_iocbq->iocb.unsli3.rcvsli3.ox_id =
  13426. be16_to_cpu(fc_hdr->fh_ox_id);
  13427. /* iocbq is prepped for internal consumption. Physical vpi. */
  13428. first_iocbq->iocb.unsli3.rcvsli3.vpi =
  13429. vport->phba->vpi_ids[vport->vpi];
  13430. /* put the first buffer into the first IOCBq */
  13431. first_iocbq->context2 = &seq_dmabuf->dbuf;
  13432. first_iocbq->context3 = NULL;
  13433. first_iocbq->iocb.ulpBdeCount = 1;
  13434. first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
  13435. LPFC_DATA_BUF_SIZE;
  13436. first_iocbq->iocb.un.rcvels.remoteID = sid;
  13437. tot_len = bf_get(lpfc_rcqe_length,
  13438. &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
  13439. first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
  13440. }
  13441. iocbq = first_iocbq;
  13442. /*
  13443. * Each IOCBq can have two Buffers assigned, so go through the list
  13444. * of buffers for this sequence and save two buffers in each IOCBq
  13445. */
  13446. list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
  13447. if (!iocbq) {
  13448. lpfc_in_buf_free(vport->phba, d_buf);
  13449. continue;
  13450. }
  13451. if (!iocbq->context3) {
  13452. iocbq->context3 = d_buf;
  13453. iocbq->iocb.ulpBdeCount++;
  13454. pbde = (struct ulp_bde64 *)
  13455. &iocbq->iocb.unsli3.sli3Words[4];
  13456. pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
  13457. /* We need to get the size out of the right CQE */
  13458. hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  13459. len = bf_get(lpfc_rcqe_length,
  13460. &hbq_buf->cq_event.cqe.rcqe_cmpl);
  13461. iocbq->iocb.unsli3.rcvsli3.acc_len += len;
  13462. tot_len += len;
  13463. } else {
  13464. iocbq = lpfc_sli_get_iocbq(vport->phba);
  13465. if (!iocbq) {
  13466. if (first_iocbq) {
  13467. first_iocbq->iocb.ulpStatus =
  13468. IOSTAT_FCP_RSP_ERROR;
  13469. first_iocbq->iocb.un.ulpWord[4] =
  13470. IOERR_NO_RESOURCES;
  13471. }
  13472. lpfc_in_buf_free(vport->phba, d_buf);
  13473. continue;
  13474. }
  13475. iocbq->context2 = d_buf;
  13476. iocbq->context3 = NULL;
  13477. iocbq->iocb.ulpBdeCount = 1;
  13478. iocbq->iocb.un.cont64[0].tus.f.bdeSize =
  13479. LPFC_DATA_BUF_SIZE;
  13480. /* We need to get the size out of the right CQE */
  13481. hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
  13482. len = bf_get(lpfc_rcqe_length,
  13483. &hbq_buf->cq_event.cqe.rcqe_cmpl);
  13484. tot_len += len;
  13485. iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
  13486. iocbq->iocb.un.rcvels.remoteID = sid;
  13487. list_add_tail(&iocbq->list, &first_iocbq->list);
  13488. }
  13489. }
  13490. return first_iocbq;
  13491. }
  13492. static void
  13493. lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
  13494. struct hbq_dmabuf *seq_dmabuf)
  13495. {
  13496. struct fc_frame_header *fc_hdr;
  13497. struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
  13498. struct lpfc_hba *phba = vport->phba;
  13499. fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
  13500. iocbq = lpfc_prep_seq(vport, seq_dmabuf);
  13501. if (!iocbq) {
  13502. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13503. "2707 Ring %d handler: Failed to allocate "
  13504. "iocb Rctl x%x Type x%x received\n",
  13505. LPFC_ELS_RING,
  13506. fc_hdr->fh_r_ctl, fc_hdr->fh_type);
  13507. return;
  13508. }
  13509. if (!lpfc_complete_unsol_iocb(phba,
  13510. &phba->sli.ring[LPFC_ELS_RING],
  13511. iocbq, fc_hdr->fh_r_ctl,
  13512. fc_hdr->fh_type))
  13513. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13514. "2540 Ring %d handler: unexpected Rctl "
  13515. "x%x Type x%x received\n",
  13516. LPFC_ELS_RING,
  13517. fc_hdr->fh_r_ctl, fc_hdr->fh_type);
  13518. /* Free iocb created in lpfc_prep_seq */
  13519. list_for_each_entry_safe(curr_iocb, next_iocb,
  13520. &iocbq->list, list) {
  13521. list_del_init(&curr_iocb->list);
  13522. lpfc_sli_release_iocbq(phba, curr_iocb);
  13523. }
  13524. lpfc_sli_release_iocbq(phba, iocbq);
  13525. }
  13526. /**
  13527. * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
  13528. * @phba: Pointer to HBA context object.
  13529. *
  13530. * This function is called with no lock held. This function processes all
  13531. * the received buffers and gives it to upper layers when a received buffer
  13532. * indicates that it is the final frame in the sequence. The interrupt
  13533. * service routine processes received buffers at interrupt contexts and adds
  13534. * received dma buffers to the rb_pend_list queue and signals the worker thread.
  13535. * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
  13536. * appropriate receive function when the final frame in a sequence is received.
  13537. **/
  13538. void
  13539. lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
  13540. struct hbq_dmabuf *dmabuf)
  13541. {
  13542. struct hbq_dmabuf *seq_dmabuf;
  13543. struct fc_frame_header *fc_hdr;
  13544. struct lpfc_vport *vport;
  13545. uint32_t fcfi;
  13546. uint32_t did;
  13547. /* Process each received buffer */
  13548. fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
  13549. /* check to see if this a valid type of frame */
  13550. if (lpfc_fc_frame_check(phba, fc_hdr)) {
  13551. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13552. return;
  13553. }
  13554. if ((bf_get(lpfc_cqe_code,
  13555. &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
  13556. fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
  13557. &dmabuf->cq_event.cqe.rcqe_cmpl);
  13558. else
  13559. fcfi = bf_get(lpfc_rcqe_fcf_id,
  13560. &dmabuf->cq_event.cqe.rcqe_cmpl);
  13561. vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
  13562. if (!vport) {
  13563. /* throw out the frame */
  13564. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13565. return;
  13566. }
  13567. /* d_id this frame is directed to */
  13568. did = sli4_did_from_fc_hdr(fc_hdr);
  13569. /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
  13570. if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
  13571. (did != Fabric_DID)) {
  13572. /*
  13573. * Throw out the frame if we are not pt2pt.
  13574. * The pt2pt protocol allows for discovery frames
  13575. * to be received without a registered VPI.
  13576. */
  13577. if (!(vport->fc_flag & FC_PT2PT) ||
  13578. (phba->link_state == LPFC_HBA_READY)) {
  13579. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13580. return;
  13581. }
  13582. }
  13583. /* Handle the basic abort sequence (BA_ABTS) event */
  13584. if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
  13585. lpfc_sli4_handle_unsol_abort(vport, dmabuf);
  13586. return;
  13587. }
  13588. /* Link this frame */
  13589. seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
  13590. if (!seq_dmabuf) {
  13591. /* unable to add frame to vport - throw it out */
  13592. lpfc_in_buf_free(phba, &dmabuf->dbuf);
  13593. return;
  13594. }
  13595. /* If not last frame in sequence continue processing frames. */
  13596. if (!lpfc_seq_complete(seq_dmabuf))
  13597. return;
  13598. /* Send the complete sequence to the upper layer protocol */
  13599. lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
  13600. }
  13601. /**
  13602. * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
  13603. * @phba: pointer to lpfc hba data structure.
  13604. *
  13605. * This routine is invoked to post rpi header templates to the
  13606. * HBA consistent with the SLI-4 interface spec. This routine
  13607. * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
  13608. * SLI4_PAGE_SIZE modulo 64 rpi context headers.
  13609. *
  13610. * This routine does not require any locks. It's usage is expected
  13611. * to be driver load or reset recovery when the driver is
  13612. * sequential.
  13613. *
  13614. * Return codes
  13615. * 0 - successful
  13616. * -EIO - The mailbox failed to complete successfully.
  13617. * When this error occurs, the driver is not guaranteed
  13618. * to have any rpi regions posted to the device and
  13619. * must either attempt to repost the regions or take a
  13620. * fatal error.
  13621. **/
  13622. int
  13623. lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
  13624. {
  13625. struct lpfc_rpi_hdr *rpi_page;
  13626. uint32_t rc = 0;
  13627. uint16_t lrpi = 0;
  13628. /* SLI4 ports that support extents do not require RPI headers. */
  13629. if (!phba->sli4_hba.rpi_hdrs_in_use)
  13630. goto exit;
  13631. if (phba->sli4_hba.extents_in_use)
  13632. return -EIO;
  13633. list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
  13634. /*
  13635. * Assign the rpi headers a physical rpi only if the driver
  13636. * has not initialized those resources. A port reset only
  13637. * needs the headers posted.
  13638. */
  13639. if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
  13640. LPFC_RPI_RSRC_RDY)
  13641. rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
  13642. rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
  13643. if (rc != MBX_SUCCESS) {
  13644. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13645. "2008 Error %d posting all rpi "
  13646. "headers\n", rc);
  13647. rc = -EIO;
  13648. break;
  13649. }
  13650. }
  13651. exit:
  13652. bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
  13653. LPFC_RPI_RSRC_RDY);
  13654. return rc;
  13655. }
  13656. /**
  13657. * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
  13658. * @phba: pointer to lpfc hba data structure.
  13659. * @rpi_page: pointer to the rpi memory region.
  13660. *
  13661. * This routine is invoked to post a single rpi header to the
  13662. * HBA consistent with the SLI-4 interface spec. This memory region
  13663. * maps up to 64 rpi context regions.
  13664. *
  13665. * Return codes
  13666. * 0 - successful
  13667. * -ENOMEM - No available memory
  13668. * -EIO - The mailbox failed to complete successfully.
  13669. **/
  13670. int
  13671. lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
  13672. {
  13673. LPFC_MBOXQ_t *mboxq;
  13674. struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
  13675. uint32_t rc = 0;
  13676. uint32_t shdr_status, shdr_add_status;
  13677. union lpfc_sli4_cfg_shdr *shdr;
  13678. /* SLI4 ports that support extents do not require RPI headers. */
  13679. if (!phba->sli4_hba.rpi_hdrs_in_use)
  13680. return rc;
  13681. if (phba->sli4_hba.extents_in_use)
  13682. return -EIO;
  13683. /* The port is notified of the header region via a mailbox command. */
  13684. mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  13685. if (!mboxq) {
  13686. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13687. "2001 Unable to allocate memory for issuing "
  13688. "SLI_CONFIG_SPECIAL mailbox command\n");
  13689. return -ENOMEM;
  13690. }
  13691. /* Post all rpi memory regions to the port. */
  13692. hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
  13693. lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
  13694. LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
  13695. sizeof(struct lpfc_mbx_post_hdr_tmpl) -
  13696. sizeof(struct lpfc_sli4_cfg_mhdr),
  13697. LPFC_SLI4_MBX_EMBED);
  13698. /* Post the physical rpi to the port for this rpi header. */
  13699. bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
  13700. rpi_page->start_rpi);
  13701. bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
  13702. hdr_tmpl, rpi_page->page_count);
  13703. hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
  13704. hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
  13705. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  13706. shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
  13707. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  13708. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  13709. if (rc != MBX_TIMEOUT)
  13710. mempool_free(mboxq, phba->mbox_mem_pool);
  13711. if (shdr_status || shdr_add_status || rc) {
  13712. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  13713. "2514 POST_RPI_HDR mailbox failed with "
  13714. "status x%x add_status x%x, mbx status x%x\n",
  13715. shdr_status, shdr_add_status, rc);
  13716. rc = -ENXIO;
  13717. }
  13718. return rc;
  13719. }
  13720. /**
  13721. * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
  13722. * @phba: pointer to lpfc hba data structure.
  13723. *
  13724. * This routine is invoked to post rpi header templates to the
  13725. * HBA consistent with the SLI-4 interface spec. This routine
  13726. * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
  13727. * SLI4_PAGE_SIZE modulo 64 rpi context headers.
  13728. *
  13729. * Returns
  13730. * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
  13731. * LPFC_RPI_ALLOC_ERROR if no rpis are available.
  13732. **/
  13733. int
  13734. lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
  13735. {
  13736. unsigned long rpi;
  13737. uint16_t max_rpi, rpi_limit;
  13738. uint16_t rpi_remaining, lrpi = 0;
  13739. struct lpfc_rpi_hdr *rpi_hdr;
  13740. max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
  13741. rpi_limit = phba->sli4_hba.next_rpi;
  13742. /*
  13743. * Fetch the next logical rpi. Because this index is logical,
  13744. * the driver starts at 0 each time.
  13745. */
  13746. spin_lock_irq(&phba->hbalock);
  13747. rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
  13748. if (rpi >= rpi_limit)
  13749. rpi = LPFC_RPI_ALLOC_ERROR;
  13750. else {
  13751. set_bit(rpi, phba->sli4_hba.rpi_bmask);
  13752. phba->sli4_hba.max_cfg_param.rpi_used++;
  13753. phba->sli4_hba.rpi_count++;
  13754. }
  13755. /*
  13756. * Don't try to allocate more rpi header regions if the device limit
  13757. * has been exhausted.
  13758. */
  13759. if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
  13760. (phba->sli4_hba.rpi_count >= max_rpi)) {
  13761. spin_unlock_irq(&phba->hbalock);
  13762. return rpi;
  13763. }
  13764. /*
  13765. * RPI header postings are not required for SLI4 ports capable of
  13766. * extents.
  13767. */
  13768. if (!phba->sli4_hba.rpi_hdrs_in_use) {
  13769. spin_unlock_irq(&phba->hbalock);
  13770. return rpi;
  13771. }
  13772. /*
  13773. * If the driver is running low on rpi resources, allocate another
  13774. * page now. Note that the next_rpi value is used because
  13775. * it represents how many are actually in use whereas max_rpi notes
  13776. * how many are supported max by the device.
  13777. */
  13778. rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
  13779. spin_unlock_irq(&phba->hbalock);
  13780. if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
  13781. rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
  13782. if (!rpi_hdr) {
  13783. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13784. "2002 Error Could not grow rpi "
  13785. "count\n");
  13786. } else {
  13787. lrpi = rpi_hdr->start_rpi;
  13788. rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
  13789. lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
  13790. }
  13791. }
  13792. return rpi;
  13793. }
  13794. /**
  13795. * lpfc_sli4_free_rpi - Release an rpi for reuse.
  13796. * @phba: pointer to lpfc hba data structure.
  13797. *
  13798. * This routine is invoked to release an rpi to the pool of
  13799. * available rpis maintained by the driver.
  13800. **/
  13801. void
  13802. __lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
  13803. {
  13804. if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
  13805. phba->sli4_hba.rpi_count--;
  13806. phba->sli4_hba.max_cfg_param.rpi_used--;
  13807. }
  13808. }
  13809. /**
  13810. * lpfc_sli4_free_rpi - Release an rpi for reuse.
  13811. * @phba: pointer to lpfc hba data structure.
  13812. *
  13813. * This routine is invoked to release an rpi to the pool of
  13814. * available rpis maintained by the driver.
  13815. **/
  13816. void
  13817. lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
  13818. {
  13819. spin_lock_irq(&phba->hbalock);
  13820. __lpfc_sli4_free_rpi(phba, rpi);
  13821. spin_unlock_irq(&phba->hbalock);
  13822. }
  13823. /**
  13824. * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
  13825. * @phba: pointer to lpfc hba data structure.
  13826. *
  13827. * This routine is invoked to remove the memory region that
  13828. * provided rpi via a bitmask.
  13829. **/
  13830. void
  13831. lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
  13832. {
  13833. kfree(phba->sli4_hba.rpi_bmask);
  13834. kfree(phba->sli4_hba.rpi_ids);
  13835. bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
  13836. }
  13837. /**
  13838. * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
  13839. * @phba: pointer to lpfc hba data structure.
  13840. *
  13841. * This routine is invoked to remove the memory region that
  13842. * provided rpi via a bitmask.
  13843. **/
  13844. int
  13845. lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
  13846. void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
  13847. {
  13848. LPFC_MBOXQ_t *mboxq;
  13849. struct lpfc_hba *phba = ndlp->phba;
  13850. int rc;
  13851. /* The port is notified of the header region via a mailbox command. */
  13852. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  13853. if (!mboxq)
  13854. return -ENOMEM;
  13855. /* Post all rpi memory regions to the port. */
  13856. lpfc_resume_rpi(mboxq, ndlp);
  13857. if (cmpl) {
  13858. mboxq->mbox_cmpl = cmpl;
  13859. mboxq->context1 = arg;
  13860. mboxq->context2 = ndlp;
  13861. } else
  13862. mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  13863. mboxq->vport = ndlp->vport;
  13864. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  13865. if (rc == MBX_NOT_FINISHED) {
  13866. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  13867. "2010 Resume RPI Mailbox failed "
  13868. "status %d, mbxStatus x%x\n", rc,
  13869. bf_get(lpfc_mqe_status, &mboxq->u.mqe));
  13870. mempool_free(mboxq, phba->mbox_mem_pool);
  13871. return -EIO;
  13872. }
  13873. return 0;
  13874. }
  13875. /**
  13876. * lpfc_sli4_init_vpi - Initialize a vpi with the port
  13877. * @vport: Pointer to the vport for which the vpi is being initialized
  13878. *
  13879. * This routine is invoked to activate a vpi with the port.
  13880. *
  13881. * Returns:
  13882. * 0 success
  13883. * -Evalue otherwise
  13884. **/
  13885. int
  13886. lpfc_sli4_init_vpi(struct lpfc_vport *vport)
  13887. {
  13888. LPFC_MBOXQ_t *mboxq;
  13889. int rc = 0;
  13890. int retval = MBX_SUCCESS;
  13891. uint32_t mbox_tmo;
  13892. struct lpfc_hba *phba = vport->phba;
  13893. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  13894. if (!mboxq)
  13895. return -ENOMEM;
  13896. lpfc_init_vpi(phba, mboxq, vport->vpi);
  13897. mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
  13898. rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
  13899. if (rc != MBX_SUCCESS) {
  13900. lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
  13901. "2022 INIT VPI Mailbox failed "
  13902. "status %d, mbxStatus x%x\n", rc,
  13903. bf_get(lpfc_mqe_status, &mboxq->u.mqe));
  13904. retval = -EIO;
  13905. }
  13906. if (rc != MBX_TIMEOUT)
  13907. mempool_free(mboxq, vport->phba->mbox_mem_pool);
  13908. return retval;
  13909. }
  13910. /**
  13911. * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
  13912. * @phba: pointer to lpfc hba data structure.
  13913. * @mboxq: Pointer to mailbox object.
  13914. *
  13915. * This routine is invoked to manually add a single FCF record. The caller
  13916. * must pass a completely initialized FCF_Record. This routine takes
  13917. * care of the nonembedded mailbox operations.
  13918. **/
  13919. static void
  13920. lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
  13921. {
  13922. void *virt_addr;
  13923. union lpfc_sli4_cfg_shdr *shdr;
  13924. uint32_t shdr_status, shdr_add_status;
  13925. virt_addr = mboxq->sge_array->addr[0];
  13926. /* The IOCTL status is embedded in the mailbox subheader. */
  13927. shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
  13928. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  13929. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  13930. if ((shdr_status || shdr_add_status) &&
  13931. (shdr_status != STATUS_FCF_IN_USE))
  13932. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  13933. "2558 ADD_FCF_RECORD mailbox failed with "
  13934. "status x%x add_status x%x\n",
  13935. shdr_status, shdr_add_status);
  13936. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  13937. }
  13938. /**
  13939. * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
  13940. * @phba: pointer to lpfc hba data structure.
  13941. * @fcf_record: pointer to the initialized fcf record to add.
  13942. *
  13943. * This routine is invoked to manually add a single FCF record. The caller
  13944. * must pass a completely initialized FCF_Record. This routine takes
  13945. * care of the nonembedded mailbox operations.
  13946. **/
  13947. int
  13948. lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
  13949. {
  13950. int rc = 0;
  13951. LPFC_MBOXQ_t *mboxq;
  13952. uint8_t *bytep;
  13953. void *virt_addr;
  13954. dma_addr_t phys_addr;
  13955. struct lpfc_mbx_sge sge;
  13956. uint32_t alloc_len, req_len;
  13957. uint32_t fcfindex;
  13958. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  13959. if (!mboxq) {
  13960. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  13961. "2009 Failed to allocate mbox for ADD_FCF cmd\n");
  13962. return -ENOMEM;
  13963. }
  13964. req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
  13965. sizeof(uint32_t);
  13966. /* Allocate DMA memory and set up the non-embedded mailbox command */
  13967. alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
  13968. LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
  13969. req_len, LPFC_SLI4_MBX_NEMBED);
  13970. if (alloc_len < req_len) {
  13971. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  13972. "2523 Allocated DMA memory size (x%x) is "
  13973. "less than the requested DMA memory "
  13974. "size (x%x)\n", alloc_len, req_len);
  13975. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  13976. return -ENOMEM;
  13977. }
  13978. /*
  13979. * Get the first SGE entry from the non-embedded DMA memory. This
  13980. * routine only uses a single SGE.
  13981. */
  13982. lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
  13983. phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
  13984. virt_addr = mboxq->sge_array->addr[0];
  13985. /*
  13986. * Configure the FCF record for FCFI 0. This is the driver's
  13987. * hardcoded default and gets used in nonFIP mode.
  13988. */
  13989. fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
  13990. bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
  13991. lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
  13992. /*
  13993. * Copy the fcf_index and the FCF Record Data. The data starts after
  13994. * the FCoE header plus word10. The data copy needs to be endian
  13995. * correct.
  13996. */
  13997. bytep += sizeof(uint32_t);
  13998. lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
  13999. mboxq->vport = phba->pport;
  14000. mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
  14001. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14002. if (rc == MBX_NOT_FINISHED) {
  14003. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14004. "2515 ADD_FCF_RECORD mailbox failed with "
  14005. "status 0x%x\n", rc);
  14006. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14007. rc = -EIO;
  14008. } else
  14009. rc = 0;
  14010. return rc;
  14011. }
  14012. /**
  14013. * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
  14014. * @phba: pointer to lpfc hba data structure.
  14015. * @fcf_record: pointer to the fcf record to write the default data.
  14016. * @fcf_index: FCF table entry index.
  14017. *
  14018. * This routine is invoked to build the driver's default FCF record. The
  14019. * values used are hardcoded. This routine handles memory initialization.
  14020. *
  14021. **/
  14022. void
  14023. lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
  14024. struct fcf_record *fcf_record,
  14025. uint16_t fcf_index)
  14026. {
  14027. memset(fcf_record, 0, sizeof(struct fcf_record));
  14028. fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
  14029. fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
  14030. fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
  14031. bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
  14032. bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
  14033. bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
  14034. bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
  14035. bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
  14036. bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
  14037. bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
  14038. bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
  14039. bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
  14040. bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
  14041. bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
  14042. bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
  14043. bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
  14044. LPFC_FCF_FPMA | LPFC_FCF_SPMA);
  14045. /* Set the VLAN bit map */
  14046. if (phba->valid_vlan) {
  14047. fcf_record->vlan_bitmap[phba->vlan_id / 8]
  14048. = 1 << (phba->vlan_id % 8);
  14049. }
  14050. }
  14051. /**
  14052. * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
  14053. * @phba: pointer to lpfc hba data structure.
  14054. * @fcf_index: FCF table entry offset.
  14055. *
  14056. * This routine is invoked to scan the entire FCF table by reading FCF
  14057. * record and processing it one at a time starting from the @fcf_index
  14058. * for initial FCF discovery or fast FCF failover rediscovery.
  14059. *
  14060. * Return 0 if the mailbox command is submitted successfully, none 0
  14061. * otherwise.
  14062. **/
  14063. int
  14064. lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
  14065. {
  14066. int rc = 0, error;
  14067. LPFC_MBOXQ_t *mboxq;
  14068. phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
  14069. phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
  14070. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14071. if (!mboxq) {
  14072. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14073. "2000 Failed to allocate mbox for "
  14074. "READ_FCF cmd\n");
  14075. error = -ENOMEM;
  14076. goto fail_fcf_scan;
  14077. }
  14078. /* Construct the read FCF record mailbox command */
  14079. rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
  14080. if (rc) {
  14081. error = -EINVAL;
  14082. goto fail_fcf_scan;
  14083. }
  14084. /* Issue the mailbox command asynchronously */
  14085. mboxq->vport = phba->pport;
  14086. mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
  14087. spin_lock_irq(&phba->hbalock);
  14088. phba->hba_flag |= FCF_TS_INPROG;
  14089. spin_unlock_irq(&phba->hbalock);
  14090. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14091. if (rc == MBX_NOT_FINISHED)
  14092. error = -EIO;
  14093. else {
  14094. /* Reset eligible FCF count for new scan */
  14095. if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
  14096. phba->fcf.eligible_fcf_cnt = 0;
  14097. error = 0;
  14098. }
  14099. fail_fcf_scan:
  14100. if (error) {
  14101. if (mboxq)
  14102. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14103. /* FCF scan failed, clear FCF_TS_INPROG flag */
  14104. spin_lock_irq(&phba->hbalock);
  14105. phba->hba_flag &= ~FCF_TS_INPROG;
  14106. spin_unlock_irq(&phba->hbalock);
  14107. }
  14108. return error;
  14109. }
  14110. /**
  14111. * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
  14112. * @phba: pointer to lpfc hba data structure.
  14113. * @fcf_index: FCF table entry offset.
  14114. *
  14115. * This routine is invoked to read an FCF record indicated by @fcf_index
  14116. * and to use it for FLOGI roundrobin FCF failover.
  14117. *
  14118. * Return 0 if the mailbox command is submitted successfully, none 0
  14119. * otherwise.
  14120. **/
  14121. int
  14122. lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
  14123. {
  14124. int rc = 0, error;
  14125. LPFC_MBOXQ_t *mboxq;
  14126. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14127. if (!mboxq) {
  14128. lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
  14129. "2763 Failed to allocate mbox for "
  14130. "READ_FCF cmd\n");
  14131. error = -ENOMEM;
  14132. goto fail_fcf_read;
  14133. }
  14134. /* Construct the read FCF record mailbox command */
  14135. rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
  14136. if (rc) {
  14137. error = -EINVAL;
  14138. goto fail_fcf_read;
  14139. }
  14140. /* Issue the mailbox command asynchronously */
  14141. mboxq->vport = phba->pport;
  14142. mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
  14143. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14144. if (rc == MBX_NOT_FINISHED)
  14145. error = -EIO;
  14146. else
  14147. error = 0;
  14148. fail_fcf_read:
  14149. if (error && mboxq)
  14150. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14151. return error;
  14152. }
  14153. /**
  14154. * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
  14155. * @phba: pointer to lpfc hba data structure.
  14156. * @fcf_index: FCF table entry offset.
  14157. *
  14158. * This routine is invoked to read an FCF record indicated by @fcf_index to
  14159. * determine whether it's eligible for FLOGI roundrobin failover list.
  14160. *
  14161. * Return 0 if the mailbox command is submitted successfully, none 0
  14162. * otherwise.
  14163. **/
  14164. int
  14165. lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
  14166. {
  14167. int rc = 0, error;
  14168. LPFC_MBOXQ_t *mboxq;
  14169. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14170. if (!mboxq) {
  14171. lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
  14172. "2758 Failed to allocate mbox for "
  14173. "READ_FCF cmd\n");
  14174. error = -ENOMEM;
  14175. goto fail_fcf_read;
  14176. }
  14177. /* Construct the read FCF record mailbox command */
  14178. rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
  14179. if (rc) {
  14180. error = -EINVAL;
  14181. goto fail_fcf_read;
  14182. }
  14183. /* Issue the mailbox command asynchronously */
  14184. mboxq->vport = phba->pport;
  14185. mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
  14186. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
  14187. if (rc == MBX_NOT_FINISHED)
  14188. error = -EIO;
  14189. else
  14190. error = 0;
  14191. fail_fcf_read:
  14192. if (error && mboxq)
  14193. lpfc_sli4_mbox_cmd_free(phba, mboxq);
  14194. return error;
  14195. }
  14196. /**
  14197. * lpfc_check_next_fcf_pri
  14198. * phba pointer to the lpfc_hba struct for this port.
  14199. * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
  14200. * routine when the rr_bmask is empty. The FCF indecies are put into the
  14201. * rr_bmask based on their priority level. Starting from the highest priority
  14202. * to the lowest. The most likely FCF candidate will be in the highest
  14203. * priority group. When this routine is called it searches the fcf_pri list for
  14204. * next lowest priority group and repopulates the rr_bmask with only those
  14205. * fcf_indexes.
  14206. * returns:
  14207. * 1=success 0=failure
  14208. **/
  14209. int
  14210. lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
  14211. {
  14212. uint16_t next_fcf_pri;
  14213. uint16_t last_index;
  14214. struct lpfc_fcf_pri *fcf_pri;
  14215. int rc;
  14216. int ret = 0;
  14217. last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
  14218. LPFC_SLI4_FCF_TBL_INDX_MAX);
  14219. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14220. "3060 Last IDX %d\n", last_index);
  14221. /* Verify the priority list has 2 or more entries */
  14222. spin_lock_irq(&phba->hbalock);
  14223. if (list_empty(&phba->fcf.fcf_pri_list) ||
  14224. list_is_singular(&phba->fcf.fcf_pri_list)) {
  14225. spin_unlock_irq(&phba->hbalock);
  14226. lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
  14227. "3061 Last IDX %d\n", last_index);
  14228. return 0; /* Empty rr list */
  14229. }
  14230. spin_unlock_irq(&phba->hbalock);
  14231. next_fcf_pri = 0;
  14232. /*
  14233. * Clear the rr_bmask and set all of the bits that are at this
  14234. * priority.
  14235. */
  14236. memset(phba->fcf.fcf_rr_bmask, 0,
  14237. sizeof(*phba->fcf.fcf_rr_bmask));
  14238. spin_lock_irq(&phba->hbalock);
  14239. list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
  14240. if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
  14241. continue;
  14242. /*
  14243. * the 1st priority that has not FLOGI failed
  14244. * will be the highest.
  14245. */
  14246. if (!next_fcf_pri)
  14247. next_fcf_pri = fcf_pri->fcf_rec.priority;
  14248. spin_unlock_irq(&phba->hbalock);
  14249. if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
  14250. rc = lpfc_sli4_fcf_rr_index_set(phba,
  14251. fcf_pri->fcf_rec.fcf_index);
  14252. if (rc)
  14253. return 0;
  14254. }
  14255. spin_lock_irq(&phba->hbalock);
  14256. }
  14257. /*
  14258. * if next_fcf_pri was not set above and the list is not empty then
  14259. * we have failed flogis on all of them. So reset flogi failed
  14260. * and start at the beginning.
  14261. */
  14262. if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
  14263. list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
  14264. fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
  14265. /*
  14266. * the 1st priority that has not FLOGI failed
  14267. * will be the highest.
  14268. */
  14269. if (!next_fcf_pri)
  14270. next_fcf_pri = fcf_pri->fcf_rec.priority;
  14271. spin_unlock_irq(&phba->hbalock);
  14272. if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
  14273. rc = lpfc_sli4_fcf_rr_index_set(phba,
  14274. fcf_pri->fcf_rec.fcf_index);
  14275. if (rc)
  14276. return 0;
  14277. }
  14278. spin_lock_irq(&phba->hbalock);
  14279. }
  14280. } else
  14281. ret = 1;
  14282. spin_unlock_irq(&phba->hbalock);
  14283. return ret;
  14284. }
  14285. /**
  14286. * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
  14287. * @phba: pointer to lpfc hba data structure.
  14288. *
  14289. * This routine is to get the next eligible FCF record index in a round
  14290. * robin fashion. If the next eligible FCF record index equals to the
  14291. * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
  14292. * shall be returned, otherwise, the next eligible FCF record's index
  14293. * shall be returned.
  14294. **/
  14295. uint16_t
  14296. lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
  14297. {
  14298. uint16_t next_fcf_index;
  14299. initial_priority:
  14300. /* Search start from next bit of currently registered FCF index */
  14301. next_fcf_index = phba->fcf.current_rec.fcf_indx;
  14302. next_priority:
  14303. /* Determine the next fcf index to check */
  14304. next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
  14305. next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
  14306. LPFC_SLI4_FCF_TBL_INDX_MAX,
  14307. next_fcf_index);
  14308. /* Wrap around condition on phba->fcf.fcf_rr_bmask */
  14309. if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
  14310. /*
  14311. * If we have wrapped then we need to clear the bits that
  14312. * have been tested so that we can detect when we should
  14313. * change the priority level.
  14314. */
  14315. next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
  14316. LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
  14317. }
  14318. /* Check roundrobin failover list empty condition */
  14319. if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
  14320. next_fcf_index == phba->fcf.current_rec.fcf_indx) {
  14321. /*
  14322. * If next fcf index is not found check if there are lower
  14323. * Priority level fcf's in the fcf_priority list.
  14324. * Set up the rr_bmask with all of the avaiable fcf bits
  14325. * at that level and continue the selection process.
  14326. */
  14327. if (lpfc_check_next_fcf_pri_level(phba))
  14328. goto initial_priority;
  14329. lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
  14330. "2844 No roundrobin failover FCF available\n");
  14331. if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX)
  14332. return LPFC_FCOE_FCF_NEXT_NONE;
  14333. else {
  14334. lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
  14335. "3063 Only FCF available idx %d, flag %x\n",
  14336. next_fcf_index,
  14337. phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag);
  14338. return next_fcf_index;
  14339. }
  14340. }
  14341. if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
  14342. phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
  14343. LPFC_FCF_FLOGI_FAILED)
  14344. goto next_priority;
  14345. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14346. "2845 Get next roundrobin failover FCF (x%x)\n",
  14347. next_fcf_index);
  14348. return next_fcf_index;
  14349. }
  14350. /**
  14351. * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
  14352. * @phba: pointer to lpfc hba data structure.
  14353. *
  14354. * This routine sets the FCF record index in to the eligible bmask for
  14355. * roundrobin failover search. It checks to make sure that the index
  14356. * does not go beyond the range of the driver allocated bmask dimension
  14357. * before setting the bit.
  14358. *
  14359. * Returns 0 if the index bit successfully set, otherwise, it returns
  14360. * -EINVAL.
  14361. **/
  14362. int
  14363. lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
  14364. {
  14365. if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
  14366. lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
  14367. "2610 FCF (x%x) reached driver's book "
  14368. "keeping dimension:x%x\n",
  14369. fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
  14370. return -EINVAL;
  14371. }
  14372. /* Set the eligible FCF record index bmask */
  14373. set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
  14374. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14375. "2790 Set FCF (x%x) to roundrobin FCF failover "
  14376. "bmask\n", fcf_index);
  14377. return 0;
  14378. }
  14379. /**
  14380. * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
  14381. * @phba: pointer to lpfc hba data structure.
  14382. *
  14383. * This routine clears the FCF record index from the eligible bmask for
  14384. * roundrobin failover search. It checks to make sure that the index
  14385. * does not go beyond the range of the driver allocated bmask dimension
  14386. * before clearing the bit.
  14387. **/
  14388. void
  14389. lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
  14390. {
  14391. struct lpfc_fcf_pri *fcf_pri;
  14392. if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
  14393. lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
  14394. "2762 FCF (x%x) reached driver's book "
  14395. "keeping dimension:x%x\n",
  14396. fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
  14397. return;
  14398. }
  14399. /* Clear the eligible FCF record index bmask */
  14400. spin_lock_irq(&phba->hbalock);
  14401. list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
  14402. if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
  14403. list_del_init(&fcf_pri->list);
  14404. break;
  14405. }
  14406. }
  14407. spin_unlock_irq(&phba->hbalock);
  14408. clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
  14409. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14410. "2791 Clear FCF (x%x) from roundrobin failover "
  14411. "bmask\n", fcf_index);
  14412. }
  14413. /**
  14414. * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
  14415. * @phba: pointer to lpfc hba data structure.
  14416. *
  14417. * This routine is the completion routine for the rediscover FCF table mailbox
  14418. * command. If the mailbox command returned failure, it will try to stop the
  14419. * FCF rediscover wait timer.
  14420. **/
  14421. void
  14422. lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
  14423. {
  14424. struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
  14425. uint32_t shdr_status, shdr_add_status;
  14426. redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
  14427. shdr_status = bf_get(lpfc_mbox_hdr_status,
  14428. &redisc_fcf->header.cfg_shdr.response);
  14429. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
  14430. &redisc_fcf->header.cfg_shdr.response);
  14431. if (shdr_status || shdr_add_status) {
  14432. lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
  14433. "2746 Requesting for FCF rediscovery failed "
  14434. "status x%x add_status x%x\n",
  14435. shdr_status, shdr_add_status);
  14436. if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
  14437. spin_lock_irq(&phba->hbalock);
  14438. phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
  14439. spin_unlock_irq(&phba->hbalock);
  14440. /*
  14441. * CVL event triggered FCF rediscover request failed,
  14442. * last resort to re-try current registered FCF entry.
  14443. */
  14444. lpfc_retry_pport_discovery(phba);
  14445. } else {
  14446. spin_lock_irq(&phba->hbalock);
  14447. phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
  14448. spin_unlock_irq(&phba->hbalock);
  14449. /*
  14450. * DEAD FCF event triggered FCF rediscover request
  14451. * failed, last resort to fail over as a link down
  14452. * to FCF registration.
  14453. */
  14454. lpfc_sli4_fcf_dead_failthrough(phba);
  14455. }
  14456. } else {
  14457. lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
  14458. "2775 Start FCF rediscover quiescent timer\n");
  14459. /*
  14460. * Start FCF rediscovery wait timer for pending FCF
  14461. * before rescan FCF record table.
  14462. */
  14463. lpfc_fcf_redisc_wait_start_timer(phba);
  14464. }
  14465. mempool_free(mbox, phba->mbox_mem_pool);
  14466. }
  14467. /**
  14468. * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
  14469. * @phba: pointer to lpfc hba data structure.
  14470. *
  14471. * This routine is invoked to request for rediscovery of the entire FCF table
  14472. * by the port.
  14473. **/
  14474. int
  14475. lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
  14476. {
  14477. LPFC_MBOXQ_t *mbox;
  14478. struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
  14479. int rc, length;
  14480. /* Cancel retry delay timers to all vports before FCF rediscover */
  14481. lpfc_cancel_all_vport_retry_delay_timer(phba);
  14482. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14483. if (!mbox) {
  14484. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  14485. "2745 Failed to allocate mbox for "
  14486. "requesting FCF rediscover.\n");
  14487. return -ENOMEM;
  14488. }
  14489. length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
  14490. sizeof(struct lpfc_sli4_cfg_mhdr));
  14491. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
  14492. LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
  14493. length, LPFC_SLI4_MBX_EMBED);
  14494. redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
  14495. /* Set count to 0 for invalidating the entire FCF database */
  14496. bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
  14497. /* Issue the mailbox command asynchronously */
  14498. mbox->vport = phba->pport;
  14499. mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
  14500. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
  14501. if (rc == MBX_NOT_FINISHED) {
  14502. mempool_free(mbox, phba->mbox_mem_pool);
  14503. return -EIO;
  14504. }
  14505. return 0;
  14506. }
  14507. /**
  14508. * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
  14509. * @phba: pointer to lpfc hba data structure.
  14510. *
  14511. * This function is the failover routine as a last resort to the FCF DEAD
  14512. * event when driver failed to perform fast FCF failover.
  14513. **/
  14514. void
  14515. lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
  14516. {
  14517. uint32_t link_state;
  14518. /*
  14519. * Last resort as FCF DEAD event failover will treat this as
  14520. * a link down, but save the link state because we don't want
  14521. * it to be changed to Link Down unless it is already down.
  14522. */
  14523. link_state = phba->link_state;
  14524. lpfc_linkdown(phba);
  14525. phba->link_state = link_state;
  14526. /* Unregister FCF if no devices connected to it */
  14527. lpfc_unregister_unused_fcf(phba);
  14528. }
  14529. /**
  14530. * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
  14531. * @phba: pointer to lpfc hba data structure.
  14532. * @rgn23_data: pointer to configure region 23 data.
  14533. *
  14534. * This function gets SLI3 port configure region 23 data through memory dump
  14535. * mailbox command. When it successfully retrieves data, the size of the data
  14536. * will be returned, otherwise, 0 will be returned.
  14537. **/
  14538. static uint32_t
  14539. lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
  14540. {
  14541. LPFC_MBOXQ_t *pmb = NULL;
  14542. MAILBOX_t *mb;
  14543. uint32_t offset = 0;
  14544. int rc;
  14545. if (!rgn23_data)
  14546. return 0;
  14547. pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14548. if (!pmb) {
  14549. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14550. "2600 failed to allocate mailbox memory\n");
  14551. return 0;
  14552. }
  14553. mb = &pmb->u.mb;
  14554. do {
  14555. lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
  14556. rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
  14557. if (rc != MBX_SUCCESS) {
  14558. lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
  14559. "2601 failed to read config "
  14560. "region 23, rc 0x%x Status 0x%x\n",
  14561. rc, mb->mbxStatus);
  14562. mb->un.varDmp.word_cnt = 0;
  14563. }
  14564. /*
  14565. * dump mem may return a zero when finished or we got a
  14566. * mailbox error, either way we are done.
  14567. */
  14568. if (mb->un.varDmp.word_cnt == 0)
  14569. break;
  14570. if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
  14571. mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
  14572. lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
  14573. rgn23_data + offset,
  14574. mb->un.varDmp.word_cnt);
  14575. offset += mb->un.varDmp.word_cnt;
  14576. } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
  14577. mempool_free(pmb, phba->mbox_mem_pool);
  14578. return offset;
  14579. }
  14580. /**
  14581. * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
  14582. * @phba: pointer to lpfc hba data structure.
  14583. * @rgn23_data: pointer to configure region 23 data.
  14584. *
  14585. * This function gets SLI4 port configure region 23 data through memory dump
  14586. * mailbox command. When it successfully retrieves data, the size of the data
  14587. * will be returned, otherwise, 0 will be returned.
  14588. **/
  14589. static uint32_t
  14590. lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
  14591. {
  14592. LPFC_MBOXQ_t *mboxq = NULL;
  14593. struct lpfc_dmabuf *mp = NULL;
  14594. struct lpfc_mqe *mqe;
  14595. uint32_t data_length = 0;
  14596. int rc;
  14597. if (!rgn23_data)
  14598. return 0;
  14599. mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14600. if (!mboxq) {
  14601. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14602. "3105 failed to allocate mailbox memory\n");
  14603. return 0;
  14604. }
  14605. if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
  14606. goto out;
  14607. mqe = &mboxq->u.mqe;
  14608. mp = (struct lpfc_dmabuf *) mboxq->context1;
  14609. rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
  14610. if (rc)
  14611. goto out;
  14612. data_length = mqe->un.mb_words[5];
  14613. if (data_length == 0)
  14614. goto out;
  14615. if (data_length > DMP_RGN23_SIZE) {
  14616. data_length = 0;
  14617. goto out;
  14618. }
  14619. lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
  14620. out:
  14621. mempool_free(mboxq, phba->mbox_mem_pool);
  14622. if (mp) {
  14623. lpfc_mbuf_free(phba, mp->virt, mp->phys);
  14624. kfree(mp);
  14625. }
  14626. return data_length;
  14627. }
  14628. /**
  14629. * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
  14630. * @phba: pointer to lpfc hba data structure.
  14631. *
  14632. * This function read region 23 and parse TLV for port status to
  14633. * decide if the user disaled the port. If the TLV indicates the
  14634. * port is disabled, the hba_flag is set accordingly.
  14635. **/
  14636. void
  14637. lpfc_sli_read_link_ste(struct lpfc_hba *phba)
  14638. {
  14639. uint8_t *rgn23_data = NULL;
  14640. uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
  14641. uint32_t offset = 0;
  14642. /* Get adapter Region 23 data */
  14643. rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
  14644. if (!rgn23_data)
  14645. goto out;
  14646. if (phba->sli_rev < LPFC_SLI_REV4)
  14647. data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
  14648. else {
  14649. if_type = bf_get(lpfc_sli_intf_if_type,
  14650. &phba->sli4_hba.sli_intf);
  14651. if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
  14652. goto out;
  14653. data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
  14654. }
  14655. if (!data_size)
  14656. goto out;
  14657. /* Check the region signature first */
  14658. if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
  14659. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14660. "2619 Config region 23 has bad signature\n");
  14661. goto out;
  14662. }
  14663. offset += 4;
  14664. /* Check the data structure version */
  14665. if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
  14666. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14667. "2620 Config region 23 has bad version\n");
  14668. goto out;
  14669. }
  14670. offset += 4;
  14671. /* Parse TLV entries in the region */
  14672. while (offset < data_size) {
  14673. if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
  14674. break;
  14675. /*
  14676. * If the TLV is not driver specific TLV or driver id is
  14677. * not linux driver id, skip the record.
  14678. */
  14679. if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
  14680. (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
  14681. (rgn23_data[offset + 3] != 0)) {
  14682. offset += rgn23_data[offset + 1] * 4 + 4;
  14683. continue;
  14684. }
  14685. /* Driver found a driver specific TLV in the config region */
  14686. sub_tlv_len = rgn23_data[offset + 1] * 4;
  14687. offset += 4;
  14688. tlv_offset = 0;
  14689. /*
  14690. * Search for configured port state sub-TLV.
  14691. */
  14692. while ((offset < data_size) &&
  14693. (tlv_offset < sub_tlv_len)) {
  14694. if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
  14695. offset += 4;
  14696. tlv_offset += 4;
  14697. break;
  14698. }
  14699. if (rgn23_data[offset] != PORT_STE_TYPE) {
  14700. offset += rgn23_data[offset + 1] * 4 + 4;
  14701. tlv_offset += rgn23_data[offset + 1] * 4 + 4;
  14702. continue;
  14703. }
  14704. /* This HBA contains PORT_STE configured */
  14705. if (!rgn23_data[offset + 2])
  14706. phba->hba_flag |= LINK_DISABLED;
  14707. goto out;
  14708. }
  14709. }
  14710. out:
  14711. kfree(rgn23_data);
  14712. return;
  14713. }
  14714. /**
  14715. * lpfc_wr_object - write an object to the firmware
  14716. * @phba: HBA structure that indicates port to create a queue on.
  14717. * @dmabuf_list: list of dmabufs to write to the port.
  14718. * @size: the total byte value of the objects to write to the port.
  14719. * @offset: the current offset to be used to start the transfer.
  14720. *
  14721. * This routine will create a wr_object mailbox command to send to the port.
  14722. * the mailbox command will be constructed using the dma buffers described in
  14723. * @dmabuf_list to create a list of BDEs. This routine will fill in as many
  14724. * BDEs that the imbedded mailbox can support. The @offset variable will be
  14725. * used to indicate the starting offset of the transfer and will also return
  14726. * the offset after the write object mailbox has completed. @size is used to
  14727. * determine the end of the object and whether the eof bit should be set.
  14728. *
  14729. * Return 0 is successful and offset will contain the the new offset to use
  14730. * for the next write.
  14731. * Return negative value for error cases.
  14732. **/
  14733. int
  14734. lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
  14735. uint32_t size, uint32_t *offset)
  14736. {
  14737. struct lpfc_mbx_wr_object *wr_object;
  14738. LPFC_MBOXQ_t *mbox;
  14739. int rc = 0, i = 0;
  14740. uint32_t shdr_status, shdr_add_status;
  14741. uint32_t mbox_tmo;
  14742. union lpfc_sli4_cfg_shdr *shdr;
  14743. struct lpfc_dmabuf *dmabuf;
  14744. uint32_t written = 0;
  14745. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  14746. if (!mbox)
  14747. return -ENOMEM;
  14748. lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
  14749. LPFC_MBOX_OPCODE_WRITE_OBJECT,
  14750. sizeof(struct lpfc_mbx_wr_object) -
  14751. sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
  14752. wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
  14753. wr_object->u.request.write_offset = *offset;
  14754. sprintf((uint8_t *)wr_object->u.request.object_name, "/");
  14755. wr_object->u.request.object_name[0] =
  14756. cpu_to_le32(wr_object->u.request.object_name[0]);
  14757. bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
  14758. list_for_each_entry(dmabuf, dmabuf_list, list) {
  14759. if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
  14760. break;
  14761. wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
  14762. wr_object->u.request.bde[i].addrHigh =
  14763. putPaddrHigh(dmabuf->phys);
  14764. if (written + SLI4_PAGE_SIZE >= size) {
  14765. wr_object->u.request.bde[i].tus.f.bdeSize =
  14766. (size - written);
  14767. written += (size - written);
  14768. bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
  14769. } else {
  14770. wr_object->u.request.bde[i].tus.f.bdeSize =
  14771. SLI4_PAGE_SIZE;
  14772. written += SLI4_PAGE_SIZE;
  14773. }
  14774. i++;
  14775. }
  14776. wr_object->u.request.bde_count = i;
  14777. bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
  14778. if (!phba->sli4_hba.intr_enable)
  14779. rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
  14780. else {
  14781. mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
  14782. rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
  14783. }
  14784. /* The IOCTL status is embedded in the mailbox subheader. */
  14785. shdr = (union lpfc_sli4_cfg_shdr *) &wr_object->header.cfg_shdr;
  14786. shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
  14787. shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
  14788. if (rc != MBX_TIMEOUT)
  14789. mempool_free(mbox, phba->mbox_mem_pool);
  14790. if (shdr_status || shdr_add_status || rc) {
  14791. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  14792. "3025 Write Object mailbox failed with "
  14793. "status x%x add_status x%x, mbx status x%x\n",
  14794. shdr_status, shdr_add_status, rc);
  14795. rc = -ENXIO;
  14796. } else
  14797. *offset += wr_object->u.response.actual_write_length;
  14798. return rc;
  14799. }
  14800. /**
  14801. * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
  14802. * @vport: pointer to vport data structure.
  14803. *
  14804. * This function iterate through the mailboxq and clean up all REG_LOGIN
  14805. * and REG_VPI mailbox commands associated with the vport. This function
  14806. * is called when driver want to restart discovery of the vport due to
  14807. * a Clear Virtual Link event.
  14808. **/
  14809. void
  14810. lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
  14811. {
  14812. struct lpfc_hba *phba = vport->phba;
  14813. LPFC_MBOXQ_t *mb, *nextmb;
  14814. struct lpfc_dmabuf *mp;
  14815. struct lpfc_nodelist *ndlp;
  14816. struct lpfc_nodelist *act_mbx_ndlp = NULL;
  14817. struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
  14818. LIST_HEAD(mbox_cmd_list);
  14819. uint8_t restart_loop;
  14820. /* Clean up internally queued mailbox commands with the vport */
  14821. spin_lock_irq(&phba->hbalock);
  14822. list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
  14823. if (mb->vport != vport)
  14824. continue;
  14825. if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
  14826. (mb->u.mb.mbxCommand != MBX_REG_VPI))
  14827. continue;
  14828. list_del(&mb->list);
  14829. list_add_tail(&mb->list, &mbox_cmd_list);
  14830. }
  14831. /* Clean up active mailbox command with the vport */
  14832. mb = phba->sli.mbox_active;
  14833. if (mb && (mb->vport == vport)) {
  14834. if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
  14835. (mb->u.mb.mbxCommand == MBX_REG_VPI))
  14836. mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  14837. if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
  14838. act_mbx_ndlp = (struct lpfc_nodelist *)mb->context2;
  14839. /* Put reference count for delayed processing */
  14840. act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
  14841. /* Unregister the RPI when mailbox complete */
  14842. mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
  14843. }
  14844. }
  14845. /* Cleanup any mailbox completions which are not yet processed */
  14846. do {
  14847. restart_loop = 0;
  14848. list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
  14849. /*
  14850. * If this mailox is already processed or it is
  14851. * for another vport ignore it.
  14852. */
  14853. if ((mb->vport != vport) ||
  14854. (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
  14855. continue;
  14856. if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
  14857. (mb->u.mb.mbxCommand != MBX_REG_VPI))
  14858. continue;
  14859. mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  14860. if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
  14861. ndlp = (struct lpfc_nodelist *)mb->context2;
  14862. /* Unregister the RPI when mailbox complete */
  14863. mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
  14864. restart_loop = 1;
  14865. spin_unlock_irq(&phba->hbalock);
  14866. spin_lock(shost->host_lock);
  14867. ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
  14868. spin_unlock(shost->host_lock);
  14869. spin_lock_irq(&phba->hbalock);
  14870. break;
  14871. }
  14872. }
  14873. } while (restart_loop);
  14874. spin_unlock_irq(&phba->hbalock);
  14875. /* Release the cleaned-up mailbox commands */
  14876. while (!list_empty(&mbox_cmd_list)) {
  14877. list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
  14878. if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
  14879. mp = (struct lpfc_dmabuf *) (mb->context1);
  14880. if (mp) {
  14881. __lpfc_mbuf_free(phba, mp->virt, mp->phys);
  14882. kfree(mp);
  14883. }
  14884. ndlp = (struct lpfc_nodelist *) mb->context2;
  14885. mb->context2 = NULL;
  14886. if (ndlp) {
  14887. spin_lock(shost->host_lock);
  14888. ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
  14889. spin_unlock(shost->host_lock);
  14890. lpfc_nlp_put(ndlp);
  14891. }
  14892. }
  14893. mempool_free(mb, phba->mbox_mem_pool);
  14894. }
  14895. /* Release the ndlp with the cleaned-up active mailbox command */
  14896. if (act_mbx_ndlp) {
  14897. spin_lock(shost->host_lock);
  14898. act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
  14899. spin_unlock(shost->host_lock);
  14900. lpfc_nlp_put(act_mbx_ndlp);
  14901. }
  14902. }
  14903. /**
  14904. * lpfc_drain_txq - Drain the txq
  14905. * @phba: Pointer to HBA context object.
  14906. *
  14907. * This function attempt to submit IOCBs on the txq
  14908. * to the adapter. For SLI4 adapters, the txq contains
  14909. * ELS IOCBs that have been deferred because the there
  14910. * are no SGLs. This congestion can occur with large
  14911. * vport counts during node discovery.
  14912. **/
  14913. uint32_t
  14914. lpfc_drain_txq(struct lpfc_hba *phba)
  14915. {
  14916. LIST_HEAD(completions);
  14917. struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
  14918. struct lpfc_iocbq *piocbq = 0;
  14919. unsigned long iflags = 0;
  14920. char *fail_msg = NULL;
  14921. struct lpfc_sglq *sglq;
  14922. union lpfc_wqe wqe;
  14923. int txq_cnt = 0;
  14924. spin_lock_irqsave(&phba->hbalock, iflags);
  14925. list_for_each_entry(piocbq, &pring->txq, list) {
  14926. txq_cnt++;
  14927. }
  14928. if (txq_cnt > pring->txq_max)
  14929. pring->txq_max = txq_cnt;
  14930. spin_unlock_irqrestore(&phba->hbalock, iflags);
  14931. while (!list_empty(&pring->txq)) {
  14932. spin_lock_irqsave(&phba->hbalock, iflags);
  14933. piocbq = lpfc_sli_ringtx_get(phba, pring);
  14934. if (!piocbq) {
  14935. spin_unlock_irqrestore(&phba->hbalock, iflags);
  14936. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  14937. "2823 txq empty and txq_cnt is %d\n ",
  14938. txq_cnt);
  14939. break;
  14940. }
  14941. sglq = __lpfc_sli_get_sglq(phba, piocbq);
  14942. if (!sglq) {
  14943. __lpfc_sli_ringtx_put(phba, pring, piocbq);
  14944. spin_unlock_irqrestore(&phba->hbalock, iflags);
  14945. break;
  14946. }
  14947. txq_cnt--;
  14948. /* The xri and iocb resources secured,
  14949. * attempt to issue request
  14950. */
  14951. piocbq->sli4_lxritag = sglq->sli4_lxritag;
  14952. piocbq->sli4_xritag = sglq->sli4_xritag;
  14953. if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
  14954. fail_msg = "to convert bpl to sgl";
  14955. else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
  14956. fail_msg = "to convert iocb to wqe";
  14957. else if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
  14958. fail_msg = " - Wq is full";
  14959. else
  14960. lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
  14961. if (fail_msg) {
  14962. /* Failed means we can't issue and need to cancel */
  14963. lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
  14964. "2822 IOCB failed %s iotag 0x%x "
  14965. "xri 0x%x\n",
  14966. fail_msg,
  14967. piocbq->iotag, piocbq->sli4_xritag);
  14968. list_add_tail(&piocbq->list, &completions);
  14969. }
  14970. spin_unlock_irqrestore(&phba->hbalock, iflags);
  14971. }
  14972. /* Cancel all the IOCBs that cannot be issued */
  14973. lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
  14974. IOERR_SLI_ABORTED);
  14975. return txq_cnt;
  14976. }