提交 5fbe25c7 编写于 作者: J Jing Huang 提交者: James Bottomley

[SCSI] bfa: fix comments for c files

This patch addresses the comments from Randy Dunlap (Randy.Dunlap@oracle.com)
regarding comment blocks that begining with "/**". bfa driver comments
currently do not follow kernel-doc convention, we hence replace all
/** with /* and **/ with */.
Signed-off-by: NJing Huang <huangj@brocade.com>
Signed-off-by: NJames Bottomley <James.Bottomley@suse.de>
上级 acdc79a6
...@@ -21,11 +21,11 @@ ...@@ -21,11 +21,11 @@
BFA_TRC_FILE(HAL, CORE); BFA_TRC_FILE(HAL, CORE);
/** /*
* BFA IOC FC related definitions * BFA IOC FC related definitions
*/ */
/** /*
* IOC local definitions * IOC local definitions
*/ */
#define BFA_IOCFC_TOV 5000 /* msecs */ #define BFA_IOCFC_TOV 5000 /* msecs */
...@@ -54,7 +54,7 @@ enum { ...@@ -54,7 +54,7 @@ enum {
#define DEF_CFG_NUM_SBOOT_TGTS 16 #define DEF_CFG_NUM_SBOOT_TGTS 16
#define DEF_CFG_NUM_SBOOT_LUNS 16 #define DEF_CFG_NUM_SBOOT_LUNS 16
/** /*
* forward declaration for IOC FC functions * forward declaration for IOC FC functions
*/ */
static void bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status); static void bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status);
...@@ -63,7 +63,7 @@ static void bfa_iocfc_hbfail_cbfn(void *bfa_arg); ...@@ -63,7 +63,7 @@ static void bfa_iocfc_hbfail_cbfn(void *bfa_arg);
static void bfa_iocfc_reset_cbfn(void *bfa_arg); static void bfa_iocfc_reset_cbfn(void *bfa_arg);
static struct bfa_ioc_cbfn_s bfa_iocfc_cbfn; static struct bfa_ioc_cbfn_s bfa_iocfc_cbfn;
/** /*
* BFA Interrupt handling functions * BFA Interrupt handling functions
*/ */
static void static void
...@@ -86,7 +86,7 @@ bfa_reqq_resume(struct bfa_s *bfa, int qid) ...@@ -86,7 +86,7 @@ bfa_reqq_resume(struct bfa_s *bfa, int qid)
waitq = bfa_reqq(bfa, qid); waitq = bfa_reqq(bfa, qid);
list_for_each_safe(qe, qen, waitq) { list_for_each_safe(qe, qen, waitq) {
/** /*
* Callback only as long as there is room in request queue * Callback only as long as there is room in request queue
*/ */
if (bfa_reqq_full(bfa, qid)) if (bfa_reqq_full(bfa, qid))
...@@ -104,7 +104,7 @@ bfa_msix_all(struct bfa_s *bfa, int vec) ...@@ -104,7 +104,7 @@ bfa_msix_all(struct bfa_s *bfa, int vec)
bfa_intx(bfa); bfa_intx(bfa);
} }
/** /*
* hal_intr_api * hal_intr_api
*/ */
bfa_boolean_t bfa_boolean_t
...@@ -117,7 +117,7 @@ bfa_intx(struct bfa_s *bfa) ...@@ -117,7 +117,7 @@ bfa_intx(struct bfa_s *bfa)
if (!intr) if (!intr)
return BFA_FALSE; return BFA_FALSE;
/** /*
* RME completion queue interrupt * RME completion queue interrupt
*/ */
qintr = intr & __HFN_INT_RME_MASK; qintr = intr & __HFN_INT_RME_MASK;
...@@ -131,7 +131,7 @@ bfa_intx(struct bfa_s *bfa) ...@@ -131,7 +131,7 @@ bfa_intx(struct bfa_s *bfa)
if (!intr) if (!intr)
return BFA_TRUE; return BFA_TRUE;
/** /*
* CPE completion queue interrupt * CPE completion queue interrupt
*/ */
qintr = intr & __HFN_INT_CPE_MASK; qintr = intr & __HFN_INT_CPE_MASK;
...@@ -211,7 +211,7 @@ bfa_msix_reqq(struct bfa_s *bfa, int qid) ...@@ -211,7 +211,7 @@ bfa_msix_reqq(struct bfa_s *bfa, int qid)
bfa->iocfc.hwif.hw_reqq_ack(bfa, qid); bfa->iocfc.hwif.hw_reqq_ack(bfa, qid);
/** /*
* Resume any pending requests in the corresponding reqq. * Resume any pending requests in the corresponding reqq.
*/ */
waitq = bfa_reqq(bfa, qid); waitq = bfa_reqq(bfa, qid);
...@@ -259,14 +259,14 @@ bfa_msix_rspq(struct bfa_s *bfa, int qid) ...@@ -259,14 +259,14 @@ bfa_msix_rspq(struct bfa_s *bfa, int qid)
} }
} }
/** /*
* update CI * update CI
*/ */
bfa_rspq_ci(bfa, qid) = pi; bfa_rspq_ci(bfa, qid) = pi;
writel(pi, bfa->iocfc.bfa_regs.rme_q_ci[qid]); writel(pi, bfa->iocfc.bfa_regs.rme_q_ci[qid]);
mmiowb(); mmiowb();
/** /*
* Resume any pending requests in the corresponding reqq. * Resume any pending requests in the corresponding reqq.
*/ */
waitq = bfa_reqq(bfa, qid); waitq = bfa_reqq(bfa, qid);
...@@ -289,7 +289,7 @@ bfa_msix_lpu_err(struct bfa_s *bfa, int vec) ...@@ -289,7 +289,7 @@ bfa_msix_lpu_err(struct bfa_s *bfa, int vec)
if (intr) { if (intr) {
if (intr & __HFN_INT_LL_HALT) { if (intr & __HFN_INT_LL_HALT) {
/** /*
* If LL_HALT bit is set then FW Init Halt LL Port * If LL_HALT bit is set then FW Init Halt LL Port
* Register needs to be cleared as well so Interrupt * Register needs to be cleared as well so Interrupt
* Status Register will be cleared. * Status Register will be cleared.
...@@ -300,7 +300,7 @@ bfa_msix_lpu_err(struct bfa_s *bfa, int vec) ...@@ -300,7 +300,7 @@ bfa_msix_lpu_err(struct bfa_s *bfa, int vec)
} }
if (intr & __HFN_INT_ERR_PSS) { if (intr & __HFN_INT_ERR_PSS) {
/** /*
* ERR_PSS bit needs to be cleared as well in case * ERR_PSS bit needs to be cleared as well in case
* interrups are shared so driver's interrupt handler is * interrups are shared so driver's interrupt handler is
* still called eventhough it is already masked out. * still called eventhough it is already masked out.
...@@ -323,11 +323,11 @@ bfa_isr_bind(enum bfi_mclass mc, bfa_isr_func_t isr_func) ...@@ -323,11 +323,11 @@ bfa_isr_bind(enum bfi_mclass mc, bfa_isr_func_t isr_func)
bfa_isrs[mc] = isr_func; bfa_isrs[mc] = isr_func;
} }
/** /*
* BFA IOC FC related functions * BFA IOC FC related functions
*/ */
/** /*
* hal_ioc_pvt BFA IOC private functions * hal_ioc_pvt BFA IOC private functions
*/ */
...@@ -366,7 +366,7 @@ bfa_iocfc_fw_cfg_sz(struct bfa_iocfc_cfg_s *cfg, u32 *dm_len) ...@@ -366,7 +366,7 @@ bfa_iocfc_fw_cfg_sz(struct bfa_iocfc_cfg_s *cfg, u32 *dm_len)
BFA_CACHELINE_SZ); BFA_CACHELINE_SZ);
} }
/** /*
* Use the Mailbox interface to send BFI_IOCFC_H2I_CFG_REQ * Use the Mailbox interface to send BFI_IOCFC_H2I_CFG_REQ
*/ */
static void static void
...@@ -384,14 +384,14 @@ bfa_iocfc_send_cfg(void *bfa_arg) ...@@ -384,14 +384,14 @@ bfa_iocfc_send_cfg(void *bfa_arg)
bfa_iocfc_reset_queues(bfa); bfa_iocfc_reset_queues(bfa);
/** /*
* initialize IOC configuration info * initialize IOC configuration info
*/ */
cfg_info->endian_sig = BFI_IOC_ENDIAN_SIG; cfg_info->endian_sig = BFI_IOC_ENDIAN_SIG;
cfg_info->num_cqs = cfg->fwcfg.num_cqs; cfg_info->num_cqs = cfg->fwcfg.num_cqs;
bfa_dma_be_addr_set(cfg_info->cfgrsp_addr, iocfc->cfgrsp_dma.pa); bfa_dma_be_addr_set(cfg_info->cfgrsp_addr, iocfc->cfgrsp_dma.pa);
/** /*
* dma map REQ and RSP circular queues and shadow pointers * dma map REQ and RSP circular queues and shadow pointers
*/ */
for (i = 0; i < cfg->fwcfg.num_cqs; i++) { for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
...@@ -410,7 +410,7 @@ bfa_iocfc_send_cfg(void *bfa_arg) ...@@ -410,7 +410,7 @@ bfa_iocfc_send_cfg(void *bfa_arg)
cpu_to_be16(cfg->drvcfg.num_rspq_elems); cpu_to_be16(cfg->drvcfg.num_rspq_elems);
} }
/** /*
* Enable interrupt coalescing if it is driver init path * Enable interrupt coalescing if it is driver init path
* and not ioc disable/enable path. * and not ioc disable/enable path.
*/ */
...@@ -419,7 +419,7 @@ bfa_iocfc_send_cfg(void *bfa_arg) ...@@ -419,7 +419,7 @@ bfa_iocfc_send_cfg(void *bfa_arg)
iocfc->cfgdone = BFA_FALSE; iocfc->cfgdone = BFA_FALSE;
/** /*
* dma map IOC configuration itself * dma map IOC configuration itself
*/ */
bfi_h2i_set(cfg_req.mh, BFI_MC_IOCFC, BFI_IOCFC_H2I_CFG_REQ, bfi_h2i_set(cfg_req.mh, BFI_MC_IOCFC, BFI_IOCFC_H2I_CFG_REQ,
...@@ -442,7 +442,7 @@ bfa_iocfc_init_mem(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg, ...@@ -442,7 +442,7 @@ bfa_iocfc_init_mem(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
iocfc->cfg = *cfg; iocfc->cfg = *cfg;
/** /*
* Initialize chip specific handlers. * Initialize chip specific handlers.
*/ */
if (bfa_asic_id_ct(bfa_ioc_devid(&bfa->ioc))) { if (bfa_asic_id_ct(bfa_ioc_devid(&bfa->ioc))) {
...@@ -559,7 +559,7 @@ bfa_iocfc_mem_claim(struct bfa_s *bfa, struct bfa_iocfc_cfg_s *cfg, ...@@ -559,7 +559,7 @@ bfa_iocfc_mem_claim(struct bfa_s *bfa, struct bfa_iocfc_cfg_s *cfg,
} }
} }
/** /*
* Start BFA submodules. * Start BFA submodules.
*/ */
static void static void
...@@ -573,7 +573,7 @@ bfa_iocfc_start_submod(struct bfa_s *bfa) ...@@ -573,7 +573,7 @@ bfa_iocfc_start_submod(struct bfa_s *bfa)
hal_mods[i]->start(bfa); hal_mods[i]->start(bfa);
} }
/** /*
* Disable BFA submodules. * Disable BFA submodules.
*/ */
static void static void
...@@ -623,7 +623,7 @@ bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl) ...@@ -623,7 +623,7 @@ bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl)
complete(&bfad->disable_comp); complete(&bfad->disable_comp);
} }
/** /*
* Update BFA configuration from firmware configuration. * Update BFA configuration from firmware configuration.
*/ */
static void static void
...@@ -642,7 +642,7 @@ bfa_iocfc_cfgrsp(struct bfa_s *bfa) ...@@ -642,7 +642,7 @@ bfa_iocfc_cfgrsp(struct bfa_s *bfa)
iocfc->cfgdone = BFA_TRUE; iocfc->cfgdone = BFA_TRUE;
/** /*
* Configuration is complete - initialize/start submodules * Configuration is complete - initialize/start submodules
*/ */
bfa_fcport_init(bfa); bfa_fcport_init(bfa);
...@@ -665,7 +665,7 @@ bfa_iocfc_reset_queues(struct bfa_s *bfa) ...@@ -665,7 +665,7 @@ bfa_iocfc_reset_queues(struct bfa_s *bfa)
} }
} }
/** /*
* IOC enable request is complete * IOC enable request is complete
*/ */
static void static void
...@@ -684,7 +684,7 @@ bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status) ...@@ -684,7 +684,7 @@ bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status)
bfa_iocfc_send_cfg(bfa); bfa_iocfc_send_cfg(bfa);
} }
/** /*
* IOC disable request is complete * IOC disable request is complete
*/ */
static void static void
...@@ -705,7 +705,7 @@ bfa_iocfc_disable_cbfn(void *bfa_arg) ...@@ -705,7 +705,7 @@ bfa_iocfc_disable_cbfn(void *bfa_arg)
} }
} }
/** /*
* Notify sub-modules of hardware failure. * Notify sub-modules of hardware failure.
*/ */
static void static void
...@@ -723,7 +723,7 @@ bfa_iocfc_hbfail_cbfn(void *bfa_arg) ...@@ -723,7 +723,7 @@ bfa_iocfc_hbfail_cbfn(void *bfa_arg)
bfa); bfa);
} }
/** /*
* Actions on chip-reset completion. * Actions on chip-reset completion.
*/ */
static void static void
...@@ -735,11 +735,11 @@ bfa_iocfc_reset_cbfn(void *bfa_arg) ...@@ -735,11 +735,11 @@ bfa_iocfc_reset_cbfn(void *bfa_arg)
bfa_isr_enable(bfa); bfa_isr_enable(bfa);
} }
/** /*
* hal_ioc_public * hal_ioc_public
*/ */
/** /*
* Query IOC memory requirement information. * Query IOC memory requirement information.
*/ */
void void
...@@ -754,7 +754,7 @@ bfa_iocfc_meminfo(struct bfa_iocfc_cfg_s *cfg, u32 *km_len, ...@@ -754,7 +754,7 @@ bfa_iocfc_meminfo(struct bfa_iocfc_cfg_s *cfg, u32 *km_len,
*km_len += bfa_ioc_debug_trcsz(bfa_auto_recover); *km_len += bfa_ioc_debug_trcsz(bfa_auto_recover);
} }
/** /*
* Query IOC memory requirement information. * Query IOC memory requirement information.
*/ */
void void
...@@ -772,7 +772,7 @@ bfa_iocfc_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg, ...@@ -772,7 +772,7 @@ bfa_iocfc_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
ioc->trcmod = bfa->trcmod; ioc->trcmod = bfa->trcmod;
bfa_ioc_attach(&bfa->ioc, bfa, &bfa_iocfc_cbfn, &bfa->timer_mod); bfa_ioc_attach(&bfa->ioc, bfa, &bfa_iocfc_cbfn, &bfa->timer_mod);
/** /*
* Set FC mode for BFA_PCI_DEVICE_ID_CT_FC. * Set FC mode for BFA_PCI_DEVICE_ID_CT_FC.
*/ */
if (pcidev->device_id == BFA_PCI_DEVICE_ID_CT_FC) if (pcidev->device_id == BFA_PCI_DEVICE_ID_CT_FC)
...@@ -790,7 +790,7 @@ bfa_iocfc_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg, ...@@ -790,7 +790,7 @@ bfa_iocfc_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
INIT_LIST_HEAD(&bfa->reqq_waitq[i]); INIT_LIST_HEAD(&bfa->reqq_waitq[i]);
} }
/** /*
* Query IOC memory requirement information. * Query IOC memory requirement information.
*/ */
void void
...@@ -799,7 +799,7 @@ bfa_iocfc_detach(struct bfa_s *bfa) ...@@ -799,7 +799,7 @@ bfa_iocfc_detach(struct bfa_s *bfa)
bfa_ioc_detach(&bfa->ioc); bfa_ioc_detach(&bfa->ioc);
} }
/** /*
* Query IOC memory requirement information. * Query IOC memory requirement information.
*/ */
void void
...@@ -809,7 +809,7 @@ bfa_iocfc_init(struct bfa_s *bfa) ...@@ -809,7 +809,7 @@ bfa_iocfc_init(struct bfa_s *bfa)
bfa_ioc_enable(&bfa->ioc); bfa_ioc_enable(&bfa->ioc);
} }
/** /*
* IOC start called from bfa_start(). Called to start IOC operations * IOC start called from bfa_start(). Called to start IOC operations
* at driver instantiation for this instance. * at driver instantiation for this instance.
*/ */
...@@ -820,7 +820,7 @@ bfa_iocfc_start(struct bfa_s *bfa) ...@@ -820,7 +820,7 @@ bfa_iocfc_start(struct bfa_s *bfa)
bfa_iocfc_start_submod(bfa); bfa_iocfc_start_submod(bfa);
} }
/** /*
* IOC stop called from bfa_stop(). Called only when driver is unloaded * IOC stop called from bfa_stop(). Called only when driver is unloaded
* for this instance. * for this instance.
*/ */
...@@ -924,7 +924,7 @@ bfa_iocfc_set_snsbase(struct bfa_s *bfa, u64 snsbase_pa) ...@@ -924,7 +924,7 @@ bfa_iocfc_set_snsbase(struct bfa_s *bfa, u64 snsbase_pa)
iocfc->cfginfo->sense_buf_len = (BFI_IOIM_SNSLEN - 1); iocfc->cfginfo->sense_buf_len = (BFI_IOIM_SNSLEN - 1);
bfa_dma_be_addr_set(iocfc->cfginfo->ioim_snsbase, snsbase_pa); bfa_dma_be_addr_set(iocfc->cfginfo->ioim_snsbase, snsbase_pa);
} }
/** /*
* Enable IOC after it is disabled. * Enable IOC after it is disabled.
*/ */
void void
...@@ -953,7 +953,7 @@ bfa_iocfc_is_operational(struct bfa_s *bfa) ...@@ -953,7 +953,7 @@ bfa_iocfc_is_operational(struct bfa_s *bfa)
return bfa_ioc_is_operational(&bfa->ioc) && bfa->iocfc.cfgdone; return bfa_ioc_is_operational(&bfa->ioc) && bfa->iocfc.cfgdone;
} }
/** /*
* Return boot target port wwns -- read from boot information in flash. * Return boot target port wwns -- read from boot information in flash.
*/ */
void void
...@@ -998,11 +998,11 @@ bfa_iocfc_get_pbc_vports(struct bfa_s *bfa, struct bfi_pbc_vport_s *pbc_vport) ...@@ -998,11 +998,11 @@ bfa_iocfc_get_pbc_vports(struct bfa_s *bfa, struct bfi_pbc_vport_s *pbc_vport)
return cfgrsp->pbc_cfg.nvports; return cfgrsp->pbc_cfg.nvports;
} }
/** /*
* hal_api * hal_api
*/ */
/** /*
* Use this function query the memory requirement of the BFA library. * Use this function query the memory requirement of the BFA library.
* This function needs to be called before bfa_attach() to get the * This function needs to be called before bfa_attach() to get the
* memory required of the BFA layer for a given driver configuration. * memory required of the BFA layer for a given driver configuration.
...@@ -1055,7 +1055,7 @@ bfa_cfg_get_meminfo(struct bfa_iocfc_cfg_s *cfg, struct bfa_meminfo_s *meminfo) ...@@ -1055,7 +1055,7 @@ bfa_cfg_get_meminfo(struct bfa_iocfc_cfg_s *cfg, struct bfa_meminfo_s *meminfo)
meminfo->meminfo[BFA_MEM_TYPE_DMA - 1].mem_len = dm_len; meminfo->meminfo[BFA_MEM_TYPE_DMA - 1].mem_len = dm_len;
} }
/** /*
* Use this function to do attach the driver instance with the BFA * Use this function to do attach the driver instance with the BFA
* library. This function will not trigger any HW initialization * library. This function will not trigger any HW initialization
* process (which will be done in bfa_init() call) * process (which will be done in bfa_init() call)
...@@ -1092,7 +1092,7 @@ bfa_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg, ...@@ -1092,7 +1092,7 @@ bfa_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
bfa_assert((cfg != NULL) && (meminfo != NULL)); bfa_assert((cfg != NULL) && (meminfo != NULL));
/** /*
* initialize all memory pointers for iterative allocation * initialize all memory pointers for iterative allocation
*/ */
for (i = 0; i < BFA_MEM_TYPE_MAX; i++) { for (i = 0; i < BFA_MEM_TYPE_MAX; i++) {
...@@ -1109,7 +1109,7 @@ bfa_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg, ...@@ -1109,7 +1109,7 @@ bfa_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
bfa_com_port_attach(bfa, meminfo); bfa_com_port_attach(bfa, meminfo);
} }
/** /*
* Use this function to delete a BFA IOC. IOC should be stopped (by * Use this function to delete a BFA IOC. IOC should be stopped (by
* calling bfa_stop()) before this function call. * calling bfa_stop()) before this function call.
* *
...@@ -1146,7 +1146,7 @@ bfa_init_plog(struct bfa_s *bfa, struct bfa_plog_s *plog) ...@@ -1146,7 +1146,7 @@ bfa_init_plog(struct bfa_s *bfa, struct bfa_plog_s *plog)
bfa->plog = plog; bfa->plog = plog;
} }
/** /*
* Initialize IOC. * Initialize IOC.
* *
* This function will return immediately, when the IOC initialization is * This function will return immediately, when the IOC initialization is
...@@ -1169,7 +1169,7 @@ bfa_init(struct bfa_s *bfa) ...@@ -1169,7 +1169,7 @@ bfa_init(struct bfa_s *bfa)
bfa_iocfc_init(bfa); bfa_iocfc_init(bfa);
} }
/** /*
* Use this function initiate the IOC configuration setup. This function * Use this function initiate the IOC configuration setup. This function
* will return immediately. * will return immediately.
* *
...@@ -1183,7 +1183,7 @@ bfa_start(struct bfa_s *bfa) ...@@ -1183,7 +1183,7 @@ bfa_start(struct bfa_s *bfa)
bfa_iocfc_start(bfa); bfa_iocfc_start(bfa);
} }
/** /*
* Use this function quiese the IOC. This function will return immediately, * Use this function quiese the IOC. This function will return immediately,
* when the IOC is actually stopped, the bfad->comp will be set. * when the IOC is actually stopped, the bfad->comp will be set.
* *
...@@ -1243,7 +1243,7 @@ bfa_attach_fcs(struct bfa_s *bfa) ...@@ -1243,7 +1243,7 @@ bfa_attach_fcs(struct bfa_s *bfa)
bfa->fcs = BFA_TRUE; bfa->fcs = BFA_TRUE;
} }
/** /*
* Periodic timer heart beat from driver * Periodic timer heart beat from driver
*/ */
void void
...@@ -1252,7 +1252,7 @@ bfa_timer_tick(struct bfa_s *bfa) ...@@ -1252,7 +1252,7 @@ bfa_timer_tick(struct bfa_s *bfa)
bfa_timer_beat(&bfa->timer_mod); bfa_timer_beat(&bfa->timer_mod);
} }
/** /*
* Return the list of PCI vendor/device id lists supported by this * Return the list of PCI vendor/device id lists supported by this
* BFA instance. * BFA instance.
*/ */
...@@ -1270,7 +1270,7 @@ bfa_get_pciids(struct bfa_pciid_s **pciids, int *npciids) ...@@ -1270,7 +1270,7 @@ bfa_get_pciids(struct bfa_pciid_s **pciids, int *npciids)
*pciids = __pciids; *pciids = __pciids;
} }
/** /*
* Use this function query the default struct bfa_iocfc_cfg_s value (compiled * Use this function query the default struct bfa_iocfc_cfg_s value (compiled
* into BFA layer). The OS driver can then turn back and overwrite entries that * into BFA layer). The OS driver can then turn back and overwrite entries that
* have been configured by the user. * have been configured by the user.
...@@ -1328,7 +1328,7 @@ bfa_get_attr(struct bfa_s *bfa, struct bfa_ioc_attr_s *ioc_attr) ...@@ -1328,7 +1328,7 @@ bfa_get_attr(struct bfa_s *bfa, struct bfa_ioc_attr_s *ioc_attr)
bfa_ioc_get_attr(&bfa->ioc, ioc_attr); bfa_ioc_get_attr(&bfa->ioc, ioc_attr);
} }
/** /*
* Retrieve firmware trace information on IOC failure. * Retrieve firmware trace information on IOC failure.
*/ */
bfa_status_t bfa_status_t
...@@ -1337,7 +1337,7 @@ bfa_debug_fwsave(struct bfa_s *bfa, void *trcdata, int *trclen) ...@@ -1337,7 +1337,7 @@ bfa_debug_fwsave(struct bfa_s *bfa, void *trcdata, int *trclen)
return bfa_ioc_debug_fwsave(&bfa->ioc, trcdata, trclen); return bfa_ioc_debug_fwsave(&bfa->ioc, trcdata, trclen);
} }
/** /*
* Clear the saved firmware trace information of an IOC. * Clear the saved firmware trace information of an IOC.
*/ */
void void
...@@ -1346,7 +1346,7 @@ bfa_debug_fwsave_clear(struct bfa_s *bfa) ...@@ -1346,7 +1346,7 @@ bfa_debug_fwsave_clear(struct bfa_s *bfa)
bfa_ioc_debug_fwsave_clear(&bfa->ioc); bfa_ioc_debug_fwsave_clear(&bfa->ioc);
} }
/** /*
* Fetch firmware trace data. * Fetch firmware trace data.
* *
* @param[in] bfa BFA instance * @param[in] bfa BFA instance
...@@ -1362,7 +1362,7 @@ bfa_debug_fwtrc(struct bfa_s *bfa, void *trcdata, int *trclen) ...@@ -1362,7 +1362,7 @@ bfa_debug_fwtrc(struct bfa_s *bfa, void *trcdata, int *trclen)
return bfa_ioc_debug_fwtrc(&bfa->ioc, trcdata, trclen); return bfa_ioc_debug_fwtrc(&bfa->ioc, trcdata, trclen);
} }
/** /*
* Dump firmware memory. * Dump firmware memory.
* *
* @param[in] bfa BFA instance * @param[in] bfa BFA instance
...@@ -1378,7 +1378,7 @@ bfa_debug_fwcore(struct bfa_s *bfa, void *buf, u32 *offset, int *buflen) ...@@ -1378,7 +1378,7 @@ bfa_debug_fwcore(struct bfa_s *bfa, void *buf, u32 *offset, int *buflen)
{ {
return bfa_ioc_debug_fwcore(&bfa->ioc, buf, offset, buflen); return bfa_ioc_debug_fwcore(&bfa->ioc, buf, offset, buflen);
} }
/** /*
* Reset hw semaphore & usage cnt regs and initialize. * Reset hw semaphore & usage cnt regs and initialize.
*/ */
void void
...@@ -1388,7 +1388,7 @@ bfa_chip_reset(struct bfa_s *bfa) ...@@ -1388,7 +1388,7 @@ bfa_chip_reset(struct bfa_s *bfa)
bfa_ioc_pll_init(&bfa->ioc); bfa_ioc_pll_init(&bfa->ioc);
} }
/** /*
* Fetch firmware statistics data. * Fetch firmware statistics data.
* *
* @param[in] bfa BFA instance * @param[in] bfa BFA instance
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#include "bfa_modules.h" #include "bfa_modules.h"
/** /*
* BFA module list terminated by NULL * BFA module list terminated by NULL
*/ */
struct bfa_module_s *hal_mods[] = { struct bfa_module_s *hal_mods[] = {
...@@ -31,7 +31,7 @@ struct bfa_module_s *hal_mods[] = { ...@@ -31,7 +31,7 @@ struct bfa_module_s *hal_mods[] = {
NULL NULL
}; };
/** /*
* Message handlers for various modules. * Message handlers for various modules.
*/ */
bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = { bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = {
...@@ -70,7 +70,7 @@ bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = { ...@@ -70,7 +70,7 @@ bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = {
}; };
/** /*
* Message handlers for mailbox command classes * Message handlers for mailbox command classes
*/ */
bfa_ioc_mbox_mcfunc_t bfa_mbox_isrs[BFI_MC_MAX] = { bfa_ioc_mbox_mcfunc_t bfa_mbox_isrs[BFI_MC_MAX] = {
......
...@@ -150,7 +150,7 @@ fc_gs_fchdr_build(struct fchs_s *fchs, u32 d_id, u32 s_id, u32 ox_id) ...@@ -150,7 +150,7 @@ fc_gs_fchdr_build(struct fchs_s *fchs, u32 d_id, u32 s_id, u32 ox_id)
fchs->s_id = (s_id); fchs->s_id = (s_id);
fchs->ox_id = cpu_to_be16(ox_id); fchs->ox_id = cpu_to_be16(ox_id);
/** /*
* @todo no need to set ox_id for request * @todo no need to set ox_id for request
* no need to set rx_id for response * no need to set rx_id for response
*/ */
......
此差异已折叠。
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* General Public License for more details. * General Public License for more details.
*/ */
/** /*
* bfa_fcs.c BFA FCS main * bfa_fcs.c BFA FCS main
*/ */
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
BFA_TRC_FILE(FCS, FCS); BFA_TRC_FILE(FCS, FCS);
/** /*
* FCS sub-modules * FCS sub-modules
*/ */
struct bfa_fcs_mod_s { struct bfa_fcs_mod_s {
...@@ -43,7 +43,7 @@ static struct bfa_fcs_mod_s fcs_modules[] = { ...@@ -43,7 +43,7 @@ static struct bfa_fcs_mod_s fcs_modules[] = {
bfa_fcs_fabric_modexit }, bfa_fcs_fabric_modexit },
}; };
/** /*
* fcs_api BFA FCS API * fcs_api BFA FCS API
*/ */
...@@ -58,11 +58,11 @@ bfa_fcs_exit_comp(void *fcs_cbarg) ...@@ -58,11 +58,11 @@ bfa_fcs_exit_comp(void *fcs_cbarg)
/** /*
* fcs_api BFA FCS API * fcs_api BFA FCS API
*/ */
/** /*
* fcs attach -- called once to initialize data structures at driver attach time * fcs attach -- called once to initialize data structures at driver attach time
*/ */
void void
...@@ -86,7 +86,7 @@ bfa_fcs_attach(struct bfa_fcs_s *fcs, struct bfa_s *bfa, struct bfad_s *bfad, ...@@ -86,7 +86,7 @@ bfa_fcs_attach(struct bfa_fcs_s *fcs, struct bfa_s *bfa, struct bfad_s *bfad,
} }
} }
/** /*
* fcs initialization, called once after bfa initialization is complete * fcs initialization, called once after bfa initialization is complete
*/ */
void void
...@@ -110,7 +110,7 @@ bfa_fcs_init(struct bfa_fcs_s *fcs) ...@@ -110,7 +110,7 @@ bfa_fcs_init(struct bfa_fcs_s *fcs)
} }
} }
/** /*
* Start FCS operations. * Start FCS operations.
*/ */
void void
...@@ -119,7 +119,7 @@ bfa_fcs_start(struct bfa_fcs_s *fcs) ...@@ -119,7 +119,7 @@ bfa_fcs_start(struct bfa_fcs_s *fcs)
bfa_fcs_fabric_modstart(fcs); bfa_fcs_fabric_modstart(fcs);
} }
/** /*
* brief * brief
* FCS driver details initialization. * FCS driver details initialization.
* *
...@@ -138,7 +138,7 @@ bfa_fcs_driver_info_init(struct bfa_fcs_s *fcs, ...@@ -138,7 +138,7 @@ bfa_fcs_driver_info_init(struct bfa_fcs_s *fcs,
bfa_fcs_fabric_psymb_init(&fcs->fabric); bfa_fcs_fabric_psymb_init(&fcs->fabric);
} }
/** /*
* brief * brief
* FCS FDMI Driver Parameter Initialization * FCS FDMI Driver Parameter Initialization
* *
...@@ -154,7 +154,7 @@ bfa_fcs_set_fdmi_param(struct bfa_fcs_s *fcs, bfa_boolean_t fdmi_enable) ...@@ -154,7 +154,7 @@ bfa_fcs_set_fdmi_param(struct bfa_fcs_s *fcs, bfa_boolean_t fdmi_enable)
fcs->fdmi_enabled = fdmi_enable; fcs->fdmi_enabled = fdmi_enable;
} }
/** /*
* brief * brief
* FCS instance cleanup and exit. * FCS instance cleanup and exit.
* *
...@@ -196,7 +196,7 @@ bfa_fcs_modexit_comp(struct bfa_fcs_s *fcs) ...@@ -196,7 +196,7 @@ bfa_fcs_modexit_comp(struct bfa_fcs_s *fcs)
bfa_wc_down(&fcs->wc); bfa_wc_down(&fcs->wc);
} }
/** /*
* Fabric module implementation. * Fabric module implementation.
*/ */
...@@ -232,11 +232,11 @@ static void bfa_fcs_fabric_flogiacc_comp(void *fcsarg, ...@@ -232,11 +232,11 @@ static void bfa_fcs_fabric_flogiacc_comp(void *fcsarg,
u32 rsp_len, u32 rsp_len,
u32 resid_len, u32 resid_len,
struct fchs_s *rspfchs); struct fchs_s *rspfchs);
/** /*
* fcs_fabric_sm fabric state machine functions * fcs_fabric_sm fabric state machine functions
*/ */
/** /*
* Fabric state machine events * Fabric state machine events
*/ */
enum bfa_fcs_fabric_event { enum bfa_fcs_fabric_event {
...@@ -286,7 +286,7 @@ static void bfa_fcs_fabric_sm_isolated(struct bfa_fcs_fabric_s *fabric, ...@@ -286,7 +286,7 @@ static void bfa_fcs_fabric_sm_isolated(struct bfa_fcs_fabric_s *fabric,
enum bfa_fcs_fabric_event event); enum bfa_fcs_fabric_event event);
static void bfa_fcs_fabric_sm_deleting(struct bfa_fcs_fabric_s *fabric, static void bfa_fcs_fabric_sm_deleting(struct bfa_fcs_fabric_s *fabric,
enum bfa_fcs_fabric_event event); enum bfa_fcs_fabric_event event);
/** /*
* Beginning state before fabric creation. * Beginning state before fabric creation.
*/ */
static void static void
...@@ -312,7 +312,7 @@ bfa_fcs_fabric_sm_uninit(struct bfa_fcs_fabric_s *fabric, ...@@ -312,7 +312,7 @@ bfa_fcs_fabric_sm_uninit(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* Beginning state before fabric creation. * Beginning state before fabric creation.
*/ */
static void static void
...@@ -345,7 +345,7 @@ bfa_fcs_fabric_sm_created(struct bfa_fcs_fabric_s *fabric, ...@@ -345,7 +345,7 @@ bfa_fcs_fabric_sm_created(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* Link is down, awaiting LINK UP event from port. This is also the * Link is down, awaiting LINK UP event from port. This is also the
* first state at fabric creation. * first state at fabric creation.
*/ */
...@@ -375,7 +375,7 @@ bfa_fcs_fabric_sm_linkdown(struct bfa_fcs_fabric_s *fabric, ...@@ -375,7 +375,7 @@ bfa_fcs_fabric_sm_linkdown(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* FLOGI is in progress, awaiting FLOGI reply. * FLOGI is in progress, awaiting FLOGI reply.
*/ */
static void static void
...@@ -468,7 +468,7 @@ bfa_fcs_fabric_sm_flogi_retry(struct bfa_fcs_fabric_s *fabric, ...@@ -468,7 +468,7 @@ bfa_fcs_fabric_sm_flogi_retry(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* Authentication is in progress, awaiting authentication results. * Authentication is in progress, awaiting authentication results.
*/ */
static void static void
...@@ -508,7 +508,7 @@ bfa_fcs_fabric_sm_auth(struct bfa_fcs_fabric_s *fabric, ...@@ -508,7 +508,7 @@ bfa_fcs_fabric_sm_auth(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* Authentication failed * Authentication failed
*/ */
static void static void
...@@ -534,7 +534,7 @@ bfa_fcs_fabric_sm_auth_failed(struct bfa_fcs_fabric_s *fabric, ...@@ -534,7 +534,7 @@ bfa_fcs_fabric_sm_auth_failed(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* Port is in loopback mode. * Port is in loopback mode.
*/ */
static void static void
...@@ -560,7 +560,7 @@ bfa_fcs_fabric_sm_loopback(struct bfa_fcs_fabric_s *fabric, ...@@ -560,7 +560,7 @@ bfa_fcs_fabric_sm_loopback(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* There is no attached fabric - private loop or NPort-to-NPort topology. * There is no attached fabric - private loop or NPort-to-NPort topology.
*/ */
static void static void
...@@ -593,7 +593,7 @@ bfa_fcs_fabric_sm_nofabric(struct bfa_fcs_fabric_s *fabric, ...@@ -593,7 +593,7 @@ bfa_fcs_fabric_sm_nofabric(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* Fabric is online - normal operating state. * Fabric is online - normal operating state.
*/ */
static void static void
...@@ -628,7 +628,7 @@ bfa_fcs_fabric_sm_online(struct bfa_fcs_fabric_s *fabric, ...@@ -628,7 +628,7 @@ bfa_fcs_fabric_sm_online(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* Exchanging virtual fabric parameters. * Exchanging virtual fabric parameters.
*/ */
static void static void
...@@ -652,7 +652,7 @@ bfa_fcs_fabric_sm_evfp(struct bfa_fcs_fabric_s *fabric, ...@@ -652,7 +652,7 @@ bfa_fcs_fabric_sm_evfp(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* EVFP exchange complete and VFT tagging is enabled. * EVFP exchange complete and VFT tagging is enabled.
*/ */
static void static void
...@@ -663,7 +663,7 @@ bfa_fcs_fabric_sm_evfp_done(struct bfa_fcs_fabric_s *fabric, ...@@ -663,7 +663,7 @@ bfa_fcs_fabric_sm_evfp_done(struct bfa_fcs_fabric_s *fabric,
bfa_trc(fabric->fcs, event); bfa_trc(fabric->fcs, event);
} }
/** /*
* Port is isolated after EVFP exchange due to VF_ID mismatch (N and F). * Port is isolated after EVFP exchange due to VF_ID mismatch (N and F).
*/ */
static void static void
...@@ -684,7 +684,7 @@ bfa_fcs_fabric_sm_isolated(struct bfa_fcs_fabric_s *fabric, ...@@ -684,7 +684,7 @@ bfa_fcs_fabric_sm_isolated(struct bfa_fcs_fabric_s *fabric,
fabric->event_arg.swp_vfid); fabric->event_arg.swp_vfid);
} }
/** /*
* Fabric is being deleted, awaiting vport delete completions. * Fabric is being deleted, awaiting vport delete completions.
*/ */
static void static void
...@@ -714,7 +714,7 @@ bfa_fcs_fabric_sm_deleting(struct bfa_fcs_fabric_s *fabric, ...@@ -714,7 +714,7 @@ bfa_fcs_fabric_sm_deleting(struct bfa_fcs_fabric_s *fabric,
/** /*
* fcs_fabric_private fabric private functions * fcs_fabric_private fabric private functions
*/ */
...@@ -728,7 +728,7 @@ bfa_fcs_fabric_init(struct bfa_fcs_fabric_s *fabric) ...@@ -728,7 +728,7 @@ bfa_fcs_fabric_init(struct bfa_fcs_fabric_s *fabric)
port_cfg->pwwn = bfa_ioc_get_pwwn(&fabric->fcs->bfa->ioc); port_cfg->pwwn = bfa_ioc_get_pwwn(&fabric->fcs->bfa->ioc);
} }
/** /*
* Port Symbolic Name Creation for base port. * Port Symbolic Name Creation for base port.
*/ */
void void
...@@ -789,7 +789,7 @@ bfa_fcs_fabric_psymb_init(struct bfa_fcs_fabric_s *fabric) ...@@ -789,7 +789,7 @@ bfa_fcs_fabric_psymb_init(struct bfa_fcs_fabric_s *fabric)
port_cfg->sym_name.symname[BFA_SYMNAME_MAXLEN - 1] = 0; port_cfg->sym_name.symname[BFA_SYMNAME_MAXLEN - 1] = 0;
} }
/** /*
* bfa lps login completion callback * bfa lps login completion callback
*/ */
void void
...@@ -867,7 +867,7 @@ bfa_cb_lps_flogi_comp(void *bfad, void *uarg, bfa_status_t status) ...@@ -867,7 +867,7 @@ bfa_cb_lps_flogi_comp(void *bfad, void *uarg, bfa_status_t status)
bfa_trc(fabric->fcs, fabric->is_npiv); bfa_trc(fabric->fcs, fabric->is_npiv);
bfa_trc(fabric->fcs, fabric->is_auth); bfa_trc(fabric->fcs, fabric->is_auth);
} }
/** /*
* Allocate and send FLOGI. * Allocate and send FLOGI.
*/ */
static void static void
...@@ -897,7 +897,7 @@ bfa_fcs_fabric_notify_online(struct bfa_fcs_fabric_s *fabric) ...@@ -897,7 +897,7 @@ bfa_fcs_fabric_notify_online(struct bfa_fcs_fabric_s *fabric)
bfa_fcs_fabric_set_opertype(fabric); bfa_fcs_fabric_set_opertype(fabric);
fabric->stats.fabric_onlines++; fabric->stats.fabric_onlines++;
/** /*
* notify online event to base and then virtual ports * notify online event to base and then virtual ports
*/ */
bfa_fcs_lport_online(&fabric->bport); bfa_fcs_lport_online(&fabric->bport);
...@@ -917,7 +917,7 @@ bfa_fcs_fabric_notify_offline(struct bfa_fcs_fabric_s *fabric) ...@@ -917,7 +917,7 @@ bfa_fcs_fabric_notify_offline(struct bfa_fcs_fabric_s *fabric)
bfa_trc(fabric->fcs, fabric->fabric_name); bfa_trc(fabric->fcs, fabric->fabric_name);
fabric->stats.fabric_offlines++; fabric->stats.fabric_offlines++;
/** /*
* notify offline event first to vports and then base port. * notify offline event first to vports and then base port.
*/ */
list_for_each_safe(qe, qen, &fabric->vport_q) { list_for_each_safe(qe, qen, &fabric->vport_q) {
...@@ -939,7 +939,7 @@ bfa_fcs_fabric_delay(void *cbarg) ...@@ -939,7 +939,7 @@ bfa_fcs_fabric_delay(void *cbarg)
bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_DELAYED); bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_DELAYED);
} }
/** /*
* Delete all vports and wait for vport delete completions. * Delete all vports and wait for vport delete completions.
*/ */
static void static void
...@@ -965,11 +965,11 @@ bfa_fcs_fabric_delete_comp(void *cbarg) ...@@ -965,11 +965,11 @@ bfa_fcs_fabric_delete_comp(void *cbarg)
bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_DELCOMP); bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_DELCOMP);
} }
/** /*
* fcs_fabric_public fabric public functions * fcs_fabric_public fabric public functions
*/ */
/** /*
* Attach time initialization. * Attach time initialization.
*/ */
void void
...@@ -980,7 +980,7 @@ bfa_fcs_fabric_attach(struct bfa_fcs_s *fcs) ...@@ -980,7 +980,7 @@ bfa_fcs_fabric_attach(struct bfa_fcs_s *fcs)
fabric = &fcs->fabric; fabric = &fcs->fabric;
memset(fabric, 0, sizeof(struct bfa_fcs_fabric_s)); memset(fabric, 0, sizeof(struct bfa_fcs_fabric_s));
/** /*
* Initialize base fabric. * Initialize base fabric.
*/ */
fabric->fcs = fcs; fabric->fcs = fcs;
...@@ -989,7 +989,7 @@ bfa_fcs_fabric_attach(struct bfa_fcs_s *fcs) ...@@ -989,7 +989,7 @@ bfa_fcs_fabric_attach(struct bfa_fcs_s *fcs)
fabric->lps = bfa_lps_alloc(fcs->bfa); fabric->lps = bfa_lps_alloc(fcs->bfa);
bfa_assert(fabric->lps); bfa_assert(fabric->lps);
/** /*
* Initialize fabric delete completion handler. Fabric deletion is * Initialize fabric delete completion handler. Fabric deletion is
* complete when the last vport delete is complete. * complete when the last vport delete is complete.
*/ */
...@@ -1007,7 +1007,7 @@ bfa_fcs_fabric_modinit(struct bfa_fcs_s *fcs) ...@@ -1007,7 +1007,7 @@ bfa_fcs_fabric_modinit(struct bfa_fcs_s *fcs)
bfa_trc(fcs, 0); bfa_trc(fcs, 0);
} }
/** /*
* Module cleanup * Module cleanup
*/ */
void void
...@@ -1017,7 +1017,7 @@ bfa_fcs_fabric_modexit(struct bfa_fcs_s *fcs) ...@@ -1017,7 +1017,7 @@ bfa_fcs_fabric_modexit(struct bfa_fcs_s *fcs)
bfa_trc(fcs, 0); bfa_trc(fcs, 0);
/** /*
* Cleanup base fabric. * Cleanup base fabric.
*/ */
fabric = &fcs->fabric; fabric = &fcs->fabric;
...@@ -1025,7 +1025,7 @@ bfa_fcs_fabric_modexit(struct bfa_fcs_s *fcs) ...@@ -1025,7 +1025,7 @@ bfa_fcs_fabric_modexit(struct bfa_fcs_s *fcs)
bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_DELETE); bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_DELETE);
} }
/** /*
* Fabric module start -- kick starts FCS actions * Fabric module start -- kick starts FCS actions
*/ */
void void
...@@ -1038,7 +1038,7 @@ bfa_fcs_fabric_modstart(struct bfa_fcs_s *fcs) ...@@ -1038,7 +1038,7 @@ bfa_fcs_fabric_modstart(struct bfa_fcs_s *fcs)
bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_START); bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_START);
} }
/** /*
* Suspend fabric activity as part of driver suspend. * Suspend fabric activity as part of driver suspend.
*/ */
void void
...@@ -1064,7 +1064,7 @@ bfa_fcs_fabric_port_type(struct bfa_fcs_fabric_s *fabric) ...@@ -1064,7 +1064,7 @@ bfa_fcs_fabric_port_type(struct bfa_fcs_fabric_s *fabric)
return fabric->oper_type; return fabric->oper_type;
} }
/** /*
* Link up notification from BFA physical port module. * Link up notification from BFA physical port module.
*/ */
void void
...@@ -1074,7 +1074,7 @@ bfa_fcs_fabric_link_up(struct bfa_fcs_fabric_s *fabric) ...@@ -1074,7 +1074,7 @@ bfa_fcs_fabric_link_up(struct bfa_fcs_fabric_s *fabric)
bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_LINK_UP); bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_LINK_UP);
} }
/** /*
* Link down notification from BFA physical port module. * Link down notification from BFA physical port module.
*/ */
void void
...@@ -1084,7 +1084,7 @@ bfa_fcs_fabric_link_down(struct bfa_fcs_fabric_s *fabric) ...@@ -1084,7 +1084,7 @@ bfa_fcs_fabric_link_down(struct bfa_fcs_fabric_s *fabric)
bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_LINK_DOWN); bfa_sm_send_event(fabric, BFA_FCS_FABRIC_SM_LINK_DOWN);
} }
/** /*
* A child vport is being created in the fabric. * A child vport is being created in the fabric.
* *
* Call from vport module at vport creation. A list of base port and vports * Call from vport module at vport creation. A list of base port and vports
...@@ -1099,7 +1099,7 @@ void ...@@ -1099,7 +1099,7 @@ void
bfa_fcs_fabric_addvport(struct bfa_fcs_fabric_s *fabric, bfa_fcs_fabric_addvport(struct bfa_fcs_fabric_s *fabric,
struct bfa_fcs_vport_s *vport) struct bfa_fcs_vport_s *vport)
{ {
/** /*
* - add vport to fabric's vport_q * - add vport to fabric's vport_q
*/ */
bfa_trc(fabric->fcs, fabric->vf_id); bfa_trc(fabric->fcs, fabric->vf_id);
...@@ -1109,7 +1109,7 @@ bfa_fcs_fabric_addvport(struct bfa_fcs_fabric_s *fabric, ...@@ -1109,7 +1109,7 @@ bfa_fcs_fabric_addvport(struct bfa_fcs_fabric_s *fabric,
bfa_wc_up(&fabric->wc); bfa_wc_up(&fabric->wc);
} }
/** /*
* A child vport is being deleted from fabric. * A child vport is being deleted from fabric.
* *
* Vport is being deleted. * Vport is being deleted.
...@@ -1123,7 +1123,7 @@ bfa_fcs_fabric_delvport(struct bfa_fcs_fabric_s *fabric, ...@@ -1123,7 +1123,7 @@ bfa_fcs_fabric_delvport(struct bfa_fcs_fabric_s *fabric,
bfa_wc_down(&fabric->wc); bfa_wc_down(&fabric->wc);
} }
/** /*
* Base port is deleted. * Base port is deleted.
*/ */
void void
...@@ -1133,7 +1133,7 @@ bfa_fcs_fabric_port_delete_comp(struct bfa_fcs_fabric_s *fabric) ...@@ -1133,7 +1133,7 @@ bfa_fcs_fabric_port_delete_comp(struct bfa_fcs_fabric_s *fabric)
} }
/** /*
* Check if fabric is online. * Check if fabric is online.
* *
* param[in] fabric - Fabric instance. This can be a base fabric or vf. * param[in] fabric - Fabric instance. This can be a base fabric or vf.
...@@ -1146,7 +1146,7 @@ bfa_fcs_fabric_is_online(struct bfa_fcs_fabric_s *fabric) ...@@ -1146,7 +1146,7 @@ bfa_fcs_fabric_is_online(struct bfa_fcs_fabric_s *fabric)
return bfa_sm_cmp_state(fabric, bfa_fcs_fabric_sm_online); return bfa_sm_cmp_state(fabric, bfa_fcs_fabric_sm_online);
} }
/** /*
* brief * brief
* *
*/ */
...@@ -1158,7 +1158,7 @@ bfa_fcs_fabric_addvf(struct bfa_fcs_fabric_s *vf, struct bfa_fcs_s *fcs, ...@@ -1158,7 +1158,7 @@ bfa_fcs_fabric_addvf(struct bfa_fcs_fabric_s *vf, struct bfa_fcs_s *fcs,
return BFA_STATUS_OK; return BFA_STATUS_OK;
} }
/** /*
* Lookup for a vport withing a fabric given its pwwn * Lookup for a vport withing a fabric given its pwwn
*/ */
struct bfa_fcs_vport_s * struct bfa_fcs_vport_s *
...@@ -1176,7 +1176,7 @@ bfa_fcs_fabric_vport_lookup(struct bfa_fcs_fabric_s *fabric, wwn_t pwwn) ...@@ -1176,7 +1176,7 @@ bfa_fcs_fabric_vport_lookup(struct bfa_fcs_fabric_s *fabric, wwn_t pwwn)
return NULL; return NULL;
} }
/** /*
* In a given fabric, return the number of lports. * In a given fabric, return the number of lports.
* *
* param[in] fabric - Fabric instance. This can be a base fabric or vf. * param[in] fabric - Fabric instance. This can be a base fabric or vf.
...@@ -1214,7 +1214,7 @@ bfa_fcs_fabric_get_switch_oui(struct bfa_fcs_fabric_s *fabric) ...@@ -1214,7 +1214,7 @@ bfa_fcs_fabric_get_switch_oui(struct bfa_fcs_fabric_s *fabric)
return oui; return oui;
} }
/** /*
* Unsolicited frame receive handling. * Unsolicited frame receive handling.
*/ */
void void
...@@ -1230,7 +1230,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs, ...@@ -1230,7 +1230,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs,
bfa_trc(fabric->fcs, len); bfa_trc(fabric->fcs, len);
bfa_trc(fabric->fcs, pid); bfa_trc(fabric->fcs, pid);
/** /*
* Look for our own FLOGI frames being looped back. This means an * Look for our own FLOGI frames being looped back. This means an
* external loopback cable is in place. Our own FLOGI frames are * external loopback cable is in place. Our own FLOGI frames are
* sometimes looped back when switch port gets temporarily bypassed. * sometimes looped back when switch port gets temporarily bypassed.
...@@ -1242,7 +1242,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs, ...@@ -1242,7 +1242,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs,
return; return;
} }
/** /*
* FLOGI/EVFP exchanges should be consumed by base fabric. * FLOGI/EVFP exchanges should be consumed by base fabric.
*/ */
if (fchs->d_id == bfa_os_hton3b(FC_FABRIC_PORT)) { if (fchs->d_id == bfa_os_hton3b(FC_FABRIC_PORT)) {
...@@ -1252,7 +1252,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs, ...@@ -1252,7 +1252,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs,
} }
if (fabric->bport.pid == pid) { if (fabric->bport.pid == pid) {
/** /*
* All authentication frames should be routed to auth * All authentication frames should be routed to auth
*/ */
bfa_trc(fabric->fcs, els_cmd->els_code); bfa_trc(fabric->fcs, els_cmd->els_code);
...@@ -1266,7 +1266,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs, ...@@ -1266,7 +1266,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs,
return; return;
} }
/** /*
* look for a matching local port ID * look for a matching local port ID
*/ */
list_for_each(qe, &fabric->vport_q) { list_for_each(qe, &fabric->vport_q) {
...@@ -1280,7 +1280,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs, ...@@ -1280,7 +1280,7 @@ bfa_fcs_fabric_uf_recv(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs,
bfa_fcs_lport_uf_recv(&fabric->bport, fchs, len); bfa_fcs_lport_uf_recv(&fabric->bport, fchs, len);
} }
/** /*
* Unsolicited frames to be processed by fabric. * Unsolicited frames to be processed by fabric.
*/ */
static void static void
...@@ -1304,7 +1304,7 @@ bfa_fcs_fabric_process_uf(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs, ...@@ -1304,7 +1304,7 @@ bfa_fcs_fabric_process_uf(struct bfa_fcs_fabric_s *fabric, struct fchs_s *fchs,
} }
} }
/** /*
* Process incoming FLOGI * Process incoming FLOGI
*/ */
static void static void
...@@ -1351,7 +1351,7 @@ bfa_fcs_fabric_send_flogi_acc(struct bfa_fcs_fabric_s *fabric) ...@@ -1351,7 +1351,7 @@ bfa_fcs_fabric_send_flogi_acc(struct bfa_fcs_fabric_s *fabric)
struct fchs_s fchs; struct fchs_s fchs;
fcxp = bfa_fcs_fcxp_alloc(fabric->fcs); fcxp = bfa_fcs_fcxp_alloc(fabric->fcs);
/** /*
* Do not expect this failure -- expect remote node to retry * Do not expect this failure -- expect remote node to retry
*/ */
if (!fcxp) if (!fcxp)
...@@ -1370,7 +1370,7 @@ bfa_fcs_fabric_send_flogi_acc(struct bfa_fcs_fabric_s *fabric) ...@@ -1370,7 +1370,7 @@ bfa_fcs_fabric_send_flogi_acc(struct bfa_fcs_fabric_s *fabric)
FC_MAX_PDUSZ, 0); FC_MAX_PDUSZ, 0);
} }
/** /*
* Flogi Acc completion callback. * Flogi Acc completion callback.
*/ */
static void static void
...@@ -1417,7 +1417,7 @@ bfa_fcs_fabric_set_fabric_name(struct bfa_fcs_fabric_s *fabric, ...@@ -1417,7 +1417,7 @@ bfa_fcs_fabric_set_fabric_name(struct bfa_fcs_fabric_s *fabric,
} }
} }
/** /*
* Returns FCS vf structure for a given vf_id. * Returns FCS vf structure for a given vf_id.
* *
* param[in] vf_id - VF_ID * param[in] vf_id - VF_ID
...@@ -1435,7 +1435,7 @@ bfa_fcs_vf_lookup(struct bfa_fcs_s *fcs, u16 vf_id) ...@@ -1435,7 +1435,7 @@ bfa_fcs_vf_lookup(struct bfa_fcs_s *fcs, u16 vf_id)
return NULL; return NULL;
} }
/** /*
* BFA FCS PPORT ( physical port) * BFA FCS PPORT ( physical port)
*/ */
static void static void
...@@ -1465,11 +1465,11 @@ bfa_fcs_port_attach(struct bfa_fcs_s *fcs) ...@@ -1465,11 +1465,11 @@ bfa_fcs_port_attach(struct bfa_fcs_s *fcs)
bfa_fcport_event_register(fcs->bfa, bfa_fcs_port_event_handler, fcs); bfa_fcport_event_register(fcs->bfa, bfa_fcs_port_event_handler, fcs);
} }
/** /*
* BFA FCS UF ( Unsolicited Frames) * BFA FCS UF ( Unsolicited Frames)
*/ */
/** /*
* BFA callback for unsolicited frame receive handler. * BFA callback for unsolicited frame receive handler.
* *
* @param[in] cbarg callback arg for receive handler * @param[in] cbarg callback arg for receive handler
...@@ -1486,7 +1486,7 @@ bfa_fcs_uf_recv(void *cbarg, struct bfa_uf_s *uf) ...@@ -1486,7 +1486,7 @@ bfa_fcs_uf_recv(void *cbarg, struct bfa_uf_s *uf)
struct fc_vft_s *vft; struct fc_vft_s *vft;
struct bfa_fcs_fabric_s *fabric; struct bfa_fcs_fabric_s *fabric;
/** /*
* check for VFT header * check for VFT header
*/ */
if (fchs->routing == FC_RTG_EXT_HDR && if (fchs->routing == FC_RTG_EXT_HDR &&
...@@ -1498,7 +1498,7 @@ bfa_fcs_uf_recv(void *cbarg, struct bfa_uf_s *uf) ...@@ -1498,7 +1498,7 @@ bfa_fcs_uf_recv(void *cbarg, struct bfa_uf_s *uf)
else else
fabric = bfa_fcs_vf_lookup(fcs, (u16) vft->vf_id); fabric = bfa_fcs_vf_lookup(fcs, (u16) vft->vf_id);
/** /*
* drop frame if vfid is unknown * drop frame if vfid is unknown
*/ */
if (!fabric) { if (!fabric) {
...@@ -1508,7 +1508,7 @@ bfa_fcs_uf_recv(void *cbarg, struct bfa_uf_s *uf) ...@@ -1508,7 +1508,7 @@ bfa_fcs_uf_recv(void *cbarg, struct bfa_uf_s *uf)
return; return;
} }
/** /*
* skip vft header * skip vft header
*/ */
fchs = (struct fchs_s *) (vft + 1); fchs = (struct fchs_s *) (vft + 1);
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* General Public License for more details. * General Public License for more details.
*/ */
/** /*
* fcpim.c - FCP initiator mode i-t nexus state machine * fcpim.c - FCP initiator mode i-t nexus state machine
*/ */
...@@ -38,7 +38,7 @@ static void bfa_fcs_itnim_prli_response(void *fcsarg, ...@@ -38,7 +38,7 @@ static void bfa_fcs_itnim_prli_response(void *fcsarg,
bfa_status_t req_status, u32 rsp_len, bfa_status_t req_status, u32 rsp_len,
u32 resid_len, struct fchs_s *rsp_fchs); u32 resid_len, struct fchs_s *rsp_fchs);
/** /*
* fcs_itnim_sm FCS itnim state machine events * fcs_itnim_sm FCS itnim state machine events
*/ */
...@@ -84,7 +84,7 @@ static struct bfa_sm_table_s itnim_sm_table[] = { ...@@ -84,7 +84,7 @@ static struct bfa_sm_table_s itnim_sm_table[] = {
{BFA_SM(bfa_fcs_itnim_sm_initiator), BFA_ITNIM_INITIATIOR}, {BFA_SM(bfa_fcs_itnim_sm_initiator), BFA_ITNIM_INITIATIOR},
}; };
/** /*
* fcs_itnim_sm FCS itnim state machine * fcs_itnim_sm FCS itnim state machine
*/ */
...@@ -494,11 +494,11 @@ bfa_fcs_itnim_free(struct bfa_fcs_itnim_s *itnim) ...@@ -494,11 +494,11 @@ bfa_fcs_itnim_free(struct bfa_fcs_itnim_s *itnim)
/** /*
* itnim_public FCS ITNIM public interfaces * itnim_public FCS ITNIM public interfaces
*/ */
/** /*
* Called by rport when a new rport is created. * Called by rport when a new rport is created.
* *
* @param[in] rport - remote port. * @param[in] rport - remote port.
...@@ -554,7 +554,7 @@ bfa_fcs_itnim_create(struct bfa_fcs_rport_s *rport) ...@@ -554,7 +554,7 @@ bfa_fcs_itnim_create(struct bfa_fcs_rport_s *rport)
return itnim; return itnim;
} }
/** /*
* Called by rport to delete the instance of FCPIM. * Called by rport to delete the instance of FCPIM.
* *
* @param[in] rport - remote port. * @param[in] rport - remote port.
...@@ -566,7 +566,7 @@ bfa_fcs_itnim_delete(struct bfa_fcs_itnim_s *itnim) ...@@ -566,7 +566,7 @@ bfa_fcs_itnim_delete(struct bfa_fcs_itnim_s *itnim)
bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_DELETE); bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_DELETE);
} }
/** /*
* Notification from rport that PLOGI is complete to initiate FC-4 session. * Notification from rport that PLOGI is complete to initiate FC-4 session.
*/ */
void void
...@@ -586,7 +586,7 @@ bfa_fcs_itnim_rport_online(struct bfa_fcs_itnim_s *itnim) ...@@ -586,7 +586,7 @@ bfa_fcs_itnim_rport_online(struct bfa_fcs_itnim_s *itnim)
} }
} }
/** /*
* Called by rport to handle a remote device offline. * Called by rport to handle a remote device offline.
*/ */
void void
...@@ -596,7 +596,7 @@ bfa_fcs_itnim_rport_offline(struct bfa_fcs_itnim_s *itnim) ...@@ -596,7 +596,7 @@ bfa_fcs_itnim_rport_offline(struct bfa_fcs_itnim_s *itnim)
bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_OFFLINE); bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_OFFLINE);
} }
/** /*
* Called by rport when remote port is known to be an initiator from * Called by rport when remote port is known to be an initiator from
* PRLI received. * PRLI received.
*/ */
...@@ -608,7 +608,7 @@ bfa_fcs_itnim_is_initiator(struct bfa_fcs_itnim_s *itnim) ...@@ -608,7 +608,7 @@ bfa_fcs_itnim_is_initiator(struct bfa_fcs_itnim_s *itnim)
bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_INITIATOR); bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_INITIATOR);
} }
/** /*
* Called by rport to check if the itnim is online. * Called by rport to check if the itnim is online.
*/ */
bfa_status_t bfa_status_t
...@@ -625,7 +625,7 @@ bfa_fcs_itnim_get_online_state(struct bfa_fcs_itnim_s *itnim) ...@@ -625,7 +625,7 @@ bfa_fcs_itnim_get_online_state(struct bfa_fcs_itnim_s *itnim)
} }
} }
/** /*
* BFA completion callback for bfa_itnim_online(). * BFA completion callback for bfa_itnim_online().
*/ */
void void
...@@ -637,7 +637,7 @@ bfa_cb_itnim_online(void *cbarg) ...@@ -637,7 +637,7 @@ bfa_cb_itnim_online(void *cbarg)
bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_HCB_ONLINE); bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_HCB_ONLINE);
} }
/** /*
* BFA completion callback for bfa_itnim_offline(). * BFA completion callback for bfa_itnim_offline().
*/ */
void void
...@@ -649,7 +649,7 @@ bfa_cb_itnim_offline(void *cb_arg) ...@@ -649,7 +649,7 @@ bfa_cb_itnim_offline(void *cb_arg)
bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_HCB_OFFLINE); bfa_sm_send_event(itnim, BFA_FCS_ITNIM_SM_HCB_OFFLINE);
} }
/** /*
* Mark the beginning of PATH TOV handling. IO completion callbacks * Mark the beginning of PATH TOV handling. IO completion callbacks
* are still pending. * are still pending.
*/ */
...@@ -661,7 +661,7 @@ bfa_cb_itnim_tov_begin(void *cb_arg) ...@@ -661,7 +661,7 @@ bfa_cb_itnim_tov_begin(void *cb_arg)
bfa_trc(itnim->fcs, itnim->rport->pwwn); bfa_trc(itnim->fcs, itnim->rport->pwwn);
} }
/** /*
* Mark the end of PATH TOV handling. All pending IOs are already cleaned up. * Mark the end of PATH TOV handling. All pending IOs are already cleaned up.
*/ */
void void
...@@ -674,7 +674,7 @@ bfa_cb_itnim_tov(void *cb_arg) ...@@ -674,7 +674,7 @@ bfa_cb_itnim_tov(void *cb_arg)
itnim_drv->state = ITNIM_STATE_TIMEOUT; itnim_drv->state = ITNIM_STATE_TIMEOUT;
} }
/** /*
* BFA notification to FCS/driver for second level error recovery. * BFA notification to FCS/driver for second level error recovery.
* *
* Atleast one I/O request has timedout and target is unresponsive to * Atleast one I/O request has timedout and target is unresponsive to
......
此差异已折叠。
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* General Public License for more details. * General Public License for more details.
*/ */
/** /*
* rport.c Remote port implementation. * rport.c Remote port implementation.
*/ */
...@@ -75,7 +75,7 @@ static void bfa_fcs_rport_send_ls_rjt(struct bfa_fcs_rport_s *rport, ...@@ -75,7 +75,7 @@ static void bfa_fcs_rport_send_ls_rjt(struct bfa_fcs_rport_s *rport,
static void bfa_fcs_rport_process_adisc(struct bfa_fcs_rport_s *rport, static void bfa_fcs_rport_process_adisc(struct bfa_fcs_rport_s *rport,
struct fchs_s *rx_fchs, u16 len); struct fchs_s *rx_fchs, u16 len);
static void bfa_fcs_rport_send_prlo_acc(struct bfa_fcs_rport_s *rport); static void bfa_fcs_rport_send_prlo_acc(struct bfa_fcs_rport_s *rport);
/** /*
* fcs_rport_sm FCS rport state machine events * fcs_rport_sm FCS rport state machine events
*/ */
...@@ -172,7 +172,7 @@ static struct bfa_sm_table_s rport_sm_table[] = { ...@@ -172,7 +172,7 @@ static struct bfa_sm_table_s rport_sm_table[] = {
{BFA_SM(bfa_fcs_rport_sm_nsdisc_sent), BFA_RPORT_NSDISC}, {BFA_SM(bfa_fcs_rport_sm_nsdisc_sent), BFA_RPORT_NSDISC},
}; };
/** /*
* Beginning state. * Beginning state.
*/ */
static void static void
...@@ -210,7 +210,7 @@ bfa_fcs_rport_sm_uninit(struct bfa_fcs_rport_s *rport, enum rport_event event) ...@@ -210,7 +210,7 @@ bfa_fcs_rport_sm_uninit(struct bfa_fcs_rport_s *rport, enum rport_event event)
} }
} }
/** /*
* PLOGI is being sent. * PLOGI is being sent.
*/ */
static void static void
...@@ -262,7 +262,7 @@ bfa_fcs_rport_sm_plogi_sending(struct bfa_fcs_rport_s *rport, ...@@ -262,7 +262,7 @@ bfa_fcs_rport_sm_plogi_sending(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* PLOGI is being sent. * PLOGI is being sent.
*/ */
static void static void
...@@ -287,7 +287,7 @@ bfa_fcs_rport_sm_plogiacc_sending(struct bfa_fcs_rport_s *rport, ...@@ -287,7 +287,7 @@ bfa_fcs_rport_sm_plogiacc_sending(struct bfa_fcs_rport_s *rport,
case RPSM_EVENT_PLOGI_RCVD: case RPSM_EVENT_PLOGI_RCVD:
case RPSM_EVENT_SCN: case RPSM_EVENT_SCN:
/** /*
* Ignore, SCN is possibly online notification. * Ignore, SCN is possibly online notification.
*/ */
break; break;
...@@ -309,7 +309,7 @@ bfa_fcs_rport_sm_plogiacc_sending(struct bfa_fcs_rport_s *rport, ...@@ -309,7 +309,7 @@ bfa_fcs_rport_sm_plogiacc_sending(struct bfa_fcs_rport_s *rport,
break; break;
case RPSM_EVENT_HCB_OFFLINE: case RPSM_EVENT_HCB_OFFLINE:
/** /*
* Ignore BFA callback, on a PLOGI receive we call bfa offline. * Ignore BFA callback, on a PLOGI receive we call bfa offline.
*/ */
break; break;
...@@ -319,7 +319,7 @@ bfa_fcs_rport_sm_plogiacc_sending(struct bfa_fcs_rport_s *rport, ...@@ -319,7 +319,7 @@ bfa_fcs_rport_sm_plogiacc_sending(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* PLOGI is sent. * PLOGI is sent.
*/ */
static void static void
...@@ -380,7 +380,7 @@ bfa_fcs_rport_sm_plogi_retry(struct bfa_fcs_rport_s *rport, ...@@ -380,7 +380,7 @@ bfa_fcs_rport_sm_plogi_retry(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* PLOGI is sent. * PLOGI is sent.
*/ */
static void static void
...@@ -475,7 +475,7 @@ bfa_fcs_rport_sm_plogi(struct bfa_fcs_rport_s *rport, enum rport_event event) ...@@ -475,7 +475,7 @@ bfa_fcs_rport_sm_plogi(struct bfa_fcs_rport_s *rport, enum rport_event event)
} }
} }
/** /*
* PLOGI is complete. Awaiting BFA rport online callback. FC-4s * PLOGI is complete. Awaiting BFA rport online callback. FC-4s
* are offline. * are offline.
*/ */
...@@ -519,7 +519,7 @@ bfa_fcs_rport_sm_hal_online(struct bfa_fcs_rport_s *rport, ...@@ -519,7 +519,7 @@ bfa_fcs_rport_sm_hal_online(struct bfa_fcs_rport_s *rport,
break; break;
case RPSM_EVENT_SCN: case RPSM_EVENT_SCN:
/** /*
* @todo * @todo
* Ignore SCN - PLOGI just completed, FC-4 login should detect * Ignore SCN - PLOGI just completed, FC-4 login should detect
* device failures. * device failures.
...@@ -531,7 +531,7 @@ bfa_fcs_rport_sm_hal_online(struct bfa_fcs_rport_s *rport, ...@@ -531,7 +531,7 @@ bfa_fcs_rport_sm_hal_online(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Rport is ONLINE. FC-4s active. * Rport is ONLINE. FC-4s active.
*/ */
static void static void
...@@ -580,7 +580,7 @@ bfa_fcs_rport_sm_online(struct bfa_fcs_rport_s *rport, enum rport_event event) ...@@ -580,7 +580,7 @@ bfa_fcs_rport_sm_online(struct bfa_fcs_rport_s *rport, enum rport_event event)
} }
} }
/** /*
* An SCN event is received in ONLINE state. NS query is being sent * An SCN event is received in ONLINE state. NS query is being sent
* prior to ADISC authentication with rport. FC-4s are paused. * prior to ADISC authentication with rport. FC-4s are paused.
*/ */
...@@ -604,7 +604,7 @@ bfa_fcs_rport_sm_nsquery_sending(struct bfa_fcs_rport_s *rport, ...@@ -604,7 +604,7 @@ bfa_fcs_rport_sm_nsquery_sending(struct bfa_fcs_rport_s *rport,
break; break;
case RPSM_EVENT_SCN: case RPSM_EVENT_SCN:
/** /*
* ignore SCN, wait for response to query itself * ignore SCN, wait for response to query itself
*/ */
break; break;
...@@ -638,7 +638,7 @@ bfa_fcs_rport_sm_nsquery_sending(struct bfa_fcs_rport_s *rport, ...@@ -638,7 +638,7 @@ bfa_fcs_rport_sm_nsquery_sending(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* An SCN event is received in ONLINE state. NS query is sent to rport. * An SCN event is received in ONLINE state. NS query is sent to rport.
* FC-4s are paused. * FC-4s are paused.
*/ */
...@@ -697,7 +697,7 @@ bfa_fcs_rport_sm_nsquery(struct bfa_fcs_rport_s *rport, enum rport_event event) ...@@ -697,7 +697,7 @@ bfa_fcs_rport_sm_nsquery(struct bfa_fcs_rport_s *rport, enum rport_event event)
} }
} }
/** /*
* An SCN event is received in ONLINE state. ADISC is being sent for * An SCN event is received in ONLINE state. ADISC is being sent for
* authenticating with rport. FC-4s are paused. * authenticating with rport. FC-4s are paused.
*/ */
...@@ -748,7 +748,7 @@ bfa_fcs_rport_sm_adisc_sending(struct bfa_fcs_rport_s *rport, ...@@ -748,7 +748,7 @@ bfa_fcs_rport_sm_adisc_sending(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* An SCN event is received in ONLINE state. ADISC is to rport. * An SCN event is received in ONLINE state. ADISC is to rport.
* FC-4s are paused. * FC-4s are paused.
*/ */
...@@ -765,7 +765,7 @@ bfa_fcs_rport_sm_adisc(struct bfa_fcs_rport_s *rport, enum rport_event event) ...@@ -765,7 +765,7 @@ bfa_fcs_rport_sm_adisc(struct bfa_fcs_rport_s *rport, enum rport_event event)
break; break;
case RPSM_EVENT_PLOGI_RCVD: case RPSM_EVENT_PLOGI_RCVD:
/** /*
* Too complex to cleanup FC-4 & rport and then acc to PLOGI. * Too complex to cleanup FC-4 & rport and then acc to PLOGI.
* At least go offline when a PLOGI is received. * At least go offline when a PLOGI is received.
*/ */
...@@ -787,7 +787,7 @@ bfa_fcs_rport_sm_adisc(struct bfa_fcs_rport_s *rport, enum rport_event event) ...@@ -787,7 +787,7 @@ bfa_fcs_rport_sm_adisc(struct bfa_fcs_rport_s *rport, enum rport_event event)
break; break;
case RPSM_EVENT_SCN: case RPSM_EVENT_SCN:
/** /*
* already processing RSCN * already processing RSCN
*/ */
break; break;
...@@ -810,7 +810,7 @@ bfa_fcs_rport_sm_adisc(struct bfa_fcs_rport_s *rport, enum rport_event event) ...@@ -810,7 +810,7 @@ bfa_fcs_rport_sm_adisc(struct bfa_fcs_rport_s *rport, enum rport_event event)
} }
} }
/** /*
* Rport has sent LOGO. Awaiting FC-4 offline completion callback. * Rport has sent LOGO. Awaiting FC-4 offline completion callback.
*/ */
static void static void
...@@ -841,7 +841,7 @@ bfa_fcs_rport_sm_fc4_logorcv(struct bfa_fcs_rport_s *rport, ...@@ -841,7 +841,7 @@ bfa_fcs_rport_sm_fc4_logorcv(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* LOGO needs to be sent to rport. Awaiting FC-4 offline completion * LOGO needs to be sent to rport. Awaiting FC-4 offline completion
* callback. * callback.
*/ */
...@@ -864,7 +864,7 @@ bfa_fcs_rport_sm_fc4_logosend(struct bfa_fcs_rport_s *rport, ...@@ -864,7 +864,7 @@ bfa_fcs_rport_sm_fc4_logosend(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Rport is going offline. Awaiting FC-4 offline completion callback. * Rport is going offline. Awaiting FC-4 offline completion callback.
*/ */
static void static void
...@@ -886,7 +886,7 @@ bfa_fcs_rport_sm_fc4_offline(struct bfa_fcs_rport_s *rport, ...@@ -886,7 +886,7 @@ bfa_fcs_rport_sm_fc4_offline(struct bfa_fcs_rport_s *rport,
case RPSM_EVENT_LOGO_RCVD: case RPSM_EVENT_LOGO_RCVD:
case RPSM_EVENT_PRLO_RCVD: case RPSM_EVENT_PRLO_RCVD:
case RPSM_EVENT_ADDRESS_CHANGE: case RPSM_EVENT_ADDRESS_CHANGE:
/** /*
* rport is already going offline. * rport is already going offline.
* SCN - ignore and wait till transitioning to offline state * SCN - ignore and wait till transitioning to offline state
*/ */
...@@ -901,7 +901,7 @@ bfa_fcs_rport_sm_fc4_offline(struct bfa_fcs_rport_s *rport, ...@@ -901,7 +901,7 @@ bfa_fcs_rport_sm_fc4_offline(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Rport is offline. FC-4s are offline. Awaiting BFA rport offline * Rport is offline. FC-4s are offline. Awaiting BFA rport offline
* callback. * callback.
*/ */
...@@ -945,7 +945,7 @@ bfa_fcs_rport_sm_hcb_offline(struct bfa_fcs_rport_s *rport, ...@@ -945,7 +945,7 @@ bfa_fcs_rport_sm_hcb_offline(struct bfa_fcs_rport_s *rport,
case RPSM_EVENT_SCN: case RPSM_EVENT_SCN:
case RPSM_EVENT_LOGO_RCVD: case RPSM_EVENT_LOGO_RCVD:
case RPSM_EVENT_PRLO_RCVD: case RPSM_EVENT_PRLO_RCVD:
/** /*
* Ignore, already offline. * Ignore, already offline.
*/ */
break; break;
...@@ -955,7 +955,7 @@ bfa_fcs_rport_sm_hcb_offline(struct bfa_fcs_rport_s *rport, ...@@ -955,7 +955,7 @@ bfa_fcs_rport_sm_hcb_offline(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Rport is offline. FC-4s are offline. Awaiting BFA rport offline * Rport is offline. FC-4s are offline. Awaiting BFA rport offline
* callback to send LOGO accept. * callback to send LOGO accept.
*/ */
...@@ -1009,7 +1009,7 @@ bfa_fcs_rport_sm_hcb_logorcv(struct bfa_fcs_rport_s *rport, ...@@ -1009,7 +1009,7 @@ bfa_fcs_rport_sm_hcb_logorcv(struct bfa_fcs_rport_s *rport,
case RPSM_EVENT_LOGO_RCVD: case RPSM_EVENT_LOGO_RCVD:
case RPSM_EVENT_PRLO_RCVD: case RPSM_EVENT_PRLO_RCVD:
/** /*
* Ignore - already processing a LOGO. * Ignore - already processing a LOGO.
*/ */
break; break;
...@@ -1019,7 +1019,7 @@ bfa_fcs_rport_sm_hcb_logorcv(struct bfa_fcs_rport_s *rport, ...@@ -1019,7 +1019,7 @@ bfa_fcs_rport_sm_hcb_logorcv(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Rport is being deleted. FC-4s are offline. * Rport is being deleted. FC-4s are offline.
* Awaiting BFA rport offline * Awaiting BFA rport offline
* callback to send LOGO. * callback to send LOGO.
...@@ -1048,7 +1048,7 @@ bfa_fcs_rport_sm_hcb_logosend(struct bfa_fcs_rport_s *rport, ...@@ -1048,7 +1048,7 @@ bfa_fcs_rport_sm_hcb_logosend(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Rport is being deleted. FC-4s are offline. LOGO is being sent. * Rport is being deleted. FC-4s are offline. LOGO is being sent.
*/ */
static void static void
...@@ -1082,7 +1082,7 @@ bfa_fcs_rport_sm_logo_sending(struct bfa_fcs_rport_s *rport, ...@@ -1082,7 +1082,7 @@ bfa_fcs_rport_sm_logo_sending(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Rport is offline. FC-4s are offline. BFA rport is offline. * Rport is offline. FC-4s are offline. BFA rport is offline.
* Timer active to delete stale rport. * Timer active to delete stale rport.
*/ */
...@@ -1142,7 +1142,7 @@ bfa_fcs_rport_sm_offline(struct bfa_fcs_rport_s *rport, enum rport_event event) ...@@ -1142,7 +1142,7 @@ bfa_fcs_rport_sm_offline(struct bfa_fcs_rport_s *rport, enum rport_event event)
} }
} }
/** /*
* Rport address has changed. Nameserver discovery request is being sent. * Rport address has changed. Nameserver discovery request is being sent.
*/ */
static void static void
...@@ -1199,7 +1199,7 @@ bfa_fcs_rport_sm_nsdisc_sending(struct bfa_fcs_rport_s *rport, ...@@ -1199,7 +1199,7 @@ bfa_fcs_rport_sm_nsdisc_sending(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Nameserver discovery failed. Waiting for timeout to retry. * Nameserver discovery failed. Waiting for timeout to retry.
*/ */
static void static void
...@@ -1263,7 +1263,7 @@ bfa_fcs_rport_sm_nsdisc_retry(struct bfa_fcs_rport_s *rport, ...@@ -1263,7 +1263,7 @@ bfa_fcs_rport_sm_nsdisc_retry(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Rport address has changed. Nameserver discovery request is sent. * Rport address has changed. Nameserver discovery request is sent.
*/ */
static void static void
...@@ -1329,13 +1329,13 @@ bfa_fcs_rport_sm_nsdisc_sent(struct bfa_fcs_rport_s *rport, ...@@ -1329,13 +1329,13 @@ bfa_fcs_rport_sm_nsdisc_sent(struct bfa_fcs_rport_s *rport,
bfa_fcs_rport_send_prlo_acc(rport); bfa_fcs_rport_send_prlo_acc(rport);
break; break;
case RPSM_EVENT_SCN: case RPSM_EVENT_SCN:
/** /*
* ignore, wait for NS query response * ignore, wait for NS query response
*/ */
break; break;
case RPSM_EVENT_LOGO_RCVD: case RPSM_EVENT_LOGO_RCVD:
/** /*
* Not logged-in yet. Accept LOGO. * Not logged-in yet. Accept LOGO.
*/ */
bfa_fcs_rport_send_logo_acc(rport); bfa_fcs_rport_send_logo_acc(rport);
...@@ -1354,7 +1354,7 @@ bfa_fcs_rport_sm_nsdisc_sent(struct bfa_fcs_rport_s *rport, ...@@ -1354,7 +1354,7 @@ bfa_fcs_rport_sm_nsdisc_sent(struct bfa_fcs_rport_s *rport,
/** /*
* fcs_rport_private FCS RPORT provate functions * fcs_rport_private FCS RPORT provate functions
*/ */
...@@ -1415,7 +1415,7 @@ bfa_fcs_rport_plogi_response(void *fcsarg, struct bfa_fcxp_s *fcxp, void *cbarg, ...@@ -1415,7 +1415,7 @@ bfa_fcs_rport_plogi_response(void *fcsarg, struct bfa_fcxp_s *fcxp, void *cbarg,
plogi_rsp = (struct fc_logi_s *) BFA_FCXP_RSP_PLD(fcxp); plogi_rsp = (struct fc_logi_s *) BFA_FCXP_RSP_PLD(fcxp);
/** /*
* Check for failure first. * Check for failure first.
*/ */
if (plogi_rsp->els_cmd.els_code != FC_ELS_ACC) { if (plogi_rsp->els_cmd.els_code != FC_ELS_ACC) {
...@@ -1436,7 +1436,7 @@ bfa_fcs_rport_plogi_response(void *fcsarg, struct bfa_fcxp_s *fcxp, void *cbarg, ...@@ -1436,7 +1436,7 @@ bfa_fcs_rport_plogi_response(void *fcsarg, struct bfa_fcxp_s *fcxp, void *cbarg,
return; return;
} }
/** /*
* PLOGI is complete. Make sure this device is not one of the known * PLOGI is complete. Make sure this device is not one of the known
* device with a new FC port address. * device with a new FC port address.
*/ */
...@@ -1468,7 +1468,7 @@ bfa_fcs_rport_plogi_response(void *fcsarg, struct bfa_fcxp_s *fcxp, void *cbarg, ...@@ -1468,7 +1468,7 @@ bfa_fcs_rport_plogi_response(void *fcsarg, struct bfa_fcxp_s *fcxp, void *cbarg,
} }
} }
/** /*
* Normal login path -- no evil twins. * Normal login path -- no evil twins.
*/ */
rport->stats.plogi_accs++; rport->stats.plogi_accs++;
...@@ -1722,7 +1722,7 @@ bfa_fcs_rport_gpnid_response(void *fcsarg, struct bfa_fcxp_s *fcxp, void *cbarg, ...@@ -1722,7 +1722,7 @@ bfa_fcs_rport_gpnid_response(void *fcsarg, struct bfa_fcxp_s *fcxp, void *cbarg,
} }
} }
/** /*
* Called to send a logout to the rport. * Called to send a logout to the rport.
*/ */
static void static void
...@@ -1759,7 +1759,7 @@ bfa_fcs_rport_send_logo(void *rport_cbarg, struct bfa_fcxp_s *fcxp_alloced) ...@@ -1759,7 +1759,7 @@ bfa_fcs_rport_send_logo(void *rport_cbarg, struct bfa_fcxp_s *fcxp_alloced)
bfa_sm_send_event(rport, RPSM_EVENT_FCXP_SENT); bfa_sm_send_event(rport, RPSM_EVENT_FCXP_SENT);
} }
/** /*
* Send ACC for a LOGO received. * Send ACC for a LOGO received.
*/ */
static void static void
...@@ -1788,7 +1788,7 @@ bfa_fcs_rport_send_logo_acc(void *rport_cbarg) ...@@ -1788,7 +1788,7 @@ bfa_fcs_rport_send_logo_acc(void *rport_cbarg)
FC_CLASS_3, len, &fchs, NULL, NULL, FC_MAX_PDUSZ, 0); FC_CLASS_3, len, &fchs, NULL, NULL, FC_MAX_PDUSZ, 0);
} }
/** /*
* brief * brief
* This routine will be called by bfa_timer on timer timeouts. * This routine will be called by bfa_timer on timer timeouts.
* *
...@@ -1961,7 +1961,7 @@ bfa_fcs_rport_alloc(struct bfa_fcs_lport_s *port, wwn_t pwwn, u32 rpid) ...@@ -1961,7 +1961,7 @@ bfa_fcs_rport_alloc(struct bfa_fcs_lport_s *port, wwn_t pwwn, u32 rpid)
struct bfa_fcs_rport_s *rport; struct bfa_fcs_rport_s *rport;
struct bfad_rport_s *rport_drv; struct bfad_rport_s *rport_drv;
/** /*
* allocate rport * allocate rport
*/ */
if (bfa_fcb_rport_alloc(fcs->bfad, &rport, &rport_drv) if (bfa_fcb_rport_alloc(fcs->bfad, &rport, &rport_drv)
...@@ -1979,7 +1979,7 @@ bfa_fcs_rport_alloc(struct bfa_fcs_lport_s *port, wwn_t pwwn, u32 rpid) ...@@ -1979,7 +1979,7 @@ bfa_fcs_rport_alloc(struct bfa_fcs_lport_s *port, wwn_t pwwn, u32 rpid)
rport->pid = rpid; rport->pid = rpid;
rport->pwwn = pwwn; rport->pwwn = pwwn;
/** /*
* allocate BFA rport * allocate BFA rport
*/ */
rport->bfa_rport = bfa_rport_create(port->fcs->bfa, rport); rport->bfa_rport = bfa_rport_create(port->fcs->bfa, rport);
...@@ -1989,7 +1989,7 @@ bfa_fcs_rport_alloc(struct bfa_fcs_lport_s *port, wwn_t pwwn, u32 rpid) ...@@ -1989,7 +1989,7 @@ bfa_fcs_rport_alloc(struct bfa_fcs_lport_s *port, wwn_t pwwn, u32 rpid)
return NULL; return NULL;
} }
/** /*
* allocate FC-4s * allocate FC-4s
*/ */
bfa_assert(bfa_fcs_lport_is_initiator(port)); bfa_assert(bfa_fcs_lport_is_initiator(port));
...@@ -2021,7 +2021,7 @@ bfa_fcs_rport_free(struct bfa_fcs_rport_s *rport) ...@@ -2021,7 +2021,7 @@ bfa_fcs_rport_free(struct bfa_fcs_rport_s *rport)
{ {
struct bfa_fcs_lport_s *port = rport->port; struct bfa_fcs_lport_s *port = rport->port;
/** /*
* - delete FC-4s * - delete FC-4s
* - delete BFA rport * - delete BFA rport
* - remove from queue of rports * - remove from queue of rports
...@@ -2093,7 +2093,7 @@ bfa_fcs_rport_offline_action(struct bfa_fcs_rport_s *rport) ...@@ -2093,7 +2093,7 @@ bfa_fcs_rport_offline_action(struct bfa_fcs_rport_s *rport)
} }
} }
/** /*
* Update rport parameters from PLOGI or PLOGI accept. * Update rport parameters from PLOGI or PLOGI accept.
*/ */
static void static void
...@@ -2101,14 +2101,14 @@ bfa_fcs_rport_update(struct bfa_fcs_rport_s *rport, struct fc_logi_s *plogi) ...@@ -2101,14 +2101,14 @@ bfa_fcs_rport_update(struct bfa_fcs_rport_s *rport, struct fc_logi_s *plogi)
{ {
bfa_fcs_lport_t *port = rport->port; bfa_fcs_lport_t *port = rport->port;
/** /*
* - port name * - port name
* - node name * - node name
*/ */
rport->pwwn = plogi->port_name; rport->pwwn = plogi->port_name;
rport->nwwn = plogi->node_name; rport->nwwn = plogi->node_name;
/** /*
* - class of service * - class of service
*/ */
rport->fc_cos = 0; rport->fc_cos = 0;
...@@ -2118,7 +2118,7 @@ bfa_fcs_rport_update(struct bfa_fcs_rport_s *rport, struct fc_logi_s *plogi) ...@@ -2118,7 +2118,7 @@ bfa_fcs_rport_update(struct bfa_fcs_rport_s *rport, struct fc_logi_s *plogi)
if (plogi->class2.class_valid) if (plogi->class2.class_valid)
rport->fc_cos |= FC_CLASS_2; rport->fc_cos |= FC_CLASS_2;
/** /*
* - CISC * - CISC
* - MAX receive frame size * - MAX receive frame size
*/ */
...@@ -2127,7 +2127,7 @@ bfa_fcs_rport_update(struct bfa_fcs_rport_s *rport, struct fc_logi_s *plogi) ...@@ -2127,7 +2127,7 @@ bfa_fcs_rport_update(struct bfa_fcs_rport_s *rport, struct fc_logi_s *plogi)
bfa_trc(port->fcs, be16_to_cpu(plogi->csp.bbcred)); bfa_trc(port->fcs, be16_to_cpu(plogi->csp.bbcred));
bfa_trc(port->fcs, port->fabric->bb_credit); bfa_trc(port->fcs, port->fabric->bb_credit);
/** /*
* Direct Attach P2P mode : * Direct Attach P2P mode :
* This is to handle a bug (233476) in IBM targets in Direct Attach * This is to handle a bug (233476) in IBM targets in Direct Attach
* Mode. Basically, in FLOGI Accept the target would have * Mode. Basically, in FLOGI Accept the target would have
...@@ -2148,7 +2148,7 @@ bfa_fcs_rport_update(struct bfa_fcs_rport_s *rport, struct fc_logi_s *plogi) ...@@ -2148,7 +2148,7 @@ bfa_fcs_rport_update(struct bfa_fcs_rport_s *rport, struct fc_logi_s *plogi)
} }
/** /*
* Called to handle LOGO received from an existing remote port. * Called to handle LOGO received from an existing remote port.
*/ */
static void static void
...@@ -2164,11 +2164,11 @@ bfa_fcs_rport_process_logo(struct bfa_fcs_rport_s *rport, struct fchs_s *fchs) ...@@ -2164,11 +2164,11 @@ bfa_fcs_rport_process_logo(struct bfa_fcs_rport_s *rport, struct fchs_s *fchs)
/** /*
* fcs_rport_public FCS rport public interfaces * fcs_rport_public FCS rport public interfaces
*/ */
/** /*
* Called by bport/vport to create a remote port instance for a discovered * Called by bport/vport to create a remote port instance for a discovered
* remote device. * remote device.
* *
...@@ -2191,7 +2191,7 @@ bfa_fcs_rport_create(struct bfa_fcs_lport_s *port, u32 rpid) ...@@ -2191,7 +2191,7 @@ bfa_fcs_rport_create(struct bfa_fcs_lport_s *port, u32 rpid)
return rport; return rport;
} }
/** /*
* Called to create a rport for which only the wwn is known. * Called to create a rport for which only the wwn is known.
* *
* @param[in] port - base port * @param[in] port - base port
...@@ -2211,7 +2211,7 @@ bfa_fcs_rport_create_by_wwn(struct bfa_fcs_lport_s *port, wwn_t rpwwn) ...@@ -2211,7 +2211,7 @@ bfa_fcs_rport_create_by_wwn(struct bfa_fcs_lport_s *port, wwn_t rpwwn)
bfa_sm_send_event(rport, RPSM_EVENT_ADDRESS_DISC); bfa_sm_send_event(rport, RPSM_EVENT_ADDRESS_DISC);
return rport; return rport;
} }
/** /*
* Called by bport in private loop topology to indicate that a * Called by bport in private loop topology to indicate that a
* rport has been discovered and plogi has been completed. * rport has been discovered and plogi has been completed.
* *
...@@ -2233,7 +2233,7 @@ bfa_fcs_rport_start(struct bfa_fcs_lport_s *port, struct fchs_s *fchs, ...@@ -2233,7 +2233,7 @@ bfa_fcs_rport_start(struct bfa_fcs_lport_s *port, struct fchs_s *fchs,
bfa_sm_send_event(rport, RPSM_EVENT_PLOGI_COMP); bfa_sm_send_event(rport, RPSM_EVENT_PLOGI_COMP);
} }
/** /*
* Called by bport/vport to handle PLOGI received from a new remote port. * Called by bport/vport to handle PLOGI received from a new remote port.
* If an existing rport does a plogi, it will be handled separately. * If an existing rport does a plogi, it will be handled separately.
*/ */
...@@ -2272,7 +2272,7 @@ wwn_compare(wwn_t wwn1, wwn_t wwn2) ...@@ -2272,7 +2272,7 @@ wwn_compare(wwn_t wwn1, wwn_t wwn2)
return 0; return 0;
} }
/** /*
* Called by bport/vport to handle PLOGI received from an existing * Called by bport/vport to handle PLOGI received from an existing
* remote port. * remote port.
*/ */
...@@ -2280,7 +2280,7 @@ void ...@@ -2280,7 +2280,7 @@ void
bfa_fcs_rport_plogi(struct bfa_fcs_rport_s *rport, struct fchs_s *rx_fchs, bfa_fcs_rport_plogi(struct bfa_fcs_rport_s *rport, struct fchs_s *rx_fchs,
struct fc_logi_s *plogi) struct fc_logi_s *plogi)
{ {
/** /*
* @todo Handle P2P and initiator-initiator. * @todo Handle P2P and initiator-initiator.
*/ */
...@@ -2289,7 +2289,7 @@ bfa_fcs_rport_plogi(struct bfa_fcs_rport_s *rport, struct fchs_s *rx_fchs, ...@@ -2289,7 +2289,7 @@ bfa_fcs_rport_plogi(struct bfa_fcs_rport_s *rport, struct fchs_s *rx_fchs,
rport->reply_oxid = rx_fchs->ox_id; rport->reply_oxid = rx_fchs->ox_id;
bfa_trc(rport->fcs, rport->reply_oxid); bfa_trc(rport->fcs, rport->reply_oxid);
/** /*
* In Switched fabric topology, * In Switched fabric topology,
* PLOGI to each other. If our pwwn is smaller, ignore it, * PLOGI to each other. If our pwwn is smaller, ignore it,
* if it is not a well known address. * if it is not a well known address.
...@@ -2307,7 +2307,7 @@ bfa_fcs_rport_plogi(struct bfa_fcs_rport_s *rport, struct fchs_s *rx_fchs, ...@@ -2307,7 +2307,7 @@ bfa_fcs_rport_plogi(struct bfa_fcs_rport_s *rport, struct fchs_s *rx_fchs,
bfa_sm_send_event(rport, RPSM_EVENT_PLOGI_RCVD); bfa_sm_send_event(rport, RPSM_EVENT_PLOGI_RCVD);
} }
/** /*
* Called by bport/vport to delete a remote port instance. * Called by bport/vport to delete a remote port instance.
* *
* Rport delete is called under the following conditions: * Rport delete is called under the following conditions:
...@@ -2321,7 +2321,7 @@ bfa_fcs_rport_delete(struct bfa_fcs_rport_s *rport) ...@@ -2321,7 +2321,7 @@ bfa_fcs_rport_delete(struct bfa_fcs_rport_s *rport)
bfa_sm_send_event(rport, RPSM_EVENT_DELETE); bfa_sm_send_event(rport, RPSM_EVENT_DELETE);
} }
/** /*
* Called by bport/vport to when a target goes offline. * Called by bport/vport to when a target goes offline.
* *
*/ */
...@@ -2331,7 +2331,7 @@ bfa_fcs_rport_offline(struct bfa_fcs_rport_s *rport) ...@@ -2331,7 +2331,7 @@ bfa_fcs_rport_offline(struct bfa_fcs_rport_s *rport)
bfa_sm_send_event(rport, RPSM_EVENT_LOGO_IMP); bfa_sm_send_event(rport, RPSM_EVENT_LOGO_IMP);
} }
/** /*
* Called by bport in n2n when a target (attached port) becomes online. * Called by bport in n2n when a target (attached port) becomes online.
* *
*/ */
...@@ -2340,7 +2340,7 @@ bfa_fcs_rport_online(struct bfa_fcs_rport_s *rport) ...@@ -2340,7 +2340,7 @@ bfa_fcs_rport_online(struct bfa_fcs_rport_s *rport)
{ {
bfa_sm_send_event(rport, RPSM_EVENT_PLOGI_SEND); bfa_sm_send_event(rport, RPSM_EVENT_PLOGI_SEND);
} }
/** /*
* Called by bport/vport to notify SCN for the remote port * Called by bport/vport to notify SCN for the remote port
*/ */
void void
...@@ -2350,7 +2350,7 @@ bfa_fcs_rport_scn(struct bfa_fcs_rport_s *rport) ...@@ -2350,7 +2350,7 @@ bfa_fcs_rport_scn(struct bfa_fcs_rport_s *rport)
bfa_sm_send_event(rport, RPSM_EVENT_SCN); bfa_sm_send_event(rport, RPSM_EVENT_SCN);
} }
/** /*
* Called by fcpim to notify that the ITN cleanup is done. * Called by fcpim to notify that the ITN cleanup is done.
*/ */
void void
...@@ -2359,7 +2359,7 @@ bfa_fcs_rport_itnim_ack(struct bfa_fcs_rport_s *rport) ...@@ -2359,7 +2359,7 @@ bfa_fcs_rport_itnim_ack(struct bfa_fcs_rport_s *rport)
bfa_sm_send_event(rport, RPSM_EVENT_FC4_OFFLINE); bfa_sm_send_event(rport, RPSM_EVENT_FC4_OFFLINE);
} }
/** /*
* Called by fcptm to notify that the ITN cleanup is done. * Called by fcptm to notify that the ITN cleanup is done.
*/ */
void void
...@@ -2368,7 +2368,7 @@ bfa_fcs_rport_tin_ack(struct bfa_fcs_rport_s *rport) ...@@ -2368,7 +2368,7 @@ bfa_fcs_rport_tin_ack(struct bfa_fcs_rport_s *rport)
bfa_sm_send_event(rport, RPSM_EVENT_FC4_OFFLINE); bfa_sm_send_event(rport, RPSM_EVENT_FC4_OFFLINE);
} }
/** /*
* brief * brief
* This routine BFA callback for bfa_rport_online() call. * This routine BFA callback for bfa_rport_online() call.
* *
...@@ -2391,7 +2391,7 @@ bfa_cb_rport_online(void *cbarg) ...@@ -2391,7 +2391,7 @@ bfa_cb_rport_online(void *cbarg)
bfa_sm_send_event(rport, RPSM_EVENT_HCB_ONLINE); bfa_sm_send_event(rport, RPSM_EVENT_HCB_ONLINE);
} }
/** /*
* brief * brief
* This routine BFA callback for bfa_rport_offline() call. * This routine BFA callback for bfa_rport_offline() call.
* *
...@@ -2413,7 +2413,7 @@ bfa_cb_rport_offline(void *cbarg) ...@@ -2413,7 +2413,7 @@ bfa_cb_rport_offline(void *cbarg)
bfa_sm_send_event(rport, RPSM_EVENT_HCB_OFFLINE); bfa_sm_send_event(rport, RPSM_EVENT_HCB_OFFLINE);
} }
/** /*
* brief * brief
* This routine is a static BFA callback when there is a QoS flow_id * This routine is a static BFA callback when there is a QoS flow_id
* change notification * change notification
...@@ -2437,7 +2437,7 @@ bfa_cb_rport_qos_scn_flowid(void *cbarg, ...@@ -2437,7 +2437,7 @@ bfa_cb_rport_qos_scn_flowid(void *cbarg,
bfa_trc(rport->fcs, rport->pwwn); bfa_trc(rport->fcs, rport->pwwn);
} }
/** /*
* brief * brief
* This routine is a static BFA callback when there is a QoS priority * This routine is a static BFA callback when there is a QoS priority
* change notification * change notification
...@@ -2461,7 +2461,7 @@ bfa_cb_rport_qos_scn_prio(void *cbarg, ...@@ -2461,7 +2461,7 @@ bfa_cb_rport_qos_scn_prio(void *cbarg,
bfa_trc(rport->fcs, rport->pwwn); bfa_trc(rport->fcs, rport->pwwn);
} }
/** /*
* Called to process any unsolicted frames from this remote port * Called to process any unsolicted frames from this remote port
*/ */
void void
...@@ -2470,7 +2470,7 @@ bfa_fcs_rport_logo_imp(struct bfa_fcs_rport_s *rport) ...@@ -2470,7 +2470,7 @@ bfa_fcs_rport_logo_imp(struct bfa_fcs_rport_s *rport)
bfa_sm_send_event(rport, RPSM_EVENT_LOGO_IMP); bfa_sm_send_event(rport, RPSM_EVENT_LOGO_IMP);
} }
/** /*
* Called to process any unsolicted frames from this remote port * Called to process any unsolicted frames from this remote port
*/ */
void void
...@@ -2577,7 +2577,7 @@ bfa_fcs_rport_send_ls_rjt(struct bfa_fcs_rport_s *rport, struct fchs_s *rx_fchs, ...@@ -2577,7 +2577,7 @@ bfa_fcs_rport_send_ls_rjt(struct bfa_fcs_rport_s *rport, struct fchs_s *rx_fchs,
FC_MAX_PDUSZ, 0); FC_MAX_PDUSZ, 0);
} }
/** /*
* Return state of rport. * Return state of rport.
*/ */
int int
...@@ -2586,7 +2586,7 @@ bfa_fcs_rport_get_state(struct bfa_fcs_rport_s *rport) ...@@ -2586,7 +2586,7 @@ bfa_fcs_rport_get_state(struct bfa_fcs_rport_s *rport)
return bfa_sm_to_state(rport_sm_table, rport->sm); return bfa_sm_to_state(rport_sm_table, rport->sm);
} }
/** /*
* brief * brief
* Called by the Driver to set rport delete/ageout timeout * Called by the Driver to set rport delete/ageout timeout
* *
...@@ -2613,15 +2613,15 @@ bfa_fcs_rport_prlo(struct bfa_fcs_rport_s *rport, u16 ox_id) ...@@ -2613,15 +2613,15 @@ bfa_fcs_rport_prlo(struct bfa_fcs_rport_s *rport, u16 ox_id)
/** /*
* Remote port implementation. * Remote port implementation.
*/ */
/** /*
* fcs_rport_api FCS rport API. * fcs_rport_api FCS rport API.
*/ */
/** /*
* Direct API to add a target by port wwn. This interface is used, for * Direct API to add a target by port wwn. This interface is used, for
* example, by bios when target pwwn is known from boot lun configuration. * example, by bios when target pwwn is known from boot lun configuration.
*/ */
...@@ -2634,7 +2634,7 @@ bfa_fcs_rport_add(struct bfa_fcs_lport_s *port, wwn_t *pwwn, ...@@ -2634,7 +2634,7 @@ bfa_fcs_rport_add(struct bfa_fcs_lport_s *port, wwn_t *pwwn,
return BFA_STATUS_OK; return BFA_STATUS_OK;
} }
/** /*
* Direct API to remove a target and its associated resources. This * Direct API to remove a target and its associated resources. This
* interface is used, for example, by driver to remove target * interface is used, for example, by driver to remove target
* ports from the target list for a VM. * ports from the target list for a VM.
...@@ -2663,7 +2663,7 @@ bfa_fcs_rport_remove(struct bfa_fcs_rport_s *rport_in) ...@@ -2663,7 +2663,7 @@ bfa_fcs_rport_remove(struct bfa_fcs_rport_s *rport_in)
} }
/** /*
* Remote device status for display/debug. * Remote device status for display/debug.
*/ */
void void
...@@ -2704,7 +2704,7 @@ bfa_fcs_rport_get_attr(struct bfa_fcs_rport_s *rport, ...@@ -2704,7 +2704,7 @@ bfa_fcs_rport_get_attr(struct bfa_fcs_rport_s *rport,
} }
} }
/** /*
* Per remote device statistics. * Per remote device statistics.
*/ */
void void
...@@ -2767,7 +2767,7 @@ bfa_fcs_rport_set_speed(struct bfa_fcs_rport_s *rport, bfa_port_speed_t speed) ...@@ -2767,7 +2767,7 @@ bfa_fcs_rport_set_speed(struct bfa_fcs_rport_s *rport, bfa_port_speed_t speed)
/** /*
* Remote port features (RPF) implementation. * Remote port features (RPF) implementation.
*/ */
...@@ -2786,7 +2786,7 @@ static void bfa_fcs_rpf_rpsc2_response(void *fcsarg, ...@@ -2786,7 +2786,7 @@ static void bfa_fcs_rpf_rpsc2_response(void *fcsarg,
static void bfa_fcs_rpf_timeout(void *arg); static void bfa_fcs_rpf_timeout(void *arg);
/** /*
* fcs_rport_ftrs_sm FCS rport state machine events * fcs_rport_ftrs_sm FCS rport state machine events
*/ */
...@@ -2981,7 +2981,7 @@ bfa_fcs_rpf_sm_offline(struct bfa_fcs_rpf_s *rpf, enum rpf_event event) ...@@ -2981,7 +2981,7 @@ bfa_fcs_rpf_sm_offline(struct bfa_fcs_rpf_s *rpf, enum rpf_event event)
bfa_sm_fault(rport->fcs, event); bfa_sm_fault(rport->fcs, event);
} }
} }
/** /*
* Called when Rport is created. * Called when Rport is created.
*/ */
void void
...@@ -2995,7 +2995,7 @@ bfa_fcs_rpf_init(struct bfa_fcs_rport_s *rport) ...@@ -2995,7 +2995,7 @@ bfa_fcs_rpf_init(struct bfa_fcs_rport_s *rport)
bfa_sm_set_state(rpf, bfa_fcs_rpf_sm_uninit); bfa_sm_set_state(rpf, bfa_fcs_rpf_sm_uninit);
} }
/** /*
* Called when Rport becomes online * Called when Rport becomes online
*/ */
void void
...@@ -3010,7 +3010,7 @@ bfa_fcs_rpf_rport_online(struct bfa_fcs_rport_s *rport) ...@@ -3010,7 +3010,7 @@ bfa_fcs_rpf_rport_online(struct bfa_fcs_rport_s *rport)
bfa_sm_send_event(&rport->rpf, RPFSM_EVENT_RPORT_ONLINE); bfa_sm_send_event(&rport->rpf, RPFSM_EVENT_RPORT_ONLINE);
} }
/** /*
* Called when Rport becomes offline * Called when Rport becomes offline
*/ */
void void
......
...@@ -102,7 +102,7 @@ bfa_hwcb_msix_getvecs(struct bfa_s *bfa, u32 *msix_vecs_bmap, ...@@ -102,7 +102,7 @@ bfa_hwcb_msix_getvecs(struct bfa_s *bfa, u32 *msix_vecs_bmap,
*num_vecs = __HFN_NUMINTS; *num_vecs = __HFN_NUMINTS;
} }
/** /*
* No special setup required for crossbow -- vector assignments are implicit. * No special setup required for crossbow -- vector assignments are implicit.
*/ */
void void
...@@ -129,7 +129,7 @@ bfa_hwcb_msix_init(struct bfa_s *bfa, int nvecs) ...@@ -129,7 +129,7 @@ bfa_hwcb_msix_init(struct bfa_s *bfa, int nvecs)
bfa->msix.handler[i] = bfa_msix_lpu_err; bfa->msix.handler[i] = bfa_msix_lpu_err;
} }
/** /*
* Crossbow -- dummy, interrupts are masked * Crossbow -- dummy, interrupts are masked
*/ */
void void
...@@ -142,7 +142,7 @@ bfa_hwcb_msix_uninstall(struct bfa_s *bfa) ...@@ -142,7 +142,7 @@ bfa_hwcb_msix_uninstall(struct bfa_s *bfa)
{ {
} }
/** /*
* No special enable/disable -- vector assignments are implicit. * No special enable/disable -- vector assignments are implicit.
*/ */
void void
......
...@@ -39,7 +39,7 @@ bfa_hwct_msix_lpu_err_set(struct bfa_s *bfa, bfa_boolean_t msix, int vec) ...@@ -39,7 +39,7 @@ bfa_hwct_msix_lpu_err_set(struct bfa_s *bfa, bfa_boolean_t msix, int vec)
writel(0, kva + __ct_msix_err_vec_reg[fn]); writel(0, kva + __ct_msix_err_vec_reg[fn]);
} }
/** /*
* Dummy interrupt handler for handling spurious interrupt during chip-reinit. * Dummy interrupt handler for handling spurious interrupt during chip-reinit.
*/ */
static void static void
...@@ -110,7 +110,7 @@ bfa_hwct_msix_getvecs(struct bfa_s *bfa, u32 *msix_vecs_bmap, ...@@ -110,7 +110,7 @@ bfa_hwct_msix_getvecs(struct bfa_s *bfa, u32 *msix_vecs_bmap,
*num_vecs = BFA_MSIX_CT_MAX; *num_vecs = BFA_MSIX_CT_MAX;
} }
/** /*
* Setup MSI-X vector for catapult * Setup MSI-X vector for catapult
*/ */
void void
...@@ -156,7 +156,7 @@ bfa_hwct_msix_uninstall(struct bfa_s *bfa) ...@@ -156,7 +156,7 @@ bfa_hwct_msix_uninstall(struct bfa_s *bfa)
bfa->msix.handler[i] = bfa_hwct_msix_dummy; bfa->msix.handler[i] = bfa_hwct_msix_dummy;
} }
/** /*
* Enable MSI-X vectors * Enable MSI-X vectors
*/ */
void void
......
此差异已折叠。
...@@ -34,7 +34,7 @@ static void bfa_ioc_cb_ownership_reset(struct bfa_ioc_s *ioc); ...@@ -34,7 +34,7 @@ static void bfa_ioc_cb_ownership_reset(struct bfa_ioc_s *ioc);
struct bfa_ioc_hwif_s hwif_cb; struct bfa_ioc_hwif_s hwif_cb;
/** /*
* Called from bfa_ioc_attach() to map asic specific calls. * Called from bfa_ioc_attach() to map asic specific calls.
*/ */
void void
...@@ -52,7 +52,7 @@ bfa_ioc_set_cb_hwif(struct bfa_ioc_s *ioc) ...@@ -52,7 +52,7 @@ bfa_ioc_set_cb_hwif(struct bfa_ioc_s *ioc)
ioc->ioc_hwif = &hwif_cb; ioc->ioc_hwif = &hwif_cb;
} }
/** /*
* Return true if firmware of current driver matches the running firmware. * Return true if firmware of current driver matches the running firmware.
*/ */
static bfa_boolean_t static bfa_boolean_t
...@@ -66,7 +66,7 @@ bfa_ioc_cb_firmware_unlock(struct bfa_ioc_s *ioc) ...@@ -66,7 +66,7 @@ bfa_ioc_cb_firmware_unlock(struct bfa_ioc_s *ioc)
{ {
} }
/** /*
* Notify other functions on HB failure. * Notify other functions on HB failure.
*/ */
static void static void
...@@ -76,7 +76,7 @@ bfa_ioc_cb_notify_hbfail(struct bfa_ioc_s *ioc) ...@@ -76,7 +76,7 @@ bfa_ioc_cb_notify_hbfail(struct bfa_ioc_s *ioc)
readl(ioc->ioc_regs.err_set); readl(ioc->ioc_regs.err_set);
} }
/** /*
* Host to LPU mailbox message addresses * Host to LPU mailbox message addresses
*/ */
static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = { static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = {
...@@ -84,7 +84,7 @@ static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = { ...@@ -84,7 +84,7 @@ static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = {
{ HOSTFN1_LPU_MBOX0_8, LPU_HOSTFN1_MBOX0_8, HOST_PAGE_NUM_FN1 } { HOSTFN1_LPU_MBOX0_8, LPU_HOSTFN1_MBOX0_8, HOST_PAGE_NUM_FN1 }
}; };
/** /*
* Host <-> LPU mailbox command/status registers * Host <-> LPU mailbox command/status registers
*/ */
static struct { u32 hfn, lpu; } iocreg_mbcmd[] = { static struct { u32 hfn, lpu; } iocreg_mbcmd[] = {
...@@ -113,7 +113,7 @@ bfa_ioc_cb_reg_init(struct bfa_ioc_s *ioc) ...@@ -113,7 +113,7 @@ bfa_ioc_cb_reg_init(struct bfa_ioc_s *ioc)
ioc->ioc_regs.ioc_fwstate = (rb + BFA_IOC1_STATE_REG); ioc->ioc_regs.ioc_fwstate = (rb + BFA_IOC1_STATE_REG);
} }
/** /*
* Host <-> LPU mailbox command/status registers * Host <-> LPU mailbox command/status registers
*/ */
ioc->ioc_regs.hfn_mbox_cmd = rb + iocreg_mbcmd[pcifn].hfn; ioc->ioc_regs.hfn_mbox_cmd = rb + iocreg_mbcmd[pcifn].hfn;
...@@ -133,7 +133,7 @@ bfa_ioc_cb_reg_init(struct bfa_ioc_s *ioc) ...@@ -133,7 +133,7 @@ bfa_ioc_cb_reg_init(struct bfa_ioc_s *ioc)
ioc->ioc_regs.ioc_sem_reg = (rb + HOST_SEM0_REG); ioc->ioc_regs.ioc_sem_reg = (rb + HOST_SEM0_REG);
ioc->ioc_regs.ioc_init_sem_reg = (rb + HOST_SEM2_REG); ioc->ioc_regs.ioc_init_sem_reg = (rb + HOST_SEM2_REG);
/** /*
* sram memory access * sram memory access
*/ */
ioc->ioc_regs.smem_page_start = (rb + PSS_SMEM_PAGE_START); ioc->ioc_regs.smem_page_start = (rb + PSS_SMEM_PAGE_START);
...@@ -145,14 +145,14 @@ bfa_ioc_cb_reg_init(struct bfa_ioc_s *ioc) ...@@ -145,14 +145,14 @@ bfa_ioc_cb_reg_init(struct bfa_ioc_s *ioc)
ioc->ioc_regs.err_set = (rb + ERR_SET_REG); ioc->ioc_regs.err_set = (rb + ERR_SET_REG);
} }
/** /*
* Initialize IOC to port mapping. * Initialize IOC to port mapping.
*/ */
static void static void
bfa_ioc_cb_map_port(struct bfa_ioc_s *ioc) bfa_ioc_cb_map_port(struct bfa_ioc_s *ioc)
{ {
/** /*
* For crossbow, port id is same as pci function. * For crossbow, port id is same as pci function.
*/ */
ioc->port_id = bfa_ioc_pcifn(ioc); ioc->port_id = bfa_ioc_pcifn(ioc);
...@@ -160,7 +160,7 @@ bfa_ioc_cb_map_port(struct bfa_ioc_s *ioc) ...@@ -160,7 +160,7 @@ bfa_ioc_cb_map_port(struct bfa_ioc_s *ioc)
bfa_trc(ioc, ioc->port_id); bfa_trc(ioc, ioc->port_id);
} }
/** /*
* Set interrupt mode for a function: INTX or MSIX * Set interrupt mode for a function: INTX or MSIX
*/ */
static void static void
...@@ -168,7 +168,7 @@ bfa_ioc_cb_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix) ...@@ -168,7 +168,7 @@ bfa_ioc_cb_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix)
{ {
} }
/** /*
* Cleanup hw semaphore and usecnt registers * Cleanup hw semaphore and usecnt registers
*/ */
static void static void
......
...@@ -34,7 +34,7 @@ static void bfa_ioc_ct_ownership_reset(struct bfa_ioc_s *ioc); ...@@ -34,7 +34,7 @@ static void bfa_ioc_ct_ownership_reset(struct bfa_ioc_s *ioc);
struct bfa_ioc_hwif_s hwif_ct; struct bfa_ioc_hwif_s hwif_ct;
/** /*
* Called from bfa_ioc_attach() to map asic specific calls. * Called from bfa_ioc_attach() to map asic specific calls.
*/ */
void void
...@@ -52,7 +52,7 @@ bfa_ioc_set_ct_hwif(struct bfa_ioc_s *ioc) ...@@ -52,7 +52,7 @@ bfa_ioc_set_ct_hwif(struct bfa_ioc_s *ioc)
ioc->ioc_hwif = &hwif_ct; ioc->ioc_hwif = &hwif_ct;
} }
/** /*
* Return true if firmware of current driver matches the running firmware. * Return true if firmware of current driver matches the running firmware.
*/ */
static bfa_boolean_t static bfa_boolean_t
...@@ -62,13 +62,13 @@ bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc) ...@@ -62,13 +62,13 @@ bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc)
u32 usecnt; u32 usecnt;
struct bfi_ioc_image_hdr_s fwhdr; struct bfi_ioc_image_hdr_s fwhdr;
/** /*
* Firmware match check is relevant only for CNA. * Firmware match check is relevant only for CNA.
*/ */
if (!ioc->cna) if (!ioc->cna)
return BFA_TRUE; return BFA_TRUE;
/** /*
* If bios boot (flash based) -- do not increment usage count * If bios boot (flash based) -- do not increment usage count
*/ */
if (bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)) < if (bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)) <
...@@ -78,7 +78,7 @@ bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc) ...@@ -78,7 +78,7 @@ bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc)
bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg); bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg);
usecnt = readl(ioc->ioc_regs.ioc_usage_reg); usecnt = readl(ioc->ioc_regs.ioc_usage_reg);
/** /*
* If usage count is 0, always return TRUE. * If usage count is 0, always return TRUE.
*/ */
if (usecnt == 0) { if (usecnt == 0) {
...@@ -91,12 +91,12 @@ bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc) ...@@ -91,12 +91,12 @@ bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc)
ioc_fwstate = readl(ioc->ioc_regs.ioc_fwstate); ioc_fwstate = readl(ioc->ioc_regs.ioc_fwstate);
bfa_trc(ioc, ioc_fwstate); bfa_trc(ioc, ioc_fwstate);
/** /*
* Use count cannot be non-zero and chip in uninitialized state. * Use count cannot be non-zero and chip in uninitialized state.
*/ */
bfa_assert(ioc_fwstate != BFI_IOC_UNINIT); bfa_assert(ioc_fwstate != BFI_IOC_UNINIT);
/** /*
* Check if another driver with a different firmware is active * Check if another driver with a different firmware is active
*/ */
bfa_ioc_fwver_get(ioc, &fwhdr); bfa_ioc_fwver_get(ioc, &fwhdr);
...@@ -106,7 +106,7 @@ bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc) ...@@ -106,7 +106,7 @@ bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc)
return BFA_FALSE; return BFA_FALSE;
} }
/** /*
* Same firmware version. Increment the reference count. * Same firmware version. Increment the reference count.
*/ */
usecnt++; usecnt++;
...@@ -121,20 +121,20 @@ bfa_ioc_ct_firmware_unlock(struct bfa_ioc_s *ioc) ...@@ -121,20 +121,20 @@ bfa_ioc_ct_firmware_unlock(struct bfa_ioc_s *ioc)
{ {
u32 usecnt; u32 usecnt;
/** /*
* Firmware lock is relevant only for CNA. * Firmware lock is relevant only for CNA.
*/ */
if (!ioc->cna) if (!ioc->cna)
return; return;
/** /*
* If bios boot (flash based) -- do not decrement usage count * If bios boot (flash based) -- do not decrement usage count
*/ */
if (bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)) < if (bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)) <
BFA_IOC_FWIMG_MINSZ) BFA_IOC_FWIMG_MINSZ)
return; return;
/** /*
* decrement usage count * decrement usage count
*/ */
bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg); bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg);
...@@ -148,7 +148,7 @@ bfa_ioc_ct_firmware_unlock(struct bfa_ioc_s *ioc) ...@@ -148,7 +148,7 @@ bfa_ioc_ct_firmware_unlock(struct bfa_ioc_s *ioc)
bfa_ioc_sem_release(ioc->ioc_regs.ioc_usage_sem_reg); bfa_ioc_sem_release(ioc->ioc_regs.ioc_usage_sem_reg);
} }
/** /*
* Notify other functions on HB failure. * Notify other functions on HB failure.
*/ */
static void static void
...@@ -164,7 +164,7 @@ bfa_ioc_ct_notify_hbfail(struct bfa_ioc_s *ioc) ...@@ -164,7 +164,7 @@ bfa_ioc_ct_notify_hbfail(struct bfa_ioc_s *ioc)
} }
} }
/** /*
* Host to LPU mailbox message addresses * Host to LPU mailbox message addresses
*/ */
static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = { static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = {
...@@ -174,7 +174,7 @@ static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = { ...@@ -174,7 +174,7 @@ static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = {
{ HOSTFN3_LPU_MBOX0_8, LPU_HOSTFN3_MBOX0_8, HOST_PAGE_NUM_FN3 } { HOSTFN3_LPU_MBOX0_8, LPU_HOSTFN3_MBOX0_8, HOST_PAGE_NUM_FN3 }
}; };
/** /*
* Host <-> LPU mailbox command/status registers - port 0 * Host <-> LPU mailbox command/status registers - port 0
*/ */
static struct { u32 hfn, lpu; } iocreg_mbcmd_p0[] = { static struct { u32 hfn, lpu; } iocreg_mbcmd_p0[] = {
...@@ -184,7 +184,7 @@ static struct { u32 hfn, lpu; } iocreg_mbcmd_p0[] = { ...@@ -184,7 +184,7 @@ static struct { u32 hfn, lpu; } iocreg_mbcmd_p0[] = {
{ HOSTFN3_LPU0_MBOX0_CMD_STAT, LPU0_HOSTFN3_MBOX0_CMD_STAT } { HOSTFN3_LPU0_MBOX0_CMD_STAT, LPU0_HOSTFN3_MBOX0_CMD_STAT }
}; };
/** /*
* Host <-> LPU mailbox command/status registers - port 1 * Host <-> LPU mailbox command/status registers - port 1
*/ */
static struct { u32 hfn, lpu; } iocreg_mbcmd_p1[] = { static struct { u32 hfn, lpu; } iocreg_mbcmd_p1[] = {
...@@ -236,7 +236,7 @@ bfa_ioc_ct_reg_init(struct bfa_ioc_s *ioc) ...@@ -236,7 +236,7 @@ bfa_ioc_ct_reg_init(struct bfa_ioc_s *ioc)
ioc->ioc_regs.ioc_init_sem_reg = (rb + HOST_SEM2_REG); ioc->ioc_regs.ioc_init_sem_reg = (rb + HOST_SEM2_REG);
ioc->ioc_regs.ioc_usage_reg = (rb + BFA_FW_USE_COUNT); ioc->ioc_regs.ioc_usage_reg = (rb + BFA_FW_USE_COUNT);
/** /*
* sram memory access * sram memory access
*/ */
ioc->ioc_regs.smem_page_start = (rb + PSS_SMEM_PAGE_START); ioc->ioc_regs.smem_page_start = (rb + PSS_SMEM_PAGE_START);
...@@ -248,7 +248,7 @@ bfa_ioc_ct_reg_init(struct bfa_ioc_s *ioc) ...@@ -248,7 +248,7 @@ bfa_ioc_ct_reg_init(struct bfa_ioc_s *ioc)
ioc->ioc_regs.err_set = (rb + ERR_SET_REG); ioc->ioc_regs.err_set = (rb + ERR_SET_REG);
} }
/** /*
* Initialize IOC to port mapping. * Initialize IOC to port mapping.
*/ */
...@@ -259,7 +259,7 @@ bfa_ioc_ct_map_port(struct bfa_ioc_s *ioc) ...@@ -259,7 +259,7 @@ bfa_ioc_ct_map_port(struct bfa_ioc_s *ioc)
void __iomem *rb = ioc->pcidev.pci_bar_kva; void __iomem *rb = ioc->pcidev.pci_bar_kva;
u32 r32; u32 r32;
/** /*
* For catapult, base port id on personality register and IOC type * For catapult, base port id on personality register and IOC type
*/ */
r32 = readl(rb + FNC_PERS_REG); r32 = readl(rb + FNC_PERS_REG);
...@@ -270,7 +270,7 @@ bfa_ioc_ct_map_port(struct bfa_ioc_s *ioc) ...@@ -270,7 +270,7 @@ bfa_ioc_ct_map_port(struct bfa_ioc_s *ioc)
bfa_trc(ioc, ioc->port_id); bfa_trc(ioc, ioc->port_id);
} }
/** /*
* Set interrupt mode for a function: INTX or MSIX * Set interrupt mode for a function: INTX or MSIX
*/ */
static void static void
...@@ -285,7 +285,7 @@ bfa_ioc_ct_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix) ...@@ -285,7 +285,7 @@ bfa_ioc_ct_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix)
mode = (r32 >> FNC_PERS_FN_SHIFT(bfa_ioc_pcifn(ioc))) & mode = (r32 >> FNC_PERS_FN_SHIFT(bfa_ioc_pcifn(ioc))) &
__F0_INTX_STATUS; __F0_INTX_STATUS;
/** /*
* If already in desired mode, do not change anything * If already in desired mode, do not change anything
*/ */
if (!msix && mode) if (!msix && mode)
...@@ -303,7 +303,7 @@ bfa_ioc_ct_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix) ...@@ -303,7 +303,7 @@ bfa_ioc_ct_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix)
writel(r32, rb + FNC_PERS_REG); writel(r32, rb + FNC_PERS_REG);
} }
/** /*
* Cleanup hw semaphore and usecnt registers * Cleanup hw semaphore and usecnt registers
*/ */
static void static void
......
...@@ -46,7 +46,7 @@ bfa_port_stats_swap(struct bfa_port_s *port, union bfa_port_stats_u *stats) ...@@ -46,7 +46,7 @@ bfa_port_stats_swap(struct bfa_port_s *port, union bfa_port_stats_u *stats)
} }
} }
/** /*
* bfa_port_enable_isr() * bfa_port_enable_isr()
* *
* *
...@@ -63,7 +63,7 @@ bfa_port_enable_isr(struct bfa_port_s *port, bfa_status_t status) ...@@ -63,7 +63,7 @@ bfa_port_enable_isr(struct bfa_port_s *port, bfa_status_t status)
port->endis_cbfn(port->endis_cbarg, status); port->endis_cbfn(port->endis_cbarg, status);
} }
/** /*
* bfa_port_disable_isr() * bfa_port_disable_isr()
* *
* *
...@@ -80,7 +80,7 @@ bfa_port_disable_isr(struct bfa_port_s *port, bfa_status_t status) ...@@ -80,7 +80,7 @@ bfa_port_disable_isr(struct bfa_port_s *port, bfa_status_t status)
port->endis_cbfn(port->endis_cbarg, status); port->endis_cbfn(port->endis_cbarg, status);
} }
/** /*
* bfa_port_get_stats_isr() * bfa_port_get_stats_isr()
* *
* *
...@@ -112,7 +112,7 @@ bfa_port_get_stats_isr(struct bfa_port_s *port, bfa_status_t status) ...@@ -112,7 +112,7 @@ bfa_port_get_stats_isr(struct bfa_port_s *port, bfa_status_t status)
} }
} }
/** /*
* bfa_port_clear_stats_isr() * bfa_port_clear_stats_isr()
* *
* *
...@@ -129,7 +129,7 @@ bfa_port_clear_stats_isr(struct bfa_port_s *port, bfa_status_t status) ...@@ -129,7 +129,7 @@ bfa_port_clear_stats_isr(struct bfa_port_s *port, bfa_status_t status)
port->stats_status = status; port->stats_status = status;
port->stats_busy = BFA_FALSE; port->stats_busy = BFA_FALSE;
/** /*
* re-initialize time stamp for stats reset * re-initialize time stamp for stats reset
*/ */
bfa_os_gettimeofday(&tv); bfa_os_gettimeofday(&tv);
...@@ -141,7 +141,7 @@ bfa_port_clear_stats_isr(struct bfa_port_s *port, bfa_status_t status) ...@@ -141,7 +141,7 @@ bfa_port_clear_stats_isr(struct bfa_port_s *port, bfa_status_t status)
} }
} }
/** /*
* bfa_port_isr() * bfa_port_isr()
* *
* *
...@@ -189,7 +189,7 @@ bfa_port_isr(void *cbarg, struct bfi_mbmsg_s *m) ...@@ -189,7 +189,7 @@ bfa_port_isr(void *cbarg, struct bfi_mbmsg_s *m)
} }
} }
/** /*
* bfa_port_meminfo() * bfa_port_meminfo()
* *
* *
...@@ -203,7 +203,7 @@ bfa_port_meminfo(void) ...@@ -203,7 +203,7 @@ bfa_port_meminfo(void)
return BFA_ROUNDUP(sizeof(union bfa_port_stats_u), BFA_DMA_ALIGN_SZ); return BFA_ROUNDUP(sizeof(union bfa_port_stats_u), BFA_DMA_ALIGN_SZ);
} }
/** /*
* bfa_port_mem_claim() * bfa_port_mem_claim()
* *
* *
...@@ -220,7 +220,7 @@ bfa_port_mem_claim(struct bfa_port_s *port, u8 *dma_kva, u64 dma_pa) ...@@ -220,7 +220,7 @@ bfa_port_mem_claim(struct bfa_port_s *port, u8 *dma_kva, u64 dma_pa)
port->stats_dma.pa = dma_pa; port->stats_dma.pa = dma_pa;
} }
/** /*
* bfa_port_enable() * bfa_port_enable()
* *
* Send the Port enable request to the f/w * Send the Port enable request to the f/w
...@@ -264,7 +264,7 @@ bfa_port_enable(struct bfa_port_s *port, bfa_port_endis_cbfn_t cbfn, ...@@ -264,7 +264,7 @@ bfa_port_enable(struct bfa_port_s *port, bfa_port_endis_cbfn_t cbfn,
return BFA_STATUS_OK; return BFA_STATUS_OK;
} }
/** /*
* bfa_port_disable() * bfa_port_disable()
* *
* Send the Port disable request to the f/w * Send the Port disable request to the f/w
...@@ -308,7 +308,7 @@ bfa_port_disable(struct bfa_port_s *port, bfa_port_endis_cbfn_t cbfn, ...@@ -308,7 +308,7 @@ bfa_port_disable(struct bfa_port_s *port, bfa_port_endis_cbfn_t cbfn,
return BFA_STATUS_OK; return BFA_STATUS_OK;
} }
/** /*
* bfa_port_get_stats() * bfa_port_get_stats()
* *
* Send the request to the f/w to fetch Port statistics. * Send the request to the f/w to fetch Port statistics.
...@@ -348,7 +348,7 @@ bfa_port_get_stats(struct bfa_port_s *port, union bfa_port_stats_u *stats, ...@@ -348,7 +348,7 @@ bfa_port_get_stats(struct bfa_port_s *port, union bfa_port_stats_u *stats,
return BFA_STATUS_OK; return BFA_STATUS_OK;
} }
/** /*
* bfa_port_clear_stats() * bfa_port_clear_stats()
* *
* *
...@@ -385,7 +385,7 @@ bfa_port_clear_stats(struct bfa_port_s *port, bfa_port_stats_cbfn_t cbfn, ...@@ -385,7 +385,7 @@ bfa_port_clear_stats(struct bfa_port_s *port, bfa_port_stats_cbfn_t cbfn,
return BFA_STATUS_OK; return BFA_STATUS_OK;
} }
/** /*
* bfa_port_hbfail() * bfa_port_hbfail()
* *
* *
...@@ -415,7 +415,7 @@ bfa_port_hbfail(void *arg) ...@@ -415,7 +415,7 @@ bfa_port_hbfail(void *arg)
} }
} }
/** /*
* bfa_port_attach() * bfa_port_attach()
* *
* *
...@@ -449,7 +449,7 @@ bfa_port_attach(struct bfa_port_s *port, struct bfa_ioc_s *ioc, ...@@ -449,7 +449,7 @@ bfa_port_attach(struct bfa_port_s *port, struct bfa_ioc_s *ioc,
bfa_ioc_hbfail_init(&port->hbfail, bfa_port_hbfail, port); bfa_ioc_hbfail_init(&port->hbfail, bfa_port_hbfail, port);
bfa_ioc_hbfail_register(port->ioc, &port->hbfail); bfa_ioc_hbfail_register(port->ioc, &port->hbfail);
/** /*
* initialize time stamp for stats reset * initialize time stamp for stats reset
*/ */
bfa_os_gettimeofday(&tv); bfa_os_gettimeofday(&tv);
...@@ -458,7 +458,7 @@ bfa_port_attach(struct bfa_port_s *port, struct bfa_ioc_s *ioc, ...@@ -458,7 +458,7 @@ bfa_port_attach(struct bfa_port_s *port, struct bfa_ioc_s *ioc,
bfa_trc(port, 0); bfa_trc(port, 0);
} }
/** /*
* bfa_port_detach() * bfa_port_detach()
* *
* *
......
此差异已折叠。
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* General Public License for more details. * General Public License for more details.
*/ */
/** /*
* bfad.c Linux driver PCI interface module. * bfad.c Linux driver PCI interface module.
*/ */
#include <linux/module.h> #include <linux/module.h>
...@@ -151,7 +151,7 @@ bfad_sm_failed(struct bfad_s *bfad, enum bfad_sm_event event); ...@@ -151,7 +151,7 @@ bfad_sm_failed(struct bfad_s *bfad, enum bfad_sm_event event);
static void static void
bfad_sm_fcs_exit(struct bfad_s *bfad, enum bfad_sm_event event); bfad_sm_fcs_exit(struct bfad_s *bfad, enum bfad_sm_event event);
/** /*
* Beginning state for the driver instance, awaiting the pci_probe event * Beginning state for the driver instance, awaiting the pci_probe event
*/ */
static void static void
...@@ -181,7 +181,7 @@ bfad_sm_uninit(struct bfad_s *bfad, enum bfad_sm_event event) ...@@ -181,7 +181,7 @@ bfad_sm_uninit(struct bfad_s *bfad, enum bfad_sm_event event)
} }
} }
/** /*
* Driver Instance is created, awaiting event INIT to initialize the bfad * Driver Instance is created, awaiting event INIT to initialize the bfad
*/ */
static void static void
...@@ -364,7 +364,7 @@ bfad_sm_stopping(struct bfad_s *bfad, enum bfad_sm_event event) ...@@ -364,7 +364,7 @@ bfad_sm_stopping(struct bfad_s *bfad, enum bfad_sm_event event)
} }
} }
/** /*
* BFA callbacks * BFA callbacks
*/ */
void void
...@@ -376,7 +376,7 @@ bfad_hcb_comp(void *arg, bfa_status_t status) ...@@ -376,7 +376,7 @@ bfad_hcb_comp(void *arg, bfa_status_t status)
complete(&fcomp->comp); complete(&fcomp->comp);
} }
/** /*
* bfa_init callback * bfa_init callback
*/ */
void void
...@@ -401,7 +401,7 @@ bfa_cb_init(void *drv, bfa_status_t init_status) ...@@ -401,7 +401,7 @@ bfa_cb_init(void *drv, bfa_status_t init_status)
complete(&bfad->comp); complete(&bfad->comp);
} }
/** /*
* BFA_FCS callbacks * BFA_FCS callbacks
*/ */
struct bfad_port_s * struct bfad_port_s *
...@@ -457,7 +457,7 @@ bfa_fcb_lport_delete(struct bfad_s *bfad, enum bfa_lport_role roles, ...@@ -457,7 +457,7 @@ bfa_fcb_lport_delete(struct bfad_s *bfad, enum bfa_lport_role roles,
} }
} }
/** /*
* FCS RPORT alloc callback, after successful PLOGI by FCS * FCS RPORT alloc callback, after successful PLOGI by FCS
*/ */
bfa_status_t bfa_status_t
...@@ -478,7 +478,7 @@ bfa_fcb_rport_alloc(struct bfad_s *bfad, struct bfa_fcs_rport_s **rport, ...@@ -478,7 +478,7 @@ bfa_fcb_rport_alloc(struct bfad_s *bfad, struct bfa_fcs_rport_s **rport,
return rc; return rc;
} }
/** /*
* FCS PBC VPORT Create * FCS PBC VPORT Create
*/ */
void void
...@@ -663,7 +663,7 @@ bfad_hal_mem_alloc(struct bfad_s *bfad) ...@@ -663,7 +663,7 @@ bfad_hal_mem_alloc(struct bfad_s *bfad)
return rc; return rc;
} }
/** /*
* Create a vport under a vf. * Create a vport under a vf.
*/ */
bfa_status_t bfa_status_t
...@@ -1140,7 +1140,7 @@ bfad_worker(void *ptr) ...@@ -1140,7 +1140,7 @@ bfad_worker(void *ptr)
return 0; return 0;
} }
/** /*
* BFA driver interrupt functions * BFA driver interrupt functions
*/ */
irqreturn_t irqreturn_t
...@@ -1199,7 +1199,7 @@ bfad_msix(int irq, void *dev_id) ...@@ -1199,7 +1199,7 @@ bfad_msix(int irq, void *dev_id)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
/** /*
* Initialize the MSIX entry table. * Initialize the MSIX entry table.
*/ */
static void static void
...@@ -1252,7 +1252,7 @@ bfad_install_msix_handler(struct bfad_s *bfad) ...@@ -1252,7 +1252,7 @@ bfad_install_msix_handler(struct bfad_s *bfad)
return 0; return 0;
} }
/** /*
* Setup MSIX based interrupt. * Setup MSIX based interrupt.
*/ */
int int
...@@ -1333,7 +1333,7 @@ bfad_remove_intr(struct bfad_s *bfad) ...@@ -1333,7 +1333,7 @@ bfad_remove_intr(struct bfad_s *bfad)
} }
} }
/** /*
* PCI probe entry. * PCI probe entry.
*/ */
int int
...@@ -1419,7 +1419,7 @@ bfad_pci_probe(struct pci_dev *pdev, const struct pci_device_id *pid) ...@@ -1419,7 +1419,7 @@ bfad_pci_probe(struct pci_dev *pdev, const struct pci_device_id *pid)
return error; return error;
} }
/** /*
* PCI remove entry. * PCI remove entry.
*/ */
void void
...@@ -1500,7 +1500,7 @@ static struct pci_driver bfad_pci_driver = { ...@@ -1500,7 +1500,7 @@ static struct pci_driver bfad_pci_driver = {
.remove = __devexit_p(bfad_pci_remove), .remove = __devexit_p(bfad_pci_remove),
}; };
/** /*
* Driver module init. * Driver module init.
*/ */
static int __init static int __init
...@@ -1540,7 +1540,7 @@ bfad_init(void) ...@@ -1540,7 +1540,7 @@ bfad_init(void)
return error; return error;
} }
/** /*
* Driver module exit. * Driver module exit.
*/ */
static void __exit static void __exit
......
...@@ -15,14 +15,14 @@ ...@@ -15,14 +15,14 @@
* General Public License for more details. * General Public License for more details.
*/ */
/** /*
* bfa_attr.c Linux driver configuration interface module. * bfa_attr.c Linux driver configuration interface module.
*/ */
#include "bfad_drv.h" #include "bfad_drv.h"
#include "bfad_im.h" #include "bfad_im.h"
/** /*
* FC transport template entry, get SCSI target port ID. * FC transport template entry, get SCSI target port ID.
*/ */
void void
...@@ -48,7 +48,7 @@ bfad_im_get_starget_port_id(struct scsi_target *starget) ...@@ -48,7 +48,7 @@ bfad_im_get_starget_port_id(struct scsi_target *starget)
spin_unlock_irqrestore(&bfad->bfad_lock, flags); spin_unlock_irqrestore(&bfad->bfad_lock, flags);
} }
/** /*
* FC transport template entry, get SCSI target nwwn. * FC transport template entry, get SCSI target nwwn.
*/ */
void void
...@@ -74,7 +74,7 @@ bfad_im_get_starget_node_name(struct scsi_target *starget) ...@@ -74,7 +74,7 @@ bfad_im_get_starget_node_name(struct scsi_target *starget)
spin_unlock_irqrestore(&bfad->bfad_lock, flags); spin_unlock_irqrestore(&bfad->bfad_lock, flags);
} }
/** /*
* FC transport template entry, get SCSI target pwwn. * FC transport template entry, get SCSI target pwwn.
*/ */
void void
...@@ -100,7 +100,7 @@ bfad_im_get_starget_port_name(struct scsi_target *starget) ...@@ -100,7 +100,7 @@ bfad_im_get_starget_port_name(struct scsi_target *starget)
spin_unlock_irqrestore(&bfad->bfad_lock, flags); spin_unlock_irqrestore(&bfad->bfad_lock, flags);
} }
/** /*
* FC transport template entry, get SCSI host port ID. * FC transport template entry, get SCSI host port ID.
*/ */
void void
...@@ -114,7 +114,7 @@ bfad_im_get_host_port_id(struct Scsi_Host *shost) ...@@ -114,7 +114,7 @@ bfad_im_get_host_port_id(struct Scsi_Host *shost)
bfa_os_hton3b(bfa_fcs_lport_get_fcid(port->fcs_port)); bfa_os_hton3b(bfa_fcs_lport_get_fcid(port->fcs_port));
} }
/** /*
* FC transport template entry, get SCSI host port type. * FC transport template entry, get SCSI host port type.
*/ */
static void static void
...@@ -146,7 +146,7 @@ bfad_im_get_host_port_type(struct Scsi_Host *shost) ...@@ -146,7 +146,7 @@ bfad_im_get_host_port_type(struct Scsi_Host *shost)
} }
} }
/** /*
* FC transport template entry, get SCSI host port state. * FC transport template entry, get SCSI host port state.
*/ */
static void static void
...@@ -183,7 +183,7 @@ bfad_im_get_host_port_state(struct Scsi_Host *shost) ...@@ -183,7 +183,7 @@ bfad_im_get_host_port_state(struct Scsi_Host *shost)
} }
} }
/** /*
* FC transport template entry, get SCSI host active fc4s. * FC transport template entry, get SCSI host active fc4s.
*/ */
static void static void
...@@ -202,7 +202,7 @@ bfad_im_get_host_active_fc4s(struct Scsi_Host *shost) ...@@ -202,7 +202,7 @@ bfad_im_get_host_active_fc4s(struct Scsi_Host *shost)
fc_host_active_fc4s(shost)[7] = 1; fc_host_active_fc4s(shost)[7] = 1;
} }
/** /*
* FC transport template entry, get SCSI host link speed. * FC transport template entry, get SCSI host link speed.
*/ */
static void static void
...@@ -236,7 +236,7 @@ bfad_im_get_host_speed(struct Scsi_Host *shost) ...@@ -236,7 +236,7 @@ bfad_im_get_host_speed(struct Scsi_Host *shost)
} }
} }
/** /*
* FC transport template entry, get SCSI host port type. * FC transport template entry, get SCSI host port type.
*/ */
static void static void
...@@ -253,7 +253,7 @@ bfad_im_get_host_fabric_name(struct Scsi_Host *shost) ...@@ -253,7 +253,7 @@ bfad_im_get_host_fabric_name(struct Scsi_Host *shost)
} }
/** /*
* FC transport template entry, get BFAD statistics. * FC transport template entry, get BFAD statistics.
*/ */
static struct fc_host_statistics * static struct fc_host_statistics *
...@@ -304,7 +304,7 @@ bfad_im_get_stats(struct Scsi_Host *shost) ...@@ -304,7 +304,7 @@ bfad_im_get_stats(struct Scsi_Host *shost)
return hstats; return hstats;
} }
/** /*
* FC transport template entry, reset BFAD statistics. * FC transport template entry, reset BFAD statistics.
*/ */
static void static void
...@@ -331,7 +331,7 @@ bfad_im_reset_stats(struct Scsi_Host *shost) ...@@ -331,7 +331,7 @@ bfad_im_reset_stats(struct Scsi_Host *shost)
return; return;
} }
/** /*
* FC transport template entry, get rport loss timeout. * FC transport template entry, get rport loss timeout.
*/ */
static void static void
...@@ -347,7 +347,7 @@ bfad_im_get_rport_loss_tmo(struct fc_rport *rport) ...@@ -347,7 +347,7 @@ bfad_im_get_rport_loss_tmo(struct fc_rport *rport)
spin_unlock_irqrestore(&bfad->bfad_lock, flags); spin_unlock_irqrestore(&bfad->bfad_lock, flags);
} }
/** /*
* FC transport template entry, set rport loss timeout. * FC transport template entry, set rport loss timeout.
*/ */
static void static void
...@@ -633,7 +633,7 @@ struct fc_function_template bfad_im_vport_fc_function_template = { ...@@ -633,7 +633,7 @@ struct fc_function_template bfad_im_vport_fc_function_template = {
.set_rport_dev_loss_tmo = bfad_im_set_rport_loss_tmo, .set_rport_dev_loss_tmo = bfad_im_set_rport_loss_tmo,
}; };
/** /*
* Scsi_Host_attrs SCSI host attributes * Scsi_Host_attrs SCSI host attributes
*/ */
static ssize_t static ssize_t
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* General Public License for more details. * General Public License for more details.
*/ */
/** /*
* bfad_im.c Linux driver IM module. * bfad_im.c Linux driver IM module.
*/ */
...@@ -164,10 +164,10 @@ bfa_cb_tskim_done(void *bfad, struct bfad_tskim_s *dtsk, ...@@ -164,10 +164,10 @@ bfa_cb_tskim_done(void *bfad, struct bfad_tskim_s *dtsk,
wake_up(wq); wake_up(wq);
} }
/** /*
* Scsi_Host_template SCSI host template * Scsi_Host_template SCSI host template
*/ */
/** /*
* Scsi_Host template entry, returns BFAD PCI info. * Scsi_Host template entry, returns BFAD PCI info.
*/ */
static const char * static const char *
...@@ -196,7 +196,7 @@ bfad_im_info(struct Scsi_Host *shost) ...@@ -196,7 +196,7 @@ bfad_im_info(struct Scsi_Host *shost)
return bfa_buf; return bfa_buf;
} }
/** /*
* Scsi_Host template entry, aborts the specified SCSI command. * Scsi_Host template entry, aborts the specified SCSI command.
* *
* Returns: SUCCESS or FAILED. * Returns: SUCCESS or FAILED.
...@@ -280,7 +280,7 @@ bfad_im_target_reset_send(struct bfad_s *bfad, struct scsi_cmnd *cmnd, ...@@ -280,7 +280,7 @@ bfad_im_target_reset_send(struct bfad_s *bfad, struct scsi_cmnd *cmnd,
return rc; return rc;
} }
/** /*
* Scsi_Host template entry, resets a LUN and abort its all commands. * Scsi_Host template entry, resets a LUN and abort its all commands.
* *
* Returns: SUCCESS or FAILED. * Returns: SUCCESS or FAILED.
...@@ -319,7 +319,7 @@ bfad_im_reset_lun_handler(struct scsi_cmnd *cmnd) ...@@ -319,7 +319,7 @@ bfad_im_reset_lun_handler(struct scsi_cmnd *cmnd)
goto out; goto out;
} }
/** /*
* Set host_scribble to NULL to avoid aborting a task command * Set host_scribble to NULL to avoid aborting a task command
* if happens. * if happens.
*/ */
...@@ -346,7 +346,7 @@ bfad_im_reset_lun_handler(struct scsi_cmnd *cmnd) ...@@ -346,7 +346,7 @@ bfad_im_reset_lun_handler(struct scsi_cmnd *cmnd)
return rc; return rc;
} }
/** /*
* Scsi_Host template entry, resets the bus and abort all commands. * Scsi_Host template entry, resets the bus and abort all commands.
*/ */
static int static int
...@@ -396,7 +396,7 @@ bfad_im_reset_bus_handler(struct scsi_cmnd *cmnd) ...@@ -396,7 +396,7 @@ bfad_im_reset_bus_handler(struct scsi_cmnd *cmnd)
return SUCCESS; return SUCCESS;
} }
/** /*
* Scsi_Host template entry slave_destroy. * Scsi_Host template entry slave_destroy.
*/ */
static void static void
...@@ -406,11 +406,11 @@ bfad_im_slave_destroy(struct scsi_device *sdev) ...@@ -406,11 +406,11 @@ bfad_im_slave_destroy(struct scsi_device *sdev)
return; return;
} }
/** /*
* BFA FCS itnim callbacks * BFA FCS itnim callbacks
*/ */
/** /*
* BFA FCS itnim alloc callback, after successful PRLI * BFA FCS itnim alloc callback, after successful PRLI
* Context: Interrupt * Context: Interrupt
*/ */
...@@ -433,7 +433,7 @@ bfa_fcb_itnim_alloc(struct bfad_s *bfad, struct bfa_fcs_itnim_s **itnim, ...@@ -433,7 +433,7 @@ bfa_fcb_itnim_alloc(struct bfad_s *bfad, struct bfa_fcs_itnim_s **itnim,
bfad->bfad_flags |= BFAD_RPORT_ONLINE; bfad->bfad_flags |= BFAD_RPORT_ONLINE;
} }
/** /*
* BFA FCS itnim free callback. * BFA FCS itnim free callback.
* Context: Interrupt. bfad_lock is held * Context: Interrupt. bfad_lock is held
*/ */
...@@ -471,7 +471,7 @@ bfa_fcb_itnim_free(struct bfad_s *bfad, struct bfad_itnim_s *itnim_drv) ...@@ -471,7 +471,7 @@ bfa_fcb_itnim_free(struct bfad_s *bfad, struct bfad_itnim_s *itnim_drv)
queue_work(im->drv_workq, &itnim_drv->itnim_work); queue_work(im->drv_workq, &itnim_drv->itnim_work);
} }
/** /*
* BFA FCS itnim online callback. * BFA FCS itnim online callback.
* Context: Interrupt. bfad_lock is held * Context: Interrupt. bfad_lock is held
*/ */
...@@ -492,7 +492,7 @@ bfa_fcb_itnim_online(struct bfad_itnim_s *itnim_drv) ...@@ -492,7 +492,7 @@ bfa_fcb_itnim_online(struct bfad_itnim_s *itnim_drv)
queue_work(im->drv_workq, &itnim_drv->itnim_work); queue_work(im->drv_workq, &itnim_drv->itnim_work);
} }
/** /*
* BFA FCS itnim offline callback. * BFA FCS itnim offline callback.
* Context: Interrupt. bfad_lock is held * Context: Interrupt. bfad_lock is held
*/ */
...@@ -519,7 +519,7 @@ bfa_fcb_itnim_offline(struct bfad_itnim_s *itnim_drv) ...@@ -519,7 +519,7 @@ bfa_fcb_itnim_offline(struct bfad_itnim_s *itnim_drv)
queue_work(im->drv_workq, &itnim_drv->itnim_work); queue_work(im->drv_workq, &itnim_drv->itnim_work);
} }
/** /*
* Allocate a Scsi_Host for a port. * Allocate a Scsi_Host for a port.
*/ */
int int
...@@ -751,7 +751,7 @@ bfad_os_thread_workq(struct bfad_s *bfad) ...@@ -751,7 +751,7 @@ bfad_os_thread_workq(struct bfad_s *bfad)
return BFA_STATUS_OK; return BFA_STATUS_OK;
} }
/** /*
* Scsi_Host template entry. * Scsi_Host template entry.
* *
* Description: * Description:
...@@ -896,7 +896,7 @@ bfad_os_get_itnim(struct bfad_im_port_s *im_port, int id) ...@@ -896,7 +896,7 @@ bfad_os_get_itnim(struct bfad_im_port_s *im_port, int id)
return NULL; return NULL;
} }
/** /*
* Scsi_Host template entry slave_alloc * Scsi_Host template entry slave_alloc
*/ */
static int static int
...@@ -973,7 +973,7 @@ bfad_os_fc_host_init(struct bfad_im_port_s *im_port) ...@@ -973,7 +973,7 @@ bfad_os_fc_host_init(struct bfad_im_port_s *im_port)
sprintf(fc_host_symbolic_name(host), "%s", symname); sprintf(fc_host_symbolic_name(host), "%s", symname);
fc_host_supported_speeds(host) = bfad_im_supported_speeds(&bfad->bfa); fc_host_supported_speeds(host) = bfad_im_supported_speeds(&bfad->bfa);
fc_host_maxframe_size(host) = fcport->cfg.maxfrsize; fc_host_maxframe_size(host) = fcport->cfg.maxfrsize;
} }
static void static void
...@@ -1016,7 +1016,7 @@ bfad_im_fc_rport_add(struct bfad_im_port_s *im_port, struct bfad_itnim_s *itnim) ...@@ -1016,7 +1016,7 @@ bfad_im_fc_rport_add(struct bfad_im_port_s *im_port, struct bfad_itnim_s *itnim)
return; return;
} }
/** /*
* Work queue handler using FC transport service * Work queue handler using FC transport service
* Context: kernel * Context: kernel
*/ */
...@@ -1116,7 +1116,7 @@ bfad_im_itnim_work_handler(struct work_struct *work) ...@@ -1116,7 +1116,7 @@ bfad_im_itnim_work_handler(struct work_struct *work)
spin_unlock_irqrestore(&bfad->bfad_lock, flags); spin_unlock_irqrestore(&bfad->bfad_lock, flags);
} }
/** /*
* Scsi_Host template entry, queue a SCSI command to the BFAD. * Scsi_Host template entry, queue a SCSI command to the BFAD.
*/ */
static int static int
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册