Lines Matching full:ulp
170 if ((hw->ulp_start + qt->ulp) > hw->ulp_max) { in ocs_hw_init_queues()
171 ocs_log_err(hw->os, "invalid ULP %d for WQ\n", qt->ulp); in ocs_hw_init_queues()
179 wq = hw_new_wq(cq, len, qt->class, hw->ulp_start + qt->ulp); in ocs_hw_init_queues()
223 if ((hw->ulp_start + qt->ulp) > hw->ulp_max) { in ocs_hw_init_queues()
224 ocs_log_err(hw->os, "invalid ULP %d for RQ\n", qt->ulp); in ocs_hw_init_queues()
231 mrq.rq_cfg[mrq.num_pairs].ulp = hw->ulp_start + qt->ulp; in ocs_hw_init_queues()
236 rq = hw_new_rq(cq, len, hw->ulp_start + qt->ulp); in ocs_hw_init_queues()
281 rqset_ulp = mrq.rq_cfg[i].ulp; in ocs_hw_init_queues()
296 rq = hw_new_rq(cq, mrq.rq_cfg[i].len, mrq.rq_cfg[i].ulp); in ocs_hw_init_queues()
540 * @param ulp index of chute
545 hw_new_wq(hw_cq_t *cq, uint32_t entry_count, uint32_t class, uint32_t ulp) in hw_new_wq() argument
557 wq->ulp = ulp; in hw_new_wq()
564 if (sli_queue_alloc(&hw->sli, SLI_QTYPE_WQ, wq->queue, wq->entry_count, cq->queue, ulp)) { in hw_new_wq()
571 …ocs_log_debug(hw->os, "create wq[%2d] id %3d len %4d cls %d ulp %d\n", wq->instance, wq->queue->id, in hw_new_wq()
572 wq->entry_count, wq->class, wq->ulp); in hw_new_wq()
585 * @param ulp ULP index for this RQ
590 hw_new_rq(hw_cq_t *cq, uint32_t entry_count, uint32_t ulp) in hw_new_rq() argument
602 rq->ulp = ulp; in hw_new_rq()
615 ulp, TRUE)) { in hw_new_rq()
622 ocs_log_debug(hw->os, "create rq[%2d] id %3d len %4d hdr size %4d ulp %d\n", in hw_new_rq()
623 rq->instance, rq->hdr->id, rq->entry_count, rq->hdr_entry_size, rq->ulp); in hw_new_rq()
634 ulp, FALSE)) { in hw_new_rq()
641 ocs_log_debug(hw->os, "create rq[%2d] id %3d len %4d data size %4d ulp %d\n", rq->instance, in hw_new_rq()
642 rq->data->id, rq->entry_count, rq->data_entry_size, rq->ulp); in hw_new_rq()
667 * @param ulp ULP index for this RQ
672 …w_rq_set(hw_cq_t *cqs[], hw_rq_t *rqs[], uint32_t num_rq_pairs, uint32_t entry_count, uint32_t ulp) in hw_new_rq_set() argument
695 rq->ulp = ulp; in hw_new_rq_set()
720 ulp)) { in hw_new_rq_set()
1180 {"ulp", TOK_ATTR_NAME, TOK_SUB_ULP},
1468 qt->ulp = tok_getnumber(hw, qtop, &tok[3]); in parse_topology()
1522 qt->ulp = tok_getnumber(hw, qtop, &tok[4]); in parse_topology()
1644 …ocs_log_debug(hw->os, "entry %s set_df %d len %4d class %d ulp %d\n", qtopentry2s(qt->entry), qt->… in ocs_hw_qtop_parse()
1645 qt->class, qt->ulp); in ocs_hw_qtop_parse()