blob: b1142aaf50ec2b5aed5685ea5dd003ec50cce326 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i915_drv.c -- i830,i845,i855,i865,i915 driver -*- linux-c -*-
2 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Dave Airliebc54fd12005-06-23 22:46:46 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10007 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
18 * of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Jesse Barnese5747e32014-06-12 08:35:47 -070030#include <linux/acpi.h>
Chris Wilson0673ad42016-06-24 14:00:22 +010031#include <linux/device.h>
32#include <linux/oom.h>
33#include <linux/module.h>
34#include <linux/pci.h>
35#include <linux/pm.h>
36#include <linux/pm_runtime.h>
37#include <linux/pnp.h>
38#include <linux/slab.h>
39#include <linux/vgaarb.h>
40#include <linux/vga_switcheroo.h>
41#include <linux/vt.h>
42#include <acpi/video.h>
43
David Howells760285e2012-10-02 18:01:07 +010044#include <drm/drmP.h>
Chris Wilson0673ad42016-06-24 14:00:22 +010045#include <drm/drm_crtc_helper.h>
David Howells760285e2012-10-02 18:01:07 +010046#include <drm/i915_drm.h>
Chris Wilson0673ad42016-06-24 14:00:22 +010047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "i915_drv.h"
Chris Wilson990bbda2012-07-02 11:51:02 -030049#include "i915_trace.h"
Chris Wilson0673ad42016-06-24 14:00:22 +010050#include "i915_vgpu.h"
Kenneth Graunkef49f0582010-09-11 01:19:14 -070051#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Kristian Høgsberg112b7152009-01-04 16:55:33 -050053static struct drm_driver driver;
54
Chris Wilson0673ad42016-06-24 14:00:22 +010055static unsigned int i915_load_fail_count;
56
57bool __i915_inject_load_failure(const char *func, int line)
58{
59 if (i915_load_fail_count >= i915.inject_load_failure)
60 return false;
61
62 if (++i915_load_fail_count == i915.inject_load_failure) {
63 DRM_INFO("Injecting failure at checkpoint %u [%s:%d]\n",
64 i915.inject_load_failure, func, line);
65 return true;
66 }
67
68 return false;
69}
70
71#define FDO_BUG_URL "https://bugs.freedesktop.org/enter_bug.cgi?product=DRI"
72#define FDO_BUG_MSG "Please file a bug at " FDO_BUG_URL " against DRM/Intel " \
73 "providing the dmesg log by booting with drm.debug=0xf"
74
75void
76__i915_printk(struct drm_i915_private *dev_priv, const char *level,
77 const char *fmt, ...)
78{
79 static bool shown_bug_once;
David Weinehallc49d13e2016-08-22 13:32:42 +030080 struct device *kdev = dev_priv->drm.dev;
Chris Wilson0673ad42016-06-24 14:00:22 +010081 bool is_error = level[1] <= KERN_ERR[1];
82 bool is_debug = level[1] == KERN_DEBUG[1];
83 struct va_format vaf;
84 va_list args;
85
86 if (is_debug && !(drm_debug & DRM_UT_DRIVER))
87 return;
88
89 va_start(args, fmt);
90
91 vaf.fmt = fmt;
92 vaf.va = &args;
93
David Weinehallc49d13e2016-08-22 13:32:42 +030094 dev_printk(level, kdev, "[" DRM_NAME ":%ps] %pV",
Chris Wilson0673ad42016-06-24 14:00:22 +010095 __builtin_return_address(0), &vaf);
96
97 if (is_error && !shown_bug_once) {
David Weinehallc49d13e2016-08-22 13:32:42 +030098 dev_notice(kdev, "%s", FDO_BUG_MSG);
Chris Wilson0673ad42016-06-24 14:00:22 +010099 shown_bug_once = true;
100 }
101
102 va_end(args);
103}
104
105static bool i915_error_injected(struct drm_i915_private *dev_priv)
106{
107 return i915.inject_load_failure &&
108 i915_load_fail_count == i915.inject_load_failure;
109}
110
111#define i915_load_error(dev_priv, fmt, ...) \
112 __i915_printk(dev_priv, \
113 i915_error_injected(dev_priv) ? KERN_DEBUG : KERN_ERR, \
114 fmt, ##__VA_ARGS__)
115
116
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +0100117static enum intel_pch intel_virt_detect_pch(struct drm_i915_private *dev_priv)
Robert Beckett30c964a2015-08-28 13:10:22 +0100118{
119 enum intel_pch ret = PCH_NOP;
120
121 /*
122 * In a virtualized passthrough environment we can be in a
123 * setup where the ISA bridge is not able to be passed through.
124 * In this case, a south bridge can be emulated and we have to
125 * make an educated guess as to which PCH is really there.
126 */
127
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +0100128 if (IS_GEN5(dev_priv)) {
Robert Beckett30c964a2015-08-28 13:10:22 +0100129 ret = PCH_IBX;
130 DRM_DEBUG_KMS("Assuming Ibex Peak PCH\n");
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +0100131 } else if (IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv)) {
Robert Beckett30c964a2015-08-28 13:10:22 +0100132 ret = PCH_CPT;
133 DRM_DEBUG_KMS("Assuming CouarPoint PCH\n");
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +0100134 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Robert Beckett30c964a2015-08-28 13:10:22 +0100135 ret = PCH_LPT;
136 DRM_DEBUG_KMS("Assuming LynxPoint PCH\n");
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +0100137 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Robert Beckett30c964a2015-08-28 13:10:22 +0100138 ret = PCH_SPT;
139 DRM_DEBUG_KMS("Assuming SunrisePoint PCH\n");
140 }
141
142 return ret;
143}
144
Chris Wilson0673ad42016-06-24 14:00:22 +0100145static void intel_detect_pch(struct drm_device *dev)
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800146{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100147 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deakbcdb72a2014-02-14 20:23:54 +0200148 struct pci_dev *pch = NULL;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800149
Ben Widawskyce1bb322013-04-05 13:12:44 -0700150 /* In all current cases, num_pipes is equivalent to the PCH_NOP setting
151 * (which really amounts to a PCH but no South Display).
152 */
153 if (INTEL_INFO(dev)->num_pipes == 0) {
154 dev_priv->pch_type = PCH_NOP;
Ben Widawskyce1bb322013-04-05 13:12:44 -0700155 return;
156 }
157
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800158 /*
159 * The reason to probe ISA bridge instead of Dev31:Fun0 is to
160 * make graphics device passthrough work easy for VMM, that only
161 * need to expose ISA bridge to let driver know the real hardware
162 * underneath. This is a requirement from virtualization team.
Rui Guo6a9c4b32013-06-19 21:10:23 +0800163 *
164 * In some virtualized environments (e.g. XEN), there is irrelevant
165 * ISA bridge in the system. To work reliably, we should scan trhough
166 * all the ISA bridge devices and check for the first match, instead
167 * of only checking the first one.
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800168 */
Imre Deakbcdb72a2014-02-14 20:23:54 +0200169 while ((pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, pch))) {
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800170 if (pch->vendor == PCI_VENDOR_ID_INTEL) {
Imre Deakbcdb72a2014-02-14 20:23:54 +0200171 unsigned short id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
Paulo Zanoni17a303e2012-11-20 15:12:07 -0200172 dev_priv->pch_id = id;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800173
Jesse Barnes90711d52011-04-28 14:48:02 -0700174 if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
175 dev_priv->pch_type = PCH_IBX;
176 DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100177 WARN_ON(!IS_GEN5(dev));
Jesse Barnes90711d52011-04-28 14:48:02 -0700178 } else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800179 dev_priv->pch_type = PCH_CPT;
180 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +0100181 WARN_ON(!(IS_GEN6(dev_priv) ||
182 IS_IVYBRIDGE(dev_priv)));
Jesse Barnesc7925132011-04-07 12:33:56 -0700183 } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
184 /* PantherPoint is CPT compatible */
185 dev_priv->pch_type = PCH_CPT;
Jani Nikula492ab662013-10-01 12:12:33 +0300186 DRM_DEBUG_KMS("Found PantherPoint PCH\n");
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +0100187 WARN_ON(!(IS_GEN6(dev_priv) ||
188 IS_IVYBRIDGE(dev_priv)));
Eugeni Dodonoveb877eb2012-03-29 12:32:20 -0300189 } else if (id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
190 dev_priv->pch_type = PCH_LPT;
191 DRM_DEBUG_KMS("Found LynxPoint PCH\n");
Rodrigo Vivia35cc9d02015-01-21 10:33:53 -0800192 WARN_ON(!IS_HASWELL(dev) && !IS_BROADWELL(dev));
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100193 WARN_ON(IS_HSW_ULT(dev_priv) ||
194 IS_BDW_ULT(dev_priv));
Ben Widawskye76e0632013-11-07 21:40:41 -0800195 } else if (id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
196 dev_priv->pch_type = PCH_LPT;
197 DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
Rodrigo Vivia35cc9d02015-01-21 10:33:53 -0800198 WARN_ON(!IS_HASWELL(dev) && !IS_BROADWELL(dev));
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100199 WARN_ON(!IS_HSW_ULT(dev_priv) &&
200 !IS_BDW_ULT(dev_priv));
Satheeshakrishna Me7e7ea22014-04-09 11:08:57 +0530201 } else if (id == INTEL_PCH_SPT_DEVICE_ID_TYPE) {
202 dev_priv->pch_type = PCH_SPT;
203 DRM_DEBUG_KMS("Found SunrisePoint PCH\n");
Rodrigo Vivief11bdb2015-10-28 04:16:45 -0700204 WARN_ON(!IS_SKYLAKE(dev) &&
205 !IS_KABYLAKE(dev));
Satheeshakrishna Me7e7ea22014-04-09 11:08:57 +0530206 } else if (id == INTEL_PCH_SPT_LP_DEVICE_ID_TYPE) {
207 dev_priv->pch_type = PCH_SPT;
208 DRM_DEBUG_KMS("Found SunrisePoint LP PCH\n");
Rodrigo Vivief11bdb2015-10-28 04:16:45 -0700209 WARN_ON(!IS_SKYLAKE(dev) &&
210 !IS_KABYLAKE(dev));
Rodrigo Vivi22dea0b2016-07-01 17:07:12 -0700211 } else if (id == INTEL_PCH_KBP_DEVICE_ID_TYPE) {
212 dev_priv->pch_type = PCH_KBP;
213 DRM_DEBUG_KMS("Found KabyPoint PCH\n");
214 WARN_ON(!IS_KABYLAKE(dev));
Gerd Hoffmann39bfcd522015-11-26 12:03:51 +0100215 } else if ((id == INTEL_PCH_P2X_DEVICE_ID_TYPE) ||
Jesse Barnes1844a662016-03-16 13:31:30 -0700216 (id == INTEL_PCH_P3X_DEVICE_ID_TYPE) ||
Gerd Hoffmannf2e30512016-01-25 12:02:28 +0100217 ((id == INTEL_PCH_QEMU_DEVICE_ID_TYPE) &&
Gerd Hoffmann94bb4892016-06-13 14:38:56 +0200218 pch->subsystem_vendor ==
219 PCI_SUBVENDOR_ID_REDHAT_QUMRANET &&
220 pch->subsystem_device ==
221 PCI_SUBDEVICE_ID_QEMU)) {
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +0100222 dev_priv->pch_type =
223 intel_virt_detect_pch(dev_priv);
Imre Deakbcdb72a2014-02-14 20:23:54 +0200224 } else
225 continue;
226
Rui Guo6a9c4b32013-06-19 21:10:23 +0800227 break;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800228 }
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800229 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800230 if (!pch)
Imre Deakbcdb72a2014-02-14 20:23:54 +0200231 DRM_DEBUG_KMS("No PCH found.\n");
232
233 pci_dev_put(pch);
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800234}
235
Chris Wilson0673ad42016-06-24 14:00:22 +0100236static int i915_getparam(struct drm_device *dev, void *data,
237 struct drm_file *file_priv)
238{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100239 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300240 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +0100241 drm_i915_getparam_t *param = data;
242 int value;
243
244 switch (param->param) {
245 case I915_PARAM_IRQ_ACTIVE:
246 case I915_PARAM_ALLOW_BATCHBUFFER:
247 case I915_PARAM_LAST_DISPATCH:
248 /* Reject all old ums/dri params. */
249 return -ENODEV;
250 case I915_PARAM_CHIPSET_ID:
David Weinehall52a05c32016-08-22 13:32:44 +0300251 value = pdev->device;
Chris Wilson0673ad42016-06-24 14:00:22 +0100252 break;
253 case I915_PARAM_REVISION:
David Weinehall52a05c32016-08-22 13:32:44 +0300254 value = pdev->revision;
Chris Wilson0673ad42016-06-24 14:00:22 +0100255 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100256 case I915_PARAM_NUM_FENCES_AVAIL:
257 value = dev_priv->num_fence_regs;
258 break;
259 case I915_PARAM_HAS_OVERLAY:
260 value = dev_priv->overlay ? 1 : 0;
261 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100262 case I915_PARAM_HAS_BSD:
Akash Goel3b3f1652016-10-13 22:44:48 +0530263 value = !!dev_priv->engine[VCS];
Chris Wilson0673ad42016-06-24 14:00:22 +0100264 break;
265 case I915_PARAM_HAS_BLT:
Akash Goel3b3f1652016-10-13 22:44:48 +0530266 value = !!dev_priv->engine[BCS];
Chris Wilson0673ad42016-06-24 14:00:22 +0100267 break;
268 case I915_PARAM_HAS_VEBOX:
Akash Goel3b3f1652016-10-13 22:44:48 +0530269 value = !!dev_priv->engine[VECS];
Chris Wilson0673ad42016-06-24 14:00:22 +0100270 break;
271 case I915_PARAM_HAS_BSD2:
Akash Goel3b3f1652016-10-13 22:44:48 +0530272 value = !!dev_priv->engine[VCS2];
Chris Wilson0673ad42016-06-24 14:00:22 +0100273 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100274 case I915_PARAM_HAS_EXEC_CONSTANTS:
David Weinehall16162472016-09-02 13:46:17 +0300275 value = INTEL_GEN(dev_priv) >= 4;
Chris Wilson0673ad42016-06-24 14:00:22 +0100276 break;
277 case I915_PARAM_HAS_LLC:
David Weinehall16162472016-09-02 13:46:17 +0300278 value = HAS_LLC(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100279 break;
280 case I915_PARAM_HAS_WT:
David Weinehall16162472016-09-02 13:46:17 +0300281 value = HAS_WT(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100282 break;
283 case I915_PARAM_HAS_ALIASING_PPGTT:
David Weinehall16162472016-09-02 13:46:17 +0300284 value = USES_PPGTT(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100285 break;
286 case I915_PARAM_HAS_SEMAPHORES:
Chris Wilson39df9192016-07-20 13:31:57 +0100287 value = i915.semaphores;
Chris Wilson0673ad42016-06-24 14:00:22 +0100288 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100289 case I915_PARAM_HAS_SECURE_BATCHES:
290 value = capable(CAP_SYS_ADMIN);
291 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100292 case I915_PARAM_CMD_PARSER_VERSION:
293 value = i915_cmd_parser_get_version(dev_priv);
294 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100295 case I915_PARAM_SUBSLICE_TOTAL:
Imre Deak57ec1712016-08-31 19:13:05 +0300296 value = sseu_subslice_total(&INTEL_INFO(dev_priv)->sseu);
Chris Wilson0673ad42016-06-24 14:00:22 +0100297 if (!value)
298 return -ENODEV;
299 break;
300 case I915_PARAM_EU_TOTAL:
Imre Deak43b67992016-08-31 19:13:02 +0300301 value = INTEL_INFO(dev_priv)->sseu.eu_total;
Chris Wilson0673ad42016-06-24 14:00:22 +0100302 if (!value)
303 return -ENODEV;
304 break;
305 case I915_PARAM_HAS_GPU_RESET:
306 value = i915.enable_hangcheck && intel_has_gpu_reset(dev_priv);
307 break;
308 case I915_PARAM_HAS_RESOURCE_STREAMER:
David Weinehall16162472016-09-02 13:46:17 +0300309 value = HAS_RESOURCE_STREAMER(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100310 break;
arun.siluvery@linux.intel.com37f501a2016-07-01 11:43:02 +0100311 case I915_PARAM_HAS_POOLED_EU:
David Weinehall16162472016-09-02 13:46:17 +0300312 value = HAS_POOLED_EU(dev_priv);
arun.siluvery@linux.intel.com37f501a2016-07-01 11:43:02 +0100313 break;
314 case I915_PARAM_MIN_EU_IN_POOL:
Imre Deak43b67992016-08-31 19:13:02 +0300315 value = INTEL_INFO(dev_priv)->sseu.min_eu_in_pool;
arun.siluvery@linux.intel.com37f501a2016-07-01 11:43:02 +0100316 break;
Chris Wilson4cc69072016-08-25 19:05:19 +0100317 case I915_PARAM_MMAP_GTT_VERSION:
318 /* Though we've started our numbering from 1, and so class all
319 * earlier versions as 0, in effect their value is undefined as
320 * the ioctl will report EINVAL for the unknown param!
321 */
322 value = i915_gem_mmap_gtt_version();
323 break;
David Weinehall16162472016-09-02 13:46:17 +0300324 case I915_PARAM_MMAP_VERSION:
325 /* Remember to bump this if the version changes! */
326 case I915_PARAM_HAS_GEM:
327 case I915_PARAM_HAS_PAGEFLIPPING:
328 case I915_PARAM_HAS_EXECBUF2: /* depends on GEM */
329 case I915_PARAM_HAS_RELAXED_FENCING:
330 case I915_PARAM_HAS_COHERENT_RINGS:
331 case I915_PARAM_HAS_RELAXED_DELTA:
332 case I915_PARAM_HAS_GEN7_SOL_RESET:
333 case I915_PARAM_HAS_WAIT_TIMEOUT:
334 case I915_PARAM_HAS_PRIME_VMAP_FLUSH:
335 case I915_PARAM_HAS_PINNED_BATCHES:
336 case I915_PARAM_HAS_EXEC_NO_RELOC:
337 case I915_PARAM_HAS_EXEC_HANDLE_LUT:
338 case I915_PARAM_HAS_COHERENT_PHYS_GTT:
339 case I915_PARAM_HAS_EXEC_SOFTPIN:
340 /* For the time being all of these are always true;
341 * if some supported hardware does not have one of these
342 * features this value needs to be provided from
343 * INTEL_INFO(), a feature macro, or similar.
344 */
345 value = 1;
346 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100347 default:
348 DRM_DEBUG("Unknown parameter %d\n", param->param);
349 return -EINVAL;
350 }
351
Chris Wilsondda33002016-06-24 14:00:23 +0100352 if (put_user(value, param->value))
Chris Wilson0673ad42016-06-24 14:00:22 +0100353 return -EFAULT;
Chris Wilson0673ad42016-06-24 14:00:22 +0100354
355 return 0;
356}
357
358static int i915_get_bridge_dev(struct drm_device *dev)
359{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100360 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson0673ad42016-06-24 14:00:22 +0100361
362 dev_priv->bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0));
363 if (!dev_priv->bridge_dev) {
364 DRM_ERROR("bridge device not found\n");
365 return -1;
366 }
367 return 0;
368}
369
370/* Allocate space for the MCH regs if needed, return nonzero on error */
371static int
372intel_alloc_mchbar_resource(struct drm_device *dev)
373{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100374 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson0673ad42016-06-24 14:00:22 +0100375 int reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
376 u32 temp_lo, temp_hi = 0;
377 u64 mchbar_addr;
378 int ret;
379
380 if (INTEL_INFO(dev)->gen >= 4)
381 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
382 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
383 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
384
385 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
386#ifdef CONFIG_PNP
387 if (mchbar_addr &&
388 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
389 return 0;
390#endif
391
392 /* Get some space for it */
393 dev_priv->mch_res.name = "i915 MCHBAR";
394 dev_priv->mch_res.flags = IORESOURCE_MEM;
395 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
396 &dev_priv->mch_res,
397 MCHBAR_SIZE, MCHBAR_SIZE,
398 PCIBIOS_MIN_MEM,
399 0, pcibios_align_resource,
400 dev_priv->bridge_dev);
401 if (ret) {
402 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
403 dev_priv->mch_res.start = 0;
404 return ret;
405 }
406
407 if (INTEL_INFO(dev)->gen >= 4)
408 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
409 upper_32_bits(dev_priv->mch_res.start));
410
411 pci_write_config_dword(dev_priv->bridge_dev, reg,
412 lower_32_bits(dev_priv->mch_res.start));
413 return 0;
414}
415
416/* Setup MCHBAR if possible, return true if we should disable it again */
417static void
418intel_setup_mchbar(struct drm_device *dev)
419{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100420 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson0673ad42016-06-24 14:00:22 +0100421 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
422 u32 temp;
423 bool enabled;
424
425 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
426 return;
427
428 dev_priv->mchbar_need_disable = false;
429
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100430 if (IS_I915G(dev_priv) || IS_I915GM(dev_priv)) {
Chris Wilson0673ad42016-06-24 14:00:22 +0100431 pci_read_config_dword(dev_priv->bridge_dev, DEVEN, &temp);
432 enabled = !!(temp & DEVEN_MCHBAR_EN);
433 } else {
434 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
435 enabled = temp & 1;
436 }
437
438 /* If it's already enabled, don't have to do anything */
439 if (enabled)
440 return;
441
442 if (intel_alloc_mchbar_resource(dev))
443 return;
444
445 dev_priv->mchbar_need_disable = true;
446
447 /* Space is allocated or reserved, so enable it. */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100448 if (IS_I915G(dev_priv) || IS_I915GM(dev_priv)) {
Chris Wilson0673ad42016-06-24 14:00:22 +0100449 pci_write_config_dword(dev_priv->bridge_dev, DEVEN,
450 temp | DEVEN_MCHBAR_EN);
451 } else {
452 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
453 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
454 }
455}
456
457static void
458intel_teardown_mchbar(struct drm_device *dev)
459{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100460 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson0673ad42016-06-24 14:00:22 +0100461 int mchbar_reg = INTEL_INFO(dev)->gen >= 4 ? MCHBAR_I965 : MCHBAR_I915;
462
463 if (dev_priv->mchbar_need_disable) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100464 if (IS_I915G(dev_priv) || IS_I915GM(dev_priv)) {
Chris Wilson0673ad42016-06-24 14:00:22 +0100465 u32 deven_val;
466
467 pci_read_config_dword(dev_priv->bridge_dev, DEVEN,
468 &deven_val);
469 deven_val &= ~DEVEN_MCHBAR_EN;
470 pci_write_config_dword(dev_priv->bridge_dev, DEVEN,
471 deven_val);
472 } else {
473 u32 mchbar_val;
474
475 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg,
476 &mchbar_val);
477 mchbar_val &= ~1;
478 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg,
479 mchbar_val);
480 }
481 }
482
483 if (dev_priv->mch_res.start)
484 release_resource(&dev_priv->mch_res);
485}
486
487/* true = enable decode, false = disable decoder */
488static unsigned int i915_vga_set_decode(void *cookie, bool state)
489{
490 struct drm_device *dev = cookie;
491
492 intel_modeset_vga_set_state(dev, state);
493 if (state)
494 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
495 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
496 else
497 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
498}
499
500static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
501{
502 struct drm_device *dev = pci_get_drvdata(pdev);
503 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
504
505 if (state == VGA_SWITCHEROO_ON) {
506 pr_info("switched on\n");
507 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
508 /* i915 resume handler doesn't set to D0 */
David Weinehall52a05c32016-08-22 13:32:44 +0300509 pci_set_power_state(pdev, PCI_D0);
Chris Wilson0673ad42016-06-24 14:00:22 +0100510 i915_resume_switcheroo(dev);
511 dev->switch_power_state = DRM_SWITCH_POWER_ON;
512 } else {
513 pr_info("switched off\n");
514 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
515 i915_suspend_switcheroo(dev, pmm);
516 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
517 }
518}
519
520static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
521{
522 struct drm_device *dev = pci_get_drvdata(pdev);
523
524 /*
525 * FIXME: open_count is protected by drm_global_mutex but that would lead to
526 * locking inversion with the driver load path. And the access here is
527 * completely racy anyway. So don't bother with locking for now.
528 */
529 return dev->open_count == 0;
530}
531
532static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
533 .set_gpu_state = i915_switcheroo_set_state,
534 .reprobe = NULL,
535 .can_switch = i915_switcheroo_can_switch,
536};
537
538static void i915_gem_fini(struct drm_device *dev)
539{
Chris Wilson0673ad42016-06-24 14:00:22 +0100540 mutex_lock(&dev->struct_mutex);
Chris Wilson0673ad42016-06-24 14:00:22 +0100541 i915_gem_cleanup_engines(dev);
542 i915_gem_context_fini(dev);
543 mutex_unlock(&dev->struct_mutex);
544
545 WARN_ON(!list_empty(&to_i915(dev)->context_list));
546}
547
548static int i915_load_modeset_init(struct drm_device *dev)
549{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100550 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300551 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +0100552 int ret;
553
554 if (i915_inject_load_failure())
555 return -ENODEV;
556
557 ret = intel_bios_init(dev_priv);
558 if (ret)
559 DRM_INFO("failed to find VBIOS tables\n");
560
561 /* If we have > 1 VGA cards, then we need to arbitrate access
562 * to the common VGA resources.
563 *
564 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
565 * then we do not take part in VGA arbitration and the
566 * vga_client_register() fails with -ENODEV.
567 */
David Weinehall52a05c32016-08-22 13:32:44 +0300568 ret = vga_client_register(pdev, dev, NULL, i915_vga_set_decode);
Chris Wilson0673ad42016-06-24 14:00:22 +0100569 if (ret && ret != -ENODEV)
570 goto out;
571
572 intel_register_dsm_handler();
573
David Weinehall52a05c32016-08-22 13:32:44 +0300574 ret = vga_switcheroo_register_client(pdev, &i915_switcheroo_ops, false);
Chris Wilson0673ad42016-06-24 14:00:22 +0100575 if (ret)
576 goto cleanup_vga_client;
577
578 /* must happen before intel_power_domains_init_hw() on VLV/CHV */
579 intel_update_rawclk(dev_priv);
580
581 intel_power_domains_init_hw(dev_priv, false);
582
583 intel_csr_ucode_init(dev_priv);
584
585 ret = intel_irq_install(dev_priv);
586 if (ret)
587 goto cleanup_csr;
588
589 intel_setup_gmbus(dev);
590
591 /* Important: The output setup functions called by modeset_init need
592 * working irqs for e.g. gmbus and dp aux transfers. */
593 intel_modeset_init(dev);
594
595 intel_guc_init(dev);
596
597 ret = i915_gem_init(dev);
598 if (ret)
599 goto cleanup_irq;
600
601 intel_modeset_gem_init(dev);
602
603 if (INTEL_INFO(dev)->num_pipes == 0)
604 return 0;
605
606 ret = intel_fbdev_init(dev);
607 if (ret)
608 goto cleanup_gem;
609
610 /* Only enable hotplug handling once the fbdev is fully set up. */
611 intel_hpd_init(dev_priv);
612
613 drm_kms_helper_poll_init(dev);
614
615 return 0;
616
617cleanup_gem:
Imre Deak1c777c52016-10-12 17:46:37 +0300618 if (i915_gem_suspend(dev))
619 DRM_ERROR("failed to idle hardware; continuing to unload!\n");
Chris Wilson0673ad42016-06-24 14:00:22 +0100620 i915_gem_fini(dev);
621cleanup_irq:
622 intel_guc_fini(dev);
623 drm_irq_uninstall(dev);
624 intel_teardown_gmbus(dev);
625cleanup_csr:
626 intel_csr_ucode_fini(dev_priv);
627 intel_power_domains_fini(dev_priv);
David Weinehall52a05c32016-08-22 13:32:44 +0300628 vga_switcheroo_unregister_client(pdev);
Chris Wilson0673ad42016-06-24 14:00:22 +0100629cleanup_vga_client:
David Weinehall52a05c32016-08-22 13:32:44 +0300630 vga_client_register(pdev, NULL, NULL, NULL);
Chris Wilson0673ad42016-06-24 14:00:22 +0100631out:
632 return ret;
633}
634
635#if IS_ENABLED(CONFIG_FB)
636static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
637{
638 struct apertures_struct *ap;
Chris Wilson91c8a322016-07-05 10:40:23 +0100639 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +0100640 struct i915_ggtt *ggtt = &dev_priv->ggtt;
641 bool primary;
642 int ret;
643
644 ap = alloc_apertures(1);
645 if (!ap)
646 return -ENOMEM;
647
648 ap->ranges[0].base = ggtt->mappable_base;
649 ap->ranges[0].size = ggtt->mappable_end;
650
651 primary =
652 pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
653
Daniel Vetter44adece2016-08-10 18:52:34 +0200654 ret = drm_fb_helper_remove_conflicting_framebuffers(ap, "inteldrmfb", primary);
Chris Wilson0673ad42016-06-24 14:00:22 +0100655
656 kfree(ap);
657
658 return ret;
659}
660#else
661static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
662{
663 return 0;
664}
665#endif
666
667#if !defined(CONFIG_VGA_CONSOLE)
668static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
669{
670 return 0;
671}
672#elif !defined(CONFIG_DUMMY_CONSOLE)
673static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
674{
675 return -ENODEV;
676}
677#else
678static int i915_kick_out_vgacon(struct drm_i915_private *dev_priv)
679{
680 int ret = 0;
681
682 DRM_INFO("Replacing VGA console driver\n");
683
684 console_lock();
685 if (con_is_bound(&vga_con))
686 ret = do_take_over_console(&dummy_con, 0, MAX_NR_CONSOLES - 1, 1);
687 if (ret == 0) {
688 ret = do_unregister_con_driver(&vga_con);
689
690 /* Ignore "already unregistered". */
691 if (ret == -ENODEV)
692 ret = 0;
693 }
694 console_unlock();
695
696 return ret;
697}
698#endif
699
Chris Wilson0673ad42016-06-24 14:00:22 +0100700static void intel_init_dpio(struct drm_i915_private *dev_priv)
701{
702 /*
703 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
704 * CHV x1 PHY (DP/HDMI D)
705 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
706 */
707 if (IS_CHERRYVIEW(dev_priv)) {
708 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
709 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
710 } else if (IS_VALLEYVIEW(dev_priv)) {
711 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
712 }
713}
714
715static int i915_workqueues_init(struct drm_i915_private *dev_priv)
716{
717 /*
718 * The i915 workqueue is primarily used for batched retirement of
719 * requests (and thus managing bo) once the task has been completed
720 * by the GPU. i915_gem_retire_requests() is called directly when we
721 * need high-priority retirement, such as waiting for an explicit
722 * bo.
723 *
724 * It is also used for periodic low-priority events, such as
725 * idle-timers and recording error state.
726 *
727 * All tasks on the workqueue are expected to acquire the dev mutex
728 * so there is no point in running more than one instance of the
729 * workqueue at any time. Use an ordered one.
730 */
731 dev_priv->wq = alloc_ordered_workqueue("i915", 0);
732 if (dev_priv->wq == NULL)
733 goto out_err;
734
735 dev_priv->hotplug.dp_wq = alloc_ordered_workqueue("i915-dp", 0);
736 if (dev_priv->hotplug.dp_wq == NULL)
737 goto out_free_wq;
738
Chris Wilson0673ad42016-06-24 14:00:22 +0100739 return 0;
740
Chris Wilson0673ad42016-06-24 14:00:22 +0100741out_free_wq:
742 destroy_workqueue(dev_priv->wq);
743out_err:
744 DRM_ERROR("Failed to allocate workqueues.\n");
745
746 return -ENOMEM;
747}
748
749static void i915_workqueues_cleanup(struct drm_i915_private *dev_priv)
750{
Chris Wilson0673ad42016-06-24 14:00:22 +0100751 destroy_workqueue(dev_priv->hotplug.dp_wq);
752 destroy_workqueue(dev_priv->wq);
753}
754
Paulo Zanoni4fc7e842016-09-26 15:07:52 +0300755/*
756 * We don't keep the workarounds for pre-production hardware, so we expect our
757 * driver to fail on these machines in one way or another. A little warning on
758 * dmesg may help both the user and the bug triagers.
759 */
760static void intel_detect_preproduction_hw(struct drm_i915_private *dev_priv)
761{
762 if (IS_HSW_EARLY_SDV(dev_priv) ||
763 IS_SKL_REVID(dev_priv, 0, SKL_REVID_F0))
764 DRM_ERROR("This is a pre-production stepping. "
765 "It may not be fully functional.\n");
766}
767
Chris Wilson0673ad42016-06-24 14:00:22 +0100768/**
769 * i915_driver_init_early - setup state not requiring device access
770 * @dev_priv: device private
771 *
772 * Initialize everything that is a "SW-only" state, that is state not
773 * requiring accessing the device or exposing the driver via kernel internal
774 * or userspace interfaces. Example steps belonging here: lock initialization,
775 * system memory allocation, setting up device specific attributes and
776 * function hooks not requiring accessing the device.
777 */
778static int i915_driver_init_early(struct drm_i915_private *dev_priv,
779 const struct pci_device_id *ent)
780{
781 const struct intel_device_info *match_info =
782 (struct intel_device_info *)ent->driver_data;
783 struct intel_device_info *device_info;
784 int ret = 0;
785
786 if (i915_inject_load_failure())
787 return -ENODEV;
788
789 /* Setup the write-once "constant" device info */
Chris Wilson94b4f3b2016-07-05 10:40:20 +0100790 device_info = mkwrite_device_info(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100791 memcpy(device_info, match_info, sizeof(*device_info));
792 device_info->device_id = dev_priv->drm.pdev->device;
793
794 BUG_ON(device_info->gen > sizeof(device_info->gen_mask) * BITS_PER_BYTE);
795 device_info->gen_mask = BIT(device_info->gen - 1);
796
797 spin_lock_init(&dev_priv->irq_lock);
798 spin_lock_init(&dev_priv->gpu_error.lock);
799 mutex_init(&dev_priv->backlight_lock);
800 spin_lock_init(&dev_priv->uncore.lock);
801 spin_lock_init(&dev_priv->mm.object_stat_lock);
802 spin_lock_init(&dev_priv->mmio_flip_lock);
803 mutex_init(&dev_priv->sb_lock);
804 mutex_init(&dev_priv->modeset_restore_lock);
805 mutex_init(&dev_priv->av_mutex);
806 mutex_init(&dev_priv->wm.wm_mutex);
807 mutex_init(&dev_priv->pps_mutex);
808
Chris Wilson0b1de5d2016-08-12 12:39:59 +0100809 i915_memcpy_init_early(dev_priv);
810
Chris Wilson0673ad42016-06-24 14:00:22 +0100811 ret = i915_workqueues_init(dev_priv);
812 if (ret < 0)
813 return ret;
814
815 ret = intel_gvt_init(dev_priv);
816 if (ret < 0)
817 goto err_workqueues;
818
819 /* This must be called before any calls to HAS_PCH_* */
820 intel_detect_pch(&dev_priv->drm);
821
822 intel_pm_setup(&dev_priv->drm);
823 intel_init_dpio(dev_priv);
824 intel_power_domains_init(dev_priv);
825 intel_irq_init(dev_priv);
826 intel_init_display_hooks(dev_priv);
827 intel_init_clock_gating_hooks(dev_priv);
828 intel_init_audio_hooks(dev_priv);
829 i915_gem_load_init(&dev_priv->drm);
830
David Weinehall36cdd012016-08-22 13:59:31 +0300831 intel_display_crc_init(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100832
Chris Wilson94b4f3b2016-07-05 10:40:20 +0100833 intel_device_info_dump(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100834
Paulo Zanoni4fc7e842016-09-26 15:07:52 +0300835 intel_detect_preproduction_hw(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100836
837 return 0;
838
839err_workqueues:
840 i915_workqueues_cleanup(dev_priv);
841 return ret;
842}
843
844/**
845 * i915_driver_cleanup_early - cleanup the setup done in i915_driver_init_early()
846 * @dev_priv: device private
847 */
848static void i915_driver_cleanup_early(struct drm_i915_private *dev_priv)
849{
Chris Wilson91c8a322016-07-05 10:40:23 +0100850 i915_gem_load_cleanup(&dev_priv->drm);
Chris Wilson0673ad42016-06-24 14:00:22 +0100851 i915_workqueues_cleanup(dev_priv);
852}
853
854static int i915_mmio_setup(struct drm_device *dev)
855{
856 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300857 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +0100858 int mmio_bar;
859 int mmio_size;
860
861 mmio_bar = IS_GEN2(dev) ? 1 : 0;
862 /*
863 * Before gen4, the registers and the GTT are behind different BARs.
864 * However, from gen4 onwards, the registers and the GTT are shared
865 * in the same BAR, so we want to restrict this ioremap from
866 * clobbering the GTT which we want ioremap_wc instead. Fortunately,
867 * the register BAR remains the same size for all the earlier
868 * generations up to Ironlake.
869 */
870 if (INTEL_INFO(dev)->gen < 5)
871 mmio_size = 512 * 1024;
872 else
873 mmio_size = 2 * 1024 * 1024;
David Weinehall52a05c32016-08-22 13:32:44 +0300874 dev_priv->regs = pci_iomap(pdev, mmio_bar, mmio_size);
Chris Wilson0673ad42016-06-24 14:00:22 +0100875 if (dev_priv->regs == NULL) {
876 DRM_ERROR("failed to map registers\n");
877
878 return -EIO;
879 }
880
881 /* Try to make sure MCHBAR is enabled before poking at it */
882 intel_setup_mchbar(dev);
883
884 return 0;
885}
886
887static void i915_mmio_cleanup(struct drm_device *dev)
888{
889 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300890 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +0100891
892 intel_teardown_mchbar(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300893 pci_iounmap(pdev, dev_priv->regs);
Chris Wilson0673ad42016-06-24 14:00:22 +0100894}
895
896/**
897 * i915_driver_init_mmio - setup device MMIO
898 * @dev_priv: device private
899 *
900 * Setup minimal device state necessary for MMIO accesses later in the
901 * initialization sequence. The setup here should avoid any other device-wide
902 * side effects or exposing the driver via kernel internal or user space
903 * interfaces.
904 */
905static int i915_driver_init_mmio(struct drm_i915_private *dev_priv)
906{
Chris Wilson91c8a322016-07-05 10:40:23 +0100907 struct drm_device *dev = &dev_priv->drm;
Chris Wilson0673ad42016-06-24 14:00:22 +0100908 int ret;
909
910 if (i915_inject_load_failure())
911 return -ENODEV;
912
913 if (i915_get_bridge_dev(dev))
914 return -EIO;
915
916 ret = i915_mmio_setup(dev);
917 if (ret < 0)
918 goto put_bridge;
919
920 intel_uncore_init(dev_priv);
921
922 return 0;
923
924put_bridge:
925 pci_dev_put(dev_priv->bridge_dev);
926
927 return ret;
928}
929
930/**
931 * i915_driver_cleanup_mmio - cleanup the setup done in i915_driver_init_mmio()
932 * @dev_priv: device private
933 */
934static void i915_driver_cleanup_mmio(struct drm_i915_private *dev_priv)
935{
Chris Wilson91c8a322016-07-05 10:40:23 +0100936 struct drm_device *dev = &dev_priv->drm;
Chris Wilson0673ad42016-06-24 14:00:22 +0100937
938 intel_uncore_fini(dev_priv);
939 i915_mmio_cleanup(dev);
940 pci_dev_put(dev_priv->bridge_dev);
941}
942
Chris Wilson94b4f3b2016-07-05 10:40:20 +0100943static void intel_sanitize_options(struct drm_i915_private *dev_priv)
944{
945 i915.enable_execlists =
946 intel_sanitize_enable_execlists(dev_priv,
947 i915.enable_execlists);
948
949 /*
950 * i915.enable_ppgtt is read-only, so do an early pass to validate the
951 * user's requested state against the hardware/driver capabilities. We
952 * do this now so that we can print out any log messages once rather
953 * than every time we check intel_enable_ppgtt().
954 */
955 i915.enable_ppgtt =
956 intel_sanitize_enable_ppgtt(dev_priv, i915.enable_ppgtt);
957 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
Chris Wilson39df9192016-07-20 13:31:57 +0100958
959 i915.semaphores = intel_sanitize_semaphores(dev_priv, i915.semaphores);
960 DRM_DEBUG_DRIVER("use GPU sempahores? %s\n", yesno(i915.semaphores));
Chris Wilson94b4f3b2016-07-05 10:40:20 +0100961}
962
Chris Wilson0673ad42016-06-24 14:00:22 +0100963/**
964 * i915_driver_init_hw - setup state requiring device access
965 * @dev_priv: device private
966 *
967 * Setup state that requires accessing the device, but doesn't require
968 * exposing the driver via kernel internal or userspace interfaces.
969 */
970static int i915_driver_init_hw(struct drm_i915_private *dev_priv)
971{
David Weinehall52a05c32016-08-22 13:32:44 +0300972 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson91c8a322016-07-05 10:40:23 +0100973 struct drm_device *dev = &dev_priv->drm;
Chris Wilson0673ad42016-06-24 14:00:22 +0100974 int ret;
975
976 if (i915_inject_load_failure())
977 return -ENODEV;
978
Chris Wilson94b4f3b2016-07-05 10:40:20 +0100979 intel_device_info_runtime_init(dev_priv);
980
981 intel_sanitize_options(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100982
Chris Wilson97d6d7a2016-08-04 07:52:22 +0100983 ret = i915_ggtt_probe_hw(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100984 if (ret)
985 return ret;
986
Chris Wilson0673ad42016-06-24 14:00:22 +0100987 /* WARNING: Apparently we must kick fbdev drivers before vgacon,
988 * otherwise the vga fbdev driver falls over. */
989 ret = i915_kick_out_firmware_fb(dev_priv);
990 if (ret) {
991 DRM_ERROR("failed to remove conflicting framebuffer drivers\n");
992 goto out_ggtt;
993 }
994
995 ret = i915_kick_out_vgacon(dev_priv);
996 if (ret) {
997 DRM_ERROR("failed to remove conflicting VGA console\n");
998 goto out_ggtt;
999 }
1000
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001001 ret = i915_ggtt_init_hw(dev_priv);
Chris Wilson0088e522016-08-04 07:52:21 +01001002 if (ret)
1003 return ret;
1004
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001005 ret = i915_ggtt_enable_hw(dev_priv);
Chris Wilson0088e522016-08-04 07:52:21 +01001006 if (ret) {
1007 DRM_ERROR("failed to enable GGTT\n");
1008 goto out_ggtt;
1009 }
1010
David Weinehall52a05c32016-08-22 13:32:44 +03001011 pci_set_master(pdev);
Chris Wilson0673ad42016-06-24 14:00:22 +01001012
1013 /* overlay on gen2 is broken and can't address above 1G */
1014 if (IS_GEN2(dev)) {
David Weinehall52a05c32016-08-22 13:32:44 +03001015 ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(30));
Chris Wilson0673ad42016-06-24 14:00:22 +01001016 if (ret) {
1017 DRM_ERROR("failed to set DMA mask\n");
1018
1019 goto out_ggtt;
1020 }
1021 }
1022
Chris Wilson0673ad42016-06-24 14:00:22 +01001023 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1024 * using 32bit addressing, overwriting memory if HWS is located
1025 * above 4GB.
1026 *
1027 * The documentation also mentions an issue with undefined
1028 * behaviour if any general state is accessed within a page above 4GB,
1029 * which also needs to be handled carefully.
1030 */
1031 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev)) {
David Weinehall52a05c32016-08-22 13:32:44 +03001032 ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
Chris Wilson0673ad42016-06-24 14:00:22 +01001033
1034 if (ret) {
1035 DRM_ERROR("failed to set DMA mask\n");
1036
1037 goto out_ggtt;
1038 }
1039 }
1040
Chris Wilson0673ad42016-06-24 14:00:22 +01001041 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY,
1042 PM_QOS_DEFAULT_VALUE);
1043
1044 intel_uncore_sanitize(dev_priv);
1045
1046 intel_opregion_setup(dev_priv);
1047
1048 i915_gem_load_init_fences(dev_priv);
1049
1050 /* On the 945G/GM, the chipset reports the MSI capability on the
1051 * integrated graphics even though the support isn't actually there
1052 * according to the published specs. It doesn't appear to function
1053 * correctly in testing on 945G.
1054 * This may be a side effect of MSI having been made available for PEG
1055 * and the registers being closely associated.
1056 *
1057 * According to chipset errata, on the 965GM, MSI interrupts may
1058 * be lost or delayed, but we use them anyways to avoid
1059 * stuck interrupts on some machines.
1060 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001061 if (!IS_I945G(dev_priv) && !IS_I945GM(dev_priv)) {
David Weinehall52a05c32016-08-22 13:32:44 +03001062 if (pci_enable_msi(pdev) < 0)
Chris Wilson0673ad42016-06-24 14:00:22 +01001063 DRM_DEBUG_DRIVER("can't enable MSI");
1064 }
1065
1066 return 0;
1067
1068out_ggtt:
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001069 i915_ggtt_cleanup_hw(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001070
1071 return ret;
1072}
1073
1074/**
1075 * i915_driver_cleanup_hw - cleanup the setup done in i915_driver_init_hw()
1076 * @dev_priv: device private
1077 */
1078static void i915_driver_cleanup_hw(struct drm_i915_private *dev_priv)
1079{
David Weinehall52a05c32016-08-22 13:32:44 +03001080 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +01001081
David Weinehall52a05c32016-08-22 13:32:44 +03001082 if (pdev->msi_enabled)
1083 pci_disable_msi(pdev);
Chris Wilson0673ad42016-06-24 14:00:22 +01001084
1085 pm_qos_remove_request(&dev_priv->pm_qos);
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001086 i915_ggtt_cleanup_hw(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001087}
1088
1089/**
1090 * i915_driver_register - register the driver with the rest of the system
1091 * @dev_priv: device private
1092 *
1093 * Perform any steps necessary to make the driver available via kernel
1094 * internal or userspace interfaces.
1095 */
1096static void i915_driver_register(struct drm_i915_private *dev_priv)
1097{
Chris Wilson91c8a322016-07-05 10:40:23 +01001098 struct drm_device *dev = &dev_priv->drm;
Chris Wilson0673ad42016-06-24 14:00:22 +01001099
1100 i915_gem_shrinker_init(dev_priv);
1101
1102 /*
1103 * Notify a valid surface after modesetting,
1104 * when running inside a VM.
1105 */
1106 if (intel_vgpu_active(dev_priv))
1107 I915_WRITE(vgtif_reg(display_ready), VGT_DRV_DISPLAY_READY);
1108
1109 /* Reveal our presence to userspace */
1110 if (drm_dev_register(dev, 0) == 0) {
1111 i915_debugfs_register(dev_priv);
David Weinehall694c2822016-08-22 13:32:43 +03001112 i915_setup_sysfs(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001113 } else
1114 DRM_ERROR("Failed to register driver for userspace access!\n");
1115
1116 if (INTEL_INFO(dev_priv)->num_pipes) {
1117 /* Must be done after probing outputs */
1118 intel_opregion_register(dev_priv);
1119 acpi_video_register();
1120 }
1121
1122 if (IS_GEN5(dev_priv))
1123 intel_gpu_ips_init(dev_priv);
1124
1125 i915_audio_component_init(dev_priv);
1126
1127 /*
1128 * Some ports require correctly set-up hpd registers for detection to
1129 * work properly (leading to ghost connected connector status), e.g. VGA
1130 * on gm45. Hence we can only set up the initial fbdev config after hpd
1131 * irqs are fully enabled. We do it last so that the async config
1132 * cannot run before the connectors are registered.
1133 */
1134 intel_fbdev_initial_config_async(dev);
1135}
1136
1137/**
1138 * i915_driver_unregister - cleanup the registration done in i915_driver_regiser()
1139 * @dev_priv: device private
1140 */
1141static void i915_driver_unregister(struct drm_i915_private *dev_priv)
1142{
1143 i915_audio_component_cleanup(dev_priv);
1144
1145 intel_gpu_ips_teardown();
1146 acpi_video_unregister();
1147 intel_opregion_unregister(dev_priv);
1148
David Weinehall694c2822016-08-22 13:32:43 +03001149 i915_teardown_sysfs(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001150 i915_debugfs_unregister(dev_priv);
Chris Wilson91c8a322016-07-05 10:40:23 +01001151 drm_dev_unregister(&dev_priv->drm);
Chris Wilson0673ad42016-06-24 14:00:22 +01001152
1153 i915_gem_shrinker_cleanup(dev_priv);
1154}
1155
1156/**
1157 * i915_driver_load - setup chip and create an initial config
1158 * @dev: DRM device
1159 * @flags: startup flags
1160 *
1161 * The driver load routine has to do several things:
1162 * - drive output discovery via intel_modeset_init()
1163 * - initialize the memory manager
1164 * - allocate initial config memory
1165 * - setup the DRM framebuffer with the allocated memory
1166 */
Chris Wilson42f55512016-06-24 14:00:26 +01001167int i915_driver_load(struct pci_dev *pdev, const struct pci_device_id *ent)
Chris Wilson0673ad42016-06-24 14:00:22 +01001168{
1169 struct drm_i915_private *dev_priv;
1170 int ret;
1171
Chris Wilsona09d0ba2016-06-24 14:00:27 +01001172 if (i915.nuclear_pageflip)
1173 driver.driver_features |= DRIVER_ATOMIC;
1174
Chris Wilson0673ad42016-06-24 14:00:22 +01001175 ret = -ENOMEM;
1176 dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL);
1177 if (dev_priv)
1178 ret = drm_dev_init(&dev_priv->drm, &driver, &pdev->dev);
1179 if (ret) {
1180 dev_printk(KERN_ERR, &pdev->dev,
1181 "[" DRM_NAME ":%s] allocation failed\n", __func__);
1182 kfree(dev_priv);
1183 return ret;
1184 }
1185
Chris Wilson0673ad42016-06-24 14:00:22 +01001186 dev_priv->drm.pdev = pdev;
1187 dev_priv->drm.dev_private = dev_priv;
Chris Wilson0673ad42016-06-24 14:00:22 +01001188
1189 ret = pci_enable_device(pdev);
1190 if (ret)
1191 goto out_free_priv;
1192
1193 pci_set_drvdata(pdev, &dev_priv->drm);
1194
1195 ret = i915_driver_init_early(dev_priv, ent);
1196 if (ret < 0)
1197 goto out_pci_disable;
1198
1199 intel_runtime_pm_get(dev_priv);
1200
1201 ret = i915_driver_init_mmio(dev_priv);
1202 if (ret < 0)
1203 goto out_runtime_pm_put;
1204
1205 ret = i915_driver_init_hw(dev_priv);
1206 if (ret < 0)
1207 goto out_cleanup_mmio;
1208
1209 /*
1210 * TODO: move the vblank init and parts of modeset init steps into one
1211 * of the i915_driver_init_/i915_driver_register functions according
1212 * to the role/effect of the given init step.
1213 */
1214 if (INTEL_INFO(dev_priv)->num_pipes) {
Chris Wilson91c8a322016-07-05 10:40:23 +01001215 ret = drm_vblank_init(&dev_priv->drm,
Chris Wilson0673ad42016-06-24 14:00:22 +01001216 INTEL_INFO(dev_priv)->num_pipes);
1217 if (ret)
1218 goto out_cleanup_hw;
1219 }
1220
Chris Wilson91c8a322016-07-05 10:40:23 +01001221 ret = i915_load_modeset_init(&dev_priv->drm);
Chris Wilson0673ad42016-06-24 14:00:22 +01001222 if (ret < 0)
1223 goto out_cleanup_vblank;
1224
1225 i915_driver_register(dev_priv);
1226
1227 intel_runtime_pm_enable(dev_priv);
1228
Chris Wilsonbc5ca472016-08-25 08:23:14 +01001229 /* Everything is in place, we can now relax! */
1230 DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n",
1231 driver.name, driver.major, driver.minor, driver.patchlevel,
1232 driver.date, pci_name(pdev), dev_priv->drm.primary->index);
1233
Chris Wilson0673ad42016-06-24 14:00:22 +01001234 intel_runtime_pm_put(dev_priv);
1235
1236 return 0;
1237
1238out_cleanup_vblank:
Chris Wilson91c8a322016-07-05 10:40:23 +01001239 drm_vblank_cleanup(&dev_priv->drm);
Chris Wilson0673ad42016-06-24 14:00:22 +01001240out_cleanup_hw:
1241 i915_driver_cleanup_hw(dev_priv);
1242out_cleanup_mmio:
1243 i915_driver_cleanup_mmio(dev_priv);
1244out_runtime_pm_put:
1245 intel_runtime_pm_put(dev_priv);
1246 i915_driver_cleanup_early(dev_priv);
1247out_pci_disable:
1248 pci_disable_device(pdev);
1249out_free_priv:
1250 i915_load_error(dev_priv, "Device initialization failed (%d)\n", ret);
1251 drm_dev_unref(&dev_priv->drm);
1252 return ret;
1253}
1254
Chris Wilson42f55512016-06-24 14:00:26 +01001255void i915_driver_unload(struct drm_device *dev)
Chris Wilson0673ad42016-06-24 14:00:22 +01001256{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001257 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +03001258 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +01001259
1260 intel_fbdev_fini(dev);
1261
Chris Wilson42f55512016-06-24 14:00:26 +01001262 if (i915_gem_suspend(dev))
1263 DRM_ERROR("failed to idle hardware; continuing to unload!\n");
Chris Wilson0673ad42016-06-24 14:00:22 +01001264
1265 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
1266
1267 i915_driver_unregister(dev_priv);
1268
1269 drm_vblank_cleanup(dev);
1270
1271 intel_modeset_cleanup(dev);
1272
1273 /*
1274 * free the memory space allocated for the child device
1275 * config parsed from VBT
1276 */
1277 if (dev_priv->vbt.child_dev && dev_priv->vbt.child_dev_num) {
1278 kfree(dev_priv->vbt.child_dev);
1279 dev_priv->vbt.child_dev = NULL;
1280 dev_priv->vbt.child_dev_num = 0;
1281 }
1282 kfree(dev_priv->vbt.sdvo_lvds_vbt_mode);
1283 dev_priv->vbt.sdvo_lvds_vbt_mode = NULL;
1284 kfree(dev_priv->vbt.lfp_lvds_vbt_mode);
1285 dev_priv->vbt.lfp_lvds_vbt_mode = NULL;
1286
David Weinehall52a05c32016-08-22 13:32:44 +03001287 vga_switcheroo_unregister_client(pdev);
1288 vga_client_register(pdev, NULL, NULL, NULL);
Chris Wilson0673ad42016-06-24 14:00:22 +01001289
1290 intel_csr_ucode_fini(dev_priv);
1291
1292 /* Free error state after interrupts are fully disabled. */
1293 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
1294 i915_destroy_error_state(dev);
1295
1296 /* Flush any outstanding unpin_work. */
Chris Wilsonb7137e02016-07-13 09:10:37 +01001297 drain_workqueue(dev_priv->wq);
Chris Wilson0673ad42016-06-24 14:00:22 +01001298
1299 intel_guc_fini(dev);
1300 i915_gem_fini(dev);
1301 intel_fbc_cleanup_cfb(dev_priv);
1302
1303 intel_power_domains_fini(dev_priv);
1304
1305 i915_driver_cleanup_hw(dev_priv);
1306 i915_driver_cleanup_mmio(dev_priv);
1307
1308 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
1309
1310 i915_driver_cleanup_early(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001311}
1312
1313static int i915_driver_open(struct drm_device *dev, struct drm_file *file)
1314{
1315 int ret;
1316
1317 ret = i915_gem_open(dev, file);
1318 if (ret)
1319 return ret;
1320
1321 return 0;
1322}
1323
1324/**
1325 * i915_driver_lastclose - clean up after all DRM clients have exited
1326 * @dev: DRM device
1327 *
1328 * Take care of cleaning up after all DRM clients have exited. In the
1329 * mode setting case, we want to restore the kernel's initial mode (just
1330 * in case the last client left us in a bad state).
1331 *
1332 * Additionally, in the non-mode setting case, we'll tear down the GTT
1333 * and DMA structures, since the kernel won't be using them, and clea
1334 * up any GEM state.
1335 */
1336static void i915_driver_lastclose(struct drm_device *dev)
1337{
1338 intel_fbdev_restore_mode(dev);
1339 vga_switcheroo_process_delayed_switch();
1340}
1341
1342static void i915_driver_preclose(struct drm_device *dev, struct drm_file *file)
1343{
1344 mutex_lock(&dev->struct_mutex);
1345 i915_gem_context_close(dev, file);
1346 i915_gem_release(dev, file);
1347 mutex_unlock(&dev->struct_mutex);
1348}
1349
1350static void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
1351{
1352 struct drm_i915_file_private *file_priv = file->driver_priv;
1353
1354 kfree(file_priv);
1355}
1356
Imre Deak07f9cd02014-08-18 14:42:45 +03001357static void intel_suspend_encoders(struct drm_i915_private *dev_priv)
1358{
Chris Wilson91c8a322016-07-05 10:40:23 +01001359 struct drm_device *dev = &dev_priv->drm;
Jani Nikula19c80542015-12-16 12:48:16 +02001360 struct intel_encoder *encoder;
Imre Deak07f9cd02014-08-18 14:42:45 +03001361
1362 drm_modeset_lock_all(dev);
Jani Nikula19c80542015-12-16 12:48:16 +02001363 for_each_intel_encoder(dev, encoder)
1364 if (encoder->suspend)
1365 encoder->suspend(encoder);
Imre Deak07f9cd02014-08-18 14:42:45 +03001366 drm_modeset_unlock_all(dev);
1367}
1368
Paulo Zanoni1a5df182014-10-27 17:54:32 -02001369static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
1370 bool rpm_resume);
Imre Deak507e1262016-04-20 20:27:54 +03001371static int vlv_suspend_complete(struct drm_i915_private *dev_priv);
Suketu Shahf75a1982015-04-16 14:22:11 +05301372
Imre Deakbc872292015-11-18 17:32:30 +02001373static bool suspend_to_idle(struct drm_i915_private *dev_priv)
1374{
1375#if IS_ENABLED(CONFIG_ACPI_SLEEP)
1376 if (acpi_target_system_state() < ACPI_STATE_S3)
1377 return true;
1378#endif
1379 return false;
1380}
Sagar Kambleebc32822014-08-13 23:07:05 +05301381
Imre Deak5e365c32014-10-23 19:23:25 +03001382static int i915_drm_suspend(struct drm_device *dev)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001383{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001384 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +03001385 struct pci_dev *pdev = dev_priv->drm.pdev;
Jesse Barnese5747e32014-06-12 08:35:47 -07001386 pci_power_t opregion_target_state;
Daniel Vetterd5818932015-02-23 12:03:26 +01001387 int error;
Rafael J. Wysocki61caf872010-02-18 23:06:27 +01001388
Zhang Ruib8efb172013-02-05 15:41:53 +08001389 /* ignore lid events during suspend */
1390 mutex_lock(&dev_priv->modeset_restore_lock);
1391 dev_priv->modeset_restore = MODESET_SUSPENDED;
1392 mutex_unlock(&dev_priv->modeset_restore_lock);
1393
Imre Deak1f814da2015-12-16 02:52:19 +02001394 disable_rpm_wakeref_asserts(dev_priv);
1395
Paulo Zanonic67a4702013-08-19 13:18:09 -03001396 /* We do a lot of poking in a lot of registers, make sure they work
1397 * properly. */
Imre Deakda7e29b2014-02-18 00:02:02 +02001398 intel_display_set_init_power(dev_priv, true);
Paulo Zanonicb107992013-01-25 16:59:15 -02001399
Dave Airlie5bcf7192010-12-07 09:20:40 +10001400 drm_kms_helper_poll_disable(dev);
1401
David Weinehall52a05c32016-08-22 13:32:44 +03001402 pci_save_state(pdev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001403
Daniel Vetterd5818932015-02-23 12:03:26 +01001404 error = i915_gem_suspend(dev);
1405 if (error) {
David Weinehall52a05c32016-08-22 13:32:44 +03001406 dev_err(&pdev->dev,
Daniel Vetterd5818932015-02-23 12:03:26 +01001407 "GEM idle failed, resume might fail\n");
Imre Deak1f814da2015-12-16 02:52:19 +02001408 goto out;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001409 }
1410
Alex Daia1c41992015-09-30 09:46:37 -07001411 intel_guc_suspend(dev);
1412
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02001413 intel_display_suspend(dev);
Daniel Vetterd5818932015-02-23 12:03:26 +01001414
1415 intel_dp_mst_suspend(dev);
1416
1417 intel_runtime_pm_disable_interrupts(dev_priv);
1418 intel_hpd_cancel_work(dev_priv);
1419
1420 intel_suspend_encoders(dev_priv);
1421
1422 intel_suspend_hw(dev);
1423
Ben Widawsky828c7902013-10-16 09:21:30 -07001424 i915_gem_suspend_gtt_mappings(dev);
1425
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001426 i915_save_state(dev);
1427
Imre Deakbc872292015-11-18 17:32:30 +02001428 opregion_target_state = suspend_to_idle(dev_priv) ? PCI_D1 : PCI_D3cold;
Chris Wilson6f9f4b72016-05-23 15:08:09 +01001429 intel_opregion_notify_adapter(dev_priv, opregion_target_state);
Jesse Barnese5747e32014-06-12 08:35:47 -07001430
Chris Wilsondc979972016-05-10 14:10:04 +01001431 intel_uncore_forcewake_reset(dev_priv, false);
Chris Wilson03d92e42016-05-23 15:08:10 +01001432 intel_opregion_unregister(dev_priv);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001433
Chris Wilson82e3b8c2014-08-13 13:09:46 +01001434 intel_fbdev_set_suspend(dev, FBINFO_STATE_SUSPENDED, true);
Dave Airlie3fa016a2012-03-28 10:48:49 +01001435
Mika Kuoppala62d5d692014-02-25 17:11:28 +02001436 dev_priv->suspend_count++;
1437
Kristen Carlson Accardi85e90672014-06-12 08:35:44 -07001438 intel_display_set_init_power(dev_priv, false);
1439
Imre Deakf74ed082016-04-18 14:48:21 +03001440 intel_csr_ucode_suspend(dev_priv);
Imre Deakf514c2d2015-10-28 23:59:06 +02001441
Imre Deak1f814da2015-12-16 02:52:19 +02001442out:
1443 enable_rpm_wakeref_asserts(dev_priv);
1444
1445 return error;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001446}
1447
David Weinehallc49d13e2016-08-22 13:32:42 +03001448static int i915_drm_suspend_late(struct drm_device *dev, bool hibernation)
Imre Deakc3c09c92014-10-23 19:23:15 +03001449{
David Weinehallc49d13e2016-08-22 13:32:42 +03001450 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +03001451 struct pci_dev *pdev = dev_priv->drm.pdev;
Imre Deakbc872292015-11-18 17:32:30 +02001452 bool fw_csr;
Imre Deakc3c09c92014-10-23 19:23:15 +03001453 int ret;
1454
Imre Deak1f814da2015-12-16 02:52:19 +02001455 disable_rpm_wakeref_asserts(dev_priv);
1456
Imre Deaka7c81252016-04-01 16:02:38 +03001457 fw_csr = !IS_BROXTON(dev_priv) &&
1458 suspend_to_idle(dev_priv) && dev_priv->csr.dmc_payload;
Imre Deakbc872292015-11-18 17:32:30 +02001459 /*
1460 * In case of firmware assisted context save/restore don't manually
1461 * deinit the power domains. This also means the CSR/DMC firmware will
1462 * stay active, it will power down any HW resources as required and
1463 * also enable deeper system power states that would be blocked if the
1464 * firmware was inactive.
1465 */
1466 if (!fw_csr)
1467 intel_power_domains_suspend(dev_priv);
Imre Deak73dfc222015-11-17 17:33:53 +02001468
Imre Deak507e1262016-04-20 20:27:54 +03001469 ret = 0;
Imre Deakb8aea3d12016-04-20 20:27:55 +03001470 if (IS_BROXTON(dev_priv))
Imre Deak507e1262016-04-20 20:27:54 +03001471 bxt_enable_dc9(dev_priv);
Imre Deakb8aea3d12016-04-20 20:27:55 +03001472 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Imre Deak507e1262016-04-20 20:27:54 +03001473 hsw_enable_pc8(dev_priv);
1474 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
1475 ret = vlv_suspend_complete(dev_priv);
Imre Deakc3c09c92014-10-23 19:23:15 +03001476
1477 if (ret) {
1478 DRM_ERROR("Suspend complete failed: %d\n", ret);
Imre Deakbc872292015-11-18 17:32:30 +02001479 if (!fw_csr)
1480 intel_power_domains_init_hw(dev_priv, true);
Imre Deakc3c09c92014-10-23 19:23:15 +03001481
Imre Deak1f814da2015-12-16 02:52:19 +02001482 goto out;
Imre Deakc3c09c92014-10-23 19:23:15 +03001483 }
1484
David Weinehall52a05c32016-08-22 13:32:44 +03001485 pci_disable_device(pdev);
Imre Deakab3be732015-03-02 13:04:41 +02001486 /*
Imre Deak54875572015-06-30 17:06:47 +03001487 * During hibernation on some platforms the BIOS may try to access
Imre Deakab3be732015-03-02 13:04:41 +02001488 * the device even though it's already in D3 and hang the machine. So
1489 * leave the device in D0 on those platforms and hope the BIOS will
Imre Deak54875572015-06-30 17:06:47 +03001490 * power down the device properly. The issue was seen on multiple old
1491 * GENs with different BIOS vendors, so having an explicit blacklist
1492 * is inpractical; apply the workaround on everything pre GEN6. The
1493 * platforms where the issue was seen:
1494 * Lenovo Thinkpad X301, X61s, X60, T60, X41
1495 * Fujitsu FSC S7110
1496 * Acer Aspire 1830T
Imre Deakab3be732015-03-02 13:04:41 +02001497 */
Imre Deak54875572015-06-30 17:06:47 +03001498 if (!(hibernation && INTEL_INFO(dev_priv)->gen < 6))
David Weinehall52a05c32016-08-22 13:32:44 +03001499 pci_set_power_state(pdev, PCI_D3hot);
Imre Deakc3c09c92014-10-23 19:23:15 +03001500
Imre Deakbc872292015-11-18 17:32:30 +02001501 dev_priv->suspended_to_idle = suspend_to_idle(dev_priv);
1502
Imre Deak1f814da2015-12-16 02:52:19 +02001503out:
1504 enable_rpm_wakeref_asserts(dev_priv);
1505
1506 return ret;
Imre Deakc3c09c92014-10-23 19:23:15 +03001507}
1508
Maarten Lankhorst1751fcf2015-08-27 15:15:15 +02001509int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001510{
1511 int error;
1512
Chris Wilsonded8b072016-07-05 10:40:22 +01001513 if (!dev) {
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001514 DRM_ERROR("dev: %p\n", dev);
Keith Packard1ae8c0a2009-06-28 15:42:17 -07001515 DRM_ERROR("DRM not initialized, aborting suspend.\n");
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001516 return -ENODEV;
1517 }
1518
Imre Deak0b14cbd2014-09-10 18:16:55 +03001519 if (WARN_ON_ONCE(state.event != PM_EVENT_SUSPEND &&
1520 state.event != PM_EVENT_FREEZE))
1521 return -EINVAL;
Dave Airlie5bcf7192010-12-07 09:20:40 +10001522
1523 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1524 return 0;
Chris Wilson6eecba32010-09-08 09:45:11 +01001525
Imre Deak5e365c32014-10-23 19:23:25 +03001526 error = i915_drm_suspend(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001527 if (error)
1528 return error;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001529
Imre Deakab3be732015-03-02 13:04:41 +02001530 return i915_drm_suspend_late(dev, false);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001531}
1532
Imre Deak5e365c32014-10-23 19:23:25 +03001533static int i915_drm_resume(struct drm_device *dev)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001534{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001535 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläac840ae2016-05-06 21:35:55 +03001536 int ret;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001537
Imre Deak1f814da2015-12-16 02:52:19 +02001538 disable_rpm_wakeref_asserts(dev_priv);
Chris Wilsonabc80ab2016-08-24 10:27:01 +01001539 intel_sanitize_gt_powersave(dev_priv);
Imre Deak1f814da2015-12-16 02:52:19 +02001540
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001541 ret = i915_ggtt_enable_hw(dev_priv);
Ville Syrjäläac840ae2016-05-06 21:35:55 +03001542 if (ret)
1543 DRM_ERROR("failed to re-enable GGTT\n");
1544
Imre Deakf74ed082016-04-18 14:48:21 +03001545 intel_csr_ucode_resume(dev_priv);
1546
Chris Wilson5ab57c72016-07-15 14:56:20 +01001547 i915_gem_resume(dev);
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -03001548
Rafael J. Wysocki61caf872010-02-18 23:06:27 +01001549 i915_restore_state(dev);
Imre Deak8090ba82016-08-10 14:07:33 +03001550 intel_pps_unlock_regs_wa(dev_priv);
Chris Wilson6f9f4b72016-05-23 15:08:09 +01001551 intel_opregion_setup(dev_priv);
Rafael J. Wysocki61caf872010-02-18 23:06:27 +01001552
Daniel Vetterd5818932015-02-23 12:03:26 +01001553 intel_init_pch_refclk(dev);
1554 drm_mode_config_reset(dev);
Chris Wilson1833b132012-05-09 11:56:28 +01001555
Peter Antoine364aece2015-05-11 08:50:45 +01001556 /*
1557 * Interrupts have to be enabled before any batches are run. If not the
1558 * GPU will hang. i915_gem_init_hw() will initiate batches to
1559 * update/restore the context.
1560 *
1561 * Modeset enabling in intel_modeset_init_hw() also needs working
1562 * interrupts.
1563 */
1564 intel_runtime_pm_enable_interrupts(dev_priv);
1565
Daniel Vetterd5818932015-02-23 12:03:26 +01001566 mutex_lock(&dev->struct_mutex);
1567 if (i915_gem_init_hw(dev)) {
1568 DRM_ERROR("failed to re-initialize GPU, declaring wedged!\n");
Chris Wilson821ed7d2016-09-09 14:11:53 +01001569 i915_gem_set_wedged(dev_priv);
Jesse Barnesd5bb0812011-01-05 12:01:26 -08001570 }
Daniel Vetterd5818932015-02-23 12:03:26 +01001571 mutex_unlock(&dev->struct_mutex);
1572
Alex Daia1c41992015-09-30 09:46:37 -07001573 intel_guc_resume(dev);
1574
Daniel Vetterd5818932015-02-23 12:03:26 +01001575 intel_modeset_init_hw(dev);
1576
1577 spin_lock_irq(&dev_priv->irq_lock);
1578 if (dev_priv->display.hpd_irq_setup)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01001579 dev_priv->display.hpd_irq_setup(dev_priv);
Daniel Vetterd5818932015-02-23 12:03:26 +01001580 spin_unlock_irq(&dev_priv->irq_lock);
1581
Daniel Vetterd5818932015-02-23 12:03:26 +01001582 intel_dp_mst_resume(dev);
1583
Lyudea16b7652016-03-11 10:57:01 -05001584 intel_display_resume(dev);
1585
Daniel Vetterd5818932015-02-23 12:03:26 +01001586 /*
1587 * ... but also need to make sure that hotplug processing
1588 * doesn't cause havoc. Like in the driver load code we don't
1589 * bother with the tiny race here where we might loose hotplug
1590 * notifications.
1591 * */
1592 intel_hpd_init(dev_priv);
1593 /* Config may have changed between suspend and resume */
1594 drm_helper_hpd_irq_event(dev);
Jesse Barnes1daed3f2011-01-05 12:01:25 -08001595
Chris Wilson03d92e42016-05-23 15:08:10 +01001596 intel_opregion_register(dev_priv);
Chris Wilson44834a62010-08-19 16:09:23 +01001597
Chris Wilson82e3b8c2014-08-13 13:09:46 +01001598 intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING, false);
Jesse Barnes073f34d2012-11-02 11:13:59 -07001599
Zhang Ruib8efb172013-02-05 15:41:53 +08001600 mutex_lock(&dev_priv->modeset_restore_lock);
1601 dev_priv->modeset_restore = MODESET_DONE;
1602 mutex_unlock(&dev_priv->modeset_restore_lock);
Paulo Zanoni8a187452013-12-06 20:32:13 -02001603
Chris Wilson6f9f4b72016-05-23 15:08:09 +01001604 intel_opregion_notify_adapter(dev_priv, PCI_D0);
Jesse Barnese5747e32014-06-12 08:35:47 -07001605
Chris Wilson54b4f682016-07-21 21:16:19 +01001606 intel_autoenable_gt_powersave(dev_priv);
Imre Deakee6f2802014-10-23 19:23:22 +03001607 drm_kms_helper_poll_enable(dev);
1608
Imre Deak1f814da2015-12-16 02:52:19 +02001609 enable_rpm_wakeref_asserts(dev_priv);
1610
Chris Wilson074c6ad2014-04-09 09:19:43 +01001611 return 0;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001612}
1613
Imre Deak5e365c32014-10-23 19:23:25 +03001614static int i915_drm_resume_early(struct drm_device *dev)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001615{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001616 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +03001617 struct pci_dev *pdev = dev_priv->drm.pdev;
Imre Deak44410cd2016-04-18 14:45:54 +03001618 int ret;
Imre Deak36d61e62014-10-23 19:23:24 +03001619
Imre Deak76c4b252014-04-01 19:55:22 +03001620 /*
1621 * We have a resume ordering issue with the snd-hda driver also
1622 * requiring our device to be power up. Due to the lack of a
1623 * parent/child relationship we currently solve this with an early
1624 * resume hook.
1625 *
1626 * FIXME: This should be solved with a special hdmi sink device or
1627 * similar so that power domains can be employed.
1628 */
Imre Deak44410cd2016-04-18 14:45:54 +03001629
1630 /*
1631 * Note that we need to set the power state explicitly, since we
1632 * powered off the device during freeze and the PCI core won't power
1633 * it back up for us during thaw. Powering off the device during
1634 * freeze is not a hard requirement though, and during the
1635 * suspend/resume phases the PCI core makes sure we get here with the
1636 * device powered on. So in case we change our freeze logic and keep
1637 * the device powered we can also remove the following set power state
1638 * call.
1639 */
David Weinehall52a05c32016-08-22 13:32:44 +03001640 ret = pci_set_power_state(pdev, PCI_D0);
Imre Deak44410cd2016-04-18 14:45:54 +03001641 if (ret) {
1642 DRM_ERROR("failed to set PCI D0 power state (%d)\n", ret);
1643 goto out;
1644 }
1645
1646 /*
1647 * Note that pci_enable_device() first enables any parent bridge
1648 * device and only then sets the power state for this device. The
1649 * bridge enabling is a nop though, since bridge devices are resumed
1650 * first. The order of enabling power and enabling the device is
1651 * imposed by the PCI core as described above, so here we preserve the
1652 * same order for the freeze/thaw phases.
1653 *
1654 * TODO: eventually we should remove pci_disable_device() /
1655 * pci_enable_enable_device() from suspend/resume. Due to how they
1656 * depend on the device enable refcount we can't anyway depend on them
1657 * disabling/enabling the device.
1658 */
David Weinehall52a05c32016-08-22 13:32:44 +03001659 if (pci_enable_device(pdev)) {
Imre Deakbc872292015-11-18 17:32:30 +02001660 ret = -EIO;
1661 goto out;
1662 }
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001663
David Weinehall52a05c32016-08-22 13:32:44 +03001664 pci_set_master(pdev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001665
Imre Deak1f814da2015-12-16 02:52:19 +02001666 disable_rpm_wakeref_asserts(dev_priv);
1667
Wayne Boyer666a4532015-12-09 12:29:35 -08001668 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Paulo Zanoni1a5df182014-10-27 17:54:32 -02001669 ret = vlv_resume_prepare(dev_priv, false);
Imre Deak36d61e62014-10-23 19:23:24 +03001670 if (ret)
Damien Lespiauff0b1872015-05-20 14:45:15 +01001671 DRM_ERROR("Resume prepare failed: %d, continuing anyway\n",
1672 ret);
Imre Deak36d61e62014-10-23 19:23:24 +03001673
Chris Wilsondc979972016-05-10 14:10:04 +01001674 intel_uncore_early_sanitize(dev_priv, true);
Paulo Zanoniefee8332014-10-27 17:54:33 -02001675
Chris Wilsondc979972016-05-10 14:10:04 +01001676 if (IS_BROXTON(dev_priv)) {
Imre Deakda2f41d2016-04-20 20:27:56 +03001677 if (!dev_priv->suspended_to_idle)
1678 gen9_sanitize_dc_state(dev_priv);
Imre Deak507e1262016-04-20 20:27:54 +03001679 bxt_disable_dc9(dev_priv);
Imre Deakda2f41d2016-04-20 20:27:56 +03001680 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Damien Lespiaua9a6b732015-05-20 14:45:14 +01001681 hsw_disable_pc8(dev_priv);
Imre Deakda2f41d2016-04-20 20:27:56 +03001682 }
Paulo Zanoniefee8332014-10-27 17:54:33 -02001683
Chris Wilsondc979972016-05-10 14:10:04 +01001684 intel_uncore_sanitize(dev_priv);
Imre Deakbc872292015-11-18 17:32:30 +02001685
Imre Deaka7c81252016-04-01 16:02:38 +03001686 if (IS_BROXTON(dev_priv) ||
1687 !(dev_priv->suspended_to_idle && dev_priv->csr.dmc_payload))
Imre Deakbc872292015-11-18 17:32:30 +02001688 intel_power_domains_init_hw(dev_priv, true);
1689
Imre Deak6e35e8a2016-04-18 10:04:19 +03001690 enable_rpm_wakeref_asserts(dev_priv);
1691
Imre Deakbc872292015-11-18 17:32:30 +02001692out:
1693 dev_priv->suspended_to_idle = false;
Imre Deak36d61e62014-10-23 19:23:24 +03001694
1695 return ret;
Imre Deak76c4b252014-04-01 19:55:22 +03001696}
1697
Maarten Lankhorst1751fcf2015-08-27 15:15:15 +02001698int i915_resume_switcheroo(struct drm_device *dev)
Imre Deak76c4b252014-04-01 19:55:22 +03001699{
Imre Deak50a00722014-10-23 19:23:17 +03001700 int ret;
Imre Deak76c4b252014-04-01 19:55:22 +03001701
Imre Deak097dd832014-10-23 19:23:19 +03001702 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1703 return 0;
1704
Imre Deak5e365c32014-10-23 19:23:25 +03001705 ret = i915_drm_resume_early(dev);
Imre Deak50a00722014-10-23 19:23:17 +03001706 if (ret)
1707 return ret;
1708
Imre Deak5a175142014-10-23 19:23:18 +03001709 return i915_drm_resume(dev);
1710}
1711
Chris Wilson9e60ab02016-10-04 21:11:28 +01001712static void disable_engines_irq(struct drm_i915_private *dev_priv)
1713{
1714 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05301715 enum intel_engine_id id;
Chris Wilson9e60ab02016-10-04 21:11:28 +01001716
1717 /* Ensure irq handler finishes, and not run again. */
1718 disable_irq(dev_priv->drm.irq);
Akash Goel3b3f1652016-10-13 22:44:48 +05301719 for_each_engine(engine, dev_priv, id)
Chris Wilson9e60ab02016-10-04 21:11:28 +01001720 tasklet_kill(&engine->irq_tasklet);
1721}
1722
1723static void enable_engines_irq(struct drm_i915_private *dev_priv)
1724{
1725 enable_irq(dev_priv->drm.irq);
1726}
1727
Ben Gamari11ed50e2009-09-14 17:48:45 -04001728/**
Eugeni Dodonovf3953dc2011-11-28 16:15:17 -02001729 * i915_reset - reset chip after a hang
Ben Gamari11ed50e2009-09-14 17:48:45 -04001730 * @dev: drm device to reset
Ben Gamari11ed50e2009-09-14 17:48:45 -04001731 *
Chris Wilson780f2622016-09-09 14:11:52 +01001732 * Reset the chip. Useful if a hang is detected. Marks the device as wedged
1733 * on failure.
Ben Gamari11ed50e2009-09-14 17:48:45 -04001734 *
Chris Wilson221fe792016-09-09 14:11:51 +01001735 * Caller must hold the struct_mutex.
1736 *
Ben Gamari11ed50e2009-09-14 17:48:45 -04001737 * Procedure is fairly simple:
1738 * - reset the chip using the reset reg
1739 * - re-init context state
1740 * - re-init hardware status page
1741 * - re-init ring buffer
1742 * - re-init interrupt state
1743 * - re-init display
1744 */
Chris Wilson780f2622016-09-09 14:11:52 +01001745void i915_reset(struct drm_i915_private *dev_priv)
Ben Gamari11ed50e2009-09-14 17:48:45 -04001746{
Chris Wilson91c8a322016-07-05 10:40:23 +01001747 struct drm_device *dev = &dev_priv->drm;
Chris Wilsond98c52c2016-04-13 17:35:05 +01001748 struct i915_gpu_error *error = &dev_priv->gpu_error;
Kenneth Graunke0573ed42010-09-11 03:17:19 -07001749 int ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -04001750
Chris Wilson221fe792016-09-09 14:11:51 +01001751 lockdep_assert_held(&dev->struct_mutex);
1752
1753 if (!test_and_clear_bit(I915_RESET_IN_PROGRESS, &error->flags))
Chris Wilson780f2622016-09-09 14:11:52 +01001754 return;
Ben Gamari11ed50e2009-09-14 17:48:45 -04001755
Chris Wilsond98c52c2016-04-13 17:35:05 +01001756 /* Clear any previous failed attempts at recovery. Time to try again. */
Chris Wilson8af29b02016-09-09 14:11:47 +01001757 __clear_bit(I915_WEDGED, &error->flags);
1758 error->reset_count++;
Chris Wilsond98c52c2016-04-13 17:35:05 +01001759
Chris Wilson7b4d3a12016-07-04 08:08:37 +01001760 pr_notice("drm/i915: Resetting chip after gpu hang\n");
Chris Wilson9e60ab02016-10-04 21:11:28 +01001761
1762 disable_engines_irq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01001763 ret = intel_gpu_reset(dev_priv, ALL_ENGINES);
Chris Wilson9e60ab02016-10-04 21:11:28 +01001764 enable_engines_irq(dev_priv);
1765
Kenneth Graunke0573ed42010-09-11 03:17:19 -07001766 if (ret) {
Chris Wilson804e59a2016-04-13 17:35:09 +01001767 if (ret != -ENODEV)
1768 DRM_ERROR("Failed to reset chip: %i\n", ret);
1769 else
1770 DRM_DEBUG_DRIVER("GPU reset disabled\n");
Chris Wilsond98c52c2016-04-13 17:35:05 +01001771 goto error;
Ben Gamari11ed50e2009-09-14 17:48:45 -04001772 }
1773
Chris Wilson821ed7d2016-09-09 14:11:53 +01001774 i915_gem_reset(dev_priv);
Ville Syrjälä1362b772014-11-26 17:07:29 +02001775 intel_overlay_reset(dev_priv);
1776
Ben Gamari11ed50e2009-09-14 17:48:45 -04001777 /* Ok, now get things going again... */
1778
1779 /*
1780 * Everything depends on having the GTT running, so we need to start
1781 * there. Fortunately we don't need to do this unless we reset the
1782 * chip at a PCI level.
1783 *
1784 * Next we need to restore the context, but we don't use those
1785 * yet either...
1786 *
1787 * Ring buffer needs to be re-initialized in the KMS case, or if X
1788 * was running at the time of the reset (i.e. we weren't VT
1789 * switched away).
1790 */
Daniel Vetter33d30a92015-02-23 12:03:27 +01001791 ret = i915_gem_init_hw(dev);
Daniel Vetter33d30a92015-02-23 12:03:27 +01001792 if (ret) {
1793 DRM_ERROR("Failed hw init on reset %d\n", ret);
Chris Wilsond98c52c2016-04-13 17:35:05 +01001794 goto error;
Ben Gamari11ed50e2009-09-14 17:48:45 -04001795 }
1796
Chris Wilson780f2622016-09-09 14:11:52 +01001797wakeup:
1798 wake_up_bit(&error->flags, I915_RESET_IN_PROGRESS);
1799 return;
Chris Wilsond98c52c2016-04-13 17:35:05 +01001800
1801error:
Chris Wilson821ed7d2016-09-09 14:11:53 +01001802 i915_gem_set_wedged(dev_priv);
Chris Wilson780f2622016-09-09 14:11:52 +01001803 goto wakeup;
Ben Gamari11ed50e2009-09-14 17:48:45 -04001804}
1805
David Weinehallc49d13e2016-08-22 13:32:42 +03001806static int i915_pm_suspend(struct device *kdev)
Kristian Høgsberg112b7152009-01-04 16:55:33 -05001807{
David Weinehallc49d13e2016-08-22 13:32:42 +03001808 struct pci_dev *pdev = to_pci_dev(kdev);
1809 struct drm_device *dev = pci_get_drvdata(pdev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -05001810
David Weinehallc49d13e2016-08-22 13:32:42 +03001811 if (!dev) {
1812 dev_err(kdev, "DRM not initialized, aborting suspend.\n");
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001813 return -ENODEV;
1814 }
Kristian Høgsberg112b7152009-01-04 16:55:33 -05001815
David Weinehallc49d13e2016-08-22 13:32:42 +03001816 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Dave Airlie5bcf7192010-12-07 09:20:40 +10001817 return 0;
1818
David Weinehallc49d13e2016-08-22 13:32:42 +03001819 return i915_drm_suspend(dev);
Imre Deak76c4b252014-04-01 19:55:22 +03001820}
1821
David Weinehallc49d13e2016-08-22 13:32:42 +03001822static int i915_pm_suspend_late(struct device *kdev)
Imre Deak76c4b252014-04-01 19:55:22 +03001823{
David Weinehallc49d13e2016-08-22 13:32:42 +03001824 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Imre Deak76c4b252014-04-01 19:55:22 +03001825
1826 /*
Damien Lespiauc965d9952015-05-18 19:53:48 +01001827 * We have a suspend ordering issue with the snd-hda driver also
Imre Deak76c4b252014-04-01 19:55:22 +03001828 * requiring our device to be power up. Due to the lack of a
1829 * parent/child relationship we currently solve this with an late
1830 * suspend hook.
1831 *
1832 * FIXME: This should be solved with a special hdmi sink device or
1833 * similar so that power domains can be employed.
1834 */
David Weinehallc49d13e2016-08-22 13:32:42 +03001835 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Imre Deak76c4b252014-04-01 19:55:22 +03001836 return 0;
Kristian Høgsberg112b7152009-01-04 16:55:33 -05001837
David Weinehallc49d13e2016-08-22 13:32:42 +03001838 return i915_drm_suspend_late(dev, false);
Imre Deakab3be732015-03-02 13:04:41 +02001839}
1840
David Weinehallc49d13e2016-08-22 13:32:42 +03001841static int i915_pm_poweroff_late(struct device *kdev)
Imre Deakab3be732015-03-02 13:04:41 +02001842{
David Weinehallc49d13e2016-08-22 13:32:42 +03001843 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Imre Deakab3be732015-03-02 13:04:41 +02001844
David Weinehallc49d13e2016-08-22 13:32:42 +03001845 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Imre Deakab3be732015-03-02 13:04:41 +02001846 return 0;
1847
David Weinehallc49d13e2016-08-22 13:32:42 +03001848 return i915_drm_suspend_late(dev, true);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +08001849}
1850
David Weinehallc49d13e2016-08-22 13:32:42 +03001851static int i915_pm_resume_early(struct device *kdev)
Imre Deak76c4b252014-04-01 19:55:22 +03001852{
David Weinehallc49d13e2016-08-22 13:32:42 +03001853 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Imre Deak76c4b252014-04-01 19:55:22 +03001854
David Weinehallc49d13e2016-08-22 13:32:42 +03001855 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Imre Deak097dd832014-10-23 19:23:19 +03001856 return 0;
1857
David Weinehallc49d13e2016-08-22 13:32:42 +03001858 return i915_drm_resume_early(dev);
Imre Deak76c4b252014-04-01 19:55:22 +03001859}
1860
David Weinehallc49d13e2016-08-22 13:32:42 +03001861static int i915_pm_resume(struct device *kdev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +08001862{
David Weinehallc49d13e2016-08-22 13:32:42 +03001863 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01001864
David Weinehallc49d13e2016-08-22 13:32:42 +03001865 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Imre Deak097dd832014-10-23 19:23:19 +03001866 return 0;
1867
David Weinehallc49d13e2016-08-22 13:32:42 +03001868 return i915_drm_resume(dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +08001869}
1870
Chris Wilson1f19ac22016-05-14 07:26:32 +01001871/* freeze: before creating the hibernation_image */
David Weinehallc49d13e2016-08-22 13:32:42 +03001872static int i915_pm_freeze(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01001873{
Chris Wilson6a800ea2016-09-21 14:51:07 +01001874 int ret;
1875
1876 ret = i915_pm_suspend(kdev);
1877 if (ret)
1878 return ret;
1879
1880 ret = i915_gem_freeze(kdev_to_i915(kdev));
1881 if (ret)
1882 return ret;
1883
1884 return 0;
Chris Wilson1f19ac22016-05-14 07:26:32 +01001885}
1886
David Weinehallc49d13e2016-08-22 13:32:42 +03001887static int i915_pm_freeze_late(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01001888{
Chris Wilson461fb992016-05-14 07:26:33 +01001889 int ret;
1890
David Weinehallc49d13e2016-08-22 13:32:42 +03001891 ret = i915_pm_suspend_late(kdev);
Chris Wilson461fb992016-05-14 07:26:33 +01001892 if (ret)
1893 return ret;
1894
David Weinehallc49d13e2016-08-22 13:32:42 +03001895 ret = i915_gem_freeze_late(kdev_to_i915(kdev));
Chris Wilson461fb992016-05-14 07:26:33 +01001896 if (ret)
1897 return ret;
1898
1899 return 0;
Chris Wilson1f19ac22016-05-14 07:26:32 +01001900}
1901
1902/* thaw: called after creating the hibernation image, but before turning off. */
David Weinehallc49d13e2016-08-22 13:32:42 +03001903static int i915_pm_thaw_early(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01001904{
David Weinehallc49d13e2016-08-22 13:32:42 +03001905 return i915_pm_resume_early(kdev);
Chris Wilson1f19ac22016-05-14 07:26:32 +01001906}
1907
David Weinehallc49d13e2016-08-22 13:32:42 +03001908static int i915_pm_thaw(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01001909{
David Weinehallc49d13e2016-08-22 13:32:42 +03001910 return i915_pm_resume(kdev);
Chris Wilson1f19ac22016-05-14 07:26:32 +01001911}
1912
1913/* restore: called after loading the hibernation image. */
David Weinehallc49d13e2016-08-22 13:32:42 +03001914static int i915_pm_restore_early(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01001915{
David Weinehallc49d13e2016-08-22 13:32:42 +03001916 return i915_pm_resume_early(kdev);
Chris Wilson1f19ac22016-05-14 07:26:32 +01001917}
1918
David Weinehallc49d13e2016-08-22 13:32:42 +03001919static int i915_pm_restore(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01001920{
David Weinehallc49d13e2016-08-22 13:32:42 +03001921 return i915_pm_resume(kdev);
Chris Wilson1f19ac22016-05-14 07:26:32 +01001922}
1923
Imre Deakddeea5b2014-05-05 15:19:56 +03001924/*
1925 * Save all Gunit registers that may be lost after a D3 and a subsequent
1926 * S0i[R123] transition. The list of registers needing a save/restore is
1927 * defined in the VLV2_S0IXRegs document. This documents marks all Gunit
1928 * registers in the following way:
1929 * - Driver: saved/restored by the driver
1930 * - Punit : saved/restored by the Punit firmware
1931 * - No, w/o marking: no need to save/restore, since the register is R/O or
1932 * used internally by the HW in a way that doesn't depend
1933 * keeping the content across a suspend/resume.
1934 * - Debug : used for debugging
1935 *
1936 * We save/restore all registers marked with 'Driver', with the following
1937 * exceptions:
1938 * - Registers out of use, including also registers marked with 'Debug'.
1939 * These have no effect on the driver's operation, so we don't save/restore
1940 * them to reduce the overhead.
1941 * - Registers that are fully setup by an initialization function called from
1942 * the resume path. For example many clock gating and RPS/RC6 registers.
1943 * - Registers that provide the right functionality with their reset defaults.
1944 *
1945 * TODO: Except for registers that based on the above 3 criteria can be safely
1946 * ignored, we save/restore all others, practically treating the HW context as
1947 * a black-box for the driver. Further investigation is needed to reduce the
1948 * saved/restored registers even further, by following the same 3 criteria.
1949 */
1950static void vlv_save_gunit_s0ix_state(struct drm_i915_private *dev_priv)
1951{
1952 struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
1953 int i;
1954
1955 /* GAM 0x4000-0x4770 */
1956 s->wr_watermark = I915_READ(GEN7_WR_WATERMARK);
1957 s->gfx_prio_ctrl = I915_READ(GEN7_GFX_PRIO_CTRL);
1958 s->arb_mode = I915_READ(ARB_MODE);
1959 s->gfx_pend_tlb0 = I915_READ(GEN7_GFX_PEND_TLB0);
1960 s->gfx_pend_tlb1 = I915_READ(GEN7_GFX_PEND_TLB1);
1961
1962 for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
Ville Syrjälä22dfe792015-09-18 20:03:16 +03001963 s->lra_limits[i] = I915_READ(GEN7_LRA_LIMITS(i));
Imre Deakddeea5b2014-05-05 15:19:56 +03001964
1965 s->media_max_req_count = I915_READ(GEN7_MEDIA_MAX_REQ_COUNT);
Imre Deakb5f1c972015-04-15 16:52:30 -07001966 s->gfx_max_req_count = I915_READ(GEN7_GFX_MAX_REQ_COUNT);
Imre Deakddeea5b2014-05-05 15:19:56 +03001967
1968 s->render_hwsp = I915_READ(RENDER_HWS_PGA_GEN7);
1969 s->ecochk = I915_READ(GAM_ECOCHK);
1970 s->bsd_hwsp = I915_READ(BSD_HWS_PGA_GEN7);
1971 s->blt_hwsp = I915_READ(BLT_HWS_PGA_GEN7);
1972
1973 s->tlb_rd_addr = I915_READ(GEN7_TLB_RD_ADDR);
1974
1975 /* MBC 0x9024-0x91D0, 0x8500 */
1976 s->g3dctl = I915_READ(VLV_G3DCTL);
1977 s->gsckgctl = I915_READ(VLV_GSCKGCTL);
1978 s->mbctl = I915_READ(GEN6_MBCTL);
1979
1980 /* GCP 0x9400-0x9424, 0x8100-0x810C */
1981 s->ucgctl1 = I915_READ(GEN6_UCGCTL1);
1982 s->ucgctl3 = I915_READ(GEN6_UCGCTL3);
1983 s->rcgctl1 = I915_READ(GEN6_RCGCTL1);
1984 s->rcgctl2 = I915_READ(GEN6_RCGCTL2);
1985 s->rstctl = I915_READ(GEN6_RSTCTL);
1986 s->misccpctl = I915_READ(GEN7_MISCCPCTL);
1987
1988 /* GPM 0xA000-0xAA84, 0x8000-0x80FC */
1989 s->gfxpause = I915_READ(GEN6_GFXPAUSE);
1990 s->rpdeuhwtc = I915_READ(GEN6_RPDEUHWTC);
1991 s->rpdeuc = I915_READ(GEN6_RPDEUC);
1992 s->ecobus = I915_READ(ECOBUS);
1993 s->pwrdwnupctl = I915_READ(VLV_PWRDWNUPCTL);
1994 s->rp_down_timeout = I915_READ(GEN6_RP_DOWN_TIMEOUT);
1995 s->rp_deucsw = I915_READ(GEN6_RPDEUCSW);
1996 s->rcubmabdtmr = I915_READ(GEN6_RCUBMABDTMR);
1997 s->rcedata = I915_READ(VLV_RCEDATA);
1998 s->spare2gh = I915_READ(VLV_SPAREG2H);
1999
2000 /* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
2001 s->gt_imr = I915_READ(GTIMR);
2002 s->gt_ier = I915_READ(GTIER);
2003 s->pm_imr = I915_READ(GEN6_PMIMR);
2004 s->pm_ier = I915_READ(GEN6_PMIER);
2005
2006 for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
Ville Syrjälä22dfe792015-09-18 20:03:16 +03002007 s->gt_scratch[i] = I915_READ(GEN7_GT_SCRATCH(i));
Imre Deakddeea5b2014-05-05 15:19:56 +03002008
2009 /* GT SA CZ domain, 0x100000-0x138124 */
2010 s->tilectl = I915_READ(TILECTL);
2011 s->gt_fifoctl = I915_READ(GTFIFOCTL);
2012 s->gtlc_wake_ctrl = I915_READ(VLV_GTLC_WAKE_CTRL);
2013 s->gtlc_survive = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
2014 s->pmwgicz = I915_READ(VLV_PMWGICZ);
2015
2016 /* Gunit-Display CZ domain, 0x182028-0x1821CF */
2017 s->gu_ctl0 = I915_READ(VLV_GU_CTL0);
2018 s->gu_ctl1 = I915_READ(VLV_GU_CTL1);
Jesse Barnes9c252102015-04-01 14:22:57 -07002019 s->pcbr = I915_READ(VLV_PCBR);
Imre Deakddeea5b2014-05-05 15:19:56 +03002020 s->clock_gate_dis2 = I915_READ(VLV_GUNIT_CLOCK_GATE2);
2021
2022 /*
2023 * Not saving any of:
2024 * DFT, 0x9800-0x9EC0
2025 * SARB, 0xB000-0xB1FC
2026 * GAC, 0x5208-0x524C, 0x14000-0x14C000
2027 * PCI CFG
2028 */
2029}
2030
2031static void vlv_restore_gunit_s0ix_state(struct drm_i915_private *dev_priv)
2032{
2033 struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
2034 u32 val;
2035 int i;
2036
2037 /* GAM 0x4000-0x4770 */
2038 I915_WRITE(GEN7_WR_WATERMARK, s->wr_watermark);
2039 I915_WRITE(GEN7_GFX_PRIO_CTRL, s->gfx_prio_ctrl);
2040 I915_WRITE(ARB_MODE, s->arb_mode | (0xffff << 16));
2041 I915_WRITE(GEN7_GFX_PEND_TLB0, s->gfx_pend_tlb0);
2042 I915_WRITE(GEN7_GFX_PEND_TLB1, s->gfx_pend_tlb1);
2043
2044 for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
Ville Syrjälä22dfe792015-09-18 20:03:16 +03002045 I915_WRITE(GEN7_LRA_LIMITS(i), s->lra_limits[i]);
Imre Deakddeea5b2014-05-05 15:19:56 +03002046
2047 I915_WRITE(GEN7_MEDIA_MAX_REQ_COUNT, s->media_max_req_count);
Imre Deakb5f1c972015-04-15 16:52:30 -07002048 I915_WRITE(GEN7_GFX_MAX_REQ_COUNT, s->gfx_max_req_count);
Imre Deakddeea5b2014-05-05 15:19:56 +03002049
2050 I915_WRITE(RENDER_HWS_PGA_GEN7, s->render_hwsp);
2051 I915_WRITE(GAM_ECOCHK, s->ecochk);
2052 I915_WRITE(BSD_HWS_PGA_GEN7, s->bsd_hwsp);
2053 I915_WRITE(BLT_HWS_PGA_GEN7, s->blt_hwsp);
2054
2055 I915_WRITE(GEN7_TLB_RD_ADDR, s->tlb_rd_addr);
2056
2057 /* MBC 0x9024-0x91D0, 0x8500 */
2058 I915_WRITE(VLV_G3DCTL, s->g3dctl);
2059 I915_WRITE(VLV_GSCKGCTL, s->gsckgctl);
2060 I915_WRITE(GEN6_MBCTL, s->mbctl);
2061
2062 /* GCP 0x9400-0x9424, 0x8100-0x810C */
2063 I915_WRITE(GEN6_UCGCTL1, s->ucgctl1);
2064 I915_WRITE(GEN6_UCGCTL3, s->ucgctl3);
2065 I915_WRITE(GEN6_RCGCTL1, s->rcgctl1);
2066 I915_WRITE(GEN6_RCGCTL2, s->rcgctl2);
2067 I915_WRITE(GEN6_RSTCTL, s->rstctl);
2068 I915_WRITE(GEN7_MISCCPCTL, s->misccpctl);
2069
2070 /* GPM 0xA000-0xAA84, 0x8000-0x80FC */
2071 I915_WRITE(GEN6_GFXPAUSE, s->gfxpause);
2072 I915_WRITE(GEN6_RPDEUHWTC, s->rpdeuhwtc);
2073 I915_WRITE(GEN6_RPDEUC, s->rpdeuc);
2074 I915_WRITE(ECOBUS, s->ecobus);
2075 I915_WRITE(VLV_PWRDWNUPCTL, s->pwrdwnupctl);
2076 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,s->rp_down_timeout);
2077 I915_WRITE(GEN6_RPDEUCSW, s->rp_deucsw);
2078 I915_WRITE(GEN6_RCUBMABDTMR, s->rcubmabdtmr);
2079 I915_WRITE(VLV_RCEDATA, s->rcedata);
2080 I915_WRITE(VLV_SPAREG2H, s->spare2gh);
2081
2082 /* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
2083 I915_WRITE(GTIMR, s->gt_imr);
2084 I915_WRITE(GTIER, s->gt_ier);
2085 I915_WRITE(GEN6_PMIMR, s->pm_imr);
2086 I915_WRITE(GEN6_PMIER, s->pm_ier);
2087
2088 for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
Ville Syrjälä22dfe792015-09-18 20:03:16 +03002089 I915_WRITE(GEN7_GT_SCRATCH(i), s->gt_scratch[i]);
Imre Deakddeea5b2014-05-05 15:19:56 +03002090
2091 /* GT SA CZ domain, 0x100000-0x138124 */
2092 I915_WRITE(TILECTL, s->tilectl);
2093 I915_WRITE(GTFIFOCTL, s->gt_fifoctl);
2094 /*
2095 * Preserve the GT allow wake and GFX force clock bit, they are not
2096 * be restored, as they are used to control the s0ix suspend/resume
2097 * sequence by the caller.
2098 */
2099 val = I915_READ(VLV_GTLC_WAKE_CTRL);
2100 val &= VLV_GTLC_ALLOWWAKEREQ;
2101 val |= s->gtlc_wake_ctrl & ~VLV_GTLC_ALLOWWAKEREQ;
2102 I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
2103
2104 val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
2105 val &= VLV_GFX_CLK_FORCE_ON_BIT;
2106 val |= s->gtlc_survive & ~VLV_GFX_CLK_FORCE_ON_BIT;
2107 I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
2108
2109 I915_WRITE(VLV_PMWGICZ, s->pmwgicz);
2110
2111 /* Gunit-Display CZ domain, 0x182028-0x1821CF */
2112 I915_WRITE(VLV_GU_CTL0, s->gu_ctl0);
2113 I915_WRITE(VLV_GU_CTL1, s->gu_ctl1);
Jesse Barnes9c252102015-04-01 14:22:57 -07002114 I915_WRITE(VLV_PCBR, s->pcbr);
Imre Deakddeea5b2014-05-05 15:19:56 +03002115 I915_WRITE(VLV_GUNIT_CLOCK_GATE2, s->clock_gate_dis2);
2116}
2117
Imre Deak650ad972014-04-18 16:35:02 +03002118int vlv_force_gfx_clock(struct drm_i915_private *dev_priv, bool force_on)
2119{
2120 u32 val;
2121 int err;
2122
Imre Deak650ad972014-04-18 16:35:02 +03002123 val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
2124 val &= ~VLV_GFX_CLK_FORCE_ON_BIT;
2125 if (force_on)
2126 val |= VLV_GFX_CLK_FORCE_ON_BIT;
2127 I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
2128
2129 if (!force_on)
2130 return 0;
2131
Chris Wilsonc6ddc5f2016-06-30 15:32:46 +01002132 err = intel_wait_for_register(dev_priv,
2133 VLV_GTLC_SURVIVABILITY_REG,
2134 VLV_GFX_CLK_STATUS_BIT,
2135 VLV_GFX_CLK_STATUS_BIT,
2136 20);
Imre Deak650ad972014-04-18 16:35:02 +03002137 if (err)
2138 DRM_ERROR("timeout waiting for GFX clock force-on (%08x)\n",
2139 I915_READ(VLV_GTLC_SURVIVABILITY_REG));
2140
2141 return err;
Imre Deak650ad972014-04-18 16:35:02 +03002142}
2143
Imre Deakddeea5b2014-05-05 15:19:56 +03002144static int vlv_allow_gt_wake(struct drm_i915_private *dev_priv, bool allow)
2145{
2146 u32 val;
2147 int err = 0;
2148
2149 val = I915_READ(VLV_GTLC_WAKE_CTRL);
2150 val &= ~VLV_GTLC_ALLOWWAKEREQ;
2151 if (allow)
2152 val |= VLV_GTLC_ALLOWWAKEREQ;
2153 I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
2154 POSTING_READ(VLV_GTLC_WAKE_CTRL);
2155
Chris Wilsonb2736692016-06-30 15:32:47 +01002156 err = intel_wait_for_register(dev_priv,
2157 VLV_GTLC_PW_STATUS,
2158 VLV_GTLC_ALLOWWAKEACK,
2159 allow,
2160 1);
Imre Deakddeea5b2014-05-05 15:19:56 +03002161 if (err)
2162 DRM_ERROR("timeout disabling GT waking\n");
Chris Wilsonb2736692016-06-30 15:32:47 +01002163
Imre Deakddeea5b2014-05-05 15:19:56 +03002164 return err;
Imre Deakddeea5b2014-05-05 15:19:56 +03002165}
2166
2167static int vlv_wait_for_gt_wells(struct drm_i915_private *dev_priv,
2168 bool wait_for_on)
2169{
2170 u32 mask;
2171 u32 val;
2172 int err;
2173
2174 mask = VLV_GTLC_PW_MEDIA_STATUS_MASK | VLV_GTLC_PW_RENDER_STATUS_MASK;
2175 val = wait_for_on ? mask : 0;
Chris Wilson41ce4052016-06-30 15:32:48 +01002176 if ((I915_READ(VLV_GTLC_PW_STATUS) & mask) == val)
Imre Deakddeea5b2014-05-05 15:19:56 +03002177 return 0;
2178
2179 DRM_DEBUG_KMS("waiting for GT wells to go %s (%08x)\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02002180 onoff(wait_for_on),
2181 I915_READ(VLV_GTLC_PW_STATUS));
Imre Deakddeea5b2014-05-05 15:19:56 +03002182
2183 /*
2184 * RC6 transitioning can be delayed up to 2 msec (see
2185 * valleyview_enable_rps), use 3 msec for safety.
2186 */
Chris Wilson41ce4052016-06-30 15:32:48 +01002187 err = intel_wait_for_register(dev_priv,
2188 VLV_GTLC_PW_STATUS, mask, val,
2189 3);
Imre Deakddeea5b2014-05-05 15:19:56 +03002190 if (err)
2191 DRM_ERROR("timeout waiting for GT wells to go %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02002192 onoff(wait_for_on));
Imre Deakddeea5b2014-05-05 15:19:56 +03002193
2194 return err;
Imre Deakddeea5b2014-05-05 15:19:56 +03002195}
2196
2197static void vlv_check_no_gt_access(struct drm_i915_private *dev_priv)
2198{
2199 if (!(I915_READ(VLV_GTLC_PW_STATUS) & VLV_GTLC_ALLOWWAKEERR))
2200 return;
2201
Daniel Vetter6fa283b2016-01-19 21:00:56 +01002202 DRM_DEBUG_DRIVER("GT register access while GT waking disabled\n");
Imre Deakddeea5b2014-05-05 15:19:56 +03002203 I915_WRITE(VLV_GTLC_PW_STATUS, VLV_GTLC_ALLOWWAKEERR);
2204}
2205
Sagar Kambleebc32822014-08-13 23:07:05 +05302206static int vlv_suspend_complete(struct drm_i915_private *dev_priv)
Imre Deakddeea5b2014-05-05 15:19:56 +03002207{
2208 u32 mask;
2209 int err;
2210
2211 /*
2212 * Bspec defines the following GT well on flags as debug only, so
2213 * don't treat them as hard failures.
2214 */
2215 (void)vlv_wait_for_gt_wells(dev_priv, false);
2216
2217 mask = VLV_GTLC_RENDER_CTX_EXISTS | VLV_GTLC_MEDIA_CTX_EXISTS;
2218 WARN_ON((I915_READ(VLV_GTLC_WAKE_CTRL) & mask) != mask);
2219
2220 vlv_check_no_gt_access(dev_priv);
2221
2222 err = vlv_force_gfx_clock(dev_priv, true);
2223 if (err)
2224 goto err1;
2225
2226 err = vlv_allow_gt_wake(dev_priv, false);
2227 if (err)
2228 goto err2;
Deepak S98711162014-12-12 14:18:16 +05302229
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002230 if (!IS_CHERRYVIEW(dev_priv))
Deepak S98711162014-12-12 14:18:16 +05302231 vlv_save_gunit_s0ix_state(dev_priv);
Imre Deakddeea5b2014-05-05 15:19:56 +03002232
2233 err = vlv_force_gfx_clock(dev_priv, false);
2234 if (err)
2235 goto err2;
2236
2237 return 0;
2238
2239err2:
2240 /* For safety always re-enable waking and disable gfx clock forcing */
2241 vlv_allow_gt_wake(dev_priv, true);
2242err1:
2243 vlv_force_gfx_clock(dev_priv, false);
2244
2245 return err;
2246}
2247
Sagar Kamble016970b2014-08-13 23:07:06 +05302248static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
2249 bool rpm_resume)
Imre Deakddeea5b2014-05-05 15:19:56 +03002250{
Chris Wilson91c8a322016-07-05 10:40:23 +01002251 struct drm_device *dev = &dev_priv->drm;
Imre Deakddeea5b2014-05-05 15:19:56 +03002252 int err;
2253 int ret;
2254
2255 /*
2256 * If any of the steps fail just try to continue, that's the best we
2257 * can do at this point. Return the first error code (which will also
2258 * leave RPM permanently disabled).
2259 */
2260 ret = vlv_force_gfx_clock(dev_priv, true);
2261
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002262 if (!IS_CHERRYVIEW(dev_priv))
Deepak S98711162014-12-12 14:18:16 +05302263 vlv_restore_gunit_s0ix_state(dev_priv);
Imre Deakddeea5b2014-05-05 15:19:56 +03002264
2265 err = vlv_allow_gt_wake(dev_priv, true);
2266 if (!ret)
2267 ret = err;
2268
2269 err = vlv_force_gfx_clock(dev_priv, false);
2270 if (!ret)
2271 ret = err;
2272
2273 vlv_check_no_gt_access(dev_priv);
2274
Sagar Kamble016970b2014-08-13 23:07:06 +05302275 if (rpm_resume) {
2276 intel_init_clock_gating(dev);
2277 i915_gem_restore_fences(dev);
2278 }
Imre Deakddeea5b2014-05-05 15:19:56 +03002279
2280 return ret;
2281}
2282
David Weinehallc49d13e2016-08-22 13:32:42 +03002283static int intel_runtime_suspend(struct device *kdev)
Paulo Zanoni8a187452013-12-06 20:32:13 -02002284{
David Weinehallc49d13e2016-08-22 13:32:42 +03002285 struct pci_dev *pdev = to_pci_dev(kdev);
Paulo Zanoni8a187452013-12-06 20:32:13 -02002286 struct drm_device *dev = pci_get_drvdata(pdev);
Chris Wilsonfac5e232016-07-04 11:34:36 +01002287 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002288 int ret;
Paulo Zanoni8a187452013-12-06 20:32:13 -02002289
Chris Wilsondc979972016-05-10 14:10:04 +01002290 if (WARN_ON_ONCE(!(dev_priv->rps.enabled && intel_enable_rc6())))
Imre Deakc6df39b2014-04-14 20:24:29 +03002291 return -ENODEV;
2292
Tvrtko Ursulin6772ffe2016-10-13 11:02:55 +01002293 if (WARN_ON_ONCE(!HAS_RUNTIME_PM(dev_priv)))
Imre Deak604effb2014-08-26 13:26:56 +03002294 return -ENODEV;
2295
Paulo Zanoni8a187452013-12-06 20:32:13 -02002296 DRM_DEBUG_KMS("Suspending device\n");
2297
Imre Deak9486db62014-04-22 20:21:07 +03002298 /*
Imre Deakd6102972014-05-07 19:57:49 +03002299 * We could deadlock here in case another thread holding struct_mutex
2300 * calls RPM suspend concurrently, since the RPM suspend will wait
2301 * first for this RPM suspend to finish. In this case the concurrent
2302 * RPM resume will be followed by its RPM suspend counterpart. Still
2303 * for consistency return -EAGAIN, which will reschedule this suspend.
2304 */
2305 if (!mutex_trylock(&dev->struct_mutex)) {
2306 DRM_DEBUG_KMS("device lock contention, deffering suspend\n");
2307 /*
2308 * Bump the expiration timestamp, otherwise the suspend won't
2309 * be rescheduled.
2310 */
David Weinehallc49d13e2016-08-22 13:32:42 +03002311 pm_runtime_mark_last_busy(kdev);
Imre Deakd6102972014-05-07 19:57:49 +03002312
2313 return -EAGAIN;
2314 }
Imre Deak1f814da2015-12-16 02:52:19 +02002315
2316 disable_rpm_wakeref_asserts(dev_priv);
2317
Imre Deakd6102972014-05-07 19:57:49 +03002318 /*
2319 * We are safe here against re-faults, since the fault handler takes
2320 * an RPM reference.
2321 */
2322 i915_gem_release_all_mmaps(dev_priv);
2323 mutex_unlock(&dev->struct_mutex);
2324
Alex Daia1c41992015-09-30 09:46:37 -07002325 intel_guc_suspend(dev);
2326
Imre Deak2eb52522014-11-19 15:30:05 +02002327 intel_runtime_pm_disable_interrupts(dev_priv);
Imre Deakb5478bc2014-04-14 20:24:37 +03002328
Imre Deak507e1262016-04-20 20:27:54 +03002329 ret = 0;
2330 if (IS_BROXTON(dev_priv)) {
2331 bxt_display_core_uninit(dev_priv);
2332 bxt_enable_dc9(dev_priv);
2333 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
2334 hsw_enable_pc8(dev_priv);
2335 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
2336 ret = vlv_suspend_complete(dev_priv);
2337 }
2338
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002339 if (ret) {
2340 DRM_ERROR("Runtime suspend failed, disabling it (%d)\n", ret);
Daniel Vetterb9632912014-09-30 10:56:44 +02002341 intel_runtime_pm_enable_interrupts(dev_priv);
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002342
Imre Deak1f814da2015-12-16 02:52:19 +02002343 enable_rpm_wakeref_asserts(dev_priv);
2344
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002345 return ret;
2346 }
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03002347
Chris Wilsondc979972016-05-10 14:10:04 +01002348 intel_uncore_forcewake_reset(dev_priv, false);
Imre Deak1f814da2015-12-16 02:52:19 +02002349
2350 enable_rpm_wakeref_asserts(dev_priv);
2351 WARN_ON_ONCE(atomic_read(&dev_priv->pm.wakeref_count));
Mika Kuoppala55ec45c2015-12-15 16:25:08 +02002352
Mika Kuoppalabc3b9342016-01-08 15:51:20 +02002353 if (intel_uncore_arm_unclaimed_mmio_detection(dev_priv))
Mika Kuoppala55ec45c2015-12-15 16:25:08 +02002354 DRM_ERROR("Unclaimed access detected prior to suspending\n");
2355
Paulo Zanoni8a187452013-12-06 20:32:13 -02002356 dev_priv->pm.suspended = true;
Kristen Carlson Accardi1fb23622014-01-14 15:36:15 -08002357
2358 /*
Paulo Zanonic8a0bd42014-08-21 17:09:38 -03002359 * FIXME: We really should find a document that references the arguments
2360 * used below!
Kristen Carlson Accardi1fb23622014-01-14 15:36:15 -08002361 */
Chris Wilson6f9f4b72016-05-23 15:08:09 +01002362 if (IS_BROADWELL(dev_priv)) {
Paulo Zanonid37ae192015-07-30 18:20:29 -03002363 /*
2364 * On Broadwell, if we use PCI_D1 the PCH DDI ports will stop
2365 * being detected, and the call we do at intel_runtime_resume()
2366 * won't be able to restore them. Since PCI_D3hot matches the
2367 * actual specification and appears to be working, use it.
2368 */
Chris Wilson6f9f4b72016-05-23 15:08:09 +01002369 intel_opregion_notify_adapter(dev_priv, PCI_D3hot);
Paulo Zanonid37ae192015-07-30 18:20:29 -03002370 } else {
Paulo Zanonic8a0bd42014-08-21 17:09:38 -03002371 /*
2372 * current versions of firmware which depend on this opregion
2373 * notification have repurposed the D1 definition to mean
2374 * "runtime suspended" vs. what you would normally expect (D3)
2375 * to distinguish it from notifications that might be sent via
2376 * the suspend path.
2377 */
Chris Wilson6f9f4b72016-05-23 15:08:09 +01002378 intel_opregion_notify_adapter(dev_priv, PCI_D1);
Paulo Zanonic8a0bd42014-08-21 17:09:38 -03002379 }
Paulo Zanoni8a187452013-12-06 20:32:13 -02002380
Mika Kuoppala59bad942015-01-16 11:34:40 +02002381 assert_forcewakes_inactive(dev_priv);
Chris Wilsondc9fb092015-01-16 11:34:34 +02002382
Lyude19625e82016-06-21 17:03:44 -04002383 if (!IS_VALLEYVIEW(dev_priv) || !IS_CHERRYVIEW(dev_priv))
2384 intel_hpd_poll_init(dev_priv);
2385
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03002386 DRM_DEBUG_KMS("Device suspended\n");
Paulo Zanoni8a187452013-12-06 20:32:13 -02002387 return 0;
2388}
2389
David Weinehallc49d13e2016-08-22 13:32:42 +03002390static int intel_runtime_resume(struct device *kdev)
Paulo Zanoni8a187452013-12-06 20:32:13 -02002391{
David Weinehallc49d13e2016-08-22 13:32:42 +03002392 struct pci_dev *pdev = to_pci_dev(kdev);
Paulo Zanoni8a187452013-12-06 20:32:13 -02002393 struct drm_device *dev = pci_get_drvdata(pdev);
Chris Wilsonfac5e232016-07-04 11:34:36 +01002394 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002395 int ret = 0;
Paulo Zanoni8a187452013-12-06 20:32:13 -02002396
Tvrtko Ursulin6772ffe2016-10-13 11:02:55 +01002397 if (WARN_ON_ONCE(!HAS_RUNTIME_PM(dev_priv)))
Imre Deak604effb2014-08-26 13:26:56 +03002398 return -ENODEV;
Paulo Zanoni8a187452013-12-06 20:32:13 -02002399
2400 DRM_DEBUG_KMS("Resuming device\n");
2401
Imre Deak1f814da2015-12-16 02:52:19 +02002402 WARN_ON_ONCE(atomic_read(&dev_priv->pm.wakeref_count));
2403 disable_rpm_wakeref_asserts(dev_priv);
2404
Chris Wilson6f9f4b72016-05-23 15:08:09 +01002405 intel_opregion_notify_adapter(dev_priv, PCI_D0);
Paulo Zanoni8a187452013-12-06 20:32:13 -02002406 dev_priv->pm.suspended = false;
Mika Kuoppala55ec45c2015-12-15 16:25:08 +02002407 if (intel_uncore_unclaimed_mmio(dev_priv))
2408 DRM_DEBUG_DRIVER("Unclaimed access during suspend, bios?\n");
Paulo Zanoni8a187452013-12-06 20:32:13 -02002409
Alex Daia1c41992015-09-30 09:46:37 -07002410 intel_guc_resume(dev);
2411
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002412 if (IS_GEN6(dev_priv))
2413 intel_init_pch_refclk(dev);
Suketu Shah31335ce2014-11-24 13:37:45 +05302414
Imre Deak507e1262016-04-20 20:27:54 +03002415 if (IS_BROXTON(dev)) {
2416 bxt_disable_dc9(dev_priv);
2417 bxt_display_core_init(dev_priv, true);
Imre Deakf62c79b2016-04-20 20:27:57 +03002418 if (dev_priv->csr.dmc_payload &&
2419 (dev_priv->csr.allowed_dc_mask & DC_STATE_EN_UPTO_DC5))
2420 gen9_enable_dc5(dev_priv);
Imre Deak507e1262016-04-20 20:27:54 +03002421 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002422 hsw_disable_pc8(dev_priv);
Imre Deak507e1262016-04-20 20:27:54 +03002423 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002424 ret = vlv_resume_prepare(dev_priv, true);
Imre Deak507e1262016-04-20 20:27:54 +03002425 }
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002426
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002427 /*
2428 * No point of rolling back things in case of an error, as the best
2429 * we can do is to hope that things will still work (and disable RPM).
2430 */
Imre Deak92b806d2014-04-14 20:24:39 +03002431 i915_gem_init_swizzling(dev);
Imre Deak92b806d2014-04-14 20:24:39 +03002432
Daniel Vetterb9632912014-09-30 10:56:44 +02002433 intel_runtime_pm_enable_interrupts(dev_priv);
Ville Syrjälä08d8a232015-08-27 23:56:08 +03002434
2435 /*
2436 * On VLV/CHV display interrupts are part of the display
2437 * power well, so hpd is reinitialized from there. For
2438 * everyone else do it here.
2439 */
Wayne Boyer666a4532015-12-09 12:29:35 -08002440 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Ville Syrjälä08d8a232015-08-27 23:56:08 +03002441 intel_hpd_init(dev_priv);
2442
Imre Deak1f814da2015-12-16 02:52:19 +02002443 enable_rpm_wakeref_asserts(dev_priv);
2444
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002445 if (ret)
2446 DRM_ERROR("Runtime resume failed, disabling it (%d)\n", ret);
2447 else
2448 DRM_DEBUG_KMS("Device resumed\n");
2449
2450 return ret;
Paulo Zanoni8a187452013-12-06 20:32:13 -02002451}
2452
Chris Wilson42f55512016-06-24 14:00:26 +01002453const struct dev_pm_ops i915_pm_ops = {
Imre Deak5545dbb2014-10-23 19:23:28 +03002454 /*
2455 * S0ix (via system suspend) and S3 event handlers [PMSG_SUSPEND,
2456 * PMSG_RESUME]
2457 */
Akshay Joshi0206e352011-08-16 15:34:10 -04002458 .suspend = i915_pm_suspend,
Imre Deak76c4b252014-04-01 19:55:22 +03002459 .suspend_late = i915_pm_suspend_late,
2460 .resume_early = i915_pm_resume_early,
Akshay Joshi0206e352011-08-16 15:34:10 -04002461 .resume = i915_pm_resume,
Imre Deak5545dbb2014-10-23 19:23:28 +03002462
2463 /*
2464 * S4 event handlers
2465 * @freeze, @freeze_late : called (1) before creating the
2466 * hibernation image [PMSG_FREEZE] and
2467 * (2) after rebooting, before restoring
2468 * the image [PMSG_QUIESCE]
2469 * @thaw, @thaw_early : called (1) after creating the hibernation
2470 * image, before writing it [PMSG_THAW]
2471 * and (2) after failing to create or
2472 * restore the image [PMSG_RECOVER]
2473 * @poweroff, @poweroff_late: called after writing the hibernation
2474 * image, before rebooting [PMSG_HIBERNATE]
2475 * @restore, @restore_early : called after rebooting and restoring the
2476 * hibernation image [PMSG_RESTORE]
2477 */
Chris Wilson1f19ac22016-05-14 07:26:32 +01002478 .freeze = i915_pm_freeze,
2479 .freeze_late = i915_pm_freeze_late,
2480 .thaw_early = i915_pm_thaw_early,
2481 .thaw = i915_pm_thaw,
Imre Deak36d61e62014-10-23 19:23:24 +03002482 .poweroff = i915_pm_suspend,
Imre Deakab3be732015-03-02 13:04:41 +02002483 .poweroff_late = i915_pm_poweroff_late,
Chris Wilson1f19ac22016-05-14 07:26:32 +01002484 .restore_early = i915_pm_restore_early,
2485 .restore = i915_pm_restore,
Imre Deak5545dbb2014-10-23 19:23:28 +03002486
2487 /* S0ix (via runtime suspend) event handlers */
Paulo Zanoni97bea202014-03-07 20:12:33 -03002488 .runtime_suspend = intel_runtime_suspend,
2489 .runtime_resume = intel_runtime_resume,
Zhenyu Wangcbda12d2009-12-16 13:36:10 +08002490};
2491
Laurent Pinchart78b68552012-05-17 13:27:22 +02002492static const struct vm_operations_struct i915_gem_vm_ops = {
Jesse Barnesde151cf2008-11-12 10:03:55 -08002493 .fault = i915_gem_fault,
Jesse Barnesab00b3e2009-02-11 14:01:46 -08002494 .open = drm_gem_vm_open,
2495 .close = drm_gem_vm_close,
Jesse Barnesde151cf2008-11-12 10:03:55 -08002496};
2497
Arjan van de Vene08e96d2011-10-31 07:28:57 -07002498static const struct file_operations i915_driver_fops = {
2499 .owner = THIS_MODULE,
2500 .open = drm_open,
2501 .release = drm_release,
2502 .unlocked_ioctl = drm_ioctl,
2503 .mmap = drm_gem_mmap,
2504 .poll = drm_poll,
Arjan van de Vene08e96d2011-10-31 07:28:57 -07002505 .read = drm_read,
2506#ifdef CONFIG_COMPAT
2507 .compat_ioctl = i915_compat_ioctl,
2508#endif
2509 .llseek = noop_llseek,
2510};
2511
Chris Wilson0673ad42016-06-24 14:00:22 +01002512static int
2513i915_gem_reject_pin_ioctl(struct drm_device *dev, void *data,
2514 struct drm_file *file)
2515{
2516 return -ENODEV;
2517}
2518
2519static const struct drm_ioctl_desc i915_ioctls[] = {
2520 DRM_IOCTL_DEF_DRV(I915_INIT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2521 DRM_IOCTL_DEF_DRV(I915_FLUSH, drm_noop, DRM_AUTH),
2522 DRM_IOCTL_DEF_DRV(I915_FLIP, drm_noop, DRM_AUTH),
2523 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, drm_noop, DRM_AUTH),
2524 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, drm_noop, DRM_AUTH),
2525 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, drm_noop, DRM_AUTH),
2526 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam, DRM_AUTH|DRM_RENDER_ALLOW),
2527 DRM_IOCTL_DEF_DRV(I915_SETPARAM, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2528 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
2529 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
2530 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2531 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, drm_noop, DRM_AUTH),
2532 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2533 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2534 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, drm_noop, DRM_AUTH),
2535 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, drm_noop, DRM_AUTH),
2536 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2537 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2538 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer, DRM_AUTH),
2539 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2, i915_gem_execbuffer2, DRM_AUTH|DRM_RENDER_ALLOW),
2540 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_reject_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
2541 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_reject_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
2542 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
2543 DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_RENDER_ALLOW),
2544 DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_RENDER_ALLOW),
2545 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
2546 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2547 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
2548 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_RENDER_ALLOW),
2549 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_RENDER_ALLOW),
2550 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_RENDER_ALLOW),
2551 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_RENDER_ALLOW),
2552 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_RENDER_ALLOW),
2553 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_RENDER_ALLOW),
2554 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_RENDER_ALLOW),
2555 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling, DRM_RENDER_ALLOW),
2556 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling, DRM_RENDER_ALLOW),
2557 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_RENDER_ALLOW),
2558 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id, 0),
2559 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_RENDER_ALLOW),
2560 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
2561 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
2562 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey, DRM_MASTER|DRM_CONTROL_ALLOW),
2563 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, drm_noop, DRM_MASTER|DRM_CONTROL_ALLOW),
2564 DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
2565 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE, i915_gem_context_create_ioctl, DRM_RENDER_ALLOW),
2566 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_RENDER_ALLOW),
2567 DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_RENDER_ALLOW),
2568 DRM_IOCTL_DEF_DRV(I915_GET_RESET_STATS, i915_gem_context_reset_stats_ioctl, DRM_RENDER_ALLOW),
2569 DRM_IOCTL_DEF_DRV(I915_GEM_USERPTR, i915_gem_userptr_ioctl, DRM_RENDER_ALLOW),
2570 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_GETPARAM, i915_gem_context_getparam_ioctl, DRM_RENDER_ALLOW),
2571 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_SETPARAM, i915_gem_context_setparam_ioctl, DRM_RENDER_ALLOW),
2572};
2573
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574static struct drm_driver driver = {
Michael Witten0c547812011-08-25 17:55:54 +00002575 /* Don't use MTRRs here; the Xserver or userspace app should
2576 * deal with them for Intel hardware.
Dave Airlie792d2b92005-11-11 23:30:27 +11002577 */
Eric Anholt673a3942008-07-30 12:06:12 -07002578 .driver_features =
Kristian Høgsberg10ba5012013-08-25 18:29:01 +02002579 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME |
Maarten Lankhorst1751fcf2015-08-27 15:15:15 +02002580 DRIVER_RENDER | DRIVER_MODESET,
Eric Anholt673a3942008-07-30 12:06:12 -07002581 .open = i915_driver_open,
Dave Airlie22eae942005-11-10 22:16:34 +11002582 .lastclose = i915_driver_lastclose,
2583 .preclose = i915_driver_preclose,
Eric Anholt673a3942008-07-30 12:06:12 -07002584 .postclose = i915_driver_postclose,
David Herrmann915b4d12014-08-29 12:12:43 +02002585 .set_busid = drm_pci_set_busid,
Rafael J. Wysockid8e29202010-01-09 00:45:33 +01002586
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002587 .gem_close_object = i915_gem_close_object,
Eric Anholt673a3942008-07-30 12:06:12 -07002588 .gem_free_object = i915_gem_free_object,
Jesse Barnesde151cf2008-11-12 10:03:55 -08002589 .gem_vm_ops = &i915_gem_vm_ops,
Daniel Vetter1286ff72012-05-10 15:25:09 +02002590
2591 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
2592 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
2593 .gem_prime_export = i915_gem_prime_export,
2594 .gem_prime_import = i915_gem_prime_import,
2595
Dave Airlieff72145b2011-02-07 12:16:14 +10002596 .dumb_create = i915_gem_dumb_create,
Dave Airlieda6b51d2014-12-24 13:11:17 +10002597 .dumb_map_offset = i915_gem_mmap_gtt,
Daniel Vetter43387b32013-07-16 09:12:04 +02002598 .dumb_destroy = drm_gem_dumb_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 .ioctls = i915_ioctls,
Chris Wilson0673ad42016-06-24 14:00:22 +01002600 .num_ioctls = ARRAY_SIZE(i915_ioctls),
Arjan van de Vene08e96d2011-10-31 07:28:57 -07002601 .fops = &i915_driver_fops,
Dave Airlie22eae942005-11-10 22:16:34 +11002602 .name = DRIVER_NAME,
2603 .desc = DRIVER_DESC,
2604 .date = DRIVER_DATE,
2605 .major = DRIVER_MAJOR,
2606 .minor = DRIVER_MINOR,
2607 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608};