bfa_core.c 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  1. /*
  2. * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
  3. * All rights reserved
  4. * www.brocade.com
  5. *
  6. * Linux driver for Brocade Fibre Channel Host Bus Adapter.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License (GPL) Version 2 as
  10. * published by the Free Software Foundation
  11. *
  12. * This program is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. */
  17. #include "bfad_drv.h"
  18. #include "bfa_modules.h"
  19. #include "bfi_reg.h"
  20. BFA_TRC_FILE(HAL, CORE);
  21. /*
  22. * BFA module list terminated by NULL
  23. */
  24. static struct bfa_module_s *hal_mods[] = {
  25. &hal_mod_fcdiag,
  26. &hal_mod_sgpg,
  27. &hal_mod_fcport,
  28. &hal_mod_fcxp,
  29. &hal_mod_lps,
  30. &hal_mod_uf,
  31. &hal_mod_rport,
  32. &hal_mod_fcp,
  33. &hal_mod_dconf,
  34. NULL
  35. };
  36. /*
  37. * Message handlers for various modules.
  38. */
  39. static bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = {
  40. bfa_isr_unhandled, /* NONE */
  41. bfa_isr_unhandled, /* BFI_MC_IOC */
  42. bfa_fcdiag_intr, /* BFI_MC_DIAG */
  43. bfa_isr_unhandled, /* BFI_MC_FLASH */
  44. bfa_isr_unhandled, /* BFI_MC_CEE */
  45. bfa_fcport_isr, /* BFI_MC_FCPORT */
  46. bfa_isr_unhandled, /* BFI_MC_IOCFC */
  47. bfa_isr_unhandled, /* BFI_MC_LL */
  48. bfa_uf_isr, /* BFI_MC_UF */
  49. bfa_fcxp_isr, /* BFI_MC_FCXP */
  50. bfa_lps_isr, /* BFI_MC_LPS */
  51. bfa_rport_isr, /* BFI_MC_RPORT */
  52. bfa_itn_isr, /* BFI_MC_ITN */
  53. bfa_isr_unhandled, /* BFI_MC_IOIM_READ */
  54. bfa_isr_unhandled, /* BFI_MC_IOIM_WRITE */
  55. bfa_isr_unhandled, /* BFI_MC_IOIM_IO */
  56. bfa_ioim_isr, /* BFI_MC_IOIM */
  57. bfa_ioim_good_comp_isr, /* BFI_MC_IOIM_IOCOM */
  58. bfa_tskim_isr, /* BFI_MC_TSKIM */
  59. bfa_isr_unhandled, /* BFI_MC_SBOOT */
  60. bfa_isr_unhandled, /* BFI_MC_IPFC */
  61. bfa_isr_unhandled, /* BFI_MC_PORT */
  62. bfa_isr_unhandled, /* --------- */
  63. bfa_isr_unhandled, /* --------- */
  64. bfa_isr_unhandled, /* --------- */
  65. bfa_isr_unhandled, /* --------- */
  66. bfa_isr_unhandled, /* --------- */
  67. bfa_isr_unhandled, /* --------- */
  68. bfa_isr_unhandled, /* --------- */
  69. bfa_isr_unhandled, /* --------- */
  70. bfa_isr_unhandled, /* --------- */
  71. bfa_isr_unhandled, /* --------- */
  72. };
  73. /*
  74. * Message handlers for mailbox command classes
  75. */
  76. static bfa_ioc_mbox_mcfunc_t bfa_mbox_isrs[BFI_MC_MAX] = {
  77. NULL,
  78. NULL, /* BFI_MC_IOC */
  79. NULL, /* BFI_MC_DIAG */
  80. NULL, /* BFI_MC_FLASH */
  81. NULL, /* BFI_MC_CEE */
  82. NULL, /* BFI_MC_PORT */
  83. bfa_iocfc_isr, /* BFI_MC_IOCFC */
  84. NULL,
  85. };
  86. static void
  87. bfa_com_port_attach(struct bfa_s *bfa)
  88. {
  89. struct bfa_port_s *port = &bfa->modules.port;
  90. struct bfa_mem_dma_s *port_dma = BFA_MEM_PORT_DMA(bfa);
  91. bfa_port_attach(port, &bfa->ioc, bfa, bfa->trcmod);
  92. bfa_port_mem_claim(port, port_dma->kva_curp, port_dma->dma_curp);
  93. }
  94. /*
  95. * ablk module attach
  96. */
  97. static void
  98. bfa_com_ablk_attach(struct bfa_s *bfa)
  99. {
  100. struct bfa_ablk_s *ablk = &bfa->modules.ablk;
  101. struct bfa_mem_dma_s *ablk_dma = BFA_MEM_ABLK_DMA(bfa);
  102. bfa_ablk_attach(ablk, &bfa->ioc);
  103. bfa_ablk_memclaim(ablk, ablk_dma->kva_curp, ablk_dma->dma_curp);
  104. }
  105. static void
  106. bfa_com_cee_attach(struct bfa_s *bfa)
  107. {
  108. struct bfa_cee_s *cee = &bfa->modules.cee;
  109. struct bfa_mem_dma_s *cee_dma = BFA_MEM_CEE_DMA(bfa);
  110. cee->trcmod = bfa->trcmod;
  111. bfa_cee_attach(cee, &bfa->ioc, bfa);
  112. bfa_cee_mem_claim(cee, cee_dma->kva_curp, cee_dma->dma_curp);
  113. }
  114. static void
  115. bfa_com_sfp_attach(struct bfa_s *bfa)
  116. {
  117. struct bfa_sfp_s *sfp = BFA_SFP_MOD(bfa);
  118. struct bfa_mem_dma_s *sfp_dma = BFA_MEM_SFP_DMA(bfa);
  119. bfa_sfp_attach(sfp, &bfa->ioc, bfa, bfa->trcmod);
  120. bfa_sfp_memclaim(sfp, sfp_dma->kva_curp, sfp_dma->dma_curp);
  121. }
  122. static void
  123. bfa_com_flash_attach(struct bfa_s *bfa, bfa_boolean_t mincfg)
  124. {
  125. struct bfa_flash_s *flash = BFA_FLASH(bfa);
  126. struct bfa_mem_dma_s *flash_dma = BFA_MEM_FLASH_DMA(bfa);
  127. bfa_flash_attach(flash, &bfa->ioc, bfa, bfa->trcmod, mincfg);
  128. bfa_flash_memclaim(flash, flash_dma->kva_curp,
  129. flash_dma->dma_curp, mincfg);
  130. }
  131. static void
  132. bfa_com_diag_attach(struct bfa_s *bfa)
  133. {
  134. struct bfa_diag_s *diag = BFA_DIAG_MOD(bfa);
  135. struct bfa_mem_dma_s *diag_dma = BFA_MEM_DIAG_DMA(bfa);
  136. bfa_diag_attach(diag, &bfa->ioc, bfa, bfa_fcport_beacon, bfa->trcmod);
  137. bfa_diag_memclaim(diag, diag_dma->kva_curp, diag_dma->dma_curp);
  138. }
  139. static void
  140. bfa_com_phy_attach(struct bfa_s *bfa, bfa_boolean_t mincfg)
  141. {
  142. struct bfa_phy_s *phy = BFA_PHY(bfa);
  143. struct bfa_mem_dma_s *phy_dma = BFA_MEM_PHY_DMA(bfa);
  144. bfa_phy_attach(phy, &bfa->ioc, bfa, bfa->trcmod, mincfg);
  145. bfa_phy_memclaim(phy, phy_dma->kva_curp, phy_dma->dma_curp, mincfg);
  146. }
  147. /*
  148. * BFA IOC FC related definitions
  149. */
  150. /*
  151. * IOC local definitions
  152. */
  153. #define BFA_IOCFC_TOV 5000 /* msecs */
  154. enum {
  155. BFA_IOCFC_ACT_NONE = 0,
  156. BFA_IOCFC_ACT_INIT = 1,
  157. BFA_IOCFC_ACT_STOP = 2,
  158. BFA_IOCFC_ACT_DISABLE = 3,
  159. BFA_IOCFC_ACT_ENABLE = 4,
  160. };
  161. #define DEF_CFG_NUM_FABRICS 1
  162. #define DEF_CFG_NUM_LPORTS 256
  163. #define DEF_CFG_NUM_CQS 4
  164. #define DEF_CFG_NUM_IOIM_REQS (BFA_IOIM_MAX)
  165. #define DEF_CFG_NUM_TSKIM_REQS 128
  166. #define DEF_CFG_NUM_FCXP_REQS 64
  167. #define DEF_CFG_NUM_UF_BUFS 64
  168. #define DEF_CFG_NUM_RPORTS 1024
  169. #define DEF_CFG_NUM_ITNIMS (DEF_CFG_NUM_RPORTS)
  170. #define DEF_CFG_NUM_TINS 256
  171. #define DEF_CFG_NUM_SGPGS 2048
  172. #define DEF_CFG_NUM_REQQ_ELEMS 256
  173. #define DEF_CFG_NUM_RSPQ_ELEMS 64
  174. #define DEF_CFG_NUM_SBOOT_TGTS 16
  175. #define DEF_CFG_NUM_SBOOT_LUNS 16
  176. /*
  177. * IOCFC state machine definitions/declarations
  178. */
  179. bfa_fsm_state_decl(bfa_iocfc, stopped, struct bfa_iocfc_s, enum iocfc_event);
  180. bfa_fsm_state_decl(bfa_iocfc, initing, struct bfa_iocfc_s, enum iocfc_event);
  181. bfa_fsm_state_decl(bfa_iocfc, dconf_read, struct bfa_iocfc_s, enum iocfc_event);
  182. bfa_fsm_state_decl(bfa_iocfc, init_cfg_wait,
  183. struct bfa_iocfc_s, enum iocfc_event);
  184. bfa_fsm_state_decl(bfa_iocfc, init_cfg_done,
  185. struct bfa_iocfc_s, enum iocfc_event);
  186. bfa_fsm_state_decl(bfa_iocfc, operational,
  187. struct bfa_iocfc_s, enum iocfc_event);
  188. bfa_fsm_state_decl(bfa_iocfc, dconf_write,
  189. struct bfa_iocfc_s, enum iocfc_event);
  190. bfa_fsm_state_decl(bfa_iocfc, stopping, struct bfa_iocfc_s, enum iocfc_event);
  191. bfa_fsm_state_decl(bfa_iocfc, enabling, struct bfa_iocfc_s, enum iocfc_event);
  192. bfa_fsm_state_decl(bfa_iocfc, cfg_wait, struct bfa_iocfc_s, enum iocfc_event);
  193. bfa_fsm_state_decl(bfa_iocfc, disabling, struct bfa_iocfc_s, enum iocfc_event);
  194. bfa_fsm_state_decl(bfa_iocfc, disabled, struct bfa_iocfc_s, enum iocfc_event);
  195. bfa_fsm_state_decl(bfa_iocfc, failed, struct bfa_iocfc_s, enum iocfc_event);
  196. bfa_fsm_state_decl(bfa_iocfc, init_failed,
  197. struct bfa_iocfc_s, enum iocfc_event);
  198. /*
  199. * forward declaration for IOC FC functions
  200. */
  201. static void bfa_iocfc_start_submod(struct bfa_s *bfa);
  202. static void bfa_iocfc_disable_submod(struct bfa_s *bfa);
  203. static void bfa_iocfc_send_cfg(void *bfa_arg);
  204. static void bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status);
  205. static void bfa_iocfc_disable_cbfn(void *bfa_arg);
  206. static void bfa_iocfc_hbfail_cbfn(void *bfa_arg);
  207. static void bfa_iocfc_reset_cbfn(void *bfa_arg);
  208. static struct bfa_ioc_cbfn_s bfa_iocfc_cbfn;
  209. static void bfa_iocfc_init_cb(void *bfa_arg, bfa_boolean_t complete);
  210. static void bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl);
  211. static void bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl);
  212. static void bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl);
  213. static void
  214. bfa_iocfc_sm_stopped_entry(struct bfa_iocfc_s *iocfc)
  215. {
  216. }
  217. static void
  218. bfa_iocfc_sm_stopped(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  219. {
  220. bfa_trc(iocfc->bfa, event);
  221. switch (event) {
  222. case IOCFC_E_INIT:
  223. case IOCFC_E_ENABLE:
  224. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_initing);
  225. break;
  226. default:
  227. bfa_sm_fault(iocfc->bfa, event);
  228. break;
  229. }
  230. }
  231. static void
  232. bfa_iocfc_sm_initing_entry(struct bfa_iocfc_s *iocfc)
  233. {
  234. bfa_ioc_enable(&iocfc->bfa->ioc);
  235. }
  236. static void
  237. bfa_iocfc_sm_initing(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  238. {
  239. bfa_trc(iocfc->bfa, event);
  240. switch (event) {
  241. case IOCFC_E_IOC_ENABLED:
  242. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_read);
  243. break;
  244. case IOCFC_E_IOC_FAILED:
  245. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_failed);
  246. break;
  247. default:
  248. bfa_sm_fault(iocfc->bfa, event);
  249. break;
  250. }
  251. }
  252. static void
  253. bfa_iocfc_sm_dconf_read_entry(struct bfa_iocfc_s *iocfc)
  254. {
  255. bfa_dconf_modinit(iocfc->bfa);
  256. }
  257. static void
  258. bfa_iocfc_sm_dconf_read(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  259. {
  260. bfa_trc(iocfc->bfa, event);
  261. switch (event) {
  262. case IOCFC_E_DCONF_DONE:
  263. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_cfg_wait);
  264. break;
  265. case IOCFC_E_IOC_FAILED:
  266. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_failed);
  267. break;
  268. default:
  269. bfa_sm_fault(iocfc->bfa, event);
  270. break;
  271. }
  272. }
  273. static void
  274. bfa_iocfc_sm_init_cfg_wait_entry(struct bfa_iocfc_s *iocfc)
  275. {
  276. bfa_iocfc_send_cfg(iocfc->bfa);
  277. }
  278. static void
  279. bfa_iocfc_sm_init_cfg_wait(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  280. {
  281. bfa_trc(iocfc->bfa, event);
  282. switch (event) {
  283. case IOCFC_E_CFG_DONE:
  284. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_cfg_done);
  285. break;
  286. case IOCFC_E_IOC_FAILED:
  287. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_failed);
  288. break;
  289. default:
  290. bfa_sm_fault(iocfc->bfa, event);
  291. break;
  292. }
  293. }
  294. static void
  295. bfa_iocfc_sm_init_cfg_done_entry(struct bfa_iocfc_s *iocfc)
  296. {
  297. iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
  298. bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.init_hcb_qe,
  299. bfa_iocfc_init_cb, iocfc->bfa);
  300. }
  301. static void
  302. bfa_iocfc_sm_init_cfg_done(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  303. {
  304. bfa_trc(iocfc->bfa, event);
  305. switch (event) {
  306. case IOCFC_E_START:
  307. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_operational);
  308. break;
  309. case IOCFC_E_STOP:
  310. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
  311. break;
  312. case IOCFC_E_DISABLE:
  313. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
  314. break;
  315. case IOCFC_E_IOC_FAILED:
  316. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_failed);
  317. break;
  318. default:
  319. bfa_sm_fault(iocfc->bfa, event);
  320. break;
  321. }
  322. }
  323. static void
  324. bfa_iocfc_sm_operational_entry(struct bfa_iocfc_s *iocfc)
  325. {
  326. bfa_fcport_init(iocfc->bfa);
  327. bfa_iocfc_start_submod(iocfc->bfa);
  328. }
  329. static void
  330. bfa_iocfc_sm_operational(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  331. {
  332. bfa_trc(iocfc->bfa, event);
  333. switch (event) {
  334. case IOCFC_E_STOP:
  335. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_write);
  336. break;
  337. case IOCFC_E_DISABLE:
  338. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
  339. break;
  340. case IOCFC_E_IOC_FAILED:
  341. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_failed);
  342. break;
  343. default:
  344. bfa_sm_fault(iocfc->bfa, event);
  345. break;
  346. }
  347. }
  348. static void
  349. bfa_iocfc_sm_dconf_write_entry(struct bfa_iocfc_s *iocfc)
  350. {
  351. bfa_dconf_modexit(iocfc->bfa);
  352. }
  353. static void
  354. bfa_iocfc_sm_dconf_write(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  355. {
  356. bfa_trc(iocfc->bfa, event);
  357. switch (event) {
  358. case IOCFC_E_DCONF_DONE:
  359. case IOCFC_E_IOC_FAILED:
  360. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
  361. break;
  362. default:
  363. bfa_sm_fault(iocfc->bfa, event);
  364. break;
  365. }
  366. }
  367. static void
  368. bfa_iocfc_sm_stopping_entry(struct bfa_iocfc_s *iocfc)
  369. {
  370. bfa_ioc_disable(&iocfc->bfa->ioc);
  371. }
  372. static void
  373. bfa_iocfc_sm_stopping(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  374. {
  375. bfa_trc(iocfc->bfa, event);
  376. switch (event) {
  377. case IOCFC_E_IOC_DISABLED:
  378. bfa_isr_disable(iocfc->bfa);
  379. bfa_iocfc_disable_submod(iocfc->bfa);
  380. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopped);
  381. iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
  382. bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.stop_hcb_qe,
  383. bfa_iocfc_stop_cb, iocfc->bfa);
  384. break;
  385. default:
  386. bfa_sm_fault(iocfc->bfa, event);
  387. break;
  388. }
  389. }
  390. static void
  391. bfa_iocfc_sm_enabling_entry(struct bfa_iocfc_s *iocfc)
  392. {
  393. bfa_ioc_enable(&iocfc->bfa->ioc);
  394. }
  395. static void
  396. bfa_iocfc_sm_enabling(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  397. {
  398. bfa_trc(iocfc->bfa, event);
  399. switch (event) {
  400. case IOCFC_E_IOC_ENABLED:
  401. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_cfg_wait);
  402. break;
  403. case IOCFC_E_IOC_FAILED:
  404. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_failed);
  405. if (iocfc->bfa->iocfc.cb_reqd == BFA_FALSE)
  406. break;
  407. iocfc->bfa->iocfc.op_status = BFA_STATUS_FAILED;
  408. bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.en_hcb_qe,
  409. bfa_iocfc_enable_cb, iocfc->bfa);
  410. iocfc->bfa->iocfc.cb_reqd = BFA_FALSE;
  411. break;
  412. default:
  413. bfa_sm_fault(iocfc->bfa, event);
  414. break;
  415. }
  416. }
  417. static void
  418. bfa_iocfc_sm_cfg_wait_entry(struct bfa_iocfc_s *iocfc)
  419. {
  420. bfa_iocfc_send_cfg(iocfc->bfa);
  421. }
  422. static void
  423. bfa_iocfc_sm_cfg_wait(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  424. {
  425. bfa_trc(iocfc->bfa, event);
  426. switch (event) {
  427. case IOCFC_E_CFG_DONE:
  428. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_operational);
  429. if (iocfc->bfa->iocfc.cb_reqd == BFA_FALSE)
  430. break;
  431. iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
  432. bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.en_hcb_qe,
  433. bfa_iocfc_enable_cb, iocfc->bfa);
  434. iocfc->bfa->iocfc.cb_reqd = BFA_FALSE;
  435. break;
  436. case IOCFC_E_IOC_FAILED:
  437. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_failed);
  438. if (iocfc->bfa->iocfc.cb_reqd == BFA_FALSE)
  439. break;
  440. iocfc->bfa->iocfc.op_status = BFA_STATUS_FAILED;
  441. bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.en_hcb_qe,
  442. bfa_iocfc_enable_cb, iocfc->bfa);
  443. iocfc->bfa->iocfc.cb_reqd = BFA_FALSE;
  444. break;
  445. default:
  446. bfa_sm_fault(iocfc->bfa, event);
  447. break;
  448. }
  449. }
  450. static void
  451. bfa_iocfc_sm_disabling_entry(struct bfa_iocfc_s *iocfc)
  452. {
  453. bfa_ioc_disable(&iocfc->bfa->ioc);
  454. }
  455. static void
  456. bfa_iocfc_sm_disabling(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  457. {
  458. bfa_trc(iocfc->bfa, event);
  459. switch (event) {
  460. case IOCFC_E_IOC_DISABLED:
  461. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabled);
  462. break;
  463. default:
  464. bfa_sm_fault(iocfc->bfa, event);
  465. break;
  466. }
  467. }
  468. static void
  469. bfa_iocfc_sm_disabled_entry(struct bfa_iocfc_s *iocfc)
  470. {
  471. bfa_isr_disable(iocfc->bfa);
  472. bfa_iocfc_disable_submod(iocfc->bfa);
  473. iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
  474. bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.dis_hcb_qe,
  475. bfa_iocfc_disable_cb, iocfc->bfa);
  476. }
  477. static void
  478. bfa_iocfc_sm_disabled(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  479. {
  480. bfa_trc(iocfc->bfa, event);
  481. switch (event) {
  482. case IOCFC_E_STOP:
  483. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_write);
  484. break;
  485. case IOCFC_E_ENABLE:
  486. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_enabling);
  487. break;
  488. default:
  489. bfa_sm_fault(iocfc->bfa, event);
  490. break;
  491. }
  492. }
  493. static void
  494. bfa_iocfc_sm_failed_entry(struct bfa_iocfc_s *iocfc)
  495. {
  496. bfa_isr_disable(iocfc->bfa);
  497. bfa_iocfc_disable_submod(iocfc->bfa);
  498. }
  499. static void
  500. bfa_iocfc_sm_failed(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  501. {
  502. bfa_trc(iocfc->bfa, event);
  503. switch (event) {
  504. case IOCFC_E_STOP:
  505. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_write);
  506. break;
  507. case IOCFC_E_DISABLE:
  508. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
  509. break;
  510. case IOCFC_E_IOC_ENABLED:
  511. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_cfg_wait);
  512. break;
  513. case IOCFC_E_IOC_FAILED:
  514. break;
  515. default:
  516. bfa_sm_fault(iocfc->bfa, event);
  517. break;
  518. }
  519. }
  520. static void
  521. bfa_iocfc_sm_init_failed_entry(struct bfa_iocfc_s *iocfc)
  522. {
  523. bfa_isr_disable(iocfc->bfa);
  524. iocfc->bfa->iocfc.op_status = BFA_STATUS_FAILED;
  525. bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.init_hcb_qe,
  526. bfa_iocfc_init_cb, iocfc->bfa);
  527. }
  528. static void
  529. bfa_iocfc_sm_init_failed(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
  530. {
  531. bfa_trc(iocfc->bfa, event);
  532. switch (event) {
  533. case IOCFC_E_STOP:
  534. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
  535. break;
  536. case IOCFC_E_DISABLE:
  537. bfa_ioc_disable(&iocfc->bfa->ioc);
  538. break;
  539. case IOCFC_E_IOC_ENABLED:
  540. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_read);
  541. break;
  542. case IOCFC_E_IOC_DISABLED:
  543. bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopped);
  544. iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
  545. bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.dis_hcb_qe,
  546. bfa_iocfc_disable_cb, iocfc->bfa);
  547. break;
  548. case IOCFC_E_IOC_FAILED:
  549. break;
  550. default:
  551. bfa_sm_fault(iocfc->bfa, event);
  552. break;
  553. }
  554. }
  555. /*
  556. * BFA Interrupt handling functions
  557. */
  558. static void
  559. bfa_reqq_resume(struct bfa_s *bfa, int qid)
  560. {
  561. struct list_head *waitq, *qe, *qen;
  562. struct bfa_reqq_wait_s *wqe;
  563. waitq = bfa_reqq(bfa, qid);
  564. list_for_each_safe(qe, qen, waitq) {
  565. /*
  566. * Callback only as long as there is room in request queue
  567. */
  568. if (bfa_reqq_full(bfa, qid))
  569. break;
  570. list_del(qe);
  571. wqe = (struct bfa_reqq_wait_s *) qe;
  572. wqe->qresume(wqe->cbarg);
  573. }
  574. }
  575. bfa_boolean_t
  576. bfa_isr_rspq(struct bfa_s *bfa, int qid)
  577. {
  578. struct bfi_msg_s *m;
  579. u32 pi, ci;
  580. struct list_head *waitq;
  581. bfa_boolean_t ret;
  582. ci = bfa_rspq_ci(bfa, qid);
  583. pi = bfa_rspq_pi(bfa, qid);
  584. ret = (ci != pi);
  585. while (ci != pi) {
  586. m = bfa_rspq_elem(bfa, qid, ci);
  587. WARN_ON(m->mhdr.msg_class >= BFI_MC_MAX);
  588. bfa_isrs[m->mhdr.msg_class] (bfa, m);
  589. CQ_INCR(ci, bfa->iocfc.cfg.drvcfg.num_rspq_elems);
  590. }
  591. /*
  592. * acknowledge RME completions and update CI
  593. */
  594. bfa_isr_rspq_ack(bfa, qid, ci);
  595. /*
  596. * Resume any pending requests in the corresponding reqq.
  597. */
  598. waitq = bfa_reqq(bfa, qid);
  599. if (!list_empty(waitq))
  600. bfa_reqq_resume(bfa, qid);
  601. return ret;
  602. }
  603. static inline void
  604. bfa_isr_reqq(struct bfa_s *bfa, int qid)
  605. {
  606. struct list_head *waitq;
  607. bfa_isr_reqq_ack(bfa, qid);
  608. /*
  609. * Resume any pending requests in the corresponding reqq.
  610. */
  611. waitq = bfa_reqq(bfa, qid);
  612. if (!list_empty(waitq))
  613. bfa_reqq_resume(bfa, qid);
  614. }
  615. void
  616. bfa_msix_all(struct bfa_s *bfa, int vec)
  617. {
  618. u32 intr, qintr;
  619. int queue;
  620. intr = readl(bfa->iocfc.bfa_regs.intr_status);
  621. if (!intr)
  622. return;
  623. /*
  624. * RME completion queue interrupt
  625. */
  626. qintr = intr & __HFN_INT_RME_MASK;
  627. if (qintr && bfa->queue_process) {
  628. for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
  629. bfa_isr_rspq(bfa, queue);
  630. }
  631. intr &= ~qintr;
  632. if (!intr)
  633. return;
  634. /*
  635. * CPE completion queue interrupt
  636. */
  637. qintr = intr & __HFN_INT_CPE_MASK;
  638. if (qintr && bfa->queue_process) {
  639. for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
  640. bfa_isr_reqq(bfa, queue);
  641. }
  642. intr &= ~qintr;
  643. if (!intr)
  644. return;
  645. bfa_msix_lpu_err(bfa, intr);
  646. }
  647. bfa_boolean_t
  648. bfa_intx(struct bfa_s *bfa)
  649. {
  650. u32 intr, qintr;
  651. int queue;
  652. bfa_boolean_t rspq_comp = BFA_FALSE;
  653. intr = readl(bfa->iocfc.bfa_regs.intr_status);
  654. qintr = intr & (__HFN_INT_RME_MASK | __HFN_INT_CPE_MASK);
  655. if (qintr)
  656. writel(qintr, bfa->iocfc.bfa_regs.intr_status);
  657. /*
  658. * Unconditional RME completion queue interrupt
  659. */
  660. if (bfa->queue_process) {
  661. for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
  662. if (bfa_isr_rspq(bfa, queue))
  663. rspq_comp = BFA_TRUE;
  664. }
  665. if (!intr)
  666. return (qintr | rspq_comp) ? BFA_TRUE : BFA_FALSE;
  667. /*
  668. * CPE completion queue interrupt
  669. */
  670. qintr = intr & __HFN_INT_CPE_MASK;
  671. if (qintr && bfa->queue_process) {
  672. for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
  673. bfa_isr_reqq(bfa, queue);
  674. }
  675. intr &= ~qintr;
  676. if (!intr)
  677. return BFA_TRUE;
  678. bfa_msix_lpu_err(bfa, intr);
  679. return BFA_TRUE;
  680. }
  681. void
  682. bfa_isr_enable(struct bfa_s *bfa)
  683. {
  684. u32 umsk;
  685. int pci_func = bfa_ioc_pcifn(&bfa->ioc);
  686. bfa_trc(bfa, pci_func);
  687. bfa_msix_ctrl_install(bfa);
  688. if (bfa_asic_id_ct2(bfa->ioc.pcidev.device_id)) {
  689. umsk = __HFN_INT_ERR_MASK_CT2;
  690. umsk |= pci_func == 0 ?
  691. __HFN_INT_FN0_MASK_CT2 : __HFN_INT_FN1_MASK_CT2;
  692. } else {
  693. umsk = __HFN_INT_ERR_MASK;
  694. umsk |= pci_func == 0 ? __HFN_INT_FN0_MASK : __HFN_INT_FN1_MASK;
  695. }
  696. writel(umsk, bfa->iocfc.bfa_regs.intr_status);
  697. writel(~umsk, bfa->iocfc.bfa_regs.intr_mask);
  698. bfa->iocfc.intr_mask = ~umsk;
  699. bfa_isr_mode_set(bfa, bfa->msix.nvecs != 0);
  700. }
  701. void
  702. bfa_isr_disable(struct bfa_s *bfa)
  703. {
  704. bfa_isr_mode_set(bfa, BFA_FALSE);
  705. writel(-1L, bfa->iocfc.bfa_regs.intr_mask);
  706. bfa_msix_uninstall(bfa);
  707. }
  708. void
  709. bfa_msix_reqq(struct bfa_s *bfa, int vec)
  710. {
  711. bfa_isr_reqq(bfa, vec - bfa->iocfc.hwif.cpe_vec_q0);
  712. }
  713. void
  714. bfa_isr_unhandled(struct bfa_s *bfa, struct bfi_msg_s *m)
  715. {
  716. bfa_trc(bfa, m->mhdr.msg_class);
  717. bfa_trc(bfa, m->mhdr.msg_id);
  718. bfa_trc(bfa, m->mhdr.mtag.i2htok);
  719. WARN_ON(1);
  720. bfa_trc_stop(bfa->trcmod);
  721. }
  722. void
  723. bfa_msix_rspq(struct bfa_s *bfa, int vec)
  724. {
  725. bfa_isr_rspq(bfa, vec - bfa->iocfc.hwif.rme_vec_q0);
  726. }
  727. void
  728. bfa_msix_lpu_err(struct bfa_s *bfa, int vec)
  729. {
  730. u32 intr, curr_value;
  731. bfa_boolean_t lpu_isr, halt_isr, pss_isr;
  732. intr = readl(bfa->iocfc.bfa_regs.intr_status);
  733. if (bfa_asic_id_ct2(bfa->ioc.pcidev.device_id)) {
  734. halt_isr = intr & __HFN_INT_CPQ_HALT_CT2;
  735. pss_isr = intr & __HFN_INT_ERR_PSS_CT2;
  736. lpu_isr = intr & (__HFN_INT_MBOX_LPU0_CT2 |
  737. __HFN_INT_MBOX_LPU1_CT2);
  738. intr &= __HFN_INT_ERR_MASK_CT2;
  739. } else {
  740. halt_isr = bfa_asic_id_ct(bfa->ioc.pcidev.device_id) ?
  741. (intr & __HFN_INT_LL_HALT) : 0;
  742. pss_isr = intr & __HFN_INT_ERR_PSS;
  743. lpu_isr = intr & (__HFN_INT_MBOX_LPU0 | __HFN_INT_MBOX_LPU1);
  744. intr &= __HFN_INT_ERR_MASK;
  745. }
  746. if (lpu_isr)
  747. bfa_ioc_mbox_isr(&bfa->ioc);
  748. if (intr) {
  749. if (halt_isr) {
  750. /*
  751. * If LL_HALT bit is set then FW Init Halt LL Port
  752. * Register needs to be cleared as well so Interrupt
  753. * Status Register will be cleared.
  754. */
  755. curr_value = readl(bfa->ioc.ioc_regs.ll_halt);
  756. curr_value &= ~__FW_INIT_HALT_P;
  757. writel(curr_value, bfa->ioc.ioc_regs.ll_halt);
  758. }
  759. if (pss_isr) {
  760. /*
  761. * ERR_PSS bit needs to be cleared as well in case
  762. * interrups are shared so driver's interrupt handler is
  763. * still called even though it is already masked out.
  764. */
  765. curr_value = readl(
  766. bfa->ioc.ioc_regs.pss_err_status_reg);
  767. writel(curr_value,
  768. bfa->ioc.ioc_regs.pss_err_status_reg);
  769. }
  770. writel(intr, bfa->iocfc.bfa_regs.intr_status);
  771. bfa_ioc_error_isr(&bfa->ioc);
  772. }
  773. }
  774. /*
  775. * BFA IOC FC related functions
  776. */
  777. /*
  778. * BFA IOC private functions
  779. */
  780. /*
  781. * Use the Mailbox interface to send BFI_IOCFC_H2I_CFG_REQ
  782. */
  783. static void
  784. bfa_iocfc_send_cfg(void *bfa_arg)
  785. {
  786. struct bfa_s *bfa = bfa_arg;
  787. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  788. struct bfi_iocfc_cfg_req_s cfg_req;
  789. struct bfi_iocfc_cfg_s *cfg_info = iocfc->cfginfo;
  790. struct bfa_iocfc_cfg_s *cfg = &iocfc->cfg;
  791. int i;
  792. WARN_ON(cfg->fwcfg.num_cqs > BFI_IOC_MAX_CQS);
  793. bfa_trc(bfa, cfg->fwcfg.num_cqs);
  794. bfa_iocfc_reset_queues(bfa);
  795. /*
  796. * initialize IOC configuration info
  797. */
  798. cfg_info->single_msix_vec = 0;
  799. if (bfa->msix.nvecs == 1)
  800. cfg_info->single_msix_vec = 1;
  801. cfg_info->endian_sig = BFI_IOC_ENDIAN_SIG;
  802. cfg_info->num_cqs = cfg->fwcfg.num_cqs;
  803. cfg_info->num_ioim_reqs = cpu_to_be16(cfg->fwcfg.num_ioim_reqs);
  804. cfg_info->num_fwtio_reqs = cpu_to_be16(cfg->fwcfg.num_fwtio_reqs);
  805. bfa_dma_be_addr_set(cfg_info->cfgrsp_addr, iocfc->cfgrsp_dma.pa);
  806. /*
  807. * dma map REQ and RSP circular queues and shadow pointers
  808. */
  809. for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
  810. bfa_dma_be_addr_set(cfg_info->req_cq_ba[i],
  811. iocfc->req_cq_ba[i].pa);
  812. bfa_dma_be_addr_set(cfg_info->req_shadow_ci[i],
  813. iocfc->req_cq_shadow_ci[i].pa);
  814. cfg_info->req_cq_elems[i] =
  815. cpu_to_be16(cfg->drvcfg.num_reqq_elems);
  816. bfa_dma_be_addr_set(cfg_info->rsp_cq_ba[i],
  817. iocfc->rsp_cq_ba[i].pa);
  818. bfa_dma_be_addr_set(cfg_info->rsp_shadow_pi[i],
  819. iocfc->rsp_cq_shadow_pi[i].pa);
  820. cfg_info->rsp_cq_elems[i] =
  821. cpu_to_be16(cfg->drvcfg.num_rspq_elems);
  822. }
  823. /*
  824. * Enable interrupt coalescing if it is driver init path
  825. * and not ioc disable/enable path.
  826. */
  827. if (bfa_fsm_cmp_state(iocfc, bfa_iocfc_sm_init_cfg_wait))
  828. cfg_info->intr_attr.coalesce = BFA_TRUE;
  829. /*
  830. * dma map IOC configuration itself
  831. */
  832. bfi_h2i_set(cfg_req.mh, BFI_MC_IOCFC, BFI_IOCFC_H2I_CFG_REQ,
  833. bfa_fn_lpu(bfa));
  834. bfa_dma_be_addr_set(cfg_req.ioc_cfg_dma_addr, iocfc->cfg_info.pa);
  835. bfa_ioc_mbox_send(&bfa->ioc, &cfg_req,
  836. sizeof(struct bfi_iocfc_cfg_req_s));
  837. }
  838. static void
  839. bfa_iocfc_init_mem(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
  840. struct bfa_pcidev_s *pcidev)
  841. {
  842. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  843. bfa->bfad = bfad;
  844. iocfc->bfa = bfa;
  845. iocfc->cfg = *cfg;
  846. /*
  847. * Initialize chip specific handlers.
  848. */
  849. if (bfa_asic_id_ctc(bfa_ioc_devid(&bfa->ioc))) {
  850. iocfc->hwif.hw_reginit = bfa_hwct_reginit;
  851. iocfc->hwif.hw_reqq_ack = bfa_hwct_reqq_ack;
  852. iocfc->hwif.hw_rspq_ack = bfa_hwct_rspq_ack;
  853. iocfc->hwif.hw_msix_init = bfa_hwct_msix_init;
  854. iocfc->hwif.hw_msix_ctrl_install = bfa_hwct_msix_ctrl_install;
  855. iocfc->hwif.hw_msix_queue_install = bfa_hwct_msix_queue_install;
  856. iocfc->hwif.hw_msix_uninstall = bfa_hwct_msix_uninstall;
  857. iocfc->hwif.hw_isr_mode_set = bfa_hwct_isr_mode_set;
  858. iocfc->hwif.hw_msix_getvecs = bfa_hwct_msix_getvecs;
  859. iocfc->hwif.hw_msix_get_rme_range = bfa_hwct_msix_get_rme_range;
  860. iocfc->hwif.rme_vec_q0 = BFI_MSIX_RME_QMIN_CT;
  861. iocfc->hwif.cpe_vec_q0 = BFI_MSIX_CPE_QMIN_CT;
  862. } else {
  863. iocfc->hwif.hw_reginit = bfa_hwcb_reginit;
  864. iocfc->hwif.hw_reqq_ack = NULL;
  865. iocfc->hwif.hw_rspq_ack = bfa_hwcb_rspq_ack;
  866. iocfc->hwif.hw_msix_init = bfa_hwcb_msix_init;
  867. iocfc->hwif.hw_msix_ctrl_install = bfa_hwcb_msix_ctrl_install;
  868. iocfc->hwif.hw_msix_queue_install = bfa_hwcb_msix_queue_install;
  869. iocfc->hwif.hw_msix_uninstall = bfa_hwcb_msix_uninstall;
  870. iocfc->hwif.hw_isr_mode_set = bfa_hwcb_isr_mode_set;
  871. iocfc->hwif.hw_msix_getvecs = bfa_hwcb_msix_getvecs;
  872. iocfc->hwif.hw_msix_get_rme_range = bfa_hwcb_msix_get_rme_range;
  873. iocfc->hwif.rme_vec_q0 = BFI_MSIX_RME_QMIN_CB +
  874. bfa_ioc_pcifn(&bfa->ioc) * BFI_IOC_MAX_CQS;
  875. iocfc->hwif.cpe_vec_q0 = BFI_MSIX_CPE_QMIN_CB +
  876. bfa_ioc_pcifn(&bfa->ioc) * BFI_IOC_MAX_CQS;
  877. }
  878. if (bfa_asic_id_ct2(bfa_ioc_devid(&bfa->ioc))) {
  879. iocfc->hwif.hw_reginit = bfa_hwct2_reginit;
  880. iocfc->hwif.hw_isr_mode_set = NULL;
  881. iocfc->hwif.hw_rspq_ack = bfa_hwct2_rspq_ack;
  882. }
  883. iocfc->hwif.hw_reginit(bfa);
  884. bfa->msix.nvecs = 0;
  885. }
  886. static void
  887. bfa_iocfc_mem_claim(struct bfa_s *bfa, struct bfa_iocfc_cfg_s *cfg)
  888. {
  889. u8 *dm_kva = NULL;
  890. u64 dm_pa = 0;
  891. int i, per_reqq_sz, per_rspq_sz, dbgsz;
  892. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  893. struct bfa_mem_dma_s *ioc_dma = BFA_MEM_IOC_DMA(bfa);
  894. struct bfa_mem_dma_s *iocfc_dma = BFA_MEM_IOCFC_DMA(bfa);
  895. struct bfa_mem_dma_s *reqq_dma, *rspq_dma;
  896. /* First allocate dma memory for IOC */
  897. bfa_ioc_mem_claim(&bfa->ioc, bfa_mem_dma_virt(ioc_dma),
  898. bfa_mem_dma_phys(ioc_dma));
  899. /* Claim DMA-able memory for the request/response queues */
  900. per_reqq_sz = BFA_ROUNDUP((cfg->drvcfg.num_reqq_elems * BFI_LMSG_SZ),
  901. BFA_DMA_ALIGN_SZ);
  902. per_rspq_sz = BFA_ROUNDUP((cfg->drvcfg.num_rspq_elems * BFI_LMSG_SZ),
  903. BFA_DMA_ALIGN_SZ);
  904. for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
  905. reqq_dma = BFA_MEM_REQQ_DMA(bfa, i);
  906. iocfc->req_cq_ba[i].kva = bfa_mem_dma_virt(reqq_dma);
  907. iocfc->req_cq_ba[i].pa = bfa_mem_dma_phys(reqq_dma);
  908. memset(iocfc->req_cq_ba[i].kva, 0, per_reqq_sz);
  909. rspq_dma = BFA_MEM_RSPQ_DMA(bfa, i);
  910. iocfc->rsp_cq_ba[i].kva = bfa_mem_dma_virt(rspq_dma);
  911. iocfc->rsp_cq_ba[i].pa = bfa_mem_dma_phys(rspq_dma);
  912. memset(iocfc->rsp_cq_ba[i].kva, 0, per_rspq_sz);
  913. }
  914. /* Claim IOCFC dma memory - for shadow CI/PI */
  915. dm_kva = bfa_mem_dma_virt(iocfc_dma);
  916. dm_pa = bfa_mem_dma_phys(iocfc_dma);
  917. for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
  918. iocfc->req_cq_shadow_ci[i].kva = dm_kva;
  919. iocfc->req_cq_shadow_ci[i].pa = dm_pa;
  920. dm_kva += BFA_CACHELINE_SZ;
  921. dm_pa += BFA_CACHELINE_SZ;
  922. iocfc->rsp_cq_shadow_pi[i].kva = dm_kva;
  923. iocfc->rsp_cq_shadow_pi[i].pa = dm_pa;
  924. dm_kva += BFA_CACHELINE_SZ;
  925. dm_pa += BFA_CACHELINE_SZ;
  926. }
  927. /* Claim IOCFC dma memory - for the config info page */
  928. bfa->iocfc.cfg_info.kva = dm_kva;
  929. bfa->iocfc.cfg_info.pa = dm_pa;
  930. bfa->iocfc.cfginfo = (struct bfi_iocfc_cfg_s *) dm_kva;
  931. dm_kva += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
  932. dm_pa += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
  933. /* Claim IOCFC dma memory - for the config response */
  934. bfa->iocfc.cfgrsp_dma.kva = dm_kva;
  935. bfa->iocfc.cfgrsp_dma.pa = dm_pa;
  936. bfa->iocfc.cfgrsp = (struct bfi_iocfc_cfgrsp_s *) dm_kva;
  937. dm_kva += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
  938. BFA_CACHELINE_SZ);
  939. dm_pa += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
  940. BFA_CACHELINE_SZ);
  941. /* Claim IOCFC kva memory */
  942. dbgsz = (bfa_auto_recover) ? BFA_DBG_FWTRC_LEN : 0;
  943. if (dbgsz > 0) {
  944. bfa_ioc_debug_memclaim(&bfa->ioc, bfa_mem_kva_curp(iocfc));
  945. bfa_mem_kva_curp(iocfc) += dbgsz;
  946. }
  947. }
  948. /*
  949. * Start BFA submodules.
  950. */
  951. static void
  952. bfa_iocfc_start_submod(struct bfa_s *bfa)
  953. {
  954. int i;
  955. bfa->queue_process = BFA_TRUE;
  956. for (i = 0; i < BFI_IOC_MAX_CQS; i++)
  957. bfa_isr_rspq_ack(bfa, i, bfa_rspq_ci(bfa, i));
  958. for (i = 0; hal_mods[i]; i++)
  959. hal_mods[i]->start(bfa);
  960. bfa->iocfc.submod_enabled = BFA_TRUE;
  961. }
  962. /*
  963. * Disable BFA submodules.
  964. */
  965. static void
  966. bfa_iocfc_disable_submod(struct bfa_s *bfa)
  967. {
  968. int i;
  969. if (bfa->iocfc.submod_enabled == BFA_FALSE)
  970. return;
  971. for (i = 0; hal_mods[i]; i++)
  972. hal_mods[i]->iocdisable(bfa);
  973. bfa->iocfc.submod_enabled = BFA_FALSE;
  974. }
  975. static void
  976. bfa_iocfc_init_cb(void *bfa_arg, bfa_boolean_t complete)
  977. {
  978. struct bfa_s *bfa = bfa_arg;
  979. if (complete)
  980. bfa_cb_init(bfa->bfad, bfa->iocfc.op_status);
  981. }
  982. static void
  983. bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl)
  984. {
  985. struct bfa_s *bfa = bfa_arg;
  986. struct bfad_s *bfad = bfa->bfad;
  987. if (compl)
  988. complete(&bfad->comp);
  989. }
  990. static void
  991. bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl)
  992. {
  993. struct bfa_s *bfa = bfa_arg;
  994. struct bfad_s *bfad = bfa->bfad;
  995. if (compl)
  996. complete(&bfad->enable_comp);
  997. }
  998. static void
  999. bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl)
  1000. {
  1001. struct bfa_s *bfa = bfa_arg;
  1002. struct bfad_s *bfad = bfa->bfad;
  1003. if (compl)
  1004. complete(&bfad->disable_comp);
  1005. }
  1006. /**
  1007. * configure queue registers from firmware response
  1008. */
  1009. static void
  1010. bfa_iocfc_qreg(struct bfa_s *bfa, struct bfi_iocfc_qreg_s *qreg)
  1011. {
  1012. int i;
  1013. struct bfa_iocfc_regs_s *r = &bfa->iocfc.bfa_regs;
  1014. void __iomem *kva = bfa_ioc_bar0(&bfa->ioc);
  1015. for (i = 0; i < BFI_IOC_MAX_CQS; i++) {
  1016. bfa->iocfc.hw_qid[i] = qreg->hw_qid[i];
  1017. r->cpe_q_ci[i] = kva + be32_to_cpu(qreg->cpe_q_ci_off[i]);
  1018. r->cpe_q_pi[i] = kva + be32_to_cpu(qreg->cpe_q_pi_off[i]);
  1019. r->cpe_q_ctrl[i] = kva + be32_to_cpu(qreg->cpe_qctl_off[i]);
  1020. r->rme_q_ci[i] = kva + be32_to_cpu(qreg->rme_q_ci_off[i]);
  1021. r->rme_q_pi[i] = kva + be32_to_cpu(qreg->rme_q_pi_off[i]);
  1022. r->rme_q_ctrl[i] = kva + be32_to_cpu(qreg->rme_qctl_off[i]);
  1023. }
  1024. }
  1025. static void
  1026. bfa_iocfc_res_recfg(struct bfa_s *bfa, struct bfa_iocfc_fwcfg_s *fwcfg)
  1027. {
  1028. bfa_fcxp_res_recfg(bfa, fwcfg->num_fcxp_reqs);
  1029. bfa_uf_res_recfg(bfa, fwcfg->num_uf_bufs);
  1030. bfa_rport_res_recfg(bfa, fwcfg->num_rports);
  1031. bfa_fcp_res_recfg(bfa, fwcfg->num_ioim_reqs);
  1032. bfa_tskim_res_recfg(bfa, fwcfg->num_tskim_reqs);
  1033. }
  1034. /*
  1035. * Update BFA configuration from firmware configuration.
  1036. */
  1037. static void
  1038. bfa_iocfc_cfgrsp(struct bfa_s *bfa)
  1039. {
  1040. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1041. struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
  1042. struct bfa_iocfc_fwcfg_s *fwcfg = &cfgrsp->fwcfg;
  1043. fwcfg->num_cqs = fwcfg->num_cqs;
  1044. fwcfg->num_ioim_reqs = be16_to_cpu(fwcfg->num_ioim_reqs);
  1045. fwcfg->num_fwtio_reqs = be16_to_cpu(fwcfg->num_fwtio_reqs);
  1046. fwcfg->num_tskim_reqs = be16_to_cpu(fwcfg->num_tskim_reqs);
  1047. fwcfg->num_fcxp_reqs = be16_to_cpu(fwcfg->num_fcxp_reqs);
  1048. fwcfg->num_uf_bufs = be16_to_cpu(fwcfg->num_uf_bufs);
  1049. fwcfg->num_rports = be16_to_cpu(fwcfg->num_rports);
  1050. /*
  1051. * configure queue register offsets as learnt from firmware
  1052. */
  1053. bfa_iocfc_qreg(bfa, &cfgrsp->qreg);
  1054. /*
  1055. * Re-configure resources as learnt from Firmware
  1056. */
  1057. bfa_iocfc_res_recfg(bfa, fwcfg);
  1058. /*
  1059. * Install MSIX queue handlers
  1060. */
  1061. bfa_msix_queue_install(bfa);
  1062. if (bfa->iocfc.cfgrsp->pbc_cfg.pbc_pwwn != 0) {
  1063. bfa->ioc.attr->pwwn = bfa->iocfc.cfgrsp->pbc_cfg.pbc_pwwn;
  1064. bfa->ioc.attr->nwwn = bfa->iocfc.cfgrsp->pbc_cfg.pbc_nwwn;
  1065. bfa_fsm_send_event(iocfc, IOCFC_E_CFG_DONE);
  1066. }
  1067. }
  1068. void
  1069. bfa_iocfc_reset_queues(struct bfa_s *bfa)
  1070. {
  1071. int q;
  1072. for (q = 0; q < BFI_IOC_MAX_CQS; q++) {
  1073. bfa_reqq_ci(bfa, q) = 0;
  1074. bfa_reqq_pi(bfa, q) = 0;
  1075. bfa_rspq_ci(bfa, q) = 0;
  1076. bfa_rspq_pi(bfa, q) = 0;
  1077. }
  1078. }
  1079. /*
  1080. * Process FAA pwwn msg from fw.
  1081. */
  1082. static void
  1083. bfa_iocfc_process_faa_addr(struct bfa_s *bfa, struct bfi_faa_addr_msg_s *msg)
  1084. {
  1085. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1086. struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
  1087. cfgrsp->pbc_cfg.pbc_pwwn = msg->pwwn;
  1088. cfgrsp->pbc_cfg.pbc_nwwn = msg->nwwn;
  1089. bfa->ioc.attr->pwwn = msg->pwwn;
  1090. bfa->ioc.attr->nwwn = msg->nwwn;
  1091. bfa_fsm_send_event(iocfc, IOCFC_E_CFG_DONE);
  1092. }
  1093. /* Fabric Assigned Address specific functions */
  1094. /*
  1095. * Check whether IOC is ready before sending command down
  1096. */
  1097. static bfa_status_t
  1098. bfa_faa_validate_request(struct bfa_s *bfa)
  1099. {
  1100. enum bfa_ioc_type_e ioc_type = bfa_get_type(bfa);
  1101. u32 card_type = bfa->ioc.attr->card_type;
  1102. if (bfa_ioc_is_operational(&bfa->ioc)) {
  1103. if ((ioc_type != BFA_IOC_TYPE_FC) || bfa_mfg_is_mezz(card_type))
  1104. return BFA_STATUS_FEATURE_NOT_SUPPORTED;
  1105. } else {
  1106. return BFA_STATUS_IOC_NON_OP;
  1107. }
  1108. return BFA_STATUS_OK;
  1109. }
  1110. bfa_status_t
  1111. bfa_faa_query(struct bfa_s *bfa, struct bfa_faa_attr_s *attr,
  1112. bfa_cb_iocfc_t cbfn, void *cbarg)
  1113. {
  1114. struct bfi_faa_query_s faa_attr_req;
  1115. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1116. bfa_status_t status;
  1117. iocfc->faa_args.faa_attr = attr;
  1118. iocfc->faa_args.faa_cb.faa_cbfn = cbfn;
  1119. iocfc->faa_args.faa_cb.faa_cbarg = cbarg;
  1120. status = bfa_faa_validate_request(bfa);
  1121. if (status != BFA_STATUS_OK)
  1122. return status;
  1123. if (iocfc->faa_args.busy == BFA_TRUE)
  1124. return BFA_STATUS_DEVBUSY;
  1125. iocfc->faa_args.busy = BFA_TRUE;
  1126. memset(&faa_attr_req, 0, sizeof(struct bfi_faa_query_s));
  1127. bfi_h2i_set(faa_attr_req.mh, BFI_MC_IOCFC,
  1128. BFI_IOCFC_H2I_FAA_QUERY_REQ, bfa_fn_lpu(bfa));
  1129. bfa_ioc_mbox_send(&bfa->ioc, &faa_attr_req,
  1130. sizeof(struct bfi_faa_query_s));
  1131. return BFA_STATUS_OK;
  1132. }
  1133. /*
  1134. * FAA query response
  1135. */
  1136. static void
  1137. bfa_faa_query_reply(struct bfa_iocfc_s *iocfc,
  1138. bfi_faa_query_rsp_t *rsp)
  1139. {
  1140. void *cbarg = iocfc->faa_args.faa_cb.faa_cbarg;
  1141. if (iocfc->faa_args.faa_attr) {
  1142. iocfc->faa_args.faa_attr->faa = rsp->faa;
  1143. iocfc->faa_args.faa_attr->faa_state = rsp->faa_status;
  1144. iocfc->faa_args.faa_attr->pwwn_source = rsp->addr_source;
  1145. }
  1146. WARN_ON(!iocfc->faa_args.faa_cb.faa_cbfn);
  1147. iocfc->faa_args.faa_cb.faa_cbfn(cbarg, BFA_STATUS_OK);
  1148. iocfc->faa_args.busy = BFA_FALSE;
  1149. }
  1150. /*
  1151. * IOC enable request is complete
  1152. */
  1153. static void
  1154. bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status)
  1155. {
  1156. struct bfa_s *bfa = bfa_arg;
  1157. if (status == BFA_STATUS_OK)
  1158. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_IOC_ENABLED);
  1159. else
  1160. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_IOC_FAILED);
  1161. }
  1162. /*
  1163. * IOC disable request is complete
  1164. */
  1165. static void
  1166. bfa_iocfc_disable_cbfn(void *bfa_arg)
  1167. {
  1168. struct bfa_s *bfa = bfa_arg;
  1169. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_IOC_DISABLED);
  1170. }
  1171. /*
  1172. * Notify sub-modules of hardware failure.
  1173. */
  1174. static void
  1175. bfa_iocfc_hbfail_cbfn(void *bfa_arg)
  1176. {
  1177. struct bfa_s *bfa = bfa_arg;
  1178. bfa->queue_process = BFA_FALSE;
  1179. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_IOC_FAILED);
  1180. }
  1181. /*
  1182. * Actions on chip-reset completion.
  1183. */
  1184. static void
  1185. bfa_iocfc_reset_cbfn(void *bfa_arg)
  1186. {
  1187. struct bfa_s *bfa = bfa_arg;
  1188. bfa_iocfc_reset_queues(bfa);
  1189. bfa_isr_enable(bfa);
  1190. }
  1191. /*
  1192. * Query IOC memory requirement information.
  1193. */
  1194. void
  1195. bfa_iocfc_meminfo(struct bfa_iocfc_cfg_s *cfg, struct bfa_meminfo_s *meminfo,
  1196. struct bfa_s *bfa)
  1197. {
  1198. int q, per_reqq_sz, per_rspq_sz;
  1199. struct bfa_mem_dma_s *ioc_dma = BFA_MEM_IOC_DMA(bfa);
  1200. struct bfa_mem_dma_s *iocfc_dma = BFA_MEM_IOCFC_DMA(bfa);
  1201. struct bfa_mem_kva_s *iocfc_kva = BFA_MEM_IOCFC_KVA(bfa);
  1202. u32 dm_len = 0;
  1203. /* dma memory setup for IOC */
  1204. bfa_mem_dma_setup(meminfo, ioc_dma,
  1205. BFA_ROUNDUP(sizeof(struct bfi_ioc_attr_s), BFA_DMA_ALIGN_SZ));
  1206. /* dma memory setup for REQ/RSP queues */
  1207. per_reqq_sz = BFA_ROUNDUP((cfg->drvcfg.num_reqq_elems * BFI_LMSG_SZ),
  1208. BFA_DMA_ALIGN_SZ);
  1209. per_rspq_sz = BFA_ROUNDUP((cfg->drvcfg.num_rspq_elems * BFI_LMSG_SZ),
  1210. BFA_DMA_ALIGN_SZ);
  1211. for (q = 0; q < cfg->fwcfg.num_cqs; q++) {
  1212. bfa_mem_dma_setup(meminfo, BFA_MEM_REQQ_DMA(bfa, q),
  1213. per_reqq_sz);
  1214. bfa_mem_dma_setup(meminfo, BFA_MEM_RSPQ_DMA(bfa, q),
  1215. per_rspq_sz);
  1216. }
  1217. /* IOCFC dma memory - calculate Shadow CI/PI size */
  1218. for (q = 0; q < cfg->fwcfg.num_cqs; q++)
  1219. dm_len += (2 * BFA_CACHELINE_SZ);
  1220. /* IOCFC dma memory - calculate config info / rsp size */
  1221. dm_len += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
  1222. dm_len += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
  1223. BFA_CACHELINE_SZ);
  1224. /* dma memory setup for IOCFC */
  1225. bfa_mem_dma_setup(meminfo, iocfc_dma, dm_len);
  1226. /* kva memory setup for IOCFC */
  1227. bfa_mem_kva_setup(meminfo, iocfc_kva,
  1228. ((bfa_auto_recover) ? BFA_DBG_FWTRC_LEN : 0));
  1229. }
  1230. /*
  1231. * Query IOC memory requirement information.
  1232. */
  1233. void
  1234. bfa_iocfc_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
  1235. struct bfa_pcidev_s *pcidev)
  1236. {
  1237. int i;
  1238. struct bfa_ioc_s *ioc = &bfa->ioc;
  1239. bfa_iocfc_cbfn.enable_cbfn = bfa_iocfc_enable_cbfn;
  1240. bfa_iocfc_cbfn.disable_cbfn = bfa_iocfc_disable_cbfn;
  1241. bfa_iocfc_cbfn.hbfail_cbfn = bfa_iocfc_hbfail_cbfn;
  1242. bfa_iocfc_cbfn.reset_cbfn = bfa_iocfc_reset_cbfn;
  1243. ioc->trcmod = bfa->trcmod;
  1244. bfa_ioc_attach(&bfa->ioc, bfa, &bfa_iocfc_cbfn, &bfa->timer_mod);
  1245. bfa_ioc_pci_init(&bfa->ioc, pcidev, BFI_PCIFN_CLASS_FC);
  1246. bfa_ioc_mbox_register(&bfa->ioc, bfa_mbox_isrs);
  1247. bfa_iocfc_init_mem(bfa, bfad, cfg, pcidev);
  1248. bfa_iocfc_mem_claim(bfa, cfg);
  1249. INIT_LIST_HEAD(&bfa->timer_mod.timer_q);
  1250. INIT_LIST_HEAD(&bfa->comp_q);
  1251. for (i = 0; i < BFI_IOC_MAX_CQS; i++)
  1252. INIT_LIST_HEAD(&bfa->reqq_waitq[i]);
  1253. bfa->iocfc.cb_reqd = BFA_FALSE;
  1254. bfa->iocfc.op_status = BFA_STATUS_OK;
  1255. bfa->iocfc.submod_enabled = BFA_FALSE;
  1256. bfa_fsm_set_state(&bfa->iocfc, bfa_iocfc_sm_stopped);
  1257. }
  1258. /*
  1259. * Query IOC memory requirement information.
  1260. */
  1261. void
  1262. bfa_iocfc_init(struct bfa_s *bfa)
  1263. {
  1264. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_INIT);
  1265. }
  1266. /*
  1267. * IOC start called from bfa_start(). Called to start IOC operations
  1268. * at driver instantiation for this instance.
  1269. */
  1270. void
  1271. bfa_iocfc_start(struct bfa_s *bfa)
  1272. {
  1273. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_START);
  1274. }
  1275. /*
  1276. * IOC stop called from bfa_stop(). Called only when driver is unloaded
  1277. * for this instance.
  1278. */
  1279. void
  1280. bfa_iocfc_stop(struct bfa_s *bfa)
  1281. {
  1282. bfa->queue_process = BFA_FALSE;
  1283. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_STOP);
  1284. }
  1285. void
  1286. bfa_iocfc_isr(void *bfaarg, struct bfi_mbmsg_s *m)
  1287. {
  1288. struct bfa_s *bfa = bfaarg;
  1289. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1290. union bfi_iocfc_i2h_msg_u *msg;
  1291. msg = (union bfi_iocfc_i2h_msg_u *) m;
  1292. bfa_trc(bfa, msg->mh.msg_id);
  1293. switch (msg->mh.msg_id) {
  1294. case BFI_IOCFC_I2H_CFG_REPLY:
  1295. bfa_iocfc_cfgrsp(bfa);
  1296. break;
  1297. case BFI_IOCFC_I2H_UPDATEQ_RSP:
  1298. iocfc->updateq_cbfn(iocfc->updateq_cbarg, BFA_STATUS_OK);
  1299. break;
  1300. case BFI_IOCFC_I2H_ADDR_MSG:
  1301. bfa_iocfc_process_faa_addr(bfa,
  1302. (struct bfi_faa_addr_msg_s *)msg);
  1303. break;
  1304. case BFI_IOCFC_I2H_FAA_QUERY_RSP:
  1305. bfa_faa_query_reply(iocfc, (bfi_faa_query_rsp_t *)msg);
  1306. break;
  1307. default:
  1308. WARN_ON(1);
  1309. }
  1310. }
  1311. void
  1312. bfa_iocfc_get_attr(struct bfa_s *bfa, struct bfa_iocfc_attr_s *attr)
  1313. {
  1314. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1315. attr->intr_attr.coalesce = iocfc->cfginfo->intr_attr.coalesce;
  1316. attr->intr_attr.delay = iocfc->cfginfo->intr_attr.delay ?
  1317. be16_to_cpu(iocfc->cfginfo->intr_attr.delay) :
  1318. be16_to_cpu(iocfc->cfgrsp->intr_attr.delay);
  1319. attr->intr_attr.latency = iocfc->cfginfo->intr_attr.latency ?
  1320. be16_to_cpu(iocfc->cfginfo->intr_attr.latency) :
  1321. be16_to_cpu(iocfc->cfgrsp->intr_attr.latency);
  1322. attr->config = iocfc->cfg;
  1323. }
  1324. bfa_status_t
  1325. bfa_iocfc_israttr_set(struct bfa_s *bfa, struct bfa_iocfc_intr_attr_s *attr)
  1326. {
  1327. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1328. struct bfi_iocfc_set_intr_req_s *m;
  1329. iocfc->cfginfo->intr_attr.coalesce = attr->coalesce;
  1330. iocfc->cfginfo->intr_attr.delay = cpu_to_be16(attr->delay);
  1331. iocfc->cfginfo->intr_attr.latency = cpu_to_be16(attr->latency);
  1332. if (!bfa_iocfc_is_operational(bfa))
  1333. return BFA_STATUS_OK;
  1334. m = bfa_reqq_next(bfa, BFA_REQQ_IOC);
  1335. if (!m)
  1336. return BFA_STATUS_DEVBUSY;
  1337. bfi_h2i_set(m->mh, BFI_MC_IOCFC, BFI_IOCFC_H2I_SET_INTR_REQ,
  1338. bfa_fn_lpu(bfa));
  1339. m->coalesce = iocfc->cfginfo->intr_attr.coalesce;
  1340. m->delay = iocfc->cfginfo->intr_attr.delay;
  1341. m->latency = iocfc->cfginfo->intr_attr.latency;
  1342. bfa_trc(bfa, attr->delay);
  1343. bfa_trc(bfa, attr->latency);
  1344. bfa_reqq_produce(bfa, BFA_REQQ_IOC, m->mh);
  1345. return BFA_STATUS_OK;
  1346. }
  1347. void
  1348. bfa_iocfc_set_snsbase(struct bfa_s *bfa, int seg_no, u64 snsbase_pa)
  1349. {
  1350. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1351. iocfc->cfginfo->sense_buf_len = (BFI_IOIM_SNSLEN - 1);
  1352. bfa_dma_be_addr_set(iocfc->cfginfo->ioim_snsbase[seg_no], snsbase_pa);
  1353. }
  1354. /*
  1355. * Enable IOC after it is disabled.
  1356. */
  1357. void
  1358. bfa_iocfc_enable(struct bfa_s *bfa)
  1359. {
  1360. bfa_plog_str(bfa->plog, BFA_PL_MID_HAL, BFA_PL_EID_MISC, 0,
  1361. "IOC Enable");
  1362. bfa->iocfc.cb_reqd = BFA_TRUE;
  1363. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_ENABLE);
  1364. }
  1365. void
  1366. bfa_iocfc_disable(struct bfa_s *bfa)
  1367. {
  1368. bfa_plog_str(bfa->plog, BFA_PL_MID_HAL, BFA_PL_EID_MISC, 0,
  1369. "IOC Disable");
  1370. bfa->queue_process = BFA_FALSE;
  1371. bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_DISABLE);
  1372. }
  1373. bfa_boolean_t
  1374. bfa_iocfc_is_operational(struct bfa_s *bfa)
  1375. {
  1376. return bfa_ioc_is_operational(&bfa->ioc) &&
  1377. bfa_fsm_cmp_state(&bfa->iocfc, bfa_iocfc_sm_operational);
  1378. }
  1379. /*
  1380. * Return boot target port wwns -- read from boot information in flash.
  1381. */
  1382. void
  1383. bfa_iocfc_get_bootwwns(struct bfa_s *bfa, u8 *nwwns, wwn_t *wwns)
  1384. {
  1385. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1386. struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
  1387. int i;
  1388. if (cfgrsp->pbc_cfg.boot_enabled && cfgrsp->pbc_cfg.nbluns) {
  1389. bfa_trc(bfa, cfgrsp->pbc_cfg.nbluns);
  1390. *nwwns = cfgrsp->pbc_cfg.nbluns;
  1391. for (i = 0; i < cfgrsp->pbc_cfg.nbluns; i++)
  1392. wwns[i] = cfgrsp->pbc_cfg.blun[i].tgt_pwwn;
  1393. return;
  1394. }
  1395. *nwwns = cfgrsp->bootwwns.nwwns;
  1396. memcpy(wwns, cfgrsp->bootwwns.wwn, sizeof(cfgrsp->bootwwns.wwn));
  1397. }
  1398. int
  1399. bfa_iocfc_get_pbc_vports(struct bfa_s *bfa, struct bfi_pbc_vport_s *pbc_vport)
  1400. {
  1401. struct bfa_iocfc_s *iocfc = &bfa->iocfc;
  1402. struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
  1403. memcpy(pbc_vport, cfgrsp->pbc_cfg.vport, sizeof(cfgrsp->pbc_cfg.vport));
  1404. return cfgrsp->pbc_cfg.nvports;
  1405. }
  1406. /*
  1407. * Use this function query the memory requirement of the BFA library.
  1408. * This function needs to be called before bfa_attach() to get the
  1409. * memory required of the BFA layer for a given driver configuration.
  1410. *
  1411. * This call will fail, if the cap is out of range compared to pre-defined
  1412. * values within the BFA library
  1413. *
  1414. * @param[in] cfg - pointer to bfa_ioc_cfg_t. Driver layer should indicate
  1415. * its configuration in this structure.
  1416. * The default values for struct bfa_iocfc_cfg_s can be
  1417. * fetched using bfa_cfg_get_default() API.
  1418. *
  1419. * If cap's boundary check fails, the library will use
  1420. * the default bfa_cap_t values (and log a warning msg).
  1421. *
  1422. * @param[out] meminfo - pointer to bfa_meminfo_t. This content
  1423. * indicates the memory type (see bfa_mem_type_t) and
  1424. * amount of memory required.
  1425. *
  1426. * Driver should allocate the memory, populate the
  1427. * starting address for each block and provide the same
  1428. * structure as input parameter to bfa_attach() call.
  1429. *
  1430. * @param[in] bfa - pointer to the bfa structure, used while fetching the
  1431. * dma, kva memory information of the bfa sub-modules.
  1432. *
  1433. * @return void
  1434. *
  1435. * Special Considerations: @note
  1436. */
  1437. void
  1438. bfa_cfg_get_meminfo(struct bfa_iocfc_cfg_s *cfg, struct bfa_meminfo_s *meminfo,
  1439. struct bfa_s *bfa)
  1440. {
  1441. int i;
  1442. struct bfa_mem_dma_s *port_dma = BFA_MEM_PORT_DMA(bfa);
  1443. struct bfa_mem_dma_s *ablk_dma = BFA_MEM_ABLK_DMA(bfa);
  1444. struct bfa_mem_dma_s *cee_dma = BFA_MEM_CEE_DMA(bfa);
  1445. struct bfa_mem_dma_s *sfp_dma = BFA_MEM_SFP_DMA(bfa);
  1446. struct bfa_mem_dma_s *flash_dma = BFA_MEM_FLASH_DMA(bfa);
  1447. struct bfa_mem_dma_s *diag_dma = BFA_MEM_DIAG_DMA(bfa);
  1448. struct bfa_mem_dma_s *phy_dma = BFA_MEM_PHY_DMA(bfa);
  1449. WARN_ON((cfg == NULL) || (meminfo == NULL));
  1450. memset((void *)meminfo, 0, sizeof(struct bfa_meminfo_s));
  1451. /* Initialize the DMA & KVA meminfo queues */
  1452. INIT_LIST_HEAD(&meminfo->dma_info.qe);
  1453. INIT_LIST_HEAD(&meminfo->kva_info.qe);
  1454. bfa_iocfc_meminfo(cfg, meminfo, bfa);
  1455. for (i = 0; hal_mods[i]; i++)
  1456. hal_mods[i]->meminfo(cfg, meminfo, bfa);
  1457. /* dma info setup */
  1458. bfa_mem_dma_setup(meminfo, port_dma, bfa_port_meminfo());
  1459. bfa_mem_dma_setup(meminfo, ablk_dma, bfa_ablk_meminfo());
  1460. bfa_mem_dma_setup(meminfo, cee_dma, bfa_cee_meminfo());
  1461. bfa_mem_dma_setup(meminfo, sfp_dma, bfa_sfp_meminfo());
  1462. bfa_mem_dma_setup(meminfo, flash_dma,
  1463. bfa_flash_meminfo(cfg->drvcfg.min_cfg));
  1464. bfa_mem_dma_setup(meminfo, diag_dma, bfa_diag_meminfo());
  1465. bfa_mem_dma_setup(meminfo, phy_dma,
  1466. bfa_phy_meminfo(cfg->drvcfg.min_cfg));
  1467. }
  1468. /*
  1469. * Use this function to do attach the driver instance with the BFA
  1470. * library. This function will not trigger any HW initialization
  1471. * process (which will be done in bfa_init() call)
  1472. *
  1473. * This call will fail, if the cap is out of range compared to
  1474. * pre-defined values within the BFA library
  1475. *
  1476. * @param[out] bfa Pointer to bfa_t.
  1477. * @param[in] bfad Opaque handle back to the driver's IOC structure
  1478. * @param[in] cfg Pointer to bfa_ioc_cfg_t. Should be same structure
  1479. * that was used in bfa_cfg_get_meminfo().
  1480. * @param[in] meminfo Pointer to bfa_meminfo_t. The driver should
  1481. * use the bfa_cfg_get_meminfo() call to
  1482. * find the memory blocks required, allocate the
  1483. * required memory and provide the starting addresses.
  1484. * @param[in] pcidev pointer to struct bfa_pcidev_s
  1485. *
  1486. * @return
  1487. * void
  1488. *
  1489. * Special Considerations:
  1490. *
  1491. * @note
  1492. *
  1493. */
  1494. void
  1495. bfa_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
  1496. struct bfa_meminfo_s *meminfo, struct bfa_pcidev_s *pcidev)
  1497. {
  1498. int i;
  1499. struct bfa_mem_dma_s *dma_info, *dma_elem;
  1500. struct bfa_mem_kva_s *kva_info, *kva_elem;
  1501. struct list_head *dm_qe, *km_qe;
  1502. bfa->fcs = BFA_FALSE;
  1503. WARN_ON((cfg == NULL) || (meminfo == NULL));
  1504. /* Initialize memory pointers for iterative allocation */
  1505. dma_info = &meminfo->dma_info;
  1506. dma_info->kva_curp = dma_info->kva;
  1507. dma_info->dma_curp = dma_info->dma;
  1508. kva_info = &meminfo->kva_info;
  1509. kva_info->kva_curp = kva_info->kva;
  1510. list_for_each(dm_qe, &dma_info->qe) {
  1511. dma_elem = (struct bfa_mem_dma_s *) dm_qe;
  1512. dma_elem->kva_curp = dma_elem->kva;
  1513. dma_elem->dma_curp = dma_elem->dma;
  1514. }
  1515. list_for_each(km_qe, &kva_info->qe) {
  1516. kva_elem = (struct bfa_mem_kva_s *) km_qe;
  1517. kva_elem->kva_curp = kva_elem->kva;
  1518. }
  1519. bfa_iocfc_attach(bfa, bfad, cfg, pcidev);
  1520. for (i = 0; hal_mods[i]; i++)
  1521. hal_mods[i]->attach(bfa, bfad, cfg, pcidev);
  1522. bfa_com_port_attach(bfa);
  1523. bfa_com_ablk_attach(bfa);
  1524. bfa_com_cee_attach(bfa);
  1525. bfa_com_sfp_attach(bfa);
  1526. bfa_com_flash_attach(bfa, cfg->drvcfg.min_cfg);
  1527. bfa_com_diag_attach(bfa);
  1528. bfa_com_phy_attach(bfa, cfg->drvcfg.min_cfg);
  1529. }
  1530. /*
  1531. * Use this function to delete a BFA IOC. IOC should be stopped (by
  1532. * calling bfa_stop()) before this function call.
  1533. *
  1534. * @param[in] bfa - pointer to bfa_t.
  1535. *
  1536. * @return
  1537. * void
  1538. *
  1539. * Special Considerations:
  1540. *
  1541. * @note
  1542. */
  1543. void
  1544. bfa_detach(struct bfa_s *bfa)
  1545. {
  1546. int i;
  1547. for (i = 0; hal_mods[i]; i++)
  1548. hal_mods[i]->detach(bfa);
  1549. bfa_ioc_detach(&bfa->ioc);
  1550. }
  1551. void
  1552. bfa_comp_deq(struct bfa_s *bfa, struct list_head *comp_q)
  1553. {
  1554. INIT_LIST_HEAD(comp_q);
  1555. list_splice_tail_init(&bfa->comp_q, comp_q);
  1556. }
  1557. void
  1558. bfa_comp_process(struct bfa_s *bfa, struct list_head *comp_q)
  1559. {
  1560. struct list_head *qe;
  1561. struct list_head *qen;
  1562. struct bfa_cb_qe_s *hcb_qe;
  1563. bfa_cb_cbfn_status_t cbfn;
  1564. list_for_each_safe(qe, qen, comp_q) {
  1565. hcb_qe = (struct bfa_cb_qe_s *) qe;
  1566. if (hcb_qe->pre_rmv) {
  1567. /* qe is invalid after return, dequeue before cbfn() */
  1568. list_del(qe);
  1569. cbfn = (bfa_cb_cbfn_status_t)(hcb_qe->cbfn);
  1570. cbfn(hcb_qe->cbarg, hcb_qe->fw_status);
  1571. } else
  1572. hcb_qe->cbfn(hcb_qe->cbarg, BFA_TRUE);
  1573. }
  1574. }
  1575. void
  1576. bfa_comp_free(struct bfa_s *bfa, struct list_head *comp_q)
  1577. {
  1578. struct list_head *qe;
  1579. struct bfa_cb_qe_s *hcb_qe;
  1580. while (!list_empty(comp_q)) {
  1581. bfa_q_deq(comp_q, &qe);
  1582. hcb_qe = (struct bfa_cb_qe_s *) qe;
  1583. WARN_ON(hcb_qe->pre_rmv);
  1584. hcb_qe->cbfn(hcb_qe->cbarg, BFA_FALSE);
  1585. }
  1586. }
  1587. /*
  1588. * Return the list of PCI vendor/device id lists supported by this
  1589. * BFA instance.
  1590. */
  1591. void
  1592. bfa_get_pciids(struct bfa_pciid_s **pciids, int *npciids)
  1593. {
  1594. static struct bfa_pciid_s __pciids[] = {
  1595. {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_FC_8G2P},
  1596. {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_FC_8G1P},
  1597. {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT},
  1598. {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT_FC},
  1599. };
  1600. *npciids = sizeof(__pciids) / sizeof(__pciids[0]);
  1601. *pciids = __pciids;
  1602. }
  1603. /*
  1604. * Use this function query the default struct bfa_iocfc_cfg_s value (compiled
  1605. * into BFA layer). The OS driver can then turn back and overwrite entries that
  1606. * have been configured by the user.
  1607. *
  1608. * @param[in] cfg - pointer to bfa_ioc_cfg_t
  1609. *
  1610. * @return
  1611. * void
  1612. *
  1613. * Special Considerations:
  1614. * note
  1615. */
  1616. void
  1617. bfa_cfg_get_default(struct bfa_iocfc_cfg_s *cfg)
  1618. {
  1619. cfg->fwcfg.num_fabrics = DEF_CFG_NUM_FABRICS;
  1620. cfg->fwcfg.num_lports = DEF_CFG_NUM_LPORTS;
  1621. cfg->fwcfg.num_rports = DEF_CFG_NUM_RPORTS;
  1622. cfg->fwcfg.num_ioim_reqs = DEF_CFG_NUM_IOIM_REQS;
  1623. cfg->fwcfg.num_tskim_reqs = DEF_CFG_NUM_TSKIM_REQS;
  1624. cfg->fwcfg.num_fcxp_reqs = DEF_CFG_NUM_FCXP_REQS;
  1625. cfg->fwcfg.num_uf_bufs = DEF_CFG_NUM_UF_BUFS;
  1626. cfg->fwcfg.num_cqs = DEF_CFG_NUM_CQS;
  1627. cfg->fwcfg.num_fwtio_reqs = 0;
  1628. cfg->drvcfg.num_reqq_elems = DEF_CFG_NUM_REQQ_ELEMS;
  1629. cfg->drvcfg.num_rspq_elems = DEF_CFG_NUM_RSPQ_ELEMS;
  1630. cfg->drvcfg.num_sgpgs = DEF_CFG_NUM_SGPGS;
  1631. cfg->drvcfg.num_sboot_tgts = DEF_CFG_NUM_SBOOT_TGTS;
  1632. cfg->drvcfg.num_sboot_luns = DEF_CFG_NUM_SBOOT_LUNS;
  1633. cfg->drvcfg.path_tov = BFA_FCPIM_PATHTOV_DEF;
  1634. cfg->drvcfg.ioc_recover = BFA_FALSE;
  1635. cfg->drvcfg.delay_comp = BFA_FALSE;
  1636. }
  1637. void
  1638. bfa_cfg_get_min(struct bfa_iocfc_cfg_s *cfg)
  1639. {
  1640. bfa_cfg_get_default(cfg);
  1641. cfg->fwcfg.num_ioim_reqs = BFA_IOIM_MIN;
  1642. cfg->fwcfg.num_tskim_reqs = BFA_TSKIM_MIN;
  1643. cfg->fwcfg.num_fcxp_reqs = BFA_FCXP_MIN;
  1644. cfg->fwcfg.num_uf_bufs = BFA_UF_MIN;
  1645. cfg->fwcfg.num_rports = BFA_RPORT_MIN;
  1646. cfg->fwcfg.num_fwtio_reqs = 0;
  1647. cfg->drvcfg.num_sgpgs = BFA_SGPG_MIN;
  1648. cfg->drvcfg.num_reqq_elems = BFA_REQQ_NELEMS_MIN;
  1649. cfg->drvcfg.num_rspq_elems = BFA_RSPQ_NELEMS_MIN;
  1650. cfg->drvcfg.min_cfg = BFA_TRUE;
  1651. }