Lines Matching defs:qn
387 void (*qm_db)(struct hisi_qm *qm, u16 qn,
704 static void qm_db_v1(struct hisi_qm *qm, u16 qn, u8 cmd, u16 index, u8 priority)
708 doorbell = qn | ((u64)cmd << QM_DB_CMD_SHIFT_V1) |
715 static void qm_db_v2(struct hisi_qm *qm, u16 qn, u8 cmd, u16 index, u8 priority)
722 io_base = qm->db_io_base + (u64)qn * qm->db_interval +
727 doorbell = qn | ((u64)cmd << QM_DB_CMD_SHIFT_V2) |
735 static void qm_db(struct hisi_qm *qm, u16 qn, u8 cmd, u16 index, u8 priority)
737 dev_dbg(&qm->pdev->dev, "QM doorbell request: qn=%u, cmd=%u, index=%u\n",
738 qn, cmd, index);
740 qm->ops->qm_db(qm, qn, cmd, index, priority);