diff options
| author | Ben Skeggs <skeggsb@gmail.com> | 2009-02-11 10:12:43 +1000 |
|---|---|---|
| committer | Ben Skeggs <skeggsb@gmail.com> | 2009-02-11 10:12:43 +1000 |
| commit | 7bbd605a21200e5e4beb94f261aefe30c4e7853d (patch) | |
| tree | fd4587655ad7a2605a147adce69e9f0cfa0d3b38 /shared-core/nv50_graph.c | |
| parent | efcef2c2bcd7a8ea16381cc8d6ae06fff1bc3483 (diff) | |
drm/nv50: add context info for nv98
It won't work yet, just like the other 9xxx chips. Real soon now :)
Diffstat (limited to 'shared-core/nv50_graph.c')
| -rw-r--r-- | shared-core/nv50_graph.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shared-core/nv50_graph.c b/shared-core/nv50_graph.c index 85dd332a..41a9da72 100644 --- a/shared-core/nv50_graph.c +++ b/shared-core/nv50_graph.c @@ -109,6 +109,9 @@ nv50_graph_init_ctxctl(struct drm_device *dev) case 0x96: voodoo = nv94_ctxprog; break; + case 0x98: + voodoo = nv98_ctxprog; + break; case 0xaa: voodoo = nvaa_ctxprog; break; @@ -204,6 +207,9 @@ nv50_graph_create_context(struct nouveau_channel *chan) case 0x96: ctxvals = nv96_ctxvals; break; + case 0x98: + ctxvals = nv98_ctxvals; + break; case 0xaa: ctxvals = nvaa_ctxvals; break; |
