123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865 |
- /*
- * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
- * All rights reserved
- * www.brocade.com
- *
- * Linux driver for Brocade Fibre Channel Host Bus Adapter.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License (GPL) Version 2 as
- * published by the Free Software Foundation
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- */
- #include "bfa_ioc.h"
- #include "bfi_ctreg.h"
- #include "bfa_defs.h"
- #include "bfa_defs_svc.h"
- #include "bfad_drv.h"
- BFA_TRC_FILE(CNA, IOC);
- /*
- * IOC local definitions
- */
- #define BFA_IOC_TOV 3000 /* msecs */
- #define BFA_IOC_HWSEM_TOV 500 /* msecs */
- #define BFA_IOC_HB_TOV 500 /* msecs */
- #define BFA_IOC_HWINIT_MAX 2
- #define BFA_IOC_TOV_RECOVER BFA_IOC_HB_TOV
- #define bfa_ioc_timer_start(__ioc) \
- bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer, \
- bfa_ioc_timeout, (__ioc), BFA_IOC_TOV)
- #define bfa_ioc_timer_stop(__ioc) bfa_timer_stop(&(__ioc)->ioc_timer)
- #define bfa_hb_timer_start(__ioc) \
- bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->hb_timer, \
- bfa_ioc_hb_check, (__ioc), BFA_IOC_HB_TOV)
- #define bfa_hb_timer_stop(__ioc) bfa_timer_stop(&(__ioc)->hb_timer)
- #define BFA_DBG_FWTRC_ENTS (BFI_IOC_TRC_ENTS)
- #define BFA_DBG_FWTRC_LEN \
- (BFA_DBG_FWTRC_ENTS * sizeof(struct bfa_trc_s) + \
- (sizeof(struct bfa_trc_mod_s) - \
- BFA_TRC_MAX * sizeof(struct bfa_trc_s)))
- #define BFA_DBG_FWTRC_OFF(_fn) (BFI_IOC_TRC_OFF + BFA_DBG_FWTRC_LEN * (_fn))
- /*
- * Asic specific macros : see bfa_hw_cb.c and bfa_hw_ct.c for details.
- */
- #define bfa_ioc_firmware_lock(__ioc) \
- ((__ioc)->ioc_hwif->ioc_firmware_lock(__ioc))
- #define bfa_ioc_firmware_unlock(__ioc) \
- ((__ioc)->ioc_hwif->ioc_firmware_unlock(__ioc))
- #define bfa_ioc_reg_init(__ioc) ((__ioc)->ioc_hwif->ioc_reg_init(__ioc))
- #define bfa_ioc_map_port(__ioc) ((__ioc)->ioc_hwif->ioc_map_port(__ioc))
- #define bfa_ioc_notify_hbfail(__ioc) \
- ((__ioc)->ioc_hwif->ioc_notify_hbfail(__ioc))
- #ifdef BFA_IOC_IS_UEFI
- #define bfa_ioc_is_bios_optrom(__ioc) (0)
- #define bfa_ioc_is_uefi(__ioc) BFA_IOC_IS_UEFI
- #else
- #define bfa_ioc_is_bios_optrom(__ioc) \
- (bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(__ioc)) < BFA_IOC_FWIMG_MINSZ)
- #define bfa_ioc_is_uefi(__ioc) (0)
- #endif
- #define bfa_ioc_mbox_cmd_pending(__ioc) \
- (!list_empty(&((__ioc)->mbox_mod.cmd_q)) || \
- readl((__ioc)->ioc_regs.hfn_mbox_cmd))
- bfa_boolean_t bfa_auto_recover = BFA_TRUE;
- /*
- * forward declarations
- */
- static void bfa_ioc_hw_sem_get(struct bfa_ioc_s *ioc);
- static void bfa_ioc_hw_sem_get_cancel(struct bfa_ioc_s *ioc);
- static void bfa_ioc_hwinit(struct bfa_ioc_s *ioc, bfa_boolean_t force);
- static void bfa_ioc_timeout(void *ioc);
- static void bfa_ioc_send_enable(struct bfa_ioc_s *ioc);
- static void bfa_ioc_send_disable(struct bfa_ioc_s *ioc);
- static void bfa_ioc_send_getattr(struct bfa_ioc_s *ioc);
- static void bfa_ioc_hb_monitor(struct bfa_ioc_s *ioc);
- static void bfa_ioc_hb_stop(struct bfa_ioc_s *ioc);
- static void bfa_ioc_reset(struct bfa_ioc_s *ioc, bfa_boolean_t force);
- static void bfa_ioc_mbox_poll(struct bfa_ioc_s *ioc);
- static void bfa_ioc_mbox_hbfail(struct bfa_ioc_s *ioc);
- static void bfa_ioc_recover(struct bfa_ioc_s *ioc);
- static void bfa_ioc_check_attr_wwns(struct bfa_ioc_s *ioc);
- static void bfa_ioc_disable_comp(struct bfa_ioc_s *ioc);
- static void bfa_ioc_lpu_stop(struct bfa_ioc_s *ioc);
- static void bfa_ioc_pf_enabled(struct bfa_ioc_s *ioc);
- static void bfa_ioc_pf_disabled(struct bfa_ioc_s *ioc);
- static void bfa_ioc_pf_failed(struct bfa_ioc_s *ioc);
- static void bfa_ioc_pf_fwmismatch(struct bfa_ioc_s *ioc);
- /*
- * hal_ioc_sm
- */
- /*
- * IOC state machine definitions/declarations
- */
- enum ioc_event {
- IOC_E_RESET = 1, /* IOC reset request */
- IOC_E_ENABLE = 2, /* IOC enable request */
- IOC_E_DISABLE = 3, /* IOC disable request */
- IOC_E_DETACH = 4, /* driver detach cleanup */
- IOC_E_ENABLED = 5, /* f/w enabled */
- IOC_E_FWRSP_GETATTR = 6, /* IOC get attribute response */
- IOC_E_DISABLED = 7, /* f/w disabled */
- IOC_E_FAILED = 8, /* failure notice by iocpf sm */
- IOC_E_HBFAIL = 9, /* heartbeat failure */
- IOC_E_HWERROR = 10, /* hardware error interrupt */
- IOC_E_TIMEOUT = 11, /* timeout */
- };
- bfa_fsm_state_decl(bfa_ioc, uninit, struct bfa_ioc_s, enum ioc_event);
- bfa_fsm_state_decl(bfa_ioc, reset, struct bfa_ioc_s, enum ioc_event);
- bfa_fsm_state_decl(bfa_ioc, enabling, struct bfa_ioc_s, enum ioc_event);
- bfa_fsm_state_decl(bfa_ioc, getattr, struct bfa_ioc_s, enum ioc_event);
- bfa_fsm_state_decl(bfa_ioc, op, struct bfa_ioc_s, enum ioc_event);
- bfa_fsm_state_decl(bfa_ioc, initfail, struct bfa_ioc_s, enum ioc_event);
- bfa_fsm_state_decl(bfa_ioc, fail, struct bfa_ioc_s, enum ioc_event);
- bfa_fsm_state_decl(bfa_ioc, disabling, struct bfa_ioc_s, enum ioc_event);
- bfa_fsm_state_decl(bfa_ioc, disabled, struct bfa_ioc_s, enum ioc_event);
- static struct bfa_sm_table_s ioc_sm_table[] = {
- {BFA_SM(bfa_ioc_sm_uninit), BFA_IOC_UNINIT},
- {BFA_SM(bfa_ioc_sm_reset), BFA_IOC_RESET},
- {BFA_SM(bfa_ioc_sm_enabling), BFA_IOC_ENABLING},
- {BFA_SM(bfa_ioc_sm_getattr), BFA_IOC_GETATTR},
- {BFA_SM(bfa_ioc_sm_op), BFA_IOC_OPERATIONAL},
- {BFA_SM(bfa_ioc_sm_initfail), BFA_IOC_INITFAIL},
- {BFA_SM(bfa_ioc_sm_fail), BFA_IOC_FAIL},
- {BFA_SM(bfa_ioc_sm_disabling), BFA_IOC_DISABLING},
- {BFA_SM(bfa_ioc_sm_disabled), BFA_IOC_DISABLED},
- };
- /*
- * IOCPF state machine definitions/declarations
- */
- #define bfa_iocpf_timer_start(__ioc) \
- bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer, \
- bfa_iocpf_timeout, (__ioc), BFA_IOC_TOV)
- #define bfa_iocpf_timer_stop(__ioc) bfa_timer_stop(&(__ioc)->ioc_timer)
- #define bfa_iocpf_recovery_timer_start(__ioc) \
- bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer, \
- bfa_iocpf_timeout, (__ioc), BFA_IOC_TOV_RECOVER)
- #define bfa_sem_timer_start(__ioc) \
- bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->sem_timer, \
- bfa_iocpf_sem_timeout, (__ioc), BFA_IOC_HWSEM_TOV)
- #define bfa_sem_timer_stop(__ioc) bfa_timer_stop(&(__ioc)->sem_timer)
- /*
- * Forward declareations for iocpf state machine
- */
- static void bfa_iocpf_enable(struct bfa_ioc_s *ioc);
- static void bfa_iocpf_disable(struct bfa_ioc_s *ioc);
- static void bfa_iocpf_fail(struct bfa_ioc_s *ioc);
- static void bfa_iocpf_initfail(struct bfa_ioc_s *ioc);
- static void bfa_iocpf_getattrfail(struct bfa_ioc_s *ioc);
- static void bfa_iocpf_stop(struct bfa_ioc_s *ioc);
- static void bfa_iocpf_timeout(void *ioc_arg);
- static void bfa_iocpf_sem_timeout(void *ioc_arg);
- /*
- * IOCPF state machine events
- */
- enum iocpf_event {
- IOCPF_E_ENABLE = 1, /* IOCPF enable request */
- IOCPF_E_DISABLE = 2, /* IOCPF disable request */
- IOCPF_E_STOP = 3, /* stop on driver detach */
- IOCPF_E_FWREADY = 4, /* f/w initialization done */
- IOCPF_E_FWRSP_ENABLE = 5, /* enable f/w response */
- IOCPF_E_FWRSP_DISABLE = 6, /* disable f/w response */
- IOCPF_E_FAIL = 7, /* failure notice by ioc sm */
- IOCPF_E_INITFAIL = 8, /* init fail notice by ioc sm */
- IOCPF_E_GETATTRFAIL = 9, /* init fail notice by ioc sm */
- IOCPF_E_SEMLOCKED = 10, /* h/w semaphore is locked */
- IOCPF_E_TIMEOUT = 11, /* f/w response timeout */
- };
- /*
- * IOCPF states
- */
- enum bfa_iocpf_state {
- BFA_IOCPF_RESET = 1, /* IOC is in reset state */
- BFA_IOCPF_SEMWAIT = 2, /* Waiting for IOC h/w semaphore */
- BFA_IOCPF_HWINIT = 3, /* IOC h/w is being initialized */
- BFA_IOCPF_READY = 4, /* IOCPF is initialized */
- BFA_IOCPF_INITFAIL = 5, /* IOCPF failed */
- BFA_IOCPF_FAIL = 6, /* IOCPF failed */
- BFA_IOCPF_DISABLING = 7, /* IOCPF is being disabled */
- BFA_IOCPF_DISABLED = 8, /* IOCPF is disabled */
- BFA_IOCPF_FWMISMATCH = 9, /* IOC f/w different from drivers */
- };
- bfa_fsm_state_decl(bfa_iocpf, reset, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, fwcheck, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, mismatch, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, semwait, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, hwinit, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, enabling, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, ready, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, initfail, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, fail, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, disabling, struct bfa_iocpf_s, enum iocpf_event);
- bfa_fsm_state_decl(bfa_iocpf, disabled, struct bfa_iocpf_s, enum iocpf_event);
- static struct bfa_sm_table_s iocpf_sm_table[] = {
- {BFA_SM(bfa_iocpf_sm_reset), BFA_IOCPF_RESET},
- {BFA_SM(bfa_iocpf_sm_fwcheck), BFA_IOCPF_FWMISMATCH},
- {BFA_SM(bfa_iocpf_sm_mismatch), BFA_IOCPF_FWMISMATCH},
- {BFA_SM(bfa_iocpf_sm_semwait), BFA_IOCPF_SEMWAIT},
- {BFA_SM(bfa_iocpf_sm_hwinit), BFA_IOCPF_HWINIT},
- {BFA_SM(bfa_iocpf_sm_enabling), BFA_IOCPF_HWINIT},
- {BFA_SM(bfa_iocpf_sm_ready), BFA_IOCPF_READY},
- {BFA_SM(bfa_iocpf_sm_initfail), BFA_IOCPF_INITFAIL},
- {BFA_SM(bfa_iocpf_sm_fail), BFA_IOCPF_FAIL},
- {BFA_SM(bfa_iocpf_sm_disabling), BFA_IOCPF_DISABLING},
- {BFA_SM(bfa_iocpf_sm_disabled), BFA_IOCPF_DISABLED},
- };
- /*
- * IOC State Machine
- */
- /*
- * Beginning state. IOC uninit state.
- */
- static void
- bfa_ioc_sm_uninit_entry(struct bfa_ioc_s *ioc)
- {
- }
- /*
- * IOC is in uninit state.
- */
- static void
- bfa_ioc_sm_uninit(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_RESET:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_reset);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- /*
- * Reset entry actions -- initialize state machine
- */
- static void
- bfa_ioc_sm_reset_entry(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_set_state(&ioc->iocpf, bfa_iocpf_sm_reset);
- }
- /*
- * IOC is in reset state.
- */
- static void
- bfa_ioc_sm_reset(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_ENABLE:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
- break;
- case IOC_E_DISABLE:
- bfa_ioc_disable_comp(ioc);
- break;
- case IOC_E_DETACH:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_ioc_sm_enabling_entry(struct bfa_ioc_s *ioc)
- {
- bfa_iocpf_enable(ioc);
- }
- /*
- * Host IOC function is being enabled, awaiting response from firmware.
- * Semaphore is acquired.
- */
- static void
- bfa_ioc_sm_enabling(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_ENABLED:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
- break;
- case IOC_E_FAILED:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_initfail);
- break;
- case IOC_E_HWERROR:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_initfail);
- bfa_iocpf_initfail(ioc);
- break;
- case IOC_E_DISABLE:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
- break;
- case IOC_E_DETACH:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
- bfa_iocpf_stop(ioc);
- break;
- case IOC_E_ENABLE:
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_ioc_sm_getattr_entry(struct bfa_ioc_s *ioc)
- {
- bfa_ioc_timer_start(ioc);
- bfa_ioc_send_getattr(ioc);
- }
- /*
- * IOC configuration in progress. Timer is active.
- */
- static void
- bfa_ioc_sm_getattr(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_FWRSP_GETATTR:
- bfa_ioc_timer_stop(ioc);
- bfa_ioc_check_attr_wwns(ioc);
- bfa_fsm_set_state(ioc, bfa_ioc_sm_op);
- break;
- case IOC_E_FAILED:
- bfa_ioc_timer_stop(ioc);
- bfa_fsm_set_state(ioc, bfa_ioc_sm_initfail);
- break;
- case IOC_E_HWERROR:
- bfa_ioc_timer_stop(ioc);
- /* fall through */
- case IOC_E_TIMEOUT:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_initfail);
- bfa_iocpf_getattrfail(ioc);
- break;
- case IOC_E_DISABLE:
- bfa_ioc_timer_stop(ioc);
- bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
- break;
- case IOC_E_ENABLE:
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_ioc_sm_op_entry(struct bfa_ioc_s *ioc)
- {
- struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;
- ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_OK);
- bfa_ioc_hb_monitor(ioc);
- BFA_LOG(KERN_INFO, bfad, log_level, "IOC enabled\n");
- }
- static void
- bfa_ioc_sm_op(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_ENABLE:
- break;
- case IOC_E_DISABLE:
- bfa_ioc_hb_stop(ioc);
- bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
- break;
- case IOC_E_FAILED:
- bfa_ioc_hb_stop(ioc);
- bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
- break;
- case IOC_E_HWERROR:
- bfa_ioc_hb_stop(ioc);
- /* !!! fall through !!! */
- case IOC_E_HBFAIL:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
- bfa_iocpf_fail(ioc);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_ioc_sm_disabling_entry(struct bfa_ioc_s *ioc)
- {
- struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;
- bfa_iocpf_disable(ioc);
- BFA_LOG(KERN_INFO, bfad, log_level, "IOC disabled\n");
- }
- /*
- * IOC is being disabled
- */
- static void
- bfa_ioc_sm_disabling(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_DISABLED:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_disabled);
- break;
- case IOC_E_HWERROR:
- /*
- * No state change. Will move to disabled state
- * after iocpf sm completes failure processing and
- * moves to disabled state.
- */
- bfa_iocpf_fail(ioc);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- /*
- * IOC disable completion entry.
- */
- static void
- bfa_ioc_sm_disabled_entry(struct bfa_ioc_s *ioc)
- {
- bfa_ioc_disable_comp(ioc);
- }
- static void
- bfa_ioc_sm_disabled(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_ENABLE:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
- break;
- case IOC_E_DISABLE:
- ioc->cbfn->disable_cbfn(ioc->bfa);
- break;
- case IOC_E_DETACH:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
- bfa_iocpf_stop(ioc);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_ioc_sm_initfail_entry(struct bfa_ioc_s *ioc)
- {
- ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
- }
- /*
- * Hardware initialization failed.
- */
- static void
- bfa_ioc_sm_initfail(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_ENABLED:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
- break;
- case IOC_E_FAILED:
- /*
- * Initialization failure during iocpf init retry.
- */
- ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
- break;
- case IOC_E_DISABLE:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
- break;
- case IOC_E_DETACH:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
- bfa_iocpf_stop(ioc);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_ioc_sm_fail_entry(struct bfa_ioc_s *ioc)
- {
- struct list_head *qe;
- struct bfa_ioc_hbfail_notify_s *notify;
- struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;
- /*
- * Notify driver and common modules registered for notification.
- */
- ioc->cbfn->hbfail_cbfn(ioc->bfa);
- list_for_each(qe, &ioc->hb_notify_q) {
- notify = (struct bfa_ioc_hbfail_notify_s *) qe;
- notify->cbfn(notify->cbarg);
- }
- BFA_LOG(KERN_CRIT, bfad, log_level,
- "Heart Beat of IOC has failed\n");
- }
- /*
- * IOC failure.
- */
- static void
- bfa_ioc_sm_fail(struct bfa_ioc_s *ioc, enum ioc_event event)
- {
- bfa_trc(ioc, event);
- switch (event) {
- case IOC_E_FAILED:
- /*
- * Initialization failure during iocpf recovery.
- * !!! Fall through !!!
- */
- case IOC_E_ENABLE:
- ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
- break;
- case IOC_E_ENABLED:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
- break;
- case IOC_E_DISABLE:
- bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
- break;
- case IOC_E_HWERROR:
- /*
- * HB failure notification, ignore.
- */
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- /*
- * IOCPF State Machine
- */
- /*
- * Reset entry actions -- initialize state machine
- */
- static void
- bfa_iocpf_sm_reset_entry(struct bfa_iocpf_s *iocpf)
- {
- iocpf->retry_count = 0;
- iocpf->auto_recover = bfa_auto_recover;
- }
- /*
- * Beginning state. IOC is in reset state.
- */
- static void
- bfa_iocpf_sm_reset(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_ENABLE:
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
- break;
- case IOCPF_E_STOP:
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- /*
- * Semaphore should be acquired for version check.
- */
- static void
- bfa_iocpf_sm_fwcheck_entry(struct bfa_iocpf_s *iocpf)
- {
- bfa_ioc_hw_sem_get(iocpf->ioc);
- }
- /*
- * Awaiting h/w semaphore to continue with version check.
- */
- static void
- bfa_iocpf_sm_fwcheck(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_SEMLOCKED:
- if (bfa_ioc_firmware_lock(ioc)) {
- iocpf->retry_count = 0;
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
- } else {
- bfa_ioc_hw_sem_release(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_mismatch);
- }
- break;
- case IOCPF_E_DISABLE:
- bfa_ioc_hw_sem_get_cancel(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
- bfa_ioc_pf_disabled(ioc);
- break;
- case IOCPF_E_STOP:
- bfa_ioc_hw_sem_get_cancel(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- /*
- * Notify enable completion callback.
- */
- static void
- bfa_iocpf_sm_mismatch_entry(struct bfa_iocpf_s *iocpf)
- {
- /*
- * Call only the first time sm enters fwmismatch state.
- */
- if (iocpf->retry_count == 0)
- bfa_ioc_pf_fwmismatch(iocpf->ioc);
- iocpf->retry_count++;
- bfa_iocpf_timer_start(iocpf->ioc);
- }
- /*
- * Awaiting firmware version match.
- */
- static void
- bfa_iocpf_sm_mismatch(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_TIMEOUT:
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
- break;
- case IOCPF_E_DISABLE:
- bfa_iocpf_timer_stop(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
- bfa_ioc_pf_disabled(ioc);
- break;
- case IOCPF_E_STOP:
- bfa_iocpf_timer_stop(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- /*
- * Request for semaphore.
- */
- static void
- bfa_iocpf_sm_semwait_entry(struct bfa_iocpf_s *iocpf)
- {
- bfa_ioc_hw_sem_get(iocpf->ioc);
- }
- /*
- * Awaiting semaphore for h/w initialzation.
- */
- static void
- bfa_iocpf_sm_semwait(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_SEMLOCKED:
- iocpf->retry_count = 0;
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
- break;
- case IOCPF_E_DISABLE:
- bfa_ioc_hw_sem_get_cancel(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_iocpf_sm_hwinit_entry(struct bfa_iocpf_s *iocpf)
- {
- bfa_iocpf_timer_start(iocpf->ioc);
- bfa_ioc_reset(iocpf->ioc, BFA_FALSE);
- }
- /*
- * Hardware is being initialized. Interrupts are enabled.
- * Holding hardware semaphore lock.
- */
- static void
- bfa_iocpf_sm_hwinit(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_FWREADY:
- bfa_iocpf_timer_stop(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_enabling);
- break;
- case IOCPF_E_INITFAIL:
- bfa_iocpf_timer_stop(ioc);
- /*
- * !!! fall through !!!
- */
- case IOCPF_E_TIMEOUT:
- iocpf->retry_count++;
- if (iocpf->retry_count < BFA_IOC_HWINIT_MAX) {
- bfa_iocpf_timer_start(ioc);
- bfa_ioc_reset(ioc, BFA_TRUE);
- break;
- }
- bfa_ioc_hw_sem_release(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
- if (event == IOCPF_E_TIMEOUT)
- bfa_ioc_pf_failed(ioc);
- break;
- case IOCPF_E_DISABLE:
- bfa_ioc_hw_sem_release(ioc);
- bfa_iocpf_timer_stop(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_iocpf_sm_enabling_entry(struct bfa_iocpf_s *iocpf)
- {
- bfa_iocpf_timer_start(iocpf->ioc);
- bfa_ioc_send_enable(iocpf->ioc);
- }
- /*
- * Host IOC function is being enabled, awaiting response from firmware.
- * Semaphore is acquired.
- */
- static void
- bfa_iocpf_sm_enabling(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_FWRSP_ENABLE:
- bfa_iocpf_timer_stop(ioc);
- bfa_ioc_hw_sem_release(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_ready);
- break;
- case IOCPF_E_INITFAIL:
- bfa_iocpf_timer_stop(ioc);
- /*
- * !!! fall through !!!
- */
- case IOCPF_E_TIMEOUT:
- iocpf->retry_count++;
- if (iocpf->retry_count < BFA_IOC_HWINIT_MAX) {
- writel(BFI_IOC_UNINIT, ioc->ioc_regs.ioc_fwstate);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
- break;
- }
- bfa_ioc_hw_sem_release(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
- if (event == IOCPF_E_TIMEOUT)
- bfa_ioc_pf_failed(ioc);
- break;
- case IOCPF_E_DISABLE:
- bfa_iocpf_timer_stop(ioc);
- bfa_ioc_hw_sem_release(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
- break;
- case IOCPF_E_FWREADY:
- bfa_ioc_send_enable(ioc);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_iocpf_sm_ready_entry(struct bfa_iocpf_s *iocpf)
- {
- bfa_ioc_pf_enabled(iocpf->ioc);
- }
- static void
- bfa_iocpf_sm_ready(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_DISABLE:
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
- break;
- case IOCPF_E_GETATTRFAIL:
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
- break;
- case IOCPF_E_FAIL:
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
- break;
- case IOCPF_E_FWREADY:
- if (bfa_ioc_is_operational(ioc))
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
- else
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
- bfa_ioc_pf_failed(ioc);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_iocpf_sm_disabling_entry(struct bfa_iocpf_s *iocpf)
- {
- bfa_iocpf_timer_start(iocpf->ioc);
- bfa_ioc_send_disable(iocpf->ioc);
- }
- /*
- * IOC is being disabled
- */
- static void
- bfa_iocpf_sm_disabling(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_FWRSP_DISABLE:
- case IOCPF_E_FWREADY:
- bfa_iocpf_timer_stop(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
- break;
- case IOCPF_E_FAIL:
- bfa_iocpf_timer_stop(ioc);
- /*
- * !!! fall through !!!
- */
- case IOCPF_E_TIMEOUT:
- writel(BFI_IOC_FAIL, ioc->ioc_regs.ioc_fwstate);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
- break;
- case IOCPF_E_FWRSP_ENABLE:
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- /*
- * IOC disable completion entry.
- */
- static void
- bfa_iocpf_sm_disabled_entry(struct bfa_iocpf_s *iocpf)
- {
- bfa_ioc_pf_disabled(iocpf->ioc);
- }
- static void
- bfa_iocpf_sm_disabled(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_ENABLE:
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
- break;
- case IOCPF_E_STOP:
- bfa_ioc_firmware_unlock(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_iocpf_sm_initfail_entry(struct bfa_iocpf_s *iocpf)
- {
- bfa_iocpf_timer_start(iocpf->ioc);
- }
- /*
- * Hardware initialization failed.
- */
- static void
- bfa_iocpf_sm_initfail(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_DISABLE:
- bfa_iocpf_timer_stop(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
- break;
- case IOCPF_E_STOP:
- bfa_iocpf_timer_stop(ioc);
- bfa_ioc_firmware_unlock(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
- break;
- case IOCPF_E_TIMEOUT:
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- static void
- bfa_iocpf_sm_fail_entry(struct bfa_iocpf_s *iocpf)
- {
- /*
- * Mark IOC as failed in hardware and stop firmware.
- */
- bfa_ioc_lpu_stop(iocpf->ioc);
- writel(BFI_IOC_FAIL, iocpf->ioc->ioc_regs.ioc_fwstate);
- /*
- * Notify other functions on HB failure.
- */
- bfa_ioc_notify_hbfail(iocpf->ioc);
- /*
- * Flush any queued up mailbox requests.
- */
- bfa_ioc_mbox_hbfail(iocpf->ioc);
- if (iocpf->auto_recover)
- bfa_iocpf_recovery_timer_start(iocpf->ioc);
- }
- /*
- * IOC is in failed state.
- */
- static void
- bfa_iocpf_sm_fail(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
- {
- struct bfa_ioc_s *ioc = iocpf->ioc;
- bfa_trc(ioc, event);
- switch (event) {
- case IOCPF_E_DISABLE:
- if (iocpf->auto_recover)
- bfa_iocpf_timer_stop(ioc);
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
- break;
- case IOCPF_E_TIMEOUT:
- bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
- break;
- default:
- bfa_sm_fault(ioc, event);
- }
- }
- /*
- * hal_ioc_pvt BFA IOC private functions
- */
- static void
- bfa_ioc_disable_comp(struct bfa_ioc_s *ioc)
- {
- struct list_head *qe;
- struct bfa_ioc_hbfail_notify_s *notify;
- ioc->cbfn->disable_cbfn(ioc->bfa);
- /*
- * Notify common modules registered for notification.
- */
- list_for_each(qe, &ioc->hb_notify_q) {
- notify = (struct bfa_ioc_hbfail_notify_s *) qe;
- notify->cbfn(notify->cbarg);
- }
- }
- bfa_boolean_t
- bfa_ioc_sem_get(void __iomem *sem_reg)
- {
- u32 r32;
- int cnt = 0;
- #define BFA_SEM_SPINCNT 3000
- r32 = readl(sem_reg);
- while (r32 && (cnt < BFA_SEM_SPINCNT)) {
- cnt++;
- udelay(2);
- r32 = readl(sem_reg);
- }
- if (r32 == 0)
- return BFA_TRUE;
- bfa_assert(cnt < BFA_SEM_SPINCNT);
- return BFA_FALSE;
- }
- void
- bfa_ioc_sem_release(void __iomem *sem_reg)
- {
- writel(1, sem_reg);
- }
- static void
- bfa_ioc_hw_sem_get(struct bfa_ioc_s *ioc)
- {
- u32 r32;
- /*
- * First read to the semaphore register will return 0, subsequent reads
- * will return 1. Semaphore is released by writing 1 to the register
- */
- r32 = readl(ioc->ioc_regs.ioc_sem_reg);
- if (r32 == 0) {
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEMLOCKED);
- return;
- }
- bfa_sem_timer_start(ioc);
- }
- void
- bfa_ioc_hw_sem_release(struct bfa_ioc_s *ioc)
- {
- writel(1, ioc->ioc_regs.ioc_sem_reg);
- }
- static void
- bfa_ioc_hw_sem_get_cancel(struct bfa_ioc_s *ioc)
- {
- bfa_sem_timer_stop(ioc);
- }
- /*
- * Initialize LPU local memory (aka secondary memory / SRAM)
- */
- static void
- bfa_ioc_lmem_init(struct bfa_ioc_s *ioc)
- {
- u32 pss_ctl;
- int i;
- #define PSS_LMEM_INIT_TIME 10000
- pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
- pss_ctl &= ~__PSS_LMEM_RESET;
- pss_ctl |= __PSS_LMEM_INIT_EN;
- /*
- * i2c workaround 12.5khz clock
- */
- pss_ctl |= __PSS_I2C_CLK_DIV(3UL);
- writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
- /*
- * wait for memory initialization to be complete
- */
- i = 0;
- do {
- pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
- i++;
- } while (!(pss_ctl & __PSS_LMEM_INIT_DONE) && (i < PSS_LMEM_INIT_TIME));
- /*
- * If memory initialization is not successful, IOC timeout will catch
- * such failures.
- */
- bfa_assert(pss_ctl & __PSS_LMEM_INIT_DONE);
- bfa_trc(ioc, pss_ctl);
- pss_ctl &= ~(__PSS_LMEM_INIT_DONE | __PSS_LMEM_INIT_EN);
- writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
- }
- static void
- bfa_ioc_lpu_start(struct bfa_ioc_s *ioc)
- {
- u32 pss_ctl;
- /*
- * Take processor out of reset.
- */
- pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
- pss_ctl &= ~__PSS_LPU0_RESET;
- writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
- }
- static void
- bfa_ioc_lpu_stop(struct bfa_ioc_s *ioc)
- {
- u32 pss_ctl;
- /*
- * Put processors in reset.
- */
- pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
- pss_ctl |= (__PSS_LPU0_RESET | __PSS_LPU1_RESET);
- writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
- }
- /*
- * Get driver and firmware versions.
- */
- void
- bfa_ioc_fwver_get(struct bfa_ioc_s *ioc, struct bfi_ioc_image_hdr_s *fwhdr)
- {
- u32 pgnum, pgoff;
- u32 loff = 0;
- int i;
- u32 *fwsig = (u32 *) fwhdr;
- pgnum = bfa_ioc_smem_pgnum(ioc, loff);
- pgoff = bfa_ioc_smem_pgoff(ioc, loff);
- writel(pgnum, ioc->ioc_regs.host_page_num_fn);
- for (i = 0; i < (sizeof(struct bfi_ioc_image_hdr_s) / sizeof(u32));
- i++) {
- fwsig[i] =
- bfa_mem_read(ioc->ioc_regs.smem_page_start, loff);
- loff += sizeof(u32);
- }
- }
- /*
- * Returns TRUE if same.
- */
- bfa_boolean_t
- bfa_ioc_fwver_cmp(struct bfa_ioc_s *ioc, struct bfi_ioc_image_hdr_s *fwhdr)
- {
- struct bfi_ioc_image_hdr_s *drv_fwhdr;
- int i;
- drv_fwhdr = (struct bfi_ioc_image_hdr_s *)
- bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), 0);
- for (i = 0; i < BFI_IOC_MD5SUM_SZ; i++) {
- if (fwhdr->md5sum[i] != drv_fwhdr->md5sum[i]) {
- bfa_trc(ioc, i);
- bfa_trc(ioc, fwhdr->md5sum[i]);
- bfa_trc(ioc, drv_fwhdr->md5sum[i]);
- return BFA_FALSE;
- }
- }
- bfa_trc(ioc, fwhdr->md5sum[0]);
- return BFA_TRUE;
- }
- /*
- * Return true if current running version is valid. Firmware signature and
- * execution context (driver/bios) must match.
- */
- static bfa_boolean_t
- bfa_ioc_fwver_valid(struct bfa_ioc_s *ioc, u32 boot_env)
- {
- struct bfi_ioc_image_hdr_s fwhdr, *drv_fwhdr;
- /*
- * If bios/efi boot (flash based) -- return true
- */
- if (bfa_ioc_is_bios_optrom(ioc))
- return BFA_TRUE;
- bfa_ioc_fwver_get(ioc, &fwhdr);
- drv_fwhdr = (struct bfi_ioc_image_hdr_s *)
- bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), 0);
- if (fwhdr.signature != drv_fwhdr->signature) {
- bfa_trc(ioc, fwhdr.signature);
- bfa_trc(ioc, drv_fwhdr->signature);
- return BFA_FALSE;
- }
- if (swab32(fwhdr.param) != boot_env) {
- bfa_trc(ioc, fwhdr.param);
- bfa_trc(ioc, boot_env);
- return BFA_FALSE;
- }
- return bfa_ioc_fwver_cmp(ioc, &fwhdr);
- }
- /*
- * Conditionally flush any pending message from firmware at start.
- */
- static void
- bfa_ioc_msgflush(struct bfa_ioc_s *ioc)
- {
- u32 r32;
- r32 = readl(ioc->ioc_regs.lpu_mbox_cmd);
- if (r32)
- writel(1, ioc->ioc_regs.lpu_mbox_cmd);
- }
- static void
- bfa_ioc_hwinit(struct bfa_ioc_s *ioc, bfa_boolean_t force)
- {
- enum bfi_ioc_state ioc_fwstate;
- bfa_boolean_t fwvalid;
- u32 boot_type;
- u32 boot_env;
- ioc_fwstate = readl(ioc->ioc_regs.ioc_fwstate);
- if (force)
- ioc_fwstate = BFI_IOC_UNINIT;
- bfa_trc(ioc, ioc_fwstate);
- boot_type = BFI_BOOT_TYPE_NORMAL;
- boot_env = BFI_BOOT_LOADER_OS;
- /*
- * Flash based firmware boot BIOS env.
- */
- if (bfa_ioc_is_bios_optrom(ioc)) {
- boot_type = BFI_BOOT_TYPE_FLASH;
- boot_env = BFI_BOOT_LOADER_BIOS;
- }
- /*
- * Flash based firmware boot UEFI env.
- */
- if (bfa_ioc_is_uefi(ioc)) {
- boot_type = BFI_BOOT_TYPE_FLASH;
- boot_env = BFI_BOOT_LOADER_UEFI;
- }
- /*
- * check if firmware is valid
- */
- fwvalid = (ioc_fwstate == BFI_IOC_UNINIT) ?
- BFA_FALSE : bfa_ioc_fwver_valid(ioc, boot_env);
- if (!fwvalid) {
- bfa_ioc_boot(ioc, boot_type, boot_env);
- return;
- }
- /*
- * If hardware initialization is in progress (initialized by other IOC),
- * just wait for an initialization completion interrupt.
- */
- if (ioc_fwstate == BFI_IOC_INITING) {
- ioc->cbfn->reset_cbfn(ioc->bfa);
- return;
- }
- /*
- * If IOC function is disabled and firmware version is same,
- * just re-enable IOC.
- *
- * If option rom, IOC must not be in operational state. With
- * convergence, IOC will be in operational state when 2nd driver
- * is loaded.
- */
- if (ioc_fwstate == BFI_IOC_DISABLED ||
- (!bfa_ioc_is_bios_optrom(ioc) && ioc_fwstate == BFI_IOC_OP)) {
- /*
- * When using MSI-X any pending firmware ready event should
- * be flushed. Otherwise MSI-X interrupts are not delivered.
- */
- bfa_ioc_msgflush(ioc);
- ioc->cbfn->reset_cbfn(ioc->bfa);
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FWREADY);
- return;
- }
- /*
- * Initialize the h/w for any other states.
- */
- bfa_ioc_boot(ioc, boot_type, boot_env);
- }
- static void
- bfa_ioc_timeout(void *ioc_arg)
- {
- struct bfa_ioc_s *ioc = (struct bfa_ioc_s *) ioc_arg;
- bfa_trc(ioc, 0);
- bfa_fsm_send_event(ioc, IOC_E_TIMEOUT);
- }
- void
- bfa_ioc_mbox_send(struct bfa_ioc_s *ioc, void *ioc_msg, int len)
- {
- u32 *msgp = (u32 *) ioc_msg;
- u32 i;
- bfa_trc(ioc, msgp[0]);
- bfa_trc(ioc, len);
- bfa_assert(len <= BFI_IOC_MSGLEN_MAX);
- /*
- * first write msg to mailbox registers
- */
- for (i = 0; i < len / sizeof(u32); i++)
- writel(cpu_to_le32(msgp[i]),
- ioc->ioc_regs.hfn_mbox + i * sizeof(u32));
- for (; i < BFI_IOC_MSGLEN_MAX / sizeof(u32); i++)
- writel(0, ioc->ioc_regs.hfn_mbox + i * sizeof(u32));
- /*
- * write 1 to mailbox CMD to trigger LPU event
- */
- writel(1, ioc->ioc_regs.hfn_mbox_cmd);
- (void) readl(ioc->ioc_regs.hfn_mbox_cmd);
- }
- static void
- bfa_ioc_send_enable(struct bfa_ioc_s *ioc)
- {
- struct bfi_ioc_ctrl_req_s enable_req;
- struct bfa_timeval_s tv;
- bfi_h2i_set(enable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_ENABLE_REQ,
- bfa_ioc_portid(ioc));
- enable_req.ioc_class = ioc->ioc_mc;
- bfa_os_gettimeofday(&tv);
- enable_req.tv_sec = be32_to_cpu(tv.tv_sec);
- bfa_ioc_mbox_send(ioc, &enable_req, sizeof(struct bfi_ioc_ctrl_req_s));
- }
- static void
- bfa_ioc_send_disable(struct bfa_ioc_s *ioc)
- {
- struct bfi_ioc_ctrl_req_s disable_req;
- bfi_h2i_set(disable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_DISABLE_REQ,
- bfa_ioc_portid(ioc));
- bfa_ioc_mbox_send(ioc, &disable_req, sizeof(struct bfi_ioc_ctrl_req_s));
- }
- static void
- bfa_ioc_send_getattr(struct bfa_ioc_s *ioc)
- {
- struct bfi_ioc_getattr_req_s attr_req;
- bfi_h2i_set(attr_req.mh, BFI_MC_IOC, BFI_IOC_H2I_GETATTR_REQ,
- bfa_ioc_portid(ioc));
- bfa_dma_be_addr_set(attr_req.attr_addr, ioc->attr_dma.pa);
- bfa_ioc_mbox_send(ioc, &attr_req, sizeof(attr_req));
- }
- static void
- bfa_ioc_hb_check(void *cbarg)
- {
- struct bfa_ioc_s *ioc = cbarg;
- u32 hb_count;
- hb_count = readl(ioc->ioc_regs.heartbeat);
- if (ioc->hb_count == hb_count) {
- printk(KERN_CRIT "Firmware heartbeat failure at %d", hb_count);
- bfa_ioc_recover(ioc);
- return;
- } else {
- ioc->hb_count = hb_count;
- }
- bfa_ioc_mbox_poll(ioc);
- bfa_hb_timer_start(ioc);
- }
- static void
- bfa_ioc_hb_monitor(struct bfa_ioc_s *ioc)
- {
- ioc->hb_count = readl(ioc->ioc_regs.heartbeat);
- bfa_hb_timer_start(ioc);
- }
- static void
- bfa_ioc_hb_stop(struct bfa_ioc_s *ioc)
- {
- bfa_hb_timer_stop(ioc);
- }
- /*
- * Initiate a full firmware download.
- */
- static void
- bfa_ioc_download_fw(struct bfa_ioc_s *ioc, u32 boot_type,
- u32 boot_env)
- {
- u32 *fwimg;
- u32 pgnum, pgoff;
- u32 loff = 0;
- u32 chunkno = 0;
- u32 i;
- /*
- * Initialize LMEM first before code download
- */
- bfa_ioc_lmem_init(ioc);
- bfa_trc(ioc, bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)));
- fwimg = bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), chunkno);
- pgnum = bfa_ioc_smem_pgnum(ioc, loff);
- pgoff = bfa_ioc_smem_pgoff(ioc, loff);
- writel(pgnum, ioc->ioc_regs.host_page_num_fn);
- for (i = 0; i < bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)); i++) {
- if (BFA_IOC_FLASH_CHUNK_NO(i) != chunkno) {
- chunkno = BFA_IOC_FLASH_CHUNK_NO(i);
- fwimg = bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc),
- BFA_IOC_FLASH_CHUNK_ADDR(chunkno));
- }
- /*
- * write smem
- */
- bfa_mem_write(ioc->ioc_regs.smem_page_start, loff,
- fwimg[BFA_IOC_FLASH_OFFSET_IN_CHUNK(i)]);
- loff += sizeof(u32);
- /*
- * handle page offset wrap around
- */
- loff = PSS_SMEM_PGOFF(loff);
- if (loff == 0) {
- pgnum++;
- writel(pgnum, ioc->ioc_regs.host_page_num_fn);
- }
- }
- writel(bfa_ioc_smem_pgnum(ioc, 0), ioc->ioc_regs.host_page_num_fn);
- /*
- * Set boot type and boot param at the end.
- */
- bfa_mem_write(ioc->ioc_regs.smem_page_start, BFI_BOOT_TYPE_OFF,
- swab32(boot_type));
- bfa_mem_write(ioc->ioc_regs.smem_page_start, BFI_BOOT_LOADER_OFF,
- swab32(boot_env));
- }
- static void
- bfa_ioc_reset(struct bfa_ioc_s *ioc, bfa_boolean_t force)
- {
- bfa_ioc_hwinit(ioc, force);
- }
- /*
- * Update BFA configuration from firmware configuration.
- */
- static void
- bfa_ioc_getattr_reply(struct bfa_ioc_s *ioc)
- {
- struct bfi_ioc_attr_s *attr = ioc->attr;
- attr->adapter_prop = be32_to_cpu(attr->adapter_prop);
- attr->card_type = be32_to_cpu(attr->card_type);
- attr->maxfrsize = be16_to_cpu(attr->maxfrsize);
- bfa_fsm_send_event(ioc, IOC_E_FWRSP_GETATTR);
- }
- /*
- * Attach time initialization of mbox logic.
- */
- static void
- bfa_ioc_mbox_attach(struct bfa_ioc_s *ioc)
- {
- struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod;
- int mc;
- INIT_LIST_HEAD(&mod->cmd_q);
- for (mc = 0; mc < BFI_MC_MAX; mc++) {
- mod->mbhdlr[mc].cbfn = NULL;
- mod->mbhdlr[mc].cbarg = ioc->bfa;
- }
- }
- /*
- * Mbox poll timer -- restarts any pending mailbox requests.
- */
- static void
- bfa_ioc_mbox_poll(struct bfa_ioc_s *ioc)
- {
- struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod;
- struct bfa_mbox_cmd_s *cmd;
- u32 stat;
- /*
- * If no command pending, do nothing
- */
- if (list_empty(&mod->cmd_q))
- return;
- /*
- * If previous command is not yet fetched by firmware, do nothing
- */
- stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
- if (stat)
- return;
- /*
- * Enqueue command to firmware.
- */
- bfa_q_deq(&mod->cmd_q, &cmd);
- bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
- }
- /*
- * Cleanup any pending requests.
- */
- static void
- bfa_ioc_mbox_hbfail(struct bfa_ioc_s *ioc)
- {
- struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod;
- struct bfa_mbox_cmd_s *cmd;
- while (!list_empty(&mod->cmd_q))
- bfa_q_deq(&mod->cmd_q, &cmd);
- }
- /*
- * Read data from SMEM to host through PCI memmap
- *
- * @param[in] ioc memory for IOC
- * @param[in] tbuf app memory to store data from smem
- * @param[in] soff smem offset
- * @param[in] sz size of smem in bytes
- */
- static bfa_status_t
- bfa_ioc_smem_read(struct bfa_ioc_s *ioc, void *tbuf, u32 soff, u32 sz)
- {
- u32 pgnum, loff, r32;
- int i, len;
- u32 *buf = tbuf;
- pgnum = bfa_ioc_smem_pgnum(ioc, soff);
- loff = bfa_ioc_smem_pgoff(ioc, soff);
- bfa_trc(ioc, pgnum);
- bfa_trc(ioc, loff);
- bfa_trc(ioc, sz);
- /*
- * Hold semaphore to serialize pll init and fwtrc.
- */
- if (BFA_FALSE == bfa_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg)) {
- bfa_trc(ioc, 0);
- return BFA_STATUS_FAILED;
- }
- writel(pgnum, ioc->ioc_regs.host_page_num_fn);
- len = sz/sizeof(u32);
- bfa_trc(ioc, len);
- for (i = 0; i < len; i++) {
- r32 = bfa_mem_read(ioc->ioc_regs.smem_page_start, loff);
- buf[i] = be32_to_cpu(r32);
- loff += sizeof(u32);
- /*
- * handle page offset wrap around
- */
- loff = PSS_SMEM_PGOFF(loff);
- if (loff == 0) {
- pgnum++;
- writel(pgnum, ioc->ioc_regs.host_page_num_fn);
- }
- }
- writel(bfa_ioc_smem_pgnum(ioc, 0), ioc->ioc_regs.host_page_num_fn);
- /*
- * release semaphore.
- */
- bfa_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg);
- bfa_trc(ioc, pgnum);
- return BFA_STATUS_OK;
- }
- /*
- * Clear SMEM data from host through PCI memmap
- *
- * @param[in] ioc memory for IOC
- * @param[in] soff smem offset
- * @param[in] sz size of smem in bytes
- */
- static bfa_status_t
- bfa_ioc_smem_clr(struct bfa_ioc_s *ioc, u32 soff, u32 sz)
- {
- int i, len;
- u32 pgnum, loff;
- pgnum = bfa_ioc_smem_pgnum(ioc, soff);
- loff = bfa_ioc_smem_pgoff(ioc, soff);
- bfa_trc(ioc, pgnum);
- bfa_trc(ioc, loff);
- bfa_trc(ioc, sz);
- /*
- * Hold semaphore to serialize pll init and fwtrc.
- */
- if (BFA_FALSE == bfa_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg)) {
- bfa_trc(ioc, 0);
- return BFA_STATUS_FAILED;
- }
- writel(pgnum, ioc->ioc_regs.host_page_num_fn);
- len = sz/sizeof(u32); /* len in words */
- bfa_trc(ioc, len);
- for (i = 0; i < len; i++) {
- bfa_mem_write(ioc->ioc_regs.smem_page_start, loff, 0);
- loff += sizeof(u32);
- /*
- * handle page offset wrap around
- */
- loff = PSS_SMEM_PGOFF(loff);
- if (loff == 0) {
- pgnum++;
- writel(pgnum, ioc->ioc_regs.host_page_num_fn);
- }
- }
- writel(bfa_ioc_smem_pgnum(ioc, 0), ioc->ioc_regs.host_page_num_fn);
- /*
- * release semaphore.
- */
- bfa_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg);
- bfa_trc(ioc, pgnum);
- return BFA_STATUS_OK;
- }
- /*
- * hal iocpf to ioc interface
- */
- static void
- bfa_ioc_pf_enabled(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(ioc, IOC_E_ENABLED);
- }
- static void
- bfa_ioc_pf_disabled(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(ioc, IOC_E_DISABLED);
- }
- static void
- bfa_ioc_pf_failed(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(ioc, IOC_E_FAILED);
- }
- static void
- bfa_ioc_pf_fwmismatch(struct bfa_ioc_s *ioc)
- {
- struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;
- /*
- * Provide enable completion callback.
- */
- ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
- BFA_LOG(KERN_WARNING, bfad, log_level,
- "Running firmware version is incompatible "
- "with the driver version\n");
- }
- /*
- * hal_ioc_public
- */
- bfa_status_t
- bfa_ioc_pll_init(struct bfa_ioc_s *ioc)
- {
- /*
- * Hold semaphore so that nobody can access the chip during init.
- */
- bfa_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg);
- bfa_ioc_pll_init_asic(ioc);
- ioc->pllinit = BFA_TRUE;
- /*
- * release semaphore.
- */
- bfa_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg);
- return BFA_STATUS_OK;
- }
- /*
- * Interface used by diag module to do firmware boot with memory test
- * as the entry vector.
- */
- void
- bfa_ioc_boot(struct bfa_ioc_s *ioc, u32 boot_type, u32 boot_env)
- {
- void __iomem *rb;
- bfa_ioc_stats(ioc, ioc_boots);
- if (bfa_ioc_pll_init(ioc) != BFA_STATUS_OK)
- return;
- /*
- * Initialize IOC state of all functions on a chip reset.
- */
- rb = ioc->pcidev.pci_bar_kva;
- if (boot_type == BFI_BOOT_TYPE_MEMTEST) {
- writel(BFI_IOC_MEMTEST, (rb + BFA_IOC0_STATE_REG));
- writel(BFI_IOC_MEMTEST, (rb + BFA_IOC1_STATE_REG));
- } else {
- writel(BFI_IOC_INITING, (rb + BFA_IOC0_STATE_REG));
- writel(BFI_IOC_INITING, (rb + BFA_IOC1_STATE_REG));
- }
- bfa_ioc_msgflush(ioc);
- bfa_ioc_download_fw(ioc, boot_type, boot_env);
- /*
- * Enable interrupts just before starting LPU
- */
- ioc->cbfn->reset_cbfn(ioc->bfa);
- bfa_ioc_lpu_start(ioc);
- }
- /*
- * Enable/disable IOC failure auto recovery.
- */
- void
- bfa_ioc_auto_recover(bfa_boolean_t auto_recover)
- {
- bfa_auto_recover = auto_recover;
- }
- bfa_boolean_t
- bfa_ioc_is_operational(struct bfa_ioc_s *ioc)
- {
- return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_op);
- }
- bfa_boolean_t
- bfa_ioc_is_initialized(struct bfa_ioc_s *ioc)
- {
- u32 r32 = readl(ioc->ioc_regs.ioc_fwstate);
- return ((r32 != BFI_IOC_UNINIT) &&
- (r32 != BFI_IOC_INITING) &&
- (r32 != BFI_IOC_MEMTEST));
- }
- void
- bfa_ioc_msgget(struct bfa_ioc_s *ioc, void *mbmsg)
- {
- u32 *msgp = mbmsg;
- u32 r32;
- int i;
- /*
- * read the MBOX msg
- */
- for (i = 0; i < (sizeof(union bfi_ioc_i2h_msg_u) / sizeof(u32));
- i++) {
- r32 = readl(ioc->ioc_regs.lpu_mbox +
- i * sizeof(u32));
- msgp[i] = cpu_to_be32(r32);
- }
- /*
- * turn off mailbox interrupt by clearing mailbox status
- */
- writel(1, ioc->ioc_regs.lpu_mbox_cmd);
- readl(ioc->ioc_regs.lpu_mbox_cmd);
- }
- void
- bfa_ioc_isr(struct bfa_ioc_s *ioc, struct bfi_mbmsg_s *m)
- {
- union bfi_ioc_i2h_msg_u *msg;
- struct bfa_iocpf_s *iocpf = &ioc->iocpf;
- msg = (union bfi_ioc_i2h_msg_u *) m;
- bfa_ioc_stats(ioc, ioc_isrs);
- switch (msg->mh.msg_id) {
- case BFI_IOC_I2H_HBEAT:
- break;
- case BFI_IOC_I2H_READY_EVENT:
- bfa_fsm_send_event(iocpf, IOCPF_E_FWREADY);
- break;
- case BFI_IOC_I2H_ENABLE_REPLY:
- bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_ENABLE);
- break;
- case BFI_IOC_I2H_DISABLE_REPLY:
- bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_DISABLE);
- break;
- case BFI_IOC_I2H_GETATTR_REPLY:
- bfa_ioc_getattr_reply(ioc);
- break;
- default:
- bfa_trc(ioc, msg->mh.msg_id);
- bfa_assert(0);
- }
- }
- /*
- * IOC attach time initialization and setup.
- *
- * @param[in] ioc memory for IOC
- * @param[in] bfa driver instance structure
- */
- void
- bfa_ioc_attach(struct bfa_ioc_s *ioc, void *bfa, struct bfa_ioc_cbfn_s *cbfn,
- struct bfa_timer_mod_s *timer_mod)
- {
- ioc->bfa = bfa;
- ioc->cbfn = cbfn;
- ioc->timer_mod = timer_mod;
- ioc->fcmode = BFA_FALSE;
- ioc->pllinit = BFA_FALSE;
- ioc->dbg_fwsave_once = BFA_TRUE;
- ioc->iocpf.ioc = ioc;
- bfa_ioc_mbox_attach(ioc);
- INIT_LIST_HEAD(&ioc->hb_notify_q);
- bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
- bfa_fsm_send_event(ioc, IOC_E_RESET);
- }
- /*
- * Driver detach time IOC cleanup.
- */
- void
- bfa_ioc_detach(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(ioc, IOC_E_DETACH);
- }
- /*
- * Setup IOC PCI properties.
- *
- * @param[in] pcidev PCI device information for this IOC
- */
- void
- bfa_ioc_pci_init(struct bfa_ioc_s *ioc, struct bfa_pcidev_s *pcidev,
- enum bfi_mclass mc)
- {
- ioc->ioc_mc = mc;
- ioc->pcidev = *pcidev;
- ioc->ctdev = bfa_asic_id_ct(ioc->pcidev.device_id);
- ioc->cna = ioc->ctdev && !ioc->fcmode;
- /*
- * Set asic specific interfaces. See bfa_ioc_cb.c and bfa_ioc_ct.c
- */
- if (ioc->ctdev)
- bfa_ioc_set_ct_hwif(ioc);
- else
- bfa_ioc_set_cb_hwif(ioc);
- bfa_ioc_map_port(ioc);
- bfa_ioc_reg_init(ioc);
- }
- /*
- * Initialize IOC dma memory
- *
- * @param[in] dm_kva kernel virtual address of IOC dma memory
- * @param[in] dm_pa physical address of IOC dma memory
- */
- void
- bfa_ioc_mem_claim(struct bfa_ioc_s *ioc, u8 *dm_kva, u64 dm_pa)
- {
- /*
- * dma memory for firmware attribute
- */
- ioc->attr_dma.kva = dm_kva;
- ioc->attr_dma.pa = dm_pa;
- ioc->attr = (struct bfi_ioc_attr_s *) dm_kva;
- }
- /*
- * Return size of dma memory required.
- */
- u32
- bfa_ioc_meminfo(void)
- {
- return BFA_ROUNDUP(sizeof(struct bfi_ioc_attr_s), BFA_DMA_ALIGN_SZ);
- }
- void
- bfa_ioc_enable(struct bfa_ioc_s *ioc)
- {
- bfa_ioc_stats(ioc, ioc_enables);
- ioc->dbg_fwsave_once = BFA_TRUE;
- bfa_fsm_send_event(ioc, IOC_E_ENABLE);
- }
- void
- bfa_ioc_disable(struct bfa_ioc_s *ioc)
- {
- bfa_ioc_stats(ioc, ioc_disables);
- bfa_fsm_send_event(ioc, IOC_E_DISABLE);
- }
- /*
- * Returns memory required for saving firmware trace in case of crash.
- * Driver must call this interface to allocate memory required for
- * automatic saving of firmware trace. Driver should call
- * bfa_ioc_debug_memclaim() right after bfa_ioc_attach() to setup this
- * trace memory.
- */
- int
- bfa_ioc_debug_trcsz(bfa_boolean_t auto_recover)
- {
- return (auto_recover) ? BFA_DBG_FWTRC_LEN : 0;
- }
- /*
- * Initialize memory for saving firmware trace. Driver must initialize
- * trace memory before call bfa_ioc_enable().
- */
- void
- bfa_ioc_debug_memclaim(struct bfa_ioc_s *ioc, void *dbg_fwsave)
- {
- ioc->dbg_fwsave = dbg_fwsave;
- ioc->dbg_fwsave_len = bfa_ioc_debug_trcsz(ioc->iocpf.auto_recover);
- }
- u32
- bfa_ioc_smem_pgnum(struct bfa_ioc_s *ioc, u32 fmaddr)
- {
- return PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, fmaddr);
- }
- u32
- bfa_ioc_smem_pgoff(struct bfa_ioc_s *ioc, u32 fmaddr)
- {
- return PSS_SMEM_PGOFF(fmaddr);
- }
- /*
- * Register mailbox message handler functions
- *
- * @param[in] ioc IOC instance
- * @param[in] mcfuncs message class handler functions
- */
- void
- bfa_ioc_mbox_register(struct bfa_ioc_s *ioc, bfa_ioc_mbox_mcfunc_t *mcfuncs)
- {
- struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod;
- int mc;
- for (mc = 0; mc < BFI_MC_MAX; mc++)
- mod->mbhdlr[mc].cbfn = mcfuncs[mc];
- }
- /*
- * Register mailbox message handler function, to be called by common modules
- */
- void
- bfa_ioc_mbox_regisr(struct bfa_ioc_s *ioc, enum bfi_mclass mc,
- bfa_ioc_mbox_mcfunc_t cbfn, void *cbarg)
- {
- struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod;
- mod->mbhdlr[mc].cbfn = cbfn;
- mod->mbhdlr[mc].cbarg = cbarg;
- }
- /*
- * Queue a mailbox command request to firmware. Waits if mailbox is busy.
- * Responsibility of caller to serialize
- *
- * @param[in] ioc IOC instance
- * @param[i] cmd Mailbox command
- */
- void
- bfa_ioc_mbox_queue(struct bfa_ioc_s *ioc, struct bfa_mbox_cmd_s *cmd)
- {
- struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod;
- u32 stat;
- /*
- * If a previous command is pending, queue new command
- */
- if (!list_empty(&mod->cmd_q)) {
- list_add_tail(&cmd->qe, &mod->cmd_q);
- return;
- }
- /*
- * If mailbox is busy, queue command for poll timer
- */
- stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
- if (stat) {
- list_add_tail(&cmd->qe, &mod->cmd_q);
- return;
- }
- /*
- * mailbox is free -- queue command to firmware
- */
- bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
- }
- /*
- * Handle mailbox interrupts
- */
- void
- bfa_ioc_mbox_isr(struct bfa_ioc_s *ioc)
- {
- struct bfa_ioc_mbox_mod_s *mod = &ioc->mbox_mod;
- struct bfi_mbmsg_s m;
- int mc;
- bfa_ioc_msgget(ioc, &m);
- /*
- * Treat IOC message class as special.
- */
- mc = m.mh.msg_class;
- if (mc == BFI_MC_IOC) {
- bfa_ioc_isr(ioc, &m);
- return;
- }
- if ((mc > BFI_MC_MAX) || (mod->mbhdlr[mc].cbfn == NULL))
- return;
- mod->mbhdlr[mc].cbfn(mod->mbhdlr[mc].cbarg, &m);
- }
- void
- bfa_ioc_error_isr(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(ioc, IOC_E_HWERROR);
- }
- void
- bfa_ioc_set_fcmode(struct bfa_ioc_s *ioc)
- {
- ioc->fcmode = BFA_TRUE;
- ioc->port_id = bfa_ioc_pcifn(ioc);
- }
- /*
- * return true if IOC is disabled
- */
- bfa_boolean_t
- bfa_ioc_is_disabled(struct bfa_ioc_s *ioc)
- {
- return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabling) ||
- bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabled);
- }
- /*
- * return true if IOC firmware is different.
- */
- bfa_boolean_t
- bfa_ioc_fw_mismatch(struct bfa_ioc_s *ioc)
- {
- return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_reset) ||
- bfa_fsm_cmp_state(&ioc->iocpf, bfa_iocpf_sm_fwcheck) ||
- bfa_fsm_cmp_state(&ioc->iocpf, bfa_iocpf_sm_mismatch);
- }
- #define bfa_ioc_state_disabled(__sm) \
- (((__sm) == BFI_IOC_UNINIT) || \
- ((__sm) == BFI_IOC_INITING) || \
- ((__sm) == BFI_IOC_HWINIT) || \
- ((__sm) == BFI_IOC_DISABLED) || \
- ((__sm) == BFI_IOC_FAIL) || \
- ((__sm) == BFI_IOC_CFG_DISABLED))
- /*
- * Check if adapter is disabled -- both IOCs should be in a disabled
- * state.
- */
- bfa_boolean_t
- bfa_ioc_adapter_is_disabled(struct bfa_ioc_s *ioc)
- {
- u32 ioc_state;
- void __iomem *rb = ioc->pcidev.pci_bar_kva;
- if (!bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabled))
- return BFA_FALSE;
- ioc_state = readl(rb + BFA_IOC0_STATE_REG);
- if (!bfa_ioc_state_disabled(ioc_state))
- return BFA_FALSE;
- if (ioc->pcidev.device_id != BFA_PCI_DEVICE_ID_FC_8G1P) {
- ioc_state = readl(rb + BFA_IOC1_STATE_REG);
- if (!bfa_ioc_state_disabled(ioc_state))
- return BFA_FALSE;
- }
- return BFA_TRUE;
- }
- /*
- * Add to IOC heartbeat failure notification queue. To be used by common
- * modules such as cee, port, diag.
- */
- void
- bfa_ioc_hbfail_register(struct bfa_ioc_s *ioc,
- struct bfa_ioc_hbfail_notify_s *notify)
- {
- list_add_tail(¬ify->qe, &ioc->hb_notify_q);
- }
- #define BFA_MFG_NAME "Brocade"
- void
- bfa_ioc_get_adapter_attr(struct bfa_ioc_s *ioc,
- struct bfa_adapter_attr_s *ad_attr)
- {
- struct bfi_ioc_attr_s *ioc_attr;
- ioc_attr = ioc->attr;
- bfa_ioc_get_adapter_serial_num(ioc, ad_attr->serial_num);
- bfa_ioc_get_adapter_fw_ver(ioc, ad_attr->fw_ver);
- bfa_ioc_get_adapter_optrom_ver(ioc, ad_attr->optrom_ver);
- bfa_ioc_get_adapter_manufacturer(ioc, ad_attr->manufacturer);
- memcpy(&ad_attr->vpd, &ioc_attr->vpd,
- sizeof(struct bfa_mfg_vpd_s));
- ad_attr->nports = bfa_ioc_get_nports(ioc);
- ad_attr->max_speed = bfa_ioc_speed_sup(ioc);
- bfa_ioc_get_adapter_model(ioc, ad_attr->model);
- /* For now, model descr uses same model string */
- bfa_ioc_get_adapter_model(ioc, ad_attr->model_descr);
- ad_attr->card_type = ioc_attr->card_type;
- ad_attr->is_mezz = bfa_mfg_is_mezz(ioc_attr->card_type);
- if (BFI_ADAPTER_IS_SPECIAL(ioc_attr->adapter_prop))
- ad_attr->prototype = 1;
- else
- ad_attr->prototype = 0;
- ad_attr->pwwn = bfa_ioc_get_pwwn(ioc);
- ad_attr->mac = bfa_ioc_get_mac(ioc);
- ad_attr->pcie_gen = ioc_attr->pcie_gen;
- ad_attr->pcie_lanes = ioc_attr->pcie_lanes;
- ad_attr->pcie_lanes_orig = ioc_attr->pcie_lanes_orig;
- ad_attr->asic_rev = ioc_attr->asic_rev;
- bfa_ioc_get_pci_chip_rev(ioc, ad_attr->hw_ver);
- ad_attr->cna_capable = ioc->cna;
- ad_attr->trunk_capable = (ad_attr->nports > 1) && !ioc->cna;
- }
- enum bfa_ioc_type_e
- bfa_ioc_get_type(struct bfa_ioc_s *ioc)
- {
- if (!ioc->ctdev || ioc->fcmode)
- return BFA_IOC_TYPE_FC;
- else if (ioc->ioc_mc == BFI_MC_IOCFC)
- return BFA_IOC_TYPE_FCoE;
- else if (ioc->ioc_mc == BFI_MC_LL)
- return BFA_IOC_TYPE_LL;
- else {
- bfa_assert(ioc->ioc_mc == BFI_MC_LL);
- return BFA_IOC_TYPE_LL;
- }
- }
- void
- bfa_ioc_get_adapter_serial_num(struct bfa_ioc_s *ioc, char *serial_num)
- {
- memset((void *)serial_num, 0, BFA_ADAPTER_SERIAL_NUM_LEN);
- memcpy((void *)serial_num,
- (void *)ioc->attr->brcd_serialnum,
- BFA_ADAPTER_SERIAL_NUM_LEN);
- }
- void
- bfa_ioc_get_adapter_fw_ver(struct bfa_ioc_s *ioc, char *fw_ver)
- {
- memset((void *)fw_ver, 0, BFA_VERSION_LEN);
- memcpy(fw_ver, ioc->attr->fw_version, BFA_VERSION_LEN);
- }
- void
- bfa_ioc_get_pci_chip_rev(struct bfa_ioc_s *ioc, char *chip_rev)
- {
- bfa_assert(chip_rev);
- memset((void *)chip_rev, 0, BFA_IOC_CHIP_REV_LEN);
- chip_rev[0] = 'R';
- chip_rev[1] = 'e';
- chip_rev[2] = 'v';
- chip_rev[3] = '-';
- chip_rev[4] = ioc->attr->asic_rev;
- chip_rev[5] = '\0';
- }
- void
- bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc_s *ioc, char *optrom_ver)
- {
- memset((void *)optrom_ver, 0, BFA_VERSION_LEN);
- memcpy(optrom_ver, ioc->attr->optrom_version,
- BFA_VERSION_LEN);
- }
- void
- bfa_ioc_get_adapter_manufacturer(struct bfa_ioc_s *ioc, char *manufacturer)
- {
- memset((void *)manufacturer, 0, BFA_ADAPTER_MFG_NAME_LEN);
- memcpy(manufacturer, BFA_MFG_NAME, BFA_ADAPTER_MFG_NAME_LEN);
- }
- void
- bfa_ioc_get_adapter_model(struct bfa_ioc_s *ioc, char *model)
- {
- struct bfi_ioc_attr_s *ioc_attr;
- bfa_assert(model);
- memset((void *)model, 0, BFA_ADAPTER_MODEL_NAME_LEN);
- ioc_attr = ioc->attr;
- /*
- * model name
- */
- snprintf(model, BFA_ADAPTER_MODEL_NAME_LEN, "%s-%u",
- BFA_MFG_NAME, ioc_attr->card_type);
- }
- enum bfa_ioc_state
- bfa_ioc_get_state(struct bfa_ioc_s *ioc)
- {
- enum bfa_iocpf_state iocpf_st;
- enum bfa_ioc_state ioc_st = bfa_sm_to_state(ioc_sm_table, ioc->fsm);
- if (ioc_st == BFA_IOC_ENABLING ||
- ioc_st == BFA_IOC_FAIL || ioc_st == BFA_IOC_INITFAIL) {
- iocpf_st = bfa_sm_to_state(iocpf_sm_table, ioc->iocpf.fsm);
- switch (iocpf_st) {
- case BFA_IOCPF_SEMWAIT:
- ioc_st = BFA_IOC_SEMWAIT;
- break;
- case BFA_IOCPF_HWINIT:
- ioc_st = BFA_IOC_HWINIT;
- break;
- case BFA_IOCPF_FWMISMATCH:
- ioc_st = BFA_IOC_FWMISMATCH;
- break;
- case BFA_IOCPF_FAIL:
- ioc_st = BFA_IOC_FAIL;
- break;
- case BFA_IOCPF_INITFAIL:
- ioc_st = BFA_IOC_INITFAIL;
- break;
- default:
- break;
- }
- }
- return ioc_st;
- }
- void
- bfa_ioc_get_attr(struct bfa_ioc_s *ioc, struct bfa_ioc_attr_s *ioc_attr)
- {
- memset((void *)ioc_attr, 0, sizeof(struct bfa_ioc_attr_s));
- ioc_attr->state = bfa_ioc_get_state(ioc);
- ioc_attr->port_id = ioc->port_id;
- ioc_attr->ioc_type = bfa_ioc_get_type(ioc);
- bfa_ioc_get_adapter_attr(ioc, &ioc_attr->adapter_attr);
- ioc_attr->pci_attr.device_id = ioc->pcidev.device_id;
- ioc_attr->pci_attr.pcifn = ioc->pcidev.pci_func;
- bfa_ioc_get_pci_chip_rev(ioc, ioc_attr->pci_attr.chip_rev);
- }
- /*
- * hal_wwn_public
- */
- wwn_t
- bfa_ioc_get_pwwn(struct bfa_ioc_s *ioc)
- {
- return ioc->attr->pwwn;
- }
- wwn_t
- bfa_ioc_get_nwwn(struct bfa_ioc_s *ioc)
- {
- return ioc->attr->nwwn;
- }
- u64
- bfa_ioc_get_adid(struct bfa_ioc_s *ioc)
- {
- return ioc->attr->mfg_pwwn;
- }
- mac_t
- bfa_ioc_get_mac(struct bfa_ioc_s *ioc)
- {
- /*
- * Check the IOC type and return the appropriate MAC
- */
- if (bfa_ioc_get_type(ioc) == BFA_IOC_TYPE_FCoE)
- return ioc->attr->fcoe_mac;
- else
- return ioc->attr->mac;
- }
- wwn_t
- bfa_ioc_get_mfg_pwwn(struct bfa_ioc_s *ioc)
- {
- return ioc->attr->mfg_pwwn;
- }
- wwn_t
- bfa_ioc_get_mfg_nwwn(struct bfa_ioc_s *ioc)
- {
- return ioc->attr->mfg_nwwn;
- }
- mac_t
- bfa_ioc_get_mfg_mac(struct bfa_ioc_s *ioc)
- {
- mac_t m;
- m = ioc->attr->mfg_mac;
- if (bfa_mfg_is_old_wwn_mac_model(ioc->attr->card_type))
- m.mac[MAC_ADDRLEN - 1] += bfa_ioc_pcifn(ioc);
- else
- bfa_mfg_increment_wwn_mac(&(m.mac[MAC_ADDRLEN-3]),
- bfa_ioc_pcifn(ioc));
- return m;
- }
- bfa_boolean_t
- bfa_ioc_get_fcmode(struct bfa_ioc_s *ioc)
- {
- return ioc->fcmode || !bfa_asic_id_ct(ioc->pcidev.device_id);
- }
- /*
- * Retrieve saved firmware trace from a prior IOC failure.
- */
- bfa_status_t
- bfa_ioc_debug_fwsave(struct bfa_ioc_s *ioc, void *trcdata, int *trclen)
- {
- int tlen;
- if (ioc->dbg_fwsave_len == 0)
- return BFA_STATUS_ENOFSAVE;
- tlen = *trclen;
- if (tlen > ioc->dbg_fwsave_len)
- tlen = ioc->dbg_fwsave_len;
- memcpy(trcdata, ioc->dbg_fwsave, tlen);
- *trclen = tlen;
- return BFA_STATUS_OK;
- }
- /*
- * Clear saved firmware trace
- */
- void
- bfa_ioc_debug_fwsave_clear(struct bfa_ioc_s *ioc)
- {
- ioc->dbg_fwsave_once = BFA_TRUE;
- }
- /*
- * Retrieve saved firmware trace from a prior IOC failure.
- */
- bfa_status_t
- bfa_ioc_debug_fwtrc(struct bfa_ioc_s *ioc, void *trcdata, int *trclen)
- {
- u32 loff = BFA_DBG_FWTRC_OFF(bfa_ioc_portid(ioc));
- int tlen;
- bfa_status_t status;
- bfa_trc(ioc, *trclen);
- tlen = *trclen;
- if (tlen > BFA_DBG_FWTRC_LEN)
- tlen = BFA_DBG_FWTRC_LEN;
- status = bfa_ioc_smem_read(ioc, trcdata, loff, tlen);
- *trclen = tlen;
- return status;
- }
- static void
- bfa_ioc_send_fwsync(struct bfa_ioc_s *ioc)
- {
- struct bfa_mbox_cmd_s cmd;
- struct bfi_ioc_ctrl_req_s *req = (struct bfi_ioc_ctrl_req_s *) cmd.msg;
- bfi_h2i_set(req->mh, BFI_MC_IOC, BFI_IOC_H2I_DBG_SYNC,
- bfa_ioc_portid(ioc));
- req->ioc_class = ioc->ioc_mc;
- bfa_ioc_mbox_queue(ioc, &cmd);
- }
- static void
- bfa_ioc_fwsync(struct bfa_ioc_s *ioc)
- {
- u32 fwsync_iter = 1000;
- bfa_ioc_send_fwsync(ioc);
- /*
- * After sending a fw sync mbox command wait for it to
- * take effect. We will not wait for a response because
- * 1. fw_sync mbox cmd doesn't have a response.
- * 2. Even if we implement that, interrupts might not
- * be enabled when we call this function.
- * So, just keep checking if any mbox cmd is pending, and
- * after waiting for a reasonable amount of time, go ahead.
- * It is possible that fw has crashed and the mbox command
- * is never acknowledged.
- */
- while (bfa_ioc_mbox_cmd_pending(ioc) && fwsync_iter > 0)
- fwsync_iter--;
- }
- /*
- * Dump firmware smem
- */
- bfa_status_t
- bfa_ioc_debug_fwcore(struct bfa_ioc_s *ioc, void *buf,
- u32 *offset, int *buflen)
- {
- u32 loff;
- int dlen;
- bfa_status_t status;
- u32 smem_len = BFA_IOC_FW_SMEM_SIZE(ioc);
- if (*offset >= smem_len) {
- *offset = *buflen = 0;
- return BFA_STATUS_EINVAL;
- }
- loff = *offset;
- dlen = *buflen;
- /*
- * First smem read, sync smem before proceeding
- * No need to sync before reading every chunk.
- */
- if (loff == 0)
- bfa_ioc_fwsync(ioc);
- if ((loff + dlen) >= smem_len)
- dlen = smem_len - loff;
- status = bfa_ioc_smem_read(ioc, buf, loff, dlen);
- if (status != BFA_STATUS_OK) {
- *offset = *buflen = 0;
- return status;
- }
- *offset += dlen;
- if (*offset >= smem_len)
- *offset = 0;
- *buflen = dlen;
- return status;
- }
- /*
- * Firmware statistics
- */
- bfa_status_t
- bfa_ioc_fw_stats_get(struct bfa_ioc_s *ioc, void *stats)
- {
- u32 loff = BFI_IOC_FWSTATS_OFF + \
- BFI_IOC_FWSTATS_SZ * (bfa_ioc_portid(ioc));
- int tlen;
- bfa_status_t status;
- if (ioc->stats_busy) {
- bfa_trc(ioc, ioc->stats_busy);
- return BFA_STATUS_DEVBUSY;
- }
- ioc->stats_busy = BFA_TRUE;
- tlen = sizeof(struct bfa_fw_stats_s);
- status = bfa_ioc_smem_read(ioc, stats, loff, tlen);
- ioc->stats_busy = BFA_FALSE;
- return status;
- }
- bfa_status_t
- bfa_ioc_fw_stats_clear(struct bfa_ioc_s *ioc)
- {
- u32 loff = BFI_IOC_FWSTATS_OFF + \
- BFI_IOC_FWSTATS_SZ * (bfa_ioc_portid(ioc));
- int tlen;
- bfa_status_t status;
- if (ioc->stats_busy) {
- bfa_trc(ioc, ioc->stats_busy);
- return BFA_STATUS_DEVBUSY;
- }
- ioc->stats_busy = BFA_TRUE;
- tlen = sizeof(struct bfa_fw_stats_s);
- status = bfa_ioc_smem_clr(ioc, loff, tlen);
- ioc->stats_busy = BFA_FALSE;
- return status;
- }
- /*
- * Save firmware trace if configured.
- */
- static void
- bfa_ioc_debug_save(struct bfa_ioc_s *ioc)
- {
- int tlen;
- if (ioc->dbg_fwsave_len) {
- tlen = ioc->dbg_fwsave_len;
- bfa_ioc_debug_fwtrc(ioc, ioc->dbg_fwsave, &tlen);
- }
- }
- /*
- * Firmware failure detected. Start recovery actions.
- */
- static void
- bfa_ioc_recover(struct bfa_ioc_s *ioc)
- {
- if (ioc->dbg_fwsave_once) {
- ioc->dbg_fwsave_once = BFA_FALSE;
- bfa_ioc_debug_save(ioc);
- }
- bfa_ioc_stats(ioc, ioc_hbfails);
- bfa_fsm_send_event(ioc, IOC_E_HBFAIL);
- }
- static void
- bfa_ioc_check_attr_wwns(struct bfa_ioc_s *ioc)
- {
- if (bfa_ioc_get_type(ioc) == BFA_IOC_TYPE_LL)
- return;
- }
- /*
- * hal_iocpf_pvt BFA IOC PF private functions
- */
- static void
- bfa_iocpf_enable(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_ENABLE);
- }
- static void
- bfa_iocpf_disable(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_DISABLE);
- }
- static void
- bfa_iocpf_fail(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FAIL);
- }
- static void
- bfa_iocpf_initfail(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_INITFAIL);
- }
- static void
- bfa_iocpf_getattrfail(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_GETATTRFAIL);
- }
- static void
- bfa_iocpf_stop(struct bfa_ioc_s *ioc)
- {
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_STOP);
- }
- static void
- bfa_iocpf_timeout(void *ioc_arg)
- {
- struct bfa_ioc_s *ioc = (struct bfa_ioc_s *) ioc_arg;
- bfa_trc(ioc, 0);
- bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT);
- }
- static void
- bfa_iocpf_sem_timeout(void *ioc_arg)
- {
- struct bfa_ioc_s *ioc = (struct bfa_ioc_s *) ioc_arg;
- bfa_ioc_hw_sem_get(ioc);
- }
- /*
- * bfa timer function
- */
- void
- bfa_timer_init(struct bfa_timer_mod_s *mod)
- {
- INIT_LIST_HEAD(&mod->timer_q);
- }
- void
- bfa_timer_beat(struct bfa_timer_mod_s *mod)
- {
- struct list_head *qh = &mod->timer_q;
- struct list_head *qe, *qe_next;
- struct bfa_timer_s *elem;
- struct list_head timedout_q;
- INIT_LIST_HEAD(&timedout_q);
- qe = bfa_q_next(qh);
- while (qe != qh) {
- qe_next = bfa_q_next(qe);
- elem = (struct bfa_timer_s *) qe;
- if (elem->timeout <= BFA_TIMER_FREQ) {
- elem->timeout = 0;
- list_del(&elem->qe);
- list_add_tail(&elem->qe, &timedout_q);
- } else {
- elem->timeout -= BFA_TIMER_FREQ;
- }
- qe = qe_next; /* go to next elem */
- }
- /*
- * Pop all the timeout entries
- */
- while (!list_empty(&timedout_q)) {
- bfa_q_deq(&timedout_q, &elem);
- elem->timercb(elem->arg);
- }
- }
- /*
- * Should be called with lock protection
- */
- void
- bfa_timer_begin(struct bfa_timer_mod_s *mod, struct bfa_timer_s *timer,
- void (*timercb) (void *), void *arg, unsigned int timeout)
- {
- bfa_assert(timercb != NULL);
- bfa_assert(!bfa_q_is_on_q(&mod->timer_q, timer));
- timer->timeout = timeout;
- timer->timercb = timercb;
- timer->arg = arg;
- list_add_tail(&timer->qe, &mod->timer_q);
- }
- /*
- * Should be called with lock protection
- */
- void
- bfa_timer_stop(struct bfa_timer_s *timer)
- {
- bfa_assert(!list_empty(&timer->qe));
- list_del(&timer->qe);
- }
|