/Linux-v4.19/drivers/infiniband/hw/cxgb4/ |
D | mem.c | 270 u32 *stag, u8 stag_state, u32 pdid, in write_tpt_entry() argument 303 stag_state, type, pdid, stag_idx); in write_tpt_entry() 312 FW_RI_TPTE_STAGTYPE_V(type) | FW_RI_TPTE_PDID_V(pdid)); in write_tpt_entry() 361 static int allocate_window(struct c4iw_rdev *rdev, u32 *stag, u32 pdid, in allocate_window() argument 365 return write_tpt_entry(rdev, 0, stag, 0, pdid, FW_RI_STAG_MW, 0, 0, 0, in allocate_window() 377 static int allocate_stag(struct c4iw_rdev *rdev, u32 *stag, u32 pdid, in allocate_stag() argument 382 return write_tpt_entry(rdev, 0, stag, 0, pdid, FW_RI_STAG_NSMR, 0, 0, 0, in allocate_stag() 407 ret = write_tpt_entry(&rhp->rdev, 0, &stag, 1, mhp->attr.pdid, in register_mem() 469 mhp->attr.pdid = php->pdid; in c4iw_get_dma_mr() 478 ret = write_tpt_entry(&rhp->rdev, 0, &stag, 1, php->pdid, in c4iw_get_dma_mr() [all …]
|
D | provider.c | 219 pr_debug("ibpd %p pdid 0x%x\n", pd, php->pdid); in c4iw_deallocate_pd() 220 c4iw_put_resource(&rhp->rdev.resource.pdid_table, php->pdid); in c4iw_deallocate_pd() 233 u32 pdid; in c4iw_allocate_pd() local 238 pdid = c4iw_get_resource(&rhp->rdev.resource.pdid_table); in c4iw_allocate_pd() 239 if (!pdid) in c4iw_allocate_pd() 243 c4iw_put_resource(&rhp->rdev.resource.pdid_table, pdid); in c4iw_allocate_pd() 246 php->pdid = pdid; in c4iw_allocate_pd() 249 struct c4iw_alloc_pd_resp uresp = {.pdid = php->pdid}; in c4iw_allocate_pd() 261 pr_debug("pdid 0x%0x ptr 0x%p\n", pdid, php); in c4iw_allocate_pd()
|
D | iw_cxgb4.h | 427 u32 pdid; member 441 u32 pdid; member 573 u32 pdid; member
|
D | t4fw_ri_api.h | 312 __be32 pdid; member 784 __be32 pdid; member
|
D | qp.c | 793 FW_RI_TPTE_PDID_V(mhp->attr.pdid)); in build_tpte_memreg() 1820 wqe->u.init.pdid = cpu_to_be32(qhp->attr.pd); in rdma_init() 2207 qhp->attr.pd = php->pdid; in c4iw_create_qp() 2631 res->u.srq.pdid = cpu_to_be32(srq->pdid); in alloc_srq_queue() 2644 __func__, srq->idx, wq->qid, srq->pdid, wq->queue, in alloc_srq_queue() 2741 srq->pdid = php->pdid; in c4iw_create_srq()
|
/Linux-v4.19/drivers/infiniband/hw/cxgb3/ |
D | cxio_hal.h | 172 int cxio_register_phys_mem(struct cxio_rdev *rdev, u32 * stag, u32 pdid, 175 int cxio_reregister_phys_mem(struct cxio_rdev *rdev, u32 * stag, u32 pdid, 180 int cxio_allocate_window(struct cxio_rdev *rdev, u32 * stag, u32 pdid); 181 int cxio_allocate_stag(struct cxio_rdev *rdev, u32 *stag, u32 pdid, u32 pbl_size, u32 pbl_addr); 187 void cxio_hal_put_pdid(struct cxio_hal_resource *rscp, u32 pdid);
|
D | iwch_provider.c | 380 pr_debug("%s ibpd %p pdid 0x%x\n", __func__, pd, php->pdid); in iwch_deallocate_pd() 381 cxio_hal_put_pdid(rhp->rdev.rscp, php->pdid); in iwch_deallocate_pd() 391 u32 pdid; in iwch_allocate_pd() local 396 pdid = cxio_hal_get_pdid(rhp->rdev.rscp); in iwch_allocate_pd() 397 if (!pdid) in iwch_allocate_pd() 401 cxio_hal_put_pdid(rhp->rdev.rscp, pdid); in iwch_allocate_pd() 404 php->pdid = pdid; in iwch_allocate_pd() 407 struct iwch_alloc_pd_resp resp = {.pdid = php->pdid}; in iwch_allocate_pd() 414 pr_debug("%s pdid 0x%0x ptr 0x%p\n", __func__, pdid, php); in iwch_allocate_pd() 498 mhp->attr.pdid = php->pdid; in iwch_get_dma_mr() [all …]
|
D | cxio_hal.c | 693 u32 *stag, u8 stag_state, u32 pdid, in __cxio_tpt_op() argument 716 __func__, stag_state, type, pdid, stag_idx); in __cxio_tpt_op() 727 V_TPT_STAG_TYPE(type) | V_TPT_PDID(pdid)); in __cxio_tpt_op() 785 int cxio_register_phys_mem(struct cxio_rdev *rdev_p, u32 *stag, u32 pdid, in cxio_register_phys_mem() argument 790 return __cxio_tpt_op(rdev_p, 0, stag, 1, pdid, TPT_NON_SHARED_MR, perm, in cxio_register_phys_mem() 794 int cxio_reregister_phys_mem(struct cxio_rdev *rdev_p, u32 *stag, u32 pdid, in cxio_reregister_phys_mem() argument 798 return __cxio_tpt_op(rdev_p, 0, stag, 1, pdid, TPT_NON_SHARED_MR, perm, in cxio_reregister_phys_mem() 809 int cxio_allocate_window(struct cxio_rdev *rdev_p, u32 * stag, u32 pdid) in cxio_allocate_window() argument 812 return __cxio_tpt_op(rdev_p, 0, stag, 0, pdid, TPT_MW, 0, 0, 0ULL, 0, 0, in cxio_allocate_window() 822 int cxio_allocate_stag(struct cxio_rdev *rdev_p, u32 *stag, u32 pdid, u32 pbl_size, u32 pbl_addr) in cxio_allocate_stag() argument [all …]
|
D | iwch_provider.h | 46 u32 pdid; member 66 u32 pdid; member
|
D | iwch_mem.c | 62 &stag, mhp->attr.pdid, in iwch_register_mem()
|
D | cxio_resource.c | 237 void cxio_hal_put_pdid(struct cxio_hal_resource *rscp, u32 pdid) in cxio_hal_put_pdid() argument 239 cxio_hal_put_resource(&rscp->pdid_fifo, &rscp->pdid_fifo_lock, pdid); in cxio_hal_put_pdid()
|
D | cxio_wr.h | 338 u32 pdid; member 361 __be32 pdid; member
|
/Linux-v4.19/drivers/staging/rtl8712/ |
D | usb_intf.c | 46 const struct usb_device_id *pdid); 341 static void disable_ht_for_spec_devid(const struct usb_device_id *pdid, in disable_ht_for_spec_devid() argument 354 if ((pdid->idVendor == vid) && (pdid->idProduct == pid) && in disable_ht_for_spec_devid() 374 const struct usb_device_id *pdid) in r871xu_drv_init() argument 394 disable_ht_for_spec_devid(pdid, padapter); in r871xu_drv_init()
|
/Linux-v4.19/drivers/infiniband/hw/ocrdma/ |
D | ocrdma_ah.c | 75 int pdid, bool *isvlan, u16 vlan_tag) in set_av_attr() argument 131 ipv4.id = cpu_to_be16(pdid); in set_av_attr() 148 grh.pdid_hoplimit = cpu_to_be32((pdid << 16) | in set_av_attr()
|
D | ocrdma_hw.h | 96 static inline u64 ocrdma_get_db_addr(struct ocrdma_dev *dev, u32 pdid) in ocrdma_get_db_addr() argument 98 return dev->nic_info.unmapped_db + (pdid * dev->nic_info.db_page_size); in ocrdma_get_db_addr()
|
D | ocrdma_hw.c | 1914 u32 pdid, int addr_check) in ocrdma_mbx_alloc_lkey() argument 1923 cmd->pdid = pdid; in ocrdma_mbx_alloc_lkey() 1964 u32 pdid, u32 pbl_cnt, u32 pbe_size, u32 last) in ocrdma_mbx_reg_mr() argument 1975 pdid | (hwmr->num_pbls << OCRDMA_REG_NSMR_NUM_PBL_SHIFT); in ocrdma_mbx_reg_mr() 2043 struct ocrdma_hw_mr *hwmr, u32 pdid, int acc) in ocrdma_reg_mr() argument 2055 status = ocrdma_mbx_reg_mr(dev, hwmr, pdid, in ocrdma_reg_mr()
|
D | ocrdma_sli.h | 1462 u32 pdid; member 1611 u32 pdid; member
|
D | ocrdma_verbs.c | 744 u32 pdid, int acc, u32 num_pbls, u32 addr_check) in ocrdma_alloc_lkey() argument 757 status = ocrdma_mbx_alloc_lkey(dev, &mr->hwmr, pdid, addr_check); in ocrdma_alloc_lkey() 1129 int pdid = 0; in ocrdma_destroy_cq() local 1143 pdid = cq->ucontext->cntxt_pd->id; in ocrdma_destroy_cq() 1147 ocrdma_get_db_addr(dev, pdid), in ocrdma_destroy_cq()
|
/Linux-v4.19/drivers/net/ethernet/chelsio/cxgb4/ |
D | srq.h | 47 u16 pdid; member
|
D | srq.c | 130 e->pdid = SRQT_PDID_G(be64_to_cpu(rpl->rsvd_pdid)); in do_srq_table_rpl()
|
/Linux-v4.19/include/uapi/rdma/ |
D | cxgb3-abi.h | 79 __u32 pdid; member
|
D | bnxt_re-abi.h | 62 __u32 pdid; member
|
D | cxgb4-abi.h | 112 __u32 pdid; member
|
/Linux-v4.19/drivers/staging/rtl8188eu/os_dep/ |
D | usb_intf.c | 320 struct usb_interface *pusb_intf, const struct usb_device_id *pdid) in rtw_usb_if1_init() argument 447 static int rtw_drv_init(struct usb_interface *pusb_intf, const struct usb_device_id *pdid) in rtw_drv_init() argument 460 if1 = rtw_usb_if1_init(dvobj, pusb_intf, pdid); in rtw_drv_init()
|
/Linux-v4.19/drivers/staging/rtl8723bs/os_dep/ |
D | sdio_intf.c | 325 …tic struct adapter *rtw_sdio_if1_init(struct dvobj_priv *dvobj, const struct sdio_device_id *pdid) in rtw_sdio_if1_init() argument
|