Tizen 2.0 Release
[profile/ivi/osmesa.git] / src / gallium / drivers / nvc0 / nvc0_transfer.c
1
2 #include "util/u_format.h"
3
4 #include "nvc0_context.h"
5 #include "nvc0_transfer.h"
6
7 #include "nv50/nv50_defs.xml.h"
8
9 struct nvc0_transfer {
10    struct pipe_transfer base;
11    struct nvc0_m2mf_rect rect[2];
12    uint32_t nblocksx;
13    uint16_t nblocksy;
14    uint16_t nlayers;
15 };
16
17 void
18 nvc0_m2mf_transfer_rect(struct pipe_screen *pscreen,
19                         const struct nvc0_m2mf_rect *dst,
20                         const struct nvc0_m2mf_rect *src,
21                         uint32_t nblocksx, uint32_t nblocksy)
22 {
23    struct nouveau_channel *chan = nouveau_screen(pscreen)->channel;
24    const int cpp = dst->cpp;
25    uint32_t src_ofst = src->base;
26    uint32_t dst_ofst = dst->base;
27    uint32_t height = nblocksy;
28    uint32_t sy = src->y;
29    uint32_t dy = dst->y;
30    uint32_t exec = (1 << 20);
31
32    assert(dst->cpp == src->cpp);
33
34    if (nouveau_bo_tile_layout(src->bo)) {
35       BEGIN_RING(chan, RING_MF(TILING_MODE_IN), 5);
36       OUT_RING  (chan, src->tile_mode);
37       OUT_RING  (chan, src->width * cpp);
38       OUT_RING  (chan, src->height);
39       OUT_RING  (chan, src->depth);
40       OUT_RING  (chan, src->z);
41    } else {
42       src_ofst += src->y * src->pitch + src->x * cpp;
43
44       BEGIN_RING(chan, RING_MF(PITCH_IN), 1);
45       OUT_RING  (chan, src->width * cpp);
46
47       exec |= NVC0_M2MF_EXEC_LINEAR_IN;
48    }
49
50    if (nouveau_bo_tile_layout(dst->bo)) {
51       BEGIN_RING(chan, RING_MF(TILING_MODE_OUT), 5);
52       OUT_RING  (chan, dst->tile_mode);
53       OUT_RING  (chan, dst->width * cpp);
54       OUT_RING  (chan, dst->height);
55       OUT_RING  (chan, dst->depth);
56       OUT_RING  (chan, dst->z);
57    } else {
58       dst_ofst += dst->y * dst->pitch + dst->x * cpp;
59
60       BEGIN_RING(chan, RING_MF(PITCH_OUT), 1);
61       OUT_RING  (chan, dst->width * cpp);
62
63       exec |= NVC0_M2MF_EXEC_LINEAR_OUT;
64    }
65
66    while (height) {
67       int line_count = height > 2047 ? 2047 : height;
68
69       MARK_RING (chan, 17, 4);
70
71       BEGIN_RING(chan, RING_MF(OFFSET_IN_HIGH), 2);
72       OUT_RELOCh(chan, src->bo, src_ofst, src->domain | NOUVEAU_BO_RD);
73       OUT_RELOCl(chan, src->bo, src_ofst, src->domain | NOUVEAU_BO_RD);
74
75       BEGIN_RING(chan, RING_MF(OFFSET_OUT_HIGH), 2);
76       OUT_RELOCh(chan, dst->bo, dst_ofst, dst->domain | NOUVEAU_BO_WR);
77       OUT_RELOCl(chan, dst->bo, dst_ofst, dst->domain | NOUVEAU_BO_WR);
78
79       if (!(exec & NVC0_M2MF_EXEC_LINEAR_IN)) {
80          BEGIN_RING(chan, RING_MF(TILING_POSITION_IN_X), 2);
81          OUT_RING  (chan, src->x * cpp);
82          OUT_RING  (chan, sy);
83       } else {
84          src_ofst += line_count * src->pitch;
85       }
86       if (!(exec & NVC0_M2MF_EXEC_LINEAR_OUT)) {
87          BEGIN_RING(chan, RING_MF(TILING_POSITION_OUT_X), 2);
88          OUT_RING  (chan, dst->x * cpp);
89          OUT_RING  (chan, dy);
90       } else {
91          dst_ofst += line_count * dst->pitch;
92       }
93
94       BEGIN_RING(chan, RING_MF(LINE_LENGTH_IN), 2);
95       OUT_RING  (chan, nblocksx * cpp);
96       OUT_RING  (chan, line_count);
97       BEGIN_RING(chan, RING_MF(EXEC), 1);
98       OUT_RING  (chan, exec);
99
100       height -= line_count;
101       sy += line_count;
102       dy += line_count;
103    }
104 }
105
106 void
107 nvc0_m2mf_push_linear(struct nouveau_context *nv,
108                       struct nouveau_bo *dst, unsigned offset, unsigned domain,
109                       unsigned size, void *data)
110 {
111    struct nouveau_channel *chan = nv->screen->channel;
112    uint32_t *src = (uint32_t *)data;
113    unsigned count = (size + 3) / 4;
114
115    MARK_RING (chan, 8, 2);
116
117    BEGIN_RING(chan, RING_MF(OFFSET_OUT_HIGH), 2);
118    OUT_RELOCh(chan, dst, offset, domain | NOUVEAU_BO_WR);
119    OUT_RELOCl(chan, dst, offset, domain | NOUVEAU_BO_WR);
120    BEGIN_RING(chan, RING_MF(LINE_LENGTH_IN), 2);
121    OUT_RING  (chan, size);
122    OUT_RING  (chan, 1);
123    BEGIN_RING(chan, RING_MF(EXEC), 1);
124    OUT_RING  (chan, 0x100111);
125
126    while (count) {
127       unsigned nr = AVAIL_RING(chan);
128
129       if (nr < 9) {
130          FIRE_RING(chan);
131          nouveau_bo_validate(chan, dst, NOUVEAU_BO_WR);
132          continue;
133       }
134       nr = MIN2(count, nr - 1);
135       nr = MIN2(nr, NV04_PFIFO_MAX_PACKET_LEN);
136    
137       BEGIN_RING_NI(chan, RING_MF(DATA), nr);
138       OUT_RINGp (chan, src, nr);
139
140       src += nr;
141       count -= nr;
142    }
143 }
144
145 void
146 nvc0_m2mf_copy_linear(struct nouveau_context *nv,
147                       struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom,
148                       struct nouveau_bo *src, unsigned srcoff, unsigned srcdom,
149                       unsigned size)
150 {
151    struct nouveau_channel *chan = nv->screen->channel;
152
153    while (size) {
154       unsigned bytes = MIN2(size, 1 << 17);
155
156       MARK_RING (chan, 11, 4);
157
158       BEGIN_RING(chan, RING_MF(OFFSET_OUT_HIGH), 2);
159       OUT_RELOCh(chan, dst, dstoff, dstdom | NOUVEAU_BO_WR);
160       OUT_RELOCl(chan, dst, dstoff, dstdom | NOUVEAU_BO_WR);
161       BEGIN_RING(chan, RING_MF(OFFSET_IN_HIGH), 2);
162       OUT_RELOCh(chan, src, srcoff, srcdom | NOUVEAU_BO_RD);
163       OUT_RELOCl(chan, src, srcoff, srcdom | NOUVEAU_BO_RD);
164       BEGIN_RING(chan, RING_MF(LINE_LENGTH_IN), 2);
165       OUT_RING  (chan, bytes);
166       OUT_RING  (chan, 1);
167       BEGIN_RING(chan, RING_MF(EXEC), 1);
168       OUT_RING  (chan, (1 << NVC0_M2MF_EXEC_INC__SHIFT) |
169                  NVC0_M2MF_EXEC_LINEAR_IN | NVC0_M2MF_EXEC_LINEAR_OUT);
170
171       srcoff += bytes;
172       dstoff += bytes;
173       size -= bytes;
174    }
175 }
176
177 static void
178 nvc0_m2mf_push_rect(struct pipe_screen *pscreen,
179                     const struct nvc0_m2mf_rect *dst,
180                     const void *data,
181                     unsigned nblocksx, unsigned nblocksy)
182 {
183    struct nouveau_channel *chan;
184    const uint8_t *src = (const uint8_t *)data;
185    const int cpp = dst->cpp;
186    const int line_len = nblocksx * cpp;
187    int dy = dst->y;
188
189    assert(nouveau_bo_tile_layout(dst->bo));
190
191    BEGIN_RING(chan, RING_MF(TILING_MODE_OUT), 5);
192    OUT_RING  (chan, dst->tile_mode);
193    OUT_RING  (chan, dst->width * cpp);
194    OUT_RING  (chan, dst->height);
195    OUT_RING  (chan, dst->depth);
196    OUT_RING  (chan, dst->z);
197
198    while (nblocksy) {
199       int line_count, words;
200       int size = MIN2(AVAIL_RING(chan), NV04_PFIFO_MAX_PACKET_LEN);
201
202       if (size < (12 + words)) {
203          FIRE_RING(chan);
204          continue;
205       }
206       line_count = (size * 4) / line_len;
207       words = (line_count * line_len + 3) / 4;
208
209       BEGIN_RING(chan, RING_MF(OFFSET_OUT_HIGH), 2);
210       OUT_RELOCh(chan, dst->bo, dst->base, dst->domain | NOUVEAU_BO_WR);
211       OUT_RELOCl(chan, dst->bo, dst->base, dst->domain | NOUVEAU_BO_WR);
212
213       BEGIN_RING(chan, RING_MF(TILING_POSITION_OUT_X), 2);
214       OUT_RING  (chan, dst->x * cpp);
215       OUT_RING  (chan, dy);
216       BEGIN_RING(chan, RING_MF(LINE_LENGTH_IN), 2);
217       OUT_RING  (chan, line_len);
218       OUT_RING  (chan, line_count);
219       BEGIN_RING(chan, RING_MF(EXEC), 1);
220       OUT_RING  (chan, (1 << NVC0_M2MF_EXEC_INC__SHIFT) |
221                  NVC0_M2MF_EXEC_PUSH | NVC0_M2MF_EXEC_LINEAR_IN);
222
223       BEGIN_RING_NI(chan, RING_MF(DATA), words);
224       OUT_RINGp (chan, src, words);
225
226       dy += line_count;
227       src += line_len * line_count;
228       nblocksy -= line_count;
229    }
230 }
231
232 struct pipe_transfer *
233 nvc0_miptree_transfer_new(struct pipe_context *pctx,
234                           struct pipe_resource *res,
235                           unsigned level,
236                           unsigned usage,
237                           const struct pipe_box *box)
238 {
239    struct nvc0_context *nvc0 = nvc0_context(pctx);
240    struct pipe_screen *pscreen = pctx->screen;
241    struct nouveau_device *dev = nvc0->screen->base.device;
242    struct nvc0_miptree *mt = nvc0_miptree(res);
243    struct nvc0_miptree_level *lvl = &mt->level[level];
244    struct nvc0_transfer *tx;
245    uint32_t size;
246    uint32_t w, h, d, z, layer;
247    int ret;
248
249    if (usage & PIPE_TRANSFER_MAP_DIRECTLY)
250       return NULL;
251
252    tx = CALLOC_STRUCT(nvc0_transfer);
253    if (!tx)
254       return NULL;
255
256    if (mt->layout_3d) {
257       z = box->z;
258       d = u_minify(res->depth0, level);
259       layer = 0;
260    } else {
261       z = 0;
262       d = 1;
263       layer = box->z;
264    }
265    tx->nlayers = box->depth;
266
267    pipe_resource_reference(&tx->base.resource, res);
268
269    tx->base.level = level;
270    tx->base.usage = usage;
271    tx->base.box = *box;
272
273    tx->nblocksx = util_format_get_nblocksx(res->format, box->width);
274    tx->nblocksy = util_format_get_nblocksy(res->format, box->height);
275
276    tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format);
277    tx->base.layer_stride = tx->nblocksy * tx->base.stride;
278
279    w = u_minify(res->width0, level);
280    h = u_minify(res->height0, level);
281
282    tx->rect[0].cpp = tx->rect[1].cpp = util_format_get_blocksize(res->format);
283
284    tx->rect[0].bo = mt->base.bo;
285    tx->rect[0].base = lvl->offset + layer * mt->layer_stride;
286    tx->rect[0].tile_mode = lvl->tile_mode;
287    tx->rect[0].x = util_format_get_nblocksx(res->format, box->x);
288    tx->rect[0].y = util_format_get_nblocksy(res->format, box->y);
289    tx->rect[0].z = z;
290    tx->rect[0].width = util_format_get_nblocksx(res->format, w);
291    tx->rect[0].height = util_format_get_nblocksy(res->format, h);
292    tx->rect[0].depth = d;
293    tx->rect[0].pitch = lvl->pitch;
294    tx->rect[0].domain = NOUVEAU_BO_VRAM;
295
296    size = tx->base.layer_stride;
297
298    ret = nouveau_bo_new(dev, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, 0,
299                         size * tx->nlayers, &tx->rect[1].bo);
300    if (ret) {
301       FREE(tx);
302       return NULL;
303    }
304
305    tx->rect[1].width = tx->nblocksx;
306    tx->rect[1].height = tx->nblocksy;
307    tx->rect[1].depth = 1;
308    tx->rect[1].pitch = tx->base.stride;
309    tx->rect[1].domain = NOUVEAU_BO_GART;
310
311    if (usage & PIPE_TRANSFER_READ) {
312       unsigned base = tx->rect[0].base;
313       unsigned i;
314       for (i = 0; i < tx->nlayers; ++i) {
315          nvc0_m2mf_transfer_rect(pscreen, &tx->rect[1], &tx->rect[0],
316                                  tx->nblocksx, tx->nblocksy);
317          if (mt->layout_3d)
318             tx->rect[0].z++;
319          else
320             tx->rect[0].base += mt->layer_stride;
321          tx->rect[1].base += size;
322       }
323       tx->rect[0].z = z;
324       tx->rect[0].base = base;
325       tx->rect[1].base = 0;
326    }
327
328    return &tx->base;
329 }
330
331 void
332 nvc0_miptree_transfer_del(struct pipe_context *pctx,
333                           struct pipe_transfer *transfer)
334 {
335    struct pipe_screen *pscreen = pctx->screen;
336    struct nvc0_transfer *tx = (struct nvc0_transfer *)transfer;
337    struct nvc0_miptree *mt = nvc0_miptree(tx->base.resource);
338    unsigned i;
339
340    if (tx->base.usage & PIPE_TRANSFER_WRITE) {
341       for (i = 0; i < tx->nlayers; ++i) {
342          nvc0_m2mf_transfer_rect(pscreen, &tx->rect[0], &tx->rect[1],
343                                  tx->nblocksx, tx->nblocksy);
344          if (mt->layout_3d)
345             tx->rect[0].z++;
346          else
347             tx->rect[0].base += mt->layer_stride;
348          tx->rect[1].base += tx->nblocksy * tx->base.stride;
349       }
350    }
351
352    nouveau_bo_ref(NULL, &tx->rect[1].bo);
353    pipe_resource_reference(&transfer->resource, NULL);
354
355    FREE(tx);
356 }
357
358 void *
359 nvc0_miptree_transfer_map(struct pipe_context *pctx,
360                           struct pipe_transfer *transfer)
361 {
362    struct nvc0_transfer *tx = (struct nvc0_transfer *)transfer;
363    int ret;
364    unsigned flags = 0;
365
366    if (tx->rect[1].bo->map)
367       return tx->rect[1].bo->map;
368
369    if (transfer->usage & PIPE_TRANSFER_READ)
370       flags = NOUVEAU_BO_RD;
371    if (transfer->usage & PIPE_TRANSFER_WRITE)
372       flags |= NOUVEAU_BO_WR;
373
374    ret = nouveau_bo_map(tx->rect[1].bo, flags);
375    if (ret)
376       return NULL;
377    return tx->rect[1].bo->map;
378 }
379
380 void
381 nvc0_miptree_transfer_unmap(struct pipe_context *pctx,
382                             struct pipe_transfer *transfer)
383 {
384    struct nvc0_transfer *tx = (struct nvc0_transfer *)transfer;
385
386    nouveau_bo_unmap(tx->rect[1].bo);
387 }
388