]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
drm/nouveau/flcn/cmdq: split the condition for queue readiness vs pmu acr readiness
authorBen Skeggs <bskeggs@redhat.com>
Tue, 14 Jan 2020 20:34:22 +0000 (06:34 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Wed, 15 Jan 2020 00:50:28 +0000 (10:50 +1000)
This is to allow for proper separation of the LS interface code from the
queue handling code.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/include/nvkm/subdev/pmu.h
drivers/gpu/drm/nouveau/nvkm/falcon/cmdq.c
drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue.c
drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue.h
drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue_0137c63d.c
drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue_0148cdec.c
drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.c

index 39fb218f943e81c4e917cb05c8f39a3ad6182ac9..21607b40aee61d7505d15e7580a6dd0063a22a07 100644 (file)
@@ -15,6 +15,8 @@ struct nvkm_pmu {
        struct nvkm_falcon_msgq *msgq;
        struct nvkm_msgqueue *queue;
 
+       struct completion wpr_ready;
+
        struct {
                u32 base;
                u32 size;
index a674548f616841451c7d6c7c2f94c7a7c46c3238..d32cc0d354eebb3fab5156a8de11fe64f60c7e81 100644 (file)
@@ -156,14 +156,16 @@ nvkm_msgqueue_post(struct nvkm_msgqueue *priv, enum msgqueue_msg_priority prio,
        struct nvkm_msgqueue_queue *queue;
        int ret;
 
-       if (wait_init && !wait_for_completion_timeout(&priv->init_done,
-                                        msecs_to_jiffies(1000)))
-               return -ETIMEDOUT;
-
        queue = priv->func->cmd_queue(priv, prio);
        if (IS_ERR(queue))
                return PTR_ERR(queue);
 
+       if (!wait_for_completion_timeout(&queue->ready,
+                                        msecs_to_jiffies(1000))) {
+               FLCNQ_ERR(queue, "timeout waiting for queue ready");
+               return -ETIMEDOUT;
+       }
+
        seq = nvkm_falcon_qmgr_seq_acquire(queue->qmgr);
        if (IS_ERR(seq))
                return PTR_ERR(seq);
@@ -197,6 +199,7 @@ nvkm_msgqueue_post(struct nvkm_msgqueue *priv, enum msgqueue_msg_priority prio,
 void
 nvkm_falcon_cmdq_fini(struct nvkm_falcon_cmdq *cmdq)
 {
+       reinit_completion(&cmdq->ready);
 }
 
 void
@@ -209,6 +212,7 @@ nvkm_falcon_cmdq_init(struct nvkm_falcon_cmdq *cmdq,
        cmdq->tail_reg = func->cmdq.tail + index * func->cmdq.stride;
        cmdq->offset = offset;
        cmdq->size = size;
+       complete_all(&cmdq->ready);
 
        FLCNQ_DBG(cmdq, "initialised @ index %d offset 0x%08x size 0x%08x",
                  index, cmdq->offset, cmdq->size);
@@ -236,5 +240,6 @@ nvkm_falcon_cmdq_new(struct nvkm_falcon_qmgr *qmgr, const char *name,
        cmdq->qmgr = qmgr;
        cmdq->name = name;
        mutex_init(&cmdq->mutex);
+       init_completion(&cmdq->ready);
        return 0;
 }
index db3e4a3489bf53590451ca10b97ed42c94dfc23c..3e14c7bc3e32257a90f8c9d8f7067342efe05480 100644 (file)
@@ -126,8 +126,6 @@ nvkm_msgqueue_reinit(struct nvkm_msgqueue *queue)
                return 0;
 
        queue->init_msg_received = false;
-       reinit_completion(&queue->init_done);
-
        return 0;
 }
 
@@ -138,8 +136,4 @@ nvkm_msgqueue_ctor(const struct nvkm_msgqueue_func *func,
 {
        queue->func = func;
        queue->falcon = falcon;
-
-       init_completion(&queue->init_done);
-
-
 }
index 542ecae806eeaeb423aca3ea2bcee654ce6ec418..98ace0d8465a3ac6c3991886a043f1e0c7af5373 100644 (file)
@@ -140,6 +140,8 @@ struct nvkm_msgqueue_queue {
 
        u32 head_reg;
        u32 tail_reg;
+
+       struct completion ready;
 };
 
 /**
@@ -148,14 +150,12 @@ struct nvkm_msgqueue_queue {
  * @falcon:    falcon to be managed
  * @func:      implementation of the firmware to use
  * @init_msg_received: whether the init message has already been received
- * @init_done: whether all init is complete and commands can be processed
   */
 struct nvkm_msgqueue {
        struct nvkm_falcon *falcon;
        const struct nvkm_msgqueue_func *func;
        u32 fw_version;
        bool init_msg_received;
-       struct completion init_done;
 };
 
 void nvkm_msgqueue_ctor(const struct nvkm_msgqueue_func *, struct nvkm_falcon *,
index 164722f617a45c5fc8b4a969ed509d44ddfb0a56..3bd98262f16ebcd9f9d6833395846ee94e5c5617 100644 (file)
@@ -187,7 +187,7 @@ acr_init_wpr_callback(void *priv, struct nv_falcon_msg *hdr)
        }
 
        nvkm_debug(subdev, "ACR WPR init complete\n");
-       complete_all(&queue->init_done);
+       complete_all(&subdev->device->pmu->wpr_ready);
        return 0;
 }
 
@@ -246,6 +246,7 @@ enum {
 static int
 acr_boot_falcon(struct nvkm_msgqueue *priv, enum nvkm_secboot_falcon falcon)
 {
+       struct nvkm_pmu *pmu = priv->falcon->owner->device->pmu;
        DECLARE_COMPLETION_ONSTACK(completed);
        /*
         * flags      - Flag specifying RESET or no RESET.
@@ -258,6 +259,12 @@ acr_boot_falcon(struct nvkm_msgqueue *priv, enum nvkm_secboot_falcon falcon)
                u32 falcon_id;
        } cmd;
 
+       if (!wait_for_completion_timeout(&pmu->wpr_ready,
+                                        msecs_to_jiffies(1000))) {
+               nvkm_error(&pmu->subdev, "timeout waiting for WPR init\n");
+               return -ETIMEDOUT;
+       }
+
        memset(&cmd, 0, sizeof(cmd));
 
        cmd.hdr.unit_id = MSGQUEUE_0137C63D_UNIT_ACR;
@@ -301,6 +308,7 @@ acr_boot_multiple_falcons_callback(void *_priv, struct nv_falcon_msg *hdr)
 static int
 acr_boot_multiple_falcons(struct nvkm_msgqueue *priv, unsigned long falcon_mask)
 {
+       struct nvkm_pmu *pmu = priv->falcon->owner->device->pmu;
        DECLARE_COMPLETION_ONSTACK(completed);
        /*
         * flags      - Flag specifying RESET or no RESET.
@@ -317,6 +325,12 @@ acr_boot_multiple_falcons(struct nvkm_msgqueue *priv, unsigned long falcon_mask)
        } cmd;
        struct msgqueue_0137bca5 *queue = msgqueue_0137bca5(priv);
 
+       if (!wait_for_completion_timeout(&pmu->wpr_ready,
+                                        msecs_to_jiffies(1000))) {
+               nvkm_error(&pmu->subdev, "timeout waiting for WPR init\n");
+               return -ETIMEDOUT;
+       }
+
        memset(&cmd, 0, sizeof(cmd));
 
        cmd.hdr.unit_id = MSGQUEUE_0137C63D_UNIT_ACR;
index 28917969293e2d8be84776f0ddbff11ee211ae6f..1c6077cea8652286608f69b93ead1e05f5db8e3d 100644 (file)
@@ -127,8 +127,6 @@ init_callback(struct nvkm_msgqueue *_queue, struct nvkm_msgqueue_hdr *hdr)
                }
        }
 
-       complete_all(&_queue->init_done);
-
        return 0;
 }
 
index 86af2ddb3e7842a2c8d5062c0cb83db51a5cc30a..bc0eb84c2c907bb5a3519a56537fd1a164b9cdb5 100644 (file)
@@ -87,6 +87,8 @@ nvkm_pmu_fini(struct nvkm_subdev *subdev, bool suspend)
 
        flush_work(&pmu->recv.work);
 
+       reinit_completion(&pmu->wpr_ready);
+
        nvkm_falcon_cmdq_fini(pmu->lpq);
        nvkm_falcon_cmdq_fini(pmu->hpq);
        return 0;
@@ -188,6 +190,7 @@ nvkm_pmu_ctor(const struct nvkm_pmu_fwif *fwif, struct nvkm_device *device,
            (ret = nvkm_falcon_msgq_new(pmu->qmgr, "msgq", &pmu->msgq)))
                return ret;
 
+       init_completion(&pmu->wpr_ready);
        return 0;
 }