Merge branch 'mesa_7_6_branch'
[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 return NV50_2D_DST_FORMAT_A8R8G8B8_UNORM;
39 case PIPE_FORMAT_X8R8G8B8_UNORM:
40 return NV50_2D_DST_FORMAT_X8R8G8B8_UNORM;
41 case PIPE_FORMAT_R5G6B5_UNORM:
42 return NV50_2D_DST_FORMAT_R5G6B5_UNORM;
43 case PIPE_FORMAT_A8_UNORM:
44 return NV50_2D_DST_FORMAT_R8_UNORM;
45 default:
46 return -1;
47 }
48 }
49
50 static int
51 nv50_surface_set(struct nv50_screen *screen, struct pipe_surface *ps, int dst)
52 {
53 struct nv50_miptree *mt = nv50_miptree(ps->texture);
54 struct nouveau_channel *chan = screen->eng2d->channel;
55 struct nouveau_grobj *eng2d = screen->eng2d;
56 struct nouveau_bo *bo = nv50_miptree(ps->texture)->base.bo;
57 int format, mthd = dst ? NV50_2D_DST_FORMAT : NV50_2D_SRC_FORMAT;
58 int flags = NOUVEAU_BO_VRAM | (dst ? NOUVEAU_BO_WR : NOUVEAU_BO_RD);
59
60 format = nv50_format(ps->format);
61 if (format < 0)
62 return 1;
63
64 if (!bo->tile_flags) {
65 BEGIN_RING(chan, eng2d, mthd, 2);
66 OUT_RING (chan, format);
67 OUT_RING (chan, 1);
68 BEGIN_RING(chan, eng2d, mthd + 0x14, 5);
69 OUT_RING (chan, mt->level[ps->level].pitch);
70 OUT_RING (chan, ps->width);
71 OUT_RING (chan, ps->height);
72 OUT_RELOCh(chan, bo, ps->offset, flags);
73 OUT_RELOCl(chan, bo, ps->offset, flags);
74 } else {
75 BEGIN_RING(chan, eng2d, mthd, 5);
76 OUT_RING (chan, format);
77 OUT_RING (chan, 0);
78 OUT_RING (chan, mt->level[ps->level].tile_mode << 4);
79 OUT_RING (chan, 1);
80 OUT_RING (chan, 0);
81 BEGIN_RING(chan, eng2d, mthd + 0x18, 4);
82 OUT_RING (chan, ps->width);
83 OUT_RING (chan, ps->height);
84 OUT_RELOCh(chan, bo, ps->offset, flags);
85 OUT_RELOCl(chan, bo, ps->offset, flags);
86 }
87
88 #if 0
89 if (dst) {
90 BEGIN_RING(chan, eng2d, NV50_2D_CLIP_X, 4);
91 OUT_RING (chan, 0);
92 OUT_RING (chan, 0);
93 OUT_RING (chan, surf->width);
94 OUT_RING (chan, surf->height);
95 }
96 #endif
97
98 return 0;
99 }
100
101 int
102 nv50_surface_do_copy(struct nv50_screen *screen, struct pipe_surface *dst,
103 int dx, int dy, struct pipe_surface *src, int sx, int sy,
104 int w, int h)
105 {
106 struct nouveau_channel *chan = screen->eng2d->channel;
107 struct nouveau_grobj *eng2d = screen->eng2d;
108 int ret;
109
110 WAIT_RING (chan, 32);
111
112 ret = nv50_surface_set(screen, dst, 1);
113 if (ret)
114 return ret;
115
116 ret = nv50_surface_set(screen, src, 0);
117 if (ret)
118 return ret;
119
120 BEGIN_RING(chan, eng2d, 0x088c, 1);
121 OUT_RING (chan, 0);
122 BEGIN_RING(chan, eng2d, NV50_2D_BLIT_DST_X, 4);
123 OUT_RING (chan, dx);
124 OUT_RING (chan, dy);
125 OUT_RING (chan, w);
126 OUT_RING (chan, h);
127 BEGIN_RING(chan, eng2d, 0x08c0, 4);
128 OUT_RING (chan, 0);
129 OUT_RING (chan, 1);
130 OUT_RING (chan, 0);
131 OUT_RING (chan, 1);
132 BEGIN_RING(chan, eng2d, 0x08d0, 4);
133 OUT_RING (chan, 0);
134 OUT_RING (chan, sx);
135 OUT_RING (chan, 0);
136 OUT_RING (chan, sy);
137
138 return 0;
139 }
140
141 static void
142 nv50_surface_copy(struct pipe_context *pipe,
143 struct pipe_surface *dest, unsigned destx, unsigned desty,
144 struct pipe_surface *src, unsigned srcx, unsigned srcy,
145 unsigned width, unsigned height)
146 {
147 struct nv50_context *nv50 = nv50_context(pipe);
148 struct nv50_screen *screen = nv50->screen;
149
150 assert(src->format == dest->format);
151
152 nv50_surface_do_copy(screen, dest, destx, desty, src, srcx,
153 srcy, width, height);
154 }
155
156 static void
157 nv50_surface_fill(struct pipe_context *pipe, struct pipe_surface *dest,
158 unsigned destx, unsigned desty, unsigned width,
159 unsigned height, unsigned value)
160 {
161 struct nv50_context *nv50 = nv50_context(pipe);
162 struct nv50_screen *screen = nv50->screen;
163 struct nouveau_channel *chan = screen->eng2d->channel;
164 struct nouveau_grobj *eng2d = screen->eng2d;
165 int format, ret;
166
167 format = nv50_format(dest->format);
168 if (format < 0)
169 return;
170
171 WAIT_RING (chan, 32);
172
173 ret = nv50_surface_set(screen, dest, 1);
174 if (ret)
175 return;
176
177 BEGIN_RING(chan, eng2d, 0x0580, 3);
178 OUT_RING (chan, 4);
179 OUT_RING (chan, format);
180 OUT_RING (chan, value);
181 BEGIN_RING(chan, eng2d, NV50_2D_RECT_X1, 4);
182 OUT_RING (chan, destx);
183 OUT_RING (chan, desty);
184 OUT_RING (chan, width);
185 OUT_RING (chan, height);
186 }
187
188 void
189 nv50_init_surface_functions(struct nv50_context *nv50)
190 {
191 nv50->pipe.surface_copy = nv50_surface_copy;
192 nv50->pipe.surface_fill = nv50_surface_fill;
193 }
194
195