Lines Matching refs:push
37 struct nvif_push *push = chan->chan.push; in nv04_fbcon_copyarea() local
40 ret = PUSH_WAIT(push, 4); in nv04_fbcon_copyarea()
44 PUSH_NVSQ(push, NV05F, 0x0300, (region->sy << 16) | region->sx, in nv04_fbcon_copyarea()
47 PUSH_KICK(push); in nv04_fbcon_copyarea()
57 struct nvif_push *push = chan->chan.push; in nv04_fbcon_fillrect() local
60 ret = PUSH_WAIT(push, 7); in nv04_fbcon_fillrect()
64 PUSH_NVSQ(push, NV04A, 0x02fc, (rect->rop != ROP_COPY) ? 1 : 3); in nv04_fbcon_fillrect()
67 PUSH_NVSQ(push, NV04A, 0x03fc, ((uint32_t *)info->pseudo_palette)[rect->color]); in nv04_fbcon_fillrect()
69 PUSH_NVSQ(push, NV04A, 0x03fc, rect->color); in nv04_fbcon_fillrect()
70 PUSH_NVSQ(push, NV04A, 0x0400, (rect->dx << 16) | rect->dy, in nv04_fbcon_fillrect()
72 PUSH_KICK(push); in nv04_fbcon_fillrect()
82 struct nvif_push *push = chan->chan.push; in nv04_fbcon_imageblit() local
92 ret = PUSH_WAIT(push, 8); in nv04_fbcon_imageblit()
105 PUSH_NVSQ(push, NV04A, 0x0be4, (image->dy << 16) | (image->dx & 0xffff), in nv04_fbcon_imageblit()
118 ret = PUSH_WAIT(push, iter_len + 1); in nv04_fbcon_imageblit()
122 PUSH_NVSQ(push, NV04A, 0x0c00, data, iter_len); in nv04_fbcon_imageblit()
127 PUSH_KICK(push); in nv04_fbcon_imageblit()
139 struct nvif_push *push = chan->chan.push; in nv04_fbcon_accel_init() local
203 if (PUSH_WAIT(push, 49 + (device->info.chipset >= 0x11 ? 4 : 0))) { in nv04_fbcon_accel_init()
208 PUSH_NVSQ(push, NV042, 0x0000, nfbdev->surf2d.handle); in nv04_fbcon_accel_init()
209 PUSH_NVSQ(push, NV042, 0x0184, chan->vram.handle, in nv04_fbcon_accel_init()
211 PUSH_NVSQ(push, NV042, 0x0300, surface_fmt, in nv04_fbcon_accel_init()
216 PUSH_NVSQ(push, NV043, 0x0000, nfbdev->rop.handle); in nv04_fbcon_accel_init()
217 PUSH_NVSQ(push, NV043, 0x0300, 0x55); in nv04_fbcon_accel_init()
219 PUSH_NVSQ(push, NV044, 0x0000, nfbdev->patt.handle); in nv04_fbcon_accel_init()
220 PUSH_NVSQ(push, NV044, 0x0300, pattern_fmt, in nv04_fbcon_accel_init()
233 PUSH_NVSQ(push, NV019, 0x0000, nfbdev->clip.handle); in nv04_fbcon_accel_init()
234 PUSH_NVSQ(push, NV019, 0x0300, 0, in nv04_fbcon_accel_init()
237 PUSH_NVSQ(push, NV05F, 0x0000, nfbdev->blit.handle); in nv04_fbcon_accel_init()
238 PUSH_NVSQ(push, NV05F, 0x019c, nfbdev->surf2d.handle); in nv04_fbcon_accel_init()
239 PUSH_NVSQ(push, NV05F, 0x02fc, 3); in nv04_fbcon_accel_init()
241 PUSH_NVSQ(push, NV09F, 0x0120, 0, in nv04_fbcon_accel_init()
246 PUSH_NVSQ(push, NV04A, 0x0000, nfbdev->gdi.handle); in nv04_fbcon_accel_init()
247 PUSH_NVSQ(push, NV04A, 0x0198, nfbdev->surf2d.handle); in nv04_fbcon_accel_init()
248 PUSH_NVSQ(push, NV04A, 0x0188, nfbdev->patt.handle, in nv04_fbcon_accel_init()
250 PUSH_NVSQ(push, NV04A, 0x0304, 1); in nv04_fbcon_accel_init()
251 PUSH_NVSQ(push, NV04A, 0x0300, rect_fmt); in nv04_fbcon_accel_init()
252 PUSH_NVSQ(push, NV04A, 0x02fc, 3); in nv04_fbcon_accel_init()
254 PUSH_KICK(push); in nv04_fbcon_accel_init()