diff options
author | Dave Airlie <airlied@redhat.com> | 2018-05-18 17:12:34 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2018-05-18 17:12:41 +1000 |
commit | 3b064e6f7be75efbb5d8ec5991cd64c8ed09e0dd (patch) | |
tree | 83d1a7fc3342b204f41963d2b0a92a20d0d55155 /drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.c | |
parent | 1fafef9dfe127bdd4600eeaca302f0c1cb4ee5d0 (diff) | |
parent | 6c46d01f25bcf74608d09645c27c35c3f3940ebe (diff) | |
download | talos-op-linux-3b064e6f7be75efbb5d8ec5991cd64c8ed09e0dd.tar.gz talos-op-linux-3b064e6f7be75efbb5d8ec5991cd64c8ed09e0dd.zip |
Merge branch 'linux-4.18' of git://github.com/skeggsb/linux into drm-next
The main thing here is the addition of support for Volta GV100 GPUs,
everything else basically restructuring display / graphics init code
to make it possible to fit Volta support in more nicely.
There's a bunch of improvements/fixes scattered in there for earlier
GPUs too, particularly graphics engine init on all GPUs from Fermi
onwards.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/CACAvsv7sjDKyR43n+6=iLC+ExGhBTLRLdKqwrhcfJWjEAndK0g@mail.gmail.com
Diffstat (limited to 'drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.c b/drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.c index 7b75c57c12ed..85d9329cfa0e 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.c @@ -26,18 +26,20 @@ static const struct nv50_disp_func mcp89_disp = { + .init = nv50_disp_init, + .fini = nv50_disp_fini, .intr = nv50_disp_intr, .uevent = &nv50_disp_chan_uevent, .super = nv50_disp_super, .root = >215_disp_root_oclass, - .head.new = nv50_head_new, - .dac = { .nr = 3, .new = nv50_dac_new }, - .sor = { .nr = 4, .new = mcp89_sor_new }, - .pior = { .nr = 3, .new = nv50_pior_new }, + .head = { .cnt = nv50_head_cnt, .new = nv50_head_new }, + .dac = { .cnt = nv50_dac_cnt, .new = nv50_dac_new }, + .sor = { .cnt = g94_sor_cnt, .new = mcp89_sor_new }, + .pior = { .cnt = nv50_pior_cnt, .new = nv50_pior_new }, }; int mcp89_disp_new(struct nvkm_device *device, int index, struct nvkm_disp **pdisp) { - return nv50_disp_new_(&mcp89_disp, device, index, 2, pdisp); + return nv50_disp_new_(&mcp89_disp, device, index, pdisp); } |