Commit a1c93078 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/disp: introduce object to track per-head functions/state

Primarily intended as a way to pass per-head state around during
supervisor handling, and share logic between NV50/GF119.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 4b2b42f8
...@@ -8,10 +8,7 @@ struct nvkm_disp { ...@@ -8,10 +8,7 @@ struct nvkm_disp {
const struct nvkm_disp_func *func; const struct nvkm_disp_func *func;
struct nvkm_engine engine; struct nvkm_engine engine;
struct { struct list_head head;
int nr;
} head;
struct list_head outp; struct list_head outp;
struct list_head conn; struct list_head conn;
......
...@@ -14,6 +14,11 @@ nvkm-y += nvkm/engine/disp/gp100.o ...@@ -14,6 +14,11 @@ nvkm-y += nvkm/engine/disp/gp100.o
nvkm-y += nvkm/engine/disp/gp102.o nvkm-y += nvkm/engine/disp/gp102.o
nvkm-y += nvkm/engine/disp/vga.o nvkm-y += nvkm/engine/disp/vga.o
nvkm-y += nvkm/engine/disp/head.o
nvkm-y += nvkm/engine/disp/headnv04.o
nvkm-y += nvkm/engine/disp/headnv50.o
nvkm-y += nvkm/engine/disp/headgf119.o
nvkm-y += nvkm/engine/disp/dacnv50.o nvkm-y += nvkm/engine/disp/dacnv50.o
nvkm-y += nvkm/engine/disp/piornv50.o nvkm-y += nvkm/engine/disp/piornv50.o
nvkm-y += nvkm/engine/disp/sornv50.o nvkm-y += nvkm/engine/disp/sornv50.o
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
*/ */
#include "priv.h" #include "priv.h"
#include "conn.h" #include "conn.h"
#include "head.h"
#include "outp.h" #include "outp.h"
#include <core/client.h> #include <core/client.h>
...@@ -249,6 +250,7 @@ nvkm_disp_oneinit(struct nvkm_engine *engine) ...@@ -249,6 +250,7 @@ nvkm_disp_oneinit(struct nvkm_engine *engine)
struct nvkm_bios *bios = disp->engine.subdev.device->bios; struct nvkm_bios *bios = disp->engine.subdev.device->bios;
struct nvkm_outp *outp, *outt, *pair; struct nvkm_outp *outp, *outt, *pair;
struct nvkm_conn *conn; struct nvkm_conn *conn;
struct nvkm_head *head;
struct nvbios_connE connE; struct nvbios_connE connE;
struct dcb_output dcbE; struct dcb_output dcbE;
u8 hpd = 0, ver, hdr; u8 hpd = 0, ver, hdr;
...@@ -375,8 +377,11 @@ nvkm_disp_oneinit(struct nvkm_engine *engine) ...@@ -375,8 +377,11 @@ nvkm_disp_oneinit(struct nvkm_engine *engine)
if (ret) if (ret)
return ret; return ret;
return nvkm_event_init(&nvkm_disp_vblank_func, 1, i = 0;
disp->head.nr, &disp->vblank); list_for_each_entry(head, &disp->head, head)
i = max(i, head->id + 1);
return nvkm_event_init(&nvkm_disp_vblank_func, 1, i, &disp->vblank);
} }
static void * static void *
...@@ -405,6 +410,12 @@ nvkm_disp_dtor(struct nvkm_engine *engine) ...@@ -405,6 +410,12 @@ nvkm_disp_dtor(struct nvkm_engine *engine)
nvkm_outp_del(&outp); nvkm_outp_del(&outp);
} }
while (!list_empty(&disp->head)) {
struct nvkm_head *head =
list_first_entry(&disp->head, typeof(*head), head);
nvkm_head_del(&head);
}
return data; return data;
} }
...@@ -420,10 +431,10 @@ nvkm_disp = { ...@@ -420,10 +431,10 @@ nvkm_disp = {
int int
nvkm_disp_ctor(const struct nvkm_disp_func *func, struct nvkm_device *device, nvkm_disp_ctor(const struct nvkm_disp_func *func, struct nvkm_device *device,
int index, int heads, struct nvkm_disp *disp) int index, struct nvkm_disp *disp)
{ {
disp->func = func; disp->func = func;
disp->head.nr = heads; INIT_LIST_HEAD(&disp->head);
INIT_LIST_HEAD(&disp->outp); INIT_LIST_HEAD(&disp->outp);
INIT_LIST_HEAD(&disp->conn); INIT_LIST_HEAD(&disp->conn);
return nvkm_engine_ctor(&nvkm_disp, device, index, true, &disp->engine); return nvkm_engine_ctor(&nvkm_disp, device, index, true, &disp->engine);
...@@ -431,9 +442,9 @@ nvkm_disp_ctor(const struct nvkm_disp_func *func, struct nvkm_device *device, ...@@ -431,9 +442,9 @@ nvkm_disp_ctor(const struct nvkm_disp_func *func, struct nvkm_device *device,
int int
nvkm_disp_new_(const struct nvkm_disp_func *func, struct nvkm_device *device, nvkm_disp_new_(const struct nvkm_disp_func *func, struct nvkm_device *device,
int index, int heads, struct nvkm_disp **pdisp) int index, struct nvkm_disp **pdisp)
{ {
if (!(*pdisp = kzalloc(sizeof(**pdisp), GFP_KERNEL))) if (!(*pdisp = kzalloc(sizeof(**pdisp), GFP_KERNEL)))
return -ENOMEM; return -ENOMEM;
return nvkm_disp_ctor(func, device, index, heads, *pdisp); return nvkm_disp_ctor(func, device, index, *pdisp);
} }
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "dmacnv50.h" #include "dmacnv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
#include <core/client.h> #include <core/client.h>
...@@ -50,7 +51,7 @@ nv50_disp_base_new(const struct nv50_disp_dmac_func *func, ...@@ -50,7 +51,7 @@ nv50_disp_base_new(const struct nv50_disp_dmac_func *func,
nvif_ioctl(parent, "create disp base channel dma vers %d " nvif_ioctl(parent, "create disp base channel dma vers %d "
"pushbuf %016llx head %d\n", "pushbuf %016llx head %d\n",
args->v0.version, args->v0.pushbuf, args->v0.head); args->v0.version, args->v0.pushbuf, args->v0.head);
if (args->v0.head > disp->base.head.nr) if (!nvkm_head_find(&disp->base, args->v0.head))
return -EINVAL; return -EINVAL;
push = args->v0.pushbuf; push = args->v0.pushbuf;
head = args->v0.head; head = args->v0.head;
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "channv50.h" #include "channv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
#include <core/client.h> #include <core/client.h>
...@@ -48,7 +49,7 @@ nv50_disp_curs_new(const struct nv50_disp_chan_func *func, ...@@ -48,7 +49,7 @@ nv50_disp_curs_new(const struct nv50_disp_chan_func *func,
if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
nvif_ioctl(parent, "create disp cursor vers %d head %d\n", nvif_ioctl(parent, "create disp cursor vers %d head %d\n",
args->v0.version, args->v0.head); args->v0.version, args->v0.head);
if (args->v0.head > disp->base.head.nr) if (!nvkm_head_find(&disp->base, args->v0.head))
return -EINVAL; return -EINVAL;
head = args->v0.head; head = args->v0.head;
} else } else
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -30,6 +31,7 @@ g84_disp = { ...@@ -30,6 +31,7 @@ g84_disp = {
.uevent = &nv50_disp_chan_uevent, .uevent = &nv50_disp_chan_uevent,
.super = nv50_disp_super, .super = nv50_disp_super,
.root = &g84_disp_root_oclass, .root = &g84_disp_root_oclass,
.head.new = nv50_head_new,
.head.vblank_init = nv50_disp_vblank_init, .head.vblank_init = nv50_disp_vblank_init,
.head.vblank_fini = nv50_disp_vblank_fini, .head.vblank_fini = nv50_disp_vblank_fini,
.head.scanoutpos = nv50_disp_root_scanoutpos, .head.scanoutpos = nv50_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -30,6 +31,7 @@ g94_disp = { ...@@ -30,6 +31,7 @@ g94_disp = {
.uevent = &nv50_disp_chan_uevent, .uevent = &nv50_disp_chan_uevent,
.super = nv50_disp_super, .super = nv50_disp_super,
.root = &g94_disp_root_oclass, .root = &g94_disp_root_oclass,
.head.new = nv50_head_new,
.head.vblank_init = nv50_disp_vblank_init, .head.vblank_init = nv50_disp_vblank_init,
.head.vblank_fini = nv50_disp_vblank_fini, .head.vblank_fini = nv50_disp_vblank_fini,
.head.scanoutpos = nv50_disp_root_scanoutpos, .head.scanoutpos = nv50_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
#include <subdev/bios.h> #include <subdev/bios.h>
...@@ -364,55 +365,55 @@ gf119_disp_super(struct work_struct *work) ...@@ -364,55 +365,55 @@ gf119_disp_super(struct work_struct *work)
container_of(work, struct nv50_disp, supervisor); container_of(work, struct nv50_disp, supervisor);
struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_subdev *subdev = &disp->base.engine.subdev;
struct nvkm_device *device = subdev->device; struct nvkm_device *device = subdev->device;
struct nvkm_head *head;
u32 mask[4]; u32 mask[4];
int head;
nvkm_debug(subdev, "supervisor %d\n", ffs(disp->super)); nvkm_debug(subdev, "supervisor %d\n", ffs(disp->super));
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
mask[head] = nvkm_rd32(device, 0x6101d4 + (head * 0x800)); mask[head->id] = nvkm_rd32(device, 0x6101d4 + (head->id * 0x800));
nvkm_debug(subdev, "head %d: %08x\n", head, mask[head]); HEAD_DBG(head, "%08x", mask[head->id]);
} }
if (disp->super & 0x00000001) { if (disp->super & 0x00000001) {
nv50_disp_chan_mthd(disp->chan[0], NV_DBG_DEBUG); nv50_disp_chan_mthd(disp->chan[0], NV_DBG_DEBUG);
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(mask[head] & 0x00001000)) if (!(mask[head->id] & 0x00001000))
continue; continue;
nvkm_debug(subdev, "supervisor 1.0 - head %d\n", head); nvkm_debug(subdev, "supervisor 1.0 - head %d\n", head->id);
gf119_disp_intr_unk1_0(disp, head); gf119_disp_intr_unk1_0(disp, head->id);
} }
} else } else
if (disp->super & 0x00000002) { if (disp->super & 0x00000002) {
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(mask[head] & 0x00001000)) if (!(mask[head->id] & 0x00001000))
continue; continue;
nvkm_debug(subdev, "supervisor 2.0 - head %d\n", head); nvkm_debug(subdev, "supervisor 2.0 - head %d\n", head->id);
gf119_disp_intr_unk2_0(disp, head); gf119_disp_intr_unk2_0(disp, head->id);
} }
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(mask[head] & 0x00010000)) if (!(mask[head->id] & 0x00010000))
continue; continue;
nvkm_debug(subdev, "supervisor 2.1 - head %d\n", head); nvkm_debug(subdev, "supervisor 2.1 - head %d\n", head->id);
gf119_disp_intr_unk2_1(disp, head); gf119_disp_intr_unk2_1(disp, head->id);
} }
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(mask[head] & 0x00001000)) if (!(mask[head->id] & 0x00001000))
continue; continue;
nvkm_debug(subdev, "supervisor 2.2 - head %d\n", head); nvkm_debug(subdev, "supervisor 2.2 - head %d\n", head->id);
gf119_disp_intr_unk2_2(disp, head); gf119_disp_intr_unk2_2(disp, head->id);
} }
} else } else
if (disp->super & 0x00000004) { if (disp->super & 0x00000004) {
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(mask[head] & 0x00001000)) if (!(mask[head->id] & 0x00001000))
continue; continue;
nvkm_debug(subdev, "supervisor 3.0 - head %d\n", head); nvkm_debug(subdev, "supervisor 3.0 - head %d\n", head->id);
gf119_disp_intr_unk4_0(disp, head); gf119_disp_intr_unk4_0(disp, head->id);
} }
} }
for (head = 0; head < disp->base.head.nr; head++) list_for_each_entry(head, &disp->base.head, head)
nvkm_wr32(device, 0x6101d4 + (head * 0x800), 0x00000000); nvkm_wr32(device, 0x6101d4 + (head->id * 0x800), 0x00000000);
nvkm_wr32(device, 0x6101d0, 0x80000000); nvkm_wr32(device, 0x6101d0, 0x80000000);
} }
...@@ -447,8 +448,8 @@ gf119_disp_intr(struct nv50_disp *disp) ...@@ -447,8 +448,8 @@ gf119_disp_intr(struct nv50_disp *disp)
{ {
struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_subdev *subdev = &disp->base.engine.subdev;
struct nvkm_device *device = subdev->device; struct nvkm_device *device = subdev->device;
struct nvkm_head *head;
u32 intr = nvkm_rd32(device, 0x610088); u32 intr = nvkm_rd32(device, 0x610088);
int i;
if (intr & 0x00000001) { if (intr & 0x00000001) {
u32 stat = nvkm_rd32(device, 0x61008c); u32 stat = nvkm_rd32(device, 0x61008c);
...@@ -485,14 +486,15 @@ gf119_disp_intr(struct nv50_disp *disp) ...@@ -485,14 +486,15 @@ gf119_disp_intr(struct nv50_disp *disp)
intr &= ~0x00100000; intr &= ~0x00100000;
} }
for (i = 0; i < disp->base.head.nr; i++) { list_for_each_entry(head, &disp->base.head, head) {
u32 mask = 0x01000000 << i; const u32 hoff = head->id * 0x800;
u32 mask = 0x01000000 << head->id;
if (mask & intr) { if (mask & intr) {
u32 stat = nvkm_rd32(device, 0x6100bc + (i * 0x800)); u32 stat = nvkm_rd32(device, 0x6100bc + hoff);
if (stat & 0x00000001) if (stat & 0x00000001)
nvkm_disp_vblank(&disp->base, i); nvkm_disp_vblank(&disp->base, head->id);
nvkm_mask(device, 0x6100bc + (i * 0x800), 0, 0); nvkm_mask(device, 0x6100bc + hoff, 0, 0);
nvkm_rd32(device, 0x6100c0 + (i * 0x800)); nvkm_rd32(device, 0x6100c0 + hoff);
} }
} }
} }
...@@ -512,6 +514,7 @@ gf119_disp = { ...@@ -512,6 +514,7 @@ gf119_disp = {
.uevent = &gf119_disp_chan_uevent, .uevent = &gf119_disp_chan_uevent,
.super = gf119_disp_super, .super = gf119_disp_super,
.root = &gf119_disp_root_oclass, .root = &gf119_disp_root_oclass,
.head.new = gf119_head_new,
.head.vblank_init = gf119_disp_vblank_init, .head.vblank_init = gf119_disp_vblank_init,
.head.vblank_fini = gf119_disp_vblank_fini, .head.vblank_fini = gf119_disp_vblank_fini,
.head.scanoutpos = gf119_disp_root_scanoutpos, .head.scanoutpos = gf119_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -31,6 +32,7 @@ gk104_disp = { ...@@ -31,6 +32,7 @@ gk104_disp = {
.uevent = &gf119_disp_chan_uevent, .uevent = &gf119_disp_chan_uevent,
.super = gf119_disp_super, .super = gf119_disp_super,
.root = &gk104_disp_root_oclass, .root = &gk104_disp_root_oclass,
.head.new = gf119_head_new,
.head.vblank_init = gf119_disp_vblank_init, .head.vblank_init = gf119_disp_vblank_init,
.head.vblank_fini = gf119_disp_vblank_fini, .head.vblank_fini = gf119_disp_vblank_fini,
.head.scanoutpos = gf119_disp_root_scanoutpos, .head.scanoutpos = gf119_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -31,6 +32,7 @@ gk110_disp = { ...@@ -31,6 +32,7 @@ gk110_disp = {
.uevent = &gf119_disp_chan_uevent, .uevent = &gf119_disp_chan_uevent,
.super = gf119_disp_super, .super = gf119_disp_super,
.root = &gk110_disp_root_oclass, .root = &gk110_disp_root_oclass,
.head.new = gf119_head_new,
.head.vblank_init = gf119_disp_vblank_init, .head.vblank_init = gf119_disp_vblank_init,
.head.vblank_fini = gf119_disp_vblank_fini, .head.vblank_fini = gf119_disp_vblank_fini,
.head.scanoutpos = gf119_disp_root_scanoutpos, .head.scanoutpos = gf119_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -31,6 +32,7 @@ gm107_disp = { ...@@ -31,6 +32,7 @@ gm107_disp = {
.uevent = &gf119_disp_chan_uevent, .uevent = &gf119_disp_chan_uevent,
.super = gf119_disp_super, .super = gf119_disp_super,
.root = &gm107_disp_root_oclass, .root = &gm107_disp_root_oclass,
.head.new = gf119_head_new,
.head.vblank_init = gf119_disp_vblank_init, .head.vblank_init = gf119_disp_vblank_init,
.head.vblank_fini = gf119_disp_vblank_fini, .head.vblank_fini = gf119_disp_vblank_fini,
.head.scanoutpos = gf119_disp_root_scanoutpos, .head.scanoutpos = gf119_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -31,6 +32,7 @@ gm200_disp = { ...@@ -31,6 +32,7 @@ gm200_disp = {
.uevent = &gf119_disp_chan_uevent, .uevent = &gf119_disp_chan_uevent,
.super = gf119_disp_super, .super = gf119_disp_super,
.root = &gm200_disp_root_oclass, .root = &gm200_disp_root_oclass,
.head.new = gf119_head_new,
.head.vblank_init = gf119_disp_vblank_init, .head.vblank_init = gf119_disp_vblank_init,
.head.vblank_fini = gf119_disp_vblank_fini, .head.vblank_fini = gf119_disp_vblank_fini,
.head.scanoutpos = gf119_disp_root_scanoutpos, .head.scanoutpos = gf119_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs <bskeggs@redhat.com> * Authors: Ben Skeggs <bskeggs@redhat.com>
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -31,6 +32,7 @@ gp100_disp = { ...@@ -31,6 +32,7 @@ gp100_disp = {
.uevent = &gf119_disp_chan_uevent, .uevent = &gf119_disp_chan_uevent,
.super = gf119_disp_super, .super = gf119_disp_super,
.root = &gp100_disp_root_oclass, .root = &gp100_disp_root_oclass,
.head.new = gf119_head_new,
.head.vblank_init = gf119_disp_vblank_init, .head.vblank_init = gf119_disp_vblank_init,
.head.vblank_fini = gf119_disp_vblank_fini, .head.vblank_fini = gf119_disp_vblank_fini,
.head.scanoutpos = gf119_disp_root_scanoutpos, .head.scanoutpos = gf119_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs <bskeggs@redhat.com> * Authors: Ben Skeggs <bskeggs@redhat.com>
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static void static void
...@@ -57,6 +58,7 @@ gp102_disp = { ...@@ -57,6 +58,7 @@ gp102_disp = {
.uevent = &gf119_disp_chan_uevent, .uevent = &gf119_disp_chan_uevent,
.super = gf119_disp_super, .super = gf119_disp_super,
.root = &gp102_disp_root_oclass, .root = &gp102_disp_root_oclass,
.head.new = gf119_head_new,
.head.vblank_init = gf119_disp_vblank_init, .head.vblank_init = gf119_disp_vblank_init,
.head.vblank_fini = gf119_disp_vblank_fini, .head.vblank_fini = gf119_disp_vblank_fini,
.head.scanoutpos = gf119_disp_root_scanoutpos, .head.scanoutpos = gf119_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -30,6 +31,7 @@ gt200_disp = { ...@@ -30,6 +31,7 @@ gt200_disp = {
.uevent = &nv50_disp_chan_uevent, .uevent = &nv50_disp_chan_uevent,
.super = nv50_disp_super, .super = nv50_disp_super,
.root = &gt200_disp_root_oclass, .root = &gt200_disp_root_oclass,
.head.new = nv50_head_new,
.head.vblank_init = nv50_disp_vblank_init, .head.vblank_init = nv50_disp_vblank_init,
.head.vblank_fini = nv50_disp_vblank_fini, .head.vblank_fini = nv50_disp_vblank_fini,
.head.scanoutpos = nv50_disp_root_scanoutpos, .head.scanoutpos = nv50_disp_root_scanoutpos,
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
static const struct nv50_disp_func static const struct nv50_disp_func
...@@ -30,6 +31,7 @@ gt215_disp = { ...@@ -30,6 +31,7 @@ gt215_disp = {
.uevent = &nv50_disp_chan_uevent, .uevent = &nv50_disp_chan_uevent,
.super = nv50_disp_super, .super = nv50_disp_super,
.root = &gt215_disp_root_oclass, .root = &gt215_disp_root_oclass,
.head.new = nv50_head_new,
.head.vblank_init = nv50_disp_vblank_init, .head.vblank_init = nv50_disp_vblank_init,
.head.vblank_fini = nv50_disp_vblank_fini, .head.vblank_fini = nv50_disp_vblank_fini,
.head.scanoutpos = nv50_disp_root_scanoutpos, .head.scanoutpos = nv50_disp_root_scanoutpos,
......
/*
* Copyright 2017 Red Hat Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include "head.h"
struct nvkm_head *
nvkm_head_find(struct nvkm_disp *disp, int id)
{
struct nvkm_head *head;
list_for_each_entry(head, &disp->head, head) {
if (head->id == id)
return head;
}
return NULL;
}
void
nvkm_head_del(struct nvkm_head **phead)
{
struct nvkm_head *head = *phead;
if (head) {
HEAD_DBG(head, "dtor");
list_del(&head->head);
kfree(*phead);
*phead = NULL;
}
}
int
nvkm_head_new_(const struct nvkm_head_func *func,
struct nvkm_disp *disp, int id)
{
struct nvkm_head *head;
if (!(head = kzalloc(sizeof(*head), GFP_KERNEL)))
return -ENOMEM;
head->func = func;
head->disp = disp;
head->id = id;
list_add_tail(&head->head, &disp->head);
HEAD_DBG(head, "ctor");
return 0;
}
#ifndef __NVKM_DISP_HEAD_H__
#define __NVKM_DISP_HEAD_H__
#include "priv.h"
struct nvkm_head {
const struct nvkm_head_func *func;
struct nvkm_disp *disp;
int id;
struct list_head head;
};
int nvkm_head_new_(const struct nvkm_head_func *, struct nvkm_disp *, int id);
void nvkm_head_del(struct nvkm_head **);
struct nvkm_head *nvkm_head_find(struct nvkm_disp *, int id);
struct nvkm_head_func {
};
#define HEAD_MSG(h,l,f,a...) do { \
struct nvkm_head *_h = (h); \
nvkm_##l(&_h->disp->engine.subdev, "head-%d: "f"\n", _h->id, ##a); \
} while(0)
#define HEAD_WARN(h,f,a...) HEAD_MSG((h), warn, f, ##a)
#define HEAD_DBG(h,f,a...) HEAD_MSG((h), debug, f, ##a)
int nv04_head_new(struct nvkm_disp *, int id);
int nv50_head_new(struct nvkm_disp *, int id);
int gf119_head_new(struct nvkm_disp *, int id);
#endif
/*
* Copyright 2017 Red Hat Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include "head.h"
static const struct nvkm_head_func
gf119_head = {
};
int
gf119_head_new(struct nvkm_disp *disp, int id)
{
return nvkm_head_new_(&gf119_head, disp, id);
}
/*
* Copyright 2017 Red Hat Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include "head.h"
static const struct nvkm_head_func
nv04_head = {
};
int
nv04_head_new(struct nvkm_disp *disp, int id)
{
return nvkm_head_new_(&nv04_head, disp, id);
}
/*
* Copyright 2017 Red Hat Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include "head.h"
static const struct nvkm_head_func
nv50_head = {
};
int
nv50_head_new(struct nvkm_disp *disp, int id)
{
return nvkm_head_new_(&nv50_head, disp, id);
}
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "priv.h" #include "priv.h"
#include "head.h"
static const struct nvkm_disp_oclass * static const struct nvkm_disp_oclass *
nv04_disp_root(struct nvkm_disp *disp) nv04_disp_root(struct nvkm_disp *disp)
...@@ -81,5 +82,17 @@ nv04_disp = { ...@@ -81,5 +82,17 @@ nv04_disp = {
int int
nv04_disp_new(struct nvkm_device *device, int index, struct nvkm_disp **pdisp) nv04_disp_new(struct nvkm_device *device, int index, struct nvkm_disp **pdisp)
{ {
return nvkm_disp_new_(&nv04_disp, device, index, 2, pdisp); int ret, i;
ret = nvkm_disp_new_(&nv04_disp, device, index, pdisp);
if (ret)
return ret;
for (i = 0; i < 2; i++) {
ret = nv04_head_new(*pdisp, i);
if (ret)
return ret;
}
return 0;
} }
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "nv50.h" #include "nv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
#include <core/client.h> #include <core/client.h>
...@@ -146,7 +147,7 @@ nv50_disp_new_(const struct nv50_disp_func *func, struct nvkm_device *device, ...@@ -146,7 +147,7 @@ nv50_disp_new_(const struct nv50_disp_func *func, struct nvkm_device *device,
int index, int heads, struct nvkm_disp **pdisp) int index, int heads, struct nvkm_disp **pdisp)
{ {
struct nv50_disp *disp; struct nv50_disp *disp;
int ret; int ret, i;
if (!(disp = kzalloc(sizeof(*disp), GFP_KERNEL))) if (!(disp = kzalloc(sizeof(*disp), GFP_KERNEL)))
return -ENOMEM; return -ENOMEM;
...@@ -154,10 +155,16 @@ nv50_disp_new_(const struct nv50_disp_func *func, struct nvkm_device *device, ...@@ -154,10 +155,16 @@ nv50_disp_new_(const struct nv50_disp_func *func, struct nvkm_device *device,
disp->func = func; disp->func = func;
*pdisp = &disp->base; *pdisp = &disp->base;
ret = nvkm_disp_ctor(&nv50_disp_, device, index, heads, &disp->base); ret = nvkm_disp_ctor(&nv50_disp_, device, index, &disp->base);
if (ret) if (ret)
return ret; return ret;
for (i = 0; func->head.new && i < heads; i++) {
ret = func->head.new(&disp->base, i);
if (ret)
return ret;
}
return nvkm_event_init(func->uevent, 1, 1 + (heads * 4), &disp->uevent); return nvkm_event_init(func->uevent, 1, 1 + (heads * 4), &disp->uevent);
} }
...@@ -684,43 +691,43 @@ nv50_disp_super(struct work_struct *work) ...@@ -684,43 +691,43 @@ nv50_disp_super(struct work_struct *work)
container_of(work, struct nv50_disp, supervisor); container_of(work, struct nv50_disp, supervisor);
struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_subdev *subdev = &disp->base.engine.subdev;
struct nvkm_device *device = subdev->device; struct nvkm_device *device = subdev->device;
struct nvkm_head *head;
u32 super = nvkm_rd32(device, 0x610030); u32 super = nvkm_rd32(device, 0x610030);
int head;
nvkm_debug(subdev, "supervisor %08x %08x\n", disp->super, super); nvkm_debug(subdev, "supervisor %08x %08x\n", disp->super, super);
if (disp->super & 0x00000010) { if (disp->super & 0x00000010) {
nv50_disp_chan_mthd(disp->chan[0], NV_DBG_DEBUG); nv50_disp_chan_mthd(disp->chan[0], NV_DBG_DEBUG);
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(super & (0x00000020 << head))) if (!(super & (0x00000020 << head->id)))
continue; continue;
if (!(super & (0x00000080 << head))) if (!(super & (0x00000080 << head->id)))
continue; continue;
nv50_disp_intr_unk10_0(disp, head); nv50_disp_intr_unk10_0(disp, head->id);
} }
} else } else
if (disp->super & 0x00000020) { if (disp->super & 0x00000020) {
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(super & (0x00000080 << head))) if (!(super & (0x00000080 << head->id)))
continue; continue;
nv50_disp_intr_unk20_0(disp, head); nv50_disp_intr_unk20_0(disp, head->id);
} }
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(super & (0x00000200 << head))) if (!(super & (0x00000200 << head->id)))
continue; continue;
nv50_disp_intr_unk20_1(disp, head); nv50_disp_intr_unk20_1(disp, head->id);
} }
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(super & (0x00000080 << head))) if (!(super & (0x00000080 << head->id)))
continue; continue;
nv50_disp_intr_unk20_2(disp, head); nv50_disp_intr_unk20_2(disp, head->id);
} }
} else } else
if (disp->super & 0x00000040) { if (disp->super & 0x00000040) {
for (head = 0; head < disp->base.head.nr; head++) { list_for_each_entry(head, &disp->base.head, head) {
if (!(super & (0x00000080 << head))) if (!(super & (0x00000080 << head->id)))
continue; continue;
nv50_disp_intr_unk40_0(disp, head); nv50_disp_intr_unk40_0(disp, head->id);
} }
nv50_disp_update_sppll1(disp); nv50_disp_update_sppll1(disp);
} }
...@@ -819,6 +826,7 @@ nv50_disp = { ...@@ -819,6 +826,7 @@ nv50_disp = {
.uevent = &nv50_disp_chan_uevent, .uevent = &nv50_disp_chan_uevent,
.super = nv50_disp_super, .super = nv50_disp_super,
.root = &nv50_disp_root_oclass, .root = &nv50_disp_root_oclass,
.head.new = nv50_head_new,
.head.vblank_init = nv50_disp_vblank_init, .head.vblank_init = nv50_disp_vblank_init,
.head.vblank_fini = nv50_disp_vblank_fini, .head.vblank_fini = nv50_disp_vblank_fini,
.head.scanoutpos = nv50_disp_root_scanoutpos, .head.scanoutpos = nv50_disp_root_scanoutpos,
......
...@@ -75,6 +75,7 @@ struct nv50_disp_func { ...@@ -75,6 +75,7 @@ struct nv50_disp_func {
const struct nvkm_disp_oclass *root; const struct nvkm_disp_oclass *root;
struct { struct {
int (*new)(struct nvkm_disp *, int id);
void (*vblank_init)(struct nv50_disp *, int head); void (*vblank_init)(struct nv50_disp *, int head);
void (*vblank_fini)(struct nv50_disp *, int head); void (*vblank_fini)(struct nv50_disp *, int head);
int (*scanoutpos)(NV50_DISP_MTHD_V0); int (*scanoutpos)(NV50_DISP_MTHD_V0);
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "channv50.h" #include "channv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
#include <core/client.h> #include <core/client.h>
...@@ -48,7 +49,7 @@ nv50_disp_oimm_new(const struct nv50_disp_chan_func *func, ...@@ -48,7 +49,7 @@ nv50_disp_oimm_new(const struct nv50_disp_chan_func *func,
if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
nvif_ioctl(parent, "create disp overlay vers %d head %d\n", nvif_ioctl(parent, "create disp overlay vers %d head %d\n",
args->v0.version, args->v0.head); args->v0.version, args->v0.head);
if (args->v0.head > disp->base.head.nr) if (!nvkm_head_find(&disp->base, args->v0.head))
return -EINVAL; return -EINVAL;
head = args->v0.head; head = args->v0.head;
} else } else
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "dmacnv50.h" #include "dmacnv50.h"
#include "head.h"
#include "rootnv50.h" #include "rootnv50.h"
#include <core/client.h> #include <core/client.h>
...@@ -50,7 +51,7 @@ nv50_disp_ovly_new(const struct nv50_disp_dmac_func *func, ...@@ -50,7 +51,7 @@ nv50_disp_ovly_new(const struct nv50_disp_dmac_func *func,
nvif_ioctl(parent, "create disp overlay channel dma vers %d " nvif_ioctl(parent, "create disp overlay channel dma vers %d "
"pushbuf %016llx head %d\n", "pushbuf %016llx head %d\n",
args->v0.version, args->v0.pushbuf, args->v0.head); args->v0.version, args->v0.pushbuf, args->v0.head);
if (args->v0.head > disp->base.head.nr) if (!nvkm_head_find(&disp->base, args->v0.head))
return -EINVAL; return -EINVAL;
push = args->v0.pushbuf; push = args->v0.pushbuf;
head = args->v0.head; head = args->v0.head;
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
#include "outp.h" #include "outp.h"
int nvkm_disp_ctor(const struct nvkm_disp_func *, struct nvkm_device *, int nvkm_disp_ctor(const struct nvkm_disp_func *, struct nvkm_device *,
int index, int heads, struct nvkm_disp *); int index, struct nvkm_disp *);
int nvkm_disp_new_(const struct nvkm_disp_func *, struct nvkm_device *, int nvkm_disp_new_(const struct nvkm_disp_func *, struct nvkm_device *,
int index, int heads, struct nvkm_disp **); int index, struct nvkm_disp **);
void nvkm_disp_vblank(struct nvkm_disp *, int head); void nvkm_disp_vblank(struct nvkm_disp *, int head);
struct nvkm_disp_func_outp { struct nvkm_disp_func_outp {
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* Authors: Ben Skeggs * Authors: Ben Skeggs
*/ */
#include "rootnv50.h" #include "rootnv50.h"
#include "head.h"
#include "dmacnv50.h" #include "dmacnv50.h"
#include <core/client.h> #include <core/client.h>
...@@ -78,6 +79,7 @@ int ...@@ -78,6 +79,7 @@ int
gf119_disp_root_init(struct nv50_disp_root *root) gf119_disp_root_init(struct nv50_disp_root *root)
{ {
struct nv50_disp *disp = root->disp; struct nv50_disp *disp = root->disp;
struct nvkm_head *head;
struct nvkm_device *device = disp->base.engine.subdev.device; struct nvkm_device *device = disp->base.engine.subdev.device;
u32 tmp; u32 tmp;
int i; int i;
...@@ -88,13 +90,14 @@ gf119_disp_root_init(struct nv50_disp_root *root) ...@@ -88,13 +90,14 @@ gf119_disp_root_init(struct nv50_disp_root *root)
*/ */
/* ... CRTC caps */ /* ... CRTC caps */
for (i = 0; i < disp->base.head.nr; i++) { list_for_each_entry(head, &disp->base.head, head) {
tmp = nvkm_rd32(device, 0x616104 + (i * 0x800)); const u32 hoff = head->id * 0x800;
nvkm_wr32(device, 0x6101b4 + (i * 0x800), tmp); tmp = nvkm_rd32(device, 0x616104 + hoff);
tmp = nvkm_rd32(device, 0x616108 + (i * 0x800)); nvkm_wr32(device, 0x6101b4 + hoff, tmp);
nvkm_wr32(device, 0x6101b8 + (i * 0x800), tmp); tmp = nvkm_rd32(device, 0x616108 + hoff);
tmp = nvkm_rd32(device, 0x61610c + (i * 0x800)); nvkm_wr32(device, 0x6101b8 + hoff, tmp);
nvkm_wr32(device, 0x6101bc + (i * 0x800), tmp); tmp = nvkm_rd32(device, 0x61610c + hoff);
nvkm_wr32(device, 0x6101bc + hoff, tmp);
} }
/* ... DAC caps */ /* ... DAC caps */
...@@ -134,8 +137,10 @@ gf119_disp_root_init(struct nv50_disp_root *root) ...@@ -134,8 +137,10 @@ gf119_disp_root_init(struct nv50_disp_root *root)
* *
* ftp://download.nvidia.com/open-gpu-doc/gk104-disable-underflow-reporting/1/gk104-disable-underflow-reporting.txt * ftp://download.nvidia.com/open-gpu-doc/gk104-disable-underflow-reporting/1/gk104-disable-underflow-reporting.txt
*/ */
for (i = 0; i < disp->base.head.nr; i++) list_for_each_entry(head, &disp->base.head, head) {
nvkm_mask(device, 0x616308 + (i * 0x800), 0x00000111, 0x00000010); const u32 hoff = head->id * 0x800;
nvkm_mask(device, 0x616308 + hoff, 0x00000111, 0x00000010);
}
return 0; return 0;
} }
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
*/ */
#include "rootnv50.h" #include "rootnv50.h"
#include "dmacnv50.h" #include "dmacnv50.h"
#include "head.h"
#include <core/client.h> #include <core/client.h>
#include <core/ramht.h> #include <core/ramht.h>
...@@ -102,7 +103,7 @@ nv50_disp_root_mthd_(struct nvkm_object *object, u32 mthd, void *data, u32 size) ...@@ -102,7 +103,7 @@ nv50_disp_root_mthd_(struct nvkm_object *object, u32 mthd, void *data, u32 size)
} else } else
return ret; return ret;
if (head < 0 || head >= disp->base.head.nr) if (!nvkm_head_find(&disp->base, head))
return -ENXIO; return -ENXIO;
if (mask) { if (mask) {
...@@ -351,6 +352,7 @@ int ...@@ -351,6 +352,7 @@ int
nv50_disp_root_init(struct nv50_disp_root *root) nv50_disp_root_init(struct nv50_disp_root *root)
{ {
struct nv50_disp *disp = root->disp; struct nv50_disp *disp = root->disp;
struct nvkm_head *head;
struct nvkm_device *device = disp->base.engine.subdev.device; struct nvkm_device *device = disp->base.engine.subdev.device;
u32 tmp; u32 tmp;
int i; int i;
...@@ -363,15 +365,15 @@ nv50_disp_root_init(struct nv50_disp_root *root) ...@@ -363,15 +365,15 @@ nv50_disp_root_init(struct nv50_disp_root *root)
nvkm_wr32(device, 0x610184, tmp); nvkm_wr32(device, 0x610184, tmp);
/* ... CRTC caps */ /* ... CRTC caps */
for (i = 0; i < disp->base.head.nr; i++) { list_for_each_entry(head, &disp->base.head, head) {
tmp = nvkm_rd32(device, 0x616100 + (i * 0x800)); tmp = nvkm_rd32(device, 0x616100 + (head->id * 0x800));
nvkm_wr32(device, 0x610190 + (i * 0x10), tmp); nvkm_wr32(device, 0x610190 + (head->id * 0x10), tmp);
tmp = nvkm_rd32(device, 0x616104 + (i * 0x800)); tmp = nvkm_rd32(device, 0x616104 + (head->id * 0x800));
nvkm_wr32(device, 0x610194 + (i * 0x10), tmp); nvkm_wr32(device, 0x610194 + (head->id * 0x10), tmp);
tmp = nvkm_rd32(device, 0x616108 + (i * 0x800)); tmp = nvkm_rd32(device, 0x616108 + (head->id * 0x800));
nvkm_wr32(device, 0x610198 + (i * 0x10), tmp); nvkm_wr32(device, 0x610198 + (head->id * 0x10), tmp);
tmp = nvkm_rd32(device, 0x61610c + (i * 0x800)); tmp = nvkm_rd32(device, 0x61610c + (head->id * 0x800));
nvkm_wr32(device, 0x61019c + (i * 0x10), tmp); nvkm_wr32(device, 0x61019c + (head->id * 0x10), tmp);
} }
/* ... DAC caps */ /* ... DAC caps */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment