Merge branch 'texformat-rework'
[mesa.git] / src / mesa / drivers / dri / intel / intel_mipmap_tree.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 #include "intel_context.h"
29 #include "intel_mipmap_tree.h"
30 #include "intel_regions.h"
31 #include "intel_tex_layout.h"
32 #include "intel_chipset.h"
33 #ifndef I915
34 #include "brw_state.h"
35 #endif
36 #include "main/enums.h"
37
38 #define FILE_DEBUG_FLAG DEBUG_MIPTREE
39
40
41 static GLenum
42 target_to_target(GLenum target)
43 {
44 switch (target) {
45 case GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB:
46 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB:
47 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB:
48 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB:
49 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB:
50 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB:
51 return GL_TEXTURE_CUBE_MAP_ARB;
52 default:
53 return target;
54 }
55 }
56
57
58 static struct intel_mipmap_tree *
59 intel_miptree_create_internal(struct intel_context *intel,
60 GLenum target,
61 GLenum internal_format,
62 GLuint first_level,
63 GLuint last_level,
64 GLuint width0,
65 GLuint height0,
66 GLuint depth0, GLuint cpp, GLuint compress_byte,
67 uint32_t tiling)
68 {
69 GLboolean ok;
70 struct intel_mipmap_tree *mt = calloc(sizeof(*mt), 1);
71
72 DBG("%s target %s format %s level %d..%d <-- %p\n", __FUNCTION__,
73 _mesa_lookup_enum_by_nr(target),
74 _mesa_lookup_enum_by_nr(internal_format),
75 first_level, last_level, mt);
76
77 mt->target = target_to_target(target);
78 mt->internal_format = internal_format;
79 mt->first_level = first_level;
80 mt->last_level = last_level;
81 mt->width0 = width0;
82 mt->height0 = height0;
83 mt->depth0 = depth0;
84 mt->cpp = compress_byte ? compress_byte : cpp;
85 mt->compressed = compress_byte ? 1 : 0;
86 mt->refcount = 1;
87 mt->pitch = 0;
88
89 #ifdef I915
90 if (IS_945(intel->intelScreen->deviceID))
91 ok = i945_miptree_layout(intel, mt, tiling);
92 else
93 ok = i915_miptree_layout(intel, mt, tiling);
94 #else
95 ok = brw_miptree_layout(intel, mt, tiling);
96 #endif
97
98 if (!ok) {
99 free(mt);
100 DBG("%s not okay - returning NULL\n", __FUNCTION__);
101 return NULL;
102 }
103
104 return mt;
105 }
106
107
108 struct intel_mipmap_tree *
109 intel_miptree_create(struct intel_context *intel,
110 GLenum target,
111 GLenum base_format,
112 GLenum internal_format,
113 GLuint first_level,
114 GLuint last_level,
115 GLuint width0,
116 GLuint height0,
117 GLuint depth0, GLuint cpp, GLuint compress_byte,
118 GLboolean expect_accelerated_upload)
119 {
120 struct intel_mipmap_tree *mt;
121 uint32_t tiling;
122
123 if (intel->use_texture_tiling && compress_byte == 0 &&
124 intel->intelScreen->kernel_exec_fencing) {
125 if (IS_965(intel->intelScreen->deviceID) &&
126 (base_format == GL_DEPTH_COMPONENT ||
127 base_format == GL_DEPTH_STENCIL_EXT))
128 tiling = I915_TILING_Y;
129 else
130 tiling = I915_TILING_X;
131 } else
132 tiling = I915_TILING_NONE;
133
134 mt = intel_miptree_create_internal(intel, target, internal_format,
135 first_level, last_level, width0,
136 height0, depth0, cpp, compress_byte,
137 tiling);
138 /*
139 * pitch == 0 || height == 0 indicates the null texture
140 */
141 if (!mt || !mt->pitch || !mt->total_height) {
142 free(mt);
143 return NULL;
144 }
145
146 mt->region = intel_region_alloc(intel,
147 tiling,
148 mt->cpp,
149 mt->pitch,
150 mt->total_height,
151 mt->pitch,
152 expect_accelerated_upload);
153
154 if (!mt->region) {
155 free(mt);
156 return NULL;
157 }
158
159 return mt;
160 }
161
162
163 struct intel_mipmap_tree *
164 intel_miptree_create_for_region(struct intel_context *intel,
165 GLenum target,
166 GLenum internal_format,
167 GLuint first_level,
168 GLuint last_level,
169 struct intel_region *region,
170 GLuint depth0,
171 GLuint compress_byte)
172 {
173 struct intel_mipmap_tree *mt;
174
175 mt = intel_miptree_create_internal(intel, target, internal_format,
176 first_level, last_level,
177 region->width, region->height, 1,
178 region->cpp, compress_byte,
179 I915_TILING_NONE);
180 if (!mt)
181 return mt;
182 #if 0
183 if (mt->pitch != region->pitch) {
184 fprintf(stderr,
185 "region pitch (%d) doesn't match mipmap tree pitch (%d)\n",
186 region->pitch, mt->pitch);
187 free(mt);
188 return NULL;
189 }
190 #else
191 /* The mipmap tree pitch is aligned to 64 bytes to make sure render
192 * to texture works, but we don't need that for texturing from a
193 * pixmap. Just override it here. */
194 mt->pitch = region->pitch;
195 #endif
196
197 intel_region_reference(&mt->region, region);
198
199 return mt;
200 }
201
202
203 /**
204 * intel_miptree_pitch_align:
205 *
206 * @intel: intel context pointer
207 *
208 * @mt: the miptree to compute pitch alignment for
209 *
210 * @pitch: the natural pitch value
211 *
212 * Given @pitch, compute a larger value which accounts for
213 * any necessary alignment required by the device
214 */
215 int intel_miptree_pitch_align (struct intel_context *intel,
216 struct intel_mipmap_tree *mt,
217 uint32_t tiling,
218 int pitch)
219 {
220 #ifdef I915
221 GLcontext *ctx = &intel->ctx;
222 #endif
223
224 if (!mt->compressed) {
225 int pitch_align;
226
227 if (intel->ttm) {
228 /* XXX: Align pitch to multiple of 64 bytes for now to allow
229 * render-to-texture to work in all cases. This should probably be
230 * replaced at some point by some scheme to only do this when really
231 * necessary.
232 */
233 pitch_align = 64;
234 } else {
235 pitch_align = 4;
236 }
237
238 if (tiling == I915_TILING_X)
239 pitch_align = 512;
240 else if (tiling == I915_TILING_Y)
241 pitch_align = 128;
242
243 pitch = ALIGN(pitch * mt->cpp, pitch_align);
244
245 #ifdef I915
246 /* XXX: At least the i915 seems very upset when the pitch is a multiple
247 * of 1024 and sometimes 512 bytes - performance can drop by several
248 * times. Go to the next multiple of the required alignment for now.
249 */
250 if (!(pitch & 511) &&
251 (pitch + pitch_align) < (1 << ctx->Const.MaxTextureLevels))
252 pitch += pitch_align;
253 #endif
254
255 pitch /= mt->cpp;
256 }
257 return pitch;
258 }
259
260
261 void
262 intel_miptree_reference(struct intel_mipmap_tree **dst,
263 struct intel_mipmap_tree *src)
264 {
265 src->refcount++;
266 *dst = src;
267 DBG("%s %p refcount now %d\n", __FUNCTION__, src, src->refcount);
268 }
269
270
271 void
272 intel_miptree_release(struct intel_context *intel,
273 struct intel_mipmap_tree **mt)
274 {
275 if (!*mt)
276 return;
277
278 DBG("%s %p refcount will be %d\n", __FUNCTION__, *mt, (*mt)->refcount - 1);
279 if (--(*mt)->refcount <= 0) {
280 GLuint i;
281
282 DBG("%s deleting %p\n", __FUNCTION__, *mt);
283
284 #ifndef I915
285 /* Free up cached binding tables holding a reference on our buffer, to
286 * avoid excessive memory consumption.
287 *
288 * This isn't as aggressive as we could be, as we'd like to do
289 * it from any time we free the last ref on a region. But intel_region.c
290 * is context-agnostic. Perhaps our constant state cache should be, as
291 * well.
292 */
293 brw_state_cache_bo_delete(&brw_context(&intel->ctx)->surface_cache,
294 (*mt)->region->buffer);
295 #endif
296
297 intel_region_release(&((*mt)->region));
298
299 for (i = 0; i < MAX_TEXTURE_LEVELS; i++) {
300 free((*mt)->level[i].x_offset);
301 free((*mt)->level[i].y_offset);
302 }
303
304 free(*mt);
305 }
306 *mt = NULL;
307 }
308
309
310 /**
311 * Can the image be pulled into a unified mipmap tree? This mirrors
312 * the completeness test in a lot of ways.
313 *
314 * Not sure whether I want to pass gl_texture_image here.
315 */
316 GLboolean
317 intel_miptree_match_image(struct intel_mipmap_tree *mt,
318 struct gl_texture_image *image,
319 GLuint face, GLuint level)
320 {
321 GLboolean isCompressed = _mesa_is_format_compressed(image->TexFormat);
322
323 /* Images with borders are never pulled into mipmap trees.
324 */
325 if (image->Border ||
326 ((image->_BaseFormat == GL_DEPTH_COMPONENT) &&
327 ((image->TexObject->WrapS == GL_CLAMP_TO_BORDER) ||
328 (image->TexObject->WrapT == GL_CLAMP_TO_BORDER))))
329 return GL_FALSE;
330
331 if (image->InternalFormat != mt->internal_format ||
332 isCompressed != mt->compressed)
333 return GL_FALSE;
334
335 if (!isCompressed &&
336 !mt->compressed &&
337 _mesa_get_format_bytes(image->TexFormat) != mt->cpp)
338 return GL_FALSE;
339
340 /* Test image dimensions against the base level image adjusted for
341 * minification. This will also catch images not present in the
342 * tree, changed targets, etc.
343 */
344 if (image->Width != mt->level[level].width ||
345 image->Height != mt->level[level].height ||
346 image->Depth != mt->level[level].depth)
347 return GL_FALSE;
348
349 return GL_TRUE;
350 }
351
352
353 void
354 intel_miptree_set_level_info(struct intel_mipmap_tree *mt,
355 GLuint level,
356 GLuint nr_images,
357 GLuint x, GLuint y,
358 GLuint w, GLuint h, GLuint d)
359 {
360 mt->level[level].width = w;
361 mt->level[level].height = h;
362 mt->level[level].depth = d;
363 mt->level[level].level_offset = (x + y * mt->pitch) * mt->cpp;
364 mt->level[level].level_x = x;
365 mt->level[level].level_y = y;
366 mt->level[level].nr_images = nr_images;
367
368 DBG("%s level %d size: %d,%d,%d offset %d,%d (0x%x)\n", __FUNCTION__,
369 level, w, h, d, x, y, mt->level[level].level_offset);
370
371 assert(nr_images);
372 assert(!mt->level[level].x_offset);
373
374 mt->level[level].x_offset = malloc(nr_images * sizeof(GLuint));
375 mt->level[level].x_offset[0] = mt->level[level].level_x;
376 mt->level[level].y_offset = malloc(nr_images * sizeof(GLuint));
377 mt->level[level].y_offset[0] = mt->level[level].level_y;
378 }
379
380
381 void
382 intel_miptree_set_image_offset(struct intel_mipmap_tree *mt,
383 GLuint level, GLuint img,
384 GLuint x, GLuint y)
385 {
386 if (img == 0 && level == 0)
387 assert(x == 0 && y == 0);
388
389 assert(img < mt->level[level].nr_images);
390
391 mt->level[level].x_offset[img] = mt->level[level].level_x + x;
392 mt->level[level].y_offset[img] = mt->level[level].level_y + y;
393
394 DBG("%s level %d img %d pos %d,%d\n",
395 __FUNCTION__, level, img,
396 mt->level[level].x_offset[img], mt->level[level].y_offset[img]);
397 }
398
399
400 void
401 intel_miptree_get_image_offset(struct intel_mipmap_tree *mt,
402 GLuint level, GLuint face, GLuint depth,
403 GLuint *x, GLuint *y)
404 {
405 if (mt->target == GL_TEXTURE_CUBE_MAP_ARB) {
406 *x = mt->level[level].x_offset[face];
407 *y = mt->level[level].y_offset[face];
408 } else if (mt->target == GL_TEXTURE_3D) {
409 *x = mt->level[level].x_offset[depth];
410 *y = mt->level[level].y_offset[depth];
411 } else {
412 *x = mt->level[level].x_offset[0];
413 *y = mt->level[level].y_offset[0];
414 }
415 }
416
417 /**
418 * Map a teximage in a mipmap tree.
419 * \param row_stride returns row stride in bytes
420 * \param image_stride returns image stride in bytes (for 3D textures).
421 * \param image_offsets pointer to array of pixel offsets from the returned
422 * pointer to each depth image
423 * \return address of mapping
424 */
425 GLubyte *
426 intel_miptree_image_map(struct intel_context * intel,
427 struct intel_mipmap_tree * mt,
428 GLuint face,
429 GLuint level,
430 GLuint * row_stride, GLuint * image_offsets)
431 {
432 GLuint x, y;
433 DBG("%s \n", __FUNCTION__);
434
435 if (row_stride)
436 *row_stride = mt->pitch * mt->cpp;
437
438 if (mt->target == GL_TEXTURE_3D) {
439 int i;
440
441 for (i = 0; i < mt->level[level].depth; i++) {
442
443 intel_miptree_get_image_offset(mt, level, face, i,
444 &x, &y);
445 image_offsets[i] = x + y * mt->pitch;
446 }
447
448 return intel_region_map(intel, mt->region);
449 } else {
450 assert(mt->level[level].depth == 1);
451 intel_miptree_get_image_offset(mt, level, face, 0,
452 &x, &y);
453 image_offsets[0] = 0;
454
455 return intel_region_map(intel, mt->region) +
456 (x + y * mt->pitch) * mt->cpp;
457 }
458 }
459
460
461 void
462 intel_miptree_image_unmap(struct intel_context *intel,
463 struct intel_mipmap_tree *mt)
464 {
465 DBG("%s\n", __FUNCTION__);
466 intel_region_unmap(intel, mt->region);
467 }
468
469
470 /**
471 * Upload data for a particular image.
472 */
473 void
474 intel_miptree_image_data(struct intel_context *intel,
475 struct intel_mipmap_tree *dst,
476 GLuint face,
477 GLuint level,
478 void *src,
479 GLuint src_row_pitch,
480 GLuint src_image_pitch)
481 {
482 const GLuint depth = dst->level[level].depth;
483 GLuint i;
484
485 DBG("%s: %d/%d\n", __FUNCTION__, face, level);
486 for (i = 0; i < depth; i++) {
487 GLuint dst_x, dst_y, height;
488
489 intel_miptree_get_image_offset(dst, level, face, i, &dst_x, &dst_y);
490
491 height = dst->level[level].height;
492 if(dst->compressed)
493 height = (height + 3) / 4;
494
495 intel_region_data(intel,
496 dst->region, 0, dst_x, dst_y,
497 src,
498 src_row_pitch,
499 0, 0, /* source x, y */
500 dst->level[level].width, height); /* width, height */
501
502 src = (char *)src + src_image_pitch * dst->cpp;
503 }
504 }
505
506
507 /**
508 * Copy mipmap image between trees
509 */
510 void
511 intel_miptree_image_copy(struct intel_context *intel,
512 struct intel_mipmap_tree *dst,
513 GLuint face, GLuint level,
514 struct intel_mipmap_tree *src)
515 {
516 GLuint width = src->level[level].width;
517 GLuint height = src->level[level].height;
518 GLuint depth = src->level[level].depth;
519 GLuint src_x, src_y, dst_x, dst_y;
520 GLuint i;
521 GLboolean success;
522
523 if (dst->compressed) {
524 GLuint align_w, align_h;
525
526 intel_get_texture_alignment_unit(dst->internal_format,
527 &align_w, &align_h);
528 height = (height + 3) / 4;
529 width = ALIGN(width, align_w);
530 }
531
532 for (i = 0; i < depth; i++) {
533 intel_miptree_get_image_offset(src, level, face, i, &src_x, &src_y);
534 intel_miptree_get_image_offset(dst, level, face, i, &dst_x, &dst_y);
535 success = intel_region_copy(intel,
536 dst->region, 0, dst_x, dst_y,
537 src->region, 0, src_x, src_y, width, height,
538 GL_COPY);
539 if (!success) {
540 GLubyte *src_ptr, *dst_ptr;
541
542 src_ptr = intel_region_map(intel, src->region);
543 dst_ptr = intel_region_map(intel, dst->region);
544
545 _mesa_copy_rect(dst_ptr + dst->cpp * (dst_x + dst_y * dst->pitch),
546 dst->cpp,
547 dst->pitch,
548 0, 0, width, height,
549 src_ptr + src->cpp * (src_x + src_y * src->pitch),
550 src->pitch,
551 0, 0);
552 intel_region_unmap(intel, src->region);
553 intel_region_unmap(intel, dst->region);
554 }
555 }
556 }