Skip to content

Commit

Permalink
drm/nv50: fix compute object class
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 Dec 3, 2010
1 parent 23c45e8 commit aa2c2e8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions drivers/gpu/drm/nouveau/nv50_graph.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,6 @@ nv50_graph_register(struct drm_device *dev)
NVOBJ_CLASS(dev, 0x0030, GR); /* null */
NVOBJ_CLASS(dev, 0x5039, GR); /* m2mf */
NVOBJ_CLASS(dev, 0x502d, GR); /* 2d */
NVOBJ_CLASS(dev, 0x50c0, GR); /* compute */
NVOBJ_CLASS(dev, 0x85c0, GR); /* compute (nva3, nva5, nva8) */

/* tesla */
if (dev_priv->chipset == 0x50)
Expand All @@ -452,6 +450,14 @@ nv50_graph_register(struct drm_device *dev)
}
}

/* compute */
if (dev_priv->chipset <= 0xa0 ||
dev_priv->chipset == 0xaa ||
dev_priv->chipset == 0xac)
NVOBJ_CLASS(dev, 0x50c0, GR);
else
NVOBJ_CLASS(dev, 0x85c0, GR);

dev_priv->engine.graph.registered = true;
return 0;
}
Expand Down

0 comments on commit aa2c2e8

Please sign in to comment.