diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2020-06-21 11:47:21 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2020-07-24 18:51:02 +1000 |
commit | a66a096d784843f6d4c8e4c0b028524baf747f4c (patch) | |
tree | 9a683b50cfc5f2517049fe6428578ff302782dc5 /drivers/gpu/drm/nouveau/dispnv50/head907d.c | |
parent | a41ef363f5e8a1608d5dd970aa706601145a142f (diff) |
drm/nouveau/kms/nv50-: use NVIDIA's headers for core head_olut_clr()
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/dispnv50/head907d.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/dispnv50/head907d.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/dispnv50/head907d.c b/drivers/gpu/drm/nouveau/dispnv50/head907d.c index 69aa24bc7678..a54ac9e6d8a4 100644 --- a/drivers/gpu/drm/nouveau/dispnv50/head907d.c +++ b/drivers/gpu/drm/nouveau/dispnv50/head907d.c @@ -220,8 +220,10 @@ head907d_olut_clr(struct nv50_head *head) if ((ret = PUSH_WAIT(push, 4))) return ret; - PUSH_NVSQ(push, NV907D, 0x0448 + (i * 0x300), 0x00000000); - PUSH_NVSQ(push, NV907D, 0x045c + (i * 0x300), 0x00000000); + PUSH_MTHD(push, NV907D, HEAD_SET_OUTPUT_LUT_LO(i), + NVDEF(NV907D, HEAD_SET_OUTPUT_LUT_LO, ENABLE, DISABLE)); + + PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMA_LUT(i), 0x00000000); return 0; } |