Home
last modified time | relevance | path

Searched refs:pdid (Results 1 – 17 of 17) sorted by relevance

/linux-2.6.39/drivers/infiniband/hw/cxgb4/
Dmem.c117 u32 *stag, u8 stag_state, u32 pdid, in write_tpt_entry() argument
141 __func__, stag_state, type, pdid, stag_idx); in write_tpt_entry()
150 V_FW_RI_TPTE_STAGTYPE(type) | V_FW_RI_TPTE_PDID(pdid)); in write_tpt_entry()
194 static int allocate_window(struct c4iw_rdev *rdev, u32 * stag, u32 pdid) in allocate_window() argument
197 return write_tpt_entry(rdev, 0, stag, 0, pdid, FW_RI_STAG_MW, 0, 0, 0, in allocate_window()
207 static int allocate_stag(struct c4iw_rdev *rdev, u32 *stag, u32 pdid, in allocate_stag() argument
211 return write_tpt_entry(rdev, 0, stag, 0, pdid, FW_RI_STAG_NSMR, 0, 0, 0, in allocate_stag()
233 ret = write_tpt_entry(&rhp->rdev, 0, &stag, 1, mhp->attr.pdid, in register_mem()
258 ret = write_tpt_entry(&rhp->rdev, 0, &stag, 1, mhp->attr.pdid, in reregister_mem()
406 mhp->attr.pdid = php->pdid; in c4iw_reregister_phys_mem()
[all …]
Dprovider.c197 PDBG("%s ibpd %p pdid 0x%x\n", __func__, pd, php->pdid); in c4iw_deallocate_pd()
198 c4iw_put_resource(&rhp->rdev.resource.pdid_fifo, php->pdid, in c4iw_deallocate_pd()
209 u32 pdid; in c4iw_allocate_pd() local
214 pdid = c4iw_get_resource(&rhp->rdev.resource.pdid_fifo, in c4iw_allocate_pd()
216 if (!pdid) in c4iw_allocate_pd()
220 c4iw_put_resource(&rhp->rdev.resource.pdid_fifo, pdid, in c4iw_allocate_pd()
224 php->pdid = pdid; in c4iw_allocate_pd()
227 if (ib_copy_to_udata(udata, &php->pdid, sizeof(u32))) { in c4iw_allocate_pd()
232 PDBG("%s pdid 0x%0x ptr 0x%p\n", __func__, pdid, php); in c4iw_allocate_pd()
Diw_cxgb4.h235 u32 pdid; member
249 u32 pdid; member
Dt4fw_ri_api.h710 __be32 pdid; member
Dqp.c1081 wqe->u.init.pdid = cpu_to_be32(qhp->attr.pd); in rdma_init()
1424 qhp->attr.pd = php->pdid; in c4iw_create_qp()
/linux-2.6.39/drivers/infiniband/hw/cxgb3/
Dcxio_hal.h172 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);
Diwch_provider.c414 PDBG("%s ibpd %p pdid 0x%x\n", __func__, pd, php->pdid); in iwch_deallocate_pd()
415 cxio_hal_put_pdid(rhp->rdev.rscp, php->pdid); in iwch_deallocate_pd()
425 u32 pdid; in iwch_allocate_pd() local
430 pdid = cxio_hal_get_pdid(rhp->rdev.rscp); in iwch_allocate_pd()
431 if (!pdid) in iwch_allocate_pd()
435 cxio_hal_put_pdid(rhp->rdev.rscp, pdid); in iwch_allocate_pd()
438 php->pdid = pdid; in iwch_allocate_pd()
441 if (ib_copy_to_udata(udata, &php->pdid, sizeof (__u32))) { in iwch_allocate_pd()
446 PDBG("%s pdid 0x%0x ptr 0x%p\n", __func__, pdid, php); in iwch_allocate_pd()
530 mhp->attr.pdid = php->pdid; in iwch_register_phys_mem()
[all …]
Dcxio_hal.c698 u32 *stag, u8 stag_state, u32 pdid, in __cxio_tpt_op() argument
721 __func__, stag_state, type, pdid, stag_idx); in __cxio_tpt_op()
732 V_TPT_STAG_TYPE(type) | V_TPT_PDID(pdid)); in __cxio_tpt_op()
792 int cxio_register_phys_mem(struct cxio_rdev *rdev_p, u32 *stag, u32 pdid, in cxio_register_phys_mem() argument
797 return __cxio_tpt_op(rdev_p, 0, stag, 1, pdid, TPT_NON_SHARED_MR, perm, in cxio_register_phys_mem()
801 int cxio_reregister_phys_mem(struct cxio_rdev *rdev_p, u32 *stag, u32 pdid, in cxio_reregister_phys_mem() argument
805 return __cxio_tpt_op(rdev_p, 0, stag, 1, pdid, TPT_NON_SHARED_MR, perm, in cxio_reregister_phys_mem()
816 int cxio_allocate_window(struct cxio_rdev *rdev_p, u32 * stag, u32 pdid) in cxio_allocate_window() argument
819 return __cxio_tpt_op(rdev_p, 0, stag, 0, pdid, TPT_MW, 0, 0, 0ULL, 0, 0, in cxio_allocate_window()
829 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 …]
Diwch_mem.c62 &stag, mhp->attr.pdid, in iwch_register_mem()
92 &stag, mhp->attr.pdid, in iwch_reregister_mem()
Diwch_provider.h46 u32 pdid; member
66 u32 pdid; member
Dcxio_resource.c237 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()
Dcxio_wr.h338 u32 pdid; member
361 __be32 pdid; member
Diwch_qp.c892 init_attr.pdid = qhp->attr.pd; in rdma_init()
/linux-2.6.39/drivers/staging/rtl8712/
Dusb_intf.c45 const struct usb_device_id *pdid);
328 static void disable_ht_for_spec_devid(const struct usb_device_id *pdid, in disable_ht_for_spec_devid() argument
342 if ((pdid->idVendor == vid) && (pdid->idProduct == pid) && in disable_ht_for_spec_devid()
363 const struct usb_device_id *pdid) in r871xu_drv_init() argument
382 disable_ht_for_spec_devid(pdid, padapter); in r871xu_drv_init()
/linux-2.6.39/drivers/scsi/be2iscsi/
Dbe_cmds.h418 u8 pdid[9]; member
/linux-2.6.39/drivers/net/benet/
Dbe_cmds.h395 u8 pdid[9]; member
/linux-2.6.39/drivers/net/irda/
Ddonauboe.c1533 toshoboe_open (struct pci_dev *pci_dev, const struct pci_device_id *pdid) in toshoboe_open() argument