Commit a4747426 authored by Ben Skeggs's avatar Ben Skeggs
Browse files

drm/nouveau/imem: remove object accessor functions



Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 7e24c114
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -26,6 +26,13 @@ struct nvkm_instmem {
	u32 reserved;
	int (*alloc)(struct nvkm_instmem *, struct nvkm_object *,
		     u32 size, u32 align, struct nvkm_object **);

	const struct nvkm_instmem_func *func;
};

struct nvkm_instmem_func {
	u32  (*rd32)(struct nvkm_instmem *, u32 addr);
	void (*wr32)(struct nvkm_instmem *, u32 addr, u32 data);
};

static inline struct nvkm_instmem *
+1 −1
Original line number Diff line number Diff line
@@ -573,7 +573,7 @@ nv04_gr_mthd_bind_class(struct nvkm_object *object, u32 *args, u32 size)
{
	struct nvkm_instmem *imem = nvkm_instmem(object);
	u32 inst = *(u32 *)args << 4;
	return nv_ro32(imem, inst);
	return imem->func->rd32(imem, inst);
}

static int
+3 −3
Original line number Diff line number Diff line
@@ -63,9 +63,9 @@ nv31_mpeg_mthd_dma(struct nvkm_object *object, u32 mthd, void *arg, u32 len)
	struct nvkm_device *device = mpeg->base.engine.subdev.device;
	struct nvkm_instmem *imem = device->imem;
	u32 inst = *(u32 *)arg << 4;
	u32 dma0 = nv_ro32(imem, inst + 0);
	u32 dma1 = nv_ro32(imem, inst + 4);
	u32 dma2 = nv_ro32(imem, inst + 8);
	u32 dma0 = imem->func->rd32(imem, inst + 0);
	u32 dma1 = imem->func->rd32(imem, inst + 4);
	u32 dma2 = imem->func->rd32(imem, inst + 8);
	u32 base = (dma2 & 0xfffff000) | (dma0 >> 20);
	u32 size = dma1 + 1;

+3 −3
Original line number Diff line number Diff line
@@ -36,9 +36,9 @@ nv40_mpeg_mthd_dma(struct nvkm_object *object, u32 mthd, void *arg, u32 len)
	struct nvkm_device *device = mpeg->base.engine.subdev.device;
	struct nvkm_instmem *imem = device->imem;
	u32 inst = *(u32 *)arg << 4;
	u32 dma0 = nv_ro32(imem, inst + 0);
	u32 dma1 = nv_ro32(imem, inst + 4);
	u32 dma2 = nv_ro32(imem, inst + 8);
	u32 dma0 = imem->func->rd32(imem, inst + 0);
	u32 dma1 = imem->func->rd32(imem, inst + 4);
	u32 dma2 = imem->func->rd32(imem, inst + 8);
	u32 base = (dma2 & 0xfffff000) | (dma0 >> 20);
	u32 size = dma1 + 1;

+14 −10
Original line number Diff line number Diff line
@@ -32,17 +32,17 @@
static u32
nv04_instobj_rd32(struct nvkm_object *object, u64 addr)
{
	struct nv04_instmem *imem = (void *)nvkm_instmem(object);
	struct nvkm_instmem *imem = nvkm_instmem(object);
	struct nv04_instobj *node = (void *)object;
	return nv_ro32(imem, node->mem->offset + addr);
	return imem->func->rd32(imem, node->mem->offset + addr);
}

static void
nv04_instobj_wr32(struct nvkm_object *object, u64 addr, u32 data)
{
	struct nv04_instmem *imem = (void *)nvkm_instmem(object);
	struct nvkm_instmem *imem = nvkm_instmem(object);
	struct nv04_instobj *node = (void *)object;
	nv_wo32(imem, node->mem->offset + addr, data);
	imem->func->wr32(imem, node->mem->offset + addr, data);
}

static void
@@ -103,16 +103,14 @@ nv04_instobj_oclass = {
 *****************************************************************************/

static u32
nv04_instmem_rd32(struct nvkm_object *object, u64 addr)
nv04_instmem_rd32(struct nvkm_instmem *imem, u32 addr)
{
	struct nvkm_instmem *imem = (void *)object;
	return nvkm_rd32(imem->subdev.device, 0x700000 + addr);
}

static void
nv04_instmem_wr32(struct nvkm_object *object, u64 addr, u32 data)
nv04_instmem_wr32(struct nvkm_instmem *imem, u32 addr, u32 data)
{
	struct nvkm_instmem *imem = (void *)object;
	nvkm_wr32(imem->subdev.device, 0x700000 + addr, data);
}

@@ -130,6 +128,12 @@ nv04_instmem_dtor(struct nvkm_object *object)
	nvkm_instmem_destroy(&imem->base);
}

static const struct nvkm_instmem_func
nv04_instmem_func = {
	.rd32 = nv04_instmem_rd32,
	.wr32 = nv04_instmem_wr32,
};

static int
nv04_instmem_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		  struct nvkm_oclass *oclass, void *data, u32 size,
@@ -143,6 +147,8 @@ nv04_instmem_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
	if (ret)
		return ret;

	imem->base.func = &nv04_instmem_func;

	/* PRAMIN aperture maps over the end of VRAM, reserve it */
	imem->base.reserved = 512 * 1024;

@@ -184,8 +190,6 @@ nv04_instmem_oclass = &(struct nvkm_instmem_impl) {
		.dtor = nv04_instmem_dtor,
		.init = _nvkm_instmem_init,
		.fini = _nvkm_instmem_fini,
		.rd32 = nv04_instmem_rd32,
		.wr32 = nv04_instmem_wr32,
	},
	.instobj = &nv04_instobj_oclass.base,
}.base;
Loading