int (*curs_set)(struct nv50_head *, struct nv50_head_atom *);
        int (*curs_clr)(struct nv50_head *);
        int (*base)(struct nv50_head *, struct nv50_head_atom *);
-       void (*ovly)(struct nv50_head *, struct nv50_head_atom *);
+       int (*ovly)(struct nv50_head *, struct nv50_head_atom *);
        void (*dither)(struct nv50_head *, struct nv50_head_atom *);
        void (*procamp)(struct nv50_head *, struct nv50_head_atom *);
        void (*or)(struct nv50_head *, struct nv50_head_atom *);
 int head507d_curs_format(struct nv50_head *, struct nv50_wndw_atom *,
                         struct nv50_head_atom *);
 int head507d_base(struct nv50_head *, struct nv50_head_atom *);
-void head507d_ovly(struct nv50_head *, struct nv50_head_atom *);
+int head507d_ovly(struct nv50_head *, struct nv50_head_atom *);
 void head507d_dither(struct nv50_head *, struct nv50_head_atom *);
 void head507d_procamp(struct nv50_head *, struct nv50_head_atom *);
 
 int head907d_core_clr(struct nv50_head *);
 int head907d_curs_set(struct nv50_head *, struct nv50_head_atom *);
 int head907d_curs_clr(struct nv50_head *);
-void head907d_ovly(struct nv50_head *, struct nv50_head_atom *);
+int head907d_ovly(struct nv50_head *, struct nv50_head_atom *);
 void head907d_procamp(struct nv50_head *, struct nv50_head_atom *);
 void head907d_or(struct nv50_head *, struct nv50_head_atom *);
 
 
        }
 }
 
-void
+int
 head507d_ovly(struct nv50_head *head, struct nv50_head_atom *asyh)
 {
-       struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
+       struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
+       const int i = head->base.index;
        u32 bounds = 0;
-       u32 *push;
+       int ret;
 
        if (asyh->ovly.cpp) {
                switch (asyh->ovly.cpp) {
                bounds |= 0x00000100;
        }
 
-       if ((push = evo_wait(core, 2))) {
-               evo_mthd(push, 0x0904 + head->base.index * 0x400, 1);
-               evo_data(push, bounds);
-               evo_kick(push, core);
-       }
+       if ((ret = PUSH_WAIT(push, 2)))
+               return ret;
+
+       PUSH_NVSQ(push, NV507D, 0x0904 + (i * 0x400), bounds);
+       return 0;
 }
 
 int
 
        }
 }
 
-void
+int
 head907d_ovly(struct nv50_head *head, struct nv50_head_atom *asyh)
 {
-       struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
+       struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
+       const int i = head->base.index;
        u32 bounds = 0;
-       u32 *push;
+       int ret;
 
        if (asyh->ovly.cpp) {
                switch (asyh->ovly.cpp) {
                bounds |= 0x00000100;
        }
 
-       if ((push = evo_wait(core, 2))) {
-               evo_mthd(push, 0x04d4 + head->base.index * 0x300, 1);
-               evo_data(push, bounds);
-               evo_kick(push, core);
-       }
+       if ((ret = PUSH_WAIT(push, 2)))
+               return ret;
+
+       PUSH_NVSQ(push, NV907D, 0x04d4 + (i * 0x300), bounds);
+       return 0;
 }
 
 static int