aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2012-10-08 12:58:23 +1000
committerBen Skeggs <bskeggs@redhat.com>2012-11-29 09:56:38 +1000
commit6c1689a08cf54e58c19eb565528a293f36f731be (patch)
tree53ecbfa8324e13c7a7af4373d2914cf5c90c9d15 /drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
parentdrm/nouveau/dmaobj: merge everything except ctor and bind together (diff)
downloadlinux-dev-6c1689a08cf54e58c19eb565528a293f36f731be.tar.xz
linux-dev-6c1689a08cf54e58c19eb565528a293f36f731be.zip
drm/nouveau/dmaobj: move parent class check to bind() method
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>
Diffstat (limited to 'drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c')
-rw-r--r--drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c b/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
index 9ca90613306a..325b79dd619a 100644
--- a/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
+++ b/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
@@ -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;