mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-30 12:00:17 +01:00
drm/nv50: add context info for nv98
It won't work yet, just like the other 9xxx chips. Real soon now :)
This commit is contained in:
parent
efcef2c2bc
commit
7bbd605a21
2 changed files with 3267 additions and 2042 deletions
|
|
@ -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;
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue