Skip to content

Commit

Permalink
drm/nouveau/imem: allow nvkm_instobj to be directly embedded in backe…
Browse files Browse the repository at this point in the history
…nd object

This will eliminate a step through the call chain, and give backends
more flexibility.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Ben Skeggs committed Nov 2, 2017
1 parent 07bbc1c commit 49814f6
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 13 deletions.
36 changes: 23 additions & 13 deletions drivers/gpu/drm/nouveau/nvkm/subdev/instmem/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,13 @@
*/
#include "priv.h"

#include <core/memory.h>
#include <subdev/bar.h>

/******************************************************************************
* instmem object base implementation
*****************************************************************************/
#define nvkm_instobj(p) container_of((p), struct nvkm_instobj, memory)

struct nvkm_instobj {
struct nvkm_memory memory;
struct nvkm_memory *parent;
struct nvkm_instmem *imem;
struct list_head head;
u32 *suspend;
void __iomem *map;
};

static enum nvkm_memory_target
nvkm_instobj_target(struct nvkm_memory *memory)
{
Expand Down Expand Up @@ -94,7 +84,7 @@ nvkm_instobj_map(struct nvkm_memory *memory, struct nvkm_vma *vma, u64 offset)
}

static void *
nvkm_instobj_dtor(struct nvkm_memory *memory)
nvkm_instobj_dtor_old(struct nvkm_memory *memory)
{
struct nvkm_instobj *iobj = nvkm_instobj(memory);
spin_lock(&iobj->imem->lock);
Expand All @@ -106,7 +96,7 @@ nvkm_instobj_dtor(struct nvkm_memory *memory)

static const struct nvkm_memory_func
nvkm_instobj_func = {
.dtor = nvkm_instobj_dtor,
.dtor = nvkm_instobj_dtor_old,
.target = nvkm_instobj_target,
.addr = nvkm_instobj_addr,
.size = nvkm_instobj_size,
Expand Down Expand Up @@ -164,7 +154,7 @@ nvkm_instobj_wr32_slow(struct nvkm_memory *memory, u64 offset, u32 data)

static const struct nvkm_memory_func
nvkm_instobj_func_slow = {
.dtor = nvkm_instobj_dtor,
.dtor = nvkm_instobj_dtor_old,
.target = nvkm_instobj_target,
.addr = nvkm_instobj_addr,
.size = nvkm_instobj_size,
Expand All @@ -180,6 +170,26 @@ nvkm_instobj_ptrs_slow = {
.wr32 = nvkm_instobj_wr32_slow,
};

void
nvkm_instobj_dtor(struct nvkm_instmem *imem, struct nvkm_instobj *iobj)
{
spin_lock(&imem->lock);
list_del(&iobj->head);
spin_unlock(&imem->lock);
}

void
nvkm_instobj_ctor(const struct nvkm_memory_func *func,
struct nvkm_instmem *imem, struct nvkm_instobj *iobj)
{
nvkm_memory_ctor(func, &iobj->memory);
iobj->parent = &iobj->memory;
iobj->suspend = NULL;
spin_lock(&imem->lock);
list_add_tail(&iobj->head, &imem->list);
spin_unlock(&imem->lock);
}

int
nvkm_instobj_new(struct nvkm_instmem *imem, u32 size, u32 align, bool zero,
struct nvkm_memory **pmemory)
Expand Down
15 changes: 15 additions & 0 deletions drivers/gpu/drm/nouveau/nvkm/subdev/instmem/priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,19 @@ struct nvkm_instmem_func {

void nvkm_instmem_ctor(const struct nvkm_instmem_func *, struct nvkm_device *,
int index, struct nvkm_instmem *);

#include <core/memory.h>

struct nvkm_instobj {
struct nvkm_memory memory;
struct nvkm_memory *parent;
struct nvkm_instmem *imem;
struct list_head head;
u32 *suspend;
void __iomem *map;
};

void nvkm_instobj_ctor(const struct nvkm_memory_func *func,
struct nvkm_instmem *, struct nvkm_instobj *);
void nvkm_instobj_dtor(struct nvkm_instmem *, struct nvkm_instobj *);
#endif

0 comments on commit 49814f6

Please sign in to comment.