i915g: use y-tiling when the blitter is not used
[mesa.git] / src / gallium / drivers / i915 / i915_resource_texture.c
1 /**************************************************************************
2 *
3 * Copyright 2006 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 * Michel Dänzer <michel@tungstengraphics.com>
31 */
32
33 #include "pipe/p_state.h"
34 #include "pipe/p_context.h"
35 #include "pipe/p_defines.h"
36 #include "util/u_inlines.h"
37 #include "util/u_format.h"
38 #include "util/u_math.h"
39 #include "util/u_memory.h"
40
41 #include "i915_context.h"
42 #include "i915_resource.h"
43 #include "i915_screen.h"
44 #include "i915_winsys.h"
45 #include "i915_debug.h"
46
47
48 #define DEBUG_TEXTURES 0
49
50 /*
51 * Helper function and arrays
52 */
53
54
55 /**
56 * Initial offset for Cube map.
57 */
58 static const int initial_offsets[6][2] = {
59 [PIPE_TEX_FACE_POS_X] = {0, 0},
60 [PIPE_TEX_FACE_POS_Y] = {1, 0},
61 [PIPE_TEX_FACE_POS_Z] = {1, 1},
62 [PIPE_TEX_FACE_NEG_X] = {0, 2},
63 [PIPE_TEX_FACE_NEG_Y] = {1, 2},
64 [PIPE_TEX_FACE_NEG_Z] = {1, 3},
65 };
66
67 /**
68 * Step offsets for Cube map.
69 */
70 static const int step_offsets[6][2] = {
71 [PIPE_TEX_FACE_POS_X] = { 0, 2},
72 [PIPE_TEX_FACE_POS_Y] = {-1, 2},
73 [PIPE_TEX_FACE_POS_Z] = {-1, 1},
74 [PIPE_TEX_FACE_NEG_X] = { 0, 2},
75 [PIPE_TEX_FACE_NEG_Y] = {-1, 2},
76 [PIPE_TEX_FACE_NEG_Z] = {-1, 1},
77 };
78
79 /**
80 * For compressed level 2
81 */
82 static const int bottom_offsets[6] = {
83 [PIPE_TEX_FACE_POS_X] = 16 + 0 * 8,
84 [PIPE_TEX_FACE_POS_Y] = 16 + 1 * 8,
85 [PIPE_TEX_FACE_POS_Z] = 16 + 2 * 8,
86 [PIPE_TEX_FACE_NEG_X] = 16 + 3 * 8,
87 [PIPE_TEX_FACE_NEG_Y] = 16 + 4 * 8,
88 [PIPE_TEX_FACE_NEG_Z] = 16 + 5 * 8,
89 };
90
91 static INLINE unsigned
92 align_nblocksx(enum pipe_format format, unsigned width, unsigned align_to)
93 {
94 return align(util_format_get_nblocksx(format, width), align_to);
95 }
96
97 static INLINE unsigned
98 align_nblocksy(enum pipe_format format, unsigned width, unsigned align_to)
99 {
100 return align(util_format_get_nblocksy(format, width), align_to);
101 }
102
103 static INLINE unsigned
104 get_pot_stride(enum pipe_format format, unsigned width)
105 {
106 return util_next_power_of_two(util_format_get_stride(format, width));
107 }
108
109 static INLINE const char*
110 get_tiling_string(enum i915_winsys_buffer_tile tile)
111 {
112 switch(tile) {
113 case I915_TILE_NONE:
114 return "none";
115 case I915_TILE_X:
116 return "x";
117 case I915_TILE_Y:
118 return "y";
119 default:
120 assert(FALSE);
121 return "?";
122 }
123 }
124
125
126 /*
127 * More advanced helper funcs
128 */
129
130
131 static void
132 i915_texture_set_level_info(struct i915_texture *tex,
133 unsigned level, unsigned nr_images)
134 {
135 assert(level < Elements(tex->nr_images));
136 assert(nr_images);
137 assert(!tex->image_offset[level]);
138
139 tex->nr_images[level] = nr_images;
140 tex->image_offset[level] = MALLOC(nr_images * sizeof(struct offset_pair));
141 tex->image_offset[level][0].nblocksx = 0;
142 tex->image_offset[level][0].nblocksy = 0;
143 }
144
145 INLINE unsigned i915_texture_offset(struct i915_texture *tex,
146 unsigned level, unsigned layer)
147 {
148 unsigned x, y;
149 x = tex->image_offset[level][layer].nblocksx
150 * util_format_get_blocksize(tex->b.b.format);
151 y = tex->image_offset[level][layer].nblocksy;
152
153 return y * tex->stride + x;
154 }
155
156 static void
157 i915_texture_set_image_offset(struct i915_texture *tex,
158 unsigned level, unsigned img,
159 unsigned nblocksx, unsigned nblocksy)
160 {
161 /* for the first image and level make sure offset is zero */
162 assert(!(img == 0 && level == 0) || (nblocksx == 0 && nblocksy == 0));
163 assert(img < tex->nr_images[level]);
164
165 tex->image_offset[level][img].nblocksx = nblocksx;
166 tex->image_offset[level][img].nblocksy = nblocksy;
167
168 #if DEBUG_TEXTURES
169 debug_printf("%s: %p level %u, img %u (%u, %u)\n", __FUNCTION__,
170 tex, level, img, x, y);
171 #endif
172 }
173
174 static enum i915_winsys_buffer_tile
175 i915_texture_tiling(struct i915_screen *is, struct i915_texture *tex)
176 {
177 if (!is->debug.tiling)
178 return I915_TILE_NONE;
179
180 if (tex->b.b.target == PIPE_TEXTURE_1D)
181 return I915_TILE_NONE;
182
183 if (util_format_is_s3tc(tex->b.b.format))
184 /* XXX X-tiling might make sense */
185 return I915_TILE_NONE;
186
187 if (is->debug.use_blitter)
188 return I915_TILE_X;
189 else
190 return I915_TILE_Y;
191 }
192
193
194 /*
195 * Shared layout functions
196 */
197
198
199 /**
200 * Special case to deal with scanout textures.
201 */
202 static boolean
203 i9x5_scanout_layout(struct i915_texture *tex)
204 {
205 struct pipe_resource *pt = &tex->b.b;
206
207 if (pt->last_level > 0 || util_format_get_blocksize(pt->format) != 4)
208 return FALSE;
209
210 i915_texture_set_level_info(tex, 0, 1);
211 i915_texture_set_image_offset(tex, 0, 0, 0, 0);
212
213 if (pt->width0 >= 240) {
214 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 64);
215 tex->total_nblocksy = align_nblocksy(pt->format, pt->height0, 8);
216 tex->tiling = I915_TILE_X;
217 /* special case for cursors */
218 } else if (pt->width0 == 64 && pt->height0 == 64) {
219 tex->stride = get_pot_stride(pt->format, pt->width0);
220 tex->total_nblocksy = align_nblocksy(pt->format, pt->height0, 8);
221 } else {
222 return FALSE;
223 }
224
225 #if DEBUG_TEXTURE
226 debug_printf("%s size: %d,%d,%d offset %d,%d (0x%x)\n", __FUNCTION__,
227 pt->width0, pt->height0, util_format_get_blocksize(pt->format),
228 tex->stride, tex->total_nblocksy, tex->stride * tex->total_nblocksy);
229 #endif
230
231 return TRUE;
232 }
233
234 /**
235 * Special case to deal with shared textures.
236 */
237 static boolean
238 i9x5_display_target_layout(struct i915_texture *tex)
239 {
240 struct pipe_resource *pt = &tex->b.b;
241
242 if (pt->last_level > 0 || util_format_get_blocksize(pt->format) != 4)
243 return FALSE;
244
245 /* fallback to normal textures for small textures */
246 if (pt->width0 < 240)
247 return FALSE;
248
249 i915_texture_set_level_info(tex, 0, 1);
250 i915_texture_set_image_offset(tex, 0, 0, 0, 0);
251
252 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 64);
253 tex->total_nblocksy = align_nblocksy(pt->format, pt->height0, 8);
254 tex->tiling = I915_TILE_X;
255
256 #if DEBUG_TEXTURE
257 debug_printf("%s size: %d,%d,%d offset %d,%d (0x%x)\n", __FUNCTION__,
258 pt->width0, pt->height0, util_format_get_blocksize(pt->format),
259 tex->stride, tex->total_nblocksy, tex->stride * tex->total_nblocksy);
260 #endif
261
262 return TRUE;
263 }
264
265 /**
266 * Helper function for special layouts
267 */
268 static boolean
269 i9x5_special_layout(struct i915_texture *tex)
270 {
271 struct pipe_resource *pt = &tex->b.b;
272
273 /* Scanouts needs special care */
274 if (pt->bind & PIPE_BIND_SCANOUT)
275 if (i9x5_scanout_layout(tex))
276 return TRUE;
277
278 /* Shared buffers needs to be compatible with X servers
279 *
280 * XXX: need a better name than shared for this if it is to be part
281 * of core gallium, and probably move the flag to resource.flags,
282 * rather than bindings.
283 */
284 if (pt->bind & (PIPE_BIND_SHARED | PIPE_BIND_DISPLAY_TARGET))
285 if (i9x5_display_target_layout(tex))
286 return TRUE;
287
288 return FALSE;
289 }
290
291 /**
292 * Cube layout used on i915 and for non-compressed textures on i945.
293 */
294 static void
295 i9x5_texture_layout_cube(struct i915_texture *tex)
296 {
297 struct pipe_resource *pt = &tex->b.b;
298 const unsigned nblocks = util_format_get_nblocksx(pt->format, pt->width0);
299 unsigned level;
300 unsigned face;
301
302 assert(pt->width0 == pt->height0); /* cubemap images are square */
303
304 /* double pitch for cube layouts */
305 tex->stride = align(nblocks * util_format_get_blocksize(pt->format) * 2, 4);
306 tex->total_nblocksy = nblocks * 4;
307
308 for (level = 0; level <= pt->last_level; level++)
309 i915_texture_set_level_info(tex, level, 6);
310
311 for (face = 0; face < 6; face++) {
312 unsigned x = initial_offsets[face][0] * nblocks;
313 unsigned y = initial_offsets[face][1] * nblocks;
314 unsigned d = nblocks;
315
316 for (level = 0; level <= pt->last_level; level++) {
317 i915_texture_set_image_offset(tex, level, face, x, y);
318 d >>= 1;
319 x += step_offsets[face][0] * d;
320 y += step_offsets[face][1] * d;
321 }
322 }
323 }
324
325
326 /*
327 * i915 layout functions
328 */
329
330
331 static void
332 i915_texture_layout_2d(struct i915_texture *tex)
333 {
334 struct pipe_resource *pt = &tex->b.b;
335 unsigned level;
336 unsigned width = pt->width0;
337 unsigned height = pt->height0;
338 unsigned nblocksy = util_format_get_nblocksy(pt->format, pt->width0);
339 unsigned align_y = 2;
340
341 if (util_format_is_s3tc(pt->format))
342 align_y = 1;
343
344 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 4);
345 tex->total_nblocksy = 0;
346
347 for (level = 0; level <= pt->last_level; level++) {
348 i915_texture_set_level_info(tex, level, 1);
349 i915_texture_set_image_offset(tex, level, 0, 0, tex->total_nblocksy);
350
351 tex->total_nblocksy += nblocksy;
352
353 width = u_minify(width, 1);
354 height = u_minify(height, 1);
355 nblocksy = align_nblocksy(pt->format, height, align_y);
356 }
357 }
358
359 static void
360 i915_texture_layout_3d(struct i915_texture *tex)
361 {
362 struct pipe_resource *pt = &tex->b.b;
363 unsigned level;
364
365 unsigned width = pt->width0;
366 unsigned height = pt->height0;
367 unsigned depth = pt->depth0;
368 unsigned nblocksy = util_format_get_nblocksy(pt->format, pt->height0);
369 unsigned stack_nblocksy = 0;
370
371 /* Calculate the size of a single slice.
372 */
373 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 4);
374
375 /* XXX: hardware expects/requires 9 levels at minimum.
376 */
377 for (level = 0; level <= MAX2(8, pt->last_level); level++) {
378 i915_texture_set_level_info(tex, level, depth);
379
380 stack_nblocksy += MAX2(2, nblocksy);
381
382 width = u_minify(width, 1);
383 height = u_minify(height, 1);
384 nblocksy = util_format_get_nblocksy(pt->format, height);
385 }
386
387 /* Fixup depth image_offsets:
388 */
389 for (level = 0; level <= pt->last_level; level++) {
390 unsigned i;
391 for (i = 0; i < depth; i++)
392 i915_texture_set_image_offset(tex, level, i, 0, i * stack_nblocksy);
393
394 depth = u_minify(depth, 1);
395 }
396
397 /* Multiply slice size by texture depth for total size. It's
398 * remarkable how wasteful of memory the i915 texture layouts
399 * are. They are largely fixed in the i945.
400 */
401 tex->total_nblocksy = stack_nblocksy * pt->depth0;
402 }
403
404 static boolean
405 i915_texture_layout(struct i915_texture * tex)
406 {
407 switch (tex->b.b.target) {
408 case PIPE_TEXTURE_1D:
409 case PIPE_TEXTURE_2D:
410 case PIPE_TEXTURE_RECT:
411 if (!i9x5_special_layout(tex))
412 i915_texture_layout_2d(tex);
413 break;
414 case PIPE_TEXTURE_3D:
415 i915_texture_layout_3d(tex);
416 break;
417 case PIPE_TEXTURE_CUBE:
418 i9x5_texture_layout_cube(tex);
419 break;
420 default:
421 assert(0);
422 return FALSE;
423 }
424
425 return TRUE;
426 }
427
428
429 /*
430 * i945 layout functions
431 */
432
433
434 static void
435 i945_texture_layout_2d(struct i915_texture *tex)
436 {
437 struct pipe_resource *pt = &tex->b.b;
438 int align_x = 4, align_y = 2;
439 unsigned level;
440 unsigned x = 0;
441 unsigned y = 0;
442 unsigned width = pt->width0;
443 unsigned height = pt->height0;
444 unsigned nblocksx = util_format_get_nblocksx(pt->format, pt->width0);
445 unsigned nblocksy = util_format_get_nblocksy(pt->format, pt->height0);
446
447 if (util_format_is_s3tc(pt->format)) {
448 align_x = 1;
449 align_y = 1;
450 }
451
452 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 4);
453
454 /* May need to adjust pitch to accomodate the placement of
455 * the 2nd mipmap level. This occurs when the alignment
456 * constraints of mipmap placement push the right edge of the
457 * 2nd mipmap level out past the width of its parent.
458 */
459 if (pt->last_level > 0) {
460 unsigned mip1_nblocksx =
461 align_nblocksx(pt->format, u_minify(pt->width0, 1), align_x) +
462 util_format_get_nblocksx(pt->format, u_minify(pt->width0, 2));
463
464 if (mip1_nblocksx > nblocksx)
465 tex->stride = mip1_nblocksx * util_format_get_blocksize(pt->format);
466 }
467
468 /* Pitch must be a whole number of dwords
469 */
470 tex->stride = align(tex->stride, 64);
471 tex->total_nblocksy = 0;
472
473 for (level = 0; level <= pt->last_level; level++) {
474 i915_texture_set_level_info(tex, level, 1);
475 i915_texture_set_image_offset(tex, level, 0, x, y);
476
477 /* Because the images are packed better, the final offset
478 * might not be the maximal one:
479 */
480 tex->total_nblocksy = MAX2(tex->total_nblocksy, y + nblocksy);
481
482 /* Layout_below: step right after second mipmap level.
483 */
484 if (level == 1) {
485 x += nblocksx;
486 } else {
487 y += nblocksy;
488 }
489
490 width = u_minify(width, 1);
491 height = u_minify(height, 1);
492 nblocksx = align_nblocksx(pt->format, width, align_x);
493 nblocksy = align_nblocksy(pt->format, height, align_y);
494 }
495 }
496
497 static void
498 i945_texture_layout_3d(struct i915_texture *tex)
499 {
500 struct pipe_resource *pt = &tex->b.b;
501 unsigned width = pt->width0;
502 unsigned height = pt->height0;
503 unsigned depth = pt->depth0;
504 unsigned nblocksy = util_format_get_nblocksy(pt->format, pt->width0);
505 unsigned pack_x_pitch, pack_x_nr;
506 unsigned pack_y_pitch;
507 unsigned level;
508
509 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 4);
510 tex->total_nblocksy = 0;
511
512 pack_y_pitch = MAX2(nblocksy, 2);
513 pack_x_pitch = tex->stride / util_format_get_blocksize(pt->format);
514 pack_x_nr = 1;
515
516 for (level = 0; level <= pt->last_level; level++) {
517 int x = 0;
518 int y = 0;
519 unsigned q, j;
520
521 i915_texture_set_level_info(tex, level, depth);
522
523 for (q = 0; q < depth;) {
524 for (j = 0; j < pack_x_nr && q < depth; j++, q++) {
525 i915_texture_set_image_offset(tex, level, q, x, y + tex->total_nblocksy);
526 x += pack_x_pitch;
527 }
528
529 x = 0;
530 y += pack_y_pitch;
531 }
532
533 tex->total_nblocksy += y;
534
535 if (pack_x_pitch > 4) {
536 pack_x_pitch >>= 1;
537 pack_x_nr <<= 1;
538 assert(pack_x_pitch * pack_x_nr * util_format_get_blocksize(pt->format) <= tex->stride);
539 }
540
541 if (pack_y_pitch > 2) {
542 pack_y_pitch >>= 1;
543 }
544
545 width = u_minify(width, 1);
546 height = u_minify(height, 1);
547 depth = u_minify(depth, 1);
548 nblocksy = util_format_get_nblocksy(pt->format, height);
549 }
550 }
551
552 static void
553 i945_texture_layout_cube(struct i915_texture *tex)
554 {
555 struct pipe_resource *pt = &tex->b.b;
556 const unsigned nblocks = util_format_get_nblocksx(pt->format, pt->width0);
557 const unsigned dim = pt->width0;
558 unsigned level;
559 unsigned face;
560
561 assert(pt->width0 == pt->height0); /* cubemap images are square */
562 assert(util_next_power_of_two(pt->width0) == pt->width0); /* npot only */
563 assert(util_format_is_s3tc(pt->format)); /* compressed only */
564
565 /*
566 * Depending on the size of the largest images, pitch can be
567 * determined either by the old-style packing of cubemap faces,
568 * or the final row of 4x4, 2x2 and 1x1 faces below this.
569 *
570 * 64 * 2 / 4 = 32
571 * 14 * 2 = 28
572 */
573 if (pt->width0 >= 64)
574 tex->stride = nblocks * 2 * util_format_get_blocksize(pt->format);
575 else
576 tex->stride = 14 * 2 * util_format_get_blocksize(pt->format);
577
578 /*
579 * Something similary apply for height as well.
580 */
581 if (pt->width0 >= 4)
582 tex->total_nblocksy = nblocks * 4 + 1;
583 else
584 tex->total_nblocksy = 1;
585
586 /* Set all the levels to effectively occupy the whole rectangular region */
587 for (level = 0; level <= pt->last_level; level++)
588 i915_texture_set_level_info(tex, level, 6);
589
590 for (face = 0; face < 6; face++) {
591 /* all calculations in pixels */
592 unsigned total_height = tex->total_nblocksy * 4;
593 unsigned x = initial_offsets[face][0] * dim;
594 unsigned y = initial_offsets[face][1] * dim;
595 unsigned d = dim;
596
597 if (dim == 4 && face >= 4) {
598 x = (face - 4) * 8;
599 y = tex->total_nblocksy * 4 - 4; /* 4 = 1 block */
600 } else if (dim < 4 && (face > 0)) {
601 x = face * 8;
602 y = total_height - 4;
603 }
604
605 for (level = 0; level <= pt->last_level; level++) {
606 i915_texture_set_image_offset(tex, level, face,
607 util_format_get_nblocksx(pt->format, x),
608 util_format_get_nblocksy(pt->format, y));
609
610 d >>= 1;
611
612 switch (d) {
613 case 4:
614 switch (face) {
615 case PIPE_TEX_FACE_POS_X:
616 case PIPE_TEX_FACE_NEG_X:
617 x += step_offsets[face][0] * d;
618 y += step_offsets[face][1] * d;
619 break;
620 case PIPE_TEX_FACE_POS_Y:
621 case PIPE_TEX_FACE_NEG_Y:
622 y += 12;
623 x -= 8;
624 break;
625 case PIPE_TEX_FACE_POS_Z:
626 case PIPE_TEX_FACE_NEG_Z:
627 y = total_height - 4;
628 x = (face - 4) * 8;
629 break;
630 }
631 break;
632 case 2:
633 y = total_height - 4;
634 x = bottom_offsets[face];
635 break;
636 case 1:
637 x += 48;
638 break;
639 default:
640 x += step_offsets[face][0] * d;
641 y += step_offsets[face][1] * d;
642 break;
643 }
644 }
645 }
646 }
647
648 static boolean
649 i945_texture_layout(struct i915_texture * tex)
650 {
651 switch (tex->b.b.target) {
652 case PIPE_TEXTURE_1D:
653 case PIPE_TEXTURE_2D:
654 case PIPE_TEXTURE_RECT:
655 if (!i9x5_special_layout(tex))
656 i945_texture_layout_2d(tex);
657 break;
658 case PIPE_TEXTURE_3D:
659 i945_texture_layout_3d(tex);
660 break;
661 case PIPE_TEXTURE_CUBE:
662 if (!util_format_is_s3tc(tex->b.b.format))
663 i9x5_texture_layout_cube(tex);
664 else
665 i945_texture_layout_cube(tex);
666 break;
667 default:
668 assert(0);
669 return FALSE;
670 }
671
672 return TRUE;
673 }
674
675
676
677 /*
678 * Screen texture functions
679 */
680
681
682
683 static boolean
684 i915_texture_get_handle(struct pipe_screen * screen,
685 struct pipe_resource *texture,
686 struct winsys_handle *whandle)
687 {
688 struct i915_screen *is = i915_screen(screen);
689 struct i915_texture *tex = i915_texture(texture);
690 struct i915_winsys *iws = is->iws;
691
692 return iws->buffer_get_handle(iws, tex->buffer, whandle, tex->stride);
693 }
694
695
696 static void
697 i915_texture_destroy(struct pipe_screen *screen,
698 struct pipe_resource *pt)
699 {
700 struct i915_texture *tex = i915_texture(pt);
701 struct i915_winsys *iws = i915_screen(screen)->iws;
702 uint i;
703
704 iws->buffer_destroy(iws, tex->buffer);
705
706 for (i = 0; i < Elements(tex->image_offset); i++)
707 if (tex->image_offset[i])
708 FREE(tex->image_offset[i]);
709
710 FREE(tex);
711 }
712
713 static struct pipe_transfer *
714 i915_texture_get_transfer(struct pipe_context *pipe,
715 struct pipe_resource *resource,
716 unsigned level,
717 unsigned usage,
718 const struct pipe_box *box)
719 {
720 struct i915_context *i915 = i915_context(pipe);
721 struct i915_texture *tex = i915_texture(resource);
722 struct pipe_transfer *transfer = util_slab_alloc(&i915->transfer_pool);
723
724 if (transfer == NULL)
725 return NULL;
726
727 transfer->resource = resource;
728 transfer->level = level;
729 transfer->usage = usage;
730 transfer->box = *box;
731 transfer->stride = tex->stride;
732 /* FIXME: layer_stride */
733
734 return transfer;
735 }
736
737 static void
738 i915_transfer_destroy(struct pipe_context *pipe,
739 struct pipe_transfer *transfer)
740 {
741 struct i915_context *i915 = i915_context(pipe);
742 util_slab_free(&i915->transfer_pool, transfer);
743 }
744
745 static void *
746 i915_texture_transfer_map(struct pipe_context *pipe,
747 struct pipe_transfer *transfer)
748 {
749 struct pipe_resource *resource = transfer->resource;
750 struct i915_texture *tex = i915_texture(resource);
751 struct i915_winsys *iws = i915_screen(pipe->screen)->iws;
752 struct pipe_box *box = &transfer->box;
753 enum pipe_format format = resource->format;
754 unsigned offset;
755 char *map;
756
757 if (resource->target != PIPE_TEXTURE_3D &&
758 resource->target != PIPE_TEXTURE_CUBE)
759 assert(box->z == 0);
760 offset = i915_texture_offset(tex, transfer->level, box->z);
761
762 map = iws->buffer_map(iws, tex->buffer,
763 (transfer->usage & PIPE_TRANSFER_WRITE) ? TRUE : FALSE);
764 if (map == NULL)
765 return NULL;
766
767 return map + offset +
768 box->y / util_format_get_blockheight(format) * transfer->stride +
769 box->x / util_format_get_blockwidth(format) * util_format_get_blocksize(format);
770 }
771
772 static void
773 i915_texture_transfer_unmap(struct pipe_context *pipe,
774 struct pipe_transfer *transfer)
775 {
776 struct i915_texture *tex = i915_texture(transfer->resource);
777 struct i915_winsys *iws = i915_screen(tex->b.b.screen)->iws;
778 iws->buffer_unmap(iws, tex->buffer);
779 }
780
781
782
783 struct u_resource_vtbl i915_texture_vtbl =
784 {
785 i915_texture_get_handle, /* get_handle */
786 i915_texture_destroy, /* resource_destroy */
787 i915_texture_get_transfer, /* get_transfer */
788 i915_transfer_destroy, /* transfer_destroy */
789 i915_texture_transfer_map, /* transfer_map */
790 u_default_transfer_flush_region, /* transfer_flush_region */
791 i915_texture_transfer_unmap, /* transfer_unmap */
792 u_default_transfer_inline_write /* transfer_inline_write */
793 };
794
795
796
797
798 struct pipe_resource *
799 i915_texture_create(struct pipe_screen *screen,
800 const struct pipe_resource *template)
801 {
802 struct i915_screen *is = i915_screen(screen);
803 struct i915_winsys *iws = is->iws;
804 struct i915_texture *tex = CALLOC_STRUCT(i915_texture);
805 unsigned buf_usage = 0;
806
807 if (!tex)
808 return NULL;
809
810 tex->b.b = *template;
811 tex->b.vtbl = &i915_texture_vtbl;
812 pipe_reference_init(&tex->b.b.reference, 1);
813 tex->b.b.screen = screen;
814
815 tex->tiling = i915_texture_tiling(is, tex);
816
817 if (is->is_i945) {
818 if (!i945_texture_layout(tex))
819 goto fail;
820 } else {
821 if (!i915_texture_layout(tex))
822 goto fail;
823 }
824
825 /* for scanouts and cursors, cursors arn't scanouts */
826
827 /* XXX: use a custom flag for cursors, don't rely on magically
828 * guessing that this is Xorg asking for a cursor
829 */
830 if ((template->bind & PIPE_BIND_SCANOUT) && template->width0 != 64)
831 buf_usage = I915_NEW_SCANOUT;
832 else
833 buf_usage = I915_NEW_TEXTURE;
834
835 tex->buffer = iws->buffer_create_tiled(iws, &tex->stride, tex->total_nblocksy,
836 &tex->tiling, buf_usage);
837 if (!tex->buffer)
838 goto fail;
839
840 I915_DBG(DBG_TEXTURE, "%s: %p stride %u, blocks (%u, %u) tiling %s\n", __func__,
841 tex, tex->stride,
842 tex->stride / util_format_get_blocksize(tex->b.b.format),
843 tex->total_nblocksy, get_tiling_string(tex->tiling));
844
845 return &tex->b.b;
846
847 fail:
848 FREE(tex);
849 return NULL;
850 }
851
852 struct pipe_resource *
853 i915_texture_from_handle(struct pipe_screen * screen,
854 const struct pipe_resource *template,
855 struct winsys_handle *whandle)
856 {
857 struct i915_screen *is = i915_screen(screen);
858 struct i915_texture *tex;
859 struct i915_winsys *iws = is->iws;
860 struct i915_winsys_buffer *buffer;
861 unsigned stride;
862 enum i915_winsys_buffer_tile tiling;
863
864 assert(screen);
865
866 buffer = iws->buffer_from_handle(iws, whandle, &tiling, &stride);
867
868 /* Only supports one type */
869 if ((template->target != PIPE_TEXTURE_2D &&
870 template->target != PIPE_TEXTURE_RECT) ||
871 template->last_level != 0 ||
872 template->depth0 != 1) {
873 return NULL;
874 }
875
876 tex = CALLOC_STRUCT(i915_texture);
877 if (!tex)
878 return NULL;
879
880 tex->b.b = *template;
881 tex->b.vtbl = &i915_texture_vtbl;
882 pipe_reference_init(&tex->b.b.reference, 1);
883 tex->b.b.screen = screen;
884
885 tex->stride = stride;
886 tex->tiling = tiling;
887 tex->total_nblocksy = align_nblocksy(tex->b.b.format, tex->b.b.height0, 8);
888
889 i915_texture_set_level_info(tex, 0, 1);
890 i915_texture_set_image_offset(tex, 0, 0, 0, 0);
891
892 tex->buffer = buffer;
893
894 I915_DBG(DBG_TEXTURE, "%s: %p stride %u, blocks (%u, %u) tiling %s\n", __func__,
895 tex, tex->stride,
896 tex->stride / util_format_get_blocksize(tex->b.b.format),
897 tex->total_nblocksy, get_tiling_string(tex->tiling));
898
899 return &tex->b.b;
900 }
901