Skip to content

Commit

Permalink
drm/nouveau/flcn/cmdq: split the condition for queue readiness vs pmu…
Browse files Browse the repository at this point in the history
… acr readiness

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>
  • Loading branch information
Ben Skeggs committed Jan 15, 2020
1 parent a15d8f5 commit 2e8a659
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 15 deletions.
2 changes: 2 additions & 0 deletions drivers/gpu/drm/nouveau/include/nvkm/subdev/pmu.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
13 changes: 9 additions & 4 deletions drivers/gpu/drm/nouveau/nvkm/falcon/cmdq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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
Expand All @@ -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);
Expand Down Expand Up @@ -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;
}
6 changes: 0 additions & 6 deletions drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -138,8 +136,4 @@ nvkm_msgqueue_ctor(const struct nvkm_msgqueue_func *func,
{
queue->func = func;
queue->falcon = falcon;

init_completion(&queue->init_done);


}
4 changes: 2 additions & 2 deletions drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ struct nvkm_msgqueue_queue {

u32 head_reg;
u32 tail_reg;

struct completion ready;
};

/**
Expand All @@ -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 *,
Expand Down
16 changes: 15 additions & 1 deletion drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue_0137c63d.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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.
Expand All @@ -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;
Expand Down Expand Up @@ -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.
Expand All @@ -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;
Expand Down
2 changes: 0 additions & 2 deletions drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue_0148cdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@ init_callback(struct nvkm_msgqueue *_queue, struct nvkm_msgqueue_hdr *hdr)
}
}

complete_all(&_queue->init_done);

return 0;
}

Expand Down
3 changes: 3 additions & 0 deletions drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit 2e8a659

Please sign in to comment.