i915_dma.c 36.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/* i915_dma.c -- DMA support for the I915 -*- linux-c -*-
 */
D
Dave Airlie 已提交
3
/*
L
Linus Torvalds 已提交
4 5
 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
 * All Rights Reserved.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * 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, sub license, 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 NON-INFRINGEMENT.
 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS 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.
 *
D
Dave Airlie 已提交
27
 */
L
Linus Torvalds 已提交
28 29 30

#include "drmP.h"
#include "drm.h"
J
Jesse Barnes 已提交
31 32
#include "drm_crtc_helper.h"
#include "intel_drv.h"
L
Linus Torvalds 已提交
33 34 35
#include "i915_drm.h"
#include "i915_drv.h"

36 37
#define I915_DRV	"i915_drv"

L
Linus Torvalds 已提交
38 39 40 41 42
/* Really want an OS-independent resettable timer.  Would like to have
 * this loop run for (eg) 3 sec, but have the timer reset every time
 * the head pointer changes, so that EBUSY only happens if the ring
 * actually stalls for (eg) 3 seconds.
 */
43
int i915_wait_ring(struct drm_device * dev, int n, const char *caller)
L
Linus Torvalds 已提交
44 45 46
{
	drm_i915_private_t *dev_priv = dev->dev_private;
	drm_i915_ring_buffer_t *ring = &(dev_priv->ring);
47 48 49
	u32 acthd_reg = IS_I965G(dev) ? ACTHD_I965 : ACTHD;
	u32 last_acthd = I915_READ(acthd_reg);
	u32 acthd;
50
	u32 last_head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
L
Linus Torvalds 已提交
51 52
	int i;

53
	for (i = 0; i < 100000; i++) {
54
		ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
55
		acthd = I915_READ(acthd_reg);
L
Linus Torvalds 已提交
56 57 58 59 60 61
		ring->space = ring->head - (ring->tail + 8);
		if (ring->space < 0)
			ring->space += ring->Size;
		if (ring->space >= n)
			return 0;

62 63 64 65 66 67
		if (dev->primary->master) {
			struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
			if (master_priv->sarea_priv)
				master_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
		}

L
Linus Torvalds 已提交
68 69 70

		if (ring->head != last_head)
			i = 0;
71 72
		if (acthd != last_acthd)
			i = 0;
L
Linus Torvalds 已提交
73 74

		last_head = ring->head;
75 76 77
		last_acthd = acthd;
		msleep_interruptible(10);

L
Linus Torvalds 已提交
78 79
	}

E
Eric Anholt 已提交
80
	return -EBUSY;
L
Linus Torvalds 已提交
81 82
}

83 84 85 86
/**
 * Sets up the hardware status page for devices that need a physical address
 * in the register.
 */
87
static int i915_init_phys_hws(struct drm_device *dev)
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
{
	drm_i915_private_t *dev_priv = dev->dev_private;
	/* Program Hardware Status Page */
	dev_priv->status_page_dmah =
		drm_pci_alloc(dev, PAGE_SIZE, PAGE_SIZE, 0xffffffff);

	if (!dev_priv->status_page_dmah) {
		DRM_ERROR("Can not allocate hardware status page\n");
		return -ENOMEM;
	}
	dev_priv->hw_status_page = dev_priv->status_page_dmah->vaddr;
	dev_priv->dma_status_page = dev_priv->status_page_dmah->busaddr;

	memset(dev_priv->hw_status_page, 0, PAGE_SIZE);

	I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
104
	DRM_DEBUG_DRIVER(I915_DRV, "Enabled hardware status page\n");
105 106 107 108 109 110 111
	return 0;
}

/**
 * Frees the hardware status page, whether it's a physical address or a virtual
 * address set up by the X Server.
 */
112
static void i915_free_hws(struct drm_device *dev)
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
{
	drm_i915_private_t *dev_priv = dev->dev_private;
	if (dev_priv->status_page_dmah) {
		drm_pci_free(dev, dev_priv->status_page_dmah);
		dev_priv->status_page_dmah = NULL;
	}

	if (dev_priv->status_gfx_addr) {
		dev_priv->status_gfx_addr = 0;
		drm_core_ioremapfree(&dev_priv->hws_map, dev);
	}

	/* Need to rewrite hardware status page */
	I915_WRITE(HWS_PGA, 0x1ffff000);
}

129
void i915_kernel_lost_context(struct drm_device * dev)
L
Linus Torvalds 已提交
130 131
{
	drm_i915_private_t *dev_priv = dev->dev_private;
132
	struct drm_i915_master_private *master_priv;
L
Linus Torvalds 已提交
133 134
	drm_i915_ring_buffer_t *ring = &(dev_priv->ring);

J
Jesse Barnes 已提交
135 136 137 138 139 140 141
	/*
	 * We should never lose context on the ring with modesetting
	 * as we don't expose it to userspace
	 */
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return;

142 143
	ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
	ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
L
Linus Torvalds 已提交
144 145 146 147
	ring->space = ring->head - (ring->tail + 8);
	if (ring->space < 0)
		ring->space += ring->Size;

148 149 150 151 152 153
	if (!dev->primary->master)
		return;

	master_priv = dev->primary->master->driver_priv;
	if (ring->head == ring->tail && master_priv->sarea_priv)
		master_priv->sarea_priv->perf_boxes |= I915_BOX_RING_EMPTY;
L
Linus Torvalds 已提交
154 155
}

156
static int i915_dma_cleanup(struct drm_device * dev)
L
Linus Torvalds 已提交
157
{
J
Jesse Barnes 已提交
158
	drm_i915_private_t *dev_priv = dev->dev_private;
L
Linus Torvalds 已提交
159 160 161 162
	/* Make sure interrupts are disabled here because the uninstall ioctl
	 * may not have been called from userspace and after dev_private
	 * is freed, it's too late.
	 */
163
	if (dev->irq_enabled)
D
Dave Airlie 已提交
164
		drm_irq_uninstall(dev);
L
Linus Torvalds 已提交
165

J
Jesse Barnes 已提交
166 167
	if (dev_priv->ring.virtual_start) {
		drm_core_ioremapfree(&dev_priv->ring.map, dev);
168 169
		dev_priv->ring.virtual_start = NULL;
		dev_priv->ring.map.handle = NULL;
J
Jesse Barnes 已提交
170 171
		dev_priv->ring.map.size = 0;
	}
172

173 174 175
	/* Clear the HWS virtual address at teardown */
	if (I915_NEED_GFX_HWS(dev))
		i915_free_hws(dev);
L
Linus Torvalds 已提交
176 177 178 179

	return 0;
}

J
Jesse Barnes 已提交
180
static int i915_initialize(struct drm_device * dev, drm_i915_init_t * init)
L
Linus Torvalds 已提交
181
{
J
Jesse Barnes 已提交
182
	drm_i915_private_t *dev_priv = dev->dev_private;
183
	struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
L
Linus Torvalds 已提交
184

185 186 187 188 189
	master_priv->sarea = drm_getsarea(dev);
	if (master_priv->sarea) {
		master_priv->sarea_priv = (drm_i915_sarea_t *)
			((u8 *)master_priv->sarea->handle + init->sarea_priv_offset);
	} else {
190 191
		DRM_DEBUG_DRIVER(I915_DRV,
				"sarea not found assuming DRI2 userspace\n");
192 193
	}

194 195 196 197 198 199 200
	if (init->ring_size != 0) {
		if (dev_priv->ring.ring_obj != NULL) {
			i915_dma_cleanup(dev);
			DRM_ERROR("Client tried to initialize ringbuffer in "
				  "GEM mode\n");
			return -EINVAL;
		}
L
Linus Torvalds 已提交
201

202 203
		dev_priv->ring.Size = init->ring_size;
		dev_priv->ring.tail_mask = dev_priv->ring.Size - 1;
L
Linus Torvalds 已提交
204

205 206 207 208 209
		dev_priv->ring.map.offset = init->ring_start;
		dev_priv->ring.map.size = init->ring_size;
		dev_priv->ring.map.type = 0;
		dev_priv->ring.map.flags = 0;
		dev_priv->ring.map.mtrr = 0;
L
Linus Torvalds 已提交
210

211
		drm_core_ioremap_wc(&dev_priv->ring.map, dev);
212 213 214 215 216 217 218

		if (dev_priv->ring.map.handle == NULL) {
			i915_dma_cleanup(dev);
			DRM_ERROR("can not ioremap virtual address for"
				  " ring buffer\n");
			return -ENOMEM;
		}
L
Linus Torvalds 已提交
219 220 221 222
	}

	dev_priv->ring.virtual_start = dev_priv->ring.map.handle;

223
	dev_priv->cpp = init->cpp;
L
Linus Torvalds 已提交
224 225 226
	dev_priv->back_offset = init->back_offset;
	dev_priv->front_offset = init->front_offset;
	dev_priv->current_page = 0;
227 228
	if (master_priv->sarea_priv)
		master_priv->sarea_priv->pf_current_page = 0;
L
Linus Torvalds 已提交
229 230 231 232 233 234 235 236

	/* Allow hardware batchbuffers unless told otherwise.
	 */
	dev_priv->allow_batchbuffer = 1;

	return 0;
}

237
static int i915_dma_resume(struct drm_device * dev)
L
Linus Torvalds 已提交
238 239 240
{
	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;

241
	DRM_DEBUG_DRIVER(I915_DRV, "%s\n", __func__);
L
Linus Torvalds 已提交
242 243 244 245

	if (dev_priv->ring.map.handle == NULL) {
		DRM_ERROR("can not ioremap virtual address for"
			  " ring buffer\n");
E
Eric Anholt 已提交
246
		return -ENOMEM;
L
Linus Torvalds 已提交
247 248 249 250 251
	}

	/* Program Hardware Status Page */
	if (!dev_priv->hw_status_page) {
		DRM_ERROR("Can not find hardware status page\n");
E
Eric Anholt 已提交
252
		return -EINVAL;
L
Linus Torvalds 已提交
253
	}
254 255
	DRM_DEBUG_DRIVER(I915_DRV, "hw status page @ %p\n",
				dev_priv->hw_status_page);
L
Linus Torvalds 已提交
256

257
	if (dev_priv->status_gfx_addr != 0)
258
		I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
259
	else
260
		I915_WRITE(HWS_PGA, dev_priv->dma_status_page);
261
	DRM_DEBUG_DRIVER(I915_DRV, "Enabled hardware status page\n");
L
Linus Torvalds 已提交
262 263 264 265

	return 0;
}

266 267
static int i915_dma_init(struct drm_device *dev, void *data,
			 struct drm_file *file_priv)
L
Linus Torvalds 已提交
268
{
269
	drm_i915_init_t *init = data;
L
Linus Torvalds 已提交
270 271
	int retcode = 0;

272
	switch (init->func) {
L
Linus Torvalds 已提交
273
	case I915_INIT_DMA:
J
Jesse Barnes 已提交
274
		retcode = i915_initialize(dev, init);
L
Linus Torvalds 已提交
275 276 277 278 279
		break;
	case I915_CLEANUP_DMA:
		retcode = i915_dma_cleanup(dev);
		break;
	case I915_RESUME_DMA:
D
Dave Airlie 已提交
280
		retcode = i915_dma_resume(dev);
L
Linus Torvalds 已提交
281 282
		break;
	default:
E
Eric Anholt 已提交
283
		retcode = -EINVAL;
L
Linus Torvalds 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
		break;
	}

	return retcode;
}

/* Implement basically the same security restrictions as hardware does
 * for MI_BATCH_NON_SECURE.  These can be made stricter at any time.
 *
 * Most of the calculations below involve calculating the size of a
 * particular instruction.  It's important to get the size right as
 * that tells us where the next instruction to check is.  Any illegal
 * instruction detected will be given a size of zero, which is a
 * signal to abort the rest of the buffer.
 */
static int do_validate_cmd(int cmd)
{
	switch (((cmd >> 29) & 0x7)) {
	case 0x0:
		switch ((cmd >> 23) & 0x3f) {
		case 0x0:
			return 1;	/* MI_NOOP */
		case 0x4:
			return 1;	/* MI_FLUSH */
		default:
			return 0;	/* disallow everything else */
		}
		break;
	case 0x1:
		return 0;	/* reserved */
	case 0x2:
		return (cmd & 0xff) + 2;	/* 2d commands */
	case 0x3:
		if (((cmd >> 24) & 0x1f) <= 0x18)
			return 1;

		switch ((cmd >> 24) & 0x1f) {
		case 0x1c:
			return 1;
		case 0x1d:
D
Dave Airlie 已提交
324
			switch ((cmd >> 16) & 0xff) {
L
Linus Torvalds 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
			case 0x3:
				return (cmd & 0x1f) + 2;
			case 0x4:
				return (cmd & 0xf) + 2;
			default:
				return (cmd & 0xffff) + 2;
			}
		case 0x1e:
			if (cmd & (1 << 23))
				return (cmd & 0xffff) + 1;
			else
				return 1;
		case 0x1f:
			if ((cmd & (1 << 23)) == 0)	/* inline vertices */
				return (cmd & 0x1ffff) + 2;
			else if (cmd & (1 << 17))	/* indirect random */
				if ((cmd & 0xffff) == 0)
					return 0;	/* unknown length, too hard */
				else
					return (((cmd & 0xffff) + 1) / 2) + 1;
			else
				return 2;	/* indirect sequential */
		default:
			return 0;
		}
	default:
		return 0;
	}

	return 0;
}

static int validate_cmd(int cmd)
{
	int ret = do_validate_cmd(cmd);

D
Dave Airlie 已提交
361
/*	printk("validate_cmd( %x ): %d\n", cmd, ret); */
L
Linus Torvalds 已提交
362 363 364 365

	return ret;
}

366
static int i915_emit_cmds(struct drm_device * dev, int *buffer, int dwords)
L
Linus Torvalds 已提交
367 368 369 370 371
{
	drm_i915_private_t *dev_priv = dev->dev_private;
	int i;
	RING_LOCALS;

372
	if ((dwords+1) * sizeof(int) >= dev_priv->ring.Size - 8)
E
Eric Anholt 已提交
373
		return -EINVAL;
374

375
	BEGIN_LP_RING((dwords+1)&~1);
376

L
Linus Torvalds 已提交
377 378 379
	for (i = 0; i < dwords;) {
		int cmd, sz;

380
		cmd = buffer[i];
L
Linus Torvalds 已提交
381 382

		if ((sz = validate_cmd(cmd)) == 0 || i + sz > dwords)
E
Eric Anholt 已提交
383
			return -EINVAL;
L
Linus Torvalds 已提交
384 385 386 387

		OUT_RING(cmd);

		while (++i, --sz) {
388
			OUT_RING(buffer[i]);
L
Linus Torvalds 已提交
389 390 391
		}
	}

392 393 394 395 396
	if (dwords & 1)
		OUT_RING(0);

	ADVANCE_LP_RING();

L
Linus Torvalds 已提交
397 398 399
	return 0;
}

400 401
int
i915_emit_box(struct drm_device *dev,
402
	      struct drm_clip_rect *boxes,
403
	      int i, int DR1, int DR4)
L
Linus Torvalds 已提交
404 405
{
	drm_i915_private_t *dev_priv = dev->dev_private;
406
	struct drm_clip_rect box = boxes[i];
L
Linus Torvalds 已提交
407 408 409 410 411
	RING_LOCALS;

	if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) {
		DRM_ERROR("Bad box %d,%d..%d,%d\n",
			  box.x1, box.y1, box.x2, box.y2);
E
Eric Anholt 已提交
412
		return -EINVAL;
L
Linus Torvalds 已提交
413 414
	}

415 416 417 418
	if (IS_I965G(dev)) {
		BEGIN_LP_RING(4);
		OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
		OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
A
Andrew Morton 已提交
419
		OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
420 421 422 423 424 425 426 427 428 429 430 431
		OUT_RING(DR4);
		ADVANCE_LP_RING();
	} else {
		BEGIN_LP_RING(6);
		OUT_RING(GFX_OP_DRAWRECT_INFO);
		OUT_RING(DR1);
		OUT_RING((box.x1 & 0xffff) | (box.y1 << 16));
		OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
		OUT_RING(DR4);
		OUT_RING(0);
		ADVANCE_LP_RING();
	}
L
Linus Torvalds 已提交
432 433 434 435

	return 0;
}

436 437 438 439
/* XXX: Emitting the counter should really be moved to part of the IRQ
 * emit. For now, do it in both places:
 */

440
static void i915_emit_breadcrumb(struct drm_device *dev)
441 442
{
	drm_i915_private_t *dev_priv = dev->dev_private;
443
	struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
444 445
	RING_LOCALS;

446
	dev_priv->counter++;
447
	if (dev_priv->counter > 0x7FFFFFFFUL)
448
		dev_priv->counter = 0;
449 450
	if (master_priv->sarea_priv)
		master_priv->sarea_priv->last_enqueue = dev_priv->counter;
451 452

	BEGIN_LP_RING(4);
453
	OUT_RING(MI_STORE_DWORD_INDEX);
454
	OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
455 456 457 458 459
	OUT_RING(dev_priv->counter);
	OUT_RING(0);
	ADVANCE_LP_RING();
}

460
static int i915_dispatch_cmdbuffer(struct drm_device * dev,
461 462 463
				   drm_i915_cmdbuffer_t *cmd,
				   struct drm_clip_rect *cliprects,
				   void *cmdbuf)
L
Linus Torvalds 已提交
464 465 466 467 468 469
{
	int nbox = cmd->num_cliprects;
	int i = 0, count, ret;

	if (cmd->sz & 0x3) {
		DRM_ERROR("alignment");
E
Eric Anholt 已提交
470
		return -EINVAL;
L
Linus Torvalds 已提交
471 472 473 474 475 476 477 478
	}

	i915_kernel_lost_context(dev);

	count = nbox ? nbox : 1;

	for (i = 0; i < count; i++) {
		if (i < nbox) {
479
			ret = i915_emit_box(dev, cliprects, i,
L
Linus Torvalds 已提交
480 481 482 483 484
					    cmd->DR1, cmd->DR4);
			if (ret)
				return ret;
		}

485
		ret = i915_emit_cmds(dev, cmdbuf, cmd->sz / 4);
L
Linus Torvalds 已提交
486 487 488 489
		if (ret)
			return ret;
	}

490
	i915_emit_breadcrumb(dev);
L
Linus Torvalds 已提交
491 492 493
	return 0;
}

494
static int i915_dispatch_batchbuffer(struct drm_device * dev,
495 496
				     drm_i915_batchbuffer_t * batch,
				     struct drm_clip_rect *cliprects)
L
Linus Torvalds 已提交
497 498 499 500 501 502 503 504
{
	drm_i915_private_t *dev_priv = dev->dev_private;
	int nbox = batch->num_cliprects;
	int i = 0, count;
	RING_LOCALS;

	if ((batch->start | batch->used) & 0x7) {
		DRM_ERROR("alignment");
E
Eric Anholt 已提交
505
		return -EINVAL;
L
Linus Torvalds 已提交
506 507 508 509 510 511 512 513
	}

	i915_kernel_lost_context(dev);

	count = nbox ? nbox : 1;

	for (i = 0; i < count; i++) {
		if (i < nbox) {
514
			int ret = i915_emit_box(dev, cliprects, i,
L
Linus Torvalds 已提交
515 516 517 518 519
						batch->DR1, batch->DR4);
			if (ret)
				return ret;
		}

520
		if (!IS_I830(dev) && !IS_845G(dev)) {
L
Linus Torvalds 已提交
521
			BEGIN_LP_RING(2);
522 523 524 525 526 527 528
			if (IS_I965G(dev)) {
				OUT_RING(MI_BATCH_BUFFER_START | (2 << 6) | MI_BATCH_NON_SECURE_I965);
				OUT_RING(batch->start);
			} else {
				OUT_RING(MI_BATCH_BUFFER_START | (2 << 6));
				OUT_RING(batch->start | MI_BATCH_NON_SECURE);
			}
L
Linus Torvalds 已提交
529 530 531 532 533 534 535 536 537 538 539
			ADVANCE_LP_RING();
		} else {
			BEGIN_LP_RING(4);
			OUT_RING(MI_BATCH_BUFFER);
			OUT_RING(batch->start | MI_BATCH_NON_SECURE);
			OUT_RING(batch->start + batch->used - 4);
			OUT_RING(0);
			ADVANCE_LP_RING();
		}
	}

540
	i915_emit_breadcrumb(dev);
L
Linus Torvalds 已提交
541 542 543 544

	return 0;
}

545
static int i915_dispatch_flip(struct drm_device * dev)
L
Linus Torvalds 已提交
546 547
{
	drm_i915_private_t *dev_priv = dev->dev_private;
548 549
	struct drm_i915_master_private *master_priv =
		dev->primary->master->driver_priv;
L
Linus Torvalds 已提交
550 551
	RING_LOCALS;

552
	if (!master_priv->sarea_priv)
553 554
		return -EINVAL;

555 556 557 558
	DRM_DEBUG_DRIVER(I915_DRV, "%s: page=%d pfCurrentPage=%d\n",
			  __func__,
			 dev_priv->current_page,
			 master_priv->sarea_priv->pf_current_page);
L
Linus Torvalds 已提交
559

560 561 562
	i915_kernel_lost_context(dev);

	BEGIN_LP_RING(2);
563
	OUT_RING(MI_FLUSH | MI_READ_FLUSH);
564 565
	OUT_RING(0);
	ADVANCE_LP_RING();
L
Linus Torvalds 已提交
566

567 568 569 570 571 572
	BEGIN_LP_RING(6);
	OUT_RING(CMD_OP_DISPLAYBUFFER_INFO | ASYNC_FLIP);
	OUT_RING(0);
	if (dev_priv->current_page == 0) {
		OUT_RING(dev_priv->back_offset);
		dev_priv->current_page = 1;
L
Linus Torvalds 已提交
573
	} else {
574 575
		OUT_RING(dev_priv->front_offset);
		dev_priv->current_page = 0;
L
Linus Torvalds 已提交
576
	}
577 578
	OUT_RING(0);
	ADVANCE_LP_RING();
L
Linus Torvalds 已提交
579

580 581 582 583
	BEGIN_LP_RING(2);
	OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_PLANE_A_FLIP);
	OUT_RING(0);
	ADVANCE_LP_RING();
L
Linus Torvalds 已提交
584

585
	master_priv->sarea_priv->last_enqueue = dev_priv->counter++;
L
Linus Torvalds 已提交
586 587

	BEGIN_LP_RING(4);
588
	OUT_RING(MI_STORE_DWORD_INDEX);
589
	OUT_RING(I915_BREADCRUMB_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
590 591
	OUT_RING(dev_priv->counter);
	OUT_RING(0);
L
Linus Torvalds 已提交
592 593
	ADVANCE_LP_RING();

594
	master_priv->sarea_priv->pf_current_page = dev_priv->current_page;
595
	return 0;
L
Linus Torvalds 已提交
596 597
}

598
static int i915_quiescent(struct drm_device * dev)
L
Linus Torvalds 已提交
599 600 601 602
{
	drm_i915_private_t *dev_priv = dev->dev_private;

	i915_kernel_lost_context(dev);
603
	return i915_wait_ring(dev, dev_priv->ring.Size - 8, __func__);
L
Linus Torvalds 已提交
604 605
}

606 607
static int i915_flush_ioctl(struct drm_device *dev, void *data,
			    struct drm_file *file_priv)
L
Linus Torvalds 已提交
608
{
609 610 611
	int ret;

	RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
L
Linus Torvalds 已提交
612

613 614 615 616 617
	mutex_lock(&dev->struct_mutex);
	ret = i915_quiescent(dev);
	mutex_unlock(&dev->struct_mutex);

	return ret;
L
Linus Torvalds 已提交
618 619
}

620 621
static int i915_batchbuffer(struct drm_device *dev, void *data,
			    struct drm_file *file_priv)
L
Linus Torvalds 已提交
622 623
{
	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
624
	struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
L
Linus Torvalds 已提交
625
	drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
626
	    master_priv->sarea_priv;
627
	drm_i915_batchbuffer_t *batch = data;
L
Linus Torvalds 已提交
628
	int ret;
629
	struct drm_clip_rect *cliprects = NULL;
L
Linus Torvalds 已提交
630 631 632

	if (!dev_priv->allow_batchbuffer) {
		DRM_ERROR("Batchbuffer ioctl disabled\n");
E
Eric Anholt 已提交
633
		return -EINVAL;
L
Linus Torvalds 已提交
634 635
	}

636 637 638
	DRM_DEBUG_DRIVER(I915_DRV,
			"i915 batchbuffer, start %x used %d cliprects %d\n",
			batch->start, batch->used, batch->num_cliprects);
L
Linus Torvalds 已提交
639

640
	RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
L
Linus Torvalds 已提交
641

642 643 644 645
	if (batch->num_cliprects < 0)
		return -EINVAL;

	if (batch->num_cliprects) {
646 647 648
		cliprects = kcalloc(batch->num_cliprects,
				    sizeof(struct drm_clip_rect),
				    GFP_KERNEL);
649 650 651 652 653 654 655 656 657
		if (cliprects == NULL)
			return -ENOMEM;

		ret = copy_from_user(cliprects, batch->cliprects,
				     batch->num_cliprects *
				     sizeof(struct drm_clip_rect));
		if (ret != 0)
			goto fail_free;
	}
L
Linus Torvalds 已提交
658

659
	mutex_lock(&dev->struct_mutex);
660
	ret = i915_dispatch_batchbuffer(dev, batch, cliprects);
661
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
662

663
	if (sarea_priv)
664
		sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
665 666

fail_free:
667
	kfree(cliprects);
668

L
Linus Torvalds 已提交
669 670 671
	return ret;
}

672 673
static int i915_cmdbuffer(struct drm_device *dev, void *data,
			  struct drm_file *file_priv)
L
Linus Torvalds 已提交
674 675
{
	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
676
	struct drm_i915_master_private *master_priv = dev->primary->master->driver_priv;
L
Linus Torvalds 已提交
677
	drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *)
678
	    master_priv->sarea_priv;
679
	drm_i915_cmdbuffer_t *cmdbuf = data;
680 681
	struct drm_clip_rect *cliprects = NULL;
	void *batch_data;
L
Linus Torvalds 已提交
682 683
	int ret;

684 685 686
	DRM_DEBUG_DRIVER(I915_DRV,
			"i915 cmdbuffer, buf %p sz %d cliprects %d\n",
			cmdbuf->buf, cmdbuf->sz, cmdbuf->num_cliprects);
L
Linus Torvalds 已提交
687

688
	RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
L
Linus Torvalds 已提交
689

690 691 692
	if (cmdbuf->num_cliprects < 0)
		return -EINVAL;

693
	batch_data = kmalloc(cmdbuf->sz, GFP_KERNEL);
694 695 696 697 698 699 700 701
	if (batch_data == NULL)
		return -ENOMEM;

	ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
	if (ret != 0)
		goto fail_batch_free;

	if (cmdbuf->num_cliprects) {
702 703
		cliprects = kcalloc(cmdbuf->num_cliprects,
				    sizeof(struct drm_clip_rect), GFP_KERNEL);
704 705 706 707 708 709 710 711
		if (cliprects == NULL)
			goto fail_batch_free;

		ret = copy_from_user(cliprects, cmdbuf->cliprects,
				     cmdbuf->num_cliprects *
				     sizeof(struct drm_clip_rect));
		if (ret != 0)
			goto fail_clip_free;
L
Linus Torvalds 已提交
712 713
	}

714
	mutex_lock(&dev->struct_mutex);
715
	ret = i915_dispatch_cmdbuffer(dev, cmdbuf, cliprects, batch_data);
716
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
717 718
	if (ret) {
		DRM_ERROR("i915_dispatch_cmdbuffer failed\n");
719
		goto fail_clip_free;
L
Linus Torvalds 已提交
720 721
	}

722
	if (sarea_priv)
723
		sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
724 725

fail_clip_free:
726
	kfree(cliprects);
727
fail_batch_free:
728
	kfree(batch_data);
729 730

	return ret;
L
Linus Torvalds 已提交
731 732
}

733 734
static int i915_flip_bufs(struct drm_device *dev, void *data,
			  struct drm_file *file_priv)
L
Linus Torvalds 已提交
735
{
736 737
	int ret;

738
	DRM_DEBUG_DRIVER(I915_DRV, "%s\n", __func__);
L
Linus Torvalds 已提交
739

740
	RING_LOCK_TEST_WITH_RETURN(dev, file_priv);
L
Linus Torvalds 已提交
741

742 743 744 745 746
	mutex_lock(&dev->struct_mutex);
	ret = i915_dispatch_flip(dev);
	mutex_unlock(&dev->struct_mutex);

	return ret;
L
Linus Torvalds 已提交
747 748
}

749 750
static int i915_getparam(struct drm_device *dev, void *data,
			 struct drm_file *file_priv)
L
Linus Torvalds 已提交
751 752
{
	drm_i915_private_t *dev_priv = dev->dev_private;
753
	drm_i915_getparam_t *param = data;
L
Linus Torvalds 已提交
754 755 756
	int value;

	if (!dev_priv) {
757
		DRM_ERROR("called with no initialization\n");
E
Eric Anholt 已提交
758
		return -EINVAL;
L
Linus Torvalds 已提交
759 760
	}

761
	switch (param->param) {
L
Linus Torvalds 已提交
762
	case I915_PARAM_IRQ_ACTIVE:
763
		value = dev->pdev->irq ? 1 : 0;
L
Linus Torvalds 已提交
764 765 766 767
		break;
	case I915_PARAM_ALLOW_BATCHBUFFER:
		value = dev_priv->allow_batchbuffer ? 1 : 0;
		break;
D
Dave Airlie 已提交
768 769 770
	case I915_PARAM_LAST_DISPATCH:
		value = READ_BREADCRUMB(dev_priv);
		break;
K
Kristian Høgsberg 已提交
771 772 773
	case I915_PARAM_CHIPSET_ID:
		value = dev->pci_device;
		break;
774
	case I915_PARAM_HAS_GEM:
775
		value = dev_priv->has_gem;
776
		break;
777 778 779
	case I915_PARAM_NUM_FENCES_AVAIL:
		value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
		break;
L
Linus Torvalds 已提交
780
	default:
781 782
		DRM_DEBUG_DRIVER(I915_DRV, "Unknown parameter %d\n",
					param->param);
E
Eric Anholt 已提交
783
		return -EINVAL;
L
Linus Torvalds 已提交
784 785
	}

786
	if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
L
Linus Torvalds 已提交
787
		DRM_ERROR("DRM_COPY_TO_USER failed\n");
E
Eric Anholt 已提交
788
		return -EFAULT;
L
Linus Torvalds 已提交
789 790 791 792 793
	}

	return 0;
}

794 795
static int i915_setparam(struct drm_device *dev, void *data,
			 struct drm_file *file_priv)
L
Linus Torvalds 已提交
796 797
{
	drm_i915_private_t *dev_priv = dev->dev_private;
798
	drm_i915_setparam_t *param = data;
L
Linus Torvalds 已提交
799 800

	if (!dev_priv) {
801
		DRM_ERROR("called with no initialization\n");
E
Eric Anholt 已提交
802
		return -EINVAL;
L
Linus Torvalds 已提交
803 804
	}

805
	switch (param->param) {
L
Linus Torvalds 已提交
806 807 808
	case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
		break;
	case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
809
		dev_priv->tex_lru_log_granularity = param->value;
L
Linus Torvalds 已提交
810 811
		break;
	case I915_SETPARAM_ALLOW_BATCHBUFFER:
812
		dev_priv->allow_batchbuffer = param->value;
L
Linus Torvalds 已提交
813
		break;
814 815 816 817 818 819 820
	case I915_SETPARAM_NUM_USED_FENCES:
		if (param->value > dev_priv->num_fence_regs ||
		    param->value < 0)
			return -EINVAL;
		/* Userspace can use first N regs */
		dev_priv->fence_reg_start = param->value;
		break;
L
Linus Torvalds 已提交
821
	default:
822 823
		DRM_DEBUG_DRIVER(I915_DRV, "unknown parameter %d\n",
					param->param);
E
Eric Anholt 已提交
824
		return -EINVAL;
L
Linus Torvalds 已提交
825 826 827 828 829
	}

	return 0;
}

830 831
static int i915_set_status_page(struct drm_device *dev, void *data,
				struct drm_file *file_priv)
832 833
{
	drm_i915_private_t *dev_priv = dev->dev_private;
834
	drm_i915_hws_addr_t *hws = data;
835 836 837

	if (!I915_NEED_GFX_HWS(dev))
		return -EINVAL;
838 839

	if (!dev_priv) {
840
		DRM_ERROR("called with no initialization\n");
E
Eric Anholt 已提交
841
		return -EINVAL;
842 843
	}

J
Jesse Barnes 已提交
844 845 846 847 848
	if (drm_core_check_feature(dev, DRIVER_MODESET)) {
		WARN(1, "tried to set status page when mode setting active\n");
		return 0;
	}

849
	DRM_DEBUG("set status page addr 0x%08x\n", (u32)hws->addr);
850 851

	dev_priv->status_gfx_addr = hws->addr & (0x1ffff<<12);
852

853
	dev_priv->hws_map.offset = dev->agp->base + hws->addr;
854 855 856 857 858
	dev_priv->hws_map.size = 4*1024;
	dev_priv->hws_map.type = 0;
	dev_priv->hws_map.flags = 0;
	dev_priv->hws_map.mtrr = 0;

859
	drm_core_ioremap_wc(&dev_priv->hws_map, dev);
860 861 862 863 864
	if (dev_priv->hws_map.handle == NULL) {
		i915_dma_cleanup(dev);
		dev_priv->status_gfx_addr = 0;
		DRM_ERROR("can not ioremap virtual address for"
				" G33 hw status page\n");
E
Eric Anholt 已提交
865
		return -ENOMEM;
866 867 868 869
	}
	dev_priv->hw_status_page = dev_priv->hws_map.handle;

	memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
870
	I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
871 872 873 874
	DRM_DEBUG_DRIVER(I915_DRV, "load hws HWS_PGA with gfx mem 0x%x\n",
				dev_priv->status_gfx_addr);
	DRM_DEBUG_DRIVER(I915_DRV, "load hws at %p\n",
				dev_priv->hw_status_page);
875 876 877
	return 0;
}

J
Jesse Barnes 已提交
878 879 880 881 882 883 884 885 886 887
/**
 * i915_probe_agp - get AGP bootup configuration
 * @pdev: PCI device
 * @aperture_size: returns AGP aperture configured size
 * @preallocated_size: returns size of BIOS preallocated AGP space
 *
 * Since Intel integrated graphics are UMA, the BIOS has to set aside
 * some RAM for the framebuffer at early boot.  This code figures out
 * how much was set aside so we can use it for our own purposes.
 */
888 889
static int i915_probe_agp(struct drm_device *dev, uint32_t *aperture_size,
			  uint32_t *preallocated_size)
J
Jesse Barnes 已提交
890 891 892 893
{
	struct pci_dev *bridge_dev;
	u16 tmp = 0;
	unsigned long overhead;
894
	unsigned long stolen;
J
Jesse Barnes 已提交
895 896 897 898 899 900 901 902 903 904 905 906 907 908

	bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0));
	if (!bridge_dev) {
		DRM_ERROR("bridge device not found\n");
		return -1;
	}

	/* Get the fb aperture size and "stolen" memory amount. */
	pci_read_config_word(bridge_dev, INTEL_GMCH_CTRL, &tmp);
	pci_dev_put(bridge_dev);

	*aperture_size = 1024 * 1024;
	*preallocated_size = 1024 * 1024;

909
	switch (dev->pdev->device) {
J
Jesse Barnes 已提交
910 911 912 913 914 915 916 917 918 919 920
	case PCI_DEVICE_ID_INTEL_82830_CGC:
	case PCI_DEVICE_ID_INTEL_82845G_IG:
	case PCI_DEVICE_ID_INTEL_82855GM_IG:
	case PCI_DEVICE_ID_INTEL_82865_IG:
		if ((tmp & INTEL_GMCH_MEM_MASK) == INTEL_GMCH_MEM_64M)
			*aperture_size *= 64;
		else
			*aperture_size *= 128;
		break;
	default:
		/* 9xx supports large sizes, just look at the length */
921
		*aperture_size = pci_resource_len(dev->pdev, 2);
J
Jesse Barnes 已提交
922 923 924 925 926 927 928
		break;
	}

	/*
	 * Some of the preallocated space is taken by the GTT
	 * and popup.  GTT is 1K per MB of aperture size, and popup is 4K.
	 */
929
	if (IS_G4X(dev) || IS_IGD(dev) || IS_IGDNG(dev))
930 931 932 933
		overhead = 4096;
	else
		overhead = (*aperture_size / 1024) + 4096;

934 935 936 937
	switch (tmp & INTEL_GMCH_GMS_MASK) {
	case INTEL_855_GMCH_GMS_DISABLED:
		DRM_ERROR("video memory is disabled\n");
		return -1;
J
Jesse Barnes 已提交
938
	case INTEL_855_GMCH_GMS_STOLEN_1M:
939 940
		stolen = 1 * 1024 * 1024;
		break;
J
Jesse Barnes 已提交
941
	case INTEL_855_GMCH_GMS_STOLEN_4M:
942
		stolen = 4 * 1024 * 1024;
J
Jesse Barnes 已提交
943 944
		break;
	case INTEL_855_GMCH_GMS_STOLEN_8M:
945
		stolen = 8 * 1024 * 1024;
J
Jesse Barnes 已提交
946 947
		break;
	case INTEL_855_GMCH_GMS_STOLEN_16M:
948
		stolen = 16 * 1024 * 1024;
J
Jesse Barnes 已提交
949 950
		break;
	case INTEL_855_GMCH_GMS_STOLEN_32M:
951
		stolen = 32 * 1024 * 1024;
J
Jesse Barnes 已提交
952 953
		break;
	case INTEL_915G_GMCH_GMS_STOLEN_48M:
954
		stolen = 48 * 1024 * 1024;
J
Jesse Barnes 已提交
955 956
		break;
	case INTEL_915G_GMCH_GMS_STOLEN_64M:
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
		stolen = 64 * 1024 * 1024;
		break;
	case INTEL_GMCH_GMS_STOLEN_128M:
		stolen = 128 * 1024 * 1024;
		break;
	case INTEL_GMCH_GMS_STOLEN_256M:
		stolen = 256 * 1024 * 1024;
		break;
	case INTEL_GMCH_GMS_STOLEN_96M:
		stolen = 96 * 1024 * 1024;
		break;
	case INTEL_GMCH_GMS_STOLEN_160M:
		stolen = 160 * 1024 * 1024;
		break;
	case INTEL_GMCH_GMS_STOLEN_224M:
		stolen = 224 * 1024 * 1024;
		break;
	case INTEL_GMCH_GMS_STOLEN_352M:
		stolen = 352 * 1024 * 1024;
J
Jesse Barnes 已提交
976 977 978
		break;
	default:
		DRM_ERROR("unexpected GMCH_GMS value: 0x%02x\n",
979
			tmp & INTEL_GMCH_GMS_MASK);
J
Jesse Barnes 已提交
980 981
		return -1;
	}
982
	*preallocated_size = stolen - overhead;
J
Jesse Barnes 已提交
983 984 985 986

	return 0;
}

987 988 989
static int i915_load_modeset_init(struct drm_device *dev,
				  unsigned long prealloc_size,
				  unsigned long agp_size)
J
Jesse Barnes 已提交
990 991 992 993 994 995 996 997
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	int fb_bar = IS_I9XX(dev) ? 2 : 0;
	int ret = 0;

	dev->mode_config.fb_base = drm_get_resource_start(dev, fb_bar) &
		0xff000000;

998
	if (IS_MOBILE(dev) || IS_I9XX(dev))
J
Jesse Barnes 已提交
999 1000 1001 1002
		dev_priv->cursor_needs_physical = true;
	else
		dev_priv->cursor_needs_physical = false;

1003 1004 1005
	if (IS_I965G(dev) || IS_G33(dev))
		dev_priv->cursor_needs_physical = false;

J
Jesse Barnes 已提交
1006 1007 1008
	/* Basic memrange allocator for stolen space (aka vram) */
	drm_mm_init(&dev_priv->vram, 0, prealloc_size);

1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
	/* Let GEM Manage from end of prealloc space to end of aperture.
	 *
	 * However, leave one page at the end still bound to the scratch page.
	 * There are a number of places where the hardware apparently
	 * prefetches past the end of the object, and we've seen multiple
	 * hangs with the GPU head pointer stuck in a batchbuffer bound
	 * at the last page of the aperture.  One page should be enough to
	 * keep any prefetching inside of the aperture.
	 */
	i915_gem_do_init(dev, prealloc_size, agp_size - 4096);
J
Jesse Barnes 已提交
1019 1020 1021

	ret = i915_gem_init_ringbuffer(dev);
	if (ret)
1022
		goto out;
J
Jesse Barnes 已提交
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047

	/* Allow hardware batchbuffers unless told otherwise.
	 */
	dev_priv->allow_batchbuffer = 1;

	ret = intel_init_bios(dev);
	if (ret)
		DRM_INFO("failed to find VBIOS tables\n");

	ret = drm_irq_install(dev);
	if (ret)
		goto destroy_ringbuffer;

	/* Always safe in the mode setting case. */
	/* FIXME: do pre/post-mode set stuff in core KMS code */
	dev->vblank_disable_allowed = 1;

	/*
	 * Initialize the hardware status page IRQ location.
	 */

	I915_WRITE(INSTPM, (1 << 5) | (1 << 21));

	intel_modeset_init(dev);

1048
	drm_helper_initial_config(dev);
J
Jesse Barnes 已提交
1049 1050 1051 1052 1053 1054 1055 1056 1057

	return 0;

destroy_ringbuffer:
	i915_gem_cleanup_ringbuffer(dev);
out:
	return ret;
}

1058 1059 1060 1061
int i915_master_create(struct drm_device *dev, struct drm_master *master)
{
	struct drm_i915_master_private *master_priv;

1062
	master_priv = kzalloc(sizeof(*master_priv), GFP_KERNEL);
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
	if (!master_priv)
		return -ENOMEM;

	master->driver_priv = master_priv;
	return 0;
}

void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
{
	struct drm_i915_master_private *master_priv = master->driver_priv;

	if (!master_priv)
		return;

1077
	kfree(master_priv);
1078 1079 1080 1081

	master->driver_priv = NULL;
}

1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
static void i915_get_mem_freq(struct drm_device *dev)
{
	drm_i915_private_t *dev_priv = dev->dev_private;
	u32 tmp;

	if (!IS_IGD(dev))
		return;

	tmp = I915_READ(CLKCFG);

	switch (tmp & CLKCFG_FSB_MASK) {
	case CLKCFG_FSB_533:
		dev_priv->fsb_freq = 533; /* 133*4 */
		break;
	case CLKCFG_FSB_800:
		dev_priv->fsb_freq = 800; /* 200*4 */
		break;
	case CLKCFG_FSB_667:
		dev_priv->fsb_freq =  667; /* 167*4 */
		break;
	case CLKCFG_FSB_400:
		dev_priv->fsb_freq = 400; /* 100*4 */
		break;
	}

	switch (tmp & CLKCFG_MEM_MASK) {
	case CLKCFG_MEM_533:
		dev_priv->mem_freq = 533;
		break;
	case CLKCFG_MEM_667:
		dev_priv->mem_freq = 667;
		break;
	case CLKCFG_MEM_800:
		dev_priv->mem_freq = 800;
		break;
	}
}

J
Jesse Barnes 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
/**
 * i915_driver_load - setup chip and create an initial config
 * @dev: DRM device
 * @flags: startup flags
 *
 * The driver load routine has to do several things:
 *   - drive output discovery via intel_modeset_init()
 *   - initialize the memory manager
 *   - allocate initial config memory
 *   - setup the DRM framebuffer with the allocated memory
 */
1131
int i915_driver_load(struct drm_device *dev, unsigned long flags)
1132
{
J
Jesse Barnes 已提交
1133
	struct drm_i915_private *dev_priv = dev->dev_private;
1134
	resource_size_t base, size;
J
Jesse Barnes 已提交
1135
	int ret = 0, mmio_bar = IS_I9XX(dev) ? 0 : 1;
1136
	uint32_t agp_size, prealloc_size;
J
Jesse Barnes 已提交
1137

1138 1139 1140 1141 1142 1143 1144
	/* i915 has 4 more counters */
	dev->counters += 4;
	dev->types[6] = _DRM_STAT_IRQ;
	dev->types[7] = _DRM_STAT_PRIMARY;
	dev->types[8] = _DRM_STAT_SECONDARY;
	dev->types[9] = _DRM_STAT_DMA;

1145
	dev_priv = kzalloc(sizeof(drm_i915_private_t), GFP_KERNEL);
J
Jesse Barnes 已提交
1146 1147 1148 1149
	if (dev_priv == NULL)
		return -ENOMEM;

	dev->dev_private = (void *)dev_priv;
1150
	dev_priv->dev = dev;
J
Jesse Barnes 已提交
1151 1152 1153 1154 1155

	/* Add register map (needed for suspend/resume) */
	base = drm_get_resource_start(dev, mmio_bar);
	size = drm_get_resource_len(dev, mmio_bar);

1156
	dev_priv->regs = ioremap(base, size);
J
Jesse Barnes 已提交
1157 1158 1159 1160 1161
	if (!dev_priv->regs) {
		DRM_ERROR("failed to map registers\n");
		ret = -EIO;
		goto free_priv;
	}
1162

1163 1164 1165
        dev_priv->mm.gtt_mapping =
		io_mapping_create_wc(dev->agp->base,
				     dev->agp->agp_info.aper_size * 1024*1024);
1166 1167 1168 1169 1170
	if (dev_priv->mm.gtt_mapping == NULL) {
		ret = -EIO;
		goto out_rmmap;
	}

1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
	/* Set up a WC MTRR for non-PAT systems.  This is more common than
	 * one would think, because the kernel disables PAT on first
	 * generation Core chips because WC PAT gets overridden by a UC
	 * MTRR if present.  Even if a UC MTRR isn't present.
	 */
	dev_priv->mm.gtt_mtrr = mtrr_add(dev->agp->base,
					 dev->agp->agp_info.aper_size *
					 1024 * 1024,
					 MTRR_TYPE_WRCOMB, 1);
	if (dev_priv->mm.gtt_mtrr < 0) {
1181
		DRM_INFO("MTRR allocation failed.  Graphics "
1182 1183 1184
			 "performance may suffer.\n");
	}

1185 1186 1187 1188
	ret = i915_probe_agp(dev, &agp_size, &prealloc_size);
	if (ret)
		goto out_iomapfree;

1189 1190 1191
	/* enable GEM by default */
	dev_priv->has_gem = 1;

1192 1193 1194 1195 1196 1197 1198 1199 1200
	if (prealloc_size > agp_size * 3 / 4) {
		DRM_ERROR("Detected broken video BIOS with %d/%dkB of video "
			  "memory stolen.\n",
			  prealloc_size / 1024, agp_size / 1024);
		DRM_ERROR("Disabling GEM. (try reducing stolen memory or "
			  "updating the BIOS to fix).\n");
		dev_priv->has_gem = 0;
	}

1201
	dev->driver->get_vblank_counter = i915_get_vblank_counter;
1202
	dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
1203
	if (IS_G4X(dev) || IS_IGDNG(dev)) {
1204
		dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
1205
		dev->driver->get_vblank_counter = gm45_get_vblank_counter;
1206
	}
1207

1208 1209
	i915_gem_load(dev);

1210 1211 1212 1213
	/* Init HWS */
	if (!I915_NEED_GFX_HWS(dev)) {
		ret = i915_init_phys_hws(dev);
		if (ret != 0)
1214
			goto out_iomapfree;
1215
	}
1216

1217 1218
	i915_get_mem_freq(dev);

1219 1220 1221 1222 1223 1224
	/* On the 945G/GM, the chipset reports the MSI capability on the
	 * integrated graphics even though the support isn't actually there
	 * according to the published specs.  It doesn't appear to function
	 * correctly in testing on 945G.
	 * This may be a side effect of MSI having been made available for PEG
	 * and the registers being closely associated.
1225 1226
	 *
	 * According to chipset errata, on the 965GM, MSI interrupts may
1227 1228
	 * be lost or delayed, but we use them anyways to avoid
	 * stuck interrupts on some machines.
1229
	 */
1230
	if (!IS_I945G(dev) && !IS_I945GM(dev))
1231
		pci_enable_msi(dev->pdev);
1232 1233

	spin_lock_init(&dev_priv->user_irq_lock);
1234
	spin_lock_init(&dev_priv->error_lock);
J
Jesse Barnes 已提交
1235
	dev_priv->user_irq_refcount = 0;
1236

1237 1238 1239 1240 1241 1242 1243
	ret = drm_vblank_init(dev, I915_NUM_PIPE);

	if (ret) {
		(void) i915_driver_unload(dev);
		return ret;
	}

J
Jesse Barnes 已提交
1244
	if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1245
		ret = i915_load_modeset_init(dev, prealloc_size, agp_size);
J
Jesse Barnes 已提交
1246 1247 1248 1249 1250 1251
		if (ret < 0) {
			DRM_ERROR("failed to init modeset\n");
			goto out_rmmap;
		}
	}

1252
	/* Must be done after probing outputs */
1253 1254 1255
	/* FIXME: verify on IGDNG */
	if (!IS_IGDNG(dev))
		intel_opregion_init(dev, 0);
1256

J
Jesse Barnes 已提交
1257 1258
	return 0;

1259 1260
out_iomapfree:
	io_mapping_free(dev_priv->mm.gtt_mapping);
J
Jesse Barnes 已提交
1261 1262 1263
out_rmmap:
	iounmap(dev_priv->regs);
free_priv:
1264
	kfree(dev_priv);
J
Jesse Barnes 已提交
1265 1266 1267 1268 1269 1270 1271
	return ret;
}

int i915_driver_unload(struct drm_device *dev)
{
	struct drm_i915_private *dev_priv = dev->dev_private;

1272 1273 1274 1275 1276 1277 1278
	io_mapping_free(dev_priv->mm.gtt_mapping);
	if (dev_priv->mm.gtt_mtrr >= 0) {
		mtrr_del(dev_priv->mm.gtt_mtrr, dev->agp->base,
			 dev->agp->agp_info.aper_size * 1024 * 1024);
		dev_priv->mm.gtt_mtrr = -1;
	}

J
Jesse Barnes 已提交
1279 1280 1281 1282
	if (drm_core_check_feature(dev, DRIVER_MODESET)) {
		drm_irq_uninstall(dev);
	}

1283 1284 1285
	if (dev->pdev->msi_enabled)
		pci_disable_msi(dev->pdev);

1286 1287
	if (dev_priv->regs != NULL)
		iounmap(dev_priv->regs);
J
Jesse Barnes 已提交
1288

1289 1290
	if (!IS_IGDNG(dev))
		intel_opregion_free(dev, 0);
1291

J
Jesse Barnes 已提交
1292 1293 1294
	if (drm_core_check_feature(dev, DRIVER_MODESET)) {
		intel_modeset_cleanup(dev);

1295 1296
		i915_gem_free_all_phys_object(dev);

J
Jesse Barnes 已提交
1297 1298 1299 1300 1301 1302 1303
		mutex_lock(&dev->struct_mutex);
		i915_gem_cleanup_ringbuffer(dev);
		mutex_unlock(&dev->struct_mutex);
		drm_mm_takedown(&dev_priv->vram);
		i915_gem_lastclose(dev);
	}

1304
	kfree(dev->dev_private);
J
Jesse Barnes 已提交
1305

1306 1307 1308
	return 0;
}

1309 1310 1311 1312
int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv)
{
	struct drm_i915_file_private *i915_file_priv;

1313
	DRM_DEBUG_DRIVER(I915_DRV, "\n");
1314
	i915_file_priv = (struct drm_i915_file_private *)
1315
	    kmalloc(sizeof(*i915_file_priv), GFP_KERNEL);
1316 1317 1318 1319 1320 1321

	if (!i915_file_priv)
		return -ENOMEM;

	file_priv->driver_priv = i915_file_priv;

1322
	INIT_LIST_HEAD(&i915_file_priv->mm.request_list);
1323 1324 1325 1326

	return 0;
}

J
Jesse Barnes 已提交
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
/**
 * i915_driver_lastclose - clean up after all DRM clients have exited
 * @dev: DRM device
 *
 * Take care of cleaning up after all DRM clients have exited.  In the
 * mode setting case, we want to restore the kernel's initial mode (just
 * in case the last client left us in a bad state).
 *
 * Additionally, in the non-mode setting case, we'll tear down the AGP
 * and DMA structures, since the kernel won't be using them, and clea
 * up any GEM state.
 */
1339
void i915_driver_lastclose(struct drm_device * dev)
L
Linus Torvalds 已提交
1340
{
J
Jesse Barnes 已提交
1341 1342
	drm_i915_private_t *dev_priv = dev->dev_private;

J
Jesse Barnes 已提交
1343 1344
	if (!dev_priv || drm_core_check_feature(dev, DRIVER_MODESET)) {
		intelfb_restore();
D
Dave Airlie 已提交
1345
		return;
J
Jesse Barnes 已提交
1346
	}
D
Dave Airlie 已提交
1347

1348 1349
	i915_gem_lastclose(dev);

J
Jesse Barnes 已提交
1350
	if (dev_priv->agp_heap)
D
Dave Airlie 已提交
1351
		i915_mem_takedown(&(dev_priv->agp_heap));
J
Jesse Barnes 已提交
1352

D
Dave Airlie 已提交
1353
	i915_dma_cleanup(dev);
L
Linus Torvalds 已提交
1354 1355
}

1356
void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
L
Linus Torvalds 已提交
1357
{
J
Jesse Barnes 已提交
1358
	drm_i915_private_t *dev_priv = dev->dev_private;
1359
	i915_gem_release(dev, file_priv);
J
Jesse Barnes 已提交
1360 1361
	if (!drm_core_check_feature(dev, DRIVER_MODESET))
		i915_mem_release(dev, file_priv, dev_priv->agp_heap);
L
Linus Torvalds 已提交
1362 1363
}

1364 1365 1366 1367
void i915_driver_postclose(struct drm_device *dev, struct drm_file *file_priv)
{
	struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;

1368
	kfree(i915_file_priv);
1369 1370
}

1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
struct drm_ioctl_desc i915_ioctls[] = {
	DRM_IOCTL_DEF(DRM_I915_INIT, i915_dma_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_I915_FLUSH, i915_flush_ioctl, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_FLIP, i915_flip_bufs, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_BATCHBUFFER, i915_batchbuffer, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_IRQ_EMIT, i915_irq_emit, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_IRQ_WAIT, i915_irq_wait, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_GETPARAM, i915_getparam, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_I915_ALLOC, i915_mem_alloc, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_FREE, i915_mem_free, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_INIT_HEAP, i915_mem_init_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_I915_CMDBUFFER, i915_cmdbuffer, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_DESTROY_HEAP,  i915_mem_destroy_heap, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
	DRM_IOCTL_DEF(DRM_I915_SET_VBLANK_PIPE,  i915_vblank_pipe_set, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY ),
	DRM_IOCTL_DEF(DRM_I915_GET_VBLANK_PIPE,  i915_vblank_pipe_get, DRM_AUTH ),
	DRM_IOCTL_DEF(DRM_I915_VBLANK_SWAP, i915_vblank_swap, DRM_AUTH),
1388
	DRM_IOCTL_DEF(DRM_I915_HWS_ADDR, i915_set_status_page, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1389
	DRM_IOCTL_DEF(DRM_I915_GEM_INIT, i915_gem_init_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1390 1391 1392 1393 1394
	DRM_IOCTL_DEF(DRM_I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_GEM_PIN, i915_gem_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_I915_GEM_UNPIN, i915_gem_unpin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH),
1395 1396
	DRM_IOCTL_DEF(DRM_I915_GEM_ENTERVT, i915_gem_entervt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_I915_GEM_LEAVEVT, i915_gem_leavevt_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1397 1398 1399 1400
	DRM_IOCTL_DEF(DRM_I915_GEM_CREATE, i915_gem_create_ioctl, 0),
	DRM_IOCTL_DEF(DRM_I915_GEM_PREAD, i915_gem_pread_ioctl, 0),
	DRM_IOCTL_DEF(DRM_I915_GEM_PWRITE, i915_gem_pwrite_ioctl, 0),
	DRM_IOCTL_DEF(DRM_I915_GEM_MMAP, i915_gem_mmap_ioctl, 0),
1401
	DRM_IOCTL_DEF(DRM_I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, 0),
1402 1403 1404 1405
	DRM_IOCTL_DEF(DRM_I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, 0),
	DRM_IOCTL_DEF(DRM_I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, 0),
	DRM_IOCTL_DEF(DRM_I915_GEM_SET_TILING, i915_gem_set_tiling, 0),
	DRM_IOCTL_DEF(DRM_I915_GEM_GET_TILING, i915_gem_get_tiling, 0),
1406
	DRM_IOCTL_DEF(DRM_I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, 0),
1407
	DRM_IOCTL_DEF(DRM_I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, 0),
D
Dave Airlie 已提交
1408 1409 1410
};

int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422

/**
 * Determine if the device really is AGP or not.
 *
 * All Intel graphics chipsets are treated as AGP, even if they are really
 * PCI-e.
 *
 * \param dev   The device to be tested.
 *
 * \returns
 * A value of 1 is always retured to indictate every i9x5 is AGP.
 */
1423
int i915_driver_device_is_agp(struct drm_device * dev)
1424 1425 1426
{
	return 1;
}