blob: b902b73b8b716bb03a45176bf87fbc4d64b29ba2 [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
Maarten Lankhorsta667fb42016-12-15 15:29:44 +010044#include <drm/drm_atomic_helper.h>
Sam Ravnborgd0e93592019-01-26 13:25:24 +010045#include <drm/drm_ioctl.h>
46#include <drm/drm_irq.h>
47#include <drm/drm_probe_helper.h>
David Howells760285e2012-10-02 18:01:07 +010048#include <drm/i915_drm.h>
Chris Wilson0673ad42016-06-24 14:00:22 +010049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include "i915_drv.h"
Tvrtko Ursulinb46a33e2017-11-21 18:18:45 +000051#include "i915_pmu.h"
Lionel Landwerlina446ae22018-03-06 12:28:56 +000052#include "i915_query.h"
Jani Nikula331c2012019-04-05 14:00:03 +030053#include "i915_reset.h"
54#include "i915_trace.h"
Chris Wilson0673ad42016-06-24 14:00:22 +010055#include "i915_vgpu.h"
Jani Nikula331c2012019-04-05 14:00:03 +030056#include "intel_audio.h"
Jani Nikula174594d2019-04-05 14:00:07 +030057#include "intel_csr.h"
Kenneth Graunkef49f0582010-09-11 01:19:14 -070058#include "intel_drv.h"
Anusha Srivatsa5464cd62017-01-18 08:05:58 -080059#include "intel_uc.h"
Tvrtko Ursulin094304b2018-12-03 12:50:10 +000060#include "intel_workarounds.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Kristian Høgsberg112b7152009-01-04 16:55:33 -050062static struct drm_driver driver;
63
Michal Wajdeczkofae919f2018-02-01 17:32:48 +000064#if IS_ENABLED(CONFIG_DRM_I915_DEBUG)
Chris Wilson0673ad42016-06-24 14:00:22 +010065static unsigned int i915_load_fail_count;
66
67bool __i915_inject_load_failure(const char *func, int line)
68{
Michal Wajdeczko4f044a82017-09-19 19:38:44 +000069 if (i915_load_fail_count >= i915_modparams.inject_load_failure)
Chris Wilson0673ad42016-06-24 14:00:22 +010070 return false;
71
Michal Wajdeczko4f044a82017-09-19 19:38:44 +000072 if (++i915_load_fail_count == i915_modparams.inject_load_failure) {
Chris Wilson0673ad42016-06-24 14:00:22 +010073 DRM_INFO("Injecting failure at checkpoint %u [%s:%d]\n",
Michal Wajdeczko4f044a82017-09-19 19:38:44 +000074 i915_modparams.inject_load_failure, func, line);
Chris Wilsoncf68f0c2018-06-06 15:41:53 +010075 i915_modparams.inject_load_failure = 0;
Chris Wilson0673ad42016-06-24 14:00:22 +010076 return true;
77 }
78
79 return false;
80}
Chris Wilson51c18bf2018-06-09 12:10:58 +010081
82bool i915_error_injected(void)
83{
84 return i915_load_fail_count && !i915_modparams.inject_load_failure;
85}
86
Michal Wajdeczkofae919f2018-02-01 17:32:48 +000087#endif
Chris Wilson0673ad42016-06-24 14:00:22 +010088
89#define FDO_BUG_URL "https://bugs.freedesktop.org/enter_bug.cgi?product=DRI"
90#define FDO_BUG_MSG "Please file a bug at " FDO_BUG_URL " against DRM/Intel " \
91 "providing the dmesg log by booting with drm.debug=0xf"
92
93void
94__i915_printk(struct drm_i915_private *dev_priv, const char *level,
95 const char *fmt, ...)
96{
97 static bool shown_bug_once;
David Weinehallc49d13e2016-08-22 13:32:42 +030098 struct device *kdev = dev_priv->drm.dev;
Chris Wilson0673ad42016-06-24 14:00:22 +010099 bool is_error = level[1] <= KERN_ERR[1];
100 bool is_debug = level[1] == KERN_DEBUG[1];
101 struct va_format vaf;
102 va_list args;
103
104 if (is_debug && !(drm_debug & DRM_UT_DRIVER))
105 return;
106
107 va_start(args, fmt);
108
109 vaf.fmt = fmt;
110 vaf.va = &args;
111
Chris Wilson8cff1f42018-07-09 14:48:58 +0100112 if (is_error)
113 dev_printk(level, kdev, "%pV", &vaf);
114 else
115 dev_printk(level, kdev, "[" DRM_NAME ":%ps] %pV",
116 __builtin_return_address(0), &vaf);
117
118 va_end(args);
Chris Wilson0673ad42016-06-24 14:00:22 +0100119
120 if (is_error && !shown_bug_once) {
Chris Wilson4e8507b2018-05-06 19:31:47 +0100121 /*
122 * Ask the user to file a bug report for the error, except
123 * if they may have caused the bug by fiddling with unsafe
124 * module parameters.
125 */
126 if (!test_taint(TAINT_USER))
127 dev_notice(kdev, "%s", FDO_BUG_MSG);
Chris Wilson0673ad42016-06-24 14:00:22 +0100128 shown_bug_once = true;
129 }
Chris Wilson0673ad42016-06-24 14:00:22 +0100130}
131
Jani Nikulada6c10c22018-02-05 19:31:36 +0200132/* Map PCH device id to PCH type, or PCH_NONE if unknown. */
133static enum intel_pch
134intel_pch_type(const struct drm_i915_private *dev_priv, unsigned short id)
135{
136 switch (id) {
137 case INTEL_PCH_IBX_DEVICE_ID_TYPE:
138 DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
Lucas De Marchicf819ef2018-12-12 10:10:43 -0800139 WARN_ON(!IS_GEN(dev_priv, 5));
Jani Nikulada6c10c22018-02-05 19:31:36 +0200140 return PCH_IBX;
141 case INTEL_PCH_CPT_DEVICE_ID_TYPE:
142 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
Lucas De Marchicf819ef2018-12-12 10:10:43 -0800143 WARN_ON(!IS_GEN(dev_priv, 6) && !IS_IVYBRIDGE(dev_priv));
Jani Nikulada6c10c22018-02-05 19:31:36 +0200144 return PCH_CPT;
145 case INTEL_PCH_PPT_DEVICE_ID_TYPE:
146 DRM_DEBUG_KMS("Found PantherPoint PCH\n");
Lucas De Marchicf819ef2018-12-12 10:10:43 -0800147 WARN_ON(!IS_GEN(dev_priv, 6) && !IS_IVYBRIDGE(dev_priv));
Jani Nikulada6c10c22018-02-05 19:31:36 +0200148 /* PantherPoint is CPT compatible */
149 return PCH_CPT;
150 case INTEL_PCH_LPT_DEVICE_ID_TYPE:
151 DRM_DEBUG_KMS("Found LynxPoint PCH\n");
152 WARN_ON(!IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv));
153 WARN_ON(IS_HSW_ULT(dev_priv) || IS_BDW_ULT(dev_priv));
154 return PCH_LPT;
155 case INTEL_PCH_LPT_LP_DEVICE_ID_TYPE:
156 DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
157 WARN_ON(!IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv));
158 WARN_ON(!IS_HSW_ULT(dev_priv) && !IS_BDW_ULT(dev_priv));
159 return PCH_LPT;
160 case INTEL_PCH_WPT_DEVICE_ID_TYPE:
161 DRM_DEBUG_KMS("Found WildcatPoint PCH\n");
162 WARN_ON(!IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv));
163 WARN_ON(IS_HSW_ULT(dev_priv) || IS_BDW_ULT(dev_priv));
164 /* WildcatPoint is LPT compatible */
165 return PCH_LPT;
166 case INTEL_PCH_WPT_LP_DEVICE_ID_TYPE:
167 DRM_DEBUG_KMS("Found WildcatPoint LP PCH\n");
168 WARN_ON(!IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv));
169 WARN_ON(!IS_HSW_ULT(dev_priv) && !IS_BDW_ULT(dev_priv));
170 /* WildcatPoint is LPT compatible */
171 return PCH_LPT;
172 case INTEL_PCH_SPT_DEVICE_ID_TYPE:
173 DRM_DEBUG_KMS("Found SunrisePoint PCH\n");
174 WARN_ON(!IS_SKYLAKE(dev_priv) && !IS_KABYLAKE(dev_priv));
175 return PCH_SPT;
176 case INTEL_PCH_SPT_LP_DEVICE_ID_TYPE:
177 DRM_DEBUG_KMS("Found SunrisePoint LP PCH\n");
178 WARN_ON(!IS_SKYLAKE(dev_priv) && !IS_KABYLAKE(dev_priv));
179 return PCH_SPT;
180 case INTEL_PCH_KBP_DEVICE_ID_TYPE:
181 DRM_DEBUG_KMS("Found Kaby Lake PCH (KBP)\n");
182 WARN_ON(!IS_SKYLAKE(dev_priv) && !IS_KABYLAKE(dev_priv) &&
183 !IS_COFFEELAKE(dev_priv));
184 return PCH_KBP;
185 case INTEL_PCH_CNP_DEVICE_ID_TYPE:
186 DRM_DEBUG_KMS("Found Cannon Lake PCH (CNP)\n");
187 WARN_ON(!IS_CANNONLAKE(dev_priv) && !IS_COFFEELAKE(dev_priv));
188 return PCH_CNP;
189 case INTEL_PCH_CNP_LP_DEVICE_ID_TYPE:
190 DRM_DEBUG_KMS("Found Cannon Lake LP PCH (CNP-LP)\n");
191 WARN_ON(!IS_CANNONLAKE(dev_priv) && !IS_COFFEELAKE(dev_priv));
192 return PCH_CNP;
Anusha Srivatsa729ae332019-03-18 13:01:33 -0700193 case INTEL_PCH_CMP_DEVICE_ID_TYPE:
194 DRM_DEBUG_KMS("Found Comet Lake PCH (CMP)\n");
195 WARN_ON(!IS_COFFEELAKE(dev_priv));
196 /* CometPoint is CNP Compatible */
197 return PCH_CNP;
Jani Nikulada6c10c22018-02-05 19:31:36 +0200198 case INTEL_PCH_ICP_DEVICE_ID_TYPE:
199 DRM_DEBUG_KMS("Found Ice Lake PCH\n");
200 WARN_ON(!IS_ICELAKE(dev_priv));
201 return PCH_ICP;
202 default:
203 return PCH_NONE;
204 }
205}
Chris Wilson0673ad42016-06-24 14:00:22 +0100206
Jani Nikula435ad2c2018-02-05 19:31:37 +0200207static bool intel_is_virt_pch(unsigned short id,
208 unsigned short svendor, unsigned short sdevice)
209{
210 return (id == INTEL_PCH_P2X_DEVICE_ID_TYPE ||
211 id == INTEL_PCH_P3X_DEVICE_ID_TYPE ||
212 (id == INTEL_PCH_QEMU_DEVICE_ID_TYPE &&
213 svendor == PCI_SUBVENDOR_ID_REDHAT_QUMRANET &&
214 sdevice == PCI_SUBDEVICE_ID_QEMU));
215}
216
Jani Nikula40ace642018-02-05 19:31:38 +0200217static unsigned short
218intel_virt_detect_pch(const struct drm_i915_private *dev_priv)
Robert Beckett30c964a2015-08-28 13:10:22 +0100219{
Jani Nikula40ace642018-02-05 19:31:38 +0200220 unsigned short id = 0;
Robert Beckett30c964a2015-08-28 13:10:22 +0100221
222 /*
223 * In a virtualized passthrough environment we can be in a
224 * setup where the ISA bridge is not able to be passed through.
225 * In this case, a south bridge can be emulated and we have to
226 * make an educated guess as to which PCH is really there.
227 */
228
Rodrigo Vivi993298a2019-03-01 09:27:03 -0800229 if (IS_ICELAKE(dev_priv))
230 id = INTEL_PCH_ICP_DEVICE_ID_TYPE;
231 else if (IS_CANNONLAKE(dev_priv) || IS_COFFEELAKE(dev_priv))
232 id = INTEL_PCH_CNP_DEVICE_ID_TYPE;
233 else if (IS_KABYLAKE(dev_priv) || IS_SKYLAKE(dev_priv))
234 id = INTEL_PCH_SPT_DEVICE_ID_TYPE;
Jani Nikula40ace642018-02-05 19:31:38 +0200235 else if (IS_HSW_ULT(dev_priv) || IS_BDW_ULT(dev_priv))
236 id = INTEL_PCH_LPT_LP_DEVICE_ID_TYPE;
237 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
238 id = INTEL_PCH_LPT_DEVICE_ID_TYPE;
Rodrigo Vivi993298a2019-03-01 09:27:03 -0800239 else if (IS_GEN(dev_priv, 6) || IS_IVYBRIDGE(dev_priv))
240 id = INTEL_PCH_CPT_DEVICE_ID_TYPE;
241 else if (IS_GEN(dev_priv, 5))
242 id = INTEL_PCH_IBX_DEVICE_ID_TYPE;
Robert Beckett30c964a2015-08-28 13:10:22 +0100243
Jani Nikula40ace642018-02-05 19:31:38 +0200244 if (id)
245 DRM_DEBUG_KMS("Assuming PCH ID %04x\n", id);
246 else
247 DRM_DEBUG_KMS("Assuming no PCH\n");
248
249 return id;
Robert Beckett30c964a2015-08-28 13:10:22 +0100250}
251
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000252static void intel_detect_pch(struct drm_i915_private *dev_priv)
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800253{
Imre Deakbcdb72a2014-02-14 20:23:54 +0200254 struct pci_dev *pch = NULL;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800255
256 /*
257 * The reason to probe ISA bridge instead of Dev31:Fun0 is to
258 * make graphics device passthrough work easy for VMM, that only
259 * need to expose ISA bridge to let driver know the real hardware
260 * underneath. This is a requirement from virtualization team.
Rui Guo6a9c4b32013-06-19 21:10:23 +0800261 *
262 * In some virtualized environments (e.g. XEN), there is irrelevant
263 * ISA bridge in the system. To work reliably, we should scan trhough
264 * all the ISA bridge devices and check for the first match, instead
265 * of only checking the first one.
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800266 */
Imre Deakbcdb72a2014-02-14 20:23:54 +0200267 while ((pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, pch))) {
Jani Nikulad67c0ac2018-02-02 15:04:16 +0200268 unsigned short id;
Jani Nikulada6c10c22018-02-05 19:31:36 +0200269 enum intel_pch pch_type;
Ville Syrjäläc5e855d2017-06-21 20:49:44 +0300270
Jani Nikulad67c0ac2018-02-02 15:04:16 +0200271 if (pch->vendor != PCI_VENDOR_ID_INTEL)
272 continue;
Dhinakaran Pandiyanec7e0bb2017-06-02 13:06:40 -0700273
Jani Nikulad67c0ac2018-02-02 15:04:16 +0200274 id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
Imre Deakbcdb72a2014-02-14 20:23:54 +0200275
Jani Nikulada6c10c22018-02-05 19:31:36 +0200276 pch_type = intel_pch_type(dev_priv, id);
277 if (pch_type != PCH_NONE) {
278 dev_priv->pch_type = pch_type;
Jani Nikula40ace642018-02-05 19:31:38 +0200279 dev_priv->pch_id = id;
280 break;
Jani Nikula435ad2c2018-02-05 19:31:37 +0200281 } else if (intel_is_virt_pch(id, pch->subsystem_vendor,
Jani Nikula40ace642018-02-05 19:31:38 +0200282 pch->subsystem_device)) {
283 id = intel_virt_detect_pch(dev_priv);
Jani Nikula85b17e62018-06-08 15:33:28 +0300284 pch_type = intel_pch_type(dev_priv, id);
285
286 /* Sanity check virtual PCH id */
287 if (WARN_ON(id && pch_type == PCH_NONE))
288 id = 0;
289
Jani Nikula40ace642018-02-05 19:31:38 +0200290 dev_priv->pch_type = pch_type;
291 dev_priv->pch_id = id;
292 break;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800293 }
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800294 }
Jani Nikula07ba0a82018-06-08 15:33:30 +0300295
296 /*
297 * Use PCH_NOP (PCH but no South Display) for PCH platforms without
298 * display.
299 */
José Roberto de Souzae1bf0942018-11-30 15:20:47 -0800300 if (pch && !HAS_DISPLAY(dev_priv)) {
Jani Nikula07ba0a82018-06-08 15:33:30 +0300301 DRM_DEBUG_KMS("Display disabled, reverting to NOP PCH\n");
302 dev_priv->pch_type = PCH_NOP;
303 dev_priv->pch_id = 0;
304 }
305
Rui Guo6a9c4b32013-06-19 21:10:23 +0800306 if (!pch)
Imre Deakbcdb72a2014-02-14 20:23:54 +0200307 DRM_DEBUG_KMS("No PCH found.\n");
308
309 pci_dev_put(pch);
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800310}
311
Ville Syrjälä6a20fe72018-02-07 18:48:41 +0200312static int i915_getparam_ioctl(struct drm_device *dev, void *data,
313 struct drm_file *file_priv)
Chris Wilson0673ad42016-06-24 14:00:22 +0100314{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100315 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300316 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +0100317 drm_i915_getparam_t *param = data;
318 int value;
319
320 switch (param->param) {
321 case I915_PARAM_IRQ_ACTIVE:
322 case I915_PARAM_ALLOW_BATCHBUFFER:
323 case I915_PARAM_LAST_DISPATCH:
Kenneth Graunkeef0f4112017-02-15 01:34:46 -0800324 case I915_PARAM_HAS_EXEC_CONSTANTS:
Chris Wilson0673ad42016-06-24 14:00:22 +0100325 /* Reject all old ums/dri params. */
326 return -ENODEV;
327 case I915_PARAM_CHIPSET_ID:
David Weinehall52a05c32016-08-22 13:32:44 +0300328 value = pdev->device;
Chris Wilson0673ad42016-06-24 14:00:22 +0100329 break;
330 case I915_PARAM_REVISION:
David Weinehall52a05c32016-08-22 13:32:44 +0300331 value = pdev->revision;
Chris Wilson0673ad42016-06-24 14:00:22 +0100332 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100333 case I915_PARAM_NUM_FENCES_AVAIL:
334 value = dev_priv->num_fence_regs;
335 break;
336 case I915_PARAM_HAS_OVERLAY:
337 value = dev_priv->overlay ? 1 : 0;
338 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100339 case I915_PARAM_HAS_BSD:
Chris Wilson8a68d462019-03-05 18:03:30 +0000340 value = !!dev_priv->engine[VCS0];
Chris Wilson0673ad42016-06-24 14:00:22 +0100341 break;
342 case I915_PARAM_HAS_BLT:
Chris Wilson8a68d462019-03-05 18:03:30 +0000343 value = !!dev_priv->engine[BCS0];
Chris Wilson0673ad42016-06-24 14:00:22 +0100344 break;
345 case I915_PARAM_HAS_VEBOX:
Chris Wilson8a68d462019-03-05 18:03:30 +0000346 value = !!dev_priv->engine[VECS0];
Chris Wilson0673ad42016-06-24 14:00:22 +0100347 break;
348 case I915_PARAM_HAS_BSD2:
Chris Wilson8a68d462019-03-05 18:03:30 +0000349 value = !!dev_priv->engine[VCS1];
Chris Wilson0673ad42016-06-24 14:00:22 +0100350 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100351 case I915_PARAM_HAS_LLC:
David Weinehall16162472016-09-02 13:46:17 +0300352 value = HAS_LLC(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100353 break;
354 case I915_PARAM_HAS_WT:
David Weinehall16162472016-09-02 13:46:17 +0300355 value = HAS_WT(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100356 break;
357 case I915_PARAM_HAS_ALIASING_PPGTT:
Chris Wilson51d623b2019-03-14 22:38:37 +0000358 value = INTEL_PPGTT(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100359 break;
360 case I915_PARAM_HAS_SEMAPHORES:
Chris Wilsone8861962019-03-01 17:09:00 +0000361 value = !!(dev_priv->caps.scheduler & I915_SCHEDULER_CAP_SEMAPHORES);
Chris Wilson0673ad42016-06-24 14:00:22 +0100362 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100363 case I915_PARAM_HAS_SECURE_BATCHES:
364 value = capable(CAP_SYS_ADMIN);
365 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100366 case I915_PARAM_CMD_PARSER_VERSION:
367 value = i915_cmd_parser_get_version(dev_priv);
368 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100369 case I915_PARAM_SUBSLICE_TOTAL:
Jani Nikula02584042018-12-31 16:56:41 +0200370 value = sseu_subslice_total(&RUNTIME_INFO(dev_priv)->sseu);
Chris Wilson0673ad42016-06-24 14:00:22 +0100371 if (!value)
372 return -ENODEV;
373 break;
374 case I915_PARAM_EU_TOTAL:
Jani Nikula02584042018-12-31 16:56:41 +0200375 value = RUNTIME_INFO(dev_priv)->sseu.eu_total;
Chris Wilson0673ad42016-06-24 14:00:22 +0100376 if (!value)
377 return -ENODEV;
378 break;
379 case I915_PARAM_HAS_GPU_RESET:
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000380 value = i915_modparams.enable_hangcheck &&
381 intel_has_gpu_reset(dev_priv);
Michel Thierry142bc7d2017-06-20 10:57:46 +0100382 if (value && intel_has_reset_engine(dev_priv))
383 value = 2;
Chris Wilson0673ad42016-06-24 14:00:22 +0100384 break;
385 case I915_PARAM_HAS_RESOURCE_STREAMER:
Lucas De Marchi08e3e212018-08-03 16:24:43 -0700386 value = 0;
Chris Wilson0673ad42016-06-24 14:00:22 +0100387 break;
arun.siluvery@linux.intel.com37f501a2016-07-01 11:43:02 +0100388 case I915_PARAM_HAS_POOLED_EU:
David Weinehall16162472016-09-02 13:46:17 +0300389 value = HAS_POOLED_EU(dev_priv);
arun.siluvery@linux.intel.com37f501a2016-07-01 11:43:02 +0100390 break;
391 case I915_PARAM_MIN_EU_IN_POOL:
Jani Nikula02584042018-12-31 16:56:41 +0200392 value = RUNTIME_INFO(dev_priv)->sseu.min_eu_in_pool;
arun.siluvery@linux.intel.com37f501a2016-07-01 11:43:02 +0100393 break;
Anusha Srivatsa5464cd62017-01-18 08:05:58 -0800394 case I915_PARAM_HUC_STATUS:
Michal Wajdeczkofa265272018-03-14 20:04:29 +0000395 value = intel_huc_check_status(&dev_priv->huc);
396 if (value < 0)
397 return value;
Anusha Srivatsa5464cd62017-01-18 08:05:58 -0800398 break;
Chris Wilson4cc69072016-08-25 19:05:19 +0100399 case I915_PARAM_MMAP_GTT_VERSION:
400 /* Though we've started our numbering from 1, and so class all
401 * earlier versions as 0, in effect their value is undefined as
402 * the ioctl will report EINVAL for the unknown param!
403 */
404 value = i915_gem_mmap_gtt_version();
405 break;
Chris Wilson0de91362016-11-14 20:41:01 +0000406 case I915_PARAM_HAS_SCHEDULER:
Chris Wilson3fed1802018-02-07 21:05:43 +0000407 value = dev_priv->caps.scheduler;
Chris Wilson0de91362016-11-14 20:41:01 +0000408 break;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100409
David Weinehall16162472016-09-02 13:46:17 +0300410 case I915_PARAM_MMAP_VERSION:
411 /* Remember to bump this if the version changes! */
412 case I915_PARAM_HAS_GEM:
413 case I915_PARAM_HAS_PAGEFLIPPING:
414 case I915_PARAM_HAS_EXECBUF2: /* depends on GEM */
415 case I915_PARAM_HAS_RELAXED_FENCING:
416 case I915_PARAM_HAS_COHERENT_RINGS:
417 case I915_PARAM_HAS_RELAXED_DELTA:
418 case I915_PARAM_HAS_GEN7_SOL_RESET:
419 case I915_PARAM_HAS_WAIT_TIMEOUT:
420 case I915_PARAM_HAS_PRIME_VMAP_FLUSH:
421 case I915_PARAM_HAS_PINNED_BATCHES:
422 case I915_PARAM_HAS_EXEC_NO_RELOC:
423 case I915_PARAM_HAS_EXEC_HANDLE_LUT:
424 case I915_PARAM_HAS_COHERENT_PHYS_GTT:
425 case I915_PARAM_HAS_EXEC_SOFTPIN:
Chris Wilson77ae9952017-01-27 09:40:07 +0000426 case I915_PARAM_HAS_EXEC_ASYNC:
Chris Wilsonfec04452017-01-27 09:40:08 +0000427 case I915_PARAM_HAS_EXEC_FENCE:
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100428 case I915_PARAM_HAS_EXEC_CAPTURE:
Chris Wilson1a71cf22017-06-16 15:05:23 +0100429 case I915_PARAM_HAS_EXEC_BATCH_FIRST:
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +0100430 case I915_PARAM_HAS_EXEC_FENCE_ARRAY:
David Weinehall16162472016-09-02 13:46:17 +0300431 /* For the time being all of these are always true;
432 * if some supported hardware does not have one of these
433 * features this value needs to be provided from
434 * INTEL_INFO(), a feature macro, or similar.
435 */
436 value = 1;
437 break;
Chris Wilsond2b4b972017-11-10 14:26:33 +0000438 case I915_PARAM_HAS_CONTEXT_ISOLATION:
439 value = intel_engines_has_context_isolation(dev_priv);
440 break;
Robert Bragg7fed5552017-06-13 12:22:59 +0100441 case I915_PARAM_SLICE_MASK:
Jani Nikula02584042018-12-31 16:56:41 +0200442 value = RUNTIME_INFO(dev_priv)->sseu.slice_mask;
Robert Bragg7fed5552017-06-13 12:22:59 +0100443 if (!value)
444 return -ENODEV;
445 break;
Robert Braggf5320232017-06-13 12:23:00 +0100446 case I915_PARAM_SUBSLICE_MASK:
Jani Nikula02584042018-12-31 16:56:41 +0200447 value = RUNTIME_INFO(dev_priv)->sseu.subslice_mask[0];
Robert Braggf5320232017-06-13 12:23:00 +0100448 if (!value)
449 return -ENODEV;
450 break;
Lionel Landwerlindab91782017-11-10 19:08:44 +0000451 case I915_PARAM_CS_TIMESTAMP_FREQUENCY:
Jani Nikula02584042018-12-31 16:56:41 +0200452 value = 1000 * RUNTIME_INFO(dev_priv)->cs_timestamp_frequency_khz;
Lionel Landwerlindab91782017-11-10 19:08:44 +0000453 break;
Chris Wilson900ccf32018-07-20 11:19:10 +0100454 case I915_PARAM_MMAP_GTT_COHERENT:
455 value = INTEL_INFO(dev_priv)->has_coherent_ggtt;
456 break;
Chris Wilson0673ad42016-06-24 14:00:22 +0100457 default:
458 DRM_DEBUG("Unknown parameter %d\n", param->param);
459 return -EINVAL;
460 }
461
Chris Wilsondda33002016-06-24 14:00:23 +0100462 if (put_user(value, param->value))
Chris Wilson0673ad42016-06-24 14:00:22 +0100463 return -EFAULT;
Chris Wilson0673ad42016-06-24 14:00:22 +0100464
465 return 0;
466}
467
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000468static int i915_get_bridge_dev(struct drm_i915_private *dev_priv)
Chris Wilson0673ad42016-06-24 14:00:22 +0100469{
Sinan Kaya57b296462017-11-27 11:57:46 -0500470 int domain = pci_domain_nr(dev_priv->drm.pdev->bus);
471
472 dev_priv->bridge_dev =
473 pci_get_domain_bus_and_slot(domain, 0, PCI_DEVFN(0, 0));
Chris Wilson0673ad42016-06-24 14:00:22 +0100474 if (!dev_priv->bridge_dev) {
475 DRM_ERROR("bridge device not found\n");
476 return -1;
477 }
478 return 0;
479}
480
481/* Allocate space for the MCH regs if needed, return nonzero on error */
482static int
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000483intel_alloc_mchbar_resource(struct drm_i915_private *dev_priv)
Chris Wilson0673ad42016-06-24 14:00:22 +0100484{
Tvrtko Ursulin514e1d62016-11-04 14:42:48 +0000485 int reg = INTEL_GEN(dev_priv) >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Chris Wilson0673ad42016-06-24 14:00:22 +0100486 u32 temp_lo, temp_hi = 0;
487 u64 mchbar_addr;
488 int ret;
489
Tvrtko Ursulin514e1d62016-11-04 14:42:48 +0000490 if (INTEL_GEN(dev_priv) >= 4)
Chris Wilson0673ad42016-06-24 14:00:22 +0100491 pci_read_config_dword(dev_priv->bridge_dev, reg + 4, &temp_hi);
492 pci_read_config_dword(dev_priv->bridge_dev, reg, &temp_lo);
493 mchbar_addr = ((u64)temp_hi << 32) | temp_lo;
494
495 /* If ACPI doesn't have it, assume we need to allocate it ourselves */
496#ifdef CONFIG_PNP
497 if (mchbar_addr &&
498 pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE))
499 return 0;
500#endif
501
502 /* Get some space for it */
503 dev_priv->mch_res.name = "i915 MCHBAR";
504 dev_priv->mch_res.flags = IORESOURCE_MEM;
505 ret = pci_bus_alloc_resource(dev_priv->bridge_dev->bus,
506 &dev_priv->mch_res,
507 MCHBAR_SIZE, MCHBAR_SIZE,
508 PCIBIOS_MIN_MEM,
509 0, pcibios_align_resource,
510 dev_priv->bridge_dev);
511 if (ret) {
512 DRM_DEBUG_DRIVER("failed bus alloc: %d\n", ret);
513 dev_priv->mch_res.start = 0;
514 return ret;
515 }
516
Tvrtko Ursulin514e1d62016-11-04 14:42:48 +0000517 if (INTEL_GEN(dev_priv) >= 4)
Chris Wilson0673ad42016-06-24 14:00:22 +0100518 pci_write_config_dword(dev_priv->bridge_dev, reg + 4,
519 upper_32_bits(dev_priv->mch_res.start));
520
521 pci_write_config_dword(dev_priv->bridge_dev, reg,
522 lower_32_bits(dev_priv->mch_res.start));
523 return 0;
524}
525
526/* Setup MCHBAR if possible, return true if we should disable it again */
527static void
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000528intel_setup_mchbar(struct drm_i915_private *dev_priv)
Chris Wilson0673ad42016-06-24 14:00:22 +0100529{
Tvrtko Ursulin514e1d62016-11-04 14:42:48 +0000530 int mchbar_reg = INTEL_GEN(dev_priv) >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Chris Wilson0673ad42016-06-24 14:00:22 +0100531 u32 temp;
532 bool enabled;
533
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100534 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson0673ad42016-06-24 14:00:22 +0100535 return;
536
537 dev_priv->mchbar_need_disable = false;
538
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100539 if (IS_I915G(dev_priv) || IS_I915GM(dev_priv)) {
Chris Wilson0673ad42016-06-24 14:00:22 +0100540 pci_read_config_dword(dev_priv->bridge_dev, DEVEN, &temp);
541 enabled = !!(temp & DEVEN_MCHBAR_EN);
542 } else {
543 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
544 enabled = temp & 1;
545 }
546
547 /* If it's already enabled, don't have to do anything */
548 if (enabled)
549 return;
550
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000551 if (intel_alloc_mchbar_resource(dev_priv))
Chris Wilson0673ad42016-06-24 14:00:22 +0100552 return;
553
554 dev_priv->mchbar_need_disable = true;
555
556 /* Space is allocated or reserved, so enable it. */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100557 if (IS_I915G(dev_priv) || IS_I915GM(dev_priv)) {
Chris Wilson0673ad42016-06-24 14:00:22 +0100558 pci_write_config_dword(dev_priv->bridge_dev, DEVEN,
559 temp | DEVEN_MCHBAR_EN);
560 } else {
561 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
562 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
563 }
564}
565
566static void
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000567intel_teardown_mchbar(struct drm_i915_private *dev_priv)
Chris Wilson0673ad42016-06-24 14:00:22 +0100568{
Tvrtko Ursulin514e1d62016-11-04 14:42:48 +0000569 int mchbar_reg = INTEL_GEN(dev_priv) >= 4 ? MCHBAR_I965 : MCHBAR_I915;
Chris Wilson0673ad42016-06-24 14:00:22 +0100570
571 if (dev_priv->mchbar_need_disable) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100572 if (IS_I915G(dev_priv) || IS_I915GM(dev_priv)) {
Chris Wilson0673ad42016-06-24 14:00:22 +0100573 u32 deven_val;
574
575 pci_read_config_dword(dev_priv->bridge_dev, DEVEN,
576 &deven_val);
577 deven_val &= ~DEVEN_MCHBAR_EN;
578 pci_write_config_dword(dev_priv->bridge_dev, DEVEN,
579 deven_val);
580 } else {
581 u32 mchbar_val;
582
583 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg,
584 &mchbar_val);
585 mchbar_val &= ~1;
586 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg,
587 mchbar_val);
588 }
589 }
590
591 if (dev_priv->mch_res.start)
592 release_resource(&dev_priv->mch_res);
593}
594
595/* true = enable decode, false = disable decoder */
596static unsigned int i915_vga_set_decode(void *cookie, bool state)
597{
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000598 struct drm_i915_private *dev_priv = cookie;
Chris Wilson0673ad42016-06-24 14:00:22 +0100599
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000600 intel_modeset_vga_set_state(dev_priv, state);
Chris Wilson0673ad42016-06-24 14:00:22 +0100601 if (state)
602 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
603 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
604 else
605 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
606}
607
Tvrtko Ursulin7f26cb82016-12-01 14:16:41 +0000608static int i915_resume_switcheroo(struct drm_device *dev);
609static int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state);
610
Chris Wilson0673ad42016-06-24 14:00:22 +0100611static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
612{
613 struct drm_device *dev = pci_get_drvdata(pdev);
614 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
615
616 if (state == VGA_SWITCHEROO_ON) {
617 pr_info("switched on\n");
618 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
619 /* i915 resume handler doesn't set to D0 */
David Weinehall52a05c32016-08-22 13:32:44 +0300620 pci_set_power_state(pdev, PCI_D0);
Chris Wilson0673ad42016-06-24 14:00:22 +0100621 i915_resume_switcheroo(dev);
622 dev->switch_power_state = DRM_SWITCH_POWER_ON;
623 } else {
624 pr_info("switched off\n");
625 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
626 i915_suspend_switcheroo(dev, pmm);
627 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
628 }
629}
630
631static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
632{
633 struct drm_device *dev = pci_get_drvdata(pdev);
634
635 /*
636 * FIXME: open_count is protected by drm_global_mutex but that would lead to
637 * locking inversion with the driver load path. And the access here is
638 * completely racy anyway. So don't bother with locking for now.
639 */
640 return dev->open_count == 0;
641}
642
643static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
644 .set_gpu_state = i915_switcheroo_set_state,
645 .reprobe = NULL,
646 .can_switch = i915_switcheroo_can_switch,
647};
648
Chris Wilson0673ad42016-06-24 14:00:22 +0100649static int i915_load_modeset_init(struct drm_device *dev)
650{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100651 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300652 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +0100653 int ret;
654
655 if (i915_inject_load_failure())
656 return -ENODEV;
657
José Roberto de Souzae1bf0942018-11-30 15:20:47 -0800658 if (HAS_DISPLAY(dev_priv)) {
José Roberto de Souza8d3bf1a2018-11-07 16:16:44 -0800659 ret = drm_vblank_init(&dev_priv->drm,
660 INTEL_INFO(dev_priv)->num_pipes);
661 if (ret)
662 goto out;
663 }
664
Jani Nikula66578852017-03-10 15:27:57 +0200665 intel_bios_init(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100666
667 /* If we have > 1 VGA cards, then we need to arbitrate access
668 * to the common VGA resources.
669 *
670 * If we are a secondary display controller (!PCI_DISPLAY_CLASS_VGA),
671 * then we do not take part in VGA arbitration and the
672 * vga_client_register() fails with -ENODEV.
673 */
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000674 ret = vga_client_register(pdev, dev_priv, NULL, i915_vga_set_decode);
Chris Wilson0673ad42016-06-24 14:00:22 +0100675 if (ret && ret != -ENODEV)
676 goto out;
677
678 intel_register_dsm_handler();
679
David Weinehall52a05c32016-08-22 13:32:44 +0300680 ret = vga_switcheroo_register_client(pdev, &i915_switcheroo_ops, false);
Chris Wilson0673ad42016-06-24 14:00:22 +0100681 if (ret)
682 goto cleanup_vga_client;
683
684 /* must happen before intel_power_domains_init_hw() on VLV/CHV */
685 intel_update_rawclk(dev_priv);
686
687 intel_power_domains_init_hw(dev_priv, false);
688
689 intel_csr_ucode_init(dev_priv);
690
691 ret = intel_irq_install(dev_priv);
692 if (ret)
693 goto cleanup_csr;
694
Tvrtko Ursulin40196442016-12-01 14:16:42 +0000695 intel_setup_gmbus(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100696
697 /* Important: The output setup functions called by modeset_init need
698 * working irqs for e.g. gmbus and dp aux transfers. */
Ville Syrjäläb079bd172016-10-25 18:58:02 +0300699 ret = intel_modeset_init(dev);
700 if (ret)
701 goto cleanup_irq;
Chris Wilson0673ad42016-06-24 14:00:22 +0100702
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000703 ret = i915_gem_init(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100704 if (ret)
Chris Wilson73bad7c2018-07-10 10:44:21 +0100705 goto cleanup_modeset;
Chris Wilson0673ad42016-06-24 14:00:22 +0100706
José Roberto de Souza58db08a72018-11-07 16:16:47 -0800707 intel_overlay_setup(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100708
José Roberto de Souzae1bf0942018-11-30 15:20:47 -0800709 if (!HAS_DISPLAY(dev_priv))
Chris Wilson0673ad42016-06-24 14:00:22 +0100710 return 0;
711
712 ret = intel_fbdev_init(dev);
713 if (ret)
714 goto cleanup_gem;
715
716 /* Only enable hotplug handling once the fbdev is fully set up. */
717 intel_hpd_init(dev_priv);
718
José Roberto de Souzaa8147d02018-11-07 16:16:46 -0800719 intel_init_ipc(dev_priv);
720
Chris Wilson0673ad42016-06-24 14:00:22 +0100721 return 0;
722
723cleanup_gem:
Chris Wilson5861b012019-03-08 09:36:54 +0000724 i915_gem_suspend(dev_priv);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +0100725 i915_gem_fini(dev_priv);
Chris Wilson73bad7c2018-07-10 10:44:21 +0100726cleanup_modeset:
727 intel_modeset_cleanup(dev);
Chris Wilson0673ad42016-06-24 14:00:22 +0100728cleanup_irq:
Chris Wilson0673ad42016-06-24 14:00:22 +0100729 drm_irq_uninstall(dev);
Tvrtko Ursulin40196442016-12-01 14:16:42 +0000730 intel_teardown_gmbus(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100731cleanup_csr:
732 intel_csr_ucode_fini(dev_priv);
Imre Deak48a287e2018-08-06 12:58:35 +0300733 intel_power_domains_fini_hw(dev_priv);
David Weinehall52a05c32016-08-22 13:32:44 +0300734 vga_switcheroo_unregister_client(pdev);
Chris Wilson0673ad42016-06-24 14:00:22 +0100735cleanup_vga_client:
David Weinehall52a05c32016-08-22 13:32:44 +0300736 vga_client_register(pdev, NULL, NULL, NULL);
Chris Wilson0673ad42016-06-24 14:00:22 +0100737out:
738 return ret;
739}
740
Chris Wilson0673ad42016-06-24 14:00:22 +0100741static int i915_kick_out_firmware_fb(struct drm_i915_private *dev_priv)
742{
743 struct apertures_struct *ap;
Chris Wilson91c8a322016-07-05 10:40:23 +0100744 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +0100745 struct i915_ggtt *ggtt = &dev_priv->ggtt;
746 bool primary;
747 int ret;
748
749 ap = alloc_apertures(1);
750 if (!ap)
751 return -ENOMEM;
752
Matthew Auld73ebd502017-12-11 15:18:20 +0000753 ap->ranges[0].base = ggtt->gmadr.start;
Chris Wilson0673ad42016-06-24 14:00:22 +0100754 ap->ranges[0].size = ggtt->mappable_end;
755
756 primary =
757 pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
758
Daniel Vetter44adece2016-08-10 18:52:34 +0200759 ret = drm_fb_helper_remove_conflicting_framebuffers(ap, "inteldrmfb", primary);
Chris Wilson0673ad42016-06-24 14:00:22 +0100760
761 kfree(ap);
762
763 return ret;
764}
Chris Wilson0673ad42016-06-24 14:00:22 +0100765
Chris Wilson0673ad42016-06-24 14:00:22 +0100766static void intel_init_dpio(struct drm_i915_private *dev_priv)
767{
768 /*
769 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
770 * CHV x1 PHY (DP/HDMI D)
771 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
772 */
773 if (IS_CHERRYVIEW(dev_priv)) {
774 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
775 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
776 } else if (IS_VALLEYVIEW(dev_priv)) {
777 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
778 }
779}
780
781static int i915_workqueues_init(struct drm_i915_private *dev_priv)
782{
783 /*
784 * The i915 workqueue is primarily used for batched retirement of
785 * requests (and thus managing bo) once the task has been completed
Chris Wilsone61e0f52018-02-21 09:56:36 +0000786 * by the GPU. i915_retire_requests() is called directly when we
Chris Wilson0673ad42016-06-24 14:00:22 +0100787 * need high-priority retirement, such as waiting for an explicit
788 * bo.
789 *
790 * It is also used for periodic low-priority events, such as
791 * idle-timers and recording error state.
792 *
793 * All tasks on the workqueue are expected to acquire the dev mutex
794 * so there is no point in running more than one instance of the
795 * workqueue at any time. Use an ordered one.
796 */
797 dev_priv->wq = alloc_ordered_workqueue("i915", 0);
798 if (dev_priv->wq == NULL)
799 goto out_err;
800
801 dev_priv->hotplug.dp_wq = alloc_ordered_workqueue("i915-dp", 0);
802 if (dev_priv->hotplug.dp_wq == NULL)
803 goto out_free_wq;
804
Chris Wilson0673ad42016-06-24 14:00:22 +0100805 return 0;
806
Chris Wilson0673ad42016-06-24 14:00:22 +0100807out_free_wq:
808 destroy_workqueue(dev_priv->wq);
809out_err:
810 DRM_ERROR("Failed to allocate workqueues.\n");
811
812 return -ENOMEM;
813}
814
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000815static void i915_engines_cleanup(struct drm_i915_private *i915)
816{
817 struct intel_engine_cs *engine;
818 enum intel_engine_id id;
819
820 for_each_engine(engine, i915, id)
821 kfree(engine);
822}
823
Chris Wilson0673ad42016-06-24 14:00:22 +0100824static void i915_workqueues_cleanup(struct drm_i915_private *dev_priv)
825{
Chris Wilson0673ad42016-06-24 14:00:22 +0100826 destroy_workqueue(dev_priv->hotplug.dp_wq);
827 destroy_workqueue(dev_priv->wq);
828}
829
Paulo Zanoni4fc7e842016-09-26 15:07:52 +0300830/*
831 * We don't keep the workarounds for pre-production hardware, so we expect our
832 * driver to fail on these machines in one way or another. A little warning on
833 * dmesg may help both the user and the bug triagers.
Chris Wilson6a7a6a92017-11-17 10:26:35 +0000834 *
835 * Our policy for removing pre-production workarounds is to keep the
836 * current gen workarounds as a guide to the bring-up of the next gen
837 * (workarounds have a habit of persisting!). Anything older than that
838 * should be removed along with the complications they introduce.
Paulo Zanoni4fc7e842016-09-26 15:07:52 +0300839 */
840static void intel_detect_preproduction_hw(struct drm_i915_private *dev_priv)
841{
Chris Wilson248a1242017-01-30 10:44:56 +0000842 bool pre = false;
843
844 pre |= IS_HSW_EARLY_SDV(dev_priv);
845 pre |= IS_SKL_REVID(dev_priv, 0, SKL_REVID_F0);
Chris Wilson0102ba12017-01-30 10:44:58 +0000846 pre |= IS_BXT_REVID(dev_priv, 0, BXT_REVID_B_LAST);
Chris Wilson1aca96c2018-11-28 13:53:25 +0000847 pre |= IS_KBL_REVID(dev_priv, 0, KBL_REVID_A0);
Chris Wilson248a1242017-01-30 10:44:56 +0000848
Chris Wilson7c5ff4a2017-01-30 10:44:57 +0000849 if (pre) {
Paulo Zanoni4fc7e842016-09-26 15:07:52 +0300850 DRM_ERROR("This is a pre-production stepping. "
851 "It may not be fully functional.\n");
Chris Wilson7c5ff4a2017-01-30 10:44:57 +0000852 add_taint(TAINT_MACHINE_CHECK, LOCKDEP_STILL_OK);
853 }
Paulo Zanoni4fc7e842016-09-26 15:07:52 +0300854}
855
Chris Wilson0673ad42016-06-24 14:00:22 +0100856/**
857 * i915_driver_init_early - setup state not requiring device access
858 * @dev_priv: device private
859 *
860 * Initialize everything that is a "SW-only" state, that is state not
861 * requiring accessing the device or exposing the driver via kernel internal
862 * or userspace interfaces. Example steps belonging here: lock initialization,
863 * system memory allocation, setting up device specific attributes and
864 * function hooks not requiring accessing the device.
865 */
Chris Wilson55ac5a12018-09-05 15:09:20 +0100866static int i915_driver_init_early(struct drm_i915_private *dev_priv)
Chris Wilson0673ad42016-06-24 14:00:22 +0100867{
Chris Wilson0673ad42016-06-24 14:00:22 +0100868 int ret = 0;
869
870 if (i915_inject_load_failure())
871 return -ENODEV;
872
Tvrtko Ursulin805446c2019-03-27 14:23:28 +0000873 intel_device_info_subplatform_init(dev_priv);
874
Daniele Ceraolo Spurio6cbe88302019-04-02 13:10:31 -0700875 intel_uncore_init_early(&dev_priv->uncore);
876
Chris Wilson0673ad42016-06-24 14:00:22 +0100877 spin_lock_init(&dev_priv->irq_lock);
878 spin_lock_init(&dev_priv->gpu_error.lock);
879 mutex_init(&dev_priv->backlight_lock);
Lyude317eaa92017-02-03 21:18:25 -0500880
Chris Wilson0673ad42016-06-24 14:00:22 +0100881 mutex_init(&dev_priv->sb_lock);
Chris Wilson0673ad42016-06-24 14:00:22 +0100882 mutex_init(&dev_priv->av_mutex);
883 mutex_init(&dev_priv->wm.wm_mutex);
884 mutex_init(&dev_priv->pps_mutex);
Ramalingam C9055aac2019-02-16 23:06:51 +0530885 mutex_init(&dev_priv->hdcp_comp_mutex);
Chris Wilson0673ad42016-06-24 14:00:22 +0100886
Chris Wilson0b1de5d2016-08-12 12:39:59 +0100887 i915_memcpy_init_early(dev_priv);
Chris Wilsonbd780f32019-01-14 14:21:09 +0000888 intel_runtime_pm_init_early(dev_priv);
Chris Wilson0b1de5d2016-08-12 12:39:59 +0100889
Chris Wilson0673ad42016-06-24 14:00:22 +0100890 ret = i915_workqueues_init(dev_priv);
891 if (ret < 0)
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000892 goto err_engines;
Chris Wilson0673ad42016-06-24 14:00:22 +0100893
Michal Wajdeczkoa0de9082018-03-23 12:34:49 +0000894 ret = i915_gem_init_early(dev_priv);
895 if (ret < 0)
896 goto err_workqueues;
897
Chris Wilson0673ad42016-06-24 14:00:22 +0100898 /* This must be called before any calls to HAS_PCH_* */
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000899 intel_detect_pch(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100900
Michal Wajdeczkoa0de9082018-03-23 12:34:49 +0000901 intel_wopcm_init_early(&dev_priv->wopcm);
902 intel_uc_init_early(dev_priv);
Tvrtko Ursulin192aa182016-12-01 14:16:45 +0000903 intel_pm_setup(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100904 intel_init_dpio(dev_priv);
Imre Deakf28ec6f2018-08-06 12:58:37 +0300905 ret = intel_power_domains_init(dev_priv);
906 if (ret < 0)
907 goto err_uc;
Chris Wilson0673ad42016-06-24 14:00:22 +0100908 intel_irq_init(dev_priv);
Mika Kuoppala3ac168a2016-11-01 18:43:03 +0200909 intel_hangcheck_init(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100910 intel_init_display_hooks(dev_priv);
911 intel_init_clock_gating_hooks(dev_priv);
912 intel_init_audio_hooks(dev_priv);
David Weinehall36cdd012016-08-22 13:59:31 +0300913 intel_display_crc_init(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100914
Paulo Zanoni4fc7e842016-09-26 15:07:52 +0300915 intel_detect_preproduction_hw(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100916
917 return 0;
918
Imre Deakf28ec6f2018-08-06 12:58:37 +0300919err_uc:
920 intel_uc_cleanup_early(dev_priv);
921 i915_gem_cleanup_early(dev_priv);
Michal Wajdeczkoa0de9082018-03-23 12:34:49 +0000922err_workqueues:
Chris Wilson0673ad42016-06-24 14:00:22 +0100923 i915_workqueues_cleanup(dev_priv);
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000924err_engines:
925 i915_engines_cleanup(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100926 return ret;
927}
928
929/**
930 * i915_driver_cleanup_early - cleanup the setup done in i915_driver_init_early()
931 * @dev_priv: device private
932 */
933static void i915_driver_cleanup_early(struct drm_i915_private *dev_priv)
934{
Joonas Lahtinencefcff82017-04-28 10:58:39 +0300935 intel_irq_fini(dev_priv);
Imre Deakf28ec6f2018-08-06 12:58:37 +0300936 intel_power_domains_cleanup(dev_priv);
Michal Wajdeczko8c650ae2018-03-23 12:34:50 +0000937 intel_uc_cleanup_early(dev_priv);
Michal Wajdeczkoa0de9082018-03-23 12:34:49 +0000938 i915_gem_cleanup_early(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100939 i915_workqueues_cleanup(dev_priv);
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000940 i915_engines_cleanup(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100941}
942
Chris Wilson0673ad42016-06-24 14:00:22 +0100943/**
944 * i915_driver_init_mmio - setup device MMIO
945 * @dev_priv: device private
946 *
947 * Setup minimal device state necessary for MMIO accesses later in the
948 * initialization sequence. The setup here should avoid any other device-wide
949 * side effects or exposing the driver via kernel internal or user space
950 * interfaces.
951 */
952static int i915_driver_init_mmio(struct drm_i915_private *dev_priv)
953{
Chris Wilson0673ad42016-06-24 14:00:22 +0100954 int ret;
955
956 if (i915_inject_load_failure())
957 return -ENODEV;
958
Tvrtko Ursulinda5f53b2016-12-01 14:16:40 +0000959 if (i915_get_bridge_dev(dev_priv))
Chris Wilson0673ad42016-06-24 14:00:22 +0100960 return -EIO;
961
Daniele Ceraolo Spurio3de6f852019-04-02 13:10:32 -0700962 ret = intel_uncore_init_mmio(&dev_priv->uncore);
Chris Wilson0673ad42016-06-24 14:00:22 +0100963 if (ret < 0)
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300964 goto err_bridge;
Chris Wilson0673ad42016-06-24 14:00:22 +0100965
Daniele Ceraolo Spurio25286aa2019-03-19 11:35:40 -0700966 /* Try to make sure MCHBAR is enabled before poking at it */
967 intel_setup_mchbar(dev_priv);
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300968
Oscar Mateo26376a72018-03-16 14:14:49 +0200969 intel_device_info_init_mmio(dev_priv);
970
Daniele Ceraolo Spurio3de6f852019-04-02 13:10:32 -0700971 intel_uncore_prune_mmio_domains(&dev_priv->uncore);
Oscar Mateo26376a72018-03-16 14:14:49 +0200972
Sagar Arun Kamble1fc556f2017-10-04 15:33:24 +0000973 intel_uc_init_mmio(dev_priv);
974
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300975 ret = intel_engines_init_mmio(dev_priv);
976 if (ret)
977 goto err_uncore;
978
Chris Wilson24145512017-01-24 11:01:35 +0000979 i915_gem_init_mmio(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +0100980
981 return 0;
982
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300983err_uncore:
Daniele Ceraolo Spurio25286aa2019-03-19 11:35:40 -0700984 intel_teardown_mchbar(dev_priv);
Daniele Ceraolo Spurio3de6f852019-04-02 13:10:32 -0700985 intel_uncore_fini_mmio(&dev_priv->uncore);
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300986err_bridge:
Chris Wilson0673ad42016-06-24 14:00:22 +0100987 pci_dev_put(dev_priv->bridge_dev);
988
989 return ret;
990}
991
992/**
993 * i915_driver_cleanup_mmio - cleanup the setup done in i915_driver_init_mmio()
994 * @dev_priv: device private
995 */
996static void i915_driver_cleanup_mmio(struct drm_i915_private *dev_priv)
997{
Daniele Ceraolo Spurio25286aa2019-03-19 11:35:40 -0700998 intel_teardown_mchbar(dev_priv);
Daniele Ceraolo Spurio3de6f852019-04-02 13:10:32 -0700999 intel_uncore_fini_mmio(&dev_priv->uncore);
Chris Wilson0673ad42016-06-24 14:00:22 +01001000 pci_dev_put(dev_priv->bridge_dev);
1001}
1002
Chris Wilson94b4f3b2016-07-05 10:40:20 +01001003static void intel_sanitize_options(struct drm_i915_private *dev_priv)
1004{
Chuanxiao Dong67b7f332017-05-27 17:44:17 +08001005 intel_gvt_sanitize_options(dev_priv);
Chris Wilson94b4f3b2016-07-05 10:40:20 +01001006}
1007
Ville Syrjäläb185a352019-03-06 22:35:51 +02001008#define DRAM_TYPE_STR(type) [INTEL_DRAM_ ## type] = #type
1009
1010static const char *intel_dram_type_str(enum intel_dram_type type)
1011{
1012 static const char * const str[] = {
1013 DRAM_TYPE_STR(UNKNOWN),
1014 DRAM_TYPE_STR(DDR3),
1015 DRAM_TYPE_STR(DDR4),
1016 DRAM_TYPE_STR(LPDDR3),
1017 DRAM_TYPE_STR(LPDDR4),
1018 };
1019
1020 if (type >= ARRAY_SIZE(str))
1021 type = INTEL_DRAM_UNKNOWN;
1022
1023 return str[type];
1024}
1025
1026#undef DRAM_TYPE_STR
1027
Ville Syrjälä54561b22019-03-06 22:35:42 +02001028static int intel_dimm_num_devices(const struct dram_dimm_info *dimm)
1029{
1030 return dimm->ranks * 64 / (dimm->width ?: 1);
1031}
1032
Ville Syrjäläea411e62019-03-06 22:35:41 +02001033/* Returns total GB for the whole DIMM */
1034static int skl_get_dimm_size(u16 val)
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301035{
Ville Syrjäläea411e62019-03-06 22:35:41 +02001036 return val & SKL_DRAM_SIZE_MASK;
1037}
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301038
Ville Syrjäläea411e62019-03-06 22:35:41 +02001039static int skl_get_dimm_width(u16 val)
1040{
1041 if (skl_get_dimm_size(val) == 0)
1042 return 0;
1043
1044 switch (val & SKL_DRAM_WIDTH_MASK) {
1045 case SKL_DRAM_WIDTH_X8:
1046 case SKL_DRAM_WIDTH_X16:
1047 case SKL_DRAM_WIDTH_X32:
1048 val = (val & SKL_DRAM_WIDTH_MASK) >> SKL_DRAM_WIDTH_SHIFT;
1049 return 8 << val;
1050 default:
1051 MISSING_CASE(val);
1052 return 0;
1053 }
1054}
1055
1056static int skl_get_dimm_ranks(u16 val)
1057{
1058 if (skl_get_dimm_size(val) == 0)
1059 return 0;
1060
1061 val = (val & SKL_DRAM_RANK_MASK) >> SKL_DRAM_RANK_SHIFT;
1062
1063 return val + 1;
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301064}
1065
Ville Syrjälä6d9c1e92019-03-06 22:35:50 +02001066/* Returns total GB for the whole DIMM */
1067static int cnl_get_dimm_size(u16 val)
1068{
1069 return (val & CNL_DRAM_SIZE_MASK) / 2;
1070}
1071
1072static int cnl_get_dimm_width(u16 val)
1073{
1074 if (cnl_get_dimm_size(val) == 0)
1075 return 0;
1076
1077 switch (val & CNL_DRAM_WIDTH_MASK) {
1078 case CNL_DRAM_WIDTH_X8:
1079 case CNL_DRAM_WIDTH_X16:
1080 case CNL_DRAM_WIDTH_X32:
1081 val = (val & CNL_DRAM_WIDTH_MASK) >> CNL_DRAM_WIDTH_SHIFT;
1082 return 8 << val;
1083 default:
1084 MISSING_CASE(val);
1085 return 0;
1086 }
1087}
1088
1089static int cnl_get_dimm_ranks(u16 val)
1090{
1091 if (cnl_get_dimm_size(val) == 0)
1092 return 0;
1093
1094 val = (val & CNL_DRAM_RANK_MASK) >> CNL_DRAM_RANK_SHIFT;
1095
1096 return val + 1;
1097}
1098
Mahesh Kumar86b59282018-08-31 16:39:42 +05301099static bool
Ville Syrjälä54561b22019-03-06 22:35:42 +02001100skl_is_16gb_dimm(const struct dram_dimm_info *dimm)
Mahesh Kumar86b59282018-08-31 16:39:42 +05301101{
Ville Syrjälä54561b22019-03-06 22:35:42 +02001102 /* Convert total GB to Gb per DRAM device */
1103 return 8 * dimm->size / (intel_dimm_num_devices(dimm) ?: 1) == 16;
Mahesh Kumar86b59282018-08-31 16:39:42 +05301104}
1105
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001106static void
Ville Syrjälä6d9c1e92019-03-06 22:35:50 +02001107skl_dram_get_dimm_info(struct drm_i915_private *dev_priv,
1108 struct dram_dimm_info *dimm,
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001109 int channel, char dimm_name, u16 val)
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301110{
Ville Syrjälä6d9c1e92019-03-06 22:35:50 +02001111 if (INTEL_GEN(dev_priv) >= 10) {
1112 dimm->size = cnl_get_dimm_size(val);
1113 dimm->width = cnl_get_dimm_width(val);
1114 dimm->ranks = cnl_get_dimm_ranks(val);
1115 } else {
1116 dimm->size = skl_get_dimm_size(val);
1117 dimm->width = skl_get_dimm_width(val);
1118 dimm->ranks = skl_get_dimm_ranks(val);
1119 }
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301120
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001121 DRM_DEBUG_KMS("CH%u DIMM %c size: %u GB, width: X%u, ranks: %u, 16Gb DIMMs: %s\n",
1122 channel, dimm_name, dimm->size, dimm->width, dimm->ranks,
1123 yesno(skl_is_16gb_dimm(dimm)));
1124}
Ville Syrjäläea411e62019-03-06 22:35:41 +02001125
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001126static int
Ville Syrjälä6d9c1e92019-03-06 22:35:50 +02001127skl_dram_get_channel_info(struct drm_i915_private *dev_priv,
1128 struct dram_channel_info *ch,
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001129 int channel, u32 val)
1130{
Ville Syrjälä6d9c1e92019-03-06 22:35:50 +02001131 skl_dram_get_dimm_info(dev_priv, &ch->dimm_l,
1132 channel, 'L', val & 0xffff);
1133 skl_dram_get_dimm_info(dev_priv, &ch->dimm_s,
1134 channel, 'S', val >> 16);
Ville Syrjäläea411e62019-03-06 22:35:41 +02001135
Ville Syrjälä1d559672019-03-06 22:35:48 +02001136 if (ch->dimm_l.size == 0 && ch->dimm_s.size == 0) {
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001137 DRM_DEBUG_KMS("CH%u not populated\n", channel);
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301138 return -EINVAL;
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001139 }
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301140
Ville Syrjälä1d559672019-03-06 22:35:48 +02001141 if (ch->dimm_l.ranks == 2 || ch->dimm_s.ranks == 2)
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001142 ch->ranks = 2;
Ville Syrjälä1d559672019-03-06 22:35:48 +02001143 else if (ch->dimm_l.ranks == 1 && ch->dimm_s.ranks == 1)
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001144 ch->ranks = 2;
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301145 else
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001146 ch->ranks = 1;
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301147
Ville Syrjälä54561b22019-03-06 22:35:42 +02001148 ch->is_16gb_dimm =
Ville Syrjälä1d559672019-03-06 22:35:48 +02001149 skl_is_16gb_dimm(&ch->dimm_l) ||
1150 skl_is_16gb_dimm(&ch->dimm_s);
Mahesh Kumar86b59282018-08-31 16:39:42 +05301151
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001152 DRM_DEBUG_KMS("CH%u ranks: %u, 16Gb DIMMs: %s\n",
1153 channel, ch->ranks, yesno(ch->is_16gb_dimm));
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301154
1155 return 0;
1156}
1157
Mahesh Kumar8a6c5442018-08-24 15:02:25 +05301158static bool
Ville Syrjäläd75434b2019-03-06 22:35:47 +02001159intel_is_dram_symmetric(const struct dram_channel_info *ch0,
1160 const struct dram_channel_info *ch1)
Mahesh Kumar8a6c5442018-08-24 15:02:25 +05301161{
Ville Syrjäläd75434b2019-03-06 22:35:47 +02001162 return !memcmp(ch0, ch1, sizeof(*ch0)) &&
Ville Syrjälä1d559672019-03-06 22:35:48 +02001163 (ch0->dimm_s.size == 0 ||
1164 !memcmp(&ch0->dimm_l, &ch0->dimm_s, sizeof(ch0->dimm_l)));
Mahesh Kumar8a6c5442018-08-24 15:02:25 +05301165}
1166
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301167static int
1168skl_dram_get_channels_info(struct drm_i915_private *dev_priv)
1169{
1170 struct dram_info *dram_info = &dev_priv->dram_info;
Ville Syrjälä198b8dd2019-03-06 22:35:46 +02001171 struct dram_channel_info ch0 = {}, ch1 = {};
Ville Syrjäläd75434b2019-03-06 22:35:47 +02001172 u32 val;
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301173 int ret;
1174
Ville Syrjäläd75434b2019-03-06 22:35:47 +02001175 val = I915_READ(SKL_MAD_DIMM_CH0_0_0_0_MCHBAR_MCMAIN);
Ville Syrjälä6d9c1e92019-03-06 22:35:50 +02001176 ret = skl_dram_get_channel_info(dev_priv, &ch0, 0, val);
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301177 if (ret == 0)
1178 dram_info->num_channels++;
1179
Ville Syrjäläd75434b2019-03-06 22:35:47 +02001180 val = I915_READ(SKL_MAD_DIMM_CH1_0_0_0_MCHBAR_MCMAIN);
Ville Syrjälä6d9c1e92019-03-06 22:35:50 +02001181 ret = skl_dram_get_channel_info(dev_priv, &ch1, 1, val);
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301182 if (ret == 0)
1183 dram_info->num_channels++;
1184
1185 if (dram_info->num_channels == 0) {
1186 DRM_INFO("Number of memory channels is zero\n");
1187 return -EINVAL;
1188 }
1189
1190 /*
1191 * If any of the channel is single rank channel, worst case output
1192 * will be same as if single rank memory, so consider single rank
1193 * memory.
1194 */
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001195 if (ch0.ranks == 1 || ch1.ranks == 1)
1196 dram_info->ranks = 1;
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301197 else
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001198 dram_info->ranks = max(ch0.ranks, ch1.ranks);
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301199
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001200 if (dram_info->ranks == 0) {
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301201 DRM_INFO("couldn't get memory rank information\n");
1202 return -EINVAL;
1203 }
Mahesh Kumar86b59282018-08-31 16:39:42 +05301204
Ville Syrjälä5d6f36b2018-10-23 21:21:02 +03001205 dram_info->is_16gb_dimm = ch0.is_16gb_dimm || ch1.is_16gb_dimm;
Mahesh Kumar86b59282018-08-31 16:39:42 +05301206
Ville Syrjäläd75434b2019-03-06 22:35:47 +02001207 dram_info->symmetric_memory = intel_is_dram_symmetric(&ch0, &ch1);
Mahesh Kumar8a6c5442018-08-24 15:02:25 +05301208
Ville Syrjäläd75434b2019-03-06 22:35:47 +02001209 DRM_DEBUG_KMS("Memory configuration is symmetric? %s\n",
1210 yesno(dram_info->symmetric_memory));
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301211 return 0;
1212}
1213
Ville Syrjäläb185a352019-03-06 22:35:51 +02001214static enum intel_dram_type
1215skl_get_dram_type(struct drm_i915_private *dev_priv)
1216{
1217 u32 val;
1218
1219 val = I915_READ(SKL_MAD_INTER_CHANNEL_0_0_0_MCHBAR_MCMAIN);
1220
1221 switch (val & SKL_DRAM_DDR_TYPE_MASK) {
1222 case SKL_DRAM_DDR_TYPE_DDR3:
1223 return INTEL_DRAM_DDR3;
1224 case SKL_DRAM_DDR_TYPE_DDR4:
1225 return INTEL_DRAM_DDR4;
1226 case SKL_DRAM_DDR_TYPE_LPDDR3:
1227 return INTEL_DRAM_LPDDR3;
1228 case SKL_DRAM_DDR_TYPE_LPDDR4:
1229 return INTEL_DRAM_LPDDR4;
1230 default:
1231 MISSING_CASE(val);
1232 return INTEL_DRAM_UNKNOWN;
1233 }
1234}
1235
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301236static int
1237skl_get_dram_info(struct drm_i915_private *dev_priv)
1238{
1239 struct dram_info *dram_info = &dev_priv->dram_info;
1240 u32 mem_freq_khz, val;
1241 int ret;
1242
Ville Syrjäläb185a352019-03-06 22:35:51 +02001243 dram_info->type = skl_get_dram_type(dev_priv);
1244 DRM_DEBUG_KMS("DRAM type: %s\n", intel_dram_type_str(dram_info->type));
1245
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301246 ret = skl_dram_get_channels_info(dev_priv);
1247 if (ret)
1248 return ret;
1249
1250 val = I915_READ(SKL_MC_BIOS_DATA_0_0_0_MCHBAR_PCU);
1251 mem_freq_khz = DIV_ROUND_UP((val & SKL_REQ_DATA_MASK) *
1252 SKL_MEMORY_FREQ_MULTIPLIER_HZ, 1000);
1253
1254 dram_info->bandwidth_kbps = dram_info->num_channels *
1255 mem_freq_khz * 8;
1256
1257 if (dram_info->bandwidth_kbps == 0) {
1258 DRM_INFO("Couldn't get system memory bandwidth\n");
1259 return -EINVAL;
1260 }
1261
1262 dram_info->valid = true;
1263 return 0;
1264}
1265
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001266/* Returns Gb per DRAM device */
1267static int bxt_get_dimm_size(u32 val)
1268{
1269 switch (val & BXT_DRAM_SIZE_MASK) {
Ville Syrjälä88603432019-03-06 22:35:44 +02001270 case BXT_DRAM_SIZE_4GBIT:
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001271 return 4;
Ville Syrjälä88603432019-03-06 22:35:44 +02001272 case BXT_DRAM_SIZE_6GBIT:
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001273 return 6;
Ville Syrjälä88603432019-03-06 22:35:44 +02001274 case BXT_DRAM_SIZE_8GBIT:
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001275 return 8;
Ville Syrjälä88603432019-03-06 22:35:44 +02001276 case BXT_DRAM_SIZE_12GBIT:
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001277 return 12;
Ville Syrjälä88603432019-03-06 22:35:44 +02001278 case BXT_DRAM_SIZE_16GBIT:
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001279 return 16;
1280 default:
1281 MISSING_CASE(val);
1282 return 0;
1283 }
1284}
1285
1286static int bxt_get_dimm_width(u32 val)
1287{
1288 if (!bxt_get_dimm_size(val))
1289 return 0;
1290
1291 val = (val & BXT_DRAM_WIDTH_MASK) >> BXT_DRAM_WIDTH_SHIFT;
1292
1293 return 8 << val;
1294}
1295
1296static int bxt_get_dimm_ranks(u32 val)
1297{
1298 if (!bxt_get_dimm_size(val))
1299 return 0;
1300
1301 switch (val & BXT_DRAM_RANK_MASK) {
1302 case BXT_DRAM_RANK_SINGLE:
1303 return 1;
1304 case BXT_DRAM_RANK_DUAL:
1305 return 2;
1306 default:
1307 MISSING_CASE(val);
1308 return 0;
1309 }
1310}
1311
Ville Syrjäläb185a352019-03-06 22:35:51 +02001312static enum intel_dram_type bxt_get_dimm_type(u32 val)
1313{
1314 if (!bxt_get_dimm_size(val))
1315 return INTEL_DRAM_UNKNOWN;
1316
1317 switch (val & BXT_DRAM_TYPE_MASK) {
1318 case BXT_DRAM_TYPE_DDR3:
1319 return INTEL_DRAM_DDR3;
1320 case BXT_DRAM_TYPE_LPDDR3:
1321 return INTEL_DRAM_LPDDR3;
1322 case BXT_DRAM_TYPE_DDR4:
1323 return INTEL_DRAM_DDR4;
1324 case BXT_DRAM_TYPE_LPDDR4:
1325 return INTEL_DRAM_LPDDR4;
1326 default:
1327 MISSING_CASE(val);
1328 return INTEL_DRAM_UNKNOWN;
1329 }
1330}
1331
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001332static void bxt_get_dimm_info(struct dram_dimm_info *dimm,
1333 u32 val)
1334{
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001335 dimm->width = bxt_get_dimm_width(val);
1336 dimm->ranks = bxt_get_dimm_ranks(val);
Ville Syrjälä88603432019-03-06 22:35:44 +02001337
1338 /*
1339 * Size in register is Gb per DRAM device. Convert to total
1340 * GB to match the way we report this for non-LP platforms.
1341 */
1342 dimm->size = bxt_get_dimm_size(val) * intel_dimm_num_devices(dimm) / 8;
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001343}
1344
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301345static int
1346bxt_get_dram_info(struct drm_i915_private *dev_priv)
1347{
1348 struct dram_info *dram_info = &dev_priv->dram_info;
1349 u32 dram_channels;
1350 u32 mem_freq_khz, val;
1351 u8 num_active_channels;
1352 int i;
1353
1354 val = I915_READ(BXT_P_CR_MC_BIOS_REQ_0_0_0);
1355 mem_freq_khz = DIV_ROUND_UP((val & BXT_REQ_DATA_MASK) *
1356 BXT_MEMORY_FREQ_MULTIPLIER_HZ, 1000);
1357
1358 dram_channels = val & BXT_DRAM_CHANNEL_ACTIVE_MASK;
1359 num_active_channels = hweight32(dram_channels);
1360
1361 /* Each active bit represents 4-byte channel */
1362 dram_info->bandwidth_kbps = (mem_freq_khz * num_active_channels * 4);
1363
1364 if (dram_info->bandwidth_kbps == 0) {
1365 DRM_INFO("Couldn't get system memory bandwidth\n");
1366 return -EINVAL;
1367 }
1368
1369 /*
1370 * Now read each DUNIT8/9/10/11 to check the rank of each dimms.
1371 */
1372 for (i = BXT_D_CR_DRP0_DUNIT_START; i <= BXT_D_CR_DRP0_DUNIT_END; i++) {
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001373 struct dram_dimm_info dimm;
Ville Syrjäläb185a352019-03-06 22:35:51 +02001374 enum intel_dram_type type;
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301375
1376 val = I915_READ(BXT_D_CR_DRP0_DUNIT(i));
1377 if (val == 0xFFFFFFFF)
1378 continue;
1379
1380 dram_info->num_channels++;
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301381
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001382 bxt_get_dimm_info(&dimm, val);
Ville Syrjäläb185a352019-03-06 22:35:51 +02001383 type = bxt_get_dimm_type(val);
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301384
Ville Syrjäläb185a352019-03-06 22:35:51 +02001385 WARN_ON(type != INTEL_DRAM_UNKNOWN &&
1386 dram_info->type != INTEL_DRAM_UNKNOWN &&
1387 dram_info->type != type);
1388
1389 DRM_DEBUG_KMS("CH%u DIMM size: %u GB, width: X%u, ranks: %u, type: %s\n",
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001390 i - BXT_D_CR_DRP0_DUNIT_START,
Ville Syrjäläb185a352019-03-06 22:35:51 +02001391 dimm.size, dimm.width, dimm.ranks,
1392 intel_dram_type_str(type));
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301393
1394 /*
1395 * If any of the channel is single rank channel,
1396 * worst case output will be same as if single rank
1397 * memory, so consider single rank memory.
1398 */
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001399 if (dram_info->ranks == 0)
Ville Syrjäläa62819a2019-03-06 22:35:43 +02001400 dram_info->ranks = dimm.ranks;
1401 else if (dimm.ranks == 1)
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001402 dram_info->ranks = 1;
Ville Syrjäläb185a352019-03-06 22:35:51 +02001403
1404 if (type != INTEL_DRAM_UNKNOWN)
1405 dram_info->type = type;
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301406 }
1407
Ville Syrjäläb185a352019-03-06 22:35:51 +02001408 if (dram_info->type == INTEL_DRAM_UNKNOWN ||
1409 dram_info->ranks == 0) {
1410 DRM_INFO("couldn't get memory information\n");
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301411 return -EINVAL;
1412 }
1413
1414 dram_info->valid = true;
1415 return 0;
1416}
1417
1418static void
1419intel_get_dram_info(struct drm_i915_private *dev_priv)
1420{
1421 struct dram_info *dram_info = &dev_priv->dram_info;
1422 int ret;
1423
Ville Syrjälä5d6f36b2018-10-23 21:21:02 +03001424 /*
1425 * Assume 16Gb DIMMs are present until proven otherwise.
1426 * This is only used for the level 0 watermark latency
1427 * w/a which does not apply to bxt/glk.
1428 */
1429 dram_info->is_16gb_dimm = !IS_GEN9_LP(dev_priv);
1430
Ville Syrjälä331ecde2019-03-06 22:35:45 +02001431 if (INTEL_GEN(dev_priv) < 9)
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301432 return;
1433
Ville Syrjälä331ecde2019-03-06 22:35:45 +02001434 if (IS_GEN9_LP(dev_priv))
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301435 ret = bxt_get_dram_info(dev_priv);
Mahesh Kumar5771caf2018-08-24 15:02:22 +05301436 else
Ville Syrjälä6d9c1e92019-03-06 22:35:50 +02001437 ret = skl_get_dram_info(dev_priv);
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301438 if (ret)
1439 return;
1440
Ville Syrjälä30a533e2019-03-06 22:35:49 +02001441 DRM_DEBUG_KMS("DRAM bandwidth: %u kBps, channels: %u\n",
1442 dram_info->bandwidth_kbps,
1443 dram_info->num_channels);
1444
Ville Syrjälä54561b22019-03-06 22:35:42 +02001445 DRM_DEBUG_KMS("DRAM ranks: %u, 16Gb DIMMs: %s\n",
Ville Syrjälä80373fb2019-03-06 22:35:40 +02001446 dram_info->ranks, yesno(dram_info->is_16gb_dimm));
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301447}
1448
Daniele Ceraolo Spuriof6ac9932019-03-28 10:45:32 -07001449static u32 gen9_edram_size_mb(struct drm_i915_private *dev_priv, u32 cap)
1450{
1451 const unsigned int ways[8] = { 4, 8, 12, 16, 16, 16, 16, 16 };
1452 const unsigned int sets[4] = { 1, 1, 2, 2 };
1453
1454 return EDRAM_NUM_BANKS(cap) *
1455 ways[EDRAM_WAYS_IDX(cap)] *
1456 sets[EDRAM_SETS_IDX(cap)];
1457}
1458
1459static void edram_detect(struct drm_i915_private *dev_priv)
1460{
1461 u32 edram_cap = 0;
1462
1463 if (!(IS_HASWELL(dev_priv) ||
1464 IS_BROADWELL(dev_priv) ||
1465 INTEL_GEN(dev_priv) >= 9))
1466 return;
1467
1468 edram_cap = __raw_uncore_read32(&dev_priv->uncore, HSW_EDRAM_CAP);
1469
1470 /* NB: We can't write IDICR yet because we don't have gt funcs set up */
1471
1472 if (!(edram_cap & EDRAM_ENABLED))
1473 return;
1474
1475 /*
1476 * The needed capability bits for size calculation are not there with
1477 * pre gen9 so return 128MB always.
1478 */
1479 if (INTEL_GEN(dev_priv) < 9)
1480 dev_priv->edram_size_mb = 128;
1481 else
1482 dev_priv->edram_size_mb =
1483 gen9_edram_size_mb(dev_priv, edram_cap);
1484
1485 DRM_INFO("Found %uMB of eDRAM\n", dev_priv->edram_size_mb);
1486}
1487
Chris Wilson0673ad42016-06-24 14:00:22 +01001488/**
1489 * i915_driver_init_hw - setup state requiring device access
1490 * @dev_priv: device private
1491 *
1492 * Setup state that requires accessing the device, but doesn't require
1493 * exposing the driver via kernel internal or userspace interfaces.
1494 */
1495static int i915_driver_init_hw(struct drm_i915_private *dev_priv)
1496{
David Weinehall52a05c32016-08-22 13:32:44 +03001497 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +01001498 int ret;
1499
1500 if (i915_inject_load_failure())
1501 return -ENODEV;
1502
Jani Nikula1400cc72018-12-31 16:56:43 +02001503 intel_device_info_runtime_init(dev_priv);
Chris Wilson94b4f3b2016-07-05 10:40:20 +01001504
Chris Wilson4bdafb92018-09-26 21:12:22 +01001505 if (HAS_PPGTT(dev_priv)) {
1506 if (intel_vgpu_active(dev_priv) &&
Chris Wilsonca6ac682019-03-14 22:38:35 +00001507 !intel_vgpu_has_full_ppgtt(dev_priv)) {
Chris Wilson4bdafb92018-09-26 21:12:22 +01001508 i915_report_error(dev_priv,
1509 "incompatible vGPU found, support for isolated ppGTT required\n");
1510 return -ENXIO;
1511 }
1512 }
1513
Chris Wilson46592892018-11-30 12:59:54 +00001514 if (HAS_EXECLISTS(dev_priv)) {
1515 /*
1516 * Older GVT emulation depends upon intercepting CSB mmio,
1517 * which we no longer use, preferring to use the HWSP cache
1518 * instead.
1519 */
1520 if (intel_vgpu_active(dev_priv) &&
1521 !intel_vgpu_has_hwsp_emulation(dev_priv)) {
1522 i915_report_error(dev_priv,
1523 "old vGPU host found, support for HWSP emulation required\n");
1524 return -ENXIO;
1525 }
1526 }
1527
Chris Wilson94b4f3b2016-07-05 10:40:20 +01001528 intel_sanitize_options(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001529
Daniele Ceraolo Spuriof6ac9932019-03-28 10:45:32 -07001530 /* needs to be done before ggtt probe */
1531 edram_detect(dev_priv);
1532
Lionel Landwerlin9f9b2792017-10-27 15:59:31 +01001533 i915_perf_init(dev_priv);
1534
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001535 ret = i915_ggtt_probe_hw(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001536 if (ret)
Chris Wilson9f172f62018-04-14 10:12:33 +01001537 goto err_perf;
Chris Wilson0673ad42016-06-24 14:00:22 +01001538
Chris Wilson9f172f62018-04-14 10:12:33 +01001539 /*
1540 * WARNING: Apparently we must kick fbdev drivers before vgacon,
1541 * otherwise the vga fbdev driver falls over.
1542 */
Chris Wilson0673ad42016-06-24 14:00:22 +01001543 ret = i915_kick_out_firmware_fb(dev_priv);
1544 if (ret) {
1545 DRM_ERROR("failed to remove conflicting framebuffer drivers\n");
Chris Wilson9f172f62018-04-14 10:12:33 +01001546 goto err_ggtt;
Chris Wilson0673ad42016-06-24 14:00:22 +01001547 }
1548
Gerd Hoffmannc6b38fb2019-03-01 10:24:59 +01001549 ret = vga_remove_vgacon(pdev);
Chris Wilson0673ad42016-06-24 14:00:22 +01001550 if (ret) {
1551 DRM_ERROR("failed to remove conflicting VGA console\n");
Chris Wilson9f172f62018-04-14 10:12:33 +01001552 goto err_ggtt;
Chris Wilson0673ad42016-06-24 14:00:22 +01001553 }
1554
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001555 ret = i915_ggtt_init_hw(dev_priv);
Chris Wilson0088e522016-08-04 07:52:21 +01001556 if (ret)
Chris Wilson9f172f62018-04-14 10:12:33 +01001557 goto err_ggtt;
Chris Wilson0088e522016-08-04 07:52:21 +01001558
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001559 ret = i915_ggtt_enable_hw(dev_priv);
Chris Wilson0088e522016-08-04 07:52:21 +01001560 if (ret) {
1561 DRM_ERROR("failed to enable GGTT\n");
Chris Wilson9f172f62018-04-14 10:12:33 +01001562 goto err_ggtt;
Chris Wilson0088e522016-08-04 07:52:21 +01001563 }
1564
David Weinehall52a05c32016-08-22 13:32:44 +03001565 pci_set_master(pdev);
Chris Wilson0673ad42016-06-24 14:00:22 +01001566
1567 /* overlay on gen2 is broken and can't address above 1G */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08001568 if (IS_GEN(dev_priv, 2)) {
David Weinehall52a05c32016-08-22 13:32:44 +03001569 ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(30));
Chris Wilson0673ad42016-06-24 14:00:22 +01001570 if (ret) {
1571 DRM_ERROR("failed to set DMA mask\n");
1572
Chris Wilson9f172f62018-04-14 10:12:33 +01001573 goto err_ggtt;
Chris Wilson0673ad42016-06-24 14:00:22 +01001574 }
1575 }
1576
Chris Wilson0673ad42016-06-24 14:00:22 +01001577 /* 965GM sometimes incorrectly writes to hardware status page (HWS)
1578 * using 32bit addressing, overwriting memory if HWS is located
1579 * above 4GB.
1580 *
1581 * The documentation also mentions an issue with undefined
1582 * behaviour if any general state is accessed within a page above 4GB,
1583 * which also needs to be handled carefully.
1584 */
Jani Nikulac0f86832016-12-07 12:13:04 +02001585 if (IS_I965G(dev_priv) || IS_I965GM(dev_priv)) {
David Weinehall52a05c32016-08-22 13:32:44 +03001586 ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
Chris Wilson0673ad42016-06-24 14:00:22 +01001587
1588 if (ret) {
1589 DRM_ERROR("failed to set DMA mask\n");
1590
Chris Wilson9f172f62018-04-14 10:12:33 +01001591 goto err_ggtt;
Chris Wilson0673ad42016-06-24 14:00:22 +01001592 }
1593 }
1594
Chris Wilson0673ad42016-06-24 14:00:22 +01001595 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY,
1596 PM_QOS_DEFAULT_VALUE);
1597
1598 intel_uncore_sanitize(dev_priv);
1599
Tvrtko Ursulin25d140f2018-12-03 13:33:19 +00001600 intel_gt_init_workarounds(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001601 i915_gem_load_init_fences(dev_priv);
1602
1603 /* On the 945G/GM, the chipset reports the MSI capability on the
1604 * integrated graphics even though the support isn't actually there
1605 * according to the published specs. It doesn't appear to function
1606 * correctly in testing on 945G.
1607 * This may be a side effect of MSI having been made available for PEG
1608 * and the registers being closely associated.
1609 *
1610 * According to chipset errata, on the 965GM, MSI interrupts may
Ville Syrjäläe38c2da2017-06-26 23:30:51 +03001611 * be lost or delayed, and was defeatured. MSI interrupts seem to
1612 * get lost on g4x as well, and interrupt delivery seems to stay
1613 * properly dead afterwards. So we'll just disable them for all
1614 * pre-gen5 chipsets.
Lucas De Marchi8a29c772018-05-23 11:04:35 -07001615 *
1616 * dp aux and gmbus irq on gen4 seems to be able to generate legacy
1617 * interrupts even when in MSI mode. This results in spurious
1618 * interrupt warnings if the legacy irq no. is shared with another
1619 * device. The kernel then disables that interrupt source and so
1620 * prevents the other device from working properly.
Chris Wilson0673ad42016-06-24 14:00:22 +01001621 */
Ville Syrjäläe38c2da2017-06-26 23:30:51 +03001622 if (INTEL_GEN(dev_priv) >= 5) {
David Weinehall52a05c32016-08-22 13:32:44 +03001623 if (pci_enable_msi(pdev) < 0)
Chris Wilson0673ad42016-06-24 14:00:22 +01001624 DRM_DEBUG_DRIVER("can't enable MSI");
1625 }
1626
Zhenyu Wang26f837e2017-01-13 10:46:09 +08001627 ret = intel_gvt_init(dev_priv);
1628 if (ret)
Chris Wilson7ab87ed2018-07-10 15:38:21 +01001629 goto err_msi;
1630
1631 intel_opregion_setup(dev_priv);
Mahesh Kumarcbfa59d2018-08-24 15:02:21 +05301632 /*
1633 * Fill the dram structure to get the system raw bandwidth and
1634 * dram info. This will be used for memory latency calculation.
1635 */
1636 intel_get_dram_info(dev_priv);
1637
Zhenyu Wang26f837e2017-01-13 10:46:09 +08001638
Chris Wilson0673ad42016-06-24 14:00:22 +01001639 return 0;
1640
Chris Wilson7ab87ed2018-07-10 15:38:21 +01001641err_msi:
1642 if (pdev->msi_enabled)
1643 pci_disable_msi(pdev);
1644 pm_qos_remove_request(&dev_priv->pm_qos);
Chris Wilson9f172f62018-04-14 10:12:33 +01001645err_ggtt:
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001646 i915_ggtt_cleanup_hw(dev_priv);
Chris Wilson9f172f62018-04-14 10:12:33 +01001647err_perf:
1648 i915_perf_fini(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001649 return ret;
1650}
1651
1652/**
1653 * i915_driver_cleanup_hw - cleanup the setup done in i915_driver_init_hw()
1654 * @dev_priv: device private
1655 */
1656static void i915_driver_cleanup_hw(struct drm_i915_private *dev_priv)
1657{
David Weinehall52a05c32016-08-22 13:32:44 +03001658 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +01001659
Lionel Landwerlin9f9b2792017-10-27 15:59:31 +01001660 i915_perf_fini(dev_priv);
1661
David Weinehall52a05c32016-08-22 13:32:44 +03001662 if (pdev->msi_enabled)
1663 pci_disable_msi(pdev);
Chris Wilson0673ad42016-06-24 14:00:22 +01001664
1665 pm_qos_remove_request(&dev_priv->pm_qos);
Chris Wilson97d6d7a2016-08-04 07:52:22 +01001666 i915_ggtt_cleanup_hw(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001667}
1668
1669/**
1670 * i915_driver_register - register the driver with the rest of the system
1671 * @dev_priv: device private
1672 *
1673 * Perform any steps necessary to make the driver available via kernel
1674 * internal or userspace interfaces.
1675 */
1676static void i915_driver_register(struct drm_i915_private *dev_priv)
1677{
Chris Wilson91c8a322016-07-05 10:40:23 +01001678 struct drm_device *dev = &dev_priv->drm;
Chris Wilson0673ad42016-06-24 14:00:22 +01001679
Chris Wilson848b3652017-11-23 11:53:37 +00001680 i915_gem_shrinker_register(dev_priv);
Tvrtko Ursulinb46a33e2017-11-21 18:18:45 +00001681 i915_pmu_register(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001682
1683 /*
1684 * Notify a valid surface after modesetting,
1685 * when running inside a VM.
1686 */
1687 if (intel_vgpu_active(dev_priv))
1688 I915_WRITE(vgtif_reg(display_ready), VGT_DRV_DISPLAY_READY);
1689
1690 /* Reveal our presence to userspace */
1691 if (drm_dev_register(dev, 0) == 0) {
1692 i915_debugfs_register(dev_priv);
David Weinehall694c2822016-08-22 13:32:43 +03001693 i915_setup_sysfs(dev_priv);
Robert Bragg442b8c02016-11-07 19:49:53 +00001694
1695 /* Depends on sysfs having been initialized */
1696 i915_perf_register(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001697 } else
1698 DRM_ERROR("Failed to register driver for userspace access!\n");
1699
José Roberto de Souzae1bf0942018-11-30 15:20:47 -08001700 if (HAS_DISPLAY(dev_priv)) {
Chris Wilson0673ad42016-06-24 14:00:22 +01001701 /* Must be done after probing outputs */
1702 intel_opregion_register(dev_priv);
1703 acpi_video_register();
1704 }
1705
Lucas De Marchicf819ef2018-12-12 10:10:43 -08001706 if (IS_GEN(dev_priv, 5))
Chris Wilson0673ad42016-06-24 14:00:22 +01001707 intel_gpu_ips_init(dev_priv);
1708
Jerome Anandeef57322017-01-25 04:27:49 +05301709 intel_audio_init(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001710
1711 /*
1712 * Some ports require correctly set-up hpd registers for detection to
1713 * work properly (leading to ghost connected connector status), e.g. VGA
1714 * on gm45. Hence we can only set up the initial fbdev config after hpd
1715 * irqs are fully enabled. We do it last so that the async config
1716 * cannot run before the connectors are registered.
1717 */
1718 intel_fbdev_initial_config_async(dev);
Chris Wilson448aa912017-11-28 11:01:47 +00001719
1720 /*
1721 * We need to coordinate the hotplugs with the asynchronous fbdev
1722 * configuration, for which we use the fbdev->async_cookie.
1723 */
José Roberto de Souzae1bf0942018-11-30 15:20:47 -08001724 if (HAS_DISPLAY(dev_priv))
Chris Wilson448aa912017-11-28 11:01:47 +00001725 drm_kms_helper_poll_init(dev);
Chris Wilson07d80572018-08-16 15:37:56 +03001726
Imre Deak2cd9a682018-08-16 15:37:57 +03001727 intel_power_domains_enable(dev_priv);
Chris Wilson07d80572018-08-16 15:37:56 +03001728 intel_runtime_pm_enable(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001729}
1730
1731/**
1732 * i915_driver_unregister - cleanup the registration done in i915_driver_regiser()
1733 * @dev_priv: device private
1734 */
1735static void i915_driver_unregister(struct drm_i915_private *dev_priv)
1736{
Chris Wilson07d80572018-08-16 15:37:56 +03001737 intel_runtime_pm_disable(dev_priv);
Imre Deak2cd9a682018-08-16 15:37:57 +03001738 intel_power_domains_disable(dev_priv);
Chris Wilson07d80572018-08-16 15:37:56 +03001739
Daniel Vetter4f256d82017-07-15 00:46:55 +02001740 intel_fbdev_unregister(dev_priv);
Jerome Anandeef57322017-01-25 04:27:49 +05301741 intel_audio_deinit(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001742
Chris Wilson448aa912017-11-28 11:01:47 +00001743 /*
1744 * After flushing the fbdev (incl. a late async config which will
1745 * have delayed queuing of a hotplug event), then flush the hotplug
1746 * events.
1747 */
1748 drm_kms_helper_poll_fini(&dev_priv->drm);
1749
Chris Wilson0673ad42016-06-24 14:00:22 +01001750 intel_gpu_ips_teardown();
1751 acpi_video_unregister();
1752 intel_opregion_unregister(dev_priv);
1753
Robert Bragg442b8c02016-11-07 19:49:53 +00001754 i915_perf_unregister(dev_priv);
Tvrtko Ursulinb46a33e2017-11-21 18:18:45 +00001755 i915_pmu_unregister(dev_priv);
Robert Bragg442b8c02016-11-07 19:49:53 +00001756
David Weinehall694c2822016-08-22 13:32:43 +03001757 i915_teardown_sysfs(dev_priv);
Chris Wilson91c8a322016-07-05 10:40:23 +01001758 drm_dev_unregister(&dev_priv->drm);
Chris Wilson0673ad42016-06-24 14:00:22 +01001759
Chris Wilson848b3652017-11-23 11:53:37 +00001760 i915_gem_shrinker_unregister(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001761}
1762
Michal Wajdeczko27d558a2017-12-21 21:57:35 +00001763static void i915_welcome_messages(struct drm_i915_private *dev_priv)
1764{
1765 if (drm_debug & DRM_UT_DRIVER) {
1766 struct drm_printer p = drm_debug_printer("i915 device info:");
1767
Tvrtko Ursulin805446c2019-03-27 14:23:28 +00001768 drm_printf(&p, "pciid=0x%04x rev=0x%02x platform=%s (subplatform=0x%x) gen=%i\n",
Jani Nikula1787a982018-12-31 16:56:45 +02001769 INTEL_DEVID(dev_priv),
1770 INTEL_REVID(dev_priv),
1771 intel_platform_name(INTEL_INFO(dev_priv)->platform),
Tvrtko Ursulin805446c2019-03-27 14:23:28 +00001772 intel_subplatform(RUNTIME_INFO(dev_priv),
1773 INTEL_INFO(dev_priv)->platform),
Jani Nikula1787a982018-12-31 16:56:45 +02001774 INTEL_GEN(dev_priv));
1775
1776 intel_device_info_dump_flags(INTEL_INFO(dev_priv), &p);
Jani Nikula02584042018-12-31 16:56:41 +02001777 intel_device_info_dump_runtime(RUNTIME_INFO(dev_priv), &p);
Michal Wajdeczko27d558a2017-12-21 21:57:35 +00001778 }
1779
1780 if (IS_ENABLED(CONFIG_DRM_I915_DEBUG))
1781 DRM_INFO("DRM_I915_DEBUG enabled\n");
1782 if (IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM))
1783 DRM_INFO("DRM_I915_DEBUG_GEM enabled\n");
Imre Deak6dfc4a82018-08-16 22:34:14 +03001784 if (IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM))
1785 DRM_INFO("DRM_I915_DEBUG_RUNTIME_PM enabled\n");
Michal Wajdeczko27d558a2017-12-21 21:57:35 +00001786}
1787
Chris Wilson55ac5a12018-09-05 15:09:20 +01001788static struct drm_i915_private *
1789i915_driver_create(struct pci_dev *pdev, const struct pci_device_id *ent)
1790{
1791 const struct intel_device_info *match_info =
1792 (struct intel_device_info *)ent->driver_data;
1793 struct intel_device_info *device_info;
1794 struct drm_i915_private *i915;
Andi Shyti2ddcc982018-10-02 12:20:47 +03001795 int err;
Chris Wilson55ac5a12018-09-05 15:09:20 +01001796
1797 i915 = kzalloc(sizeof(*i915), GFP_KERNEL);
1798 if (!i915)
Andi Shyti2ddcc982018-10-02 12:20:47 +03001799 return ERR_PTR(-ENOMEM);
Chris Wilson55ac5a12018-09-05 15:09:20 +01001800
Andi Shyti2ddcc982018-10-02 12:20:47 +03001801 err = drm_dev_init(&i915->drm, &driver, &pdev->dev);
1802 if (err) {
Chris Wilson55ac5a12018-09-05 15:09:20 +01001803 kfree(i915);
Andi Shyti2ddcc982018-10-02 12:20:47 +03001804 return ERR_PTR(err);
Chris Wilson55ac5a12018-09-05 15:09:20 +01001805 }
1806
1807 i915->drm.pdev = pdev;
1808 i915->drm.dev_private = i915;
1809 pci_set_drvdata(pdev, &i915->drm);
1810
1811 /* Setup the write-once "constant" device info */
1812 device_info = mkwrite_device_info(i915);
1813 memcpy(device_info, match_info, sizeof(*device_info));
Jani Nikula02584042018-12-31 16:56:41 +02001814 RUNTIME_INFO(i915)->device_id = pdev->device;
Chris Wilson55ac5a12018-09-05 15:09:20 +01001815
Chris Wilson74f6e182018-09-26 11:47:07 +01001816 BUG_ON(device_info->gen > BITS_PER_TYPE(device_info->gen_mask));
Chris Wilson55ac5a12018-09-05 15:09:20 +01001817
1818 return i915;
1819}
1820
Chris Wilson31962ca2018-09-05 15:09:21 +01001821static void i915_driver_destroy(struct drm_i915_private *i915)
1822{
1823 struct pci_dev *pdev = i915->drm.pdev;
1824
1825 drm_dev_fini(&i915->drm);
1826 kfree(i915);
1827
1828 /* And make sure we never chase our dangling pointer from pci_dev */
1829 pci_set_drvdata(pdev, NULL);
1830}
1831
Chris Wilson0673ad42016-06-24 14:00:22 +01001832/**
1833 * i915_driver_load - setup chip and create an initial config
Joonas Lahtinend2ad3ae2016-11-10 15:36:34 +02001834 * @pdev: PCI device
1835 * @ent: matching PCI ID entry
Chris Wilson0673ad42016-06-24 14:00:22 +01001836 *
1837 * The driver load routine has to do several things:
1838 * - drive output discovery via intel_modeset_init()
1839 * - initialize the memory manager
1840 * - allocate initial config memory
1841 * - setup the DRM framebuffer with the allocated memory
1842 */
Chris Wilson42f55512016-06-24 14:00:26 +01001843int i915_driver_load(struct pci_dev *pdev, const struct pci_device_id *ent)
Chris Wilson0673ad42016-06-24 14:00:22 +01001844{
Maarten Lankhorst8d2b47d2017-02-02 08:41:42 +01001845 const struct intel_device_info *match_info =
1846 (struct intel_device_info *)ent->driver_data;
Chris Wilson0673ad42016-06-24 14:00:22 +01001847 struct drm_i915_private *dev_priv;
1848 int ret;
1849
Chris Wilson55ac5a12018-09-05 15:09:20 +01001850 dev_priv = i915_driver_create(pdev, ent);
Andi Shyti2ddcc982018-10-02 12:20:47 +03001851 if (IS_ERR(dev_priv))
1852 return PTR_ERR(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001853
Ville Syrjälä1feb64c2018-09-13 16:16:22 +03001854 /* Disable nuclear pageflip by default on pre-ILK */
1855 if (!i915_modparams.nuclear_pageflip && match_info->gen < 5)
1856 dev_priv->drm.driver_features &= ~DRIVER_ATOMIC;
1857
Chris Wilson0673ad42016-06-24 14:00:22 +01001858 ret = pci_enable_device(pdev);
1859 if (ret)
Chris Wilsoncad36882017-02-10 16:35:21 +00001860 goto out_fini;
Chris Wilson0673ad42016-06-24 14:00:22 +01001861
Chris Wilson55ac5a12018-09-05 15:09:20 +01001862 ret = i915_driver_init_early(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001863 if (ret < 0)
1864 goto out_pci_disable;
1865
Imre Deak2cd9a682018-08-16 15:37:57 +03001866 disable_rpm_wakeref_asserts(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001867
1868 ret = i915_driver_init_mmio(dev_priv);
1869 if (ret < 0)
1870 goto out_runtime_pm_put;
1871
1872 ret = i915_driver_init_hw(dev_priv);
1873 if (ret < 0)
1874 goto out_cleanup_mmio;
1875
Chris Wilson91c8a322016-07-05 10:40:23 +01001876 ret = i915_load_modeset_init(&dev_priv->drm);
Chris Wilson0673ad42016-06-24 14:00:22 +01001877 if (ret < 0)
Daniel Vetterbaf54382017-06-21 10:28:41 +02001878 goto out_cleanup_hw;
Chris Wilson0673ad42016-06-24 14:00:22 +01001879
1880 i915_driver_register(dev_priv);
1881
Imre Deak2cd9a682018-08-16 15:37:57 +03001882 enable_rpm_wakeref_asserts(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001883
Michal Wajdeczko27d558a2017-12-21 21:57:35 +00001884 i915_welcome_messages(dev_priv);
1885
Chris Wilson0673ad42016-06-24 14:00:22 +01001886 return 0;
1887
Chris Wilson0673ad42016-06-24 14:00:22 +01001888out_cleanup_hw:
1889 i915_driver_cleanup_hw(dev_priv);
1890out_cleanup_mmio:
1891 i915_driver_cleanup_mmio(dev_priv);
1892out_runtime_pm_put:
Imre Deak2cd9a682018-08-16 15:37:57 +03001893 enable_rpm_wakeref_asserts(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001894 i915_driver_cleanup_early(dev_priv);
1895out_pci_disable:
1896 pci_disable_device(pdev);
Chris Wilsoncad36882017-02-10 16:35:21 +00001897out_fini:
Chris Wilson0673ad42016-06-24 14:00:22 +01001898 i915_load_error(dev_priv, "Device initialization failed (%d)\n", ret);
Chris Wilson31962ca2018-09-05 15:09:21 +01001899 i915_driver_destroy(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001900 return ret;
1901}
1902
Chris Wilson42f55512016-06-24 14:00:26 +01001903void i915_driver_unload(struct drm_device *dev)
Chris Wilson0673ad42016-06-24 14:00:22 +01001904{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001905 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +03001906 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson0673ad42016-06-24 14:00:22 +01001907
Imre Deak2cd9a682018-08-16 15:37:57 +03001908 disable_rpm_wakeref_asserts(dev_priv);
Chris Wilson07d80572018-08-16 15:37:56 +03001909
Daniel Vetter99c539b2017-07-15 00:46:56 +02001910 i915_driver_unregister(dev_priv);
1911
Janusz Krzysztofik141f3762019-04-06 11:40:34 +01001912 /*
1913 * After unregistering the device to prevent any new users, cancel
1914 * all in-flight requests so that we can quickly unbind the active
1915 * resources.
1916 */
1917 i915_gem_set_wedged(dev_priv);
1918
Chris Wilson4a8ab5e2019-01-14 14:21:29 +00001919 /* Flush any external code that still may be under the RCU lock */
1920 synchronize_rcu();
1921
Chris Wilson5861b012019-03-08 09:36:54 +00001922 i915_gem_suspend(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001923
Daniel Vetter18dddad2017-03-21 17:41:49 +01001924 drm_atomic_helper_shutdown(dev);
Maarten Lankhorsta667fb42016-12-15 15:29:44 +01001925
Zhenyu Wang26f837e2017-01-13 10:46:09 +08001926 intel_gvt_cleanup(dev_priv);
1927
Chris Wilson0673ad42016-06-24 14:00:22 +01001928 intel_modeset_cleanup(dev);
1929
Hans de Goede785f0762018-02-14 09:21:49 +01001930 intel_bios_cleanup(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001931
David Weinehall52a05c32016-08-22 13:32:44 +03001932 vga_switcheroo_unregister_client(pdev);
1933 vga_client_register(pdev, NULL, NULL, NULL);
Chris Wilson0673ad42016-06-24 14:00:22 +01001934
1935 intel_csr_ucode_fini(dev_priv);
1936
1937 /* Free error state after interrupts are fully disabled. */
1938 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson5a4c6f12017-02-14 16:46:11 +00001939 i915_reset_error_state(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001940
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01001941 i915_gem_fini(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001942
Imre Deak48a287e2018-08-06 12:58:35 +03001943 intel_power_domains_fini_hw(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001944
1945 i915_driver_cleanup_hw(dev_priv);
1946 i915_driver_cleanup_mmio(dev_priv);
1947
Imre Deak2cd9a682018-08-16 15:37:57 +03001948 enable_rpm_wakeref_asserts(dev_priv);
Chris Wilsonbd780f32019-01-14 14:21:09 +00001949 intel_runtime_pm_cleanup(dev_priv);
Chris Wilsoncad36882017-02-10 16:35:21 +00001950}
1951
1952static void i915_driver_release(struct drm_device *dev)
1953{
1954 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson0673ad42016-06-24 14:00:22 +01001955
1956 i915_driver_cleanup_early(dev_priv);
Chris Wilson31962ca2018-09-05 15:09:21 +01001957 i915_driver_destroy(dev_priv);
Chris Wilson0673ad42016-06-24 14:00:22 +01001958}
1959
1960static int i915_driver_open(struct drm_device *dev, struct drm_file *file)
1961{
Chris Wilson829a0af2017-06-20 12:05:45 +01001962 struct drm_i915_private *i915 = to_i915(dev);
Chris Wilson0673ad42016-06-24 14:00:22 +01001963 int ret;
1964
Chris Wilson829a0af2017-06-20 12:05:45 +01001965 ret = i915_gem_open(i915, file);
Chris Wilson0673ad42016-06-24 14:00:22 +01001966 if (ret)
1967 return ret;
1968
1969 return 0;
1970}
1971
1972/**
1973 * i915_driver_lastclose - clean up after all DRM clients have exited
1974 * @dev: DRM device
1975 *
1976 * Take care of cleaning up after all DRM clients have exited. In the
1977 * mode setting case, we want to restore the kernel's initial mode (just
1978 * in case the last client left us in a bad state).
1979 *
1980 * Additionally, in the non-mode setting case, we'll tear down the GTT
1981 * and DMA structures, since the kernel won't be using them, and clea
1982 * up any GEM state.
1983 */
1984static void i915_driver_lastclose(struct drm_device *dev)
1985{
1986 intel_fbdev_restore_mode(dev);
1987 vga_switcheroo_process_delayed_switch();
1988}
1989
Daniel Vetter7d2ec882017-03-08 15:12:45 +01001990static void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
Chris Wilson0673ad42016-06-24 14:00:22 +01001991{
Daniel Vetter7d2ec882017-03-08 15:12:45 +01001992 struct drm_i915_file_private *file_priv = file->driver_priv;
1993
Chris Wilson0673ad42016-06-24 14:00:22 +01001994 mutex_lock(&dev->struct_mutex);
Chris Wilson829a0af2017-06-20 12:05:45 +01001995 i915_gem_context_close(file);
Chris Wilson0673ad42016-06-24 14:00:22 +01001996 i915_gem_release(dev, file);
1997 mutex_unlock(&dev->struct_mutex);
Chris Wilson0673ad42016-06-24 14:00:22 +01001998
1999 kfree(file_priv);
2000}
2001
Imre Deak07f9cd02014-08-18 14:42:45 +03002002static void intel_suspend_encoders(struct drm_i915_private *dev_priv)
2003{
Chris Wilson91c8a322016-07-05 10:40:23 +01002004 struct drm_device *dev = &dev_priv->drm;
Jani Nikula19c80542015-12-16 12:48:16 +02002005 struct intel_encoder *encoder;
Imre Deak07f9cd02014-08-18 14:42:45 +03002006
2007 drm_modeset_lock_all(dev);
Jani Nikula19c80542015-12-16 12:48:16 +02002008 for_each_intel_encoder(dev, encoder)
2009 if (encoder->suspend)
2010 encoder->suspend(encoder);
Imre Deak07f9cd02014-08-18 14:42:45 +03002011 drm_modeset_unlock_all(dev);
2012}
2013
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002014static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
2015 bool rpm_resume);
Imre Deak507e1262016-04-20 20:27:54 +03002016static int vlv_suspend_complete(struct drm_i915_private *dev_priv);
Suketu Shahf75a1982015-04-16 14:22:11 +05302017
Imre Deakbc872292015-11-18 17:32:30 +02002018static bool suspend_to_idle(struct drm_i915_private *dev_priv)
2019{
2020#if IS_ENABLED(CONFIG_ACPI_SLEEP)
2021 if (acpi_target_system_state() < ACPI_STATE_S3)
2022 return true;
2023#endif
2024 return false;
2025}
Sagar Kambleebc32822014-08-13 23:07:05 +05302026
Chris Wilson73b66f82018-05-25 10:26:29 +01002027static int i915_drm_prepare(struct drm_device *dev)
2028{
2029 struct drm_i915_private *i915 = to_i915(dev);
Chris Wilson73b66f82018-05-25 10:26:29 +01002030
2031 /*
2032 * NB intel_display_suspend() may issue new requests after we've
2033 * ostensibly marked the GPU as ready-to-sleep here. We need to
2034 * split out that work and pull it forward so that after point,
2035 * the GPU is not woken again.
2036 */
Chris Wilson5861b012019-03-08 09:36:54 +00002037 i915_gem_suspend(i915);
Chris Wilson73b66f82018-05-25 10:26:29 +01002038
Chris Wilson5861b012019-03-08 09:36:54 +00002039 return 0;
Chris Wilson73b66f82018-05-25 10:26:29 +01002040}
2041
Imre Deak5e365c32014-10-23 19:23:25 +03002042static int i915_drm_suspend(struct drm_device *dev)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002043{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002044 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +03002045 struct pci_dev *pdev = dev_priv->drm.pdev;
Jesse Barnese5747e32014-06-12 08:35:47 -07002046 pci_power_t opregion_target_state;
Rafael J. Wysocki61caf872010-02-18 23:06:27 +01002047
Imre Deak1f814da2015-12-16 02:52:19 +02002048 disable_rpm_wakeref_asserts(dev_priv);
2049
Paulo Zanonic67a4702013-08-19 13:18:09 -03002050 /* We do a lot of poking in a lot of registers, make sure they work
2051 * properly. */
Imre Deak2cd9a682018-08-16 15:37:57 +03002052 intel_power_domains_disable(dev_priv);
Paulo Zanonicb107992013-01-25 16:59:15 -02002053
Dave Airlie5bcf7192010-12-07 09:20:40 +10002054 drm_kms_helper_poll_disable(dev);
2055
David Weinehall52a05c32016-08-22 13:32:44 +03002056 pci_save_state(pdev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002057
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02002058 intel_display_suspend(dev);
Daniel Vetterd5818932015-02-23 12:03:26 +01002059
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03002060 intel_dp_mst_suspend(dev_priv);
Daniel Vetterd5818932015-02-23 12:03:26 +01002061
2062 intel_runtime_pm_disable_interrupts(dev_priv);
2063 intel_hpd_cancel_work(dev_priv);
2064
2065 intel_suspend_encoders(dev_priv);
2066
Ville Syrjälä712bf362016-10-31 22:37:23 +02002067 intel_suspend_hw(dev_priv);
Daniel Vetterd5818932015-02-23 12:03:26 +01002068
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002069 i915_gem_suspend_gtt_mappings(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002070
Tvrtko Ursulinaf6dc742016-12-01 14:16:44 +00002071 i915_save_state(dev_priv);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002072
Imre Deakbc872292015-11-18 17:32:30 +02002073 opregion_target_state = suspend_to_idle(dev_priv) ? PCI_D1 : PCI_D3cold;
Chris Wilsona950adc2018-10-30 11:05:54 +00002074 intel_opregion_suspend(dev_priv, opregion_target_state);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002075
Chris Wilson82e3b8c2014-08-13 13:09:46 +01002076 intel_fbdev_set_suspend(dev, FBINFO_STATE_SUSPENDED, true);
Dave Airlie3fa016a2012-03-28 10:48:49 +01002077
Mika Kuoppala62d5d692014-02-25 17:11:28 +02002078 dev_priv->suspend_count++;
2079
Imre Deakf74ed082016-04-18 14:48:21 +03002080 intel_csr_ucode_suspend(dev_priv);
Imre Deakf514c2d2015-10-28 23:59:06 +02002081
Imre Deak1f814da2015-12-16 02:52:19 +02002082 enable_rpm_wakeref_asserts(dev_priv);
2083
Chris Wilson73b66f82018-05-25 10:26:29 +01002084 return 0;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002085}
2086
Imre Deak2cd9a682018-08-16 15:37:57 +03002087static enum i915_drm_suspend_mode
2088get_suspend_mode(struct drm_i915_private *dev_priv, bool hibernate)
2089{
2090 if (hibernate)
2091 return I915_DRM_SUSPEND_HIBERNATE;
2092
2093 if (suspend_to_idle(dev_priv))
2094 return I915_DRM_SUSPEND_IDLE;
2095
2096 return I915_DRM_SUSPEND_MEM;
2097}
2098
David Weinehallc49d13e2016-08-22 13:32:42 +03002099static int i915_drm_suspend_late(struct drm_device *dev, bool hibernation)
Imre Deakc3c09c92014-10-23 19:23:15 +03002100{
David Weinehallc49d13e2016-08-22 13:32:42 +03002101 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +03002102 struct pci_dev *pdev = dev_priv->drm.pdev;
Imre Deakc3c09c92014-10-23 19:23:15 +03002103 int ret;
2104
Imre Deak1f814da2015-12-16 02:52:19 +02002105 disable_rpm_wakeref_asserts(dev_priv);
2106
Chris Wilsonec92ad02018-05-31 09:22:46 +01002107 i915_gem_suspend_late(dev_priv);
2108
Daniele Ceraolo Spuriof7de5022019-03-19 11:35:37 -07002109 intel_uncore_suspend(&dev_priv->uncore);
Imre Deak4c494a52016-10-13 14:34:06 +03002110
Imre Deak2cd9a682018-08-16 15:37:57 +03002111 intel_power_domains_suspend(dev_priv,
2112 get_suspend_mode(dev_priv, hibernation));
Imre Deak73dfc222015-11-17 17:33:53 +02002113
Imre Deak507e1262016-04-20 20:27:54 +03002114 ret = 0;
Anusha Srivatsa3b6ac432018-10-31 13:27:26 -07002115 if (INTEL_GEN(dev_priv) >= 11 || IS_GEN9_LP(dev_priv))
Imre Deak507e1262016-04-20 20:27:54 +03002116 bxt_enable_dc9(dev_priv);
Imre Deakb8aea3d12016-04-20 20:27:55 +03002117 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Imre Deak507e1262016-04-20 20:27:54 +03002118 hsw_enable_pc8(dev_priv);
2119 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
2120 ret = vlv_suspend_complete(dev_priv);
Imre Deakc3c09c92014-10-23 19:23:15 +03002121
2122 if (ret) {
2123 DRM_ERROR("Suspend complete failed: %d\n", ret);
Imre Deak2cd9a682018-08-16 15:37:57 +03002124 intel_power_domains_resume(dev_priv);
Imre Deakc3c09c92014-10-23 19:23:15 +03002125
Imre Deak1f814da2015-12-16 02:52:19 +02002126 goto out;
Imre Deakc3c09c92014-10-23 19:23:15 +03002127 }
2128
David Weinehall52a05c32016-08-22 13:32:44 +03002129 pci_disable_device(pdev);
Imre Deakab3be732015-03-02 13:04:41 +02002130 /*
Imre Deak54875572015-06-30 17:06:47 +03002131 * During hibernation on some platforms the BIOS may try to access
Imre Deakab3be732015-03-02 13:04:41 +02002132 * the device even though it's already in D3 and hang the machine. So
2133 * leave the device in D0 on those platforms and hope the BIOS will
Imre Deak54875572015-06-30 17:06:47 +03002134 * power down the device properly. The issue was seen on multiple old
2135 * GENs with different BIOS vendors, so having an explicit blacklist
2136 * is inpractical; apply the workaround on everything pre GEN6. The
2137 * platforms where the issue was seen:
2138 * Lenovo Thinkpad X301, X61s, X60, T60, X41
2139 * Fujitsu FSC S7110
2140 * Acer Aspire 1830T
Imre Deakab3be732015-03-02 13:04:41 +02002141 */
Tvrtko Ursulin514e1d62016-11-04 14:42:48 +00002142 if (!(hibernation && INTEL_GEN(dev_priv) < 6))
David Weinehall52a05c32016-08-22 13:32:44 +03002143 pci_set_power_state(pdev, PCI_D3hot);
Imre Deakc3c09c92014-10-23 19:23:15 +03002144
Imre Deak1f814da2015-12-16 02:52:19 +02002145out:
2146 enable_rpm_wakeref_asserts(dev_priv);
Chris Wilsonbd780f32019-01-14 14:21:09 +00002147 if (!dev_priv->uncore.user_forcewake.count)
2148 intel_runtime_pm_cleanup(dev_priv);
Imre Deak1f814da2015-12-16 02:52:19 +02002149
2150 return ret;
Imre Deakc3c09c92014-10-23 19:23:15 +03002151}
2152
Matthew Aulda9a251c2016-12-02 10:24:11 +00002153static int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002154{
2155 int error;
2156
Chris Wilsonded8b072016-07-05 10:40:22 +01002157 if (!dev) {
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002158 DRM_ERROR("dev: %p\n", dev);
Keith Packard1ae8c0a2009-06-28 15:42:17 -07002159 DRM_ERROR("DRM not initialized, aborting suspend.\n");
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002160 return -ENODEV;
2161 }
2162
Imre Deak0b14cbd2014-09-10 18:16:55 +03002163 if (WARN_ON_ONCE(state.event != PM_EVENT_SUSPEND &&
2164 state.event != PM_EVENT_FREEZE))
2165 return -EINVAL;
Dave Airlie5bcf7192010-12-07 09:20:40 +10002166
2167 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2168 return 0;
Chris Wilson6eecba32010-09-08 09:45:11 +01002169
Imre Deak5e365c32014-10-23 19:23:25 +03002170 error = i915_drm_suspend(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002171 if (error)
2172 return error;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002173
Imre Deakab3be732015-03-02 13:04:41 +02002174 return i915_drm_suspend_late(dev, false);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002175}
2176
Imre Deak5e365c32014-10-23 19:23:25 +03002177static int i915_drm_resume(struct drm_device *dev)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10002178{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002179 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläac840ae2016-05-06 21:35:55 +03002180 int ret;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01002181
Imre Deak1f814da2015-12-16 02:52:19 +02002182 disable_rpm_wakeref_asserts(dev_priv);
Chris Wilsonabc80ab2016-08-24 10:27:01 +01002183 intel_sanitize_gt_powersave(dev_priv);
Imre Deak1f814da2015-12-16 02:52:19 +02002184
Chris Wilson12887862018-06-14 10:40:59 +01002185 i915_gem_sanitize(dev_priv);
2186
Chris Wilson97d6d7a2016-08-04 07:52:22 +01002187 ret = i915_ggtt_enable_hw(dev_priv);
Ville Syrjäläac840ae2016-05-06 21:35:55 +03002188 if (ret)
2189 DRM_ERROR("failed to re-enable GGTT\n");
2190
Imre Deakf74ed082016-04-18 14:48:21 +03002191 intel_csr_ucode_resume(dev_priv);
2192
Tvrtko Ursulinaf6dc742016-12-01 14:16:44 +00002193 i915_restore_state(dev_priv);
Imre Deak8090ba82016-08-10 14:07:33 +03002194 intel_pps_unlock_regs_wa(dev_priv);
Rafael J. Wysocki61caf872010-02-18 23:06:27 +01002195
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02002196 intel_init_pch_refclk(dev_priv);
Chris Wilson1833b132012-05-09 11:56:28 +01002197
Peter Antoine364aece2015-05-11 08:50:45 +01002198 /*
2199 * Interrupts have to be enabled before any batches are run. If not the
2200 * GPU will hang. i915_gem_init_hw() will initiate batches to
2201 * update/restore the context.
2202 *
Imre Deak908764f2016-11-29 21:40:29 +02002203 * drm_mode_config_reset() needs AUX interrupts.
2204 *
Peter Antoine364aece2015-05-11 08:50:45 +01002205 * Modeset enabling in intel_modeset_init_hw() also needs working
2206 * interrupts.
2207 */
2208 intel_runtime_pm_enable_interrupts(dev_priv);
2209
Imre Deak908764f2016-11-29 21:40:29 +02002210 drm_mode_config_reset(dev);
2211
Chris Wilson37cd3302017-11-12 11:27:38 +00002212 i915_gem_resume(dev_priv);
Daniel Vetterd5818932015-02-23 12:03:26 +01002213
Daniel Vetterd5818932015-02-23 12:03:26 +01002214 intel_modeset_init_hw(dev);
Ville Syrjälä675f7ff2017-11-16 18:02:15 +02002215 intel_init_clock_gating(dev_priv);
Daniel Vetterd5818932015-02-23 12:03:26 +01002216
2217 spin_lock_irq(&dev_priv->irq_lock);
2218 if (dev_priv->display.hpd_irq_setup)
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01002219 dev_priv->display.hpd_irq_setup(dev_priv);
Daniel Vetterd5818932015-02-23 12:03:26 +01002220 spin_unlock_irq(&dev_priv->irq_lock);
2221
Ville Syrjälä1a4313d2018-07-05 19:43:52 +03002222 intel_dp_mst_resume(dev_priv);
Daniel Vetterd5818932015-02-23 12:03:26 +01002223
Lyudea16b7652016-03-11 10:57:01 -05002224 intel_display_resume(dev);
2225
Lyudee0b70062016-11-01 21:06:30 -04002226 drm_kms_helper_poll_enable(dev);
2227
Daniel Vetterd5818932015-02-23 12:03:26 +01002228 /*
2229 * ... but also need to make sure that hotplug processing
2230 * doesn't cause havoc. Like in the driver load code we don't
Gwan-gyeong Munc444ad72018-08-03 19:41:50 +03002231 * bother with the tiny race here where we might lose hotplug
Daniel Vetterd5818932015-02-23 12:03:26 +01002232 * notifications.
2233 * */
2234 intel_hpd_init(dev_priv);
Jesse Barnes1daed3f2011-01-05 12:01:25 -08002235
Chris Wilsona950adc2018-10-30 11:05:54 +00002236 intel_opregion_resume(dev_priv);
Chris Wilson44834a62010-08-19 16:09:23 +01002237
Chris Wilson82e3b8c2014-08-13 13:09:46 +01002238 intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING, false);
Jesse Barnes073f34d2012-11-02 11:13:59 -07002239
Imre Deak2cd9a682018-08-16 15:37:57 +03002240 intel_power_domains_enable(dev_priv);
2241
Imre Deak1f814da2015-12-16 02:52:19 +02002242 enable_rpm_wakeref_asserts(dev_priv);
2243
Chris Wilson074c6ad2014-04-09 09:19:43 +01002244 return 0;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002245}
2246
Imre Deak5e365c32014-10-23 19:23:25 +03002247static int i915_drm_resume_early(struct drm_device *dev)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002248{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002249 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +03002250 struct pci_dev *pdev = dev_priv->drm.pdev;
Imre Deak44410cd2016-04-18 14:45:54 +03002251 int ret;
Imre Deak36d61e62014-10-23 19:23:24 +03002252
Imre Deak76c4b252014-04-01 19:55:22 +03002253 /*
2254 * We have a resume ordering issue with the snd-hda driver also
2255 * requiring our device to be power up. Due to the lack of a
2256 * parent/child relationship we currently solve this with an early
2257 * resume hook.
2258 *
2259 * FIXME: This should be solved with a special hdmi sink device or
2260 * similar so that power domains can be employed.
2261 */
Imre Deak44410cd2016-04-18 14:45:54 +03002262
2263 /*
2264 * Note that we need to set the power state explicitly, since we
2265 * powered off the device during freeze and the PCI core won't power
2266 * it back up for us during thaw. Powering off the device during
2267 * freeze is not a hard requirement though, and during the
2268 * suspend/resume phases the PCI core makes sure we get here with the
2269 * device powered on. So in case we change our freeze logic and keep
2270 * the device powered we can also remove the following set power state
2271 * call.
2272 */
David Weinehall52a05c32016-08-22 13:32:44 +03002273 ret = pci_set_power_state(pdev, PCI_D0);
Imre Deak44410cd2016-04-18 14:45:54 +03002274 if (ret) {
2275 DRM_ERROR("failed to set PCI D0 power state (%d)\n", ret);
Imre Deak2cd9a682018-08-16 15:37:57 +03002276 return ret;
Imre Deak44410cd2016-04-18 14:45:54 +03002277 }
2278
2279 /*
2280 * Note that pci_enable_device() first enables any parent bridge
2281 * device and only then sets the power state for this device. The
2282 * bridge enabling is a nop though, since bridge devices are resumed
2283 * first. The order of enabling power and enabling the device is
2284 * imposed by the PCI core as described above, so here we preserve the
2285 * same order for the freeze/thaw phases.
2286 *
2287 * TODO: eventually we should remove pci_disable_device() /
2288 * pci_enable_enable_device() from suspend/resume. Due to how they
2289 * depend on the device enable refcount we can't anyway depend on them
2290 * disabling/enabling the device.
2291 */
Imre Deak2cd9a682018-08-16 15:37:57 +03002292 if (pci_enable_device(pdev))
2293 return -EIO;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002294
David Weinehall52a05c32016-08-22 13:32:44 +03002295 pci_set_master(pdev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002296
Imre Deak1f814da2015-12-16 02:52:19 +02002297 disable_rpm_wakeref_asserts(dev_priv);
2298
Wayne Boyer666a4532015-12-09 12:29:35 -08002299 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002300 ret = vlv_resume_prepare(dev_priv, false);
Imre Deak36d61e62014-10-23 19:23:24 +03002301 if (ret)
Damien Lespiauff0b1872015-05-20 14:45:15 +01002302 DRM_ERROR("Resume prepare failed: %d, continuing anyway\n",
2303 ret);
Imre Deak36d61e62014-10-23 19:23:24 +03002304
Daniele Ceraolo Spuriof7de5022019-03-19 11:35:37 -07002305 intel_uncore_resume_early(&dev_priv->uncore);
2306
2307 i915_check_and_clear_faults(dev_priv);
Paulo Zanoniefee8332014-10-27 17:54:33 -02002308
Animesh Manna3e689282018-10-29 15:14:10 -07002309 if (INTEL_GEN(dev_priv) >= 11 || IS_GEN9_LP(dev_priv)) {
Imre Deak0f906032018-03-22 16:36:42 +02002310 gen9_sanitize_dc_state(dev_priv);
Imre Deak507e1262016-04-20 20:27:54 +03002311 bxt_disable_dc9(dev_priv);
Imre Deakda2f41d2016-04-20 20:27:56 +03002312 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Damien Lespiaua9a6b732015-05-20 14:45:14 +01002313 hsw_disable_pc8(dev_priv);
Imre Deakda2f41d2016-04-20 20:27:56 +03002314 }
Paulo Zanoniefee8332014-10-27 17:54:33 -02002315
Chris Wilsondc979972016-05-10 14:10:04 +01002316 intel_uncore_sanitize(dev_priv);
Imre Deakbc872292015-11-18 17:32:30 +02002317
Imre Deak2cd9a682018-08-16 15:37:57 +03002318 intel_power_domains_resume(dev_priv);
Imre Deakbc872292015-11-18 17:32:30 +02002319
Chris Wilson55277e12019-01-03 11:21:04 +00002320 intel_engines_sanitize(dev_priv, true);
Chris Wilson4fdd5b42018-06-16 21:25:34 +01002321
Imre Deak6e35e8a2016-04-18 10:04:19 +03002322 enable_rpm_wakeref_asserts(dev_priv);
2323
Imre Deak36d61e62014-10-23 19:23:24 +03002324 return ret;
Imre Deak76c4b252014-04-01 19:55:22 +03002325}
2326
Tvrtko Ursulin7f26cb82016-12-01 14:16:41 +00002327static int i915_resume_switcheroo(struct drm_device *dev)
Imre Deak76c4b252014-04-01 19:55:22 +03002328{
Imre Deak50a00722014-10-23 19:23:17 +03002329 int ret;
Imre Deak76c4b252014-04-01 19:55:22 +03002330
Imre Deak097dd832014-10-23 19:23:19 +03002331 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2332 return 0;
2333
Imre Deak5e365c32014-10-23 19:23:25 +03002334 ret = i915_drm_resume_early(dev);
Imre Deak50a00722014-10-23 19:23:17 +03002335 if (ret)
2336 return ret;
2337
Imre Deak5a175142014-10-23 19:23:18 +03002338 return i915_drm_resume(dev);
2339}
2340
Chris Wilson73b66f82018-05-25 10:26:29 +01002341static int i915_pm_prepare(struct device *kdev)
2342{
2343 struct pci_dev *pdev = to_pci_dev(kdev);
2344 struct drm_device *dev = pci_get_drvdata(pdev);
2345
2346 if (!dev) {
2347 dev_err(kdev, "DRM not initialized, aborting suspend.\n");
2348 return -ENODEV;
2349 }
2350
2351 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2352 return 0;
2353
2354 return i915_drm_prepare(dev);
2355}
2356
David Weinehallc49d13e2016-08-22 13:32:42 +03002357static int i915_pm_suspend(struct device *kdev)
Kristian Høgsberg112b7152009-01-04 16:55:33 -05002358{
David Weinehallc49d13e2016-08-22 13:32:42 +03002359 struct pci_dev *pdev = to_pci_dev(kdev);
2360 struct drm_device *dev = pci_get_drvdata(pdev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -05002361
David Weinehallc49d13e2016-08-22 13:32:42 +03002362 if (!dev) {
2363 dev_err(kdev, "DRM not initialized, aborting suspend.\n");
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002364 return -ENODEV;
2365 }
Kristian Høgsberg112b7152009-01-04 16:55:33 -05002366
David Weinehallc49d13e2016-08-22 13:32:42 +03002367 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Dave Airlie5bcf7192010-12-07 09:20:40 +10002368 return 0;
2369
David Weinehallc49d13e2016-08-22 13:32:42 +03002370 return i915_drm_suspend(dev);
Imre Deak76c4b252014-04-01 19:55:22 +03002371}
2372
David Weinehallc49d13e2016-08-22 13:32:42 +03002373static int i915_pm_suspend_late(struct device *kdev)
Imre Deak76c4b252014-04-01 19:55:22 +03002374{
David Weinehallc49d13e2016-08-22 13:32:42 +03002375 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Imre Deak76c4b252014-04-01 19:55:22 +03002376
2377 /*
Damien Lespiauc965d9952015-05-18 19:53:48 +01002378 * We have a suspend ordering issue with the snd-hda driver also
Imre Deak76c4b252014-04-01 19:55:22 +03002379 * requiring our device to be power up. Due to the lack of a
2380 * parent/child relationship we currently solve this with an late
2381 * suspend hook.
2382 *
2383 * FIXME: This should be solved with a special hdmi sink device or
2384 * similar so that power domains can be employed.
2385 */
David Weinehallc49d13e2016-08-22 13:32:42 +03002386 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Imre Deak76c4b252014-04-01 19:55:22 +03002387 return 0;
Kristian Høgsberg112b7152009-01-04 16:55:33 -05002388
David Weinehallc49d13e2016-08-22 13:32:42 +03002389 return i915_drm_suspend_late(dev, false);
Imre Deakab3be732015-03-02 13:04:41 +02002390}
2391
David Weinehallc49d13e2016-08-22 13:32:42 +03002392static int i915_pm_poweroff_late(struct device *kdev)
Imre Deakab3be732015-03-02 13:04:41 +02002393{
David Weinehallc49d13e2016-08-22 13:32:42 +03002394 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Imre Deakab3be732015-03-02 13:04:41 +02002395
David Weinehallc49d13e2016-08-22 13:32:42 +03002396 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Imre Deakab3be732015-03-02 13:04:41 +02002397 return 0;
2398
David Weinehallc49d13e2016-08-22 13:32:42 +03002399 return i915_drm_suspend_late(dev, true);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +08002400}
2401
David Weinehallc49d13e2016-08-22 13:32:42 +03002402static int i915_pm_resume_early(struct device *kdev)
Imre Deak76c4b252014-04-01 19:55:22 +03002403{
David Weinehallc49d13e2016-08-22 13:32:42 +03002404 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Imre Deak76c4b252014-04-01 19:55:22 +03002405
David Weinehallc49d13e2016-08-22 13:32:42 +03002406 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Imre Deak097dd832014-10-23 19:23:19 +03002407 return 0;
2408
David Weinehallc49d13e2016-08-22 13:32:42 +03002409 return i915_drm_resume_early(dev);
Imre Deak76c4b252014-04-01 19:55:22 +03002410}
2411
David Weinehallc49d13e2016-08-22 13:32:42 +03002412static int i915_pm_resume(struct device *kdev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +08002413{
David Weinehallc49d13e2016-08-22 13:32:42 +03002414 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +01002415
David Weinehallc49d13e2016-08-22 13:32:42 +03002416 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Imre Deak097dd832014-10-23 19:23:19 +03002417 return 0;
2418
David Weinehallc49d13e2016-08-22 13:32:42 +03002419 return i915_drm_resume(dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +08002420}
2421
Chris Wilson1f19ac22016-05-14 07:26:32 +01002422/* freeze: before creating the hibernation_image */
David Weinehallc49d13e2016-08-22 13:32:42 +03002423static int i915_pm_freeze(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01002424{
Imre Deakdd9f31c2017-08-16 17:46:07 +03002425 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Chris Wilson6a800ea2016-09-21 14:51:07 +01002426 int ret;
2427
Imre Deakdd9f31c2017-08-16 17:46:07 +03002428 if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
2429 ret = i915_drm_suspend(dev);
2430 if (ret)
2431 return ret;
2432 }
Chris Wilson6a800ea2016-09-21 14:51:07 +01002433
2434 ret = i915_gem_freeze(kdev_to_i915(kdev));
2435 if (ret)
2436 return ret;
2437
2438 return 0;
Chris Wilson1f19ac22016-05-14 07:26:32 +01002439}
2440
David Weinehallc49d13e2016-08-22 13:32:42 +03002441static int i915_pm_freeze_late(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01002442{
Imre Deakdd9f31c2017-08-16 17:46:07 +03002443 struct drm_device *dev = &kdev_to_i915(kdev)->drm;
Chris Wilson461fb992016-05-14 07:26:33 +01002444 int ret;
2445
Imre Deakdd9f31c2017-08-16 17:46:07 +03002446 if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
2447 ret = i915_drm_suspend_late(dev, true);
2448 if (ret)
2449 return ret;
2450 }
Chris Wilson461fb992016-05-14 07:26:33 +01002451
David Weinehallc49d13e2016-08-22 13:32:42 +03002452 ret = i915_gem_freeze_late(kdev_to_i915(kdev));
Chris Wilson461fb992016-05-14 07:26:33 +01002453 if (ret)
2454 return ret;
2455
2456 return 0;
Chris Wilson1f19ac22016-05-14 07:26:32 +01002457}
2458
2459/* thaw: called after creating the hibernation image, but before turning off. */
David Weinehallc49d13e2016-08-22 13:32:42 +03002460static int i915_pm_thaw_early(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01002461{
David Weinehallc49d13e2016-08-22 13:32:42 +03002462 return i915_pm_resume_early(kdev);
Chris Wilson1f19ac22016-05-14 07:26:32 +01002463}
2464
David Weinehallc49d13e2016-08-22 13:32:42 +03002465static int i915_pm_thaw(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01002466{
David Weinehallc49d13e2016-08-22 13:32:42 +03002467 return i915_pm_resume(kdev);
Chris Wilson1f19ac22016-05-14 07:26:32 +01002468}
2469
2470/* restore: called after loading the hibernation image. */
David Weinehallc49d13e2016-08-22 13:32:42 +03002471static int i915_pm_restore_early(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01002472{
David Weinehallc49d13e2016-08-22 13:32:42 +03002473 return i915_pm_resume_early(kdev);
Chris Wilson1f19ac22016-05-14 07:26:32 +01002474}
2475
David Weinehallc49d13e2016-08-22 13:32:42 +03002476static int i915_pm_restore(struct device *kdev)
Chris Wilson1f19ac22016-05-14 07:26:32 +01002477{
David Weinehallc49d13e2016-08-22 13:32:42 +03002478 return i915_pm_resume(kdev);
Chris Wilson1f19ac22016-05-14 07:26:32 +01002479}
2480
Imre Deakddeea5b2014-05-05 15:19:56 +03002481/*
2482 * Save all Gunit registers that may be lost after a D3 and a subsequent
2483 * S0i[R123] transition. The list of registers needing a save/restore is
2484 * defined in the VLV2_S0IXRegs document. This documents marks all Gunit
2485 * registers in the following way:
2486 * - Driver: saved/restored by the driver
2487 * - Punit : saved/restored by the Punit firmware
2488 * - No, w/o marking: no need to save/restore, since the register is R/O or
2489 * used internally by the HW in a way that doesn't depend
2490 * keeping the content across a suspend/resume.
2491 * - Debug : used for debugging
2492 *
2493 * We save/restore all registers marked with 'Driver', with the following
2494 * exceptions:
2495 * - Registers out of use, including also registers marked with 'Debug'.
2496 * These have no effect on the driver's operation, so we don't save/restore
2497 * them to reduce the overhead.
2498 * - Registers that are fully setup by an initialization function called from
2499 * the resume path. For example many clock gating and RPS/RC6 registers.
2500 * - Registers that provide the right functionality with their reset defaults.
2501 *
2502 * TODO: Except for registers that based on the above 3 criteria can be safely
2503 * ignored, we save/restore all others, practically treating the HW context as
2504 * a black-box for the driver. Further investigation is needed to reduce the
2505 * saved/restored registers even further, by following the same 3 criteria.
2506 */
2507static void vlv_save_gunit_s0ix_state(struct drm_i915_private *dev_priv)
2508{
2509 struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
2510 int i;
2511
2512 /* GAM 0x4000-0x4770 */
2513 s->wr_watermark = I915_READ(GEN7_WR_WATERMARK);
2514 s->gfx_prio_ctrl = I915_READ(GEN7_GFX_PRIO_CTRL);
2515 s->arb_mode = I915_READ(ARB_MODE);
2516 s->gfx_pend_tlb0 = I915_READ(GEN7_GFX_PEND_TLB0);
2517 s->gfx_pend_tlb1 = I915_READ(GEN7_GFX_PEND_TLB1);
2518
2519 for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
Ville Syrjälä22dfe792015-09-18 20:03:16 +03002520 s->lra_limits[i] = I915_READ(GEN7_LRA_LIMITS(i));
Imre Deakddeea5b2014-05-05 15:19:56 +03002521
2522 s->media_max_req_count = I915_READ(GEN7_MEDIA_MAX_REQ_COUNT);
Imre Deakb5f1c972015-04-15 16:52:30 -07002523 s->gfx_max_req_count = I915_READ(GEN7_GFX_MAX_REQ_COUNT);
Imre Deakddeea5b2014-05-05 15:19:56 +03002524
2525 s->render_hwsp = I915_READ(RENDER_HWS_PGA_GEN7);
2526 s->ecochk = I915_READ(GAM_ECOCHK);
2527 s->bsd_hwsp = I915_READ(BSD_HWS_PGA_GEN7);
2528 s->blt_hwsp = I915_READ(BLT_HWS_PGA_GEN7);
2529
2530 s->tlb_rd_addr = I915_READ(GEN7_TLB_RD_ADDR);
2531
2532 /* MBC 0x9024-0x91D0, 0x8500 */
2533 s->g3dctl = I915_READ(VLV_G3DCTL);
2534 s->gsckgctl = I915_READ(VLV_GSCKGCTL);
2535 s->mbctl = I915_READ(GEN6_MBCTL);
2536
2537 /* GCP 0x9400-0x9424, 0x8100-0x810C */
2538 s->ucgctl1 = I915_READ(GEN6_UCGCTL1);
2539 s->ucgctl3 = I915_READ(GEN6_UCGCTL3);
2540 s->rcgctl1 = I915_READ(GEN6_RCGCTL1);
2541 s->rcgctl2 = I915_READ(GEN6_RCGCTL2);
2542 s->rstctl = I915_READ(GEN6_RSTCTL);
2543 s->misccpctl = I915_READ(GEN7_MISCCPCTL);
2544
2545 /* GPM 0xA000-0xAA84, 0x8000-0x80FC */
2546 s->gfxpause = I915_READ(GEN6_GFXPAUSE);
2547 s->rpdeuhwtc = I915_READ(GEN6_RPDEUHWTC);
2548 s->rpdeuc = I915_READ(GEN6_RPDEUC);
2549 s->ecobus = I915_READ(ECOBUS);
2550 s->pwrdwnupctl = I915_READ(VLV_PWRDWNUPCTL);
2551 s->rp_down_timeout = I915_READ(GEN6_RP_DOWN_TIMEOUT);
2552 s->rp_deucsw = I915_READ(GEN6_RPDEUCSW);
2553 s->rcubmabdtmr = I915_READ(GEN6_RCUBMABDTMR);
2554 s->rcedata = I915_READ(VLV_RCEDATA);
2555 s->spare2gh = I915_READ(VLV_SPAREG2H);
2556
2557 /* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
2558 s->gt_imr = I915_READ(GTIMR);
2559 s->gt_ier = I915_READ(GTIER);
2560 s->pm_imr = I915_READ(GEN6_PMIMR);
2561 s->pm_ier = I915_READ(GEN6_PMIER);
2562
2563 for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
Ville Syrjälä22dfe792015-09-18 20:03:16 +03002564 s->gt_scratch[i] = I915_READ(GEN7_GT_SCRATCH(i));
Imre Deakddeea5b2014-05-05 15:19:56 +03002565
2566 /* GT SA CZ domain, 0x100000-0x138124 */
2567 s->tilectl = I915_READ(TILECTL);
2568 s->gt_fifoctl = I915_READ(GTFIFOCTL);
2569 s->gtlc_wake_ctrl = I915_READ(VLV_GTLC_WAKE_CTRL);
2570 s->gtlc_survive = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
2571 s->pmwgicz = I915_READ(VLV_PMWGICZ);
2572
2573 /* Gunit-Display CZ domain, 0x182028-0x1821CF */
2574 s->gu_ctl0 = I915_READ(VLV_GU_CTL0);
2575 s->gu_ctl1 = I915_READ(VLV_GU_CTL1);
Jesse Barnes9c252102015-04-01 14:22:57 -07002576 s->pcbr = I915_READ(VLV_PCBR);
Imre Deakddeea5b2014-05-05 15:19:56 +03002577 s->clock_gate_dis2 = I915_READ(VLV_GUNIT_CLOCK_GATE2);
2578
2579 /*
2580 * Not saving any of:
2581 * DFT, 0x9800-0x9EC0
2582 * SARB, 0xB000-0xB1FC
2583 * GAC, 0x5208-0x524C, 0x14000-0x14C000
2584 * PCI CFG
2585 */
2586}
2587
2588static void vlv_restore_gunit_s0ix_state(struct drm_i915_private *dev_priv)
2589{
2590 struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
2591 u32 val;
2592 int i;
2593
2594 /* GAM 0x4000-0x4770 */
2595 I915_WRITE(GEN7_WR_WATERMARK, s->wr_watermark);
2596 I915_WRITE(GEN7_GFX_PRIO_CTRL, s->gfx_prio_ctrl);
2597 I915_WRITE(ARB_MODE, s->arb_mode | (0xffff << 16));
2598 I915_WRITE(GEN7_GFX_PEND_TLB0, s->gfx_pend_tlb0);
2599 I915_WRITE(GEN7_GFX_PEND_TLB1, s->gfx_pend_tlb1);
2600
2601 for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
Ville Syrjälä22dfe792015-09-18 20:03:16 +03002602 I915_WRITE(GEN7_LRA_LIMITS(i), s->lra_limits[i]);
Imre Deakddeea5b2014-05-05 15:19:56 +03002603
2604 I915_WRITE(GEN7_MEDIA_MAX_REQ_COUNT, s->media_max_req_count);
Imre Deakb5f1c972015-04-15 16:52:30 -07002605 I915_WRITE(GEN7_GFX_MAX_REQ_COUNT, s->gfx_max_req_count);
Imre Deakddeea5b2014-05-05 15:19:56 +03002606
2607 I915_WRITE(RENDER_HWS_PGA_GEN7, s->render_hwsp);
2608 I915_WRITE(GAM_ECOCHK, s->ecochk);
2609 I915_WRITE(BSD_HWS_PGA_GEN7, s->bsd_hwsp);
2610 I915_WRITE(BLT_HWS_PGA_GEN7, s->blt_hwsp);
2611
2612 I915_WRITE(GEN7_TLB_RD_ADDR, s->tlb_rd_addr);
2613
2614 /* MBC 0x9024-0x91D0, 0x8500 */
2615 I915_WRITE(VLV_G3DCTL, s->g3dctl);
2616 I915_WRITE(VLV_GSCKGCTL, s->gsckgctl);
2617 I915_WRITE(GEN6_MBCTL, s->mbctl);
2618
2619 /* GCP 0x9400-0x9424, 0x8100-0x810C */
2620 I915_WRITE(GEN6_UCGCTL1, s->ucgctl1);
2621 I915_WRITE(GEN6_UCGCTL3, s->ucgctl3);
2622 I915_WRITE(GEN6_RCGCTL1, s->rcgctl1);
2623 I915_WRITE(GEN6_RCGCTL2, s->rcgctl2);
2624 I915_WRITE(GEN6_RSTCTL, s->rstctl);
2625 I915_WRITE(GEN7_MISCCPCTL, s->misccpctl);
2626
2627 /* GPM 0xA000-0xAA84, 0x8000-0x80FC */
2628 I915_WRITE(GEN6_GFXPAUSE, s->gfxpause);
2629 I915_WRITE(GEN6_RPDEUHWTC, s->rpdeuhwtc);
2630 I915_WRITE(GEN6_RPDEUC, s->rpdeuc);
2631 I915_WRITE(ECOBUS, s->ecobus);
2632 I915_WRITE(VLV_PWRDWNUPCTL, s->pwrdwnupctl);
2633 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,s->rp_down_timeout);
2634 I915_WRITE(GEN6_RPDEUCSW, s->rp_deucsw);
2635 I915_WRITE(GEN6_RCUBMABDTMR, s->rcubmabdtmr);
2636 I915_WRITE(VLV_RCEDATA, s->rcedata);
2637 I915_WRITE(VLV_SPAREG2H, s->spare2gh);
2638
2639 /* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
2640 I915_WRITE(GTIMR, s->gt_imr);
2641 I915_WRITE(GTIER, s->gt_ier);
2642 I915_WRITE(GEN6_PMIMR, s->pm_imr);
2643 I915_WRITE(GEN6_PMIER, s->pm_ier);
2644
2645 for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
Ville Syrjälä22dfe792015-09-18 20:03:16 +03002646 I915_WRITE(GEN7_GT_SCRATCH(i), s->gt_scratch[i]);
Imre Deakddeea5b2014-05-05 15:19:56 +03002647
2648 /* GT SA CZ domain, 0x100000-0x138124 */
2649 I915_WRITE(TILECTL, s->tilectl);
2650 I915_WRITE(GTFIFOCTL, s->gt_fifoctl);
2651 /*
2652 * Preserve the GT allow wake and GFX force clock bit, they are not
2653 * be restored, as they are used to control the s0ix suspend/resume
2654 * sequence by the caller.
2655 */
2656 val = I915_READ(VLV_GTLC_WAKE_CTRL);
2657 val &= VLV_GTLC_ALLOWWAKEREQ;
2658 val |= s->gtlc_wake_ctrl & ~VLV_GTLC_ALLOWWAKEREQ;
2659 I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
2660
2661 val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
2662 val &= VLV_GFX_CLK_FORCE_ON_BIT;
2663 val |= s->gtlc_survive & ~VLV_GFX_CLK_FORCE_ON_BIT;
2664 I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
2665
2666 I915_WRITE(VLV_PMWGICZ, s->pmwgicz);
2667
2668 /* Gunit-Display CZ domain, 0x182028-0x1821CF */
2669 I915_WRITE(VLV_GU_CTL0, s->gu_ctl0);
2670 I915_WRITE(VLV_GU_CTL1, s->gu_ctl1);
Jesse Barnes9c252102015-04-01 14:22:57 -07002671 I915_WRITE(VLV_PCBR, s->pcbr);
Imre Deakddeea5b2014-05-05 15:19:56 +03002672 I915_WRITE(VLV_GUNIT_CLOCK_GATE2, s->clock_gate_dis2);
2673}
2674
Chris Wilson3dd14c02017-04-21 14:58:15 +01002675static int vlv_wait_for_pw_status(struct drm_i915_private *dev_priv,
2676 u32 mask, u32 val)
2677{
Ville Syrjälä39806c3f2019-02-04 23:16:44 +02002678 i915_reg_t reg = VLV_GTLC_PW_STATUS;
2679 u32 reg_value;
2680 int ret;
2681
Chris Wilson3dd14c02017-04-21 14:58:15 +01002682 /* The HW does not like us polling for PW_STATUS frequently, so
2683 * use the sleeping loop rather than risk the busy spin within
2684 * intel_wait_for_register().
2685 *
2686 * Transitioning between RC6 states should be at most 2ms (see
2687 * valleyview_enable_rps) so use a 3ms timeout.
2688 */
Ville Syrjälä39806c3f2019-02-04 23:16:44 +02002689 ret = wait_for(((reg_value = I915_READ_NOTRACE(reg)) & mask) == val, 3);
2690
2691 /* just trace the final value */
2692 trace_i915_reg_rw(false, reg, reg_value, sizeof(reg_value), true);
2693
2694 return ret;
Chris Wilson3dd14c02017-04-21 14:58:15 +01002695}
2696
Imre Deak650ad972014-04-18 16:35:02 +03002697int vlv_force_gfx_clock(struct drm_i915_private *dev_priv, bool force_on)
2698{
2699 u32 val;
2700 int err;
2701
Imre Deak650ad972014-04-18 16:35:02 +03002702 val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
2703 val &= ~VLV_GFX_CLK_FORCE_ON_BIT;
2704 if (force_on)
2705 val |= VLV_GFX_CLK_FORCE_ON_BIT;
2706 I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
2707
2708 if (!force_on)
2709 return 0;
2710
Daniele Ceraolo Spurio97a04e02019-03-25 14:49:39 -07002711 err = intel_wait_for_register(&dev_priv->uncore,
Chris Wilsonc6ddc5f2016-06-30 15:32:46 +01002712 VLV_GTLC_SURVIVABILITY_REG,
2713 VLV_GFX_CLK_STATUS_BIT,
2714 VLV_GFX_CLK_STATUS_BIT,
2715 20);
Imre Deak650ad972014-04-18 16:35:02 +03002716 if (err)
2717 DRM_ERROR("timeout waiting for GFX clock force-on (%08x)\n",
2718 I915_READ(VLV_GTLC_SURVIVABILITY_REG));
2719
2720 return err;
Imre Deak650ad972014-04-18 16:35:02 +03002721}
2722
Imre Deakddeea5b2014-05-05 15:19:56 +03002723static int vlv_allow_gt_wake(struct drm_i915_private *dev_priv, bool allow)
2724{
Chris Wilson3dd14c02017-04-21 14:58:15 +01002725 u32 mask;
Imre Deakddeea5b2014-05-05 15:19:56 +03002726 u32 val;
Chris Wilson3dd14c02017-04-21 14:58:15 +01002727 int err;
Imre Deakddeea5b2014-05-05 15:19:56 +03002728
2729 val = I915_READ(VLV_GTLC_WAKE_CTRL);
2730 val &= ~VLV_GTLC_ALLOWWAKEREQ;
2731 if (allow)
2732 val |= VLV_GTLC_ALLOWWAKEREQ;
2733 I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
2734 POSTING_READ(VLV_GTLC_WAKE_CTRL);
2735
Chris Wilson3dd14c02017-04-21 14:58:15 +01002736 mask = VLV_GTLC_ALLOWWAKEACK;
2737 val = allow ? mask : 0;
2738
2739 err = vlv_wait_for_pw_status(dev_priv, mask, val);
Imre Deakddeea5b2014-05-05 15:19:56 +03002740 if (err)
2741 DRM_ERROR("timeout disabling GT waking\n");
Chris Wilsonb2736692016-06-30 15:32:47 +01002742
Imre Deakddeea5b2014-05-05 15:19:56 +03002743 return err;
Imre Deakddeea5b2014-05-05 15:19:56 +03002744}
2745
Chris Wilson3dd14c02017-04-21 14:58:15 +01002746static void vlv_wait_for_gt_wells(struct drm_i915_private *dev_priv,
2747 bool wait_for_on)
Imre Deakddeea5b2014-05-05 15:19:56 +03002748{
2749 u32 mask;
2750 u32 val;
Imre Deakddeea5b2014-05-05 15:19:56 +03002751
2752 mask = VLV_GTLC_PW_MEDIA_STATUS_MASK | VLV_GTLC_PW_RENDER_STATUS_MASK;
2753 val = wait_for_on ? mask : 0;
Imre Deakddeea5b2014-05-05 15:19:56 +03002754
2755 /*
2756 * RC6 transitioning can be delayed up to 2 msec (see
2757 * valleyview_enable_rps), use 3 msec for safety.
Chris Wilsone01569a2018-04-09 10:49:05 +01002758 *
2759 * This can fail to turn off the rc6 if the GPU is stuck after a failed
2760 * reset and we are trying to force the machine to sleep.
Imre Deakddeea5b2014-05-05 15:19:56 +03002761 */
Chris Wilson3dd14c02017-04-21 14:58:15 +01002762 if (vlv_wait_for_pw_status(dev_priv, mask, val))
Chris Wilsone01569a2018-04-09 10:49:05 +01002763 DRM_DEBUG_DRIVER("timeout waiting for GT wells to go %s\n",
2764 onoff(wait_for_on));
Imre Deakddeea5b2014-05-05 15:19:56 +03002765}
2766
2767static void vlv_check_no_gt_access(struct drm_i915_private *dev_priv)
2768{
2769 if (!(I915_READ(VLV_GTLC_PW_STATUS) & VLV_GTLC_ALLOWWAKEERR))
2770 return;
2771
Daniel Vetter6fa283b2016-01-19 21:00:56 +01002772 DRM_DEBUG_DRIVER("GT register access while GT waking disabled\n");
Imre Deakddeea5b2014-05-05 15:19:56 +03002773 I915_WRITE(VLV_GTLC_PW_STATUS, VLV_GTLC_ALLOWWAKEERR);
2774}
2775
Sagar Kambleebc32822014-08-13 23:07:05 +05302776static int vlv_suspend_complete(struct drm_i915_private *dev_priv)
Imre Deakddeea5b2014-05-05 15:19:56 +03002777{
2778 u32 mask;
2779 int err;
2780
2781 /*
2782 * Bspec defines the following GT well on flags as debug only, so
2783 * don't treat them as hard failures.
2784 */
Chris Wilson3dd14c02017-04-21 14:58:15 +01002785 vlv_wait_for_gt_wells(dev_priv, false);
Imre Deakddeea5b2014-05-05 15:19:56 +03002786
2787 mask = VLV_GTLC_RENDER_CTX_EXISTS | VLV_GTLC_MEDIA_CTX_EXISTS;
2788 WARN_ON((I915_READ(VLV_GTLC_WAKE_CTRL) & mask) != mask);
2789
2790 vlv_check_no_gt_access(dev_priv);
2791
2792 err = vlv_force_gfx_clock(dev_priv, true);
2793 if (err)
2794 goto err1;
2795
2796 err = vlv_allow_gt_wake(dev_priv, false);
2797 if (err)
2798 goto err2;
Deepak S98711162014-12-12 14:18:16 +05302799
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002800 if (!IS_CHERRYVIEW(dev_priv))
Deepak S98711162014-12-12 14:18:16 +05302801 vlv_save_gunit_s0ix_state(dev_priv);
Imre Deakddeea5b2014-05-05 15:19:56 +03002802
2803 err = vlv_force_gfx_clock(dev_priv, false);
2804 if (err)
2805 goto err2;
2806
2807 return 0;
2808
2809err2:
2810 /* For safety always re-enable waking and disable gfx clock forcing */
2811 vlv_allow_gt_wake(dev_priv, true);
2812err1:
2813 vlv_force_gfx_clock(dev_priv, false);
2814
2815 return err;
2816}
2817
Sagar Kamble016970b2014-08-13 23:07:06 +05302818static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
2819 bool rpm_resume)
Imre Deakddeea5b2014-05-05 15:19:56 +03002820{
Imre Deakddeea5b2014-05-05 15:19:56 +03002821 int err;
2822 int ret;
2823
2824 /*
2825 * If any of the steps fail just try to continue, that's the best we
2826 * can do at this point. Return the first error code (which will also
2827 * leave RPM permanently disabled).
2828 */
2829 ret = vlv_force_gfx_clock(dev_priv, true);
2830
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002831 if (!IS_CHERRYVIEW(dev_priv))
Deepak S98711162014-12-12 14:18:16 +05302832 vlv_restore_gunit_s0ix_state(dev_priv);
Imre Deakddeea5b2014-05-05 15:19:56 +03002833
2834 err = vlv_allow_gt_wake(dev_priv, true);
2835 if (!ret)
2836 ret = err;
2837
2838 err = vlv_force_gfx_clock(dev_priv, false);
2839 if (!ret)
2840 ret = err;
2841
2842 vlv_check_no_gt_access(dev_priv);
2843
Chris Wilson7c108fd2016-10-24 13:42:18 +01002844 if (rpm_resume)
Ville Syrjälä46f16e62016-10-31 22:37:22 +02002845 intel_init_clock_gating(dev_priv);
Imre Deakddeea5b2014-05-05 15:19:56 +03002846
2847 return ret;
2848}
2849
David Weinehallc49d13e2016-08-22 13:32:42 +03002850static int intel_runtime_suspend(struct device *kdev)
Paulo Zanoni8a187452013-12-06 20:32:13 -02002851{
David Weinehallc49d13e2016-08-22 13:32:42 +03002852 struct pci_dev *pdev = to_pci_dev(kdev);
Paulo Zanoni8a187452013-12-06 20:32:13 -02002853 struct drm_device *dev = pci_get_drvdata(pdev);
Chris Wilsonfac5e232016-07-04 11:34:36 +01002854 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002855 int ret;
Paulo Zanoni8a187452013-12-06 20:32:13 -02002856
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00002857 if (WARN_ON_ONCE(!(dev_priv->gt_pm.rc6.enabled && HAS_RC6(dev_priv))))
Imre Deakc6df39b2014-04-14 20:24:29 +03002858 return -ENODEV;
2859
Tvrtko Ursulin6772ffe2016-10-13 11:02:55 +01002860 if (WARN_ON_ONCE(!HAS_RUNTIME_PM(dev_priv)))
Imre Deak604effb2014-08-26 13:26:56 +03002861 return -ENODEV;
2862
Paulo Zanoni8a187452013-12-06 20:32:13 -02002863 DRM_DEBUG_KMS("Suspending device\n");
2864
Imre Deak1f814da2015-12-16 02:52:19 +02002865 disable_rpm_wakeref_asserts(dev_priv);
2866
Imre Deakd6102972014-05-07 19:57:49 +03002867 /*
2868 * We are safe here against re-faults, since the fault handler takes
2869 * an RPM reference.
2870 */
Chris Wilson7c108fd2016-10-24 13:42:18 +01002871 i915_gem_runtime_suspend(dev_priv);
Imre Deakd6102972014-05-07 19:57:49 +03002872
Michal Wajdeczko7cfca4a2018-03-02 11:15:49 +00002873 intel_uc_suspend(dev_priv);
Alex Daia1c41992015-09-30 09:46:37 -07002874
Imre Deak2eb52522014-11-19 15:30:05 +02002875 intel_runtime_pm_disable_interrupts(dev_priv);
Imre Deakb5478bc2014-04-14 20:24:37 +03002876
Daniele Ceraolo Spuriof7de5022019-03-19 11:35:37 -07002877 intel_uncore_suspend(&dev_priv->uncore);
Hans de Goede01c799c2017-11-14 14:55:18 +01002878
Imre Deak507e1262016-04-20 20:27:54 +03002879 ret = 0;
Animesh Manna3e689282018-10-29 15:14:10 -07002880 if (INTEL_GEN(dev_priv) >= 11) {
2881 icl_display_core_uninit(dev_priv);
2882 bxt_enable_dc9(dev_priv);
2883 } else if (IS_GEN9_LP(dev_priv)) {
Imre Deak507e1262016-04-20 20:27:54 +03002884 bxt_display_core_uninit(dev_priv);
2885 bxt_enable_dc9(dev_priv);
2886 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
2887 hsw_enable_pc8(dev_priv);
2888 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
2889 ret = vlv_suspend_complete(dev_priv);
2890 }
2891
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002892 if (ret) {
2893 DRM_ERROR("Runtime suspend failed, disabling it (%d)\n", ret);
Daniele Ceraolo Spuriof7de5022019-03-19 11:35:37 -07002894 intel_uncore_runtime_resume(&dev_priv->uncore);
Hans de Goede01c799c2017-11-14 14:55:18 +01002895
Daniel Vetterb9632912014-09-30 10:56:44 +02002896 intel_runtime_pm_enable_interrupts(dev_priv);
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002897
Michal Wajdeczko7cfca4a2018-03-02 11:15:49 +00002898 intel_uc_resume(dev_priv);
Sagar Arun Kamble1ed21cb2018-01-24 21:16:57 +05302899
2900 i915_gem_init_swizzling(dev_priv);
2901 i915_gem_restore_fences(dev_priv);
2902
Imre Deak1f814da2015-12-16 02:52:19 +02002903 enable_rpm_wakeref_asserts(dev_priv);
2904
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002905 return ret;
2906 }
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03002907
Imre Deak1f814da2015-12-16 02:52:19 +02002908 enable_rpm_wakeref_asserts(dev_priv);
Chris Wilsonbd780f32019-01-14 14:21:09 +00002909 intel_runtime_pm_cleanup(dev_priv);
Mika Kuoppala55ec45c2015-12-15 16:25:08 +02002910
Daniele Ceraolo Spurio2cf7bf62019-03-25 14:49:34 -07002911 if (intel_uncore_arm_unclaimed_mmio_detection(&dev_priv->uncore))
Mika Kuoppala55ec45c2015-12-15 16:25:08 +02002912 DRM_ERROR("Unclaimed access detected prior to suspending\n");
2913
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01002914 dev_priv->runtime_pm.suspended = true;
Kristen Carlson Accardi1fb23622014-01-14 15:36:15 -08002915
2916 /*
Paulo Zanonic8a0bd42014-08-21 17:09:38 -03002917 * FIXME: We really should find a document that references the arguments
2918 * used below!
Kristen Carlson Accardi1fb23622014-01-14 15:36:15 -08002919 */
Chris Wilson6f9f4b72016-05-23 15:08:09 +01002920 if (IS_BROADWELL(dev_priv)) {
Paulo Zanonid37ae192015-07-30 18:20:29 -03002921 /*
2922 * On Broadwell, if we use PCI_D1 the PCH DDI ports will stop
2923 * being detected, and the call we do at intel_runtime_resume()
2924 * won't be able to restore them. Since PCI_D3hot matches the
2925 * actual specification and appears to be working, use it.
2926 */
Chris Wilson6f9f4b72016-05-23 15:08:09 +01002927 intel_opregion_notify_adapter(dev_priv, PCI_D3hot);
Paulo Zanonid37ae192015-07-30 18:20:29 -03002928 } else {
Paulo Zanonic8a0bd42014-08-21 17:09:38 -03002929 /*
2930 * current versions of firmware which depend on this opregion
2931 * notification have repurposed the D1 definition to mean
2932 * "runtime suspended" vs. what you would normally expect (D3)
2933 * to distinguish it from notifications that might be sent via
2934 * the suspend path.
2935 */
Chris Wilson6f9f4b72016-05-23 15:08:09 +01002936 intel_opregion_notify_adapter(dev_priv, PCI_D1);
Paulo Zanonic8a0bd42014-08-21 17:09:38 -03002937 }
Paulo Zanoni8a187452013-12-06 20:32:13 -02002938
Daniele Ceraolo Spuriof568eee2019-03-19 11:35:35 -07002939 assert_forcewakes_inactive(&dev_priv->uncore);
Chris Wilsondc9fb092015-01-16 11:34:34 +02002940
Ander Conselvan de Oliveira21d6e0b2017-01-20 16:28:43 +02002941 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Lyude19625e82016-06-21 17:03:44 -04002942 intel_hpd_poll_init(dev_priv);
2943
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03002944 DRM_DEBUG_KMS("Device suspended\n");
Paulo Zanoni8a187452013-12-06 20:32:13 -02002945 return 0;
2946}
2947
David Weinehallc49d13e2016-08-22 13:32:42 +03002948static int intel_runtime_resume(struct device *kdev)
Paulo Zanoni8a187452013-12-06 20:32:13 -02002949{
David Weinehallc49d13e2016-08-22 13:32:42 +03002950 struct pci_dev *pdev = to_pci_dev(kdev);
Paulo Zanoni8a187452013-12-06 20:32:13 -02002951 struct drm_device *dev = pci_get_drvdata(pdev);
Chris Wilsonfac5e232016-07-04 11:34:36 +01002952 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002953 int ret = 0;
Paulo Zanoni8a187452013-12-06 20:32:13 -02002954
Tvrtko Ursulin6772ffe2016-10-13 11:02:55 +01002955 if (WARN_ON_ONCE(!HAS_RUNTIME_PM(dev_priv)))
Imre Deak604effb2014-08-26 13:26:56 +03002956 return -ENODEV;
Paulo Zanoni8a187452013-12-06 20:32:13 -02002957
2958 DRM_DEBUG_KMS("Resuming device\n");
2959
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01002960 WARN_ON_ONCE(atomic_read(&dev_priv->runtime_pm.wakeref_count));
Imre Deak1f814da2015-12-16 02:52:19 +02002961 disable_rpm_wakeref_asserts(dev_priv);
2962
Chris Wilson6f9f4b72016-05-23 15:08:09 +01002963 intel_opregion_notify_adapter(dev_priv, PCI_D0);
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01002964 dev_priv->runtime_pm.suspended = false;
Daniele Ceraolo Spurio2cf7bf62019-03-25 14:49:34 -07002965 if (intel_uncore_unclaimed_mmio(&dev_priv->uncore))
Mika Kuoppala55ec45c2015-12-15 16:25:08 +02002966 DRM_DEBUG_DRIVER("Unclaimed access during suspend, bios?\n");
Paulo Zanoni8a187452013-12-06 20:32:13 -02002967
Animesh Manna3e689282018-10-29 15:14:10 -07002968 if (INTEL_GEN(dev_priv) >= 11) {
2969 bxt_disable_dc9(dev_priv);
2970 icl_display_core_init(dev_priv, true);
2971 if (dev_priv->csr.dmc_payload) {
2972 if (dev_priv->csr.allowed_dc_mask &
2973 DC_STATE_EN_UPTO_DC6)
2974 skl_enable_dc6(dev_priv);
2975 else if (dev_priv->csr.allowed_dc_mask &
2976 DC_STATE_EN_UPTO_DC5)
2977 gen9_enable_dc5(dev_priv);
2978 }
2979 } else if (IS_GEN9_LP(dev_priv)) {
Imre Deak507e1262016-04-20 20:27:54 +03002980 bxt_disable_dc9(dev_priv);
2981 bxt_display_core_init(dev_priv, true);
Imre Deakf62c79b2016-04-20 20:27:57 +03002982 if (dev_priv->csr.dmc_payload &&
2983 (dev_priv->csr.allowed_dc_mask & DC_STATE_EN_UPTO_DC5))
2984 gen9_enable_dc5(dev_priv);
Imre Deak507e1262016-04-20 20:27:54 +03002985 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002986 hsw_disable_pc8(dev_priv);
Imre Deak507e1262016-04-20 20:27:54 +03002987 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002988 ret = vlv_resume_prepare(dev_priv, true);
Imre Deak507e1262016-04-20 20:27:54 +03002989 }
Paulo Zanoni1a5df182014-10-27 17:54:32 -02002990
Daniele Ceraolo Spuriof7de5022019-03-19 11:35:37 -07002991 intel_uncore_runtime_resume(&dev_priv->uncore);
Hans de Goedebedf4d72017-11-14 14:55:17 +01002992
Sagar Arun Kamble1ed21cb2018-01-24 21:16:57 +05302993 intel_runtime_pm_enable_interrupts(dev_priv);
2994
Michal Wajdeczko7cfca4a2018-03-02 11:15:49 +00002995 intel_uc_resume(dev_priv);
Sagar Arun Kamble1ed21cb2018-01-24 21:16:57 +05302996
Imre Deak0ab9cfe2014-04-15 16:39:45 +03002997 /*
2998 * No point of rolling back things in case of an error, as the best
2999 * we can do is to hope that things will still work (and disable RPM).
3000 */
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00003001 i915_gem_init_swizzling(dev_priv);
Chris Wilson83bf6d52017-02-03 12:57:17 +00003002 i915_gem_restore_fences(dev_priv);
Imre Deak92b806d2014-04-14 20:24:39 +03003003
Ville Syrjälä08d8a232015-08-27 23:56:08 +03003004 /*
3005 * On VLV/CHV display interrupts are part of the display
3006 * power well, so hpd is reinitialized from there. For
3007 * everyone else do it here.
3008 */
Wayne Boyer666a4532015-12-09 12:29:35 -08003009 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
Ville Syrjälä08d8a232015-08-27 23:56:08 +03003010 intel_hpd_init(dev_priv);
3011
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05303012 intel_enable_ipc(dev_priv);
3013
Imre Deak1f814da2015-12-16 02:52:19 +02003014 enable_rpm_wakeref_asserts(dev_priv);
3015
Imre Deak0ab9cfe2014-04-15 16:39:45 +03003016 if (ret)
3017 DRM_ERROR("Runtime resume failed, disabling it (%d)\n", ret);
3018 else
3019 DRM_DEBUG_KMS("Device resumed\n");
3020
3021 return ret;
Paulo Zanoni8a187452013-12-06 20:32:13 -02003022}
3023
Chris Wilson42f55512016-06-24 14:00:26 +01003024const struct dev_pm_ops i915_pm_ops = {
Imre Deak5545dbb2014-10-23 19:23:28 +03003025 /*
3026 * S0ix (via system suspend) and S3 event handlers [PMSG_SUSPEND,
3027 * PMSG_RESUME]
3028 */
Chris Wilson73b66f82018-05-25 10:26:29 +01003029 .prepare = i915_pm_prepare,
Akshay Joshi0206e352011-08-16 15:34:10 -04003030 .suspend = i915_pm_suspend,
Imre Deak76c4b252014-04-01 19:55:22 +03003031 .suspend_late = i915_pm_suspend_late,
3032 .resume_early = i915_pm_resume_early,
Akshay Joshi0206e352011-08-16 15:34:10 -04003033 .resume = i915_pm_resume,
Imre Deak5545dbb2014-10-23 19:23:28 +03003034
3035 /*
3036 * S4 event handlers
3037 * @freeze, @freeze_late : called (1) before creating the
3038 * hibernation image [PMSG_FREEZE] and
3039 * (2) after rebooting, before restoring
3040 * the image [PMSG_QUIESCE]
3041 * @thaw, @thaw_early : called (1) after creating the hibernation
3042 * image, before writing it [PMSG_THAW]
3043 * and (2) after failing to create or
3044 * restore the image [PMSG_RECOVER]
3045 * @poweroff, @poweroff_late: called after writing the hibernation
3046 * image, before rebooting [PMSG_HIBERNATE]
3047 * @restore, @restore_early : called after rebooting and restoring the
3048 * hibernation image [PMSG_RESTORE]
3049 */
Chris Wilson1f19ac22016-05-14 07:26:32 +01003050 .freeze = i915_pm_freeze,
3051 .freeze_late = i915_pm_freeze_late,
3052 .thaw_early = i915_pm_thaw_early,
3053 .thaw = i915_pm_thaw,
Imre Deak36d61e62014-10-23 19:23:24 +03003054 .poweroff = i915_pm_suspend,
Imre Deakab3be732015-03-02 13:04:41 +02003055 .poweroff_late = i915_pm_poweroff_late,
Chris Wilson1f19ac22016-05-14 07:26:32 +01003056 .restore_early = i915_pm_restore_early,
3057 .restore = i915_pm_restore,
Imre Deak5545dbb2014-10-23 19:23:28 +03003058
3059 /* S0ix (via runtime suspend) event handlers */
Paulo Zanoni97bea202014-03-07 20:12:33 -03003060 .runtime_suspend = intel_runtime_suspend,
3061 .runtime_resume = intel_runtime_resume,
Zhenyu Wangcbda12d2009-12-16 13:36:10 +08003062};
3063
Laurent Pinchart78b68552012-05-17 13:27:22 +02003064static const struct vm_operations_struct i915_gem_vm_ops = {
Jesse Barnesde151cf2008-11-12 10:03:55 -08003065 .fault = i915_gem_fault,
Jesse Barnesab00b3e2009-02-11 14:01:46 -08003066 .open = drm_gem_vm_open,
3067 .close = drm_gem_vm_close,
Jesse Barnesde151cf2008-11-12 10:03:55 -08003068};
3069
Arjan van de Vene08e96d2011-10-31 07:28:57 -07003070static const struct file_operations i915_driver_fops = {
3071 .owner = THIS_MODULE,
3072 .open = drm_open,
3073 .release = drm_release,
3074 .unlocked_ioctl = drm_ioctl,
3075 .mmap = drm_gem_mmap,
3076 .poll = drm_poll,
Arjan van de Vene08e96d2011-10-31 07:28:57 -07003077 .read = drm_read,
Arjan van de Vene08e96d2011-10-31 07:28:57 -07003078 .compat_ioctl = i915_compat_ioctl,
Arjan van de Vene08e96d2011-10-31 07:28:57 -07003079 .llseek = noop_llseek,
3080};
3081
Chris Wilson0673ad42016-06-24 14:00:22 +01003082static int
3083i915_gem_reject_pin_ioctl(struct drm_device *dev, void *data,
3084 struct drm_file *file)
3085{
3086 return -ENODEV;
3087}
3088
3089static const struct drm_ioctl_desc i915_ioctls[] = {
3090 DRM_IOCTL_DEF_DRV(I915_INIT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
3091 DRM_IOCTL_DEF_DRV(I915_FLUSH, drm_noop, DRM_AUTH),
3092 DRM_IOCTL_DEF_DRV(I915_FLIP, drm_noop, DRM_AUTH),
3093 DRM_IOCTL_DEF_DRV(I915_BATCHBUFFER, drm_noop, DRM_AUTH),
3094 DRM_IOCTL_DEF_DRV(I915_IRQ_EMIT, drm_noop, DRM_AUTH),
3095 DRM_IOCTL_DEF_DRV(I915_IRQ_WAIT, drm_noop, DRM_AUTH),
Ville Syrjälä6a20fe72018-02-07 18:48:41 +02003096 DRM_IOCTL_DEF_DRV(I915_GETPARAM, i915_getparam_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Chris Wilson0673ad42016-06-24 14:00:22 +01003097 DRM_IOCTL_DEF_DRV(I915_SETPARAM, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
3098 DRM_IOCTL_DEF_DRV(I915_ALLOC, drm_noop, DRM_AUTH),
3099 DRM_IOCTL_DEF_DRV(I915_FREE, drm_noop, DRM_AUTH),
3100 DRM_IOCTL_DEF_DRV(I915_INIT_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
3101 DRM_IOCTL_DEF_DRV(I915_CMDBUFFER, drm_noop, DRM_AUTH),
3102 DRM_IOCTL_DEF_DRV(I915_DESTROY_HEAP, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
3103 DRM_IOCTL_DEF_DRV(I915_SET_VBLANK_PIPE, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
3104 DRM_IOCTL_DEF_DRV(I915_GET_VBLANK_PIPE, drm_noop, DRM_AUTH),
3105 DRM_IOCTL_DEF_DRV(I915_VBLANK_SWAP, drm_noop, DRM_AUTH),
3106 DRM_IOCTL_DEF_DRV(I915_HWS_ADDR, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
3107 DRM_IOCTL_DEF_DRV(I915_GEM_INIT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Ville Syrjälä6a20fe72018-02-07 18:48:41 +02003108 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER, i915_gem_execbuffer_ioctl, DRM_AUTH),
3109 DRM_IOCTL_DEF_DRV(I915_GEM_EXECBUFFER2_WR, i915_gem_execbuffer2_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Chris Wilson0673ad42016-06-24 14:00:22 +01003110 DRM_IOCTL_DEF_DRV(I915_GEM_PIN, i915_gem_reject_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
3111 DRM_IOCTL_DEF_DRV(I915_GEM_UNPIN, i915_gem_reject_pin_ioctl, DRM_AUTH|DRM_ROOT_ONLY),
3112 DRM_IOCTL_DEF_DRV(I915_GEM_BUSY, i915_gem_busy_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
3113 DRM_IOCTL_DEF_DRV(I915_GEM_SET_CACHING, i915_gem_set_caching_ioctl, DRM_RENDER_ALLOW),
3114 DRM_IOCTL_DEF_DRV(I915_GEM_GET_CACHING, i915_gem_get_caching_ioctl, DRM_RENDER_ALLOW),
3115 DRM_IOCTL_DEF_DRV(I915_GEM_THROTTLE, i915_gem_throttle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
3116 DRM_IOCTL_DEF_DRV(I915_GEM_ENTERVT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
3117 DRM_IOCTL_DEF_DRV(I915_GEM_LEAVEVT, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
3118 DRM_IOCTL_DEF_DRV(I915_GEM_CREATE, i915_gem_create_ioctl, DRM_RENDER_ALLOW),
3119 DRM_IOCTL_DEF_DRV(I915_GEM_PREAD, i915_gem_pread_ioctl, DRM_RENDER_ALLOW),
3120 DRM_IOCTL_DEF_DRV(I915_GEM_PWRITE, i915_gem_pwrite_ioctl, DRM_RENDER_ALLOW),
3121 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP, i915_gem_mmap_ioctl, DRM_RENDER_ALLOW),
3122 DRM_IOCTL_DEF_DRV(I915_GEM_MMAP_GTT, i915_gem_mmap_gtt_ioctl, DRM_RENDER_ALLOW),
3123 DRM_IOCTL_DEF_DRV(I915_GEM_SET_DOMAIN, i915_gem_set_domain_ioctl, DRM_RENDER_ALLOW),
3124 DRM_IOCTL_DEF_DRV(I915_GEM_SW_FINISH, i915_gem_sw_finish_ioctl, DRM_RENDER_ALLOW),
Chris Wilson111dbca2017-01-10 12:10:44 +00003125 DRM_IOCTL_DEF_DRV(I915_GEM_SET_TILING, i915_gem_set_tiling_ioctl, DRM_RENDER_ALLOW),
3126 DRM_IOCTL_DEF_DRV(I915_GEM_GET_TILING, i915_gem_get_tiling_ioctl, DRM_RENDER_ALLOW),
Chris Wilson0673ad42016-06-24 14:00:22 +01003127 DRM_IOCTL_DEF_DRV(I915_GEM_GET_APERTURE, i915_gem_get_aperture_ioctl, DRM_RENDER_ALLOW),
Ville Syrjälä6a20fe72018-02-07 18:48:41 +02003128 DRM_IOCTL_DEF_DRV(I915_GET_PIPE_FROM_CRTC_ID, intel_get_pipe_from_crtc_id_ioctl, 0),
Chris Wilson0673ad42016-06-24 14:00:22 +01003129 DRM_IOCTL_DEF_DRV(I915_GEM_MADVISE, i915_gem_madvise_ioctl, DRM_RENDER_ALLOW),
Daniel Vetter0cd54b02018-04-20 08:51:57 +02003130 DRM_IOCTL_DEF_DRV(I915_OVERLAY_PUT_IMAGE, intel_overlay_put_image_ioctl, DRM_MASTER),
3131 DRM_IOCTL_DEF_DRV(I915_OVERLAY_ATTRS, intel_overlay_attrs_ioctl, DRM_MASTER),
3132 DRM_IOCTL_DEF_DRV(I915_SET_SPRITE_COLORKEY, intel_sprite_set_colorkey_ioctl, DRM_MASTER),
3133 DRM_IOCTL_DEF_DRV(I915_GET_SPRITE_COLORKEY, drm_noop, DRM_MASTER),
Chris Wilson0673ad42016-06-24 14:00:22 +01003134 DRM_IOCTL_DEF_DRV(I915_GEM_WAIT, i915_gem_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Chris Wilsonb9171542019-03-22 09:23:24 +00003135 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_CREATE_EXT, i915_gem_context_create_ioctl, DRM_RENDER_ALLOW),
Chris Wilson0673ad42016-06-24 14:00:22 +01003136 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_DESTROY, i915_gem_context_destroy_ioctl, DRM_RENDER_ALLOW),
3137 DRM_IOCTL_DEF_DRV(I915_REG_READ, i915_reg_read_ioctl, DRM_RENDER_ALLOW),
3138 DRM_IOCTL_DEF_DRV(I915_GET_RESET_STATS, i915_gem_context_reset_stats_ioctl, DRM_RENDER_ALLOW),
3139 DRM_IOCTL_DEF_DRV(I915_GEM_USERPTR, i915_gem_userptr_ioctl, DRM_RENDER_ALLOW),
3140 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_GETPARAM, i915_gem_context_getparam_ioctl, DRM_RENDER_ALLOW),
3141 DRM_IOCTL_DEF_DRV(I915_GEM_CONTEXT_SETPARAM, i915_gem_context_setparam_ioctl, DRM_RENDER_ALLOW),
Robert Braggeec688e2016-11-07 19:49:47 +00003142 DRM_IOCTL_DEF_DRV(I915_PERF_OPEN, i915_perf_open_ioctl, DRM_RENDER_ALLOW),
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003143 DRM_IOCTL_DEF_DRV(I915_PERF_ADD_CONFIG, i915_perf_add_config_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
3144 DRM_IOCTL_DEF_DRV(I915_PERF_REMOVE_CONFIG, i915_perf_remove_config_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
Lionel Landwerlina446ae22018-03-06 12:28:56 +00003145 DRM_IOCTL_DEF_DRV(I915_QUERY, i915_query_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
Chris Wilson0673ad42016-06-24 14:00:22 +01003146};
3147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148static struct drm_driver driver = {
Michael Witten0c547812011-08-25 17:55:54 +00003149 /* Don't use MTRRs here; the Xserver or userspace app should
3150 * deal with them for Intel hardware.
Dave Airlie792d2b92005-11-11 23:30:27 +11003151 */
Eric Anholt673a3942008-07-30 12:06:12 -07003152 .driver_features =
Daniel Vetter1ff49482019-01-29 11:42:48 +01003153 DRIVER_GEM | DRIVER_PRIME |
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01003154 DRIVER_RENDER | DRIVER_MODESET | DRIVER_ATOMIC | DRIVER_SYNCOBJ,
Chris Wilsoncad36882017-02-10 16:35:21 +00003155 .release = i915_driver_release,
Eric Anholt673a3942008-07-30 12:06:12 -07003156 .open = i915_driver_open,
Dave Airlie22eae942005-11-10 22:16:34 +11003157 .lastclose = i915_driver_lastclose,
Eric Anholt673a3942008-07-30 12:06:12 -07003158 .postclose = i915_driver_postclose,
Rafael J. Wysockid8e29202010-01-09 00:45:33 +01003159
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003160 .gem_close_object = i915_gem_close_object,
Chris Wilsonf0cd5182016-10-28 13:58:43 +01003161 .gem_free_object_unlocked = i915_gem_free_object,
Jesse Barnesde151cf2008-11-12 10:03:55 -08003162 .gem_vm_ops = &i915_gem_vm_ops,
Daniel Vetter1286ff72012-05-10 15:25:09 +02003163
3164 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
3165 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
3166 .gem_prime_export = i915_gem_prime_export,
3167 .gem_prime_import = i915_gem_prime_import,
3168
Dave Airlieff72145b2011-02-07 12:16:14 +10003169 .dumb_create = i915_gem_dumb_create,
Dave Airlieda6b51d2014-12-24 13:11:17 +10003170 .dumb_map_offset = i915_gem_mmap_gtt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 .ioctls = i915_ioctls,
Chris Wilson0673ad42016-06-24 14:00:22 +01003172 .num_ioctls = ARRAY_SIZE(i915_ioctls),
Arjan van de Vene08e96d2011-10-31 07:28:57 -07003173 .fops = &i915_driver_fops,
Dave Airlie22eae942005-11-10 22:16:34 +11003174 .name = DRIVER_NAME,
3175 .desc = DRIVER_DESC,
3176 .date = DRIVER_DATE,
3177 .major = DRIVER_MAJOR,
3178 .minor = DRIVER_MINOR,
3179 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180};
Chris Wilson66d9cb52017-02-13 17:15:17 +00003181
3182#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
3183#include "selftests/mock_drm.c"
3184#endif