r600g: fix up vs export handling
[mesa.git] / src / gallium / drivers / r600 / r600_texture.c
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jerome Glisse
25 * Corbin Simpson
26 */
27 #include <errno.h>
28 #include <pipe/p_screen.h>
29 #include <util/u_format.h>
30 #include <util/u_format_s3tc.h>
31 #include <util/u_math.h>
32 #include <util/u_inlines.h>
33 #include <util/u_memory.h>
34 #include "state_tracker/drm_driver.h"
35 #include "pipebuffer/pb_buffer.h"
36 #include "r600_pipe.h"
37 #include "r600_resource.h"
38 #include "r600d.h"
39 #include "r600_formats.h"
40
41 /* Copy from a full GPU texture to a transfer's staging one. */
42 static void r600_copy_to_staging_texture(struct pipe_context *ctx, struct r600_transfer *rtransfer)
43 {
44 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer;
45 struct pipe_resource *texture = transfer->resource;
46
47 ctx->resource_copy_region(ctx, rtransfer->staging_texture,
48 0, 0, 0, 0, texture, transfer->level,
49 &transfer->box);
50 }
51
52
53 /* Copy from a transfer's staging texture to a full GPU one. */
54 static void r600_copy_from_staging_texture(struct pipe_context *ctx, struct r600_transfer *rtransfer)
55 {
56 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer;
57 struct pipe_resource *texture = transfer->resource;
58 struct pipe_box sbox;
59
60 sbox.x = sbox.y = sbox.z = 0;
61 sbox.width = transfer->box.width;
62 sbox.height = transfer->box.height;
63 /* XXX that might be wrong */
64 sbox.depth = 1;
65 ctx->resource_copy_region(ctx, texture, transfer->level,
66 transfer->box.x, transfer->box.y, transfer->box.z,
67 rtransfer->staging_texture,
68 0, &sbox);
69
70 ctx->flush(ctx, NULL);
71 }
72
73 unsigned r600_texture_get_offset(struct r600_resource_texture *rtex,
74 unsigned level, unsigned layer)
75 {
76 unsigned offset = rtex->offset[level];
77
78 switch (rtex->resource.b.b.b.target) {
79 case PIPE_TEXTURE_3D:
80 case PIPE_TEXTURE_CUBE:
81 default:
82 return offset + layer * rtex->layer_size[level];
83 }
84 }
85
86 static unsigned r600_get_block_alignment(struct pipe_screen *screen,
87 enum pipe_format format,
88 unsigned array_mode)
89 {
90 struct r600_screen* rscreen = (struct r600_screen *)screen;
91 unsigned pixsize = util_format_get_blocksize(format);
92 int p_align;
93
94 switch(array_mode) {
95 case V_038000_ARRAY_1D_TILED_THIN1:
96 p_align = MAX2(8,
97 ((rscreen->tiling_info->group_bytes / 8 / pixsize)));
98 break;
99 case V_038000_ARRAY_2D_TILED_THIN1:
100 p_align = MAX2(rscreen->tiling_info->num_banks,
101 (((rscreen->tiling_info->group_bytes / 8 / pixsize)) *
102 rscreen->tiling_info->num_banks)) * 8;
103 break;
104 case V_038000_ARRAY_LINEAR_ALIGNED:
105 p_align = MAX2(64, rscreen->tiling_info->group_bytes / pixsize);
106 break;
107 case V_038000_ARRAY_LINEAR_GENERAL:
108 default:
109 p_align = rscreen->tiling_info->group_bytes / pixsize;
110 break;
111 }
112 return p_align;
113 }
114
115 static unsigned r600_get_height_alignment(struct pipe_screen *screen,
116 unsigned array_mode)
117 {
118 struct r600_screen* rscreen = (struct r600_screen *)screen;
119 int h_align;
120
121 switch (array_mode) {
122 case V_038000_ARRAY_2D_TILED_THIN1:
123 h_align = rscreen->tiling_info->num_channels * 8;
124 break;
125 case V_038000_ARRAY_1D_TILED_THIN1:
126 case V_038000_ARRAY_LINEAR_ALIGNED:
127 h_align = 8;
128 break;
129 case V_038000_ARRAY_LINEAR_GENERAL:
130 default:
131 h_align = 1;
132 break;
133 }
134 return h_align;
135 }
136
137 static unsigned r600_get_base_alignment(struct pipe_screen *screen,
138 enum pipe_format format,
139 unsigned array_mode)
140 {
141 struct r600_screen* rscreen = (struct r600_screen *)screen;
142 unsigned pixsize = util_format_get_blocksize(format);
143 int p_align = r600_get_block_alignment(screen, format, array_mode);
144 int h_align = r600_get_height_alignment(screen, array_mode);
145 int b_align;
146
147 switch (array_mode) {
148 case V_038000_ARRAY_2D_TILED_THIN1:
149 b_align = MAX2(rscreen->tiling_info->num_banks * rscreen->tiling_info->num_channels * 8 * 8 * pixsize,
150 p_align * pixsize * h_align);
151 break;
152 case V_038000_ARRAY_1D_TILED_THIN1:
153 case V_038000_ARRAY_LINEAR_ALIGNED:
154 case V_038000_ARRAY_LINEAR_GENERAL:
155 default:
156 b_align = rscreen->tiling_info->group_bytes;
157 break;
158 }
159 return b_align;
160 }
161
162 static unsigned mip_minify(unsigned size, unsigned level)
163 {
164 unsigned val;
165 val = u_minify(size, level);
166 if (level > 0)
167 val = util_next_power_of_two(val);
168 return val;
169 }
170
171 static unsigned r600_texture_get_nblocksx(struct pipe_screen *screen,
172 struct r600_resource_texture *rtex,
173 unsigned level)
174 {
175 struct pipe_resource *ptex = &rtex->resource.b.b.b;
176 unsigned nblocksx, block_align, width;
177 unsigned blocksize = util_format_get_blocksize(ptex->format);
178
179 if (rtex->pitch_override)
180 return rtex->pitch_override / blocksize;
181
182 width = mip_minify(ptex->width0, level);
183 nblocksx = util_format_get_nblocksx(ptex->format, width);
184
185 block_align = r600_get_block_alignment(screen, ptex->format,
186 rtex->array_mode[level]);
187 nblocksx = align(nblocksx, block_align);
188 return nblocksx;
189 }
190
191 static unsigned r600_texture_get_nblocksy(struct pipe_screen *screen,
192 struct r600_resource_texture *rtex,
193 unsigned level)
194 {
195 struct pipe_resource *ptex = &rtex->resource.b.b.b;
196 unsigned height, tile_height;
197
198 height = mip_minify(ptex->height0, level);
199 height = util_format_get_nblocksy(ptex->format, height);
200 tile_height = r600_get_height_alignment(screen,
201 rtex->array_mode[level]);
202 height = align(height, tile_height);
203 return height;
204 }
205
206 static void r600_texture_set_array_mode(struct pipe_screen *screen,
207 struct r600_resource_texture *rtex,
208 unsigned level, unsigned array_mode)
209 {
210 struct pipe_resource *ptex = &rtex->resource.b.b.b;
211
212 switch (array_mode) {
213 case V_0280A0_ARRAY_LINEAR_GENERAL:
214 case V_0280A0_ARRAY_LINEAR_ALIGNED:
215 case V_0280A0_ARRAY_1D_TILED_THIN1:
216 default:
217 rtex->array_mode[level] = array_mode;
218 break;
219 case V_0280A0_ARRAY_2D_TILED_THIN1:
220 {
221 unsigned w, h, tile_height, tile_width;
222
223 tile_height = r600_get_height_alignment(screen, array_mode);
224 tile_width = r600_get_block_alignment(screen, ptex->format, array_mode);
225
226 w = mip_minify(ptex->width0, level);
227 h = mip_minify(ptex->height0, level);
228 if (w <= tile_width || h <= tile_height)
229 rtex->array_mode[level] = V_0280A0_ARRAY_1D_TILED_THIN1;
230 else
231 rtex->array_mode[level] = array_mode;
232 }
233 break;
234 }
235 }
236
237 static void r600_setup_miptree(struct pipe_screen *screen,
238 struct r600_resource_texture *rtex,
239 unsigned array_mode)
240 {
241 struct pipe_resource *ptex = &rtex->resource.b.b.b;
242 struct radeon *radeon = (struct radeon *)screen->winsys;
243 enum chip_class chipc = r600_get_family_class(radeon);
244 unsigned size, layer_size, i, offset;
245 unsigned nblocksx, nblocksy, extra_size = 0;
246
247 for (i = 0, offset = 0; i <= ptex->last_level; i++) {
248 unsigned blocksize = util_format_get_blocksize(ptex->format);
249 unsigned base_align = r600_get_base_alignment(screen, ptex->format, array_mode);
250
251 r600_texture_set_array_mode(screen, rtex, i, array_mode);
252
253 nblocksx = r600_texture_get_nblocksx(screen, rtex, i);
254 nblocksy = r600_texture_get_nblocksy(screen, rtex, i);
255
256 layer_size = nblocksx * nblocksy * blocksize;
257 if (ptex->target == PIPE_TEXTURE_CUBE) {
258 if (chipc >= R700)
259 size = layer_size * 8;
260 else
261 size = layer_size * 6;
262 }
263 else if (ptex->target == PIPE_TEXTURE_3D)
264 size = layer_size * u_minify(ptex->depth0, i);
265 else
266 size = layer_size * ptex->array_size;
267
268 /* evergreen stores depth and stencil separately */
269 if ((chipc >= EVERGREEN) && util_format_is_depth_or_stencil(ptex->format))
270 extra_size = align(extra_size + (nblocksx * nblocksy * 1), base_align);
271
272 /* align base image and start of miptree */
273 if ((i == 0) || (i == 1))
274 offset = align(offset, base_align);
275 rtex->offset[i] = offset;
276 rtex->layer_size[i] = layer_size;
277 rtex->pitch_in_blocks[i] = nblocksx; /* CB talks in elements */
278 rtex->pitch_in_bytes[i] = nblocksx * blocksize;
279
280 offset += size;
281 }
282 rtex->size = offset + extra_size;
283 }
284
285 /* Figure out whether u_blitter will fallback to a transfer operation.
286 * If so, don't use a staging resource.
287 */
288 static boolean permit_hardware_blit(struct pipe_screen *screen,
289 const struct pipe_resource *res)
290 {
291 unsigned bind;
292
293 if (util_format_is_depth_or_stencil(res->format))
294 bind = PIPE_BIND_DEPTH_STENCIL;
295 else
296 bind = PIPE_BIND_RENDER_TARGET;
297
298 /* hackaround for S3TC */
299 if (util_format_is_compressed(res->format))
300 return TRUE;
301
302 if (!screen->is_format_supported(screen,
303 res->format,
304 res->target,
305 res->nr_samples,
306 bind))
307 return FALSE;
308
309 if (!screen->is_format_supported(screen,
310 res->format,
311 res->target,
312 res->nr_samples,
313 PIPE_BIND_SAMPLER_VIEW))
314 return FALSE;
315
316 switch (res->usage) {
317 case PIPE_USAGE_STREAM:
318 case PIPE_USAGE_STAGING:
319 return FALSE;
320
321 default:
322 return TRUE;
323 }
324 }
325
326 static boolean r600_texture_get_handle(struct pipe_screen* screen,
327 struct pipe_resource *ptex,
328 struct winsys_handle *whandle)
329 {
330 struct r600_resource_texture *rtex = (struct r600_resource_texture*)ptex;
331 struct r600_resource *resource = &rtex->resource;
332 struct radeon *radeon = (struct radeon *)screen->winsys;
333
334 return r600_bo_get_winsys_handle(radeon, resource->bo,
335 rtex->pitch_in_bytes[0], whandle);
336 }
337
338 static void r600_texture_destroy(struct pipe_screen *screen,
339 struct pipe_resource *ptex)
340 {
341 struct r600_resource_texture *rtex = (struct r600_resource_texture*)ptex;
342 struct r600_resource *resource = &rtex->resource;
343 struct radeon *radeon = (struct radeon *)screen->winsys;
344
345 if (rtex->flushed_depth_texture)
346 pipe_resource_reference((struct pipe_resource **)&rtex->flushed_depth_texture, NULL);
347
348 if (resource->bo) {
349 r600_bo_reference(radeon, &resource->bo, NULL);
350 }
351 FREE(rtex);
352 }
353
354 static const struct u_resource_vtbl r600_texture_vtbl =
355 {
356 r600_texture_get_handle, /* get_handle */
357 r600_texture_destroy, /* resource_destroy */
358 r600_texture_get_transfer, /* get_transfer */
359 r600_texture_transfer_destroy, /* transfer_destroy */
360 r600_texture_transfer_map, /* transfer_map */
361 u_default_transfer_flush_region,/* transfer_flush_region */
362 r600_texture_transfer_unmap, /* transfer_unmap */
363 u_default_transfer_inline_write /* transfer_inline_write */
364 };
365
366 static struct r600_resource_texture *
367 r600_texture_create_object(struct pipe_screen *screen,
368 const struct pipe_resource *base,
369 unsigned array_mode,
370 unsigned pitch_in_bytes_override,
371 unsigned max_buffer_size,
372 struct r600_bo *bo)
373 {
374 struct r600_resource_texture *rtex;
375 struct r600_resource *resource;
376 struct radeon *radeon = (struct radeon *)screen->winsys;
377
378 rtex = CALLOC_STRUCT(r600_resource_texture);
379 if (rtex == NULL)
380 return NULL;
381
382 resource = &rtex->resource;
383 resource->b.b.b = *base;
384 resource->b.b.vtbl = &r600_texture_vtbl;
385 pipe_reference_init(&resource->b.b.b.reference, 1);
386 resource->b.b.b.screen = screen;
387 resource->bo = bo;
388 rtex->pitch_override = pitch_in_bytes_override;
389 /* only mark depth textures the HW can hit as depth textures */
390 if (util_format_is_depth_or_stencil(base->format) && permit_hardware_blit(screen, base))
391 rtex->depth = 1;
392
393 r600_setup_miptree(screen, rtex, array_mode);
394
395 resource->size = rtex->size;
396
397 if (!resource->bo) {
398 struct pipe_resource *ptex = &rtex->resource.b.b.b;
399 int base_align = r600_get_base_alignment(screen, ptex->format, array_mode);
400
401 resource->bo = r600_bo(radeon, rtex->size, base_align, base->bind, base->usage);
402 if (!resource->bo) {
403 FREE(rtex);
404 return NULL;
405 }
406 }
407 return rtex;
408 }
409
410 struct pipe_resource *r600_texture_create(struct pipe_screen *screen,
411 const struct pipe_resource *templ)
412 {
413 unsigned array_mode = 0;
414 static int force_tiling = -1;
415
416 /* Would like some magic "get_bool_option_once" routine.
417 */
418 if (force_tiling == -1) {
419 #if 0
420 /* reenable when 2D tiling is fixed better */
421 struct r600_screen *rscreen = (struct r600_screen *)screen;
422 if (r600_get_minor_version(rscreen->radeon) >= 9)
423 force_tiling = debug_get_bool_option("R600_TILING", TRUE);
424 #endif
425 force_tiling = debug_get_bool_option("R600_TILING", FALSE);
426 }
427
428 if (force_tiling && permit_hardware_blit(screen, templ)) {
429 if (!(templ->flags & R600_RESOURCE_FLAG_TRANSFER) &&
430 !(templ->bind & PIPE_BIND_SCANOUT)) {
431 array_mode = V_038000_ARRAY_2D_TILED_THIN1;
432 }
433 }
434
435 if (!(templ->flags & R600_RESOURCE_FLAG_TRANSFER) &&
436 util_format_is_compressed(templ->format))
437 array_mode = V_038000_ARRAY_1D_TILED_THIN1;
438
439 return (struct pipe_resource *)r600_texture_create_object(screen, templ, array_mode,
440 0, 0, NULL);
441
442 }
443
444 static struct pipe_surface *r600_create_surface(struct pipe_context *pipe,
445 struct pipe_resource *texture,
446 const struct pipe_surface *surf_tmpl)
447 {
448 struct r600_resource_texture *rtex = (struct r600_resource_texture*)texture;
449 struct r600_surface *surface = CALLOC_STRUCT(r600_surface);
450 unsigned level = surf_tmpl->u.tex.level;
451
452 assert(surf_tmpl->u.tex.first_layer == surf_tmpl->u.tex.last_layer);
453 if (surface == NULL)
454 return NULL;
455 /* XXX no offset */
456 /* offset = r600_texture_get_offset(rtex, level, surf_tmpl->u.tex.first_layer);*/
457 pipe_reference_init(&surface->base.reference, 1);
458 pipe_resource_reference(&surface->base.texture, texture);
459 surface->base.context = pipe;
460 surface->base.format = surf_tmpl->format;
461 surface->base.width = mip_minify(texture->width0, level);
462 surface->base.height = mip_minify(texture->height0, level);
463 surface->base.usage = surf_tmpl->usage;
464 surface->base.texture = texture;
465 surface->base.u.tex.first_layer = surf_tmpl->u.tex.first_layer;
466 surface->base.u.tex.last_layer = surf_tmpl->u.tex.last_layer;
467 surface->base.u.tex.level = level;
468
469 surface->aligned_height = r600_texture_get_nblocksy(pipe->screen,
470 rtex, level);
471 return &surface->base;
472 }
473
474 static void r600_surface_destroy(struct pipe_context *pipe,
475 struct pipe_surface *surface)
476 {
477 pipe_resource_reference(&surface->texture, NULL);
478 FREE(surface);
479 }
480
481
482 struct pipe_resource *r600_texture_from_handle(struct pipe_screen *screen,
483 const struct pipe_resource *templ,
484 struct winsys_handle *whandle)
485 {
486 struct radeon *rw = (struct radeon*)screen->winsys;
487 struct r600_bo *bo = NULL;
488 unsigned array_mode = 0;
489
490 /* Support only 2D textures without mipmaps */
491 if ((templ->target != PIPE_TEXTURE_2D && templ->target != PIPE_TEXTURE_RECT) ||
492 templ->depth0 != 1 || templ->last_level != 0)
493 return NULL;
494
495 bo = r600_bo_handle(rw, whandle->handle, &array_mode);
496 if (bo == NULL) {
497 return NULL;
498 }
499
500 return (struct pipe_resource *)r600_texture_create_object(screen, templ, array_mode,
501 whandle->stride,
502 0,
503 bo);
504 }
505
506 int r600_texture_depth_flush(struct pipe_context *ctx,
507 struct pipe_resource *texture, boolean just_create)
508 {
509 struct r600_resource_texture *rtex = (struct r600_resource_texture*)texture;
510 struct pipe_resource resource;
511
512 if (rtex->flushed_depth_texture)
513 goto out;
514
515 resource.target = PIPE_TEXTURE_2D;
516 resource.format = texture->format;
517 resource.width0 = texture->width0;
518 resource.height0 = texture->height0;
519 resource.depth0 = 1;
520 resource.array_size = 1;
521 resource.last_level = texture->last_level;
522 resource.nr_samples = 0;
523 resource.usage = PIPE_USAGE_DYNAMIC;
524 resource.bind = 0;
525 resource.flags = R600_RESOURCE_FLAG_TRANSFER;
526
527 resource.bind |= PIPE_BIND_DEPTH_STENCIL;
528
529 rtex->flushed_depth_texture = (struct r600_resource_texture *)ctx->screen->resource_create(ctx->screen, &resource);
530 if (rtex->flushed_depth_texture == NULL) {
531 R600_ERR("failed to create temporary texture to hold untiled copy\n");
532 return -ENOMEM;
533 }
534
535 ((struct r600_resource_texture *)rtex->flushed_depth_texture)->is_flushing_texture = TRUE;
536 out:
537 if (just_create)
538 return 0;
539
540 /* XXX: only do this if the depth texture has actually changed:
541 */
542 r600_blit_uncompress_depth(ctx, rtex);
543 return 0;
544 }
545
546 /* Needs adjustment for pixelformat:
547 */
548 static INLINE unsigned u_box_volume( const struct pipe_box *box )
549 {
550 return box->width * box->depth * box->height;
551 };
552
553 struct pipe_transfer* r600_texture_get_transfer(struct pipe_context *ctx,
554 struct pipe_resource *texture,
555 unsigned level,
556 unsigned usage,
557 const struct pipe_box *box)
558 {
559 struct r600_resource_texture *rtex = (struct r600_resource_texture*)texture;
560 struct pipe_resource resource;
561 struct r600_transfer *trans;
562 int r;
563 boolean use_staging_texture = FALSE;
564
565 /* We cannot map a tiled texture directly because the data is
566 * in a different order, therefore we do detiling using a blit.
567 *
568 * Also, use a temporary in GTT memory for read transfers, as
569 * the CPU is much happier reading out of cached system memory
570 * than uncached VRAM.
571 */
572 if (R600_TEX_IS_TILED(rtex, level))
573 use_staging_texture = TRUE;
574
575 if ((usage & PIPE_TRANSFER_READ) && u_box_volume(box) > 1024)
576 use_staging_texture = TRUE;
577
578 /* XXX: Use a staging texture for uploads if the underlying BO
579 * is busy. No interface for checking that currently? so do
580 * it eagerly whenever the transfer doesn't require a readback
581 * and might block.
582 */
583 if ((usage & PIPE_TRANSFER_WRITE) &&
584 !(usage & (PIPE_TRANSFER_READ |
585 PIPE_TRANSFER_DONTBLOCK |
586 PIPE_TRANSFER_UNSYNCHRONIZED)))
587 use_staging_texture = TRUE;
588
589 if (!permit_hardware_blit(ctx->screen, texture) ||
590 (texture->flags & R600_RESOURCE_FLAG_TRANSFER))
591 use_staging_texture = FALSE;
592
593 trans = CALLOC_STRUCT(r600_transfer);
594 if (trans == NULL)
595 return NULL;
596 pipe_resource_reference(&trans->transfer.resource, texture);
597 trans->transfer.level = level;
598 trans->transfer.usage = usage;
599 trans->transfer.box = *box;
600 if (rtex->depth) {
601 /* XXX: only readback the rectangle which is being mapped?
602 */
603 /* XXX: when discard is true, no need to read back from depth texture
604 */
605 r = r600_texture_depth_flush(ctx, texture, FALSE);
606 if (r < 0) {
607 R600_ERR("failed to create temporary texture to hold untiled copy\n");
608 pipe_resource_reference(&trans->transfer.resource, NULL);
609 FREE(trans);
610 return NULL;
611 }
612 trans->transfer.stride = rtex->flushed_depth_texture->pitch_in_bytes[level];
613 trans->offset = r600_texture_get_offset(rtex->flushed_depth_texture, level, box->z);
614 return &trans->transfer;
615 } else if (use_staging_texture) {
616 resource.target = PIPE_TEXTURE_2D;
617 resource.format = texture->format;
618 resource.width0 = box->width;
619 resource.height0 = box->height;
620 resource.depth0 = 1;
621 resource.array_size = 1;
622 resource.last_level = 0;
623 resource.nr_samples = 0;
624 resource.usage = PIPE_USAGE_STAGING;
625 resource.bind = 0;
626 resource.flags = R600_RESOURCE_FLAG_TRANSFER;
627 /* For texture reading, the temporary (detiled) texture is used as
628 * a render target when blitting from a tiled texture. */
629 if (usage & PIPE_TRANSFER_READ) {
630 resource.bind |= PIPE_BIND_RENDER_TARGET;
631 }
632 /* For texture writing, the temporary texture is used as a sampler
633 * when blitting into a tiled texture. */
634 if (usage & PIPE_TRANSFER_WRITE) {
635 resource.bind |= PIPE_BIND_SAMPLER_VIEW;
636 }
637 /* Create the temporary texture. */
638 trans->staging_texture = ctx->screen->resource_create(ctx->screen, &resource);
639 if (trans->staging_texture == NULL) {
640 R600_ERR("failed to create temporary texture to hold untiled copy\n");
641 pipe_resource_reference(&trans->transfer.resource, NULL);
642 FREE(trans);
643 return NULL;
644 }
645
646 trans->transfer.stride =
647 ((struct r600_resource_texture *)trans->staging_texture)->pitch_in_bytes[0];
648 if (usage & PIPE_TRANSFER_READ) {
649 r600_copy_to_staging_texture(ctx, trans);
650 /* Always referenced in the blit. */
651 ctx->flush(ctx, NULL);
652 }
653 return &trans->transfer;
654 }
655 trans->transfer.stride = rtex->pitch_in_bytes[level];
656 trans->transfer.layer_stride = rtex->layer_size[level];
657 trans->offset = r600_texture_get_offset(rtex, level, box->z);
658 return &trans->transfer;
659 }
660
661 void r600_texture_transfer_destroy(struct pipe_context *ctx,
662 struct pipe_transfer *transfer)
663 {
664 struct r600_transfer *rtransfer = (struct r600_transfer*)transfer;
665 struct pipe_resource *texture = transfer->resource;
666 struct r600_resource_texture *rtex = (struct r600_resource_texture*)texture;
667
668 if (rtransfer->staging_texture) {
669 if (transfer->usage & PIPE_TRANSFER_WRITE) {
670 r600_copy_from_staging_texture(ctx, rtransfer);
671 }
672 pipe_resource_reference(&rtransfer->staging_texture, NULL);
673 }
674
675 if (rtex->depth && !rtex->is_flushing_texture) {
676 if ((transfer->usage & PIPE_TRANSFER_WRITE) && rtex->flushed_depth_texture)
677 r600_blit_push_depth(ctx, rtex);
678 }
679
680 pipe_resource_reference(&transfer->resource, NULL);
681 FREE(transfer);
682 }
683
684 void* r600_texture_transfer_map(struct pipe_context *ctx,
685 struct pipe_transfer* transfer)
686 {
687 struct r600_transfer *rtransfer = (struct r600_transfer*)transfer;
688 struct r600_bo *bo;
689 enum pipe_format format = transfer->resource->format;
690 struct radeon *radeon = (struct radeon *)ctx->screen->winsys;
691 unsigned offset = 0;
692 char *map;
693
694 if (rtransfer->staging_texture) {
695 bo = ((struct r600_resource *)rtransfer->staging_texture)->bo;
696 } else {
697 struct r600_resource_texture *rtex = (struct r600_resource_texture*)transfer->resource;
698
699 if (rtex->flushed_depth_texture)
700 bo = ((struct r600_resource *)rtex->flushed_depth_texture)->bo;
701 else
702 bo = ((struct r600_resource *)transfer->resource)->bo;
703
704 offset = rtransfer->offset +
705 transfer->box.y / util_format_get_blockheight(format) * transfer->stride +
706 transfer->box.x / util_format_get_blockwidth(format) * util_format_get_blocksize(format);
707 }
708
709 if (!(map = r600_bo_map(radeon, bo, transfer->usage, ctx))) {
710 return NULL;
711 }
712
713 return map + offset;
714 }
715
716 void r600_texture_transfer_unmap(struct pipe_context *ctx,
717 struct pipe_transfer* transfer)
718 {
719 struct r600_transfer *rtransfer = (struct r600_transfer*)transfer;
720 struct radeon *radeon = (struct radeon *)ctx->screen->winsys;
721 struct r600_bo *bo;
722
723 if (rtransfer->staging_texture) {
724 bo = ((struct r600_resource *)rtransfer->staging_texture)->bo;
725 } else {
726 struct r600_resource_texture *rtex = (struct r600_resource_texture*)transfer->resource;
727
728 if (rtex->flushed_depth_texture) {
729 bo = ((struct r600_resource *)rtex->flushed_depth_texture)->bo;
730 } else {
731 bo = ((struct r600_resource *)transfer->resource)->bo;
732 }
733 }
734 r600_bo_unmap(radeon, bo);
735 }
736
737 void r600_init_surface_functions(struct r600_pipe_context *r600)
738 {
739 r600->context.create_surface = r600_create_surface;
740 r600->context.surface_destroy = r600_surface_destroy;
741 }
742
743 static unsigned r600_get_swizzle_combined(const unsigned char *swizzle_format,
744 const unsigned char *swizzle_view)
745 {
746 unsigned i;
747 unsigned char swizzle[4];
748 unsigned result = 0;
749 const uint32_t swizzle_shift[4] = {
750 16, 19, 22, 25,
751 };
752 const uint32_t swizzle_bit[4] = {
753 0, 1, 2, 3,
754 };
755
756 if (swizzle_view) {
757 /* Combine two sets of swizzles. */
758 for (i = 0; i < 4; i++) {
759 swizzle[i] = swizzle_view[i] <= UTIL_FORMAT_SWIZZLE_W ?
760 swizzle_format[swizzle_view[i]] : swizzle_view[i];
761 }
762 } else {
763 memcpy(swizzle, swizzle_format, 4);
764 }
765
766 /* Get swizzle. */
767 for (i = 0; i < 4; i++) {
768 switch (swizzle[i]) {
769 case UTIL_FORMAT_SWIZZLE_Y:
770 result |= swizzle_bit[1] << swizzle_shift[i];
771 break;
772 case UTIL_FORMAT_SWIZZLE_Z:
773 result |= swizzle_bit[2] << swizzle_shift[i];
774 break;
775 case UTIL_FORMAT_SWIZZLE_W:
776 result |= swizzle_bit[3] << swizzle_shift[i];
777 break;
778 case UTIL_FORMAT_SWIZZLE_0:
779 result |= V_038010_SQ_SEL_0 << swizzle_shift[i];
780 break;
781 case UTIL_FORMAT_SWIZZLE_1:
782 result |= V_038010_SQ_SEL_1 << swizzle_shift[i];
783 break;
784 default: /* UTIL_FORMAT_SWIZZLE_X */
785 result |= swizzle_bit[0] << swizzle_shift[i];
786 }
787 }
788 return result;
789 }
790
791 /* texture format translate */
792 uint32_t r600_translate_texformat(struct pipe_screen *screen,
793 enum pipe_format format,
794 const unsigned char *swizzle_view,
795 uint32_t *word4_p, uint32_t *yuv_format_p)
796 {
797 uint32_t result = 0, word4 = 0, yuv_format = 0;
798 const struct util_format_description *desc;
799 boolean uniform = TRUE;
800 static int r600_enable_s3tc = -1;
801
802 int i;
803 const uint32_t sign_bit[4] = {
804 S_038010_FORMAT_COMP_X(V_038010_SQ_FORMAT_COMP_SIGNED),
805 S_038010_FORMAT_COMP_Y(V_038010_SQ_FORMAT_COMP_SIGNED),
806 S_038010_FORMAT_COMP_Z(V_038010_SQ_FORMAT_COMP_SIGNED),
807 S_038010_FORMAT_COMP_W(V_038010_SQ_FORMAT_COMP_SIGNED)
808 };
809 desc = util_format_description(format);
810
811 word4 |= r600_get_swizzle_combined(desc->swizzle, swizzle_view);
812
813 /* Colorspace (return non-RGB formats directly). */
814 switch (desc->colorspace) {
815 /* Depth stencil formats */
816 case UTIL_FORMAT_COLORSPACE_ZS:
817 switch (format) {
818 case PIPE_FORMAT_Z16_UNORM:
819 result = FMT_16;
820 goto out_word4;
821 case PIPE_FORMAT_X24S8_USCALED:
822 word4 |= S_038010_NUM_FORMAT_ALL(V_038010_SQ_NUM_FORMAT_INT);
823 case PIPE_FORMAT_Z24X8_UNORM:
824 case PIPE_FORMAT_Z24_UNORM_S8_USCALED:
825 result = FMT_8_24;
826 goto out_word4;
827 case PIPE_FORMAT_S8X24_USCALED:
828 word4 |= S_038010_NUM_FORMAT_ALL(V_038010_SQ_NUM_FORMAT_INT);
829 case PIPE_FORMAT_X8Z24_UNORM:
830 case PIPE_FORMAT_S8_USCALED_Z24_UNORM:
831 result = FMT_24_8;
832 goto out_word4;
833 case PIPE_FORMAT_S8_USCALED:
834 result = FMT_8;
835 word4 |= S_038010_NUM_FORMAT_ALL(V_038010_SQ_NUM_FORMAT_INT);
836 goto out_word4;
837 case PIPE_FORMAT_Z32_FLOAT:
838 result = FMT_32_FLOAT;
839 goto out_word4;
840 case PIPE_FORMAT_Z32_FLOAT_S8X24_USCALED:
841 result = FMT_X24_8_32_FLOAT;
842 goto out_word4;
843 default:
844 goto out_unknown;
845 }
846
847 case UTIL_FORMAT_COLORSPACE_YUV:
848 yuv_format |= (1 << 30);
849 switch (format) {
850 case PIPE_FORMAT_UYVY:
851 case PIPE_FORMAT_YUYV:
852 default:
853 break;
854 }
855 goto out_unknown; /* TODO */
856
857 case UTIL_FORMAT_COLORSPACE_SRGB:
858 word4 |= S_038010_FORCE_DEGAMMA(1);
859 break;
860
861 default:
862 break;
863 }
864
865 if (r600_enable_s3tc == -1) {
866 struct r600_screen *rscreen = (struct r600_screen *)screen;
867 if (r600_get_minor_version(rscreen->radeon) >= 9)
868 r600_enable_s3tc = 1;
869 else
870 r600_enable_s3tc = debug_get_bool_option("R600_ENABLE_S3TC", FALSE);
871 }
872
873 if (desc->layout == UTIL_FORMAT_LAYOUT_RGTC) {
874 if (!r600_enable_s3tc)
875 goto out_unknown;
876
877 switch (format) {
878 case PIPE_FORMAT_RGTC1_SNORM:
879 case PIPE_FORMAT_LATC1_SNORM:
880 word4 |= sign_bit[0];
881 case PIPE_FORMAT_RGTC1_UNORM:
882 case PIPE_FORMAT_LATC1_UNORM:
883 result = FMT_BC4;
884 goto out_word4;
885 case PIPE_FORMAT_RGTC2_SNORM:
886 case PIPE_FORMAT_LATC2_SNORM:
887 word4 |= sign_bit[0] | sign_bit[1];
888 case PIPE_FORMAT_RGTC2_UNORM:
889 case PIPE_FORMAT_LATC2_UNORM:
890 result = FMT_BC5;
891 goto out_word4;
892 default:
893 goto out_unknown;
894 }
895 }
896
897 if (desc->layout == UTIL_FORMAT_LAYOUT_S3TC) {
898
899 if (!r600_enable_s3tc)
900 goto out_unknown;
901
902 if (!util_format_s3tc_enabled) {
903 goto out_unknown;
904 }
905
906 switch (format) {
907 case PIPE_FORMAT_DXT1_RGB:
908 case PIPE_FORMAT_DXT1_RGBA:
909 case PIPE_FORMAT_DXT1_SRGB:
910 case PIPE_FORMAT_DXT1_SRGBA:
911 result = FMT_BC1;
912 goto out_word4;
913 case PIPE_FORMAT_DXT3_RGBA:
914 case PIPE_FORMAT_DXT3_SRGBA:
915 result = FMT_BC2;
916 goto out_word4;
917 case PIPE_FORMAT_DXT5_RGBA:
918 case PIPE_FORMAT_DXT5_SRGBA:
919 result = FMT_BC3;
920 goto out_word4;
921 default:
922 goto out_unknown;
923 }
924 }
925
926 if (format == PIPE_FORMAT_R9G9B9E5_FLOAT) {
927 result = FMT_5_9_9_9_SHAREDEXP;
928 goto out_word4;
929 } else if (format == PIPE_FORMAT_R11G11B10_FLOAT) {
930 result = FMT_10_11_11_FLOAT;
931 goto out_word4;
932 }
933
934
935 for (i = 0; i < desc->nr_channels; i++) {
936 if (desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED) {
937 word4 |= sign_bit[i];
938 }
939 }
940
941 /* R8G8Bx_SNORM - TODO CxV8U8 */
942
943 /* See whether the components are of the same size. */
944 for (i = 1; i < desc->nr_channels; i++) {
945 uniform = uniform && desc->channel[0].size == desc->channel[i].size;
946 }
947
948 /* Non-uniform formats. */
949 if (!uniform) {
950 switch(desc->nr_channels) {
951 case 3:
952 if (desc->channel[0].size == 5 &&
953 desc->channel[1].size == 6 &&
954 desc->channel[2].size == 5) {
955 result = FMT_5_6_5;
956 goto out_word4;
957 }
958 goto out_unknown;
959 case 4:
960 if (desc->channel[0].size == 5 &&
961 desc->channel[1].size == 5 &&
962 desc->channel[2].size == 5 &&
963 desc->channel[3].size == 1) {
964 result = FMT_1_5_5_5;
965 goto out_word4;
966 }
967 if (desc->channel[0].size == 10 &&
968 desc->channel[1].size == 10 &&
969 desc->channel[2].size == 10 &&
970 desc->channel[3].size == 2) {
971 result = FMT_2_10_10_10;
972 goto out_word4;
973 }
974 goto out_unknown;
975 }
976 goto out_unknown;
977 }
978
979 /* Find the first non-VOID channel. */
980 for (i = 0; i < 4; i++) {
981 if (desc->channel[i].type != UTIL_FORMAT_TYPE_VOID) {
982 break;
983 }
984 }
985
986 if (i == 4)
987 goto out_unknown;
988
989 /* uniform formats */
990 switch (desc->channel[i].type) {
991 case UTIL_FORMAT_TYPE_UNSIGNED:
992 case UTIL_FORMAT_TYPE_SIGNED:
993 if (!desc->channel[i].normalized &&
994 desc->colorspace != UTIL_FORMAT_COLORSPACE_SRGB) {
995 goto out_unknown;
996 }
997
998 switch (desc->channel[i].size) {
999 case 4:
1000 switch (desc->nr_channels) {
1001 case 2:
1002 result = FMT_4_4;
1003 goto out_word4;
1004 case 4:
1005 result = FMT_4_4_4_4;
1006 goto out_word4;
1007 }
1008 goto out_unknown;
1009 case 8:
1010 switch (desc->nr_channels) {
1011 case 1:
1012 result = FMT_8;
1013 goto out_word4;
1014 case 2:
1015 result = FMT_8_8;
1016 goto out_word4;
1017 case 4:
1018 result = FMT_8_8_8_8;
1019 goto out_word4;
1020 }
1021 goto out_unknown;
1022 case 16:
1023 switch (desc->nr_channels) {
1024 case 1:
1025 result = FMT_16;
1026 goto out_word4;
1027 case 2:
1028 result = FMT_16_16;
1029 goto out_word4;
1030 case 4:
1031 result = FMT_16_16_16_16;
1032 goto out_word4;
1033 }
1034 goto out_unknown;
1035 case 32:
1036 switch (desc->nr_channels) {
1037 case 1:
1038 result = FMT_32;
1039 goto out_word4;
1040 case 2:
1041 result = FMT_32_32;
1042 goto out_word4;
1043 case 4:
1044 result = FMT_32_32_32_32;
1045 goto out_word4;
1046 }
1047 }
1048 goto out_unknown;
1049
1050 case UTIL_FORMAT_TYPE_FLOAT:
1051 switch (desc->channel[i].size) {
1052 case 16:
1053 switch (desc->nr_channels) {
1054 case 1:
1055 result = FMT_16_FLOAT;
1056 goto out_word4;
1057 case 2:
1058 result = FMT_16_16_FLOAT;
1059 goto out_word4;
1060 case 4:
1061 result = FMT_16_16_16_16_FLOAT;
1062 goto out_word4;
1063 }
1064 goto out_unknown;
1065 case 32:
1066 switch (desc->nr_channels) {
1067 case 1:
1068 result = FMT_32_FLOAT;
1069 goto out_word4;
1070 case 2:
1071 result = FMT_32_32_FLOAT;
1072 goto out_word4;
1073 case 4:
1074 result = FMT_32_32_32_32_FLOAT;
1075 goto out_word4;
1076 }
1077 }
1078 goto out_unknown;
1079 }
1080
1081 out_word4:
1082 if (word4_p)
1083 *word4_p = word4;
1084 if (yuv_format_p)
1085 *yuv_format_p = yuv_format;
1086 return result;
1087 out_unknown:
1088 /* R600_ERR("Unable to handle texformat %d %s\n", format, util_format_name(format)); */
1089 return ~0;
1090 }