i915_gem_tiling.c 10.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() and i915_gem_get_tiling() 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
/* Check pitch constriants for all chips & tiling formats */
62
static bool
63 64
i915_tiling_ok(struct drm_i915_private *dev_priv,
	       int stride, int size, int tiling_mode)
65
{
66
	int tile_width;
67 68 69 70 71

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

72 73 74
	if (tiling_mode > I915_TILING_LAST)
		return false;

75
	if (IS_GEN2(dev_priv) ||
76
	    (tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev_priv)))
77 78 79 80
		tile_width = 128;
	else
		tile_width = 512;

81
	/* check maximum stride & object size */
82 83
	/* i965+ stores the end address of the gtt mapping in the fence
	 * reg, so dont bother to check the size */
84
	if (INTEL_GEN(dev_priv) >= 7) {
85 86
		if (stride / 128 > GEN7_FENCE_MAX_PITCH_VAL)
			return false;
87
	} else if (INTEL_GEN(dev_priv) >= 4) {
88 89
		if (stride / 128 > I965_FENCE_MAX_PITCH_VAL)
			return false;
90
	} else {
91
		if (stride > 8192)
92
			return false;
93

94
		if (IS_GEN3(dev_priv)) {
95 96 97 98 99 100
			if (size > I830_FENCE_MAX_SIZE_VAL << 20)
				return false;
		} else {
			if (size > I830_FENCE_MAX_SIZE_VAL << 19)
				return false;
		}
101 102
	}

103 104 105
	if (stride < tile_width)
		return false;

106
	/* 965+ just needs multiples of tile width */
107
	if (INTEL_GEN(dev_priv) >= 4) {
108 109 110 111 112 113 114 115 116 117 118 119
		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;
}

120 121
static bool i915_vma_fence_prepare(struct i915_vma *vma,
				   int tiling_mode, unsigned int stride)
122
{
123
	struct drm_i915_private *dev_priv = vma->vm->i915;
124 125 126 127 128 129 130 131 132 133 134 135 136
	u32 size;

	if (!i915_vma_is_map_and_fenceable(vma))
		return true;

	if (INTEL_GEN(dev_priv) == 3) {
		if (vma->node.start & ~I915_FENCE_START_MASK)
			return false;
	} else {
		if (vma->node.start & ~I830_FENCE_START_MASK)
			return false;
	}

137
	size = i915_gem_get_ggtt_size(dev_priv, vma->size, tiling_mode, stride);
138 139 140 141 142 143 144 145 146
	if (vma->node.size < size)
		return false;

	if (vma->node.start & (size - 1))
		return false;

	return true;
}

147 148
/* Make the current GTT allocation valid for the change in tiling. */
static int
149 150
i915_gem_object_fence_prepare(struct drm_i915_gem_object *obj,
			      int tiling_mode, unsigned int stride)
151
{
152
	struct i915_vma *vma;
153
	int ret;
154 155

	if (tiling_mode == I915_TILING_NONE)
156
		return 0;
157

158
	list_for_each_entry(vma, &obj->vma_list, obj_link) {
159
		if (i915_vma_fence_prepare(vma, tiling_mode, stride))
160
			continue;
161

162 163 164
		ret = i915_vma_unbind(vma);
		if (ret)
			return ret;
165 166
	}

167
	return 0;
168 169
}

170
/**
171 172 173 174 175
 * i915_gem_set_tiling - IOCTL handler to set tiling mode
 * @dev: DRM device
 * @data: data pointer for the ioctl
 * @file: DRM file for the ioctl call
 *
176 177
 * Sets the tiling mode of an object, returning the required swizzling of
 * bit 6 of addresses in the object.
178 179 180 181 182
 *
 * Called by the user via ioctl.
 *
 * Returns:
 * Zero on success, negative errno on failure.
183 184 185
 */
int
i915_gem_set_tiling(struct drm_device *dev, void *data,
186
		   struct drm_file *file)
187 188
{
	struct drm_i915_gem_set_tiling *args = data;
189
	struct drm_i915_private *dev_priv = to_i915(dev);
190
	struct drm_i915_gem_object *obj;
191
	int err = 0;
192

193 194 195
	/* Make sure we don't cross-contaminate obj->tiling_and_stride */
	BUILD_BUG_ON(I915_TILING_LAST & STRIDE_MASK);

196 197
	obj = i915_gem_object_lookup(file, args->handle);
	if (!obj)
198
		return -ENOENT;
199

200
	if (!i915_tiling_ok(dev_priv,
201
			    args->stride, obj->base.size, args->tiling_mode)) {
C
Chris Wilson 已提交
202
		i915_gem_object_put(obj);
203
		return -EINVAL;
204
	}
205

206
	mutex_lock(&dev->struct_mutex);
207
	if (obj->pin_display || obj->framebuffer_references) {
208
		err = -EBUSY;
209
		goto err;
210 211
	}

212 213
	if (args->tiling_mode == I915_TILING_NONE) {
		args->swizzle_mode = I915_BIT_6_SWIZZLE_NONE;
214
		args->stride = 0;
215 216 217 218 219
	} 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;
220 221 222 223 224 225 226 227 228 229 230 231 232

		/* 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;

233 234 235 236
		/* 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;
237
			args->stride = 0;
238 239
		}
	}
240

241 242
	if (args->tiling_mode != i915_gem_object_get_tiling(obj) ||
	    args->stride != i915_gem_object_get_stride(obj)) {
243 244 245
		/* 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
246 247 248
		 * 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.
249 250 251 252 253
		 *
		 * 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.
254
		 */
255

256 257 258
		err = i915_gem_object_fence_prepare(obj,
						    args->tiling_mode,
						    args->stride);
259
		if (!err) {
260 261
			struct i915_vma *vma;

262
			mutex_lock(&obj->mm.lock);
C
Chris Wilson 已提交
263 264
			if (obj->mm.pages &&
			    obj->mm.madv == I915_MADV_WILLNEED &&
265
			    dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
266 267
				if (args->tiling_mode == I915_TILING_NONE) {
					GEM_BUG_ON(!obj->mm.quirked);
C
Chris Wilson 已提交
268
					__i915_gem_object_unpin_pages(obj);
269 270 271
					obj->mm.quirked = false;
				}
				if (!i915_gem_object_is_tiled(obj)) {
272
					GEM_BUG_ON(!obj->mm.quirked);
C
Chris Wilson 已提交
273
					__i915_gem_object_pin_pages(obj);
274 275
					obj->mm.quirked = true;
				}
276
			}
277
			mutex_unlock(&obj->mm.lock);
278

279 280 281
			list_for_each_entry(vma, &obj->vma_list, obj_link) {
				if (!vma->fence)
					continue;
282

283 284
				vma->fence->dirty = true;
			}
285 286
			obj->tiling_and_stride =
				args->stride | args->tiling_mode;
287 288 289

			/* Force the fence to be reacquired for GTT access */
			i915_gem_release_mmap(obj);
290
		}
291
	}
292
	/* we have to maintain this existing ABI... */
293 294
	args->stride = i915_gem_object_get_stride(obj);
	args->tiling_mode = i915_gem_object_get_tiling(obj);
295 296 297 298

	/* 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 已提交
299
			obj->bit_17 = kcalloc(BITS_TO_LONGS(obj->base.size >> PAGE_SHIFT),
300 301 302 303 304 305 306
					      sizeof(long), GFP_KERNEL);
		}
	} else {
		kfree(obj->bit_17);
		obj->bit_17 = NULL;
	}

307
err:
308
	i915_gem_object_put(obj);
309
	mutex_unlock(&dev->struct_mutex);
310

311
	return err;
312 313 314
}

/**
315 316 317 318 319
 * i915_gem_get_tiling - IOCTL handler to get tiling mode
 * @dev: DRM device
 * @data: data pointer for the ioctl
 * @file: DRM file for the ioctl call
 *
320
 * Returns the current tiling mode and required bit 6 swizzling for the object.
321 322 323 324 325
 *
 * Called by the user via ioctl.
 *
 * Returns:
 * Zero on success, negative errno on failure.
326 327 328
 */
int
i915_gem_get_tiling(struct drm_device *dev, void *data,
329
		   struct drm_file *file)
330 331
{
	struct drm_i915_gem_get_tiling *args = data;
332
	struct drm_i915_private *dev_priv = to_i915(dev);
333
	struct drm_i915_gem_object *obj;
334 335 336 337 338 339 340 341 342 343 344 345
	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;
346

347
	switch (args->tiling_mode) {
348 349 350 351 352 353
	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;
354
	default:
355 356 357 358 359
	case I915_TILING_NONE:
		args->swizzle_mode = I915_BIT_6_SWIZZLE_NONE;
		break;
	}

360
	/* Hide bit 17 from the user -- see comment in i915_gem_set_tiling */
361 362 363 364
	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;
365 366 367 368 369
	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;

370 371
	return 0;
}