i915_gem_tiling.c 12.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * Copyright © 2008 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 *
 * Authors:
 *    Eric Anholt <eric@anholt.net>
 *
 */

28 29 30 31
#include <linux/string.h>
#include <linux/bitops.h>
#include <drm/drmP.h>
#include <drm/i915_drm.h>
32 33
#include "i915_drv.h"

34 35
/**
 * DOC: buffer object tiling
36
 *
37 38
 * i915_gem_set_tiling_ioctl() and i915_gem_get_tiling_ioctl() is the userspace
 * interface to declare fence register requirements.
39
 *
40 41 42
 * In principle GEM doesn't care at all about the internal data layout of an
 * object, and hence it also doesn't care about tiling or swizzling. There's two
 * exceptions:
43
 *
44 45 46 47 48 49 50 51 52 53
 * - For X and Y tiling the hardware provides detilers for CPU access, so called
 *   fences. Since there's only a limited amount of them the kernel must manage
 *   these, and therefore userspace must tell the kernel the object tiling if it
 *   wants to use fences for detiling.
 * - On gen3 and gen4 platforms have a swizzling pattern for tiled objects which
 *   depends upon the physical page frame number. When swapping such objects the
 *   page frame number might change and the kernel must be able to fix this up
 *   and hence now the tiling. Note that on a subset of platforms with
 *   asymmetric memory channel population the swizzling pattern changes in an
 *   unknown way, and for those the kernel simply forbids swapping completely.
54
 *
55 56 57 58
 * Since neither of this applies for new tiling layouts on modern platforms like
 * W, Ys and Yf tiling GEM only allows object tiling to be set to X or Y tiled.
 * Anything else can be handled in userspace entirely without the kernel's
 * invovlement.
59 60
 */

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
/**
 * i915_gem_fence_size - required global GTT size for a fence
 * @i915: i915 device
 * @size: object size
 * @tiling: tiling mode
 * @stride: tiling stride
 *
 * Return the required global GTT size for a fence (view of a tiled object),
 * taking into account potential fence register mapping.
 */
u32 i915_gem_fence_size(struct drm_i915_private *i915,
			u32 size, unsigned int tiling, unsigned int stride)
{
	u32 ggtt_size;

	GEM_BUG_ON(!size);

	if (tiling == I915_TILING_NONE)
		return size;

	GEM_BUG_ON(!stride);

	if (INTEL_GEN(i915) >= 4) {
		stride *= i915_gem_tile_height(tiling);
		GEM_BUG_ON(stride & 4095);
		return roundup(size, stride);
	}

	/* Previous chips need a power-of-two fence region when tiling */
	if (IS_GEN3(i915))
		ggtt_size = 1024*1024;
	else
		ggtt_size = 512*1024;

	while (ggtt_size < size)
		ggtt_size <<= 1;

	return ggtt_size;
}

/**
 * i915_gem_fence_alignment - required global GTT alignment for a fence
 * @i915: i915 device
 * @size: object size
 * @tiling: tiling mode
 * @stride: tiling stride
 *
 * Return the required global GTT alignment for a fence (a view of a tiled
 * object), taking into account potential fence register mapping.
 */
u32 i915_gem_fence_alignment(struct drm_i915_private *i915, u32 size,
			     unsigned int tiling, unsigned int stride)
{
	GEM_BUG_ON(!size);

	/*
	 * Minimum alignment is 4k (GTT page size), but might be greater
	 * if a fence register is needed for the object.
	 */
	if (INTEL_GEN(i915) >= 4 || tiling == I915_TILING_NONE)
		return 4096;

	/*
	 * Previous chips need to be aligned to the size of the smallest
	 * fence register that can contain the object.
	 */
	return i915_gem_fence_size(i915, size, tiling, stride);
}

130
/* Check pitch constriants for all chips & tiling formats */
131
static bool
132 133
i915_tiling_ok(struct drm_i915_private *dev_priv,
	       int stride, int size, int tiling_mode)
134
{
135
	int tile_width;
136 137 138 139 140

	/* Linear is always fine */
	if (tiling_mode == I915_TILING_NONE)
		return true;

141 142 143
	if (tiling_mode > I915_TILING_LAST)
		return false;

144
	if (IS_GEN2(dev_priv) ||
145
	    (tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev_priv)))
146 147 148 149
		tile_width = 128;
	else
		tile_width = 512;

150
	/* check maximum stride & object size */
151 152
	/* i965+ stores the end address of the gtt mapping in the fence
	 * reg, so dont bother to check the size */
153
	if (INTEL_GEN(dev_priv) >= 7) {
154 155
		if (stride / 128 > GEN7_FENCE_MAX_PITCH_VAL)
			return false;
156
	} else if (INTEL_GEN(dev_priv) >= 4) {
157 158
		if (stride / 128 > I965_FENCE_MAX_PITCH_VAL)
			return false;
159
	} else {
160
		if (stride > 8192)
161
			return false;
162

163
		if (IS_GEN3(dev_priv)) {
164 165 166 167 168 169
			if (size > I830_FENCE_MAX_SIZE_VAL << 20)
				return false;
		} else {
			if (size > I830_FENCE_MAX_SIZE_VAL << 19)
				return false;
		}
170 171
	}

172 173 174
	if (stride < tile_width)
		return false;

175
	/* 965+ just needs multiples of tile width */
176
	if (INTEL_GEN(dev_priv) >= 4) {
177 178 179 180 181 182 183 184 185 186 187 188
		if (stride & (tile_width - 1))
			return false;
		return true;
	}

	/* Pre-965 needs power of two tile widths */
	if (stride & (stride - 1))
		return false;

	return true;
}

189 190
static bool i915_vma_fence_prepare(struct i915_vma *vma,
				   int tiling_mode, unsigned int stride)
191
{
192 193
	struct drm_i915_private *i915 = vma->vm->i915;
	u32 size, alignment;
194 195 196 197

	if (!i915_vma_is_map_and_fenceable(vma))
		return true;

198
	size = i915_gem_fence_size(i915, vma->size, tiling_mode, stride);
199 200 201
	if (vma->node.size < size)
		return false;

202
	alignment = i915_gem_fence_alignment(i915, vma->size, tiling_mode, stride);
203
	if (vma->node.start & (alignment - 1))
204 205 206 207 208
		return false;

	return true;
}

209 210
/* Make the current GTT allocation valid for the change in tiling. */
static int
211 212
i915_gem_object_fence_prepare(struct drm_i915_gem_object *obj,
			      int tiling_mode, unsigned int stride)
213
{
214
	struct i915_vma *vma;
215
	int ret;
216 217

	if (tiling_mode == I915_TILING_NONE)
218
		return 0;
219

220
	list_for_each_entry(vma, &obj->vma_list, obj_link) {
221 222 223
		if (!i915_vma_is_ggtt(vma))
			break;

224
		if (i915_vma_fence_prepare(vma, tiling_mode, stride))
225
			continue;
226

227 228 229
		ret = i915_vma_unbind(vma);
		if (ret)
			return ret;
230 231
	}

232
	return 0;
233 234
}

235
/**
236
 * i915_gem_set_tiling_ioctl - IOCTL handler to set tiling mode
237 238 239 240
 * @dev: DRM device
 * @data: data pointer for the ioctl
 * @file: DRM file for the ioctl call
 *
241 242
 * Sets the tiling mode of an object, returning the required swizzling of
 * bit 6 of addresses in the object.
243 244 245 246 247
 *
 * Called by the user via ioctl.
 *
 * Returns:
 * Zero on success, negative errno on failure.
248 249
 */
int
250 251
i915_gem_set_tiling_ioctl(struct drm_device *dev, void *data,
			  struct drm_file *file)
252 253
{
	struct drm_i915_gem_set_tiling *args = data;
254
	struct drm_i915_private *dev_priv = to_i915(dev);
255
	struct drm_i915_gem_object *obj;
256
	int err = 0;
257

258 259 260
	/* Make sure we don't cross-contaminate obj->tiling_and_stride */
	BUILD_BUG_ON(I915_TILING_LAST & STRIDE_MASK);

261 262
	obj = i915_gem_object_lookup(file, args->handle);
	if (!obj)
263
		return -ENOENT;
264

265
	if (!i915_tiling_ok(dev_priv,
266
			    args->stride, obj->base.size, args->tiling_mode)) {
C
Chris Wilson 已提交
267
		i915_gem_object_put(obj);
268
		return -EINVAL;
269
	}
270

271
	mutex_lock(&dev->struct_mutex);
272
	if (obj->pin_display || obj->framebuffer_references) {
273
		err = -EBUSY;
274
		goto err;
275 276
	}

277 278
	if (args->tiling_mode == I915_TILING_NONE) {
		args->swizzle_mode = I915_BIT_6_SWIZZLE_NONE;
279
		args->stride = 0;
280 281 282 283 284
	} else {
		if (args->tiling_mode == I915_TILING_X)
			args->swizzle_mode = dev_priv->mm.bit_6_swizzle_x;
		else
			args->swizzle_mode = dev_priv->mm.bit_6_swizzle_y;
285 286 287 288 289 290 291 292 293 294 295 296 297

		/* Hide bit 17 swizzling from the user.  This prevents old Mesa
		 * from aborting the application on sw fallbacks to bit 17,
		 * and we use the pread/pwrite bit17 paths to swizzle for it.
		 * If there was a user that was relying on the swizzle
		 * information for drm_intel_bo_map()ed reads/writes this would
		 * break it, but we don't have any of those.
		 */
		if (args->swizzle_mode == I915_BIT_6_SWIZZLE_9_17)
			args->swizzle_mode = I915_BIT_6_SWIZZLE_9;
		if (args->swizzle_mode == I915_BIT_6_SWIZZLE_9_10_17)
			args->swizzle_mode = I915_BIT_6_SWIZZLE_9_10;

298 299 300 301
		/* If we can't handle the swizzling, make it untiled. */
		if (args->swizzle_mode == I915_BIT_6_SWIZZLE_UNKNOWN) {
			args->tiling_mode = I915_TILING_NONE;
			args->swizzle_mode = I915_BIT_6_SWIZZLE_NONE;
302
			args->stride = 0;
303 304
		}
	}
305

306 307
	if (args->tiling_mode != i915_gem_object_get_tiling(obj) ||
	    args->stride != i915_gem_object_get_stride(obj)) {
308 309 310
		/* We need to rebind the object if its current allocation
		 * no longer meets the alignment restrictions for its new
		 * tiling mode. Otherwise we can just leave it alone, but
311 312 313
		 * need to ensure that any fence register is updated before
		 * the next fenced (either through the GTT or by the BLT unit
		 * on older GPUs) access.
314 315 316 317 318
		 *
		 * After updating the tiling parameters, we then flag whether
		 * we need to update an associated fence register. Note this
		 * has to also include the unfenced register the GPU uses
		 * whilst executing a fenced command for an untiled object.
319
		 */
320

321 322 323
		err = i915_gem_object_fence_prepare(obj,
						    args->tiling_mode,
						    args->stride);
324
		if (!err) {
325 326
			struct i915_vma *vma;

327
			mutex_lock(&obj->mm.lock);
C
Chris Wilson 已提交
328 329
			if (obj->mm.pages &&
			    obj->mm.madv == I915_MADV_WILLNEED &&
330
			    dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
331 332
				if (args->tiling_mode == I915_TILING_NONE) {
					GEM_BUG_ON(!obj->mm.quirked);
C
Chris Wilson 已提交
333
					__i915_gem_object_unpin_pages(obj);
334 335 336
					obj->mm.quirked = false;
				}
				if (!i915_gem_object_is_tiled(obj)) {
337
					GEM_BUG_ON(!obj->mm.quirked);
C
Chris Wilson 已提交
338
					__i915_gem_object_pin_pages(obj);
339 340
					obj->mm.quirked = true;
				}
341
			}
342
			mutex_unlock(&obj->mm.lock);
343

344
			list_for_each_entry(vma, &obj->vma_list, obj_link) {
345 346 347
				if (!i915_vma_is_ggtt(vma))
					break;

348 349 350 351 352 353
				vma->fence_size = i915_gem_fence_size(dev_priv, vma->size,
								      args->tiling_mode,
								      args->stride);
				vma->fence_alignment = i915_gem_fence_alignment(dev_priv, vma->size,
										args->tiling_mode,
										args->stride);
354 355 356

				if (vma->fence)
					vma->fence->dirty = true;
357
			}
358 359
			obj->tiling_and_stride =
				args->stride | args->tiling_mode;
360 361 362

			/* Force the fence to be reacquired for GTT access */
			i915_gem_release_mmap(obj);
363
		}
364
	}
365
	/* we have to maintain this existing ABI... */
366 367
	args->stride = i915_gem_object_get_stride(obj);
	args->tiling_mode = i915_gem_object_get_tiling(obj);
368 369 370 371

	/* Try to preallocate memory required to save swizzling on put-pages */
	if (i915_gem_object_needs_bit17_swizzle(obj)) {
		if (obj->bit_17 == NULL) {
D
Daniel Vetter 已提交
372
			obj->bit_17 = kcalloc(BITS_TO_LONGS(obj->base.size >> PAGE_SHIFT),
373 374 375 376 377 378 379
					      sizeof(long), GFP_KERNEL);
		}
	} else {
		kfree(obj->bit_17);
		obj->bit_17 = NULL;
	}

380
err:
381
	i915_gem_object_put(obj);
382
	mutex_unlock(&dev->struct_mutex);
383

384
	return err;
385 386 387
}

/**
388
 * i915_gem_get_tiling_ioctl - IOCTL handler to get tiling mode
389 390 391 392
 * @dev: DRM device
 * @data: data pointer for the ioctl
 * @file: DRM file for the ioctl call
 *
393
 * Returns the current tiling mode and required bit 6 swizzling for the object.
394 395 396 397 398
 *
 * Called by the user via ioctl.
 *
 * Returns:
 * Zero on success, negative errno on failure.
399 400
 */
int
401 402
i915_gem_get_tiling_ioctl(struct drm_device *dev, void *data,
			  struct drm_file *file)
403 404
{
	struct drm_i915_gem_get_tiling *args = data;
405
	struct drm_i915_private *dev_priv = to_i915(dev);
406
	struct drm_i915_gem_object *obj;
407 408 409 410 411 412 413 414 415 416 417 418
	int err = -ENOENT;

	rcu_read_lock();
	obj = i915_gem_object_lookup_rcu(file, args->handle);
	if (obj) {
		args->tiling_mode =
			READ_ONCE(obj->tiling_and_stride) & TILING_MASK;
		err = 0;
	}
	rcu_read_unlock();
	if (unlikely(err))
		return err;
419

420
	switch (args->tiling_mode) {
421 422 423 424 425 426
	case I915_TILING_X:
		args->swizzle_mode = dev_priv->mm.bit_6_swizzle_x;
		break;
	case I915_TILING_Y:
		args->swizzle_mode = dev_priv->mm.bit_6_swizzle_y;
		break;
427
	default:
428 429 430 431 432
	case I915_TILING_NONE:
		args->swizzle_mode = I915_BIT_6_SWIZZLE_NONE;
		break;
	}

433
	/* Hide bit 17 from the user -- see comment in i915_gem_set_tiling */
434 435 436 437
	if (dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
		args->phys_swizzle_mode = I915_BIT_6_SWIZZLE_UNKNOWN;
	else
		args->phys_swizzle_mode = args->swizzle_mode;
438 439 440 441 442
	if (args->swizzle_mode == I915_BIT_6_SWIZZLE_9_17)
		args->swizzle_mode = I915_BIT_6_SWIZZLE_9;
	if (args->swizzle_mode == I915_BIT_6_SWIZZLE_9_10_17)
		args->swizzle_mode = I915_BIT_6_SWIZZLE_9_10;

443 444
	return 0;
}