Lines Matching refs:qp_table
197 return qp->qpn >= dev->qp_table.sqp_start && in is_sqp()
198 qp->qpn <= dev->qp_table.sqp_start + 3; in is_sqp()
203 return qp->qpn >= dev->qp_table.sqp_start && in is_qp0()
204 qp->qpn <= dev->qp_table.sqp_start + 1; in is_qp0()
243 spin_lock(&dev->qp_table.lock); in mthca_qp_event()
244 qp = mthca_array_get(&dev->qp_table.qp, qpn & (dev->limits.num_qps - 1)); in mthca_qp_event()
247 spin_unlock(&dev->qp_table.lock); in mthca_qp_event()
264 spin_lock(&dev->qp_table.lock); in mthca_qp_event()
267 spin_unlock(&dev->qp_table.lock); in mthca_qp_event()
754 cpu_to_be32(dev->qp_table.rdb_base + in __mthca_modify_qp()
756 dev->qp_table.rdb_shift)); in __mthca_modify_qp()
893 attr->max_dest_rd_atomic > 1 << dev->qp_table.rdb_shift) { in mthca_modify_qp()
895 attr->max_dest_rd_atomic, 1 << dev->qp_table.rdb_shift); in mthca_modify_qp()
1077 ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn); in mthca_map_memfree()
1081 ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn); in mthca_map_memfree()
1085 ret = mthca_table_get(dev, dev->qp_table.rdb_table, in mthca_map_memfree()
1086 qp->qpn << dev->qp_table.rdb_shift); in mthca_map_memfree()
1095 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn); in mthca_map_memfree()
1098 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn); in mthca_map_memfree()
1106 mthca_table_put(dev, dev->qp_table.rdb_table, in mthca_unmap_memfree()
1107 qp->qpn << dev->qp_table.rdb_shift); in mthca_unmap_memfree()
1108 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn); in mthca_unmap_memfree()
1109 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn); in mthca_unmap_memfree()
1291 qp->qpn = mthca_alloc(&dev->qp_table.alloc); in mthca_alloc_qp()
1301 mthca_free(&dev->qp_table.alloc, qp->qpn); in mthca_alloc_qp()
1305 spin_lock_irq(&dev->qp_table.lock); in mthca_alloc_qp()
1306 mthca_array_set(&dev->qp_table.qp, in mthca_alloc_qp()
1308 spin_unlock_irq(&dev->qp_table.lock); in mthca_alloc_qp()
1353 u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1; in mthca_alloc_sqp()
1367 spin_lock_irq(&dev->qp_table.lock); in mthca_alloc_sqp()
1368 if (mthca_array_get(&dev->qp_table.qp, mqpn)) in mthca_alloc_sqp()
1371 mthca_array_set(&dev->qp_table.qp, mqpn, sqp); in mthca_alloc_sqp()
1372 spin_unlock_irq(&dev->qp_table.lock); in mthca_alloc_sqp()
1397 spin_lock(&dev->qp_table.lock); in mthca_alloc_sqp()
1398 mthca_array_clear(&dev->qp_table.qp, mqpn); in mthca_alloc_sqp()
1399 spin_unlock(&dev->qp_table.lock); in mthca_alloc_sqp()
1414 spin_lock_irq(&dev->qp_table.lock); in get_qp_refcount()
1416 spin_unlock_irq(&dev->qp_table.lock); in get_qp_refcount()
1436 spin_lock(&dev->qp_table.lock); in mthca_free_qp()
1437 mthca_array_clear(&dev->qp_table.qp, in mthca_free_qp()
1440 spin_unlock(&dev->qp_table.lock); in mthca_free_qp()
1474 mthca_free(&dev->qp_table.alloc, qp->qpn); in mthca_free_qp()
2259 spin_lock_init(&dev->qp_table.lock); in mthca_init_qp_table()
2265 dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL; in mthca_init_qp_table()
2266 err = mthca_alloc_init(&dev->qp_table.alloc, in mthca_init_qp_table()
2269 dev->qp_table.sqp_start + in mthca_init_qp_table()
2274 err = mthca_array_init(&dev->qp_table.qp, in mthca_init_qp_table()
2277 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_init_qp_table()
2283 dev->qp_table.sqp_start + i * 2); in mthca_init_qp_table()
2296 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps); in mthca_init_qp_table()
2297 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_init_qp_table()
2309 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps); in mthca_cleanup_qp_table()
2310 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_cleanup_qp_table()