Merge commit 'origin/gallium-0.1'
[mesa.git] / src / gallium / drivers / nv50 / nv50_surface.c
1 /*
2 * Copyright 2008 Ben Skeggs
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 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
23 #define __NOUVEAU_PUSH_H__
24 #include <stdint.h>
25 #include "nouveau/nouveau_pushbuf.h"
26 #include "nv50_context.h"
27 #include "pipe/p_defines.h"
28 #include "pipe/internal/p_winsys_screen.h"
29 #include "pipe/p_inlines.h"
30
31 #include "util/u_tile.h"
32
33 static INLINE int
34 nv50_format(enum pipe_format format)
35 {
36 switch (format) {
37 case PIPE_FORMAT_A8R8G8B8_UNORM:
38 case PIPE_FORMAT_Z24S8_UNORM:
39 return NV50_2D_DST_FORMAT_32BPP;
40 case PIPE_FORMAT_X8R8G8B8_UNORM:
41 return NV50_2D_DST_FORMAT_24BPP;
42 case PIPE_FORMAT_R5G6B5_UNORM:
43 return NV50_2D_DST_FORMAT_16BPP;
44 case PIPE_FORMAT_A8_UNORM:
45 return NV50_2D_DST_FORMAT_8BPP;
46 default:
47 return -1;
48 }
49 }
50
51 static int
52 nv50_surface_set(struct nv50_screen *screen, struct pipe_surface *ps, int dst)
53 {
54 struct nv50_miptree *mt = nv50_miptree(ps->texture);
55 struct nouveau_channel *chan = screen->nvws->channel;
56 struct nouveau_grobj *eng2d = screen->eng2d;
57 struct nouveau_bo *bo;
58 int format, mthd = dst ? NV50_2D_DST_FORMAT : NV50_2D_SRC_FORMAT;
59 int flags = NOUVEAU_BO_VRAM | (dst ? NOUVEAU_BO_WR : NOUVEAU_BO_RD);
60
61 bo = screen->nvws->get_bo(nv50_miptree(ps->texture)->buffer);
62 if (!bo)
63 return 1;
64
65 format = nv50_format(ps->format);
66 if (format < 0)
67 return 1;
68
69 if (!bo->tiled) {
70 BEGIN_RING(chan, eng2d, mthd, 2);
71 OUT_RING (chan, format);
72 OUT_RING (chan, 1);
73 BEGIN_RING(chan, eng2d, mthd + 0x14, 5);
74 OUT_RING (chan, mt->level[0].pitch);
75 OUT_RING (chan, ps->width);
76 OUT_RING (chan, ps->height);
77 OUT_RELOCh(chan, bo, ps->offset, flags);
78 OUT_RELOCl(chan, bo, ps->offset, flags);
79 } else {
80 BEGIN_RING(chan, eng2d, mthd, 5);
81 OUT_RING (chan, format);
82 OUT_RING (chan, 0);
83 OUT_RING (chan, 0);
84 OUT_RING (chan, 1);
85 OUT_RING (chan, 0);
86 BEGIN_RING(chan, eng2d, mthd + 0x18, 4);
87 OUT_RING (chan, ps->width);
88 OUT_RING (chan, ps->height);
89 OUT_RELOCh(chan, bo, ps->offset, flags);
90 OUT_RELOCl(chan, bo, ps->offset, flags);
91 }
92
93 #if 0
94 if (dst) {
95 BEGIN_RING(chan, eng2d, NV50_2D_CLIP_X, 4);
96 OUT_RING (chan, 0);
97 OUT_RING (chan, 0);
98 OUT_RING (chan, surf->width);
99 OUT_RING (chan, surf->height);
100 }
101 #endif
102
103 return 0;
104 }
105
106 int
107 nv50_surface_do_copy(struct nv50_screen *screen, struct pipe_surface *dst,
108 int dx, int dy, struct pipe_surface *src, int sx, int sy,
109 int w, int h)
110 {
111 struct nouveau_channel *chan = screen->nvws->channel;
112 struct nouveau_grobj *eng2d = screen->eng2d;
113 int ret;
114
115 WAIT_RING (chan, 32);
116
117 ret = nv50_surface_set(screen, dst, 1);
118 if (ret)
119 return ret;
120
121 ret = nv50_surface_set(screen, src, 0);
122 if (ret)
123 return ret;
124
125 BEGIN_RING(chan, eng2d, 0x088c, 1);
126 OUT_RING (chan, 0);
127 BEGIN_RING(chan, eng2d, NV50_2D_BLIT_DST_X, 4);
128 OUT_RING (chan, dx);
129 OUT_RING (chan, dy);
130 OUT_RING (chan, w);
131 OUT_RING (chan, h);
132 BEGIN_RING(chan, eng2d, 0x08c0, 4);
133 OUT_RING (chan, 0);
134 OUT_RING (chan, 1);
135 OUT_RING (chan, 0);
136 OUT_RING (chan, 1);
137 BEGIN_RING(chan, eng2d, 0x08d0, 4);
138 OUT_RING (chan, 0);
139 OUT_RING (chan, sx);
140 OUT_RING (chan, 0);
141 OUT_RING (chan, sy);
142
143 return 0;
144 }
145
146 static void
147 nv50_surface_copy(struct pipe_context *pipe, boolean flip,
148 struct pipe_surface *dest, unsigned destx, unsigned desty,
149 struct pipe_surface *src, unsigned srcx, unsigned srcy,
150 unsigned width, unsigned height)
151 {
152 struct nv50_context *nv50 = (struct nv50_context *)pipe;
153 struct nv50_screen *screen = nv50->screen;
154
155 assert(src->format == dest->format);
156
157 if (flip) {
158 desty += height;
159 while (height--) {
160 nv50_surface_do_copy(screen, dest, destx, desty--, src,
161 srcx, srcy++, width, 1);
162 }
163 } else {
164 nv50_surface_do_copy(screen, dest, destx, desty, src, srcx,
165 srcy, width, height);
166 }
167 }
168
169 static void
170 nv50_surface_fill(struct pipe_context *pipe, struct pipe_surface *dest,
171 unsigned destx, unsigned desty, unsigned width,
172 unsigned height, unsigned value)
173 {
174 struct nv50_context *nv50 = (struct nv50_context *)pipe;
175 struct nv50_screen *screen = nv50->screen;
176 struct nouveau_channel *chan = screen->nvws->channel;
177 struct nouveau_grobj *eng2d = screen->eng2d;
178 int format, ret;
179
180 format = nv50_format(dest->format);
181 if (format < 0)
182 return;
183
184 WAIT_RING (chan, 32);
185
186 ret = nv50_surface_set(screen, dest, 1);
187 if (ret)
188 return;
189
190 BEGIN_RING(chan, eng2d, 0x0580, 3);
191 OUT_RING (chan, 4);
192 OUT_RING (chan, format);
193 OUT_RING (chan, value);
194 BEGIN_RING(chan, eng2d, NV50_2D_RECT_X1, 4);
195 OUT_RING (chan, destx);
196 OUT_RING (chan, desty);
197 OUT_RING (chan, width);
198 OUT_RING (chan, height);
199 }
200
201 void
202 nv50_init_surface_functions(struct nv50_context *nv50)
203 {
204 nv50->pipe.surface_copy = nv50_surface_copy;
205 nv50->pipe.surface_fill = nv50_surface_fill;
206 }
207
208