drm/i915: Add atomic_get_property entrypoint for connectors (v2)
[deliverable/linux.git] / drivers / gpu / drm / i915 / i915_dma.c
1 /* i915_dma.c -- DMA support for the I915 -*- linux-c -*-
2 */
3 /*
4 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
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 *
27 */
28
29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
31 #include <linux/async.h>
32 #include <drm/drmP.h>
33 #include <drm/drm_crtc_helper.h>
34 #include <drm/drm_fb_helper.h>
35 #include <drm/drm_legacy.h>
36 #include "intel_drv.h"
37 #include <drm/i915_drm.h>
38 #include "i915_drv.h"
39 #include "i915_trace.h"
40 #include <linux/pci.h>
41 #include <linux/console.h>
42 #include <linux/vt.h>
43 #include <linux/vgaarb.h>
44 #include <linux/acpi.h>
45 #include <linux/pnp.h>
46 #include <linux/vga_switcheroo.h>
47 #include <linux/slab.h>
48 #include <acpi/video.h>
49 #include <linux/pm.h>
50 #include <linux/pm_runtime.h>
51 #include <linux/oom.h>
52
53
54 static int i915_getparam(struct drm_device *dev, void *data,
55 struct drm_file *file_priv)
56 {
57 struct drm_i915_private *dev_priv = dev->dev_private;
58 drm_i915_getparam_t *param = data;
59 int value;
60
61 switch (param->param) {
62 case I915_PARAM_IRQ_ACTIVE:
63 case I915_PARAM_ALLOW_BATCHBUFFER:
64 case I915_PARAM_LAST_DISPATCH:
65 /* Reject all old ums/dri params. */
66 return -ENODEV;
67 case I915_PARAM_CHIPSET_ID:
68 value = dev->pdev->device;
69 break;
70 case I915_PARAM_HAS_GEM:
71 value = 1;
72 break;
73 case I915_PARAM_NUM_FENCES_AVAIL:
74 value = dev_priv->num_fence_regs - dev_priv->fence_reg_start;
75 break;
76 case I915_PARAM_HAS_OVERLAY:
77 value = dev_priv->overlay ? 1 : 0;
78 break;
79 case I915_PARAM_HAS_PAGEFLIPPING:
80 value = 1;
81 break;
82 case I915_PARAM_HAS_EXECBUF2:
83 /* depends on GEM */
84 value = 1;
85 break;
86 case I915_PARAM_HAS_BSD:
87 value = intel_ring_initialized(&dev_priv->ring[VCS]);
88 break;
89 case I915_PARAM_HAS_BLT:
90 value = intel_ring_initialized(&dev_priv->ring[BCS]);
91 break;
92 case I915_PARAM_HAS_VEBOX:
93 value = intel_ring_initialized(&dev_priv->ring[VECS]);
94 break;
95 case I915_PARAM_HAS_BSD2:
96 value = intel_ring_initialized(&dev_priv->ring[VCS2]);
97 break;
98 case I915_PARAM_HAS_RELAXED_FENCING:
99 value = 1;
100 break;
101 case I915_PARAM_HAS_COHERENT_RINGS:
102 value = 1;
103 break;
104 case I915_PARAM_HAS_EXEC_CONSTANTS:
105 value = INTEL_INFO(dev)->gen >= 4;
106 break;
107 case I915_PARAM_HAS_RELAXED_DELTA:
108 value = 1;
109 break;
110 case I915_PARAM_HAS_GEN7_SOL_RESET:
111 value = 1;
112 break;
113 case I915_PARAM_HAS_LLC:
114 value = HAS_LLC(dev);
115 break;
116 case I915_PARAM_HAS_WT:
117 value = HAS_WT(dev);
118 break;
119 case I915_PARAM_HAS_ALIASING_PPGTT:
120 value = USES_PPGTT(dev);
121 break;
122 case I915_PARAM_HAS_WAIT_TIMEOUT:
123 value = 1;
124 break;
125 case I915_PARAM_HAS_SEMAPHORES:
126 value = i915_semaphore_is_enabled(dev);
127 break;
128 case I915_PARAM_HAS_PRIME_VMAP_FLUSH:
129 value = 1;
130 break;
131 case I915_PARAM_HAS_SECURE_BATCHES:
132 value = capable(CAP_SYS_ADMIN);
133 break;
134 case I915_PARAM_HAS_PINNED_BATCHES:
135 value = 1;
136 break;
137 case I915_PARAM_HAS_EXEC_NO_RELOC:
138 value = 1;
139 break;
140 case I915_PARAM_HAS_EXEC_HANDLE_LUT:
141 value = 1;
142 break;
143 case I915_PARAM_CMD_PARSER_VERSION:
144 value = i915_cmd_parser_get_version();
145 break;
146 case I915_PARAM_HAS_COHERENT_PHYS_GTT:
147 value = 1;
148 break;
149 case I915_PARAM_MMAP_VERSION:
150 value = 1;
151 break;
152 default:
153 DRM_DEBUG("Unknown parameter %d\n", param->param);
154 return -EINVAL;
155 }
156
157 if (copy_to_user(param->value, &value, sizeof(int))) {
158 DRM_ERROR("copy_to_user failed\n");
159 return -EFAULT;
160 }
161
162 return 0;
163 }
164
165 static int i915_setparam(struct drm_device *dev, void *data,
166 struct drm_file *file_priv)
167 {
168 struct drm_i915_private *dev_priv = dev->dev_private;
169 drm_i915_setparam_t *param = data;
170
171 switch (param->param) {
172 case I915_SETPARAM_USE_MI_BATCHBUFFER_START:
173 case I915_SETPARAM_TEX_LRU_LOG_GRANULARITY:
174 case I915_SETPARAM_ALLOW_BATCHBUFFER:
175 /* Reject all old ums/dri params. */
176 return -ENODEV;
177
178 case I915_SETPARAM_NUM_USED_FENCES:
179 if (param->value > dev_priv->num_fence_regs ||
180 param->value < 0)
181 return -EINVAL;
182 /* Userspace can use first N regs */
183 dev_priv->fence_reg_start = param->value;
184 break;
185 default:
186 DRM_DEBUG_DRIVER("unknown parameter %d\n",
187 param->param);
188 return -EINVAL;
189 }
190
191 return 0;
192 }
193
194 static int i915_get_bridge_dev(struct drm_device *dev)
195 {
196 struct drm_i915_private *dev_priv = dev->dev_private;
197
198 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
199 if (!dev_priv->bridge_dev) {
200 DRM_ERROR("bridge device not found\n");
201 return -1;
202 }
203 return 0;
204 }
205
206 #define MCHBAR_I915 0x44
207 #define MCHBAR_I965 0x48
208 #define MCHBAR_SIZE (4*4096)
209
210 #define DEVEN_REG 0x54
211 #define DEVEN_MCHBAR_EN (1 << 28)
212
213 /* Allocate space for the MCH regs if needed, return nonzero on error */
214 static int
215 intel_alloc_mchbar_resource(struct drm_device *dev)
216 {
217 struct drm_i915_private *dev_priv = dev->dev_private;
218 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
219 u32 temp_lo, temp_hi = 0;
220 u64 mchbar_addr;
221 int ret;
222
223 if (INTEL_INFO(dev)->gen >= 4)
224 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
225 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
226 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
227
228 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
229 #ifdef CONFIG_PNP
230 if (mchbar_addr &&
231 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
232 return 0;
233 #endif
234
235 /* Get some space for it */
236 dev_priv->mch_res.name = "i915 MCHBAR";
237 dev_priv->mch_res.flags = IORESOURCE_MEM;
238 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
239 &dev_priv->mch_res,
240 MCHBAR_SIZE, MCHBAR_SIZE,
241 PCIBIOS_MIN_MEM,
242 0, pcibios_align_resource,
243 dev_priv->bridge_dev);
244 if (ret) {
245 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
246 dev_priv->mch_res.start = 0;
247 return ret;
248 }
249
250 if (INTEL_INFO(dev)->gen >= 4)
251 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
252 upper_32_bits(dev_priv->mch_res.start));
253
254 pci_write_config_dword(dev_priv->bridge_dev, reg,
255 lower_32_bits(dev_priv->mch_res.start));
256 return 0;
257 }
258
259 /* Setup MCHBAR if possible, return true if we should disable it again */
260 static void
261 intel_setup_mchbar(struct drm_device *dev)
262 {
263 struct drm_i915_private *dev_priv = dev->dev_private;
264 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
265 u32 temp;
266 bool enabled;
267
268 if (IS_VALLEYVIEW(dev))
269 return;
270
271 dev_priv->mchbar_need_disable = false;
272
273 if (IS_I915G(dev) || IS_I915GM(dev)) {
274 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
275 enabled = !!(temp & DEVEN_MCHBAR_EN);
276 } else {
277 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
278 enabled = temp & 1;
279 }
280
281 /* If it's already enabled, don't have to do anything */
282 if (enabled)
283 return;
284
285 if (intel_alloc_mchbar_resource(dev))
286 return;
287
288 dev_priv->mchbar_need_disable = true;
289
290 /* Space is allocated or reserved, so enable it. */
291 if (IS_I915G(dev) || IS_I915GM(dev)) {
292 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG,
293 temp | DEVEN_MCHBAR_EN);
294 } else {
295 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
296 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
297 }
298 }
299
300 static void
301 intel_teardown_mchbar(struct drm_device *dev)
302 {
303 struct drm_i915_private *dev_priv = dev->dev_private;
304 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
305 u32 temp;
306
307 if (dev_priv->mchbar_need_disable) {
308 if (IS_I915G(dev) || IS_I915GM(dev)) {
309 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
310 temp &= ~DEVEN_MCHBAR_EN;
311 pci_write_config_dword(dev_priv->bridge_dev, DEVEN_REG, temp);
312 } else {
313 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
314 temp &= ~1;
315 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp);
316 }
317 }
318
319 if (dev_priv->mch_res.start)
320 release_resource(&dev_priv->mch_res);
321 }
322
323 /* true = enable decode, false = disable decoder */
324 static unsigned int i915_vga_set_decode(void *cookie, bool state)
325 {
326 struct drm_device *dev = cookie;
327
328 intel_modeset_vga_set_state(dev, state);
329 if (state)
330 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
331 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
332 else
333 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
334 }
335
336 static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
337 {
338 struct drm_device *dev = pci_get_drvdata(pdev);
339 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
340
341 if (state == VGA_SWITCHEROO_ON) {
342 pr_info("switched on\n");
343 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
344 /* i915 resume handler doesn't set to D0 */
345 pci_set_power_state(dev->pdev, PCI_D0);
346 i915_resume_legacy(dev);
347 dev->switch_power_state = DRM_SWITCH_POWER_ON;
348 } else {
349 pr_err("switched off\n");
350 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
351 i915_suspend_legacy(dev, pmm);
352 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
353 }
354 }
355
356 static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
357 {
358 struct drm_device *dev = pci_get_drvdata(pdev);
359
360 /*
361 * FIXME: open_count is protected by drm_global_mutex but that would lead to
362 * locking inversion with the driver load path. And the access here is
363 * completely racy anyway. So don't bother with locking for now.
364 */
365 return dev->open_count == 0;
366 }
367
368 static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
369 .set_gpu_state = i915_switcheroo_set_state,
370 .reprobe = NULL,
371 .can_switch = i915_switcheroo_can_switch,
372 };
373
374 static int i915_load_modeset_init(struct drm_device *dev)
375 {
376 struct drm_i915_private *dev_priv = dev->dev_private;
377 int ret;
378
379 ret = intel_parse_bios(dev);
380 if (ret)
381 DRM_INFO("failed to find VBIOS tables\n");
382
383 /* If we have > 1 VGA cards, then we need to arbitrate access
384 * to the common VGA resources.
385 *
386 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
387 * then we do not take part in VGA arbitration and the
388 * vga_client_register() fails with -ENODEV.
389 */
390 ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode);
391 if (ret && ret != -ENODEV)
392 goto out;
393
394 intel_register_dsm_handler();
395
396 ret = vga_switcheroo_register_client(dev->pdev, &i915_switcheroo_ops, false);
397 if (ret)
398 goto cleanup_vga_client;
399
400 /* Initialise stolen first so that we may reserve preallocated
401 * objects for the BIOS to KMS transition.
402 */
403 ret = i915_gem_init_stolen(dev);
404 if (ret)
405 goto cleanup_vga_switcheroo;
406
407 intel_power_domains_init_hw(dev_priv);
408
409 ret = intel_irq_install(dev_priv);
410 if (ret)
411 goto cleanup_gem_stolen;
412
413 /* Important: The output setup functions called by modeset_init need
414 * working irqs for e.g. gmbus and dp aux transfers. */
415 intel_modeset_init(dev);
416
417 ret = i915_gem_init(dev);
418 if (ret)
419 goto cleanup_irq;
420
421 intel_modeset_gem_init(dev);
422
423 /* Always safe in the mode setting case. */
424 /* FIXME: do pre/post-mode set stuff in core KMS code */
425 dev->vblank_disable_allowed = true;
426 if (INTEL_INFO(dev)->num_pipes == 0)
427 return 0;
428
429 ret = intel_fbdev_init(dev);
430 if (ret)
431 goto cleanup_gem;
432
433 /* Only enable hotplug handling once the fbdev is fully set up. */
434 intel_hpd_init(dev_priv);
435
436 /*
437 * Some ports require correctly set-up hpd registers for detection to
438 * work properly (leading to ghost connected connector status), e.g. VGA
439 * on gm45. Hence we can only set up the initial fbdev config after hpd
440 * irqs are fully enabled. Now we should scan for the initial config
441 * only once hotplug handling is enabled, but due to screwed-up locking
442 * around kms/fbdev init we can't protect the fdbev initial config
443 * scanning against hotplug events. Hence do this first and ignore the
444 * tiny window where we will loose hotplug notifactions.
445 */
446 async_schedule(intel_fbdev_initial_config, dev_priv);
447
448 drm_kms_helper_poll_init(dev);
449
450 return 0;
451
452 cleanup_gem:
453 mutex_lock(&dev->struct_mutex);
454 i915_gem_cleanup_ringbuffer(dev);
455 i915_gem_context_fini(dev);
456 mutex_unlock(&dev->struct_mutex);
457 cleanup_irq:
458 drm_irq_uninstall(dev);
459 cleanup_gem_stolen:
460 i915_gem_cleanup_stolen(dev);
461 cleanup_vga_switcheroo:
462 vga_switcheroo_unregister_client(dev->pdev);
463 cleanup_vga_client:
464 vga_client_register(dev->pdev, NULL, NULL, NULL);
465 out:
466 return ret;
467 }
468
469 #if IS_ENABLED(CONFIG_FB)
470 static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
471 {
472 struct apertures_struct *ap;
473 struct pci_dev *pdev = dev_priv->dev->pdev;
474 bool primary;
475 int ret;
476
477 ap = alloc_apertures(1);
478 if (!ap)
479 return -ENOMEM;
480
481 ap->ranges[0].base = dev_priv->gtt.mappable_base;
482 ap->ranges[0].size = dev_priv->gtt.mappable_end;
483
484 primary =
485 pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
486
487 ret = remove_conflicting_framebuffers(ap, "inteldrmfb", primary);
488
489 kfree(ap);
490
491 return ret;
492 }
493 #else
494 static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
495 {
496 return 0;
497 }
498 #endif
499
500 #if !defined(CONFIG_VGA_CONSOLE)
501 static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
502 {
503 return 0;
504 }
505 #elif !defined(CONFIG_DUMMY_CONSOLE)
506 static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
507 {
508 return -ENODEV;
509 }
510 #else
511 static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
512 {
513 int ret = 0;
514
515 DRM_INFO("Replacing VGA console driver\n");
516
517 console_lock();
518 if (con_is_bound(&vga_con))
519 ret = do_take_over_console(&dummy_con, 0, MAX_NR_CONSOLES - 1, 1);
520 if (ret == 0) {
521 ret = do_unregister_con_driver(&vga_con);
522
523 /* Ignore "already unregistered". */
524 if (ret == -ENODEV)
525 ret = 0;
526 }
527 console_unlock();
528
529 return ret;
530 }
531 #endif
532
533 static void i915_dump_device_info(struct drm_i915_private *dev_priv)
534 {
535 const struct intel_device_info *info = &dev_priv->info;
536
537 #define PRINT_S(name) "%s"
538 #define SEP_EMPTY
539 #define PRINT_FLAG(name) info->name ? #name "," : ""
540 #define SEP_COMMA ,
541 DRM_DEBUG_DRIVER("i915 device info: gen=%i, pciid=0x%04x rev=0x%02x flags="
542 DEV_INFO_FOR_EACH_FLAG(PRINT_S, SEP_EMPTY),
543 info->gen,
544 dev_priv->dev->pdev->device,
545 dev_priv->dev->pdev->revision,
546 DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_COMMA));
547 #undef PRINT_S
548 #undef SEP_EMPTY
549 #undef PRINT_FLAG
550 #undef SEP_COMMA
551 }
552
553 /*
554 * Determine various intel_device_info fields at runtime.
555 *
556 * Use it when either:
557 * - it's judged too laborious to fill n static structures with the limit
558 * when a simple if statement does the job,
559 * - run-time checks (eg read fuse/strap registers) are needed.
560 *
561 * This function needs to be called:
562 * - after the MMIO has been setup as we are reading registers,
563 * - after the PCH has been detected,
564 * - before the first usage of the fields it can tweak.
565 */
566 static void intel_device_info_runtime_init(struct drm_device *dev)
567 {
568 struct drm_i915_private *dev_priv = dev->dev_private;
569 struct intel_device_info *info;
570 enum pipe pipe;
571
572 info = (struct intel_device_info *)&dev_priv->info;
573
574 if (IS_VALLEYVIEW(dev) || INTEL_INFO(dev)->gen == 9)
575 for_each_pipe(dev_priv, pipe)
576 info->num_sprites[pipe] = 2;
577 else
578 for_each_pipe(dev_priv, pipe)
579 info->num_sprites[pipe] = 1;
580
581 if (i915.disable_display) {
582 DRM_INFO("Display disabled (module parameter)\n");
583 info->num_pipes = 0;
584 } else if (info->num_pipes > 0 &&
585 (INTEL_INFO(dev)->gen == 7 || INTEL_INFO(dev)->gen == 8) &&
586 !IS_VALLEYVIEW(dev)) {
587 u32 fuse_strap = I915_READ(FUSE_STRAP);
588 u32 sfuse_strap = I915_READ(SFUSE_STRAP);
589
590 /*
591 * SFUSE_STRAP is supposed to have a bit signalling the display
592 * is fused off. Unfortunately it seems that, at least in
593 * certain cases, fused off display means that PCH display
594 * reads don't land anywhere. In that case, we read 0s.
595 *
596 * On CPT/PPT, we can detect this case as SFUSE_STRAP_FUSE_LOCK
597 * should be set when taking over after the firmware.
598 */
599 if (fuse_strap & ILK_INTERNAL_DISPLAY_DISABLE ||
600 sfuse_strap & SFUSE_STRAP_DISPLAY_DISABLED ||
601 (dev_priv->pch_type == PCH_CPT &&
602 !(sfuse_strap & SFUSE_STRAP_FUSE_LOCK))) {
603 DRM_INFO("Display fused off, disabling\n");
604 info->num_pipes = 0;
605 }
606 }
607
608 if (IS_CHERRYVIEW(dev)) {
609 u32 fuse, mask_eu;
610
611 fuse = I915_READ(CHV_FUSE_GT);
612 mask_eu = fuse & (CHV_FGT_EU_DIS_SS0_R0_MASK |
613 CHV_FGT_EU_DIS_SS0_R1_MASK |
614 CHV_FGT_EU_DIS_SS1_R0_MASK |
615 CHV_FGT_EU_DIS_SS1_R1_MASK);
616 info->eu_total = 16 - hweight32(mask_eu);
617 }
618 }
619
620 /**
621 * i915_driver_load - setup chip and create an initial config
622 * @dev: DRM device
623 * @flags: startup flags
624 *
625 * The driver load routine has to do several things:
626 * - drive output discovery via intel_modeset_init()
627 * - initialize the memory manager
628 * - allocate initial config memory
629 * - setup the DRM framebuffer with the allocated memory
630 */
631 int i915_driver_load(struct drm_device *dev, unsigned long flags)
632 {
633 struct drm_i915_private *dev_priv;
634 struct intel_device_info *info, *device_info;
635 int ret = 0, mmio_bar, mmio_size;
636 uint32_t aperture_size;
637
638 info = (struct intel_device_info *) flags;
639
640 /* Refuse to load on gen6+ without kms enabled. */
641 if (info->gen >= 6 && !drm_core_check_feature(dev, DRIVER_MODESET)) {
642 DRM_INFO("Your hardware requires kernel modesetting (KMS)\n");
643 DRM_INFO("See CONFIG_DRM_I915_KMS, nomodeset, and i915.modeset parameters\n");
644 return -ENODEV;
645 }
646
647 /* UMS needs agp support. */
648 if (!drm_core_check_feature(dev, DRIVER_MODESET) && !dev->agp)
649 return -EINVAL;
650
651 dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL);
652 if (dev_priv == NULL)
653 return -ENOMEM;
654
655 dev->dev_private = dev_priv;
656 dev_priv->dev = dev;
657
658 /* Setup the write-once "constant" device info */
659 device_info = (struct intel_device_info *)&dev_priv->info;
660 memcpy(device_info, info, sizeof(dev_priv->info));
661 device_info->device_id = dev->pdev->device;
662
663 spin_lock_init(&dev_priv->irq_lock);
664 spin_lock_init(&dev_priv->gpu_error.lock);
665 mutex_init(&dev_priv->backlight_lock);
666 spin_lock_init(&dev_priv->uncore.lock);
667 spin_lock_init(&dev_priv->mm.object_stat_lock);
668 spin_lock_init(&dev_priv->mmio_flip_lock);
669 mutex_init(&dev_priv->dpio_lock);
670 mutex_init(&dev_priv->modeset_restore_lock);
671
672 intel_pm_setup(dev);
673
674 intel_display_crc_init(dev);
675
676 i915_dump_device_info(dev_priv);
677
678 /* Not all pre-production machines fall into this category, only the
679 * very first ones. Almost everything should work, except for maybe
680 * suspend/resume. And we don't implement workarounds that affect only
681 * pre-production machines. */
682 if (IS_HSW_EARLY_SDV(dev))
683 DRM_INFO("This is an early pre-production Haswell machine. "
684 "It may not be fully functional.\n");
685
686 if (i915_get_bridge_dev(dev)) {
687 ret = -EIO;
688 goto free_priv;
689 }
690
691 mmio_bar = IS_GEN2(dev) ? 1 : 0;
692 /* Before gen4, the registers and the GTT are behind different BARs.
693 * However, from gen4 onwards, the registers and the GTT are shared
694 * in the same BAR, so we want to restrict this ioremap from
695 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
696 * the register BAR remains the same size for all the earlier
697 * generations up to Ironlake.
698 */
699 if (info->gen < 5)
700 mmio_size = 512*1024;
701 else
702 mmio_size = 2*1024*1024;
703
704 dev_priv->regs = pci_iomap(dev->pdev, mmio_bar, mmio_size);
705 if (!dev_priv->regs) {
706 DRM_ERROR("failed to map registers\n");
707 ret = -EIO;
708 goto put_bridge;
709 }
710
711 /* This must be called before any calls to HAS_PCH_* */
712 intel_detect_pch(dev);
713
714 intel_uncore_init(dev);
715
716 ret = i915_gem_gtt_init(dev);
717 if (ret)
718 goto out_regs;
719
720 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
721 /* WARNING: Apparently we must kick fbdev drivers before vgacon,
722 * otherwise the vga fbdev driver falls over. */
723 ret = i915_kick_out_firmware_fb(dev_priv);
724 if (ret) {
725 DRM_ERROR("failed to remove conflicting framebuffer drivers\n");
726 goto out_gtt;
727 }
728
729 ret = i915_kick_out_vgacon(dev_priv);
730 if (ret) {
731 DRM_ERROR("failed to remove conflicting VGA console\n");
732 goto out_gtt;
733 }
734 }
735
736 pci_set_master(dev->pdev);
737
738 /* overlay on gen2 is broken and can't address above 1G */
739 if (IS_GEN2(dev))
740 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(30));
741
742 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
743 * using 32bit addressing, overwriting memory if HWS is located
744 * above 4GB.
745 *
746 * The documentation also mentions an issue with undefined
747 * behaviour if any general state is accessed within a page above 4GB,
748 * which also needs to be handled carefully.
749 */
750 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
751 dma_set_coherent_mask(&dev->pdev->dev, DMA_BIT_MASK(32));
752
753 aperture_size = dev_priv->gtt.mappable_end;
754
755 dev_priv->gtt.mappable =
756 io_mapping_create_wc(dev_priv->gtt.mappable_base,
757 aperture_size);
758 if (dev_priv->gtt.mappable == NULL) {
759 ret = -EIO;
760 goto out_gtt;
761 }
762
763 dev_priv->gtt.mtrr = arch_phys_wc_add(dev_priv->gtt.mappable_base,
764 aperture_size);
765
766 /* The i915 workqueue is primarily used for batched retirement of
767 * requests (and thus managing bo) once the task has been completed
768 * by the GPU. i915_gem_retire_requests() is called directly when we
769 * need high-priority retirement, such as waiting for an explicit
770 * bo.
771 *
772 * It is also used for periodic low-priority events, such as
773 * idle-timers and recording error state.
774 *
775 * All tasks on the workqueue are expected to acquire the dev mutex
776 * so there is no point in running more than one instance of the
777 * workqueue at any time. Use an ordered one.
778 */
779 dev_priv->wq = alloc_ordered_workqueue("i915", 0);
780 if (dev_priv->wq == NULL) {
781 DRM_ERROR("Failed to create our workqueue.\n");
782 ret = -ENOMEM;
783 goto out_mtrrfree;
784 }
785
786 dev_priv->dp_wq = alloc_ordered_workqueue("i915-dp", 0);
787 if (dev_priv->dp_wq == NULL) {
788 DRM_ERROR("Failed to create our dp workqueue.\n");
789 ret = -ENOMEM;
790 goto out_freewq;
791 }
792
793 intel_irq_init(dev_priv);
794 intel_uncore_sanitize(dev);
795
796 /* Try to make sure MCHBAR is enabled before poking at it */
797 intel_setup_mchbar(dev);
798 intel_setup_gmbus(dev);
799 intel_opregion_setup(dev);
800
801 intel_setup_bios(dev);
802
803 i915_gem_load(dev);
804
805 /* On the 945G/GM, the chipset reports the MSI capability on the
806 * integrated graphics even though the support isn't actually there
807 * according to the published specs. It doesn't appear to function
808 * correctly in testing on 945G.
809 * This may be a side effect of MSI having been made available for PEG
810 * and the registers being closely associated.
811 *
812 * According to chipset errata, on the 965GM, MSI interrupts may
813 * be lost or delayed, but we use them anyways to avoid
814 * stuck interrupts on some machines.
815 */
816 if (!IS_I945G(dev) && !IS_I945GM(dev))
817 pci_enable_msi(dev->pdev);
818
819 intel_device_info_runtime_init(dev);
820
821 if (INTEL_INFO(dev)->num_pipes) {
822 ret = drm_vblank_init(dev, INTEL_INFO(dev)->num_pipes);
823 if (ret)
824 goto out_gem_unload;
825 }
826
827 intel_power_domains_init(dev_priv);
828
829 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
830 ret = i915_load_modeset_init(dev);
831 if (ret < 0) {
832 DRM_ERROR("failed to init modeset\n");
833 goto out_power_well;
834 }
835 }
836
837 i915_setup_sysfs(dev);
838
839 if (INTEL_INFO(dev)->num_pipes) {
840 /* Must be done after probing outputs */
841 intel_opregion_init(dev);
842 acpi_video_register();
843 }
844
845 if (IS_GEN5(dev))
846 intel_gpu_ips_init(dev_priv);
847
848 intel_runtime_pm_enable(dev_priv);
849
850 i915_audio_component_init(dev_priv);
851
852 return 0;
853
854 out_power_well:
855 intel_power_domains_fini(dev_priv);
856 drm_vblank_cleanup(dev);
857 out_gem_unload:
858 WARN_ON(unregister_oom_notifier(&dev_priv->mm.oom_notifier));
859 unregister_shrinker(&dev_priv->mm.shrinker);
860
861 if (dev->pdev->msi_enabled)
862 pci_disable_msi(dev->pdev);
863
864 intel_teardown_gmbus(dev);
865 intel_teardown_mchbar(dev);
866 pm_qos_remove_request(&dev_priv->pm_qos);
867 destroy_workqueue(dev_priv->dp_wq);
868 out_freewq:
869 destroy_workqueue(dev_priv->wq);
870 out_mtrrfree:
871 arch_phys_wc_del(dev_priv->gtt.mtrr);
872 io_mapping_free(dev_priv->gtt.mappable);
873 out_gtt:
874 i915_global_gtt_cleanup(dev);
875 out_regs:
876 intel_uncore_fini(dev);
877 pci_iounmap(dev->pdev, dev_priv->regs);
878 put_bridge:
879 pci_dev_put(dev_priv->bridge_dev);
880 free_priv:
881 if (dev_priv->slab)
882 kmem_cache_destroy(dev_priv->slab);
883 kfree(dev_priv);
884 return ret;
885 }
886
887 int i915_driver_unload(struct drm_device *dev)
888 {
889 struct drm_i915_private *dev_priv = dev->dev_private;
890 int ret;
891
892 i915_audio_component_cleanup(dev_priv);
893
894 ret = i915_gem_suspend(dev);
895 if (ret) {
896 DRM_ERROR("failed to idle hardware: %d\n", ret);
897 return ret;
898 }
899
900 intel_power_domains_fini(dev_priv);
901
902 intel_gpu_ips_teardown();
903
904 i915_teardown_sysfs(dev);
905
906 WARN_ON(unregister_oom_notifier(&dev_priv->mm.oom_notifier));
907 unregister_shrinker(&dev_priv->mm.shrinker);
908
909 io_mapping_free(dev_priv->gtt.mappable);
910 arch_phys_wc_del(dev_priv->gtt.mtrr);
911
912 acpi_video_unregister();
913
914 if (drm_core_check_feature(dev, DRIVER_MODESET))
915 intel_fbdev_fini(dev);
916
917 drm_vblank_cleanup(dev);
918
919 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
920 intel_modeset_cleanup(dev);
921
922 /*
923 * free the memory space allocated for the child device
924 * config parsed from VBT
925 */
926 if (dev_priv->vbt.child_dev && dev_priv->vbt.child_dev_num) {
927 kfree(dev_priv->vbt.child_dev);
928 dev_priv->vbt.child_dev = NULL;
929 dev_priv->vbt.child_dev_num = 0;
930 }
931
932 vga_switcheroo_unregister_client(dev->pdev);
933 vga_client_register(dev->pdev, NULL, NULL, NULL);
934 }
935
936 /* Free error state after interrupts are fully disabled. */
937 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
938 cancel_work_sync(&dev_priv->gpu_error.work);
939 i915_destroy_error_state(dev);
940
941 if (dev->pdev->msi_enabled)
942 pci_disable_msi(dev->pdev);
943
944 intel_opregion_fini(dev);
945
946 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
947 /* Flush any outstanding unpin_work. */
948 flush_workqueue(dev_priv->wq);
949
950 mutex_lock(&dev->struct_mutex);
951 i915_gem_cleanup_ringbuffer(dev);
952 i915_gem_batch_pool_fini(&dev_priv->mm.batch_pool);
953 i915_gem_context_fini(dev);
954 mutex_unlock(&dev->struct_mutex);
955 i915_gem_cleanup_stolen(dev);
956 }
957
958 intel_teardown_gmbus(dev);
959 intel_teardown_mchbar(dev);
960
961 destroy_workqueue(dev_priv->dp_wq);
962 destroy_workqueue(dev_priv->wq);
963 pm_qos_remove_request(&dev_priv->pm_qos);
964
965 i915_global_gtt_cleanup(dev);
966
967 intel_uncore_fini(dev);
968 if (dev_priv->regs != NULL)
969 pci_iounmap(dev->pdev, dev_priv->regs);
970
971 if (dev_priv->slab)
972 kmem_cache_destroy(dev_priv->slab);
973
974 pci_dev_put(dev_priv->bridge_dev);
975 kfree(dev_priv);
976
977 return 0;
978 }
979
980 int i915_driver_open(struct drm_device *dev, struct drm_file *file)
981 {
982 int ret;
983
984 ret = i915_gem_open(dev, file);
985 if (ret)
986 return ret;
987
988 return 0;
989 }
990
991 /**
992 * i915_driver_lastclose - clean up after all DRM clients have exited
993 * @dev: DRM device
994 *
995 * Take care of cleaning up after all DRM clients have exited. In the
996 * mode setting case, we want to restore the kernel's initial mode (just
997 * in case the last client left us in a bad state).
998 *
999 * Additionally, in the non-mode setting case, we'll tear down the GTT
1000 * and DMA structures, since the kernel won't be using them, and clea
1001 * up any GEM state.
1002 */
1003 void i915_driver_lastclose(struct drm_device *dev)
1004 {
1005 intel_fbdev_restore_mode(dev);
1006 vga_switcheroo_process_delayed_switch();
1007 }
1008
1009 void i915_driver_preclose(struct drm_device *dev, struct drm_file *file)
1010 {
1011 mutex_lock(&dev->struct_mutex);
1012 i915_gem_context_close(dev, file);
1013 i915_gem_release(dev, file);
1014 mutex_unlock(&dev->struct_mutex);
1015
1016 if (drm_core_check_feature(dev, DRIVER_MODESET))
1017 intel_modeset_preclose(dev, file);
1018 }
1019
1020 void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
1021 {
1022 struct drm_i915_file_private *file_priv = file->driver_priv;
1023
1024 if (file_priv && file_priv->bsd_ring)
1025 file_priv->bsd_ring = NULL;
1026 kfree(file_priv);
1027 }
1028
1029 static int
1030 i915_gem_reject_pin_ioctl(struct drm_device *dev, void *data,
1031 struct drm_file *file)
1032 {
1033 return -ENODEV;
1034 }
1035
1036 const struct drm_ioctl_desc i915_ioctls[] = {
1037 DRM_IOCTL_DEF_DRV(I915_INIT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1038 DRM_IOCTL_DEF_DRV(I915_FLUSH, drm_noop, DRM_AUTH),
1039 DRM_IOCTL_DEF_DRV(I915_FLIP, drm_noop, DRM_AUTH),
1040 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, drm_noop, DRM_AUTH),
1041 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, drm_noop, DRM_AUTH),
1042 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, drm_noop, DRM_AUTH),
1043 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH|DRM_RENDER_ALLOW),
1044 DRM_IOCTL_DEF_DRV(I915_SETPARAM, i915_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1045 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
1046 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
1047 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1048 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, drm_noop, DRM_AUTH),
1049 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1050 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1051 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, drm_noop, DRM_AUTH),
1052 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, drm_noop, DRM_AUTH),
1053 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1054 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1055 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH|DRM_UNLOCKED),
1056 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
1057 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_reject_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1058 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_reject_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY|DRM_UNLOCKED),
1059 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
1060 DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1061 DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1062 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
1063 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1064 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY|DRM_UNLOCKED),
1065 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1066 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1067 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1068 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1069 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1070 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1071 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1072 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1073 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1074 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1075 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, DRM_UNLOCKED),
1076 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1077 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1078 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1079 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1080 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, intel_sprite_get_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
1081 DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
1082 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE, i915_gem_context_create_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1083 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1084 DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1085 DRM_IOCTL_DEF_DRV(I915_GET_RESET_STATS, i915_get_reset_stats_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1086 DRM_IOCTL_DEF_DRV(I915_GEM_USERPTR, i915_gem_userptr_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1087 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_GETPARAM, i915_gem_context_getparam_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1088 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_SETPARAM, i915_gem_context_setparam_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
1089 };
1090
1091 int i915_max_ioctl = ARRAY_SIZE(i915_ioctls);
1092
1093 /*
1094 * This is really ugly: Because old userspace abused the linux agp interface to
1095 * manage the gtt, we need to claim that all intel devices are agp. For
1096 * otherwise the drm core refuses to initialize the agp support code.
1097 */
1098 int i915_driver_device_is_agp(struct drm_device *dev)
1099 {
1100 return 1;
1101 }
This page took 0.054423 seconds and 5 git commands to generate.