Skip to content

Commit

Permalink
drm/nouveau/flcn/msgq: pass explicit message queue pointer to recv()
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Ben Skeggs committed Jan 15, 2020
1 parent d114a13 commit e1cc579
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 49 deletions.
1 change: 1 addition & 0 deletions drivers/gpu/drm/nouveau/include/nvkm/core/falcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,5 @@ void nvkm_falcon_msgq_del(struct nvkm_falcon_msgq **);
void nvkm_falcon_msgq_init(struct nvkm_falcon_msgq *,
u32 index, u32 offset, u32 size);
int nvkm_falcon_msgq_recv_initmsg(struct nvkm_falcon_msgq *, void *, u32 size);
void nvkm_falcon_msgq_recv(struct nvkm_falcon_msgq *);
#endif
1 change: 0 additions & 1 deletion drivers/gpu/drm/nouveau/include/nvkm/core/msgqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ struct nvkm_msgqueue;
int nvkm_msgqueue_new(u32, struct nvkm_falcon *, const struct nvkm_secboot *,
struct nvkm_msgqueue **);
void nvkm_msgqueue_del(struct nvkm_msgqueue **);
void nvkm_msgqueue_recv(struct nvkm_msgqueue *);

/* useful if we run a NVIDIA-signed firmware */
void nvkm_msgqueue_write_cmdline(struct nvkm_msgqueue *, void *);
Expand Down
8 changes: 1 addition & 7 deletions drivers/gpu/drm/nouveau/nvkm/engine/sec2/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,7 @@ nvkm_sec2_recv(struct work_struct *work)
sec2->initmsg_received = true;
}

if (!sec2->queue) {
nvkm_warn(&sec2->engine.subdev,
"recv function called while no firmware set!\n");
return;
}

nvkm_msgqueue_recv(sec2->queue);
nvkm_falcon_msgq_recv(sec2->msgq);
}

static void
Expand Down
3 changes: 1 addition & 2 deletions drivers/gpu/drm/nouveau/nvkm/falcon/msgq.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,7 @@ nvkm_falcon_msgq_recv_initmsg(struct nvkm_falcon_msgq *msgq,
}

void
nvkm_msgqueue_process_msgs(struct nvkm_msgqueue *priv,
struct nvkm_msgqueue_queue *queue)
nvkm_falcon_msgq_recv(struct nvkm_falcon_msgq *queue)
{
/*
* We are invoked from a worker thread, so normally we have plenty of
Expand Down
13 changes: 0 additions & 13 deletions drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,6 @@ nvkm_msgqueue_del(struct nvkm_msgqueue **queue)
}
}

void
nvkm_msgqueue_recv(struct nvkm_msgqueue *queue)
{
if (!queue->func || !queue->func->recv) {
const struct nvkm_subdev *subdev = queue->falcon->owner;

nvkm_warn(subdev, "missing msgqueue recv function\n");
return;
}

queue->func->recv(queue);
}

void
nvkm_msgqueue_ctor(const struct nvkm_msgqueue_func *func,
struct nvkm_falcon *falcon,
Expand Down
3 changes: 0 additions & 3 deletions drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ struct nvkm_msgqueue_init_func {
struct nvkm_msgqueue_func {
const struct nvkm_msgqueue_init_func *init_func;
void (*dtor)(struct nvkm_msgqueue *);
void (*recv)(struct nvkm_msgqueue *queue);
};

/**
Expand Down Expand Up @@ -114,8 +113,6 @@ struct nvkm_msgqueue {

void nvkm_msgqueue_ctor(const struct nvkm_msgqueue_func *, struct nvkm_falcon *,
struct nvkm_msgqueue *);
void nvkm_msgqueue_process_msgs(struct nvkm_msgqueue *,
struct nvkm_msgqueue_queue *);

int msgqueue_0137c63d_new(struct nvkm_falcon *, const struct nvkm_secboot *,
struct nvkm_msgqueue **);
Expand Down
8 changes: 0 additions & 8 deletions drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue_0137c63d.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@ struct msgqueue_0137bca5 {
container_of(container_of(q, struct msgqueue_0137c63d, base), \
struct msgqueue_0137bca5, base);

static void
msgqueue_0137c63d_process_msgs(struct nvkm_msgqueue *queue)
{
nvkm_msgqueue_process_msgs(queue, queue->falcon->owner->device->pmu->msgq);
}

/* Init unit */
static void
init_gen_cmdline(struct nvkm_msgqueue *queue, void *buf)
Expand Down Expand Up @@ -87,7 +81,6 @@ msgqueue_0137c63d_dtor(struct nvkm_msgqueue *queue)
static const struct nvkm_msgqueue_func
msgqueue_0137c63d_func = {
.init_func = &msgqueue_0137c63d_init_func,
.recv = msgqueue_0137c63d_process_msgs,
.dtor = msgqueue_0137c63d_dtor,
};

Expand All @@ -111,7 +104,6 @@ msgqueue_0137c63d_new(struct nvkm_falcon *falcon, const struct nvkm_secboot *sb,
static const struct nvkm_msgqueue_func
msgqueue_0137bca5_func = {
.init_func = &msgqueue_0137c63d_init_func,
.recv = msgqueue_0137c63d_process_msgs,
.dtor = msgqueue_0137c63d_dtor,
};

Expand Down
8 changes: 0 additions & 8 deletions drivers/gpu/drm/nouveau/nvkm/falcon/msgqueue_0148cdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,6 @@ struct msgqueue_0148cdec {
#define msgqueue_0148cdec(q) \
container_of(q, struct msgqueue_0148cdec, base)

static void
msgqueue_0148cdec_process_msgs(struct nvkm_msgqueue *queue)
{
nvkm_msgqueue_process_msgs(queue, queue->falcon->owner->device->sec2->msgq);
}


static void
init_gen_cmdline(struct nvkm_msgqueue *queue, void *buf)
{
Expand Down Expand Up @@ -73,7 +66,6 @@ msgqueue_0148cdec_dtor(struct nvkm_msgqueue *queue)
const struct nvkm_msgqueue_func
msgqueue_0148cdec_func = {
.init_func = &msgqueue_0148cdec_init_func,
.recv = msgqueue_0148cdec_process_msgs,
.dtor = msgqueue_0148cdec_dtor,
};

Expand Down
8 changes: 1 addition & 7 deletions drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm20b.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,7 @@ gm20b_pmu_recv(struct nvkm_pmu *pmu)
pmu->initmsg_received = true;
}

if (!pmu->queue) {
nvkm_warn(&pmu->subdev,
"recv function called while no firmware set!\n");
return;
}

nvkm_msgqueue_recv(pmu->queue);
nvkm_falcon_msgq_recv(pmu->msgq);
}

static const struct nvkm_pmu_func
Expand Down

0 comments on commit e1cc579

Please sign in to comment.