Skip to content

Commit

Permalink
drm/nouveau/dmaobj: move parent class check to bind() method
Browse files Browse the repository at this point in the history
Otherwise when nvc0- gains a bind() method (disp needs it), the fifo
engine will attempt to create a dma object for the push buffer, which
is unnecessary on fermi.

The only sane place to put these checks is in the bind method itself,
and have it unconditionally called from wherever it might be needed.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Ben Skeggs committed Nov 28, 2012
1 parent f86770a commit 6c1689a
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 17 deletions.
18 changes: 6 additions & 12 deletions drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,21 +88,15 @@ nouveau_dmaobj_ctor(struct nouveau_object *parent,

switch (nv_mclass(parent)) {
case NV_DEVICE_CLASS:
/* delayed, or no, binding */
break;
case NV03_CHANNEL_DMA_CLASS:
case NV10_CHANNEL_DMA_CLASS:
case NV17_CHANNEL_DMA_CLASS:
case NV40_CHANNEL_DMA_CLASS:
case NV50_CHANNEL_DMA_CLASS:
case NV84_CHANNEL_DMA_CLASS:
case NV50_CHANNEL_IND_CLASS:
case NV84_CHANNEL_IND_CLASS:
default:
ret = dmaeng->bind(dmaeng, *pobject, dmaobj, &gpuobj);
nouveau_object_ref(NULL, pobject);
*pobject = nv_object(gpuobj);
if (ret == 0) {
nouveau_object_ref(NULL, pobject);
*pobject = nv_object(gpuobj);
}
break;
default:
return -EINVAL;
}

return ret;
Expand Down
12 changes: 12 additions & 0 deletions drivers/gpu/drm/nouveau/core/engine/dmaobj/nv04.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ nv04_dmaobj_bind(struct nouveau_dmaeng *dmaeng,
u32 length = dmaobj->limit - dmaobj->start;
int ret;

if (!nv_iclass(parent, NV_ENGCTX_CLASS)) {
switch (nv_mclass(parent->parent)) {
case NV03_CHANNEL_DMA_CLASS:
case NV10_CHANNEL_DMA_CLASS:
case NV17_CHANNEL_DMA_CLASS:
case NV40_CHANNEL_DMA_CLASS:
break;
default:
return -EINVAL;
}
}

if (dmaobj->target == NV_MEM_TARGET_VM) {
if (nv_object(vmm)->oclass == &nv04_vmmgr_oclass) {
struct nouveau_gpuobj *pgt = vmm->vm->pgt[0].obj[0];
Expand Down
12 changes: 12 additions & 0 deletions drivers/gpu/drm/nouveau/core/engine/dmaobj/nv50.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,18 @@ nv50_dmaobj_bind(struct nouveau_dmaeng *dmaeng,
u32 flags = nv_mclass(dmaobj);
int ret;

if (!nv_iclass(parent, NV_ENGCTX_CLASS)) {
switch (nv_mclass(parent->parent)) {
case NV50_CHANNEL_DMA_CLASS:
case NV84_CHANNEL_DMA_CLASS:
case NV50_CHANNEL_IND_CLASS:
case NV84_CHANNEL_IND_CLASS:
break;
default:
return -EINVAL;
}
}

switch (dmaobj->target) {
case NV_MEM_TARGET_VM:
flags |= 0x00000000;
Expand Down
8 changes: 5 additions & 3 deletions drivers/gpu/drm/nouveau/core/engine/fifo/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

#include <core/object.h>
#include <core/handle.h>
#include <core/class.h>

#include <engine/dmaobj.h>
#include <engine/fifo.h>
Expand Down Expand Up @@ -56,15 +57,16 @@ nouveau_fifo_channel_create_(struct nouveau_object *parent,

dmaeng = (void *)chan->pushdma->base.engine;
switch (chan->pushdma->base.oclass->handle) {
case 0x0002:
case 0x003d:
case NV_DMA_FROM_MEMORY_CLASS:
case NV_DMA_IN_MEMORY_CLASS:
break;
default:
return -EINVAL;
}

if (dmaeng->bind) {
ret = dmaeng->bind(dmaeng, parent, chan->pushdma, &chan->pushgpu);
ret = dmaeng->bind(dmaeng, parent, chan->pushdma,
&chan->pushgpu);
if (ret)
return ret;
}
Expand Down
8 changes: 6 additions & 2 deletions drivers/gpu/drm/nouveau/core/include/engine/dmaobj.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ struct nouveau_dmaobj {

struct nouveau_dmaeng {
struct nouveau_engine base;
int (*bind)(struct nouveau_dmaeng *, struct nouveau_object *parent,
struct nouveau_dmaobj *, struct nouveau_gpuobj **);

/* creates a "physical" dma object from a struct nouveau_dmaobj */
int (*bind)(struct nouveau_dmaeng *dmaeng,
struct nouveau_object *parent,
struct nouveau_dmaobj *dmaobj,
struct nouveau_gpuobj **);
};

#define nouveau_dmaeng_create(p,e,c,d) \
Expand Down

0 comments on commit 6c1689a

Please sign in to comment.