Home
last modified time | relevance | path

Searched refs:mfs (Results 1 – 21 of 21) sorted by relevance

/linux/sound/soc/codecs/
A Des7241.c51 unsigned int mfs) in es7241_set_slave_mode() argument
55 if (!mfs) in es7241_set_slave_mode()
59 if (mode->slv_mfs[j] == mfs) in es7241_set_slave_mode()
72 unsigned int mfs) in es7241_set_master_mode() argument
78 if (mfs && mfs != mode->mst_mfs) in es7241_set_master_mode()
92 unsigned int mfs = priv->mclk / rate; in es7241_hw_params() local
102 return es7241_set_slave_mode(priv, mode, mfs); in es7241_hw_params()
104 return es7241_set_master_mode(priv, mode, mfs); in es7241_hw_params()
A Des7134.c41 unsigned int mfs = priv->mclk / rate; in es7134_check_mclk() local
51 if (mode->mclk_fs[j] == mfs) in es7134_check_mclk()
56 mfs, rate); in es7134_check_mclk()
/linux/arch/microblaze/kernel/
A Dentry.S96 mfs r11, rmsr
102 mfs r11, rmsr
108 mfs r11, rmsr
114 mfs r11, rmsr
120 mfs r11, rmsr
126 mfs r11, rmsr
132 mfs r11, rmsr
139 mfs r11, rmsr
146 mfs r11, rmsr
152 mfs r11, rmsr
[all …]
A Dhw_exception_handler.S329 mfs r5, rmsr;
332 mfs r4, resr
334 mfs r3, rear;
375 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
440 mfs r6, resr;
486 mfs r11, rpid
557 mfs r5, rtlbx /* DEBUG: TBD */
600 mfs r11, rpid
670 mfs r11, rpid
A Dmisc.S56 mfs r12, rtlbx /* Retrieve index */
A Dhead.S75 mfs r1, rmsr
/linux/drivers/scsi/libfc/
A Dfc_lport.c662 old_mfs = lport->mfs; in fc_set_mfs()
665 mfs &= ~3; in fc_set_mfs()
666 if (mfs > FC_MAX_FRAME) in fc_set_mfs()
667 mfs = FC_MAX_FRAME; in fc_set_mfs()
669 lport->mfs = mfs; in fc_set_mfs()
673 if (!rc && mfs < old_mfs) in fc_set_mfs()
1738 u16 mfs; in fc_lport_flogi_resp() local
1779 if (mfs < FC_SP_MIN_MAX_PAYLOAD || mfs > FC_SP_MAX_MAX_PAYLOAD) { in fc_lport_flogi_resp()
1781 "lport->mfs:%u\n", mfs, lport->mfs); in fc_lport_flogi_resp()
1786 if (mfs <= lport->mfs) { in fc_lport_flogi_resp()
[all …]
A Dfc_rport.c222 unsigned int mfs; in fc_plogi_get_maxframe() local
228 mfs = ntohs(flp->fl_csp.sp_bb_data) & FC_SP_BB_DATA_MASK; in fc_plogi_get_maxframe()
229 if (mfs >= FC_SP_MIN_MAX_PAYLOAD && mfs < maxval) in fc_plogi_get_maxframe()
230 maxval = mfs; in fc_plogi_get_maxframe()
231 mfs = ntohs(flp->fl_cssp[3 - 1].cp_rdfs); in fc_plogi_get_maxframe()
232 if (mfs >= FC_SP_MIN_MAX_PAYLOAD && mfs < maxval) in fc_plogi_get_maxframe()
233 maxval = mfs; in fc_plogi_get_maxframe()
728 rdata->maxframe_size = fc_plogi_get_maxframe(flogi, lport->mfs); in fc_rport_login_complete()
1028 rdata->maxframe_size = fc_plogi_get_maxframe(plp, lport->mfs); in fc_rport_plogi_resp()
1937 rdata->maxframe_size = fc_plogi_get_maxframe(pl, lport->mfs); in fc_rport_recv_plogi_req()
A Dfc_encode.h762 csp->sp_bb_data = htons((u16) lport->mfs); in fc_plogi_fill()
770 cp->cp_rdfs = htons((u16) lport->mfs); in fc_plogi_fill()
793 sp->sp_bb_data = htons((u16) lport->mfs); in fc_flogi_fill()
818 sp->sp_bb_data = htons((u16) lport->mfs); in fc_fdisc_fill()
/linux/drivers/scsi/fcoe/
A Dfcoe.c701 u32 mfs; in fcoe_netdev_config() local
723 mfs = netdev->mtu; in fcoe_netdev_config()
725 mfs = FCOE_MTU; in fcoe_netdev_config()
726 FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs); in fcoe_netdev_config()
728 mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof)); in fcoe_netdev_config()
729 if (fc_set_mfs(lport, mfs)) in fcoe_netdev_config()
1851 u32 mfs; in fcoe_device_notification() local
1877 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) + in fcoe_device_notification()
1879 if (mfs >= FC_MIN_MAX_FRAME) in fcoe_device_notification()
1880 fc_set_mfs(lport, mfs); in fcoe_device_notification()
A Dfcoe_ctlr.c367 return fip->lp->mfs + sizeof(struct fc_frame_header) + in fcoe_ctlr_fcoe_size()
/linux/drivers/net/ethernet/chelsio/inline_crypto/chtls/
A Dchtls_io.c47 return DIV_ROUND_UP(size, csk->tlshws.mfs); in nos_ivs()
367 dlen = (dlen < hws->mfs) ? dlen : hws->mfs; in tls_tx_data_wr()
411 req_wr->mfs = htons(hws->mfs); in tls_tx_data_wr()
449 int fragsize = hws->mfs; in chtls_expansion_size()
490 pdus = DIV_ROUND_UP(tls_len, hws->mfs); in make_tlstx_data_wr()
498 ((hws->expansion / hws->pdus) + hws->mfs); in make_tlstx_data_wr()
A Dchtls.h265 u32 mfs; member
395 __be16 mfs; member
A Dchtls_hw.c404 kwr->wr.mfs = htons(TLS_MFS); in chtls_setkey()
A Dchtls_cm.c80 csk->tlshws.mfs = TLS_MFS; in chtls_sock_create()
/linux/include/scsi/
A Dlibfc.h735 u32 mfs; member
901 int fc_set_mfs(struct fc_lport *, u32 mfs);
/linux/drivers/scsi/csiostor/
A Dcsio_lnode.c297 __be16 mfs; in csio_ln_fdmi_rhba_cbfn() local
370 mfs = ln->ln_sparm.csp.sp_bb_data; in csio_ln_fdmi_rhba_cbfn()
372 &mfs, sizeof(mfs)); in csio_ln_fdmi_rhba_cbfn()
/linux/drivers/scsi/fnic/
A Dfnic_main.c869 fc_host_maxframe_size(lp->host) = lp->mfs; in fnic_probe()
/linux/drivers/scsi/bnx2fc/
A Dbnx2fc_hwi.c267 ofld_req3.rx_max_fc_pay_len = lport->mfs; in bnx2fc_send_session_ofld_req()
/linux/drivers/net/ethernet/chelsio/cxgb4/
A Dt4fw_api.h4074 __be16 mfs; member
/linux/drivers/scsi/qedf/
A Dqedf_main.c1763 fc_host_maxframe_size(lport->host) = lport->mfs; in qedf_lport_setup()

Completed in 79 milliseconds