summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nouveau/nvc0
diff options
context:
space:
mode:
authorBen Skeggs <[email protected]>2014-05-09 15:55:49 +1000
committerBen Skeggs <[email protected]>2014-05-15 09:54:16 +1000
commit9306c3470f0963b7bda47f01b64605f61e5e5c44 (patch)
treec5ee1cb8ecece974bb8e528cdf46b87a2d440c4e /src/gallium/drivers/nouveau/nvc0
parent0079a375a58b288caacc2721f5a34b8f1233e7d1 (diff)
nvc0: add maxwell class
Signed-off-by: Ben Skeggs <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nvc0')
-rw-r--r--src/gallium/drivers/nouveau/nvc0/nvc0_screen.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
index 58d42f9b297..ccf2374d474 100644
--- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
+++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
@@ -685,6 +685,9 @@ nvc0_screen_create(struct nouveau_device *dev)
PUSH_DATA (push, screen->fence.bo->offset + 16);
switch (dev->chipset & ~0xf) {
+ case 0x110:
+ obj_class = GM107_3D_CLASS;
+ break;
case 0x100:
case 0xf0:
obj_class = NVF0_3D_CLASS;