Home
last modified time | relevance | path

Searched refs:cid (Results 1 – 25 of 61) sorted by relevance

123

/f-stack/freebsd/mips/broadcom/
H A Dbhnd_nexus.c119 struct bhnd_chipid *cid; in bhnd_nexus_is_hw_disabled() local
122 cid = &bp->cid; in bhnd_nexus_is_hw_disabled()
126 if (cid->chip_id == BHND_CHIPID_BCM4706 && in bhnd_nexus_is_hw_disabled()
127 cid->chip_pkg == BHND_PKGID_BCM4706L && in bhnd_nexus_is_hw_disabled()
152 return (&bcm_get_platform()->cid); in bhnd_nexus_get_chipid()
240 if (!(bp->cid.chip_caps & BHND_CAP_BP64)) in bhnd_nexus_get_dma_translation()
H A Dbcm_machdep.c114 struct bhnd_erom_io *eio, struct bhnd_chipid *cid);
272 struct bhnd_chipid *cid) in bcm_erom_probe_and_attach() argument
315 *cid = pcid; in bcm_erom_probe_and_attach()
336 error = bhnd_erom_init_static(*erom_cls, erom, esize, cid, eio); in bcm_erom_probe_and_attach()
384 &bp->erom.obj, sizeof(bp->erom), &bp->erom_io.eio, &bp->cid); in bcm_init_platform_data()
433 error = bhnd_pmu_query_init(&bp->pmu, NULL, bp->cid, in bcm_init_platform_data()
554 if (bp->cid.chip_id == BHND_CHIPID_BCM4785) { in platform_reset()
H A Dsiba_nexus.c64 if (bcm_get_platform()->cid.chip_type != BHND_CHIPTYPE_SIBA) in siba_nexus_probe()
71 bhnd_set_default_bus_desc(dev, &bcm_get_platform()->cid); in siba_nexus_probe()
H A Dbcm_pmu.c242 mreg = bhnd_pwrctl_cpu_clkreg_m(&bp->cid, pll_type, &fixed_hz); in bcm_get_cpufreq()
249 return (bhnd_pwrctl_cpu_clock_rate(&bp->cid, pll_type, n, m)); in bcm_get_cpufreq()
270 mreg = bhnd_pwrctl_si_clkreg_m(&bp->cid, pll_type, &fixed_hz); in bcm_get_sifreq()
277 return (bhnd_pwrctl_si_clock_rate(&bp->cid, pll_type, n, m)); in bcm_get_sifreq()
H A Dbcma_nexus.c70 switch (bcm_get_platform()->cid.chip_type) { in bcma_nexus_probe()
83 bhnd_set_default_bus_desc(dev, &bcm_get_platform()->cid); in bcma_nexus_probe()
H A Dbcm_mips74k.c110 if (!BHND_CHIPTYPE_IS_BCMA_COMPATIBLE(bp->cid.chip_type)) { in bcm_mips74k_timer_init()
128 const struct bhnd_chipid *cid; in bcm_mips74k_probe() local
138 cid = bhnd_get_chipid(dev); in bcm_mips74k_probe()
139 if (!BHND_CHIPTYPE_IS_BCMA_COMPATIBLE(cid->chip_type)) in bcm_mips74k_probe()
/f-stack/freebsd/netgraph/bluetooth/l2cap/
H A Dng_l2cap_misc.c632 u_int16_t cid ; in ng_l2cap_get_cid() local
642 endcid = l2cap->cid; in ng_l2cap_get_cid()
647 cid = (endcid+1) & mask; in ng_l2cap_get_cid()
650 cid = NG_L2CAP_FIRST_CID; in ng_l2cap_get_cid()
652 while (cid != endcid) { in ng_l2cap_get_cid()
655 l2cap->cid = cid; in ng_l2cap_get_cid()
657 l2cap->lecid = cid; in ng_l2cap_get_cid()
659 return (cid); in ng_l2cap_get_cid()
662 cid ++; in ng_l2cap_get_cid()
663 cid &= mask; in ng_l2cap_get_cid()
[all …]
/f-stack/dpdk/examples/vhost_crypto/
H A Dmain.c41 uint8_t cid; member
51 uint8_t cid; member
186 lo->cid = flds[FLD_CID]; in parse_config()
398 info->cid, info->qid, ops[j], in vhost_crypto_worker()
409 info->cid, info->qid, in vhost_crypto_worker()
492 info->cid = lo->cid; in main()
496 rte_cryptodev_info_get(info->cid, &dev_info); in main()
521 ret = rte_cryptodev_configure(info->cid, &config); in main()
524 info->cid); in main()
537 info->cid), 64, 0, NULL, NULL, NULL, NULL, in main()
[all …]
/f-stack/dpdk/drivers/crypto/octeontx/
H A Dotx_cryptodev_mbox.c32 otx_cpt_chipid_vfid_t cid; in otx_cpt_handle_mbox_intr() local
34 cid.u64 = mbx.data; in otx_cpt_handle_mbox_intr()
36 cptvf->vfid = cid.s.vfid; in otx_cpt_handle_mbox_intr()
39 cptvf->vfid, cid.s.chip_id); in otx_cpt_handle_mbox_intr()
/f-stack/freebsd/arm/nvidia/
H A Dtegra_sdhci.c239 pcell_t cid; in tegra_sdhci_probe() local
254 if ((OF_getencprop(node, "quirks", &cid, sizeof(cid))) > 0) in tegra_sdhci_probe()
255 sc->quirks = cid; in tegra_sdhci_probe()
256 if ((OF_getencprop(node, "max-frequency", &cid, sizeof(cid))) > 0) in tegra_sdhci_probe()
257 sc->max_clk = cid; in tegra_sdhci_probe()
/f-stack/freebsd/netgraph/
H A Dng_pptpgre.c105 u_int16_t cid; /* call id */ member
369 uint16_t cid, hash; in ng_pptpgre_newhook() local
376 for (cid = i = 0; i < 4; i++) { in ng_pptpgre_newhook()
380 cid = (cid << 4) | j; in ng_pptpgre_newhook()
393 hpriv->conf.cid = cid; in ng_pptpgre_newhook()
403 hash = SESSHASH(cid); in ng_pptpgre_newhook()
441 hash = SESSHASH(newConf->cid); in ng_pptpgre_rcvmsg()
625 be16enc(&gre->cid, hpriv->conf.peerCid); in ng_pptpgre_xmit()
1218 ng_pptpgre_find_session(priv_p privp, u_int16_t cid) in ng_pptpgre_find_session() argument
1220 uint16_t hash = SESSHASH(cid); in ng_pptpgre_find_session()
[all …]
H A Dng_pptpgre.h65 u_int16_t cid; /* my call id */ member
/f-stack/dpdk/drivers/net/qede/base/
H A Decore_sp_commands.c31 u32 opaque_cid = p_data->opaque_fid << 16 | p_data->cid; in ecore_sp_init_request()
45 p_ent->elem.hdr.cid = OSAL_CPU_TO_LE32(opaque_cid); in ecore_sp_init_request()
318 init_data.cid = ecore_spq_get_cid(p_hwfn); in ecore_sp_pf_start()
429 init_data.cid = ecore_spq_get_cid(p_hwfn); in ecore_sp_pf_update_dcbx()
453 init_data.cid = ecore_spq_get_cid(p_hwfn); in ecore_sp_pf_update_ufp()
499 init_data.cid = ecore_spq_get_cid(p_hwfn); in ecore_sp_rl_update()
579 init_data.cid = ecore_spq_get_cid(p_hwfn); in ecore_sp_pf_update_tunn_cfg()
610 init_data.cid = ecore_spq_get_cid(p_hwfn); in ecore_sp_pf_stop()
631 init_data.cid = ecore_spq_get_cid(p_hwfn); in ecore_sp_heartbeat_ramrod()
656 init_data.cid = ecore_spq_get_cid(p_hwfn); in ecore_sp_pf_update_stag()
H A Decore_l2.c198 u16 opaque_fid, u32 cid, in _ecore_eth_queue_to_cid() argument
211 p_cid->cid = cid; in _ecore_eth_queue_to_cid()
276 p_cid->opaque_fid, p_cid->cid, in _ecore_eth_queue_to_cid()
299 u32 cid = 0; in ecore_eth_queue_to_cid() local
311 cid = p_vf_params->vf_qid; in ecore_eth_queue_to_cid()
321 &cid, vfid) != ECORE_SUCCESS) { in ecore_eth_queue_to_cid()
926 init_data.cid = p_cid->cid; in ecore_eth_rxq_start_ramrod()
1066 init_data.cid = p_cid->cid; in ecore_sp_eth_rx_queues_update()
1102 init_data.cid = p_cid->cid; in ecore_eth_pf_rx_queue_stop()
1161 init_data.cid = p_cid->cid; in ecore_eth_txq_start_ramrod()
[all …]
H A Decore_spq.c134 OSAL_LE32_TO_CPU(p_ent->elem.hdr.cid), in ecore_spq_block()
175 p_ent->elem.hdr.cid, p_ent->elem.hdr.cmd_id, in ecore_spq_fill_entry()
211 cxt_info.iid = p_spq->cid; in ecore_spq_hw_initialize()
217 p_spq->cid); in ecore_spq_hw_initialize()
283 p_spq->db_addr_offset, p_spq->cid, p_db_data->params, in ecore_spq_hw_post()
552 ecore_cxt_acquire_cid(p_hwfn, PROTOCOLID_CORE, &p_spq->cid); in ecore_spq_setup()
559 p_spq->db_addr_offset = DB_ADDR(p_spq->cid, DQ_DEMS_LEGACY); in ecore_spq_setup()
782 return p_hwfn->p_spq->cid; in ecore_spq_get_cid()
H A Decore_cxt.h144 void ecore_cxt_release_cid(struct ecore_hwfn *p_hwfn, u32 cid);
154 u32 cid, u8 vfid);
H A Decore_sp_commands.h22 u32 cid; member
/f-stack/freebsd/crypto/blake2/
H A Dblake2_cryptodev.c55 int32_t cid; member
127 sc->cid = crypto_get_driverid(dev, sizeof(struct blake2_session), in blake2_attach()
130 if (sc->cid < 0) { in blake2_attach()
165 crypto_unregister_all(sc->cid); in blake2_detach()
/f-stack/freebsd/netgraph/bluetooth/socket/
H A Dng_btsocket_l2cap.c483 pcb->cid = op->lcid; in ng_btsocket_l2cap_process_l2ca_con_req_rsp()
651 pcb1->cid = ip->lcid; in ng_btsocket_l2cap_process_l2ca_con_ind()
1131 pcb->psm, pcb->cid, pcb->state); in ng_btsocket_l2cap_process_l2ca_discon_ind()
1313 ip->lcid = pcb->cid; in ng_btsocket_l2cap_send_l2ca_cfg_req()
1349 ip->lcid = pcb->cid; in ng_btsocket_l2cap_send_l2ca_cfg_rsp()
1384 ip->lcid = pcb->cid; in ng_btsocket_l2cap_send_l2ca_discon_req()
1854 pcb->cid = 0; in ng_btsocket_l2cap_rtclean()
2227 pcb->cid = 0; in ng_btsocket_l2cap_connect()
2673 hdr->lcid = pcb->cid; in ng_btsocket_l2cap_send2()
2785 if (p->cid == cid && in ng_btsocket_l2cap_pcb_by_cid()
[all …]
/f-stack/freebsd/crypto/armv8/
H A Darmv8_crypto.c69 int32_t cid; member
149 sc->cid = crypto_get_driverid(dev, sizeof(struct armv8_crypto_session), in armv8_crypto_attach()
151 if (sc->cid < 0) { in armv8_crypto_attach()
182 crypto_unregister_all(sc->cid); in armv8_crypto_detach()
/f-stack/dpdk/drivers/common/iavf/
H A DREADME9 cid-avf.2020.10.14.tar.gz released by the team which develops
/f-stack/tools/compat/include/netgraph/
H A Dng_pptpgre.h65 u_int16_t cid; /* my call id */ member
/f-stack/freebsd/crypto/ccp/
H A Dccp.c181 sc->cid = crypto_get_driverid(dev, sizeof(struct ccp_session), in ccp_attach()
183 if (sc->cid < 0) { in ccp_attach()
216 crypto_unregister_all(sc->cid); in ccp_detach()
722 db_printf(" cid: %d\n", (int)sc->cid); in db_show_ccp_sc()
/f-stack/dpdk/drivers/net/bnx2x/
H A Decore_sp.h482 uint32_t cid; member
891 uint32_t cid; member
1837 uint8_t cl_id, uint32_t cid, uint8_t func_id, void *rdata,
1844 uint8_t cl_id, uint32_t cid, uint8_t func_id,
1852 uint8_t cl_id, uint32_t cid, uint8_t func_id,
1861 uint8_t cl_id, uint32_t cid, uint8_t func_id,
1946 uint8_t cl_id, uint32_t cid, uint8_t func_id, uint8_t engine_id,
/f-stack/dpdk/drivers/net/e1000/base/
H A DREADME6 cid-gigabit.2020.06.05.tar.gz released by ND. The sub-directory of base/

123