drm/i915: Improve staged config logging
[deliverable/linux.git] / drivers / gpu / drm / i915 / i915_dma.c
CommitLineData
1da177e4
LT
1/* i915_dma.c -- DMA support for the I915 -*- linux-c -*-
2 */
0d6aa60b 3/*
1da177e4
LT
4 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
bc54fd1a
DA
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
0d6aa60b 27 */
1da177e4 28
a70491cc
JP
29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
d1d70677 31#include <linux/async.h>
760285e7
DH
32#include <drm/drmP.h>
33#include <drm/drm_crtc_helper.h>
34#include <drm/drm_fb_helper.h>
4f03b1fc 35#include <drm/drm_legacy.h>
79e53945 36#include "intel_drv.h"
760285e7 37#include <drm/i915_drm.h>
1da177e4 38#include "i915_drv.h"
e21fd552 39#include "i915_vgpu.h"
1c5d22f7 40#include "i915_trace.h"
dcdb1674 41#include <linux/pci.h>
a4de0526
DV
42#include <linux/console.h>
43#include <linux/vt.h>
28d52043 44#include <linux/vgaarb.h>
c4804411
ZW
45#include <linux/acpi.h>
46#include <linux/pnp.h>
6a9ee8af 47#include <linux/vga_switcheroo.h>
5a0e3ad6 48#include <linux/slab.h>
44834a67 49#include <acpi/video.h>
8a187455
PZ
50#include <linux/pm.h>
51#include <linux/pm_runtime.h>
4bdc7293 52#include <linux/oom.h>
1da177e4 53
1da177e4 54
c153f45f
EA
55static int i915_getparam(struct drm_device *dev, void *data,
56 struct drm_file *file_priv)
1da177e4 57{
4c8a4be9 58 struct drm_i915_private *dev_priv = dev->dev_private;
c153f45f 59 drm_i915_getparam_t *param = data;
1da177e4
LT
60 int value;
61
c153f45f 62 switch (param->param) {
1da177e4 63 case I915_PARAM_IRQ_ACTIVE:
1da177e4 64 case I915_PARAM_ALLOW_BATCHBUFFER:
0d6aa60b 65 case I915_PARAM_LAST_DISPATCH:
ac883c84 66 /* Reject all old ums/dri params. */
5c6c6003 67 return -ENODEV;
ed4c9c4a 68 case I915_PARAM_CHIPSET_ID:
ffbab09b 69 value = dev->pdev->device;
ed4c9c4a 70 break;
673a394b 71 case I915_PARAM_HAS_GEM:
2e895b17 72 value = 1;
673a394b 73 break;
0f973f27
JB
74 case I915_PARAM_NUM_FENCES_AVAIL:
75 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
76 break;
02e792fb
DV
77 case I915_PARAM_HAS_OVERLAY:
78 value = dev_priv->overlay ? 1 : 0;
79 break;
e9560f7c
JB
80 case I915_PARAM_HAS_PAGEFLIPPING:
81 value = 1;
82 break;
76446cac
JB
83 case I915_PARAM_HAS_EXECBUF2:
84 /* depends on GEM */
2e895b17 85 value = 1;
76446cac 86 break;
e3a815fc 87 case I915_PARAM_HAS_BSD:
edc912f5 88 value = intel_ring_initialized(&dev_priv->ring[VCS]);
e3a815fc 89 break;
549f7365 90 case I915_PARAM_HAS_BLT:
edc912f5 91 value = intel_ring_initialized(&dev_priv->ring[BCS]);
549f7365 92 break;
a1f2cc73
XH
93 case I915_PARAM_HAS_VEBOX:
94 value = intel_ring_initialized(&dev_priv->ring[VECS]);
95 break;
08e16dc8
ZG
96 case I915_PARAM_HAS_BSD2:
97 value = intel_ring_initialized(&dev_priv->ring[VCS2]);
98 break;
a00b10c3
CW
99 case I915_PARAM_HAS_RELAXED_FENCING:
100 value = 1;
101 break;
bbf0c6b3
DV
102 case I915_PARAM_HAS_COHERENT_RINGS:
103 value = 1;
104 break;
72bfa19c
CW
105 case I915_PARAM_HAS_EXEC_CONSTANTS:
106 value = INTEL_INFO(dev)->gen >= 4;
107 break;
271d81b8
CW
108 case I915_PARAM_HAS_RELAXED_DELTA:
109 value = 1;
110 break;
ae662d31
EA
111 case I915_PARAM_HAS_GEN7_SOL_RESET:
112 value = 1;
113 break;
3d29b842
ED
114 case I915_PARAM_HAS_LLC:
115 value = HAS_LLC(dev);
116 break;
651d794f
CW
117 case I915_PARAM_HAS_WT:
118 value = HAS_WT(dev);
119 break;
777ee96f 120 case I915_PARAM_HAS_ALIASING_PPGTT:
896ab1a5 121 value = USES_PPGTT(dev);
777ee96f 122 break;
172cf15d
BW
123 case I915_PARAM_HAS_WAIT_TIMEOUT:
124 value = 1;
125 break;
2fedbff9
CW
126 case I915_PARAM_HAS_SEMAPHORES:
127 value = i915_semaphore_is_enabled(dev);
128 break;
ec6f1bb9
DA
129 case I915_PARAM_HAS_PRIME_VMAP_FLUSH:
130 value = 1;
131 break;
d7d4eedd
CW
132 case I915_PARAM_HAS_SECURE_BATCHES:
133 value = capable(CAP_SYS_ADMIN);
134 break;
b45305fc
DV
135 case I915_PARAM_HAS_PINNED_BATCHES:
136 value = 1;
137 break;
ed5982e6
DV
138 case I915_PARAM_HAS_EXEC_NO_RELOC:
139 value = 1;
140 break;
eef90ccb
CW
141 case I915_PARAM_HAS_EXEC_HANDLE_LUT:
142 value = 1;
143 break;
d728c8ef
BV
144 case I915_PARAM_CMD_PARSER_VERSION:
145 value = i915_cmd_parser_get_version();
146 break;
6a2c4232
CW
147 case I915_PARAM_HAS_COHERENT_PHYS_GTT:
148 value = 1;
1816f923
AG
149 break;
150 case I915_PARAM_MMAP_VERSION:
151 value = 1;
6a2c4232 152 break;
1da177e4 153 default:
e29c32da 154 DRM_DEBUG("Unknown parameter %d\n", param->param);
20caafa6 155 return -EINVAL;
1da177e4
LT
156 }
157
1d6ac185
DV
158 if (copy_to_user(param->value, &value, sizeof(int))) {
159 DRM_ERROR("copy_to_user failed\n");
20caafa6 160 return -EFAULT;
1da177e4
LT
161 }
162
163 return 0;
164}
165
c153f45f
EA
166static int i915_setparam(struct drm_device *dev, void *data,
167 struct drm_file *file_priv)
1da177e4 168{
4c8a4be9 169 struct drm_i915_private *dev_priv = dev->dev_private;
c153f45f 170 drm_i915_setparam_t *param = data;
1da177e4 171
c153f45f 172 switch (param->param) {
1da177e4 173 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
1da177e4 174 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
1da177e4 175 case I915_SETPARAM_ALLOW_BATCHBUFFER:
ac883c84 176 /* Reject all old ums/dri params. */
5c6c6003
CW
177 return -ENODEV;
178
0f973f27
JB
179 case I915_SETPARAM_NUM_USED_FENCES:
180 if (param->value > dev_priv->num_fence_regs ||
181 param->value < 0)
182 return -EINVAL;
183 /* Userspace can use first N regs */
184 dev_priv->fence_reg_start = param->value;
185 break;
1da177e4 186 default:
8a4c47f3 187 DRM_DEBUG_DRIVER("unknown parameter %d\n",
be25ed9c 188 param->param);
20caafa6 189 return -EINVAL;
1da177e4
LT
190 }
191
192 return 0;
193}
194
ec2a4c3f
DA
195static int i915_get_bridge_dev(struct drm_device *dev)
196{
197 struct drm_i915_private *dev_priv = dev->dev_private;
198
0206e353 199 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
ec2a4c3f
DA
200 if (!dev_priv->bridge_dev) {
201 DRM_ERROR("bridge device not found\n");
202 return -1;
203 }
204 return 0;
205}
206
c4804411
ZW
207#define MCHBAR_I915 0x44
208#define MCHBAR_I965 0x48
209#define MCHBAR_SIZE (4*4096)
210
211#define DEVEN_REG 0x54
212#define DEVEN_MCHBAR_EN (1 << 28)
213
214/* Allocate space for the MCH regs if needed, return nonzero on error */
215static int
216intel_alloc_mchbar_resource(struct drm_device *dev)
217{
4c8a4be9 218 struct drm_i915_private *dev_priv = dev->dev_private;
a6c45cf0 219 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
c4804411
ZW
220 u32 temp_lo, temp_hi = 0;
221 u64 mchbar_addr;
a25c25c2 222 int ret;
c4804411 223
a6c45cf0 224 if (INTEL_INFO(dev)->gen >= 4)
c4804411
ZW
225 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
226 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
227 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
228
229 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
230#ifdef CONFIG_PNP
231 if (mchbar_addr &&
a25c25c2
CW
232 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
233 return 0;
c4804411
ZW
234#endif
235
236 /* Get some space for it */
a25c25c2
CW
237 dev_priv->mch_res.name = "i915 MCHBAR";
238 dev_priv->mch_res.flags = IORESOURCE_MEM;
239 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
240 &dev_priv->mch_res,
c4804411
ZW
241 MCHBAR_SIZE, MCHBAR_SIZE,
242 PCIBIOS_MIN_MEM,
a25c25c2 243 0, pcibios_align_resource,
c4804411
ZW
244 dev_priv->bridge_dev);
245 if (ret) {
246 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
247 dev_priv->mch_res.start = 0;
a25c25c2 248 return ret;
c4804411
ZW
249 }
250
a6c45cf0 251 if (INTEL_INFO(dev)->gen >= 4)
c4804411
ZW
252 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
253 upper_32_bits(dev_priv->mch_res.start));
254
255 pci_write_config_dword(dev_priv->bridge_dev, reg,
256 lower_32_bits(dev_priv->mch_res.start));
a25c25c2 257 return 0;
c4804411
ZW
258}
259
260/* Setup MCHBAR if possible, return true if we should disable it again */
261static void
262intel_setup_mchbar(struct drm_device *dev)
263{
4c8a4be9 264 struct drm_i915_private *dev_priv = dev->dev_private;
a6c45cf0 265 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
c4804411
ZW
266 u32 temp;
267 bool enabled;
268
11ea8b7d
JB
269 if (IS_VALLEYVIEW(dev))
270 return;
271
c4804411
ZW
272 dev_priv->mchbar_need_disable = false;
273
274 if (IS_I915G(dev) || IS_I915GM(dev)) {
275 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
276 enabled = !!(temp & DEVEN_MCHBAR_EN);
277 } else {
278 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
279 enabled = temp & 1;
280 }
281
282 /* If it's already enabled, don't have to do anything */
283 if (enabled)
284 return;
285
286 if (intel_alloc_mchbar_resource(dev))
287 return;
288
289 dev_priv->mchbar_need_disable = true;
290
291 /* Space is allocated or reserved, so enable it. */
292 if (IS_I915G(dev) || IS_I915GM(dev)) {
293 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
294 temp | DEVEN_MCHBAR_EN);
295 } else {
296 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
297 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
298 }
299}
300
301static void
302intel_teardown_mchbar(struct drm_device *dev)
303{
4c8a4be9 304 struct drm_i915_private *dev_priv = dev->dev_private;
a6c45cf0 305 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
c4804411
ZW
306 u32 temp;
307
308 if (dev_priv->mchbar_need_disable) {
309 if (IS_I915G(dev) || IS_I915GM(dev)) {
310 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
311 temp &= ~DEVEN_MCHBAR_EN;
312 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
313 } else {
314 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
315 temp &= ~1;
316 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
317 }
318 }
319
320 if (dev_priv->mch_res.start)
321 release_resource(&dev_priv->mch_res);
322}
323
28d52043
DA
324/* true = enable decode, false = disable decoder */
325static unsigned int i915_vga_set_decode(void *cookie, bool state)
326{
327 struct drm_device *dev = cookie;
328
329 intel_modeset_vga_set_state(dev, state);
330 if (state)
331 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
332 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
333 else
334 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
335}
336
6a9ee8af
DA
337static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
338{
339 struct drm_device *dev = pci_get_drvdata(pdev);
340 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
1a5036bf 341
6a9ee8af 342 if (state == VGA_SWITCHEROO_ON) {
a70491cc 343 pr_info("switched on\n");
5bcf719b 344 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
6a9ee8af
DA
345 /* i915 resume handler doesn't set to D0 */
346 pci_set_power_state(dev->pdev, PCI_D0);
fc49b3da 347 i915_resume_legacy(dev);
5bcf719b 348 dev->switch_power_state = DRM_SWITCH_POWER_ON;
6a9ee8af 349 } else {
a70491cc 350 pr_err("switched off\n");
5bcf719b 351 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
fc49b3da 352 i915_suspend_legacy(dev, pmm);
5bcf719b 353 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
6a9ee8af
DA
354 }
355}
356
357static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
358{
359 struct drm_device *dev = pci_get_drvdata(pdev);
6a9ee8af 360
fc8fd40e
DV
361 /*
362 * FIXME: open_count is protected by drm_global_mutex but that would lead to
363 * locking inversion with the driver load path. And the access here is
364 * completely racy anyway. So don't bother with locking for now.
365 */
366 return dev->open_count == 0;
6a9ee8af
DA
367}
368
26ec685f
TI
369static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
370 .set_gpu_state = i915_switcheroo_set_state,
371 .reprobe = NULL,
372 .can_switch = i915_switcheroo_can_switch,
373};
374
2c7111db
CW
375static int i915_load_modeset_init(struct drm_device *dev)
376{
377 struct drm_i915_private *dev_priv = dev->dev_private;
378 int ret;
79e53945 379
6d139a87 380 ret = intel_parse_bios(dev);
79e53945
JB
381 if (ret)
382 DRM_INFO("failed to find VBIOS tables\n");
383
934f992c
CW
384 /* If we have > 1 VGA cards, then we need to arbitrate access
385 * to the common VGA resources.
386 *
387 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
388 * then we do not take part in VGA arbitration and the
389 * vga_client_register() fails with -ENODEV.
390 */
ebff5fa9
DA
391 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
392 if (ret && ret != -ENODEV)
393 goto out;
28d52043 394
723bfd70
JB
395 intel_register_dsm_handler();
396
0d69704a 397 ret = vga_switcheroo_register_client(dev->pdev, &i915_switcheroo_ops, false);
6a9ee8af 398 if (ret)
5a79395b 399 goto cleanup_vga_client;
6a9ee8af 400
9797fbfb
CW
401 /* Initialise stolen first so that we may reserve preallocated
402 * objects for the BIOS to KMS transition.
403 */
404 ret = i915_gem_init_stolen(dev);
405 if (ret)
406 goto cleanup_vga_switcheroo;
407
e13192f6
ID
408 intel_power_domains_init_hw(dev_priv);
409
2aeb7d3a 410 ret = intel_irq_install(dev_priv);
52d7eced
DV
411 if (ret)
412 goto cleanup_gem_stolen;
413
414 /* Important: The output setup functions called by modeset_init need
415 * working irqs for e.g. gmbus and dp aux transfers. */
b01f2c3a
JB
416 intel_modeset_init(dev);
417
1070a42b 418 ret = i915_gem_init(dev);
79e53945 419 if (ret)
713028b3 420 goto cleanup_irq;
2c7111db 421
52d7eced 422 intel_modeset_gem_init(dev);
2c7111db 423
79e53945
JB
424 /* Always safe in the mode setting case. */
425 /* FIXME: do pre/post-mode set stuff in core KMS code */
ba0bf120 426 dev->vblank_disable_allowed = true;
713028b3 427 if (INTEL_INFO(dev)->num_pipes == 0)
e3c74757 428 return 0;
79e53945 429
5a79395b
CW
430 ret = intel_fbdev_init(dev);
431 if (ret)
52d7eced
DV
432 goto cleanup_gem;
433
20afbda2 434 /* Only enable hotplug handling once the fbdev is fully set up. */
b963291c 435 intel_hpd_init(dev_priv);
20afbda2
DV
436
437 /*
438 * Some ports require correctly set-up hpd registers for detection to
439 * work properly (leading to ghost connected connector status), e.g. VGA
440 * on gm45. Hence we can only set up the initial fbdev config after hpd
441 * irqs are fully enabled. Now we should scan for the initial config
442 * only once hotplug handling is enabled, but due to screwed-up locking
443 * around kms/fbdev init we can't protect the fdbev initial config
444 * scanning against hotplug events. Hence do this first and ignore the
445 * tiny window where we will loose hotplug notifactions.
446 */
d1d70677 447 async_schedule(intel_fbdev_initial_config, dev_priv);
20afbda2 448
eb1f8e4f 449 drm_kms_helper_poll_init(dev);
87acb0a5 450
79e53945
JB
451 return 0;
452
2c7111db
CW
453cleanup_gem:
454 mutex_lock(&dev->struct_mutex);
455 i915_gem_cleanup_ringbuffer(dev);
55d23285 456 i915_gem_context_fini(dev);
2c7111db 457 mutex_unlock(&dev->struct_mutex);
713028b3 458cleanup_irq:
52d7eced 459 drm_irq_uninstall(dev);
9797fbfb
CW
460cleanup_gem_stolen:
461 i915_gem_cleanup_stolen(dev);
5a79395b
CW
462cleanup_vga_switcheroo:
463 vga_switcheroo_unregister_client(dev->pdev);
464cleanup_vga_client:
465 vga_client_register(dev->pdev, NULL, NULL, NULL);
79e53945
JB
466out:
467 return ret;
468}
469
243eaf38 470#if IS_ENABLED(CONFIG_FB)
f96de58f 471static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
e188719a
DV
472{
473 struct apertures_struct *ap;
474 struct pci_dev *pdev = dev_priv->dev->pdev;
475 bool primary;
f96de58f 476 int ret;
e188719a
DV
477
478 ap = alloc_apertures(1);
479 if (!ap)
f96de58f 480 return -ENOMEM;
e188719a 481
dabb7a91 482 ap->ranges[0].base = dev_priv->gtt.mappable_base;
f64e2922 483 ap->ranges[0].size = dev_priv->gtt.mappable_end;
93d18799 484
e188719a
DV
485 primary =
486 pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
487
f96de58f 488 ret = remove_conflicting_framebuffers(ap, "inteldrmfb", primary);
e188719a
DV
489
490 kfree(ap);
f96de58f
CW
491
492 return ret;
e188719a 493}
4520f53a 494#else
f96de58f 495static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
4520f53a 496{
f96de58f 497 return 0;
4520f53a
DV
498}
499#endif
e188719a 500
a4de0526
DV
501#if !defined(CONFIG_VGA_CONSOLE)
502static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
503{
504 return 0;
505}
506#elif !defined(CONFIG_DUMMY_CONSOLE)
507static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
508{
509 return -ENODEV;
510}
511#else
512static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
513{
1bb9e632 514 int ret = 0;
a4de0526
DV
515
516 DRM_INFO("Replacing VGA console driver\n");
517
518 console_lock();
1bb9e632
DV
519 if (con_is_bound(&vga_con))
520 ret = do_take_over_console(&dummy_con, 0, MAX_NR_CONSOLES - 1, 1);
a4de0526
DV
521 if (ret == 0) {
522 ret = do_unregister_con_driver(&vga_con);
523
524 /* Ignore "already unregistered". */
525 if (ret == -ENODEV)
526 ret = 0;
527 }
528 console_unlock();
529
530 return ret;
531}
532#endif
533
c96ea64e
DV
534static void i915_dump_device_info(struct drm_i915_private *dev_priv)
535{
5c969aa7 536 const struct intel_device_info *info = &dev_priv->info;
c96ea64e 537
e2a5800a
DL
538#define PRINT_S(name) "%s"
539#define SEP_EMPTY
79fc46df
DL
540#define PRINT_FLAG(name) info->name ? #name "," : ""
541#define SEP_COMMA ,
19c656a1 542 DRM_DEBUG_DRIVER("i915 device info: gen=%i, pciid=0x%04x rev=0x%02x flags="
e2a5800a 543 DEV_INFO_FOR_EACH_FLAG(PRINT_S, SEP_EMPTY),
c96ea64e
DV
544 info->gen,
545 dev_priv->dev->pdev->device,
19c656a1 546 dev_priv->dev->pdev->revision,
79fc46df 547 DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_COMMA));
e2a5800a
DL
548#undef PRINT_S
549#undef SEP_EMPTY
79fc46df
DL
550#undef PRINT_FLAG
551#undef SEP_COMMA
c96ea64e
DV
552}
553
22d3fd46
DL
554/*
555 * Determine various intel_device_info fields at runtime.
556 *
557 * Use it when either:
558 * - it's judged too laborious to fill n static structures with the limit
559 * when a simple if statement does the job,
560 * - run-time checks (eg read fuse/strap registers) are needed.
658ac4c6
DL
561 *
562 * This function needs to be called:
563 * - after the MMIO has been setup as we are reading registers,
564 * - after the PCH has been detected,
565 * - before the first usage of the fields it can tweak.
22d3fd46
DL
566 */
567static void intel_device_info_runtime_init(struct drm_device *dev)
568{
658ac4c6 569 struct drm_i915_private *dev_priv = dev->dev_private;
22d3fd46 570 struct intel_device_info *info;
d615a166 571 enum pipe pipe;
22d3fd46 572
658ac4c6 573 info = (struct intel_device_info *)&dev_priv->info;
22d3fd46 574
1fc8ac3e 575 if (IS_VALLEYVIEW(dev) || INTEL_INFO(dev)->gen == 9)
055e393f 576 for_each_pipe(dev_priv, pipe)
d615a166
DL
577 info->num_sprites[pipe] = 2;
578 else
055e393f 579 for_each_pipe(dev_priv, pipe)
d615a166 580 info->num_sprites[pipe] = 1;
658ac4c6 581
a0bae57f
DL
582 if (i915.disable_display) {
583 DRM_INFO("Display disabled (module parameter)\n");
584 info->num_pipes = 0;
585 } else if (info->num_pipes > 0 &&
586 (INTEL_INFO(dev)->gen == 7 || INTEL_INFO(dev)->gen == 8) &&
587 !IS_VALLEYVIEW(dev)) {
658ac4c6
DL
588 u32 fuse_strap = I915_READ(FUSE_STRAP);
589 u32 sfuse_strap = I915_READ(SFUSE_STRAP);
590
591 /*
592 * SFUSE_STRAP is supposed to have a bit signalling the display
593 * is fused off. Unfortunately it seems that, at least in
594 * certain cases, fused off display means that PCH display
595 * reads don't land anywhere. In that case, we read 0s.
596 *
597 * On CPT/PPT, we can detect this case as SFUSE_STRAP_FUSE_LOCK
598 * should be set when taking over after the firmware.
599 */
600 if (fuse_strap & ILK_INTERNAL_DISPLAY_DISABLE ||
601 sfuse_strap & SFUSE_STRAP_DISPLAY_DISABLED ||
602 (dev_priv->pch_type == PCH_CPT &&
603 !(sfuse_strap & SFUSE_STRAP_FUSE_LOCK))) {
604 DRM_INFO("Display fused off, disabling\n");
605 info->num_pipes = 0;
606 }
607 }
693d11c3 608
3873218f 609 /* Initialize slice/subslice/EU info */
693d11c3
D
610 if (IS_CHERRYVIEW(dev)) {
611 u32 fuse, mask_eu;
612
613 fuse = I915_READ(CHV_FUSE_GT);
614 mask_eu = fuse & (CHV_FGT_EU_DIS_SS0_R0_MASK |
615 CHV_FGT_EU_DIS_SS0_R1_MASK |
616 CHV_FGT_EU_DIS_SS1_R0_MASK |
617 CHV_FGT_EU_DIS_SS1_R1_MASK);
618 info->eu_total = 16 - hweight32(mask_eu);
3873218f
JM
619 } else if (IS_SKYLAKE(dev)) {
620 const int s_max = 3, ss_max = 4, eu_max = 8;
621 int s, ss;
622 u32 fuse2, eu_disable[s_max], s_enable, ss_disable;
623
624 fuse2 = I915_READ(GEN8_FUSE2);
625 s_enable = (fuse2 & GEN8_F2_S_ENA_MASK) >>
626 GEN8_F2_S_ENA_SHIFT;
627 ss_disable = (fuse2 & GEN9_F2_SS_DIS_MASK) >>
628 GEN9_F2_SS_DIS_SHIFT;
629
630 eu_disable[0] = I915_READ(GEN8_EU_DISABLE0);
631 eu_disable[1] = I915_READ(GEN8_EU_DISABLE1);
632 eu_disable[2] = I915_READ(GEN8_EU_DISABLE2);
633
634 info->slice_total = hweight32(s_enable);
635 /*
636 * The subslice disable field is global, i.e. it applies
637 * to each of the enabled slices.
638 */
639 info->subslice_per_slice = ss_max - hweight32(ss_disable);
640 info->subslice_total = info->slice_total *
641 info->subslice_per_slice;
642
643 /*
644 * Iterate through enabled slices and subslices to
645 * count the total enabled EU.
646 */
647 for (s = 0; s < s_max; s++) {
648 if (!(s_enable & (0x1 << s)))
649 /* skip disabled slice */
650 continue;
651
652 for (ss = 0; ss < ss_max; ss++) {
b7668791
DL
653 u32 n_disabled;
654
3873218f
JM
655 if (ss_disable & (0x1 << ss))
656 /* skip disabled subslice */
657 continue;
658
b7668791
DL
659 n_disabled = hweight8(eu_disable[s] >>
660 (ss * eu_max));
661
662 /*
663 * Record which subslice(s) has(have) 7 EUs. we
664 * can tune the hash used to spread work among
665 * subslices if they are unbalanced.
666 */
667 if (eu_max - n_disabled == 7)
668 info->subslice_7eu[s] |= 1 << ss;
669
670 info->eu_total += eu_max - n_disabled;
3873218f
JM
671 }
672 }
673
674 /*
675 * SKL is expected to always have a uniform distribution
676 * of EU across subslices with the exception that any one
677 * EU in any one subslice may be fused off for die
678 * recovery.
679 */
680 info->eu_per_subslice = info->subslice_total ?
681 DIV_ROUND_UP(info->eu_total,
682 info->subslice_total) : 0;
683 /*
684 * SKL supports slice power gating on devices with more than
685 * one slice, and supports EU power gating on devices with
686 * more than one EU pair per subslice.
687 */
688 info->has_slice_pg = (info->slice_total > 1) ? 1 : 0;
689 info->has_subslice_pg = 0;
690 info->has_eu_pg = (info->eu_per_subslice > 2) ? 1 : 0;
693d11c3 691 }
3873218f
JM
692 DRM_DEBUG_DRIVER("slice total: %u\n", info->slice_total);
693 DRM_DEBUG_DRIVER("subslice total: %u\n", info->subslice_total);
694 DRM_DEBUG_DRIVER("subslice per slice: %u\n", info->subslice_per_slice);
695 DRM_DEBUG_DRIVER("EU total: %u\n", info->eu_total);
696 DRM_DEBUG_DRIVER("EU per subslice: %u\n", info->eu_per_subslice);
697 DRM_DEBUG_DRIVER("has slice power gating: %s\n",
698 info->has_slice_pg ? "y" : "n");
699 DRM_DEBUG_DRIVER("has subslice power gating: %s\n",
700 info->has_subslice_pg ? "y" : "n");
701 DRM_DEBUG_DRIVER("has EU power gating: %s\n",
702 info->has_eu_pg ? "y" : "n");
22d3fd46
DL
703}
704
79e53945
JB
705/**
706 * i915_driver_load - setup chip and create an initial config
707 * @dev: DRM device
708 * @flags: startup flags
709 *
710 * The driver load routine has to do several things:
711 * - drive output discovery via intel_modeset_init()
712 * - initialize the memory manager
713 * - allocate initial config memory
714 * - setup the DRM framebuffer with the allocated memory
715 */
84b1fd10 716int i915_driver_load(struct drm_device *dev, unsigned long flags)
22eae947 717{
ea059a1e 718 struct drm_i915_private *dev_priv;
5c969aa7 719 struct intel_device_info *info, *device_info;
934d6086 720 int ret = 0, mmio_bar, mmio_size;
9021f284 721 uint32_t aperture_size;
fe669bf8 722
26394d92
DV
723 info = (struct intel_device_info *) flags;
724
b14c5679 725 dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL);
ba8bbcf6
JB
726 if (dev_priv == NULL)
727 return -ENOMEM;
728
755f68f4 729 dev->dev_private = dev_priv;
673a394b 730 dev_priv->dev = dev;
5c969aa7 731
87f1f465 732 /* Setup the write-once "constant" device info */
5c969aa7 733 device_info = (struct intel_device_info *)&dev_priv->info;
87f1f465
CW
734 memcpy(device_info, info, sizeof(dev_priv->info));
735 device_info->device_id = dev->pdev->device;
ba8bbcf6 736
7dcd2677
KK
737 spin_lock_init(&dev_priv->irq_lock);
738 spin_lock_init(&dev_priv->gpu_error.lock);
07f11d49 739 mutex_init(&dev_priv->backlight_lock);
907b28c5 740 spin_lock_init(&dev_priv->uncore.lock);
c20e8355 741 spin_lock_init(&dev_priv->mm.object_stat_lock);
84c33a64 742 spin_lock_init(&dev_priv->mmio_flip_lock);
7dcd2677 743 mutex_init(&dev_priv->dpio_lock);
7dcd2677
KK
744 mutex_init(&dev_priv->modeset_restore_lock);
745
f742a552 746 intel_pm_setup(dev);
c67a470b 747
07144428
DL
748 intel_display_crc_init(dev);
749
c96ea64e
DV
750 i915_dump_device_info(dev_priv);
751
ed1c9e2c
PZ
752 /* Not all pre-production machines fall into this category, only the
753 * very first ones. Almost everything should work, except for maybe
754 * suspend/resume. And we don't implement workarounds that affect only
755 * pre-production machines. */
756 if (IS_HSW_EARLY_SDV(dev))
757 DRM_INFO("This is an early pre-production Haswell machine. "
758 "It may not be fully functional.\n");
759
ec2a4c3f
DA
760 if (i915_get_bridge_dev(dev)) {
761 ret = -EIO;
762 goto free_priv;
763 }
764
1e1bd0fd
BW
765 mmio_bar = IS_GEN2(dev) ? 1 : 0;
766 /* Before gen4, the registers and the GTT are behind different BARs.
767 * However, from gen4 onwards, the registers and the GTT are shared
768 * in the same BAR, so we want to restrict this ioremap from
769 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
770 * the register BAR remains the same size for all the earlier
771 * generations up to Ironlake.
772 */
773 if (info->gen < 5)
774 mmio_size = 512*1024;
775 else
776 mmio_size = 2*1024*1024;
777
778 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, mmio_size);
779 if (!dev_priv->regs) {
780 DRM_ERROR("failed to map registers\n");
781 ret = -EIO;
782 goto put_bridge;
783 }
784
c3d685a7
BW
785 /* This must be called before any calls to HAS_PCH_* */
786 intel_detect_pch(dev);
787
788 intel_uncore_init(dev);
789
e76e9aeb
BW
790 ret = i915_gem_gtt_init(dev);
791 if (ret)
cbb47d17 792 goto out_regs;
e188719a 793
17fa6463
DV
794 /* WARNING: Apparently we must kick fbdev drivers before vgacon,
795 * otherwise the vga fbdev driver falls over. */
796 ret = i915_kick_out_firmware_fb(dev_priv);
797 if (ret) {
798 DRM_ERROR("failed to remove conflicting framebuffer drivers\n");
799 goto out_gtt;
800 }
a4de0526 801
17fa6463
DV
802 ret = i915_kick_out_vgacon(dev_priv);
803 if (ret) {
804 DRM_ERROR("failed to remove conflicting VGA console\n");
805 goto out_gtt;
a4de0526 806 }
e188719a 807
466e69b8
DA
808 pci_set_master(dev->pdev);
809
9f82d238
DV
810 /* overlay on gen2 is broken and can't address above 1G */
811 if (IS_GEN2(dev))
812 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
813
6927faf3
JN
814 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
815 * using 32bit addressing, overwriting memory if HWS is located
816 * above 4GB.
817 *
818 * The documentation also mentions an issue with undefined
819 * behaviour if any general state is accessed within a page above 4GB,
820 * which also needs to be handled carefully.
821 */
822 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
823 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
824
93d18799 825 aperture_size = dev_priv->gtt.mappable_end;
71e9339c 826
5d4545ae
BW
827 dev_priv->gtt.mappable =
828 io_mapping_create_wc(dev_priv->gtt.mappable_base,
dd2757f8 829 aperture_size);
5d4545ae 830 if (dev_priv->gtt.mappable == NULL) {
6644107d 831 ret = -EIO;
cbb47d17 832 goto out_gtt;
6644107d
VP
833 }
834
911bdf0a
BW
835 dev_priv->gtt.mtrr = arch_phys_wc_add(dev_priv->gtt.mappable_base,
836 aperture_size);
19966754 837
e642abbf
CW
838 /* The i915 workqueue is primarily used for batched retirement of
839 * requests (and thus managing bo) once the task has been completed
840 * by the GPU. i915_gem_retire_requests() is called directly when we
841 * need high-priority retirement, such as waiting for an explicit
842 * bo.
843 *
844 * It is also used for periodic low-priority events, such as
df9c2042 845 * idle-timers and recording error state.
e642abbf
CW
846 *
847 * All tasks on the workqueue are expected to acquire the dev mutex
848 * so there is no point in running more than one instance of the
53621860 849 * workqueue at any time. Use an ordered one.
e642abbf 850 */
53621860 851 dev_priv->wq = alloc_ordered_workqueue("i915", 0);
9c9fe1f8
EA
852 if (dev_priv->wq == NULL) {
853 DRM_ERROR("Failed to create our workqueue.\n");
854 ret = -ENOMEM;
a7b85d2a 855 goto out_mtrrfree;
9c9fe1f8
EA
856 }
857
0e32b39c
DA
858 dev_priv->dp_wq = alloc_ordered_workqueue("i915-dp", 0);
859 if (dev_priv->dp_wq == NULL) {
860 DRM_ERROR("Failed to create our dp workqueue.\n");
861 ret = -ENOMEM;
862 goto out_freewq;
863 }
864
737b1506
CW
865 dev_priv->gpu_error.hangcheck_wq =
866 alloc_ordered_workqueue("i915-hangcheck", 0);
867 if (dev_priv->gpu_error.hangcheck_wq == NULL) {
868 DRM_ERROR("Failed to create our hangcheck workqueue.\n");
869 ret = -ENOMEM;
870 goto out_freedpwq;
871 }
872
b963291c 873 intel_irq_init(dev_priv);
78511f2a 874 intel_uncore_sanitize(dev);
9880b7a5 875
c4804411
ZW
876 /* Try to make sure MCHBAR is enabled before poking at it */
877 intel_setup_mchbar(dev);
f899fc64 878 intel_setup_gmbus(dev);
44834a67 879 intel_opregion_setup(dev);
c4804411 880
6d139a87
BF
881 intel_setup_bios(dev);
882
673a394b
EA
883 i915_gem_load(dev);
884
ed4cb414
EA
885 /* On the 945G/GM, the chipset reports the MSI capability on the
886 * integrated graphics even though the support isn't actually there
887 * according to the published specs. It doesn't appear to function
888 * correctly in testing on 945G.
889 * This may be a side effect of MSI having been made available for PEG
890 * and the registers being closely associated.
d1ed629f
KP
891 *
892 * According to chipset errata, on the 965GM, MSI interrupts may
b60678a7
KP
893 * be lost or delayed, but we use them anyways to avoid
894 * stuck interrupts on some machines.
ed4cb414 895 */
b60678a7 896 if (!IS_I945G(dev) && !IS_I945GM(dev))
d3e74d02 897 pci_enable_msi(dev->pdev);
ed4cb414 898
22d3fd46 899 intel_device_info_runtime_init(dev);
7f1f3851 900
e3c74757
BW
901 if (INTEL_INFO(dev)->num_pipes) {
902 ret = drm_vblank_init(dev, INTEL_INFO(dev)->num_pipes);
903 if (ret)
904 goto out_gem_unload;
905 }
52440211 906
da7e29bd 907 intel_power_domains_init(dev_priv);
a38911a3 908
17fa6463
DV
909 ret = i915_load_modeset_init(dev);
910 if (ret < 0) {
911 DRM_ERROR("failed to init modeset\n");
912 goto out_power_well;
79e53945
JB
913 }
914
e21fd552
YZ
915 /*
916 * Notify a valid surface after modesetting,
917 * when running inside a VM.
918 */
919 if (intel_vgpu_active(dev))
920 I915_WRITE(vgtif_reg(display_ready), VGT_DRV_DISPLAY_READY);
921
0136db58
BW
922 i915_setup_sysfs(dev);
923
e3c74757
BW
924 if (INTEL_INFO(dev)->num_pipes) {
925 /* Must be done after probing outputs */
926 intel_opregion_init(dev);
8e5c2b77 927 acpi_video_register();
e3c74757 928 }
74a365b3 929
eb48eb00
DV
930 if (IS_GEN5(dev))
931 intel_gpu_ips_init(dev_priv);
63ee41d7 932
f458ebbc 933 intel_runtime_pm_enable(dev_priv);
8a187455 934
58fddc28
ID
935 i915_audio_component_init(dev_priv);
936
79e53945
JB
937 return 0;
938
cbb47d17 939out_power_well:
f458ebbc 940 intel_power_domains_fini(dev_priv);
cbb47d17 941 drm_vblank_cleanup(dev);
56e2ea34 942out_gem_unload:
4bdc7293
ID
943 WARN_ON(unregister_oom_notifier(&dev_priv->mm.oom_notifier));
944 unregister_shrinker(&dev_priv->mm.shrinker);
a7b85d2a 945
56e2ea34
CW
946 if (dev->pdev->msi_enabled)
947 pci_disable_msi(dev->pdev);
948
949 intel_teardown_gmbus(dev);
950 intel_teardown_mchbar(dev);
22accca0 951 pm_qos_remove_request(&dev_priv->pm_qos);
737b1506
CW
952 destroy_workqueue(dev_priv->gpu_error.hangcheck_wq);
953out_freedpwq:
0e32b39c
DA
954 destroy_workqueue(dev_priv->dp_wq);
955out_freewq:
9c9fe1f8 956 destroy_workqueue(dev_priv->wq);
a7b85d2a 957out_mtrrfree:
911bdf0a 958 arch_phys_wc_del(dev_priv->gtt.mtrr);
5d4545ae 959 io_mapping_free(dev_priv->gtt.mappable);
cbb47d17 960out_gtt:
90d0a0e8 961 i915_global_gtt_cleanup(dev);
cbb47d17 962out_regs:
c3d685a7 963 intel_uncore_fini(dev);
6dda569f 964 pci_iounmap(dev->pdev, dev_priv->regs);
ec2a4c3f
DA
965put_bridge:
966 pci_dev_put(dev_priv->bridge_dev);
79e53945 967free_priv:
cbb47d17
CW
968 if (dev_priv->slab)
969 kmem_cache_destroy(dev_priv->slab);
9a298b2a 970 kfree(dev_priv);
ba8bbcf6
JB
971 return ret;
972}
973
974int i915_driver_unload(struct drm_device *dev)
975{
976 struct drm_i915_private *dev_priv = dev->dev_private;
c911fc1c 977 int ret;
ba8bbcf6 978
58fddc28
ID
979 i915_audio_component_cleanup(dev_priv);
980
ce58c32b
CW
981 ret = i915_gem_suspend(dev);
982 if (ret) {
983 DRM_ERROR("failed to idle hardware: %d\n", ret);
984 return ret;
985 }
986
41373cd5 987 intel_power_domains_fini(dev_priv);
8a187455 988
eb48eb00 989 intel_gpu_ips_teardown();
7648fa99 990
0136db58
BW
991 i915_teardown_sysfs(dev);
992
4bdc7293
ID
993 WARN_ON(unregister_oom_notifier(&dev_priv->mm.oom_notifier));
994 unregister_shrinker(&dev_priv->mm.shrinker);
17250b71 995
5d4545ae 996 io_mapping_free(dev_priv->gtt.mappable);
911bdf0a 997 arch_phys_wc_del(dev_priv->gtt.mtrr);
ab657db1 998
44834a67
CW
999 acpi_video_unregister();
1000
17fa6463 1001 intel_fbdev_fini(dev);
2ebfaf5f
PZ
1002
1003 drm_vblank_cleanup(dev);
1004
17fa6463 1005 intel_modeset_cleanup(dev);
6c0d9350 1006
17fa6463
DV
1007 /*
1008 * free the memory space allocated for the child device
1009 * config parsed from VBT
1010 */
1011 if (dev_priv->vbt.child_dev && dev_priv->vbt.child_dev_num) {
1012 kfree(dev_priv->vbt.child_dev);
1013 dev_priv->vbt.child_dev = NULL;
1014 dev_priv->vbt.child_dev_num = 0;
79e53945
JB
1015 }
1016
17fa6463
DV
1017 vga_switcheroo_unregister_client(dev->pdev);
1018 vga_client_register(dev->pdev, NULL, NULL, NULL);
1019
a8b4899e 1020 /* Free error state after interrupts are fully disabled. */
737b1506 1021 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
a8b4899e 1022 i915_destroy_error_state(dev);
bc0c7f14 1023
ed4cb414
EA
1024 if (dev->pdev->msi_enabled)
1025 pci_disable_msi(dev->pdev);
1026
44834a67 1027 intel_opregion_fini(dev);
8ee1c3db 1028
17fa6463
DV
1029 /* Flush any outstanding unpin_work. */
1030 flush_workqueue(dev_priv->wq);
67e77c5a 1031
17fa6463
DV
1032 mutex_lock(&dev->struct_mutex);
1033 i915_gem_cleanup_ringbuffer(dev);
1034 i915_gem_batch_pool_fini(&dev_priv->mm.batch_pool);
1035 i915_gem_context_fini(dev);
1036 mutex_unlock(&dev->struct_mutex);
1037 i915_gem_cleanup_stolen(dev);
79e53945 1038
f899fc64 1039 intel_teardown_gmbus(dev);
c4804411
ZW
1040 intel_teardown_mchbar(dev);
1041
0e32b39c 1042 destroy_workqueue(dev_priv->dp_wq);
bc0c7f14 1043 destroy_workqueue(dev_priv->wq);
737b1506 1044 destroy_workqueue(dev_priv->gpu_error.hangcheck_wq);
9ee32fea 1045 pm_qos_remove_request(&dev_priv->pm_qos);
bc0c7f14 1046
90d0a0e8 1047 i915_global_gtt_cleanup(dev);
6640aab6 1048
aec347ab
CW
1049 intel_uncore_fini(dev);
1050 if (dev_priv->regs != NULL)
1051 pci_iounmap(dev->pdev, dev_priv->regs);
1052
42dcedd4
CW
1053 if (dev_priv->slab)
1054 kmem_cache_destroy(dev_priv->slab);
bc0c7f14 1055
ec2a4c3f 1056 pci_dev_put(dev_priv->bridge_dev);
2206e6a1 1057 kfree(dev_priv);
ba8bbcf6 1058
22eae947
DA
1059 return 0;
1060}
1061
f787a5f5 1062int i915_driver_open(struct drm_device *dev, struct drm_file *file)
673a394b 1063{
b29c19b6 1064 int ret;
673a394b 1065
b29c19b6
CW
1066 ret = i915_gem_open(dev, file);
1067 if (ret)
1068 return ret;
254f965c 1069
673a394b
EA
1070 return 0;
1071}
1072
79e53945
JB
1073/**
1074 * i915_driver_lastclose - clean up after all DRM clients have exited
1075 * @dev: DRM device
1076 *
1077 * Take care of cleaning up after all DRM clients have exited. In the
1078 * mode setting case, we want to restore the kernel's initial mode (just
1079 * in case the last client left us in a bad state).
1080 *
9021f284 1081 * Additionally, in the non-mode setting case, we'll tear down the GTT
79e53945
JB
1082 * and DMA structures, since the kernel won't be using them, and clea
1083 * up any GEM state.
1084 */
1a5036bf 1085void i915_driver_lastclose(struct drm_device *dev)
1da177e4 1086{
377e91b2
DV
1087 intel_fbdev_restore_mode(dev);
1088 vga_switcheroo_process_delayed_switch();
1da177e4
LT
1089}
1090
2885f6ac 1091void i915_driver_preclose(struct drm_device *dev, struct drm_file *file)
1da177e4 1092{
0d1430a3 1093 mutex_lock(&dev->struct_mutex);
2885f6ac
JH
1094 i915_gem_context_close(dev, file);
1095 i915_gem_release(dev, file);
0d1430a3 1096 mutex_unlock(&dev->struct_mutex);
e2fcdaa9 1097
17fa6463 1098 intel_modeset_preclose(dev, file);
1da177e4
LT
1099}
1100
f787a5f5 1101void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
673a394b 1102{
f787a5f5 1103 struct drm_i915_file_private *file_priv = file->driver_priv;
673a394b 1104
a8ebba75
ZY
1105 if (file_priv && file_priv->bsd_ring)
1106 file_priv->bsd_ring = NULL;
f787a5f5 1107 kfree(file_priv);
673a394b
EA
1108}
1109
4feb7659
DV
1110static int
1111i915_gem_reject_pin_ioctl(struct drm_device *dev, void *data,
1112 struct drm_file *file)
1113{
1114 return -ENODEV;
1115}
1116
baa70943 1117const struct drm_ioctl_desc i915_ioctls[] = {
77f31815
DV
1118 DRM_IOCTL_DEF_DRV(I915_INIT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1119 DRM_IOCTL_DEF_DRV(I915_FLUSH, drm_noop, DRM_AUTH),
1120 DRM_IOCTL_DEF_DRV(I915_FLIP, drm_noop, DRM_AUTH),
1121 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, drm_noop, DRM_AUTH),
1122 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, drm_noop, DRM_AUTH),
1123 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, drm_noop, DRM_AUTH),
10ba5012 1124 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH|DRM_RENDER_ALLOW),
1b2f1489 1125 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
b2c606fe
DV
1126 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
1127 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
1128 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
77f31815 1129 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, drm_noop, DRM_AUTH),
b2c606fe 1130 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
d1c1edbc 1131 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
77f31815
DV
1132 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, drm_noop, DRM_AUTH),
1133 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, drm_noop, DRM_AUTH),
1134 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
f548c0e9 1135 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1b2f1489 1136 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
10ba5012 1137 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
4feb7659
DV
1138 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_reject_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1139 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_reject_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
10ba5012
KH
1140 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
1141 DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1142 DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1143 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
71b14ab6
DV
1144 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1145 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
10ba5012
KH
1146 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1147 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1148 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1149 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1150 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1151 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1152 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1153 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1154 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1155 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1b2f1489 1156 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
10ba5012 1157 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1b2f1489
DA
1158 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1159 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
8ea30864
JB
1160 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1161 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, intel_sprite_get_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
10ba5012
KH
1162 DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
1163 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE, i915_gem_context_create_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1164 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1165 DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
b6359918 1166 DRM_IOCTL_DEF_DRV(I915_GET_RESET_STATS, i915_get_reset_stats_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
5cc9ed4b 1167 DRM_IOCTL_DEF_DRV(I915_GEM_USERPTR, i915_gem_userptr_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
c9dc0f35
CW
1168 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_GETPARAM, i915_gem_context_getparam_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1169 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_SETPARAM, i915_gem_context_setparam_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
c94f7029
DA
1170};
1171
f95aeb17 1172int i915_max_ioctl = ARRAY_SIZE(i915_ioctls);
cda17380 1173
9021f284
DV
1174/*
1175 * This is really ugly: Because old userspace abused the linux agp interface to
1176 * manage the gtt, we need to claim that all intel devices are agp. For
1177 * otherwise the drm core refuses to initialize the agp support code.
cda17380 1178 */
1a5036bf 1179int i915_driver_device_is_agp(struct drm_device *dev)
cda17380
DA
1180{
1181 return 1;
1182}
This page took 0.829475 seconds and 5 git commands to generate.