Loading...
1/*
2 * Copyright 2010 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs
23 */
24
25#include "drmP.h"
26#include "nouveau_drv.h"
27#include "nouveau_dma.h"
28#include "nouveau_ramht.h"
29#include "nouveau_fbcon.h"
30#include "nouveau_mm.h"
31
32int
33nv50_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
34{
35 struct nouveau_fbdev *nfbdev = info->par;
36 struct drm_device *dev = nfbdev->dev;
37 struct drm_nouveau_private *dev_priv = dev->dev_private;
38 struct nouveau_channel *chan = dev_priv->channel;
39 int ret;
40
41 ret = RING_SPACE(chan, rect->rop == ROP_COPY ? 7 : 11);
42 if (ret)
43 return ret;
44
45 if (rect->rop != ROP_COPY) {
46 BEGIN_RING(chan, NvSub2D, 0x02ac, 1);
47 OUT_RING(chan, 1);
48 }
49 BEGIN_RING(chan, NvSub2D, 0x0588, 1);
50 if (info->fix.visual == FB_VISUAL_TRUECOLOR ||
51 info->fix.visual == FB_VISUAL_DIRECTCOLOR)
52 OUT_RING(chan, ((uint32_t *)info->pseudo_palette)[rect->color]);
53 else
54 OUT_RING(chan, rect->color);
55 BEGIN_RING(chan, NvSub2D, 0x0600, 4);
56 OUT_RING(chan, rect->dx);
57 OUT_RING(chan, rect->dy);
58 OUT_RING(chan, rect->dx + rect->width);
59 OUT_RING(chan, rect->dy + rect->height);
60 if (rect->rop != ROP_COPY) {
61 BEGIN_RING(chan, NvSub2D, 0x02ac, 1);
62 OUT_RING(chan, 3);
63 }
64 FIRE_RING(chan);
65 return 0;
66}
67
68int
69nv50_fbcon_copyarea(struct fb_info *info, const struct fb_copyarea *region)
70{
71 struct nouveau_fbdev *nfbdev = info->par;
72 struct drm_device *dev = nfbdev->dev;
73 struct drm_nouveau_private *dev_priv = dev->dev_private;
74 struct nouveau_channel *chan = dev_priv->channel;
75 int ret;
76
77 ret = RING_SPACE(chan, 12);
78 if (ret)
79 return ret;
80
81 BEGIN_RING(chan, NvSub2D, 0x0110, 1);
82 OUT_RING(chan, 0);
83 BEGIN_RING(chan, NvSub2D, 0x08b0, 4);
84 OUT_RING(chan, region->dx);
85 OUT_RING(chan, region->dy);
86 OUT_RING(chan, region->width);
87 OUT_RING(chan, region->height);
88 BEGIN_RING(chan, NvSub2D, 0x08d0, 4);
89 OUT_RING(chan, 0);
90 OUT_RING(chan, region->sx);
91 OUT_RING(chan, 0);
92 OUT_RING(chan, region->sy);
93 FIRE_RING(chan);
94 return 0;
95}
96
97int
98nv50_fbcon_imageblit(struct fb_info *info, const struct fb_image *image)
99{
100 struct nouveau_fbdev *nfbdev = info->par;
101 struct drm_device *dev = nfbdev->dev;
102 struct drm_nouveau_private *dev_priv = dev->dev_private;
103 struct nouveau_channel *chan = dev_priv->channel;
104 uint32_t width, dwords, *data = (uint32_t *)image->data;
105 uint32_t mask = ~(~0 >> (32 - info->var.bits_per_pixel));
106 uint32_t *palette = info->pseudo_palette;
107 int ret;
108
109 if (image->depth != 1)
110 return -ENODEV;
111
112 ret = RING_SPACE(chan, 11);
113 if (ret)
114 return ret;
115
116 width = ALIGN(image->width, 32);
117 dwords = (width * image->height) >> 5;
118
119 BEGIN_RING(chan, NvSub2D, 0x0814, 2);
120 if (info->fix.visual == FB_VISUAL_TRUECOLOR ||
121 info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
122 OUT_RING(chan, palette[image->bg_color] | mask);
123 OUT_RING(chan, palette[image->fg_color] | mask);
124 } else {
125 OUT_RING(chan, image->bg_color);
126 OUT_RING(chan, image->fg_color);
127 }
128 BEGIN_RING(chan, NvSub2D, 0x0838, 2);
129 OUT_RING(chan, image->width);
130 OUT_RING(chan, image->height);
131 BEGIN_RING(chan, NvSub2D, 0x0850, 4);
132 OUT_RING(chan, 0);
133 OUT_RING(chan, image->dx);
134 OUT_RING(chan, 0);
135 OUT_RING(chan, image->dy);
136
137 while (dwords) {
138 int push = dwords > 2047 ? 2047 : dwords;
139
140 ret = RING_SPACE(chan, push + 1);
141 if (ret)
142 return ret;
143
144 dwords -= push;
145
146 BEGIN_RING(chan, NvSub2D, 0x40000860, push);
147 OUT_RINGp(chan, data, push);
148 data += push;
149 }
150
151 FIRE_RING(chan);
152 return 0;
153}
154
155int
156nv50_fbcon_accel_init(struct fb_info *info)
157{
158 struct nouveau_fbdev *nfbdev = info->par;
159 struct drm_device *dev = nfbdev->dev;
160 struct drm_nouveau_private *dev_priv = dev->dev_private;
161 struct nouveau_channel *chan = dev_priv->channel;
162 struct nouveau_framebuffer *fb = &nfbdev->nouveau_fb;
163 int ret, format;
164
165 switch (info->var.bits_per_pixel) {
166 case 8:
167 format = 0xf3;
168 break;
169 case 15:
170 format = 0xf8;
171 break;
172 case 16:
173 format = 0xe8;
174 break;
175 case 32:
176 switch (info->var.transp.length) {
177 case 0: /* depth 24 */
178 case 8: /* depth 32, just use 24.. */
179 format = 0xe6;
180 break;
181 case 2: /* depth 30 */
182 format = 0xd1;
183 break;
184 default:
185 return -EINVAL;
186 }
187 break;
188 default:
189 return -EINVAL;
190 }
191
192 ret = nouveau_gpuobj_gr_new(dev_priv->channel, Nv2D, 0x502d);
193 if (ret)
194 return ret;
195
196 ret = RING_SPACE(chan, 59);
197 if (ret) {
198 nouveau_fbcon_gpu_lockup(info);
199 return ret;
200 }
201
202 BEGIN_RING(chan, NvSub2D, 0x0000, 1);
203 OUT_RING(chan, Nv2D);
204 BEGIN_RING(chan, NvSub2D, 0x0180, 4);
205 OUT_RING(chan, NvNotify0);
206 OUT_RING(chan, chan->vram_handle);
207 OUT_RING(chan, chan->vram_handle);
208 OUT_RING(chan, chan->vram_handle);
209 BEGIN_RING(chan, NvSub2D, 0x0290, 1);
210 OUT_RING(chan, 0);
211 BEGIN_RING(chan, NvSub2D, 0x0888, 1);
212 OUT_RING(chan, 1);
213 BEGIN_RING(chan, NvSub2D, 0x02ac, 1);
214 OUT_RING(chan, 3);
215 BEGIN_RING(chan, NvSub2D, 0x02a0, 1);
216 OUT_RING(chan, 0x55);
217 BEGIN_RING(chan, NvSub2D, 0x08c0, 4);
218 OUT_RING(chan, 0);
219 OUT_RING(chan, 1);
220 OUT_RING(chan, 0);
221 OUT_RING(chan, 1);
222 BEGIN_RING(chan, NvSub2D, 0x0580, 2);
223 OUT_RING(chan, 4);
224 OUT_RING(chan, format);
225 BEGIN_RING(chan, NvSub2D, 0x02e8, 2);
226 OUT_RING(chan, 2);
227 OUT_RING(chan, 1);
228 BEGIN_RING(chan, NvSub2D, 0x0804, 1);
229 OUT_RING(chan, format);
230 BEGIN_RING(chan, NvSub2D, 0x0800, 1);
231 OUT_RING(chan, 1);
232 BEGIN_RING(chan, NvSub2D, 0x0808, 3);
233 OUT_RING(chan, 0);
234 OUT_RING(chan, 0);
235 OUT_RING(chan, 1);
236 BEGIN_RING(chan, NvSub2D, 0x081c, 1);
237 OUT_RING(chan, 1);
238 BEGIN_RING(chan, NvSub2D, 0x0840, 4);
239 OUT_RING(chan, 0);
240 OUT_RING(chan, 1);
241 OUT_RING(chan, 0);
242 OUT_RING(chan, 1);
243 BEGIN_RING(chan, NvSub2D, 0x0200, 2);
244 OUT_RING(chan, format);
245 OUT_RING(chan, 1);
246 BEGIN_RING(chan, NvSub2D, 0x0214, 5);
247 OUT_RING(chan, info->fix.line_length);
248 OUT_RING(chan, info->var.xres_virtual);
249 OUT_RING(chan, info->var.yres_virtual);
250 OUT_RING(chan, upper_32_bits(fb->vma.offset));
251 OUT_RING(chan, lower_32_bits(fb->vma.offset));
252 BEGIN_RING(chan, NvSub2D, 0x0230, 2);
253 OUT_RING(chan, format);
254 OUT_RING(chan, 1);
255 BEGIN_RING(chan, NvSub2D, 0x0244, 5);
256 OUT_RING(chan, info->fix.line_length);
257 OUT_RING(chan, info->var.xres_virtual);
258 OUT_RING(chan, info->var.yres_virtual);
259 OUT_RING(chan, upper_32_bits(fb->vma.offset));
260 OUT_RING(chan, lower_32_bits(fb->vma.offset));
261
262 return 0;
263}
264
1/*
2 * Copyright 2010 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs
23 */
24#define NVIF_DEBUG_PRINT_DISABLE
25#include "nouveau_drv.h"
26#include "nouveau_dma.h"
27#include "nouveau_fbcon.h"
28#include "nouveau_vmm.h"
29
30#include <nvif/push206e.h>
31
32#include <nvhw/class/cl502d.h>
33
34int
35nv50_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
36{
37 struct nouveau_fbdev *nfbdev = info->par;
38 struct nouveau_drm *drm = nouveau_drm(nfbdev->helper.dev);
39 struct nouveau_channel *chan = drm->channel;
40 struct nvif_push *push = chan->chan.push;
41 u32 colour;
42 int ret;
43
44 if (info->fix.visual == FB_VISUAL_TRUECOLOR ||
45 info->fix.visual == FB_VISUAL_DIRECTCOLOR)
46 colour = ((uint32_t *)info->pseudo_palette)[rect->color];
47 else
48 colour = rect->color;
49
50 ret = PUSH_WAIT(push, rect->rop == ROP_COPY ? 7 : 11);
51 if (ret)
52 return ret;
53
54 if (rect->rop != ROP_COPY) {
55 PUSH_MTHD(push, NV502D, SET_OPERATION,
56 NVDEF(NV502D, SET_OPERATION, V, ROP_AND));
57 }
58
59 PUSH_MTHD(push, NV502D, SET_RENDER_SOLID_PRIM_COLOR, colour);
60
61 PUSH_MTHD(push, NV502D, RENDER_SOLID_PRIM_POINT_SET_X(0), rect->dx,
62 RENDER_SOLID_PRIM_POINT_Y(0), rect->dy,
63 RENDER_SOLID_PRIM_POINT_SET_X(1), rect->dx + rect->width,
64 RENDER_SOLID_PRIM_POINT_Y(1), rect->dy + rect->height);
65
66 if (rect->rop != ROP_COPY) {
67 PUSH_MTHD(push, NV502D, SET_OPERATION,
68 NVDEF(NV502D, SET_OPERATION, V, SRCCOPY));
69 }
70
71 PUSH_KICK(push);
72 return 0;
73}
74
75int
76nv50_fbcon_copyarea(struct fb_info *info, const struct fb_copyarea *region)
77{
78 struct nouveau_fbdev *nfbdev = info->par;
79 struct nouveau_drm *drm = nouveau_drm(nfbdev->helper.dev);
80 struct nouveau_channel *chan = drm->channel;
81 struct nvif_push *push = chan->chan.push;
82 int ret;
83
84 ret = PUSH_WAIT(push, 12);
85 if (ret)
86 return ret;
87
88 PUSH_MTHD(push, NV502D, WAIT_FOR_IDLE, 0);
89
90 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_MEMORY_DST_X0, region->dx,
91 SET_PIXELS_FROM_MEMORY_DST_Y0, region->dy,
92 SET_PIXELS_FROM_MEMORY_DST_WIDTH, region->width,
93 SET_PIXELS_FROM_MEMORY_DST_HEIGHT, region->height);
94
95 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_MEMORY_SRC_X0_FRAC, 0,
96 SET_PIXELS_FROM_MEMORY_SRC_X0_INT, region->sx,
97 SET_PIXELS_FROM_MEMORY_SRC_Y0_FRAC, 0,
98 PIXELS_FROM_MEMORY_SRC_Y0_INT, region->sy);
99 PUSH_KICK(push);
100 return 0;
101}
102
103int
104nv50_fbcon_imageblit(struct fb_info *info, const struct fb_image *image)
105{
106 struct nouveau_fbdev *nfbdev = info->par;
107 struct nouveau_drm *drm = nouveau_drm(nfbdev->helper.dev);
108 struct nouveau_channel *chan = drm->channel;
109 struct nvif_push *push = chan->chan.push;
110 uint32_t dwords, *data = (uint32_t *)image->data;
111 uint32_t mask = ~(~0 >> (32 - info->var.bits_per_pixel));
112 uint32_t *palette = info->pseudo_palette, bg, fg;
113 int ret;
114
115 if (image->depth != 1)
116 return -ENODEV;
117
118 if (info->fix.visual == FB_VISUAL_TRUECOLOR ||
119 info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
120 bg = palette[image->bg_color] | mask;
121 fg = palette[image->fg_color] | mask;
122 } else {
123 bg = image->bg_color;
124 fg = image->fg_color;
125 }
126
127 ret = PUSH_WAIT(push, 11);
128 if (ret)
129 return ret;
130
131 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_CPU_COLOR0, bg,
132 SET_PIXELS_FROM_CPU_COLOR1, fg);
133
134 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_CPU_SRC_WIDTH, image->width,
135 SET_PIXELS_FROM_CPU_SRC_HEIGHT, image->height);
136
137 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_CPU_DST_X0_FRAC, 0,
138 SET_PIXELS_FROM_CPU_DST_X0_INT, image->dx,
139 SET_PIXELS_FROM_CPU_DST_Y0_FRAC, 0,
140 SET_PIXELS_FROM_CPU_DST_Y0_INT, image->dy);
141
142 dwords = ALIGN(ALIGN(image->width, 8) * image->height, 32) >> 5;
143 while (dwords) {
144 int count = dwords > 2047 ? 2047 : dwords;
145
146 ret = PUSH_WAIT(push, count + 1);
147 if (ret)
148 return ret;
149
150 dwords -= count;
151
152 PUSH_NINC(push, NV502D, PIXELS_FROM_CPU_DATA, data, count);
153 data += count;
154 }
155
156 PUSH_KICK(push);
157 return 0;
158}
159
160int
161nv50_fbcon_accel_init(struct fb_info *info)
162{
163 struct nouveau_fbdev *nfbdev = info->par;
164 struct drm_device *dev = nfbdev->helper.dev;
165 struct nouveau_drm *drm = nouveau_drm(dev);
166 struct nouveau_channel *chan = drm->channel;
167 struct nvif_push *push = chan->chan.push;
168 int ret, format;
169
170 switch (info->var.bits_per_pixel) {
171 case 8:
172 format = NV502D_SET_DST_FORMAT_V_Y8;
173 break;
174 case 15:
175 format = NV502D_SET_DST_FORMAT_V_X1R5G5B5;
176 break;
177 case 16:
178 format = NV502D_SET_DST_FORMAT_V_R5G6B5;
179 break;
180 case 32:
181 switch (info->var.transp.length) {
182 case 0: /* depth 24 */
183 case 8: /* depth 32, just use 24.. */
184 format = NV502D_SET_DST_FORMAT_V_X8R8G8B8;
185 break;
186 case 2: /* depth 30 */
187 format = NV502D_SET_DST_FORMAT_V_A2B10G10R10;
188 break;
189 default:
190 return -EINVAL;
191 }
192 break;
193 default:
194 return -EINVAL;
195 }
196
197 ret = nvif_object_ctor(&chan->user, "fbconTwoD", 0x502d, 0x502d,
198 NULL, 0, &nfbdev->twod);
199 if (ret)
200 return ret;
201
202 ret = PUSH_WAIT(push, 56);
203 if (ret) {
204 nouveau_fbcon_gpu_lockup(info);
205 return ret;
206 }
207
208 PUSH_MTHD(push, NV502D, SET_OBJECT, nfbdev->twod.handle);
209 PUSH_MTHD(push, NV502D, SET_DST_CONTEXT_DMA, chan->vram.handle,
210 SET_SRC_CONTEXT_DMA, chan->vram.handle,
211 SET_SEMAPHORE_CONTEXT_DMA, chan->vram.handle);
212
213 PUSH_MTHD(push, NV502D, SET_DST_FORMAT,
214 NVVAL(NV502D, SET_DST_FORMAT, V, format),
215
216 SET_DST_MEMORY_LAYOUT,
217 NVDEF(NV502D, SET_DST_MEMORY_LAYOUT, V, PITCH));
218
219 PUSH_MTHD(push, NV502D, SET_DST_PITCH, info->fix.line_length,
220 SET_DST_WIDTH, info->var.xres_virtual,
221 SET_DST_HEIGHT, info->var.yres_virtual,
222
223 SET_DST_OFFSET_UPPER,
224 NVVAL(NV502D, SET_DST_OFFSET_UPPER, V, upper_32_bits(nfbdev->vma->addr)),
225
226 SET_DST_OFFSET_LOWER,
227 NVVAL(NV502D, SET_DST_OFFSET_LOWER, V, lower_32_bits(nfbdev->vma->addr)));
228
229 PUSH_MTHD(push, NV502D, SET_SRC_FORMAT,
230 NVVAL(NV502D, SET_SRC_FORMAT, V, format),
231
232 SET_SRC_MEMORY_LAYOUT,
233 NVDEF(NV502D, SET_SRC_MEMORY_LAYOUT, V, PITCH));
234
235 PUSH_MTHD(push, NV502D, SET_SRC_PITCH, info->fix.line_length,
236 SET_SRC_WIDTH, info->var.xres_virtual,
237 SET_SRC_HEIGHT, info->var.yres_virtual,
238
239 SET_SRC_OFFSET_UPPER,
240 NVVAL(NV502D, SET_SRC_OFFSET_UPPER, V, upper_32_bits(nfbdev->vma->addr)),
241
242 SET_SRC_OFFSET_LOWER,
243 NVVAL(NV502D, SET_SRC_OFFSET_LOWER, V, lower_32_bits(nfbdev->vma->addr)));
244
245 PUSH_MTHD(push, NV502D, SET_CLIP_ENABLE,
246 NVDEF(NV502D, SET_CLIP_ENABLE, V, FALSE));
247
248 PUSH_MTHD(push, NV502D, SET_ROP,
249 NVVAL(NV502D, SET_ROP, V, 0x55));
250
251 PUSH_MTHD(push, NV502D, SET_OPERATION,
252 NVDEF(NV502D, SET_OPERATION, V, SRCCOPY));
253
254 PUSH_MTHD(push, NV502D, SET_MONOCHROME_PATTERN_COLOR_FORMAT,
255 NVDEF(NV502D, SET_MONOCHROME_PATTERN_COLOR_FORMAT, V, A8R8G8B8),
256
257 SET_MONOCHROME_PATTERN_FORMAT,
258 NVDEF(NV502D, SET_MONOCHROME_PATTERN_FORMAT, V, LE_M1));
259
260 PUSH_MTHD(push, NV502D, RENDER_SOLID_PRIM_MODE,
261 NVDEF(NV502D, RENDER_SOLID_PRIM_MODE, V, RECTS),
262
263 SET_RENDER_SOLID_PRIM_COLOR_FORMAT,
264 NVVAL(NV502D, SET_RENDER_SOLID_PRIM_COLOR_FORMAT, V, format));
265
266 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_CPU_DATA_TYPE,
267 NVDEF(NV502D, SET_PIXELS_FROM_CPU_DATA_TYPE, V, INDEX),
268
269 SET_PIXELS_FROM_CPU_COLOR_FORMAT,
270 NVVAL(NV502D, SET_PIXELS_FROM_CPU_COLOR_FORMAT, V, format),
271
272 SET_PIXELS_FROM_CPU_INDEX_FORMAT,
273 NVDEF(NV502D, SET_PIXELS_FROM_CPU_INDEX_FORMAT, V, I1),
274
275 SET_PIXELS_FROM_CPU_MONO_FORMAT,
276 NVDEF(NV502D, SET_PIXELS_FROM_CPU_MONO_FORMAT, V, CGA6_M1),
277
278 SET_PIXELS_FROM_CPU_WRAP,
279 NVDEF(NV502D, SET_PIXELS_FROM_CPU_WRAP, V, WRAP_BYTE));
280
281 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_CPU_MONO_OPACITY,
282 NVDEF(NV502D, SET_PIXELS_FROM_CPU_MONO_OPACITY, V, OPAQUE));
283
284 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_CPU_DX_DU_FRAC, 0,
285 SET_PIXELS_FROM_CPU_DX_DU_INT, 1,
286 SET_PIXELS_FROM_CPU_DY_DV_FRAC, 0,
287 SET_PIXELS_FROM_CPU_DY_DV_INT, 1);
288
289 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP,
290 NVDEF(NV502D, SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP, V, TRUE));
291
292 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_MEMORY_DU_DX_FRAC, 0,
293 SET_PIXELS_FROM_MEMORY_DU_DX_INT, 1,
294 SET_PIXELS_FROM_MEMORY_DV_DY_FRAC, 0,
295 SET_PIXELS_FROM_MEMORY_DV_DY_INT, 1);
296 PUSH_KICK(push);
297 return 0;
298}
299